
    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_75109c93e149158c7868d793.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_3f9a958f5ea390efd0ac84c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_d0c87d758e00fb34a378cbd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_77d5023808586fcbf2f38f74.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_f3ce42efd9f5078d766a70f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_3a7a99a82d5268a04dcafaf6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_7be63d5d774f16bd7df0019f.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.523926;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_499948f22f70c0318c85126f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_d1c97db045a4088004c28aa7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.142090;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_a3f2554d326adebb4113ae3c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.808594;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_9a626d72eafc2d3c4a00cadf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_4f01512ef63fc27a49ac4c81.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_c1440d357299fe91c23b8a98.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.m10{transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.mf{transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243346,0.000000,-0.081107,0.236478,0,0);-ms-transform:matrix(0.243346,0.000000,-0.081107,0.236478,0,0);-webkit-transform:matrix(0.243346,0.000000,-0.081107,0.236478,0,0);}
.m8{transform:matrix(0.244687,0.000000,-0.081554,0.236324,0,0);-ms-transform:matrix(0.244687,0.000000,-0.081554,0.236324,0,0);-webkit-transform:matrix(0.244687,0.000000,-0.081554,0.236324,0,0);}
.mb{transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.256294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256294,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257261,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.257789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257789,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.258847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258847,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-82.800000px;}
.v3{vertical-align:-81.360000px;}
.vc{vertical-align:-76.320000px;}
.v9{vertical-align:-61.037043px;}
.v8{vertical-align:-57.216904px;}
.v7{vertical-align:-54.228191px;}
.v1{vertical-align:-36.120000px;}
.va{vertical-align:-33.120000px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v4{vertical-align:33.120000px;}
.vb{vertical-align:38.811587px;}
.ls2d{letter-spacing:-2.160000px;}
.ls56{letter-spacing:-2.077687px;}
.ls62{letter-spacing:-1.728000px;}
.ls55{letter-spacing:-1.440000px;}
.ls2a{letter-spacing:-1.368000px;}
.ls28{letter-spacing:-1.008000px;}
.ls2e{letter-spacing:-0.936000px;}
.ls53{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.ls44{letter-spacing:-0.504000px;}
.ls2c{letter-spacing:-0.342600px;}
.ls43{letter-spacing:-0.305400px;}
.ls2b{letter-spacing:-0.288000px;}
.ls46{letter-spacing:-0.216000px;}
.ls6b{letter-spacing:-0.170400px;}
.ls65{letter-spacing:-0.158400px;}
.ls30{letter-spacing:-0.144000px;}
.ls63{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.025920px;}
.ls40{letter-spacing:-0.024000px;}
.lsa{letter-spacing:-0.017280px;}
.lsb{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls24{letter-spacing:0.018720px;}
.ls33{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.025920px;}
.ls5{letter-spacing:0.034560px;}
.ls3a{letter-spacing:0.051429px;}
.ls27{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.075789px;}
.ls41{letter-spacing:0.082200px;}
.lse{letter-spacing:0.109200px;}
.ls11{letter-spacing:0.109440px;}
.ls1c{letter-spacing:0.113143px;}
.ls66{letter-spacing:0.123840px;}
.ls57{letter-spacing:0.127867px;}
.ls64{letter-spacing:0.144000px;}
.ls6a{letter-spacing:0.152400px;}
.ls22{letter-spacing:0.152640px;}
.ls2{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.260400px;}
.ls5a{letter-spacing:0.260571px;}
.ls6{letter-spacing:0.262080px;}
.ls26{letter-spacing:0.288000px;}
.ls59{letter-spacing:0.336000px;}
.ls25{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.432000px;}
.ls68{letter-spacing:0.463680px;}
.ls3f{letter-spacing:0.504000px;}
.ls67{letter-spacing:0.547200px;}
.ls42{letter-spacing:0.565800px;}
.ls54{letter-spacing:0.660000px;}
.ls3d{letter-spacing:0.696000px;}
.ls4{letter-spacing:0.720000px;}
.ls50{letter-spacing:0.792000px;}
.ls47{letter-spacing:0.900000px;}
.ls2f{letter-spacing:1.152000px;}
.ls35{letter-spacing:1.200000px;}
.ls3e{letter-spacing:1.440000px;}
.ls36{letter-spacing:1.885714px;}
.ls15{letter-spacing:2.160000px;}
.ls7{letter-spacing:2.880000px;}
.ls3b{letter-spacing:3.257143px;}
.ls3c{letter-spacing:3.600000px;}
.ls31{letter-spacing:4.320000px;}
.ls48{letter-spacing:5.040000px;}
.ls4d{letter-spacing:5.736000px;}
.ls4c{letter-spacing:5.760000px;}
.ls19{letter-spacing:6.000000px;}
.ls18{letter-spacing:6.114286px;}
.ls21{letter-spacing:6.480000px;}
.ls4b{letter-spacing:7.200000px;}
.ls1d{letter-spacing:7.371429px;}
.ls5e{letter-spacing:7.920000px;}
.ls4f{letter-spacing:8.640000px;}
.ls38{letter-spacing:8.742857px;}
.ls4e{letter-spacing:8.820000px;}
.ls1b{letter-spacing:9.360000px;}
.ls39{letter-spacing:9.428571px;}
.ls58{letter-spacing:9.540000px;}
.lsf{letter-spacing:10.080000px;}
.ls17{letter-spacing:10.800000px;}
.ls10{letter-spacing:11.520000px;}
.ls16{letter-spacing:12.240000px;}
.ls5b{letter-spacing:12.960000px;}
.ls1e{letter-spacing:13.680000px;}
.ls1f{letter-spacing:14.400000px;}
.ls20{letter-spacing:15.120000px;}
.ls14{letter-spacing:15.840000px;}
.ls4a{letter-spacing:18.000000px;}
.ls23{letter-spacing:19.440000px;}
.ls12{letter-spacing:20.160000px;}
.ls61{letter-spacing:21.827968px;}
.ls49{letter-spacing:23.760000px;}
.ls51{letter-spacing:27.360000px;}
.ls5c{letter-spacing:41.040000px;}
.ls5d{letter-spacing:41.220000px;}
.ls32{letter-spacing:47.828571px;}
.ls34{letter-spacing:56.160000px;}
.ls13{letter-spacing:56.880000px;}
.ls60{letter-spacing:67.961280px;}
.ls69{letter-spacing:472.440000px;}
.ls5f{letter-spacing:861.276000px;}
.ls52{letter-spacing:1008.586727px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws19{word-spacing:-68.943466px;}
.ws5{word-spacing:-66.240000px;}
.ws1e{word-spacing:-66.041463px;}
.ws22{word-spacing:-40.933016px;}
.ws16{word-spacing:-40.014337px;}
.wsa{word-spacing:-39.528000px;}
.ws1f{word-spacing:-38.354965px;}
.ws17{word-spacing:-37.849963px;}
.ws20{word-spacing:-36.256763px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.414080px;}
.ws14{word-spacing:-18.660000px;}
.ws13{word-spacing:-18.360000px;}
.wse{word-spacing:-18.260400px;}
.ws15{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.976000px;}
.ws28{word-spacing:-17.880000px;}
.ws9{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.694600px;}
.ws8{word-spacing:-17.657400px;}
.ws10{word-spacing:-17.496000px;}
.ws1a{word-spacing:-17.235866px;}
.ws2d{word-spacing:-17.107200px;}
.ws7{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.510366px;}
.ws27{word-spacing:-16.272000px;}
.wsc{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws1b{word-spacing:-10.048717px;}
.ws1c{word-spacing:-9.625741px;}
.ws2c{word-spacing:-0.086464px;}
.ws25{word-spacing:-0.079279px;}
.ws21{word-spacing:-0.074559px;}
.ws29{word-spacing:-0.069985px;}
.ws2a{word-spacing:-0.043322px;}
.ws4{word-spacing:0.000000px;}
.ws26{word-spacing:48.912773px;}
.ws2b{word-spacing:68.045422px;}
.ws23{word-spacing:113.669379px;}
.ws24{word-spacing:132.192374px;}
.ws18{word-spacing:795.671981px;}
._1c{margin-left:-449.495414px;}
._32{margin-left:-447.644740px;}
._27{margin-left:-432.535074px;}
._2c{margin-left:-415.238104px;}
._28{margin-left:-386.373558px;}
._2d{margin-left:-348.174775px;}
._31{margin-left:-289.363354px;}
._1e{margin-left:-266.618948px;}
._2b{margin-left:-262.305893px;}
._34{margin-left:-261.227883px;}
._49{margin-left:-238.941639px;}
._23{margin-left:-234.434105px;}
._4c{margin-left:-226.391550px;}
._2f{margin-left:-218.943622px;}
._21{margin-left:-214.436609px;}
._36{margin-left:-206.063145px;}
._3f{margin-left:-203.869077px;}
._3c{margin-left:-201.793731px;}
._42{margin-left:-199.386084px;}
._22{margin-left:-197.067502px;}
._2e{margin-left:-191.438009px;}
._26{margin-left:-188.077108px;}
._25{margin-left:-185.340983px;}
._30{margin-left:-183.436362px;}
._3a{margin-left:-181.821883px;}
._40{margin-left:-178.407591px;}
._39{margin-left:-176.523602px;}
._3e{margin-left:-173.991421px;}
._24{margin-left:-172.900427px;}
._1f{margin-left:-168.654886px;}
._38{margin-left:-159.939894px;}
._3d{margin-left:-156.520413px;}
._35{margin-left:-154.921672px;}
._48{margin-left:-137.867903px;}
._4a{margin-left:-136.066477px;}
._20{margin-left:-122.297889px;}
._3b{margin-left:-104.225596px;}
._41{margin-left:-100.051027px;}
._43{margin-left:-98.789129px;}
._1d{margin-left:-90.853324px;}
._33{margin-left:-88.634106px;}
._4b{margin-left:-70.678331px;}
._37{margin-left:-57.238059px;}
._44{margin-left:-13.680000px;}
._45{margin-left:-9.887520px;}
._1a{margin-left:-6.898080px;}
._16{margin-left:-5.810286px;}
._14{margin-left:-4.700571px;}
._15{margin-left:-3.520000px;}
._10{margin-left:-2.036160px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:2.562240px;}
._a{width:3.628800px;}
._9{width:5.578560px;}
._e{width:6.609600px;}
._c{width:7.954560px;}
._b{width:9.141120px;}
._d{width:10.627200px;}
._12{width:11.664000px;}
._11{width:12.686400px;}
._8{width:13.740480px;}
._7{width:14.904000px;}
._18{width:16.200000px;}
._f{width:19.938240px;}
._1b{width:21.024000px;}
._19{width:35.856000px;}
._4d{width:37.584000px;}
._46{width:39.256320px;}
._47{width:40.968000px;}
._17{width:50.112000px;}
._13{width:55.944000px;}
._2a{width:83.118240px;}
._29{width:84.641760px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._4e{width:846.300000px;}
._2{width:870.060000px;}
.fc3{color:rgb(14,17,21);}
.fc2{color:transparent;}
.fc1{color:rgb(15,17,21);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:37.342918px;}
.fsd{font-size:38.502965px;}
.fsc{font-size:40.194867px;}
.fs6{font-size:41.760000px;}
.fs17{font-size:43.231272px;}
.fs14{font-size:43.321595px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fse{font-size:66.041463px;}
.fs1{font-size:66.240000px;}
.fsb{font-size:68.943466px;}
.fs5{font-size:69.822393px;}
.fsf{font-size:69.863323px;}
.fs13{font-size:69.985480px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:72.885860px;}
.fs11{font-size:74.559227px;}
.fs9{font-size:75.893905px;}
.fs0{font-size:77.760000px;}
.fs12{font-size:79.278599px;}
.fs16{font-size:81.080975px;}
.fs3{font-size:84.240000px;}
.fs18{font-size:86.463714px;}
.fs15{font-size:86.786417px;}
.fs8{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y10d{bottom:3.053914px;}
.ycf{bottom:3.085394px;}
.y10f{bottom:3.155539px;}
.yc1{bottom:3.589373px;}
.y113{bottom:3.781033px;}
.yb5{bottom:3.815237px;}
.ye0{bottom:4.140000px;}
.y106{bottom:4.171549px;}
.y68{bottom:4.320000px;}
.ye5{bottom:4.500000px;}
.yce{bottom:6.899154px;}
.yc9{bottom:6.962459px;}
.ybf{bottom:7.407060px;}
.y115{bottom:7.633417px;}
.yc3{bottom:7.733416px;}
.ye1{bottom:7.740000px;}
.yaf{bottom:7.971030px;}
.yb7{bottom:8.107308px;}
.y108{bottom:8.703162px;}
.ydc{bottom:9.180000px;}
.y114{bottom:9.202853px;}
.y10c{bottom:12.783617px;}
.ybb{bottom:14.814388px;}
.ye3{bottom:14.940000px;}
.ycd{bottom:15.285186px;}
.yc7{bottom:15.317617px;}
.y103{bottom:15.395280px;}
.yb2{bottom:15.704131px;}
.ydd{bottom:16.200000px;}
.ybd{bottom:16.478265px;}
.yb4{bottom:17.202355px;}
.yd0{bottom:18.344654px;}
.y111{bottom:18.761715px;}
.yde{bottom:19.620000px;}
.yc0{bottom:20.621907px;}
.y9{bottom:21.240000px;}
.ycb{bottom:21.266685px;}
.yb1{bottom:21.528078px;}
.ye4{bottom:25.200000px;}
.yc2{bottom:27.312189px;}
.yb6{bottom:28.307090px;}
.ydb{bottom:29.880000px;}
.yd1{bottom:30.551513px;}
.ybe{bottom:31.031837px;}
.ya{bottom:31.140000px;}
.y110{bottom:31.314982px;}
.yc4{bottom:31.455831px;}
.y104{bottom:31.661504px;}
.yb0{bottom:32.327024px;}
.yb8{bottom:32.599301px;}
.yca{bottom:32.754898px;}
.y109{bottom:34.992740px;}
.ybc{bottom:38.405593px;}
.yb3{bottom:40.059706px;}
.yc8{bottom:41.110315px;}
.y8{bottom:41.940000px;}
.y105{bottom:48.528039px;}
.y5{bottom:57.600000px;}
.y107{bottom:59.751894px;}
.y10a{bottom:61.252672px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y86{bottom:144.936000px;}
.y66{bottom:150.510000px;}
.y101{bottom:151.590000px;}
.y37{bottom:152.310000px;}
.yc5{bottom:159.150000px;}
.yba{bottom:159.240000px;}
.y85{bottom:165.630000px;}
.y100{bottom:170.670000px;}
.y36{bottom:171.210000px;}
.y84{bottom:185.970000px;}
.yff{bottom:189.570000px;}
.y35{bottom:190.290000px;}
.y65{bottom:191.910000px;}
.y83{bottom:205.410000px;}
.yfe{bottom:208.470000px;}
.y34{bottom:209.190000px;}
.y64{bottom:212.610000px;}
.y82{bottom:225.930000px;}
.yfd{bottom:227.550000px;}
.y33{bottom:228.270000px;}
.yb9{bottom:233.130000px;}
.yae{bottom:233.190000px;}
.y63{bottom:233.310000px;}
.yfc{bottom:246.450000px;}
.y81{bottom:246.630000px;}
.y32{bottom:247.170000px;}
.y62{bottom:254.010000px;}
.y80{bottom:261.750000px;}
.yfb{bottom:265.530000px;}
.y31{bottom:266.070000px;}
.y61{bottom:274.710000px;}
.y30{bottom:285.150000px;}
.yad{bottom:288.930000px;}
.y60{bottom:295.410000px;}
.y2f{bottom:304.050000px;}
.yfa{bottom:305.130000px;}
.yac{bottom:309.630000px;}
.y5f{bottom:316.110000px;}
.y2e{bottom:323.130000px;}
.yf9{bottom:324.570000px;}
.yab{bottom:330.150000px;}
.y5e{bottom:336.810000px;}
.y2d{bottom:342.390000px;}
.yf8{bottom:345.270000px;}
.yaa{bottom:351.210000px;}
.y5d{bottom:357.510000px;}
.y2c{bottom:361.470000px;}
.yf7{bottom:365.790000px;}
.ya9{bottom:372.450000px;}
.y5c{bottom:378.210000px;}
.y2b{bottom:380.415000px;}
.yf6{bottom:387.075000px;}
.ya8{bottom:393.195000px;}
.y5b{bottom:398.955000px;}
.y2a{bottom:399.315000px;}
.yf5{bottom:407.775000px;}
.ya7{bottom:413.895000px;}
.y29{bottom:418.755000px;}
.y5a{bottom:419.655000px;}
.yf4{bottom:428.475000px;}
.ya6{bottom:434.595000px;}
.y28{bottom:437.655000px;}
.y59{bottom:440.355000px;}
.yf3{bottom:448.995000px;}
.ya5{bottom:455.115000px;}
.y27{bottom:456.735000px;}
.y58{bottom:461.055000px;}
.yf2{bottom:470.235000px;}
.y26{bottom:475.635000px;}
.ya4{bottom:476.355000px;}
.y57{bottom:481.755000px;}
.yf1{bottom:490.935000px;}
.y25{bottom:494.535000px;}
.ya3{bottom:497.055000px;}
.y56{bottom:502.455000px;}
.yf0{bottom:511.635000px;}
.y24{bottom:513.975000px;}
.ya2{bottom:517.755000px;}
.y55{bottom:523.155000px;}
.yef{bottom:532.875000px;}
.y23{bottom:535.035000px;}
.ya1{bottom:538.455000px;}
.y54{bottom:543.855000px;}
.yee{bottom:553.575000px;}
.y22{bottom:557.535000px;}
.ya0{bottom:559.155000px;}
.y53{bottom:564.555000px;}
.yed{bottom:574.275000px;}
.y21{bottom:579.315000px;}
.y9f{bottom:579.855000px;}
.y52{bottom:585.255000px;}
.yec{bottom:594.975000px;}
.y9e{bottom:600.555000px;}
.y20{bottom:602.355000px;}
.y51{bottom:605.775000px;}
.yeb{bottom:615.675000px;}
.y9d{bottom:621.255000px;}
.y50{bottom:626.475000px;}
.y1f{bottom:633.705000px;}
.yea{bottom:636.405000px;}
.y9c{bottom:641.985000px;}
.y1e{bottom:647.205000px;}
.ye9{bottom:657.105000px;}
.y9b{bottom:662.685000px;}
.y4f{bottom:667.905000px;}
.y1d{bottom:668.985000px;}
.ye8{bottom:677.625000px;}
.y7f{bottom:680.865000px;}
.y9a{bottom:683.385000px;}
.y4e{bottom:688.605000px;}
.y1c{bottom:692.025000px;}
.ye7{bottom:698.685000px;}
.y7e{bottom:701.565000px;}
.y99{bottom:704.085000px;}
.y4d{bottom:709.305000px;}
.y1b{bottom:714.525000px;}
.y129{bottom:715.245000px;}
.ye6{bottom:719.925000px;}
.y7d{bottom:722.085000px;}
.y98{bottom:724.785000px;}
.y4c{bottom:730.005000px;}
.y128{bottom:735.945000px;}
.y1a{bottom:736.845000px;}
.y7c{bottom:743.325000px;}
.y97{bottom:745.485000px;}
.y4b{bottom:750.705000px;}
.y127{bottom:752.145000px;}
.ye2{bottom:758.265000px;}
.y19{bottom:758.805000px;}
.y7b{bottom:764.385000px;}
.y96{bottom:766.185000px;}
.y4a{bottom:771.405000px;}
.y126{bottom:772.845000px;}
.y18{bottom:781.665000px;}
.y7a{bottom:785.445000px;}
.y49{bottom:792.105000px;}
.yda{bottom:800.385000px;}
.y112{bottom:800.550000px;}
.y10e{bottom:800.580000px;}
.y17{bottom:804.165000px;}
.y79{bottom:806.685000px;}
.y95{bottom:807.585000px;}
.y67{bottom:808.305000px;}
.y48{bottom:812.805000px;}
.y10b{bottom:813.525000px;}
.y125{bottom:818.385000px;}
.y16{bottom:826.485000px;}
.y78{bottom:827.385000px;}
.y94{bottom:828.285000px;}
.ydf{bottom:830.445000px;}
.y47{bottom:833.505000px;}
.y124{bottom:837.285000px;}
.y77{bottom:847.905000px;}
.y15{bottom:848.445000px;}
.y93{bottom:848.985000px;}
.y123{bottom:856.185000px;}
.yd9{bottom:856.365000px;}
.y76{bottom:869.145000px;}
.y92{bottom:869.685000px;}
.y14{bottom:870.765000px;}
.y46{bottom:874.545000px;}
.y122{bottom:875.265000px;}
.yd8{bottom:877.065000px;}
.y75{bottom:889.890000px;}
.y91{bottom:890.250000px;}
.y13{bottom:892.050000px;}
.y45{bottom:893.490000px;}
.y121{bottom:894.210000px;}
.yd7{bottom:897.810000px;}
.y74{bottom:910.590000px;}
.y90{bottom:911.490000px;}
.y44{bottom:912.570000px;}
.y120{bottom:913.290000px;}
.y12{bottom:916.170000px;}
.y102{bottom:917.985000px;}
.yd6{bottom:918.330000px;}
.y73{bottom:931.290000px;}
.y43{bottom:931.470000px;}
.y8f{bottom:932.190000px;}
.y11{bottom:940.470000px;}
.y42{bottom:950.370000px;}
.y11f{bottom:951.270000px;}
.y72{bottom:951.990000px;}
.y8e{bottom:952.890000px;}
.y10{bottom:964.950000px;}
.y41{bottom:969.450000px;}
.y11e{bottom:970.170000px;}
.y71{bottom:972.690000px;}
.y40{bottom:988.350000px;}
.yf{bottom:988.710000px;}
.y11d{bottom:989.070000px;}
.y70{bottom:993.390000px;}
.y8d{bottom:994.290000px;}
.yd5{bottom:1001.130000px;}
.y3f{bottom:1007.430000px;}
.y11c{bottom:1008.150000px;}
.ye{bottom:1012.830000px;}
.y6f{bottom:1014.090000px;}
.y8c{bottom:1014.990000px;}
.yd4{bottom:1021.830000px;}
.y3e{bottom:1026.330000px;}
.y11b{bottom:1027.050000px;}
.y6e{bottom:1034.790000px;}
.y8b{bottom:1035.690000px;}
.yd{bottom:1036.950000px;}
.yd3{bottom:1042.530000px;}
.y3d{bottom:1045.230000px;}
.y11a{bottom:1046.130000px;}
.y6d{bottom:1055.490000px;}
.y8a{bottom:1056.390000px;}
.yc{bottom:1060.890000px;}
.yd2{bottom:1063.230000px;}
.y3c{bottom:1064.310000px;}
.y119{bottom:1065.030000px;}
.y6c{bottom:1076.190000px;}
.y6{bottom:1077.090000px;}
.y3b{bottom:1083.210000px;}
.yc6{bottom:1083.840000px;}
.ycc{bottom:1083.930000px;}
.y6b{bottom:1096.890000px;}
.y89{bottom:1097.790000px;}
.y3a{bottom:1102.650000px;}
.y118{bottom:1103.010000px;}
.y6a{bottom:1117.590000px;}
.y88{bottom:1118.490000px;}
.y39{bottom:1121.550000px;}
.y117{bottom:1121.910000px;}
.y69{bottom:1138.320000px;}
.y87{bottom:1139.760000px;}
.y38{bottom:1140.660000px;}
.y116{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h33{height:20.700000px;}
.h3c{height:24.750373px;}
.h41{height:29.249638px;}
.h34{height:29.340000px;}
.h29{height:36.650032px;}
.h26{height:37.769754px;}
.h22{height:37.788554px;}
.h1f{height:39.429438px;}
.h1e{height:39.449064px;}
.h35{height:41.400000px;}
.h42{height:42.429130px;}
.h3d{height:42.496623px;}
.h3{height:45.184219px;}
.h2d{height:49.499637px;}
.h21{height:49.500334px;}
.hd{height:50.146523px;}
.h3f{height:50.624997px;}
.h32{height:50.760000px;}
.h1a{height:51.675485px;}
.h28{height:51.901919px;}
.hf{height:56.278125px;}
.h37{height:59.383125px;}
.h18{height:61.171875px;}
.h25{height:61.172195px;}
.h15{height:62.100000px;}
.h1c{height:63.860232px;}
.h13{height:64.546875px;}
.h24{height:64.712268px;}
.h27{height:64.783837px;}
.h23{height:64.816084px;}
.h39{height:64.825418px;}
.h10{height:64.978594px;}
.h4{height:65.010937px;}
.h1b{height:67.511952px;}
.h20{height:67.630577px;}
.h1d{height:67.664241px;}
.h36{height:68.084282px;}
.h3a{height:68.652749px;}
.h3b{height:68.686922px;}
.h2b{height:69.061941px;}
.he{height:70.628906px;}
.h7{height:70.664062px;}
.h12{height:71.204766px;}
.hb{height:72.562500px;}
.h8{height:72.846211px;}
.h2c{height:73.139398px;}
.h2a{height:73.175804px;}
.h2f{height:73.433350px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.h30{height:77.768899px;}
.h2e{height:77.807609px;}
.hc{height:78.367500px;}
.h38{height:78.675000px;}
.h6{height:78.870000px;}
.h40{height:79.536952px;}
.h14{height:80.464922px;}
.h31{height:80.644922px;}
.h44{height:81.240716px;}
.ha{height:82.676953px;}
.h43{height:84.817188px;}
.h45{height:84.859407px;}
.h9{height:84.898125px;}
.h3e{height:85.133746px;}
.h11{height:108.074699px;}
.h17{height:111.445312px;}
.h19{height:117.472499px;}
.h16{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:22.500264px;}
.w1a{width:24.750290px;}
.w17{width:33.749413px;}
.w13{width:46.965000px;}
.w10{width:46.980000px;}
.w14{width:47.001000px;}
.w18{width:48.375105px;}
.wc{width:52.005000px;}
.w5{width:60.874500px;}
.wd{width:64.281000px;}
.w1b{width:70.875508px;}
.wa{width:70.948364px;}
.wb{width:81.214500px;}
.w4{width:82.470000px;}
.w16{width:83.251339px;}
.w12{width:86.385000px;}
.w15{width:86.430000px;}
.w11{width:86.436000px;}
.w9{width:119.329413px;}
.w8{width:121.499227px;}
.w3{width:180.735000px;}
.we{width:268.950000px;}
.wf{width:268.980000px;}
.w6{width:300.373776px;}
.w7{width:310.276251px;}
.w1c{width:337.753500px;}
.w1d{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x86{left:1.722937px;}
.x50{left:3.154751px;}
.x3{left:7.918500px;}
.x6f{left:9.178500px;}
.x7e{left:10.245000px;}
.x4d{left:12.689122px;}
.x8e{left:14.645417px;}
.x67{left:16.039834px;}
.x8a{left:17.823152px;}
.x5f{left:19.160985px;}
.x80{left:22.354500px;}
.x70{left:26.314500px;}
.x7f{left:27.360000px;}
.x8c{left:33.696283px;}
.x77{left:34.740000px;}
.x78{left:35.820000px;}
.x88{left:36.979717px;}
.x4f{left:38.769123px;}
.x58{left:40.912704px;}
.x72{left:42.825000px;}
.x5b{left:45.662805px;}
.x4e{left:46.936186px;}
.x57{left:48.378445px;}
.x64{left:49.667853px;}
.x74{left:56.190000px;}
.x6b{left:58.037129px;}
.x91{left:59.952448px;}
.x87{left:62.761981px;}
.x66{left:65.833475px;}
.x49{left:68.598157px;}
.x85{left:73.437331px;}
.x2{left:77.041500px;}
.x7a{left:78.510000px;}
.x60{left:82.166822px;}
.x68{left:83.264750px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x5c{left:89.778210px;}
.x63{left:93.072274px;}
.x5e{left:94.391423px;}
.x5a{left:97.488984px;}
.x41{left:99.756000px;}
.x65{left:107.719370px;}
.x5d{left:108.871557px;}
.x32{left:110.376000px;}
.x42{left:111.816000px;}
.xd{left:114.876000px;}
.x34{left:122.436000px;}
.x6e{left:124.956000px;}
.x1c{left:127.476000px;}
.x3e{left:133.416000px;}
.x9{left:138.456000px;}
.x30{left:145.836000px;}
.xa{left:153.210000px;}
.x71{left:159.345000px;}
.x96{left:161.490000px;}
.x18{left:166.170000px;}
.x89{left:168.405000px;}
.x5{left:172.650000px;}
.x43{left:184.170000px;}
.x12{left:190.110000px;}
.x16{left:191.730000px;}
.xb{left:195.330000px;}
.x13{left:204.510000px;}
.x15{left:207.570000px;}
.x73{left:212.085000px;}
.x8b{left:219.930000px;}
.x4b{left:238.603536px;}
.x52{left:240.271946px;}
.x33{left:244.650000px;}
.x4c{left:246.391271px;}
.x53{left:249.093458px;}
.x4a{left:255.112958px;}
.x56{left:261.626375px;}
.x1b{left:266.790000px;}
.x55{left:270.447887px;}
.x48{left:273.519024px;}
.x75{left:277.095000px;}
.x47{left:284.065513px;}
.x54{left:287.370787px;}
.x8d{left:289.200000px;}
.x46{left:293.865000px;}
.xe{left:298.515000px;}
.x19{left:324.795000px;}
.x8f{left:335.775000px;}
.x31{left:360.255000px;}
.x79{left:372.495000px;}
.x1f{left:375.375000px;}
.x90{left:380.130000px;}
.x20{left:381.315000px;}
.x37{left:397.875000px;}
.x83{left:404.175000px;}
.x61{left:406.335000px;}
.x98{left:414.795000px;}
.x21{left:416.595000px;}
.x62{left:420.915000px;}
.x22{left:422.535000px;}
.x84{left:423.855000px;}
.x1a{left:433.695000px;}
.x23{left:440.535000px;}
.xc{left:446.505000px;}
.x25{left:447.765000px;}
.x14{left:454.245000px;}
.x7b{left:459.660000px;}
.xf{left:467.745000px;}
.x10{left:481.605000px;}
.x45{left:486.105000px;}
.x24{left:487.725000px;}
.x3d{left:496.905000px;}
.x6d{left:506.985000px;}
.x39{left:535.605000px;}
.x69{left:540.285000px;}
.x3a{left:543.345000px;}
.x76{left:546.780000px;}
.x6a{left:548.340000px;}
.x4{left:552.900000px;}
.x92{left:558.900000px;}
.x82{left:566.385000px;}
.x3b{left:589.425000px;}
.x51{left:594.285000px;}
.x3c{left:597.165000px;}
.x44{left:599.505000px;}
.x59{left:604.185000px;}
.x93{left:605.475000px;}
.x6c{left:619.305000px;}
.x36{left:635.550000px;}
.x38{left:637.170000px;}
.x7c{left:642.210000px;}
.x1d{left:645.090000px;}
.x17{left:646.530000px;}
.x94{left:649.830000px;}
.x1e{left:651.750000px;}
.x28{left:656.610000px;}
.x29{left:662.550000px;}
.x26{left:664.710000px;}
.x27{left:671.370000px;}
.x97{left:685.770000px;}
.x2a{left:697.830000px;}
.x3f{left:699.810000px;}
.x2b{left:703.770000px;}
.x40{left:707.190000px;}
.x81{left:716.010000px;}
.x11{left:722.130000px;}
.x2c{left:725.370000px;}
.x7d{left:729.330000px;}
.x2d{left:731.310000px;}
.x6{left:733.650000px;}
.x95{left:736.980000px;}
.x35{left:750.570000px;}
.x2e{left:766.770000px;}
.x2f{left:772.710000px;}
.x8{left:808.020000px;}
@media print{
.v6{vertical-align:-73.600000pt;}
.v3{vertical-align:-72.320000pt;}
.vc{vertical-align:-67.840000pt;}
.v9{vertical-align:-54.255149pt;}
.v8{vertical-align:-50.859470pt;}
.v7{vertical-align:-48.202837pt;}
.v1{vertical-align:-32.106667pt;}
.va{vertical-align:-29.440000pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v4{vertical-align:29.440000pt;}
.vb{vertical-align:34.499188pt;}
.ls2d{letter-spacing:-1.920000pt;}
.ls56{letter-spacing:-1.846833pt;}
.ls62{letter-spacing:-1.536000pt;}
.ls55{letter-spacing:-1.280000pt;}
.ls2a{letter-spacing:-1.216000pt;}
.ls28{letter-spacing:-0.896000pt;}
.ls2e{letter-spacing:-0.832000pt;}
.ls53{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls44{letter-spacing:-0.448000pt;}
.ls2c{letter-spacing:-0.304533pt;}
.ls43{letter-spacing:-0.271467pt;}
.ls2b{letter-spacing:-0.256000pt;}
.ls46{letter-spacing:-0.192000pt;}
.ls6b{letter-spacing:-0.151467pt;}
.ls65{letter-spacing:-0.140800pt;}
.ls30{letter-spacing:-0.128000pt;}
.ls63{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.023040pt;}
.ls40{letter-spacing:-0.021333pt;}
.lsa{letter-spacing:-0.015360pt;}
.lsb{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls24{letter-spacing:0.016640pt;}
.ls33{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.023040pt;}
.ls5{letter-spacing:0.030720pt;}
.ls3a{letter-spacing:0.045714pt;}
.ls27{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.067368pt;}
.ls41{letter-spacing:0.073067pt;}
.lse{letter-spacing:0.097067pt;}
.ls11{letter-spacing:0.097280pt;}
.ls1c{letter-spacing:0.100571pt;}
.ls66{letter-spacing:0.110080pt;}
.ls57{letter-spacing:0.113660pt;}
.ls64{letter-spacing:0.128000pt;}
.ls6a{letter-spacing:0.135467pt;}
.ls22{letter-spacing:0.135680pt;}
.ls2{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.231467pt;}
.ls5a{letter-spacing:0.231619pt;}
.ls6{letter-spacing:0.232960pt;}
.ls26{letter-spacing:0.256000pt;}
.ls59{letter-spacing:0.298667pt;}
.ls25{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.384000pt;}
.ls68{letter-spacing:0.412160pt;}
.ls3f{letter-spacing:0.448000pt;}
.ls67{letter-spacing:0.486400pt;}
.ls42{letter-spacing:0.502933pt;}
.ls54{letter-spacing:0.586667pt;}
.ls3d{letter-spacing:0.618667pt;}
.ls4{letter-spacing:0.640000pt;}
.ls50{letter-spacing:0.704000pt;}
.ls47{letter-spacing:0.800000pt;}
.ls2f{letter-spacing:1.024000pt;}
.ls35{letter-spacing:1.066667pt;}
.ls3e{letter-spacing:1.280000pt;}
.ls36{letter-spacing:1.676190pt;}
.ls15{letter-spacing:1.920000pt;}
.ls7{letter-spacing:2.560000pt;}
.ls3b{letter-spacing:2.895238pt;}
.ls3c{letter-spacing:3.200000pt;}
.ls31{letter-spacing:3.840000pt;}
.ls48{letter-spacing:4.480000pt;}
.ls4d{letter-spacing:5.098667pt;}
.ls4c{letter-spacing:5.120000pt;}
.ls19{letter-spacing:5.333333pt;}
.ls18{letter-spacing:5.434921pt;}
.ls21{letter-spacing:5.760000pt;}
.ls4b{letter-spacing:6.400000pt;}
.ls1d{letter-spacing:6.552381pt;}
.ls5e{letter-spacing:7.040000pt;}
.ls4f{letter-spacing:7.680000pt;}
.ls38{letter-spacing:7.771429pt;}
.ls4e{letter-spacing:7.840000pt;}
.ls1b{letter-spacing:8.320000pt;}
.ls39{letter-spacing:8.380952pt;}
.ls58{letter-spacing:8.480000pt;}
.lsf{letter-spacing:8.960000pt;}
.ls17{letter-spacing:9.600000pt;}
.ls10{letter-spacing:10.240000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls5b{letter-spacing:11.520000pt;}
.ls1e{letter-spacing:12.160000pt;}
.ls1f{letter-spacing:12.800000pt;}
.ls20{letter-spacing:13.440000pt;}
.ls14{letter-spacing:14.080000pt;}
.ls4a{letter-spacing:16.000000pt;}
.ls23{letter-spacing:17.280000pt;}
.ls12{letter-spacing:17.920000pt;}
.ls61{letter-spacing:19.402638pt;}
.ls49{letter-spacing:21.120000pt;}
.ls51{letter-spacing:24.320000pt;}
.ls5c{letter-spacing:36.480000pt;}
.ls5d{letter-spacing:36.640000pt;}
.ls32{letter-spacing:42.514286pt;}
.ls34{letter-spacing:49.920000pt;}
.ls13{letter-spacing:50.560000pt;}
.ls60{letter-spacing:60.410027pt;}
.ls69{letter-spacing:419.946667pt;}
.ls5f{letter-spacing:765.578667pt;}
.ls52{letter-spacing:896.521535pt;}
.ws11{word-spacing:-64.000000pt;}
.ws19{word-spacing:-61.283081pt;}
.ws5{word-spacing:-58.880000pt;}
.ws1e{word-spacing:-58.703522pt;}
.ws22{word-spacing:-36.384903pt;}
.ws16{word-spacing:-35.568300pt;}
.wsa{word-spacing:-35.136000pt;}
.ws1f{word-spacing:-34.093302pt;}
.ws17{word-spacing:-33.644411pt;}
.ws20{word-spacing:-32.228234pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.256960pt;}
.ws14{word-spacing:-16.586667pt;}
.ws13{word-spacing:-16.320000pt;}
.wse{word-spacing:-16.231467pt;}
.ws15{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.978667pt;}
.ws28{word-spacing:-15.893333pt;}
.ws9{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.728533pt;}
.ws8{word-spacing:-15.695467pt;}
.ws10{word-spacing:-15.552000pt;}
.ws1a{word-spacing:-15.320770pt;}
.ws2d{word-spacing:-15.206400pt;}
.ws7{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.675881pt;}
.ws27{word-spacing:-14.464000pt;}
.wsc{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-8.932193pt;}
.ws1c{word-spacing:-8.556214pt;}
.ws2c{word-spacing:-0.076857pt;}
.ws25{word-spacing:-0.070470pt;}
.ws21{word-spacing:-0.066275pt;}
.ws29{word-spacing:-0.062209pt;}
.ws2a{word-spacing:-0.038508pt;}
.ws4{word-spacing:0.000000pt;}
.ws26{word-spacing:43.478020pt;}
.ws2b{word-spacing:60.484820pt;}
.ws23{word-spacing:101.039448pt;}
.ws24{word-spacing:117.504332pt;}
.ws18{word-spacing:707.263983pt;}
._1c{margin-left:-399.551479pt;}
._32{margin-left:-397.906435pt;}
._27{margin-left:-384.475621pt;}
._2c{margin-left:-369.100537pt;}
._28{margin-left:-343.443163pt;}
._2d{margin-left:-309.488689pt;}
._31{margin-left:-257.211870pt;}
._1e{margin-left:-236.994621pt;}
._2b{margin-left:-233.160794pt;}
._34{margin-left:-232.202563pt;}
._49{margin-left:-212.392568pt;}
._23{margin-left:-208.385871pt;}
._4c{margin-left:-201.236934pt;}
._2f{margin-left:-194.616553pt;}
._21{margin-left:-190.610319pt;}
._36{margin-left:-183.167240pt;}
._3f{margin-left:-181.216957pt;}
._3c{margin-left:-179.372206pt;}
._42{margin-left:-177.232075pt;}
._22{margin-left:-175.171113pt;}
._2e{margin-left:-170.167119pt;}
._26{margin-left:-167.179652pt;}
._25{margin-left:-164.747540pt;}
._30{margin-left:-163.054544pt;}
._3a{margin-left:-161.619452pt;}
._40{margin-left:-158.584525pt;}
._39{margin-left:-156.909868pt;}
._3e{margin-left:-154.659041pt;}
._24{margin-left:-153.689268pt;}
._1f{margin-left:-149.915454pt;}
._38{margin-left:-142.168795pt;}
._3d{margin-left:-139.129256pt;}
._35{margin-left:-137.708153pt;}
._48{margin-left:-122.549247pt;}
._4a{margin-left:-120.947979pt;}
._20{margin-left:-108.709235pt;}
._3b{margin-left:-92.644974pt;}
._41{margin-left:-88.934246pt;}
._43{margin-left:-87.812559pt;}
._1d{margin-left:-80.758510pt;}
._33{margin-left:-78.785872pt;}
._4b{margin-left:-62.825184pt;}
._37{margin-left:-50.878274pt;}
._44{margin-left:-12.160000pt;}
._45{margin-left:-8.788907pt;}
._1a{margin-left:-6.131627pt;}
._16{margin-left:-5.164698pt;}
._14{margin-left:-4.178286pt;}
._15{margin-left:-3.128889pt;}
._10{margin-left:-1.809920pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.277547pt;}
._a{width:3.225600pt;}
._9{width:4.958720pt;}
._e{width:5.875200pt;}
._c{width:7.070720pt;}
._b{width:8.125440pt;}
._d{width:9.446400pt;}
._12{width:10.368000pt;}
._11{width:11.276800pt;}
._8{width:12.213760pt;}
._7{width:13.248000pt;}
._18{width:14.400000pt;}
._f{width:17.722880pt;}
._1b{width:18.688000pt;}
._19{width:31.872000pt;}
._4d{width:33.408000pt;}
._46{width:34.894507pt;}
._47{width:36.416000pt;}
._17{width:44.544000pt;}
._13{width:49.728000pt;}
._2a{width:73.882880pt;}
._29{width:75.237120pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._4e{width:752.266667pt;}
._2{width:773.386667pt;}
.fs10{font-size:33.193705pt;}
.fsd{font-size:34.224857pt;}
.fsc{font-size:35.728771pt;}
.fs6{font-size:37.120000pt;}
.fs17{font-size:38.427798pt;}
.fs14{font-size:38.508084pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fse{font-size:58.703522pt;}
.fs1{font-size:58.880000pt;}
.fsb{font-size:61.283081pt;}
.fs5{font-size:62.064349pt;}
.fsf{font-size:62.100732pt;}
.fs13{font-size:62.209316pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:64.787431pt;}
.fs11{font-size:66.274869pt;}
.fs9{font-size:67.461249pt;}
.fs0{font-size:69.120000pt;}
.fs12{font-size:70.469865pt;}
.fs16{font-size:72.071977pt;}
.fs3{font-size:74.880000pt;}
.fs18{font-size:76.856635pt;}
.fs15{font-size:77.143481pt;}
.fs8{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y10d{bottom:2.714590pt;}
.ycf{bottom:2.742572pt;}
.y10f{bottom:2.804924pt;}
.yc1{bottom:3.190554pt;}
.y113{bottom:3.360918pt;}
.yb5{bottom:3.391321pt;}
.ye0{bottom:3.680000pt;}
.y106{bottom:3.708044pt;}
.y68{bottom:3.840000pt;}
.ye5{bottom:4.000000pt;}
.yce{bottom:6.132582pt;}
.yc9{bottom:6.188852pt;}
.ybf{bottom:6.584054pt;}
.y115{bottom:6.785260pt;}
.yc3{bottom:6.874147pt;}
.ye1{bottom:6.880000pt;}
.yaf{bottom:7.085360pt;}
.yb7{bottom:7.206496pt;}
.y108{bottom:7.736144pt;}
.ydc{bottom:8.160000pt;}
.y114{bottom:8.180314pt;}
.y10c{bottom:11.363215pt;}
.ybb{bottom:13.168345pt;}
.ye3{bottom:13.280000pt;}
.ycd{bottom:13.586832pt;}
.yc7{bottom:13.615660pt;}
.y103{bottom:13.684694pt;}
.yb2{bottom:13.959227pt;}
.ydd{bottom:14.400000pt;}
.ybd{bottom:14.647347pt;}
.yb4{bottom:15.290983pt;}
.yd0{bottom:16.306359pt;}
.y111{bottom:16.677080pt;}
.yde{bottom:17.440000pt;}
.yc0{bottom:18.330584pt;}
.y9{bottom:18.880000pt;}
.ycb{bottom:18.903720pt;}
.yb1{bottom:19.136069pt;}
.ye4{bottom:22.400000pt;}
.yc2{bottom:24.277502pt;}
.yb6{bottom:25.161858pt;}
.ydb{bottom:26.560000pt;}
.yd1{bottom:27.156900pt;}
.ybe{bottom:27.583855pt;}
.ya{bottom:27.680000pt;}
.y110{bottom:27.835539pt;}
.yc4{bottom:27.960739pt;}
.y104{bottom:28.143559pt;}
.yb0{bottom:28.735132pt;}
.yb8{bottom:28.977157pt;}
.yca{bottom:29.115464pt;}
.y109{bottom:31.104658pt;}
.ybc{bottom:34.138305pt;}
.yb3{bottom:35.608627pt;}
.yc8{bottom:36.542502pt;}
.y8{bottom:37.280000pt;}
.y105{bottom:43.136035pt;}
.y5{bottom:51.200000pt;}
.y107{bottom:53.112794pt;}
.y10a{bottom:54.446820pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y86{bottom:128.832000pt;}
.y66{bottom:133.786667pt;}
.y101{bottom:134.746667pt;}
.y37{bottom:135.386667pt;}
.yc5{bottom:141.466667pt;}
.yba{bottom:141.546667pt;}
.y85{bottom:147.226667pt;}
.y100{bottom:151.706667pt;}
.y36{bottom:152.186667pt;}
.y84{bottom:165.306667pt;}
.yff{bottom:168.506667pt;}
.y35{bottom:169.146667pt;}
.y65{bottom:170.586667pt;}
.y83{bottom:182.586667pt;}
.yfe{bottom:185.306667pt;}
.y34{bottom:185.946667pt;}
.y64{bottom:188.986667pt;}
.y82{bottom:200.826667pt;}
.yfd{bottom:202.266667pt;}
.y33{bottom:202.906667pt;}
.yb9{bottom:207.226667pt;}
.yae{bottom:207.280000pt;}
.y63{bottom:207.386667pt;}
.yfc{bottom:219.066667pt;}
.y81{bottom:219.226667pt;}
.y32{bottom:219.706667pt;}
.y62{bottom:225.786667pt;}
.y80{bottom:232.666667pt;}
.yfb{bottom:236.026667pt;}
.y31{bottom:236.506667pt;}
.y61{bottom:244.186667pt;}
.y30{bottom:253.466667pt;}
.yad{bottom:256.826667pt;}
.y60{bottom:262.586667pt;}
.y2f{bottom:270.266667pt;}
.yfa{bottom:271.226667pt;}
.yac{bottom:275.226667pt;}
.y5f{bottom:280.986667pt;}
.y2e{bottom:287.226667pt;}
.yf9{bottom:288.506667pt;}
.yab{bottom:293.466667pt;}
.y5e{bottom:299.386667pt;}
.y2d{bottom:304.346667pt;}
.yf8{bottom:306.906667pt;}
.yaa{bottom:312.186667pt;}
.y5d{bottom:317.786667pt;}
.y2c{bottom:321.306667pt;}
.yf7{bottom:325.146667pt;}
.ya9{bottom:331.066667pt;}
.y5c{bottom:336.186667pt;}
.y2b{bottom:338.146667pt;}
.yf6{bottom:344.066667pt;}
.ya8{bottom:349.506667pt;}
.y5b{bottom:354.626667pt;}
.y2a{bottom:354.946667pt;}
.yf5{bottom:362.466667pt;}
.ya7{bottom:367.906667pt;}
.y29{bottom:372.226667pt;}
.y5a{bottom:373.026667pt;}
.yf4{bottom:380.866667pt;}
.ya6{bottom:386.306667pt;}
.y28{bottom:389.026667pt;}
.y59{bottom:391.426667pt;}
.yf3{bottom:399.106667pt;}
.ya5{bottom:404.546667pt;}
.y27{bottom:405.986667pt;}
.y58{bottom:409.826667pt;}
.yf2{bottom:417.986667pt;}
.y26{bottom:422.786667pt;}
.ya4{bottom:423.426667pt;}
.y57{bottom:428.226667pt;}
.yf1{bottom:436.386667pt;}
.y25{bottom:439.586667pt;}
.ya3{bottom:441.826667pt;}
.y56{bottom:446.626667pt;}
.yf0{bottom:454.786667pt;}
.y24{bottom:456.866667pt;}
.ya2{bottom:460.226667pt;}
.y55{bottom:465.026667pt;}
.yef{bottom:473.666667pt;}
.y23{bottom:475.586667pt;}
.ya1{bottom:478.626667pt;}
.y54{bottom:483.426667pt;}
.yee{bottom:492.066667pt;}
.y22{bottom:495.586667pt;}
.ya0{bottom:497.026667pt;}
.y53{bottom:501.826667pt;}
.yed{bottom:510.466667pt;}
.y21{bottom:514.946667pt;}
.y9f{bottom:515.426667pt;}
.y52{bottom:520.226667pt;}
.yec{bottom:528.866667pt;}
.y9e{bottom:533.826667pt;}
.y20{bottom:535.426667pt;}
.y51{bottom:538.466667pt;}
.yeb{bottom:547.266667pt;}
.y9d{bottom:552.226667pt;}
.y50{bottom:556.866667pt;}
.y1f{bottom:563.293333pt;}
.yea{bottom:565.693333pt;}
.y9c{bottom:570.653333pt;}
.y1e{bottom:575.293333pt;}
.ye9{bottom:584.093333pt;}
.y9b{bottom:589.053333pt;}
.y4f{bottom:593.693333pt;}
.y1d{bottom:594.653333pt;}
.ye8{bottom:602.333333pt;}
.y7f{bottom:605.213333pt;}
.y9a{bottom:607.453333pt;}
.y4e{bottom:612.093333pt;}
.y1c{bottom:615.133333pt;}
.ye7{bottom:621.053333pt;}
.y7e{bottom:623.613333pt;}
.y99{bottom:625.853333pt;}
.y4d{bottom:630.493333pt;}
.y1b{bottom:635.133333pt;}
.y129{bottom:635.773333pt;}
.ye6{bottom:639.933333pt;}
.y7d{bottom:641.853333pt;}
.y98{bottom:644.253333pt;}
.y4c{bottom:648.893333pt;}
.y128{bottom:654.173333pt;}
.y1a{bottom:654.973333pt;}
.y7c{bottom:660.733333pt;}
.y97{bottom:662.653333pt;}
.y4b{bottom:667.293333pt;}
.y127{bottom:668.573333pt;}
.ye2{bottom:674.013333pt;}
.y19{bottom:674.493333pt;}
.y7b{bottom:679.453333pt;}
.y96{bottom:681.053333pt;}
.y4a{bottom:685.693333pt;}
.y126{bottom:686.973333pt;}
.y18{bottom:694.813333pt;}
.y7a{bottom:698.173333pt;}
.y49{bottom:704.093333pt;}
.yda{bottom:711.453333pt;}
.y112{bottom:711.600000pt;}
.y10e{bottom:711.626667pt;}
.y17{bottom:714.813333pt;}
.y79{bottom:717.053333pt;}
.y95{bottom:717.853333pt;}
.y67{bottom:718.493333pt;}
.y48{bottom:722.493333pt;}
.y10b{bottom:723.133333pt;}
.y125{bottom:727.453333pt;}
.y16{bottom:734.653333pt;}
.y78{bottom:735.453333pt;}
.y94{bottom:736.253333pt;}
.ydf{bottom:738.173333pt;}
.y47{bottom:740.893333pt;}
.y124{bottom:744.253333pt;}
.y77{bottom:753.693333pt;}
.y15{bottom:754.173333pt;}
.y93{bottom:754.653333pt;}
.y123{bottom:761.053333pt;}
.yd9{bottom:761.213333pt;}
.y76{bottom:772.573333pt;}
.y92{bottom:773.053333pt;}
.y14{bottom:774.013333pt;}
.y46{bottom:777.373333pt;}
.y122{bottom:778.013333pt;}
.yd8{bottom:779.613333pt;}
.y75{bottom:791.013333pt;}
.y91{bottom:791.333333pt;}
.y13{bottom:792.933333pt;}
.y45{bottom:794.213333pt;}
.y121{bottom:794.853333pt;}
.yd7{bottom:798.053333pt;}
.y74{bottom:809.413333pt;}
.y90{bottom:810.213333pt;}
.y44{bottom:811.173333pt;}
.y120{bottom:811.813333pt;}
.y12{bottom:814.373333pt;}
.y102{bottom:815.986667pt;}
.yd6{bottom:816.293333pt;}
.y73{bottom:827.813333pt;}
.y43{bottom:827.973333pt;}
.y8f{bottom:828.613333pt;}
.y11{bottom:835.973333pt;}
.y42{bottom:844.773333pt;}
.y11f{bottom:845.573333pt;}
.y72{bottom:846.213333pt;}
.y8e{bottom:847.013333pt;}
.y10{bottom:857.733333pt;}
.y41{bottom:861.733333pt;}
.y11e{bottom:862.373333pt;}
.y71{bottom:864.613333pt;}
.y40{bottom:878.533333pt;}
.yf{bottom:878.853333pt;}
.y11d{bottom:879.173333pt;}
.y70{bottom:883.013333pt;}
.y8d{bottom:883.813333pt;}
.yd5{bottom:889.893333pt;}
.y3f{bottom:895.493333pt;}
.y11c{bottom:896.133333pt;}
.ye{bottom:900.293333pt;}
.y6f{bottom:901.413333pt;}
.y8c{bottom:902.213333pt;}
.yd4{bottom:908.293333pt;}
.y3e{bottom:912.293333pt;}
.y11b{bottom:912.933333pt;}
.y6e{bottom:919.813333pt;}
.y8b{bottom:920.613333pt;}
.yd{bottom:921.733333pt;}
.yd3{bottom:926.693333pt;}
.y3d{bottom:929.093333pt;}
.y11a{bottom:929.893333pt;}
.y6d{bottom:938.213333pt;}
.y8a{bottom:939.013333pt;}
.yc{bottom:943.013333pt;}
.yd2{bottom:945.093333pt;}
.y3c{bottom:946.053333pt;}
.y119{bottom:946.693333pt;}
.y6c{bottom:956.613333pt;}
.y6{bottom:957.413333pt;}
.y3b{bottom:962.853333pt;}
.yc6{bottom:963.413333pt;}
.ycc{bottom:963.493333pt;}
.y6b{bottom:975.013333pt;}
.y89{bottom:975.813333pt;}
.y3a{bottom:980.133333pt;}
.y118{bottom:980.453333pt;}
.y6a{bottom:993.413333pt;}
.y88{bottom:994.213333pt;}
.y39{bottom:996.933333pt;}
.y117{bottom:997.253333pt;}
.y69{bottom:1011.840000pt;}
.y87{bottom:1013.120000pt;}
.y38{bottom:1013.920000pt;}
.y116{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h33{height:18.400000pt;}
.h3c{height:22.000331pt;}
.h41{height:25.999678pt;}
.h34{height:26.080000pt;}
.h29{height:32.577806pt;}
.h26{height:33.573115pt;}
.h22{height:33.589826pt;}
.h1f{height:35.048389pt;}
.h1e{height:35.065835pt;}
.h35{height:36.800000pt;}
.h42{height:37.714782pt;}
.h3d{height:37.774776pt;}
.h3{height:40.163750pt;}
.h2d{height:43.999677pt;}
.h21{height:44.000297pt;}
.hd{height:44.574687pt;}
.h3f{height:44.999997pt;}
.h32{height:45.120000pt;}
.h1a{height:45.933764pt;}
.h28{height:46.135039pt;}
.hf{height:50.025000pt;}
.h37{height:52.785000pt;}
.h18{height:54.375000pt;}
.h25{height:54.375284pt;}
.h15{height:55.200000pt;}
.h1c{height:56.764650pt;}
.h13{height:57.375000pt;}
.h24{height:57.522016pt;}
.h27{height:57.585633pt;}
.h23{height:57.614297pt;}
.h39{height:57.622594pt;}
.h10{height:57.758750pt;}
.h4{height:57.787500pt;}
.h1b{height:60.010624pt;}
.h20{height:60.116069pt;}
.h1d{height:60.145992pt;}
.h36{height:60.519362pt;}
.h3a{height:61.024666pt;}
.h3b{height:61.055041pt;}
.h2b{height:61.388392pt;}
.he{height:62.781250pt;}
.h7{height:62.812500pt;}
.h12{height:63.293125pt;}
.hb{height:64.500000pt;}
.h8{height:64.752187pt;}
.h2c{height:65.012798pt;}
.h2a{height:65.045159pt;}
.h2f{height:65.274089pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.h30{height:69.127910pt;}
.h2e{height:69.162319pt;}
.hc{height:69.660000pt;}
.h38{height:69.933333pt;}
.h6{height:70.106667pt;}
.h40{height:70.699513pt;}
.h14{height:71.524375pt;}
.h31{height:71.684375pt;}
.h44{height:72.213970pt;}
.ha{height:73.490625pt;}
.h43{height:75.393056pt;}
.h45{height:75.430584pt;}
.h9{height:75.465000pt;}
.h3e{height:75.674440pt;}
.h11{height:96.066399pt;}
.h17{height:99.062500pt;}
.h19{height:104.419999pt;}
.h16{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:20.000234pt;}
.w1a{width:22.000258pt;}
.w17{width:29.999479pt;}
.w13{width:41.746667pt;}
.w10{width:41.760000pt;}
.w14{width:41.778667pt;}
.w18{width:43.000093pt;}
.wc{width:46.226667pt;}
.w5{width:54.110667pt;}
.wd{width:57.138667pt;}
.w1b{width:63.000451pt;}
.wa{width:63.065213pt;}
.wb{width:72.190667pt;}
.w4{width:73.306667pt;}
.w16{width:74.001191pt;}
.w12{width:76.786667pt;}
.w15{width:76.826667pt;}
.w11{width:76.832000pt;}
.w9{width:106.070590pt;}
.w8{width:107.999313pt;}
.w3{width:160.653333pt;}
.we{width:239.066667pt;}
.wf{width:239.093333pt;}
.w6{width:266.998912pt;}
.w7{width:275.801112pt;}
.w1c{width:300.225333pt;}
.w1d{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x86{left:1.531500pt;}
.x50{left:2.804223pt;}
.x3{left:7.038667pt;}
.x6f{left:8.158667pt;}
.x7e{left:9.106667pt;}
.x4d{left:11.279219pt;}
.x8e{left:13.018148pt;}
.x67{left:14.257630pt;}
.x8a{left:15.842802pt;}
.x5f{left:17.031987pt;}
.x80{left:19.870667pt;}
.x70{left:23.390667pt;}
.x7f{left:24.320000pt;}
.x8c{left:29.952251pt;}
.x77{left:30.880000pt;}
.x78{left:31.840000pt;}
.x88{left:32.870859pt;}
.x4f{left:34.461443pt;}
.x58{left:36.366848pt;}
.x72{left:38.066667pt;}
.x5b{left:40.589160pt;}
.x4e{left:41.721055pt;}
.x57{left:43.003062pt;}
.x64{left:44.149203pt;}
.x74{left:49.946667pt;}
.x6b{left:51.588559pt;}
.x91{left:53.291065pt;}
.x87{left:55.788428pt;}
.x66{left:58.518644pt;}
.x49{left:60.976140pt;}
.x85{left:65.277628pt;}
.x2{left:68.481333pt;}
.x7a{left:69.786667pt;}
.x60{left:73.037175pt;}
.x68{left:74.013111pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x5c{left:79.802853pt;}
.x63{left:82.730910pt;}
.x5e{left:83.903487pt;}
.x5a{left:86.656875pt;}
.x41{left:88.672000pt;}
.x65{left:95.750551pt;}
.x5d{left:96.774717pt;}
.x32{left:98.112000pt;}
.x42{left:99.392000pt;}
.xd{left:102.112000pt;}
.x34{left:108.832000pt;}
.x6e{left:111.072000pt;}
.x1c{left:113.312000pt;}
.x3e{left:118.592000pt;}
.x9{left:123.072000pt;}
.x30{left:129.632000pt;}
.xa{left:136.186667pt;}
.x71{left:141.640000pt;}
.x96{left:143.546667pt;}
.x18{left:147.706667pt;}
.x89{left:149.693333pt;}
.x5{left:153.466667pt;}
.x43{left:163.706667pt;}
.x12{left:168.986667pt;}
.x16{left:170.426667pt;}
.xb{left:173.626667pt;}
.x13{left:181.786667pt;}
.x15{left:184.506667pt;}
.x73{left:188.520000pt;}
.x8b{left:195.493333pt;}
.x4b{left:212.092032pt;}
.x52{left:213.575063pt;}
.x33{left:217.466667pt;}
.x4c{left:219.014463pt;}
.x53{left:221.416407pt;}
.x4a{left:226.767074pt;}
.x56{left:232.556778pt;}
.x1b{left:237.146667pt;}
.x55{left:240.398122pt;}
.x48{left:243.128021pt;}
.x75{left:246.306667pt;}
.x47{left:252.502678pt;}
.x54{left:255.440700pt;}
.x8d{left:257.066667pt;}
.x46{left:261.213333pt;}
.xe{left:265.346667pt;}
.x19{left:288.706667pt;}
.x8f{left:298.466667pt;}
.x31{left:320.226667pt;}
.x79{left:331.106667pt;}
.x1f{left:333.666667pt;}
.x90{left:337.893333pt;}
.x20{left:338.946667pt;}
.x37{left:353.666667pt;}
.x83{left:359.266667pt;}
.x61{left:361.186667pt;}
.x98{left:368.706667pt;}
.x21{left:370.306667pt;}
.x62{left:374.146667pt;}
.x22{left:375.586667pt;}
.x84{left:376.760000pt;}
.x1a{left:385.506667pt;}
.x23{left:391.586667pt;}
.xc{left:396.893333pt;}
.x25{left:398.013333pt;}
.x14{left:403.773333pt;}
.x7b{left:408.586667pt;}
.xf{left:415.773333pt;}
.x10{left:428.093333pt;}
.x45{left:432.093333pt;}
.x24{left:433.533333pt;}
.x3d{left:441.693333pt;}
.x6d{left:450.653333pt;}
.x39{left:476.093333pt;}
.x69{left:480.253333pt;}
.x3a{left:482.973333pt;}
.x76{left:486.026667pt;}
.x6a{left:487.413333pt;}
.x4{left:491.466667pt;}
.x92{left:496.800000pt;}
.x82{left:503.453333pt;}
.x3b{left:523.933333pt;}
.x51{left:528.253333pt;}
.x3c{left:530.813333pt;}
.x44{left:532.893333pt;}
.x59{left:537.053333pt;}
.x93{left:538.200000pt;}
.x6c{left:550.493333pt;}
.x36{left:564.933333pt;}
.x38{left:566.373333pt;}
.x7c{left:570.853333pt;}
.x1d{left:573.413333pt;}
.x17{left:574.693333pt;}
.x94{left:577.626667pt;}
.x1e{left:579.333333pt;}
.x28{left:583.653333pt;}
.x29{left:588.933333pt;}
.x26{left:590.853333pt;}
.x27{left:596.773333pt;}
.x97{left:609.573333pt;}
.x2a{left:620.293333pt;}
.x3f{left:622.053333pt;}
.x2b{left:625.573333pt;}
.x40{left:628.613333pt;}
.x81{left:636.453333pt;}
.x11{left:641.893333pt;}
.x2c{left:644.773333pt;}
.x7d{left:648.293333pt;}
.x2d{left:650.053333pt;}
.x6{left:652.133333pt;}
.x95{left:655.093333pt;}
.x35{left:667.173333pt;}
.x2e{left:681.573333pt;}
.x2f{left:686.853333pt;}
.x8{left:718.240000pt;}
}




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