
    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_c01c71552c25b98a073c512f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_41a409744b8d8b56a6948594.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_02bc81b73e7a4e479dee1dab.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_1db104defa5cf25c7aeebe94.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_cc3a8e51a2a601d57d325d0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_ba77f838478565580be1ecbf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_55ab18ad7b8f6d23242a9434.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_149c80cd50f40e73ec26729d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4966ff6a9a63183a4a6a8ec6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_96b22c458370b80354b80a91.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_628eb0bc6167bcf85045273b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9e96a1189290f113fe3e2e17.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2d251bd1859d7e7d17b723ec.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_05a43550f0826f380051f715.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_628eb0bc6167bcf85045273b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_78435feb53c553b62eb1eb3f.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m7{transform:matrix(0.000000,-0.197129,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.197129,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.197129,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.203817,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.203817,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.203817,0.250000,0.000000,0,0);}
.m8{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);}
.m2{transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.203817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203817,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.210733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210733,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.620000px;}
.v6{vertical-align:13.473600px;}
.v4{vertical-align:16.774290px;}
.v5{vertical-align:22.943243px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls39{letter-spacing:-6.480000px;}
.ls53{letter-spacing:-6.192000px;}
.ls36{letter-spacing:-5.017950px;}
.ls54{letter-spacing:-4.462534px;}
.ls37{letter-spacing:-4.348890px;}
.ls3a{letter-spacing:-3.888000px;}
.ls4c{letter-spacing:-1.776000px;}
.ls52{letter-spacing:-1.080000px;}
.ls57{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.780000px;}
.ls85{letter-spacing:-0.576000px;}
.ls81{letter-spacing:-0.528000px;}
.ls59{letter-spacing:-0.480000px;}
.ls86{letter-spacing:-0.336000px;}
.ls4a{letter-spacing:-0.300000px;}
.ls38{letter-spacing:-0.288000px;}
.ls4b{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.180000px;}
.ls82{letter-spacing:-0.144000px;}
.ls47{letter-spacing:-0.120000px;}
.ls84{letter-spacing:-0.096000px;}
.ls46{letter-spacing:-0.060000px;}
.ls80{letter-spacing:-0.048000px;}
.lsc{letter-spacing:-0.045000px;}
.lsa{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.001003px;}
.ls50{letter-spacing:0.001603px;}
.ls0{letter-spacing:0.004140px;}
.ls69{letter-spacing:0.048000px;}
.ls19{letter-spacing:0.060000px;}
.ls6c{letter-spacing:0.096000px;}
.ls20{letter-spacing:0.120000px;}
.ls67{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.180000px;}
.ls77{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.240000px;}
.ls64{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.300000px;}
.ls71{letter-spacing:0.336000px;}
.ls22{letter-spacing:0.360000px;}
.ls6a{letter-spacing:0.384000px;}
.ls23{letter-spacing:0.420000px;}
.ls7a{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.480000px;}
.ls4e{letter-spacing:0.528000px;}
.ls34{letter-spacing:0.540000px;}
.ls90{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.600000px;}
.ls6e{letter-spacing:0.624000px;}
.ls1f{letter-spacing:0.660000px;}
.ls7e{letter-spacing:0.672000px;}
.ls11{letter-spacing:0.720000px;}
.ls8f{letter-spacing:0.768000px;}
.ls18{letter-spacing:0.780000px;}
.ls87{letter-spacing:0.816000px;}
.ls26{letter-spacing:0.840000px;}
.ls75{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.900000px;}
.ls6f{letter-spacing:0.912000px;}
.ls4d{letter-spacing:0.934200px;}
.ls42{letter-spacing:0.960000px;}
.ls70{letter-spacing:1.008000px;}
.ls24{letter-spacing:1.020000px;}
.ls65{letter-spacing:1.056000px;}
.ls2{letter-spacing:1.080000px;}
.ls8a{letter-spacing:1.104000px;}
.ls1b{letter-spacing:1.140000px;}
.ls74{letter-spacing:1.152000px;}
.ls8{letter-spacing:1.200000px;}
.ls78{letter-spacing:1.248000px;}
.ls2e{letter-spacing:1.260000px;}
.ls92{letter-spacing:1.296000px;}
.ls28{letter-spacing:1.313400px;}
.ls21{letter-spacing:1.320000px;}
.ls7c{letter-spacing:1.344000px;}
.ls1c{letter-spacing:1.380000px;}
.ls68{letter-spacing:1.392000px;}
.ls5{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.500000px;}
.ls7b{letter-spacing:1.536000px;}
.ls44{letter-spacing:1.560000px;}
.ls7d{letter-spacing:1.584000px;}
.ls17{letter-spacing:1.620000px;}
.ls31{letter-spacing:1.680000px;}
.ls88{letter-spacing:1.728000px;}
.ls9{letter-spacing:1.740000px;}
.ls89{letter-spacing:1.776000px;}
.ls2a{letter-spacing:1.800000px;}
.ls76{letter-spacing:1.824000px;}
.ls6{letter-spacing:1.860000px;}
.ls8e{letter-spacing:1.872000px;}
.ls5a{letter-spacing:1.920000px;}
.ls66{letter-spacing:1.968000px;}
.ls15{letter-spacing:1.980000px;}
.ls6b{letter-spacing:2.016000px;}
.ls3d{letter-spacing:2.040000px;}
.ls83{letter-spacing:2.064000px;}
.ls16{letter-spacing:2.100000px;}
.ls8d{letter-spacing:2.112000px;}
.lse{letter-spacing:2.160000px;}
.ls3f{letter-spacing:2.220000px;}
.ls2d{letter-spacing:2.244000px;}
.ls27{letter-spacing:2.280000px;}
.ls7f{letter-spacing:2.304000px;}
.ls2f{letter-spacing:2.340000px;}
.ls79{letter-spacing:2.352000px;}
.ls3b{letter-spacing:2.400000px;}
.ls91{letter-spacing:2.448000px;}
.ls3e{letter-spacing:2.460000px;}
.ls93{letter-spacing:2.496000px;}
.ls45{letter-spacing:2.520000px;}
.ls73{letter-spacing:2.544000px;}
.ls10{letter-spacing:2.580000px;}
.ls72{letter-spacing:2.592000px;}
.ls7{letter-spacing:2.640000px;}
.ls14{letter-spacing:2.700000px;}
.ls41{letter-spacing:2.760000px;}
.ls40{letter-spacing:2.820000px;}
.ls43{letter-spacing:2.880000px;}
.ls6d{letter-spacing:2.928000px;}
.ls35{letter-spacing:2.940000px;}
.ls1e{letter-spacing:3.000000px;}
.ls29{letter-spacing:3.060000px;}
.ls5c{letter-spacing:3.120000px;}
.ls13{letter-spacing:3.180000px;}
.ls8c{letter-spacing:3.216000px;}
.ls49{letter-spacing:3.240000px;}
.ls4{letter-spacing:3.300000px;}
.ls60{letter-spacing:3.360000px;}
.ls58{letter-spacing:3.420000px;}
.ls5f{letter-spacing:3.480000px;}
.ls30{letter-spacing:3.540000px;}
.ls62{letter-spacing:3.600000px;}
.ls5d{letter-spacing:3.660000px;}
.ls12{letter-spacing:3.720000px;}
.ls2c{letter-spacing:3.840000px;}
.ls5e{letter-spacing:3.900000px;}
.ls25{letter-spacing:4.260000px;}
.ls56{letter-spacing:4.380000px;}
.ls8b{letter-spacing:4.512000px;}
.ls5b{letter-spacing:4.740000px;}
.ls3c{letter-spacing:4.800000px;}
.ls55{letter-spacing:5.040000px;}
.ls48{letter-spacing:6.300000px;}
.ls61{letter-spacing:6.360000px;}
.ls1{letter-spacing:7.260000px;}
.ls63{letter-spacing:7.620000px;}
.ls4f{letter-spacing:1807.461046px;}
.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;}
}
.ws75{word-spacing:-20.040000px;}
.ws43{word-spacing:-16.680000px;}
.ws31{word-spacing:-16.320000px;}
.ws1d{word-spacing:-15.840000px;}
.ws9e{word-spacing:-15.216000px;}
.ws44{word-spacing:-15.000000px;}
.wsa2{word-spacing:-14.496000px;}
.ws8b{word-spacing:-13.920000px;}
.ws9f{word-spacing:-13.728000px;}
.ws88{word-spacing:-13.536000px;}
.ws57{word-spacing:-13.484612px;}
.ws2{word-spacing:-13.344000px;}
.ws87{word-spacing:-13.248000px;}
.ws9d{word-spacing:-13.200000px;}
.ws84{word-spacing:-12.624000px;}
.ws55{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.465000px;}
.wsa1{word-spacing:-12.384000px;}
.ws85{word-spacing:-12.288000px;}
.ws8a{word-spacing:-12.096000px;}
.ws86{word-spacing:-12.048000px;}
.ws89{word-spacing:-12.000000px;}
.wsa0{word-spacing:-11.952000px;}
.ws1e{word-spacing:-11.712000px;}
.ws8c{word-spacing:-11.424000px;}
.ws83{word-spacing:-10.224000px;}
.ws0{word-spacing:-10.210662px;}
.ws42{word-spacing:-8.745000px;}
.ws59{word-spacing:-8.601710px;}
.ws1f{word-spacing:-8.112000px;}
.ws7a{word-spacing:-3.240000px;}
.ws47{word-spacing:-2.940000px;}
.ws4{word-spacing:-2.886000px;}
.ws7b{word-spacing:-2.700000px;}
.wsab{word-spacing:-2.640000px;}
.ws91{word-spacing:-2.592000px;}
.ws4e{word-spacing:-2.400000px;}
.ws5c{word-spacing:-2.340000px;}
.ws13{word-spacing:-2.220000px;}
.ws94{word-spacing:-2.160000px;}
.wsae{word-spacing:-1.776000px;}
.wsa9{word-spacing:-1.728000px;}
.ws9c{word-spacing:-1.680000px;}
.ws5d{word-spacing:-1.620000px;}
.wsaf{word-spacing:-1.248000px;}
.ws52{word-spacing:-1.200000px;}
.ws92{word-spacing:-1.152000px;}
.ws4f{word-spacing:-1.140000px;}
.ws66{word-spacing:-0.864000px;}
.ws4d{word-spacing:-0.840000px;}
.wsb0{word-spacing:-0.768000px;}
.wsd{word-spacing:-0.660000px;}
.ws90{word-spacing:-0.624000px;}
.ws50{word-spacing:-0.540000px;}
.ws60{word-spacing:-0.528000px;}
.ws3a{word-spacing:-0.480000px;}
.ws6f{word-spacing:-0.420000px;}
.ws97{word-spacing:-0.384000px;}
.ws73{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.240000px;}
.ws95{word-spacing:-0.192000px;}
.ws3b{word-spacing:-0.180000px;}
.ws7e{word-spacing:-0.144000px;}
.ws11{word-spacing:-0.120000px;}
.wsb1{word-spacing:-0.096000px;}
.ws1a{word-spacing:-0.060000px;}
.wsa8{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws4b{word-spacing:0.060000px;}
.ws9a{word-spacing:0.096000px;}
.ws2b{word-spacing:0.120000px;}
.ws96{word-spacing:0.144000px;}
.ws12{word-spacing:0.180000px;}
.wsa{word-spacing:0.240000px;}
.ws2f{word-spacing:0.288000px;}
.ws33{word-spacing:0.300000px;}
.ws9b{word-spacing:0.336000px;}
.ws72{word-spacing:0.360000px;}
.ws5a{word-spacing:0.420000px;}
.ws99{word-spacing:0.432000px;}
.ws68{word-spacing:0.480000px;}
.ws6c{word-spacing:0.540000px;}
.wsad{word-spacing:0.576000px;}
.ws74{word-spacing:0.660000px;}
.ws2a{word-spacing:0.840000px;}
.ws63{word-spacing:0.864000px;}
.ws7f{word-spacing:0.912000px;}
.ws2e{word-spacing:0.960000px;}
.ws5e{word-spacing:1.080000px;}
.ws16{word-spacing:1.140000px;}
.wsb4{word-spacing:1.152000px;}
.ws6a{word-spacing:1.200000px;}
.ws19{word-spacing:1.260000px;}
.wsaa{word-spacing:1.296000px;}
.ws38{word-spacing:1.320000px;}
.wsb3{word-spacing:1.344000px;}
.ws98{word-spacing:1.392000px;}
.ws6d{word-spacing:1.440000px;}
.ws77{word-spacing:1.500000px;}
.ws6e{word-spacing:1.560000px;}
.wsa4{word-spacing:1.584000px;}
.wsb{word-spacing:1.620000px;}
.wsb2{word-spacing:1.632000px;}
.ws41{word-spacing:1.680000px;}
.wsa7{word-spacing:1.728000px;}
.ws71{word-spacing:1.740000px;}
.ws54{word-spacing:1.776000px;}
.ws67{word-spacing:1.800000px;}
.ws8d{word-spacing:1.824000px;}
.ws76{word-spacing:1.860000px;}
.ws2d{word-spacing:1.872000px;}
.ws36{word-spacing:1.980000px;}
.ws61{word-spacing:2.016000px;}
.ws53{word-spacing:2.040000px;}
.wsa3{word-spacing:2.064000px;}
.ws45{word-spacing:2.100000px;}
.ws24{word-spacing:2.160000px;}
.ws34{word-spacing:2.220000px;}
.ws69{word-spacing:2.280000px;}
.ws3c{word-spacing:2.340000px;}
.ws40{word-spacing:2.400000px;}
.ws93{word-spacing:2.496000px;}
.ws65{word-spacing:2.520000px;}
.wsf{word-spacing:2.580000px;}
.wsa6{word-spacing:2.592000px;}
.ws32{word-spacing:2.640000px;}
.ws8f{word-spacing:2.688000px;}
.ws22{word-spacing:2.700000px;}
.ws25{word-spacing:2.760000px;}
.ws6b{word-spacing:2.820000px;}
.ws7d{word-spacing:2.832000px;}
.ws28{word-spacing:2.880000px;}
.ws3e{word-spacing:2.940000px;}
.ws82{word-spacing:2.976000px;}
.ws23{word-spacing:3.000000px;}
.ws27{word-spacing:3.060000px;}
.ws80{word-spacing:3.072000px;}
.ws14{word-spacing:3.120000px;}
.ws10{word-spacing:3.180000px;}
.ws17{word-spacing:3.240000px;}
.ws49{word-spacing:3.300000px;}
.ws5b{word-spacing:3.360000px;}
.ws81{word-spacing:3.408000px;}
.ws39{word-spacing:3.420000px;}
.ws37{word-spacing:3.480000px;}
.wsac{word-spacing:3.552000px;}
.ws51{word-spacing:3.600000px;}
.ws18{word-spacing:3.660000px;}
.ws8e{word-spacing:3.696000px;}
.ws35{word-spacing:3.780000px;}
.wsc{word-spacing:3.840000px;}
.wsa5{word-spacing:3.888000px;}
.ws7{word-spacing:3.900000px;}
.ws7c{word-spacing:3.936000px;}
.ws4a{word-spacing:3.960000px;}
.ws5f{word-spacing:3.984000px;}
.ws2c{word-spacing:4.020000px;}
.ws29{word-spacing:4.140000px;}
.ws15{word-spacing:4.200000px;}
.ws46{word-spacing:4.260000px;}
.ws4c{word-spacing:4.320000px;}
.ws21{word-spacing:4.348890px;}
.ws3d{word-spacing:4.380000px;}
.ws8{word-spacing:4.440000px;}
.ws64{word-spacing:4.462534px;}
.ws26{word-spacing:4.500000px;}
.ws3f{word-spacing:4.560000px;}
.ws48{word-spacing:4.620000px;}
.wse{word-spacing:4.860000px;}
.ws5{word-spacing:4.920000px;}
.ws6{word-spacing:4.980000px;}
.ws20{word-spacing:5.017950px;}
.ws78{word-spacing:5.460000px;}
.ws79{word-spacing:5.520000px;}
.ws30{word-spacing:6.480000px;}
.ws70{word-spacing:7.500000px;}
.ws62{word-spacing:8.208000px;}
.ws1c{word-spacing:159.284070px;}
.ws1b{word-spacing:163.011690px;}
.ws58{word-spacing:215.074717px;}
.ws56{word-spacing:872.037272px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._21{margin-left:-372.330521px;}
._a{margin-left:-20.212890px;}
._6{margin-left:-7.560000px;}
._4{margin-left:-6.502890px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-4.200000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.177110px;}
._7{width:1.057110px;}
._9{width:2.280000px;}
._b{width:4.140000px;}
._8{width:5.160000px;}
._f{width:6.360000px;}
._2{width:59.318628px;}
._15{width:168.864000px;}
._33{width:195.888000px;}
._d{width:199.284300px;}
._31{width:218.688000px;}
._35{width:219.984000px;}
._30{width:222.720000px;}
._34{width:232.080000px;}
._38{width:234.198000px;}
._14{width:236.208000px;}
._39{width:244.080000px;}
._3a{width:255.984000px;}
._3d{width:267.888000px;}
._48{width:270.198000px;}
._1c{width:280.176000px;}
._1a{width:291.792000px;}
._1e{width:292.944000px;}
._1f{width:303.408000px;}
._1b{width:304.560000px;}
._20{width:305.808000px;}
._19{width:308.160000px;}
._17{width:316.176000px;}
._18{width:320.160000px;}
._44{width:326.016000px;}
._23{width:335.568000px;}
._36{width:339.312000px;}
._32{width:348.720000px;}
._24{width:350.976000px;}
._2a{width:360.336000px;}
._45{width:365.184000px;}
._43{width:371.280000px;}
._28{width:372.480000px;}
._3b{width:375.312000px;}
._46{width:377.184000px;}
._40{width:383.328000px;}
._3e{width:387.312000px;}
._2f{width:392.496000px;}
._3f{width:400.656000px;}
._27{width:402.240000px;}
._10{width:404.928000px;}
._37{width:408.624000px;}
._2e{width:413.760000px;}
._25{width:427.344000px;}
._47{width:441.984000px;}
._22{width:445.536000px;}
._11{width:487.200000px;}
._1d{width:498.816000px;}
._41{width:503.328000px;}
._16{width:510.816000px;}
._13{width:516.288000px;}
._12{width:517.440000px;}
._42{width:525.984000px;}
._3c{width:531.264000px;}
._2d{width:532.368000px;}
._49{width:598.032000px;}
._29{width:728.688000px;}
._26{width:787.440000px;}
._2c{width:867.312000px;}
._2b{width:878.016000px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs11{font-size:26.947800px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fsd{font-size:37.170000px;}
.fs10{font-size:37.726800px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsb{font-size:47.790000px;}
.fs9{font-size:48.000000px;}
.fse{font-size:48.505800px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:63.720000px;}
.fsf{font-size:64.674600px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y24a{bottom:80.263500px;}
.y1e5{bottom:83.230350px;}
.ya3{bottom:83.757600px;}
.y65{bottom:83.770350px;}
.y19a{bottom:83.772600px;}
.y1c9{bottom:83.922600px;}
.y103{bottom:83.935350px;}
.y172{bottom:84.225750px;}
.y208{bottom:86.121900px;}
.y23{bottom:88.029450px;}
.y158{bottom:93.273000px;}
.y131{bottom:93.779100px;}
.y249{bottom:95.263500px;}
.ya2{bottom:99.501600px;}
.y207{bottom:101.121900px;}
.y64{bottom:101.770350px;}
.y199{bottom:101.772600px;}
.y1c8{bottom:101.922600px;}
.y102{bottom:101.935350px;}
.yd0{bottom:102.070350px;}
.y22{bottom:103.023000px;}
.y157{bottom:109.521000px;}
.y171{bottom:109.737750px;}
.y130{bottom:110.027100px;}
.y248{bottom:110.263500px;}
.ya1{bottom:115.245600px;}
.y206{bottom:116.121900px;}
.y1e4{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y198{bottom:119.772600px;}
.y180{bottom:119.920350px;}
.y1c7{bottom:119.922600px;}
.y101{bottom:119.935350px;}
.ycf{bottom:120.070350px;}
.y247{bottom:125.263500px;}
.y156{bottom:125.769000px;}
.y170{bottom:125.985750px;}
.y12f{bottom:126.275100px;}
.ya0{bottom:130.989600px;}
.y205{bottom:131.121900px;}
.y1e3{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y197{bottom:137.772600px;}
.y17f{bottom:137.920350px;}
.y1c6{bottom:137.922600px;}
.y100{bottom:137.935350px;}
.yce{bottom:138.070350px;}
.y246{bottom:140.263500px;}
.y155{bottom:142.017000px;}
.y16f{bottom:142.233750px;}
.y12e{bottom:142.523100px;}
.y7c{bottom:144.082500px;}
.y204{bottom:146.121900px;}
.y245{bottom:155.263500px;}
.y1e2{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.y196{bottom:155.772600px;}
.y17e{bottom:155.920350px;}
.y1c5{bottom:155.922600px;}
.yff{bottom:155.935350px;}
.ycd{bottom:156.070350px;}
.y154{bottom:158.265000px;}
.y16e{bottom:158.481750px;}
.y12d{bottom:158.771100px;}
.y203{bottom:161.121900px;}
.y71{bottom:163.735800px;}
.y80{bottom:163.818750px;}
.y79{bottom:164.255528px;}
.y6a{bottom:164.311350px;}
.y244{bottom:170.263500px;}
.y1e1{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y195{bottom:173.772600px;}
.y17d{bottom:173.920350px;}
.y1c4{bottom:173.922600px;}
.yfe{bottom:173.935350px;}
.ycc{bottom:174.070350px;}
.y153{bottom:174.513000px;}
.y16d{bottom:174.729750px;}
.y12c{bottom:175.019100px;}
.y202{bottom:176.121900px;}
.y2b{bottom:176.607300px;}
.y6c{bottom:177.550650px;}
.y78{bottom:179.631960px;}
.y243{bottom:185.263500px;}
.y152{bottom:190.761000px;}
.y16c{bottom:190.977750px;}
.y201{bottom:191.121900px;}
.y12b{bottom:191.267100px;}
.y1e0{bottom:191.635350px;}
.y5f{bottom:191.770350px;}
.y194{bottom:191.772600px;}
.y17c{bottom:191.920350px;}
.y1c3{bottom:191.922600px;}
.ycb{bottom:192.070350px;}
.y70{bottom:193.130190px;}
.y2a{bottom:194.607300px;}
.y7a{bottom:194.996445px;}
.y242{bottom:200.263500px;}
.y200{bottom:206.121900px;}
.y16b{bottom:207.225750px;}
.y12a{bottom:207.515100px;}
.yfd{bottom:209.530350px;}
.y1df{bottom:209.635350px;}
.y5e{bottom:209.770350px;}
.y193{bottom:209.772600px;}
.y17b{bottom:209.920350px;}
.y1c2{bottom:209.922600px;}
.yca{bottom:210.070350px;}
.y7b{bottom:210.372878px;}
.y29{bottom:212.607300px;}
.y241{bottom:215.263500px;}
.y1ff{bottom:221.121900px;}
.y151{bottom:222.273000px;}
.y16a{bottom:223.473750px;}
.y129{bottom:223.763100px;}
.y74{bottom:225.701520px;}
.y1de{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y192{bottom:227.772600px;}
.y17a{bottom:227.920350px;}
.y1c1{bottom:227.922600px;}
.yc9{bottom:228.070350px;}
.y6f{bottom:228.793477px;}
.y72{bottom:230.111400px;}
.y240{bottom:230.263500px;}
.y28{bottom:230.607300px;}
.y9f{bottom:232.389600px;}
.y75{bottom:235.092255px;}
.y1fe{bottom:236.121900px;}
.y169{bottom:239.721750px;}
.y128{bottom:240.011100px;}
.y23f{bottom:245.263500px;}
.y1dd{bottom:245.635350px;}
.y7f{bottom:245.742600px;}
.y5c{bottom:245.770350px;}
.y191{bottom:245.772600px;}
.yfc{bottom:245.785350px;}
.y179{bottom:245.920350px;}
.y1c0{bottom:245.922600px;}
.yc8{bottom:246.070350px;}
.y27{bottom:248.607300px;}
.y76{bottom:250.098315px;}
.y1fd{bottom:251.121900px;}
.y168{bottom:255.969750px;}
.y127{bottom:256.259100px;}
.y150{bottom:257.168100px;}
.y23e{bottom:260.263500px;}
.y1dc{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y190{bottom:263.772600px;}
.yfb{bottom:263.785350px;}
.y178{bottom:263.920350px;}
.y1bf{bottom:263.922600px;}
.yc7{bottom:264.070350px;}
.y6d{bottom:264.456765px;}
.y1fc{bottom:266.121900px;}
.y26{bottom:266.607300px;}
.y77{bottom:270.863070px;}
.y167{bottom:272.217750px;}
.y126{bottom:272.507100px;}
.y23d{bottom:275.263500px;}
.y14f{bottom:276.668100px;}
.y1fb{bottom:281.121900px;}
.y1db{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.y18f{bottom:281.772600px;}
.yfa{bottom:281.785350px;}
.y177{bottom:281.920350px;}
.y1be{bottom:281.922600px;}
.yc6{bottom:282.070350px;}
.y25{bottom:284.607300px;}
.y23c{bottom:290.263500px;}
.y125{bottom:295.139100px;}
.y1fa{bottom:296.121900px;}
.y1da{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y18e{bottom:299.772600px;}
.yf9{bottom:299.785350px;}
.y176{bottom:299.920350px;}
.y1bd{bottom:299.922600px;}
.y6e{bottom:300.120053px;}
.y166{bottom:301.221750px;}
.y24{bottom:302.202300px;}
.y2c{bottom:302.607300px;}
.y23b{bottom:305.263500px;}
.y1f9{bottom:311.121900px;}
.y124{bottom:311.639100px;}
.y1d9{bottom:317.230350px;}
.yc5{bottom:317.665350px;}
.y58{bottom:317.770350px;}
.y18d{bottom:317.772600px;}
.yf8{bottom:317.785350px;}
.y175{bottom:317.920350px;}
.y1bc{bottom:317.922600px;}
.y23a{bottom:320.263500px;}
.y7e{bottom:322.038900px;}
.y137{bottom:323.661450px;}
.y1f8{bottom:326.121900px;}
.y165{bottom:330.225750px;}
.y239{bottom:335.263500px;}
.y57{bottom:335.770350px;}
.y18c{bottom:335.772600px;}
.yf7{bottom:335.785350px;}
.y1bb{bottom:335.922600px;}
.y136{bottom:339.405450px;}
.y123{bottom:340.643100px;}
.y1f7{bottom:341.121900px;}
.y238{bottom:350.263500px;}
.y174{bottom:353.515350px;}
.y1d8{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y18b{bottom:353.772600px;}
.yf6{bottom:353.785350px;}
.yc4{bottom:353.920350px;}
.y1ba{bottom:353.922600px;}
.y135{bottom:355.149450px;}
.y1f6{bottom:356.121900px;}
.y7d{bottom:360.100050px;}
.y164{bottom:362.635350px;}
.y237{bottom:365.263500px;}
.y134{bottom:370.893450px;}
.y1f5{bottom:371.121900px;}
.y1d7{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y18a{bottom:371.772600px;}
.yf5{bottom:371.785350px;}
.yc3{bottom:371.920350px;}
.y1b9{bottom:371.922600px;}
.y122{bottom:373.030350px;}
.y73{bottom:379.441950px;}
.y236{bottom:380.263500px;}
.y21{bottom:381.954900px;}
.y163{bottom:382.135350px;}
.y1f4{bottom:386.121900px;}
.y133{bottom:386.637450px;}
.y1d6{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y189{bottom:389.772600px;}
.yf4{bottom:389.785350px;}
.yc2{bottom:389.920350px;}
.y1b8{bottom:389.922600px;}
.y121{bottom:392.530350px;}
.y235{bottom:395.263500px;}
.y20{bottom:399.964200px;}
.y1f3{bottom:401.121900px;}
.y1d5{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y188{bottom:407.772600px;}
.yf3{bottom:407.785350px;}
.yc1{bottom:407.920350px;}
.y1b7{bottom:407.922600px;}
.y234{bottom:410.263500px;}
.y1f2{bottom:416.121900px;}
.y13f{bottom:416.377577px;}
.y14b{bottom:416.702100px;}
.y141{bottom:420.391432px;}
.y233{bottom:425.263500px;}
.y1d4{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y187{bottom:425.772600px;}
.yf2{bottom:425.785350px;}
.yc0{bottom:425.920350px;}
.y1b6{bottom:425.922600px;}
.y162{bottom:425.935350px;}
.y1f{bottom:427.309200px;}
.y1f1{bottom:431.121900px;}
.y148{bottom:431.866374px;}
.y143{bottom:431.878500px;}
.y13e{bottom:432.893802px;}
.y232{bottom:440.263500px;}
.y144{bottom:442.210235px;}
.y1d3{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y186{bottom:443.772600px;}
.yf1{bottom:443.785350px;}
.ybf{bottom:443.920350px;}
.y1b5{bottom:443.922600px;}
.y161{bottom:443.935350px;}
.y1e{bottom:445.309200px;}
.y1f0{bottom:446.121900px;}
.y138{bottom:449.397900px;}
.y231{bottom:455.263500px;}
.y1ef{bottom:461.121900px;}
.y1d2{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y185{bottom:461.772600px;}
.yf0{bottom:461.785350px;}
.ybe{bottom:461.920350px;}
.y1b4{bottom:461.922600px;}
.y160{bottom:461.935350px;}
.y1d{bottom:463.309200px;}
.y230{bottom:470.263500px;}
.y14d{bottom:470.391600px;}
.y139{bottom:473.481030px;}
.y1ee{bottom:476.121900px;}
.y1d1{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y184{bottom:479.772600px;}
.yef{bottom:479.785350px;}
.y14e{bottom:479.854050px;}
.ybd{bottom:479.920350px;}
.y1b3{bottom:479.922600px;}
.y145{bottom:480.651082px;}
.y1c{bottom:481.309200px;}
.y22f{bottom:485.263500px;}
.y142{bottom:485.952300px;}
.y1ed{bottom:491.121900px;}
.y69{bottom:493.965750px;}
.y15b{bottom:497.380350px;}
.y15f{bottom:497.530350px;}
.y1d0{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.y183{bottom:497.772600px;}
.yee{bottom:497.785350px;}
.y120{bottom:497.905350px;}
.ybc{bottom:497.920350px;}
.y1b2{bottom:497.922600px;}
.y1b{bottom:499.309200px;}
.y22e{bottom:500.263500px;}
.y6b{bottom:503.251800px;}
.y1ec{bottom:506.121900px;}
.y140{bottom:514.650327px;}
.y22d{bottom:515.263500px;}
.y15e{bottom:515.530350px;}
.y1cf{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y182{bottom:515.772600px;}
.yed{bottom:515.785350px;}
.y11f{bottom:515.905350px;}
.ybb{bottom:515.920350px;}
.y1b1{bottom:515.922600px;}
.y1a{bottom:517.309200px;}
.y146{bottom:517.673134px;}
.y1eb{bottom:521.121900px;}
.y22c{bottom:530.263500px;}
.y1ce{bottom:533.635350px;}
.y4c{bottom:533.770350px;}
.y181{bottom:533.772600px;}
.yec{bottom:533.785350px;}
.y11e{bottom:533.905350px;}
.yba{bottom:533.920350px;}
.y1b0{bottom:533.922600px;}
.y19{bottom:535.309200px;}
.y1ea{bottom:536.121900px;}
.y22b{bottom:545.263500px;}
.y1cd{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.y9b{bottom:551.772600px;}
.yeb{bottom:551.785350px;}
.y11d{bottom:551.905350px;}
.yb9{bottom:551.920350px;}
.y1af{bottom:551.922600px;}
.y18{bottom:553.309200px;}
.y147{bottom:555.277255px;}
.y22a{bottom:560.263500px;}
.y149{bottom:566.567250px;}
.y1e9{bottom:569.230350px;}
.y1cc{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y9a{bottom:569.772600px;}
.yea{bottom:569.785350px;}
.y11c{bottom:569.905350px;}
.yb8{bottom:569.920350px;}
.y1ae{bottom:569.922600px;}
.y17{bottom:571.309200px;}
.y229{bottom:575.263500px;}
.y13a{bottom:576.725625px;}
.y13d{bottom:580.351434px;}
.y1cb{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y99{bottom:587.772600px;}
.ye9{bottom:587.785350px;}
.y11b{bottom:587.905350px;}
.yb7{bottom:587.920350px;}
.y1ad{bottom:587.922600px;}
.y16{bottom:589.309200px;}
.y228{bottom:590.263500px;}
.y227{bottom:605.263500px;}
.y48{bottom:605.770350px;}
.y98{bottom:605.772600px;}
.ye8{bottom:605.785350px;}
.y11a{bottom:605.905350px;}
.yb6{bottom:605.920350px;}
.y1ac{bottom:605.922600px;}
.y15{bottom:607.309200px;}
.y13b{bottom:612.886699px;}
.y226{bottom:620.263500px;}
.y1ca{bottom:623.230350px;}
.y47{bottom:623.770350px;}
.y97{bottom:623.772600px;}
.ye7{bottom:623.785350px;}
.y119{bottom:623.905350px;}
.yb5{bottom:623.920350px;}
.y1ab{bottom:623.922600px;}
.y14{bottom:625.309200px;}
.y225{bottom:635.263500px;}
.y1e8{bottom:641.365350px;}
.y46{bottom:641.770350px;}
.y96{bottom:641.772600px;}
.ye6{bottom:641.785350px;}
.y118{bottom:641.905350px;}
.yb4{bottom:641.920350px;}
.y1aa{bottom:641.922600px;}
.y13{bottom:643.309200px;}
.y224{bottom:650.263500px;}
.y45{bottom:659.770350px;}
.y95{bottom:659.772600px;}
.ye5{bottom:659.785350px;}
.y117{bottom:659.905350px;}
.yb3{bottom:659.920350px;}
.y1a9{bottom:659.922600px;}
.y12{bottom:661.309200px;}
.y223{bottom:665.263500px;}
.y1e7{bottom:677.365350px;}
.y44{bottom:677.770350px;}
.y94{bottom:677.772600px;}
.ye4{bottom:677.785350px;}
.y116{bottom:677.905350px;}
.yb2{bottom:677.920350px;}
.y1a8{bottom:677.922600px;}
.y11{bottom:679.309200px;}
.y222{bottom:680.263500px;}
.y221{bottom:695.263500px;}
.y43{bottom:695.770350px;}
.y93{bottom:695.772600px;}
.ye3{bottom:695.785350px;}
.y115{bottom:695.905350px;}
.yb1{bottom:695.920350px;}
.y1a7{bottom:695.922600px;}
.y10{bottom:697.309200px;}
.y13c{bottom:705.217489px;}
.y220{bottom:710.263500px;}
.y42{bottom:713.770350px;}
.y92{bottom:713.772600px;}
.ye2{bottom:713.785350px;}
.y114{bottom:713.905350px;}
.yb0{bottom:713.920350px;}
.y1a6{bottom:713.922600px;}
.yf{bottom:715.309200px;}
.y21f{bottom:725.263500px;}
.y41{bottom:731.770350px;}
.y91{bottom:731.772600px;}
.ye1{bottom:731.785350px;}
.y113{bottom:731.905350px;}
.yaf{bottom:731.920350px;}
.y1a5{bottom:731.922600px;}
.ye{bottom:733.309200px;}
.y21e{bottom:740.263500px;}
.y40{bottom:749.770350px;}
.y90{bottom:749.772600px;}
.ye0{bottom:749.785350px;}
.y112{bottom:749.905350px;}
.yae{bottom:749.920350px;}
.y1a4{bottom:749.922600px;}
.y21d{bottom:755.263500px;}
.y14a{bottom:762.612131px;}
.y14c{bottom:764.328600px;}
.y3f{bottom:767.770350px;}
.y8f{bottom:767.772600px;}
.ydf{bottom:767.785350px;}
.y111{bottom:767.905350px;}
.yad{bottom:767.920350px;}
.y1a3{bottom:767.922600px;}
.y21c{bottom:770.263500px;}
.yd{bottom:778.467300px;}
.y21b{bottom:785.263500px;}
.y3e{bottom:785.770350px;}
.y8e{bottom:785.772600px;}
.yde{bottom:785.785350px;}
.y110{bottom:785.905350px;}
.yac{bottom:785.920350px;}
.y1a2{bottom:785.922600px;}
.yc{bottom:790.918050px;}
.y21a{bottom:800.263500px;}
.y67{bottom:803.365350px;}
.y3d{bottom:803.770350px;}
.y8d{bottom:803.772600px;}
.ydd{bottom:803.785350px;}
.y10f{bottom:803.905350px;}
.yab{bottom:803.920350px;}
.y1a1{bottom:803.922600px;}
.y219{bottom:815.263500px;}
.y15a{bottom:821.515350px;}
.y3c{bottom:821.770350px;}
.y8c{bottom:821.772600px;}
.ydc{bottom:821.785350px;}
.y10e{bottom:821.905350px;}
.yaa{bottom:821.920350px;}
.y1a0{bottom:821.922600px;}
.yb{bottom:828.058950px;}
.y218{bottom:830.263500px;}
.y66{bottom:839.230350px;}
.y3b{bottom:839.770350px;}
.y8b{bottom:839.772600px;}
.ydb{bottom:839.785350px;}
.y10d{bottom:839.905350px;}
.ya9{bottom:839.920350px;}
.y19f{bottom:839.922600px;}
.ya{bottom:841.558950px;}
.y217{bottom:845.263500px;}
.y9{bottom:849.633600px;}
.y1e6{bottom:857.365350px;}
.y3a{bottom:857.770350px;}
.y8a{bottom:857.772600px;}
.yda{bottom:857.785350px;}
.y10c{bottom:857.905350px;}
.ya8{bottom:857.920350px;}
.y19e{bottom:857.922600px;}
.y216{bottom:860.263500px;}
.y8{bottom:868.558950px;}
.y215{bottom:875.263500px;}
.y39{bottom:875.770350px;}
.y89{bottom:875.772600px;}
.yd9{bottom:875.785350px;}
.y10b{bottom:875.905350px;}
.ya7{bottom:875.920350px;}
.y19d{bottom:875.922600px;}
.y7{bottom:876.633600px;}
.y214{bottom:890.263500px;}
.y38{bottom:893.770350px;}
.y88{bottom:893.772600px;}
.yd8{bottom:893.785350px;}
.y10a{bottom:893.905350px;}
.ya6{bottom:893.920350px;}
.y19c{bottom:893.922600px;}
.y6{bottom:895.558950px;}
.y213{bottom:905.263500px;}
.y37{bottom:911.770350px;}
.y87{bottom:911.772600px;}
.yd7{bottom:911.785350px;}
.y109{bottom:911.905350px;}
.y212{bottom:920.263500px;}
.y5{bottom:924.280950px;}
.ya5{bottom:929.515350px;}
.y19b{bottom:929.517600px;}
.y36{bottom:929.770350px;}
.y86{bottom:929.772600px;}
.yd6{bottom:929.785350px;}
.y108{bottom:929.905350px;}
.y211{bottom:935.263500px;}
.y35{bottom:947.770350px;}
.y85{bottom:947.772600px;}
.yd5{bottom:947.785350px;}
.y107{bottom:947.905350px;}
.y210{bottom:950.263500px;}
.y20f{bottom:965.263500px;}
.y34{bottom:965.770350px;}
.y84{bottom:965.772600px;}
.yd4{bottom:965.785350px;}
.y106{bottom:965.905350px;}
.y4{bottom:970.465200px;}
.y20e{bottom:980.263500px;}
.y33{bottom:983.770350px;}
.y83{bottom:983.772600px;}
.yd3{bottom:983.785350px;}
.y20d{bottom:995.263500px;}
.y105{bottom:1001.500350px;}
.y32{bottom:1001.770350px;}
.y9e{bottom:1001.772600px;}
.yd2{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y20c{bottom:1010.263500px;}
.y82{bottom:1019.367600px;}
.y31{bottom:1019.770350px;}
.y9d{bottom:1019.772600px;}
.y15d{bottom:1019.785350px;}
.y20b{bottom:1025.263500px;}
.y104{bottom:1037.365350px;}
.y81{bottom:1037.367600px;}
.yd1{bottom:1037.380350px;}
.y30{bottom:1037.770350px;}
.y9c{bottom:1037.772600px;}
.y15c{bottom:1037.785350px;}
.y20a{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y209{bottom:1132.413900px;}
.y68{bottom:1132.418700px;}
.y24b{bottom:1132.423500px;}
.y159{bottom:1132.437000px;}
.ya4{bottom:1132.437600px;}
.y173{bottom:1132.461750px;}
.y132{bottom:1132.463100px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h18{height:27.060776px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.hc{height:32.794003px;}
.h7{height:32.805176px;}
.h21{height:33.092335px;}
.h22{height:33.092935px;}
.h1b{height:33.328125px;}
.h1a{height:33.351562px;}
.h13{height:34.792427px;}
.h15{height:34.815762px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h20{height:35.313549px;}
.h1e{height:35.337233px;}
.hf{height:41.689453px;}
.h19{height:42.117188px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.ha{height:43.740234px;}
.h14{height:46.389902px;}
.h1f{height:47.084877px;}
.h16{height:51.566717px;}
.he{height:52.646484px;}
.h23{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h1d{height:58.280477px;}
.h1c{height:58.946900px;}
.h12{height:58.955900px;}
.h4{height:92.168262px;}
.h17{height:376.251000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:721.639500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x45{left:78.661350px;}
.x40{left:80.086623px;}
.x31{left:82.268400px;}
.x37{left:87.951693px;}
.x43{left:90.042300px;}
.x22{left:94.737000px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x2c{left:99.921300px;}
.x14{left:101.141850px;}
.x21{left:102.446633px;}
.x4{left:106.299150px;}
.x1f{left:107.894693px;}
.xc{left:110.555400px;}
.x20{left:113.342753px;}
.x4b{left:123.307050px;}
.x3{left:125.439150px;}
.x7{left:131.816400px;}
.x35{left:161.568736px;}
.x48{left:190.130400px;}
.x5{left:191.338500px;}
.x6{left:212.876400px;}
.x26{left:219.033450px;}
.x46{left:220.135350px;}
.x28{left:228.199050px;}
.x32{left:252.930738px;}
.x36{left:258.368709px;}
.x1a{left:261.981600px;}
.x38{left:270.747248px;}
.x47{left:276.393300px;}
.x33{left:364.225152px;}
.x34{left:371.942573px;}
.x1e{left:410.309813px;}
.x1d{left:418.529693px;}
.x2d{left:422.709300px;}
.x13{left:424.101300px;}
.x25{left:429.421050px;}
.x1b{left:430.847565px;}
.x1c{left:445.650517px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x42{left:458.985300px;}
.x27{left:478.345350px;}
.x8{left:480.476400px;}
.x2e{left:481.929300px;}
.x23{left:485.485200px;}
.xf{left:491.105400px;}
.x4c{left:503.875050px;}
.x41{left:506.965200px;}
.x2b{left:512.372550px;}
.x44{left:514.143900px;}
.xe{left:525.275400px;}
.x3f{left:543.625650px;}
.x3a{left:555.238200px;}
.x3d{left:560.548167px;}
.x3c{left:565.894142px;}
.x12{left:567.364650px;}
.x49{left:574.820400px;}
.x2f{left:575.973300px;}
.x24{left:580.222200px;}
.x19{left:592.050450px;}
.x16{left:596.161350px;}
.x17{left:606.992675px;}
.x2a{left:612.917550px;}
.x18{left:615.233053px;}
.x3b{left:636.557100px;}
.x39{left:657.620042px;}
.x11{left:663.492300px;}
.x30{left:665.169300px;}
.x15{left:667.996800px;}
.x2{left:693.365400px;}
.x3e{left:704.368189px;}
.x4a{left:721.722600px;}
.x10{left:728.391600px;}
.x4d{left:743.867250px;}
.x29{left:749.659050px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.440000pt;}
.v6{vertical-align:11.976533pt;}
.v4{vertical-align:14.910480pt;}
.v5{vertical-align:20.393994pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls39{letter-spacing:-5.760000pt;}
.ls53{letter-spacing:-5.504000pt;}
.ls36{letter-spacing:-4.460400pt;}
.ls54{letter-spacing:-3.966697pt;}
.ls37{letter-spacing:-3.865680pt;}
.ls3a{letter-spacing:-3.456000pt;}
.ls4c{letter-spacing:-1.578667pt;}
.ls52{letter-spacing:-0.960000pt;}
.ls57{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls85{letter-spacing:-0.512000pt;}
.ls81{letter-spacing:-0.469333pt;}
.ls59{letter-spacing:-0.426667pt;}
.ls86{letter-spacing:-0.298667pt;}
.ls4a{letter-spacing:-0.266667pt;}
.ls38{letter-spacing:-0.256000pt;}
.ls4b{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls82{letter-spacing:-0.128000pt;}
.ls47{letter-spacing:-0.106667pt;}
.ls84{letter-spacing:-0.085333pt;}
.ls46{letter-spacing:-0.053333pt;}
.ls80{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:-0.040000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.000892pt;}
.ls50{letter-spacing:0.001425pt;}
.ls0{letter-spacing:0.003680pt;}
.ls69{letter-spacing:0.042667pt;}
.ls19{letter-spacing:0.053333pt;}
.ls6c{letter-spacing:0.085333pt;}
.ls20{letter-spacing:0.106667pt;}
.ls67{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls77{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.213333pt;}
.ls64{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.266667pt;}
.ls71{letter-spacing:0.298667pt;}
.ls22{letter-spacing:0.320000pt;}
.ls6a{letter-spacing:0.341333pt;}
.ls23{letter-spacing:0.373333pt;}
.ls7a{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls4e{letter-spacing:0.469333pt;}
.ls34{letter-spacing:0.480000pt;}
.ls90{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls6e{letter-spacing:0.554667pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls7e{letter-spacing:0.597333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls8f{letter-spacing:0.682667pt;}
.ls18{letter-spacing:0.693333pt;}
.ls87{letter-spacing:0.725333pt;}
.ls26{letter-spacing:0.746667pt;}
.ls75{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls6f{letter-spacing:0.810667pt;}
.ls4d{letter-spacing:0.830400pt;}
.ls42{letter-spacing:0.853333pt;}
.ls70{letter-spacing:0.896000pt;}
.ls24{letter-spacing:0.906667pt;}
.ls65{letter-spacing:0.938667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls8a{letter-spacing:0.981333pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls74{letter-spacing:1.024000pt;}
.ls8{letter-spacing:1.066667pt;}
.ls78{letter-spacing:1.109333pt;}
.ls2e{letter-spacing:1.120000pt;}
.ls92{letter-spacing:1.152000pt;}
.ls28{letter-spacing:1.167467pt;}
.ls21{letter-spacing:1.173333pt;}
.ls7c{letter-spacing:1.194667pt;}
.ls1c{letter-spacing:1.226667pt;}
.ls68{letter-spacing:1.237333pt;}
.ls5{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.333333pt;}
.ls7b{letter-spacing:1.365333pt;}
.ls44{letter-spacing:1.386667pt;}
.ls7d{letter-spacing:1.408000pt;}
.ls17{letter-spacing:1.440000pt;}
.ls31{letter-spacing:1.493333pt;}
.ls88{letter-spacing:1.536000pt;}
.ls9{letter-spacing:1.546667pt;}
.ls89{letter-spacing:1.578667pt;}
.ls2a{letter-spacing:1.600000pt;}
.ls76{letter-spacing:1.621333pt;}
.ls6{letter-spacing:1.653333pt;}
.ls8e{letter-spacing:1.664000pt;}
.ls5a{letter-spacing:1.706667pt;}
.ls66{letter-spacing:1.749333pt;}
.ls15{letter-spacing:1.760000pt;}
.ls6b{letter-spacing:1.792000pt;}
.ls3d{letter-spacing:1.813333pt;}
.ls83{letter-spacing:1.834667pt;}
.ls16{letter-spacing:1.866667pt;}
.ls8d{letter-spacing:1.877333pt;}
.lse{letter-spacing:1.920000pt;}
.ls3f{letter-spacing:1.973333pt;}
.ls2d{letter-spacing:1.994667pt;}
.ls27{letter-spacing:2.026667pt;}
.ls7f{letter-spacing:2.048000pt;}
.ls2f{letter-spacing:2.080000pt;}
.ls79{letter-spacing:2.090667pt;}
.ls3b{letter-spacing:2.133333pt;}
.ls91{letter-spacing:2.176000pt;}
.ls3e{letter-spacing:2.186667pt;}
.ls93{letter-spacing:2.218667pt;}
.ls45{letter-spacing:2.240000pt;}
.ls73{letter-spacing:2.261333pt;}
.ls10{letter-spacing:2.293333pt;}
.ls72{letter-spacing:2.304000pt;}
.ls7{letter-spacing:2.346667pt;}
.ls14{letter-spacing:2.400000pt;}
.ls41{letter-spacing:2.453333pt;}
.ls40{letter-spacing:2.506667pt;}
.ls43{letter-spacing:2.560000pt;}
.ls6d{letter-spacing:2.602667pt;}
.ls35{letter-spacing:2.613333pt;}
.ls1e{letter-spacing:2.666667pt;}
.ls29{letter-spacing:2.720000pt;}
.ls5c{letter-spacing:2.773333pt;}
.ls13{letter-spacing:2.826667pt;}
.ls8c{letter-spacing:2.858667pt;}
.ls49{letter-spacing:2.880000pt;}
.ls4{letter-spacing:2.933333pt;}
.ls60{letter-spacing:2.986667pt;}
.ls58{letter-spacing:3.040000pt;}
.ls5f{letter-spacing:3.093333pt;}
.ls30{letter-spacing:3.146667pt;}
.ls62{letter-spacing:3.200000pt;}
.ls5d{letter-spacing:3.253333pt;}
.ls12{letter-spacing:3.306667pt;}
.ls2c{letter-spacing:3.413333pt;}
.ls5e{letter-spacing:3.466667pt;}
.ls25{letter-spacing:3.786667pt;}
.ls56{letter-spacing:3.893333pt;}
.ls8b{letter-spacing:4.010667pt;}
.ls5b{letter-spacing:4.213333pt;}
.ls3c{letter-spacing:4.266667pt;}
.ls55{letter-spacing:4.480000pt;}
.ls48{letter-spacing:5.600000pt;}
.ls61{letter-spacing:5.653333pt;}
.ls1{letter-spacing:6.453333pt;}
.ls63{letter-spacing:6.773333pt;}
.ls4f{letter-spacing:1606.632041pt;}
.ws75{word-spacing:-17.813333pt;}
.ws43{word-spacing:-14.826667pt;}
.ws31{word-spacing:-14.506667pt;}
.ws1d{word-spacing:-14.080000pt;}
.ws9e{word-spacing:-13.525333pt;}
.ws44{word-spacing:-13.333333pt;}
.wsa2{word-spacing:-12.885333pt;}
.ws8b{word-spacing:-12.373333pt;}
.ws9f{word-spacing:-12.202667pt;}
.ws88{word-spacing:-12.032000pt;}
.ws57{word-spacing:-11.986322pt;}
.ws2{word-spacing:-11.861333pt;}
.ws87{word-spacing:-11.776000pt;}
.ws9d{word-spacing:-11.733333pt;}
.ws84{word-spacing:-11.221333pt;}
.ws55{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.080000pt;}
.wsa1{word-spacing:-11.008000pt;}
.ws85{word-spacing:-10.922667pt;}
.ws8a{word-spacing:-10.752000pt;}
.ws86{word-spacing:-10.709333pt;}
.ws89{word-spacing:-10.666667pt;}
.wsa0{word-spacing:-10.624000pt;}
.ws1e{word-spacing:-10.410667pt;}
.ws8c{word-spacing:-10.154667pt;}
.ws83{word-spacing:-9.088000pt;}
.ws0{word-spacing:-9.076144pt;}
.ws42{word-spacing:-7.773333pt;}
.ws59{word-spacing:-7.645965pt;}
.ws1f{word-spacing:-7.210667pt;}
.ws7a{word-spacing:-2.880000pt;}
.ws47{word-spacing:-2.613333pt;}
.ws4{word-spacing:-2.565333pt;}
.ws7b{word-spacing:-2.400000pt;}
.wsab{word-spacing:-2.346667pt;}
.ws91{word-spacing:-2.304000pt;}
.ws4e{word-spacing:-2.133333pt;}
.ws5c{word-spacing:-2.080000pt;}
.ws13{word-spacing:-1.973333pt;}
.ws94{word-spacing:-1.920000pt;}
.wsae{word-spacing:-1.578667pt;}
.wsa9{word-spacing:-1.536000pt;}
.ws9c{word-spacing:-1.493333pt;}
.ws5d{word-spacing:-1.440000pt;}
.wsaf{word-spacing:-1.109333pt;}
.ws52{word-spacing:-1.066667pt;}
.ws92{word-spacing:-1.024000pt;}
.ws4f{word-spacing:-1.013333pt;}
.ws66{word-spacing:-0.768000pt;}
.ws4d{word-spacing:-0.746667pt;}
.wsb0{word-spacing:-0.682667pt;}
.wsd{word-spacing:-0.586667pt;}
.ws90{word-spacing:-0.554667pt;}
.ws50{word-spacing:-0.480000pt;}
.ws60{word-spacing:-0.469333pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws6f{word-spacing:-0.373333pt;}
.ws97{word-spacing:-0.341333pt;}
.ws73{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.213333pt;}
.ws95{word-spacing:-0.170667pt;}
.ws3b{word-spacing:-0.160000pt;}
.ws7e{word-spacing:-0.128000pt;}
.ws11{word-spacing:-0.106667pt;}
.wsb1{word-spacing:-0.085333pt;}
.ws1a{word-spacing:-0.053333pt;}
.wsa8{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.053333pt;}
.ws9a{word-spacing:0.085333pt;}
.ws2b{word-spacing:0.106667pt;}
.ws96{word-spacing:0.128000pt;}
.ws12{word-spacing:0.160000pt;}
.wsa{word-spacing:0.213333pt;}
.ws2f{word-spacing:0.256000pt;}
.ws33{word-spacing:0.266667pt;}
.ws9b{word-spacing:0.298667pt;}
.ws72{word-spacing:0.320000pt;}
.ws5a{word-spacing:0.373333pt;}
.ws99{word-spacing:0.384000pt;}
.ws68{word-spacing:0.426667pt;}
.ws6c{word-spacing:0.480000pt;}
.wsad{word-spacing:0.512000pt;}
.ws74{word-spacing:0.586667pt;}
.ws2a{word-spacing:0.746667pt;}
.ws63{word-spacing:0.768000pt;}
.ws7f{word-spacing:0.810667pt;}
.ws2e{word-spacing:0.853333pt;}
.ws5e{word-spacing:0.960000pt;}
.ws16{word-spacing:1.013333pt;}
.wsb4{word-spacing:1.024000pt;}
.ws6a{word-spacing:1.066667pt;}
.ws19{word-spacing:1.120000pt;}
.wsaa{word-spacing:1.152000pt;}
.ws38{word-spacing:1.173333pt;}
.wsb3{word-spacing:1.194667pt;}
.ws98{word-spacing:1.237333pt;}
.ws6d{word-spacing:1.280000pt;}
.ws77{word-spacing:1.333333pt;}
.ws6e{word-spacing:1.386667pt;}
.wsa4{word-spacing:1.408000pt;}
.wsb{word-spacing:1.440000pt;}
.wsb2{word-spacing:1.450667pt;}
.ws41{word-spacing:1.493333pt;}
.wsa7{word-spacing:1.536000pt;}
.ws71{word-spacing:1.546667pt;}
.ws54{word-spacing:1.578667pt;}
.ws67{word-spacing:1.600000pt;}
.ws8d{word-spacing:1.621333pt;}
.ws76{word-spacing:1.653333pt;}
.ws2d{word-spacing:1.664000pt;}
.ws36{word-spacing:1.760000pt;}
.ws61{word-spacing:1.792000pt;}
.ws53{word-spacing:1.813333pt;}
.wsa3{word-spacing:1.834667pt;}
.ws45{word-spacing:1.866667pt;}
.ws24{word-spacing:1.920000pt;}
.ws34{word-spacing:1.973333pt;}
.ws69{word-spacing:2.026667pt;}
.ws3c{word-spacing:2.080000pt;}
.ws40{word-spacing:2.133333pt;}
.ws93{word-spacing:2.218667pt;}
.ws65{word-spacing:2.240000pt;}
.wsf{word-spacing:2.293333pt;}
.wsa6{word-spacing:2.304000pt;}
.ws32{word-spacing:2.346667pt;}
.ws8f{word-spacing:2.389333pt;}
.ws22{word-spacing:2.400000pt;}
.ws25{word-spacing:2.453333pt;}
.ws6b{word-spacing:2.506667pt;}
.ws7d{word-spacing:2.517333pt;}
.ws28{word-spacing:2.560000pt;}
.ws3e{word-spacing:2.613333pt;}
.ws82{word-spacing:2.645333pt;}
.ws23{word-spacing:2.666667pt;}
.ws27{word-spacing:2.720000pt;}
.ws80{word-spacing:2.730667pt;}
.ws14{word-spacing:2.773333pt;}
.ws10{word-spacing:2.826667pt;}
.ws17{word-spacing:2.880000pt;}
.ws49{word-spacing:2.933333pt;}
.ws5b{word-spacing:2.986667pt;}
.ws81{word-spacing:3.029333pt;}
.ws39{word-spacing:3.040000pt;}
.ws37{word-spacing:3.093333pt;}
.wsac{word-spacing:3.157333pt;}
.ws51{word-spacing:3.200000pt;}
.ws18{word-spacing:3.253333pt;}
.ws8e{word-spacing:3.285333pt;}
.ws35{word-spacing:3.360000pt;}
.wsc{word-spacing:3.413333pt;}
.wsa5{word-spacing:3.456000pt;}
.ws7{word-spacing:3.466667pt;}
.ws7c{word-spacing:3.498667pt;}
.ws4a{word-spacing:3.520000pt;}
.ws5f{word-spacing:3.541333pt;}
.ws2c{word-spacing:3.573333pt;}
.ws29{word-spacing:3.680000pt;}
.ws15{word-spacing:3.733333pt;}
.ws46{word-spacing:3.786667pt;}
.ws4c{word-spacing:3.840000pt;}
.ws21{word-spacing:3.865680pt;}
.ws3d{word-spacing:3.893333pt;}
.ws8{word-spacing:3.946667pt;}
.ws64{word-spacing:3.966697pt;}
.ws26{word-spacing:4.000000pt;}
.ws3f{word-spacing:4.053333pt;}
.ws48{word-spacing:4.106667pt;}
.wse{word-spacing:4.320000pt;}
.ws5{word-spacing:4.373333pt;}
.ws6{word-spacing:4.426667pt;}
.ws20{word-spacing:4.460400pt;}
.ws78{word-spacing:4.853333pt;}
.ws79{word-spacing:4.906667pt;}
.ws30{word-spacing:5.760000pt;}
.ws70{word-spacing:6.666667pt;}
.ws62{word-spacing:7.296000pt;}
.ws1c{word-spacing:141.585840pt;}
.ws1b{word-spacing:144.899280pt;}
.ws58{word-spacing:191.177526pt;}
.ws56{word-spacing:775.144242pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._21{margin-left:-330.960463pt;}
._a{margin-left:-17.967013pt;}
._6{margin-left:-6.720000pt;}
._4{margin-left:-5.780347pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.733333pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.046320pt;}
._7{width:0.939653pt;}
._9{width:2.026667pt;}
._b{width:3.680000pt;}
._8{width:4.586667pt;}
._f{width:5.653333pt;}
._2{width:52.727669pt;}
._15{width:150.101333pt;}
._33{width:174.122667pt;}
._d{width:177.141600pt;}
._31{width:194.389333pt;}
._35{width:195.541333pt;}
._30{width:197.973333pt;}
._34{width:206.293333pt;}
._38{width:208.176000pt;}
._14{width:209.962667pt;}
._39{width:216.960000pt;}
._3a{width:227.541333pt;}
._3d{width:238.122667pt;}
._48{width:240.176000pt;}
._1c{width:249.045333pt;}
._1a{width:259.370667pt;}
._1e{width:260.394667pt;}
._1f{width:269.696000pt;}
._1b{width:270.720000pt;}
._20{width:271.829333pt;}
._19{width:273.920000pt;}
._17{width:281.045333pt;}
._18{width:284.586667pt;}
._44{width:289.792000pt;}
._23{width:298.282667pt;}
._36{width:301.610667pt;}
._32{width:309.973333pt;}
._24{width:311.978667pt;}
._2a{width:320.298667pt;}
._45{width:324.608000pt;}
._43{width:330.026667pt;}
._28{width:331.093333pt;}
._3b{width:333.610667pt;}
._46{width:335.274667pt;}
._40{width:340.736000pt;}
._3e{width:344.277333pt;}
._2f{width:348.885333pt;}
._3f{width:356.138667pt;}
._27{width:357.546667pt;}
._10{width:359.936000pt;}
._37{width:363.221333pt;}
._2e{width:367.786667pt;}
._25{width:379.861333pt;}
._47{width:392.874667pt;}
._22{width:396.032000pt;}
._11{width:433.066667pt;}
._1d{width:443.392000pt;}
._41{width:447.402667pt;}
._16{width:454.058667pt;}
._13{width:458.922667pt;}
._12{width:459.946667pt;}
._42{width:467.541333pt;}
._3c{width:472.234667pt;}
._2d{width:473.216000pt;}
._49{width:531.584000pt;}
._29{width:647.722667pt;}
._26{width:699.946667pt;}
._2c{width:770.944000pt;}
._2b{width:780.458667pt;}
.fs5{font-size:23.320000pt;}
.fs11{font-size:23.953600pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fsd{font-size:33.040000pt;}
.fs10{font-size:33.534933pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsb{font-size:42.480000pt;}
.fs9{font-size:42.666667pt;}
.fse{font-size:43.116267pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:56.640000pt;}
.fsf{font-size:57.488533pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y24a{bottom:71.345333pt;}
.y1e5{bottom:73.982533pt;}
.ya3{bottom:74.451200pt;}
.y65{bottom:74.462533pt;}
.y19a{bottom:74.464533pt;}
.y1c9{bottom:74.597867pt;}
.y103{bottom:74.609200pt;}
.y172{bottom:74.867333pt;}
.y208{bottom:76.552800pt;}
.y23{bottom:78.248400pt;}
.y158{bottom:82.909333pt;}
.y131{bottom:83.359200pt;}
.y249{bottom:84.678667pt;}
.ya2{bottom:88.445867pt;}
.y207{bottom:89.886133pt;}
.y64{bottom:90.462533pt;}
.y199{bottom:90.464533pt;}
.y1c8{bottom:90.597867pt;}
.y102{bottom:90.609200pt;}
.yd0{bottom:90.729200pt;}
.y22{bottom:91.576000pt;}
.y157{bottom:97.352000pt;}
.y171{bottom:97.544667pt;}
.y130{bottom:97.801867pt;}
.y248{bottom:98.012000pt;}
.ya1{bottom:102.440533pt;}
.y206{bottom:103.219467pt;}
.y1e4{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y198{bottom:106.464533pt;}
.y180{bottom:106.595867pt;}
.y1c7{bottom:106.597867pt;}
.y101{bottom:106.609200pt;}
.ycf{bottom:106.729200pt;}
.y247{bottom:111.345333pt;}
.y156{bottom:111.794667pt;}
.y170{bottom:111.987333pt;}
.y12f{bottom:112.244533pt;}
.ya0{bottom:116.435200pt;}
.y205{bottom:116.552800pt;}
.y1e3{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y197{bottom:122.464533pt;}
.y17f{bottom:122.595867pt;}
.y1c6{bottom:122.597867pt;}
.y100{bottom:122.609200pt;}
.yce{bottom:122.729200pt;}
.y246{bottom:124.678667pt;}
.y155{bottom:126.237333pt;}
.y16f{bottom:126.430000pt;}
.y12e{bottom:126.687200pt;}
.y7c{bottom:128.073333pt;}
.y204{bottom:129.886133pt;}
.y245{bottom:138.012000pt;}
.y1e2{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.y196{bottom:138.464533pt;}
.y17e{bottom:138.595867pt;}
.y1c5{bottom:138.597867pt;}
.yff{bottom:138.609200pt;}
.ycd{bottom:138.729200pt;}
.y154{bottom:140.680000pt;}
.y16e{bottom:140.872667pt;}
.y12d{bottom:141.129867pt;}
.y203{bottom:143.219467pt;}
.y71{bottom:145.542933pt;}
.y80{bottom:145.616667pt;}
.y79{bottom:146.004913pt;}
.y6a{bottom:146.054533pt;}
.y244{bottom:151.345333pt;}
.y1e1{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y195{bottom:154.464533pt;}
.y17d{bottom:154.595867pt;}
.y1c4{bottom:154.597867pt;}
.yfe{bottom:154.609200pt;}
.ycc{bottom:154.729200pt;}
.y153{bottom:155.122667pt;}
.y16d{bottom:155.315333pt;}
.y12c{bottom:155.572533pt;}
.y202{bottom:156.552800pt;}
.y2b{bottom:156.984267pt;}
.y6c{bottom:157.822800pt;}
.y78{bottom:159.672853pt;}
.y243{bottom:164.678667pt;}
.y152{bottom:169.565333pt;}
.y16c{bottom:169.758000pt;}
.y201{bottom:169.886133pt;}
.y12b{bottom:170.015200pt;}
.y1e0{bottom:170.342533pt;}
.y5f{bottom:170.462533pt;}
.y194{bottom:170.464533pt;}
.y17c{bottom:170.595867pt;}
.y1c3{bottom:170.597867pt;}
.ycb{bottom:170.729200pt;}
.y70{bottom:171.671280pt;}
.y2a{bottom:172.984267pt;}
.y7a{bottom:173.330173pt;}
.y242{bottom:178.012000pt;}
.y200{bottom:183.219467pt;}
.y16b{bottom:184.200667pt;}
.y12a{bottom:184.457867pt;}
.yfd{bottom:186.249200pt;}
.y1df{bottom:186.342533pt;}
.y5e{bottom:186.462533pt;}
.y193{bottom:186.464533pt;}
.y17b{bottom:186.595867pt;}
.y1c2{bottom:186.597867pt;}
.yca{bottom:186.729200pt;}
.y7b{bottom:186.998113pt;}
.y29{bottom:188.984267pt;}
.y241{bottom:191.345333pt;}
.y1ff{bottom:196.552800pt;}
.y151{bottom:197.576000pt;}
.y16a{bottom:198.643333pt;}
.y129{bottom:198.900533pt;}
.y74{bottom:200.623573pt;}
.y1de{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y192{bottom:202.464533pt;}
.y17a{bottom:202.595867pt;}
.y1c1{bottom:202.597867pt;}
.yc9{bottom:202.729200pt;}
.y6f{bottom:203.371980pt;}
.y72{bottom:204.543467pt;}
.y240{bottom:204.678667pt;}
.y28{bottom:204.984267pt;}
.y9f{bottom:206.568533pt;}
.y75{bottom:208.970893pt;}
.y1fe{bottom:209.886133pt;}
.y169{bottom:213.086000pt;}
.y128{bottom:213.343200pt;}
.y23f{bottom:218.012000pt;}
.y1dd{bottom:218.342533pt;}
.y7f{bottom:218.437867pt;}
.y5c{bottom:218.462533pt;}
.y191{bottom:218.464533pt;}
.yfc{bottom:218.475867pt;}
.y179{bottom:218.595867pt;}
.y1c0{bottom:218.597867pt;}
.yc8{bottom:218.729200pt;}
.y27{bottom:220.984267pt;}
.y76{bottom:222.309613pt;}
.y1fd{bottom:223.219467pt;}
.y168{bottom:227.528667pt;}
.y127{bottom:227.785867pt;}
.y150{bottom:228.593867pt;}
.y23e{bottom:231.345333pt;}
.y1dc{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y190{bottom:234.464533pt;}
.yfb{bottom:234.475867pt;}
.y178{bottom:234.595867pt;}
.y1bf{bottom:234.597867pt;}
.yc7{bottom:234.729200pt;}
.y6d{bottom:235.072680pt;}
.y1fc{bottom:236.552800pt;}
.y26{bottom:236.984267pt;}
.y77{bottom:240.767173pt;}
.y167{bottom:241.971333pt;}
.y126{bottom:242.228533pt;}
.y23d{bottom:244.678667pt;}
.y14f{bottom:245.927200pt;}
.y1fb{bottom:249.886133pt;}
.y1db{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.y18f{bottom:250.464533pt;}
.yfa{bottom:250.475867pt;}
.y177{bottom:250.595867pt;}
.y1be{bottom:250.597867pt;}
.yc6{bottom:250.729200pt;}
.y25{bottom:252.984267pt;}
.y23c{bottom:258.012000pt;}
.y125{bottom:262.345867pt;}
.y1fa{bottom:263.219467pt;}
.y1da{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y18e{bottom:266.464533pt;}
.yf9{bottom:266.475867pt;}
.y176{bottom:266.595867pt;}
.y1bd{bottom:266.597867pt;}
.y6e{bottom:266.773380pt;}
.y166{bottom:267.752667pt;}
.y24{bottom:268.624267pt;}
.y2c{bottom:268.984267pt;}
.y23b{bottom:271.345333pt;}
.y1f9{bottom:276.552800pt;}
.y124{bottom:277.012533pt;}
.y1d9{bottom:281.982533pt;}
.yc5{bottom:282.369200pt;}
.y58{bottom:282.462533pt;}
.y18d{bottom:282.464533pt;}
.yf8{bottom:282.475867pt;}
.y175{bottom:282.595867pt;}
.y1bc{bottom:282.597867pt;}
.y23a{bottom:284.678667pt;}
.y7e{bottom:286.256800pt;}
.y137{bottom:287.699067pt;}
.y1f8{bottom:289.886133pt;}
.y165{bottom:293.534000pt;}
.y239{bottom:298.012000pt;}
.y57{bottom:298.462533pt;}
.y18c{bottom:298.464533pt;}
.yf7{bottom:298.475867pt;}
.y1bb{bottom:298.597867pt;}
.y136{bottom:301.693733pt;}
.y123{bottom:302.793867pt;}
.y1f7{bottom:303.219467pt;}
.y238{bottom:311.345333pt;}
.y174{bottom:314.235867pt;}
.y1d8{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y18b{bottom:314.464533pt;}
.yf6{bottom:314.475867pt;}
.yc4{bottom:314.595867pt;}
.y1ba{bottom:314.597867pt;}
.y135{bottom:315.688400pt;}
.y1f6{bottom:316.552800pt;}
.y7d{bottom:320.088933pt;}
.y164{bottom:322.342533pt;}
.y237{bottom:324.678667pt;}
.y134{bottom:329.683067pt;}
.y1f5{bottom:329.886133pt;}
.y1d7{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y18a{bottom:330.464533pt;}
.yf5{bottom:330.475867pt;}
.yc3{bottom:330.595867pt;}
.y1b9{bottom:330.597867pt;}
.y122{bottom:331.582533pt;}
.y73{bottom:337.281733pt;}
.y236{bottom:338.012000pt;}
.y21{bottom:339.515467pt;}
.y163{bottom:339.675867pt;}
.y1f4{bottom:343.219467pt;}
.y133{bottom:343.677733pt;}
.y1d6{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y189{bottom:346.464533pt;}
.yf4{bottom:346.475867pt;}
.yc2{bottom:346.595867pt;}
.y1b8{bottom:346.597867pt;}
.y121{bottom:348.915867pt;}
.y235{bottom:351.345333pt;}
.y20{bottom:355.523733pt;}
.y1f3{bottom:356.552800pt;}
.y1d5{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y188{bottom:362.464533pt;}
.yf3{bottom:362.475867pt;}
.yc1{bottom:362.595867pt;}
.y1b7{bottom:362.597867pt;}
.y234{bottom:364.678667pt;}
.y1f2{bottom:369.886133pt;}
.y13f{bottom:370.113401pt;}
.y14b{bottom:370.401867pt;}
.y141{bottom:373.681273pt;}
.y233{bottom:378.012000pt;}
.y1d4{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y187{bottom:378.464533pt;}
.yf2{bottom:378.475867pt;}
.yc0{bottom:378.595867pt;}
.y1b6{bottom:378.597867pt;}
.y162{bottom:378.609200pt;}
.y1f{bottom:379.830400pt;}
.y1f1{bottom:383.219467pt;}
.y148{bottom:383.881221pt;}
.y143{bottom:383.892000pt;}
.y13e{bottom:384.794490pt;}
.y232{bottom:391.345333pt;}
.y144{bottom:393.075765pt;}
.y1d3{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y186{bottom:394.464533pt;}
.yf1{bottom:394.475867pt;}
.ybf{bottom:394.595867pt;}
.y1b5{bottom:394.597867pt;}
.y161{bottom:394.609200pt;}
.y1e{bottom:395.830400pt;}
.y1f0{bottom:396.552800pt;}
.y138{bottom:399.464800pt;}
.y231{bottom:404.678667pt;}
.y1ef{bottom:409.886133pt;}
.y1d2{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y185{bottom:410.464533pt;}
.yf0{bottom:410.475867pt;}
.ybe{bottom:410.595867pt;}
.y1b4{bottom:410.597867pt;}
.y160{bottom:410.609200pt;}
.y1d{bottom:411.830400pt;}
.y230{bottom:418.012000pt;}
.y14d{bottom:418.125867pt;}
.y139{bottom:420.872026pt;}
.y1ee{bottom:423.219467pt;}
.y1d1{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y184{bottom:426.464533pt;}
.yef{bottom:426.475867pt;}
.y14e{bottom:426.536933pt;}
.ybd{bottom:426.595867pt;}
.y1b3{bottom:426.597867pt;}
.y145{bottom:427.245406pt;}
.y1c{bottom:427.830400pt;}
.y22f{bottom:431.345333pt;}
.y142{bottom:431.957600pt;}
.y1ed{bottom:436.552800pt;}
.y69{bottom:439.080667pt;}
.y15b{bottom:442.115867pt;}
.y15f{bottom:442.249200pt;}
.y1d0{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.y183{bottom:442.464533pt;}
.yee{bottom:442.475867pt;}
.y120{bottom:442.582533pt;}
.ybc{bottom:442.595867pt;}
.y1b2{bottom:442.597867pt;}
.y1b{bottom:443.830400pt;}
.y22e{bottom:444.678667pt;}
.y6b{bottom:447.334933pt;}
.y1ec{bottom:449.886133pt;}
.y140{bottom:457.466958pt;}
.y22d{bottom:458.012000pt;}
.y15e{bottom:458.249200pt;}
.y1cf{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y182{bottom:458.464533pt;}
.yed{bottom:458.475867pt;}
.y11f{bottom:458.582533pt;}
.ybb{bottom:458.595867pt;}
.y1b1{bottom:458.597867pt;}
.y1a{bottom:459.830400pt;}
.y146{bottom:460.153897pt;}
.y1eb{bottom:463.219467pt;}
.y22c{bottom:471.345333pt;}
.y1ce{bottom:474.342533pt;}
.y4c{bottom:474.462533pt;}
.y181{bottom:474.464533pt;}
.yec{bottom:474.475867pt;}
.y11e{bottom:474.582533pt;}
.yba{bottom:474.595867pt;}
.y1b0{bottom:474.597867pt;}
.y19{bottom:475.830400pt;}
.y1ea{bottom:476.552800pt;}
.y22b{bottom:484.678667pt;}
.y1cd{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.y9b{bottom:490.464533pt;}
.yeb{bottom:490.475867pt;}
.y11d{bottom:490.582533pt;}
.yb9{bottom:490.595867pt;}
.y1af{bottom:490.597867pt;}
.y18{bottom:491.830400pt;}
.y147{bottom:493.579782pt;}
.y22a{bottom:498.012000pt;}
.y149{bottom:503.615333pt;}
.y1e9{bottom:505.982533pt;}
.y1cc{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y9a{bottom:506.464533pt;}
.yea{bottom:506.475867pt;}
.y11c{bottom:506.582533pt;}
.yb8{bottom:506.595867pt;}
.y1ae{bottom:506.597867pt;}
.y17{bottom:507.830400pt;}
.y229{bottom:511.345333pt;}
.y13a{bottom:512.645000pt;}
.y13d{bottom:515.867941pt;}
.y1cb{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y99{bottom:522.464533pt;}
.ye9{bottom:522.475867pt;}
.y11b{bottom:522.582533pt;}
.yb7{bottom:522.595867pt;}
.y1ad{bottom:522.597867pt;}
.y16{bottom:523.830400pt;}
.y228{bottom:524.678667pt;}
.y227{bottom:538.012000pt;}
.y48{bottom:538.462533pt;}
.y98{bottom:538.464533pt;}
.ye8{bottom:538.475867pt;}
.y11a{bottom:538.582533pt;}
.yb6{bottom:538.595867pt;}
.y1ac{bottom:538.597867pt;}
.y15{bottom:539.830400pt;}
.y13b{bottom:544.788177pt;}
.y226{bottom:551.345333pt;}
.y1ca{bottom:553.982533pt;}
.y47{bottom:554.462533pt;}
.y97{bottom:554.464533pt;}
.ye7{bottom:554.475867pt;}
.y119{bottom:554.582533pt;}
.yb5{bottom:554.595867pt;}
.y1ab{bottom:554.597867pt;}
.y14{bottom:555.830400pt;}
.y225{bottom:564.678667pt;}
.y1e8{bottom:570.102533pt;}
.y46{bottom:570.462533pt;}
.y96{bottom:570.464533pt;}
.ye6{bottom:570.475867pt;}
.y118{bottom:570.582533pt;}
.yb4{bottom:570.595867pt;}
.y1aa{bottom:570.597867pt;}
.y13{bottom:571.830400pt;}
.y224{bottom:578.012000pt;}
.y45{bottom:586.462533pt;}
.y95{bottom:586.464533pt;}
.ye5{bottom:586.475867pt;}
.y117{bottom:586.582533pt;}
.yb3{bottom:586.595867pt;}
.y1a9{bottom:586.597867pt;}
.y12{bottom:587.830400pt;}
.y223{bottom:591.345333pt;}
.y1e7{bottom:602.102533pt;}
.y44{bottom:602.462533pt;}
.y94{bottom:602.464533pt;}
.ye4{bottom:602.475867pt;}
.y116{bottom:602.582533pt;}
.yb2{bottom:602.595867pt;}
.y1a8{bottom:602.597867pt;}
.y11{bottom:603.830400pt;}
.y222{bottom:604.678667pt;}
.y221{bottom:618.012000pt;}
.y43{bottom:618.462533pt;}
.y93{bottom:618.464533pt;}
.ye3{bottom:618.475867pt;}
.y115{bottom:618.582533pt;}
.yb1{bottom:618.595867pt;}
.y1a7{bottom:618.597867pt;}
.y10{bottom:619.830400pt;}
.y13c{bottom:626.859990pt;}
.y220{bottom:631.345333pt;}
.y42{bottom:634.462533pt;}
.y92{bottom:634.464533pt;}
.ye2{bottom:634.475867pt;}
.y114{bottom:634.582533pt;}
.yb0{bottom:634.595867pt;}
.y1a6{bottom:634.597867pt;}
.yf{bottom:635.830400pt;}
.y21f{bottom:644.678667pt;}
.y41{bottom:650.462533pt;}
.y91{bottom:650.464533pt;}
.ye1{bottom:650.475867pt;}
.y113{bottom:650.582533pt;}
.yaf{bottom:650.595867pt;}
.y1a5{bottom:650.597867pt;}
.ye{bottom:651.830400pt;}
.y21e{bottom:658.012000pt;}
.y40{bottom:666.462533pt;}
.y90{bottom:666.464533pt;}
.ye0{bottom:666.475867pt;}
.y112{bottom:666.582533pt;}
.yae{bottom:666.595867pt;}
.y1a4{bottom:666.597867pt;}
.y21d{bottom:671.345333pt;}
.y14a{bottom:677.877450pt;}
.y14c{bottom:679.403200pt;}
.y3f{bottom:682.462533pt;}
.y8f{bottom:682.464533pt;}
.ydf{bottom:682.475867pt;}
.y111{bottom:682.582533pt;}
.yad{bottom:682.595867pt;}
.y1a3{bottom:682.597867pt;}
.y21c{bottom:684.678667pt;}
.yd{bottom:691.970933pt;}
.y21b{bottom:698.012000pt;}
.y3e{bottom:698.462533pt;}
.y8e{bottom:698.464533pt;}
.yde{bottom:698.475867pt;}
.y110{bottom:698.582533pt;}
.yac{bottom:698.595867pt;}
.y1a2{bottom:698.597867pt;}
.yc{bottom:703.038267pt;}
.y21a{bottom:711.345333pt;}
.y67{bottom:714.102533pt;}
.y3d{bottom:714.462533pt;}
.y8d{bottom:714.464533pt;}
.ydd{bottom:714.475867pt;}
.y10f{bottom:714.582533pt;}
.yab{bottom:714.595867pt;}
.y1a1{bottom:714.597867pt;}
.y219{bottom:724.678667pt;}
.y15a{bottom:730.235867pt;}
.y3c{bottom:730.462533pt;}
.y8c{bottom:730.464533pt;}
.ydc{bottom:730.475867pt;}
.y10e{bottom:730.582533pt;}
.yaa{bottom:730.595867pt;}
.y1a0{bottom:730.597867pt;}
.yb{bottom:736.052400pt;}
.y218{bottom:738.012000pt;}
.y66{bottom:745.982533pt;}
.y3b{bottom:746.462533pt;}
.y8b{bottom:746.464533pt;}
.ydb{bottom:746.475867pt;}
.y10d{bottom:746.582533pt;}
.ya9{bottom:746.595867pt;}
.y19f{bottom:746.597867pt;}
.ya{bottom:748.052400pt;}
.y217{bottom:751.345333pt;}
.y9{bottom:755.229867pt;}
.y1e6{bottom:762.102533pt;}
.y3a{bottom:762.462533pt;}
.y8a{bottom:762.464533pt;}
.yda{bottom:762.475867pt;}
.y10c{bottom:762.582533pt;}
.ya8{bottom:762.595867pt;}
.y19e{bottom:762.597867pt;}
.y216{bottom:764.678667pt;}
.y8{bottom:772.052400pt;}
.y215{bottom:778.012000pt;}
.y39{bottom:778.462533pt;}
.y89{bottom:778.464533pt;}
.yd9{bottom:778.475867pt;}
.y10b{bottom:778.582533pt;}
.ya7{bottom:778.595867pt;}
.y19d{bottom:778.597867pt;}
.y7{bottom:779.229867pt;}
.y214{bottom:791.345333pt;}
.y38{bottom:794.462533pt;}
.y88{bottom:794.464533pt;}
.yd8{bottom:794.475867pt;}
.y10a{bottom:794.582533pt;}
.ya6{bottom:794.595867pt;}
.y19c{bottom:794.597867pt;}
.y6{bottom:796.052400pt;}
.y213{bottom:804.678667pt;}
.y37{bottom:810.462533pt;}
.y87{bottom:810.464533pt;}
.yd7{bottom:810.475867pt;}
.y109{bottom:810.582533pt;}
.y212{bottom:818.012000pt;}
.y5{bottom:821.583067pt;}
.ya5{bottom:826.235867pt;}
.y19b{bottom:826.237867pt;}
.y36{bottom:826.462533pt;}
.y86{bottom:826.464533pt;}
.yd6{bottom:826.475867pt;}
.y108{bottom:826.582533pt;}
.y211{bottom:831.345333pt;}
.y35{bottom:842.462533pt;}
.y85{bottom:842.464533pt;}
.yd5{bottom:842.475867pt;}
.y107{bottom:842.582533pt;}
.y210{bottom:844.678667pt;}
.y20f{bottom:858.012000pt;}
.y34{bottom:858.462533pt;}
.y84{bottom:858.464533pt;}
.yd4{bottom:858.475867pt;}
.y106{bottom:858.582533pt;}
.y4{bottom:862.635733pt;}
.y20e{bottom:871.345333pt;}
.y33{bottom:874.462533pt;}
.y83{bottom:874.464533pt;}
.yd3{bottom:874.475867pt;}
.y20d{bottom:884.678667pt;}
.y105{bottom:890.222533pt;}
.y32{bottom:890.462533pt;}
.y9e{bottom:890.464533pt;}
.yd2{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y20c{bottom:898.012000pt;}
.y82{bottom:906.104533pt;}
.y31{bottom:906.462533pt;}
.y9d{bottom:906.464533pt;}
.y15d{bottom:906.475867pt;}
.y20b{bottom:911.345333pt;}
.y104{bottom:922.102533pt;}
.y81{bottom:922.104533pt;}
.yd1{bottom:922.115867pt;}
.y30{bottom:922.462533pt;}
.y9c{bottom:922.464533pt;}
.y15c{bottom:922.475867pt;}
.y20a{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y209{bottom:1006.590133pt;}
.y68{bottom:1006.594400pt;}
.y24b{bottom:1006.598667pt;}
.y159{bottom:1006.610667pt;}
.ya4{bottom:1006.611200pt;}
.y173{bottom:1006.632667pt;}
.y132{bottom:1006.633867pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h18{height:24.054023pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.hc{height:29.150225pt;}
.h7{height:29.160156pt;}
.h21{height:29.415409pt;}
.h22{height:29.415942pt;}
.h1b{height:29.625000pt;}
.h1a{height:29.645833pt;}
.h13{height:30.926602pt;}
.h15{height:30.947344pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h20{height:31.389821pt;}
.h1e{height:31.410874pt;}
.hf{height:37.057292pt;}
.h19{height:37.437500pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.ha{height:38.880208pt;}
.h14{height:41.235469pt;}
.h1f{height:41.853224pt;}
.h16{height:45.837082pt;}
.he{height:46.796875pt;}
.h23{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h1d{height:51.804868pt;}
.h1c{height:52.397245pt;}
.h12{height:52.405245pt;}
.h4{height:81.927344pt;}
.h17{height:334.445333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:641.457333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x45{left:69.921200pt;}
.x40{left:71.188109pt;}
.x31{left:73.127467pt;}
.x37{left:78.179283pt;}
.x43{left:80.037600pt;}
.x22{left:84.210667pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2c{left:88.818933pt;}
.x14{left:89.903867pt;}
.x21{left:91.063673pt;}
.x4{left:94.488133pt;}
.x1f{left:95.906393pt;}
.xc{left:98.271467pt;}
.x20{left:100.749113pt;}
.x4b{left:109.606267pt;}
.x3{left:111.501467pt;}
.x7{left:117.170133pt;}
.x35{left:143.616655pt;}
.x48{left:169.004800pt;}
.x5{left:170.078667pt;}
.x6{left:189.223467pt;}
.x26{left:194.696400pt;}
.x46{left:195.675867pt;}
.x28{left:202.843600pt;}
.x32{left:224.827323pt;}
.x36{left:229.661075pt;}
.x1a{left:232.872533pt;}
.x38{left:240.664221pt;}
.x47{left:245.682933pt;}
.x33{left:323.755691pt;}
.x34{left:330.615621pt;}
.x1e{left:364.719833pt;}
.x1d{left:372.026393pt;}
.x2d{left:375.741600pt;}
.x13{left:376.978933pt;}
.x25{left:381.707600pt;}
.x1b{left:382.975613pt;}
.x1c{left:396.133793pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x42{left:407.986933pt;}
.x27{left:425.195867pt;}
.x8{left:427.090133pt;}
.x2e{left:428.381600pt;}
.x23{left:431.542400pt;}
.xf{left:436.538133pt;}
.x4c{left:447.888933pt;}
.x41{left:450.635733pt;}
.x2b{left:455.442267pt;}
.x44{left:457.016800pt;}
.xe{left:466.911467pt;}
.x3f{left:483.222800pt;}
.x3a{left:493.545067pt;}
.x3d{left:498.265037pt;}
.x3c{left:503.017015pt;}
.x12{left:504.324133pt;}
.x49{left:510.951467pt;}
.x2f{left:511.976267pt;}
.x24{left:515.753067pt;}
.x19{left:526.267067pt;}
.x16{left:529.921200pt;}
.x17{left:539.549044pt;}
.x2a{left:544.815600pt;}
.x18{left:546.873825pt;}
.x3b{left:565.828533pt;}
.x39{left:584.551149pt;}
.x11{left:589.770933pt;}
.x30{left:591.261600pt;}
.x15{left:593.774933pt;}
.x2{left:616.324800pt;}
.x3e{left:626.105057pt;}
.x4a{left:641.531200pt;}
.x10{left:647.459200pt;}
.x4d{left:661.215333pt;}
.x29{left:666.363600pt;}
}




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