
    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_cb09da19e946a5e0577ce33b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1e8d4c280a6069d95a14518c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_d4c9d3bf046443ebf6422068.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_deca732a9dac2fa092a67e6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_963360552f662137b58027e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_e4fdc9ddb6462244ccc718f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_faca9b760b3b56e400f19677.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014000;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_859c9f08973a5977d1238e76.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.045000;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_2e45693166ae3edb93479849.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.025000;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_1e8d4c280a6069d95a14518c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_53a233f7d8e6960704563087.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9f07d82d883f56f26ef19125.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e985fa84a759eea803e4b5ea.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_54294ccdab29244fea381238.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_52295f467962ade9c429e18d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.935547;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_bd979fa541554259d50b135b.woff2')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aa015f8fdf4de4d17b0c84d8.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;}
@font-face{font-family:ff14;src:url('chunks/assets/font_02770459c8c2f304eec3e40d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.539062;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_ace4d512c0a724fdf7bb9c35.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b1cf5d402ad9ff7ff4851b5e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_17b57d546eb61b7b1ac27823.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8096ff0e2c17d2578eb0475c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.860352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5904d0552c1cd92cb0a49627.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.028000;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:ff1a;src:url('chunks/assets/font_e4fdc9ddb6462244ccc718f9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.028000;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:ff1b;src:url('chunks/assets/font_faca9b760b3b56e400f19677.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.014000;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:ff1c;src:url('chunks/assets/font_215c8afb97dde73ba3e138d1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.045000;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:ff1d;src:url('chunks/assets/font_2e45693166ae3edb93479849.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.025000;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-14.400000px;}
.v7{vertical-align:-6.480000px;}
.v9{vertical-align:-2.880000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v4{vertical-align:14.400000px;}
.v8{vertical-align:17.280000px;}
.v1{vertical-align:23.760000px;}
.ls5f{letter-spacing:-4.422240px;}
.ls83{letter-spacing:-4.104000px;}
.ls1{letter-spacing:-3.120000px;}
.ls4a{letter-spacing:-2.664000px;}
.ls9f{letter-spacing:-1.944000px;}
.ls7b{letter-spacing:-1.728000px;}
.ls89{letter-spacing:-1.224000px;}
.ls16{letter-spacing:-0.956160px;}
.lsa{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.864000px;}
.lsa6{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.ls8a{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.316800px;}
.ls34{letter-spacing:-0.298800px;}
.ls7a{letter-spacing:-0.288000px;}
.ls91{letter-spacing:-0.264960px;}
.ls1a{letter-spacing:-0.239040px;}
.lsf{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls90{letter-spacing:-0.132480px;}
.ls18{letter-spacing:-0.119520px;}
.lsc{letter-spacing:-0.072000px;}
.ls8f{letter-spacing:-0.066240px;}
.ls19{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls95{letter-spacing:0.017928px;}
.ls7f{letter-spacing:0.059760px;}
.ls12{letter-spacing:0.063360px;}
.lsa2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls42{letter-spacing:0.216000px;}
.ls4d{letter-spacing:0.239040px;}
.ls4e{letter-spacing:0.255600px;}
.ls8e{letter-spacing:0.268920px;}
.ls4{letter-spacing:0.288000px;}
.ls87{letter-spacing:0.298800px;}
.ls40{letter-spacing:0.306720px;}
.ls9b{letter-spacing:0.340632px;}
.ls92{letter-spacing:0.358560px;}
.ls38{letter-spacing:0.360000px;}
.ls5e{letter-spacing:0.370512px;}
.ls8d{letter-spacing:0.382464px;}
.ls7d{letter-spacing:0.394416px;}
.ls14{letter-spacing:0.424296px;}
.ls6c{letter-spacing:0.432000px;}
.ls45{letter-spacing:0.460080px;}
.ls37{letter-spacing:0.504000px;}
.ls7c{letter-spacing:0.597600px;}
.ls64{letter-spacing:0.613440px;}
.ls79{letter-spacing:0.657360px;}
.ls13{letter-spacing:0.699192px;}
.ls62{letter-spacing:0.715680px;}
.ls3e{letter-spacing:0.720000px;}
.ls4b{letter-spacing:0.849600px;}
.ls68{letter-spacing:0.864000px;}
.ls33{letter-spacing:0.956160px;}
.ls77{letter-spacing:1.015920px;}
.ls5c{letter-spacing:1.080000px;}
.ls3d{letter-spacing:1.224000px;}
.ls39{letter-spacing:1.296000px;}
.ls73{letter-spacing:1.374480px;}
.ls76{letter-spacing:1.404360px;}
.ls75{letter-spacing:1.416312px;}
.ls78{letter-spacing:1.428264px;}
.ls74{letter-spacing:1.434240px;}
.ls57{letter-spacing:1.440000px;}
.ls9a{letter-spacing:1.464120px;}
.ls69{letter-spacing:1.584000px;}
.ls94{letter-spacing:1.722240px;}
.ls5d{letter-spacing:1.800000px;}
.ls88{letter-spacing:2.091600px;}
.ls2e{letter-spacing:2.296800px;}
.ls3{letter-spacing:2.304000px;}
.ls86{letter-spacing:2.641392px;}
.ls5{letter-spacing:3.024000px;}
.ls5a{letter-spacing:3.483360px;}
.ls48{letter-spacing:3.539520px;}
.ls11{letter-spacing:3.736800px;}
.ls84{letter-spacing:3.744000px;}
.ls3a{letter-spacing:4.147200px;}
.ls50{letter-spacing:4.203360px;}
.ls61{letter-spacing:4.215600px;}
.ls63{letter-spacing:4.219920px;}
.ls66{letter-spacing:4.224240px;}
.ls81{letter-spacing:4.464000px;}
.ls6b{letter-spacing:4.593600px;}
.ls58{letter-spacing:4.867200px;}
.lsa1{letter-spacing:5.184000px;}
.ls8c{letter-spacing:5.365440px;}
.ls6e{letter-spacing:5.742720px;}
.ls28{letter-spacing:5.904000px;}
.ls9c{letter-spacing:6.495912px;}
.ls97{letter-spacing:6.616800px;}
.ls6a{letter-spacing:6.624000px;}
.ls26{letter-spacing:7.336800px;}
.ls21{letter-spacing:7.344000px;}
.ls22{letter-spacing:8.064000px;}
.ls4c{letter-spacing:8.784000px;}
.ls7e{letter-spacing:9.322560px;}
.ls96{letter-spacing:9.496800px;}
.lsa4{letter-spacing:9.504000px;}
.ls20{letter-spacing:10.224000px;}
.lsd{letter-spacing:10.944000px;}
.ls23{letter-spacing:11.664000px;}
.ls54{letter-spacing:11.808000px;}
.ls1d{letter-spacing:12.240000px;}
.ls99{letter-spacing:12.376800px;}
.ls9d{letter-spacing:12.384000px;}
.ls55{letter-spacing:12.600000px;}
.ls30{letter-spacing:13.104000px;}
.ls32{letter-spacing:13.625280px;}
.ls71{letter-spacing:13.667112px;}
.ls70{letter-spacing:13.673088px;}
.ls6f{letter-spacing:13.679064px;}
.ls1c{letter-spacing:13.824000px;}
.ls3c{letter-spacing:13.985280px;}
.ls72{letter-spacing:14.342400px;}
.ls6{letter-spacing:14.544000px;}
.ls2d{letter-spacing:15.264000px;}
.ls2f{letter-spacing:15.984000px;}
.ls52{letter-spacing:16.056000px;}
.lsa3{letter-spacing:16.704000px;}
.lse{letter-spacing:17.424000px;}
.ls5b{letter-spacing:17.640000px;}
.ls59{letter-spacing:17.665920px;}
.ls85{letter-spacing:18.000000px;}
.ls1e{letter-spacing:18.144000px;}
.ls98{letter-spacing:18.282240px;}
.lsa0{letter-spacing:18.864000px;}
.ls24{letter-spacing:19.584000px;}
.ls67{letter-spacing:19.944000px;}
.ls51{letter-spacing:19.987200px;}
.ls4f{letter-spacing:20.043360px;}
.ls60{letter-spacing:20.055600px;}
.ls65{letter-spacing:20.064240px;}
.ls6d{letter-spacing:20.304000px;}
.ls36{letter-spacing:20.376000px;}
.ls53{letter-spacing:21.240000px;}
.ls3f{letter-spacing:21.384000px;}
.ls2b{letter-spacing:21.744000px;}
.ls2a{letter-spacing:22.464000px;}
.ls35{letter-spacing:23.587200px;}
.ls80{letter-spacing:24.624000px;}
.ls1f{letter-spacing:25.344000px;}
.ls9e{letter-spacing:26.056800px;}
.ls82{letter-spacing:26.064000px;}
.lsa5{letter-spacing:26.784000px;}
.ls25{letter-spacing:27.504000px;}
.lsa8{letter-spacing:28.224000px;}
.lsa7{letter-spacing:28.944000px;}
.ls1b{letter-spacing:30.384000px;}
.ls8b{letter-spacing:36.299520px;}
.ls31{letter-spacing:40.464000px;}
.ls29{letter-spacing:41.184000px;}
.ls93{letter-spacing:49.282560px;}
.ls47{letter-spacing:71.856000px;}
.ls46{letter-spacing:74.797920px;}
.ls44{letter-spacing:84.198960px;}
.ls43{letter-spacing:93.558960px;}
.ls41{letter-spacing:130.998960px;}
.ls56{letter-spacing:145.152000px;}
.ls2c{letter-spacing:846.385920px;}
.ls49{letter-spacing:866.880000px;}
.ls3b{letter-spacing:1016.640000px;}
.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;}
}
.ws5b{word-spacing:-72.000000px;}
.ws70{word-spacing:-71.784000px;}
.ws5c{word-spacing:-51.120000px;}
.ws7a{word-spacing:-28.149120px;}
.ws6f{word-spacing:-27.449280px;}
.ws7d{word-spacing:-20.448000px;}
.ws6{word-spacing:-20.304000px;}
.ws7b{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.160000px;}
.wsaf{word-spacing:-20.088000px;}
.ws4{word-spacing:-20.016000px;}
.ws19{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.872000px;}
.ws39{word-spacing:-19.800000px;}
.ws80{word-spacing:-19.728000px;}
.ws3a{word-spacing:-19.584000px;}
.ws7c{word-spacing:-19.512000px;}
.ws54{word-spacing:-19.440000px;}
.wsb2{word-spacing:-19.296000px;}
.wsb3{word-spacing:-19.224000px;}
.ws7e{word-spacing:-19.152000px;}
.wsb4{word-spacing:-19.080000px;}
.ws7f{word-spacing:-18.576000px;}
.ws29{word-spacing:-17.677440px;}
.ws2a{word-spacing:-17.614080px;}
.ws2b{word-spacing:-17.297280px;}
.ws82{word-spacing:-17.270640px;}
.ws83{word-spacing:-17.210880px;}
.ws87{word-spacing:-16.673040px;}
.wsb0{word-spacing:-16.613280px;}
.ws81{word-spacing:-16.553520px;}
.ws2c{word-spacing:-16.493760px;}
.ws6b{word-spacing:-16.374240px;}
.ws64{word-spacing:-16.314480px;}
.ws5d{word-spacing:-15.840000px;}
.ws72{word-spacing:-14.976000px;}
.ws55{word-spacing:-13.410720px;}
.ws6e{word-spacing:-12.191040px;}
.wsa6{word-spacing:-12.096000px;}
.ws1{word-spacing:-11.178000px;}
.ws56{word-spacing:-10.808640px;}
.ws2{word-spacing:-9.936000px;}
.ws73{word-spacing:-9.360000px;}
.ws61{word-spacing:-9.216000px;}
.ws1e{word-spacing:-5.184000px;}
.ws95{word-spacing:-4.896000px;}
.ws12{word-spacing:-4.464000px;}
.wsa4{word-spacing:-4.242960px;}
.ws8c{word-spacing:-4.032000px;}
.ws71{word-spacing:-3.960000px;}
.ws32{word-spacing:-3.744000px;}
.ws76{word-spacing:-3.600000px;}
.ws6a{word-spacing:-3.525840px;}
.ws24{word-spacing:-3.024000px;}
.ws75{word-spacing:-2.880000px;}
.ws67{word-spacing:-2.808720px;}
.ws25{word-spacing:-2.592000px;}
.ws90{word-spacing:-2.520000px;}
.ws14{word-spacing:-2.304000px;}
.ws68{word-spacing:-2.091600px;}
.ws8f{word-spacing:-1.944000px;}
.ws22{word-spacing:-1.584000px;}
.ws89{word-spacing:-1.374480px;}
.ws74{word-spacing:-1.152000px;}
.ws16{word-spacing:-0.864000px;}
.ws8d{word-spacing:-0.792000px;}
.wsa5{word-spacing:-0.720000px;}
.ws59{word-spacing:-0.657360px;}
.ws94{word-spacing:-0.597600px;}
.wsa3{word-spacing:-0.418320px;}
.ws10{word-spacing:-0.288000px;}
.ws9a{word-spacing:-0.239040px;}
.ws9c{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.144000px;}
.wsb1{word-spacing:-0.119520px;}
.ws86{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.ws36{word-spacing:0.059760px;}
.ws66{word-spacing:0.072000px;}
.ws69{word-spacing:0.119520px;}
.wsf{word-spacing:0.144000px;}
.ws38{word-spacing:0.179280px;}
.ws97{word-spacing:0.198720px;}
.ws18{word-spacing:0.216000px;}
.wsa7{word-spacing:0.239040px;}
.ws5a{word-spacing:0.298800px;}
.ws57{word-spacing:0.360000px;}
.ws17{word-spacing:0.432000px;}
.ws98{word-spacing:0.463680px;}
.ws4e{word-spacing:0.504000px;}
.ws28{word-spacing:0.576000px;}
.ws96{word-spacing:0.648000px;}
.ws27{word-spacing:0.720000px;}
.ws37{word-spacing:0.776880px;}
.ws33{word-spacing:0.864000px;}
.wse{word-spacing:0.936000px;}
.ws92{word-spacing:1.224000px;}
.ws4d{word-spacing:1.296000px;}
.ws77{word-spacing:1.440000px;}
.ws9f{word-spacing:1.494000px;}
.wsac{word-spacing:1.584000px;}
.ws34{word-spacing:1.613520px;}
.ws91{word-spacing:1.728000px;}
.wsad{word-spacing:1.944000px;}
.wsb{word-spacing:2.016000px;}
.ws79{word-spacing:2.211120px;}
.ws78{word-spacing:2.390400px;}
.ws62{word-spacing:2.664000px;}
.wsa{word-spacing:2.736000px;}
.ws21{word-spacing:3.456000px;}
.wsc{word-spacing:3.600000px;}
.ws23{word-spacing:4.176000px;}
.wsa2{word-spacing:4.422240px;}
.ws31{word-spacing:4.896000px;}
.ws9e{word-spacing:5.139360px;}
.ws1d{word-spacing:5.616000px;}
.ws35{word-spacing:5.856480px;}
.ws65{word-spacing:6.048000px;}
.ws7{word-spacing:6.336000px;}
.ws99{word-spacing:6.573600px;}
.ws1c{word-spacing:7.056000px;}
.ws30{word-spacing:7.776000px;}
.wsa8{word-spacing:8.007840px;}
.ws8e{word-spacing:8.280000px;}
.ws4f{word-spacing:8.496000px;}
.ws49{word-spacing:8.640000px;}
.wsa9{word-spacing:8.724960px;}
.wsd{word-spacing:9.216000px;}
.ws1f{word-spacing:9.936000px;}
.ws8a{word-spacing:10.159200px;}
.ws6d{word-spacing:10.368000px;}
.ws6c{word-spacing:10.440000px;}
.ws20{word-spacing:10.656000px;}
.wsaa{word-spacing:10.876320px;}
.ws45{word-spacing:11.376000px;}
.ws3f{word-spacing:12.096000px;}
.ws8{word-spacing:12.816000px;}
.ws3e{word-spacing:13.536000px;}
.ws11{word-spacing:14.256000px;}
.ws1a{word-spacing:14.400000px;}
.ws9b{word-spacing:14.616000px;}
.ws1b{word-spacing:14.976000px;}
.ws47{word-spacing:15.696000px;}
.ws46{word-spacing:15.840000px;}
.wsa1{word-spacing:15.896160px;}
.ws52{word-spacing:15.984000px;}
.wsab{word-spacing:16.056000px;}
.ws2d{word-spacing:16.416000px;}
.ws88{word-spacing:16.613280px;}
.ws26{word-spacing:17.136000px;}
.ws40{word-spacing:17.856000px;}
.ws63{word-spacing:18.000000px;}
.ws2f{word-spacing:18.576000px;}
.ws93{word-spacing:18.824400px;}
.ws2e{word-spacing:19.296000px;}
.ws84{word-spacing:20.016000px;}
.ws9d{word-spacing:20.736000px;}
.ws85{word-spacing:21.312000px;}
.ws41{word-spacing:21.456000px;}
.ws53{word-spacing:22.176000px;}
.wsa0{word-spacing:22.410000px;}
.wsae{word-spacing:22.896000px;}
.ws8b{word-spacing:23.616000px;}
.ws42{word-spacing:24.336000px;}
.ws43{word-spacing:25.056000px;}
.ws44{word-spacing:25.488000px;}
.ws4c{word-spacing:25.776000px;}
.ws48{word-spacing:27.216000px;}
.ws13{word-spacing:27.936000px;}
.ws9{word-spacing:28.656000px;}
.ws3d{word-spacing:29.376000px;}
.ws3b{word-spacing:30.096000px;}
.ws3c{word-spacing:30.816000px;}
.ws50{word-spacing:34.416000px;}
.ws4b{word-spacing:36.576000px;}
.ws4a{word-spacing:37.296000px;}
.ws58{word-spacing:40.176000px;}
.ws51{word-spacing:40.896000px;}
.ws60{word-spacing:58.968000px;}
.ws5e{word-spacing:101.952000px;}
.ws5f{word-spacing:104.256000px;}
._23{margin-left:-17.964000px;}
._1c{margin-left:-14.400000px;}
._18{margin-left:-11.736000px;}
._5{margin-left:-10.528800px;}
._a{margin-left:-8.604000px;}
._17{margin-left:-7.302000px;}
._2{margin-left:-5.460000px;}
._3{margin-left:-4.320000px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.242000px;}
._4{width:1.680000px;}
._7{width:3.234600px;}
._6{width:4.267200px;}
._b{width:5.364000px;}
._10{width:7.218000px;}
._14{width:9.234000px;}
._21{width:10.344000px;}
._c{width:11.508000px;}
._f{width:12.960000px;}
._8{width:14.880000px;}
._11{width:16.038000px;}
._d{width:17.232000px;}
._16{width:18.378000px;}
._1d{width:20.901240px;}
._12{width:24.066000px;}
._13{width:25.470000px;}
._9{width:27.630000px;}
._1e{width:31.470000px;}
._1f{width:34.724760px;}
._15{width:36.588000px;}
._19{width:120.011760px;}
._1b{width:134.064000px;}
._1a{width:181.368000px;}
._e{width:843.984000px;}
._22{width:846.000000px;}
._20{width:847.396800px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fsf{font-size:48.240000px;}
.fs11{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:63.360000px;}
.fs12{font-size:66.240000px;}
.fs5{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:156.000000px;}
.fs9{font-size:168.000000px;}
.yd8{bottom:-4.680000px;}
.yd6{bottom:-2.880000px;}
.y0{bottom:0.000000px;}
.y11e{bottom:23.040000px;}
.y6{bottom:35.925007px;}
.y27{bottom:40.500000px;}
.y23{bottom:53.320350px;}
.y26{bottom:57.000000px;}
.y6f{bottom:57.240000px;}
.y7f{bottom:59.220000px;}
.y5{bottom:66.525004px;}
.y25{bottom:73.500000px;}
.y24{bottom:90.000000px;}
.y4{bottom:97.125005px;}
.y16d{bottom:111.211380px;}
.y18f{bottom:111.222540px;}
.y11c{bottom:111.228840px;}
.ye2{bottom:111.234420px;}
.y93{bottom:113.580000px;}
.yca{bottom:115.740000px;}
.y10d{bottom:119.340000px;}
.y137{bottom:119.700000px;}
.y17b{bottom:127.106100px;}
.y1f6{bottom:127.980000px;}
.y16c{bottom:128.496960px;}
.y18e{bottom:128.508120px;}
.yc9{bottom:128.514420px;}
.y17d{bottom:131.400000px;}
.ye1{bottom:133.020000px;}
.yb7{bottom:136.800000px;}
.y22{bottom:139.264499px;}
.y1b0{bottom:142.920000px;}
.y16b{bottom:145.782540px;}
.y18d{bottom:145.793700px;}
.y17a{bottom:147.080880px;}
.ye0{bottom:148.680000px;}
.yc8{bottom:150.300000px;}
.yb1{bottom:152.280000px;}
.yea{bottom:154.782540px;}
.y92{bottom:154.980000px;}
.y19c{bottom:156.420000px;}
.y17c{bottom:157.860000px;}
.y10c{bottom:160.920000px;}
.y136{bottom:161.100000px;}
.y1c0{bottom:161.460000px;}
.y16a{bottom:162.888840px;}
.yc7{bottom:165.780000px;}
.y179{bottom:167.055660px;}
.y18c{bottom:167.400000px;}
.y156{bottom:168.120000px;}
.y1e3{bottom:169.380000px;}
.ye9{bottom:172.068120px;}
.y146{bottom:172.800000px;}
.y169{bottom:180.174420px;}
.y18b{bottom:183.060000px;}
.y1af{bottom:184.320000px;}
.y178{bottom:187.030440px;}
.y1f5{bottom:187.380000px;}
.ye8{bottom:189.174420px;}
.y1e2{bottom:190.080000px;}
.ya4{bottom:190.980000px;}
.yb0{bottom:193.680000px;}
.yb6{bottom:196.200000px;}
.y91{bottom:196.380000px;}
.y19{bottom:196.933500px;}
.y19b{bottom:197.820000px;}
.y11d{bottom:198.180000px;}
.ydf{bottom:198.540000px;}
.y168{bottom:201.960000px;}
.y10b{bottom:202.320000px;}
.y135{bottom:202.500000px;}
.ye7{bottom:206.460000px;}
.y177{bottom:207.005220px;}
.y1f4{bottom:208.080000px;}
.y21{bottom:209.518500px;}
.y155{bottom:209.520000px;}
.y18{bottom:209.533503px;}
.y145{bottom:214.200000px;}
.yc6{bottom:217.080000px;}
.y167{bottom:217.620000px;}
.yec{bottom:219.600000px;}
.y1bf{bottom:220.860000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ye6{bottom:222.300000px;}
.y11b{bottom:223.920000px;}
.y1ae{bottom:225.720000px;}
.y176{bottom:226.980000px;}
.y1e1{bottom:228.780000px;}
.y189{bottom:229.500000px;}
.ya3{bottom:231.674940px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yaf{bottom:235.080000px;}
.yb5{bottom:237.600000px;}
.y90{bottom:237.780000px;}
.yf8{bottom:238.860000px;}
.y19a{bottom:239.220000px;}
.yde{bottom:239.940000px;}
.y10a{bottom:243.720000px;}
.y134{bottom:243.900000px;}
.y1f3{bottom:246.780000px;}
.y11a{bottom:248.400000px;}
.y1e0{bottom:249.480000px;}
.y154{bottom:250.920000px;}
.ya2{bottom:251.470440px;}
.y188{bottom:252.391320px;}
.y144{bottom:255.600000px;}
.y166{bottom:257.940000px;}
.yc5{bottom:258.480000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y175{bottom:260.812800px;}
.yeb{bottom:261.000000px;}
.y1ad{bottom:267.120000px;}
.y1f2{bottom:267.480000px;}
.y1df{bottom:270.180000px;}
.ya1{bottom:271.445220px;}
.y187{bottom:272.366100px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yae{bottom:276.480000px;}
.yb4{bottom:279.000000px;}
.y8f{bottom:279.180000px;}
.y1be{bottom:280.080000px;}
.y199{bottom:280.620000px;}
.yf7{bottom:280.800000px;}
.y18a{bottom:282.060000px;}
.y1c{bottom:285.118502px;}
.y109{bottom:285.120000px;}
.y13{bottom:285.133499px;}
.y133{bottom:285.300000px;}
.ya0{bottom:291.420000px;}
.y186{bottom:292.340880px;}
.y153{bottom:294.871320px;}
.y143{bottom:297.000000px;}
.y165{bottom:299.340000px;}
.yc4{bottom:299.880000px;}
.ydd{bottom:301.500000px;}
.y1f1{bottom:306.180000px;}
.y9f{bottom:308.160000px;}
.y1ac{bottom:308.520000px;}
.y1de{bottom:308.880000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y185{bottom:312.315660px;}
.y152{bottom:314.846100px;}
.yad{bottom:317.880000px;}
.yb3{bottom:320.220000px;}
.y8e{bottom:320.580000px;}
.y1bd{bottom:321.480000px;}
.yd5{bottom:321.660000px;}
.ydc{bottom:322.560000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yf6{bottom:323.100000px;}
.y108{bottom:326.520000px;}
.y132{bottom:326.700000px;}
.y1f0{bottom:326.880000px;}
.y1dd{bottom:329.580000px;}
.y198{bottom:330.500880px;}
.y184{bottom:332.290440px;}
.yd4{bottom:333.180000px;}
.y151{bottom:334.820880px;}
.y142{bottom:337.880880px;}
.yd7{bottom:340.740000px;}
.yc3{bottom:341.280000px;}
.y44{bottom:341.550150px;}
.ydb{bottom:345.240000px;}
.y10{bottom:348.133500px;}
.y1ab{bottom:349.920000px;}
.y197{bottom:350.475660px;}
.y183{bottom:352.265220px;}
.y139{bottom:352.980000px;}
.y150{bottom:354.795660px;}
.y43{bottom:357.750150px;}
.y141{bottom:357.855660px;}
.yd9{bottom:358.020000px;}
.yac{bottom:359.280000px;}
.y8d{bottom:361.980000px;}
.yf5{bottom:365.220000px;}
.y1ef{bottom:365.580000px;}
.y107{bottom:367.920000px;}
.y131{bottom:368.100000px;}
.y1dc{bottom:368.280000px;}
.yda{bottom:368.460000px;}
.y196{bottom:370.450440px;}
.y182{bottom:372.240000px;}
.y138{bottom:373.860000px;}
.y42{bottom:373.950150px;}
.y14f{bottom:374.770440px;}
.y140{bottom:377.830440px;}
.y1bc{bottom:380.880000px;}
.y164{bottom:382.140000px;}
.yb2{bottom:382.680000px;}
.y1ee{bottom:386.280000px;}
.yf{bottom:386.785499px;}
.y1db{bottom:388.980000px;}
.y41{bottom:390.150150px;}
.y195{bottom:390.425220px;}
.y1aa{bottom:391.320000px;}
.y14e{bottom:394.745220px;}
.y13f{bottom:397.805220px;}
.yab{bottom:400.680000px;}
.y8c{bottom:403.380000px;}
.y40{bottom:406.350150px;}
.yf4{bottom:406.800000px;}
.y1ed{bottom:406.980000px;}
.yd3{bottom:407.880000px;}
.ye{bottom:408.044999px;}
.y1ca{bottom:408.960000px;}
.y106{bottom:409.320000px;}
.y130{bottom:409.500000px;}
.y194{bottom:410.400000px;}
.y14d{bottom:414.720000px;}
.y13e{bottom:417.780000px;}
.y29{bottom:417.900300px;}
.y1bb{bottom:422.280000px;}
.y3f{bottom:422.550150px;}
.y2b{bottom:423.411150px;}
.y163{bottom:423.540000px;}
.y181{bottom:423.897120px;}
.yc2{bottom:424.080000px;}
.y1da{bottom:427.680000px;}
.y1c9{bottom:429.660000px;}
.y1a9{bottom:432.720000px;}
.y3e{bottom:438.750150px;}
.y14c{bottom:439.380000px;}
.yaa{bottom:442.080000px;}
.y13d{bottom:442.440000px;}
.y193{bottom:444.240000px;}
.y8b{bottom:444.780000px;}
.y1ec{bottom:445.680000px;}
.yf3{bottom:448.200000px;}
.y1d9{bottom:448.380000px;}
.y119{bottom:450.180000px;}
.y105{bottom:450.720000px;}
.y12f{bottom:450.900000px;}
.y3d{bottom:454.950150px;}
.y162{bottom:464.940000px;}
.yc1{bottom:465.480000px;}
.y1eb{bottom:466.380000px;}
.yd2{bottom:467.100000px;}
.y6d{bottom:467.264100px;}
.y1c8{bottom:467.280000px;}
.y28{bottom:468.900300px;}
.y2a{bottom:470.475150px;}
.y118{bottom:470.700000px;}
.y1a8{bottom:474.120000px;}
.y1ba{bottom:481.680000px;}
.y6c{bottom:482.264100px;}
.ya9{bottom:483.480000px;}
.y8a{bottom:486.180000px;}
.y1d8{bottom:487.080000px;}
.yf2{bottom:489.600000px;}
.y117{bottom:491.400000px;}
.y4d{bottom:493.200150px;}
.y6b{bottom:497.264100px;}
.y1c7{bottom:502.756020px;}
.yd{bottom:502.864502px;}
.y1ea{bottom:505.080000px;}
.y161{bottom:506.340000px;}
.yc0{bottom:506.880000px;}
.y1d7{bottom:507.780000px;}
.yd1{bottom:508.500000px;}
.y12e{bottom:510.120000px;}
.y4c{bottom:511.200150px;}
.y104{bottom:513.000000px;}
.y174{bottom:515.155680px;}
.y1a7{bottom:515.520000px;}
.yc{bottom:520.864502px;}
.y1c6{bottom:522.730800px;}
.y1b9{bottom:523.080000px;}
.ya8{bottom:524.880000px;}
.y6a{bottom:525.019950px;}
.y1e9{bottom:525.780000px;}
.y89{bottom:527.580000px;}
.y4b{bottom:529.200150px;}
.yf1{bottom:531.720000px;}
.y173{bottom:535.320000px;}
.yb{bottom:538.864499px;}
.y1c5{bottom:542.705580px;}
.y1d6{bottom:546.480000px;}
.y4a{bottom:547.200150px;}
.y160{bottom:547.740000px;}
.ybf{bottom:548.280000px;}
.yd0{bottom:549.900000px;}
.y116{bottom:550.800000px;}
.y47{bottom:551.244300px;}
.y69{bottom:552.775950px;}
.ya{bottom:556.864499px;}
.y1a6{bottom:556.920000px;}
.y1c4{bottom:562.680360px;}
.y49{bottom:565.200150px;}
.y172{bottom:565.745760px;}
.ya7{bottom:566.280000px;}
.y1d5{bottom:567.180000px;}
.y68{bottom:567.775950px;}
.y88{bottom:568.980000px;}
.y12d{bottom:572.580000px;}
.yf0{bottom:573.840000px;}
.y103{bottom:575.460000px;}
.y1c3{bottom:581.400180px;}
.y46{bottom:582.000150px;}
.y1b8{bottom:582.480000px;}
.y67{bottom:582.775950px;}
.y48{bottom:583.200150px;}
.y1e8{bottom:585.180000px;}
.y15f{bottom:589.140000px;}
.ybe{bottom:589.680000px;}
.y171{bottom:591.660000px;}
.ycf{bottom:591.840000px;}
.y115{bottom:592.200000px;}
.y1a5{bottom:598.320000px;}
.y1c2{bottom:600.120000px;}
.y1d4{bottom:605.880000px;}
.ye5{bottom:606.060000px;}
.ya6{bottom:607.680000px;}
.y3c{bottom:608.460300px;}
.y9e{bottom:608.760000px;}
.y87{bottom:610.380000px;}
.y66{bottom:610.531800px;}
.y12c{bottom:613.980000px;}
.yef{bottom:616.140000px;}
.y102{bottom:616.860000px;}
.y7d{bottom:623.160000px;}
.y1b7{bottom:623.880000px;}
.y65{bottom:625.531800px;}
.y1d3{bottom:626.580000px;}
.ye4{bottom:628.380000px;}
.y15e{bottom:630.540000px;}
.y9d{bottom:631.080000px;}
.y114{bottom:633.600000px;}
.y1c1{bottom:633.780000px;}
.yce{bottom:634.140000px;}
.y1a4{bottom:639.720000px;}
.y64{bottom:640.531800px;}
.y1e7{bottom:644.580000px;}
.y9{bottom:645.510000px;}
.ya5{bottom:649.080000px;}
.ye3{bottom:649.260000px;}
.y86{bottom:651.780000px;}
.y12b{bottom:655.380000px;}
.y3b{bottom:656.460300px;}
.yee{bottom:658.260000px;}
.y7c{bottom:661.860000px;}
.y1d2{bottom:665.280000px;}
.y8{bottom:666.771000px;}
.y63{bottom:668.287650px;}
.y15d{bottom:671.940000px;}
.ybd{bottom:672.480000px;}
.y113{bottom:674.820000px;}
.y4f{bottom:675.000300px;}
.ycd{bottom:675.720000px;}
.y1a3{bottom:681.120000px;}
.y1b6{bottom:683.280000px;}
.y62{bottom:683.287650px;}
.y1d1{bottom:685.980000px;}
.y9c{bottom:690.480000px;}
.y85{bottom:693.180000px;}
.y180{bottom:696.060000px;}
.y12a{bottom:696.780000px;}
.y192{bottom:697.140000px;}
.y61{bottom:698.287650px;}
.y101{bottom:699.660000px;}
.y3a{bottom:699.960300px;}
.y14b{bottom:700.380000px;}
.y1e6{bottom:703.980000px;}
.y4e{bottom:707.400300px;}
.y60{bottom:713.287650px;}
.y15c{bottom:713.340000px;}
.y7b{bottom:713.880000px;}
.yed{bottom:714.060000px;}
.y112{bottom:716.220000px;}
.ycc{bottom:717.660000px;}
.y1a2{bottom:722.520000px;}
.y1d0{bottom:724.680000px;}
.y7{bottom:726.298500px;}
.y17f{bottom:731.520000px;}
.y9b{bottom:731.880000px;}
.y191{bottom:732.958560px;}
.y84{bottom:734.580000px;}
.y14a{bottom:736.200000px;}
.y129{bottom:738.180000px;}
.y5f{bottom:741.043650px;}
.y100{bottom:741.060000px;}
.y1b5{bottom:742.680000px;}
.y7a{bottom:745.020000px;}
.y1cf{bottom:745.380000px;}
.y39{bottom:747.960300px;}
.y3{bottom:752.599495px;}
.y15b{bottom:754.740000px;}
.ybc{bottom:755.280000px;}
.y5e{bottom:756.043650px;}
.y111{bottom:757.620000px;}
.y37{bottom:759.600150px;}
.y1e5{bottom:763.380000px;}
.y1a1{bottom:763.920000px;}
.y9a{bottom:773.280000px;}
.ycb{bottom:773.460000px;}
.y79{bottom:775.980000px;}
.y36{bottom:777.600150px;}
.y128{bottom:779.580000px;}
.yff{bottom:782.460000px;}
.y5d{bottom:783.799500px;}
.y1ce{bottom:784.080000px;}
.y35{bottom:795.600150px;}
.y38{bottom:795.960150px;}
.y15a{bottom:796.140000px;}
.ybb{bottom:796.680000px;}
.y5c{bottom:798.799500px;}
.y110{bottom:799.020000px;}
.y1b4{bottom:802.080000px;}
.y1cd{bottom:804.780000px;}
.y1a0{bottom:805.320000px;}
.y78{bottom:807.120000px;}
.y34{bottom:813.600150px;}
.y5b{bottom:813.799500px;}
.y99{bottom:814.680000px;}
.y83{bottom:817.380000px;}
.y127{bottom:820.980000px;}
.y1f8{bottom:822.780000px;}
.yfe{bottom:824.580000px;}
.y159{bottom:837.540000px;}
.y77{bottom:838.080000px;}
.y10f{bottom:840.420000px;}
.y5a{bottom:841.555350px;}
.y1b3{bottom:843.480000px;}
.y19f{bottom:846.720000px;}
.y33{bottom:849.600150px;}
.y170{bottom:854.640000px;}
.y98{bottom:856.080000px;}
.y59{bottom:856.555350px;}
.y82{bottom:858.780000px;}
.y126{bottom:862.380000px;}
.y1cc{bottom:864.180000px;}
.yfd{bottom:866.520000px;}
.y76{bottom:869.220000px;}
.y16f{bottom:876.240000px;}
.y2{bottom:879.369000px;}
.yba{bottom:879.480000px;}
.y1f7{bottom:882.180000px;}
.y58{bottom:884.311350px;}
.y19e{bottom:888.120000px;}
.y158{bottom:896.760000px;}
.y97{bottom:897.480000px;}
.y16e{bottom:898.560000px;}
.y57{bottom:899.311350px;}
.y10e{bottom:899.820000px;}
.y75{bottom:900.180000px;}
.y45{bottom:901.200300px;}
.y1b2{bottom:902.880000px;}
.y125{bottom:903.780000px;}
.y56{bottom:914.311350px;}
.yb9{bottom:920.880000px;}
.y1cb{bottom:923.580000px;}
.yfb{bottom:926.640000px;}
.y74{bottom:931.320000px;}
.y96{bottom:938.880000px;}
.y32{bottom:939.600150px;}
.y81{bottom:941.580000px;}
.y55{bottom:942.067200px;}
.y1b1{bottom:944.280000px;}
.y124{bottom:945.180000px;}
.y19d{bottom:947.520000px;}
.yfa{bottom:950.940000px;}
.yfc{bottom:953.460000px;}
.y31{bottom:957.600150px;}
.y157{bottom:959.220000px;}
.y73{bottom:962.280000px;}
.y1{bottom:966.726000px;}
.y54{bottom:969.823200px;}
.y30{bottom:975.600150px;}
.yf9{bottom:978.480000px;}
.y95{bottom:980.280000px;}
.y80{bottom:982.980000px;}
.y53{bottom:984.823200px;}
.y123{bottom:986.059800px;}
.y72{bottom:993.420000px;}
.y2f{bottom:993.600150px;}
.y149{bottom:996.840000px;}
.y52{bottom:999.823200px;}
.y190{bottom:1001.700000px;}
.yb8{bottom:1003.680000px;}
.y122{bottom:1006.034580px;}
.y2e{bottom:1011.600150px;}
.y51{bottom:1014.823200px;}
.y17e{bottom:1018.260000px;}
.y148{bottom:1018.620000px;}
.y94{bottom:1021.680000px;}
.y13c{bottom:1022.220000px;}
.y71{bottom:1024.380000px;}
.y121{bottom:1026.009360px;}
.y147{bottom:1040.760000px;}
.y1e4{bottom:1042.380000px;}
.y13b{bottom:1042.740000px;}
.y50{bottom:1044.823200px;}
.y120{bottom:1045.984140px;}
.y2d{bottom:1047.600150px;}
.y70{bottom:1063.080000px;}
.y13a{bottom:1063.260000px;}
.y2c{bottom:1065.600150px;}
.y11f{bottom:1065.958920px;}
.y6e{bottom:1118.700000px;}
.y7e{bottom:1120.860000px;}
.h1e{height:17.280000px;}
.h1d{height:19.080000px;}
.h1b{height:28.324688px;}
.h7{height:32.130000px;}
.h22{height:35.640000px;}
.h17{height:35.991211px;}
.h12{height:38.400000px;}
.h23{height:39.313477px;}
.h25{height:39.830273px;}
.h13{height:42.229687px;}
.ha{height:43.200000px;}
.h14{height:43.536094px;}
.h6{height:45.900000px;}
.h19{height:46.158750px;}
.h18{height:47.988281px;}
.he{height:48.000000px;}
.h3{height:48.195000px;}
.h24{height:48.256875px;}
.h21{height:50.941406px;}
.h15{height:52.417969px;}
.h16{height:52.453125px;}
.h20{height:53.821406px;}
.h2{height:55.080000px;}
.h9{height:55.200000px;}
.hd{height:57.600000px;}
.h1a{height:58.903594px;}
.h11{height:67.200000px;}
.h10{height:76.800000px;}
.h5{height:78.030000px;}
.hc{height:86.400000px;}
.h1c{height:87.890625px;}
.h4{height:119.055004px;}
.hb{height:124.800000px;}
.hf{height:134.400000px;}
.h1f{height:829.980000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:215.278500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x6{left:-864.000000px;}
.x0{left:0.000000px;}
.x2b{left:10.800000px;}
.x9{left:19.653750px;}
.x8{left:32.937900px;}
.xb{left:43.581300px;}
.x5{left:44.644200px;}
.x47{left:54.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:108.000000px;}
.x42{left:109.080000px;}
.x2c{left:111.060000px;}
.x3b{left:112.500000px;}
.x2f{left:115.740000px;}
.x13{left:118.260000px;}
.x3a{left:124.920000px;}
.x12{left:126.000000px;}
.xc{left:128.250000px;}
.x27{left:132.120000px;}
.x33{left:135.000000px;}
.x38{left:139.504320px;}
.x15{left:144.000000px;}
.x3e{left:153.900000px;}
.x45{left:162.000000px;}
.x1f{left:169.740000px;}
.xa{left:170.802000px;}
.x34{left:172.800000px;}
.x4{left:203.484001px;}
.xf{left:208.505250px;}
.x7{left:229.500000px;}
.x24{left:254.700000px;}
.x20{left:270.720000px;}
.x23{left:275.220000px;}
.x2d{left:284.040000px;}
.x28{left:288.000000px;}
.x16{left:324.000000px;}
.x18{left:347.940000px;}
.x35{left:350.640000px;}
.x30{left:354.780000px;}
.x19{left:383.040000px;}
.x37{left:384.480000px;}
.x17{left:387.000000px;}
.x1c{left:389.340000px;}
.x1a{left:391.860000px;}
.x44{left:397.440000px;}
.x1b{left:403.020000px;}
.x11{left:407.340000px;}
.x41{left:412.920000px;}
.x22{left:450.540000px;}
.x3{left:454.959000px;}
.x10{left:459.000000px;}
.xe{left:486.000000px;}
.x1d{left:556.740000px;}
.x1e{left:564.480000px;}
.x2a{left:688.860000px;}
.x14{left:740.160000px;}
.x3c{left:768.064320px;}
.x3d{left:777.064320px;}
.x39{left:783.542880px;}
.x25{left:785.160000px;}
.x3f{left:786.787200px;}
.x31{left:789.660000px;}
.x40{left:791.460000px;}
.x36{left:794.700000px;}
.x32{left:796.500000px;}
.x21{left:805.680000px;}
.x26{left:810.000000px;}
.x2e{left:821.160000px;}
.x43{left:826.740000px;}
.x29{left:859.500000px;}
.x4a{left:937.653750px;}
.x49{left:950.937900px;}
.x46{left:962.644200px;}
.x4b{left:1088.802000px;}
.x48{left:1147.500000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.800000pt;}
.v7{vertical-align:-5.760000pt;}
.v9{vertical-align:-2.560000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v4{vertical-align:12.800000pt;}
.v8{vertical-align:15.360000pt;}
.v1{vertical-align:21.120000pt;}
.ls5f{letter-spacing:-3.930880pt;}
.ls83{letter-spacing:-3.648000pt;}
.ls1{letter-spacing:-2.773333pt;}
.ls4a{letter-spacing:-2.368000pt;}
.ls9f{letter-spacing:-1.728000pt;}
.ls7b{letter-spacing:-1.536000pt;}
.ls89{letter-spacing:-1.088000pt;}
.ls16{letter-spacing:-0.849920pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.768000pt;}
.lsa6{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls8a{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.281600pt;}
.ls34{letter-spacing:-0.265600pt;}
.ls7a{letter-spacing:-0.256000pt;}
.ls91{letter-spacing:-0.235520pt;}
.ls1a{letter-spacing:-0.212480pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls90{letter-spacing:-0.117760pt;}
.ls18{letter-spacing:-0.106240pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls8f{letter-spacing:-0.058880pt;}
.ls19{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls95{letter-spacing:0.015936pt;}
.ls7f{letter-spacing:0.053120pt;}
.ls12{letter-spacing:0.056320pt;}
.lsa2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls42{letter-spacing:0.192000pt;}
.ls4d{letter-spacing:0.212480pt;}
.ls4e{letter-spacing:0.227200pt;}
.ls8e{letter-spacing:0.239040pt;}
.ls4{letter-spacing:0.256000pt;}
.ls87{letter-spacing:0.265600pt;}
.ls40{letter-spacing:0.272640pt;}
.ls9b{letter-spacing:0.302784pt;}
.ls92{letter-spacing:0.318720pt;}
.ls38{letter-spacing:0.320000pt;}
.ls5e{letter-spacing:0.329344pt;}
.ls8d{letter-spacing:0.339968pt;}
.ls7d{letter-spacing:0.350592pt;}
.ls14{letter-spacing:0.377152pt;}
.ls6c{letter-spacing:0.384000pt;}
.ls45{letter-spacing:0.408960pt;}
.ls37{letter-spacing:0.448000pt;}
.ls7c{letter-spacing:0.531200pt;}
.ls64{letter-spacing:0.545280pt;}
.ls79{letter-spacing:0.584320pt;}
.ls13{letter-spacing:0.621504pt;}
.ls62{letter-spacing:0.636160pt;}
.ls3e{letter-spacing:0.640000pt;}
.ls4b{letter-spacing:0.755200pt;}
.ls68{letter-spacing:0.768000pt;}
.ls33{letter-spacing:0.849920pt;}
.ls77{letter-spacing:0.903040pt;}
.ls5c{letter-spacing:0.960000pt;}
.ls3d{letter-spacing:1.088000pt;}
.ls39{letter-spacing:1.152000pt;}
.ls73{letter-spacing:1.221760pt;}
.ls76{letter-spacing:1.248320pt;}
.ls75{letter-spacing:1.258944pt;}
.ls78{letter-spacing:1.269568pt;}
.ls74{letter-spacing:1.274880pt;}
.ls57{letter-spacing:1.280000pt;}
.ls9a{letter-spacing:1.301440pt;}
.ls69{letter-spacing:1.408000pt;}
.ls94{letter-spacing:1.530880pt;}
.ls5d{letter-spacing:1.600000pt;}
.ls88{letter-spacing:1.859200pt;}
.ls2e{letter-spacing:2.041600pt;}
.ls3{letter-spacing:2.048000pt;}
.ls86{letter-spacing:2.347904pt;}
.ls5{letter-spacing:2.688000pt;}
.ls5a{letter-spacing:3.096320pt;}
.ls48{letter-spacing:3.146240pt;}
.ls11{letter-spacing:3.321600pt;}
.ls84{letter-spacing:3.328000pt;}
.ls3a{letter-spacing:3.686400pt;}
.ls50{letter-spacing:3.736320pt;}
.ls61{letter-spacing:3.747200pt;}
.ls63{letter-spacing:3.751040pt;}
.ls66{letter-spacing:3.754880pt;}
.ls81{letter-spacing:3.968000pt;}
.ls6b{letter-spacing:4.083200pt;}
.ls58{letter-spacing:4.326400pt;}
.lsa1{letter-spacing:4.608000pt;}
.ls8c{letter-spacing:4.769280pt;}
.ls6e{letter-spacing:5.104640pt;}
.ls28{letter-spacing:5.248000pt;}
.ls9c{letter-spacing:5.774144pt;}
.ls97{letter-spacing:5.881600pt;}
.ls6a{letter-spacing:5.888000pt;}
.ls26{letter-spacing:6.521600pt;}
.ls21{letter-spacing:6.528000pt;}
.ls22{letter-spacing:7.168000pt;}
.ls4c{letter-spacing:7.808000pt;}
.ls7e{letter-spacing:8.286720pt;}
.ls96{letter-spacing:8.441600pt;}
.lsa4{letter-spacing:8.448000pt;}
.ls20{letter-spacing:9.088000pt;}
.lsd{letter-spacing:9.728000pt;}
.ls23{letter-spacing:10.368000pt;}
.ls54{letter-spacing:10.496000pt;}
.ls1d{letter-spacing:10.880000pt;}
.ls99{letter-spacing:11.001600pt;}
.ls9d{letter-spacing:11.008000pt;}
.ls55{letter-spacing:11.200000pt;}
.ls30{letter-spacing:11.648000pt;}
.ls32{letter-spacing:12.111360pt;}
.ls71{letter-spacing:12.148544pt;}
.ls70{letter-spacing:12.153856pt;}
.ls6f{letter-spacing:12.159168pt;}
.ls1c{letter-spacing:12.288000pt;}
.ls3c{letter-spacing:12.431360pt;}
.ls72{letter-spacing:12.748800pt;}
.ls6{letter-spacing:12.928000pt;}
.ls2d{letter-spacing:13.568000pt;}
.ls2f{letter-spacing:14.208000pt;}
.ls52{letter-spacing:14.272000pt;}
.lsa3{letter-spacing:14.848000pt;}
.lse{letter-spacing:15.488000pt;}
.ls5b{letter-spacing:15.680000pt;}
.ls59{letter-spacing:15.703040pt;}
.ls85{letter-spacing:16.000000pt;}
.ls1e{letter-spacing:16.128000pt;}
.ls98{letter-spacing:16.250880pt;}
.lsa0{letter-spacing:16.768000pt;}
.ls24{letter-spacing:17.408000pt;}
.ls67{letter-spacing:17.728000pt;}
.ls51{letter-spacing:17.766400pt;}
.ls4f{letter-spacing:17.816320pt;}
.ls60{letter-spacing:17.827200pt;}
.ls65{letter-spacing:17.834880pt;}
.ls6d{letter-spacing:18.048000pt;}
.ls36{letter-spacing:18.112000pt;}
.ls53{letter-spacing:18.880000pt;}
.ls3f{letter-spacing:19.008000pt;}
.ls2b{letter-spacing:19.328000pt;}
.ls2a{letter-spacing:19.968000pt;}
.ls35{letter-spacing:20.966400pt;}
.ls80{letter-spacing:21.888000pt;}
.ls1f{letter-spacing:22.528000pt;}
.ls9e{letter-spacing:23.161600pt;}
.ls82{letter-spacing:23.168000pt;}
.lsa5{letter-spacing:23.808000pt;}
.ls25{letter-spacing:24.448000pt;}
.lsa8{letter-spacing:25.088000pt;}
.lsa7{letter-spacing:25.728000pt;}
.ls1b{letter-spacing:27.008000pt;}
.ls8b{letter-spacing:32.266240pt;}
.ls31{letter-spacing:35.968000pt;}
.ls29{letter-spacing:36.608000pt;}
.ls93{letter-spacing:43.806720pt;}
.ls47{letter-spacing:63.872000pt;}
.ls46{letter-spacing:66.487040pt;}
.ls44{letter-spacing:74.843520pt;}
.ls43{letter-spacing:83.163520pt;}
.ls41{letter-spacing:116.443520pt;}
.ls56{letter-spacing:129.024000pt;}
.ls2c{letter-spacing:752.343040pt;}
.ls49{letter-spacing:770.560000pt;}
.ls3b{letter-spacing:903.680000pt;}
.ws5b{word-spacing:-64.000000pt;}
.ws70{word-spacing:-63.808000pt;}
.ws5c{word-spacing:-45.440000pt;}
.ws7a{word-spacing:-25.021440pt;}
.ws6f{word-spacing:-24.399360pt;}
.ws7d{word-spacing:-18.176000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws7b{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.920000pt;}
.wsaf{word-spacing:-17.856000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws19{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.664000pt;}
.ws39{word-spacing:-17.600000pt;}
.ws80{word-spacing:-17.536000pt;}
.ws3a{word-spacing:-17.408000pt;}
.ws7c{word-spacing:-17.344000pt;}
.ws54{word-spacing:-17.280000pt;}
.wsb2{word-spacing:-17.152000pt;}
.wsb3{word-spacing:-17.088000pt;}
.ws7e{word-spacing:-17.024000pt;}
.wsb4{word-spacing:-16.960000pt;}
.ws7f{word-spacing:-16.512000pt;}
.ws29{word-spacing:-15.713280pt;}
.ws2a{word-spacing:-15.656960pt;}
.ws2b{word-spacing:-15.375360pt;}
.ws82{word-spacing:-15.351680pt;}
.ws83{word-spacing:-15.298560pt;}
.ws87{word-spacing:-14.820480pt;}
.wsb0{word-spacing:-14.767360pt;}
.ws81{word-spacing:-14.714240pt;}
.ws2c{word-spacing:-14.661120pt;}
.ws6b{word-spacing:-14.554880pt;}
.ws64{word-spacing:-14.501760pt;}
.ws5d{word-spacing:-14.080000pt;}
.ws72{word-spacing:-13.312000pt;}
.ws55{word-spacing:-11.920640pt;}
.ws6e{word-spacing:-10.836480pt;}
.wsa6{word-spacing:-10.752000pt;}
.ws1{word-spacing:-9.936000pt;}
.ws56{word-spacing:-9.607680pt;}
.ws2{word-spacing:-8.832000pt;}
.ws73{word-spacing:-8.320000pt;}
.ws61{word-spacing:-8.192000pt;}
.ws1e{word-spacing:-4.608000pt;}
.ws95{word-spacing:-4.352000pt;}
.ws12{word-spacing:-3.968000pt;}
.wsa4{word-spacing:-3.771520pt;}
.ws8c{word-spacing:-3.584000pt;}
.ws71{word-spacing:-3.520000pt;}
.ws32{word-spacing:-3.328000pt;}
.ws76{word-spacing:-3.200000pt;}
.ws6a{word-spacing:-3.134080pt;}
.ws24{word-spacing:-2.688000pt;}
.ws75{word-spacing:-2.560000pt;}
.ws67{word-spacing:-2.496640pt;}
.ws25{word-spacing:-2.304000pt;}
.ws90{word-spacing:-2.240000pt;}
.ws14{word-spacing:-2.048000pt;}
.ws68{word-spacing:-1.859200pt;}
.ws8f{word-spacing:-1.728000pt;}
.ws22{word-spacing:-1.408000pt;}
.ws89{word-spacing:-1.221760pt;}
.ws74{word-spacing:-1.024000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws8d{word-spacing:-0.704000pt;}
.wsa5{word-spacing:-0.640000pt;}
.ws59{word-spacing:-0.584320pt;}
.ws94{word-spacing:-0.531200pt;}
.wsa3{word-spacing:-0.371840pt;}
.ws10{word-spacing:-0.256000pt;}
.ws9a{word-spacing:-0.212480pt;}
.ws9c{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.128000pt;}
.wsb1{word-spacing:-0.106240pt;}
.ws86{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.ws36{word-spacing:0.053120pt;}
.ws66{word-spacing:0.064000pt;}
.ws69{word-spacing:0.106240pt;}
.wsf{word-spacing:0.128000pt;}
.ws38{word-spacing:0.159360pt;}
.ws97{word-spacing:0.176640pt;}
.ws18{word-spacing:0.192000pt;}
.wsa7{word-spacing:0.212480pt;}
.ws5a{word-spacing:0.265600pt;}
.ws57{word-spacing:0.320000pt;}
.ws17{word-spacing:0.384000pt;}
.ws98{word-spacing:0.412160pt;}
.ws4e{word-spacing:0.448000pt;}
.ws28{word-spacing:0.512000pt;}
.ws96{word-spacing:0.576000pt;}
.ws27{word-spacing:0.640000pt;}
.ws37{word-spacing:0.690560pt;}
.ws33{word-spacing:0.768000pt;}
.wse{word-spacing:0.832000pt;}
.ws92{word-spacing:1.088000pt;}
.ws4d{word-spacing:1.152000pt;}
.ws77{word-spacing:1.280000pt;}
.ws9f{word-spacing:1.328000pt;}
.wsac{word-spacing:1.408000pt;}
.ws34{word-spacing:1.434240pt;}
.ws91{word-spacing:1.536000pt;}
.wsad{word-spacing:1.728000pt;}
.wsb{word-spacing:1.792000pt;}
.ws79{word-spacing:1.965440pt;}
.ws78{word-spacing:2.124800pt;}
.ws62{word-spacing:2.368000pt;}
.wsa{word-spacing:2.432000pt;}
.ws21{word-spacing:3.072000pt;}
.wsc{word-spacing:3.200000pt;}
.ws23{word-spacing:3.712000pt;}
.wsa2{word-spacing:3.930880pt;}
.ws31{word-spacing:4.352000pt;}
.ws9e{word-spacing:4.568320pt;}
.ws1d{word-spacing:4.992000pt;}
.ws35{word-spacing:5.205760pt;}
.ws65{word-spacing:5.376000pt;}
.ws7{word-spacing:5.632000pt;}
.ws99{word-spacing:5.843200pt;}
.ws1c{word-spacing:6.272000pt;}
.ws30{word-spacing:6.912000pt;}
.wsa8{word-spacing:7.118080pt;}
.ws8e{word-spacing:7.360000pt;}
.ws4f{word-spacing:7.552000pt;}
.ws49{word-spacing:7.680000pt;}
.wsa9{word-spacing:7.755520pt;}
.wsd{word-spacing:8.192000pt;}
.ws1f{word-spacing:8.832000pt;}
.ws8a{word-spacing:9.030400pt;}
.ws6d{word-spacing:9.216000pt;}
.ws6c{word-spacing:9.280000pt;}
.ws20{word-spacing:9.472000pt;}
.wsaa{word-spacing:9.667840pt;}
.ws45{word-spacing:10.112000pt;}
.ws3f{word-spacing:10.752000pt;}
.ws8{word-spacing:11.392000pt;}
.ws3e{word-spacing:12.032000pt;}
.ws11{word-spacing:12.672000pt;}
.ws1a{word-spacing:12.800000pt;}
.ws9b{word-spacing:12.992000pt;}
.ws1b{word-spacing:13.312000pt;}
.ws47{word-spacing:13.952000pt;}
.ws46{word-spacing:14.080000pt;}
.wsa1{word-spacing:14.129920pt;}
.ws52{word-spacing:14.208000pt;}
.wsab{word-spacing:14.272000pt;}
.ws2d{word-spacing:14.592000pt;}
.ws88{word-spacing:14.767360pt;}
.ws26{word-spacing:15.232000pt;}
.ws40{word-spacing:15.872000pt;}
.ws63{word-spacing:16.000000pt;}
.ws2f{word-spacing:16.512000pt;}
.ws93{word-spacing:16.732800pt;}
.ws2e{word-spacing:17.152000pt;}
.ws84{word-spacing:17.792000pt;}
.ws9d{word-spacing:18.432000pt;}
.ws85{word-spacing:18.944000pt;}
.ws41{word-spacing:19.072000pt;}
.ws53{word-spacing:19.712000pt;}
.wsa0{word-spacing:19.920000pt;}
.wsae{word-spacing:20.352000pt;}
.ws8b{word-spacing:20.992000pt;}
.ws42{word-spacing:21.632000pt;}
.ws43{word-spacing:22.272000pt;}
.ws44{word-spacing:22.656000pt;}
.ws4c{word-spacing:22.912000pt;}
.ws48{word-spacing:24.192000pt;}
.ws13{word-spacing:24.832000pt;}
.ws9{word-spacing:25.472000pt;}
.ws3d{word-spacing:26.112000pt;}
.ws3b{word-spacing:26.752000pt;}
.ws3c{word-spacing:27.392000pt;}
.ws50{word-spacing:30.592000pt;}
.ws4b{word-spacing:32.512000pt;}
.ws4a{word-spacing:33.152000pt;}
.ws58{word-spacing:35.712000pt;}
.ws51{word-spacing:36.352000pt;}
.ws60{word-spacing:52.416000pt;}
.ws5e{word-spacing:90.624000pt;}
.ws5f{word-spacing:92.672000pt;}
._23{margin-left:-15.968000pt;}
._1c{margin-left:-12.800000pt;}
._18{margin-left:-10.432000pt;}
._5{margin-left:-9.358933pt;}
._a{margin-left:-7.648000pt;}
._17{margin-left:-6.490667pt;}
._2{margin-left:-4.853333pt;}
._3{margin-left:-3.840000pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.104000pt;}
._4{width:1.493333pt;}
._7{width:2.875200pt;}
._6{width:3.793067pt;}
._b{width:4.768000pt;}
._10{width:6.416000pt;}
._14{width:8.208000pt;}
._21{width:9.194667pt;}
._c{width:10.229333pt;}
._f{width:11.520000pt;}
._8{width:13.226667pt;}
._11{width:14.256000pt;}
._d{width:15.317333pt;}
._16{width:16.336000pt;}
._1d{width:18.578880pt;}
._12{width:21.392000pt;}
._13{width:22.640000pt;}
._9{width:24.560000pt;}
._1e{width:27.973333pt;}
._1f{width:30.866453pt;}
._15{width:32.522667pt;}
._19{width:106.677120pt;}
._1b{width:119.168000pt;}
._1a{width:161.216000pt;}
._e{width:750.208000pt;}
._22{width:752.000000pt;}
._20{width:753.241600pt;}
.fs10{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fsf{font-size:42.880000pt;}
.fs11{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:56.320000pt;}
.fs12{font-size:58.880000pt;}
.fs5{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:138.666667pt;}
.fs9{font-size:149.333333pt;}
.yd8{bottom:-4.160000pt;}
.yd6{bottom:-2.560000pt;}
.y0{bottom:0.000000pt;}
.y11e{bottom:20.480000pt;}
.y6{bottom:31.933340pt;}
.y27{bottom:36.000000pt;}
.y23{bottom:47.395867pt;}
.y26{bottom:50.666667pt;}
.y6f{bottom:50.880000pt;}
.y7f{bottom:52.640000pt;}
.y5{bottom:59.133337pt;}
.y25{bottom:65.333333pt;}
.y24{bottom:80.000000pt;}
.y4{bottom:86.333337pt;}
.y16d{bottom:98.854560pt;}
.y18f{bottom:98.864480pt;}
.y11c{bottom:98.870080pt;}
.ye2{bottom:98.875040pt;}
.y93{bottom:100.960000pt;}
.yca{bottom:102.880000pt;}
.y10d{bottom:106.080000pt;}
.y137{bottom:106.400000pt;}
.y17b{bottom:112.983200pt;}
.y1f6{bottom:113.760000pt;}
.y16c{bottom:114.219520pt;}
.y18e{bottom:114.229440pt;}
.yc9{bottom:114.235040pt;}
.y17d{bottom:116.800000pt;}
.ye1{bottom:118.240000pt;}
.yb7{bottom:121.600000pt;}
.y22{bottom:123.790666pt;}
.y1b0{bottom:127.040000pt;}
.y16b{bottom:129.584480pt;}
.y18d{bottom:129.594400pt;}
.y17a{bottom:130.738560pt;}
.ye0{bottom:132.160000pt;}
.yc8{bottom:133.600000pt;}
.yb1{bottom:135.360000pt;}
.yea{bottom:137.584480pt;}
.y92{bottom:137.760000pt;}
.y19c{bottom:139.040000pt;}
.y17c{bottom:140.320000pt;}
.y10c{bottom:143.040000pt;}
.y136{bottom:143.200000pt;}
.y1c0{bottom:143.520000pt;}
.y16a{bottom:144.790080pt;}
.yc7{bottom:147.360000pt;}
.y179{bottom:148.493920pt;}
.y18c{bottom:148.800000pt;}
.y156{bottom:149.440000pt;}
.y1e3{bottom:150.560000pt;}
.ye9{bottom:152.949440pt;}
.y146{bottom:153.600000pt;}
.y169{bottom:160.155040pt;}
.y18b{bottom:162.720000pt;}
.y1af{bottom:163.840000pt;}
.y178{bottom:166.249280pt;}
.y1f5{bottom:166.560000pt;}
.ye8{bottom:168.155040pt;}
.y1e2{bottom:168.960000pt;}
.ya4{bottom:169.760000pt;}
.yb0{bottom:172.160000pt;}
.yb6{bottom:174.400000pt;}
.y91{bottom:174.560000pt;}
.y19{bottom:175.052000pt;}
.y19b{bottom:175.840000pt;}
.y11d{bottom:176.160000pt;}
.ydf{bottom:176.480000pt;}
.y168{bottom:179.520000pt;}
.y10b{bottom:179.840000pt;}
.y135{bottom:180.000000pt;}
.ye7{bottom:183.520000pt;}
.y177{bottom:184.004640pt;}
.y1f4{bottom:184.960000pt;}
.y21{bottom:186.238666pt;}
.y155{bottom:186.240000pt;}
.y18{bottom:186.252002pt;}
.y145{bottom:190.400000pt;}
.yc6{bottom:192.960000pt;}
.y167{bottom:193.440000pt;}
.yec{bottom:195.200000pt;}
.y1bf{bottom:196.320000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ye6{bottom:197.600000pt;}
.y11b{bottom:199.040000pt;}
.y1ae{bottom:200.640000pt;}
.y176{bottom:201.760000pt;}
.y1e1{bottom:203.360000pt;}
.y189{bottom:204.000000pt;}
.ya3{bottom:205.933280pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yaf{bottom:208.960000pt;}
.yb5{bottom:211.200000pt;}
.y90{bottom:211.360000pt;}
.yf8{bottom:212.320000pt;}
.y19a{bottom:212.640000pt;}
.yde{bottom:213.280000pt;}
.y10a{bottom:216.640000pt;}
.y134{bottom:216.800000pt;}
.y1f3{bottom:219.360000pt;}
.y11a{bottom:220.800000pt;}
.y1e0{bottom:221.760000pt;}
.y154{bottom:223.040000pt;}
.ya2{bottom:223.529280pt;}
.y188{bottom:224.347840pt;}
.y144{bottom:227.200000pt;}
.y166{bottom:229.280000pt;}
.yc5{bottom:229.760000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y175{bottom:231.833600pt;}
.yeb{bottom:232.000000pt;}
.y1ad{bottom:237.440000pt;}
.y1f2{bottom:237.760000pt;}
.y1df{bottom:240.160000pt;}
.ya1{bottom:241.284640pt;}
.y187{bottom:242.103200pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yae{bottom:245.760000pt;}
.yb4{bottom:248.000000pt;}
.y8f{bottom:248.160000pt;}
.y1be{bottom:248.960000pt;}
.y199{bottom:249.440000pt;}
.yf7{bottom:249.600000pt;}
.y18a{bottom:250.720000pt;}
.y1c{bottom:253.438668pt;}
.y109{bottom:253.440000pt;}
.y13{bottom:253.451999pt;}
.y133{bottom:253.600000pt;}
.ya0{bottom:259.040000pt;}
.y186{bottom:259.858560pt;}
.y153{bottom:262.107840pt;}
.y143{bottom:264.000000pt;}
.y165{bottom:266.080000pt;}
.yc4{bottom:266.560000pt;}
.ydd{bottom:268.000000pt;}
.y1f1{bottom:272.160000pt;}
.y9f{bottom:273.920000pt;}
.y1ac{bottom:274.240000pt;}
.y1de{bottom:274.560000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y185{bottom:277.613920pt;}
.y152{bottom:279.863200pt;}
.yad{bottom:282.560000pt;}
.yb3{bottom:284.640000pt;}
.y8e{bottom:284.960000pt;}
.y1bd{bottom:285.760000pt;}
.yd5{bottom:285.920000pt;}
.ydc{bottom:286.720000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yf6{bottom:287.200000pt;}
.y108{bottom:290.240000pt;}
.y132{bottom:290.400000pt;}
.y1f0{bottom:290.560000pt;}
.y1dd{bottom:292.960000pt;}
.y198{bottom:293.778560pt;}
.y184{bottom:295.369280pt;}
.yd4{bottom:296.160000pt;}
.y151{bottom:297.618560pt;}
.y142{bottom:300.338560pt;}
.yd7{bottom:302.880000pt;}
.yc3{bottom:303.360000pt;}
.y44{bottom:303.600133pt;}
.ydb{bottom:306.880000pt;}
.y10{bottom:309.452000pt;}
.y1ab{bottom:311.040000pt;}
.y197{bottom:311.533920pt;}
.y183{bottom:313.124640pt;}
.y139{bottom:313.760000pt;}
.y150{bottom:315.373920pt;}
.y43{bottom:318.000133pt;}
.y141{bottom:318.093920pt;}
.yd9{bottom:318.240000pt;}
.yac{bottom:319.360000pt;}
.y8d{bottom:321.760000pt;}
.yf5{bottom:324.640000pt;}
.y1ef{bottom:324.960000pt;}
.y107{bottom:327.040000pt;}
.y131{bottom:327.200000pt;}
.y1dc{bottom:327.360000pt;}
.yda{bottom:327.520000pt;}
.y196{bottom:329.289280pt;}
.y182{bottom:330.880000pt;}
.y138{bottom:332.320000pt;}
.y42{bottom:332.400133pt;}
.y14f{bottom:333.129280pt;}
.y140{bottom:335.849280pt;}
.y1bc{bottom:338.560000pt;}
.y164{bottom:339.680000pt;}
.yb2{bottom:340.160000pt;}
.y1ee{bottom:343.360000pt;}
.yf{bottom:343.809333pt;}
.y1db{bottom:345.760000pt;}
.y41{bottom:346.800133pt;}
.y195{bottom:347.044640pt;}
.y1aa{bottom:347.840000pt;}
.y14e{bottom:350.884640pt;}
.y13f{bottom:353.604640pt;}
.yab{bottom:356.160000pt;}
.y8c{bottom:358.560000pt;}
.y40{bottom:361.200133pt;}
.yf4{bottom:361.600000pt;}
.y1ed{bottom:361.760000pt;}
.yd3{bottom:362.560000pt;}
.ye{bottom:362.706666pt;}
.y1ca{bottom:363.520000pt;}
.y106{bottom:363.840000pt;}
.y130{bottom:364.000000pt;}
.y194{bottom:364.800000pt;}
.y14d{bottom:368.640000pt;}
.y13e{bottom:371.360000pt;}
.y29{bottom:371.466933pt;}
.y1bb{bottom:375.360000pt;}
.y3f{bottom:375.600133pt;}
.y2b{bottom:376.365467pt;}
.y163{bottom:376.480000pt;}
.y181{bottom:376.797440pt;}
.yc2{bottom:376.960000pt;}
.y1da{bottom:380.160000pt;}
.y1c9{bottom:381.920000pt;}
.y1a9{bottom:384.640000pt;}
.y3e{bottom:390.000133pt;}
.y14c{bottom:390.560000pt;}
.yaa{bottom:392.960000pt;}
.y13d{bottom:393.280000pt;}
.y193{bottom:394.880000pt;}
.y8b{bottom:395.360000pt;}
.y1ec{bottom:396.160000pt;}
.yf3{bottom:398.400000pt;}
.y1d9{bottom:398.560000pt;}
.y119{bottom:400.160000pt;}
.y105{bottom:400.640000pt;}
.y12f{bottom:400.800000pt;}
.y3d{bottom:404.400133pt;}
.y162{bottom:413.280000pt;}
.yc1{bottom:413.760000pt;}
.y1eb{bottom:414.560000pt;}
.yd2{bottom:415.200000pt;}
.y6d{bottom:415.345867pt;}
.y1c8{bottom:415.360000pt;}
.y28{bottom:416.800267pt;}
.y2a{bottom:418.200133pt;}
.y118{bottom:418.400000pt;}
.y1a8{bottom:421.440000pt;}
.y1ba{bottom:428.160000pt;}
.y6c{bottom:428.679200pt;}
.ya9{bottom:429.760000pt;}
.y8a{bottom:432.160000pt;}
.y1d8{bottom:432.960000pt;}
.yf2{bottom:435.200000pt;}
.y117{bottom:436.800000pt;}
.y4d{bottom:438.400133pt;}
.y6b{bottom:442.012533pt;}
.y1c7{bottom:446.894240pt;}
.yd{bottom:446.990669pt;}
.y1ea{bottom:448.960000pt;}
.y161{bottom:450.080000pt;}
.yc0{bottom:450.560000pt;}
.y1d7{bottom:451.360000pt;}
.yd1{bottom:452.000000pt;}
.y12e{bottom:453.440000pt;}
.y4c{bottom:454.400133pt;}
.y104{bottom:456.000000pt;}
.y174{bottom:457.916160pt;}
.y1a7{bottom:458.240000pt;}
.yc{bottom:462.990669pt;}
.y1c6{bottom:464.649600pt;}
.y1b9{bottom:464.960000pt;}
.ya8{bottom:466.560000pt;}
.y6a{bottom:466.684400pt;}
.y1e9{bottom:467.360000pt;}
.y89{bottom:468.960000pt;}
.y4b{bottom:470.400133pt;}
.yf1{bottom:472.640000pt;}
.y173{bottom:475.840000pt;}
.yb{bottom:478.990666pt;}
.y1c5{bottom:482.404960pt;}
.y1d6{bottom:485.760000pt;}
.y4a{bottom:486.400133pt;}
.y160{bottom:486.880000pt;}
.ybf{bottom:487.360000pt;}
.yd0{bottom:488.800000pt;}
.y116{bottom:489.600000pt;}
.y47{bottom:489.994933pt;}
.y69{bottom:491.356400pt;}
.ya{bottom:494.990666pt;}
.y1a6{bottom:495.040000pt;}
.y1c4{bottom:500.160320pt;}
.y49{bottom:502.400133pt;}
.y172{bottom:502.885120pt;}
.ya7{bottom:503.360000pt;}
.y1d5{bottom:504.160000pt;}
.y68{bottom:504.689733pt;}
.y88{bottom:505.760000pt;}
.y12d{bottom:508.960000pt;}
.yf0{bottom:510.080000pt;}
.y103{bottom:511.520000pt;}
.y1c3{bottom:516.800160pt;}
.y46{bottom:517.333467pt;}
.y1b8{bottom:517.760000pt;}
.y67{bottom:518.023067pt;}
.y48{bottom:518.400133pt;}
.y1e8{bottom:520.160000pt;}
.y15f{bottom:523.680000pt;}
.ybe{bottom:524.160000pt;}
.y171{bottom:525.920000pt;}
.ycf{bottom:526.080000pt;}
.y115{bottom:526.400000pt;}
.y1a5{bottom:531.840000pt;}
.y1c2{bottom:533.440000pt;}
.y1d4{bottom:538.560000pt;}
.ye5{bottom:538.720000pt;}
.ya6{bottom:540.160000pt;}
.y3c{bottom:540.853600pt;}
.y9e{bottom:541.120000pt;}
.y87{bottom:542.560000pt;}
.y66{bottom:542.694933pt;}
.y12c{bottom:545.760000pt;}
.yef{bottom:547.680000pt;}
.y102{bottom:548.320000pt;}
.y7d{bottom:553.920000pt;}
.y1b7{bottom:554.560000pt;}
.y65{bottom:556.028267pt;}
.y1d3{bottom:556.960000pt;}
.ye4{bottom:558.560000pt;}
.y15e{bottom:560.480000pt;}
.y9d{bottom:560.960000pt;}
.y114{bottom:563.200000pt;}
.y1c1{bottom:563.360000pt;}
.yce{bottom:563.680000pt;}
.y1a4{bottom:568.640000pt;}
.y64{bottom:569.361600pt;}
.y1e7{bottom:572.960000pt;}
.y9{bottom:573.786667pt;}
.ya5{bottom:576.960000pt;}
.ye3{bottom:577.120000pt;}
.y86{bottom:579.360000pt;}
.y12b{bottom:582.560000pt;}
.y3b{bottom:583.520267pt;}
.yee{bottom:585.120000pt;}
.y7c{bottom:588.320000pt;}
.y1d2{bottom:591.360000pt;}
.y8{bottom:592.685334pt;}
.y63{bottom:594.033467pt;}
.y15d{bottom:597.280000pt;}
.ybd{bottom:597.760000pt;}
.y113{bottom:599.840000pt;}
.y4f{bottom:600.000267pt;}
.ycd{bottom:600.640000pt;}
.y1a3{bottom:605.440000pt;}
.y1b6{bottom:607.360000pt;}
.y62{bottom:607.366800pt;}
.y1d1{bottom:609.760000pt;}
.y9c{bottom:613.760000pt;}
.y85{bottom:616.160000pt;}
.y180{bottom:618.720000pt;}
.y12a{bottom:619.360000pt;}
.y192{bottom:619.680000pt;}
.y61{bottom:620.700133pt;}
.y101{bottom:621.920000pt;}
.y3a{bottom:622.186933pt;}
.y14b{bottom:622.560000pt;}
.y1e6{bottom:625.760000pt;}
.y4e{bottom:628.800267pt;}
.y60{bottom:634.033467pt;}
.y15c{bottom:634.080000pt;}
.y7b{bottom:634.560000pt;}
.yed{bottom:634.720000pt;}
.y112{bottom:636.640000pt;}
.ycc{bottom:637.920000pt;}
.y1a2{bottom:642.240000pt;}
.y1d0{bottom:644.160000pt;}
.y7{bottom:645.598667pt;}
.y17f{bottom:650.240000pt;}
.y9b{bottom:650.560000pt;}
.y191{bottom:651.518720pt;}
.y84{bottom:652.960000pt;}
.y14a{bottom:654.400000pt;}
.y129{bottom:656.160000pt;}
.y5f{bottom:658.705467pt;}
.y100{bottom:658.720000pt;}
.y1b5{bottom:660.160000pt;}
.y7a{bottom:662.240000pt;}
.y1cf{bottom:662.560000pt;}
.y39{bottom:664.853600pt;}
.y3{bottom:668.977329pt;}
.y15b{bottom:670.880000pt;}
.ybc{bottom:671.360000pt;}
.y5e{bottom:672.038800pt;}
.y111{bottom:673.440000pt;}
.y37{bottom:675.200133pt;}
.y1e5{bottom:678.560000pt;}
.y1a1{bottom:679.040000pt;}
.y9a{bottom:687.360000pt;}
.ycb{bottom:687.520000pt;}
.y79{bottom:689.760000pt;}
.y36{bottom:691.200133pt;}
.y128{bottom:692.960000pt;}
.yff{bottom:695.520000pt;}
.y5d{bottom:696.710667pt;}
.y1ce{bottom:696.960000pt;}
.y35{bottom:707.200133pt;}
.y38{bottom:707.520133pt;}
.y15a{bottom:707.680000pt;}
.ybb{bottom:708.160000pt;}
.y5c{bottom:710.044000pt;}
.y110{bottom:710.240000pt;}
.y1b4{bottom:712.960000pt;}
.y1cd{bottom:715.360000pt;}
.y1a0{bottom:715.840000pt;}
.y78{bottom:717.440000pt;}
.y34{bottom:723.200133pt;}
.y5b{bottom:723.377333pt;}
.y99{bottom:724.160000pt;}
.y83{bottom:726.560000pt;}
.y127{bottom:729.760000pt;}
.y1f8{bottom:731.360000pt;}
.yfe{bottom:732.960000pt;}
.y159{bottom:744.480000pt;}
.y77{bottom:744.960000pt;}
.y10f{bottom:747.040000pt;}
.y5a{bottom:748.049200pt;}
.y1b3{bottom:749.760000pt;}
.y19f{bottom:752.640000pt;}
.y33{bottom:755.200133pt;}
.y170{bottom:759.680000pt;}
.y98{bottom:760.960000pt;}
.y59{bottom:761.382533pt;}
.y82{bottom:763.360000pt;}
.y126{bottom:766.560000pt;}
.y1cc{bottom:768.160000pt;}
.yfd{bottom:770.240000pt;}
.y76{bottom:772.640000pt;}
.y16f{bottom:778.880000pt;}
.y2{bottom:781.661334pt;}
.yba{bottom:781.760000pt;}
.y1f7{bottom:784.160000pt;}
.y58{bottom:786.054533pt;}
.y19e{bottom:789.440000pt;}
.y158{bottom:797.120000pt;}
.y97{bottom:797.760000pt;}
.y16e{bottom:798.720000pt;}
.y57{bottom:799.387867pt;}
.y10e{bottom:799.840000pt;}
.y75{bottom:800.160000pt;}
.y45{bottom:801.066933pt;}
.y1b2{bottom:802.560000pt;}
.y125{bottom:803.360000pt;}
.y56{bottom:812.721200pt;}
.yb9{bottom:818.560000pt;}
.y1cb{bottom:820.960000pt;}
.yfb{bottom:823.680000pt;}
.y74{bottom:827.840000pt;}
.y96{bottom:834.560000pt;}
.y32{bottom:835.200133pt;}
.y81{bottom:836.960000pt;}
.y55{bottom:837.393067pt;}
.y1b1{bottom:839.360000pt;}
.y124{bottom:840.160000pt;}
.y19d{bottom:842.240000pt;}
.yfa{bottom:845.280000pt;}
.yfc{bottom:847.520000pt;}
.y31{bottom:851.200133pt;}
.y157{bottom:852.640000pt;}
.y73{bottom:855.360000pt;}
.y1{bottom:859.312000pt;}
.y54{bottom:862.065067pt;}
.y30{bottom:867.200133pt;}
.yf9{bottom:869.760000pt;}
.y95{bottom:871.360000pt;}
.y80{bottom:873.760000pt;}
.y53{bottom:875.398400pt;}
.y123{bottom:876.497600pt;}
.y72{bottom:883.040000pt;}
.y2f{bottom:883.200133pt;}
.y149{bottom:886.080000pt;}
.y52{bottom:888.731733pt;}
.y190{bottom:890.400000pt;}
.yb8{bottom:892.160000pt;}
.y122{bottom:894.252960pt;}
.y2e{bottom:899.200133pt;}
.y51{bottom:902.065067pt;}
.y17e{bottom:905.120000pt;}
.y148{bottom:905.440000pt;}
.y94{bottom:908.160000pt;}
.y13c{bottom:908.640000pt;}
.y71{bottom:910.560000pt;}
.y121{bottom:912.008320pt;}
.y147{bottom:925.120000pt;}
.y1e4{bottom:926.560000pt;}
.y13b{bottom:926.880000pt;}
.y50{bottom:928.731733pt;}
.y120{bottom:929.763680pt;}
.y2d{bottom:931.200133pt;}
.y70{bottom:944.960000pt;}
.y13a{bottom:945.120000pt;}
.y2c{bottom:947.200133pt;}
.y11f{bottom:947.519040pt;}
.y6e{bottom:994.400000pt;}
.y7e{bottom:996.320000pt;}
.h1e{height:15.360000pt;}
.h1d{height:16.960000pt;}
.h1b{height:25.177500pt;}
.h7{height:28.560000pt;}
.h22{height:31.680000pt;}
.h17{height:31.992188pt;}
.h12{height:34.133333pt;}
.h23{height:34.945312pt;}
.h25{height:35.404688pt;}
.h13{height:37.537500pt;}
.ha{height:38.400000pt;}
.h14{height:38.698750pt;}
.h6{height:40.800000pt;}
.h19{height:41.030000pt;}
.h18{height:42.656250pt;}
.he{height:42.666667pt;}
.h3{height:42.840000pt;}
.h24{height:42.895000pt;}
.h21{height:45.281250pt;}
.h15{height:46.593750pt;}
.h16{height:46.625000pt;}
.h20{height:47.841250pt;}
.h2{height:48.960000pt;}
.h9{height:49.066667pt;}
.hd{height:51.200000pt;}
.h1a{height:52.358750pt;}
.h11{height:59.733333pt;}
.h10{height:68.266667pt;}
.h5{height:69.360000pt;}
.hc{height:76.800000pt;}
.h1c{height:78.125000pt;}
.h4{height:105.826671pt;}
.hb{height:110.933333pt;}
.hf{height:119.466667pt;}
.h1f{height:737.760000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:191.358667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x6{left:-768.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:9.600000pt;}
.x9{left:17.470000pt;}
.x8{left:29.278133pt;}
.xb{left:38.738933pt;}
.x5{left:39.683733pt;}
.x47{left:48.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:96.000000pt;}
.x42{left:96.960000pt;}
.x2c{left:98.720000pt;}
.x3b{left:100.000000pt;}
.x2f{left:102.880000pt;}
.x13{left:105.120000pt;}
.x3a{left:111.040000pt;}
.x12{left:112.000000pt;}
.xc{left:114.000000pt;}
.x27{left:117.440000pt;}
.x33{left:120.000000pt;}
.x38{left:124.003840pt;}
.x15{left:128.000000pt;}
.x3e{left:136.800000pt;}
.x45{left:144.000000pt;}
.x1f{left:150.880000pt;}
.xa{left:151.824000pt;}
.x34{left:153.600000pt;}
.x4{left:180.874667pt;}
.xf{left:185.338000pt;}
.x7{left:204.000000pt;}
.x24{left:226.400000pt;}
.x20{left:240.640000pt;}
.x23{left:244.640000pt;}
.x2d{left:252.480000pt;}
.x28{left:256.000000pt;}
.x16{left:288.000000pt;}
.x18{left:309.280000pt;}
.x35{left:311.680000pt;}
.x30{left:315.360000pt;}
.x19{left:340.480000pt;}
.x37{left:341.760000pt;}
.x17{left:344.000000pt;}
.x1c{left:346.080000pt;}
.x1a{left:348.320000pt;}
.x44{left:353.280000pt;}
.x1b{left:358.240000pt;}
.x11{left:362.080000pt;}
.x41{left:367.040000pt;}
.x22{left:400.480000pt;}
.x3{left:404.408000pt;}
.x10{left:408.000000pt;}
.xe{left:432.000000pt;}
.x1d{left:494.880000pt;}
.x1e{left:501.760000pt;}
.x2a{left:612.320000pt;}
.x14{left:657.920000pt;}
.x3c{left:682.723840pt;}
.x3d{left:690.723840pt;}
.x39{left:696.482560pt;}
.x25{left:697.920000pt;}
.x3f{left:699.366400pt;}
.x31{left:701.920000pt;}
.x40{left:703.520000pt;}
.x36{left:706.400000pt;}
.x32{left:708.000000pt;}
.x21{left:716.160000pt;}
.x26{left:720.000000pt;}
.x2e{left:729.920000pt;}
.x43{left:734.880000pt;}
.x29{left:764.000000pt;}
.x4a{left:833.470000pt;}
.x49{left:845.278133pt;}
.x46{left:855.683733pt;}
.x4b{left:967.824000pt;}
.x48{left:1020.000000pt;}
}




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