
    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_175a8b575f01d0de3ebed568.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_5103e7264317ba5de3210386.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_3725a74617ab95563efaf6d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.203000;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_621a22d79f1b93dc81fab1c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_4104eafcba0d2de6db75d371.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958000;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_fca490ad40dc09f2fd8d2001.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946000;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_6f8b54efaa2ea7f35216d170.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_58da65aa00de34079980c4ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_cce69f805f6cda1c1c2fccaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200885;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_c16b80ecd51c2c110e6c0470.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_815602e0c130e7029f747f68.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910000;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_ebe4124f7c042b1cb159aa07.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958000;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_a1c4a22e27db8f7eadc4f5bf.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.384000;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_5103e7264317ba5de3210386.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958000;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_3725a74617ab95563efaf6d5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958000;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_41214734256b084f14a551b9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_806cf4dee9ccdd0b037cb09a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_401eafaeebe2408d04dbde69.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.268000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.399963px;}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v8{vertical-align:-14.280029px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.280029px;}
.v3{vertical-align:18.227985px;}
.v2{vertical-align:20.399963px;}
.v7{vertical-align:44.981999px;}
.ls5b{letter-spacing:-4.284000px;}
.ls5d{letter-spacing:-4.116000px;}
.lsad{letter-spacing:-1.395000px;}
.lsba{letter-spacing:-1.350000px;}
.lsb1{letter-spacing:-1.215000px;}
.ls59{letter-spacing:-1.026000px;}
.ls90{letter-spacing:-0.972000px;}
.ls4f{letter-spacing:-0.918000px;}
.ls48{letter-spacing:-0.864000px;}
.ls7a{letter-spacing:-0.810000px;}
.ls58{letter-spacing:-0.756000px;}
.lsac{letter-spacing:-0.720000px;}
.ls46{letter-spacing:-0.702000px;}
.ls50{letter-spacing:-0.648000px;}
.ls27{letter-spacing:-0.594000px;}
.lsb4{letter-spacing:-0.585000px;}
.ls55{letter-spacing:-0.546000px;}
.ls4a{letter-spacing:-0.540000px;}
.lsb2{letter-spacing:-0.495000px;}
.ls28{letter-spacing:-0.486000px;}
.lsa7{letter-spacing:-0.450000px;}
.ls2b{letter-spacing:-0.432000px;}
.lsb9{letter-spacing:-0.405000px;}
.ls68{letter-spacing:-0.378000px;}
.lsb3{letter-spacing:-0.360000px;}
.ls52{letter-spacing:-0.336000px;}
.ls4d{letter-spacing:-0.324000px;}
.lsaa{letter-spacing:-0.315000px;}
.ls5c{letter-spacing:-0.294000px;}
.ls49{letter-spacing:-0.270000px;}
.ls7d{letter-spacing:-0.252000px;}
.ls8f{letter-spacing:-0.245700px;}
.lsab{letter-spacing:-0.225000px;}
.ls54{letter-spacing:-0.218400px;}
.ls4c{letter-spacing:-0.216000px;}
.ls53{letter-spacing:-0.210000px;}
.lsa9{letter-spacing:-0.180000px;}
.ls78{letter-spacing:-0.175500px;}
.ls24{letter-spacing:-0.162000px;}
.ls69{letter-spacing:-0.140400px;}
.lsaf{letter-spacing:-0.135000px;}
.ls5a{letter-spacing:-0.126000px;}
.ls4b{letter-spacing:-0.120000px;}
.ls21{letter-spacing:-0.108000px;}
.ls8e{letter-spacing:-0.105300px;}
.lsb6{letter-spacing:-0.090000px;}
.ls7b{letter-spacing:-0.070200px;}
.ls20{letter-spacing:-0.054000px;}
.lsae{letter-spacing:-0.045000px;}
.ls29{letter-spacing:-0.035100px;}
.ls1f{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000002px;}
.ls71{letter-spacing:0.000267px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013772px;}
.ls43{letter-spacing:0.016335px;}
.ls34{letter-spacing:0.021608px;}
.ls56{letter-spacing:0.032395px;}
.ls38{letter-spacing:0.032412px;}
.ls36{letter-spacing:0.032429px;}
.ls6e{letter-spacing:0.035098px;}
.lsd{letter-spacing:0.035100px;}
.ls9a{letter-spacing:0.045000px;}
.ls32{letter-spacing:0.054000px;}
.ls91{letter-spacing:0.060000px;}
.ls87{letter-spacing:0.064800px;}
.ls25{letter-spacing:0.070200px;}
.ls64{letter-spacing:0.070228px;}
.lsb5{letter-spacing:0.090000px;}
.ls8c{letter-spacing:0.097204px;}
.ls26{letter-spacing:0.105300px;}
.ls33{letter-spacing:0.107984px;}
.ls8d{letter-spacing:0.107999px;}
.ls7{letter-spacing:0.108000px;}
.ls37{letter-spacing:0.108001px;}
.ls73{letter-spacing:0.118799px;}
.ls85{letter-spacing:0.119998px;}
.ls84{letter-spacing:0.120000px;}
.lsa8{letter-spacing:0.135000px;}
.lsf{letter-spacing:0.140400px;}
.lse{letter-spacing:0.162000px;}
.lsa6{letter-spacing:0.170986px;}
.ls2a{letter-spacing:0.175500px;}
.ls9c{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.210598px;}
.ls8a{letter-spacing:0.210599px;}
.ls14{letter-spacing:0.210600px;}
.ls72{letter-spacing:0.215984px;}
.ls15{letter-spacing:0.216000px;}
.ls9e{letter-spacing:0.225000px;}
.ls3f{letter-spacing:0.232200px;}
.ls39{letter-spacing:0.243006px;}
.ls13{letter-spacing:0.245699px;}
.ls86{letter-spacing:0.259197px;}
.ls2e{letter-spacing:0.264541px;}
.ls81{letter-spacing:0.264578px;}
.ls18{letter-spacing:0.269999px;}
.ls19{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.270417px;}
.ls16{letter-spacing:0.275388px;}
.ls23{letter-spacing:0.280800px;}
.ls63{letter-spacing:0.286150px;}
.ls6f{letter-spacing:0.291592px;}
.ls99{letter-spacing:0.297000px;}
.ls98{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.313212px;}
.lsb0{letter-spacing:0.315000px;}
.ls22{letter-spacing:0.315900px;}
.ls67{letter-spacing:0.323998px;}
.ls30{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.328644px;}
.ls7f{letter-spacing:0.329389px;}
.ls6b{letter-spacing:0.340227px;}
.lsb7{letter-spacing:0.342036px;}
.ls6c{letter-spacing:0.351000px;}
.ls9f{letter-spacing:0.360000px;}
.ls70{letter-spacing:0.367182px;}
.ls3a{letter-spacing:0.367203px;}
.ls17{letter-spacing:0.367217px;}
.ls82{letter-spacing:0.372620px;}
.ls11{letter-spacing:0.377999px;}
.ls12{letter-spacing:0.378000px;}
.ls3b{letter-spacing:0.378001px;}
.ls79{letter-spacing:0.386100px;}
.lsa5{letter-spacing:0.405000px;}
.ls80{letter-spacing:0.405017px;}
.ls3d{letter-spacing:0.420000px;}
.ls3c{letter-spacing:0.420001px;}
.lsb{letter-spacing:0.432000px;}
.ls9d{letter-spacing:0.450000px;}
.ls7c{letter-spacing:0.456300px;}
.ls2c{letter-spacing:0.459000px;}
.ls8b{letter-spacing:0.464389px;}
.ls51{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.486000px;}
.lsa1{letter-spacing:0.495000px;}
.ls7e{letter-spacing:0.502249px;}
.ls1c{letter-spacing:0.510000px;}
.ls95{letter-spacing:0.512998px;}
.ls5{letter-spacing:0.526500px;}
.ls6{letter-spacing:0.533235px;}
.ls75{letter-spacing:0.539999px;}
.ls62{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.545423px;}
.ls97{letter-spacing:0.577808px;}
.ls65{letter-spacing:0.583203px;}
.lsa2{letter-spacing:0.585000px;}
.ls57{letter-spacing:0.594000px;}
.ls88{letter-spacing:0.600000px;}
.lsa0{letter-spacing:0.625554px;}
.ls9b{letter-spacing:0.630000px;}
.ls89{letter-spacing:0.637192px;}
.ls3e{letter-spacing:0.648000px;}
.lsa3{letter-spacing:0.675000px;}
.ls74{letter-spacing:0.680373px;}
.lsa{letter-spacing:0.691173px;}
.ls47{letter-spacing:0.702000px;}
.lsa4{letter-spacing:0.706456px;}
.lsc{letter-spacing:0.707398px;}
.ls61{letter-spacing:0.718202px;}
.lsb8{letter-spacing:0.720000px;}
.ls60{letter-spacing:0.755999px;}
.ls2f{letter-spacing:0.756000px;}
.ls1e{letter-spacing:0.765000px;}
.ls4{letter-spacing:0.810000px;}
.ls96{letter-spacing:0.837000px;}
.ls92{letter-spacing:0.863991px;}
.ls4e{letter-spacing:0.864000px;}
.ls31{letter-spacing:0.918000px;}
.ls94{letter-spacing:0.934238px;}
.ls6d{letter-spacing:0.972000px;}
.ls6a{letter-spacing:0.977382px;}
.ls83{letter-spacing:1.053068px;}
.ls5f{letter-spacing:1.096179px;}
.ls93{letter-spacing:1.101657px;}
.ls66{letter-spacing:1.279833px;}
.ls0{letter-spacing:2.592000px;}
.ls2d{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls5e{letter-spacing:14.741992px;}
.ls77{letter-spacing:72.702003px;}
.ls76{letter-spacing:78.875996px;}
.ls42{letter-spacing:110.715832px;}
.ls45{letter-spacing:124.785290px;}
.ls41{letter-spacing:165.799449px;}
.ls40{letter-spacing:177.785992px;}
.ls44{letter-spacing:231.586128px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws37{word-spacing:-14.700000px;}
.ws3d{word-spacing:-13.596000px;}
.ws8{word-spacing:-13.500000px;}
.ws94{word-spacing:-13.122000px;}
.ws80{word-spacing:-13.068000px;}
.ws45{word-spacing:-13.014000px;}
.ws72{word-spacing:-12.960000px;}
.ws9c{word-spacing:-12.906000px;}
.ws8f{word-spacing:-12.852000px;}
.ws84{word-spacing:-12.840000px;}
.ws3b{word-spacing:-12.798000px;}
.ws44{word-spacing:-12.780000px;}
.wse{word-spacing:-12.744000px;}
.ws8d{word-spacing:-12.717000px;}
.wsa{word-spacing:-12.690000px;}
.ws14{word-spacing:-12.636000px;}
.ws3c{word-spacing:-12.582000px;}
.ws3f{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws87{word-spacing:-12.474000px;}
.ws85{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws6{word-spacing:-12.312000px;}
.ws40{word-spacing:-12.258000px;}
.ws3e{word-spacing:-12.240000px;}
.ws12{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws7{word-spacing:-12.150000px;}
.ws3a{word-spacing:-12.096000px;}
.ws41{word-spacing:-12.042000px;}
.ws86{word-spacing:-11.988000px;}
.ws16{word-spacing:-11.934000px;}
.ws11{word-spacing:-11.880000px;}
.ws70{word-spacing:-11.826000px;}
.ws42{word-spacing:-11.772000px;}
.ws71{word-spacing:-11.718000px;}
.ws38{word-spacing:-11.664000px;}
.wsa0{word-spacing:-11.610000px;}
.ws91{word-spacing:-11.556000px;}
.ws39{word-spacing:-11.502000px;}
.ws43{word-spacing:-11.448000px;}
.ws9f{word-spacing:-11.394000px;}
.wsad{word-spacing:-10.305000px;}
.wsae{word-spacing:-10.215000px;}
.ws17{word-spacing:-10.200000px;}
.wsab{word-spacing:-10.125000px;}
.wsce{word-spacing:-10.080000px;}
.wsac{word-spacing:-9.855000px;}
.wsc1{word-spacing:-9.810000px;}
.wsb9{word-spacing:-9.675000px;}
.ws4d{word-spacing:-9.618000px;}
.ws51{word-spacing:-9.534000px;}
.ws75{word-spacing:-9.198000px;}
.ws4c{word-spacing:-9.114000px;}
.ws73{word-spacing:-9.072000px;}
.ws47{word-spacing:-8.904000px;}
.ws49{word-spacing:-8.568000px;}
.ws93{word-spacing:-8.424000px;}
.ws90{word-spacing:-8.353800px;}
.ws9{word-spacing:-8.283600px;}
.wsb{word-spacing:-8.248500px;}
.wsf{word-spacing:-8.213400px;}
.wsa1{word-spacing:-8.178300px;}
.ws15{word-spacing:-8.143200px;}
.ws10{word-spacing:-8.108100px;}
.wsd{word-spacing:-8.073000px;}
.wsc{word-spacing:-8.037900px;}
.ws9b{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws13{word-spacing:-7.932600px;}
.ws92{word-spacing:-7.897500px;}
.ws9d{word-spacing:-7.862400px;}
.ws88{word-spacing:-7.827300px;}
.ws8e{word-spacing:-7.792200px;}
.ws9e{word-spacing:-7.722000px;}
.ws6a{word-spacing:-5.508000px;}
.ws74{word-spacing:-4.830000px;}
.wsd6{word-spacing:-3.960000px;}
.ws1c{word-spacing:-3.840000px;}
.ws1e{word-spacing:-3.456000px;}
.ws1a{word-spacing:-3.276000px;}
.wsa9{word-spacing:-2.106000px;}
.ws7e{word-spacing:-1.890000px;}
.ws20{word-spacing:-1.836000px;}
.ws64{word-spacing:-1.800000px;}
.ws63{word-spacing:-1.782000px;}
.ws67{word-spacing:-1.728000px;}
.ws59{word-spacing:-1.674000px;}
.wsaa{word-spacing:-1.620000px;}
.wsc4{word-spacing:-1.575000px;}
.wsb6{word-spacing:-1.530000px;}
.ws82{word-spacing:-1.512000px;}
.ws7c{word-spacing:-1.458000px;}
.wsbc{word-spacing:-1.440000px;}
.ws2c{word-spacing:-1.404000px;}
.wsd7{word-spacing:-1.386000px;}
.ws69{word-spacing:-1.350000px;}
.wsa2{word-spacing:-1.296000px;}
.ws36{word-spacing:-1.275000px;}
.ws1b{word-spacing:-1.260000px;}
.ws2d{word-spacing:-1.242000px;}
.ws6f{word-spacing:-1.188000px;}
.wsd2{word-spacing:-1.170000px;}
.ws1d{word-spacing:-1.134000px;}
.wsc5{word-spacing:-1.125000px;}
.ws8a{word-spacing:-1.080000px;}
.wsb0{word-spacing:-1.035000px;}
.ws83{word-spacing:-1.026000px;}
.wsd4{word-spacing:-0.990000px;}
.ws24{word-spacing:-0.972000px;}
.ws7f{word-spacing:-0.966000px;}
.ws19{word-spacing:-0.960000px;}
.ws6e{word-spacing:-0.924000px;}
.ws7b{word-spacing:-0.918000px;}
.wsbf{word-spacing:-0.900000px;}
.ws7a{word-spacing:-0.864000px;}
.wsc0{word-spacing:-0.855000px;}
.ws8b{word-spacing:-0.840000px;}
.ws8c{word-spacing:-0.810000px;}
.ws35{word-spacing:-0.765000px;}
.ws5b{word-spacing:-0.756000px;}
.wscf{word-spacing:-0.720000px;}
.ws56{word-spacing:-0.702000px;}
.ws21{word-spacing:-0.648000px;}
.wsa5{word-spacing:-0.600000px;}
.ws28{word-spacing:-0.594000px;}
.wsd1{word-spacing:-0.585000px;}
.ws60{word-spacing:-0.540000px;}
.wsb5{word-spacing:-0.495000px;}
.ws31{word-spacing:-0.486000px;}
.ws6b{word-spacing:-0.480000px;}
.ws34{word-spacing:-0.459000px;}
.wsb3{word-spacing:-0.450000px;}
.ws61{word-spacing:-0.432000px;}
.ws6c{word-spacing:-0.420000px;}
.wsb8{word-spacing:-0.405000px;}
.ws2a{word-spacing:-0.378000px;}
.wscd{word-spacing:-0.360000px;}
.ws65{word-spacing:-0.324000px;}
.wsbd{word-spacing:-0.315000px;}
.ws32{word-spacing:-0.270000px;}
.ws2b{word-spacing:-0.245700px;}
.wsc7{word-spacing:-0.225000px;}
.ws2f{word-spacing:-0.216000px;}
.wsa7{word-spacing:-0.210600px;}
.wsbb{word-spacing:-0.180000px;}
.ws5d{word-spacing:-0.162000px;}
.wsd3{word-spacing:-0.135000px;}
.wsa4{word-spacing:-0.120000px;}
.ws23{word-spacing:-0.108000px;}
.ws29{word-spacing:-0.105300px;}
.ws27{word-spacing:-0.070200px;}
.wsa8{word-spacing:-0.060000px;}
.ws25{word-spacing:-0.054000px;}
.wsaf{word-spacing:-0.045000px;}
.ws18{word-spacing:0.000000px;}
.ws30{word-spacing:0.035100px;}
.wsb4{word-spacing:0.045000px;}
.ws22{word-spacing:0.054000px;}
.wsa3{word-spacing:0.060000px;}
.wsc9{word-spacing:0.090000px;}
.ws2e{word-spacing:0.108000px;}
.ws5e{word-spacing:0.120000px;}
.wsc6{word-spacing:0.135000px;}
.ws58{word-spacing:0.162000px;}
.wscb{word-spacing:0.180000px;}
.ws68{word-spacing:0.216000px;}
.wsc8{word-spacing:0.225000px;}
.ws9a{word-spacing:0.252000px;}
.ws62{word-spacing:0.270000px;}
.wsa6{word-spacing:0.300000px;}
.ws33{word-spacing:0.306000px;}
.wsba{word-spacing:0.315000px;}
.ws6d{word-spacing:0.324000px;}
.ws5c{word-spacing:0.378000px;}
.wsd5{word-spacing:0.405000px;}
.ws57{word-spacing:0.432000px;}
.wscc{word-spacing:0.450000px;}
.ws26{word-spacing:0.486000px;}
.wsc3{word-spacing:0.495000px;}
.ws7d{word-spacing:0.540000px;}
.wsb1{word-spacing:0.585000px;}
.ws81{word-spacing:0.594000px;}
.ws89{word-spacing:0.648000px;}
.ws5a{word-spacing:0.702000px;}
.wsca{word-spacing:0.720000px;}
.wsc2{word-spacing:0.765000px;}
.ws1f{word-spacing:0.810000px;}
.ws66{word-spacing:0.864000px;}
.wsd0{word-spacing:0.945000px;}
.ws5f{word-spacing:0.972000px;}
.wsb2{word-spacing:1.080000px;}
.wsd8{word-spacing:1.188000px;}
.wsbe{word-spacing:1.215000px;}
.wsd9{word-spacing:1.242000px;}
.ws99{word-spacing:1.296000px;}
.wsb7{word-spacing:1.395000px;}
.ws4f{word-spacing:58.337996px;}
.ws46{word-spacing:58.799992px;}
.ws98{word-spacing:62.202003px;}
.ws96{word-spacing:75.264003px;}
.ws4a{word-spacing:84.756009px;}
.ws4b{word-spacing:86.310005px;}
.ws95{word-spacing:86.734192px;}
.ws48{word-spacing:92.021962px;}
.ws52{word-spacing:94.163996px;}
.ws55{word-spacing:102.878071px;}
.ws50{word-spacing:103.088643px;}
.ws79{word-spacing:115.290002px;}
.ws54{word-spacing:116.948079px;}
.ws53{word-spacing:117.158101px;}
.ws4e{word-spacing:131.228016px;}
.ws97{word-spacing:211.385992px;}
.ws78{word-spacing:219.702009px;}
.ws76{word-spacing:231.503996px;}
.ws77{word-spacing:239.862009px;}
._1b{margin-left:-2015.622051px;}
._b{margin-left:-1273.817967px;}
._49{margin-left:-10.755000px;}
._46{margin-left:-9.495000px;}
._48{margin-left:-8.235000px;}
._3{margin-left:-7.200000px;}
._5{margin-left:-5.449193px;}
._1{margin-left:-3.660003px;}
._0{margin-left:-1.776011px;}
._4{width:1.400384px;}
._6{width:2.700396px;}
._1a{width:3.948000px;}
._2b{width:5.321604px;}
._43{width:6.366011px;}
._42{width:8.190000px;}
._45{width:9.990000px;}
._41{width:12.420000px;}
._44{width:13.680000px;}
._18{width:15.281992px;}
._17{width:16.357190px;}
._47{width:17.460001px;}
._9{width:35.321996px;}
._a{width:40.193990px;}
._2{width:43.133953px;}
._7{width:47.740846px;}
._8{width:49.389650px;}
._3d{width:58.515787px;}
._1d{width:63.041994px;}
._2f{width:73.584003px;}
._20{width:75.936002px;}
._33{width:78.875996px;}
._1e{width:79.884003px;}
._30{width:81.437996px;}
._2e{width:83.915994px;}
._2c{width:90.174009px;}
._2d{width:91.770006px;}
._11{width:103.697996px;}
._1c{width:106.498183px;}
._14{width:118.032151px;}
._13{width:119.531444px;}
._1f{width:123.269996px;}
._c{width:138.306009px;}
._12{width:139.691990px;}
._d{width:171.696005px;}
._23{width:223.355994px;}
._22{width:231.210006px;}
._24{width:233.184003px;}
._e{width:237.340844px;}
._16{width:238.936869px;}
._f{width:240.072005px;}
._15{width:241.204858px;}
._10{width:242.298004px;}
._21{width:249.396009px;}
._25{width:251.370006px;}
._26{width:253.344003px;}
._29{width:261.197996px;}
._27{width:281.357996px;}
._2a{width:301.517996px;}
._28{width:321.677997px;}
._19{width:771.006045px;}
._35{width:1186.086116px;}
._34{width:1395.306093px;}
._37{width:1446.774071px;}
._36{width:1459.356093px;}
._3f{width:1465.728082px;}
._38{width:1554.936082px;}
._3e{width:1583.088093px;}
._39{width:1608.678105px;}
._32{width:1611.015721px;}
._3b{width:1627.185721px;}
._3a{width:1689.348093px;}
._3c{width:1722.852082px;}
._40{width:1786.101709px;}
._31{width:1796.961125px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300001px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y2d{bottom:68.313899px;}
.y13e{bottom:68.551502px;}
.y81{bottom:70.734918px;}
.y90{bottom:70.981948px;}
.ye7{bottom:73.296298px;}
.y62{bottom:77.800801px;}
.ybe{bottom:82.674753px;}
.y2c{bottom:83.307899px;}
.y13d{bottom:83.557499px;}
.y80{bottom:85.733417px;}
.y8f{bottom:85.980448px;}
.y183{bottom:88.267512px;}
.ye6{bottom:88.294798px;}
.y61{bottom:92.799300px;}
.ybd{bottom:97.676254px;}
.y2b{bottom:98.307899px;}
.y13c{bottom:98.555999px;}
.y7f{bottom:100.731916px;}
.y8e{bottom:100.978947px;}
.y182{bottom:101.013762px;}
.ye5{bottom:103.296298px;}
.y60{bottom:107.797799px;}
.ybc{bottom:112.674753px;}
.y13b{bottom:113.554498px;}
.y181{bottom:113.760012px;}
.y7e{bottom:115.730415px;}
.y2a{bottom:117.636898px;}
.ye4{bottom:118.294798px;}
.y5f{bottom:122.796298px;}
.y180{bottom:126.506262px;}
.ybb{bottom:127.677755px;}
.y13a{bottom:128.552997px;}
.y7d{bottom:130.728915px;}
.ye3{bottom:133.300801px;}
.y5e{bottom:137.794798px;}
.y17f{bottom:139.252512px;}
.yba{bottom:142.676254px;}
.y139{bottom:143.551496px;}
.y7c{bottom:145.727414px;}
.ye2{bottom:148.299300px;}
.y17e{bottom:151.998762px;}
.y5d{bottom:152.794798px;}
.yb9{bottom:157.674753px;}
.y97{bottom:157.987963px;}
.y138{bottom:158.549995px;}
.y7b{bottom:160.725913px;}
.ye1{bottom:163.297799px;}
.y17d{bottom:164.745012px;}
.y5c{bottom:167.793297px;}
.yb8{bottom:172.673252px;}
.y96{bottom:172.986462px;}
.y29{bottom:174.685800px;}
.y7a{bottom:175.724412px;}
.y17c{bottom:177.491263px;}
.ye0{bottom:178.296298px;}
.y137{bottom:186.093593px;}
.yb7{bottom:187.673252px;}
.y95{bottom:187.984961px;}
.y28{bottom:189.685812px;}
.y17b{bottom:190.237513px;}
.y79{bottom:190.722911px;}
.ydf{bottom:193.294798px;}
.y1c1{bottom:196.306804px;}
.y5b{bottom:200.812830px;}
.y136{bottom:201.092092px;}
.y94{bottom:202.983461px;}
.y17a{bottom:202.983763px;}
.y27{bottom:204.687313px;}
.y78{bottom:205.721410px;}
.yde{bottom:208.296298px;}
.y1c0{bottom:211.305303px;}
.y179{bottom:215.730013px;}
.y5a{bottom:215.811329px;}
.y135{bottom:216.092092px;}
.yb6{bottom:216.808653px;}
.y93{bottom:217.981960px;}
.y26{bottom:219.685812px;}
.y77{bottom:220.719910px;}
.ydd{bottom:223.294798px;}
.y1bf{bottom:226.303802px;}
.y178{bottom:228.476263px;}
.y59{bottom:230.809829px;}
.y134{bottom:231.093593px;}
.yb5{bottom:231.807152px;}
.y92{bottom:232.980459px;}
.y25{bottom:234.687313px;}
.y76{bottom:235.718409px;}
.ydc{bottom:238.294798px;}
.y177{bottom:241.222513px;}
.y1be{bottom:241.302302px;}
.y58{bottom:245.808328px;}
.y133{bottom:246.092092px;}
.yb4{bottom:246.805651px;}
.y91{bottom:247.978958px;}
.y24{bottom:249.685812px;}
.y75{bottom:250.716908px;}
.ydb{bottom:253.297799px;}
.y176{bottom:253.968763px;}
.y1bd{bottom:256.300801px;}
.y57{bottom:260.806827px;}
.y132{bottom:261.090591px;}
.yb3{bottom:261.804150px;}
.y23{bottom:264.685812px;}
.y74{bottom:265.715407px;}
.y175{bottom:266.715013px;}
.yda{bottom:268.296298px;}
.y1bc{bottom:271.299300px;}
.y56{bottom:275.805326px;}
.yb2{bottom:276.802649px;}
.y174{bottom:279.461263px;}
.y22{bottom:279.685812px;}
.y73{bottom:280.713906px;}
.yd9{bottom:283.294798px;}
.y1bb{bottom:286.297799px;}
.y131{bottom:288.632551px;}
.y55{bottom:290.803825px;}
.yb1{bottom:291.801149px;}
.y173{bottom:292.207514px;}
.y21{bottom:294.685812px;}
.y72{bottom:295.712406px;}
.yd8{bottom:298.296298px;}
.y1ba{bottom:301.296298px;}
.y130{bottom:303.632551px;}
.y172{bottom:304.953764px;}
.y54{bottom:305.802325px;}
.yb0{bottom:306.799648px;}
.y20{bottom:309.685812px;}
.y71{bottom:310.710905px;}
.yd7{bottom:313.294798px;}
.y1b9{bottom:316.294798px;}
.y171{bottom:317.700014px;}
.y12f{bottom:318.634052px;}
.y53{bottom:320.800824px;}
.yaf{bottom:321.798147px;}
.y1f{bottom:324.685812px;}
.y70{bottom:325.709404px;}
.yd6{bottom:328.294798px;}
.y170{bottom:330.446264px;}
.y1b8{bottom:331.293297px;}
.y12e{bottom:333.632551px;}
.y52{bottom:335.799323px;}
.yae{bottom:336.796646px;}
.y1e{bottom:339.688813px;}
.y16f{bottom:343.192514px;}
.yd5{bottom:343.303825px;}
.y12d{bottom:348.632551px;}
.y51{bottom:350.797822px;}
.y1b7{bottom:353.047822px;}
.y1d{bottom:354.687313px;}
.y16e{bottom:355.938764px;}
.yd4{bottom:358.302325px;}
.y12c{bottom:363.632551px;}
.y50{bottom:365.796321px;}
.yad{bottom:365.931898px;}
.y1b6{bottom:368.046321px;}
.y16d{bottom:368.685014px;}
.y1c{bottom:369.685812px;}
.yd3{bottom:373.300824px;}
.y8d{bottom:378.209404px;}
.y12b{bottom:378.631050px;}
.y4f{bottom:380.794821px;}
.yac{bottom:380.930397px;}
.y16c{bottom:381.431264px;}
.y1b{bottom:384.685812px;}
.yd2{bottom:388.299323px;}
.y1b5{bottom:389.794821px;}
.y16b{bottom:394.177514px;}
.y4e{bottom:395.793320px;}
.yab{bottom:395.928896px;}
.y1a{bottom:399.685812px;}
.yd1{bottom:403.297822px;}
.y12a{bottom:406.174648px;}
.y16a{bottom:406.923765px;}
.y8c{bottom:408.384881px;}
.yaa{bottom:410.927395px;}
.y1b4{bottom:411.543320px;}
.y19{bottom:414.687313px;}
.yd0{bottom:418.296321px;}
.y169{bottom:419.670015px;}
.y129{bottom:421.173147px;}
.y8b{bottom:425.825381px;}
.ya9{bottom:425.925895px;}
.y1b3{bottom:426.543320px;}
.y4d{bottom:428.799323px;}
.y18{bottom:429.685812px;}
.y168{bottom:432.416265px;}
.ycf{bottom:433.294821px;}
.y128{bottom:436.173147px;}
.ya8{bottom:440.924394px;}
.y8a{bottom:443.265881px;}
.y4c{bottom:443.797822px;}
.y17{bottom:444.717311px;}
.y167{bottom:445.162515px;}
.yce{bottom:448.296321px;}
.y127{bottom:451.173147px;}
.y1b2{bottom:453.546321px;}
.ya7{bottom:455.922893px;}
.y166{bottom:457.908765px;}
.y4b{bottom:458.796321px;}
.y89{bottom:460.706381px;}
.ycd{bottom:463.294821px;}
.y126{bottom:466.174648px;}
.y1b1{bottom:468.544821px;}
.y165{bottom:470.655015px;}
.ya6{bottom:470.921392px;}
.y4a{bottom:473.794821px;}
.y87{bottom:478.146881px;}
.ycc{bottom:478.297822px;}
.y125{bottom:481.173147px;}
.y164{bottom:483.401265px;}
.y1b0{bottom:483.543320px;}
.ya5{bottom:485.919891px;}
.y49{bottom:488.794821px;}
.y16{bottom:491.967311px;}
.ycb{bottom:493.296321px;}
.y88{bottom:495.587381px;}
.y163{bottom:496.147515px;}
.y124{bottom:496.176149px;}
.y1af{bottom:498.543320px;}
.y48{bottom:503.794821px;}
.yca{bottom:508.294821px;}
.y15{bottom:508.464311px;}
.y162{bottom:508.893765px;}
.y123{bottom:511.174648px;}
.ya4{bottom:515.061329px;}
.y47{bottom:518.802325px;}
.y161{bottom:521.640016px;}
.yc9{bottom:523.294821px;}
.y14{bottom:524.961311px;}
.y1ae{bottom:525.552325px;}
.y122{bottom:526.173147px;}
.ya3{bottom:530.059829px;}
.y46{bottom:533.800824px;}
.y160{bottom:534.386266px;}
.yc8{bottom:538.297822px;}
.y1ad{bottom:540.550824px;}
.y121{bottom:541.171646px;}
.y13{bottom:541.458311px;}
.ya2{bottom:545.058328px;}
.y15f{bottom:547.132516px;}
.y45{bottom:548.799323px;}
.yc7{bottom:553.296321px;}
.y86{bottom:554.644965px;}
.y1ac{bottom:555.549323px;}
.y12{bottom:557.955311px;}
.y15e{bottom:559.878766px;}
.ya1{bottom:560.056827px;}
.y44{bottom:563.797822px;}
.yc6{bottom:568.294821px;}
.y120{bottom:568.719586px;}
.y85{bottom:569.643464px;}
.y1ab{bottom:570.547822px;}
.y15d{bottom:572.625016px;}
.y11{bottom:574.452311px;}
.ya0{bottom:575.055326px;}
.y43{bottom:578.796321px;}
.yc5{bottom:583.297822px;}
.y11f{bottom:583.718085px;}
.y84{bottom:584.641963px;}
.y15c{bottom:585.371266px;}
.y1aa{bottom:585.546321px;}
.y9f{bottom:590.053825px;}
.y10{bottom:590.949311px;}
.y42{bottom:593.794821px;}
.y15b{bottom:598.117516px;}
.yc4{bottom:598.296321px;}
.y11e{bottom:598.716584px;}
.y83{bottom:599.640463px;}
.y1a9{bottom:600.544821px;}
.y9e{bottom:605.052325px;}
.yf{bottom:607.446311px;}
.y41{bottom:608.793320px;}
.y15a{bottom:610.863766px;}
.yc3{bottom:613.294821px;}
.y11d{bottom:613.715084px;}
.y82{bottom:614.638962px;}
.y1a8{bottom:615.543320px;}
.y9d{bottom:620.050824px;}
.y159{bottom:623.610017px;}
.y40{bottom:623.793320px;}
.ye{bottom:623.943311px;}
.yc2{bottom:628.294821px;}
.y11c{bottom:628.713583px;}
.y1a7{bottom:630.543320px;}
.y9c{bottom:635.049323px;}
.y158{bottom:636.356267px;}
.yd{bottom:640.440311px;}
.yc1{bottom:643.293320px;}
.y11b{bottom:643.713583px;}
.y157{bottom:649.102517px;}
.y9b{bottom:650.047822px;}
.y3f{bottom:656.802325px;}
.yc{bottom:656.937311px;}
.y1a6{bottom:657.670770px;}
.y11a{bottom:658.713583px;}
.y156{bottom:661.848767px;}
.y9a{bottom:665.046321px;}
.y1a5{bottom:670.417020px;}
.y3e{bottom:671.800824px;}
.yb{bottom:673.434311px;}
.y119{bottom:673.713583px;}
.y155{bottom:674.595017px;}
.y99{bottom:680.044821px;}
.y1a4{bottom:683.163270px;}
.y3d{bottom:686.799323px;}
.y154{bottom:687.341267px;}
.y118{bottom:688.716584px;}
.y98{bottom:695.043320px;}
.y1a3{bottom:695.909520px;}
.yfe{bottom:697.480820px;}
.y153{bottom:700.087517px;}
.y3c{bottom:701.797822px;}
.y9{bottom:703.434311px;}
.y117{bottom:703.715084px;}
.ya{bottom:708.534302px;}
.y1a2{bottom:708.655771px;}
.y152{bottom:712.833767px;}
.y3b{bottom:716.796321px;}
.y116{bottom:718.713583px;}
.y1a1{bottom:721.402021px;}
.y151{bottom:725.580017px;}
.y3a{bottom:731.794821px;}
.yfd{bottom:732.112772px;}
.y115{bottom:733.712082px;}
.y1a0{bottom:734.148271px;}
.y8{bottom:736.410259px;}
.y150{bottom:738.326268px;}
.y39{bottom:746.796276px;}
.y19f{bottom:746.894521px;}
.y114{bottom:748.712082px;}
.yfc{bottom:749.553272px;}
.y14f{bottom:751.072518px;}
.yc0{bottom:751.560461px;}
.y30{bottom:757.145396px;}
.y19e{bottom:759.640771px;}
.y38{bottom:761.794775px;}
.y14e{bottom:763.818768px;}
.ybf{bottom:766.558960px;}
.yfb{bottom:766.993772px;}
.y19d{bottom:772.387021px;}
.y113{bottom:776.258658px;}
.y14d{bottom:776.565018px;}
.y37{bottom:776.797776px;}
.y2f{bottom:778.144646px;}
.y7{bottom:781.416260px;}
.yfa{bottom:784.434272px;}
.y19c{bottom:785.133271px;}
.y14c{bottom:789.311268px;}
.y112{bottom:791.257157px;}
.y36{bottom:791.796276px;}
.y19b{bottom:797.879521px;}
.y2e{bottom:799.143895px;}
.yf9{bottom:801.874773px;}
.y14b{bottom:802.057518px;}
.y111{bottom:806.255657px;}
.y35{bottom:806.794775px;}
.y19a{bottom:810.625771px;}
.y14a{bottom:814.803768px;}
.yf8{bottom:819.315273px;}
.y110{bottom:821.254156px;}
.y34{bottom:821.794775px;}
.y199{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.y149{bottom:827.550018px;}
.y198{bottom:836.118272px;}
.y10f{bottom:836.252655px;}
.yf7{bottom:836.755773px;}
.y33{bottom:836.793274px;}
.y148{bottom:840.300018px;}
.y197{bottom:848.864522px;}
.y10e{bottom:851.252655px;}
.yf6{bottom:854.196273px;}
.y196{bottom:861.610772px;}
.y5{bottom:871.428264px;}
.yf5{bottom:871.636773px;}
.y147{bottom:873.131104px;}
.y195{bottom:874.357022px;}
.y10d{bottom:878.794775px;}
.y194{bottom:887.103272px;}
.yf4{bottom:889.077273px;}
.y10c{bottom:893.797776px;}
.y6f{bottom:896.232275px;}
.y193{bottom:899.849522px;}
.y146{bottom:905.963690px;}
.yf3{bottom:906.517773px;}
.y10b{bottom:908.796276px;}
.y6e{bottom:911.230774px;}
.y192{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y145{bottom:920.962189px;}
.y10a{bottom:923.794775px;}
.yf2{bottom:923.958273px;}
.y191{bottom:925.342022px;}
.y31{bottom:926.409576px;}
.y190{bottom:938.088273px;}
.y109{bottom:938.797776px;}
.yf1{bottom:941.398773px;}
.y6d{bottom:941.415274px;}
.y18f{bottom:950.834523px;}
.y108{bottom:953.796276px;}
.y144{bottom:953.800778px;}
.yf0{bottom:958.839273px;}
.y6c{bottom:958.852774px;}
.y18e{bottom:963.580773px;}
.y107{bottom:968.794775px;}
.y143{bottom:968.799277px;}
.yef{bottom:976.279774px;}
.y6b{bottom:976.290274px;}
.y18d{bottom:976.327023px;}
.y142{bottom:983.797776px;}
.y106{bottom:983.799277px;}
.y18c{bottom:989.073273px;}
.yee{bottom:993.720274px;}
.y6a{bottom:993.727774px;}
.y141{bottom:998.796276px;}
.y105{bottom:998.797776px;}
.y18b{bottom:1001.819523px;}
.yed{bottom:1011.160774px;}
.y69{bottom:1011.165274px;}
.y140{bottom:1013.794775px;}
.y104{bottom:1013.796276px;}
.y18a{bottom:1014.565773px;}
.y189{bottom:1027.312023px;}
.yec{bottom:1028.601274px;}
.y68{bottom:1028.602774px;}
.y103{bottom:1028.794775px;}
.y188{bottom:1040.058273px;}
.y102{bottom:1043.794775px;}
.y67{bottom:1046.040275px;}
.yeb{bottom:1046.041774px;}
.y187{bottom:1052.804524px;}
.y101{bottom:1058.794775px;}
.y13f{bottom:1058.796276px;}
.y63{bottom:1063.480774px;}
.y66{bottom:1063.480775px;}
.yea{bottom:1063.482274px;}
.y186{bottom:1065.550774px;}
.y100{bottom:1073.794775px;}
.y185{bottom:1078.297024px;}
.y65{bottom:1080.921275px;}
.ye9{bottom:1080.922774px;}
.yff{bottom:1088.793274px;}
.y184{bottom:1091.043274px;}
.y64{bottom:1092.166775px;}
.ye8{bottom:1092.168274px;}
.y32{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.he{height:23.842749px;}
.h7{height:28.050293px;}
.h11{height:35.394000px;}
.h10{height:36.681152px;}
.h8{height:38.826000px;}
.h9{height:38.838867px;}
.hf{height:41.158746px;}
.h1a{height:41.538000px;}
.h16{height:42.084000px;}
.h17{height:42.096000px;}
.h14{height:43.008000px;}
.h2{height:43.140000px;}
.h19{height:43.344000px;}
.h4{height:44.233154px;}
.h1e{height:44.505000px;}
.h1c{height:45.090000px;}
.h3{height:45.744000px;}
.h1d{height:46.080000px;}
.h13{height:47.454000px;}
.ha{height:53.406000px;}
.h1b{height:54.089990px;}
.hc{height:54.095994px;}
.hd{height:54.101997px;}
.hb{height:54.108000px;}
.h18{height:55.296000px;}
.h12{height:77.652000px;}
.h15{height:87.989999px;}
.h6{height:110.292000px;}
.h5{height:112.164000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:14.081671px;}
.x2{left:61.191450px;}
.x9{left:140.952747px;}
.x12{left:143.242195px;}
.x4{left:233.456406px;}
.x13{left:234.554855px;}
.xa{left:238.143906px;}
.x7{left:251.450854px;}
.xf{left:288.564905px;}
.x14{left:300.594589px;}
.x5{left:363.124947px;}
.xb{left:377.205289px;}
.xc{left:446.736291px;}
.xd{left:516.834292px;}
.x3{left:584.586594px;}
.xe{left:587.488793px;}
.x6{left:643.167023px;}
.x10{left:771.249918px;}
.x11{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v8{vertical-align:-12.693359pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.693359pt;}
.v3{vertical-align:16.202654pt;}
.v2{vertical-align:18.133301pt;}
.v7{vertical-align:39.983999pt;}
.ls5b{letter-spacing:-3.808000pt;}
.ls5d{letter-spacing:-3.658667pt;}
.lsad{letter-spacing:-1.240000pt;}
.lsba{letter-spacing:-1.200000pt;}
.lsb1{letter-spacing:-1.080000pt;}
.ls59{letter-spacing:-0.912000pt;}
.ls90{letter-spacing:-0.864000pt;}
.ls4f{letter-spacing:-0.816000pt;}
.ls48{letter-spacing:-0.768000pt;}
.ls7a{letter-spacing:-0.720000pt;}
.ls58{letter-spacing:-0.672000pt;}
.lsac{letter-spacing:-0.640000pt;}
.ls46{letter-spacing:-0.624000pt;}
.ls50{letter-spacing:-0.576000pt;}
.ls27{letter-spacing:-0.528000pt;}
.lsb4{letter-spacing:-0.520000pt;}
.ls55{letter-spacing:-0.485333pt;}
.ls4a{letter-spacing:-0.480000pt;}
.lsb2{letter-spacing:-0.440000pt;}
.ls28{letter-spacing:-0.432000pt;}
.lsa7{letter-spacing:-0.400000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.lsb9{letter-spacing:-0.360000pt;}
.ls68{letter-spacing:-0.336000pt;}
.lsb3{letter-spacing:-0.320000pt;}
.ls52{letter-spacing:-0.298667pt;}
.ls4d{letter-spacing:-0.288000pt;}
.lsaa{letter-spacing:-0.280000pt;}
.ls5c{letter-spacing:-0.261333pt;}
.ls49{letter-spacing:-0.240000pt;}
.ls7d{letter-spacing:-0.224000pt;}
.ls8f{letter-spacing:-0.218400pt;}
.lsab{letter-spacing:-0.200000pt;}
.ls54{letter-spacing:-0.194133pt;}
.ls4c{letter-spacing:-0.192000pt;}
.ls53{letter-spacing:-0.186667pt;}
.lsa9{letter-spacing:-0.160000pt;}
.ls78{letter-spacing:-0.156000pt;}
.ls24{letter-spacing:-0.144000pt;}
.ls69{letter-spacing:-0.124800pt;}
.lsaf{letter-spacing:-0.120000pt;}
.ls5a{letter-spacing:-0.112000pt;}
.ls4b{letter-spacing:-0.106667pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls8e{letter-spacing:-0.093600pt;}
.lsb6{letter-spacing:-0.080000pt;}
.ls7b{letter-spacing:-0.062400pt;}
.ls20{letter-spacing:-0.048000pt;}
.lsae{letter-spacing:-0.040000pt;}
.ls29{letter-spacing:-0.031200pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000001pt;}
.ls71{letter-spacing:0.000237pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012242pt;}
.ls43{letter-spacing:0.014520pt;}
.ls34{letter-spacing:0.019207pt;}
.ls56{letter-spacing:0.028795pt;}
.ls38{letter-spacing:0.028811pt;}
.ls36{letter-spacing:0.028826pt;}
.ls6e{letter-spacing:0.031198pt;}
.lsd{letter-spacing:0.031200pt;}
.ls9a{letter-spacing:0.040000pt;}
.ls32{letter-spacing:0.048000pt;}
.ls91{letter-spacing:0.053333pt;}
.ls87{letter-spacing:0.057600pt;}
.ls25{letter-spacing:0.062400pt;}
.ls64{letter-spacing:0.062424pt;}
.lsb5{letter-spacing:0.080000pt;}
.ls8c{letter-spacing:0.086404pt;}
.ls26{letter-spacing:0.093600pt;}
.ls33{letter-spacing:0.095986pt;}
.ls8d{letter-spacing:0.095999pt;}
.ls7{letter-spacing:0.096000pt;}
.ls37{letter-spacing:0.096001pt;}
.ls73{letter-spacing:0.105599pt;}
.ls85{letter-spacing:0.106665pt;}
.ls84{letter-spacing:0.106667pt;}
.lsa8{letter-spacing:0.120000pt;}
.lsf{letter-spacing:0.124800pt;}
.lse{letter-spacing:0.144000pt;}
.lsa6{letter-spacing:0.151988pt;}
.ls2a{letter-spacing:0.156000pt;}
.ls9c{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.187198pt;}
.ls8a{letter-spacing:0.187199pt;}
.ls14{letter-spacing:0.187200pt;}
.ls72{letter-spacing:0.191986pt;}
.ls15{letter-spacing:0.192000pt;}
.ls9e{letter-spacing:0.200000pt;}
.ls3f{letter-spacing:0.206400pt;}
.ls39{letter-spacing:0.216006pt;}
.ls13{letter-spacing:0.218399pt;}
.ls86{letter-spacing:0.230397pt;}
.ls2e{letter-spacing:0.235147pt;}
.ls81{letter-spacing:0.235181pt;}
.ls18{letter-spacing:0.239999pt;}
.ls19{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.240371pt;}
.ls16{letter-spacing:0.244789pt;}
.ls23{letter-spacing:0.249600pt;}
.ls63{letter-spacing:0.254356pt;}
.ls6f{letter-spacing:0.259193pt;}
.ls99{letter-spacing:0.264000pt;}
.ls98{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.278411pt;}
.lsb0{letter-spacing:0.280000pt;}
.ls22{letter-spacing:0.280800pt;}
.ls67{letter-spacing:0.287999pt;}
.ls30{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.292128pt;}
.ls7f{letter-spacing:0.292790pt;}
.ls6b{letter-spacing:0.302424pt;}
.lsb7{letter-spacing:0.304032pt;}
.ls6c{letter-spacing:0.312000pt;}
.ls9f{letter-spacing:0.320000pt;}
.ls70{letter-spacing:0.326384pt;}
.ls3a{letter-spacing:0.326403pt;}
.ls17{letter-spacing:0.326415pt;}
.ls82{letter-spacing:0.331218pt;}
.ls11{letter-spacing:0.335999pt;}
.ls12{letter-spacing:0.336000pt;}
.ls3b{letter-spacing:0.336001pt;}
.ls79{letter-spacing:0.343200pt;}
.lsa5{letter-spacing:0.360000pt;}
.ls80{letter-spacing:0.360015pt;}
.ls3d{letter-spacing:0.373333pt;}
.ls3c{letter-spacing:0.373334pt;}
.lsb{letter-spacing:0.384000pt;}
.ls9d{letter-spacing:0.400000pt;}
.ls7c{letter-spacing:0.405600pt;}
.ls2c{letter-spacing:0.408000pt;}
.ls8b{letter-spacing:0.412790pt;}
.ls51{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.432000pt;}
.lsa1{letter-spacing:0.440000pt;}
.ls7e{letter-spacing:0.446444pt;}
.ls1c{letter-spacing:0.453333pt;}
.ls95{letter-spacing:0.455998pt;}
.ls5{letter-spacing:0.468000pt;}
.ls6{letter-spacing:0.473987pt;}
.ls75{letter-spacing:0.479999pt;}
.ls62{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.484820pt;}
.ls97{letter-spacing:0.513607pt;}
.ls65{letter-spacing:0.518403pt;}
.lsa2{letter-spacing:0.520000pt;}
.ls57{letter-spacing:0.528000pt;}
.ls88{letter-spacing:0.533333pt;}
.lsa0{letter-spacing:0.556048pt;}
.ls9b{letter-spacing:0.560000pt;}
.ls89{letter-spacing:0.566393pt;}
.ls3e{letter-spacing:0.576000pt;}
.lsa3{letter-spacing:0.600000pt;}
.ls74{letter-spacing:0.604776pt;}
.lsa{letter-spacing:0.614376pt;}
.ls47{letter-spacing:0.624000pt;}
.lsa4{letter-spacing:0.627961pt;}
.lsc{letter-spacing:0.628798pt;}
.ls61{letter-spacing:0.638402pt;}
.lsb8{letter-spacing:0.640000pt;}
.ls60{letter-spacing:0.671999pt;}
.ls2f{letter-spacing:0.672000pt;}
.ls1e{letter-spacing:0.680000pt;}
.ls4{letter-spacing:0.720000pt;}
.ls96{letter-spacing:0.744000pt;}
.ls92{letter-spacing:0.767992pt;}
.ls4e{letter-spacing:0.768000pt;}
.ls31{letter-spacing:0.816000pt;}
.ls94{letter-spacing:0.830434pt;}
.ls6d{letter-spacing:0.864000pt;}
.ls6a{letter-spacing:0.868784pt;}
.ls83{letter-spacing:0.936060pt;}
.ls5f{letter-spacing:0.974381pt;}
.ls93{letter-spacing:0.979251pt;}
.ls66{letter-spacing:1.137629pt;}
.ls0{letter-spacing:2.304000pt;}
.ls2d{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls5e{letter-spacing:13.103993pt;}
.ls77{letter-spacing:64.624002pt;}
.ls76{letter-spacing:70.111996pt;}
.ls42{letter-spacing:98.414073pt;}
.ls45{letter-spacing:110.920258pt;}
.ls41{letter-spacing:147.377288pt;}
.ls40{letter-spacing:158.031993pt;}
.ls44{letter-spacing:205.854336pt;}
.ws2{word-spacing:-13.393333pt;}
.ws37{word-spacing:-13.066667pt;}
.ws3d{word-spacing:-12.085333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws94{word-spacing:-11.664000pt;}
.ws80{word-spacing:-11.616000pt;}
.ws45{word-spacing:-11.568000pt;}
.ws72{word-spacing:-11.520000pt;}
.ws9c{word-spacing:-11.472000pt;}
.ws8f{word-spacing:-11.424000pt;}
.ws84{word-spacing:-11.413333pt;}
.ws3b{word-spacing:-11.376000pt;}
.ws44{word-spacing:-11.360000pt;}
.wse{word-spacing:-11.328000pt;}
.ws8d{word-spacing:-11.304000pt;}
.wsa{word-spacing:-11.280000pt;}
.ws14{word-spacing:-11.232000pt;}
.ws3c{word-spacing:-11.184000pt;}
.ws3f{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws87{word-spacing:-11.088000pt;}
.ws85{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.944000pt;}
.ws40{word-spacing:-10.896000pt;}
.ws3e{word-spacing:-10.880000pt;}
.ws12{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws7{word-spacing:-10.800000pt;}
.ws3a{word-spacing:-10.752000pt;}
.ws41{word-spacing:-10.704000pt;}
.ws86{word-spacing:-10.656000pt;}
.ws16{word-spacing:-10.608000pt;}
.ws11{word-spacing:-10.560000pt;}
.ws70{word-spacing:-10.512000pt;}
.ws42{word-spacing:-10.464000pt;}
.ws71{word-spacing:-10.416000pt;}
.ws38{word-spacing:-10.368000pt;}
.wsa0{word-spacing:-10.320000pt;}
.ws91{word-spacing:-10.272000pt;}
.ws39{word-spacing:-10.224000pt;}
.ws43{word-spacing:-10.176000pt;}
.ws9f{word-spacing:-10.128000pt;}
.wsad{word-spacing:-9.160000pt;}
.wsae{word-spacing:-9.080000pt;}
.ws17{word-spacing:-9.066667pt;}
.wsab{word-spacing:-9.000000pt;}
.wsce{word-spacing:-8.960000pt;}
.wsac{word-spacing:-8.760000pt;}
.wsc1{word-spacing:-8.720000pt;}
.wsb9{word-spacing:-8.600000pt;}
.ws4d{word-spacing:-8.549333pt;}
.ws51{word-spacing:-8.474667pt;}
.ws75{word-spacing:-8.176000pt;}
.ws4c{word-spacing:-8.101333pt;}
.ws73{word-spacing:-8.064000pt;}
.ws47{word-spacing:-7.914667pt;}
.ws49{word-spacing:-7.616000pt;}
.ws93{word-spacing:-7.488000pt;}
.ws90{word-spacing:-7.425600pt;}
.ws9{word-spacing:-7.363200pt;}
.wsb{word-spacing:-7.332000pt;}
.wsf{word-spacing:-7.300800pt;}
.wsa1{word-spacing:-7.269600pt;}
.ws15{word-spacing:-7.238400pt;}
.ws10{word-spacing:-7.207200pt;}
.wsd{word-spacing:-7.176000pt;}
.wsc{word-spacing:-7.144800pt;}
.ws9b{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws13{word-spacing:-7.051200pt;}
.ws92{word-spacing:-7.020000pt;}
.ws9d{word-spacing:-6.988800pt;}
.ws88{word-spacing:-6.957600pt;}
.ws8e{word-spacing:-6.926400pt;}
.ws9e{word-spacing:-6.864000pt;}
.ws6a{word-spacing:-4.896000pt;}
.ws74{word-spacing:-4.293333pt;}
.wsd6{word-spacing:-3.520000pt;}
.ws1c{word-spacing:-3.413333pt;}
.ws1e{word-spacing:-3.072000pt;}
.ws1a{word-spacing:-2.912000pt;}
.wsa9{word-spacing:-1.872000pt;}
.ws7e{word-spacing:-1.680000pt;}
.ws20{word-spacing:-1.632000pt;}
.ws64{word-spacing:-1.600000pt;}
.ws63{word-spacing:-1.584000pt;}
.ws67{word-spacing:-1.536000pt;}
.ws59{word-spacing:-1.488000pt;}
.wsaa{word-spacing:-1.440000pt;}
.wsc4{word-spacing:-1.400000pt;}
.wsb6{word-spacing:-1.360000pt;}
.ws82{word-spacing:-1.344000pt;}
.ws7c{word-spacing:-1.296000pt;}
.wsbc{word-spacing:-1.280000pt;}
.ws2c{word-spacing:-1.248000pt;}
.wsd7{word-spacing:-1.232000pt;}
.ws69{word-spacing:-1.200000pt;}
.wsa2{word-spacing:-1.152000pt;}
.ws36{word-spacing:-1.133333pt;}
.ws1b{word-spacing:-1.120000pt;}
.ws2d{word-spacing:-1.104000pt;}
.ws6f{word-spacing:-1.056000pt;}
.wsd2{word-spacing:-1.040000pt;}
.ws1d{word-spacing:-1.008000pt;}
.wsc5{word-spacing:-1.000000pt;}
.ws8a{word-spacing:-0.960000pt;}
.wsb0{word-spacing:-0.920000pt;}
.ws83{word-spacing:-0.912000pt;}
.wsd4{word-spacing:-0.880000pt;}
.ws24{word-spacing:-0.864000pt;}
.ws7f{word-spacing:-0.858667pt;}
.ws19{word-spacing:-0.853333pt;}
.ws6e{word-spacing:-0.821333pt;}
.ws7b{word-spacing:-0.816000pt;}
.wsbf{word-spacing:-0.800000pt;}
.ws7a{word-spacing:-0.768000pt;}
.wsc0{word-spacing:-0.760000pt;}
.ws8b{word-spacing:-0.746667pt;}
.ws8c{word-spacing:-0.720000pt;}
.ws35{word-spacing:-0.680000pt;}
.ws5b{word-spacing:-0.672000pt;}
.wscf{word-spacing:-0.640000pt;}
.ws56{word-spacing:-0.624000pt;}
.ws21{word-spacing:-0.576000pt;}
.wsa5{word-spacing:-0.533333pt;}
.ws28{word-spacing:-0.528000pt;}
.wsd1{word-spacing:-0.520000pt;}
.ws60{word-spacing:-0.480000pt;}
.wsb5{word-spacing:-0.440000pt;}
.ws31{word-spacing:-0.432000pt;}
.ws6b{word-spacing:-0.426667pt;}
.ws34{word-spacing:-0.408000pt;}
.wsb3{word-spacing:-0.400000pt;}
.ws61{word-spacing:-0.384000pt;}
.ws6c{word-spacing:-0.373333pt;}
.wsb8{word-spacing:-0.360000pt;}
.ws2a{word-spacing:-0.336000pt;}
.wscd{word-spacing:-0.320000pt;}
.ws65{word-spacing:-0.288000pt;}
.wsbd{word-spacing:-0.280000pt;}
.ws32{word-spacing:-0.240000pt;}
.ws2b{word-spacing:-0.218400pt;}
.wsc7{word-spacing:-0.200000pt;}
.ws2f{word-spacing:-0.192000pt;}
.wsa7{word-spacing:-0.187200pt;}
.wsbb{word-spacing:-0.160000pt;}
.ws5d{word-spacing:-0.144000pt;}
.wsd3{word-spacing:-0.120000pt;}
.wsa4{word-spacing:-0.106667pt;}
.ws23{word-spacing:-0.096000pt;}
.ws29{word-spacing:-0.093600pt;}
.ws27{word-spacing:-0.062400pt;}
.wsa8{word-spacing:-0.053333pt;}
.ws25{word-spacing:-0.048000pt;}
.wsaf{word-spacing:-0.040000pt;}
.ws18{word-spacing:0.000000pt;}
.ws30{word-spacing:0.031200pt;}
.wsb4{word-spacing:0.040000pt;}
.ws22{word-spacing:0.048000pt;}
.wsa3{word-spacing:0.053333pt;}
.wsc9{word-spacing:0.080000pt;}
.ws2e{word-spacing:0.096000pt;}
.ws5e{word-spacing:0.106667pt;}
.wsc6{word-spacing:0.120000pt;}
.ws58{word-spacing:0.144000pt;}
.wscb{word-spacing:0.160000pt;}
.ws68{word-spacing:0.192000pt;}
.wsc8{word-spacing:0.200000pt;}
.ws9a{word-spacing:0.224000pt;}
.ws62{word-spacing:0.240000pt;}
.wsa6{word-spacing:0.266667pt;}
.ws33{word-spacing:0.272000pt;}
.wsba{word-spacing:0.280000pt;}
.ws6d{word-spacing:0.288000pt;}
.ws5c{word-spacing:0.336000pt;}
.wsd5{word-spacing:0.360000pt;}
.ws57{word-spacing:0.384000pt;}
.wscc{word-spacing:0.400000pt;}
.ws26{word-spacing:0.432000pt;}
.wsc3{word-spacing:0.440000pt;}
.ws7d{word-spacing:0.480000pt;}
.wsb1{word-spacing:0.520000pt;}
.ws81{word-spacing:0.528000pt;}
.ws89{word-spacing:0.576000pt;}
.ws5a{word-spacing:0.624000pt;}
.wsca{word-spacing:0.640000pt;}
.wsc2{word-spacing:0.680000pt;}
.ws1f{word-spacing:0.720000pt;}
.ws66{word-spacing:0.768000pt;}
.wsd0{word-spacing:0.840000pt;}
.ws5f{word-spacing:0.864000pt;}
.wsb2{word-spacing:0.960000pt;}
.wsd8{word-spacing:1.056000pt;}
.wsbe{word-spacing:1.080000pt;}
.wsd9{word-spacing:1.104000pt;}
.ws99{word-spacing:1.152000pt;}
.wsb7{word-spacing:1.240000pt;}
.ws4f{word-spacing:51.855997pt;}
.ws46{word-spacing:52.266660pt;}
.ws98{word-spacing:55.290669pt;}
.ws96{word-spacing:66.901336pt;}
.ws4a{word-spacing:75.338675pt;}
.ws4b{word-spacing:76.720004pt;}
.ws95{word-spacing:77.097060pt;}
.ws48{word-spacing:81.797299pt;}
.ws52{word-spacing:83.701330pt;}
.ws55{word-spacing:91.447174pt;}
.ws50{word-spacing:91.634349pt;}
.ws79{word-spacing:102.480001pt;}
.ws54{word-spacing:103.953848pt;}
.ws53{word-spacing:104.140534pt;}
.ws4e{word-spacing:116.647126pt;}
.ws97{word-spacing:187.898660pt;}
.ws78{word-spacing:195.290675pt;}
.ws76{word-spacing:205.781330pt;}
.ws77{word-spacing:213.210675pt;}
._1b{margin-left:-1791.664046pt;}
._b{margin-left:-1132.282638pt;}
._49{margin-left:-9.560000pt;}
._46{margin-left:-8.440000pt;}
._48{margin-left:-7.320000pt;}
._3{margin-left:-6.400000pt;}
._5{margin-left:-4.843727pt;}
._1{margin-left:-3.253336pt;}
._0{margin-left:-1.578676pt;}
._4{width:1.244786pt;}
._6{width:2.400352pt;}
._1a{width:3.509333pt;}
._2b{width:4.730315pt;}
._43{width:5.658677pt;}
._42{width:7.280000pt;}
._45{width:8.880000pt;}
._41{width:11.040000pt;}
._44{width:12.160000pt;}
._18{width:13.583993pt;}
._17{width:14.539725pt;}
._47{width:15.520001pt;}
._9{width:31.397330pt;}
._a{width:35.727991pt;}
._2{width:38.341292pt;}
._7{width:42.436308pt;}
._8{width:43.901911pt;}
._3d{width:52.014033pt;}
._1d{width:56.037328pt;}
._2f{width:65.408003pt;}
._20{width:67.498668pt;}
._33{width:70.111996pt;}
._1e{width:71.008003pt;}
._30{width:72.389330pt;}
._2e{width:74.591994pt;}
._2c{width:80.154675pt;}
._2d{width:81.573339pt;}
._11{width:92.175996pt;}
._1c{width:94.665052pt;}
._14{width:104.917467pt;}
._13{width:106.250172pt;}
._1f{width:109.573330pt;}
._c{width:122.938675pt;}
._12{width:124.170658pt;}
._d{width:152.618671pt;}
._23{width:198.538661pt;}
._22{width:205.520006pt;}
._24{width:207.274670pt;}
._e{width:210.969640pt;}
._16{width:212.388328pt;}
._f{width:213.397337pt;}
._15{width:214.404318pt;}
._10{width:215.376004pt;}
._21{width:221.685342pt;}
._25{width:223.440006pt;}
._26{width:225.194670pt;}
._29{width:232.175996pt;}
._27{width:250.095996pt;}
._2a{width:268.015997pt;}
._28{width:285.935997pt;}
._19{width:685.338706pt;}
._35{width:1054.298769pt;}
._34{width:1240.272083pt;}
._37{width:1286.021397pt;}
._36{width:1297.205416pt;}
._3f{width:1302.869407pt;}
._38{width:1382.165407pt;}
._3e{width:1407.189416pt;}
._39{width:1429.936093pt;}
._32{width:1432.013974pt;}
._3b{width:1446.387307pt;}
._3a{width:1501.642750pt;}
._3c{width:1531.424073pt;}
._40{width:1587.645964pt;}
._31{width:1597.298778pt;}
.fsc{font-size:24.266668pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y2d{bottom:60.723466pt;}
.y13e{bottom:60.934668pt;}
.y81{bottom:62.875482pt;}
.y90{bottom:63.095065pt;}
.ye7{bottom:65.152265pt;}
.y62{bottom:69.156267pt;}
.ybe{bottom:73.488669pt;}
.y2c{bottom:74.051466pt;}
.y13d{bottom:74.273333pt;}
.y80{bottom:76.207482pt;}
.y8f{bottom:76.427064pt;}
.y183{bottom:78.460010pt;}
.ye6{bottom:78.484265pt;}
.y61{bottom:82.488267pt;}
.ybd{bottom:86.823337pt;}
.y2b{bottom:87.384799pt;}
.y13c{bottom:87.605332pt;}
.y7f{bottom:89.539481pt;}
.y8e{bottom:89.759064pt;}
.y182{bottom:89.790011pt;}
.ye5{bottom:91.818932pt;}
.y60{bottom:95.820266pt;}
.ybc{bottom:100.155336pt;}
.y13b{bottom:100.937331pt;}
.y181{bottom:101.120011pt;}
.y7e{bottom:102.871480pt;}
.y2a{bottom:104.566132pt;}
.ye4{bottom:105.150931pt;}
.y5f{bottom:109.152265pt;}
.y180{bottom:112.450011pt;}
.ybb{bottom:113.491337pt;}
.y13a{bottom:114.269331pt;}
.y7d{bottom:116.203480pt;}
.ye3{bottom:118.489601pt;}
.y5e{bottom:122.484265pt;}
.y17f{bottom:123.780011pt;}
.yba{bottom:126.823337pt;}
.y139{bottom:127.601330pt;}
.y7c{bottom:129.535479pt;}
.ye2{bottom:131.821600pt;}
.y17e{bottom:135.110011pt;}
.y5d{bottom:135.817598pt;}
.yb9{bottom:140.155336pt;}
.y97{bottom:140.433745pt;}
.y138{bottom:140.933329pt;}
.y7b{bottom:142.867478pt;}
.ye1{bottom:145.153599pt;}
.y17d{bottom:146.440011pt;}
.y5c{bottom:149.149597pt;}
.yb8{bottom:153.487335pt;}
.y96{bottom:153.765744pt;}
.y29{bottom:155.276267pt;}
.y7a{bottom:156.199477pt;}
.y17c{bottom:157.770011pt;}
.ye0{bottom:158.485599pt;}
.y137{bottom:165.416527pt;}
.yb7{bottom:166.820669pt;}
.y95{bottom:167.097743pt;}
.y28{bottom:168.609610pt;}
.y17b{bottom:169.100011pt;}
.y79{bottom:169.531477pt;}
.ydf{bottom:171.817598pt;}
.y1c1{bottom:174.494937pt;}
.y5b{bottom:178.500294pt;}
.y136{bottom:178.748526pt;}
.y94{bottom:180.429743pt;}
.y17a{bottom:180.430011pt;}
.y27{bottom:181.944278pt;}
.y78{bottom:182.863476pt;}
.yde{bottom:185.152265pt;}
.y1c0{bottom:187.826936pt;}
.y179{bottom:191.760011pt;}
.y5a{bottom:191.832293pt;}
.y135{bottom:192.081860pt;}
.yb6{bottom:192.718802pt;}
.y93{bottom:193.761742pt;}
.y26{bottom:195.276277pt;}
.y77{bottom:196.195475pt;}
.ydd{bottom:198.484265pt;}
.y1bf{bottom:201.158936pt;}
.y178{bottom:203.090012pt;}
.y59{bottom:205.164292pt;}
.y134{bottom:205.416527pt;}
.yb5{bottom:206.050802pt;}
.y92{bottom:207.093741pt;}
.y25{bottom:208.610944pt;}
.y76{bottom:209.527475pt;}
.ydc{bottom:211.817598pt;}
.y177{bottom:214.420012pt;}
.y1be{bottom:214.490935pt;}
.y58{bottom:218.496291pt;}
.y133{bottom:218.748526pt;}
.yb4{bottom:219.382801pt;}
.y91{bottom:220.425741pt;}
.y24{bottom:221.942944pt;}
.y75{bottom:222.859474pt;}
.ydb{bottom:225.153599pt;}
.y176{bottom:225.750012pt;}
.y1bd{bottom:227.822934pt;}
.y57{bottom:231.828291pt;}
.y132{bottom:232.080526pt;}
.yb3{bottom:232.714800pt;}
.y23{bottom:235.276277pt;}
.y74{bottom:236.191473pt;}
.y175{bottom:237.080012pt;}
.yda{bottom:238.485599pt;}
.y1bc{bottom:241.154933pt;}
.y56{bottom:245.160290pt;}
.yb2{bottom:246.046799pt;}
.y174{bottom:248.410012pt;}
.y22{bottom:248.609610pt;}
.y73{bottom:249.523472pt;}
.yd9{bottom:251.817598pt;}
.y1bb{bottom:254.486933pt;}
.y131{bottom:256.562267pt;}
.y55{bottom:258.492289pt;}
.yb1{bottom:259.378799pt;}
.y173{bottom:259.740012pt;}
.y21{bottom:261.942944pt;}
.y72{bottom:262.855472pt;}
.yd8{bottom:265.152265pt;}
.y1ba{bottom:267.818932pt;}
.y130{bottom:269.895601pt;}
.y172{bottom:271.070012pt;}
.y54{bottom:271.824288pt;}
.yb0{bottom:272.710798pt;}
.y20{bottom:275.276277pt;}
.y71{bottom:276.187471pt;}
.yd7{bottom:278.484265pt;}
.y1b9{bottom:281.150931pt;}
.y171{bottom:282.400012pt;}
.y12f{bottom:283.230268pt;}
.y53{bottom:285.156288pt;}
.yaf{bottom:286.042797pt;}
.y1f{bottom:288.609610pt;}
.y70{bottom:289.519470pt;}
.yd6{bottom:291.817598pt;}
.y170{bottom:293.730012pt;}
.y1b8{bottom:294.482930pt;}
.y12e{bottom:296.562267pt;}
.y52{bottom:298.488287pt;}
.yae{bottom:299.374797pt;}
.y1e{bottom:301.945612pt;}
.y16f{bottom:305.060012pt;}
.yd5{bottom:305.158956pt;}
.y12d{bottom:309.895601pt;}
.y51{bottom:311.820286pt;}
.y1b7{bottom:313.820286pt;}
.y1d{bottom:315.277611pt;}
.y16e{bottom:316.390013pt;}
.yd4{bottom:318.490955pt;}
.y12c{bottom:323.228934pt;}
.y50{bottom:325.152286pt;}
.yad{bottom:325.272798pt;}
.y1b6{bottom:327.152286pt;}
.y16d{bottom:327.720013pt;}
.y1c{bottom:328.609610pt;}
.yd3{bottom:331.822954pt;}
.y8d{bottom:336.186137pt;}
.y12b{bottom:336.560933pt;}
.y4f{bottom:338.484285pt;}
.yac{bottom:338.604797pt;}
.y16c{bottom:339.050013pt;}
.y1b{bottom:341.942944pt;}
.yd2{bottom:345.154954pt;}
.y1b5{bottom:346.484285pt;}
.y16b{bottom:350.380013pt;}
.y4e{bottom:351.816284pt;}
.yab{bottom:351.936797pt;}
.y1a{bottom:355.276277pt;}
.yd1{bottom:358.486953pt;}
.y12a{bottom:361.044131pt;}
.y16a{bottom:361.710013pt;}
.y8c{bottom:363.008783pt;}
.yaa{bottom:365.268796pt;}
.y1b4{bottom:365.816284pt;}
.y19{bottom:368.610944pt;}
.yd0{bottom:371.818952pt;}
.y169{bottom:373.040013pt;}
.y129{bottom:374.376131pt;}
.y8b{bottom:378.511450pt;}
.ya9{bottom:378.600795pt;}
.y1b3{bottom:379.149618pt;}
.y4d{bottom:381.154954pt;}
.y18{bottom:381.942944pt;}
.y168{bottom:384.370013pt;}
.ycf{bottom:385.150952pt;}
.y128{bottom:387.709464pt;}
.ya8{bottom:391.932794pt;}
.y8a{bottom:394.014116pt;}
.y4c{bottom:394.486953pt;}
.y17{bottom:395.304276pt;}
.y167{bottom:395.700013pt;}
.yce{bottom:398.485619pt;}
.y127{bottom:401.042797pt;}
.y1b2{bottom:403.152286pt;}
.ya7{bottom:405.264794pt;}
.y166{bottom:407.030013pt;}
.y4b{bottom:407.818952pt;}
.y89{bottom:409.516783pt;}
.ycd{bottom:411.817618pt;}
.y126{bottom:414.377465pt;}
.y1b1{bottom:416.484285pt;}
.y165{bottom:418.360013pt;}
.ya6{bottom:418.596793pt;}
.y4a{bottom:421.150952pt;}
.y87{bottom:425.019450pt;}
.ycc{bottom:425.153620pt;}
.y125{bottom:427.709464pt;}
.y164{bottom:429.690014pt;}
.y1b0{bottom:429.816284pt;}
.ya5{bottom:431.928792pt;}
.y49{bottom:434.484285pt;}
.y16{bottom:437.304276pt;}
.ycb{bottom:438.485619pt;}
.y88{bottom:440.522117pt;}
.y163{bottom:441.020014pt;}
.y124{bottom:441.045465pt;}
.y1af{bottom:443.149618pt;}
.y48{bottom:447.817618pt;}
.yca{bottom:451.817618pt;}
.y15{bottom:451.968276pt;}
.y162{bottom:452.350014pt;}
.y123{bottom:454.377465pt;}
.ya4{bottom:457.832293pt;}
.y47{bottom:461.157622pt;}
.y161{bottom:463.680014pt;}
.yc9{bottom:465.150952pt;}
.y14{bottom:466.632276pt;}
.y1ae{bottom:467.157622pt;}
.y122{bottom:467.709464pt;}
.ya3{bottom:471.164292pt;}
.y46{bottom:474.489621pt;}
.y160{bottom:475.010014pt;}
.yc8{bottom:478.486953pt;}
.y1ad{bottom:480.489621pt;}
.y121{bottom:481.041463pt;}
.y13{bottom:481.296276pt;}
.ya2{bottom:484.496291pt;}
.y15f{bottom:486.340014pt;}
.y45{bottom:487.821620pt;}
.yc7{bottom:491.818952pt;}
.y86{bottom:493.017747pt;}
.y1ac{bottom:493.821620pt;}
.y12{bottom:495.960276pt;}
.y15e{bottom:497.670014pt;}
.ya1{bottom:497.828291pt;}
.y44{bottom:501.153620pt;}
.yc6{bottom:505.150952pt;}
.y120{bottom:505.528521pt;}
.y85{bottom:506.349746pt;}
.y1ab{bottom:507.153620pt;}
.y15d{bottom:509.000014pt;}
.y11{bottom:510.624276pt;}
.ya0{bottom:511.160290pt;}
.y43{bottom:514.485619pt;}
.yc5{bottom:518.486953pt;}
.y11f{bottom:518.860520pt;}
.y84{bottom:519.681745pt;}
.y15c{bottom:520.330014pt;}
.y1aa{bottom:520.485619pt;}
.y9f{bottom:524.492289pt;}
.y10{bottom:525.288276pt;}
.y42{bottom:527.817618pt;}
.y15b{bottom:531.660014pt;}
.yc4{bottom:531.818952pt;}
.y11e{bottom:532.192519pt;}
.y83{bottom:533.013745pt;}
.y1a9{bottom:533.817618pt;}
.y9e{bottom:537.824288pt;}
.yf{bottom:539.952276pt;}
.y41{bottom:541.149618pt;}
.y15a{bottom:542.990015pt;}
.yc3{bottom:545.150952pt;}
.y11d{bottom:545.524519pt;}
.y82{bottom:546.345744pt;}
.y1a8{bottom:547.149618pt;}
.y9d{bottom:551.156288pt;}
.y159{bottom:554.320015pt;}
.y40{bottom:554.482951pt;}
.ye{bottom:554.616276pt;}
.yc2{bottom:558.484285pt;}
.y11c{bottom:558.856518pt;}
.y1a7{bottom:560.482951pt;}
.y9c{bottom:564.488287pt;}
.y158{bottom:565.650015pt;}
.yd{bottom:569.280276pt;}
.yc1{bottom:571.816284pt;}
.y11b{bottom:572.189851pt;}
.y157{bottom:576.980015pt;}
.y9b{bottom:577.820286pt;}
.y3f{bottom:583.824288pt;}
.yc{bottom:583.944276pt;}
.y1a6{bottom:584.596240pt;}
.y11a{bottom:585.523185pt;}
.y156{bottom:588.310015pt;}
.y9a{bottom:591.152286pt;}
.y1a5{bottom:595.926240pt;}
.y3e{bottom:597.156288pt;}
.yb{bottom:598.608276pt;}
.y119{bottom:598.856518pt;}
.y155{bottom:599.640015pt;}
.y99{bottom:604.484285pt;}
.y1a4{bottom:607.256240pt;}
.y3d{bottom:610.488287pt;}
.y154{bottom:610.970015pt;}
.y118{bottom:612.192519pt;}
.y98{bottom:617.816284pt;}
.y1a3{bottom:618.586240pt;}
.yfe{bottom:619.982951pt;}
.y153{bottom:622.300015pt;}
.y3c{bottom:623.820286pt;}
.y9{bottom:625.274943pt;}
.y117{bottom:625.524519pt;}
.ya{bottom:629.808268pt;}
.y1a2{bottom:629.916240pt;}
.y152{bottom:633.630015pt;}
.y3b{bottom:637.152286pt;}
.y116{bottom:638.856518pt;}
.y1a1{bottom:641.246241pt;}
.y151{bottom:644.960015pt;}
.y3a{bottom:650.484285pt;}
.yfd{bottom:650.766909pt;}
.y115{bottom:652.188517pt;}
.y1a0{bottom:652.576241pt;}
.y8{bottom:654.586897pt;}
.y150{bottom:656.290016pt;}
.y39{bottom:663.818912pt;}
.y19f{bottom:663.906241pt;}
.y114{bottom:665.521851pt;}
.yfc{bottom:666.269575pt;}
.y14f{bottom:667.620016pt;}
.yc0{bottom:668.053743pt;}
.y30{bottom:673.018130pt;}
.y19e{bottom:675.236241pt;}
.y38{bottom:677.150911pt;}
.y14e{bottom:678.950016pt;}
.ybf{bottom:681.385742pt;}
.yfb{bottom:681.772242pt;}
.y19d{bottom:686.566241pt;}
.y113{bottom:690.007696pt;}
.y14d{bottom:690.280016pt;}
.y37{bottom:690.486912pt;}
.y2f{bottom:691.684130pt;}
.y7{bottom:694.592232pt;}
.yfa{bottom:697.274909pt;}
.y19c{bottom:697.896241pt;}
.y14c{bottom:701.610016pt;}
.y112{bottom:703.339696pt;}
.y36{bottom:703.818912pt;}
.y19b{bottom:709.226241pt;}
.y2e{bottom:710.350129pt;}
.yf9{bottom:712.777576pt;}
.y14b{bottom:712.940016pt;}
.y111{bottom:716.671695pt;}
.y35{bottom:717.150911pt;}
.y19a{bottom:720.556241pt;}
.y14a{bottom:724.270016pt;}
.yf8{bottom:728.280242pt;}
.y110{bottom:730.003694pt;}
.y34{bottom:730.484244pt;}
.y199{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.y149{bottom:735.600016pt;}
.y198{bottom:743.216241pt;}
.y10f{bottom:743.335693pt;}
.yf7{bottom:743.782909pt;}
.y33{bottom:743.816243pt;}
.y148{bottom:746.933350pt;}
.y197{bottom:754.546242pt;}
.y10e{bottom:756.669027pt;}
.yf6{bottom:759.285576pt;}
.y196{bottom:765.876242pt;}
.y5{bottom:774.602901pt;}
.yf5{bottom:774.788243pt;}
.y147{bottom:776.116536pt;}
.y195{bottom:777.206242pt;}
.y10d{bottom:781.150911pt;}
.y194{bottom:788.536242pt;}
.yf4{bottom:790.290909pt;}
.y10c{bottom:794.486912pt;}
.y6f{bottom:796.650911pt;}
.y193{bottom:799.866242pt;}
.y146{bottom:805.301057pt;}
.yf3{bottom:805.793576pt;}
.y10b{bottom:807.818912pt;}
.y6e{bottom:809.982910pt;}
.y192{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y145{bottom:818.633057pt;}
.y10a{bottom:821.150911pt;}
.yf2{bottom:821.296243pt;}
.y191{bottom:822.526242pt;}
.y31{bottom:823.475179pt;}
.y190{bottom:833.856242pt;}
.y109{bottom:834.486912pt;}
.yf1{bottom:836.798910pt;}
.y6d{bottom:836.813577pt;}
.y18f{bottom:845.186242pt;}
.y108{bottom:847.818912pt;}
.y144{bottom:847.822914pt;}
.yf0{bottom:852.301576pt;}
.y6c{bottom:852.313577pt;}
.y18e{bottom:856.516242pt;}
.y107{bottom:861.150911pt;}
.y143{bottom:861.154913pt;}
.yef{bottom:867.804243pt;}
.y6b{bottom:867.813577pt;}
.y18d{bottom:867.846243pt;}
.y142{bottom:874.486912pt;}
.y106{bottom:874.488246pt;}
.y18c{bottom:879.176243pt;}
.yee{bottom:883.306910pt;}
.y6a{bottom:883.313577pt;}
.y141{bottom:887.818912pt;}
.y105{bottom:887.820246pt;}
.y18b{bottom:890.506243pt;}
.yed{bottom:898.809577pt;}
.y69{bottom:898.813577pt;}
.y140{bottom:901.150911pt;}
.y104{bottom:901.152245pt;}
.y18a{bottom:901.836243pt;}
.y189{bottom:913.166243pt;}
.yec{bottom:914.312243pt;}
.y68{bottom:914.313577pt;}
.y103{bottom:914.484244pt;}
.y188{bottom:924.496243pt;}
.y102{bottom:927.817578pt;}
.y67{bottom:929.813578pt;}
.yeb{bottom:929.814910pt;}
.y187{bottom:935.826243pt;}
.y101{bottom:941.150911pt;}
.y13f{bottom:941.152245pt;}
.y63{bottom:945.316243pt;}
.y66{bottom:945.316245pt;}
.yea{bottom:945.317577pt;}
.y186{bottom:947.156243pt;}
.y100{bottom:954.484244pt;}
.y185{bottom:958.486243pt;}
.y65{bottom:960.818911pt;}
.ye9{bottom:960.820244pt;}
.yff{bottom:967.816243pt;}
.y184{bottom:969.816243pt;}
.y64{bottom:970.814911pt;}
.ye8{bottom:970.816243pt;}
.y32{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.he{height:21.193555pt;}
.h7{height:24.933594pt;}
.h11{height:31.461333pt;}
.h10{height:32.605469pt;}
.h8{height:34.512000pt;}
.h9{height:34.523438pt;}
.hf{height:36.585552pt;}
.h1a{height:36.922667pt;}
.h16{height:37.408000pt;}
.h17{height:37.418667pt;}
.h14{height:38.229333pt;}
.h2{height:38.346667pt;}
.h19{height:38.528000pt;}
.h4{height:39.318359pt;}
.h1e{height:39.560000pt;}
.h1c{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1d{height:40.960000pt;}
.h13{height:42.181333pt;}
.ha{height:47.472000pt;}
.h1b{height:48.079991pt;}
.hc{height:48.085328pt;}
.hd{height:48.090664pt;}
.hb{height:48.096000pt;}
.h18{height:49.152000pt;}
.h12{height:69.024000pt;}
.h15{height:78.213332pt;}
.h6{height:98.037333pt;}
.h5{height:99.701333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:12.517041pt;}
.x2{left:54.392400pt;}
.x9{left:125.291331pt;}
.x12{left:127.326396pt;}
.x4{left:207.516805pt;}
.x13{left:208.493205pt;}
.xa{left:211.683472pt;}
.x7{left:223.511870pt;}
.xf{left:256.502138pt;}
.x14{left:267.195190pt;}
.x5{left:322.777730pt;}
.xb{left:335.293590pt;}
.xc{left:397.098925pt;}
.xd{left:459.408259pt;}
.x3{left:519.632528pt;}
.xe{left:522.212260pt;}
.x6{left:571.704020pt;}
.x10{left:685.555482pt;}
.x11{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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