
    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_45d71a1cbb4166b9e55a8b0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087195;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_f0f75c8a74788b5adb4578dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;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_045a3d607e846c5d91a7f0e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.920000;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_d817051718664ac29caed8ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_40e9357507f8b3aac62494c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111816;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_283c8697baf752e48bd9cc56.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113281;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_dfa5d6149ac4f80896ead5f9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1db9d3ca5b0d683841be9b62.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5abcc3cb07839c06c92602bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924805;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_17570fd9afda7740f9916573.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a38b6458fa49d295797a9b38.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.113281;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_fbc486012a954e0e3bc5e68b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.855957;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_60b2da38656e488524fbe4b7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.862793;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_1c6bf01a2cd5decc9c6ffd6d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.113281;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_f12c4546b056771845522a60.woff2')format("woff");}.fff{font-family:fff;line-height:0.855957;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_d1bd4c197469bcb653f99366.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b63a4b5e3554a7cc570320d3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3a65d7d8393595aeb3335bef.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_7bc7d6b77dff7caa163b24be.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,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);}
.v4{vertical-align:-42.938640px;}
.v7{vertical-align:-17.243400px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:18.000000px;}
.v3{vertical-align:30.924720px;}
.v2{vertical-align:34.984980px;}
.v6{vertical-align:42.000000px;}
.v1{vertical-align:46.776420px;}
.v5{vertical-align:65.994600px;}
.lsa{letter-spacing:-30.233671px;}
.ls5b{letter-spacing:-7.854000px;}
.ls41{letter-spacing:-7.128000px;}
.ls5f{letter-spacing:-7.062000px;}
.ls7d{letter-spacing:-6.996000px;}
.ls7c{letter-spacing:-6.732000px;}
.ls84{letter-spacing:-6.270000px;}
.ls55{letter-spacing:-5.544000px;}
.ls4e{letter-spacing:-5.478000px;}
.ls6c{letter-spacing:-5.412000px;}
.ls5c{letter-spacing:-4.950000px;}
.ls5e{letter-spacing:-4.818000px;}
.ls48{letter-spacing:-4.727700px;}
.ls40{letter-spacing:-4.422000px;}
.ls23{letter-spacing:-4.092000px;}
.ls71{letter-spacing:-4.026000px;}
.lse{letter-spacing:-3.817015px;}
.lsd{letter-spacing:-3.626078px;}
.ls18{letter-spacing:-3.564000px;}
.ls6a{letter-spacing:-3.366000px;}
.ls61{letter-spacing:-3.300000px;}
.ls1c{letter-spacing:-3.234000px;}
.ls2b{letter-spacing:-3.102000px;}
.ls3e{letter-spacing:-3.036000px;}
.ls17{letter-spacing:-2.904000px;}
.ls1a{letter-spacing:-2.838000px;}
.ls4d{letter-spacing:-2.832000px;}
.ls4f{letter-spacing:-2.772000px;}
.ls7a{letter-spacing:-2.640000px;}
.ls31{letter-spacing:-2.574000px;}
.ls79{letter-spacing:-2.508000px;}
.ls78{letter-spacing:-2.442000px;}
.ls25{letter-spacing:-2.376000px;}
.ls43{letter-spacing:-2.244000px;}
.ls59{letter-spacing:-2.178000px;}
.lsc{letter-spacing:-2.115212px;}
.ls50{letter-spacing:-2.112000px;}
.ls24{letter-spacing:-2.046000px;}
.ls53{letter-spacing:-1.980000px;}
.ls54{letter-spacing:-1.914000px;}
.ls27{letter-spacing:-1.848000px;}
.ls56{letter-spacing:-1.782000px;}
.ls70{letter-spacing:-1.728000px;}
.ls49{letter-spacing:-1.668600px;}
.ls68{letter-spacing:-1.650000px;}
.ls3f{letter-spacing:-1.584000px;}
.ls63{letter-spacing:-1.518000px;}
.ls57{letter-spacing:-1.452000px;}
.ls42{letter-spacing:-1.386000px;}
.ls26{letter-spacing:-1.320000px;}
.ls66{letter-spacing:-1.296000px;}
.ls2c{letter-spacing:-1.254000px;}
.ls6b{letter-spacing:-1.200000px;}
.ls62{letter-spacing:-1.188000px;}
.ls3{letter-spacing:-1.171458px;}
.ls60{letter-spacing:-1.122000px;}
.ls6d{letter-spacing:-1.104000px;}
.ls11{letter-spacing:-1.056000px;}
.ls69{letter-spacing:-0.990000px;}
.ls12{letter-spacing:-0.924000px;}
.ls6e{letter-spacing:-0.912000px;}
.ls29{letter-spacing:-0.858000px;}
.ls20{letter-spacing:-0.792000px;}
.ls72{letter-spacing:-0.768000px;}
.ls28{letter-spacing:-0.726000px;}
.ls16{letter-spacing:-0.660000px;}
.ls1f{letter-spacing:-0.594000px;}
.ls47{letter-spacing:-0.576000px;}
.ls44{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.528000px;}
.ls2{letter-spacing:-0.520650px;}
.ls33{letter-spacing:-0.462000px;}
.ls77{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.416520px;}
.ls13{letter-spacing:-0.396000px;}
.ls15{letter-spacing:-0.330000px;}
.ls81{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.264000px;}
.ls5{letter-spacing:-0.208260px;}
.ls1b{letter-spacing:-0.198000px;}
.ls21{letter-spacing:-0.132000px;}
.ls5a{letter-spacing:-0.066000px;}
.ls1{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.066000px;}
.ls39{letter-spacing:0.132000px;}
.ls7{letter-spacing:0.156194px;}
.ls58{letter-spacing:0.198000px;}
.ls88{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.330000px;}
.ls86{letter-spacing:0.384000px;}
.ls64{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.416520px;}
.ls9{letter-spacing:0.462000px;}
.ls74{letter-spacing:0.624000px;}
.ls87{letter-spacing:0.672000px;}
.ls0{letter-spacing:0.937170px;}
.ls7b{letter-spacing:1.008000px;}
.ls65{letter-spacing:9.768000px;}
.ls3c{letter-spacing:10.098000px;}
.ls51{letter-spacing:10.956000px;}
.ls3d{letter-spacing:13.728000px;}
.ls67{letter-spacing:14.388000px;}
.ls45{letter-spacing:14.982000px;}
.ls52{letter-spacing:16.170000px;}
.ls7e{letter-spacing:17.820000px;}
.ls76{letter-spacing:18.480000px;}
.ls2e{letter-spacing:19.800000px;}
.ls30{letter-spacing:20.394000px;}
.ls7f{letter-spacing:20.922000px;}
.ls82{letter-spacing:20.988000px;}
.ls85{letter-spacing:21.516000px;}
.ls80{letter-spacing:22.176000px;}
.ls83{letter-spacing:22.308000px;}
.ls73{letter-spacing:43.101918px;}
.ls35{letter-spacing:43.560000px;}
.lsb{letter-spacing:49.519258px;}
.ls34{letter-spacing:52.602000px;}
.ls2f{letter-spacing:52.668000px;}
.ls32{letter-spacing:52.734000px;}
.ls1e{letter-spacing:52.800000px;}
.ls75{letter-spacing:64.596000px;}
.ls1d{letter-spacing:65.520000px;}
.ls4a{letter-spacing:66.528000px;}
.ls10{letter-spacing:66.780000px;}
.ls2d{letter-spacing:66.864000px;}
.ls22{letter-spacing:67.032000px;}
.ls6f{letter-spacing:67.368000px;}
.ls2a{letter-spacing:67.620000px;}
.lsf{letter-spacing:81.600000px;}
.ls3b{letter-spacing:188.400000px;}
.ls4c{letter-spacing:426.028200px;}
.ls4b{letter-spacing:442.926000px;}
.ls37{letter-spacing:660.885600px;}
.ls3a{letter-spacing:661.308000px;}
.ls36{letter-spacing:666.446400px;}
.ls38{letter-spacing:691.956000px;}
.ls46{letter-spacing:716.274360px;}
.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;}
}
.ws5f{word-spacing:-205.080000px;}
.ws5{word-spacing:-98.420249px;}
.ws34{word-spacing:-86.772000px;}
.wsdc{word-spacing:-86.520000px;}
.ws40{word-spacing:-86.016000px;}
.ws10{word-spacing:-85.932000px;}
.ws6f{word-spacing:-85.680000px;}
.ws1b{word-spacing:-84.672000px;}
.ws1c{word-spacing:-67.848000px;}
.ws3f{word-spacing:-67.782000px;}
.ws3d{word-spacing:-67.716000px;}
.ws29{word-spacing:-67.032000px;}
.ws7{word-spacing:-59.799905px;}
.ws6{word-spacing:-49.982054px;}
.wse3{word-spacing:-43.555622px;}
.wsf3{word-spacing:-40.656000px;}
.wse4{word-spacing:-35.442000px;}
.wsbe{word-spacing:-28.116000px;}
.wsfa{word-spacing:-22.308000px;}
.wsf2{word-spacing:-22.176000px;}
.wsf8{word-spacing:-21.516000px;}
.wsf7{word-spacing:-20.988000px;}
.wsf1{word-spacing:-20.922000px;}
.ws3{word-spacing:-20.826000px;}
.ws2{word-spacing:-20.617740px;}
.ws0{word-spacing:-20.305350px;}
.ws55{word-spacing:-18.480000px;}
.ws75{word-spacing:-18.348000px;}
.ws27{word-spacing:-18.018000px;}
.wsf0{word-spacing:-17.820000px;}
.wscf{word-spacing:-17.754000px;}
.wsef{word-spacing:-17.622000px;}
.wsc1{word-spacing:-17.556000px;}
.ws7d{word-spacing:-17.490000px;}
.ws22{word-spacing:-17.424000px;}
.wsea{word-spacing:-17.358000px;}
.wsc3{word-spacing:-17.292000px;}
.wscd{word-spacing:-17.226000px;}
.wsd0{word-spacing:-17.160000px;}
.ws5e{word-spacing:-17.094000px;}
.ws4f{word-spacing:-16.962000px;}
.wscc{word-spacing:-16.830000px;}
.wsc2{word-spacing:-16.698000px;}
.ws70{word-spacing:-16.680000px;}
.ws26{word-spacing:-16.500000px;}
.ws23{word-spacing:-16.302000px;}
.ws7c{word-spacing:-16.236000px;}
.wscb{word-spacing:-16.170000px;}
.ws53{word-spacing:-16.104000px;}
.ws24{word-spacing:-15.972000px;}
.ws4{word-spacing:-15.775634px;}
.ws25{word-spacing:-15.510000px;}
.ws47{word-spacing:-15.312000px;}
.wsc4{word-spacing:-14.982000px;}
.ws80{word-spacing:-14.784000px;}
.ws1{word-spacing:-14.447982px;}
.ws28{word-spacing:-14.256000px;}
.wsc9{word-spacing:-12.936000px;}
.ws7b{word-spacing:-12.870000px;}
.ws81{word-spacing:-12.804000px;}
.wsf5{word-spacing:-12.078000px;}
.ws4c{word-spacing:-11.220000px;}
.wsde{word-spacing:-3.102000px;}
.ws41{word-spacing:-2.442000px;}
.wsbd{word-spacing:-2.376000px;}
.ws42{word-spacing:-2.112000px;}
.wsb4{word-spacing:-1.782000px;}
.ws63{word-spacing:-1.716000px;}
.wsdf{word-spacing:-1.584000px;}
.wsd4{word-spacing:-1.452000px;}
.ws33{word-spacing:-1.386000px;}
.ws78{word-spacing:-1.254000px;}
.ws62{word-spacing:-1.188000px;}
.wsbc{word-spacing:-1.056000px;}
.wseb{word-spacing:-1.008000px;}
.ws8{word-spacing:-0.937170px;}
.wsfb{word-spacing:-0.672000px;}
.ws77{word-spacing:-0.660000px;}
.wse5{word-spacing:-0.624000px;}
.ws3e{word-spacing:-0.594000px;}
.wsd{word-spacing:-0.462000px;}
.wsb{word-spacing:-0.416520px;}
.wsf9{word-spacing:-0.384000px;}
.wsc{word-spacing:-0.330000px;}
.wsfc{word-spacing:-0.288000px;}
.ws36{word-spacing:-0.264000px;}
.ws20{word-spacing:-0.198000px;}
.ws37{word-spacing:-0.066000px;}
.ws6e{word-spacing:-0.055799px;}
.ws60{word-spacing:-0.054173px;}
.ws9{word-spacing:0.000000px;}
.wsb8{word-spacing:0.066000px;}
.ws21{word-spacing:0.132000px;}
.ws19{word-spacing:0.198000px;}
.ws12{word-spacing:0.264000px;}
.wsf6{word-spacing:0.288000px;}
.ws2a{word-spacing:0.330000px;}
.ws39{word-spacing:0.336000px;}
.ws13{word-spacing:0.396000px;}
.wsa{word-spacing:0.416520px;}
.wse7{word-spacing:0.432000px;}
.ws44{word-spacing:0.462000px;}
.ws14{word-spacing:0.528000px;}
.ws61{word-spacing:0.540000px;}
.ws76{word-spacing:0.576000px;}
.ws1e{word-spacing:0.594000px;}
.ws15{word-spacing:0.660000px;}
.ws30{word-spacing:0.726000px;}
.wse2{word-spacing:0.768000px;}
.ws1f{word-spacing:0.792000px;}
.ws3a{word-spacing:0.858000px;}
.wsdd{word-spacing:0.912000px;}
.ws31{word-spacing:0.924000px;}
.wsdb{word-spacing:0.990000px;}
.ws11{word-spacing:1.056000px;}
.wsd5{word-spacing:1.104000px;}
.ws64{word-spacing:1.122000px;}
.wsd3{word-spacing:1.200000px;}
.ws1d{word-spacing:1.254000px;}
.wsc5{word-spacing:1.296000px;}
.ws2b{word-spacing:1.320000px;}
.wsb7{word-spacing:1.386000px;}
.wsb9{word-spacing:1.452000px;}
.ws35{word-spacing:1.518000px;}
.wsb3{word-spacing:1.584000px;}
.ws79{word-spacing:1.668600px;}
.ws46{word-spacing:1.716000px;}
.wse0{word-spacing:1.728000px;}
.wsc6{word-spacing:1.782000px;}
.wsb6{word-spacing:1.914000px;}
.wsb5{word-spacing:1.980000px;}
.ws32{word-spacing:2.046000px;}
.wse{word-spacing:2.115212px;}
.ws18{word-spacing:2.178000px;}
.ws16{word-spacing:2.244000px;}
.wse9{word-spacing:2.376000px;}
.ws2d{word-spacing:2.442000px;}
.wse8{word-spacing:2.508000px;}
.ws1a{word-spacing:2.574000px;}
.wse6{word-spacing:2.604000px;}
.ws43{word-spacing:2.640000px;}
.wsb1{word-spacing:2.772000px;}
.wsaf{word-spacing:2.832000px;}
.ws17{word-spacing:2.904000px;}
.ws45{word-spacing:3.036000px;}
.ws38{word-spacing:3.102000px;}
.wsba{word-spacing:3.234000px;}
.wsc8{word-spacing:3.300000px;}
.ws2f{word-spacing:3.564000px;}
.wsf{word-spacing:3.626078px;}
.wsda{word-spacing:3.762000px;}
.ws2c{word-spacing:3.828000px;}
.wse1{word-spacing:4.026000px;}
.wsd9{word-spacing:4.422000px;}
.wsd7{word-spacing:4.752000px;}
.wsbb{word-spacing:4.950000px;}
.ws3c{word-spacing:5.214000px;}
.wsd8{word-spacing:5.874000px;}
.ws2e{word-spacing:6.138000px;}
.ws7a{word-spacing:6.204000px;}
.wsd6{word-spacing:6.468000px;}
.wsec{word-spacing:6.732000px;}
.wsed{word-spacing:6.996000px;}
.wsb2{word-spacing:7.458000px;}
.wsc7{word-spacing:7.854000px;}
.wsb0{word-spacing:8.052000px;}
.ws3b{word-spacing:8.448000px;}
.ws6c{word-spacing:14.961780px;}
.ws67{word-spacing:49.891140px;}
.ws66{word-spacing:96.111360px;}
.ws7f{word-spacing:97.450800px;}
.ws65{word-spacing:125.145000px;}
.ws7e{word-spacing:131.461200px;}
.ws71{word-spacing:140.280000px;}
.ws73{word-spacing:204.233400px;}
.ws74{word-spacing:214.057200px;}
.wsaa{word-spacing:216.036600px;}
.ws68{word-spacing:228.987540px;}
.ws72{word-spacing:287.517000px;}
.wsbf{word-spacing:304.894800px;}
.ws6a{word-spacing:315.476640px;}
.wsf4{word-spacing:332.895000px;}
.ws89{word-spacing:360.366600px;}
.wsa5{word-spacing:361.369800px;}
.ws8a{word-spacing:362.679600px;}
.ws86{word-spacing:363.738600px;}
.ws8e{word-spacing:364.332600px;}
.wsa6{word-spacing:364.399200px;}
.ws9c{word-spacing:365.241600px;}
.ws85{word-spacing:365.745600px;}
.ws99{word-spacing:366.360000px;}
.ws8d{word-spacing:366.580800px;}
.ws95{word-spacing:367.844400px;}
.ws91{word-spacing:368.174400px;}
.wsa8{word-spacing:368.461800px;}
.wsa0{word-spacing:368.643600px;}
.ws9d{word-spacing:369.018600px;}
.wsab{word-spacing:376.234800px;}
.ws83{word-spacing:376.545000px;}
.ws87{word-spacing:377.323800px;}
.ws9a{word-spacing:380.443200px;}
.wsa9{word-spacing:382.573800px;}
.ws96{word-spacing:383.694000px;}
.wsa1{word-spacing:384.363600px;}
.ws92{word-spacing:386.202000px;}
.ws94{word-spacing:387.522600px;}
.ws90{word-spacing:387.588600px;}
.wsa4{word-spacing:387.740400px;}
.wsac{word-spacing:387.832200px;}
.ws84{word-spacing:389.271600px;}
.wsae{word-spacing:389.499000px;}
.ws8c{word-spacing:389.955000px;}
.ws97{word-spacing:390.463200px;}
.ws8f{word-spacing:391.274400px;}
.ws88{word-spacing:392.232000px;}
.wsad{word-spacing:392.812200px;}
.ws9e{word-spacing:398.551200px;}
.ws9f{word-spacing:399.953400px;}
.wsa3{word-spacing:400.224000px;}
.ws98{word-spacing:400.260000px;}
.ws8b{word-spacing:401.959800px;}
.ws9b{word-spacing:406.802400px;}
.ws49{word-spacing:489.235800px;}
.ws48{word-spacing:505.375800px;}
.ws5b{word-spacing:505.376400px;}
.wsc0{word-spacing:506.733600px;}
.ws82{word-spacing:569.710800px;}
.ws59{word-spacing:579.678600px;}
.ws5d{word-spacing:596.062200px;}
.ws51{word-spacing:597.874800px;}
.ws4b{word-spacing:598.000800px;}
.ws93{word-spacing:609.408000px;}
.ws54{word-spacing:613.332600px;}
.ws5c{word-spacing:613.788000px;}
.ws69{word-spacing:613.989180px;}
.ws52{word-spacing:645.286800px;}
.ws5a{word-spacing:645.709200px;}
.ws4e{word-spacing:656.925600px;}
.ws57{word-spacing:676.355400px;}
.wsa2{word-spacing:684.707400px;}
.wsa7{word-spacing:692.510400px;}
.ws58{word-spacing:748.371000px;}
.ws50{word-spacing:752.469600px;}
.ws4d{word-spacing:783.418200px;}
.ws56{word-spacing:808.927800px;}
.ws4a{word-spacing:844.090200px;}
.ws6d{word-spacing:1052.441640px;}
.ws6b{word-spacing:1671.325380px;}
.wsee{word-spacing:1744.406400px;}
.wsca{word-spacing:1945.791000px;}
.wsce{word-spacing:1984.706400px;}
.wsd2{word-spacing:2029.690200px;}
.wsd1{word-spacing:2037.755400px;}
._2e{margin-left:-188.400000px;}
._2d{margin-left:-186.540000px;}
._1d{margin-left:-67.198983px;}
._b{margin-left:-23.926595px;}
._1{margin-left:-20.686392px;}
._23{margin-left:-15.261414px;}
._2f{margin-left:-14.067060px;}
._24{margin-left:-12.335806px;}
._f{margin-left:-8.257995px;}
._4{margin-left:-6.521116px;}
._d{margin-left:-4.998205px;}
._1c{margin-left:-3.907566px;}
._10{margin-left:-2.883928px;}
._0{margin-left:-1.135017px;}
._2{width:1.436994px;}
._3{width:2.873966px;}
._e{width:4.418208px;}
._1b{width:6.084834px;}
._21{width:7.134417px;}
._c{width:8.191503px;}
._22{width:9.535010px;}
._25{width:11.539347px;}
._48{width:12.942573px;}
._a{width:18.141635px;}
._55{width:20.735400px;}
._54{width:22.340002px;}
._57{width:23.506800px;}
._56{width:24.841806px;}
._53{width:25.887006px;}
._20{width:27.243600px;}
._1f{width:28.538406px;}
._52{width:29.662023px;}
._1e{width:31.985434px;}
._51{width:33.871566px;}
._59{width:36.034566px;}
._5{width:37.180983px;}
._58{width:38.188834px;}
._6{width:39.625407px;}
._9{width:43.163390px;}
._7{width:45.221853px;}
._8{width:57.443975px;}
._5a{width:82.440606px;}
._47{width:99.325933px;}
._46{width:104.592234px;}
._35{width:140.885460px;}
._3f{width:187.192446px;}
._42{width:218.368200px;}
._40{width:234.391206px;}
._38{width:241.209657px;}
._37{width:255.101295px;}
._45{width:261.735612px;}
._43{width:269.563800px;}
._33{width:277.599420px;}
._5b{width:305.986702px;}
._3e{width:349.697817px;}
._41{width:370.200000px;}
._3a{width:375.266400px;}
._30{width:382.721220px;}
._39{width:391.459200px;}
._3c{width:397.609200px;}
._44{width:399.428400px;}
._3d{width:442.926000px;}
._32{width:460.144260px;}
._3b{width:489.323817px;}
._2b{width:509.282260px;}
._28{width:525.647188px;}
._2a{width:550.765294px;}
._27{width:554.453050px;}
._26{width:618.571502px;}
._29{width:755.940454px;}
._31{width:837.955557px;}
._2c{width:863.295366px;}
._15{width:865.126623px;}
._50{width:986.655297px;}
._18{width:992.318217px;}
._12{width:1057.384800px;}
._19{width:1059.731217px;}
._49{width:1084.662059px;}
._16{width:1101.751806px;}
._17{width:1106.683800px;}
._34{width:1141.600500px;}
._14{width:1156.016823px;}
._13{width:1158.577806px;}
._11{width:1159.780812px;}
._1a{width:1185.038451px;}
._36{width:1204.951680px;}
._4a{width:1640.075268px;}
._4f{width:1706.128617px;}
._4c{width:1732.482600px;}
._4e{width:1737.333600px;}
._4b{width:1746.626400px;}
._4d{width:1844.824017px;}
.fc9{color:transparent;}
.fc8{color:rgb(101,98,99);}
.fc7{color:rgb(5,6,6);}
.fc6{color:rgb(205,16,96);}
.fc5{color:rgb(238,28,140);}
.fc3{color:rgb(118,15,55);}
.fc2{color:rgb(240,51,163);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(242,239,29);}
.fsa{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:54.173400px;}
.fs10{font-size:55.620000px;}
.fs11{font-size:55.798800px;}
.fsc{font-size:60.000000px;}
.fsf{font-size:61.800000px;}
.fse{font-size:61.800001px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:78.097200px;}
.fs9{font-size:84.000000px;}
.fs8{font-size:102.000000px;}
.fs0{font-size:104.130000px;}
.fs7{font-size:115.820400px;}
.fs5{font-size:302.173200px;}
.fs6{font-size:318.084600px;}
.fs12{font-size:453.704400px;}
.fs4{font-size:462.796800px;}
.fs3{font-size:643.269600px;}
.y0{bottom:0.000000px;}
.y134{bottom:6.321450px;}
.y136{bottom:6.322800px;}
.y13d{bottom:6.324300px;}
.y113{bottom:8.103000px;}
.y109{bottom:13.150331px;}
.y111{bottom:13.576350px;}
.y10c{bottom:15.138644px;}
.y10b{bottom:20.699368px;}
.y108{bottom:23.332244px;}
.y107{bottom:24.391950px;}
.y1c{bottom:25.279350px;}
.y10e{bottom:28.630800px;}
.y10f{bottom:29.024093px;}
.y10a{bottom:39.391700px;}
.yfd{bottom:58.167000px;}
.yb8{bottom:61.983600px;}
.y1a9{bottom:63.438750px;}
.y24e{bottom:67.499400px;}
.yff{bottom:69.127050px;}
.y5e{bottom:69.738900px;}
.y23c{bottom:71.751300px;}
.y1c3{bottom:73.015050px;}
.yf4{bottom:75.096300px;}
.y7f{bottom:79.452150px;}
.y225{bottom:79.967250px;}
.y9f{bottom:80.255250px;}
.y189{bottom:85.383150px;}
.yb7{bottom:90.483600px;}
.y1a8{bottom:91.938750px;}
.y133{bottom:93.390000px;}
.y41{bottom:93.987000px;}
.y203{bottom:94.735500px;}
.y1ec{bottom:96.531600px;}
.y5d{bottom:98.238900px;}
.y24d{bottom:100.251300px;}
.y1c2{bottom:101.515050px;}
.yf5{bottom:102.591300px;}
.y23b{bottom:104.503200px;}
.y7e{bottom:107.952150px;}
.y224{bottom:108.467250px;}
.y9e{bottom:108.755250px;}
.yd6{bottom:111.743400px;}
.y188{bottom:113.883150px;}
.y132{bottom:116.210700px;}
.y135{bottom:116.212200px;}
.y13c{bottom:116.213550px;}
.yb6{bottom:118.983600px;}
.y1a7{bottom:120.438750px;}
.y40{bottom:122.487000px;}
.y202{bottom:123.235500px;}
.y1eb{bottom:125.031600px;}
.y5c{bottom:126.738900px;}
.y1c1{bottom:130.015050px;}
.yf6{bottom:130.086300px;}
.y7d{bottom:136.452150px;}
.y223{bottom:136.967250px;}
.y23a{bottom:137.255250px;}
.yd5{bottom:140.243400px;}
.y9d{bottom:141.507150px;}
.y187{bottom:142.383150px;}
.y158{bottom:145.969350px;}
.yb5{bottom:147.483600px;}
.y1a6{bottom:148.938750px;}
.y3f{bottom:150.987000px;}
.y5b{bottom:155.238900px;}
.yf7{bottom:157.566300px;}
.y1c0{bottom:158.515050px;}
.y201{bottom:160.239600px;}
.y1ea{bottom:162.035550px;}
.yd4{bottom:168.743400px;}
.y7c{bottom:169.204050px;}
.y222{bottom:169.719300px;}
.y239{bottom:170.007150px;}
.y9c{bottom:174.259200px;}
.y157{bottom:174.469350px;}
.ya{bottom:175.098450px;}
.yb4{bottom:175.983600px;}
.y1a5{bottom:177.438750px;}
.y3e{bottom:179.487000px;}
.y186{bottom:183.639150px;}
.y5a{bottom:183.738900px;}
.yf8{bottom:185.061300px;}
.y1bf{bottom:187.015050px;}
.y200{bottom:188.739600px;}
.y9{bottom:196.098450px;}
.y1e9{bottom:199.039350px;}
.y221{bottom:202.471200px;}
.y9b{bottom:202.759200px;}
.y156{bottom:202.969350px;}
.y13b{bottom:202.971300px;}
.yb3{bottom:204.483600px;}
.y102{bottom:205.635900px;}
.y24c{bottom:207.011100px;}
.y3d{bottom:207.987000px;}
.yd3{bottom:209.999400px;}
.y7b{bottom:210.459900px;}
.y238{bottom:211.263150px;}
.y185{bottom:212.139150px;}
.y59{bottom:212.238900px;}
.yf9{bottom:212.556300px;}
.y1be{bottom:215.515050px;}
.y1a4{bottom:218.694600px;}
.y13a{bottom:222.771300px;}
.y265{bottom:223.717650px;}
.y1ff{bottom:225.743400px;}
.y1e8{bottom:227.539350px;}
.y220{bottom:230.971200px;}
.y9a{bottom:231.259200px;}
.y155{bottom:231.469350px;}
.y3c{bottom:236.487000px;}
.yb2{bottom:237.235500px;}
.yd2{bottom:238.499400px;}
.y7a{bottom:238.959900px;}
.y2b4{bottom:239.275950px;}
.y237{bottom:239.763150px;}
.yfa{bottom:240.036300px;}
.y184{bottom:240.639150px;}
.y58{bottom:240.738900px;}
.y1bd{bottom:244.015050px;}
.y264{bottom:246.217650px;}
.y1a3{bottom:247.194600px;}
.y101{bottom:248.491350px;}
.y1fe{bottom:254.243400px;}
.y99{bottom:259.759200px;}
.y29b{bottom:259.896750px;}
.y21f{bottom:263.723250px;}
.y154{bottom:264.221400px;}
.yfe{bottom:264.316500px;}
.y1e7{bottom:264.543300px;}
.yd1{bottom:266.999400px;}
.yfb{bottom:267.531300px;}
.y236{bottom:268.263150px;}
.y2b3{bottom:268.562550px;}
.y183{bottom:269.139150px;}
.y3b{bottom:269.238900px;}
.y263{bottom:275.237850px;}
.y1ca{bottom:275.503200px;}
.y1a2{bottom:275.694600px;}
.y24b{bottom:276.767100px;}
.yb1{bottom:278.491350px;}
.y79{bottom:280.215900px;}
.y1bc{bottom:285.271050px;}
.y98{bottom:288.259200px;}
.y29a{bottom:288.916950px;}
.y1fd{bottom:291.247350px;}
.y100{bottom:291.346800px;}
.y126{bottom:291.988500px;}
.y1e6{bottom:293.043300px;}
.yfc{bottom:295.026300px;}
.yd0{bottom:295.499400px;}
.y21e{bottom:296.475150px;}
.y235{bottom:296.763150px;}
.y182{bottom:297.639150px;}
.y262{bottom:297.737850px;}
.y2b2{bottom:297.849150px;}
.y153{bottom:299.483250px;}
.y1c9{bottom:304.003200px;}
.y1a1{bottom:304.194600px;}
.y24a{bottom:309.519000px;}
.y3a{bottom:310.494900px;}
.y1bb{bottom:313.771050px;}
.y139{bottom:316.309800px;}
.y97{bottom:316.759200px;}
.y299{bottom:317.937300px;}
.y1fc{bottom:319.747350px;}
.y152{bottom:320.483250px;}
.ycf{bottom:323.999400px;}
.y181{bottom:326.139150px;}
.y2b1{bottom:327.135600px;}
.y234{bottom:329.515050px;}
.y78{bottom:329.975700px;}
.y1e5{bottom:330.047400px;}
.yb0{bottom:332.503200px;}
.y1a0{bottom:332.694600px;}
.yf3{bottom:334.689900px;}
.y261{bottom:335.634000px;}
.y21d{bottom:337.731150px;}
.y249{bottom:338.019000px;}
.y39{bottom:338.994900px;}
.y1ba{bottom:342.271050px;}
.y96{bottom:345.259200px;}
.y298{bottom:346.957650px;}
.y1fb{bottom:348.247350px;}
.y2b0{bottom:356.422200px;}
.yce{bottom:356.751300px;}
.yf2{bottom:357.189900px;}
.y151{bottom:358.007400px;}
.y77{bottom:358.475700px;}
.y1e4{bottom:358.547400px;}
.y138{bottom:360.679950px;}
.y137{bottom:360.682800px;}
.yaf{bottom:361.003200px;}
.y19f{bottom:361.194600px;}
.y233{bottom:362.267100px;}
.y21c{bottom:366.231150px;}
.y248{bottom:366.519000px;}
.y180{bottom:367.395000px;}
.y38{bottom:367.494900px;}
.y8{bottom:369.717150px;}
.y1b9{bottom:370.771050px;}
.y95{bottom:373.759200px;}
.y27e{bottom:374.657100px;}
.y297{bottom:375.978000px;}
.yf1{bottom:379.689900px;}
.y260{bottom:382.405500px;}
.y1fa{bottom:385.251300px;}
.yae{bottom:389.503200px;}
.y19e{bottom:389.694600px;}
.y21b{bottom:394.731150px;}
.y232{bottom:395.019000px;}
.y76{bottom:395.479650px;}
.y150{bottom:395.531700px;}
.y1e3{bottom:395.551200px;}
.y17f{bottom:395.895000px;}
.y37{bottom:395.994900px;}
.ycd{bottom:398.007150px;}
.y7{bottom:399.003750px;}
.y1b8{bottom:399.271050px;}
.y2af{bottom:400.467300px;}
.y94{bottom:402.259200px;}
.y131{bottom:402.385500px;}
.y27d{bottom:403.677450px;}
.y296{bottom:404.998350px;}
.y1f9{bottom:413.751300px;}
.yad{bottom:418.003200px;}
.y19d{bottom:418.194600px;}
.y21a{bottom:423.231150px;}
.y247{bottom:423.519000px;}
.y75{bottom:423.979650px;}
.y1e2{bottom:424.051200px;}
.y17e{bottom:424.395000px;}
.y36{bottom:424.494900px;}
.ycc{bottom:426.507150px;}
.yf0{bottom:427.466100px;}
.y1b7{bottom:427.771050px;}
.y6{bottom:428.290350px;}
.y25f{bottom:429.177150px;}
.y2ae{bottom:429.753900px;}
.y93{bottom:430.759200px;}
.y27c{bottom:432.697650px;}
.y14f{bottom:433.056000px;}
.y295{bottom:434.018700px;}
.yac{bottom:446.503350px;}
.y130{bottom:447.379650px;}
.y1f8{bottom:450.755250px;}
.y246{bottom:452.019000px;}
.y17d{bottom:452.895000px;}
.y35{bottom:452.994900px;}
.yef{bottom:455.966100px;}
.y219{bottom:455.983050px;}
.y231{bottom:456.271050px;}
.y5{bottom:457.576800px;}
.y2ad{bottom:459.040500px;}
.y92{bottom:459.259200px;}
.y19c{bottom:459.450600px;}
.y74{bottom:460.983600px;}
.y1e1{bottom:461.055150px;}
.y27b{bottom:462.501000px;}
.y294{bottom:463.038900px;}
.ycb{bottom:467.763150px;}
.y1b6{bottom:469.026900px;}
.y1b{bottom:469.523250px;}
.y14e{bottom:470.580300px;}
.y12f{bottom:475.879650px;}
.y25e{bottom:475.948950px;}
.y1f7{bottom:479.255250px;}
.y245{bottom:480.519000px;}
.y17c{bottom:481.395000px;}
.y34{bottom:481.494900px;}
.yee{bottom:484.466100px;}
.y4{bottom:486.863400px;}
.y91{bottom:487.759200px;}
.y19b{bottom:487.950600px;}
.y218{bottom:488.735100px;}
.y230{bottom:489.022950px;}
.y73{bottom:489.483600px;}
.y1e0{bottom:489.555150px;}
.y293{bottom:492.059250px;}
.y57{bottom:494.250750px;}
.yca{bottom:496.263150px;}
.y1b5{bottom:497.526900px;}
.y25c{bottom:499.334700px;}
.y12e{bottom:504.379650px;}
.y14d{bottom:508.104450px;}
.y244{bottom:509.019000px;}
.y17b{bottom:509.895000px;}
.y33{bottom:509.994900px;}
.y90{bottom:516.259200px;}
.y19a{bottom:516.450600px;}
.y22f{bottom:517.522950px;}
.y1a{bottom:519.283200px;}
.y292{bottom:521.079600px;}
.y217{bottom:521.487000px;}
.y25d{bottom:522.720450px;}
.y56{bottom:522.750750px;}
.yc9{bottom:524.763150px;}
.y1b4{bottom:526.026900px;}
.y1df{bottom:526.559100px;}
.yed{bottom:528.976050px;}
.y27a{bottom:529.683450px;}
.y72{bottom:530.739450px;}
.y3{bottom:530.908650px;}
.y12d{bottom:532.879650px;}
.y243{bottom:537.519000px;}
.y17a{bottom:538.395000px;}
.y32{bottom:538.494900px;}
.y1c8{bottom:544.759200px;}
.y199{bottom:544.950600px;}
.y14c{bottom:545.628750px;}
.y22e{bottom:546.022950px;}
.yab{bottom:549.011100px;}
.y216{bottom:549.987000px;}
.y291{bottom:550.099950px;}
.y55{bottom:551.250750px;}
.y8f{bottom:553.263150px;}
.y1b3{bottom:554.526900px;}
.y1de{bottom:555.059100px;}
.yec{bottom:557.996400px;}
.y279{bottom:558.703650px;}
.y2{bottom:560.195100px;}
.y12c{bottom:561.379650px;}
.yc8{bottom:566.019000px;}
.y179{bottom:566.895000px;}
.y19{bottom:569.043000px;}
.y25b{bottom:569.492100px;}
.y242{bottom:570.271050px;}
.y31{bottom:571.246800px;}
.y1f6{bottom:573.259200px;}
.y198{bottom:573.450600px;}
.y22d{bottom:574.522950px;}
.y54{bottom:579.750750px;}
.y71{bottom:580.499400px;}
.y8e{bottom:581.763150px;}
.y215{bottom:582.738900px;}
.y1b2{bottom:583.026900px;}
.y14b{bottom:583.153050px;}
.y205{bottom:585.334200px;}
.y1c7{bottom:586.015050px;}
.yeb{bottom:587.016600px;}
.y278{bottom:587.724000px;}
.y290{bottom:587.872200px;}
.y1{bottom:589.481700px;}
.y12b{bottom:589.879650px;}
.yaa{bottom:590.267100px;}
.y1dd{bottom:592.063050px;}
.yc7{bottom:594.519000px;}
.y178{bottom:595.395000px;}
.y2ac{bottom:597.501000px;}
.y197{bottom:601.950600px;}
.y22c{bottom:603.022950px;}
.y53{bottom:608.250750px;}
.y70{bottom:608.999400px;}
.y8d{bottom:610.263150px;}
.y214{bottom:611.238900px;}
.y1b1{bottom:611.526900px;}
.y30{bottom:612.502800px;}
.y1c6{bottom:614.515050px;}
.yea{bottom:616.036950px;}
.y25a{bottom:616.263900px;}
.y277{bottom:616.744350px;}
.ya9{bottom:618.767100px;}
.y18{bottom:618.802800px;}
.y2ab{bottom:620.001000px;}
.y1dc{bottom:620.563050px;}
.y14a{bottom:620.677350px;}
.y28f{bottom:620.896500px;}
.yc6{bottom:623.019000px;}
.y177{bottom:623.895000px;}
.y12a{bottom:631.135500px;}
.y22b{bottom:631.522950px;}
.y196{bottom:634.702650px;}
.y52{bottom:636.750750px;}
.y1b0{bottom:640.026900px;}
.y2f{bottom:641.002800px;}
.y28e{bottom:641.896500px;}
.y8c{bottom:643.015050px;}
.y213{bottom:643.990950px;}
.ye9{bottom:645.057300px;}
.y276{bottom:645.764700px;}
.ya8{bottom:647.267100px;}
.y2aa{bottom:649.804350px;}
.y6f{bottom:650.255250px;}
.yc5{bottom:655.771050px;}
.y176{bottom:656.646900px;}
.y1db{bottom:657.567000px;}
.y149{bottom:658.201500px;}
.y22a{bottom:660.022950px;}
.y259{bottom:663.035550px;}
.y51{bottom:665.250750px;}
.y195{bottom:665.712450px;}
.ye8{bottom:667.557300px;}
.y17{bottom:668.562600px;}
.y2e{bottom:669.502800px;}
.y1c5{bottom:671.515050px;}
.y275{bottom:674.785050px;}
.y1f5{bottom:675.767100px;}
.y212{bottom:676.742850px;}
.y6e{bottom:678.755250px;}
.ya7{bottom:680.019000px;}
.y106{bottom:680.737500px;}
.y1af{bottom:681.282750px;}
.y8b{bottom:684.271050px;}
.y1da{bottom:686.067000px;}
.y175{bottom:687.656850px;}
.y229{bottom:688.522950px;}
.y241{bottom:692.774850px;}
.y50{bottom:693.750750px;}
.y194{bottom:694.732800px;}
.y148{bottom:695.725800px;}
.yc4{bottom:697.026900px;}
.y2d{bottom:698.002800px;}
.y1c4{bottom:700.015050px;}
.y274{bottom:703.805400px;}
.y211{bottom:705.242850px;}
.ye7{bottom:706.829550px;}
.y28d{bottom:708.295800px;}
.y173{bottom:708.656850px;}
.y1ae{bottom:709.782750px;}
.y258{bottom:709.807200px;}
.ya6{bottom:712.771050px;}
.y2a9{bottom:716.986650px;}
.y8a{bottom:717.022950px;}
.y16{bottom:718.322550px;}
.y115{bottom:718.752632px;}
.y114{bottom:719.965285px;}
.y6d{bottom:720.011100px;}
.y112{bottom:720.522450px;}
.y110{bottom:721.407450px;}
.y10d{bottom:722.073900px;}
.y1d9{bottom:723.070950px;}
.y193{bottom:723.753150px;}
.yc3{bottom:725.526900px;}
.y2c{bottom:726.502800px;}
.y172{bottom:729.656850px;}
.y28c{bottom:730.795800px;}
.y147{bottom:733.250100px;}
.y273{bottom:733.608600px;}
.y210{bottom:733.742850px;}
.y4f{bottom:735.006750px;}
.ye6{bottom:735.329550px;}
.y1ad{bottom:738.282750px;}
.ya5{bottom:741.271050px;}
.ye{bottom:744.048300px;}
.y2a8{bottom:746.007000px;}
.y6c{bottom:748.511100px;}
.y89{bottom:749.774850px;}
.y174{bottom:750.656850px;}
.y1d8{bottom:751.570950px;}
.y192{bottom:752.773500px;}
.yc2{bottom:754.026900px;}
.y146{bottom:754.250100px;}
.y2b{bottom:755.002800px;}
.y257{bottom:756.578850px;}
.y28b{bottom:759.816150px;}
.y20f{bottom:762.242850px;}
.y4e{bottom:763.506750px;}
.ye5{bottom:763.829550px;}
.y1ac{bottom:766.782750px;}
.y15{bottom:768.082350px;}
.y116{bottom:769.529700px;}
.ya4{bottom:774.022950px;}
.y2a7{bottom:775.027200px;}
.y11a{bottom:778.033095px;}
.y1f4{bottom:778.275000px;}
.y171{bottom:779.677200px;}
.y11e{bottom:780.911430px;}
.y191{bottom:781.793850px;}
.y28a{bottom:782.316150px;}
.y88{bottom:782.526900px;}
.y2a{bottom:783.502800px;}
.y145{bottom:787.522350px;}
.y1d7{bottom:788.574900px;}
.y6b{bottom:789.767100px;}
.y16d{bottom:790.177200px;}
.y20e{bottom:790.742850px;}
.y4d{bottom:792.006750px;}
.ye4{bottom:792.329550px;}
.y1ab{bottom:795.282750px;}
.y119{bottom:799.029645px;}
.y170{bottom:800.677200px;}
.y272{bottom:800.790900px;}
.y11d{bottom:801.379590px;}
.ya3{bottom:802.522950px;}
.y256{bottom:803.350500px;}
.y2a6{bottom:804.047550px;}
.y1f3{bottom:806.775000px;}
.y144{bottom:810.022350px;}
.y122{bottom:810.169050px;}
.y190{bottom:810.814050px;}
.yc1{bottom:811.026900px;}
.y16b{bottom:811.177200px;}
.y289{bottom:811.336350px;}
.y87{bottom:815.278950px;}
.yb{bottom:816.171450px;}
.y29{bottom:816.254700px;}
.y1d6{bottom:817.074900px;}
.y14{bottom:817.842150px;}
.y6a{bottom:818.267100px;}
.y4c{bottom:820.506750px;}
.y16f{bottom:821.677200px;}
.y11c{bottom:821.736510px;}
.y20d{bottom:823.494900px;}
.y1aa{bottom:823.782750px;}
.ye3{bottom:825.081600px;}
.y271{bottom:829.811250px;}
.y11b{bottom:831.011145px;}
.ya2{bottom:831.022950px;}
.y117{bottom:831.025050px;}
.y16c{bottom:832.177200px;}
.y2a5{bottom:833.067900px;}
.y288{bottom:833.836350px;}
.y18f{bottom:839.834400px;}
.y255{bottom:842.029500px;}
.y16e{bottom:842.677200px;}
.y86{bottom:843.778800px;}
.y1d5{bottom:845.574900px;}
.y4b{bottom:849.006750px;}
.y143{bottom:849.294600px;}
.y121{bottom:850.784055px;}
.y123{bottom:850.802550px;}
.yc0{bottom:852.282750px;}
.ye2{bottom:856.091400px;}
.y20c{bottom:856.246800px;}
.y240{bottom:856.534800px;}
.y28{bottom:857.510700px;}
.y270{bottom:858.831450px;}
.y69{bottom:859.522950px;}
.y2a4{bottom:862.088250px;}
.y287{bottom:862.856700px;}
.y13{bottom:867.602100px;}
.y18e{bottom:868.854750px;}
.y118{bottom:871.001925px;}
.y168{bottom:871.697550px;}
.y1f2{bottom:872.278800px;}
.y1d4{bottom:874.074900px;}
.y85{bottom:876.530850px;}
.y4a{bottom:877.506750px;}
.y142{bottom:877.794600px;}
.ybf{bottom:880.782750px;}
.y165{bottom:884.453400px;}
.ye1{bottom:885.111750px;}
.y286{bottom:885.356700px;}
.y27{bottom:886.010700px;}
.y26f{bottom:887.851800px;}
.y20b{bottom:888.998850px;}
.y23f{bottom:889.286700px;}
.y2a3{bottom:891.108600px;}
.y124{bottom:891.436050px;}
.ya1{bottom:892.275000px;}
.y167{bottom:892.697550px;}
.y18d{bottom:897.875100px;}
.y1f1{bottom:900.778800px;}
.y11f{bottom:902.357700px;}
.y164{bottom:905.453400px;}
.y49{bottom:906.006750px;}
.y141{bottom:906.294600px;}
.y68{bottom:909.282750px;}
.y1d3{bottom:911.078850px;}
.y254{bottom:913.522500px;}
.y129{bottom:913.641750px;}
.ye0{bottom:914.132100px;}
.y26{bottom:914.510700px;}
.y169{bottom:915.953400px;}
.y26e{bottom:916.872150px;}
.y12{bottom:917.361900px;}
.y228{bottom:917.786700px;}
.y2a2{bottom:920.128950px;}
.y20a{bottom:921.750750px;}
.ybe{bottom:922.038750px;}
.y285{bottom:923.252700px;}
.y163{bottom:926.453400px;}
.y18c{bottom:926.895450px;}
.y125{bottom:932.069550px;}
.ya0{bottom:933.530850px;}
.y120{bottom:934.339200px;}
.y128{bottom:934.793550px;}
.y140{bottom:934.794600px;}
.y16a{bottom:936.953400px;}
.y67{bottom:937.782750px;}
.y1d2{bottom:939.578850px;}
.y25{bottom:943.010700px;}
.ydf{bottom:943.152300px;}
.yf{bottom:945.331350px;}
.y26d{bottom:945.892500px;}
.y227{bottom:946.286700px;}
.y48{bottom:947.262600px;}
.y162{bottom:947.453400px;}
.y2a1{bottom:949.149150px;}
.y84{bottom:950.538750px;}
.y253{bottom:951.164100px;}
.y23e{bottom:954.790650px;}
.y18b{bottom:955.915800px;}
.y127{bottom:955.945200px;}
.y209{bottom:963.006750px;}
.y13f{bottom:963.294600px;}
.y66{bottom:966.282750px;}
.y161{bottom:968.453400px;}
.y284{bottom:970.024350px;}
.y24{bottom:971.510700px;}
.yde{bottom:972.172650px;}
.y226{bottom:974.786700px;}
.y26c{bottom:974.912850px;}
.y47{bottom:975.762600px;}
.y1d1{bottom:976.582800px;}
.y2a0{bottom:978.169500px;}
.y83{bottom:979.038750px;}
.y166{bottom:981.209250px;}
.yd{bottom:983.638950px;}
.y18a{bottom:985.719150px;}
.y23d{bottom:987.542700px;}
.y252{bottom:988.805850px;}
.y208{bottom:991.506750px;}
.y13e{bottom:991.794600px;}
.y105{bottom:993.022350px;}
.y23{bottom:1000.010700px;}
.ydd{bottom:1001.193000px;}
.y1f0{bottom:1003.286700px;}
.y26b{bottom:1003.933200px;}
.y46{bottom:1004.262600px;}
.y1d0{bottom:1005.082800px;}
.y29f{bottom:1007.189850px;}
.y65{bottom:1007.538750px;}
.y283{bottom:1007.920350px;}
.y160{bottom:1010.229750px;}
.y11{bottom:1011.881100px;}
.y104{bottom:1015.522350px;}
.y207{bottom:1020.006750px;}
.ybd{bottom:1020.294600px;}
.y251{bottom:1026.447600px;}
.y22{bottom:1028.510700px;}
.ydc{bottom:1030.213350px;}
.y282{bottom:1030.420350px;}
.y15e{bottom:1031.229750px;}
.y1ef{bottom:1031.786700px;}
.y45{bottom:1032.762600px;}
.y26a{bottom:1032.953400px;}
.y64{bottom:1036.038750px;}
.y103{bottom:1038.022350px;}
.y1cf{bottom:1042.086600px;}
.y29e{bottom:1044.962100px;}
.ybc{bottom:1048.794600px;}
.yc{bottom:1051.752300px;}
.y15f{bottom:1052.229750px;}
.y206{bottom:1052.758650px;}
.y21{bottom:1057.010700px;}
.ydb{bottom:1059.233700px;}
.y281{bottom:1060.223700px;}
.y204{bottom:1060.286700px;}
.y44{bottom:1061.262600px;}
.y269{bottom:1061.973750px;}
.y250{bottom:1064.089350px;}
.y63{bottom:1064.538750px;}
.y1ee{bottom:1068.790650px;}
.y1ce{bottom:1070.586600px;}
.ybb{bottom:1077.294600px;}
.y29d{bottom:1077.986400px;}
.y15d{bottom:1081.250100px;}
.y20{bottom:1085.510700px;}
.yda{bottom:1088.254050px;}
.y43{bottom:1089.762600px;}
.y268{bottom:1090.994100px;}
.y62{bottom:1093.038750px;}
.y82{bottom:1097.290650px;}
.y24f{bottom:1098.203400px;}
.y29c{bottom:1098.986400px;}
.yba{bottom:1105.794600px;}
.y1cd{bottom:1107.590550px;}
.y280{bottom:1108.782750px;}
.y15c{bottom:1110.270300px;}
.y1f{bottom:1114.010700px;}
.yd9{bottom:1117.274250px;}
.y42{bottom:1118.262600px;}
.y61{bottom:1121.538750px;}
.y1ed{bottom:1125.790650px;}
.y267{bottom:1128.766350px;}
.y81{bottom:1130.042700px;}
.y15b{bottom:1131.270300px;}
.yb9{bottom:1134.294600px;}
.y1cc{bottom:1136.090550px;}
.yd8{bottom:1146.294600px;}
.y1e{bottom:1146.762600px;}
.y27f{bottom:1150.038750px;}
.y80{bottom:1158.542700px;}
.y15a{bottom:1160.290650px;}
.y266{bottom:1161.790650px;}
.y60{bottom:1162.794600px;}
.yd7{bottom:1168.794600px;}
.y1cb{bottom:1177.346550px;}
.y10{bottom:1177.807050px;}
.y159{bottom:1182.790650px;}
.y1d{bottom:1188.018450px;}
.y5f{bottom:1191.294600px;}
.h15{height:36.741627px;}
.h16{height:37.085501px;}
.h1d{height:37.844010px;}
.h1e{height:38.198202px;}
.hd{height:43.265625px;}
.h4{height:47.058000px;}
.h26{height:48.049805px;}
.hf{height:48.082031px;}
.h12{height:48.410156px;}
.h1a{height:50.215518px;}
.h13{height:54.169922px;}
.h3{height:55.683304px;}
.h19{height:55.795020px;}
.h18{height:55.795021px;}
.h10{height:59.167969px;}
.he{height:59.490234px;}
.hc{height:59.586914px;}
.h28{height:59.924569px;}
.h11{height:60.199219px;}
.ha{height:72.726000px;}
.hb{height:75.714844px;}
.h1c{height:81.140238px;}
.h23{height:90.082031px;}
.h2{height:91.946790px;}
.h25{height:101.167969px;}
.h9{height:101.921952px;}
.h20{height:120.158522px;}
.h21{height:120.169922px;}
.h1b{height:131.976918px;}
.h24{height:132.082031px;}
.h22{height:143.167969px;}
.h7{height:265.912416px;}
.h14{height:277.317000px;}
.h8{height:279.914448px;}
.h17{height:304.747500px;}
.h1f{height:329.334000px;}
.h27{height:413.324708px;}
.h6{height:421.607885px;}
.h5{height:458.651225px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:773.857500px;}
.w3{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:6.717150px;}
.x25{left:12.259350px;}
.x2b{left:43.036500px;}
.xb{left:54.000000px;}
.xa{left:55.180500px;}
.x14{left:59.527500px;}
.xc{left:63.244350px;}
.xd{left:64.840350px;}
.xe{left:67.221300px;}
.x9{left:69.659250px;}
.x13{left:72.283500px;}
.x37{left:74.838750px;}
.x18{left:76.535400px;}
.x52{left:80.104500px;}
.x1a{left:85.039350px;}
.x1c{left:89.903850px;}
.x2c{left:102.172442px;}
.x22{left:105.406650px;}
.x76{left:108.542100px;}
.x77{left:110.551200px;}
.x7f{left:111.985500px;}
.x26{left:113.493300px;}
.x2d{left:116.025089px;}
.x38{left:120.808500px;}
.x29{left:122.898150px;}
.x24{left:124.966050px;}
.x41{left:131.626590px;}
.x20{left:134.848350px;}
.x4d{left:137.588100px;}
.x46{left:149.329500px;}
.x43{left:150.593010px;}
.x23{left:158.881350px;}
.x7e{left:172.016400px;}
.x7b{left:179.225700px;}
.x4c{left:182.897100px;}
.x53{left:188.408250px;}
.x2e{left:193.241575px;}
.x5c{left:196.736250px;}
.x2f{left:198.583802px;}
.x5e{left:200.571300px;}
.x7c{left:202.307400px;}
.x6a{left:204.273000px;}
.x74{left:205.440150px;}
.x19{left:207.615150px;}
.x21{left:209.886900px;}
.x50{left:216.215700px;}
.x72{left:220.206150px;}
.x5f{left:226.545450px;}
.x51{left:228.293400px;}
.x71{left:237.456900px;}
.x10{left:242.362200px;}
.x5b{left:243.971550px;}
.x2a{left:255.705450px;}
.x7d{left:263.381850px;}
.x5d{left:264.566850px;}
.x79{left:275.656200px;}
.x42{left:279.589695px;}
.x64{left:280.852200px;}
.x78{left:282.107850px;}
.x73{left:285.765150px;}
.x15{left:287.481600px;}
.x39{left:294.565380px;}
.x1b{left:314.332950px;}
.x1e{left:319.741200px;}
.x48{left:320.930100px;}
.x47{left:325.921500px;}
.x17{left:331.232550px;}
.x16{left:334.080300px;}
.x7a{left:344.275650px;}
.x12{left:353.348700px;}
.x75{left:358.817550px;}
.x3b{left:369.721905px;}
.xf{left:375.325200px;}
.x30{left:397.809690px;}
.x1f{left:412.029450px;}
.x3a{left:414.760200px;}
.x1d{left:419.245350px;}
.x6b{left:424.211700px;}
.x60{left:426.806100px;}
.x3c{left:428.414910px;}
.x66{left:431.739150px;}
.x65{left:436.266600px;}
.x28{left:441.056100px;}
.x11{left:443.720400px;}
.x67{left:446.185650px;}
.x45{left:448.666050px;}
.x32{left:460.693350px;}
.x6c{left:470.719500px;}
.x31{left:493.019550px;}
.x3d{left:499.080120px;}
.x54{left:522.087600px;}
.x34{left:526.275300px;}
.x3e{left:559.205340px;}
.x6d{left:564.526650px;}
.x68{left:566.087550px;}
.x33{left:570.465750px;}
.x49{left:573.267750px;}
.x69{left:574.745400px;}
.x61{left:579.863250px;}
.x40{left:590.046630px;}
.x85{left:604.833000px;}
.x56{left:605.872800px;}
.x6e{left:611.034450px;}
.x55{left:616.577250px;}
.x7{left:625.738650px;}
.x3f{left:633.652710px;}
.x80{left:637.791900px;}
.x35{left:641.521050px;}
.x82{left:646.369650px;}
.x1{left:658.697400px;}
.x4{left:667.275300px;}
.x84{left:668.593500px;}
.x4a{left:679.687200px;}
.x2{left:687.330900px;}
.x6{left:689.499000px;}
.x4b{left:695.142300px;}
.x27{left:698.157000px;}
.x59{left:703.737150px;}
.x70{left:704.841750px;}
.x62{left:707.436150px;}
.x6f{left:709.840800px;}
.x83{left:714.993300px;}
.x63{left:720.178200px;}
.x81{left:726.644250px;}
.x57{left:732.909300px;}
.x5{left:735.898800px;}
.x8{left:740.505750px;}
.x3{left:747.549750px;}
.x5a{left:752.223600px;}
.x58{left:761.424150px;}
.x36{left:762.655232px;}
.x4f{left:793.412400px;}
.x4e{left:802.161300px;}
@media print{
.v4{vertical-align:-38.167680pt;}
.v7{vertical-align:-15.327467pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:16.000000pt;}
.v3{vertical-align:27.488640pt;}
.v2{vertical-align:31.097760pt;}
.v6{vertical-align:37.333333pt;}
.v1{vertical-align:41.579040pt;}
.v5{vertical-align:58.661867pt;}
.lsa{letter-spacing:-26.874374pt;}
.ls5b{letter-spacing:-6.981333pt;}
.ls41{letter-spacing:-6.336000pt;}
.ls5f{letter-spacing:-6.277333pt;}
.ls7d{letter-spacing:-6.218667pt;}
.ls7c{letter-spacing:-5.984000pt;}
.ls84{letter-spacing:-5.573333pt;}
.ls55{letter-spacing:-4.928000pt;}
.ls4e{letter-spacing:-4.869333pt;}
.ls6c{letter-spacing:-4.810667pt;}
.ls5c{letter-spacing:-4.400000pt;}
.ls5e{letter-spacing:-4.282667pt;}
.ls48{letter-spacing:-4.202400pt;}
.ls40{letter-spacing:-3.930667pt;}
.ls23{letter-spacing:-3.637333pt;}
.ls71{letter-spacing:-3.578667pt;}
.lse{letter-spacing:-3.392902pt;}
.lsd{letter-spacing:-3.223181pt;}
.ls18{letter-spacing:-3.168000pt;}
.ls6a{letter-spacing:-2.992000pt;}
.ls61{letter-spacing:-2.933333pt;}
.ls1c{letter-spacing:-2.874667pt;}
.ls2b{letter-spacing:-2.757333pt;}
.ls3e{letter-spacing:-2.698667pt;}
.ls17{letter-spacing:-2.581333pt;}
.ls1a{letter-spacing:-2.522667pt;}
.ls4d{letter-spacing:-2.517333pt;}
.ls4f{letter-spacing:-2.464000pt;}
.ls7a{letter-spacing:-2.346667pt;}
.ls31{letter-spacing:-2.288000pt;}
.ls79{letter-spacing:-2.229333pt;}
.ls78{letter-spacing:-2.170667pt;}
.ls25{letter-spacing:-2.112000pt;}
.ls43{letter-spacing:-1.994667pt;}
.ls59{letter-spacing:-1.936000pt;}
.lsc{letter-spacing:-1.880189pt;}
.ls50{letter-spacing:-1.877333pt;}
.ls24{letter-spacing:-1.818667pt;}
.ls53{letter-spacing:-1.760000pt;}
.ls54{letter-spacing:-1.701333pt;}
.ls27{letter-spacing:-1.642667pt;}
.ls56{letter-spacing:-1.584000pt;}
.ls70{letter-spacing:-1.536000pt;}
.ls49{letter-spacing:-1.483200pt;}
.ls68{letter-spacing:-1.466667pt;}
.ls3f{letter-spacing:-1.408000pt;}
.ls63{letter-spacing:-1.349333pt;}
.ls57{letter-spacing:-1.290667pt;}
.ls42{letter-spacing:-1.232000pt;}
.ls26{letter-spacing:-1.173333pt;}
.ls66{letter-spacing:-1.152000pt;}
.ls2c{letter-spacing:-1.114667pt;}
.ls6b{letter-spacing:-1.066667pt;}
.ls62{letter-spacing:-1.056000pt;}
.ls3{letter-spacing:-1.041296pt;}
.ls60{letter-spacing:-0.997333pt;}
.ls6d{letter-spacing:-0.981333pt;}
.ls11{letter-spacing:-0.938667pt;}
.ls69{letter-spacing:-0.880000pt;}
.ls12{letter-spacing:-0.821333pt;}
.ls6e{letter-spacing:-0.810667pt;}
.ls29{letter-spacing:-0.762667pt;}
.ls20{letter-spacing:-0.704000pt;}
.ls72{letter-spacing:-0.682667pt;}
.ls28{letter-spacing:-0.645333pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls1f{letter-spacing:-0.528000pt;}
.ls47{letter-spacing:-0.512000pt;}
.ls44{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.469333pt;}
.ls2{letter-spacing:-0.462800pt;}
.ls33{letter-spacing:-0.410667pt;}
.ls77{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.370240pt;}
.ls13{letter-spacing:-0.352000pt;}
.ls15{letter-spacing:-0.293333pt;}
.ls81{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.234667pt;}
.ls5{letter-spacing:-0.185120pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls21{letter-spacing:-0.117333pt;}
.ls5a{letter-spacing:-0.058667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.058667pt;}
.ls39{letter-spacing:0.117333pt;}
.ls7{letter-spacing:0.138839pt;}
.ls58{letter-spacing:0.176000pt;}
.ls88{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.293333pt;}
.ls86{letter-spacing:0.341333pt;}
.ls64{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.370240pt;}
.ls9{letter-spacing:0.410667pt;}
.ls74{letter-spacing:0.554667pt;}
.ls87{letter-spacing:0.597333pt;}
.ls0{letter-spacing:0.833040pt;}
.ls7b{letter-spacing:0.896000pt;}
.ls65{letter-spacing:8.682667pt;}
.ls3c{letter-spacing:8.976000pt;}
.ls51{letter-spacing:9.738667pt;}
.ls3d{letter-spacing:12.202667pt;}
.ls67{letter-spacing:12.789333pt;}
.ls45{letter-spacing:13.317333pt;}
.ls52{letter-spacing:14.373333pt;}
.ls7e{letter-spacing:15.840000pt;}
.ls76{letter-spacing:16.426667pt;}
.ls2e{letter-spacing:17.600000pt;}
.ls30{letter-spacing:18.128000pt;}
.ls7f{letter-spacing:18.597333pt;}
.ls82{letter-spacing:18.656000pt;}
.ls85{letter-spacing:19.125333pt;}
.ls80{letter-spacing:19.712000pt;}
.ls83{letter-spacing:19.829333pt;}
.ls73{letter-spacing:38.312816pt;}
.ls35{letter-spacing:38.720000pt;}
.lsb{letter-spacing:44.017118pt;}
.ls34{letter-spacing:46.757333pt;}
.ls2f{letter-spacing:46.816000pt;}
.ls32{letter-spacing:46.874667pt;}
.ls1e{letter-spacing:46.933333pt;}
.ls75{letter-spacing:57.418667pt;}
.ls1d{letter-spacing:58.240000pt;}
.ls4a{letter-spacing:59.136000pt;}
.ls10{letter-spacing:59.360000pt;}
.ls2d{letter-spacing:59.434667pt;}
.ls22{letter-spacing:59.584000pt;}
.ls6f{letter-spacing:59.882667pt;}
.ls2a{letter-spacing:60.106667pt;}
.lsf{letter-spacing:72.533333pt;}
.ls3b{letter-spacing:167.466667pt;}
.ls4c{letter-spacing:378.691733pt;}
.ls4b{letter-spacing:393.712000pt;}
.ls37{letter-spacing:587.453867pt;}
.ls3a{letter-spacing:587.829333pt;}
.ls36{letter-spacing:592.396800pt;}
.ls38{letter-spacing:615.072000pt;}
.ls46{letter-spacing:636.688320pt;}
.ws5f{word-spacing:-182.293333pt;}
.ws5{word-spacing:-87.484666pt;}
.ws34{word-spacing:-77.130667pt;}
.wsdc{word-spacing:-76.906667pt;}
.ws40{word-spacing:-76.458667pt;}
.ws10{word-spacing:-76.384000pt;}
.ws6f{word-spacing:-76.160000pt;}
.ws1b{word-spacing:-75.264000pt;}
.ws1c{word-spacing:-60.309333pt;}
.ws3f{word-spacing:-60.250667pt;}
.ws3d{word-spacing:-60.192000pt;}
.ws29{word-spacing:-59.584000pt;}
.ws7{word-spacing:-53.155471pt;}
.ws6{word-spacing:-44.428493pt;}
.wse3{word-spacing:-38.716109pt;}
.wsf3{word-spacing:-36.138667pt;}
.wse4{word-spacing:-31.504000pt;}
.wsbe{word-spacing:-24.992000pt;}
.wsfa{word-spacing:-19.829333pt;}
.wsf2{word-spacing:-19.712000pt;}
.wsf8{word-spacing:-19.125333pt;}
.wsf7{word-spacing:-18.656000pt;}
.wsf1{word-spacing:-18.597333pt;}
.ws3{word-spacing:-18.512000pt;}
.ws2{word-spacing:-18.326880pt;}
.ws0{word-spacing:-18.049200pt;}
.ws55{word-spacing:-16.426667pt;}
.ws75{word-spacing:-16.309333pt;}
.ws27{word-spacing:-16.016000pt;}
.wsf0{word-spacing:-15.840000pt;}
.wscf{word-spacing:-15.781333pt;}
.wsef{word-spacing:-15.664000pt;}
.wsc1{word-spacing:-15.605333pt;}
.ws7d{word-spacing:-15.546667pt;}
.ws22{word-spacing:-15.488000pt;}
.wsea{word-spacing:-15.429333pt;}
.wsc3{word-spacing:-15.370667pt;}
.wscd{word-spacing:-15.312000pt;}
.wsd0{word-spacing:-15.253333pt;}
.ws5e{word-spacing:-15.194667pt;}
.ws4f{word-spacing:-15.077333pt;}
.wscc{word-spacing:-14.960000pt;}
.wsc2{word-spacing:-14.842667pt;}
.ws70{word-spacing:-14.826667pt;}
.ws26{word-spacing:-14.666667pt;}
.ws23{word-spacing:-14.490667pt;}
.ws7c{word-spacing:-14.432000pt;}
.wscb{word-spacing:-14.373333pt;}
.ws53{word-spacing:-14.314667pt;}
.ws24{word-spacing:-14.197333pt;}
.ws4{word-spacing:-14.022786pt;}
.ws25{word-spacing:-13.786667pt;}
.ws47{word-spacing:-13.610667pt;}
.wsc4{word-spacing:-13.317333pt;}
.ws80{word-spacing:-13.141333pt;}
.ws1{word-spacing:-12.842651pt;}
.ws28{word-spacing:-12.672000pt;}
.wsc9{word-spacing:-11.498667pt;}
.ws7b{word-spacing:-11.440000pt;}
.ws81{word-spacing:-11.381333pt;}
.wsf5{word-spacing:-10.736000pt;}
.ws4c{word-spacing:-9.973333pt;}
.wsde{word-spacing:-2.757333pt;}
.ws41{word-spacing:-2.170667pt;}
.wsbd{word-spacing:-2.112000pt;}
.ws42{word-spacing:-1.877333pt;}
.wsb4{word-spacing:-1.584000pt;}
.ws63{word-spacing:-1.525333pt;}
.wsdf{word-spacing:-1.408000pt;}
.wsd4{word-spacing:-1.290667pt;}
.ws33{word-spacing:-1.232000pt;}
.ws78{word-spacing:-1.114667pt;}
.ws62{word-spacing:-1.056000pt;}
.wsbc{word-spacing:-0.938667pt;}
.wseb{word-spacing:-0.896000pt;}
.ws8{word-spacing:-0.833040pt;}
.wsfb{word-spacing:-0.597333pt;}
.ws77{word-spacing:-0.586667pt;}
.wse5{word-spacing:-0.554667pt;}
.ws3e{word-spacing:-0.528000pt;}
.wsd{word-spacing:-0.410667pt;}
.wsb{word-spacing:-0.370240pt;}
.wsf9{word-spacing:-0.341333pt;}
.wsc{word-spacing:-0.293333pt;}
.wsfc{word-spacing:-0.256000pt;}
.ws36{word-spacing:-0.234667pt;}
.ws20{word-spacing:-0.176000pt;}
.ws37{word-spacing:-0.058667pt;}
.ws6e{word-spacing:-0.049599pt;}
.ws60{word-spacing:-0.048154pt;}
.ws9{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.058667pt;}
.ws21{word-spacing:0.117333pt;}
.ws19{word-spacing:0.176000pt;}
.ws12{word-spacing:0.234667pt;}
.wsf6{word-spacing:0.256000pt;}
.ws2a{word-spacing:0.293333pt;}
.ws39{word-spacing:0.298667pt;}
.ws13{word-spacing:0.352000pt;}
.wsa{word-spacing:0.370240pt;}
.wse7{word-spacing:0.384000pt;}
.ws44{word-spacing:0.410667pt;}
.ws14{word-spacing:0.469333pt;}
.ws61{word-spacing:0.480000pt;}
.ws76{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.528000pt;}
.ws15{word-spacing:0.586667pt;}
.ws30{word-spacing:0.645333pt;}
.wse2{word-spacing:0.682667pt;}
.ws1f{word-spacing:0.704000pt;}
.ws3a{word-spacing:0.762667pt;}
.wsdd{word-spacing:0.810667pt;}
.ws31{word-spacing:0.821333pt;}
.wsdb{word-spacing:0.880000pt;}
.ws11{word-spacing:0.938667pt;}
.wsd5{word-spacing:0.981333pt;}
.ws64{word-spacing:0.997333pt;}
.wsd3{word-spacing:1.066667pt;}
.ws1d{word-spacing:1.114667pt;}
.wsc5{word-spacing:1.152000pt;}
.ws2b{word-spacing:1.173333pt;}
.wsb7{word-spacing:1.232000pt;}
.wsb9{word-spacing:1.290667pt;}
.ws35{word-spacing:1.349333pt;}
.wsb3{word-spacing:1.408000pt;}
.ws79{word-spacing:1.483200pt;}
.ws46{word-spacing:1.525333pt;}
.wse0{word-spacing:1.536000pt;}
.wsc6{word-spacing:1.584000pt;}
.wsb6{word-spacing:1.701333pt;}
.wsb5{word-spacing:1.760000pt;}
.ws32{word-spacing:1.818667pt;}
.wse{word-spacing:1.880189pt;}
.ws18{word-spacing:1.936000pt;}
.ws16{word-spacing:1.994667pt;}
.wse9{word-spacing:2.112000pt;}
.ws2d{word-spacing:2.170667pt;}
.wse8{word-spacing:2.229333pt;}
.ws1a{word-spacing:2.288000pt;}
.wse6{word-spacing:2.314667pt;}
.ws43{word-spacing:2.346667pt;}
.wsb1{word-spacing:2.464000pt;}
.wsaf{word-spacing:2.517333pt;}
.ws17{word-spacing:2.581333pt;}
.ws45{word-spacing:2.698667pt;}
.ws38{word-spacing:2.757333pt;}
.wsba{word-spacing:2.874667pt;}
.wsc8{word-spacing:2.933333pt;}
.ws2f{word-spacing:3.168000pt;}
.wsf{word-spacing:3.223181pt;}
.wsda{word-spacing:3.344000pt;}
.ws2c{word-spacing:3.402667pt;}
.wse1{word-spacing:3.578667pt;}
.wsd9{word-spacing:3.930667pt;}
.wsd7{word-spacing:4.224000pt;}
.wsbb{word-spacing:4.400000pt;}
.ws3c{word-spacing:4.634667pt;}
.wsd8{word-spacing:5.221333pt;}
.ws2e{word-spacing:5.456000pt;}
.ws7a{word-spacing:5.514667pt;}
.wsd6{word-spacing:5.749333pt;}
.wsec{word-spacing:5.984000pt;}
.wsed{word-spacing:6.218667pt;}
.wsb2{word-spacing:6.629333pt;}
.wsc7{word-spacing:6.981333pt;}
.wsb0{word-spacing:7.157333pt;}
.ws3b{word-spacing:7.509333pt;}
.ws6c{word-spacing:13.299360pt;}
.ws67{word-spacing:44.347680pt;}
.ws66{word-spacing:85.432320pt;}
.ws7f{word-spacing:86.622933pt;}
.ws65{word-spacing:111.240000pt;}
.ws7e{word-spacing:116.854400pt;}
.ws71{word-spacing:124.693333pt;}
.ws73{word-spacing:181.540800pt;}
.ws74{word-spacing:190.273067pt;}
.wsaa{word-spacing:192.032533pt;}
.ws68{word-spacing:203.544480pt;}
.ws72{word-spacing:255.570667pt;}
.wsbf{word-spacing:271.017600pt;}
.ws6a{word-spacing:280.423680pt;}
.wsf4{word-spacing:295.906667pt;}
.ws89{word-spacing:320.325867pt;}
.wsa5{word-spacing:321.217600pt;}
.ws8a{word-spacing:322.381867pt;}
.ws86{word-spacing:323.323200pt;}
.ws8e{word-spacing:323.851200pt;}
.wsa6{word-spacing:323.910400pt;}
.ws9c{word-spacing:324.659200pt;}
.ws85{word-spacing:325.107200pt;}
.ws99{word-spacing:325.653333pt;}
.ws8d{word-spacing:325.849600pt;}
.ws95{word-spacing:326.972800pt;}
.ws91{word-spacing:327.266133pt;}
.wsa8{word-spacing:327.521600pt;}
.wsa0{word-spacing:327.683200pt;}
.ws9d{word-spacing:328.016533pt;}
.wsab{word-spacing:334.430933pt;}
.ws83{word-spacing:334.706667pt;}
.ws87{word-spacing:335.398933pt;}
.ws9a{word-spacing:338.171733pt;}
.wsa9{word-spacing:340.065600pt;}
.ws96{word-spacing:341.061333pt;}
.wsa1{word-spacing:341.656533pt;}
.ws92{word-spacing:343.290667pt;}
.ws94{word-spacing:344.464533pt;}
.ws90{word-spacing:344.523200pt;}
.wsa4{word-spacing:344.658133pt;}
.wsac{word-spacing:344.739733pt;}
.ws84{word-spacing:346.019200pt;}
.wsae{word-spacing:346.221333pt;}
.ws8c{word-spacing:346.626667pt;}
.ws97{word-spacing:347.078400pt;}
.ws8f{word-spacing:347.799467pt;}
.ws88{word-spacing:348.650667pt;}
.wsad{word-spacing:349.166400pt;}
.ws9e{word-spacing:354.267733pt;}
.ws9f{word-spacing:355.514133pt;}
.wsa3{word-spacing:355.754667pt;}
.ws98{word-spacing:355.786667pt;}
.ws8b{word-spacing:357.297600pt;}
.ws9b{word-spacing:361.602133pt;}
.ws49{word-spacing:434.876267pt;}
.ws48{word-spacing:449.222933pt;}
.ws5b{word-spacing:449.223467pt;}
.wsc0{word-spacing:450.429867pt;}
.ws82{word-spacing:506.409600pt;}
.ws59{word-spacing:515.269867pt;}
.ws5d{word-spacing:529.833067pt;}
.ws51{word-spacing:531.444267pt;}
.ws4b{word-spacing:531.556267pt;}
.ws93{word-spacing:541.696000pt;}
.ws54{word-spacing:545.184533pt;}
.ws5c{word-spacing:545.589333pt;}
.ws69{word-spacing:545.768160pt;}
.ws52{word-spacing:573.588267pt;}
.ws5a{word-spacing:573.963733pt;}
.ws4e{word-spacing:583.933867pt;}
.ws57{word-spacing:601.204800pt;}
.wsa2{word-spacing:608.628800pt;}
.wsa7{word-spacing:615.564800pt;}
.ws58{word-spacing:665.218667pt;}
.ws50{word-spacing:668.861867pt;}
.ws4d{word-spacing:696.371733pt;}
.ws56{word-spacing:719.046933pt;}
.ws4a{word-spacing:750.302400pt;}
.ws6d{word-spacing:935.503680pt;}
.ws6b{word-spacing:1485.622560pt;}
.wsee{word-spacing:1550.583467pt;}
.wsca{word-spacing:1729.592000pt;}
.wsce{word-spacing:1764.183467pt;}
.wsd2{word-spacing:1804.169067pt;}
.wsd1{word-spacing:1811.338133pt;}
._2e{margin-left:-167.466667pt;}
._2d{margin-left:-165.813333pt;}
._1d{margin-left:-59.732429pt;}
._b{margin-left:-21.268084pt;}
._1{margin-left:-18.387904pt;}
._23{margin-left:-13.565702pt;}
._2f{margin-left:-12.504053pt;}
._24{margin-left:-10.965161pt;}
._f{margin-left:-7.340440pt;}
._4{margin-left:-5.796548pt;}
._d{margin-left:-4.442849pt;}
._1c{margin-left:-3.473392pt;}
._10{margin-left:-2.563492pt;}
._0{margin-left:-1.008904pt;}
._2{width:1.277328pt;}
._3{width:2.554636pt;}
._e{width:3.927296pt;}
._1b{width:5.408741pt;}
._21{width:6.341704pt;}
._c{width:7.281336pt;}
._22{width:8.475565pt;}
._25{width:10.257197pt;}
._48{width:11.504509pt;}
._a{width:16.125897pt;}
._55{width:18.431467pt;}
._54{width:19.857779pt;}
._57{width:20.894933pt;}
._56{width:22.081605pt;}
._53{width:23.010672pt;}
._20{width:24.216533pt;}
._1f{width:25.367472pt;}
._52{width:26.366243pt;}
._1e{width:28.431497pt;}
._51{width:30.108059pt;}
._59{width:32.030725pt;}
._5{width:33.049763pt;}
._58{width:33.945630pt;}
._6{width:35.222584pt;}
._9{width:38.367458pt;}
._7{width:40.197203pt;}
._8{width:51.061311pt;}
._5a{width:73.280539pt;}
._47{width:88.289718pt;}
._46{width:92.970875pt;}
._35{width:125.231520pt;}
._3f{width:166.393285pt;}
._42{width:194.105067pt;}
._40{width:208.347739pt;}
._38{width:214.408584pt;}
._37{width:226.756707pt;}
._45{width:232.653877pt;}
._43{width:239.612267pt;}
._33{width:246.755040pt;}
._5b{width:271.988180pt;}
._3e{width:310.842504pt;}
._41{width:329.066667pt;}
._3a{width:333.570133pt;}
._30{width:340.196640pt;}
._39{width:347.963733pt;}
._3c{width:353.430400pt;}
._44{width:355.047467pt;}
._3d{width:393.712000pt;}
._32{width:409.017120pt;}
._3b{width:434.954504pt;}
._2b{width:452.695342pt;}
._28{width:467.241945pt;}
._2a{width:489.569150pt;}
._27{width:492.847155pt;}
._26{width:549.841335pt;}
._29{width:671.947070pt;}
._31{width:744.849384pt;}
._2c{width:767.373659pt;}
._15{width:769.001443pt;}
._50{width:877.026931pt;}
._18{width:882.060637pt;}
._12{width:939.897600pt;}
._19{width:941.983304pt;}
._49{width:964.144053pt;}
._16{width:979.334939pt;}
._17{width:983.718933pt;}
._34{width:1014.756000pt;}
._14{width:1027.570509pt;}
._13{width:1029.846939pt;}
._11{width:1030.916277pt;}
._1a{width:1053.367512pt;}
._36{width:1071.068160pt;}
._4a{width:1457.844683pt;}
._4f{width:1516.558771pt;}
._4c{width:1539.984533pt;}
._4e{width:1544.296533pt;}
._4b{width:1552.556800pt;}
._4d{width:1639.843571pt;}
.fsa{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:48.154133pt;}
.fs10{font-size:49.440000pt;}
.fs11{font-size:49.598933pt;}
.fsc{font-size:53.333333pt;}
.fsf{font-size:54.933333pt;}
.fse{font-size:54.933334pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:69.419733pt;}
.fs9{font-size:74.666667pt;}
.fs8{font-size:90.666667pt;}
.fs0{font-size:92.560000pt;}
.fs7{font-size:102.951467pt;}
.fs5{font-size:268.598400pt;}
.fs6{font-size:282.741867pt;}
.fs12{font-size:403.292800pt;}
.fs4{font-size:411.374933pt;}
.fs3{font-size:571.795200pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:5.619067pt;}
.y136{bottom:5.620267pt;}
.y13d{bottom:5.621600pt;}
.y113{bottom:7.202667pt;}
.y109{bottom:11.689183pt;}
.y111{bottom:12.067867pt;}
.y10c{bottom:13.456573pt;}
.y10b{bottom:18.399438pt;}
.y108{bottom:20.739773pt;}
.y107{bottom:21.681733pt;}
.y1c{bottom:22.470533pt;}
.y10e{bottom:25.449600pt;}
.y10f{bottom:25.799194pt;}
.y10a{bottom:35.014845pt;}
.yfd{bottom:51.704000pt;}
.yb8{bottom:55.096533pt;}
.y1a9{bottom:56.390000pt;}
.y24e{bottom:59.999467pt;}
.yff{bottom:61.446267pt;}
.y5e{bottom:61.990133pt;}
.y23c{bottom:63.778933pt;}
.y1c3{bottom:64.902267pt;}
.yf4{bottom:66.752267pt;}
.y7f{bottom:70.624133pt;}
.y225{bottom:71.082000pt;}
.y9f{bottom:71.338000pt;}
.y189{bottom:75.896133pt;}
.yb7{bottom:80.429867pt;}
.y1a8{bottom:81.723333pt;}
.y133{bottom:83.013333pt;}
.y41{bottom:83.544000pt;}
.y203{bottom:84.209333pt;}
.y1ec{bottom:85.805867pt;}
.y5d{bottom:87.323467pt;}
.y24d{bottom:89.112267pt;}
.y1c2{bottom:90.235600pt;}
.yf5{bottom:91.192267pt;}
.y23b{bottom:92.891733pt;}
.y7e{bottom:95.957467pt;}
.y224{bottom:96.415333pt;}
.y9e{bottom:96.671333pt;}
.yd6{bottom:99.327467pt;}
.y188{bottom:101.229467pt;}
.y132{bottom:103.298400pt;}
.y135{bottom:103.299733pt;}
.y13c{bottom:103.300933pt;}
.yb6{bottom:105.763200pt;}
.y1a7{bottom:107.056667pt;}
.y40{bottom:108.877333pt;}
.y202{bottom:109.542667pt;}
.y1eb{bottom:111.139200pt;}
.y5c{bottom:112.656800pt;}
.y1c1{bottom:115.568933pt;}
.yf6{bottom:115.632267pt;}
.y7d{bottom:121.290800pt;}
.y223{bottom:121.748667pt;}
.y23a{bottom:122.004667pt;}
.yd5{bottom:124.660800pt;}
.y9d{bottom:125.784133pt;}
.y187{bottom:126.562800pt;}
.y158{bottom:129.750533pt;}
.yb5{bottom:131.096533pt;}
.y1a6{bottom:132.390000pt;}
.y3f{bottom:134.210667pt;}
.y5b{bottom:137.990133pt;}
.yf7{bottom:140.058933pt;}
.y1c0{bottom:140.902267pt;}
.y201{bottom:142.435200pt;}
.y1ea{bottom:144.031600pt;}
.yd4{bottom:149.994133pt;}
.y7c{bottom:150.403600pt;}
.y222{bottom:150.861600pt;}
.y239{bottom:151.117467pt;}
.y9c{bottom:154.897067pt;}
.y157{bottom:155.083867pt;}
.ya{bottom:155.643067pt;}
.yb4{bottom:156.429867pt;}
.y1a5{bottom:157.723333pt;}
.y3e{bottom:159.544000pt;}
.y186{bottom:163.234800pt;}
.y5a{bottom:163.323467pt;}
.yf8{bottom:164.498933pt;}
.y1bf{bottom:166.235600pt;}
.y200{bottom:167.768533pt;}
.y9{bottom:174.309733pt;}
.y1e9{bottom:176.923867pt;}
.y221{bottom:179.974400pt;}
.y9b{bottom:180.230400pt;}
.y156{bottom:180.417200pt;}
.y13b{bottom:180.418933pt;}
.yb3{bottom:181.763200pt;}
.y102{bottom:182.787467pt;}
.y24c{bottom:184.009867pt;}
.y3d{bottom:184.877333pt;}
.yd3{bottom:186.666133pt;}
.y7b{bottom:187.075467pt;}
.y238{bottom:187.789467pt;}
.y185{bottom:188.568133pt;}
.y59{bottom:188.656800pt;}
.yf9{bottom:188.938933pt;}
.y1be{bottom:191.568933pt;}
.y1a4{bottom:194.395200pt;}
.y13a{bottom:198.018933pt;}
.y265{bottom:198.860133pt;}
.y1ff{bottom:200.660800pt;}
.y1e8{bottom:202.257200pt;}
.y220{bottom:205.307733pt;}
.y9a{bottom:205.563733pt;}
.y155{bottom:205.750533pt;}
.y3c{bottom:210.210667pt;}
.yb2{bottom:210.876000pt;}
.yd2{bottom:211.999467pt;}
.y7a{bottom:212.408800pt;}
.y2b4{bottom:212.689733pt;}
.y237{bottom:213.122800pt;}
.yfa{bottom:213.365600pt;}
.y184{bottom:213.901467pt;}
.y58{bottom:213.990133pt;}
.y1bd{bottom:216.902267pt;}
.y264{bottom:218.860133pt;}
.y1a3{bottom:219.728533pt;}
.y101{bottom:220.881200pt;}
.y1fe{bottom:225.994133pt;}
.y99{bottom:230.897067pt;}
.y29b{bottom:231.019333pt;}
.y21f{bottom:234.420667pt;}
.y154{bottom:234.863467pt;}
.yfe{bottom:234.948000pt;}
.y1e7{bottom:235.149600pt;}
.yd1{bottom:237.332800pt;}
.yfb{bottom:237.805600pt;}
.y236{bottom:238.456133pt;}
.y2b3{bottom:238.722267pt;}
.y183{bottom:239.234800pt;}
.y3b{bottom:239.323467pt;}
.y263{bottom:244.655867pt;}
.y1ca{bottom:244.891733pt;}
.y1a2{bottom:245.061867pt;}
.y24b{bottom:246.015200pt;}
.yb1{bottom:247.547867pt;}
.y79{bottom:249.080800pt;}
.y1bc{bottom:253.574267pt;}
.y98{bottom:256.230400pt;}
.y29a{bottom:256.815067pt;}
.y1fd{bottom:258.886533pt;}
.y100{bottom:258.974933pt;}
.y126{bottom:259.545333pt;}
.y1e6{bottom:260.482933pt;}
.yfc{bottom:262.245600pt;}
.yd0{bottom:262.666133pt;}
.y21e{bottom:263.533467pt;}
.y235{bottom:263.789467pt;}
.y182{bottom:264.568133pt;}
.y262{bottom:264.655867pt;}
.y2b2{bottom:264.754800pt;}
.y153{bottom:266.207333pt;}
.y1c9{bottom:270.225067pt;}
.y1a1{bottom:270.395200pt;}
.y24a{bottom:275.128000pt;}
.y3a{bottom:275.995467pt;}
.y1bb{bottom:278.907600pt;}
.y139{bottom:281.164267pt;}
.y97{bottom:281.563733pt;}
.y299{bottom:282.610933pt;}
.y1fc{bottom:284.219867pt;}
.y152{bottom:284.874000pt;}
.ycf{bottom:287.999467pt;}
.y181{bottom:289.901467pt;}
.y2b1{bottom:290.787200pt;}
.y234{bottom:292.902267pt;}
.y78{bottom:293.311733pt;}
.y1e5{bottom:293.375467pt;}
.yb0{bottom:295.558400pt;}
.y1a0{bottom:295.728533pt;}
.yf3{bottom:297.502133pt;}
.y261{bottom:298.341333pt;}
.y21d{bottom:300.205467pt;}
.y249{bottom:300.461333pt;}
.y39{bottom:301.328800pt;}
.y1ba{bottom:304.240933pt;}
.y96{bottom:306.897067pt;}
.y298{bottom:308.406800pt;}
.y1fb{bottom:309.553200pt;}
.y2b0{bottom:316.819733pt;}
.yce{bottom:317.112267pt;}
.yf2{bottom:317.502133pt;}
.y151{bottom:318.228800pt;}
.y77{bottom:318.645067pt;}
.y1e4{bottom:318.708800pt;}
.y138{bottom:320.604400pt;}
.y137{bottom:320.606933pt;}
.yaf{bottom:320.891733pt;}
.y19f{bottom:321.061867pt;}
.y233{bottom:322.015200pt;}
.y21c{bottom:325.538800pt;}
.y248{bottom:325.794667pt;}
.y180{bottom:326.573333pt;}
.y38{bottom:326.662133pt;}
.y8{bottom:328.637467pt;}
.y1b9{bottom:329.574267pt;}
.y95{bottom:332.230400pt;}
.y27e{bottom:333.028533pt;}
.y297{bottom:334.202667pt;}
.yf1{bottom:337.502133pt;}
.y260{bottom:339.916000pt;}
.y1fa{bottom:342.445600pt;}
.yae{bottom:346.225067pt;}
.y19e{bottom:346.395200pt;}
.y21b{bottom:350.872133pt;}
.y232{bottom:351.128000pt;}
.y76{bottom:351.537467pt;}
.y150{bottom:351.583733pt;}
.y1e3{bottom:351.601067pt;}
.y17f{bottom:351.906667pt;}
.y37{bottom:351.995467pt;}
.ycd{bottom:353.784133pt;}
.y7{bottom:354.670000pt;}
.y1b8{bottom:354.907600pt;}
.y2af{bottom:355.970933pt;}
.y94{bottom:357.563733pt;}
.y131{bottom:357.676000pt;}
.y27d{bottom:358.824400pt;}
.y296{bottom:359.998533pt;}
.y1f9{bottom:367.778933pt;}
.yad{bottom:371.558400pt;}
.y19d{bottom:371.728533pt;}
.y21a{bottom:376.205467pt;}
.y247{bottom:376.461333pt;}
.y75{bottom:376.870800pt;}
.y1e2{bottom:376.934400pt;}
.y17e{bottom:377.240000pt;}
.y36{bottom:377.328800pt;}
.ycc{bottom:379.117467pt;}
.yf0{bottom:379.969867pt;}
.y1b7{bottom:380.240933pt;}
.y6{bottom:380.702533pt;}
.y25f{bottom:381.490800pt;}
.y2ae{bottom:382.003467pt;}
.y93{bottom:382.897067pt;}
.y27c{bottom:384.620133pt;}
.y14f{bottom:384.938667pt;}
.y295{bottom:385.794400pt;}
.yac{bottom:396.891867pt;}
.y130{bottom:397.670800pt;}
.y1f8{bottom:400.671333pt;}
.y246{bottom:401.794667pt;}
.y17d{bottom:402.573333pt;}
.y35{bottom:402.662133pt;}
.yef{bottom:405.303200pt;}
.y219{bottom:405.318267pt;}
.y231{bottom:405.574267pt;}
.y5{bottom:406.734933pt;}
.y2ad{bottom:408.036000pt;}
.y92{bottom:408.230400pt;}
.y19c{bottom:408.400533pt;}
.y74{bottom:409.763200pt;}
.y1e1{bottom:409.826800pt;}
.y27b{bottom:411.112000pt;}
.y294{bottom:411.590133pt;}
.ycb{bottom:415.789467pt;}
.y1b6{bottom:416.912800pt;}
.y1b{bottom:417.354000pt;}
.y14e{bottom:418.293600pt;}
.y12f{bottom:423.004133pt;}
.y25e{bottom:423.065733pt;}
.y1f7{bottom:426.004667pt;}
.y245{bottom:427.128000pt;}
.y17c{bottom:427.906667pt;}
.y34{bottom:427.995467pt;}
.yee{bottom:430.636533pt;}
.y4{bottom:432.767467pt;}
.y91{bottom:433.563733pt;}
.y19b{bottom:433.733867pt;}
.y218{bottom:434.431200pt;}
.y230{bottom:434.687067pt;}
.y73{bottom:435.096533pt;}
.y1e0{bottom:435.160133pt;}
.y293{bottom:437.386000pt;}
.y57{bottom:439.334000pt;}
.yca{bottom:441.122800pt;}
.y1b5{bottom:442.246133pt;}
.y25c{bottom:443.853067pt;}
.y12e{bottom:448.337467pt;}
.y14d{bottom:451.648400pt;}
.y244{bottom:452.461333pt;}
.y17b{bottom:453.240000pt;}
.y33{bottom:453.328800pt;}
.y90{bottom:458.897067pt;}
.y19a{bottom:459.067200pt;}
.y22f{bottom:460.020400pt;}
.y1a{bottom:461.585067pt;}
.y292{bottom:463.181867pt;}
.y217{bottom:463.544000pt;}
.y25d{bottom:464.640400pt;}
.y56{bottom:464.667333pt;}
.yc9{bottom:466.456133pt;}
.y1b4{bottom:467.579467pt;}
.y1df{bottom:468.052533pt;}
.yed{bottom:470.200933pt;}
.y27a{bottom:470.829733pt;}
.y72{bottom:471.768400pt;}
.y3{bottom:471.918800pt;}
.y12d{bottom:473.670800pt;}
.y243{bottom:477.794667pt;}
.y17a{bottom:478.573333pt;}
.y32{bottom:478.662133pt;}
.y1c8{bottom:484.230400pt;}
.y199{bottom:484.400533pt;}
.y14c{bottom:485.003333pt;}
.y22e{bottom:485.353733pt;}
.yab{bottom:488.009867pt;}
.y216{bottom:488.877333pt;}
.y291{bottom:488.977733pt;}
.y55{bottom:490.000667pt;}
.y8f{bottom:491.789467pt;}
.y1b3{bottom:492.912800pt;}
.y1de{bottom:493.385867pt;}
.yec{bottom:495.996800pt;}
.y279{bottom:496.625467pt;}
.y2{bottom:497.951200pt;}
.y12c{bottom:499.004133pt;}
.yc8{bottom:503.128000pt;}
.y179{bottom:503.906667pt;}
.y19{bottom:505.816000pt;}
.y25b{bottom:506.215200pt;}
.y242{bottom:506.907600pt;}
.y31{bottom:507.774933pt;}
.y1f6{bottom:509.563733pt;}
.y198{bottom:509.733867pt;}
.y22d{bottom:510.687067pt;}
.y54{bottom:515.334000pt;}
.y71{bottom:515.999467pt;}
.y8e{bottom:517.122800pt;}
.y215{bottom:517.990133pt;}
.y1b2{bottom:518.246133pt;}
.y14b{bottom:518.358267pt;}
.y205{bottom:520.297067pt;}
.y1c7{bottom:520.902267pt;}
.yeb{bottom:521.792533pt;}
.y278{bottom:522.421333pt;}
.y290{bottom:522.553067pt;}
.y1{bottom:523.983733pt;}
.y12b{bottom:524.337467pt;}
.yaa{bottom:524.681867pt;}
.y1dd{bottom:526.278267pt;}
.yc7{bottom:528.461333pt;}
.y178{bottom:529.240000pt;}
.y2ac{bottom:531.112000pt;}
.y197{bottom:535.067200pt;}
.y22c{bottom:536.020400pt;}
.y53{bottom:540.667333pt;}
.y70{bottom:541.332800pt;}
.y8d{bottom:542.456133pt;}
.y214{bottom:543.323467pt;}
.y1b1{bottom:543.579467pt;}
.y30{bottom:544.446933pt;}
.y1c6{bottom:546.235600pt;}
.yea{bottom:547.588400pt;}
.y25a{bottom:547.790133pt;}
.y277{bottom:548.217200pt;}
.ya9{bottom:550.015200pt;}
.y18{bottom:550.046933pt;}
.y2ab{bottom:551.112000pt;}
.y1dc{bottom:551.611600pt;}
.y14a{bottom:551.713200pt;}
.y28f{bottom:551.908000pt;}
.yc6{bottom:553.794667pt;}
.y177{bottom:554.573333pt;}
.y12a{bottom:561.009333pt;}
.y22b{bottom:561.353733pt;}
.y196{bottom:564.180133pt;}
.y52{bottom:566.000667pt;}
.y1b0{bottom:568.912800pt;}
.y2f{bottom:569.780267pt;}
.y28e{bottom:570.574667pt;}
.y8c{bottom:571.568933pt;}
.y213{bottom:572.436400pt;}
.ye9{bottom:573.384267pt;}
.y276{bottom:574.013067pt;}
.ya8{bottom:575.348533pt;}
.y2aa{bottom:577.603867pt;}
.y6f{bottom:578.004667pt;}
.yc5{bottom:582.907600pt;}
.y176{bottom:583.686133pt;}
.y1db{bottom:584.504000pt;}
.y149{bottom:585.068000pt;}
.y22a{bottom:586.687067pt;}
.y259{bottom:589.364933pt;}
.y51{bottom:591.334000pt;}
.y195{bottom:591.744400pt;}
.ye8{bottom:593.384267pt;}
.y17{bottom:594.277867pt;}
.y2e{bottom:595.113600pt;}
.y1c5{bottom:596.902267pt;}
.y275{bottom:599.808933pt;}
.y1f5{bottom:600.681867pt;}
.y212{bottom:601.549200pt;}
.y6e{bottom:603.338000pt;}
.ya7{bottom:604.461333pt;}
.y106{bottom:605.100000pt;}
.y1af{bottom:605.584667pt;}
.y8b{bottom:608.240933pt;}
.y1da{bottom:609.837333pt;}
.y175{bottom:611.250533pt;}
.y229{bottom:612.020400pt;}
.y241{bottom:615.799867pt;}
.y50{bottom:616.667333pt;}
.y194{bottom:617.540267pt;}
.y148{bottom:618.422933pt;}
.yc4{bottom:619.579467pt;}
.y2d{bottom:620.446933pt;}
.y1c4{bottom:622.235600pt;}
.y274{bottom:625.604800pt;}
.y211{bottom:626.882533pt;}
.ye7{bottom:628.292933pt;}
.y28d{bottom:629.596267pt;}
.y173{bottom:629.917200pt;}
.y1ae{bottom:630.918000pt;}
.y258{bottom:630.939733pt;}
.ya6{bottom:633.574267pt;}
.y2a9{bottom:637.321467pt;}
.y8a{bottom:637.353733pt;}
.y16{bottom:638.508933pt;}
.y115{bottom:638.891229pt;}
.y114{bottom:639.969142pt;}
.y6d{bottom:640.009867pt;}
.y112{bottom:640.464400pt;}
.y110{bottom:641.251067pt;}
.y10d{bottom:641.843467pt;}
.y1d9{bottom:642.729733pt;}
.y193{bottom:643.336133pt;}
.yc3{bottom:644.912800pt;}
.y2c{bottom:645.780267pt;}
.y172{bottom:648.583867pt;}
.y28c{bottom:649.596267pt;}
.y147{bottom:651.777867pt;}
.y273{bottom:652.096533pt;}
.y210{bottom:652.215867pt;}
.y4f{bottom:653.339333pt;}
.ye6{bottom:653.626267pt;}
.y1ad{bottom:656.251333pt;}
.ya5{bottom:658.907600pt;}
.ye{bottom:661.376267pt;}
.y2a8{bottom:663.117333pt;}
.y6c{bottom:665.343200pt;}
.y89{bottom:666.466533pt;}
.y174{bottom:667.250533pt;}
.y1d8{bottom:668.063067pt;}
.y192{bottom:669.132000pt;}
.yc2{bottom:670.246133pt;}
.y146{bottom:670.444533pt;}
.y2b{bottom:671.113600pt;}
.y257{bottom:672.514533pt;}
.y28b{bottom:675.392133pt;}
.y20f{bottom:677.549200pt;}
.y4e{bottom:678.672667pt;}
.ye5{bottom:678.959600pt;}
.y1ac{bottom:681.584667pt;}
.y15{bottom:682.739867pt;}
.y116{bottom:684.026400pt;}
.ya4{bottom:688.020400pt;}
.y2a7{bottom:688.913067pt;}
.y11a{bottom:691.584973pt;}
.y1f4{bottom:691.800000pt;}
.y171{bottom:693.046400pt;}
.y11e{bottom:694.143493pt;}
.y191{bottom:694.927867pt;}
.y28a{bottom:695.392133pt;}
.y88{bottom:695.579467pt;}
.y2a{bottom:696.446933pt;}
.y145{bottom:700.019867pt;}
.y1d7{bottom:700.955467pt;}
.y6b{bottom:702.015200pt;}
.y16d{bottom:702.379733pt;}
.y20e{bottom:702.882533pt;}
.y4d{bottom:704.006000pt;}
.ye4{bottom:704.292933pt;}
.y1ab{bottom:706.918000pt;}
.y119{bottom:710.248573pt;}
.y170{bottom:711.713067pt;}
.y272{bottom:711.814133pt;}
.y11d{bottom:712.337413pt;}
.ya3{bottom:713.353733pt;}
.y256{bottom:714.089333pt;}
.y2a6{bottom:714.708933pt;}
.y1f3{bottom:717.133333pt;}
.y144{bottom:720.019867pt;}
.y122{bottom:720.150267pt;}
.y190{bottom:720.723600pt;}
.yc1{bottom:720.912800pt;}
.y16b{bottom:721.046400pt;}
.y289{bottom:721.187867pt;}
.y87{bottom:724.692400pt;}
.yb{bottom:725.485733pt;}
.y29{bottom:725.559733pt;}
.y1d6{bottom:726.288800pt;}
.y14{bottom:726.970800pt;}
.y6a{bottom:727.348533pt;}
.y4c{bottom:729.339333pt;}
.y16f{bottom:730.379733pt;}
.y11c{bottom:730.432453pt;}
.y20d{bottom:731.995467pt;}
.y1aa{bottom:732.251333pt;}
.ye3{bottom:733.405867pt;}
.y271{bottom:737.610000pt;}
.y11b{bottom:738.676573pt;}
.ya2{bottom:738.687067pt;}
.y117{bottom:738.688933pt;}
.y16c{bottom:739.713067pt;}
.y2a5{bottom:740.504800pt;}
.y288{bottom:741.187867pt;}
.y18f{bottom:746.519467pt;}
.y255{bottom:748.470667pt;}
.y16e{bottom:749.046400pt;}
.y86{bottom:750.025600pt;}
.y1d5{bottom:751.622133pt;}
.y4b{bottom:754.672667pt;}
.y143{bottom:754.928533pt;}
.y121{bottom:756.252493pt;}
.y123{bottom:756.268933pt;}
.yc0{bottom:757.584667pt;}
.ye2{bottom:760.970133pt;}
.y20c{bottom:761.108267pt;}
.y240{bottom:761.364267pt;}
.y28{bottom:762.231733pt;}
.y270{bottom:763.405733pt;}
.y69{bottom:764.020400pt;}
.y2a4{bottom:766.300667pt;}
.y287{bottom:766.983733pt;}
.y13{bottom:771.201867pt;}
.y18e{bottom:772.315333pt;}
.y118{bottom:774.223933pt;}
.y168{bottom:774.842267pt;}
.y1f2{bottom:775.358933pt;}
.y1d4{bottom:776.955467pt;}
.y85{bottom:779.138533pt;}
.y4a{bottom:780.006000pt;}
.y142{bottom:780.261867pt;}
.ybf{bottom:782.918000pt;}
.y165{bottom:786.180800pt;}
.ye1{bottom:786.766000pt;}
.y286{bottom:786.983733pt;}
.y27{bottom:787.565067pt;}
.y26f{bottom:789.201600pt;}
.y20b{bottom:790.221200pt;}
.y23f{bottom:790.477067pt;}
.y2a3{bottom:792.096533pt;}
.y124{bottom:792.387600pt;}
.ya1{bottom:793.133333pt;}
.y167{bottom:793.508933pt;}
.y18d{bottom:798.111200pt;}
.y1f1{bottom:800.692267pt;}
.y11f{bottom:802.095733pt;}
.y164{bottom:804.847467pt;}
.y49{bottom:805.339333pt;}
.y141{bottom:805.595200pt;}
.y68{bottom:808.251333pt;}
.y1d3{bottom:809.847867pt;}
.y254{bottom:812.020000pt;}
.y129{bottom:812.126000pt;}
.ye0{bottom:812.561867pt;}
.y26{bottom:812.898400pt;}
.y169{bottom:814.180800pt;}
.y26e{bottom:814.997467pt;}
.y12{bottom:815.432800pt;}
.y228{bottom:815.810400pt;}
.y2a2{bottom:817.892400pt;}
.y20a{bottom:819.334000pt;}
.ybe{bottom:819.590000pt;}
.y285{bottom:820.669067pt;}
.y163{bottom:823.514133pt;}
.y18c{bottom:823.907067pt;}
.y125{bottom:828.506267pt;}
.ya0{bottom:829.805200pt;}
.y120{bottom:830.523733pt;}
.y128{bottom:830.927600pt;}
.y140{bottom:830.928533pt;}
.y16a{bottom:832.847467pt;}
.y67{bottom:833.584667pt;}
.y1d2{bottom:835.181200pt;}
.y25{bottom:838.231733pt;}
.ydf{bottom:838.357600pt;}
.yf{bottom:840.294533pt;}
.y26d{bottom:840.793333pt;}
.y227{bottom:841.143733pt;}
.y48{bottom:842.011200pt;}
.y162{bottom:842.180800pt;}
.y2a1{bottom:843.688133pt;}
.y84{bottom:844.923333pt;}
.y253{bottom:845.479200pt;}
.y23e{bottom:848.702800pt;}
.y18b{bottom:849.702933pt;}
.y127{bottom:849.729067pt;}
.y209{bottom:856.006000pt;}
.y13f{bottom:856.261867pt;}
.y66{bottom:858.918000pt;}
.y161{bottom:860.847467pt;}
.y284{bottom:862.243867pt;}
.y24{bottom:863.565067pt;}
.yde{bottom:864.153467pt;}
.y226{bottom:866.477067pt;}
.y26c{bottom:866.589200pt;}
.y47{bottom:867.344533pt;}
.y1d1{bottom:868.073600pt;}
.y2a0{bottom:869.484000pt;}
.y83{bottom:870.256667pt;}
.y166{bottom:872.186000pt;}
.yd{bottom:874.345733pt;}
.y18a{bottom:876.194800pt;}
.y23d{bottom:877.815733pt;}
.y252{bottom:878.938533pt;}
.y208{bottom:881.339333pt;}
.y13e{bottom:881.595200pt;}
.y105{bottom:882.686533pt;}
.y23{bottom:888.898400pt;}
.ydd{bottom:889.949333pt;}
.y1f0{bottom:891.810400pt;}
.y26b{bottom:892.385067pt;}
.y46{bottom:892.677867pt;}
.y1d0{bottom:893.406933pt;}
.y29f{bottom:895.279867pt;}
.y65{bottom:895.590000pt;}
.y283{bottom:895.929200pt;}
.y160{bottom:897.982000pt;}
.y11{bottom:899.449867pt;}
.y104{bottom:902.686533pt;}
.y207{bottom:906.672667pt;}
.ybd{bottom:906.928533pt;}
.y251{bottom:912.397867pt;}
.y22{bottom:914.231733pt;}
.ydc{bottom:915.745200pt;}
.y282{bottom:915.929200pt;}
.y15e{bottom:916.648667pt;}
.y1ef{bottom:917.143733pt;}
.y45{bottom:918.011200pt;}
.y26a{bottom:918.180800pt;}
.y64{bottom:920.923333pt;}
.y103{bottom:922.686533pt;}
.y1cf{bottom:926.299200pt;}
.y29e{bottom:928.855200pt;}
.ybc{bottom:932.261867pt;}
.yc{bottom:934.890933pt;}
.y15f{bottom:935.315333pt;}
.y206{bottom:935.785467pt;}
.y21{bottom:939.565067pt;}
.ydb{bottom:941.541067pt;}
.y281{bottom:942.421067pt;}
.y204{bottom:942.477067pt;}
.y44{bottom:943.344533pt;}
.y269{bottom:943.976667pt;}
.y250{bottom:945.857200pt;}
.y63{bottom:946.256667pt;}
.y1ee{bottom:950.036133pt;}
.y1ce{bottom:951.632533pt;}
.ybb{bottom:957.595200pt;}
.y29d{bottom:958.210133pt;}
.y15d{bottom:961.111200pt;}
.y20{bottom:964.898400pt;}
.yda{bottom:967.336933pt;}
.y43{bottom:968.677867pt;}
.y268{bottom:969.772533pt;}
.y62{bottom:971.590000pt;}
.y82{bottom:975.369467pt;}
.y24f{bottom:976.180800pt;}
.y29c{bottom:976.876800pt;}
.yba{bottom:982.928533pt;}
.y1cd{bottom:984.524933pt;}
.y280{bottom:985.584667pt;}
.y15c{bottom:986.906933pt;}
.y1f{bottom:990.231733pt;}
.yd9{bottom:993.132667pt;}
.y42{bottom:994.011200pt;}
.y61{bottom:996.923333pt;}
.y1ed{bottom:1000.702800pt;}
.y267{bottom:1003.347867pt;}
.y81{bottom:1004.482400pt;}
.y15b{bottom:1005.573600pt;}
.yb9{bottom:1008.261867pt;}
.y1cc{bottom:1009.858267pt;}
.yd8{bottom:1018.928533pt;}
.y1e{bottom:1019.344533pt;}
.y27f{bottom:1022.256667pt;}
.y80{bottom:1029.815733pt;}
.y15a{bottom:1031.369467pt;}
.y266{bottom:1032.702800pt;}
.y60{bottom:1033.595200pt;}
.yd7{bottom:1038.928533pt;}
.y1cb{bottom:1046.530267pt;}
.y10{bottom:1046.939600pt;}
.y159{bottom:1051.369467pt;}
.y1d{bottom:1056.016400pt;}
.y5f{bottom:1058.928533pt;}
.h15{height:32.659224pt;}
.h16{height:32.964890pt;}
.h1d{height:33.639120pt;}
.h1e{height:33.953957pt;}
.hd{height:38.458333pt;}
.h4{height:41.829333pt;}
.h26{height:42.710938pt;}
.hf{height:42.739583pt;}
.h12{height:43.031250pt;}
.h1a{height:44.636016pt;}
.h13{height:48.151042pt;}
.h3{height:49.496270pt;}
.h19{height:49.595573pt;}
.h18{height:49.595574pt;}
.h10{height:52.593750pt;}
.he{height:52.880208pt;}
.hc{height:52.966146pt;}
.h28{height:53.266283pt;}
.h11{height:53.510417pt;}
.ha{height:64.645333pt;}
.hb{height:67.302083pt;}
.h1c{height:72.124656pt;}
.h23{height:80.072917pt;}
.h2{height:81.730480pt;}
.h25{height:89.927083pt;}
.h9{height:90.597291pt;}
.h20{height:106.807575pt;}
.h21{height:106.817708pt;}
.h1b{height:117.312816pt;}
.h24{height:117.406250pt;}
.h22{height:127.260417pt;}
.h7{height:236.366592pt;}
.h14{height:246.504000pt;}
.h8{height:248.812843pt;}
.h17{height:270.886667pt;}
.h1f{height:292.741333pt;}
.h27{height:367.399741pt;}
.h6{height:374.762564pt;}
.h5{height:407.689978pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:687.873333pt;}
.w3{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:5.970800pt;}
.x25{left:10.897200pt;}
.x2b{left:38.254667pt;}
.xb{left:48.000000pt;}
.xa{left:49.049333pt;}
.x14{left:52.913333pt;}
.xc{left:56.217200pt;}
.xd{left:57.635867pt;}
.xe{left:59.752267pt;}
.x9{left:61.919333pt;}
.x13{left:64.252000pt;}
.x37{left:66.523333pt;}
.x18{left:68.031467pt;}
.x52{left:71.204000pt;}
.x1a{left:75.590533pt;}
.x1c{left:79.914533pt;}
.x2c{left:90.819949pt;}
.x22{left:93.694800pt;}
.x76{left:96.481867pt;}
.x77{left:98.267733pt;}
.x7f{left:99.542667pt;}
.x26{left:100.882933pt;}
.x2d{left:103.133412pt;}
.x38{left:107.385333pt;}
.x29{left:109.242800pt;}
.x24{left:111.080933pt;}
.x41{left:117.001413pt;}
.x20{left:119.865200pt;}
.x4d{left:122.300533pt;}
.x46{left:132.737333pt;}
.x43{left:133.860453pt;}
.x23{left:141.227867pt;}
.x7e{left:152.903467pt;}
.x7b{left:159.311733pt;}
.x4c{left:162.575200pt;}
.x53{left:167.474000pt;}
.x2e{left:171.770289pt;}
.x5c{left:174.876667pt;}
.x2f{left:176.518935pt;}
.x5e{left:178.285600pt;}
.x7c{left:179.828800pt;}
.x6a{left:181.576000pt;}
.x74{left:182.613467pt;}
.x19{left:184.546800pt;}
.x21{left:186.566133pt;}
.x50{left:192.191733pt;}
.x72{left:195.738800pt;}
.x5f{left:201.373733pt;}
.x51{left:202.927467pt;}
.x71{left:211.072800pt;}
.x10{left:215.433067pt;}
.x5b{left:216.863600pt;}
.x2a{left:227.293733pt;}
.x7d{left:234.117200pt;}
.x5d{left:235.170533pt;}
.x79{left:245.027733pt;}
.x42{left:248.524173pt;}
.x64{left:249.646400pt;}
.x78{left:250.762533pt;}
.x73{left:254.013467pt;}
.x15{left:255.539200pt;}
.x39{left:261.835893pt;}
.x1b{left:279.407067pt;}
.x1e{left:284.214400pt;}
.x48{left:285.271200pt;}
.x47{left:289.708000pt;}
.x17{left:294.428933pt;}
.x16{left:296.960267pt;}
.x7a{left:306.022800pt;}
.x12{left:314.087733pt;}
.x75{left:318.948933pt;}
.x3b{left:328.641693pt;}
.xf{left:333.622400pt;}
.x30{left:353.608613pt;}
.x1f{left:366.248400pt;}
.x3a{left:368.675733pt;}
.x1d{left:372.662533pt;}
.x6b{left:377.077067pt;}
.x60{left:379.383200pt;}
.x3c{left:380.813253pt;}
.x66{left:383.768133pt;}
.x65{left:387.792533pt;}
.x28{left:392.049867pt;}
.x11{left:394.418133pt;}
.x67{left:396.609467pt;}
.x45{left:398.814267pt;}
.x32{left:409.505200pt;}
.x6c{left:418.417333pt;}
.x31{left:438.239600pt;}
.x3d{left:443.626773pt;}
.x54{left:464.077867pt;}
.x34{left:467.800267pt;}
.x3e{left:497.071413pt;}
.x6d{left:501.801467pt;}
.x68{left:503.188933pt;}
.x33{left:507.080667pt;}
.x49{left:509.571333pt;}
.x69{left:510.884800pt;}
.x61{left:515.434000pt;}
.x40{left:524.485893pt;}
.x85{left:537.629333pt;}
.x56{left:538.553600pt;}
.x6e{left:543.141733pt;}
.x55{left:548.068667pt;}
.x7{left:556.212133pt;}
.x3f{left:563.246853pt;}
.x80{left:566.926133pt;}
.x35{left:570.240933pt;}
.x82{left:574.550800pt;}
.x1{left:585.508800pt;}
.x4{left:593.133600pt;}
.x84{left:594.305333pt;}
.x4a{left:604.166400pt;}
.x2{left:610.960800pt;}
.x6{left:612.888000pt;}
.x4b{left:617.904267pt;}
.x27{left:620.584000pt;}
.x59{left:625.544133pt;}
.x70{left:626.526000pt;}
.x62{left:628.832133pt;}
.x6f{left:630.969600pt;}
.x83{left:635.549600pt;}
.x63{left:640.158400pt;}
.x81{left:645.906000pt;}
.x57{left:651.474933pt;}
.x5{left:654.132267pt;}
.x8{left:658.227333pt;}
.x3{left:664.488667pt;}
.x5a{left:668.643200pt;}
.x58{left:676.821467pt;}
.x36{left:677.915762pt;}
.x4f{left:705.255467pt;}
.x4e{left:713.032267pt;}
}




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