
    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_323fbc12bbd8d9bd86c4db1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_4d3fc8e68cb89966cc7da7bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075195;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_37fc104332bfb98f8da75175.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911621;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_4e88f1a40a1aa41ae33a158c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c59ad1e0cc075cf9b791b282.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_46a511dff04b92016a089cda.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_23418885691887d2ac6b02fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bc28f14e10b44d7af0d3de15.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_5f97d0ea0b33a8eb254dc345.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_f6ed365a723479a0127b70aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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_83d712889b0540f227ba49f5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_689c4350fbe45809f8cd5fd8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.736000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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;}
.m13{transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.140011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140011,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.155166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155166,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.188569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188569,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.189968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189968,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250313,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.256349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256349,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.256351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256351,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.262084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262084,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272400,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:-56.312131px;}
.v6{vertical-align:-40.350499px;}
.v2{vertical-align:-33.120000px;}
.v8{vertical-align:-16.523400px;}
.v4{vertical-align:-9.360000px;}
.va{vertical-align:-4.624200px;}
.vc{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.040000px;}
.v5{vertical-align:14.400000px;}
.vb{vertical-align:29.964600px;}
.v3{vertical-align:33.120000px;}
.v1{vertical-align:36.000000px;}
.v9{vertical-align:90.000600px;}
.ls7a{letter-spacing:-19.368000px;}
.ls50{letter-spacing:-1.512000px;}
.ls8e{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls52{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.720000px;}
.ls60{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.504000px;}
.ls51{letter-spacing:-0.337680px;}
.ls13{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.287280px;}
.ls15{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.072000px;}
.ls53{letter-spacing:0.102240px;}
.ls2{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.180000px;}
.ls88{letter-spacing:0.192960px;}
.ls27{letter-spacing:0.216000px;}
.ls4f{letter-spacing:0.288000px;}
.ls84{letter-spacing:0.289440px;}
.ls67{letter-spacing:0.337680px;}
.ls1{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.385920px;}
.ls22{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.504000px;}
.ls45{letter-spacing:0.648000px;}
.lse{letter-spacing:0.720000px;}
.ls8d{letter-spacing:0.792000px;}
.ls87{letter-spacing:1.080000px;}
.ls47{letter-spacing:1.440000px;}
.ls74{letter-spacing:1.872000px;}
.lsf{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.880000px;}
.ls5b{letter-spacing:3.209699px;}
.ls21{letter-spacing:3.240000px;}
.ls66{letter-spacing:3.243600px;}
.ls68{letter-spacing:3.265920px;}
.ls65{letter-spacing:3.312000px;}
.ls59{letter-spacing:3.384000px;}
.ls25{letter-spacing:3.528000px;}
.ls6d{letter-spacing:3.554640px;}
.ls7{letter-spacing:3.600000px;}
.ls46{letter-spacing:3.645360px;}
.ls20{letter-spacing:3.672000px;}
.ls4d{letter-spacing:3.730320px;}
.ls49{letter-spacing:3.781440px;}
.ls58{letter-spacing:3.869280px;}
.ls26{letter-spacing:3.960000px;}
.ls6{letter-spacing:4.320000px;}
.ls9{letter-spacing:5.040000px;}
.ls62{letter-spacing:5.760000px;}
.ls5{letter-spacing:6.480000px;}
.ls48{letter-spacing:6.660000px;}
.ls7c{letter-spacing:6.676519px;}
.lsd{letter-spacing:7.200000px;}
.ls61{letter-spacing:7.207200px;}
.ls5f{letter-spacing:7.714978px;}
.ls83{letter-spacing:7.838190px;}
.ls10{letter-spacing:7.920000px;}
.ls11{letter-spacing:7.927200px;}
.lsb{letter-spacing:8.640000px;}
.ls7e{letter-spacing:9.304511px;}
.ls89{letter-spacing:10.080000px;}
.ls8{letter-spacing:10.800000px;}
.ls4{letter-spacing:10.807200px;}
.ls8a{letter-spacing:11.520000px;}
.ls3b{letter-spacing:12.095058px;}
.ls33{letter-spacing:12.111072px;}
.ls3{letter-spacing:12.240000px;}
.ls54{letter-spacing:12.960000px;}
.ls23{letter-spacing:13.680000px;}
.ls1c{letter-spacing:15.120000px;}
.ls1e{letter-spacing:15.840000px;}
.ls8c{letter-spacing:16.560000px;}
.ls5a{letter-spacing:17.280000px;}
.ls4a{letter-spacing:18.720000px;}
.ls6e{letter-spacing:19.440000px;}
.ls57{letter-spacing:20.116625px;}
.ls6f{letter-spacing:20.160000px;}
.ls4c{letter-spacing:20.376000px;}
.ls4b{letter-spacing:21.240000px;}
.lsc{letter-spacing:22.320000px;}
.ls6b{letter-spacing:22.969708px;}
.ls6c{letter-spacing:23.012683px;}
.ls1f{letter-spacing:23.040000px;}
.ls80{letter-spacing:23.488632px;}
.ls5c{letter-spacing:23.551686px;}
.ls1b{letter-spacing:28.080000px;}
.ls5d{letter-spacing:29.489963px;}
.ls8b{letter-spacing:33.984000px;}
.ls81{letter-spacing:34.804440px;}
.ls56{letter-spacing:43.059985px;}
.ls3c{letter-spacing:51.154981px;}
.ls34{letter-spacing:51.222710px;}
.ls37{letter-spacing:71.716579px;}
.ls2e{letter-spacing:72.880157px;}
.ls5e{letter-spacing:84.911123px;}
.ls7f{letter-spacing:97.987090px;}
.ls2b{letter-spacing:111.960000px;}
.ls29{letter-spacing:113.256000px;}
.ls2a{letter-spacing:113.688000px;}
.ls64{letter-spacing:114.595839px;}
.ls7d{letter-spacing:115.836466px;}
.ls3f{letter-spacing:139.063603px;}
.ls3a{letter-spacing:141.583326px;}
.ls38{letter-spacing:142.294800px;}
.ls32{letter-spacing:142.340717px;}
.ls30{letter-spacing:143.053133px;}
.ls42{letter-spacing:147.327629px;}
.ls40{letter-spacing:148.040045px;}
.ls44{letter-spacing:148.467494px;}
.ls36{letter-spacing:154.887703px;}
.ls2d{letter-spacing:155.675519px;}
.ls76{letter-spacing:155.677500px;}
.ls35{letter-spacing:156.008273px;}
.ls2c{letter-spacing:156.756022px;}
.ls3e{letter-spacing:160.662455px;}
.ls2f{letter-spacing:161.006016px;}
.ls3d{letter-spacing:161.784515px;}
.ls43{letter-spacing:163.143264px;}
.ls1d{letter-spacing:167.702726px;}
.ls82{letter-spacing:171.289620px;}
.ls63{letter-spacing:171.504000px;}
.ls6a{letter-spacing:197.357969px;}
.ls55{letter-spacing:216.633827px;}
.ls71{letter-spacing:248.085000px;}
.ls39{letter-spacing:306.929884px;}
.ls31{letter-spacing:308.476128px;}
.ls41{letter-spacing:318.449952px;}
.ls70{letter-spacing:350.319079px;}
.ls7b{letter-spacing:467.698458px;}
.ls69{letter-spacing:483.534480px;}
.ls78{letter-spacing:599.544000px;}
.ls75{letter-spacing:1055.592000px;}
.ls79{letter-spacing:1064.088000px;}
.ls73{letter-spacing:1067.616000px;}
.ls77{letter-spacing:1080.793125px;}
.ls72{letter-spacing:1082.832750px;}
.ls85{letter-spacing:1378.800000px;}
.ls86{letter-spacing:1416.240000px;}
.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;}
}
.ws91{word-spacing:-1103.645250px;}
.ws8e{word-spacing:-1093.239000px;}
.wsaa{word-spacing:-1067.616000px;}
.wsad{word-spacing:-1064.088000px;}
.wsab{word-spacing:-1055.592000px;}
.wsac{word-spacing:-599.544000px;}
.wsae{word-spacing:-467.698458px;}
.ws35{word-spacing:-347.587766px;}
.ws64{word-spacing:-318.449952px;}
.ws61{word-spacing:-306.929884px;}
.ws44{word-spacing:-187.073317px;}
.wsb4{word-spacing:-171.289620px;}
.ws45{word-spacing:-169.020696px;}
.ws43{word-spacing:-167.845210px;}
.ws32{word-spacing:-166.064969px;}
.ws36{word-spacing:-164.553848px;}
.ws3d{word-spacing:-164.314920px;}
.ws62{word-spacing:-161.784515px;}
.ws5e{word-spacing:-161.006016px;}
.ws63{word-spacing:-160.662455px;}
.ws90{word-spacing:-158.120888px;}
.ws5d{word-spacing:-156.756022px;}
.ws5f{word-spacing:-156.008273px;}
.ws60{word-spacing:-154.887703px;}
.ws42{word-spacing:-147.292008px;}
.ws34{word-spacing:-143.993522px;}
.ws3c{word-spacing:-143.774666px;}
.ws40{word-spacing:-138.351187px;}
.ws5b{word-spacing:-113.688000px;}
.ws5a{word-spacing:-113.256000px;}
.ws5c{word-spacing:-111.960000px;}
.ws84{word-spacing:-84.911123px;}
.ws9c{word-spacing:-83.655365px;}
.ws9a{word-spacing:-53.323373px;}
.ws80{word-spacing:-33.972786px;}
.wsa1{word-spacing:-33.881832px;}
.wsa2{word-spacing:-29.720403px;}
.ws70{word-spacing:-29.697840px;}
.ws94{word-spacing:-24.530400px;}
.ws93{word-spacing:-22.521600px;}
.ws33{word-spacing:-21.643198px;}
.ws3a{word-spacing:-20.035108px;}
.wsc3{word-spacing:-18.792000px;}
.ws9d{word-spacing:-18.529350px;}
.ws2e{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws9e{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws31{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.496000px;}
.ws2f{word-spacing:-17.280000px;}
.ws6f{word-spacing:-17.208000px;}
.ws6e{word-spacing:-17.064000px;}
.ws30{word-spacing:-12.445920px;}
.wsbd{word-spacing:-12.252960px;}
.ws6{word-spacing:-12.060000px;}
.ws3{word-spacing:-8.017001px;}
.ws2{word-spacing:-7.320124px;}
.ws0{word-spacing:-7.215301px;}
.ws1{word-spacing:-6.413601px;}
.wsaf{word-spacing:-0.720000px;}
.ws65{word-spacing:-0.648000px;}
.wsbe{word-spacing:-0.385920px;}
.wsb5{word-spacing:-0.289440px;}
.ws73{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.191520px;}
.ws15{word-spacing:-0.144000px;}
.ws7d{word-spacing:-0.102240px;}
.ws4a{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws1e{word-spacing:0.072000px;}
.ws29{word-spacing:0.144000px;}
.ws26{word-spacing:0.216000px;}
.wse{word-spacing:0.287280px;}
.ws10{word-spacing:0.288000px;}
.ws78{word-spacing:0.337680px;}
.wsd{word-spacing:0.574560px;}
.ws28{word-spacing:0.576000px;}
.ws24{word-spacing:0.648000px;}
.ws1a{word-spacing:0.720000px;}
.wsc8{word-spacing:0.864000px;}
.wsa4{word-spacing:0.936000px;}
.wsf{word-spacing:1.008000px;}
.ws87{word-spacing:1.296000px;}
.ws3f{word-spacing:1.351801px;}
.ws86{word-spacing:1.440000px;}
.ws7e{word-spacing:1.558997px;}
.ws27{word-spacing:1.656000px;}
.ws76{word-spacing:1.728000px;}
.ws38{word-spacing:1.909275px;}
.ws2b{word-spacing:2.016000px;}
.ws2a{word-spacing:2.160000px;}
.ws68{word-spacing:2.448000px;}
.ws6c{word-spacing:2.736000px;}
.ws69{word-spacing:2.880000px;}
.wsa6{word-spacing:3.096000px;}
.ws6d{word-spacing:3.168000px;}
.ws55{word-spacing:3.456000px;}
.ws74{word-spacing:3.528000px;}
.ws19{word-spacing:3.600000px;}
.ws18{word-spacing:3.888000px;}
.ws85{word-spacing:4.176000px;}
.ws52{word-spacing:4.320000px;}
.ws47{word-spacing:4.608000px;}
.wsa5{word-spacing:4.896000px;}
.ws1f{word-spacing:5.040000px;}
.ws75{word-spacing:5.112000px;}
.ws20{word-spacing:5.328000px;}
.wsa9{word-spacing:5.616000px;}
.ws79{word-spacing:5.760000px;}
.wsa8{word-spacing:6.048000px;}
.ws58{word-spacing:6.336000px;}
.ws16{word-spacing:6.480000px;}
.ws57{word-spacing:6.696000px;}
.ws17{word-spacing:6.768000px;}
.ws25{word-spacing:7.056000px;}
.ws1c{word-spacing:7.200000px;}
.wsc1{word-spacing:7.272000px;}
.ws1d{word-spacing:7.488000px;}
.ws2c{word-spacing:7.920000px;}
.ws2d{word-spacing:8.208000px;}
.wsbf{word-spacing:8.496000px;}
.ws46{word-spacing:8.640000px;}
.ws22{word-spacing:8.856000px;}
.ws21{word-spacing:8.928000px;}
.ws4e{word-spacing:9.216000px;}
.ws4b{word-spacing:9.360000px;}
.wsc0{word-spacing:9.936000px;}
.wsb6{word-spacing:10.080000px;}
.ws4f{word-spacing:10.368000px;}
.ws89{word-spacing:10.728000px;}
.ws1b{word-spacing:10.800000px;}
.ws14{word-spacing:11.088000px;}
.ws48{word-spacing:11.520000px;}
.ws49{word-spacing:11.808000px;}
.ws12{word-spacing:12.096000px;}
.ws83{word-spacing:12.240000px;}
.ws13{word-spacing:12.456000px;}
.ws11{word-spacing:12.528000px;}
.wsbc{word-spacing:12.816000px;}
.ws88{word-spacing:12.960000px;}
.wsb3{word-spacing:13.248000px;}
.ws6a{word-spacing:13.536000px;}
.ws7b{word-spacing:13.680000px;}
.ws6b{word-spacing:13.968000px;}
.ws7a{word-spacing:14.400000px;}
.wsb2{word-spacing:14.688000px;}
.ws8f{word-spacing:14.745600px;}
.ws4d{word-spacing:14.976000px;}
.ws59{word-spacing:15.048000px;}
.ws4c{word-spacing:15.120000px;}
.wsa7{word-spacing:15.408000px;}
.ws54{word-spacing:15.696000px;}
.ws53{word-spacing:15.840000px;}
.ws77{word-spacing:16.128000px;}
.wsb8{word-spacing:16.416000px;}
.wsb9{word-spacing:16.560000px;}
.wsba{word-spacing:16.848000px;}
.ws8a{word-spacing:17.280000px;}
.ws8b{word-spacing:17.568000px;}
.ws72{word-spacing:18.720000px;}
.ws7c{word-spacing:19.008000px;}
.wsb1{word-spacing:19.296000px;}
.wsb7{word-spacing:19.440000px;}
.ws71{word-spacing:19.584000px;}
.wsb0{word-spacing:19.728000px;}
.wsc5{word-spacing:20.016000px;}
.wsc4{word-spacing:20.160000px;}
.ws3b{word-spacing:21.031171px;}
.wsa3{word-spacing:21.817494px;}
.wsc7{word-spacing:21.888000px;}
.ws50{word-spacing:22.320000px;}
.ws51{word-spacing:22.536000px;}
.ws23{word-spacing:22.608000px;}
.ws67{word-spacing:22.896000px;}
.ws66{word-spacing:23.040000px;}
.wsc6{word-spacing:25.200000px;}
.wsbb{word-spacing:25.776000px;}
.ws56{word-spacing:28.080000px;}
.wsc2{word-spacing:28.368000px;}
.ws98{word-spacing:34.163496px;}
.ws99{word-spacing:38.276343px;}
.ws82{word-spacing:49.223544px;}
.ws9b{word-spacing:60.813146px;}
.ws97{word-spacing:89.094865px;}
.ws95{word-spacing:89.095922px;}
.ws8d{word-spacing:90.804937px;}
.wsa0{word-spacing:92.935994px;}
.ws3e{word-spacing:92.975422px;}
.ws37{word-spacing:93.098523px;}
.ws8c{word-spacing:100.322014px;}
.ws39{word-spacing:191.963980px;}
.ws96{word-spacing:225.252011px;}
.ws7f{word-spacing:285.204665px;}
.ws81{word-spacing:285.663291px;}
.ws41{word-spacing:300.568310px;}
.ws92{word-spacing:494.280000px;}
.ws9f{word-spacing:842.526885px;}
._30{margin-left:-144.502965px;}
._51{margin-left:-52.697471px;}
._58{margin-left:-19.364308px;}
._48{margin-left:-6.562876px;}
._42{margin-left:-4.801412px;}
._1{margin-left:-2.581747px;}
._0{margin-left:-1.345231px;}
._2{width:1.024632px;}
._3{width:2.326104px;}
._7{width:3.693439px;}
._8{width:5.328000px;}
._6{width:6.849830px;}
._a{width:8.568000px;}
._b{width:9.968599px;}
._4{width:11.348208px;}
._5{width:12.537830px;}
._c{width:14.380923px;}
._e{width:15.934104px;}
._17{width:18.009876px;}
._2b{width:19.627061px;}
._d{width:21.621490px;}
._9{width:23.006071px;}
._14{width:24.891815px;}
._2d{width:26.587365px;}
._f{width:27.648000px;}
._59{width:28.996635px;}
._39{width:37.504800px;}
._3f{width:44.222400px;}
._24{width:48.913838px;}
._16{width:50.638529px;}
._49{width:56.396820px;}
._2e{width:61.232155px;}
._22{width:63.250039px;}
._2f{width:64.666000px;}
._3b{width:68.464800px;}
._55{width:72.797442px;}
._12{width:77.767331px;}
._38{width:79.596000px;}
._11{width:85.931618px;}
._10{width:87.042987px;}
._35{width:90.000000px;}
._45{width:91.468313px;}
._2c{width:92.728067px;}
._28{width:100.090162px;}
._1c{width:101.334052px;}
._47{width:103.354672px;}
._29{width:107.873688px;}
._1d{width:109.127883px;}
._43{width:111.273318px;}
._23{width:112.628994px;}
._15{width:113.901070px;}
._1e{width:115.810345px;}
._18{width:117.263674px;}
._4b{width:134.588365px;}
._2a{width:141.119670px;}
._1f{width:142.896401px;}
._56{width:144.000000px;}
._25{width:145.240302px;}
._19{width:147.662464px;}
._13{width:149.564615px;}
._3d{width:151.682400px;}
._1b{width:159.303342px;}
._20{width:160.821583px;}
._27{width:162.463576px;}
._32{width:166.320000px;}
._3a{width:174.024000px;}
._26{width:180.628130px;}
._1a{width:183.094912px;}
._41{width:191.798457px;}
._44{width:196.325178px;}
._33{width:198.000000px;}
._4a{width:223.214119px;}
._36{width:226.972800px;}
._54{width:241.445016px;}
._3c{width:250.747200px;}
._46{width:263.462297px;}
._4d{width:266.801544px;}
._4c{width:299.029931px;}
._3e{width:320.414400px;}
._4e{width:368.765848px;}
._37{width:398.059200px;}
._4f{width:418.262620px;}
._53{width:440.952120px;}
._52{width:467.569282px;}
._50{width:586.610341px;}
._34{width:726.171006px;}
._21{width:915.069400px;}
._31{width:954.720000px;}
._40{width:994.245528px;}
._57{width:1460.160000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(56,116,161);}
.fc7{color:rgb(180,180,180);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs23{font-size:24.000000px;}
.fs10{font-size:30.230400px;}
.fs3{font-size:31.804007px;}
.fs0{font-size:35.779508px;}
.fs2{font-size:39.755009px;}
.fs1c{font-size:41.062200px;}
.fse{font-size:41.502600px;}
.fsb{font-size:41.557800px;}
.fs20{font-size:41.572800px;}
.fs16{font-size:41.625000px;}
.fs11{font-size:41.684400px;}
.fs4{font-size:47.706010px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fsa{font-size:59.760000px;}
.fs18{font-size:69.750000px;}
.fs1d{font-size:71.026800px;}
.fsf{font-size:71.147400px;}
.fsc{font-size:71.241600px;}
.fs21{font-size:71.910000px;}
.fs6{font-size:72.000000px;}
.fs12{font-size:72.102600px;}
.fs14{font-size:74.117400px;}
.fs7{font-size:77.760000px;}
.fs1{font-size:79.510017px;}
.fs1b{font-size:93.777600px;}
.fsd{font-size:93.936600px;}
.fs5{font-size:95.760000px;}
.fs1e{font-size:106.540200px;}
.fs22{font-size:107.865000px;}
.fs17{font-size:108.000000px;}
.fs13{font-size:108.154200px;}
.fs1f{font-size:114.419400px;}
.fs19{font-size:125.592000px;}
.fs15{font-size:127.312200px;}
.fs1a{font-size:139.094400px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.212321px;}
.ybd{bottom:2.160000px;}
.yc1{bottom:2.340000px;}
.y125{bottom:2.906250px;}
.yd5{bottom:3.802861px;}
.y9{bottom:3.975507px;}
.yb{bottom:3.975513px;}
.y154{bottom:4.447500px;}
.y11f{bottom:4.468650px;}
.ya5{bottom:4.500000px;}
.y132{bottom:4.532250px;}
.y13d{bottom:4.631100px;}
.y103{bottom:4.632450px;}
.yc2{bottom:5.040000px;}
.y72{bottom:5.235000px;}
.y62{bottom:5.240400px;}
.y78{bottom:5.420400px;}
.y68{bottom:5.425500px;}
.y84{bottom:5.427000px;}
.yda{bottom:5.444569px;}
.yd4{bottom:5.449394px;}
.y11e{bottom:5.872650px;}
.y110{bottom:6.097837px;}
.ybf{bottom:6.300000px;}
.y150{bottom:6.788400px;}
.y14b{bottom:6.788550px;}
.y10f{bottom:6.805462px;}
.y116{bottom:6.806063px;}
.y5b{bottom:6.945900px;}
.y8d{bottom:7.200000px;}
.y1cd{bottom:7.500000px;}
.y14f{bottom:8.427000px;}
.y14a{bottom:8.427150px;}
.yd8{bottom:8.457858px;}
.yca{bottom:9.000000px;}
.ybb{bottom:9.540000px;}
.y134{bottom:9.803850px;}
.y138{bottom:9.804000px;}
.y71{bottom:9.820650px;}
.y77{bottom:9.820800px;}
.y67{bottom:9.831900px;}
.y61{bottom:9.832200px;}
.y81{bottom:9.833250px;}
.y14e{bottom:11.423250px;}
.y113{bottom:11.446650px;}
.y11d{bottom:11.452650px;}
.y153{bottom:15.730350px;}
.y11c{bottom:15.772650px;}
.y6e{bottom:17.787450px;}
.y5e{bottom:17.809950px;}
.y7e{bottom:17.810850px;}
.yd3{bottom:17.892188px;}
.y126{bottom:18.443062px;}
.y120{bottom:19.033050px;}
.y131{bottom:19.098300px;}
.y136{bottom:19.098450px;}
.y6d{bottom:19.130700px;}
.y7d{bottom:19.155900px;}
.y76{bottom:19.594200px;}
.y66{bottom:19.618350px;}
.y83{bottom:19.619700px;}
.y12c{bottom:19.791450px;}
.y12b{bottom:20.485050px;}
.y12e{bottom:20.485200px;}
.y149{bottom:20.833500px;}
.y10e{bottom:20.864306px;}
.y115{bottom:20.864906px;}
.y5a{bottom:21.003900px;}
.y128{bottom:21.135150px;}
.y109{bottom:21.135300px;}
.y13e{bottom:21.140751px;}
.y104{bottom:21.142101px;}
.y155{bottom:21.348300px;}
.y10c{bottom:22.265850px;}
.y12d{bottom:22.381050px;}
.y6b{bottom:22.419300px;}
.y11b{bottom:22.468650px;}
.ydb{bottom:22.532100px;}
.yd7{bottom:22.535891px;}
.y147{bottom:23.174250px;}
.y133{bottom:23.676300px;}
.y70{bottom:23.716500px;}
.y75{bottom:23.716800px;}
.y65{bottom:23.746500px;}
.y60{bottom:23.746650px;}
.y80{bottom:23.747550px;}
.y152{bottom:23.829600px;}
.y11a{bottom:23.872650px;}
.yf{bottom:24.846853px;}
.ya4{bottom:25.200000px;}
.y14d{bottom:25.468200px;}
.y112{bottom:25.504650px;}
.y119{bottom:25.510650px;}
.yd1{bottom:28.024350px;}
.yc9{bottom:28.620000px;}
.yd9{bottom:30.747000px;}
.y130{bottom:31.629750px;}
.y59{bottom:32.343900px;}
.ya8{bottom:33.480000px;}
.yd6{bottom:33.892050px;}
.y6f{bottom:34.925850px;}
.y74{bottom:34.926150px;}
.y64{bottom:34.970850px;}
.y5f{bottom:34.971150px;}
.y7f{bottom:34.971900px;}
.y137{bottom:35.051700px;}
.y73{bottom:35.898750px;}
.y63{bottom:35.944950px;}
.y82{bottom:35.946000px;}
.yc3{bottom:36.720000px;}
.y14c{bottom:36.797700px;}
.y111{bottom:36.844650px;}
.y118{bottom:38.956650px;}
.y139{bottom:39.491100px;}
.y151{bottom:40.308900px;}
.y117{bottom:40.360650px;}
.yd2{bottom:40.839450px;}
.y6c{bottom:42.892800px;}
.y5d{bottom:42.948900px;}
.y7c{bottom:42.949500px;}
.y148{bottom:43.726650px;}
.y12f{bottom:43.976100px;}
.y135{bottom:43.976400px;}
.y10d{bottom:46.078650px;}
.y114{bottom:46.079250px;}
.ye{bottom:47.705982px;}
.yb9{bottom:70.020000px;}
.yc5{bottom:78.840000px;}
.y8b{bottom:92.880000px;}
.yf5{bottom:93.240000px;}
.y1a6{bottom:97.920000px;}
.y18a{bottom:98.460000px;}
.y180{bottom:101.880000px;}
.y39{bottom:108.540000px;}
.y16d{bottom:109.980000px;}
.y8a{bottom:113.580000px;}
.yf4{bottom:113.940000px;}
.y189{bottom:119.160000px;}
.yb7{bottom:124.380000px;}
.y1a5{bottom:127.620000px;}
.y38{bottom:129.240000px;}
.y17f{bottom:131.580000px;}
.y89{bottom:134.280000px;}
.yf3{bottom:134.640000px;}
.y16c{bottom:139.680000px;}
.yb6{bottom:145.080000px;}
.y188{bottom:148.860000px;}
.y37{bottom:149.940000px;}
.y17e{bottom:152.280000px;}
.y88{bottom:154.980000px;}
.yf2{bottom:155.340000px;}
.y1a4{bottom:157.320000px;}
.y15b{bottom:159.840000px;}
.y16b{bottom:165.060000px;}
.yb5{bottom:165.780000px;}
.y187{bottom:169.560000px;}
.y87{bottom:175.680000px;}
.yf1{bottom:176.040000px;}
.y1a3{bottom:178.020000px;}
.y17d{bottom:178.560000px;}
.y36{bottom:179.640000px;}
.y15a{bottom:180.540000px;}
.yb4{bottom:186.480000px;}
.y186{bottom:190.260000px;}
.y86{bottom:196.380000px;}
.y1a2{bottom:198.720000px;}
.y35{bottom:200.340000px;}
.y159{bottom:201.060000px;}
.yf0{bottom:205.740000px;}
.yb3{bottom:207.180000px;}
.y185{bottom:215.640000px;}
.y85{bottom:217.080000px;}
.y1a1{bottom:219.420000px;}
.y34{bottom:221.040000px;}
.y158{bottom:221.760000px;}
.yef{bottom:226.440000px;}
.yb2{bottom:227.880000px;}
.y1cc{bottom:232.920000px;}
.y33{bottom:241.740000px;}
.y7b{bottom:242.340000px;}
.y157{bottom:242.460000px;}
.yee{bottom:247.140000px;}
.yb1{bottom:248.580000px;}
.y1a0{bottom:249.120000px;}
.y1cb{bottom:253.620000px;}
.y32{bottom:262.440000px;}
.y7a{bottom:266.400000px;}
.y146{bottom:267.765000px;}
.yed{bottom:267.840000px;}
.yb0{bottom:269.280000px;}
.y19f{bottom:269.820000px;}
.y1ca{bottom:274.320000px;}
.y31{bottom:283.140000px;}
.yec{bottom:288.540000px;}
.y156{bottom:293.400000px;}
.y1c9{bottom:295.020000px;}
.yaf{bottom:298.620000px;}
.y19e{bottom:299.520000px;}
.y6a{bottom:307.515000px;}
.yeb{bottom:309.240000px;}
.y30{bottom:312.840000px;}
.y1c8{bottom:315.720000px;}
.y19d{bottom:320.220000px;}
.yae{bottom:328.320000px;}
.yea{bottom:329.940000px;}
.y79{bottom:331.560000px;}
.y1c7{bottom:336.420000px;}
.y19c{bottom:340.920000px;}
.y145{bottom:341.280000px;}
.y2f{bottom:342.180000px;}
.ye9{bottom:350.640000px;}
.y1c6{bottom:357.120000px;}
.yad{bottom:358.380000px;}
.y19b{bottom:361.620000px;}
.y144{bottom:361.980000px;}
.ye8{bottom:371.340000px;}
.y2e{bottom:372.240000px;}
.y5c{bottom:372.840000px;}
.y1c5{bottom:377.820000px;}
.y19a{bottom:382.320000px;}
.y143{bottom:382.680000px;}
.yac{bottom:387.720000px;}
.ye7{bottom:392.040000px;}
.y69{bottom:396.900000px;}
.y1c4{bottom:398.520000px;}
.y2d{bottom:401.940000px;}
.y142{bottom:403.380000px;}
.yab{bottom:405.000000px;}
.y199{bottom:412.020000px;}
.ye6{bottom:412.740000px;}
.y1c3{bottom:419.220000px;}
.y141{bottom:424.080000px;}
.yaa{bottom:425.700000px;}
.y2c{bottom:431.280000px;}
.y198{bottom:432.720000px;}
.ye5{bottom:433.440000px;}
.y58{bottom:438.015000px;}
.y1c2{bottom:439.920000px;}
.y140{bottom:444.780000px;}
.ya9{bottom:446.400000px;}
.y57{bottom:459.180000px;}
.y1c1{bottom:460.620000px;}
.y2b{bottom:460.980000px;}
.y197{bottom:462.420000px;}
.ye4{bottom:463.140000px;}
.y13f{bottom:465.480000px;}
.ya3{bottom:468.000000px;}
.ya7{bottom:480.780000px;}
.y1c0{bottom:481.320000px;}
.y13c{bottom:481.591500px;}
.y196{bottom:483.120000px;}
.y13b{bottom:486.180000px;}
.ya6{bottom:490.860000px;}
.y2a{bottom:491.040000px;}
.ye3{bottom:492.840000px;}
.y56{bottom:501.120000px;}
.y1bf{bottom:502.020000px;}
.y195{bottom:503.820000px;}
.y16a{bottom:504.000000px;}
.y29{bottom:511.740000px;}
.y12a{bottom:516.840000px;}
.ye2{bottom:518.220000px;}
.y17c{bottom:518.940000px;}
.y55{bottom:521.820000px;}
.y1be{bottom:522.720000px;}
.ya2{bottom:523.620000px;}
.y194{bottom:524.520000px;}
.y28{bottom:532.260000px;}
.y169{bottom:533.700000px;}
.y13a{bottom:540.900000px;}
.y54{bottom:542.520000px;}
.y1bd{bottom:543.420000px;}
.y17b{bottom:549.000000px;}
.y27{bottom:552.960000px;}
.ya1{bottom:553.320000px;}
.y193{bottom:554.220000px;}
.y168{bottom:554.400000px;}
.y53{bottom:563.220000px;}
.y1bc{bottom:564.120000px;}
.y17a{bottom:569.700000px;}
.y26{bottom:573.660000px;}
.ya0{bottom:574.020000px;}
.y167{bottom:575.100000px;}
.y192{bottom:583.560000px;}
.y1bb{bottom:584.820000px;}
.y129{bottom:585.180000px;}
.y179{bottom:590.400000px;}
.y52{bottom:592.560000px;}
.y25{bottom:594.360000px;}
.y9f{bottom:594.720000px;}
.y166{bottom:595.800000px;}
.y184{bottom:599.400000px;}
.y127{bottom:601.290000px;}
.y124{bottom:602.715000px;}
.y1ba{bottom:605.520000px;}
.y123{bottom:605.880000px;}
.y178{bottom:611.100000px;}
.y191{bottom:613.260000px;}
.y24{bottom:615.060000px;}
.y9e{bottom:615.420000px;}
.y183{bottom:620.100000px;}
.y51{bottom:622.620000px;}
.y165{bottom:625.500000px;}
.y1b9{bottom:626.220000px;}
.y122{bottom:631.980000px;}
.y190{bottom:634.140000px;}
.y23{bottom:635.760000px;}
.y9d{bottom:636.120000px;}
.y177{bottom:640.800000px;}
.y164{bottom:646.200000px;}
.y1b8{bottom:646.920000px;}
.y50{bottom:651.960000px;}
.y18f{bottom:654.840000px;}
.y22{bottom:656.460000px;}
.y10b{bottom:657.240000px;}
.y176{bottom:661.500000px;}
.y9c{bottom:665.820000px;}
.y163{bottom:666.900000px;}
.y1b7{bottom:667.620000px;}
.y21{bottom:677.160000px;}
.y18e{bottom:680.220000px;}
.y4f{bottom:682.020000px;}
.y175{bottom:682.200000px;}
.y121{bottom:682.920000px;}
.y162{bottom:687.600000px;}
.y1b6{bottom:688.320000px;}
.y9b{bottom:695.520000px;}
.y20{bottom:697.860000px;}
.y174{bottom:702.900000px;}
.y161{bottom:708.300000px;}
.y1b5{bottom:709.020000px;}
.y4e{bottom:711.720000px;}
.y1f{bottom:718.560000px;}
.yc8{bottom:721.080000px;}
.y173{bottom:723.600000px;}
.y9a{bottom:725.220000px;}
.y1b4{bottom:729.720000px;}
.y10a{bottom:730.800000px;}
.y4d{bottom:732.420000px;}
.y160{bottom:737.640000px;}
.yc7{bottom:739.080000px;}
.y1e{bottom:739.260000px;}
.y172{bottom:744.300000px;}
.y8c{bottom:745.740000px;}
.y99{bottom:745.920000px;}
.y108{bottom:746.940000px;}
.y1b3{bottom:750.420000px;}
.y107{bottom:751.500000px;}
.y4c{bottom:753.120000px;}
.y1d{bottom:759.960000px;}
.y171{bottom:765.000000px;}
.y15f{bottom:767.340000px;}
.y1b2{bottom:771.120000px;}
.y182{bottom:773.640000px;}
.y4b{bottom:773.820000px;}
.y98{bottom:775.620000px;}
.y106{bottom:777.600000px;}
.yb8{bottom:782.100000px;}
.yba{bottom:783.360000px;}
.y1c{bottom:789.300000px;}
.ybc{bottom:790.200000px;}
.y1b1{bottom:791.820000px;}
.y170{bottom:794.700000px;}
.y15e{bottom:797.040000px;}
.y105{bottom:798.300000px;}
.y4a{bottom:803.520000px;}
.y181{bottom:803.700000px;}
.y1b0{bottom:812.520000px;}
.y97{bottom:814.320000px;}
.y102{bottom:814.440000px;}
.yc4{bottom:815.220000px;}
.ycb{bottom:816.480000px;}
.y1b{bottom:819.000000px;}
.ybe{bottom:820.980000px;}
.ycd{bottom:823.320000px;}
.y49{bottom:824.220000px;}
.y16f{bottom:824.400000px;}
.y15d{bottom:827.100000px;}
.y1af{bottom:833.220000px;}
.yc6{bottom:840.240000px;}
.ycc{bottom:841.500000px;}
.y48{bottom:844.920000px;}
.y101{bottom:845.280000px;}
.y1a{bottom:849.060000px;}
.y16e{bottom:849.780000px;}
.y15c{bottom:852.480000px;}
.y96{bottom:853.020000px;}
.y1ae{bottom:853.920000px;}
.ye1{bottom:857.160000px;}
.y47{bottom:865.620000px;}
.y100{bottom:874.620000px;}
.yd{bottom:875.604036px;}
.ye0{bottom:877.860000px;}
.y19{bottom:878.760000px;}
.y46{bottom:886.320000px;}
.y95{bottom:891.720000px;}
.y1ad{bottom:895.320000px;}
.ydf{bottom:898.560000px;}
.yc0{bottom:898.740000px;}
.yc{bottom:899.457041px;}
.yff{bottom:904.320000px;}
.y45{bottom:907.020000px;}
.ya{bottom:913.583603px;}
.y1ac{bottom:916.020000px;}
.y18{bottom:916.740000px;}
.yde{bottom:919.260000px;}
.y8{bottom:929.485612px;}
.y94{bottom:930.420000px;}
.yfe{bottom:934.380000px;}
.y44{bottom:936.720000px;}
.y17{bottom:938.160000px;}
.ydd{bottom:939.960000px;}
.y43{bottom:957.420000px;}
.y7{bottom:960.083429px;}
.yfd{bottom:963.720000px;}
.yd0{bottom:965.265000px;}
.y16{bottom:967.860000px;}
.y93{bottom:969.120000px;}
.y42{bottom:978.120000px;}
.yfc{bottom:981.000000px;}
.ydc{bottom:987.840000px;}
.y92{bottom:989.820000px;}
.y15{bottom:997.560000px;}
.y6{bottom:997.850688px;}
.y41{bottom:998.820000px;}
.yfb{bottom:1001.700000px;}
.y91{bottom:1010.520000px;}
.y5{bottom:1013.752691px;}
.y40{bottom:1019.520000px;}
.yfa{bottom:1022.400000px;}
.y14{bottom:1027.260000px;}
.y18d{bottom:1028.520000px;}
.y90{bottom:1031.220000px;}
.y3f{bottom:1040.220000px;}
.yf8{bottom:1043.820000px;}
.ycf{bottom:1051.920000px;}
.yf9{bottom:1056.600000px;}
.y13{bottom:1056.780000px;}
.y18c{bottom:1058.220000px;}
.yf7{bottom:1058.760000px;}
.y8f{bottom:1060.560000px;}
.y1ab{bottom:1060.920000px;}
.y4{bottom:1062.452577px;}
.y3e{bottom:1069.920000px;}
.y18b{bottom:1078.920000px;}
.yce{bottom:1081.260000px;}
.y1aa{bottom:1081.620000px;}
.y12{bottom:1088.100000px;}
.y3d{bottom:1090.620000px;}
.yf6{bottom:1099.620000px;}
.y1a9{bottom:1102.320000px;}
.y3{bottom:1104.195336px;}
.y3c{bottom:1111.320000px;}
.y11{bottom:1118.876040px;}
.y8e{bottom:1120.320000px;}
.y1a8{bottom:1131.660000px;}
.y3b{bottom:1141.020000px;}
.y2{bottom:1144.944219px;}
.y10{bottom:1155.600000px;}
.y1a7{bottom:1161.360000px;}
.y3a{bottom:1161.720000px;}
.h9{height:12.920383px;}
.h25{height:18.360000px;}
.h27{height:18.541500px;}
.h21{height:20.700000px;}
.h22{height:20.701500px;}
.h28{height:21.780000px;}
.h6{height:23.029952px;}
.h26{height:23.040000px;}
.h3e{height:23.250000px;}
.h1f{height:23.940000px;}
.h56{height:25.031250px;}
.h3{height:25.908696px;}
.h36{height:26.250000px;}
.h24{height:26.278500px;}
.h8{height:28.535089px;}
.h5{height:28.787440px;}
.h30{height:29.669484px;}
.h7{height:34.544928px;}
.h2d{height:36.592734px;}
.h48{height:38.034665px;}
.h1d{height:38.442594px;}
.h17{height:38.493724px;}
.h51{height:38.507618px;}
.h3c{height:38.555969px;}
.h33{height:38.610990px;}
.h46{height:40.300304px;}
.h2c{height:40.320000px;}
.h1b{height:40.732532px;}
.h15{height:40.786708px;}
.h4f{height:40.801430px;}
.h3b{height:40.852661px;}
.h31{height:40.910959px;}
.h20{height:41.398500px;}
.h35{height:41.400000px;}
.h40{height:46.453500px;}
.h4b{height:47.303849px;}
.h10{height:47.344922px;}
.h38{height:49.362188px;}
.h12{height:49.498500px;}
.h2a{height:51.539062px;}
.h2f{height:52.575000px;}
.h41{height:54.750000px;}
.h19{height:56.325000px;}
.h14{height:56.400000px;}
.h4d{height:59.923500px;}
.h39{height:60.000000px;}
.h4{height:65.533647px;}
.h49{height:65.789961px;}
.h1e{height:65.901669px;}
.h18{height:65.988923px;}
.h52{height:66.608042px;}
.h13{height:66.691406px;}
.h3f{height:68.421753px;}
.h47{height:69.708920px;}
.h1c{height:69.827282px;}
.h16{height:69.919734px;}
.h50{height:70.575732px;}
.hf{height:70.664062px;}
.h32{height:70.764759px;}
.hd{height:72.562500px;}
.h37{height:72.705985px;}
.h4c{height:72.742175px;}
.h55{height:75.093750px;}
.h54{height:77.602500px;}
.h11{height:80.464922px;}
.h34{height:83.656540px;}
.h2e{height:84.550781px;}
.h2b{height:85.064062px;}
.h44{height:86.863334px;}
.h23{height:86.940000px;}
.h1a{height:87.010610px;}
.he{height:87.519375px;}
.h29{height:95.040000px;}
.hc{height:96.508125px;}
.h53{height:99.912063px;}
.h4e{height:105.983204px;}
.h42{height:116.332043px;}
.h45{height:116.332643px;}
.h3a{height:117.925412px;}
.h4a{height:128.649541px;}
.h43{height:128.839505px;}
.h3d{height:137.952600px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.ha{height:1262.880000px;}
.hb{height:1263.000000px;}
.w21{width:14.175000px;}
.w1f{width:14.250000px;}
.w23{width:19.425000px;}
.w14{width:25.740000px;}
.w12{width:33.660000px;}
.w13{width:42.660000px;}
.wd{width:60.298500px;}
.we{width:60.300000px;}
.w9{width:60.660000px;}
.wf{width:61.200000px;}
.w1e{width:71.820000px;}
.w17{width:78.660000px;}
.w5{width:90.000000px;}
.w10{width:93.240000px;}
.w1b{width:106.380000px;}
.wa{width:113.400000px;}
.w1d{width:125.820000px;}
.w1c{width:138.240000px;}
.wc{width:142.920000px;}
.w18{width:183.240000px;}
.w1a{width:189.000000px;}
.wb{width:195.660000px;}
.w15{width:202.320000px;}
.w16{width:259.740000px;}
.w24{width:279.000000px;}
.w8{width:286.575000px;}
.w19{width:286.920000px;}
.w6{width:319.500000px;}
.w2{width:346.862448px;}
.w7{width:407.850000px;}
.w20{width:429.825000px;}
.w22{width:497.325000px;}
.w11{width:526.500000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x61{left:1.896654px;}
.x14{left:3.944250px;}
.x1e{left:5.906250px;}
.x67{left:9.540000px;}
.x31{left:10.800000px;}
.x12{left:12.656250px;}
.x1b{left:14.625000px;}
.x69{left:16.380000px;}
.x36{left:17.460000px;}
.x49{left:18.900000px;}
.x4c{left:21.060000px;}
.x3d{left:23.940000px;}
.x15{left:26.822250px;}
.x2e{left:28.507650px;}
.x4a{left:30.780000px;}
.x6d{left:32.220000px;}
.x4b{left:33.480000px;}
.x3f{left:36.180000px;}
.x45{left:37.980000px;}
.x1a{left:40.031250px;}
.x2d{left:41.729850px;}
.x6e{left:47.700000px;}
.x6f{left:49.320000px;}
.x47{left:52.200000px;}
.x60{left:53.770350px;}
.x3b{left:55.980000px;}
.x62{left:57.181422px;}
.x1{left:59.632513px;}
.x8d{left:60.937350px;}
.x7{left:64.601889px;}
.x5f{left:69.795337px;}
.x38{left:71.280000px;}
.x9c{left:75.000000px;}
.x8c{left:76.218600px;}
.x13{left:78.464250px;}
.x52{left:80.460000px;}
.x34{left:82.980000px;}
.xf{left:84.960000px;}
.x5e{left:87.365250px;}
.x48{left:88.740000px;}
.x7a{left:93.320100px;}
.x3{left:99.387518px;}
.x8e{left:102.421800px;}
.x7c{left:103.545747px;}
.x32{left:106.200000px;}
.x8b{left:108.328050px;}
.x4{left:110.320149px;}
.x56{left:112.140000px;}
.x79{left:113.701052px;}
.x77{left:117.272100px;}
.x3a{left:119.340000px;}
.x8a{left:123.515550px;}
.x75{left:132.582087px;}
.x53{left:136.980000px;}
.x9b{left:138.960000px;}
.x28{left:141.480000px;}
.x63{left:142.789350px;}
.x90{left:144.540000px;}
.x5d{left:155.168850px;}
.x10{left:156.780000px;}
.x25{left:162.141450px;}
.x1c{left:163.921800px;}
.xe{left:168.300000px;}
.x65{left:170.640000px;}
.x2a{left:178.312350px;}
.x50{left:180.360000px;}
.x70{left:186.840000px;}
.x2c{left:187.877400px;}
.x35{left:196.380000px;}
.x7b{left:197.434134px;}
.x8{left:199.260000px;}
.x99{left:201.600000px;}
.x51{left:207.360000px;}
.x83{left:208.740000px;}
.x55{left:214.380000px;}
.x26{left:221.432850px;}
.x1d{left:224.015550px;}
.x6c{left:225.360000px;}
.x9{left:230.046840px;}
.x73{left:231.540000px;}
.x33{left:233.460000px;}
.x54{left:235.800000px;}
.x20{left:239.490000px;}
.x22{left:242.208000px;}
.x18{left:244.734300px;}
.x24{left:250.891650px;}
.x19{left:253.593750px;}
.x4d{left:259.020000px;}
.x74{left:261.502050px;}
.x7d{left:263.568900px;}
.x76{left:264.650762px;}
.x78{left:267.466650px;}
.x4e{left:270.360000px;}
.x85{left:274.204050px;}
.x2b{left:277.338150px;}
.xd{left:283.500000px;}
.x93{left:286.200000px;}
.x95{left:290.520000px;}
.x17{left:292.065000px;}
.x66{left:297.180000px;}
.xa{left:299.520000px;}
.x5b{left:305.100000px;}
.x29{left:306.990000px;}
.x39{left:309.600000px;}
.x97{left:312.120000px;}
.xc{left:316.080000px;}
.x87{left:317.635200px;}
.x88{left:326.931600px;}
.x84{left:340.595550px;}
.x86{left:343.741050px;}
.x5c{left:346.065000px;}
.x21{left:347.951850px;}
.xb{left:364.680000px;}
.x37{left:368.640000px;}
.x57{left:376.200000px;}
.x23{left:391.416900px;}
.x68{left:403.560000px;}
.x11{left:408.840000px;}
.x30{left:410.940000px;}
.x91{left:433.620000px;}
.x92{left:434.880000px;}
.x94{left:442.260000px;}
.x96{left:443.340000px;}
.x2{left:446.249971px;}
.x5{left:486.004991px;}
.x6{left:496.937607px;}
.x16{left:498.780000px;}
.x3c{left:534.960000px;}
.x6a{left:541.800000px;}
.x7f{left:543.840000px;}
.x4f{left:549.360000px;}
.x89{left:553.500000px;}
.x80{left:558.000000px;}
.x3e{left:564.840000px;}
.x8f{left:575.280000px;}
.x2f{left:593.460000px;}
.x40{left:595.260000px;}
.x1f{left:611.460000px;}
.x6b{left:616.140000px;}
.x98{left:617.580000px;}
.x9a{left:620.100000px;}
.x41{left:624.780000px;}
.x64{left:628.560000px;}
.x71{left:642.840000px;}
.x27{left:647.280000px;}
.x7e{left:651.960000px;}
.x42{left:655.560000px;}
.x72{left:657.000000px;}
.x81{left:683.038500px;}
.x43{left:686.160000px;}
.x82{left:697.140000px;}
.x58{left:706.320000px;}
.x44{left:716.760000px;}
.x5a{left:732.780000px;}
.x59{left:762.840000px;}
.x46{left:764.640000px;}
@media print{
.v7{vertical-align:-50.055227pt;}
.v6{vertical-align:-35.867110pt;}
.v2{vertical-align:-29.440000pt;}
.v8{vertical-align:-14.687467pt;}
.v4{vertical-align:-8.320000pt;}
.va{vertical-align:-4.110400pt;}
.vc{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:4.480000pt;}
.v5{vertical-align:12.800000pt;}
.vb{vertical-align:26.635200pt;}
.v3{vertical-align:29.440000pt;}
.v1{vertical-align:32.000000pt;}
.v9{vertical-align:80.000533pt;}
.ls7a{letter-spacing:-17.216000pt;}
.ls50{letter-spacing:-1.344000pt;}
.ls8e{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls52{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls60{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls51{letter-spacing:-0.300160pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.255360pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.064000pt;}
.ls53{letter-spacing:0.090880pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.160000pt;}
.ls88{letter-spacing:0.171520pt;}
.ls27{letter-spacing:0.192000pt;}
.ls4f{letter-spacing:0.256000pt;}
.ls84{letter-spacing:0.257280pt;}
.ls67{letter-spacing:0.300160pt;}
.ls1{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.343040pt;}
.ls22{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls45{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.640000pt;}
.ls8d{letter-spacing:0.704000pt;}
.ls87{letter-spacing:0.960000pt;}
.ls47{letter-spacing:1.280000pt;}
.ls74{letter-spacing:1.664000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls24{letter-spacing:2.560000pt;}
.ls5b{letter-spacing:2.853066pt;}
.ls21{letter-spacing:2.880000pt;}
.ls66{letter-spacing:2.883200pt;}
.ls68{letter-spacing:2.903040pt;}
.ls65{letter-spacing:2.944000pt;}
.ls59{letter-spacing:3.008000pt;}
.ls25{letter-spacing:3.136000pt;}
.ls6d{letter-spacing:3.159680pt;}
.ls7{letter-spacing:3.200000pt;}
.ls46{letter-spacing:3.240320pt;}
.ls20{letter-spacing:3.264000pt;}
.ls4d{letter-spacing:3.315840pt;}
.ls49{letter-spacing:3.361280pt;}
.ls58{letter-spacing:3.439360pt;}
.ls26{letter-spacing:3.520000pt;}
.ls6{letter-spacing:3.840000pt;}
.ls9{letter-spacing:4.480000pt;}
.ls62{letter-spacing:5.120000pt;}
.ls5{letter-spacing:5.760000pt;}
.ls48{letter-spacing:5.920000pt;}
.ls7c{letter-spacing:5.934684pt;}
.lsd{letter-spacing:6.400000pt;}
.ls61{letter-spacing:6.406400pt;}
.ls5f{letter-spacing:6.857758pt;}
.ls83{letter-spacing:6.967280pt;}
.ls10{letter-spacing:7.040000pt;}
.ls11{letter-spacing:7.046400pt;}
.lsb{letter-spacing:7.680000pt;}
.ls7e{letter-spacing:8.270676pt;}
.ls89{letter-spacing:8.960000pt;}
.ls8{letter-spacing:9.600000pt;}
.ls4{letter-spacing:9.606400pt;}
.ls8a{letter-spacing:10.240000pt;}
.ls3b{letter-spacing:10.751163pt;}
.ls33{letter-spacing:10.765397pt;}
.ls3{letter-spacing:10.880000pt;}
.ls54{letter-spacing:11.520000pt;}
.ls23{letter-spacing:12.160000pt;}
.ls1c{letter-spacing:13.440000pt;}
.ls1e{letter-spacing:14.080000pt;}
.ls8c{letter-spacing:14.720000pt;}
.ls5a{letter-spacing:15.360000pt;}
.ls4a{letter-spacing:16.640000pt;}
.ls6e{letter-spacing:17.280000pt;}
.ls57{letter-spacing:17.881445pt;}
.ls6f{letter-spacing:17.920000pt;}
.ls4c{letter-spacing:18.112000pt;}
.ls4b{letter-spacing:18.880000pt;}
.lsc{letter-spacing:19.840000pt;}
.ls6b{letter-spacing:20.417518pt;}
.ls6c{letter-spacing:20.455718pt;}
.ls1f{letter-spacing:20.480000pt;}
.ls80{letter-spacing:20.878784pt;}
.ls5c{letter-spacing:20.934832pt;}
.ls1b{letter-spacing:24.960000pt;}
.ls5d{letter-spacing:26.213301pt;}
.ls8b{letter-spacing:30.208000pt;}
.ls81{letter-spacing:30.937280pt;}
.ls56{letter-spacing:38.275542pt;}
.ls3c{letter-spacing:45.471094pt;}
.ls34{letter-spacing:45.531298pt;}
.ls37{letter-spacing:63.748070pt;}
.ls2e{letter-spacing:64.782362pt;}
.ls5e{letter-spacing:75.476554pt;}
.ls7f{letter-spacing:87.099635pt;}
.ls2b{letter-spacing:99.520000pt;}
.ls29{letter-spacing:100.672000pt;}
.ls2a{letter-spacing:101.056000pt;}
.ls64{letter-spacing:101.862968pt;}
.ls7d{letter-spacing:102.965748pt;}
.ls3f{letter-spacing:123.612092pt;}
.ls3a{letter-spacing:125.851845pt;}
.ls38{letter-spacing:126.484267pt;}
.ls32{letter-spacing:126.525082pt;}
.ls30{letter-spacing:127.158340pt;}
.ls42{letter-spacing:130.957892pt;}
.ls40{letter-spacing:131.591151pt;}
.ls44{letter-spacing:131.971106pt;}
.ls36{letter-spacing:137.677958pt;}
.ls2d{letter-spacing:138.378239pt;}
.ls76{letter-spacing:138.380000pt;}
.ls35{letter-spacing:138.674021pt;}
.ls2c{letter-spacing:139.338686pt;}
.ls3e{letter-spacing:142.811071pt;}
.ls2f{letter-spacing:143.116459pt;}
.ls3d{letter-spacing:143.808458pt;}
.ls43{letter-spacing:145.016235pt;}
.ls1d{letter-spacing:149.069090pt;}
.ls82{letter-spacing:152.257440pt;}
.ls63{letter-spacing:152.448000pt;}
.ls6a{letter-spacing:175.429305pt;}
.ls55{letter-spacing:192.563402pt;}
.ls71{letter-spacing:220.520000pt;}
.ls39{letter-spacing:272.826563pt;}
.ls31{letter-spacing:274.201003pt;}
.ls41{letter-spacing:283.066624pt;}
.ls70{letter-spacing:311.394737pt;}
.ls7b{letter-spacing:415.731963pt;}
.ls69{letter-spacing:429.808427pt;}
.ls78{letter-spacing:532.928000pt;}
.ls75{letter-spacing:938.304000pt;}
.ls79{letter-spacing:945.856000pt;}
.ls73{letter-spacing:948.992000pt;}
.ls77{letter-spacing:960.705000pt;}
.ls72{letter-spacing:962.518000pt;}
.ls85{letter-spacing:1225.600000pt;}
.ls86{letter-spacing:1258.880000pt;}
.ws91{word-spacing:-981.018000pt;}
.ws8e{word-spacing:-971.768000pt;}
.wsaa{word-spacing:-948.992000pt;}
.wsad{word-spacing:-945.856000pt;}
.wsab{word-spacing:-938.304000pt;}
.wsac{word-spacing:-532.928000pt;}
.wsae{word-spacing:-415.731963pt;}
.ws35{word-spacing:-308.966903pt;}
.ws64{word-spacing:-283.066624pt;}
.ws61{word-spacing:-272.826563pt;}
.ws44{word-spacing:-166.287393pt;}
.wsb4{word-spacing:-152.257440pt;}
.ws45{word-spacing:-150.240619pt;}
.ws43{word-spacing:-149.195742pt;}
.ws32{word-spacing:-147.613306pt;}
.ws36{word-spacing:-146.270087pt;}
.ws3d{word-spacing:-146.057707pt;}
.ws62{word-spacing:-143.808458pt;}
.ws5e{word-spacing:-143.116459pt;}
.ws63{word-spacing:-142.811071pt;}
.ws90{word-spacing:-140.551900pt;}
.ws5d{word-spacing:-139.338686pt;}
.ws5f{word-spacing:-138.674021pt;}
.ws60{word-spacing:-137.677958pt;}
.ws42{word-spacing:-130.926229pt;}
.ws34{word-spacing:-127.994242pt;}
.ws3c{word-spacing:-127.799703pt;}
.ws40{word-spacing:-122.978833pt;}
.ws5b{word-spacing:-101.056000pt;}
.ws5a{word-spacing:-100.672000pt;}
.ws5c{word-spacing:-99.520000pt;}
.ws84{word-spacing:-75.476554pt;}
.ws9c{word-spacing:-74.360324pt;}
.ws9a{word-spacing:-47.398554pt;}
.ws80{word-spacing:-30.198032pt;}
.wsa1{word-spacing:-30.117184pt;}
.wsa2{word-spacing:-26.418136pt;}
.ws70{word-spacing:-26.398080pt;}
.ws94{word-spacing:-21.804800pt;}
.ws93{word-spacing:-20.019200pt;}
.ws33{word-spacing:-19.238398pt;}
.ws3a{word-spacing:-17.808985pt;}
.wsc3{word-spacing:-16.704000pt;}
.ws9d{word-spacing:-16.470533pt;}
.ws2e{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws9e{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws31{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.552000pt;}
.ws2f{word-spacing:-15.360000pt;}
.ws6f{word-spacing:-15.296000pt;}
.ws6e{word-spacing:-15.168000pt;}
.ws30{word-spacing:-11.063040pt;}
.wsbd{word-spacing:-10.891520pt;}
.ws6{word-spacing:-10.720000pt;}
.ws3{word-spacing:-7.126223pt;}
.ws2{word-spacing:-6.506777pt;}
.ws0{word-spacing:-6.413601pt;}
.ws1{word-spacing:-5.700979pt;}
.wsaf{word-spacing:-0.640000pt;}
.ws65{word-spacing:-0.576000pt;}
.wsbe{word-spacing:-0.343040pt;}
.wsb5{word-spacing:-0.257280pt;}
.ws73{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.170240pt;}
.ws15{word-spacing:-0.128000pt;}
.ws7d{word-spacing:-0.090880pt;}
.ws4a{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.064000pt;}
.ws29{word-spacing:0.128000pt;}
.ws26{word-spacing:0.192000pt;}
.wse{word-spacing:0.255360pt;}
.ws10{word-spacing:0.256000pt;}
.ws78{word-spacing:0.300160pt;}
.wsd{word-spacing:0.510720pt;}
.ws28{word-spacing:0.512000pt;}
.ws24{word-spacing:0.576000pt;}
.ws1a{word-spacing:0.640000pt;}
.wsc8{word-spacing:0.768000pt;}
.wsa4{word-spacing:0.832000pt;}
.wsf{word-spacing:0.896000pt;}
.ws87{word-spacing:1.152000pt;}
.ws3f{word-spacing:1.201601pt;}
.ws86{word-spacing:1.280000pt;}
.ws7e{word-spacing:1.385775pt;}
.ws27{word-spacing:1.472000pt;}
.ws76{word-spacing:1.536000pt;}
.ws38{word-spacing:1.697133pt;}
.ws2b{word-spacing:1.792000pt;}
.ws2a{word-spacing:1.920000pt;}
.ws68{word-spacing:2.176000pt;}
.ws6c{word-spacing:2.432000pt;}
.ws69{word-spacing:2.560000pt;}
.wsa6{word-spacing:2.752000pt;}
.ws6d{word-spacing:2.816000pt;}
.ws55{word-spacing:3.072000pt;}
.ws74{word-spacing:3.136000pt;}
.ws19{word-spacing:3.200000pt;}
.ws18{word-spacing:3.456000pt;}
.ws85{word-spacing:3.712000pt;}
.ws52{word-spacing:3.840000pt;}
.ws47{word-spacing:4.096000pt;}
.wsa5{word-spacing:4.352000pt;}
.ws1f{word-spacing:4.480000pt;}
.ws75{word-spacing:4.544000pt;}
.ws20{word-spacing:4.736000pt;}
.wsa9{word-spacing:4.992000pt;}
.ws79{word-spacing:5.120000pt;}
.wsa8{word-spacing:5.376000pt;}
.ws58{word-spacing:5.632000pt;}
.ws16{word-spacing:5.760000pt;}
.ws57{word-spacing:5.952000pt;}
.ws17{word-spacing:6.016000pt;}
.ws25{word-spacing:6.272000pt;}
.ws1c{word-spacing:6.400000pt;}
.wsc1{word-spacing:6.464000pt;}
.ws1d{word-spacing:6.656000pt;}
.ws2c{word-spacing:7.040000pt;}
.ws2d{word-spacing:7.296000pt;}
.wsbf{word-spacing:7.552000pt;}
.ws46{word-spacing:7.680000pt;}
.ws22{word-spacing:7.872000pt;}
.ws21{word-spacing:7.936000pt;}
.ws4e{word-spacing:8.192000pt;}
.ws4b{word-spacing:8.320000pt;}
.wsc0{word-spacing:8.832000pt;}
.wsb6{word-spacing:8.960000pt;}
.ws4f{word-spacing:9.216000pt;}
.ws89{word-spacing:9.536000pt;}
.ws1b{word-spacing:9.600000pt;}
.ws14{word-spacing:9.856000pt;}
.ws48{word-spacing:10.240000pt;}
.ws49{word-spacing:10.496000pt;}
.ws12{word-spacing:10.752000pt;}
.ws83{word-spacing:10.880000pt;}
.ws13{word-spacing:11.072000pt;}
.ws11{word-spacing:11.136000pt;}
.wsbc{word-spacing:11.392000pt;}
.ws88{word-spacing:11.520000pt;}
.wsb3{word-spacing:11.776000pt;}
.ws6a{word-spacing:12.032000pt;}
.ws7b{word-spacing:12.160000pt;}
.ws6b{word-spacing:12.416000pt;}
.ws7a{word-spacing:12.800000pt;}
.wsb2{word-spacing:13.056000pt;}
.ws8f{word-spacing:13.107200pt;}
.ws4d{word-spacing:13.312000pt;}
.ws59{word-spacing:13.376000pt;}
.ws4c{word-spacing:13.440000pt;}
.wsa7{word-spacing:13.696000pt;}
.ws54{word-spacing:13.952000pt;}
.ws53{word-spacing:14.080000pt;}
.ws77{word-spacing:14.336000pt;}
.wsb8{word-spacing:14.592000pt;}
.wsb9{word-spacing:14.720000pt;}
.wsba{word-spacing:14.976000pt;}
.ws8a{word-spacing:15.360000pt;}
.ws8b{word-spacing:15.616000pt;}
.ws72{word-spacing:16.640000pt;}
.ws7c{word-spacing:16.896000pt;}
.wsb1{word-spacing:17.152000pt;}
.wsb7{word-spacing:17.280000pt;}
.ws71{word-spacing:17.408000pt;}
.wsb0{word-spacing:17.536000pt;}
.wsc5{word-spacing:17.792000pt;}
.wsc4{word-spacing:17.920000pt;}
.ws3b{word-spacing:18.694375pt;}
.wsa3{word-spacing:19.393328pt;}
.wsc7{word-spacing:19.456000pt;}
.ws50{word-spacing:19.840000pt;}
.ws51{word-spacing:20.032000pt;}
.ws23{word-spacing:20.096000pt;}
.ws67{word-spacing:20.352000pt;}
.ws66{word-spacing:20.480000pt;}
.wsc6{word-spacing:22.400000pt;}
.wsbb{word-spacing:22.912000pt;}
.ws56{word-spacing:24.960000pt;}
.wsc2{word-spacing:25.216000pt;}
.ws98{word-spacing:30.367552pt;}
.ws99{word-spacing:34.023416pt;}
.ws82{word-spacing:43.754261pt;}
.ws9b{word-spacing:54.056130pt;}
.ws97{word-spacing:79.195436pt;}
.ws95{word-spacing:79.196375pt;}
.ws8d{word-spacing:80.715500pt;}
.wsa0{word-spacing:82.609773pt;}
.ws3e{word-spacing:82.644820pt;}
.ws37{word-spacing:82.754243pt;}
.ws8c{word-spacing:89.175123pt;}
.ws39{word-spacing:170.634649pt;}
.ws96{word-spacing:200.224010pt;}
.ws7f{word-spacing:253.515258pt;}
.ws81{word-spacing:253.922925pt;}
.ws41{word-spacing:267.171831pt;}
.ws92{word-spacing:439.360000pt;}
.ws9f{word-spacing:748.912786pt;}
._30{margin-left:-128.447080pt;}
._51{margin-left:-46.842197pt;}
._58{margin-left:-17.212718pt;}
._48{margin-left:-5.833668pt;}
._42{margin-left:-4.267921pt;}
._1{margin-left:-2.294886pt;}
._0{margin-left:-1.195761pt;}
._2{width:0.910784pt;}
._3{width:2.067648pt;}
._7{width:3.283057pt;}
._8{width:4.736000pt;}
._6{width:6.088737pt;}
._a{width:7.616000pt;}
._b{width:8.860977pt;}
._4{width:10.087296pt;}
._5{width:11.144737pt;}
._c{width:12.783043pt;}
._e{width:14.163648pt;}
._17{width:16.008779pt;}
._2b{width:17.446276pt;}
._d{width:19.219103pt;}
._9{width:20.449841pt;}
._14{width:22.126058pt;}
._2d{width:23.633213pt;}
._f{width:24.576000pt;}
._59{width:25.774787pt;}
._39{width:33.337600pt;}
._3f{width:39.308800pt;}
._24{width:43.478967pt;}
._16{width:45.012026pt;}
._49{width:50.130507pt;}
._2e{width:54.428582pt;}
._22{width:56.222257pt;}
._2f{width:57.480889pt;}
._3b{width:60.857600pt;}
._55{width:64.708838pt;}
._12{width:69.126516pt;}
._38{width:70.752000pt;}
._11{width:76.383660pt;}
._10{width:77.371544pt;}
._35{width:80.000000pt;}
._45{width:81.305167pt;}
._2c{width:82.424948pt;}
._28{width:88.969033pt;}
._1c{width:90.074713pt;}
._47{width:91.870819pt;}
._29{width:95.887723pt;}
._1d{width:97.002563pt;}
._43{width:98.909616pt;}
._23{width:100.114662pt;}
._15{width:101.245396pt;}
._1e{width:102.942529pt;}
._18{width:104.234377pt;}
._4b{width:119.634102pt;}
._2a{width:125.439707pt;}
._1f{width:127.019023pt;}
._56{width:128.000000pt;}
._25{width:129.102491pt;}
._19{width:131.255524pt;}
._13{width:132.946324pt;}
._3d{width:134.828800pt;}
._1b{width:141.602970pt;}
._20{width:142.952518pt;}
._27{width:144.412068pt;}
._32{width:147.840000pt;}
._3a{width:154.688000pt;}
._26{width:160.558338pt;}
._1a{width:162.751033pt;}
._41{width:170.487517pt;}
._44{width:174.511269pt;}
._33{width:176.000000pt;}
._4a{width:198.412550pt;}
._36{width:201.753600pt;}
._54{width:214.617792pt;}
._3c{width:222.886400pt;}
._46{width:234.188709pt;}
._4d{width:237.156928pt;}
._4c{width:265.804383pt;}
._3e{width:284.812800pt;}
._4e{width:327.791865pt;}
._37{width:353.830400pt;}
._4f{width:371.788995pt;}
._53{width:391.957440pt;}
._52{width:415.617139pt;}
._50{width:521.431414pt;}
._34{width:645.485338pt;}
._21{width:813.395022pt;}
._31{width:848.640000pt;}
._40{width:883.773803pt;}
._57{width:1297.920000pt;}
.fs23{font-size:21.333333pt;}
.fs10{font-size:26.871467pt;}
.fs3{font-size:28.270228pt;}
.fs0{font-size:31.804007pt;}
.fs2{font-size:35.337785pt;}
.fs1c{font-size:36.499733pt;}
.fse{font-size:36.891200pt;}
.fsb{font-size:36.940267pt;}
.fs20{font-size:36.953600pt;}
.fs16{font-size:37.000000pt;}
.fs11{font-size:37.052800pt;}
.fs4{font-size:42.405342pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fsa{font-size:53.120000pt;}
.fs18{font-size:62.000000pt;}
.fs1d{font-size:63.134933pt;}
.fsf{font-size:63.242133pt;}
.fsc{font-size:63.325867pt;}
.fs21{font-size:63.920000pt;}
.fs6{font-size:64.000000pt;}
.fs12{font-size:64.091200pt;}
.fs14{font-size:65.882133pt;}
.fs7{font-size:69.120000pt;}
.fs1{font-size:70.675571pt;}
.fs1b{font-size:83.357867pt;}
.fsd{font-size:83.499200pt;}
.fs5{font-size:85.120000pt;}
.fs1e{font-size:94.702400pt;}
.fs22{font-size:95.880000pt;}
.fs17{font-size:96.000000pt;}
.fs13{font-size:96.137067pt;}
.fs1f{font-size:101.706133pt;}
.fs19{font-size:111.637333pt;}
.fs15{font-size:113.166400pt;}
.fs1a{font-size:123.639467pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.188729pt;}
.ybd{bottom:1.920000pt;}
.yc1{bottom:2.080000pt;}
.y125{bottom:2.583333pt;}
.yd5{bottom:3.380321pt;}
.y9{bottom:3.533784pt;}
.yb{bottom:3.533789pt;}
.y154{bottom:3.953333pt;}
.y11f{bottom:3.972133pt;}
.ya5{bottom:4.000000pt;}
.y132{bottom:4.028667pt;}
.y13d{bottom:4.116533pt;}
.y103{bottom:4.117733pt;}
.yc2{bottom:4.480000pt;}
.y72{bottom:4.653333pt;}
.y62{bottom:4.658133pt;}
.y78{bottom:4.818133pt;}
.y68{bottom:4.822667pt;}
.y84{bottom:4.824000pt;}
.yda{bottom:4.839617pt;}
.yd4{bottom:4.843906pt;}
.y11e{bottom:5.220133pt;}
.y110{bottom:5.420300pt;}
.ybf{bottom:5.600000pt;}
.y150{bottom:6.034133pt;}
.y14b{bottom:6.034267pt;}
.y10f{bottom:6.049300pt;}
.y116{bottom:6.049833pt;}
.y5b{bottom:6.174133pt;}
.y8d{bottom:6.400000pt;}
.y1cd{bottom:6.666667pt;}
.y14f{bottom:7.490667pt;}
.y14a{bottom:7.490800pt;}
.yd8{bottom:7.518096pt;}
.yca{bottom:8.000000pt;}
.ybb{bottom:8.480000pt;}
.y134{bottom:8.714533pt;}
.y138{bottom:8.714667pt;}
.y71{bottom:8.729467pt;}
.y77{bottom:8.729600pt;}
.y67{bottom:8.739467pt;}
.y61{bottom:8.739733pt;}
.y81{bottom:8.740667pt;}
.y14e{bottom:10.154000pt;}
.y113{bottom:10.174800pt;}
.y11d{bottom:10.180133pt;}
.y153{bottom:13.982533pt;}
.y11c{bottom:14.020133pt;}
.y6e{bottom:15.811067pt;}
.y5e{bottom:15.831067pt;}
.y7e{bottom:15.831867pt;}
.yd3{bottom:15.904167pt;}
.y126{bottom:16.393833pt;}
.y120{bottom:16.918267pt;}
.y131{bottom:16.976267pt;}
.y136{bottom:16.976400pt;}
.y6d{bottom:17.005067pt;}
.y7d{bottom:17.027467pt;}
.y76{bottom:17.417067pt;}
.y66{bottom:17.438533pt;}
.y83{bottom:17.439733pt;}
.y12c{bottom:17.592400pt;}
.y12b{bottom:18.208933pt;}
.y12e{bottom:18.209067pt;}
.y149{bottom:18.518667pt;}
.y10e{bottom:18.546050pt;}
.y115{bottom:18.546583pt;}
.y5a{bottom:18.670133pt;}
.y128{bottom:18.786800pt;}
.y109{bottom:18.786933pt;}
.y13e{bottom:18.791779pt;}
.y104{bottom:18.792979pt;}
.y155{bottom:18.976267pt;}
.y10c{bottom:19.791867pt;}
.y12d{bottom:19.894267pt;}
.y6b{bottom:19.928267pt;}
.y11b{bottom:19.972133pt;}
.ydb{bottom:20.028533pt;}
.yd7{bottom:20.031903pt;}
.y147{bottom:20.599333pt;}
.y133{bottom:21.045600pt;}
.y70{bottom:21.081333pt;}
.y75{bottom:21.081600pt;}
.y65{bottom:21.108000pt;}
.y60{bottom:21.108133pt;}
.y80{bottom:21.108933pt;}
.y152{bottom:21.181867pt;}
.y11a{bottom:21.220133pt;}
.yf{bottom:22.086091pt;}
.ya4{bottom:22.400000pt;}
.y14d{bottom:22.638400pt;}
.y112{bottom:22.670800pt;}
.y119{bottom:22.676133pt;}
.yd1{bottom:24.910533pt;}
.yc9{bottom:25.440000pt;}
.yd9{bottom:27.330667pt;}
.y130{bottom:28.115333pt;}
.y59{bottom:28.750133pt;}
.ya8{bottom:29.760000pt;}
.yd6{bottom:30.126267pt;}
.y6f{bottom:31.045200pt;}
.y74{bottom:31.045467pt;}
.y64{bottom:31.085200pt;}
.y5f{bottom:31.085467pt;}
.y7f{bottom:31.086133pt;}
.y137{bottom:31.157067pt;}
.y73{bottom:31.910000pt;}
.y63{bottom:31.951067pt;}
.y82{bottom:31.952000pt;}
.yc3{bottom:32.640000pt;}
.y14c{bottom:32.709067pt;}
.y111{bottom:32.750800pt;}
.y118{bottom:34.628133pt;}
.y139{bottom:35.103200pt;}
.y151{bottom:35.830133pt;}
.y117{bottom:35.876133pt;}
.yd2{bottom:36.301733pt;}
.y6c{bottom:38.126933pt;}
.y5d{bottom:38.176800pt;}
.y7c{bottom:38.177333pt;}
.y148{bottom:38.868133pt;}
.y12f{bottom:39.089867pt;}
.y135{bottom:39.090133pt;}
.y10d{bottom:40.958800pt;}
.y114{bottom:40.959333pt;}
.ye{bottom:42.405318pt;}
.yb9{bottom:62.240000pt;}
.yc5{bottom:70.080000pt;}
.y8b{bottom:82.560000pt;}
.yf5{bottom:82.880000pt;}
.y1a6{bottom:87.040000pt;}
.y18a{bottom:87.520000pt;}
.y180{bottom:90.560000pt;}
.y39{bottom:96.480000pt;}
.y16d{bottom:97.760000pt;}
.y8a{bottom:100.960000pt;}
.yf4{bottom:101.280000pt;}
.y189{bottom:105.920000pt;}
.yb7{bottom:110.560000pt;}
.y1a5{bottom:113.440000pt;}
.y38{bottom:114.880000pt;}
.y17f{bottom:116.960000pt;}
.y89{bottom:119.360000pt;}
.yf3{bottom:119.680000pt;}
.y16c{bottom:124.160000pt;}
.yb6{bottom:128.960000pt;}
.y188{bottom:132.320000pt;}
.y37{bottom:133.280000pt;}
.y17e{bottom:135.360000pt;}
.y88{bottom:137.760000pt;}
.yf2{bottom:138.080000pt;}
.y1a4{bottom:139.840000pt;}
.y15b{bottom:142.080000pt;}
.y16b{bottom:146.720000pt;}
.yb5{bottom:147.360000pt;}
.y187{bottom:150.720000pt;}
.y87{bottom:156.160000pt;}
.yf1{bottom:156.480000pt;}
.y1a3{bottom:158.240000pt;}
.y17d{bottom:158.720000pt;}
.y36{bottom:159.680000pt;}
.y15a{bottom:160.480000pt;}
.yb4{bottom:165.760000pt;}
.y186{bottom:169.120000pt;}
.y86{bottom:174.560000pt;}
.y1a2{bottom:176.640000pt;}
.y35{bottom:178.080000pt;}
.y159{bottom:178.720000pt;}
.yf0{bottom:182.880000pt;}
.yb3{bottom:184.160000pt;}
.y185{bottom:191.680000pt;}
.y85{bottom:192.960000pt;}
.y1a1{bottom:195.040000pt;}
.y34{bottom:196.480000pt;}
.y158{bottom:197.120000pt;}
.yef{bottom:201.280000pt;}
.yb2{bottom:202.560000pt;}
.y1cc{bottom:207.040000pt;}
.y33{bottom:214.880000pt;}
.y7b{bottom:215.413333pt;}
.y157{bottom:215.520000pt;}
.yee{bottom:219.680000pt;}
.yb1{bottom:220.960000pt;}
.y1a0{bottom:221.440000pt;}
.y1cb{bottom:225.440000pt;}
.y32{bottom:233.280000pt;}
.y7a{bottom:236.800000pt;}
.y146{bottom:238.013333pt;}
.yed{bottom:238.080000pt;}
.yb0{bottom:239.360000pt;}
.y19f{bottom:239.840000pt;}
.y1ca{bottom:243.840000pt;}
.y31{bottom:251.680000pt;}
.yec{bottom:256.480000pt;}
.y156{bottom:260.800000pt;}
.y1c9{bottom:262.240000pt;}
.yaf{bottom:265.440000pt;}
.y19e{bottom:266.240000pt;}
.y6a{bottom:273.346667pt;}
.yeb{bottom:274.880000pt;}
.y30{bottom:278.080000pt;}
.y1c8{bottom:280.640000pt;}
.y19d{bottom:284.640000pt;}
.yae{bottom:291.840000pt;}
.yea{bottom:293.280000pt;}
.y79{bottom:294.720000pt;}
.y1c7{bottom:299.040000pt;}
.y19c{bottom:303.040000pt;}
.y145{bottom:303.360000pt;}
.y2f{bottom:304.160000pt;}
.ye9{bottom:311.680000pt;}
.y1c6{bottom:317.440000pt;}
.yad{bottom:318.560000pt;}
.y19b{bottom:321.440000pt;}
.y144{bottom:321.760000pt;}
.ye8{bottom:330.080000pt;}
.y2e{bottom:330.880000pt;}
.y5c{bottom:331.413333pt;}
.y1c5{bottom:335.840000pt;}
.y19a{bottom:339.840000pt;}
.y143{bottom:340.160000pt;}
.yac{bottom:344.640000pt;}
.ye7{bottom:348.480000pt;}
.y69{bottom:352.800000pt;}
.y1c4{bottom:354.240000pt;}
.y2d{bottom:357.280000pt;}
.y142{bottom:358.560000pt;}
.yab{bottom:360.000000pt;}
.y199{bottom:366.240000pt;}
.ye6{bottom:366.880000pt;}
.y1c3{bottom:372.640000pt;}
.y141{bottom:376.960000pt;}
.yaa{bottom:378.400000pt;}
.y2c{bottom:383.360000pt;}
.y198{bottom:384.640000pt;}
.ye5{bottom:385.280000pt;}
.y58{bottom:389.346667pt;}
.y1c2{bottom:391.040000pt;}
.y140{bottom:395.360000pt;}
.ya9{bottom:396.800000pt;}
.y57{bottom:408.160000pt;}
.y1c1{bottom:409.440000pt;}
.y2b{bottom:409.760000pt;}
.y197{bottom:411.040000pt;}
.ye4{bottom:411.680000pt;}
.y13f{bottom:413.760000pt;}
.ya3{bottom:416.000000pt;}
.ya7{bottom:427.360000pt;}
.y1c0{bottom:427.840000pt;}
.y13c{bottom:428.081333pt;}
.y196{bottom:429.440000pt;}
.y13b{bottom:432.160000pt;}
.ya6{bottom:436.320000pt;}
.y2a{bottom:436.480000pt;}
.ye3{bottom:438.080000pt;}
.y56{bottom:445.440000pt;}
.y1bf{bottom:446.240000pt;}
.y195{bottom:447.840000pt;}
.y16a{bottom:448.000000pt;}
.y29{bottom:454.880000pt;}
.y12a{bottom:459.413333pt;}
.ye2{bottom:460.640000pt;}
.y17c{bottom:461.280000pt;}
.y55{bottom:463.840000pt;}
.y1be{bottom:464.640000pt;}
.ya2{bottom:465.440000pt;}
.y194{bottom:466.240000pt;}
.y28{bottom:473.120000pt;}
.y169{bottom:474.400000pt;}
.y13a{bottom:480.800000pt;}
.y54{bottom:482.240000pt;}
.y1bd{bottom:483.040000pt;}
.y17b{bottom:488.000000pt;}
.y27{bottom:491.520000pt;}
.ya1{bottom:491.840000pt;}
.y193{bottom:492.640000pt;}
.y168{bottom:492.800000pt;}
.y53{bottom:500.640000pt;}
.y1bc{bottom:501.440000pt;}
.y17a{bottom:506.400000pt;}
.y26{bottom:509.920000pt;}
.ya0{bottom:510.240000pt;}
.y167{bottom:511.200000pt;}
.y192{bottom:518.720000pt;}
.y1bb{bottom:519.840000pt;}
.y129{bottom:520.160000pt;}
.y179{bottom:524.800000pt;}
.y52{bottom:526.720000pt;}
.y25{bottom:528.320000pt;}
.y9f{bottom:528.640000pt;}
.y166{bottom:529.600000pt;}
.y184{bottom:532.800000pt;}
.y127{bottom:534.480000pt;}
.y124{bottom:535.746667pt;}
.y1ba{bottom:538.240000pt;}
.y123{bottom:538.560000pt;}
.y178{bottom:543.200000pt;}
.y191{bottom:545.120000pt;}
.y24{bottom:546.720000pt;}
.y9e{bottom:547.040000pt;}
.y183{bottom:551.200000pt;}
.y51{bottom:553.440000pt;}
.y165{bottom:556.000000pt;}
.y1b9{bottom:556.640000pt;}
.y122{bottom:561.760000pt;}
.y190{bottom:563.680000pt;}
.y23{bottom:565.120000pt;}
.y9d{bottom:565.440000pt;}
.y177{bottom:569.600000pt;}
.y164{bottom:574.400000pt;}
.y1b8{bottom:575.040000pt;}
.y50{bottom:579.520000pt;}
.y18f{bottom:582.080000pt;}
.y22{bottom:583.520000pt;}
.y10b{bottom:584.213333pt;}
.y176{bottom:588.000000pt;}
.y9c{bottom:591.840000pt;}
.y163{bottom:592.800000pt;}
.y1b7{bottom:593.440000pt;}
.y21{bottom:601.920000pt;}
.y18e{bottom:604.640000pt;}
.y4f{bottom:606.240000pt;}
.y175{bottom:606.400000pt;}
.y121{bottom:607.040000pt;}
.y162{bottom:611.200000pt;}
.y1b6{bottom:611.840000pt;}
.y9b{bottom:618.240000pt;}
.y20{bottom:620.320000pt;}
.y174{bottom:624.800000pt;}
.y161{bottom:629.600000pt;}
.y1b5{bottom:630.240000pt;}
.y4e{bottom:632.640000pt;}
.y1f{bottom:638.720000pt;}
.yc8{bottom:640.960000pt;}
.y173{bottom:643.200000pt;}
.y9a{bottom:644.640000pt;}
.y1b4{bottom:648.640000pt;}
.y10a{bottom:649.600000pt;}
.y4d{bottom:651.040000pt;}
.y160{bottom:655.680000pt;}
.yc7{bottom:656.960000pt;}
.y1e{bottom:657.120000pt;}
.y172{bottom:661.600000pt;}
.y8c{bottom:662.880000pt;}
.y99{bottom:663.040000pt;}
.y108{bottom:663.946667pt;}
.y1b3{bottom:667.040000pt;}
.y107{bottom:668.000000pt;}
.y4c{bottom:669.440000pt;}
.y1d{bottom:675.520000pt;}
.y171{bottom:680.000000pt;}
.y15f{bottom:682.080000pt;}
.y1b2{bottom:685.440000pt;}
.y182{bottom:687.680000pt;}
.y4b{bottom:687.840000pt;}
.y98{bottom:689.440000pt;}
.y106{bottom:691.200000pt;}
.yb8{bottom:695.200000pt;}
.yba{bottom:696.320000pt;}
.y1c{bottom:701.600000pt;}
.ybc{bottom:702.400000pt;}
.y1b1{bottom:703.840000pt;}
.y170{bottom:706.400000pt;}
.y15e{bottom:708.480000pt;}
.y105{bottom:709.600000pt;}
.y4a{bottom:714.240000pt;}
.y181{bottom:714.400000pt;}
.y1b0{bottom:722.240000pt;}
.y97{bottom:723.840000pt;}
.y102{bottom:723.946667pt;}
.yc4{bottom:724.640000pt;}
.ycb{bottom:725.760000pt;}
.y1b{bottom:728.000000pt;}
.ybe{bottom:729.760000pt;}
.ycd{bottom:731.840000pt;}
.y49{bottom:732.640000pt;}
.y16f{bottom:732.800000pt;}
.y15d{bottom:735.200000pt;}
.y1af{bottom:740.640000pt;}
.yc6{bottom:746.880000pt;}
.ycc{bottom:748.000000pt;}
.y48{bottom:751.040000pt;}
.y101{bottom:751.360000pt;}
.y1a{bottom:754.720000pt;}
.y16e{bottom:755.360000pt;}
.y15c{bottom:757.760000pt;}
.y96{bottom:758.240000pt;}
.y1ae{bottom:759.040000pt;}
.ye1{bottom:761.920000pt;}
.y47{bottom:769.440000pt;}
.y100{bottom:777.440000pt;}
.yd{bottom:778.314699pt;}
.ye0{bottom:780.320000pt;}
.y19{bottom:781.120000pt;}
.y46{bottom:787.840000pt;}
.y95{bottom:792.640000pt;}
.y1ad{bottom:795.840000pt;}
.ydf{bottom:798.720000pt;}
.yc0{bottom:798.880000pt;}
.yc{bottom:799.517370pt;}
.yff{bottom:803.840000pt;}
.y45{bottom:806.240000pt;}
.ya{bottom:812.074313pt;}
.y1ac{bottom:814.240000pt;}
.y18{bottom:814.880000pt;}
.yde{bottom:817.120000pt;}
.y8{bottom:826.209433pt;}
.y94{bottom:827.040000pt;}
.yfe{bottom:830.560000pt;}
.y44{bottom:832.640000pt;}
.y17{bottom:833.920000pt;}
.ydd{bottom:835.520000pt;}
.y43{bottom:851.040000pt;}
.y7{bottom:853.407493pt;}
.yfd{bottom:856.640000pt;}
.yd0{bottom:858.013333pt;}
.y16{bottom:860.320000pt;}
.y93{bottom:861.440000pt;}
.y42{bottom:869.440000pt;}
.yfc{bottom:872.000000pt;}
.ydc{bottom:878.080000pt;}
.y92{bottom:879.840000pt;}
.y15{bottom:886.720000pt;}
.y6{bottom:886.978389pt;}
.y41{bottom:887.840000pt;}
.yfb{bottom:890.400000pt;}
.y91{bottom:898.240000pt;}
.y5{bottom:901.113503pt;}
.y40{bottom:906.240000pt;}
.yfa{bottom:908.800000pt;}
.y14{bottom:913.120000pt;}
.y18d{bottom:914.240000pt;}
.y90{bottom:916.640000pt;}
.y3f{bottom:924.640000pt;}
.yf8{bottom:927.840000pt;}
.ycf{bottom:935.040000pt;}
.yf9{bottom:939.200000pt;}
.y13{bottom:939.360000pt;}
.y18c{bottom:940.640000pt;}
.yf7{bottom:941.120000pt;}
.y8f{bottom:942.720000pt;}
.y1ab{bottom:943.040000pt;}
.y4{bottom:944.402290pt;}
.y3e{bottom:951.040000pt;}
.y18b{bottom:959.040000pt;}
.yce{bottom:961.120000pt;}
.y1aa{bottom:961.440000pt;}
.y12{bottom:967.200000pt;}
.y3d{bottom:969.440000pt;}
.yf6{bottom:977.440000pt;}
.y1a9{bottom:979.840000pt;}
.y3{bottom:981.506965pt;}
.y3c{bottom:987.840000pt;}
.y11{bottom:994.556480pt;}
.y8e{bottom:995.840000pt;}
.y1a8{bottom:1005.920000pt;}
.y3b{bottom:1014.240000pt;}
.y2{bottom:1017.728195pt;}
.y10{bottom:1027.200000pt;}
.y1a7{bottom:1032.320000pt;}
.y3a{bottom:1032.640000pt;}
.h9{height:11.484785pt;}
.h25{height:16.320000pt;}
.h27{height:16.481333pt;}
.h21{height:18.400000pt;}
.h22{height:18.401333pt;}
.h28{height:19.360000pt;}
.h6{height:20.471069pt;}
.h26{height:20.480000pt;}
.h3e{height:20.666667pt;}
.h1f{height:21.280000pt;}
.h56{height:22.250000pt;}
.h3{height:23.029952pt;}
.h36{height:23.333333pt;}
.h24{height:23.358667pt;}
.h8{height:25.364524pt;}
.h5{height:25.588836pt;}
.h30{height:26.372875pt;}
.h7{height:30.706603pt;}
.h2d{height:32.526875pt;}
.h48{height:33.808591pt;}
.h1d{height:34.171195pt;}
.h17{height:34.216643pt;}
.h51{height:34.228994pt;}
.h3c{height:34.271973pt;}
.h33{height:34.320880pt;}
.h46{height:35.822492pt;}
.h2c{height:35.840000pt;}
.h1b{height:36.206695pt;}
.h15{height:36.254852pt;}
.h4f{height:36.267938pt;}
.h3b{height:36.313477pt;}
.h31{height:36.365297pt;}
.h20{height:36.798667pt;}
.h35{height:36.800000pt;}
.h40{height:41.292000pt;}
.h4b{height:42.047866pt;}
.h10{height:42.084375pt;}
.h38{height:43.877501pt;}
.h12{height:43.998667pt;}
.h2a{height:45.812500pt;}
.h2f{height:46.733333pt;}
.h41{height:48.666667pt;}
.h19{height:50.066667pt;}
.h14{height:50.133333pt;}
.h4d{height:53.265333pt;}
.h39{height:53.333333pt;}
.h4{height:58.252131pt;}
.h49{height:58.479965pt;}
.h1e{height:58.579261pt;}
.h18{height:58.656821pt;}
.h52{height:59.207148pt;}
.h13{height:59.281250pt;}
.h3f{height:60.819336pt;}
.h47{height:61.963484pt;}
.h1c{height:62.068695pt;}
.h16{height:62.150875pt;}
.h50{height:62.733984pt;}
.hf{height:62.812500pt;}
.h32{height:62.902008pt;}
.hd{height:64.500000pt;}
.h37{height:64.627542pt;}
.h4c{height:64.659711pt;}
.h55{height:66.750000pt;}
.h54{height:68.980000pt;}
.h11{height:71.524375pt;}
.h34{height:74.361369pt;}
.h2e{height:75.156250pt;}
.h2b{height:75.612500pt;}
.h44{height:77.211852pt;}
.h23{height:77.280000pt;}
.h1a{height:77.342765pt;}
.he{height:77.795000pt;}
.h29{height:84.480000pt;}
.hc{height:85.785000pt;}
.h53{height:88.810723pt;}
.h4e{height:94.207292pt;}
.h42{height:103.406260pt;}
.h45{height:103.406794pt;}
.h3a{height:104.822588pt;}
.h4a{height:114.355148pt;}
.h43{height:114.524004pt;}
.h3d{height:122.624533pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.ha{height:1122.560000pt;}
.hb{height:1122.666667pt;}
.w21{width:12.600000pt;}
.w1f{width:12.666667pt;}
.w23{width:17.266667pt;}
.w14{width:22.880000pt;}
.w12{width:29.920000pt;}
.w13{width:37.920000pt;}
.wd{width:53.598667pt;}
.we{width:53.600000pt;}
.w9{width:53.920000pt;}
.wf{width:54.400000pt;}
.w1e{width:63.840000pt;}
.w17{width:69.920000pt;}
.w5{width:80.000000pt;}
.w10{width:82.880000pt;}
.w1b{width:94.560000pt;}
.wa{width:100.800000pt;}
.w1d{width:111.840000pt;}
.w1c{width:122.880000pt;}
.wc{width:127.040000pt;}
.w18{width:162.880000pt;}
.w1a{width:168.000000pt;}
.wb{width:173.920000pt;}
.w15{width:179.840000pt;}
.w16{width:230.880000pt;}
.w24{width:248.000000pt;}
.w8{width:254.733333pt;}
.w19{width:255.040000pt;}
.w6{width:284.000000pt;}
.w2{width:308.322176pt;}
.w7{width:362.533333pt;}
.w20{width:382.066667pt;}
.w22{width:442.066667pt;}
.w11{width:468.000000pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x61{left:1.685915pt;}
.x14{left:3.506000pt;}
.x1e{left:5.250000pt;}
.x67{left:8.480000pt;}
.x31{left:9.600000pt;}
.x12{left:11.250000pt;}
.x1b{left:13.000000pt;}
.x69{left:14.560000pt;}
.x36{left:15.520000pt;}
.x49{left:16.800000pt;}
.x4c{left:18.720000pt;}
.x3d{left:21.280000pt;}
.x15{left:23.842000pt;}
.x2e{left:25.340133pt;}
.x4a{left:27.360000pt;}
.x6d{left:28.640000pt;}
.x4b{left:29.760000pt;}
.x3f{left:32.160000pt;}
.x45{left:33.760000pt;}
.x1a{left:35.583333pt;}
.x2d{left:37.093200pt;}
.x6e{left:42.400000pt;}
.x6f{left:43.840000pt;}
.x47{left:46.400000pt;}
.x60{left:47.795867pt;}
.x3b{left:49.760000pt;}
.x62{left:50.827931pt;}
.x1{left:53.006678pt;}
.x8d{left:54.166533pt;}
.x7{left:57.423901pt;}
.x5f{left:62.040300pt;}
.x38{left:63.360000pt;}
.x9c{left:66.666667pt;}
.x8c{left:67.749867pt;}
.x13{left:69.746000pt;}
.x52{left:71.520000pt;}
.x34{left:73.760000pt;}
.xf{left:75.520000pt;}
.x5e{left:77.658000pt;}
.x48{left:78.880000pt;}
.x7a{left:82.951200pt;}
.x3{left:88.344460pt;}
.x8e{left:91.041600pt;}
.x7c{left:92.040664pt;}
.x32{left:94.400000pt;}
.x8b{left:96.291600pt;}
.x4{left:98.062355pt;}
.x56{left:99.680000pt;}
.x79{left:101.067602pt;}
.x77{left:104.241867pt;}
.x3a{left:106.080000pt;}
.x8a{left:109.791600pt;}
.x75{left:117.850744pt;}
.x53{left:121.760000pt;}
.x9b{left:123.520000pt;}
.x28{left:125.760000pt;}
.x63{left:126.923867pt;}
.x90{left:128.480000pt;}
.x5d{left:137.927867pt;}
.x10{left:139.360000pt;}
.x25{left:144.125733pt;}
.x1c{left:145.708267pt;}
.xe{left:149.600000pt;}
.x65{left:151.680000pt;}
.x2a{left:158.499867pt;}
.x50{left:160.320000pt;}
.x70{left:166.080000pt;}
.x2c{left:167.002133pt;}
.x35{left:174.560000pt;}
.x7b{left:175.497008pt;}
.x8{left:177.120000pt;}
.x99{left:179.200000pt;}
.x51{left:184.320000pt;}
.x83{left:185.546667pt;}
.x55{left:190.560000pt;}
.x26{left:196.829200pt;}
.x1d{left:199.124933pt;}
.x6c{left:200.320000pt;}
.x9{left:204.486080pt;}
.x73{left:205.813333pt;}
.x33{left:207.520000pt;}
.x54{left:209.600000pt;}
.x20{left:212.880000pt;}
.x22{left:215.296000pt;}
.x18{left:217.541600pt;}
.x24{left:223.014800pt;}
.x19{left:225.416667pt;}
.x4d{left:230.240000pt;}
.x74{left:232.446267pt;}
.x7d{left:234.283467pt;}
.x76{left:235.245122pt;}
.x78{left:237.748133pt;}
.x4e{left:240.320000pt;}
.x85{left:243.736933pt;}
.x2b{left:246.522800pt;}
.xd{left:252.000000pt;}
.x93{left:254.400000pt;}
.x95{left:258.240000pt;}
.x17{left:259.613333pt;}
.x66{left:264.160000pt;}
.xa{left:266.240000pt;}
.x5b{left:271.200000pt;}
.x29{left:272.880000pt;}
.x39{left:275.200000pt;}
.x97{left:277.440000pt;}
.xc{left:280.960000pt;}
.x87{left:282.342400pt;}
.x88{left:290.605867pt;}
.x84{left:302.751600pt;}
.x86{left:305.547600pt;}
.x5c{left:307.613333pt;}
.x21{left:309.290533pt;}
.xb{left:324.160000pt;}
.x37{left:327.680000pt;}
.x57{left:334.400000pt;}
.x23{left:347.926133pt;}
.x68{left:358.720000pt;}
.x11{left:363.413333pt;}
.x30{left:365.280000pt;}
.x91{left:385.440000pt;}
.x92{left:386.560000pt;}
.x94{left:393.120000pt;}
.x96{left:394.080000pt;}
.x2{left:396.666641pt;}
.x5{left:432.004436pt;}
.x6{left:441.722318pt;}
.x16{left:443.360000pt;}
.x3c{left:475.520000pt;}
.x6a{left:481.600000pt;}
.x7f{left:483.413333pt;}
.x4f{left:488.320000pt;}
.x89{left:492.000000pt;}
.x80{left:496.000000pt;}
.x3e{left:502.080000pt;}
.x8f{left:511.360000pt;}
.x2f{left:527.520000pt;}
.x40{left:529.120000pt;}
.x1f{left:543.520000pt;}
.x6b{left:547.680000pt;}
.x98{left:548.960000pt;}
.x9a{left:551.200000pt;}
.x41{left:555.360000pt;}
.x64{left:558.720000pt;}
.x71{left:571.413333pt;}
.x27{left:575.360000pt;}
.x7e{left:579.520000pt;}
.x42{left:582.720000pt;}
.x72{left:584.000000pt;}
.x81{left:607.145333pt;}
.x43{left:609.920000pt;}
.x82{left:619.680000pt;}
.x58{left:627.840000pt;}
.x44{left:637.120000pt;}
.x5a{left:651.360000pt;}
.x59{left:678.080000pt;}
.x46{left:679.680000pt;}
}




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