
    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_73dff7e5dfc4627b854dc6b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4f8275d71ff6305c94aad15b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.098000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d9bd5fb95fa1621dc507e378.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_16369168095d3f0484f01e14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9f8a65642f98931b1688e09f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_49d4e402a592dec9a17180c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.676758;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_45c45d8889dcf895909064cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_36fc97d2076660187aa806af.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2c7257428891551b0339d0e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0e63c31118c100e56c0a4375.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.328000;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_a77b9c05f10a52764fe68ac0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.200885;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_73a6a96f6837f2a107383b86.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.225182;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d1b82774aaace9126bc19b64.woff2')format("woff");}.fff{font-family:fff;line-height:0.411000;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_401eafaeebe2408d04dbde69.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.268000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-43.186177px;}
.v2{vertical-align:-20.399963px;}
.v9{vertical-align:-18.359985px;}
.v4{vertical-align:-17.339996px;}
.v5{vertical-align:-10.830113px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.918912px;}
.v8{vertical-align:10.799927px;}
.vb{vertical-align:14.280029px;}
.v3{vertical-align:18.161982px;}
.v1{vertical-align:20.399963px;}
.va{vertical-align:38.016000px;}
.vc{vertical-align:44.981999px;}
.lsb7{letter-spacing:-5.124000px;}
.lsa8{letter-spacing:-4.698000px;}
.ls18{letter-spacing:-4.380000px;}
.lsd9{letter-spacing:-2.970000px;}
.ls40{letter-spacing:-1.674000px;}
.lsd1{letter-spacing:-1.665000px;}
.ls3b{letter-spacing:-1.440000px;}
.lsda{letter-spacing:-1.350000px;}
.lse0{letter-spacing:-1.305000px;}
.ls3c{letter-spacing:-1.296000px;}
.ls44{letter-spacing:-1.242000px;}
.ls41{letter-spacing:-1.188000px;}
.ls19{letter-spacing:-1.140000px;}
.lsba{letter-spacing:-1.092000px;}
.ls79{letter-spacing:-1.088100px;}
.ls3d{letter-spacing:-1.080000px;}
.lsb6{letter-spacing:-1.050000px;}
.ls3f{letter-spacing:-1.026000px;}
.ls83{letter-spacing:-0.972000px;}
.lsd5{letter-spacing:-0.945000px;}
.ls45{letter-spacing:-0.918000px;}
.ls82{letter-spacing:-0.864000px;}
.ls43{letter-spacing:-0.810000px;}
.ls3a{letter-spacing:-0.756000px;}
.lsd2{letter-spacing:-0.720000px;}
.ls3e{letter-spacing:-0.702000px;}
.lsdf{letter-spacing:-0.675000px;}
.lsb3{letter-spacing:-0.672000px;}
.ls84{letter-spacing:-0.631800px;}
.ls97{letter-spacing:-0.608256px;}
.ls39{letter-spacing:-0.594000px;}
.lsd0{letter-spacing:-0.585000px;}
.ls7a{letter-spacing:-0.540000px;}
.lsb5{letter-spacing:-0.504000px;}
.lsd8{letter-spacing:-0.495000px;}
.lsa7{letter-spacing:-0.486000px;}
.lsd4{letter-spacing:-0.450000px;}
.lsbd{letter-spacing:-0.432000px;}
.ls92{letter-spacing:-0.428544px;}
.ls7b{letter-spacing:-0.378000px;}
.lsd7{letter-spacing:-0.360000px;}
.lsbe{letter-spacing:-0.351000px;}
.lsb4{letter-spacing:-0.336000px;}
.lsbb{letter-spacing:-0.324000px;}
.ls8f{letter-spacing:-0.321408px;}
.lsce{letter-spacing:-0.315000px;}
.ls1a{letter-spacing:-0.270000px;}
.lscd{letter-spacing:-0.225000px;}
.ls47{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.204000px;}
.ls59{letter-spacing:-0.180000px;}
.lsbc{letter-spacing:-0.175500px;}
.ls31{letter-spacing:-0.162000px;}
.ls1b{letter-spacing:-0.153000px;}
.ls46{letter-spacing:-0.140400px;}
.lsde{letter-spacing:-0.135000px;}
.ls4a{letter-spacing:-0.120000px;}
.ls4b{letter-spacing:-0.108000px;}
.ls5a{letter-spacing:-0.105300px;}
.ls21{letter-spacing:-0.102000px;}
.lscf{letter-spacing:-0.090000px;}
.lsa6{letter-spacing:-0.070200px;}
.lsb1{letter-spacing:-0.054000px;}
.ls17{letter-spacing:0.000000px;}
.lsc1{letter-spacing:0.000054px;}
.ls25{letter-spacing:0.000084px;}
.lsc2{letter-spacing:0.000146px;}
.ls52{letter-spacing:0.003039px;}
.ls4f{letter-spacing:0.012651px;}
.ls4{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013864px;}
.ls3{letter-spacing:0.013956px;}
.lsd6{letter-spacing:0.045000px;}
.ls4c{letter-spacing:0.050987px;}
.ls30{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.066437px;}
.lsc6{letter-spacing:0.070200px;}
.ls50{letter-spacing:0.073401px;}
.lse{letter-spacing:0.082001px;}
.lsc7{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.102000px;}
.ls33{letter-spacing:0.105300px;}
.ls51{letter-spacing:0.107999px;}
.ls48{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.111046px;}
.ls4e{letter-spacing:0.126610px;}
.lsca{letter-spacing:0.135000px;}
.lsd{letter-spacing:0.153000px;}
.ls5{letter-spacing:0.162000px;}
.ls34{letter-spacing:0.175500px;}
.ls7{letter-spacing:0.178795px;}
.lsa9{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.209923px;}
.ls29{letter-spacing:0.210600px;}
.ls2b{letter-spacing:0.216000px;}
.lsd3{letter-spacing:0.225000px;}
.lsa4{letter-spacing:0.232195px;}
.lsb8{letter-spacing:0.245699px;}
.ls36{letter-spacing:0.245700px;}
.ls28{letter-spacing:0.247756px;}
.ls6{letter-spacing:0.270000px;}
.lsa1{letter-spacing:0.277563px;}
.ls27{letter-spacing:0.280800px;}
.lsa0{letter-spacing:0.295273px;}
.ls1d{letter-spacing:0.298350px;}
.ls2d{letter-spacing:0.300000px;}
.lscc{letter-spacing:0.315000px;}
.lsa5{letter-spacing:0.315900px;}
.lsa2{letter-spacing:0.315901px;}
.ls9e{letter-spacing:0.322878px;}
.ls24{letter-spacing:0.324000px;}
.ls49{letter-spacing:0.351000px;}
.lsb2{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.378000px;}
.ls8{letter-spacing:0.386100px;}
.lsdc{letter-spacing:0.405000px;}
.ls9f{letter-spacing:0.410893px;}
.ls9{letter-spacing:0.411020px;}
.ls38{letter-spacing:0.421200px;}
.ls32{letter-spacing:0.432000px;}
.lsc8{letter-spacing:0.450000px;}
.ls2a{letter-spacing:0.456301px;}
.ls13{letter-spacing:0.459000px;}
.ls72{letter-spacing:0.482112px;}
.ls2f{letter-spacing:0.486000px;}
.lsdb{letter-spacing:0.495000px;}
.ls20{letter-spacing:0.497250px;}
.ls12{letter-spacing:0.526765px;}
.ls2e{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.563550px;}
.lsc9{letter-spacing:0.585000px;}
.lsa{letter-spacing:0.594000px;}
.ls10{letter-spacing:0.598633px;}
.lsa3{letter-spacing:0.621000px;}
.lsdd{letter-spacing:0.630000px;}
.ls70{letter-spacing:0.642816px;}
.ls37{letter-spacing:0.648000px;}
.lscb{letter-spacing:0.674999px;}
.lse4{letter-spacing:0.675000px;}
.ls9d{letter-spacing:0.702000px;}
.lse2{letter-spacing:0.756000px;}
.ls1f{letter-spacing:0.762450px;}
.ls16{letter-spacing:0.765000px;}
.ls4d{letter-spacing:0.810000px;}
.ls11{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.867000px;}
.lse1{letter-spacing:0.900000px;}
.lsf{letter-spacing:0.918000px;}
.ls2c{letter-spacing:0.972000px;}
.ls42{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.173000px;}
.ls95{letter-spacing:2.142720px;}
.ls6e{letter-spacing:2.196288px;}
.ls0{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lse3{letter-spacing:6.120000px;}
.ls6b{letter-spacing:19.498753px;}
.ls62{letter-spacing:24.694849px;}
.ls8e{letter-spacing:26.301889px;}
.ls68{letter-spacing:29.087424px;}
.ls56{letter-spacing:29.087427px;}
.ls63{letter-spacing:30.426626px;}
.ls67{letter-spacing:33.105024px;}
.ls58{letter-spacing:34.100352px;}
.ls8d{letter-spacing:34.658498px;}
.ls6a{letter-spacing:40.015296px;}
.ls65{letter-spacing:46.550595px;}
.ls75{letter-spacing:48.394368px;}
.ls87{letter-spacing:49.068290px;}
.ls98{letter-spacing:51.435649px;}
.ls7f{letter-spacing:53.996547px;}
.lsac{letter-spacing:64.297265px;}
.ls9a{letter-spacing:67.402368px;}
.ls93{letter-spacing:69.531266px;}
.ls99{letter-spacing:74.283264px;}
.ls57{letter-spacing:76.032000px;}
.ls6f{letter-spacing:76.495106px;}
.lsc5{letter-spacing:77.406589px;}
.ls54{letter-spacing:77.742722px;}
.lsaa{letter-spacing:82.297265px;}
.ls5f{letter-spacing:82.762561px;}
.ls8b{letter-spacing:86.673030px;}
.ls6d{letter-spacing:90.315651px;}
.ls8a{letter-spacing:96.583107px;}
.ls78{letter-spacing:99.259778px;}
.ls74{letter-spacing:99.639937px;}
.ls76{letter-spacing:100.210172px;}
.lsc4{letter-spacing:108.484714px;}
.ls55{letter-spacing:110.018306px;}
.ls7d{letter-spacing:116.617544px;}
.ls9c{letter-spacing:119.978491px;}
.ls88{letter-spacing:122.510019px;}
.lsbf{letter-spacing:126.277734px;}
.lsc3{letter-spacing:128.644718px;}
.lsae{letter-spacing:132.212436px;}
.ls94{letter-spacing:135.259212px;}
.lsb9{letter-spacing:136.626000px;}
.lsab{letter-spacing:139.859996px;}
.ls5b{letter-spacing:144.365764px;}
.ls5e{letter-spacing:144.955020px;}
.ls5d{letter-spacing:145.062148px;}
.ls77{letter-spacing:152.063999px;}
.ls66{letter-spacing:152.883085px;}
.ls7e{letter-spacing:153.043790px;}
.ls73{letter-spacing:158.982917px;}
.lsc0{letter-spacing:160.692008px;}
.ls90{letter-spacing:168.096393px;}
.ls6c{letter-spacing:176.720842px;}
.ls53{letter-spacing:177.990908px;}
.ls60{letter-spacing:179.506381px;}
.ls80{letter-spacing:186.845189px;}
.ls81{letter-spacing:193.539458px;}
.ls89{letter-spacing:198.523022px;}
.lsaf{letter-spacing:201.767984px;}
.ls91{letter-spacing:214.754113px;}
.ls7c{letter-spacing:220.968011px;}
.ls64{letter-spacing:222.039370px;}
.ls61{letter-spacing:227.021191px;}
.ls86{letter-spacing:231.413781px;}
.ls69{letter-spacing:252.680269px;}
.ls71{letter-spacing:261.358295px;}
.ls96{letter-spacing:283.371262px;}
.ls5c{letter-spacing:344.656530px;}
.ls9b{letter-spacing:362.862720px;}
.ls85{letter-spacing:363.673172px;}
.ls8c{letter-spacing:364.476685px;}
.lsad{letter-spacing:480.857996px;}
.lsb0{letter-spacing:501.018017px;}
.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;}
}
.ws89{word-spacing:-376.743758px;}
.wsb4{word-spacing:-362.862720px;}
.ws83{word-spacing:-358.048557px;}
.wsa2{word-spacing:-344.656530px;}
.ws98{word-spacing:-292.076926px;}
.ws6e{word-spacing:-273.518231px;}
.ws66{word-spacing:-264.947341px;}
.ws5f{word-spacing:-240.413191px;}
.ws7a{word-spacing:-234.360012px;}
.wsae{word-spacing:-231.413781px;}
.ws8f{word-spacing:-226.914050px;}
.wsaa{word-spacing:-193.539458px;}
.ws69{word-spacing:-188.880779px;}
.wsa9{word-spacing:-186.845189px;}
.ws86{word-spacing:-180.845572px;}
.ws90{word-spacing:-180.256330px;}
.ws7d{word-spacing:-165.310862px;}
.ws5e{word-spacing:-161.775393px;}
.ws5c{word-spacing:-158.347020px;}
.wsa4{word-spacing:-152.883085px;}
.wsa6{word-spacing:-152.063999px;}
.ws94{word-spacing:-147.419149px;}
.wsa3{word-spacing:-145.062148px;}
.ws85{word-spacing:-135.902020px;}
.ws62{word-spacing:-129.902426px;}
.ws7c{word-spacing:-128.884617px;}
.ws73{word-spacing:-108.345601px;}
.ws6a{word-spacing:-102.475588px;}
.wsaf{word-spacing:-96.583107px;}
.ws5d{word-spacing:-96.154562px;}
.ws9d{word-spacing:-90.554109px;}
.ws6c{word-spacing:-88.655043px;}
.ws75{word-spacing:-88.159099px;}
.wsb0{word-spacing:-86.673030px;}
.ws93{word-spacing:-81.691203px;}
.ws76{word-spacing:-68.162686px;}
.wsb3{word-spacing:-67.402368px;}
.ws80{word-spacing:-66.156484px;}
.ws63{word-spacing:-58.817668px;}
.ws7{word-spacing:-54.000000px;}
.ws64{word-spacing:-45.372097px;}
.ws67{word-spacing:-42.693699px;}
.wsa5{word-spacing:-40.015296px;}
.ws87{word-spacing:-36.961922px;}
.ws70{word-spacing:-31.658690px;}
.ws72{word-spacing:-24.292236px;}
.ws65{word-spacing:-17.731004px;}
.ws2{word-spacing:-15.067500px;}
.ws84{word-spacing:-14.999045px;}
.ws2f{word-spacing:-14.700000px;}
.wsb9{word-spacing:-13.596000px;}
.ws37{word-spacing:-13.500000px;}
.ws7b{word-spacing:-13.392001px;}
.ws6d{word-spacing:-12.802753px;}
.ws71{word-spacing:-12.642049px;}
.wsba{word-spacing:-12.636000px;}
.ws9{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws58{word-spacing:-12.474000px;}
.ws77{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws7e{word-spacing:-12.267073px;}
.ws79{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.wsbb{word-spacing:-11.988000px;}
.ws91{word-spacing:-11.838529px;}
.ws35{word-spacing:-11.610000px;}
.wsb6{word-spacing:-11.502000px;}
.ws36{word-spacing:-11.340000px;}
.ws6{word-spacing:-11.220000px;}
.ws38{word-spacing:-10.692000px;}
.wsf0{word-spacing:-10.305000px;}
.wsf8{word-spacing:-10.215000px;}
.wsf{word-spacing:-10.200000px;}
.ws10f{word-spacing:-10.170000px;}
.wsf3{word-spacing:-10.125000px;}
.ws116{word-spacing:-10.035000px;}
.wsf1{word-spacing:-9.990000px;}
.ws13{word-spacing:-9.984000px;}
.wsf5{word-spacing:-9.855000px;}
.wsfa{word-spacing:-9.765000px;}
.wsf7{word-spacing:-9.720000px;}
.ws108{word-spacing:-9.675000px;}
.wsf2{word-spacing:-9.585000px;}
.wscf{word-spacing:-9.534000px;}
.ws119{word-spacing:-9.450000px;}
.wsce{word-spacing:-9.114000px;}
.wsf9{word-spacing:-9.000000px;}
.wsf6{word-spacing:-8.955000px;}
.ws33{word-spacing:-8.388900px;}
.wsb8{word-spacing:-8.353800px;}
.ws3a{word-spacing:-8.318700px;}
.wsb5{word-spacing:-8.283600px;}
.wsdb{word-spacing:-8.248500px;}
.ws32{word-spacing:-8.213400px;}
.ws3b{word-spacing:-8.178300px;}
.ws31{word-spacing:-8.143200px;}
.ws30{word-spacing:-8.073000px;}
.ws5a{word-spacing:-8.037900px;}
.ws5{word-spacing:-8.034000px;}
.wsdd{word-spacing:-8.022000px;}
.ws4{word-spacing:-7.980000px;}
.ws8{word-spacing:-7.967700px;}
.wsb7{word-spacing:-7.897500px;}
.ws103{word-spacing:-7.875000px;}
.ws59{word-spacing:-7.862400px;}
.ws39{word-spacing:-7.827300px;}
.wse4{word-spacing:-7.792200px;}
.wse5{word-spacing:-7.616700px;}
.wsd{word-spacing:-7.392450px;}
.ws82{word-spacing:-7.335900px;}
.wsf4{word-spacing:-7.335000px;}
.ws34{word-spacing:-7.265700px;}
.wsc{word-spacing:-7.193550px;}
.wse{word-spacing:-7.127250px;}
.ws78{word-spacing:-6.949800px;}
.wsb{word-spacing:-6.928350px;}
.wsa{word-spacing:-6.630000px;}
.ws118{word-spacing:-6.120000px;}
.wsbc{word-spacing:-5.508000px;}
.ws8c{word-spacing:-4.124736px;}
.ws123{word-spacing:-3.960000px;}
.wsee{word-spacing:-3.864000px;}
.ws12{word-spacing:-3.276000px;}
.ws14{word-spacing:-2.400000px;}
.wsb1{word-spacing:-2.196288px;}
.wsb2{word-spacing:-2.142720px;}
.wsc3{word-spacing:-1.890000px;}
.ws55{word-spacing:-1.860000px;}
.ws1a{word-spacing:-1.836000px;}
.ws9e{word-spacing:-1.800000px;}
.ws4b{word-spacing:-1.782000px;}
.wsc5{word-spacing:-1.674000px;}
.wsd7{word-spacing:-1.620000px;}
.ws11a{word-spacing:-1.575000px;}
.wsc2{word-spacing:-1.566000px;}
.ws1d{word-spacing:-1.530000px;}
.wsa0{word-spacing:-1.512000px;}
.ws112{word-spacing:-1.485000px;}
.ws54{word-spacing:-1.458000px;}
.ws23{word-spacing:-1.428000px;}
.wsc1{word-spacing:-1.404000px;}
.ws102{word-spacing:-1.395000px;}
.ws49{word-spacing:-1.386000px;}
.ws51{word-spacing:-1.350000px;}
.ws18{word-spacing:-1.296000px;}
.ws2e{word-spacing:-1.275000px;}
.ws15{word-spacing:-1.260000px;}
.ws3d{word-spacing:-1.242000px;}
.wsc8{word-spacing:-1.188000px;}
.ws28{word-spacing:-1.173000px;}
.ws16{word-spacing:-1.134000px;}
.ws11b{word-spacing:-1.125000px;}
.ws40{word-spacing:-1.080000px;}
.wsfb{word-spacing:-1.035000px;}
.wsac{word-spacing:-1.026000px;}
.ws2d{word-spacing:-1.020000px;}
.ws52{word-spacing:-0.972000px;}
.wsd9{word-spacing:-0.966000px;}
.ws11{word-spacing:-0.960000px;}
.ws100{word-spacing:-0.945000px;}
.wsd8{word-spacing:-0.924000px;}
.ws21{word-spacing:-0.918000px;}
.ws27{word-spacing:-0.867000px;}
.ws4d{word-spacing:-0.864000px;}
.wsff{word-spacing:-0.855000px;}
.ws24{word-spacing:-0.816000px;}
.wsfe{word-spacing:-0.810000px;}
.ws2a{word-spacing:-0.765000px;}
.ws4f{word-spacing:-0.756000px;}
.ws111{word-spacing:-0.720000px;}
.ws10e{word-spacing:-0.675000px;}
.ws3e{word-spacing:-0.648000px;}
.ws9f{word-spacing:-0.600000px;}
.ws17{word-spacing:-0.594000px;}
.ws106{word-spacing:-0.585000px;}
.ws19{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.510000px;}
.wsfc{word-spacing:-0.495000px;}
.ws41{word-spacing:-0.486000px;}
.ws26{word-spacing:-0.459000px;}
.ws109{word-spacing:-0.450000px;}
.ws3c{word-spacing:-0.432000px;}
.ws45{word-spacing:-0.421200px;}
.ws46{word-spacing:-0.378000px;}
.wsd6{word-spacing:-0.360000px;}
.wsc0{word-spacing:-0.351000px;}
.ws4c{word-spacing:-0.324000px;}
.wsbe{word-spacing:-0.315900px;}
.ws107{word-spacing:-0.315000px;}
.ws50{word-spacing:-0.300000px;}
.wse3{word-spacing:-0.280800px;}
.ws43{word-spacing:-0.270000px;}
.wse9{word-spacing:-0.245700px;}
.ws114{word-spacing:-0.225000px;}
.ws3f{word-spacing:-0.216000px;}
.wsc6{word-spacing:-0.180000px;}
.ws42{word-spacing:-0.175500px;}
.wsbd{word-spacing:-0.162000px;}
.ws20{word-spacing:-0.153000px;}
.ws10a{word-spacing:-0.135000px;}
.wsc9{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.102000px;}
.ws113{word-spacing:-0.090000px;}
.wsd5{word-spacing:-0.054000px;}
.ws105{word-spacing:-0.045000px;}
.ws10{word-spacing:0.000000px;}
.ws53{word-spacing:0.054000px;}
.ws115{word-spacing:0.090000px;}
.ws2c{word-spacing:0.102000px;}
.wsa8{word-spacing:0.108000px;}
.ws101{word-spacing:0.135000px;}
.ws1c{word-spacing:0.153000px;}
.wsbf{word-spacing:0.162000px;}
.ws11c{word-spacing:0.180000px;}
.ws22{word-spacing:0.204000px;}
.wsad{word-spacing:0.216000px;}
.wsfd{word-spacing:0.225000px;}
.ws57{word-spacing:0.270000px;}
.ws117{word-spacing:0.315000px;}
.ws1b{word-spacing:0.324000px;}
.wse8{word-spacing:0.351000px;}
.wsc7{word-spacing:0.378000px;}
.ws44{word-spacing:0.432000px;}
.ws104{word-spacing:0.450000px;}
.ws56{word-spacing:0.486000px;}
.ws10c{word-spacing:0.495000px;}
.wsda{word-spacing:0.540000px;}
.ws11d{word-spacing:0.585000px;}
.ws81{word-spacing:0.589248px;}
.ws126{word-spacing:0.594000px;}
.wsab{word-spacing:0.631800px;}
.ws120{word-spacing:0.648000px;}
.ws122{word-spacing:0.702000px;}
.ws110{word-spacing:0.720000px;}
.wsa7{word-spacing:0.756000px;}
.ws10b{word-spacing:0.765000px;}
.wsa1{word-spacing:0.810000px;}
.ws2b{word-spacing:0.918000px;}
.ws10d{word-spacing:0.990000px;}
.ws25{word-spacing:1.071000px;}
.wsef{word-spacing:1.080000px;}
.ws121{word-spacing:1.134000px;}
.ws124{word-spacing:1.188000px;}
.ws11e{word-spacing:1.215000px;}
.ws125{word-spacing:1.242000px;}
.ws4e{word-spacing:1.404000px;}
.ws4a{word-spacing:1.440000px;}
.ws11f{word-spacing:1.512000px;}
.ws47{word-spacing:1.782000px;}
.ws29{word-spacing:1.938000px;}
.ws48{word-spacing:2.538000px;}
.wsc4{word-spacing:5.562000px;}
.ws8d{word-spacing:8.517310px;}
.ws5b{word-spacing:21.802197px;}
.ws7f{word-spacing:25.337663px;}
.ws97{word-spacing:32.301508px;}
.ws6f{word-spacing:35.676291px;}
.ws60{word-spacing:35.944133px;}
.ws95{word-spacing:42.693701px;}
.ws6b{word-spacing:45.532804px;}
.ws9b{word-spacing:46.797688px;}
.wsd0{word-spacing:52.751996px;}
.ws74{word-spacing:52.880262px;}
.ws96{word-spacing:59.139072px;}
.ws68{word-spacing:61.603204px;}
.wse1{word-spacing:62.034000px;}
.ws8a{word-spacing:71.299014px;}
.ws99{word-spacing:72.078338px;}
.ws61{word-spacing:79.762744px;}
.wscd{word-spacing:85.427996px;}
.ws92{word-spacing:85.869510px;}
.wsed{word-spacing:86.100008px;}
.wse0{word-spacing:88.212365px;}
.wsdc{word-spacing:91.437218px;}
.ws88{word-spacing:94.279679px;}
.ws9a{word-spacing:95.800322px;}
.ws8b{word-spacing:97.761602px;}
.wsd3{word-spacing:105.587997px;}
.wsea{word-spacing:114.047631px;}
.wsde{word-spacing:114.993337px;}
.wsdf{word-spacing:127.512000px;}
.ws8e{word-spacing:137.669758px;}
.wse6{word-spacing:154.499657px;}
.ws9c{word-spacing:200.420366px;}
.wsec{word-spacing:289.128004px;}
.wseb{word-spacing:309.288004px;}
.wsca{word-spacing:326.512192px;}
.wse7{word-spacing:355.068017px;}
.wse2{word-spacing:382.074002px;}
.wsd4{word-spacing:504.420012px;}
.wscc{word-spacing:507.569992px;}
.wscb{word-spacing:509.669992px;}
.wsd1{word-spacing:524.411992px;}
.wsd2{word-spacing:549.528012px;}
._1b{margin-left:-528.984033px;}
._1e{margin-left:-505.467658px;}
._22{margin-left:-298.909444px;}
._18{margin-left:-241.208472px;}
._1a{margin-left:-169.328458px;}
._23{margin-left:-167.614269px;}
._27{margin-left:-161.073779px;}
._11{margin-left:-134.187815px;}
._15{margin-left:-129.581011px;}
._19{margin-left:-100.248193px;}
._1c{margin-left:-86.190922px;}
._1d{margin-left:-77.834323px;}
._17{margin-left:-76.762945px;}
._16{margin-left:-70.816892px;}
._24{margin-left:-57.049931px;}
._25{margin-left:-49.068287px;}
._1f{margin-left:-34.497792px;}
._26{margin-left:-24.212750px;}
._f{margin-left:-17.302475px;}
._20{margin-left:-13.874116px;}
._10{margin-left:-11.892093px;}
._5{margin-left:-9.860427px;}
._21{margin-left:-8.303039px;}
._2{margin-left:-7.004400px;}
._a{margin-left:-5.824651px;}
._7{margin-left:-4.469496px;}
._1{margin-left:-2.948400px;}
._0{margin-left:-1.776011px;}
._6{width:1.716004px;}
._9{width:3.127598px;}
._8{width:4.356000px;}
._3{width:6.567600px;}
._48{width:8.370002px;}
._12{width:10.124347px;}
._47{width:12.960000px;}
._39{width:15.281992px;}
._38{width:16.732653px;}
._49{width:17.751013px;}
._3f{width:37.194039px;}
._e{width:41.552392px;}
._4{width:43.282170px;}
._2e{width:44.835567px;}
._b{width:46.208390px;}
._c{width:48.183622px;}
._d{width:49.897266px;}
._2f{width:51.240016px;}
._2d{width:52.513833px;}
._2b{width:60.485992px;}
._3b{width:64.200024px;}
._3c{width:67.577999px;}
._36{width:69.730737px;}
._2c{width:70.980009px;}
._41{width:73.806028px;}
._46{width:75.936014px;}
._40{width:77.532019px;}
._35{width:80.849996px;}
._2a{width:97.459119px;}
._33{width:100.721992px;}
._30{width:101.777996px;}
._13{width:110.564355px;}
._3e{width:111.900028px;}
._37{width:119.304014px;}
._32{width:121.169996px;}
._34{width:122.879499px;}
._29{width:125.370009px;}
._3a{width:138.906013px;}
._3d{width:150.192000px;}
._45{width:179.382004px;}
._44{width:185.909392px;}
._28{width:204.330014px;}
._31{width:260.214034px;}
._43{width:261.785982px;}
._42{width:325.823386px;}
._14{width:392.224895px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsf{font-size:27.300001px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fsd{font-size:38.016000px;}
.fs4{font-size:39.000000px;}
.fse{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsc{font-size:53.568003px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:72.575998px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yac{bottom:1.295837px;}
.y99{bottom:2.158813px;}
.ycd{bottom:2.160301px;}
.y9d{bottom:3.022797px;}
.yd5{bottom:3.024302px;}
.y9f{bottom:4.318817px;}
.yd8{bottom:4.320305px;}
.ya4{bottom:4.320523px;}
.yab{bottom:4.751816px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y93{bottom:53.566818px;}
.ya3{bottom:54.862793px;}
.y2e{bottom:68.313899px;}
.y202{bottom:69.089515px;}
.y144{bottom:70.312807px;}
.y15f{bottom:72.029254px;}
.y19d{bottom:76.278299px;}
.y11c{bottom:76.957505px;}
.y184{bottom:77.672998px;}
.y201{bottom:81.835765px;}
.y2d{bottom:83.307899px;}
.yc3{bottom:83.389498px;}
.y143{bottom:85.311307px;}
.y15e{bottom:87.027754px;}
.yd7{bottom:87.706341px;}
.ydc{bottom:87.711531px;}
.ye1{bottom:87.714121px;}
.yd4{bottom:88.974691px;}
.y73{bottom:89.797799px;}
.y19c{bottom:91.278299px;}
.y11b{bottom:91.956005px;}
.y183{bottom:92.676000px;}
.y200{bottom:94.582015px;}
.yd3{bottom:95.027875px;}
.yc4{bottom:96.768305px;}
.ydf{bottom:98.064302px;}
.y2c{bottom:98.307899px;}
.ydb{bottom:98.508076px;}
.ybf{bottom:99.378118px;}
.y142{bottom:100.309806px;}
.yd2{bottom:101.081059px;}
.yc2{bottom:101.965371px;}
.y15d{bottom:102.030755px;}
.y72{bottom:104.796298px;}
.y11a{bottom:106.954504px;}
.yd1{bottom:107.134244px;}
.y1ff{bottom:107.328265px;}
.y182{bottom:107.674499px;}
.yd0{bottom:113.187428px;}
.y2b{bottom:113.307899px;}
.y141{bottom:115.308305px;}
.ydd{bottom:116.223531px;}
.y15c{bottom:117.029254px;}
.ycf{bottom:119.240612px;}
.y71{bottom:119.794798px;}
.y1fe{bottom:120.074515px;}
.y119{bottom:121.953003px;}
.y181{bottom:122.672998px;}
.y19b{bottom:124.285809px;}
.yce{bottom:125.293797px;}
.y2a{bottom:128.307899px;}
.y140{bottom:130.306804px;}
.yda{bottom:130.907211px;}
.ye0{bottom:130.909801px;}
.y15b{bottom:132.027754px;}
.y1fd{bottom:132.820766px;}
.yc5{bottom:133.069805px;}
.yc1{bottom:134.360619px;}
.y70{bottom:134.800801px;}
.y118{bottom:136.951502px;}
.y180{bottom:137.672998px;}
.y19a{bottom:139.284308px;}
.ycc{bottom:140.810381px;}
.y29{bottom:143.307899px;}
.y13f{bottom:145.305303px;}
.y1fc{bottom:145.567016px;}
.ycb{bottom:146.863565px;}
.y15a{bottom:147.026253px;}
.y6f{bottom:149.799300px;}
.y117{bottom:151.950001px;}
.y17f{bottom:152.676011px;}
.yca{bottom:152.916750px;}
.yd6{bottom:152.941795px;}
.y199{bottom:154.282807px;}
.y28{bottom:158.307899px;}
.y1fb{bottom:158.313266px;}
.yc9{bottom:158.969934px;}
.y13e{bottom:160.303802px;}
.yd9{bottom:162.013802px;}
.yde{bottom:163.743530px;}
.ybe{bottom:164.605797px;}
.y6e{bottom:164.797799px;}
.yc8{bottom:165.023118px;}
.y116{bottom:166.948500px;}
.yc0{bottom:167.197803px;}
.y17e{bottom:167.674510px;}
.y198{bottom:169.281307px;}
.y1fa{bottom:171.059516px;}
.yc7{bottom:171.076303px;}
.y27{bottom:173.307899px;}
.y13d{bottom:175.302302px;}
.yc6{bottom:177.129487px;}
.y6d{bottom:179.796298px;}
.y115{bottom:181.947000px;}
.y17d{bottom:182.673010px;}
.y1f9{bottom:183.805766px;}
.y197{bottom:184.279806px;}
.y13c{bottom:190.300801px;}
.y26{bottom:192.636909px;}
.y6c{bottom:194.794798px;}
.y1f8{bottom:196.552016px;}
.y16f{bottom:196.715254px;}
.y114{bottom:196.945499px;}
.y17c{bottom:197.689518px;}
.y196{bottom:199.281307px;}
.y25{bottom:203.313910px;}
.y13b{bottom:205.299300px;}
.ybd{bottom:206.685310px;}
.y1f7{bottom:209.298266px;}
.y6b{bottom:209.793297px;}
.y16e{bottom:211.715254px;}
.y113{bottom:211.943998px;}
.y17b{bottom:212.688018px;}
.y195{bottom:214.279806px;}
.y24{bottom:218.307910px;}
.y13a{bottom:220.297799px;}
.ybc{bottom:221.683810px;}
.y1f6{bottom:222.044516px;}
.y112{bottom:226.942497px;}
.y17a{bottom:227.686517px;}
.y194{bottom:229.279806px;}
.y16d{bottom:231.303749px;}
.y23{bottom:233.307910px;}
.y1f5{bottom:234.790766px;}
.y139{bottom:235.296298px;}
.ybb{bottom:236.682309px;}
.y16c{bottom:241.715254px;}
.y111{bottom:241.940996px;}
.y179{bottom:242.685016px;}
.y6a{bottom:242.800801px;}
.y193{bottom:244.279806px;}
.y1f4{bottom:247.537017px;}
.y22{bottom:248.307910px;}
.y138{bottom:250.294798px;}
.yba{bottom:251.680808px;}
.y16b{bottom:256.713753px;}
.y110{bottom:256.939496px;}
.y178{bottom:257.683515px;}
.y69{bottom:257.799300px;}
.y192{bottom:259.279806px;}
.y1f3{bottom:260.283267px;}
.y137{bottom:265.293297px;}
.yb9{bottom:266.679307px;}
.y21{bottom:267.636909px;}
.y10f{bottom:271.937995px;}
.y177{bottom:272.682014px;}
.y68{bottom:272.797799px;}
.y1f2{bottom:273.029517px;}
.y191{bottom:274.278305px;}
.y136{bottom:280.293297px;}
.yb8{bottom:281.677806px;}
.y1f1{bottom:285.775767px;}
.y16a{bottom:286.877229px;}
.y10e{bottom:286.936494px;}
.y176{bottom:287.680514px;}
.y67{bottom:287.796298px;}
.yb7{bottom:296.676306px;}
.y1f0{bottom:298.522017px;}
.y10d{bottom:301.934993px;}
.y175{bottom:302.679013px;}
.y66{bottom:302.794798px;}
.y169{bottom:304.317729px;}
.y135{bottom:307.303825px;}
.y20{bottom:311.185812px;}
.y1ef{bottom:311.268267px;}
.yb6{bottom:311.674805px;}
.y10c{bottom:316.933492px;}
.y174{bottom:317.677512px;}
.y65{bottom:317.796298px;}
.y168{bottom:321.758229px;}
.y134{bottom:322.302325px;}
.y1ee{bottom:324.014517px;}
.y1f{bottom:326.185812px;}
.yb5{bottom:326.673304px;}
.y10b{bottom:331.931992px;}
.y173{bottom:332.676011px;}
.y64{bottom:332.794798px;}
.y1b2{bottom:336.342306px;}
.y1ed{bottom:336.760767px;}
.y133{bottom:337.300824px;}
.y167{bottom:339.198729px;}
.y1e{bottom:341.185812px;}
.yb4{bottom:341.671803px;}
.y172{bottom:347.674510px;}
.y63{bottom:347.797822px;}
.y1ec{bottom:349.507018px;}
.y132{bottom:352.299323px;}
.y1b1{bottom:355.930801px;}
.y1d{bottom:356.233812px;}
.y166{bottom:356.639229px;}
.yb3{bottom:356.670302px;}
.y10a{bottom:359.377219px;}
.y1eb{bottom:362.253268px;}
.y171{bottom:362.673010px;}
.y62{bottom:362.796321px;}
.y1b0{bottom:366.342306px;}
.y131{bottom:367.297822px;}
.y1c{bottom:371.232311px;}
.y165{bottom:374.079730px;}
.y109{bottom:374.375718px;}
.y1ea{bottom:374.999518px;}
.y170{bottom:377.671509px;}
.y61{bottom:377.794821px;}
.y1af{bottom:381.345307px;}
.y130{bottom:382.296321px;}
.y22f{bottom:383.806827px;}
.y1e9{bottom:387.745768px;}
.y108{bottom:389.374217px;}
.y164{bottom:391.520230px;}
.y60{bottom:392.794821px;}
.yb2{bottom:393.039302px;}
.y1ae{bottom:396.343807px;}
.y12f{bottom:397.294821px;}
.y22e{bottom:398.805326px;}
.y1e8{bottom:400.492018px;}
.y107{bottom:404.372717px;}
.y5f{bottom:407.793320px;}
.yb1{bottom:408.037801px;}
.y163{bottom:408.960730px;}
.y1ad{bottom:411.342306px;}
.y12e{bottom:412.293320px;}
.y1e7{bottom:413.238268px;}
.y22d{bottom:413.803825px;}
.y1b{bottom:418.482311px;}
.y106{bottom:419.371216px;}
.yb0{bottom:423.037801px;}
.y1e6{bottom:425.984518px;}
.y1ac{bottom:426.340805px;}
.y162{bottom:426.401230px;}
.y190{bottom:427.676402px;}
.y22c{bottom:428.802325px;}
.y1a{bottom:434.979311px;}
.yaf{bottom:438.037801px;}
.y1e5{bottom:438.730768px;}
.y5e{bottom:440.818833px;}
.y18f{bottom:442.674902px;}
.y22b{bottom:443.800824px;}
.y12d{bottom:445.305326px;}
.y105{bottom:446.828541px;}
.y19{bottom:451.476311px;}
.y1e4{bottom:451.477018px;}
.yae{bottom:453.037801px;}
.y5d{bottom:455.817333px;}
.y1ab{bottom:456.525305px;}
.y18e{bottom:457.673401px;}
.y22a{bottom:458.799323px;}
.y12c{bottom:460.303825px;}
.y104{bottom:461.827041px;}
.yaa{bottom:463.036514px;}
.y1e3{bottom:464.223269px;}
.y18{bottom:467.973311px;}
.ya9{bottom:468.036282px;}
.yad{bottom:468.036301px;}
.y5c{bottom:470.815832px;}
.y229{bottom:473.797822px;}
.y1aa{bottom:473.962805px;}
.y12b{bottom:475.302325px;}
.y161{bottom:476.611028px;}
.y103{bottom:476.825540px;}
.y1e2{bottom:476.969519px;}
.ya8{bottom:484.237783px;}
.y17{bottom:484.470311px;}
.y5b{bottom:485.814331px;}
.y228{bottom:488.796321px;}
.y1e1{bottom:489.715769px;}
.y12a{bottom:490.300824px;}
.y1a9{bottom:491.400305px;}
.y160{bottom:491.609528px;}
.y102{bottom:491.824039px;}
.ya7{bottom:499.239284px;}
.y5a{bottom:500.812830px;}
.y16{bottom:500.967311px;}
.y1e0{bottom:502.462019px;}
.y227{bottom:503.794821px;}
.y129{bottom:505.299323px;}
.y101{bottom:506.822538px;}
.y1a8{bottom:508.837805px;}
.ya6{bottom:514.237783px;}
.y1df{bottom:515.208269px;}
.y59{bottom:515.811329px;}
.y15{bottom:517.464311px;}
.y226{bottom:518.793320px;}
.y128{bottom:520.297822px;}
.y100{bottom:521.821037px;}
.y1a7{bottom:526.275305px;}
.y1de{bottom:527.954519px;}
.ya5{bottom:529.236282px;}
.y58{bottom:530.809829px;}
.y14{bottom:533.961311px;}
.y127{bottom:535.296321px;}
.yff{bottom:536.819536px;}
.y225{bottom:540.547822px;}
.y1dd{bottom:540.700769px;}
.y1a6{bottom:543.715805px;}
.y1a3{bottom:543.720305px;}
.y57{bottom:545.808328px;}
.y92{bottom:549.347992px;}
.y126{bottom:550.294821px;}
.y13{bottom:550.458311px;}
.yfe{bottom:551.818036px;}
.y1dc{bottom:553.447019px;}
.y1a5{bottom:554.961305px;}
.y1a2{bottom:554.965805px;}
.y224{bottom:555.546321px;}
.y91{bottom:557.117604px;}
.y9c{bottom:557.544449px;}
.y56{bottom:560.806827px;}
.ya1{bottom:563.170807px;}
.y9b{bottom:563.597634px;}
.y125{bottom:565.305326px;}
.y1db{bottom:566.193269px;}
.yfd{bottom:566.816535px;}
.y12{bottom:566.955311px;}
.y9a{bottom:569.650818px;}
.y1a4{bottom:572.406307px;}
.y9e{bottom:575.698791px;}
.y55{bottom:575.805326px;}
.y223{bottom:577.294821px;}
.y94{bottom:577.426804px;}
.y1da{bottom:578.939520px;}
.y124{bottom:580.303825px;}
.yfc{bottom:581.815034px;}
.y11{bottom:583.452311px;}
.y98{bottom:583.453204px;}
.ya0{bottom:584.770798px;}
.ya2{bottom:586.498810px;}
.y8f{bottom:587.362793px;}
.y97{bottom:587.778821px;}
.y90{bottom:589.954788px;}
.y54{bottom:590.803825px;}
.y1d9{bottom:591.685770px;}
.y96{bottom:593.832005px;}
.y123{bottom:595.302325px;}
.yfb{bottom:596.813533px;}
.y222{bottom:599.043320px;}
.y95{bottom:599.885189px;}
.y10{bottom:599.949311px;}
.y1d8{bottom:604.432020px;}
.y53{bottom:605.802325px;}
.y122{bottom:610.300824px;}
.yfa{bottom:611.812032px;}
.y221{bottom:614.043320px;}
.yf{bottom:616.446311px;}
.y1d7{bottom:617.178270px;}
.y1a1{bottom:618.478974px;}
.y52{bottom:620.800824px;}
.y121{bottom:625.299323px;}
.yf9{bottom:626.810532px;}
.y8e{bottom:629.421321px;}
.y1d6{bottom:629.924520px;}
.ye{bottom:632.943311px;}
.y1a0{bottom:633.477474px;}
.y51{bottom:635.799323px;}
.y120{bottom:640.297822px;}
.yf8{bottom:641.810532px;}
.y1d5{bottom:642.670770px;}
.y8d{bottom:644.419821px;}
.y220{bottom:647.049323px;}
.y19f{bottom:648.475973px;}
.yd{bottom:649.440311px;}
.y50{bottom:650.797822px;}
.y11f{bottom:655.296321px;}
.y1d4{bottom:655.417020px;}
.y8c{bottom:659.419821px;}
.y21f{bottom:662.047822px;}
.y19e{bottom:663.474472px;}
.y4f{bottom:665.796321px;}
.yc{bottom:665.937311px;}
.y1d3{bottom:668.163270px;}
.yf7{bottom:669.255896px;}
.y11e{bottom:670.294821px;}
.y8b{bottom:674.425821px;}
.y21e{bottom:677.046321px;}
.y4e{bottom:680.794821px;}
.y1d2{bottom:680.909520px;}
.yb{bottom:682.434311px;}
.yf6{bottom:684.254396px;}
.y11d{bottom:685.293320px;}
.y8a{bottom:689.424320px;}
.y21d{bottom:692.044821px;}
.y1d1{bottom:693.655771px;}
.y4d{bottom:695.794821px;}
.yf5{bottom:699.252895px;}
.y1d0{bottom:706.402021px;}
.y21c{bottom:707.043320px;}
.y4c{bottom:710.793320px;}
.ya{bottom:712.434310px;}
.yf4{bottom:714.251394px;}
.y1cf{bottom:719.148271px;}
.y21b{bottom:722.043320px;}
.y4b{bottom:725.793320px;}
.y89{bottom:725.794821px;}
.yf3{bottom:729.251394px;}
.y9{bottom:730.434310px;}
.y1ce{bottom:731.894521px;}
.y159{bottom:735.544821px;}
.y88{bottom:740.794821px;}
.yf2{bottom:744.261612px;}
.y1cd{bottom:744.640771px;}
.y8{bottom:748.434311px;}
.y158{bottom:750.544821px;}
.y21a{bottom:755.056781px;}
.y87{bottom:755.805280px;}
.y31{bottom:757.145396px;}
.y1cc{bottom:757.387021px;}
.y4a{bottom:758.803780px;}
.yf1{bottom:759.260111px;}
.y157{bottom:765.543320px;}
.y219{bottom:770.055280px;}
.y1cb{bottom:770.133271px;}
.y86{bottom:770.803780px;}
.y49{bottom:773.802279px;}
.y30{bottom:778.144646px;}
.y7{bottom:781.416260px;}
.y1ca{bottom:782.879521px;}
.y218{bottom:785.053780px;}
.y85{bottom:785.802279px;}
.y48{bottom:788.800778px;}
.yf0{bottom:789.027610px;}
.y1c9{bottom:795.625771px;}
.y156{bottom:795.697773px;}
.y2f{bottom:799.143895px;}
.y217{bottom:800.052279px;}
.y84{bottom:800.800778px;}
.y47{bottom:803.799277px;}
.yef{bottom:804.026109px;}
.y1c8{bottom:808.372022px;}
.y155{bottom:813.138273px;}
.y216{bottom:815.050778px;}
.y83{bottom:815.799277px;}
.y46{bottom:818.797776px;}
.yee{bottom:819.024608px;}
.y1c7{bottom:821.118272px;}
.y6{bottom:826.422262px;}
.y215{bottom:830.049277px;}
.y154{bottom:830.578773px;}
.y82{bottom:830.797776px;}
.y45{bottom:833.796276px;}
.y1c6{bottom:833.864522px;}
.yed{bottom:834.023107px;}
.y214{bottom:845.047776px;}
.y81{bottom:845.796276px;}
.y1c5{bottom:846.610772px;}
.y153{bottom:848.019273px;}
.y44{bottom:848.794775px;}
.yec{bottom:849.024608px;}
.y1c4{bottom:859.357022px;}
.y213{bottom:860.046276px;}
.y80{bottom:860.794775px;}
.y43{bottom:863.794775px;}
.yeb{bottom:864.023107px;}
.y152{bottom:865.459773px;}
.y5{bottom:871.428264px;}
.y1c3{bottom:872.103272px;}
.y212{bottom:875.044775px;}
.y7f{bottom:875.800778px;}
.y42{bottom:878.794775px;}
.yea{bottom:879.030277px;}
.y151{bottom:882.900273px;}
.y1c2{bottom:884.849522px;}
.y211{bottom:890.043274px;}
.y7e{bottom:890.799277px;}
.y41{bottom:893.797776px;}
.ye9{bottom:894.028777px;}
.y1c1{bottom:897.595772px;}
.y150{bottom:900.340773px;}
.y210{bottom:905.043274px;}
.y7d{bottom:905.797776px;}
.y40{bottom:908.796276px;}
.ye8{bottom:909.027276px;}
.y1c0{bottom:910.342022px;}
.y4{bottom:916.434265px;}
.y14f{bottom:917.781273px;}
.y7c{bottom:920.796276px;}
.y1bf{bottom:923.088273px;}
.y3f{bottom:923.794775px;}
.y32{bottom:926.409576px;}
.y14e{bottom:935.221774px;}
.y7b{bottom:935.794775px;}
.y1be{bottom:935.834523px;}
.y20f{bottom:938.088273px;}
.y18d{bottom:938.419775px;}
.ye7{bottom:938.794775px;}
.y3e{bottom:938.796276px;}
.y1bd{bottom:948.580773px;}
.y7a{bottom:950.799277px;}
.y20e{bottom:950.834523px;}
.y14d{bottom:952.662274px;}
.y18c{bottom:953.419775px;}
.y3d{bottom:953.794775px;}
.y1bc{bottom:961.327023px;}
.y20d{bottom:963.580773px;}
.y79{bottom:965.797776px;}
.y18b{bottom:968.419775px;}
.y3c{bottom:968.794775px;}
.ye6{bottom:968.797776px;}
.y14c{bottom:970.102774px;}
.y1bb{bottom:974.073273px;}
.y20c{bottom:976.327023px;}
.y78{bottom:980.796276px;}
.y18a{bottom:983.419775px;}
.y3b{bottom:983.794775px;}
.ye5{bottom:983.796276px;}
.y1ba{bottom:986.819523px;}
.y14b{bottom:987.528273px;}
.y20b{bottom:989.073273px;}
.y77{bottom:995.794775px;}
.y189{bottom:998.418274px;}
.y3a{bottom:998.794775px;}
.y1b9{bottom:999.565773px;}
.y20a{bottom:1001.819523px;}
.y14a{bottom:1004.968773px;}
.y76{bottom:1010.793274px;}
.y1b8{bottom:1012.312023px;}
.y39{bottom:1013.797776px;}
.ye4{bottom:1013.799277px;}
.y209{bottom:1014.565773px;}
.y149{bottom:1022.409274px;}
.y1b7{bottom:1025.058273px;}
.y208{bottom:1027.312023px;}
.y188{bottom:1028.596774px;}
.y38{bottom:1028.796276px;}
.ye3{bottom:1028.797776px;}
.y1b6{bottom:1037.804524px;}
.y148{bottom:1039.849774px;}
.y207{bottom:1040.058273px;}
.y37{bottom:1043.794775px;}
.ye2{bottom:1043.796276px;}
.y75{bottom:1043.797776px;}
.y187{bottom:1046.037274px;}
.y1b5{bottom:1050.550774px;}
.y206{bottom:1052.804524px;}
.y147{bottom:1057.290274px;}
.y36{bottom:1058.794775px;}
.y74{bottom:1058.796276px;}
.y1b4{bottom:1063.297024px;}
.y186{bottom:1063.477774px;}
.y205{bottom:1065.550774px;}
.y35{bottom:1073.794775px;}
.y145{bottom:1074.730774px;}
.y1b3{bottom:1076.043274px;}
.y204{bottom:1078.297024px;}
.y185{bottom:1080.918274px;}
.y34{bottom:1088.793274px;}
.y203{bottom:1091.043274px;}
.y146{bottom:1092.171274px;}
.y33{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h1e{height:15.120000px;}
.hb{height:23.842749px;}
.h28{height:35.046015px;}
.hf{height:35.394000px;}
.h17{height:36.115200px;}
.hd{height:36.681152px;}
.h1c{height:37.597824px;}
.h1b{height:38.092032px;}
.h9{height:38.838867px;}
.he{height:41.134746px;}
.hc{height:41.158746px;}
.h24{height:41.538000px;}
.h2a{height:41.550000px;}
.h25{height:42.966000px;}
.h23{height:43.008000px;}
.h2{height:43.140000px;}
.h4{height:44.218500px;}
.h2d{height:44.505000px;}
.h1a{height:45.010944px;}
.h2c{height:45.090000px;}
.h3{height:45.744000px;}
.h2b{height:46.080000px;}
.h8{height:46.386000px;}
.h22{height:47.469727px;}
.h15{height:50.889603px;}
.h6{height:51.540000px;}
.h7{height:51.540002px;}
.h19{height:52.978755px;}
.ha{height:53.406000px;}
.h1d{height:53.406075px;}
.h18{height:53.675139px;}
.h21{height:54.073316px;}
.h27{height:54.101997px;}
.h12{height:54.108000px;}
.h13{height:55.242000px;}
.h26{height:55.296000px;}
.h11{height:56.694000px;}
.h16{height:65.231998px;}
.h14{height:68.947198px;}
.h20{height:76.108032px;}
.h29{height:87.989999px;}
.h10{height:92.772000px;}
.h1f{height:108.432003px;}
.h5{height:134.004000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w3{width:145.151997px;}
.w2{width:598.751999px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:11.663727px;}
.x5{left:14.077050px;}
.x1c{left:32.831726px;}
.x2{left:61.191450px;}
.xb{left:114.912003px;}
.x23{left:126.143990px;}
.x16{left:129.167999px;}
.x6{left:140.952747px;}
.x4{left:233.456406px;}
.x33{left:238.143906px;}
.x7{left:251.457919px;}
.x18{left:261.792000px;}
.x36{left:289.121406px;}
.x3a{left:300.594589px;}
.x2f{left:301.967995px;}
.x1a{left:322.703865px;}
.x1b{left:331.780185px;}
.xc{left:348.243004px;}
.x11{left:355.155272px;}
.x10{left:356.882858px;}
.x24{left:359.474991px;}
.x15{left:360.771011px;}
.x12{left:364.221664px;}
.x13{left:365.520672px;}
.x29{left:369.411003px;}
.x2a{left:372.437598px;}
.xe{left:374.593692px;}
.x2b{left:376.749821px;}
.x38{left:380.659653px;}
.xd{left:382.802994px;}
.x25{left:385.826981px;}
.x2c{left:394.901594px;}
.x26{left:401.790241px;}
.x9{left:444.146988px;}
.x34{left:446.253902px;}
.x21{left:455.810989px;}
.x2e{left:463.587006px;}
.x37{left:465.416415px;}
.xa{left:473.515650px;}
.x22{left:479.581785px;}
.x17{left:480.866867px;}
.x19{left:494.259018px;}
.x20{left:502.899006px;}
.x28{left:506.350694px;}
.x31{left:514.129281px;}
.x30{left:515.859009px;}
.x1f{left:530.115005px;}
.x27{left:534.435013px;}
.x8{left:550.850830px;}
.x2d{left:553.447324px;}
.xf{left:555.171021px;}
.x14{left:582.767876px;}
.x3{left:584.586594px;}
.x35{left:596.410371px;}
.x1e{left:626.048721px;}
.x39{left:816.003571px;}
.x32{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v7{vertical-align:-38.387713pt;}
.v2{vertical-align:-18.133301pt;}
.v9{vertical-align:-16.319987pt;}
.v4{vertical-align:-15.413330pt;}
.v5{vertical-align:-9.626767pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.150144pt;}
.v8{vertical-align:9.599935pt;}
.vb{vertical-align:12.693359pt;}
.v3{vertical-align:16.143984pt;}
.v1{vertical-align:18.133301pt;}
.va{vertical-align:33.792000pt;}
.vc{vertical-align:39.983999pt;}
.lsb7{letter-spacing:-4.554667pt;}
.lsa8{letter-spacing:-4.176000pt;}
.ls18{letter-spacing:-3.893333pt;}
.lsd9{letter-spacing:-2.640000pt;}
.ls40{letter-spacing:-1.488000pt;}
.lsd1{letter-spacing:-1.480000pt;}
.ls3b{letter-spacing:-1.280000pt;}
.lsda{letter-spacing:-1.200000pt;}
.lse0{letter-spacing:-1.160000pt;}
.ls3c{letter-spacing:-1.152000pt;}
.ls44{letter-spacing:-1.104000pt;}
.ls41{letter-spacing:-1.056000pt;}
.ls19{letter-spacing:-1.013333pt;}
.lsba{letter-spacing:-0.970667pt;}
.ls79{letter-spacing:-0.967200pt;}
.ls3d{letter-spacing:-0.960000pt;}
.lsb6{letter-spacing:-0.933333pt;}
.ls3f{letter-spacing:-0.912000pt;}
.ls83{letter-spacing:-0.864000pt;}
.lsd5{letter-spacing:-0.840000pt;}
.ls45{letter-spacing:-0.816000pt;}
.ls82{letter-spacing:-0.768000pt;}
.ls43{letter-spacing:-0.720000pt;}
.ls3a{letter-spacing:-0.672000pt;}
.lsd2{letter-spacing:-0.640000pt;}
.ls3e{letter-spacing:-0.624000pt;}
.lsdf{letter-spacing:-0.600000pt;}
.lsb3{letter-spacing:-0.597333pt;}
.ls84{letter-spacing:-0.561600pt;}
.ls97{letter-spacing:-0.540672pt;}
.ls39{letter-spacing:-0.528000pt;}
.lsd0{letter-spacing:-0.520000pt;}
.ls7a{letter-spacing:-0.480000pt;}
.lsb5{letter-spacing:-0.448000pt;}
.lsd8{letter-spacing:-0.440000pt;}
.lsa7{letter-spacing:-0.432000pt;}
.lsd4{letter-spacing:-0.400000pt;}
.lsbd{letter-spacing:-0.384000pt;}
.ls92{letter-spacing:-0.380928pt;}
.ls7b{letter-spacing:-0.336000pt;}
.lsd7{letter-spacing:-0.320000pt;}
.lsbe{letter-spacing:-0.312000pt;}
.lsb4{letter-spacing:-0.298667pt;}
.lsbb{letter-spacing:-0.288000pt;}
.ls8f{letter-spacing:-0.285696pt;}
.lsce{letter-spacing:-0.280000pt;}
.ls1a{letter-spacing:-0.240000pt;}
.lscd{letter-spacing:-0.200000pt;}
.ls47{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.181333pt;}
.ls59{letter-spacing:-0.160000pt;}
.lsbc{letter-spacing:-0.156000pt;}
.ls31{letter-spacing:-0.144000pt;}
.ls1b{letter-spacing:-0.136000pt;}
.ls46{letter-spacing:-0.124800pt;}
.lsde{letter-spacing:-0.120000pt;}
.ls4a{letter-spacing:-0.106667pt;}
.ls4b{letter-spacing:-0.096000pt;}
.ls5a{letter-spacing:-0.093600pt;}
.ls21{letter-spacing:-0.090667pt;}
.lscf{letter-spacing:-0.080000pt;}
.lsa6{letter-spacing:-0.062400pt;}
.lsb1{letter-spacing:-0.048000pt;}
.ls17{letter-spacing:0.000000pt;}
.lsc1{letter-spacing:0.000048pt;}
.ls25{letter-spacing:0.000074pt;}
.lsc2{letter-spacing:0.000130pt;}
.ls52{letter-spacing:0.002701pt;}
.ls4f{letter-spacing:0.011246pt;}
.ls4{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012324pt;}
.ls3{letter-spacing:0.012405pt;}
.lsd6{letter-spacing:0.040000pt;}
.ls4c{letter-spacing:0.045322pt;}
.ls30{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.059055pt;}
.lsc6{letter-spacing:0.062400pt;}
.ls50{letter-spacing:0.065245pt;}
.lse{letter-spacing:0.072890pt;}
.lsc7{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.090667pt;}
.ls33{letter-spacing:0.093600pt;}
.ls51{letter-spacing:0.095999pt;}
.ls48{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.098707pt;}
.ls4e{letter-spacing:0.112542pt;}
.lsca{letter-spacing:0.120000pt;}
.lsd{letter-spacing:0.136000pt;}
.ls5{letter-spacing:0.144000pt;}
.ls34{letter-spacing:0.156000pt;}
.ls7{letter-spacing:0.158929pt;}
.lsa9{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.186598pt;}
.ls29{letter-spacing:0.187200pt;}
.ls2b{letter-spacing:0.192000pt;}
.lsd3{letter-spacing:0.200000pt;}
.lsa4{letter-spacing:0.206395pt;}
.lsb8{letter-spacing:0.218399pt;}
.ls36{letter-spacing:0.218400pt;}
.ls28{letter-spacing:0.220227pt;}
.ls6{letter-spacing:0.240000pt;}
.lsa1{letter-spacing:0.246723pt;}
.ls27{letter-spacing:0.249600pt;}
.lsa0{letter-spacing:0.262465pt;}
.ls1d{letter-spacing:0.265200pt;}
.ls2d{letter-spacing:0.266667pt;}
.lscc{letter-spacing:0.280000pt;}
.lsa5{letter-spacing:0.280800pt;}
.lsa2{letter-spacing:0.280801pt;}
.ls9e{letter-spacing:0.287002pt;}
.ls24{letter-spacing:0.288000pt;}
.ls49{letter-spacing:0.312000pt;}
.lsb2{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.336000pt;}
.ls8{letter-spacing:0.343200pt;}
.lsdc{letter-spacing:0.360000pt;}
.ls9f{letter-spacing:0.365239pt;}
.ls9{letter-spacing:0.365351pt;}
.ls38{letter-spacing:0.374400pt;}
.ls32{letter-spacing:0.384000pt;}
.lsc8{letter-spacing:0.400000pt;}
.ls2a{letter-spacing:0.405601pt;}
.ls13{letter-spacing:0.408000pt;}
.ls72{letter-spacing:0.428544pt;}
.ls2f{letter-spacing:0.432000pt;}
.lsdb{letter-spacing:0.440000pt;}
.ls20{letter-spacing:0.442000pt;}
.ls12{letter-spacing:0.468235pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.500933pt;}
.lsc9{letter-spacing:0.520000pt;}
.lsa{letter-spacing:0.528000pt;}
.ls10{letter-spacing:0.532119pt;}
.lsa3{letter-spacing:0.552000pt;}
.lsdd{letter-spacing:0.560000pt;}
.ls70{letter-spacing:0.571392pt;}
.ls37{letter-spacing:0.576000pt;}
.lscb{letter-spacing:0.599999pt;}
.lse4{letter-spacing:0.600000pt;}
.ls9d{letter-spacing:0.624000pt;}
.lse2{letter-spacing:0.672000pt;}
.ls1f{letter-spacing:0.677733pt;}
.ls16{letter-spacing:0.680000pt;}
.ls4d{letter-spacing:0.720000pt;}
.ls11{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.770667pt;}
.lse1{letter-spacing:0.800000pt;}
.lsf{letter-spacing:0.816000pt;}
.ls2c{letter-spacing:0.864000pt;}
.ls42{letter-spacing:0.960000pt;}
.ls15{letter-spacing:1.042667pt;}
.ls95{letter-spacing:1.904640pt;}
.ls6e{letter-spacing:1.952256pt;}
.ls0{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lse3{letter-spacing:5.440000pt;}
.ls6b{letter-spacing:17.332225pt;}
.ls62{letter-spacing:21.950977pt;}
.ls8e{letter-spacing:23.379457pt;}
.ls68{letter-spacing:25.855488pt;}
.ls56{letter-spacing:25.855490pt;}
.ls63{letter-spacing:27.045890pt;}
.ls67{letter-spacing:29.426688pt;}
.ls58{letter-spacing:30.311424pt;}
.ls8d{letter-spacing:30.807554pt;}
.ls6a{letter-spacing:35.569152pt;}
.ls65{letter-spacing:41.378307pt;}
.ls75{letter-spacing:43.017216pt;}
.ls87{letter-spacing:43.616258pt;}
.ls98{letter-spacing:45.720577pt;}
.ls7f{letter-spacing:47.996931pt;}
.lsac{letter-spacing:57.153124pt;}
.ls9a{letter-spacing:59.913216pt;}
.ls93{letter-spacing:61.805570pt;}
.ls99{letter-spacing:66.029568pt;}
.ls57{letter-spacing:67.584000pt;}
.ls6f{letter-spacing:67.995650pt;}
.lsc5{letter-spacing:68.805857pt;}
.ls54{letter-spacing:69.104642pt;}
.lsaa{letter-spacing:73.153124pt;}
.ls5f{letter-spacing:73.566721pt;}
.ls8b{letter-spacing:77.042693pt;}
.ls6d{letter-spacing:80.280579pt;}
.ls8a{letter-spacing:85.851651pt;}
.ls78{letter-spacing:88.230913pt;}
.ls74{letter-spacing:88.568833pt;}
.ls76{letter-spacing:89.075708pt;}
.lsc4{letter-spacing:96.430857pt;}
.ls55{letter-spacing:97.794050pt;}
.ls7d{letter-spacing:103.660039pt;}
.ls9c{letter-spacing:106.647548pt;}
.ls88{letter-spacing:108.897795pt;}
.lsbf{letter-spacing:112.246875pt;}
.lsc3{letter-spacing:114.350860pt;}
.lsae{letter-spacing:117.522166pt;}
.ls94{letter-spacing:120.230411pt;}
.lsb9{letter-spacing:121.445333pt;}
.lsab{letter-spacing:124.319996pt;}
.ls5b{letter-spacing:128.325123pt;}
.ls5e{letter-spacing:128.848906pt;}
.ls5d{letter-spacing:128.944132pt;}
.ls77{letter-spacing:135.167999pt;}
.ls66{letter-spacing:135.896076pt;}
.ls7e{letter-spacing:136.038924pt;}
.ls73{letter-spacing:141.318149pt;}
.lsc0{letter-spacing:142.837341pt;}
.ls90{letter-spacing:149.419016pt;}
.ls6c{letter-spacing:157.085193pt;}
.ls53{letter-spacing:158.214140pt;}
.ls60{letter-spacing:159.561227pt;}
.ls80{letter-spacing:166.084612pt;}
.ls81{letter-spacing:172.035074pt;}
.ls89{letter-spacing:176.464909pt;}
.lsaf{letter-spacing:179.349320pt;}
.ls91{letter-spacing:190.892545pt;}
.ls7c{letter-spacing:196.416010pt;}
.ls64{letter-spacing:197.368329pt;}
.ls61{letter-spacing:201.796614pt;}
.ls86{letter-spacing:205.701138pt;}
.ls69{letter-spacing:224.604683pt;}
.ls71{letter-spacing:232.318484pt;}
.ls96{letter-spacing:251.885566pt;}
.ls5c{letter-spacing:306.361360pt;}
.ls9b{letter-spacing:322.544640pt;}
.ls85{letter-spacing:323.265042pt;}
.ls8c{letter-spacing:323.979276pt;}
.lsad{letter-spacing:427.429330pt;}
.lsb0{letter-spacing:445.349348pt;}
.ws89{word-spacing:-334.883340pt;}
.wsb4{word-spacing:-322.544640pt;}
.ws83{word-spacing:-318.265384pt;}
.wsa2{word-spacing:-306.361360pt;}
.ws98{word-spacing:-259.623934pt;}
.ws6e{word-spacing:-243.127317pt;}
.ws66{word-spacing:-235.508748pt;}
.ws5f{word-spacing:-213.700614pt;}
.ws7a{word-spacing:-208.320010pt;}
.wsae{word-spacing:-205.701138pt;}
.ws8f{word-spacing:-201.701378pt;}
.wsaa{word-spacing:-172.035074pt;}
.ws69{word-spacing:-167.894025pt;}
.wsa9{word-spacing:-166.084612pt;}
.ws86{word-spacing:-160.751620pt;}
.ws90{word-spacing:-160.227849pt;}
.ws7d{word-spacing:-146.942989pt;}
.ws5e{word-spacing:-143.800350pt;}
.ws5c{word-spacing:-140.752907pt;}
.wsa4{word-spacing:-135.896076pt;}
.wsa6{word-spacing:-135.167999pt;}
.ws94{word-spacing:-131.039243pt;}
.wsa3{word-spacing:-128.944132pt;}
.ws85{word-spacing:-120.801795pt;}
.ws62{word-spacing:-115.468823pt;}
.ws7c{word-spacing:-114.564104pt;}
.ws73{word-spacing:-96.307201pt;}
.ws6a{word-spacing:-91.089412pt;}
.wsaf{word-spacing:-85.851651pt;}
.ws5d{word-spacing:-85.470722pt;}
.ws9d{word-spacing:-80.492541pt;}
.ws6c{word-spacing:-78.804483pt;}
.ws75{word-spacing:-78.363644pt;}
.wsb0{word-spacing:-77.042693pt;}
.ws93{word-spacing:-72.614402pt;}
.ws76{word-spacing:-60.589054pt;}
.wsb3{word-spacing:-59.913216pt;}
.ws80{word-spacing:-58.805763pt;}
.ws63{word-spacing:-52.282371pt;}
.ws7{word-spacing:-48.000000pt;}
.ws64{word-spacing:-40.330753pt;}
.ws67{word-spacing:-37.949954pt;}
.wsa5{word-spacing:-35.569152pt;}
.ws87{word-spacing:-32.855042pt;}
.ws70{word-spacing:-28.141057pt;}
.ws72{word-spacing:-21.593099pt;}
.ws65{word-spacing:-15.760893pt;}
.ws2{word-spacing:-13.393333pt;}
.ws84{word-spacing:-13.332484pt;}
.ws2f{word-spacing:-13.066667pt;}
.wsb9{word-spacing:-12.085333pt;}
.ws37{word-spacing:-12.000000pt;}
.ws7b{word-spacing:-11.904001pt;}
.ws6d{word-spacing:-11.380225pt;}
.ws71{word-spacing:-11.237377pt;}
.wsba{word-spacing:-11.232000pt;}
.ws9{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws58{word-spacing:-11.088000pt;}
.ws77{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws7e{word-spacing:-10.904065pt;}
.ws79{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.wsbb{word-spacing:-10.656000pt;}
.ws91{word-spacing:-10.523137pt;}
.ws35{word-spacing:-10.320000pt;}
.wsb6{word-spacing:-10.224000pt;}
.ws36{word-spacing:-10.080000pt;}
.ws6{word-spacing:-9.973333pt;}
.ws38{word-spacing:-9.504000pt;}
.wsf0{word-spacing:-9.160000pt;}
.wsf8{word-spacing:-9.080000pt;}
.wsf{word-spacing:-9.066667pt;}
.ws10f{word-spacing:-9.040000pt;}
.wsf3{word-spacing:-9.000000pt;}
.ws116{word-spacing:-8.920000pt;}
.wsf1{word-spacing:-8.880000pt;}
.ws13{word-spacing:-8.874667pt;}
.wsf5{word-spacing:-8.760000pt;}
.wsfa{word-spacing:-8.680000pt;}
.wsf7{word-spacing:-8.640000pt;}
.ws108{word-spacing:-8.600000pt;}
.wsf2{word-spacing:-8.520000pt;}
.wscf{word-spacing:-8.474667pt;}
.ws119{word-spacing:-8.400000pt;}
.wsce{word-spacing:-8.101333pt;}
.wsf9{word-spacing:-8.000000pt;}
.wsf6{word-spacing:-7.960000pt;}
.ws33{word-spacing:-7.456800pt;}
.wsb8{word-spacing:-7.425600pt;}
.ws3a{word-spacing:-7.394400pt;}
.wsb5{word-spacing:-7.363200pt;}
.wsdb{word-spacing:-7.332000pt;}
.ws32{word-spacing:-7.300800pt;}
.ws3b{word-spacing:-7.269600pt;}
.ws31{word-spacing:-7.238400pt;}
.ws30{word-spacing:-7.176000pt;}
.ws5a{word-spacing:-7.144800pt;}
.ws5{word-spacing:-7.141333pt;}
.wsdd{word-spacing:-7.130667pt;}
.ws4{word-spacing:-7.093333pt;}
.ws8{word-spacing:-7.082400pt;}
.wsb7{word-spacing:-7.020000pt;}
.ws103{word-spacing:-7.000000pt;}
.ws59{word-spacing:-6.988800pt;}
.ws39{word-spacing:-6.957600pt;}
.wse4{word-spacing:-6.926400pt;}
.wse5{word-spacing:-6.770400pt;}
.wsd{word-spacing:-6.571067pt;}
.ws82{word-spacing:-6.520800pt;}
.wsf4{word-spacing:-6.520000pt;}
.ws34{word-spacing:-6.458400pt;}
.wsc{word-spacing:-6.394267pt;}
.wse{word-spacing:-6.335333pt;}
.ws78{word-spacing:-6.177600pt;}
.wsb{word-spacing:-6.158533pt;}
.wsa{word-spacing:-5.893333pt;}
.ws118{word-spacing:-5.440000pt;}
.wsbc{word-spacing:-4.896000pt;}
.ws8c{word-spacing:-3.666432pt;}
.ws123{word-spacing:-3.520000pt;}
.wsee{word-spacing:-3.434667pt;}
.ws12{word-spacing:-2.912000pt;}
.ws14{word-spacing:-2.133333pt;}
.wsb1{word-spacing:-1.952256pt;}
.wsb2{word-spacing:-1.904640pt;}
.wsc3{word-spacing:-1.680000pt;}
.ws55{word-spacing:-1.653333pt;}
.ws1a{word-spacing:-1.632000pt;}
.ws9e{word-spacing:-1.600000pt;}
.ws4b{word-spacing:-1.584000pt;}
.wsc5{word-spacing:-1.488000pt;}
.wsd7{word-spacing:-1.440000pt;}
.ws11a{word-spacing:-1.400000pt;}
.wsc2{word-spacing:-1.392000pt;}
.ws1d{word-spacing:-1.360000pt;}
.wsa0{word-spacing:-1.344000pt;}
.ws112{word-spacing:-1.320000pt;}
.ws54{word-spacing:-1.296000pt;}
.ws23{word-spacing:-1.269333pt;}
.wsc1{word-spacing:-1.248000pt;}
.ws102{word-spacing:-1.240000pt;}
.ws49{word-spacing:-1.232000pt;}
.ws51{word-spacing:-1.200000pt;}
.ws18{word-spacing:-1.152000pt;}
.ws2e{word-spacing:-1.133333pt;}
.ws15{word-spacing:-1.120000pt;}
.ws3d{word-spacing:-1.104000pt;}
.wsc8{word-spacing:-1.056000pt;}
.ws28{word-spacing:-1.042667pt;}
.ws16{word-spacing:-1.008000pt;}
.ws11b{word-spacing:-1.000000pt;}
.ws40{word-spacing:-0.960000pt;}
.wsfb{word-spacing:-0.920000pt;}
.wsac{word-spacing:-0.912000pt;}
.ws2d{word-spacing:-0.906667pt;}
.ws52{word-spacing:-0.864000pt;}
.wsd9{word-spacing:-0.858667pt;}
.ws11{word-spacing:-0.853333pt;}
.ws100{word-spacing:-0.840000pt;}
.wsd8{word-spacing:-0.821333pt;}
.ws21{word-spacing:-0.816000pt;}
.ws27{word-spacing:-0.770667pt;}
.ws4d{word-spacing:-0.768000pt;}
.wsff{word-spacing:-0.760000pt;}
.ws24{word-spacing:-0.725333pt;}
.wsfe{word-spacing:-0.720000pt;}
.ws2a{word-spacing:-0.680000pt;}
.ws4f{word-spacing:-0.672000pt;}
.ws111{word-spacing:-0.640000pt;}
.ws10e{word-spacing:-0.600000pt;}
.ws3e{word-spacing:-0.576000pt;}
.ws9f{word-spacing:-0.533333pt;}
.ws17{word-spacing:-0.528000pt;}
.ws106{word-spacing:-0.520000pt;}
.ws19{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.453333pt;}
.wsfc{word-spacing:-0.440000pt;}
.ws41{word-spacing:-0.432000pt;}
.ws26{word-spacing:-0.408000pt;}
.ws109{word-spacing:-0.400000pt;}
.ws3c{word-spacing:-0.384000pt;}
.ws45{word-spacing:-0.374400pt;}
.ws46{word-spacing:-0.336000pt;}
.wsd6{word-spacing:-0.320000pt;}
.wsc0{word-spacing:-0.312000pt;}
.ws4c{word-spacing:-0.288000pt;}
.wsbe{word-spacing:-0.280800pt;}
.ws107{word-spacing:-0.280000pt;}
.ws50{word-spacing:-0.266667pt;}
.wse3{word-spacing:-0.249600pt;}
.ws43{word-spacing:-0.240000pt;}
.wse9{word-spacing:-0.218400pt;}
.ws114{word-spacing:-0.200000pt;}
.ws3f{word-spacing:-0.192000pt;}
.wsc6{word-spacing:-0.160000pt;}
.ws42{word-spacing:-0.156000pt;}
.wsbd{word-spacing:-0.144000pt;}
.ws20{word-spacing:-0.136000pt;}
.ws10a{word-spacing:-0.120000pt;}
.wsc9{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.090667pt;}
.ws113{word-spacing:-0.080000pt;}
.wsd5{word-spacing:-0.048000pt;}
.ws105{word-spacing:-0.040000pt;}
.ws10{word-spacing:0.000000pt;}
.ws53{word-spacing:0.048000pt;}
.ws115{word-spacing:0.080000pt;}
.ws2c{word-spacing:0.090667pt;}
.wsa8{word-spacing:0.096000pt;}
.ws101{word-spacing:0.120000pt;}
.ws1c{word-spacing:0.136000pt;}
.wsbf{word-spacing:0.144000pt;}
.ws11c{word-spacing:0.160000pt;}
.ws22{word-spacing:0.181333pt;}
.wsad{word-spacing:0.192000pt;}
.wsfd{word-spacing:0.200000pt;}
.ws57{word-spacing:0.240000pt;}
.ws117{word-spacing:0.280000pt;}
.ws1b{word-spacing:0.288000pt;}
.wse8{word-spacing:0.312000pt;}
.wsc7{word-spacing:0.336000pt;}
.ws44{word-spacing:0.384000pt;}
.ws104{word-spacing:0.400000pt;}
.ws56{word-spacing:0.432000pt;}
.ws10c{word-spacing:0.440000pt;}
.wsda{word-spacing:0.480000pt;}
.ws11d{word-spacing:0.520000pt;}
.ws81{word-spacing:0.523776pt;}
.ws126{word-spacing:0.528000pt;}
.wsab{word-spacing:0.561600pt;}
.ws120{word-spacing:0.576000pt;}
.ws122{word-spacing:0.624000pt;}
.ws110{word-spacing:0.640000pt;}
.wsa7{word-spacing:0.672000pt;}
.ws10b{word-spacing:0.680000pt;}
.wsa1{word-spacing:0.720000pt;}
.ws2b{word-spacing:0.816000pt;}
.ws10d{word-spacing:0.880000pt;}
.ws25{word-spacing:0.952000pt;}
.wsef{word-spacing:0.960000pt;}
.ws121{word-spacing:1.008000pt;}
.ws124{word-spacing:1.056000pt;}
.ws11e{word-spacing:1.080000pt;}
.ws125{word-spacing:1.104000pt;}
.ws4e{word-spacing:1.248000pt;}
.ws4a{word-spacing:1.280000pt;}
.ws11f{word-spacing:1.344000pt;}
.ws47{word-spacing:1.584000pt;}
.ws29{word-spacing:1.722667pt;}
.ws48{word-spacing:2.256000pt;}
.wsc4{word-spacing:4.944000pt;}
.ws8d{word-spacing:7.570942pt;}
.ws5b{word-spacing:19.379731pt;}
.ws7f{word-spacing:22.522367pt;}
.ws97{word-spacing:28.712451pt;}
.ws6f{word-spacing:31.712259pt;}
.ws60{word-spacing:31.950340pt;}
.ws95{word-spacing:37.949956pt;}
.ws6b{word-spacing:40.473604pt;}
.ws9b{word-spacing:41.597945pt;}
.wsd0{word-spacing:46.890663pt;}
.ws74{word-spacing:47.004677pt;}
.ws96{word-spacing:52.568064pt;}
.ws68{word-spacing:54.758403pt;}
.wse1{word-spacing:55.141333pt;}
.ws8a{word-spacing:63.376902pt;}
.ws99{word-spacing:64.069634pt;}
.ws61{word-spacing:70.900217pt;}
.wscd{word-spacing:75.935997pt;}
.ws92{word-spacing:76.328454pt;}
.wsed{word-spacing:76.533341pt;}
.wse0{word-spacing:78.410991pt;}
.wsdc{word-spacing:81.277527pt;}
.ws88{word-spacing:83.804159pt;}
.ws9a{word-spacing:85.155842pt;}
.ws8b{word-spacing:86.899202pt;}
.wsd3{word-spacing:93.855997pt;}
.wsea{word-spacing:101.375672pt;}
.wsde{word-spacing:102.216300pt;}
.wsdf{word-spacing:113.344000pt;}
.ws8e{word-spacing:122.373119pt;}
.wse6{word-spacing:137.333029pt;}
.ws9c{word-spacing:178.151436pt;}
.wsec{word-spacing:257.002670pt;}
.wseb{word-spacing:274.922670pt;}
.wsca{word-spacing:290.233059pt;}
.wse7{word-spacing:315.616015pt;}
.wse2{word-spacing:339.621335pt;}
.wsd4{word-spacing:448.373344pt;}
.wscc{word-spacing:451.173326pt;}
.wscb{word-spacing:453.039993pt;}
.wsd1{word-spacing:466.143993pt;}
.wsd2{word-spacing:488.469344pt;}
._1b{margin-left:-470.208029pt;}
._1e{margin-left:-449.304585pt;}
._22{margin-left:-265.697284pt;}
._18{margin-left:-214.407530pt;}
._1a{margin-left:-150.514185pt;}
._23{margin-left:-148.990462pt;}
._27{margin-left:-143.176692pt;}
._11{margin-left:-119.278058pt;}
._15{margin-left:-115.183121pt;}
._19{margin-left:-89.109504pt;}
._1c{margin-left:-76.614153pt;}
._1d{margin-left:-69.186065pt;}
._17{margin-left:-68.233729pt;}
._16{margin-left:-62.948349pt;}
._24{margin-left:-50.711050pt;}
._25{margin-left:-43.616255pt;}
._1f{margin-left:-30.664704pt;}
._26{margin-left:-21.522445pt;}
._f{margin-left:-15.379977pt;}
._20{margin-left:-12.332548pt;}
._10{margin-left:-10.570750pt;}
._5{margin-left:-8.764824pt;}
._21{margin-left:-7.380479pt;}
._2{margin-left:-6.226134pt;}
._a{margin-left:-5.177467pt;}
._7{margin-left:-3.972886pt;}
._1{margin-left:-2.620800pt;}
._0{margin-left:-1.578676pt;}
._6{width:1.525337pt;}
._9{width:2.780087pt;}
._8{width:3.872000pt;}
._3{width:5.837866pt;}
._48{width:7.440002pt;}
._12{width:8.999419pt;}
._47{width:11.520000pt;}
._39{width:13.583993pt;}
._38{width:14.873470pt;}
._49{width:15.778678pt;}
._3f{width:33.061368pt;}
._e{width:36.935459pt;}
._4{width:38.473040pt;}
._2e{width:39.853837pt;}
._b{width:41.074124pt;}
._c{width:42.829886pt;}
._d{width:44.353125pt;}
._2f{width:45.546681pt;}
._2d{width:46.678962pt;}
._2b{width:53.765326pt;}
._3b{width:57.066688pt;}
._3c{width:60.069333pt;}
._36{width:61.982877pt;}
._2c{width:63.093342pt;}
._41{width:65.605358pt;}
._46{width:67.498679pt;}
._40{width:68.917350pt;}
._35{width:71.866663pt;}
._2a{width:86.630328pt;}
._33{width:89.530660pt;}
._30{width:90.469330pt;}
._13{width:98.279427pt;}
._3e{width:99.466691pt;}
._37{width:106.048012pt;}
._32{width:107.706663pt;}
._34{width:109.226221pt;}
._29{width:111.440008pt;}
._3a{width:123.472011pt;}
._3d{width:133.504000pt;}
._45{width:159.450670pt;}
._44{width:165.252793pt;}
._28{width:181.626679pt;}
._31{width:231.301363pt;}
._43{width:232.698651pt;}
._42{width:289.620788pt;}
._14{width:348.644351pt;}
.fsf{font-size:24.266668pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fsd{font-size:33.792000pt;}
.fs4{font-size:34.666667pt;}
.fse{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsc{font-size:47.616002pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:64.511998pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:1.151855pt;}
.y99{bottom:1.918945pt;}
.ycd{bottom:1.920268pt;}
.y9d{bottom:2.686930pt;}
.yd5{bottom:2.688268pt;}
.y9f{bottom:3.838949pt;}
.yd8{bottom:3.840271pt;}
.ya4{bottom:3.840465pt;}
.yab{bottom:4.223836pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y93{bottom:47.614950pt;}
.ya3{bottom:48.766927pt;}
.y2e{bottom:60.723466pt;}
.y202{bottom:61.412902pt;}
.y144{bottom:62.500273pt;}
.y15f{bottom:64.026004pt;}
.y19d{bottom:67.802933pt;}
.y11c{bottom:68.406671pt;}
.y184{bottom:69.042665pt;}
.y201{bottom:72.742902pt;}
.y2d{bottom:74.051466pt;}
.yc3{bottom:74.123998pt;}
.y143{bottom:75.832272pt;}
.y15e{bottom:77.358003pt;}
.yd7{bottom:77.961192pt;}
.ydc{bottom:77.965806pt;}
.ye1{bottom:77.968108pt;}
.yd4{bottom:79.088614pt;}
.y73{bottom:79.820266pt;}
.y19c{bottom:81.136266pt;}
.y11b{bottom:81.738671pt;}
.y183{bottom:82.378666pt;}
.y200{bottom:84.072902pt;}
.yd3{bottom:84.469222pt;}
.yc4{bottom:86.016271pt;}
.ydf{bottom:87.168269pt;}
.y2c{bottom:87.384799pt;}
.ydb{bottom:87.562734pt;}
.ybf{bottom:88.336105pt;}
.y142{bottom:89.164272pt;}
.yd2{bottom:89.849831pt;}
.yc2{bottom:90.635885pt;}
.y15d{bottom:90.694005pt;}
.y72{bottom:93.152265pt;}
.y11a{bottom:95.070670pt;}
.yd1{bottom:95.230439pt;}
.y1ff{bottom:95.402903pt;}
.y182{bottom:95.710666pt;}
.yd0{bottom:100.611047pt;}
.y2b{bottom:100.718132pt;}
.y141{bottom:102.496271pt;}
.ydd{bottom:103.309805pt;}
.y15c{bottom:104.026004pt;}
.ycf{bottom:105.991655pt;}
.y71{bottom:106.484265pt;}
.y1fe{bottom:106.732903pt;}
.y119{bottom:108.402669pt;}
.y181{bottom:109.042665pt;}
.y19b{bottom:110.476275pt;}
.yce{bottom:111.372264pt;}
.y2a{bottom:114.051466pt;}
.y140{bottom:115.828270pt;}
.yda{bottom:116.361965pt;}
.ye0{bottom:116.364268pt;}
.y15b{bottom:117.358003pt;}
.y1fd{bottom:118.062903pt;}
.yc5{bottom:118.284271pt;}
.yc1{bottom:119.431661pt;}
.y70{bottom:119.822934pt;}
.y118{bottom:121.734669pt;}
.y180{bottom:122.375998pt;}
.y19a{bottom:123.808274pt;}
.ycc{bottom:125.164783pt;}
.y29{bottom:127.384799pt;}
.y13f{bottom:129.160270pt;}
.y1fc{bottom:129.392903pt;}
.ycb{bottom:130.545391pt;}
.y15a{bottom:130.690002pt;}
.y6f{bottom:133.154933pt;}
.y117{bottom:135.066668pt;}
.y17f{bottom:135.712010pt;}
.yca{bottom:135.926000pt;}
.yd6{bottom:135.948263pt;}
.y199{bottom:137.140273pt;}
.y28{bottom:140.718132pt;}
.y1fb{bottom:140.722903pt;}
.yc9{bottom:141.306608pt;}
.y13e{bottom:142.492269pt;}
.yd9{bottom:144.012268pt;}
.yde{bottom:145.549804pt;}
.ybe{bottom:146.316264pt;}
.y6e{bottom:146.486933pt;}
.yc8{bottom:146.687216pt;}
.y116{bottom:148.398667pt;}
.yc0{bottom:148.620270pt;}
.y17e{bottom:149.044009pt;}
.y198{bottom:150.472273pt;}
.y1fa{bottom:152.052903pt;}
.yc7{bottom:152.067824pt;}
.y27{bottom:154.051466pt;}
.y13d{bottom:155.824268pt;}
.yc6{bottom:157.448433pt;}
.y6d{bottom:159.818932pt;}
.y115{bottom:161.730666pt;}
.y17d{bottom:162.376009pt;}
.y1f9{bottom:163.382903pt;}
.y197{bottom:163.804272pt;}
.y13c{bottom:169.156267pt;}
.y26{bottom:171.232808pt;}
.y6c{bottom:173.150931pt;}
.y1f8{bottom:174.712903pt;}
.y16f{bottom:174.858003pt;}
.y114{bottom:175.062666pt;}
.y17c{bottom:175.724016pt;}
.y196{bottom:177.138939pt;}
.y25{bottom:180.723476pt;}
.y13b{bottom:182.488267pt;}
.ybd{bottom:183.720276pt;}
.y1f7{bottom:186.042903pt;}
.y6b{bottom:186.482930pt;}
.y16e{bottom:188.191336pt;}
.y113{bottom:188.394665pt;}
.y17b{bottom:189.056016pt;}
.y195{bottom:190.470939pt;}
.y24{bottom:194.051476pt;}
.y13a{bottom:195.820266pt;}
.ybc{bottom:197.052275pt;}
.y1f6{bottom:197.372903pt;}
.y112{bottom:201.726664pt;}
.y17a{bottom:202.388015pt;}
.y194{bottom:203.804272pt;}
.y16d{bottom:205.603333pt;}
.y23{bottom:207.384809pt;}
.y1f5{bottom:208.702904pt;}
.y139{bottom:209.152265pt;}
.ybb{bottom:210.384274pt;}
.y16c{bottom:214.858003pt;}
.y111{bottom:215.058663pt;}
.y179{bottom:215.720014pt;}
.y6a{bottom:215.822934pt;}
.y193{bottom:217.137605pt;}
.y1f4{bottom:220.032904pt;}
.y22{bottom:220.718143pt;}
.y138{bottom:222.484265pt;}
.yba{bottom:223.716274pt;}
.y16b{bottom:228.190002pt;}
.y110{bottom:228.390663pt;}
.y178{bottom:229.052014pt;}
.y69{bottom:229.154933pt;}
.y192{bottom:230.470939pt;}
.y1f3{bottom:231.362904pt;}
.y137{bottom:235.816264pt;}
.yb9{bottom:237.048273pt;}
.y21{bottom:237.899475pt;}
.y10f{bottom:241.722662pt;}
.y177{bottom:242.384013pt;}
.y68{bottom:242.486933pt;}
.y1f2{bottom:242.692904pt;}
.y191{bottom:243.802938pt;}
.y136{bottom:249.149597pt;}
.yb8{bottom:250.380272pt;}
.y1f1{bottom:254.022904pt;}
.y16a{bottom:255.001981pt;}
.y10e{bottom:255.054661pt;}
.y176{bottom:255.716012pt;}
.y67{bottom:255.818932pt;}
.yb7{bottom:263.712272pt;}
.y1f0{bottom:265.352904pt;}
.y10d{bottom:268.386661pt;}
.y175{bottom:269.048011pt;}
.y66{bottom:269.150931pt;}
.y169{bottom:270.504648pt;}
.y135{bottom:273.158956pt;}
.y20{bottom:276.609610pt;}
.y1ef{bottom:276.682904pt;}
.yb6{bottom:277.044271pt;}
.y10c{bottom:281.718660pt;}
.y174{bottom:282.380011pt;}
.y65{bottom:282.485599pt;}
.y168{bottom:286.007315pt;}
.y134{bottom:286.490955pt;}
.y1ee{bottom:288.012904pt;}
.y1f{bottom:289.942944pt;}
.yb5{bottom:290.376270pt;}
.y10b{bottom:295.050659pt;}
.y173{bottom:295.712010pt;}
.y64{bottom:295.817598pt;}
.y1b2{bottom:298.970939pt;}
.y1ed{bottom:299.342904pt;}
.y133{bottom:299.822954pt;}
.y167{bottom:301.509982pt;}
.y1e{bottom:303.276277pt;}
.yb4{bottom:303.708269pt;}
.y172{bottom:309.044009pt;}
.y63{bottom:309.153620pt;}
.y1ec{bottom:310.672904pt;}
.y132{bottom:313.154954pt;}
.y1b1{bottom:316.382935pt;}
.y1d{bottom:316.652277pt;}
.y166{bottom:317.012648pt;}
.yb3{bottom:317.040269pt;}
.y10a{bottom:319.446417pt;}
.y1eb{bottom:322.002905pt;}
.y171{bottom:322.376009pt;}
.y62{bottom:322.485619pt;}
.y1b0{bottom:325.637605pt;}
.y131{bottom:326.486953pt;}
.y1c{bottom:329.984276pt;}
.y165{bottom:332.515315pt;}
.y109{bottom:332.778416pt;}
.y1ea{bottom:333.332905pt;}
.y170{bottom:335.708008pt;}
.y61{bottom:335.817618pt;}
.y1af{bottom:338.973607pt;}
.y130{bottom:339.818952pt;}
.y22f{bottom:341.161624pt;}
.y1e9{bottom:344.662905pt;}
.y108{bottom:346.110415pt;}
.y164{bottom:348.017982pt;}
.y60{bottom:349.150952pt;}
.yb2{bottom:349.368269pt;}
.y1ae{bottom:352.305606pt;}
.y12f{bottom:353.150952pt;}
.y22e{bottom:354.493623pt;}
.y1e8{bottom:355.992905pt;}
.y107{bottom:359.442415pt;}
.y5f{bottom:362.482951pt;}
.yb1{bottom:362.700268pt;}
.y163{bottom:363.520649pt;}
.y1ad{bottom:365.637605pt;}
.y12e{bottom:366.482951pt;}
.y1e7{bottom:367.322905pt;}
.y22d{bottom:367.825623pt;}
.y1b{bottom:371.984276pt;}
.y106{bottom:372.774414pt;}
.yb0{bottom:376.033601pt;}
.y1e6{bottom:378.652905pt;}
.y1ac{bottom:378.969604pt;}
.y162{bottom:379.023315pt;}
.y190{bottom:380.156802pt;}
.y22c{bottom:381.157622pt;}
.y1a{bottom:386.648276pt;}
.yaf{bottom:389.366935pt;}
.y1e5{bottom:389.982905pt;}
.y5e{bottom:391.838963pt;}
.y18f{bottom:393.488801pt;}
.y22b{bottom:394.489621pt;}
.y12d{bottom:395.826957pt;}
.y105{bottom:397.180926pt;}
.y19{bottom:401.312276pt;}
.y1e4{bottom:401.312905pt;}
.yae{bottom:402.700268pt;}
.y5d{bottom:405.170962pt;}
.y1ab{bottom:405.800271pt;}
.y18e{bottom:406.820801pt;}
.y22a{bottom:407.821620pt;}
.y12c{bottom:409.158956pt;}
.y104{bottom:410.512925pt;}
.yaa{bottom:411.588013pt;}
.y1e3{bottom:412.642905pt;}
.y18{bottom:415.976276pt;}
.ya9{bottom:416.032250pt;}
.yad{bottom:416.032267pt;}
.y5c{bottom:418.502962pt;}
.y229{bottom:421.153620pt;}
.y1aa{bottom:421.300271pt;}
.y12b{bottom:422.490955pt;}
.y161{bottom:423.654247pt;}
.y103{bottom:423.844924pt;}
.y1e2{bottom:423.972905pt;}
.ya8{bottom:430.433585pt;}
.y17{bottom:430.640276pt;}
.y5b{bottom:431.834961pt;}
.y228{bottom:434.485619pt;}
.y1e1{bottom:435.302906pt;}
.y12a{bottom:435.822954pt;}
.y1a9{bottom:436.800271pt;}
.y160{bottom:436.986247pt;}
.y102{bottom:437.176923pt;}
.ya7{bottom:443.768252pt;}
.y5a{bottom:445.166960pt;}
.y16{bottom:445.304276pt;}
.y1e0{bottom:446.632906pt;}
.y227{bottom:447.817618pt;}
.y129{bottom:449.154954pt;}
.y101{bottom:450.508923pt;}
.y1a8{bottom:452.300271pt;}
.ya6{bottom:457.100252pt;}
.y1df{bottom:457.962906pt;}
.y59{bottom:458.498959pt;}
.y15{bottom:459.968276pt;}
.y226{bottom:461.149618pt;}
.y128{bottom:462.486953pt;}
.y100{bottom:463.840922pt;}
.y1a7{bottom:467.800271pt;}
.y1de{bottom:469.292906pt;}
.ya5{bottom:470.432251pt;}
.y58{bottom:471.830959pt;}
.y14{bottom:474.632276pt;}
.y127{bottom:475.818952pt;}
.yff{bottom:477.172921pt;}
.y225{bottom:480.486953pt;}
.y1dd{bottom:480.622906pt;}
.y1a6{bottom:483.302938pt;}
.y1a3{bottom:483.306938pt;}
.y57{bottom:485.162958pt;}
.y92{bottom:488.309326pt;}
.y126{bottom:489.150952pt;}
.y13{bottom:489.296276pt;}
.yfe{bottom:490.504921pt;}
.y1dc{bottom:491.952906pt;}
.y1a5{bottom:493.298938pt;}
.y1a2{bottom:493.302938pt;}
.y224{bottom:493.818952pt;}
.y91{bottom:495.215648pt;}
.y9c{bottom:495.595066pt;}
.y56{bottom:498.494957pt;}
.ya1{bottom:500.596273pt;}
.y9b{bottom:500.975674pt;}
.y125{bottom:502.493623pt;}
.y1db{bottom:503.282906pt;}
.yfd{bottom:503.836920pt;}
.y12{bottom:503.960276pt;}
.y9a{bottom:506.356283pt;}
.y1a4{bottom:508.805606pt;}
.y9e{bottom:511.732259pt;}
.y55{bottom:511.826957pt;}
.y223{bottom:513.150952pt;}
.y94{bottom:513.268270pt;}
.y1da{bottom:514.612906pt;}
.y124{bottom:515.825623pt;}
.yfc{bottom:517.168919pt;}
.y11{bottom:518.624276pt;}
.y98{bottom:518.625070pt;}
.ya0{bottom:519.796265pt;}
.ya2{bottom:521.332275pt;}
.y8f{bottom:522.100260pt;}
.y97{bottom:522.470063pt;}
.y90{bottom:524.404256pt;}
.y54{bottom:525.158956pt;}
.y1d9{bottom:525.942906pt;}
.y96{bottom:527.850671pt;}
.y123{bottom:529.157622pt;}
.yfb{bottom:530.500918pt;}
.y222{bottom:532.482951pt;}
.y95{bottom:533.231279pt;}
.y10{bottom:533.288276pt;}
.y1d8{bottom:537.272906pt;}
.y53{bottom:538.490955pt;}
.y122{bottom:542.489621pt;}
.yfa{bottom:543.832918pt;}
.y221{bottom:545.816284pt;}
.yf{bottom:547.952276pt;}
.y1d7{bottom:548.602907pt;}
.y1a1{bottom:549.759088pt;}
.y52{bottom:551.822954pt;}
.y121{bottom:555.821620pt;}
.yf9{bottom:557.164917pt;}
.y8e{bottom:559.485619pt;}
.y1d6{bottom:559.932907pt;}
.ye{bottom:562.616276pt;}
.y1a0{bottom:563.091088pt;}
.y51{bottom:565.154954pt;}
.y120{bottom:569.153620pt;}
.yf8{bottom:570.498250pt;}
.y1d5{bottom:571.262907pt;}
.y8d{bottom:572.817618pt;}
.y220{bottom:575.154954pt;}
.y19f{bottom:576.423087pt;}
.yd{bottom:577.280276pt;}
.y50{bottom:578.486953pt;}
.y11f{bottom:582.485619pt;}
.y1d4{bottom:582.592907pt;}
.y8c{bottom:586.150952pt;}
.y21f{bottom:588.486953pt;}
.y19e{bottom:589.755086pt;}
.y4f{bottom:591.818952pt;}
.yc{bottom:591.944276pt;}
.y1d3{bottom:593.922907pt;}
.yf7{bottom:594.894130pt;}
.y11e{bottom:595.817618pt;}
.y8b{bottom:599.489618pt;}
.y21e{bottom:601.818952pt;}
.y4e{bottom:605.150952pt;}
.y1d2{bottom:605.252907pt;}
.yb{bottom:606.608276pt;}
.yf6{bottom:608.226129pt;}
.y11d{bottom:609.149618pt;}
.y8a{bottom:612.821618pt;}
.y21d{bottom:615.150952pt;}
.y1d1{bottom:616.582907pt;}
.y4d{bottom:618.484285pt;}
.yf5{bottom:621.558129pt;}
.y1d0{bottom:627.912907pt;}
.y21c{bottom:628.482951pt;}
.y4c{bottom:631.816284pt;}
.ya{bottom:633.274942pt;}
.yf4{bottom:634.890128pt;}
.y1cf{bottom:639.242907pt;}
.y21b{bottom:641.816284pt;}
.y4b{bottom:645.149618pt;}
.y89{bottom:645.150952pt;}
.yf3{bottom:648.223461pt;}
.y9{bottom:649.274942pt;}
.y1ce{bottom:650.572907pt;}
.y159{bottom:653.817618pt;}
.y88{bottom:658.484285pt;}
.yf2{bottom:661.565877pt;}
.y1cd{bottom:661.902908pt;}
.y8{bottom:665.274943pt;}
.y158{bottom:667.150952pt;}
.y21a{bottom:671.161583pt;}
.y87{bottom:671.826916pt;}
.y31{bottom:673.018130pt;}
.y1cc{bottom:673.232908pt;}
.y4a{bottom:674.492249pt;}
.yf1{bottom:674.897876pt;}
.y157{bottom:680.482951pt;}
.y219{bottom:684.493583pt;}
.y1cb{bottom:684.562908pt;}
.y86{bottom:685.158915pt;}
.y49{bottom:687.824248pt;}
.y30{bottom:691.684130pt;}
.y7{bottom:694.592232pt;}
.y1ca{bottom:695.892908pt;}
.y218{bottom:697.825582pt;}
.y85{bottom:698.490914pt;}
.y48{bottom:701.156247pt;}
.yf0{bottom:701.357875pt;}
.y1c9{bottom:707.222908pt;}
.y156{bottom:707.286909pt;}
.y2f{bottom:710.350129pt;}
.y217{bottom:711.157581pt;}
.y84{bottom:711.822914pt;}
.y47{bottom:714.488246pt;}
.yef{bottom:714.689875pt;}
.y1c8{bottom:718.552908pt;}
.y155{bottom:722.789576pt;}
.y216{bottom:724.489580pt;}
.y83{bottom:725.154913pt;}
.y46{bottom:727.820246pt;}
.yee{bottom:728.021874pt;}
.y1c7{bottom:729.882908pt;}
.y6{bottom:734.597566pt;}
.y215{bottom:737.821580pt;}
.y154{bottom:738.292243pt;}
.y82{bottom:738.486912pt;}
.y45{bottom:741.152245pt;}
.y1c6{bottom:741.212908pt;}
.yed{bottom:741.353873pt;}
.y214{bottom:751.153579pt;}
.y81{bottom:751.818912pt;}
.y1c5{bottom:752.542908pt;}
.y153{bottom:753.794909pt;}
.y44{bottom:754.484244pt;}
.yec{bottom:754.688541pt;}
.y1c4{bottom:763.872908pt;}
.y213{bottom:764.485578pt;}
.y80{bottom:765.150911pt;}
.y43{bottom:767.817578pt;}
.yeb{bottom:768.020540pt;}
.y152{bottom:769.297576pt;}
.y5{bottom:774.602901pt;}
.y1c3{bottom:775.202909pt;}
.y212{bottom:777.817578pt;}
.y7f{bottom:778.489580pt;}
.y42{bottom:781.150911pt;}
.yea{bottom:781.360247pt;}
.y151{bottom:784.800243pt;}
.y1c2{bottom:786.532909pt;}
.y211{bottom:791.149577pt;}
.y7e{bottom:791.821580pt;}
.y41{bottom:794.486912pt;}
.ye9{bottom:794.692246pt;}
.y1c1{bottom:797.862909pt;}
.y150{bottom:800.302910pt;}
.y210{bottom:804.482910pt;}
.y7d{bottom:805.153579pt;}
.y40{bottom:807.818912pt;}
.ye8{bottom:808.024245pt;}
.y1c0{bottom:809.192909pt;}
.y4{bottom:814.608236pt;}
.y14f{bottom:815.805576pt;}
.y7c{bottom:818.485578pt;}
.y1bf{bottom:820.522909pt;}
.y3f{bottom:821.150911pt;}
.y32{bottom:823.475179pt;}
.y14e{bottom:831.308243pt;}
.y7b{bottom:831.817578pt;}
.y1be{bottom:831.852909pt;}
.y20f{bottom:833.856242pt;}
.y18d{bottom:834.150911pt;}
.ye7{bottom:834.484244pt;}
.y3e{bottom:834.485578pt;}
.y1bd{bottom:843.182909pt;}
.y7a{bottom:845.154913pt;}
.y20e{bottom:845.186242pt;}
.y14d{bottom:846.810910pt;}
.y18c{bottom:847.484244pt;}
.y3d{bottom:847.817578pt;}
.y1bc{bottom:854.512909pt;}
.y20d{bottom:856.516242pt;}
.y79{bottom:858.486912pt;}
.y18b{bottom:860.817578pt;}
.y3c{bottom:861.150911pt;}
.ye6{bottom:861.153579pt;}
.y14c{bottom:862.313577pt;}
.y1bb{bottom:865.842909pt;}
.y20c{bottom:867.846243pt;}
.y78{bottom:871.818912pt;}
.y18a{bottom:874.150911pt;}
.y3b{bottom:874.484244pt;}
.ye5{bottom:874.485578pt;}
.y1ba{bottom:877.172909pt;}
.y14b{bottom:877.802910pt;}
.y20b{bottom:879.176243pt;}
.y77{bottom:885.150911pt;}
.y189{bottom:887.482910pt;}
.y3a{bottom:887.817578pt;}
.y1b9{bottom:888.502910pt;}
.y20a{bottom:890.506243pt;}
.y14a{bottom:893.305576pt;}
.y76{bottom:898.482910pt;}
.y1b8{bottom:899.832910pt;}
.y39{bottom:901.153579pt;}
.ye4{bottom:901.154913pt;}
.y209{bottom:901.836243pt;}
.y149{bottom:908.808243pt;}
.y1b7{bottom:911.162910pt;}
.y208{bottom:913.166243pt;}
.y188{bottom:914.308243pt;}
.y38{bottom:914.485578pt;}
.ye3{bottom:914.486912pt;}
.y1b6{bottom:922.492910pt;}
.y148{bottom:924.310910pt;}
.y207{bottom:924.496243pt;}
.y37{bottom:927.817578pt;}
.ye2{bottom:927.818912pt;}
.y75{bottom:927.820246pt;}
.y187{bottom:929.810910pt;}
.y1b5{bottom:933.822910pt;}
.y206{bottom:935.826243pt;}
.y147{bottom:939.813577pt;}
.y36{bottom:941.150911pt;}
.y74{bottom:941.152245pt;}
.y1b4{bottom:945.152910pt;}
.y186{bottom:945.313577pt;}
.y205{bottom:947.156243pt;}
.y35{bottom:954.484244pt;}
.y145{bottom:955.316243pt;}
.y1b3{bottom:956.482910pt;}
.y204{bottom:958.486243pt;}
.y185{bottom:960.816243pt;}
.y34{bottom:967.816243pt;}
.y203{bottom:969.816243pt;}
.y146{bottom:970.818910pt;}
.y33{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h1e{height:13.440000pt;}
.hb{height:21.193555pt;}
.h28{height:31.152013pt;}
.hf{height:31.461333pt;}
.h17{height:32.102400pt;}
.hd{height:32.605469pt;}
.h1c{height:33.420288pt;}
.h1b{height:33.859584pt;}
.h9{height:34.523438pt;}
.he{height:36.564218pt;}
.hc{height:36.585552pt;}
.h24{height:36.922667pt;}
.h2a{height:36.933334pt;}
.h25{height:38.192000pt;}
.h23{height:38.229333pt;}
.h2{height:38.346667pt;}
.h4{height:39.305333pt;}
.h2d{height:39.560000pt;}
.h1a{height:40.009728pt;}
.h2c{height:40.080000pt;}
.h3{height:40.661333pt;}
.h2b{height:40.960000pt;}
.h8{height:41.232000pt;}
.h22{height:42.195312pt;}
.h15{height:45.235202pt;}
.h6{height:45.813333pt;}
.h7{height:45.813335pt;}
.h19{height:47.092226pt;}
.ha{height:47.472000pt;}
.h1d{height:47.472067pt;}
.h18{height:47.711234pt;}
.h21{height:48.065170pt;}
.h27{height:48.090664pt;}
.h12{height:48.096000pt;}
.h13{height:49.104000pt;}
.h26{height:49.152000pt;}
.h11{height:50.394667pt;}
.h16{height:57.983999pt;}
.h14{height:61.286399pt;}
.h20{height:67.651584pt;}
.h29{height:78.213332pt;}
.h10{height:82.464000pt;}
.h1f{height:96.384003pt;}
.h5{height:119.114667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w3{width:129.023997pt;}
.w2{width:532.223999pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:10.367757pt;}
.x5{left:12.512933pt;}
.x1c{left:29.183757pt;}
.x2{left:54.392400pt;}
.xb{left:102.144002pt;}
.x23{left:112.127991pt;}
.x16{left:114.815999pt;}
.x6{left:125.291331pt;}
.x4{left:207.516805pt;}
.x33{left:211.683472pt;}
.x7{left:223.518150pt;}
.x18{left:232.704000pt;}
.x36{left:256.996805pt;}
.x3a{left:267.195190pt;}
.x2f{left:268.415995pt;}
.x1a{left:286.847880pt;}
.x1b{left:294.915720pt;}
.xc{left:309.549337pt;}
.x11{left:315.693575pt;}
.x10{left:317.229207pt;}
.x24{left:319.533325pt;}
.x15{left:320.685343pt;}
.x12{left:323.752591pt;}
.x13{left:324.907264pt;}
.x29{left:328.365336pt;}
.x2a{left:331.055642pt;}
.xe{left:332.972171pt;}
.x2b{left:334.888730pt;}
.x38{left:338.364136pt;}
.xd{left:340.269328pt;}
.x25{left:342.957316pt;}
.x2c{left:351.023640pt;}
.x26{left:357.146881pt;}
.x9{left:394.797323pt;}
.x34{left:396.670136pt;}
.x21{left:405.165324pt;}
.x2e{left:412.077338pt;}
.x37{left:413.703480pt;}
.xa{left:420.902800pt;}
.x22{left:426.294920pt;}
.x17{left:427.437215pt;}
.x19{left:439.341349pt;}
.x20{left:447.021339pt;}
.x28{left:450.089506pt;}
.x31{left:457.003805pt;}
.x30{left:458.541341pt;}
.x1f{left:471.213338pt;}
.x27{left:475.053345pt;}
.x8{left:489.645182pt;}
.x2d{left:491.953177pt;}
.xf{left:493.485352pt;}
.x14{left:518.015889pt;}
.x3{left:519.632528pt;}
.x35{left:530.142552pt;}
.x1e{left:556.487752pt;}
.x39{left:725.336507pt;}
.x32{left:732.628825pt;}
.x1{left:733.540283pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  