
    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_c65bf80d984603c6eba0c61e.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_22d41081ceac89215de740da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.678000;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_a38efa26fd30f0f9f58d0f94.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_a67ce7c009efe9bc0b7f3638.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_183fd7605bbbba710015f4e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f2367fda13cb3eb4930fb5cd.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_58d714054df8bbfb7812e738.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_16d90288d12136fb00a1cef0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_987b5ad34fd776ef6925bb21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913000;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_b132aec6c302ea8efce938be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_b132aec6c302ea8efce938be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_644621069c804c295ec6504b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_644621069c804c295ec6504b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_9c58097766261ab9e14b6fec.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_86bf79920e4560a2611e5f0a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e525e0f69bcdfa7333d45677.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_aec54aeb91282d9245f0d4f7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_44fb32790bf9f3aa57df8083.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e2b57f9f8521e4e830bfcaf5.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v2{vertical-align:-10.920110px;}
.v8{vertical-align:-8.375779px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.399780px;}
.v6{vertical-align:10.800018px;}
.v7{vertical-align:14.316031px;}
.v3{vertical-align:18.311979px;}
.v1{vertical-align:20.399963px;}
.v9{vertical-align:22.512000px;}
.vb{vertical-align:44.981999px;}
.ls8e{letter-spacing:-4.032000px;}
.lsbc{letter-spacing:-3.285000px;}
.lsa2{letter-spacing:-3.150000px;}
.lsb2{letter-spacing:-2.655000px;}
.lsb4{letter-spacing:-2.430000px;}
.ls3b{letter-spacing:-2.347265px;}
.ls3e{letter-spacing:-1.794967px;}
.lsa3{letter-spacing:-1.755000px;}
.ls68{letter-spacing:-1.728000px;}
.ls3a{letter-spacing:-1.656893px;}
.ls99{letter-spacing:-1.620000px;}
.ls33{letter-spacing:-1.518818px;}
.lsb1{letter-spacing:-1.350000px;}
.ls16{letter-spacing:-1.260000px;}
.ls39{letter-spacing:-1.095048px;}
.lsbf{letter-spacing:-1.035000px;}
.ls3f{letter-spacing:-0.985543px;}
.ls29{letter-spacing:-0.972000px;}
.ls9a{letter-spacing:-0.810000px;}
.lsad{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.711781px;}
.ls98{letter-spacing:-0.702000px;}
.ls6a{letter-spacing:-0.648000px;}
.lsb0{letter-spacing:-0.630000px;}
.lsb6{letter-spacing:-0.585000px;}
.lsa7{letter-spacing:-0.495000px;}
.ls83{letter-spacing:-0.486000px;}
.lsaa{letter-spacing:-0.450000px;}
.lsbd{letter-spacing:-0.405000px;}
.lsa8{letter-spacing:-0.360000px;}
.ls81{letter-spacing:-0.336000px;}
.ls35{letter-spacing:-0.328514px;}
.ls1e{letter-spacing:-0.324000px;}
.lsae{letter-spacing:-0.315000px;}
.ls34{letter-spacing:-0.276149px;}
.lsbb{letter-spacing:-0.270000px;}
.lsac{letter-spacing:-0.225000px;}
.ls36{letter-spacing:-0.219010px;}
.ls18{letter-spacing:-0.216000px;}
.ls82{letter-spacing:-0.210000px;}
.ls32{letter-spacing:-0.207112px;}
.ls4f{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.140400px;}
.ls3c{letter-spacing:-0.138074px;}
.lsaf{letter-spacing:-0.135000px;}
.ls1d{letter-spacing:-0.108000px;}
.ls50{letter-spacing:-0.105300px;}
.lsb5{letter-spacing:-0.090000px;}
.ls4c{letter-spacing:-0.070200px;}
.ls4d{letter-spacing:-0.060000px;}
.ls2c{letter-spacing:-0.054000px;}
.lsa5{letter-spacing:-0.045000px;}
.ls2d{letter-spacing:-0.035100px;}
.ls15{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.000005px;}
.ls63{letter-spacing:0.000034px;}
.ls46{letter-spacing:0.000084px;}
.ls7c{letter-spacing:0.000443px;}
.ls78{letter-spacing:0.004185px;}
.ls76{letter-spacing:0.004285px;}
.ls4{letter-spacing:0.012249px;}
.ls3{letter-spacing:0.013040px;}
.ls2{letter-spacing:0.013772px;}
.ls79{letter-spacing:0.014457px;}
.ls67{letter-spacing:0.021064px;}
.ls7e{letter-spacing:0.021613px;}
.ls45{letter-spacing:0.023347px;}
.ls66{letter-spacing:0.025279px;}
.ls80{letter-spacing:0.035100px;}
.lsa4{letter-spacing:0.045000px;}
.ls7d{letter-spacing:0.048605px;}
.ls24{letter-spacing:0.054000px;}
.ls2e{letter-spacing:0.060000px;}
.ls5d{letter-spacing:0.068382px;}
.ls96{letter-spacing:0.070175px;}
.ls6d{letter-spacing:0.070199px;}
.ls93{letter-spacing:0.070200px;}
.ls6c{letter-spacing:0.070201px;}
.ls14{letter-spacing:0.074860px;}
.lsb7{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.099693px;}
.ls2b{letter-spacing:0.105300px;}
.ls86{letter-spacing:0.105302px;}
.ls56{letter-spacing:0.107998px;}
.ls27{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.120000px;}
.ls7a{letter-spacing:0.123064px;}
.lsa1{letter-spacing:0.135000px;}
.ls30{letter-spacing:0.140400px;}
.ls7b{letter-spacing:0.152956px;}
.ls1f{letter-spacing:0.153000px;}
.ls22{letter-spacing:0.154823px;}
.ls4b{letter-spacing:0.156611px;}
.ls1b{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.166160px;}
.ls53{letter-spacing:0.172797px;}
.ls8c{letter-spacing:0.175498px;}
.ls51{letter-spacing:0.175500px;}
.ls91{letter-spacing:0.175501px;}
.ls9b{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.183611px;}
.ls69{letter-spacing:0.191100px;}
.ls8f{letter-spacing:0.210000px;}
.ls8d{letter-spacing:0.210600px;}
.ls8a{letter-spacing:0.215985px;}
.ls8{letter-spacing:0.216000px;}
.lsa6{letter-spacing:0.225000px;}
.ls6b{letter-spacing:0.245700px;}
.ls54{letter-spacing:0.248388px;}
.ls95{letter-spacing:0.248413px;}
.lse{letter-spacing:0.270000px;}
.ls5e{letter-spacing:0.275403px;}
.ls85{letter-spacing:0.280800px;}
.ls10{letter-spacing:0.296235px;}
.ls49{letter-spacing:0.301659px;}
.lsab{letter-spacing:0.315000px;}
.ls23{letter-spacing:0.315900px;}
.ls92{letter-spacing:0.315902px;}
.ls89{letter-spacing:0.323998px;}
.ls31{letter-spacing:0.324000px;}
.ls5b{letter-spacing:0.324001px;}
.ls6{letter-spacing:0.340869px;}
.ls55{letter-spacing:0.345619px;}
.ls5a{letter-spacing:0.349083px;}
.ls58{letter-spacing:0.349266px;}
.ls94{letter-spacing:0.350957px;}
.ls5{letter-spacing:0.351000px;}
.lsbe{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.372612px;}
.ls48{letter-spacing:0.373253px;}
.lsd{letter-spacing:0.378000px;}
.ls60{letter-spacing:0.378006px;}
.ls21{letter-spacing:0.386098px;}
.ls2a{letter-spacing:0.386100px;}
.ls41{letter-spacing:0.405000px;}
.ls47{letter-spacing:0.420000px;}
.ls90{letter-spacing:0.421200px;}
.ls42{letter-spacing:0.431998px;}
.ls19{letter-spacing:0.432000px;}
.ls9c{letter-spacing:0.436426px;}
.ls97{letter-spacing:0.438750px;}
.ls9e{letter-spacing:0.450000px;}
.lsb{letter-spacing:0.456300px;}
.ls8b{letter-spacing:0.458989px;}
.ls11{letter-spacing:0.459000px;}
.ls5c{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.486000px;}
.ls28{letter-spacing:0.492772px;}
.ls9d{letter-spacing:0.494999px;}
.ls13{letter-spacing:0.495453px;}
.ls5f{letter-spacing:0.539999px;}
.ls7{letter-spacing:0.540000px;}
.ls59{letter-spacing:0.583195px;}
.ls43{letter-spacing:0.593998px;}
.ls1a{letter-spacing:0.594000px;}
.ls40{letter-spacing:0.600000px;}
.ls87{letter-spacing:0.621000px;}
.ls9f{letter-spacing:0.630000px;}
.ls57{letter-spacing:0.631789px;}
.ls84{letter-spacing:0.648000px;}
.lsb3{letter-spacing:0.675000px;}
.lsc{letter-spacing:0.702000px;}
.lsc0{letter-spacing:0.720000px;}
.ls52{letter-spacing:0.756000px;}
.ls12{letter-spacing:0.765000px;}
.ls17{letter-spacing:0.810000px;}
.ls4e{letter-spacing:0.864000px;}
.ls88{letter-spacing:0.918000px;}
.ls37{letter-spacing:0.930791px;}
.ls44{letter-spacing:0.934195px;}
.lsb9{letter-spacing:0.945000px;}
.lsc1{letter-spacing:0.972000px;}
.lsa9{letter-spacing:0.990000px;}
.lsb8{letter-spacing:1.035000px;}
.ls3d{letter-spacing:1.368810px;}
.lsa0{letter-spacing:1.394999px;}
.ls0{letter-spacing:2.592000px;}
.ls20{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsba{letter-spacing:6.120000px;}
.ls71{letter-spacing:137.928000px;}
.ls74{letter-spacing:198.408000px;}
.ls6e{letter-spacing:250.992000px;}
.ls6f{letter-spacing:280.728000px;}
.ls62{letter-spacing:361.662022px;}
.ls65{letter-spacing:515.382018px;}
.ls64{letter-spacing:530.963990px;}
.ls61{letter-spacing:558.516002px;}
.ls72{letter-spacing:642.746682px;}
.ls77{letter-spacing:661.604414px;}
.ls75{letter-spacing:730.884039px;}
.ls73{letter-spacing:746.465971px;}
.ls70{letter-spacing:774.017984px;}
.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;}
}
.ws24{word-spacing:-17.673523px;}
.ws29{word-spacing:-17.535449px;}
.ws2e{word-spacing:-17.397374px;}
.ws2a{word-spacing:-16.845077px;}
.ws2b{word-spacing:-16.589976px;}
.ws26{word-spacing:-16.151957px;}
.ws2c{word-spacing:-15.713938px;}
.ws1{word-spacing:-15.067500px;}
.ws27{word-spacing:-15.002157px;}
.ws25{word-spacing:-14.892652px;}
.ws1b{word-spacing:-14.700000px;}
.ws28{word-spacing:-14.509385px;}
.ws2d{word-spacing:-14.126119px;}
.ws4b{word-spacing:-13.596000px;}
.ws1e{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.852000px;}
.ws9b{word-spacing:-12.582000px;}
.ws0{word-spacing:-12.480000px;}
.ws20{word-spacing:-12.258000px;}
.ws4e{word-spacing:-12.204000px;}
.ws23{word-spacing:-12.096000px;}
.ws4c{word-spacing:-12.042000px;}
.wseb{word-spacing:-11.718000px;}
.wsad{word-spacing:-11.556000px;}
.wsb0{word-spacing:-11.448000px;}
.ws7{word-spacing:-10.353000px;}
.wsd5{word-spacing:-10.350000px;}
.wsba{word-spacing:-10.305000px;}
.wsbb{word-spacing:-10.215000px;}
.wscb{word-spacing:-10.125000px;}
.wsb8{word-spacing:-9.990000px;}
.wsb7{word-spacing:-9.945000px;}
.wsd8{word-spacing:-9.855000px;}
.wsd9{word-spacing:-9.810000px;}
.wsb6{word-spacing:-9.720000px;}
.wsd0{word-spacing:-9.675000px;}
.wsce{word-spacing:-9.540000px;}
.ws65{word-spacing:-9.534000px;}
.wsc8{word-spacing:-9.450000px;}
.ws9f{word-spacing:-9.114000px;}
.wsb9{word-spacing:-8.955000px;}
.wsb5{word-spacing:-8.550000px;}
.ws5{word-spacing:-8.424000px;}
.wsac{word-spacing:-8.388900px;}
.ws1c{word-spacing:-8.353800px;}
.ws22{word-spacing:-8.318700px;}
.wsae{word-spacing:-8.283600px;}
.ws96{word-spacing:-8.248500px;}
.ws67{word-spacing:-8.213400px;}
.ws9c{word-spacing:-8.178300px;}
.ws4f{word-spacing:-8.143200px;}
.ws21{word-spacing:-8.108100px;}
.ws1d{word-spacing:-8.073000px;}
.wsaf{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws75{word-spacing:-8.002800px;}
.ws3{word-spacing:-7.967700px;}
.ws1f{word-spacing:-7.932600px;}
.ws4a{word-spacing:-7.897500px;}
.ws4d{word-spacing:-7.862400px;}
.ws6{word-spacing:-7.827300px;}
.ws66{word-spacing:-6.388200px;}
.ws61{word-spacing:-6.197100px;}
.wsda{word-spacing:-6.120000px;}
.ws55{word-spacing:-5.616000px;}
.ws6a{word-spacing:-5.508000px;}
.ws74{word-spacing:-4.860000px;}
.ws73{word-spacing:-4.284000px;}
.ws19{word-spacing:-4.029000px;}
.ws71{word-spacing:-3.864000px;}
.ws34{word-spacing:-2.052000px;}
.ws15{word-spacing:-1.944000px;}
.ws3b{word-spacing:-1.890000px;}
.wsd{word-spacing:-1.836000px;}
.ws53{word-spacing:-1.782000px;}
.ws43{word-spacing:-1.728000px;}
.ws5a{word-spacing:-1.674000px;}
.ws97{word-spacing:-1.620000px;}
.wsc3{word-spacing:-1.575000px;}
.ws60{word-spacing:-1.566000px;}
.wsc2{word-spacing:-1.530000px;}
.ws33{word-spacing:-1.512000px;}
.wsa8{word-spacing:-1.458000px;}
.ws5d{word-spacing:-1.404000px;}
.ws92{word-spacing:-1.350000px;}
.wsb1{word-spacing:-1.296000px;}
.wsbd{word-spacing:-1.275000px;}
.wsf{word-spacing:-1.242000px;}
.ws3d{word-spacing:-1.188000px;}
.wsab{word-spacing:-1.176000px;}
.ws59{word-spacing:-1.134000px;}
.wse3{word-spacing:-1.125000px;}
.ws5f{word-spacing:-1.080000px;}
.wsbe{word-spacing:-1.035000px;}
.ws3a{word-spacing:-1.026000px;}
.ws72{word-spacing:-0.966000px;}
.ws9{word-spacing:-0.960000px;}
.ws70{word-spacing:-0.924000px;}
.ws36{word-spacing:-0.918000px;}
.wsc6{word-spacing:-0.900000px;}
.ws6f{word-spacing:-0.864000px;}
.wsde{word-spacing:-0.855000px;}
.ws5e{word-spacing:-0.756000px;}
.ws94{word-spacing:-0.714000px;}
.ws3c{word-spacing:-0.702000px;}
.wsc9{word-spacing:-0.675000px;}
.wsb{word-spacing:-0.648000px;}
.wse2{word-spacing:-0.630000px;}
.ws95{word-spacing:-0.627900px;}
.ws51{word-spacing:-0.600000px;}
.ws10{word-spacing:-0.594000px;}
.wsc5{word-spacing:-0.585000px;}
.ws2f{word-spacing:-0.547524px;}
.ws35{word-spacing:-0.540000px;}
.ws1a{word-spacing:-0.510000px;}
.wsc0{word-spacing:-0.495000px;}
.ws46{word-spacing:-0.492772px;}
.ws41{word-spacing:-0.486000px;}
.ws6d{word-spacing:-0.480000px;}
.wsb4{word-spacing:-0.456300px;}
.wsd4{word-spacing:-0.450000px;}
.ws6e{word-spacing:-0.432000px;}
.ws5b{word-spacing:-0.420000px;}
.wsca{word-spacing:-0.405000px;}
.ws39{word-spacing:-0.386100px;}
.ws52{word-spacing:-0.378000px;}
.wsdc{word-spacing:-0.360000px;}
.ws40{word-spacing:-0.351000px;}
.ws6b{word-spacing:-0.324000px;}
.wsc7{word-spacing:-0.315000px;}
.ws17{word-spacing:-0.306000px;}
.wsb3{word-spacing:-0.280800px;}
.ws54{word-spacing:-0.270000px;}
.wsd1{word-spacing:-0.225000px;}
.ws11{word-spacing:-0.216000px;}
.wsb2{word-spacing:-0.210600px;}
.wsaa{word-spacing:-0.175500px;}
.ws50{word-spacing:-0.162000px;}
.wsa6{word-spacing:-0.140400px;}
.ws42{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.108000px;}
.wse4{word-spacing:-0.090000px;}
.ws3f{word-spacing:-0.060000px;}
.ws68{word-spacing:-0.054000px;}
.wsdf{word-spacing:-0.045000px;}
.ws7a{word-spacing:-0.042000px;}
.ws91{word-spacing:-0.035100px;}
.ws8{word-spacing:0.000000px;}
.ws37{word-spacing:0.054000px;}
.ws56{word-spacing:0.060000px;}
.wsbc{word-spacing:0.070200px;}
.wscd{word-spacing:0.090000px;}
.ws98{word-spacing:0.105300px;}
.wse{word-spacing:0.108000px;}
.wsdb{word-spacing:0.135000px;}
.ws49{word-spacing:0.138074px;}
.ws16{word-spacing:0.153000px;}
.ws12{word-spacing:0.162000px;}
.ws30{word-spacing:0.164257px;}
.ws58{word-spacing:0.180000px;}
.ws44{word-spacing:0.207112px;}
.ws3e{word-spacing:0.216000px;}
.ws47{word-spacing:0.219010px;}
.wse7{word-spacing:0.225000px;}
.ws38{word-spacing:0.270000px;}
.ws45{word-spacing:0.276149px;}
.ws6c{word-spacing:0.324000px;}
.ws93{word-spacing:0.336000px;}
.ws99{word-spacing:0.378000px;}
.wse5{word-spacing:0.405000px;}
.ws5c{word-spacing:0.432000px;}
.ws9a{word-spacing:0.486000px;}
.wscc{word-spacing:0.585000px;}
.ws13{word-spacing:0.594000px;}
.wsd2{word-spacing:0.630000px;}
.wsea{word-spacing:0.648000px;}
.wsc{word-spacing:0.702000px;}
.wscf{word-spacing:0.720000px;}
.ws69{word-spacing:0.756000px;}
.wsc1{word-spacing:0.765000px;}
.wsa7{word-spacing:0.810000px;}
.ws18{word-spacing:0.918000px;}
.ws32{word-spacing:0.930791px;}
.ws57{word-spacing:1.026000px;}
.wse6{word-spacing:1.035000px;}
.ws31{word-spacing:1.040296px;}
.wsa9{word-spacing:1.080000px;}
.ws48{word-spacing:1.095048px;}
.wsec{word-spacing:1.188000px;}
.wsd6{word-spacing:1.215000px;}
.wsed{word-spacing:1.242000px;}
.wsa{word-spacing:1.260000px;}
.wse9{word-spacing:1.305000px;}
.wse8{word-spacing:1.350000px;}
.wsc4{word-spacing:1.485000px;}
.wse0{word-spacing:1.530000px;}
.wsdd{word-spacing:1.620000px;}
.wse1{word-spacing:2.070000px;}
.wsbf{word-spacing:2.115000px;}
.wsd3{word-spacing:3.285000px;}
.wsd7{word-spacing:3.870000px;}
.ws88{word-spacing:40.141372px;}
.ws8b{word-spacing:48.721328px;}
.ws9e{word-spacing:72.869995px;}
.wsa1{word-spacing:73.248000px;}
.wsa0{word-spacing:82.907995px;}
.ws7e{word-spacing:96.726000px;}
.wsa3{word-spacing:115.583995px;}
.ws85{word-spacing:137.928665px;}
.ws86{word-spacing:156.366000px;}
.ws90{word-spacing:159.894000px;}
.ws8e{word-spacing:165.144122px;}
.ws7b{word-spacing:172.032665px;}
.ws8f{word-spacing:176.526000px;}
.ws89{word-spacing:177.366000px;}
.ws84{word-spacing:197.526000px;}
.ws7c{word-spacing:208.950000px;}
.ws80{word-spacing:211.512219px;}
.ws81{word-spacing:219.408218px;}
.ws78{word-spacing:229.950000px;}
.ws8d{word-spacing:237.006000px;}
.ws8c{word-spacing:255.191479px;}
.ws7f{word-spacing:258.006000px;}
.ws77{word-spacing:259.686000px;}
.ws7d{word-spacing:276.956364px;}
.ws76{word-spacing:307.230000px;}
.ws62{word-spacing:328.650015px;}
.ws64{word-spacing:445.578018px;}
.ws63{word-spacing:461.159990px;}
.ws83{word-spacing:562.463991px;}
.ws82{word-spacing:564.018018px;}
.ws8a{word-spacing:661.080039px;}
.ws87{word-spacing:676.661971px;}
.ws79{word-spacing:800.146164px;}
.wsa5{word-spacing:941.350185px;}
.wsa2{word-spacing:946.978185px;}
.ws9d{word-spacing:992.380185px;}
.wsa4{word-spacing:1054.031985px;}
._50{margin-left:-12.150000px;}
._54{margin-left:-9.765000px;}
._4c{margin-left:-8.725425px;}
._c{margin-left:-7.545157px;}
._4{margin-left:-5.732896px;}
._2{margin-left:-4.645825px;}
._1{margin-left:-3.151200px;}
._0{margin-left:-1.776017px;}
._3{width:1.655077px;}
._7{width:2.970407px;}
._5{width:3.994243px;}
._8{width:5.039734px;}
._d{width:6.281710px;}
._52{width:7.594517px;}
._4e{width:8.796017px;}
._4f{width:9.990000px;}
._53{width:11.080828px;}
._4d{width:12.960000px;}
._9{width:15.281992px;}
._19{width:16.640894px;}
._51{width:18.135002px;}
._b{width:41.934091px;}
._31{width:43.416956px;}
._6{width:46.934934px;}
._a{width:48.905166px;}
._36{width:67.757898px;}
._27{width:76.737628px;}
._47{width:82.134019px;}
._45{width:115.206000px;}
._1a{width:117.469410px;}
._42{width:118.998713px;}
._41{width:124.746025px;}
._38{width:128.953105px;}
._33{width:136.920010px;}
._49{width:147.882000px;}
._37{width:150.360000px;}
._3a{width:157.796344px;}
._35{width:177.240011px;}
._20{width:179.918243px;}
._2d{width:187.824010px;}
._1c{width:189.221969px;}
._23{width:197.281828px;}
._1b{width:199.957418px;}
._43{width:201.936000px;}
._39{width:210.840000px;}
._29{width:217.678637px;}
._1f{width:219.240010px;}
._25{width:229.402380px;}
._24{width:259.728000px;}
._21{width:262.416000px;}
._1d{width:271.992000px;}
._2f{width:293.033942px;}
._2e{width:300.048000px;}
._2c{width:301.541998px;}
._2b{width:312.733630px;}
._11{width:368.973710px;}
._13{width:405.426022px;}
._f{width:466.338040px;}
._12{width:509.611848px;}
._15{width:515.940040px;}
._14{width:532.152040px;}
._17{width:568.747117px;}
._18{width:579.024040px;}
._28{width:580.509035px;}
._22{width:597.923981px;}
._2a{width:625.013981px;}
._26{width:632.729964px;}
._16{width:637.243809px;}
._e{width:651.042022px;}
._1e{width:657.155998px;}
._4a{width:664.922578px;}
._10{width:682.122022px;}
._44{width:688.848054px;}
._30{width:700.193981px;}
._32{width:725.113789px;}
._3c{width:731.441981px;}
._3b{width:747.653981px;}
._3e{width:784.255833px;}
._34{width:786.125981px;}
._3f{width:794.525981px;}
._40{width:812.291981px;}
._48{width:824.543985px;}
._4b{width:841.903202px;}
._3d{width:852.748874px;}
._46{width:895.746002px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fse{font-size:27.300001px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:54.752397px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:69.037199px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y2e{bottom:68.307899px;}
.y5c{bottom:68.551502px;}
.yb2{bottom:68.555999px;}
.y1bc{bottom:68.796298px;}
.yd7{bottom:71.050801px;}
.yfe{bottom:72.304498px;}
.y139{bottom:77.781307px;}
.y200{bottom:79.488314px;}
.y170{bottom:80.794803px;}
.y2d{bottom:83.307899px;}
.y5b{bottom:83.551496px;}
.yb1{bottom:83.554498px;}
.y1bb{bottom:83.794798px;}
.yd6{bottom:86.049300px;}
.yfd{bottom:87.302997px;}
.y1ff{bottom:92.234564px;}
.y138{bottom:92.779806px;}
.y247{bottom:94.308305px;}
.y16f{bottom:95.796298px;}
.y2c{bottom:98.307899px;}
.yb0{bottom:98.552997px;}
.y5a{bottom:98.554498px;}
.y1ba{bottom:98.797799px;}
.yd5{bottom:101.047799px;}
.yfc{bottom:102.301496px;}
.y1fe{bottom:104.980814px;}
.y137{bottom:107.787310px;}
.y246{bottom:109.306804px;}
.y16e{bottom:110.794798px;}
.yaf{bottom:113.551496px;}
.y59{bottom:113.552997px;}
.y1b9{bottom:113.796298px;}
.yd4{bottom:116.046298px;}
.yfb{bottom:117.301496px;}
.y2b{bottom:117.636898px;}
.y1fd{bottom:117.727064px;}
.y136{bottom:122.785809px;}
.y245{bottom:124.305303px;}
.y16d{bottom:125.809806px;}
.y58{bottom:128.551496px;}
.yae{bottom:128.559000px;}
.y1b8{bottom:128.794798px;}
.y1fc{bottom:130.473314px;}
.yd3{bottom:131.044798px;}
.yfa{bottom:132.309000px;}
.y135{bottom:137.784308px;}
.y244{bottom:139.303802px;}
.y16c{bottom:140.808305px;}
.y1fb{bottom:143.219564px;}
.y57{bottom:143.549995px;}
.yad{bottom:143.557499px;}
.y1b7{bottom:143.796298px;}
.yd2{bottom:146.046298px;}
.yf9{bottom:147.307499px;}
.y134{bottom:152.782807px;}
.y243{bottom:154.302302px;}
.y16b{bottom:155.806804px;}
.y1fa{bottom:155.965815px;}
.yac{bottom:158.555999px;}
.y1b6{bottom:158.794798px;}
.yd1{bottom:161.044798px;}
.yf8{bottom:162.305999px;}
.y133{bottom:167.781307px;}
.y2a{bottom:168.687313px;}
.y1f9{bottom:168.712065px;}
.y242{bottom:169.300801px;}
.y16a{bottom:170.805303px;}
.y56{bottom:173.391609px;}
.yab{bottom:173.554498px;}
.y1b5{bottom:173.803802px;}
.yd0{bottom:176.043297px;}
.yf7{bottom:177.304498px;}
.y1f8{bottom:181.458315px;}
.y132{bottom:182.779806px;}
.y29{bottom:183.685812px;}
.y241{bottom:184.299300px;}
.y169{bottom:185.803802px;}
.y55{bottom:188.390108px;}
.yaa{bottom:188.552997px;}
.y1b4{bottom:188.802302px;}
.yf6{bottom:192.302997px;}
.y1f7{bottom:194.204565px;}
.y131{bottom:197.782807px;}
.y28{bottom:198.687313px;}
.y240{bottom:199.297799px;}
.y168{bottom:200.802302px;}
.y54{bottom:203.388608px;}
.ya9{bottom:203.551496px;}
.y1b3{bottom:203.800801px;}
.y1f6{bottom:206.950815px;}
.yf5{bottom:207.301496px;}
.ycf{bottom:209.046298px;}
.y130{bottom:212.781307px;}
.y27{bottom:213.685812px;}
.y23f{bottom:214.296298px;}
.y167{bottom:215.800801px;}
.y53{bottom:218.387107px;}
.ya8{bottom:218.555999px;}
.y1b2{bottom:218.799300px;}
.y1f5{bottom:219.697065px;}
.yf4{bottom:222.299995px;}
.yce{bottom:224.044798px;}
.y12f{bottom:227.779806px;}
.y26{bottom:228.687313px;}
.y23e{bottom:229.294798px;}
.y166{bottom:230.799300px;}
.y1f4{bottom:232.443315px;}
.y52{bottom:233.385606px;}
.ya7{bottom:233.554498px;}
.y1b1{bottom:233.797799px;}
.yf3{bottom:237.299995px;}
.ycd{bottom:239.055303px;}
.y12e{bottom:242.779806px;}
.y25{bottom:243.685812px;}
.y23d{bottom:244.293297px;}
.y1f3{bottom:245.189565px;}
.y165{bottom:245.797799px;}
.y51{bottom:248.384105px;}
.ya6{bottom:248.552997px;}
.y1b0{bottom:248.796298px;}
.ycc{bottom:254.053802px;}
.y12d{bottom:257.785809px;}
.y1f2{bottom:257.935815px;}
.y24{bottom:258.685812px;}
.y23c{bottom:259.293297px;}
.y164{bottom:260.796298px;}
.y50{bottom:263.382604px;}
.ya5{bottom:263.551496px;}
.y1af{bottom:263.794798px;}
.yf2{bottom:268.296298px;}
.ycb{bottom:269.052302px;}
.y1f1{bottom:270.682066px;}
.y12c{bottom:272.784308px;}
.y23{bottom:273.687313px;}
.y163{bottom:275.794798px;}
.y4f{bottom:278.382604px;}
.ya4{bottom:278.551496px;}
.y1ae{bottom:278.799300px;}
.yf1{bottom:283.294798px;}
.y1f0{bottom:283.428316px;}
.yca{bottom:284.050801px;}
.y23b{bottom:286.297799px;}
.y12b{bottom:287.782807px;}
.y22{bottom:288.685812px;}
.y162{bottom:290.814331px;}
.y4e{bottom:293.382604px;}
.ya3{bottom:293.549995px;}
.y1ad{bottom:293.797799px;}
.y1ef{bottom:296.174566px;}
.yf0{bottom:298.293297px;}
.yc9{bottom:299.049300px;}
.y23a{bottom:301.296298px;}
.y12a{bottom:302.781307px;}
.y21{bottom:303.685812px;}
.y161{bottom:305.812830px;}
.y4d{bottom:308.382604px;}
.y1ac{bottom:308.796298px;}
.y1ee{bottom:308.920816px;}
.yc8{bottom:314.047799px;}
.y239{bottom:316.294798px;}
.y129{bottom:317.779806px;}
.y20{bottom:318.688813px;}
.y160{bottom:320.811329px;}
.ya2{bottom:320.844158px;}
.y1ed{bottom:321.667066px;}
.y4c{bottom:323.381104px;}
.y1ab{bottom:323.794798px;}
.yc7{bottom:329.046298px;}
.y238{bottom:331.293297px;}
.y128{bottom:332.778305px;}
.y1f{bottom:333.687313px;}
.y1ec{bottom:334.413316px;}
.y15f{bottom:335.809829px;}
.ya1{bottom:335.842657px;}
.y1aa{bottom:338.800824px;}
.yc6{bottom:344.044798px;}
.y237{bottom:346.293297px;}
.y1eb{bottom:347.159566px;}
.y127{bottom:347.607298px;}
.y1e{bottom:348.685812px;}
.y15e{bottom:350.808328px;}
.ya0{bottom:350.844158px;}
.y4b{bottom:353.218192px;}
.y1a9{bottom:353.799323px;}
.yc5{bottom:359.070334px;}
.y1ea{bottom:359.905816px;}
.y126{bottom:362.607298px;}
.y1d{bottom:363.685812px;}
.y15d{bottom:365.806827px;}
.y9f{bottom:365.842657px;}
.y4a{bottom:368.216691px;}
.y1a8{bottom:368.797822px;}
.y1e9{bottom:372.652066px;}
.yc4{bottom:374.068833px;}
.y125{bottom:377.607321px;}
.y1c{bottom:378.687313px;}
.y236{bottom:379.302325px;}
.y15c{bottom:380.805326px;}
.y9e{bottom:380.842657px;}
.y49{bottom:383.215190px;}
.y1a7{bottom:383.796321px;}
.y1e8{bottom:385.398317px;}
.yc3{bottom:389.067333px;}
.y124{bottom:392.608821px;}
.y13f{bottom:393.048448px;}
.y1b{bottom:393.685812px;}
.y235{bottom:394.300824px;}
.y15b{bottom:395.803825px;}
.y9d{bottom:395.841156px;}
.y1e7{bottom:398.144567px;}
.y48{bottom:398.213690px;}
.y1a6{bottom:398.794821px;}
.yc2{bottom:404.065832px;}
.y123{bottom:407.607321px;}
.y13e{bottom:408.046947px;}
.y1a{bottom:408.696313px;}
.y234{bottom:409.299323px;}
.y15a{bottom:410.802325px;}
.y9c{bottom:410.841156px;}
.y1e6{bottom:410.890817px;}
.y47{bottom:413.219693px;}
.y1a5{bottom:413.794821px;}
.yc1{bottom:419.064331px;}
.y122{bottom:422.607321px;}
.y13d{bottom:423.045446px;}
.y1e5{bottom:423.637067px;}
.y19{bottom:423.694812px;}
.y233{bottom:424.297822px;}
.y159{bottom:425.800824px;}
.y46{bottom:428.218192px;}
.y1a4{bottom:428.796321px;}
.yc0{bottom:434.062830px;}
.y1e4{bottom:436.383317px;}
.y121{bottom:437.607321px;}
.y13c{bottom:438.043945px;}
.y9b{bottom:438.133795px;}
.y18{bottom:438.693311px;}
.y232{bottom:439.296321px;}
.y158{bottom:440.799323px;}
.y45{bottom:443.216691px;}
.y1a3{bottom:443.794821px;}
.ybf{bottom:449.061329px;}
.y1e3{bottom:449.129567px;}
.y120{bottom:452.607321px;}
.y9a{bottom:453.135295px;}
.y231{bottom:454.294821px;}
.y157{bottom:455.797822px;}
.y44{bottom:458.215190px;}
.y1a2{bottom:458.796321px;}
.y1e2{bottom:461.875817px;}
.ybe{bottom:464.059829px;}
.y11f{bottom:467.608821px;}
.y99{bottom:468.133795px;}
.y230{bottom:469.293320px;}
.y156{bottom:470.796321px;}
.y43{bottom:473.213690px;}
.y1a1{bottom:473.794821px;}
.y1e1{bottom:474.622067px;}
.ybd{bottom:479.058328px;}
.y11e{bottom:482.607321px;}
.y98{bottom:483.132294px;}
.y22f{bottom:484.293320px;}
.y155{bottom:485.794821px;}
.y17{bottom:485.943311px;}
.y1e0{bottom:487.368317px;}
.y42{bottom:488.216691px;}
.y1a0{bottom:488.794821px;}
.ybc{bottom:494.056827px;}
.y11d{bottom:497.608821px;}
.y97{bottom:498.132294px;}
.y1df{bottom:500.114568px;}
.y154{bottom:500.797822px;}
.y16{bottom:502.440311px;}
.y41{bottom:503.215190px;}
.y19f{bottom:503.796321px;}
.ybb{bottom:509.055326px;}
.y11c{bottom:512.607321px;}
.y1de{bottom:512.860818px;}
.y153{bottom:515.796321px;}
.y22e{bottom:517.462019px;}
.y40{bottom:518.213690px;}
.y19e{bottom:518.794821px;}
.y15{bottom:518.937311px;}
.yba{bottom:524.053825px;}
.y96{bottom:525.430935px;}
.y1dd{bottom:525.607068px;}
.y11b{bottom:527.605820px;}
.y22d{bottom:530.208269px;}
.y152{bottom:530.794821px;}
.y3f{bottom:533.212189px;}
.y19d{bottom:533.797822px;}
.y14{bottom:535.464311px;}
.y1dc{bottom:538.353318px;}
.yb9{bottom:539.052325px;}
.y95{bottom:540.429435px;}
.y22c{bottom:542.954519px;}
.y151{bottom:545.797822px;}
.y3e{bottom:548.212189px;}
.y19c{bottom:548.796321px;}
.y1db{bottom:551.099568px;}
.y13{bottom:551.961311px;}
.yb8{bottom:554.050824px;}
.y94{bottom:555.427934px;}
.y22b{bottom:555.700769px;}
.y11a{bottom:557.790320px;}
.y150{bottom:560.796321px;}
.y19b{bottom:563.794821px;}
.y1da{bottom:563.845818px;}
.y22a{bottom:568.447019px;}
.y12{bottom:568.458311px;}
.yb7{bottom:569.049323px;}
.y93{bottom:570.426433px;}
.y119{bottom:575.227820px;}
.y14f{bottom:575.794821px;}
.y1d9{bottom:576.592068px;}
.y3d{bottom:578.047822px;}
.y19a{bottom:578.797822px;}
.y229{bottom:581.193269px;}
.yb6{bottom:584.047822px;}
.y11{bottom:584.955311px;}
.y92{bottom:585.424932px;}
.y1d8{bottom:589.338318px;}
.y14e{bottom:590.802325px;}
.y118{bottom:592.665320px;}
.y3c{bottom:593.046321px;}
.y199{bottom:593.796321px;}
.y228{bottom:593.939520px;}
.yb5{bottom:599.046321px;}
.y91{bottom:600.427934px;}
.y10{bottom:601.452311px;}
.y1d7{bottom:602.084568px;}
.y14d{bottom:605.800824px;}
.y227{bottom:606.685770px;}
.y3b{bottom:608.044821px;}
.y198{bottom:608.794821px;}
.y117{bottom:610.102820px;}
.yb4{bottom:614.044821px;}
.y1d6{bottom:614.830819px;}
.y90{bottom:615.426433px;}
.yf{bottom:617.949311px;}
.y226{bottom:619.432020px;}
.y14c{bottom:620.799323px;}
.y3a{bottom:623.044821px;}
.y197{bottom:623.794821px;}
.y116{bottom:627.540320px;}
.y1d5{bottom:627.577069px;}
.yb3{bottom:629.043320px;}
.y8f{bottom:630.424932px;}
.y225{bottom:632.178270px;}
.ye{bottom:634.446311px;}
.y14b{bottom:635.797822px;}
.y39{bottom:638.046321px;}
.y196{bottom:638.797822px;}
.y1d4{bottom:640.323319px;}
.y224{bottom:644.924520px;}
.y115{bottom:644.974819px;}
.y8e{bottom:645.423431px;}
.y14a{bottom:650.796321px;}
.yd{bottom:650.943311px;}
.y38{bottom:653.044821px;}
.y1d3{bottom:653.069569px;}
.y195{bottom:653.796321px;}
.y223{bottom:657.670770px;}
.y114{bottom:662.415320px;}
.y149{bottom:665.794821px;}
.y1d2{bottom:665.815819px;}
.yc{bottom:667.440311px;}
.y37{bottom:668.044821px;}
.y194{bottom:668.794821px;}
.y222{bottom:670.417020px;}
.y8d{bottom:672.733644px;}
.y1d1{bottom:678.562069px;}
.y113{bottom:679.852820px;}
.y148{bottom:680.799323px;}
.y36{bottom:683.050824px;}
.y221{bottom:683.163270px;}
.y193{bottom:683.796321px;}
.yb{bottom:683.937311px;}
.y8c{bottom:687.732143px;}
.y1d0{bottom:691.308319px;}
.yef{bottom:691.857321px;}
.y147{bottom:695.797822px;}
.y220{bottom:695.909520px;}
.y112{bottom:697.287319px;}
.y35{bottom:698.049323px;}
.y192{bottom:698.794821px;}
.ya{bottom:700.434311px;}
.y1cf{bottom:704.054569px;}
.yee{bottom:706.857321px;}
.y21f{bottom:708.655771px;}
.y146{bottom:710.796321px;}
.y34{bottom:713.047822px;}
.y191{bottom:713.796321px;}
.y111{bottom:714.727820px;}
.y1ce{bottom:716.800819px;}
.y8b{bottom:717.324142px;}
.y21e{bottom:721.402021px;}
.yed{bottom:721.857321px;}
.y145{bottom:725.794821px;}
.y33{bottom:728.046321px;}
.y190{bottom:728.794821px;}
.y1cd{bottom:729.547070px;}
.y9{bottom:730.434310px;}
.y110{bottom:732.165320px;}
.y8a{bottom:732.322641px;}
.y21d{bottom:734.148271px;}
.yec{bottom:736.855820px;}
.y144{bottom:740.799277px;}
.y1cc{bottom:742.293320px;}
.y32{bottom:743.044821px;}
.y18f{bottom:743.794821px;}
.y21c{bottom:746.894521px;}
.y89{bottom:747.321140px;}
.y8{bottom:748.434311px;}
.y10f{bottom:749.602820px;}
.y1cb{bottom:755.043320px;}
.y143{bottom:755.797776px;}
.y31{bottom:758.043320px;}
.y18e{bottom:758.796276px;}
.y21b{bottom:759.640771px;}
.y88{bottom:762.319639px;}
.y10e{bottom:767.025273px;}
.yeb{bottom:767.040274px;}
.y142{bottom:770.796276px;}
.y13b{bottom:771.000494px;}
.y21a{bottom:772.387021px;}
.y18d{bottom:773.794775px;}
.y87{bottom:777.318139px;}
.y7{bottom:781.416260px;}
.y10d{bottom:784.465773px;}
.yea{bottom:784.477774px;}
.y219{bottom:785.133271px;}
.y141{bottom:785.794775px;}
.y13a{bottom:785.998993px;}
.y1ca{bottom:788.049274px;}
.y18c{bottom:788.800778px;}
.y218{bottom:797.879521px;}
.y140{bottom:800.793274px;}
.y10c{bottom:801.906273px;}
.ye9{bottom:801.915274px;}
.y1c9{bottom:803.043274px;}
.y18b{bottom:803.799277px;}
.y86{bottom:806.910137px;}
.y74{bottom:809.036682px;}
.y217{bottom:810.625771px;}
.y18a{bottom:818.797776px;}
.y10b{bottom:819.346774px;}
.ye8{bottom:819.349774px;}
.y216{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.y1c8{bottom:830.796276px;}
.y189{bottom:833.796276px;}
.y215{bottom:836.118272px;}
.y85{bottom:836.503637px;}
.y10a{bottom:836.787274px;}
.ye7{bottom:836.790274px;}
.y256{bottom:836.806781px;}
.y1c7{bottom:845.794775px;}
.y188{bottom:848.794775px;}
.y214{bottom:848.864522px;}
.y84{bottom:851.503637px;}
.y255{bottom:851.805280px;}
.ye6{bottom:854.227774px;}
.y73{bottom:854.704136px;}
.y17a{bottom:857.607275px;}
.y1c6{bottom:860.793274px;}
.y213{bottom:861.610772px;}
.y187{bottom:863.799277px;}
.y83{bottom:866.506639px;}
.y254{bottom:866.803780px;}
.y5{bottom:871.428264px;}
.ye5{bottom:871.662274px;}
.y179{bottom:872.607275px;}
.y72{bottom:874.346558px;}
.y212{bottom:874.357022px;}
.y1c5{bottom:875.793274px;}
.y186{bottom:878.797776px;}
.y82{bottom:881.505138px;}
.y253{bottom:881.802279px;}
.y211{bottom:887.103272px;}
.y178{bottom:887.605774px;}
.ye4{bottom:889.102774px;}
.y185{bottom:893.796276px;}
.y81{bottom:896.503637px;}
.y252{bottom:896.800778px;}
.y210{bottom:899.849522px;}
.y109{bottom:906.531273px;}
.ye3{bottom:906.540274px;}
.y184{bottom:908.794775px;}
.y1c4{bottom:908.803780px;}
.y80{bottom:911.503637px;}
.y251{bottom:911.799277px;}
.y20f{bottom:912.595772px;}
.y71{bottom:914.517847px;}
.y4{bottom:916.434265px;}
.y177{bottom:917.787274px;}
.y6a{bottom:918.091619px;}
.y183{bottom:923.794775px;}
.y1c3{bottom:923.802279px;}
.y108{bottom:923.971774px;}
.ye2{bottom:923.983773px;}
.y20e{bottom:925.342022px;}
.y2f{bottom:926.409576px;}
.y7f{bottom:926.502136px;}
.y250{bottom:926.797776px;}
.y70{bottom:934.160269px;}
.y176{bottom:935.227774px;}
.y69{bottom:937.734041px;}
.y20d{bottom:938.088273px;}
.y182{bottom:938.799277px;}
.y1c2{bottom:938.800778px;}
.y107{bottom:941.412274px;}
.ye1{bottom:941.424273px;}
.y24f{bottom:941.796276px;}
.y62{bottom:946.955473px;}
.y6f{bottom:948.149506px;}
.y20c{bottom:950.834523px;}
.y175{bottom:952.644273px;}
.y7e{bottom:953.796276px;}
.y181{bottom:953.797776px;}
.y1c1{bottom:953.799277px;}
.y24e{bottom:956.794775px;}
.y68{bottom:957.075325px;}
.y106{bottom:958.852774px;}
.ye0{bottom:958.864773px;}
.y20b{bottom:963.580773px;}
.y61{bottom:966.597895px;}
.y7d{bottom:968.794775px;}
.y180{bottom:968.796276px;}
.y1c0{bottom:968.797776px;}
.y174{bottom:970.084773px;}
.y24d{bottom:971.793274px;}
.y105{bottom:976.290274px;}
.ydf{bottom:976.305273px;}
.y20a{bottom:976.327023px;}
.y67{bottom:976.717747px;}
.y60{bottom:980.587131px;}
.y7c{bottom:983.794775px;}
.y1bf{bottom:983.796276px;}
.y173{bottom:987.525273px;}
.y209{bottom:989.073273px;}
.y6e{bottom:991.002523px;}
.y24c{bottom:993.549277px;}
.y104{bottom:993.724774px;}
.yde{bottom:993.735274px;}
.y66{bottom:996.360168px;}
.y17f{bottom:998.794775px;}
.y7b{bottom:998.802279px;}
.y5f{bottom:1000.229553px;}
.y208{bottom:1001.819523px;}
.y172{bottom:1004.965773px;}
.ydd{bottom:1004.974774px;}
.y6d{bottom:1004.991760px;}
.y24b{bottom:1008.547776px;}
.y103{bottom:1011.165274px;}
.y1be{bottom:1013.796276px;}
.y17e{bottom:1013.799277px;}
.y7a{bottom:1013.800778px;}
.y207{bottom:1014.565773px;}
.y171{bottom:1022.406273px;}
.ydc{bottom:1022.415274px;}
.y206{bottom:1027.312023px;}
.y102{bottom:1028.601274px;}
.y1bd{bottom:1028.794775px;}
.y17d{bottom:1028.797776px;}
.y79{bottom:1028.799277px;}
.y24a{bottom:1030.296276px;}
.ydb{bottom:1039.846774px;}
.y205{bottom:1040.058273px;}
.y65{bottom:1041.583906px;}
.y17c{bottom:1043.796276px;}
.y78{bottom:1043.797776px;}
.y5e{bottom:1044.280569px;}
.y6c{bottom:1045.762814px;}
.y101{bottom:1046.041774px;}
.y249{bottom:1052.044775px;}
.y204{bottom:1052.804524px;}
.yda{bottom:1057.287274px;}
.y17b{bottom:1058.794775px;}
.y77{bottom:1058.796276px;}
.y64{bottom:1059.740690px;}
.y100{bottom:1063.482274px;}
.y203{bottom:1065.550774px;}
.y5d{bottom:1069.272034px;}
.y6b{bottom:1071.651764px;}
.y248{bottom:1073.793274px;}
.y76{bottom:1073.794775px;}
.yd9{bottom:1074.727774px;}
.y63{bottom:1077.604065px;}
.y202{bottom:1078.297024px;}
.yff{bottom:1080.922774px;}
.y75{bottom:1088.793274px;}
.y201{bottom:1091.043274px;}
.yd8{bottom:1092.168274px;}
.y30{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hb{height:23.842749px;}
.h22{height:35.394000px;}
.hd{height:36.681152px;}
.h8{height:38.838867px;}
.h12{height:39.859745px;}
.hc{height:41.158746px;}
.h17{height:41.538000px;}
.h1b{height:41.550000px;}
.h1d{height:41.556000px;}
.h19{height:41.562001px;}
.h18{height:41.574001px;}
.h1e{height:41.586002px;}
.h1f{height:41.610186px;}
.h21{height:41.634003px;}
.h16{height:43.008000px;}
.h2{height:43.140000px;}
.h15{height:43.154297px;}
.h20{height:43.344000px;}
.h4{height:44.218500px;}
.h25{height:44.505000px;}
.h24{height:45.090000px;}
.h3{height:45.744000px;}
.h23{height:46.080000px;}
.hf{height:47.469727px;}
.h6{height:48.450256px;}
.h7{height:48.450259px;}
.h10{height:49.430634px;}
.h11{height:50.259081px;}
.h9{height:51.840000px;}
.ha{height:53.406000px;}
.h14{height:54.108000px;}
.h13{height:55.296000px;}
.h1a{height:64.050000px;}
.he{height:71.928000px;}
.h1c{height:87.989999px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:140.952747px;}
.x4{left:233.456406px;}
.x17{left:238.142232px;}
.x9{left:245.658440px;}
.x5{left:251.462271px;}
.x7{left:259.942795px;}
.x8{left:290.888719px;}
.x1c{left:300.594749px;}
.xb{left:431.949858px;}
.xc{left:440.286098px;}
.xa{left:441.476990px;}
.x18{left:485.643906px;}
.x19{left:570.021903px;}
.x3{left:584.586594px;}
.x1a{left:675.021903px;}
.xd{left:691.755020px;}
.xe{left:725.669543px;}
.x14{left:732.823517px;}
.xf{left:737.584488px;}
.x12{left:741.156294px;}
.x11{left:746.809479px;}
.x10{left:753.353179px;}
.x15{left:756.038533px;}
.x13{left:757.513572px;}
.x1b{left:816.003571px;}
.x16{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v2{vertical-align:-9.706764pt;}
.v8{vertical-align:-7.445137pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.466471pt;}
.v6{vertical-align:9.600016pt;}
.v7{vertical-align:12.725361pt;}
.v3{vertical-align:16.277315pt;}
.v1{vertical-align:18.133301pt;}
.v9{vertical-align:20.010667pt;}
.vb{vertical-align:39.983999pt;}
.ls8e{letter-spacing:-3.584000pt;}
.lsbc{letter-spacing:-2.920000pt;}
.lsa2{letter-spacing:-2.800000pt;}
.lsb2{letter-spacing:-2.360000pt;}
.lsb4{letter-spacing:-2.160000pt;}
.ls3b{letter-spacing:-2.086458pt;}
.ls3e{letter-spacing:-1.595526pt;}
.lsa3{letter-spacing:-1.560000pt;}
.ls68{letter-spacing:-1.536000pt;}
.ls3a{letter-spacing:-1.472794pt;}
.ls99{letter-spacing:-1.440000pt;}
.ls33{letter-spacing:-1.350061pt;}
.lsb1{letter-spacing:-1.200000pt;}
.ls16{letter-spacing:-1.120000pt;}
.ls39{letter-spacing:-0.973376pt;}
.lsbf{letter-spacing:-0.920000pt;}
.ls3f{letter-spacing:-0.876038pt;}
.ls29{letter-spacing:-0.864000pt;}
.ls9a{letter-spacing:-0.720000pt;}
.lsad{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.632694pt;}
.ls98{letter-spacing:-0.624000pt;}
.ls6a{letter-spacing:-0.576000pt;}
.lsb0{letter-spacing:-0.560000pt;}
.lsb6{letter-spacing:-0.520000pt;}
.lsa7{letter-spacing:-0.440000pt;}
.ls83{letter-spacing:-0.432000pt;}
.lsaa{letter-spacing:-0.400000pt;}
.lsbd{letter-spacing:-0.360000pt;}
.lsa8{letter-spacing:-0.320000pt;}
.ls81{letter-spacing:-0.298667pt;}
.ls35{letter-spacing:-0.292013pt;}
.ls1e{letter-spacing:-0.288000pt;}
.lsae{letter-spacing:-0.280000pt;}
.ls34{letter-spacing:-0.245466pt;}
.lsbb{letter-spacing:-0.240000pt;}
.lsac{letter-spacing:-0.200000pt;}
.ls36{letter-spacing:-0.194675pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls82{letter-spacing:-0.186667pt;}
.ls32{letter-spacing:-0.184099pt;}
.ls4f{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.124800pt;}
.ls3c{letter-spacing:-0.122733pt;}
.lsaf{letter-spacing:-0.120000pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls50{letter-spacing:-0.093600pt;}
.lsb5{letter-spacing:-0.080000pt;}
.ls4c{letter-spacing:-0.062400pt;}
.ls4d{letter-spacing:-0.053333pt;}
.ls2c{letter-spacing:-0.048000pt;}
.lsa5{letter-spacing:-0.040000pt;}
.ls2d{letter-spacing:-0.031200pt;}
.ls15{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.000005pt;}
.ls63{letter-spacing:0.000030pt;}
.ls46{letter-spacing:0.000074pt;}
.ls7c{letter-spacing:0.000394pt;}
.ls78{letter-spacing:0.003720pt;}
.ls76{letter-spacing:0.003809pt;}
.ls4{letter-spacing:0.010888pt;}
.ls3{letter-spacing:0.011591pt;}
.ls2{letter-spacing:0.012242pt;}
.ls79{letter-spacing:0.012851pt;}
.ls67{letter-spacing:0.018724pt;}
.ls7e{letter-spacing:0.019212pt;}
.ls45{letter-spacing:0.020753pt;}
.ls66{letter-spacing:0.022470pt;}
.ls80{letter-spacing:0.031200pt;}
.lsa4{letter-spacing:0.040000pt;}
.ls7d{letter-spacing:0.043205pt;}
.ls24{letter-spacing:0.048000pt;}
.ls2e{letter-spacing:0.053333pt;}
.ls5d{letter-spacing:0.060784pt;}
.ls96{letter-spacing:0.062378pt;}
.ls6d{letter-spacing:0.062399pt;}
.ls93{letter-spacing:0.062400pt;}
.ls6c{letter-spacing:0.062401pt;}
.ls14{letter-spacing:0.066542pt;}
.lsb7{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.088616pt;}
.ls2b{letter-spacing:0.093600pt;}
.ls86{letter-spacing:0.093602pt;}
.ls56{letter-spacing:0.095999pt;}
.ls27{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.106667pt;}
.ls7a{letter-spacing:0.109390pt;}
.lsa1{letter-spacing:0.120000pt;}
.ls30{letter-spacing:0.124800pt;}
.ls7b{letter-spacing:0.135961pt;}
.ls1f{letter-spacing:0.136000pt;}
.ls22{letter-spacing:0.137621pt;}
.ls4b{letter-spacing:0.139210pt;}
.ls1b{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.147698pt;}
.ls53{letter-spacing:0.153598pt;}
.ls8c{letter-spacing:0.155998pt;}
.ls51{letter-spacing:0.156000pt;}
.ls91{letter-spacing:0.156001pt;}
.ls9b{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.163210pt;}
.ls69{letter-spacing:0.169867pt;}
.ls8f{letter-spacing:0.186667pt;}
.ls8d{letter-spacing:0.187200pt;}
.ls8a{letter-spacing:0.191987pt;}
.ls8{letter-spacing:0.192000pt;}
.lsa6{letter-spacing:0.200000pt;}
.ls6b{letter-spacing:0.218400pt;}
.ls54{letter-spacing:0.220789pt;}
.ls95{letter-spacing:0.220811pt;}
.lse{letter-spacing:0.240000pt;}
.ls5e{letter-spacing:0.244803pt;}
.ls85{letter-spacing:0.249600pt;}
.ls10{letter-spacing:0.263320pt;}
.ls49{letter-spacing:0.268141pt;}
.lsab{letter-spacing:0.280000pt;}
.ls23{letter-spacing:0.280800pt;}
.ls92{letter-spacing:0.280802pt;}
.ls89{letter-spacing:0.287999pt;}
.ls31{letter-spacing:0.288000pt;}
.ls5b{letter-spacing:0.288001pt;}
.ls6{letter-spacing:0.302995pt;}
.ls55{letter-spacing:0.307217pt;}
.ls5a{letter-spacing:0.310296pt;}
.ls58{letter-spacing:0.310459pt;}
.ls94{letter-spacing:0.311962pt;}
.ls5{letter-spacing:0.312000pt;}
.lsbe{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.331211pt;}
.ls48{letter-spacing:0.331780pt;}
.lsd{letter-spacing:0.336000pt;}
.ls60{letter-spacing:0.336005pt;}
.ls21{letter-spacing:0.343198pt;}
.ls2a{letter-spacing:0.343200pt;}
.ls41{letter-spacing:0.360000pt;}
.ls47{letter-spacing:0.373333pt;}
.ls90{letter-spacing:0.374400pt;}
.ls42{letter-spacing:0.383999pt;}
.ls19{letter-spacing:0.384000pt;}
.ls9c{letter-spacing:0.387934pt;}
.ls97{letter-spacing:0.390000pt;}
.ls9e{letter-spacing:0.400000pt;}
.lsb{letter-spacing:0.405600pt;}
.ls8b{letter-spacing:0.407990pt;}
.ls11{letter-spacing:0.408000pt;}
.ls5c{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.432000pt;}
.ls28{letter-spacing:0.438019pt;}
.ls9d{letter-spacing:0.439999pt;}
.ls13{letter-spacing:0.440403pt;}
.ls5f{letter-spacing:0.479999pt;}
.ls7{letter-spacing:0.480000pt;}
.ls59{letter-spacing:0.518395pt;}
.ls43{letter-spacing:0.527999pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls40{letter-spacing:0.533333pt;}
.ls87{letter-spacing:0.552000pt;}
.ls9f{letter-spacing:0.560000pt;}
.ls57{letter-spacing:0.561590pt;}
.ls84{letter-spacing:0.576000pt;}
.lsb3{letter-spacing:0.600000pt;}
.lsc{letter-spacing:0.624000pt;}
.lsc0{letter-spacing:0.640000pt;}
.ls52{letter-spacing:0.672000pt;}
.ls12{letter-spacing:0.680000pt;}
.ls17{letter-spacing:0.720000pt;}
.ls4e{letter-spacing:0.768000pt;}
.ls88{letter-spacing:0.816000pt;}
.ls37{letter-spacing:0.827370pt;}
.ls44{letter-spacing:0.830395pt;}
.lsb9{letter-spacing:0.840000pt;}
.lsc1{letter-spacing:0.864000pt;}
.lsa9{letter-spacing:0.880000pt;}
.lsb8{letter-spacing:0.920000pt;}
.ls3d{letter-spacing:1.216720pt;}
.lsa0{letter-spacing:1.239999pt;}
.ls0{letter-spacing:2.304000pt;}
.ls20{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsba{letter-spacing:5.440000pt;}
.ls71{letter-spacing:122.602667pt;}
.ls74{letter-spacing:176.362667pt;}
.ls6e{letter-spacing:223.104000pt;}
.ls6f{letter-spacing:249.536000pt;}
.ls62{letter-spacing:321.477353pt;}
.ls65{letter-spacing:458.117349pt;}
.ls64{letter-spacing:471.967991pt;}
.ls61{letter-spacing:496.458669pt;}
.ls72{letter-spacing:571.330384pt;}
.ls77{letter-spacing:588.092813pt;}
.ls75{letter-spacing:649.674702pt;}
.ls73{letter-spacing:663.525308pt;}
.ls70{letter-spacing:688.015985pt;}
.ws24{word-spacing:-15.709798pt;}
.ws29{word-spacing:-15.587065pt;}
.ws2e{word-spacing:-15.464333pt;}
.ws2a{word-spacing:-14.973401pt;}
.ws2b{word-spacing:-14.746646pt;}
.ws26{word-spacing:-14.357295pt;}
.ws2c{word-spacing:-13.967945pt;}
.ws1{word-spacing:-13.393333pt;}
.ws27{word-spacing:-13.335251pt;}
.ws25{word-spacing:-13.237913pt;}
.ws1b{word-spacing:-13.066667pt;}
.ws28{word-spacing:-12.897231pt;}
.ws2d{word-spacing:-12.556550pt;}
.ws4b{word-spacing:-12.085333pt;}
.ws1e{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.424000pt;}
.ws9b{word-spacing:-11.184000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws20{word-spacing:-10.896000pt;}
.ws4e{word-spacing:-10.848000pt;}
.ws23{word-spacing:-10.752000pt;}
.ws4c{word-spacing:-10.704000pt;}
.wseb{word-spacing:-10.416000pt;}
.wsad{word-spacing:-10.272000pt;}
.wsb0{word-spacing:-10.176000pt;}
.ws7{word-spacing:-9.202667pt;}
.wsd5{word-spacing:-9.200000pt;}
.wsba{word-spacing:-9.160000pt;}
.wsbb{word-spacing:-9.080000pt;}
.wscb{word-spacing:-9.000000pt;}
.wsb8{word-spacing:-8.880000pt;}
.wsb7{word-spacing:-8.840000pt;}
.wsd8{word-spacing:-8.760000pt;}
.wsd9{word-spacing:-8.720000pt;}
.wsb6{word-spacing:-8.640000pt;}
.wsd0{word-spacing:-8.600000pt;}
.wsce{word-spacing:-8.480000pt;}
.ws65{word-spacing:-8.474667pt;}
.wsc8{word-spacing:-8.400000pt;}
.ws9f{word-spacing:-8.101333pt;}
.wsb9{word-spacing:-7.960000pt;}
.wsb5{word-spacing:-7.600000pt;}
.ws5{word-spacing:-7.488000pt;}
.wsac{word-spacing:-7.456800pt;}
.ws1c{word-spacing:-7.425600pt;}
.ws22{word-spacing:-7.394400pt;}
.wsae{word-spacing:-7.363200pt;}
.ws96{word-spacing:-7.332000pt;}
.ws67{word-spacing:-7.300800pt;}
.ws9c{word-spacing:-7.269600pt;}
.ws4f{word-spacing:-7.238400pt;}
.ws21{word-spacing:-7.207200pt;}
.ws1d{word-spacing:-7.176000pt;}
.wsaf{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws75{word-spacing:-7.113600pt;}
.ws3{word-spacing:-7.082400pt;}
.ws1f{word-spacing:-7.051200pt;}
.ws4a{word-spacing:-7.020000pt;}
.ws4d{word-spacing:-6.988800pt;}
.ws6{word-spacing:-6.957600pt;}
.ws66{word-spacing:-5.678400pt;}
.ws61{word-spacing:-5.508534pt;}
.wsda{word-spacing:-5.440000pt;}
.ws55{word-spacing:-4.992000pt;}
.ws6a{word-spacing:-4.896000pt;}
.ws74{word-spacing:-4.320000pt;}
.ws73{word-spacing:-3.808000pt;}
.ws19{word-spacing:-3.581333pt;}
.ws71{word-spacing:-3.434667pt;}
.ws34{word-spacing:-1.824000pt;}
.ws15{word-spacing:-1.728000pt;}
.ws3b{word-spacing:-1.680000pt;}
.wsd{word-spacing:-1.632000pt;}
.ws53{word-spacing:-1.584000pt;}
.ws43{word-spacing:-1.536000pt;}
.ws5a{word-spacing:-1.488000pt;}
.ws97{word-spacing:-1.440000pt;}
.wsc3{word-spacing:-1.400000pt;}
.ws60{word-spacing:-1.392000pt;}
.wsc2{word-spacing:-1.360000pt;}
.ws33{word-spacing:-1.344000pt;}
.wsa8{word-spacing:-1.296000pt;}
.ws5d{word-spacing:-1.248000pt;}
.ws92{word-spacing:-1.200000pt;}
.wsb1{word-spacing:-1.152000pt;}
.wsbd{word-spacing:-1.133333pt;}
.wsf{word-spacing:-1.104000pt;}
.ws3d{word-spacing:-1.056000pt;}
.wsab{word-spacing:-1.045333pt;}
.ws59{word-spacing:-1.008000pt;}
.wse3{word-spacing:-1.000000pt;}
.ws5f{word-spacing:-0.960000pt;}
.wsbe{word-spacing:-0.920000pt;}
.ws3a{word-spacing:-0.912000pt;}
.ws72{word-spacing:-0.858667pt;}
.ws9{word-spacing:-0.853333pt;}
.ws70{word-spacing:-0.821333pt;}
.ws36{word-spacing:-0.816000pt;}
.wsc6{word-spacing:-0.800000pt;}
.ws6f{word-spacing:-0.768000pt;}
.wsde{word-spacing:-0.760000pt;}
.ws5e{word-spacing:-0.672000pt;}
.ws94{word-spacing:-0.634667pt;}
.ws3c{word-spacing:-0.624000pt;}
.wsc9{word-spacing:-0.600000pt;}
.wsb{word-spacing:-0.576000pt;}
.wse2{word-spacing:-0.560000pt;}
.ws95{word-spacing:-0.558133pt;}
.ws51{word-spacing:-0.533333pt;}
.ws10{word-spacing:-0.528000pt;}
.wsc5{word-spacing:-0.520000pt;}
.ws2f{word-spacing:-0.486688pt;}
.ws35{word-spacing:-0.480000pt;}
.ws1a{word-spacing:-0.453333pt;}
.wsc0{word-spacing:-0.440000pt;}
.ws46{word-spacing:-0.438019pt;}
.ws41{word-spacing:-0.432000pt;}
.ws6d{word-spacing:-0.426667pt;}
.wsb4{word-spacing:-0.405600pt;}
.wsd4{word-spacing:-0.400000pt;}
.ws6e{word-spacing:-0.384000pt;}
.ws5b{word-spacing:-0.373333pt;}
.wsca{word-spacing:-0.360000pt;}
.ws39{word-spacing:-0.343200pt;}
.ws52{word-spacing:-0.336000pt;}
.wsdc{word-spacing:-0.320000pt;}
.ws40{word-spacing:-0.312000pt;}
.ws6b{word-spacing:-0.288000pt;}
.wsc7{word-spacing:-0.280000pt;}
.ws17{word-spacing:-0.272000pt;}
.wsb3{word-spacing:-0.249600pt;}
.ws54{word-spacing:-0.240000pt;}
.wsd1{word-spacing:-0.200000pt;}
.ws11{word-spacing:-0.192000pt;}
.wsb2{word-spacing:-0.187200pt;}
.wsaa{word-spacing:-0.156000pt;}
.ws50{word-spacing:-0.144000pt;}
.wsa6{word-spacing:-0.124800pt;}
.ws42{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.096000pt;}
.wse4{word-spacing:-0.080000pt;}
.ws3f{word-spacing:-0.053333pt;}
.ws68{word-spacing:-0.048000pt;}
.wsdf{word-spacing:-0.040000pt;}
.ws7a{word-spacing:-0.037333pt;}
.ws91{word-spacing:-0.031200pt;}
.ws8{word-spacing:0.000000pt;}
.ws37{word-spacing:0.048000pt;}
.ws56{word-spacing:0.053333pt;}
.wsbc{word-spacing:0.062400pt;}
.wscd{word-spacing:0.080000pt;}
.ws98{word-spacing:0.093600pt;}
.wse{word-spacing:0.096000pt;}
.wsdb{word-spacing:0.120000pt;}
.ws49{word-spacing:0.122733pt;}
.ws16{word-spacing:0.136000pt;}
.ws12{word-spacing:0.144000pt;}
.ws30{word-spacing:0.146006pt;}
.ws58{word-spacing:0.160000pt;}
.ws44{word-spacing:0.184099pt;}
.ws3e{word-spacing:0.192000pt;}
.ws47{word-spacing:0.194675pt;}
.wse7{word-spacing:0.200000pt;}
.ws38{word-spacing:0.240000pt;}
.ws45{word-spacing:0.245466pt;}
.ws6c{word-spacing:0.288000pt;}
.ws93{word-spacing:0.298667pt;}
.ws99{word-spacing:0.336000pt;}
.wse5{word-spacing:0.360000pt;}
.ws5c{word-spacing:0.384000pt;}
.ws9a{word-spacing:0.432000pt;}
.wscc{word-spacing:0.520000pt;}
.ws13{word-spacing:0.528000pt;}
.wsd2{word-spacing:0.560000pt;}
.wsea{word-spacing:0.576000pt;}
.wsc{word-spacing:0.624000pt;}
.wscf{word-spacing:0.640000pt;}
.ws69{word-spacing:0.672000pt;}
.wsc1{word-spacing:0.680000pt;}
.wsa7{word-spacing:0.720000pt;}
.ws18{word-spacing:0.816000pt;}
.ws32{word-spacing:0.827370pt;}
.ws57{word-spacing:0.912000pt;}
.wse6{word-spacing:0.920000pt;}
.ws31{word-spacing:0.924707pt;}
.wsa9{word-spacing:0.960000pt;}
.ws48{word-spacing:0.973376pt;}
.wsec{word-spacing:1.056000pt;}
.wsd6{word-spacing:1.080000pt;}
.wsed{word-spacing:1.104000pt;}
.wsa{word-spacing:1.120000pt;}
.wse9{word-spacing:1.160000pt;}
.wse8{word-spacing:1.200000pt;}
.wsc4{word-spacing:1.320000pt;}
.wse0{word-spacing:1.360000pt;}
.wsdd{word-spacing:1.440000pt;}
.wse1{word-spacing:1.840000pt;}
.wsbf{word-spacing:1.880000pt;}
.wsd3{word-spacing:2.920000pt;}
.wsd7{word-spacing:3.440000pt;}
.ws88{word-spacing:35.681220pt;}
.ws8b{word-spacing:43.307847pt;}
.ws9e{word-spacing:64.773328pt;}
.wsa1{word-spacing:65.109333pt;}
.wsa0{word-spacing:73.695995pt;}
.ws7e{word-spacing:85.978667pt;}
.wsa3{word-spacing:102.741328pt;}
.ws85{word-spacing:122.603258pt;}
.ws86{word-spacing:138.992000pt;}
.ws90{word-spacing:142.128000pt;}
.ws8e{word-spacing:146.794775pt;}
.ws7b{word-spacing:152.917925pt;}
.ws8f{word-spacing:156.912000pt;}
.ws89{word-spacing:157.658667pt;}
.ws84{word-spacing:175.578667pt;}
.ws7c{word-spacing:185.733333pt;}
.ws80{word-spacing:188.010861pt;}
.ws81{word-spacing:195.029527pt;}
.ws78{word-spacing:204.400000pt;}
.ws8d{word-spacing:210.672000pt;}
.ws8c{word-spacing:226.836870pt;}
.ws7f{word-spacing:229.338667pt;}
.ws77{word-spacing:230.832000pt;}
.ws7d{word-spacing:246.183435pt;}
.ws76{word-spacing:273.093333pt;}
.ws62{word-spacing:292.133346pt;}
.ws64{word-spacing:396.069349pt;}
.ws63{word-spacing:409.919991pt;}
.ws83{word-spacing:499.967992pt;}
.ws82{word-spacing:501.349350pt;}
.ws8a{word-spacing:587.626702pt;}
.ws87{word-spacing:601.477308pt;}
.ws79{word-spacing:711.241035pt;}
.wsa5{word-spacing:836.755720pt;}
.wsa2{word-spacing:841.758387pt;}
.ws9d{word-spacing:882.115720pt;}
.wsa4{word-spacing:936.917320pt;}
._50{margin-left:-10.800000pt;}
._54{margin-left:-8.680000pt;}
._4c{margin-left:-7.755934pt;}
._c{margin-left:-6.706806pt;}
._4{margin-left:-5.095908pt;}
._2{margin-left:-4.129623pt;}
._1{margin-left:-2.801067pt;}
._0{margin-left:-1.578682pt;}
._3{width:1.471180pt;}
._7{width:2.640361pt;}
._5{width:3.550438pt;}
._8{width:4.479764pt;}
._d{width:5.583743pt;}
._52{width:6.750682pt;}
._4e{width:7.818682pt;}
._4f{width:8.880000pt;}
._53{width:9.849625pt;}
._4d{width:11.520000pt;}
._9{width:13.583993pt;}
._19{width:14.791906pt;}
._51{width:16.120002pt;}
._b{width:37.274748pt;}
._31{width:38.592849pt;}
._6{width:41.719941pt;}
._a{width:43.471258pt;}
._36{width:60.229243pt;}
._27{width:68.211225pt;}
._47{width:73.008017pt;}
._45{width:102.405333pt;}
._1a{width:104.417253pt;}
._42{width:105.776634pt;}
._41{width:110.885355pt;}
._38{width:114.624982pt;}
._33{width:121.706676pt;}
._49{width:131.450667pt;}
._37{width:133.653333pt;}
._3a{width:140.263417pt;}
._35{width:157.546676pt;}
._20{width:159.927327pt;}
._2d{width:166.954676pt;}
._1c{width:168.197306pt;}
._23{width:175.361625pt;}
._1b{width:177.739927pt;}
._43{width:179.498667pt;}
._39{width:187.413333pt;}
._29{width:193.492122pt;}
._1f{width:194.880009pt;}
._25{width:203.913227pt;}
._24{width:230.869333pt;}
._21{width:233.258667pt;}
._1d{width:241.770667pt;}
._2f{width:260.474615pt;}
._2e{width:266.709333pt;}
._2c{width:268.037332pt;}
._2b{width:277.985449pt;}
._11{width:327.976631pt;}
._13{width:360.378686pt;}
._f{width:414.522702pt;}
._12{width:452.988309pt;}
._15{width:458.613368pt;}
._14{width:473.024035pt;}
._17{width:505.552993pt;}
._18{width:514.688035pt;}
._28{width:516.008031pt;}
._22{width:531.487983pt;}
._2a{width:555.567983pt;}
._26{width:562.426635pt;}
._16{width:566.438941pt;}
._e{width:578.704020pt;}
._1e{width:584.138665pt;}
._4a{width:591.042292pt;}
._10{width:606.330686pt;}
._44{width:612.309381pt;}
._30{width:622.394650pt;}
._32{width:644.545591pt;}
._3c{width:650.170650pt;}
._3b{width:664.581317pt;}
._3e{width:697.116296pt;}
._34{width:698.778650pt;}
._3f{width:706.245317pt;}
._40{width:722.037317pt;}
._48{width:732.927987pt;}
._4b{width:748.358402pt;}
._3d{width:757.998999pt;}
._46{width:796.218669pt;}
.fse{font-size:24.266668pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:48.668798pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:61.366399pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y2e{bottom:60.718132pt;}
.y5c{bottom:60.934668pt;}
.yb2{bottom:60.938665pt;}
.y1bc{bottom:61.152265pt;}
.yd7{bottom:63.156267pt;}
.yfe{bottom:64.270665pt;}
.y139{bottom:69.138939pt;}
.y200{bottom:70.656279pt;}
.y170{bottom:71.817603pt;}
.y2d{bottom:74.051466pt;}
.y5b{bottom:74.267997pt;}
.yb1{bottom:74.270665pt;}
.y1bb{bottom:74.484265pt;}
.yd6{bottom:76.488267pt;}
.yfd{bottom:77.602664pt;}
.y1ff{bottom:81.986279pt;}
.y138{bottom:82.470939pt;}
.y247{bottom:83.829604pt;}
.y16f{bottom:85.152265pt;}
.y2c{bottom:87.384799pt;}
.yb0{bottom:87.602664pt;}
.y5a{bottom:87.603998pt;}
.y1ba{bottom:87.820266pt;}
.yd5{bottom:89.820266pt;}
.yfc{bottom:90.934663pt;}
.y1fe{bottom:93.316279pt;}
.y137{bottom:95.810942pt;}
.y246{bottom:97.161604pt;}
.y16e{bottom:98.484265pt;}
.yaf{bottom:100.934663pt;}
.y59{bottom:100.935997pt;}
.y1b9{bottom:101.152265pt;}
.yd4{bottom:103.152265pt;}
.yfb{bottom:104.267997pt;}
.y2b{bottom:104.566132pt;}
.y1fd{bottom:104.646279pt;}
.y136{bottom:109.142941pt;}
.y245{bottom:110.493603pt;}
.y16d{bottom:111.830938pt;}
.y58{bottom:114.267997pt;}
.yae{bottom:114.274667pt;}
.y1b8{bottom:114.484265pt;}
.y1fc{bottom:115.976279pt;}
.yd3{bottom:116.484265pt;}
.yfa{bottom:117.608000pt;}
.y135{bottom:122.474941pt;}
.y244{bottom:123.825602pt;}
.y16c{bottom:125.162938pt;}
.y1fb{bottom:127.306279pt;}
.y57{bottom:127.599996pt;}
.yad{bottom:127.606666pt;}
.y1b7{bottom:127.818932pt;}
.yd2{bottom:129.818932pt;}
.yf9{bottom:130.940000pt;}
.y134{bottom:135.806940pt;}
.y243{bottom:137.157601pt;}
.y16b{bottom:138.494937pt;}
.y1fa{bottom:138.636280pt;}
.yac{bottom:140.938665pt;}
.y1b6{bottom:141.150931pt;}
.yd1{bottom:143.150931pt;}
.yf8{bottom:144.271999pt;}
.y133{bottom:149.138939pt;}
.y2a{bottom:149.944278pt;}
.y1f9{bottom:149.966280pt;}
.y242{bottom:150.489601pt;}
.y16a{bottom:151.826936pt;}
.y56{bottom:154.125875pt;}
.yab{bottom:154.270665pt;}
.y1b5{bottom:154.492269pt;}
.yd0{bottom:156.482930pt;}
.yf7{bottom:157.603998pt;}
.y1f8{bottom:161.296280pt;}
.y132{bottom:162.470939pt;}
.y29{bottom:163.276277pt;}
.y241{bottom:163.821600pt;}
.y169{bottom:165.158936pt;}
.y55{bottom:167.457874pt;}
.yaa{bottom:167.602664pt;}
.y1b4{bottom:167.824268pt;}
.yf6{bottom:170.935997pt;}
.y1f7{bottom:172.626280pt;}
.y131{bottom:175.806940pt;}
.y28{bottom:176.610944pt;}
.y240{bottom:177.153599pt;}
.y168{bottom:178.490935pt;}
.y54{bottom:180.789873pt;}
.ya9{bottom:180.934663pt;}
.y1b3{bottom:181.156267pt;}
.y1f6{bottom:183.956280pt;}
.yf5{bottom:184.267997pt;}
.ycf{bottom:185.818932pt;}
.y130{bottom:189.138939pt;}
.y27{bottom:189.942944pt;}
.y23f{bottom:190.485599pt;}
.y167{bottom:191.822934pt;}
.y53{bottom:194.121873pt;}
.ya8{bottom:194.271999pt;}
.y1b2{bottom:194.488267pt;}
.y1f5{bottom:195.286280pt;}
.yf4{bottom:197.599996pt;}
.yce{bottom:199.150931pt;}
.y12f{bottom:202.470939pt;}
.y26{bottom:203.277611pt;}
.y23e{bottom:203.817598pt;}
.y166{bottom:205.154933pt;}
.y1f4{bottom:206.616280pt;}
.y52{bottom:207.453872pt;}
.ya7{bottom:207.603998pt;}
.y1b1{bottom:207.820266pt;}
.yf3{bottom:210.933329pt;}
.ycd{bottom:212.493603pt;}
.y12e{bottom:215.804272pt;}
.y25{bottom:216.609610pt;}
.y23d{bottom:217.149597pt;}
.y1f3{bottom:217.946280pt;}
.y165{bottom:218.486933pt;}
.y51{bottom:220.785871pt;}
.ya6{bottom:220.935997pt;}
.y1b0{bottom:221.152265pt;}
.ycc{bottom:225.825602pt;}
.y12d{bottom:229.142941pt;}
.y1f2{bottom:229.276280pt;}
.y24{bottom:229.942944pt;}
.y23c{bottom:230.482930pt;}
.y164{bottom:231.818932pt;}
.y50{bottom:234.117871pt;}
.ya5{bottom:234.267997pt;}
.y1af{bottom:234.484265pt;}
.yf2{bottom:238.485599pt;}
.ycb{bottom:239.157601pt;}
.y1f1{bottom:240.606280pt;}
.y12c{bottom:242.474941pt;}
.y23{bottom:243.277611pt;}
.y163{bottom:245.150931pt;}
.y4f{bottom:247.451204pt;}
.ya4{bottom:247.601330pt;}
.y1ae{bottom:247.821600pt;}
.yf1{bottom:251.817598pt;}
.y1f0{bottom:251.936281pt;}
.yca{bottom:252.489601pt;}
.y23b{bottom:254.486933pt;}
.y12b{bottom:255.806940pt;}
.y22{bottom:256.609610pt;}
.y162{bottom:258.501628pt;}
.y4e{bottom:260.784537pt;}
.ya3{bottom:260.933329pt;}
.y1ad{bottom:261.153599pt;}
.y1ef{bottom:263.266281pt;}
.yf0{bottom:265.149597pt;}
.yc9{bottom:265.821600pt;}
.y23a{bottom:267.818932pt;}
.y12a{bottom:269.138939pt;}
.y21{bottom:269.942944pt;}
.y161{bottom:271.833627pt;}
.y4d{bottom:274.117871pt;}
.y1ac{bottom:274.485599pt;}
.y1ee{bottom:274.596281pt;}
.yc8{bottom:279.153599pt;}
.y239{bottom:281.150931pt;}
.y129{bottom:282.470939pt;}
.y20{bottom:283.278945pt;}
.y160{bottom:285.165626pt;}
.ya2{bottom:285.194807pt;}
.y1ed{bottom:285.926281pt;}
.y4c{bottom:287.449870pt;}
.y1ab{bottom:287.817598pt;}
.yc7{bottom:292.485599pt;}
.y238{bottom:294.482930pt;}
.y128{bottom:295.802938pt;}
.y1f{bottom:296.610944pt;}
.y1ec{bottom:297.256281pt;}
.y15f{bottom:298.497625pt;}
.ya1{bottom:298.526806pt;}
.y1aa{bottom:301.156288pt;}
.yc6{bottom:305.817598pt;}
.y237{bottom:307.816264pt;}
.y1eb{bottom:308.586281pt;}
.y127{bottom:308.984265pt;}
.y1e{bottom:309.942944pt;}
.y15e{bottom:311.829625pt;}
.ya0{bottom:311.861473pt;}
.y4b{bottom:313.971726pt;}
.y1a9{bottom:314.488287pt;}
.yc5{bottom:319.173630pt;}
.y1ea{bottom:319.916281pt;}
.y126{bottom:322.317598pt;}
.y1d{bottom:323.276277pt;}
.y15d{bottom:325.161624pt;}
.y9f{bottom:325.193473pt;}
.y4a{bottom:327.303725pt;}
.y1a8{bottom:327.820286pt;}
.y1e9{bottom:331.246281pt;}
.yc4{bottom:332.505630pt;}
.y125{bottom:335.650952pt;}
.y1c{bottom:336.610944pt;}
.y236{bottom:337.157622pt;}
.y15c{bottom:338.493623pt;}
.y9e{bottom:338.526806pt;}
.y49{bottom:340.635725pt;}
.y1a7{bottom:341.152286pt;}
.y1e8{bottom:342.576281pt;}
.yc3{bottom:345.837629pt;}
.y124{bottom:348.985619pt;}
.y13f{bottom:349.376398pt;}
.y1b{bottom:349.942944pt;}
.y235{bottom:350.489621pt;}
.y15b{bottom:351.825623pt;}
.y9d{bottom:351.858805pt;}
.y1e7{bottom:353.906281pt;}
.y48{bottom:353.967724pt;}
.y1a6{bottom:354.484285pt;}
.yc2{bottom:359.169628pt;}
.y123{bottom:362.317618pt;}
.y13e{bottom:362.708397pt;}
.y1a{bottom:363.285611pt;}
.y234{bottom:363.821620pt;}
.y15a{bottom:365.157622pt;}
.y9c{bottom:365.192139pt;}
.y1e6{bottom:365.236282pt;}
.y47{bottom:367.306394pt;}
.y1a5{bottom:367.817618pt;}
.yc1{bottom:372.501628pt;}
.y122{bottom:375.650952pt;}
.y13d{bottom:376.040397pt;}
.y1e5{bottom:376.566282pt;}
.y19{bottom:376.617610pt;}
.y233{bottom:377.153620pt;}
.y159{bottom:378.489621pt;}
.y46{bottom:380.638393pt;}
.y1a4{bottom:381.152286pt;}
.yc0{bottom:385.833627pt;}
.y1e4{bottom:387.896282pt;}
.y121{bottom:388.984285pt;}
.y13c{bottom:389.372396pt;}
.y9b{bottom:389.452262pt;}
.y18{bottom:389.949610pt;}
.y232{bottom:390.485619pt;}
.y158{bottom:391.821620pt;}
.y45{bottom:393.970392pt;}
.y1a3{bottom:394.484285pt;}
.ybf{bottom:399.165626pt;}
.y1e3{bottom:399.226282pt;}
.y120{bottom:402.317618pt;}
.y9a{bottom:402.786929pt;}
.y231{bottom:403.817618pt;}
.y157{bottom:405.153620pt;}
.y44{bottom:407.302391pt;}
.y1a2{bottom:407.818952pt;}
.y1e2{bottom:410.556282pt;}
.ybe{bottom:412.497625pt;}
.y11f{bottom:415.652286pt;}
.y99{bottom:416.118928pt;}
.y230{bottom:417.149618pt;}
.y156{bottom:418.485619pt;}
.y43{bottom:420.634391pt;}
.y1a1{bottom:421.150952pt;}
.y1e1{bottom:421.886282pt;}
.ybd{bottom:425.829625pt;}
.y11e{bottom:428.984285pt;}
.y98{bottom:429.450928pt;}
.y22f{bottom:430.482951pt;}
.y155{bottom:431.817618pt;}
.y17{bottom:431.949610pt;}
.y1e0{bottom:433.216282pt;}
.y42{bottom:433.970392pt;}
.y1a0{bottom:434.484285pt;}
.ybc{bottom:439.161624pt;}
.y11d{bottom:442.318952pt;}
.y97{bottom:442.784261pt;}
.y1df{bottom:444.546282pt;}
.y154{bottom:445.153620pt;}
.y16{bottom:446.613610pt;}
.y41{bottom:447.302391pt;}
.y19f{bottom:447.818952pt;}
.ybb{bottom:452.493623pt;}
.y11c{bottom:455.650952pt;}
.y1de{bottom:455.876282pt;}
.y153{bottom:458.485619pt;}
.y22e{bottom:459.966239pt;}
.y40{bottom:460.634391pt;}
.y19e{bottom:461.150952pt;}
.y15{bottom:461.277610pt;}
.yba{bottom:465.825623pt;}
.y96{bottom:467.049720pt;}
.y1dd{bottom:467.206282pt;}
.y11b{bottom:468.982951pt;}
.y22d{bottom:471.296239pt;}
.y152{bottom:471.817618pt;}
.y3f{bottom:473.966390pt;}
.y19d{bottom:474.486953pt;}
.y14{bottom:475.968276pt;}
.y1dc{bottom:478.536283pt;}
.yb9{bottom:479.157622pt;}
.y95{bottom:480.381720pt;}
.y22c{bottom:482.626239pt;}
.y151{bottom:485.153620pt;}
.y3e{bottom:487.299723pt;}
.y19c{bottom:487.818952pt;}
.y1db{bottom:489.866283pt;}
.y13{bottom:490.632276pt;}
.yb8{bottom:492.489621pt;}
.y94{bottom:493.713719pt;}
.y22b{bottom:493.956239pt;}
.y11a{bottom:495.813617pt;}
.y150{bottom:498.485619pt;}
.y19b{bottom:501.150952pt;}
.y1da{bottom:501.196283pt;}
.y22a{bottom:505.286239pt;}
.y12{bottom:505.296276pt;}
.yb7{bottom:505.821620pt;}
.y93{bottom:507.045718pt;}
.y119{bottom:511.313617pt;}
.y14f{bottom:511.817618pt;}
.y1d9{bottom:512.526283pt;}
.y3d{bottom:513.820286pt;}
.y19a{bottom:514.486953pt;}
.y229{bottom:516.616239pt;}
.yb6{bottom:519.153620pt;}
.y11{bottom:519.960276pt;}
.y92{bottom:520.377718pt;}
.y1d8{bottom:523.856283pt;}
.y14e{bottom:525.157622pt;}
.y118{bottom:526.813617pt;}
.y3c{bottom:527.152286pt;}
.y199{bottom:527.818952pt;}
.y228{bottom:527.946240pt;}
.yb5{bottom:532.485619pt;}
.y91{bottom:533.713719pt;}
.y10{bottom:534.624276pt;}
.y1d7{bottom:535.186283pt;}
.y14d{bottom:538.489621pt;}
.y227{bottom:539.276240pt;}
.y3b{bottom:540.484285pt;}
.y198{bottom:541.150952pt;}
.y117{bottom:542.313617pt;}
.yb4{bottom:545.817618pt;}
.y1d6{bottom:546.516283pt;}
.y90{bottom:547.045718pt;}
.yf{bottom:549.288276pt;}
.y226{bottom:550.606240pt;}
.y14c{bottom:551.821620pt;}
.y3a{bottom:553.817618pt;}
.y197{bottom:554.484285pt;}
.y116{bottom:557.813617pt;}
.y1d5{bottom:557.846283pt;}
.yb3{bottom:559.149618pt;}
.y8f{bottom:560.377718pt;}
.y225{bottom:561.936240pt;}
.ye{bottom:563.952276pt;}
.y14b{bottom:565.153620pt;}
.y39{bottom:567.152286pt;}
.y196{bottom:567.820286pt;}
.y1d4{bottom:569.176283pt;}
.y224{bottom:573.266240pt;}
.y115{bottom:573.310951pt;}
.y8e{bottom:573.709717pt;}
.y14a{bottom:578.485619pt;}
.yd{bottom:578.616276pt;}
.y38{bottom:580.484285pt;}
.y1d3{bottom:580.506283pt;}
.y195{bottom:581.152286pt;}
.y223{bottom:584.596240pt;}
.y114{bottom:588.813617pt;}
.y149{bottom:591.817618pt;}
.y1d2{bottom:591.836284pt;}
.yc{bottom:593.280276pt;}
.y37{bottom:593.817618pt;}
.y194{bottom:594.484285pt;}
.y222{bottom:595.926240pt;}
.y8d{bottom:597.985461pt;}
.y1d1{bottom:603.166284pt;}
.y113{bottom:604.313617pt;}
.y148{bottom:605.154954pt;}
.y36{bottom:607.156288pt;}
.y221{bottom:607.256240pt;}
.y193{bottom:607.818952pt;}
.yb{bottom:607.944276pt;}
.y8c{bottom:611.317461pt;}
.y1d0{bottom:614.496284pt;}
.yef{bottom:614.984285pt;}
.y147{bottom:618.486953pt;}
.y220{bottom:618.586240pt;}
.y112{bottom:619.810951pt;}
.y35{bottom:620.488287pt;}
.y192{bottom:621.150952pt;}
.ya{bottom:622.608276pt;}
.y1cf{bottom:625.826284pt;}
.yee{bottom:628.317618pt;}
.y21f{bottom:629.916240pt;}
.y146{bottom:631.818952pt;}
.y34{bottom:633.820286pt;}
.y191{bottom:634.485619pt;}
.y111{bottom:635.313617pt;}
.y1ce{bottom:637.156284pt;}
.y8b{bottom:637.621459pt;}
.y21e{bottom:641.246241pt;}
.yed{bottom:641.650952pt;}
.y145{bottom:645.150952pt;}
.y33{bottom:647.152286pt;}
.y190{bottom:647.817618pt;}
.y1cd{bottom:648.486284pt;}
.y9{bottom:649.274942pt;}
.y110{bottom:650.813617pt;}
.y8a{bottom:650.953459pt;}
.y21d{bottom:652.576241pt;}
.yec{bottom:654.982951pt;}
.y144{bottom:658.488246pt;}
.y1cc{bottom:659.816284pt;}
.y32{bottom:660.484285pt;}
.y18f{bottom:661.150952pt;}
.y21c{bottom:663.906241pt;}
.y89{bottom:664.285458pt;}
.y8{bottom:665.274943pt;}
.y10f{bottom:666.313617pt;}
.y1cb{bottom:671.149618pt;}
.y143{bottom:671.820246pt;}
.y31{bottom:673.816284pt;}
.y18e{bottom:674.485578pt;}
.y21b{bottom:675.236241pt;}
.y88{bottom:677.617457pt;}
.y10e{bottom:681.800243pt;}
.yeb{bottom:681.813577pt;}
.y142{bottom:685.152245pt;}
.y13b{bottom:685.333772pt;}
.y21a{bottom:686.566241pt;}
.y18d{bottom:687.817578pt;}
.y87{bottom:690.949457pt;}
.y7{bottom:694.592232pt;}
.y10d{bottom:697.302910pt;}
.yea{bottom:697.313577pt;}
.y219{bottom:697.896241pt;}
.y141{bottom:698.484244pt;}
.y13a{bottom:698.665771pt;}
.y1ca{bottom:700.488243pt;}
.y18c{bottom:701.156247pt;}
.y218{bottom:709.226241pt;}
.y140{bottom:711.816243pt;}
.y10c{bottom:712.805576pt;}
.ye9{bottom:712.813577pt;}
.y1c9{bottom:713.816243pt;}
.y18b{bottom:714.488246pt;}
.y86{bottom:717.253456pt;}
.y74{bottom:719.143717pt;}
.y217{bottom:720.556241pt;}
.y18a{bottom:727.820246pt;}
.y10b{bottom:728.308243pt;}
.ye8{bottom:728.310910pt;}
.y216{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.y1c8{bottom:738.485578pt;}
.y189{bottom:741.152245pt;}
.y215{bottom:743.216241pt;}
.y85{bottom:743.558788pt;}
.y10a{bottom:743.810910pt;}
.ye7{bottom:743.813577pt;}
.y256{bottom:743.828250pt;}
.y1c7{bottom:751.817578pt;}
.y188{bottom:754.484244pt;}
.y214{bottom:754.546242pt;}
.y84{bottom:756.892122pt;}
.y255{bottom:757.160249pt;}
.ye6{bottom:759.313577pt;}
.y73{bottom:759.737010pt;}
.y17a{bottom:762.317578pt;}
.y1c6{bottom:765.149577pt;}
.y213{bottom:765.876242pt;}
.y187{bottom:767.821580pt;}
.y83{bottom:770.228123pt;}
.y254{bottom:770.492249pt;}
.y5{bottom:774.602901pt;}
.ye5{bottom:774.810910pt;}
.y179{bottom:775.650911pt;}
.y72{bottom:777.196940pt;}
.y212{bottom:777.206242pt;}
.y1c5{bottom:778.482910pt;}
.y186{bottom:781.153579pt;}
.y82{bottom:783.560123pt;}
.y253{bottom:783.824248pt;}
.y211{bottom:788.536242pt;}
.y178{bottom:788.982910pt;}
.ye4{bottom:790.313577pt;}
.y185{bottom:794.485578pt;}
.y81{bottom:796.892122pt;}
.y252{bottom:797.156247pt;}
.y210{bottom:799.866242pt;}
.y109{bottom:805.805576pt;}
.ye3{bottom:805.813577pt;}
.y184{bottom:807.817578pt;}
.y1c4{bottom:807.825582pt;}
.y80{bottom:810.225455pt;}
.y251{bottom:810.488246pt;}
.y20f{bottom:811.196242pt;}
.y71{bottom:812.904753pt;}
.y4{bottom:814.608236pt;}
.y177{bottom:815.810910pt;}
.y6a{bottom:816.081439pt;}
.y183{bottom:821.150911pt;}
.y1c3{bottom:821.157581pt;}
.y108{bottom:821.308243pt;}
.ye2{bottom:821.318909pt;}
.y20e{bottom:822.526242pt;}
.y2f{bottom:823.475179pt;}
.y7f{bottom:823.557454pt;}
.y250{bottom:823.820246pt;}
.y70{bottom:830.364683pt;}
.y176{bottom:831.313577pt;}
.y69{bottom:833.541370pt;}
.y20d{bottom:833.856242pt;}
.y182{bottom:834.488246pt;}
.y1c2{bottom:834.489580pt;}
.y107{bottom:836.810910pt;}
.ye1{bottom:836.821576pt;}
.y24f{bottom:837.152245pt;}
.y62{bottom:841.738198pt;}
.y6f{bottom:842.799561pt;}
.y20c{bottom:845.186242pt;}
.y175{bottom:846.794909pt;}
.y7e{bottom:847.818912pt;}
.y181{bottom:847.820246pt;}
.y1c1{bottom:847.821580pt;}
.y24e{bottom:850.484244pt;}
.y68{bottom:850.733622pt;}
.y106{bottom:852.313577pt;}
.ye0{bottom:852.324243pt;}
.y20b{bottom:856.516242pt;}
.y61{bottom:859.198129pt;}
.y7d{bottom:861.150911pt;}
.y180{bottom:861.152245pt;}
.y1c0{bottom:861.153579pt;}
.y174{bottom:862.297576pt;}
.y24d{bottom:863.816243pt;}
.y105{bottom:867.813577pt;}
.ydf{bottom:867.826910pt;}
.y20a{bottom:867.846243pt;}
.y67{bottom:868.193553pt;}
.y60{bottom:871.633006pt;}
.y7c{bottom:874.484244pt;}
.y1bf{bottom:874.485578pt;}
.y173{bottom:877.800243pt;}
.y209{bottom:879.176243pt;}
.y6e{bottom:880.891132pt;}
.y24c{bottom:883.154913pt;}
.y104{bottom:883.310910pt;}
.yde{bottom:883.320244pt;}
.y66{bottom:885.653483pt;}
.y17f{bottom:887.817578pt;}
.y7b{bottom:887.824248pt;}
.y5f{bottom:889.092936pt;}
.y208{bottom:890.506243pt;}
.y172{bottom:893.302910pt;}
.ydd{bottom:893.310910pt;}
.y6d{bottom:893.326009pt;}
.y24b{bottom:896.486912pt;}
.y103{bottom:898.813577pt;}
.y1be{bottom:901.152245pt;}
.y17e{bottom:901.154913pt;}
.y7a{bottom:901.156247pt;}
.y207{bottom:901.836243pt;}
.y171{bottom:908.805576pt;}
.ydc{bottom:908.813577pt;}
.y206{bottom:913.166243pt;}
.y102{bottom:914.312243pt;}
.y1bd{bottom:914.484244pt;}
.y17d{bottom:914.486912pt;}
.y79{bottom:914.488246pt;}
.y24a{bottom:915.818912pt;}
.ydb{bottom:924.308243pt;}
.y205{bottom:924.496243pt;}
.y65{bottom:925.852361pt;}
.y17c{bottom:927.818912pt;}
.y78{bottom:927.820246pt;}
.y5e{bottom:928.249394pt;}
.y6c{bottom:929.566946pt;}
.y101{bottom:929.814910pt;}
.y249{bottom:935.150911pt;}
.y204{bottom:935.826243pt;}
.yda{bottom:939.810910pt;}
.y17b{bottom:941.150911pt;}
.y77{bottom:941.152245pt;}
.y64{bottom:941.991725pt;}
.y100{bottom:945.317577pt;}
.y203{bottom:947.156243pt;}
.y5d{bottom:950.464030pt;}
.y6b{bottom:952.579346pt;}
.y248{bottom:954.482910pt;}
.y76{bottom:954.484244pt;}
.yd9{bottom:955.313577pt;}
.y63{bottom:957.870280pt;}
.y202{bottom:958.486243pt;}
.yff{bottom:960.820244pt;}
.y75{bottom:967.816243pt;}
.y201{bottom:969.816243pt;}
.yd8{bottom:970.816243pt;}
.y30{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hb{height:21.193555pt;}
.h22{height:31.461333pt;}
.hd{height:32.605469pt;}
.h8{height:34.523438pt;}
.h12{height:35.430885pt;}
.hc{height:36.585552pt;}
.h17{height:36.922667pt;}
.h1b{height:36.933334pt;}
.h1d{height:36.938667pt;}
.h19{height:36.944001pt;}
.h18{height:36.954668pt;}
.h1e{height:36.965335pt;}
.h1f{height:36.986832pt;}
.h21{height:37.008003pt;}
.h16{height:38.229333pt;}
.h2{height:38.346667pt;}
.h15{height:38.359375pt;}
.h20{height:38.528000pt;}
.h4{height:39.305333pt;}
.h25{height:39.560000pt;}
.h24{height:40.080000pt;}
.h3{height:40.661333pt;}
.h23{height:40.960000pt;}
.hf{height:42.195312pt;}
.h6{height:43.066895pt;}
.h7{height:43.066897pt;}
.h10{height:43.938342pt;}
.h11{height:44.674739pt;}
.h9{height:46.080000pt;}
.ha{height:47.472000pt;}
.h14{height:48.096000pt;}
.h13{height:49.152000pt;}
.h1a{height:56.933334pt;}
.he{height:63.936000pt;}
.h1c{height:78.213332pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:125.291331pt;}
.x4{left:207.516805pt;}
.x17{left:211.681984pt;}
.x9{left:218.363057pt;}
.x5{left:223.522019pt;}
.x7{left:231.060262pt;}
.x8{left:258.567750pt;}
.x1c{left:267.195333pt;}
.xb{left:383.955429pt;}
.xc{left:391.365421pt;}
.xa{left:392.423991pt;}
.x18{left:431.683472pt;}
.x19{left:506.686136pt;}
.x3{left:519.632528pt;}
.x1a{left:600.019470pt;}
.xd{left:614.893351pt;}
.xe{left:645.039593pt;}
.x14{left:651.398682pt;}
.xf{left:655.630656pt;}
.x12{left:658.805594pt;}
.x11{left:663.830648pt;}
.x10{left:669.647270pt;}
.x15{left:672.034252pt;}
.x13{left:673.345398pt;}
.x1b{left:725.336507pt;}
.x16{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; }
  