
    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_378432427767df802aa1bc74.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.085938;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_a3e3c2c4278a83ae9337b9d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.997559;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_65c823b1b0cc9f1af53973fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_b0d0ee7f95cb018cddf71d87.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.110000;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_a46f991efbdac57000aef880.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.991699;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.241849,0.000000,-0.063316,0.241849,0,0);-ms-transform:matrix(0.241849,0.000000,-0.063316,0.241849,0,0);-webkit-transform:matrix(0.241849,0.000000,-0.063316,0.241849,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);}
.m2{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:-1.992000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.000000px;}
.v2{vertical-align:36.000000px;}
.v3{vertical-align:42.000000px;}
.lse3{letter-spacing:-0.012404px;}
.lse2{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.002400px;}
.ls30{letter-spacing:0.012000px;}
.lsbd{letter-spacing:0.024000px;}
.lsa{letter-spacing:0.030000px;}
.lsb{letter-spacing:0.031200px;}
.lsc{letter-spacing:0.036000px;}
.ls50{letter-spacing:0.042000px;}
.lsd{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.060000px;}
.ls4c{letter-spacing:0.066000px;}
.lsc4{letter-spacing:0.078000px;}
.ls1f{letter-spacing:0.090000px;}
.lsc1{letter-spacing:0.108000px;}
.ls65{letter-spacing:0.114000px;}
.ls29{letter-spacing:0.132000px;}
.ls76{letter-spacing:0.144000px;}
.lsa3{letter-spacing:0.150000px;}
.ls7b{letter-spacing:0.168000px;}
.ls34{letter-spacing:0.174000px;}
.ls97{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.186000px;}
.ls4a{letter-spacing:0.198000px;}
.ls6d{letter-spacing:0.204000px;}
.lsa5{letter-spacing:0.210000px;}
.ls7e{letter-spacing:0.228000px;}
.lsb6{letter-spacing:0.234000px;}
.ls53{letter-spacing:0.240000px;}
.ls66{letter-spacing:0.246000px;}
.lsc2{letter-spacing:0.252000px;}
.lsb0{letter-spacing:0.258000px;}
.ls2a{letter-spacing:0.264000px;}
.ls43{letter-spacing:0.276000px;}
.ls48{letter-spacing:0.288000px;}
.ls67{letter-spacing:0.300000px;}
.ls37{letter-spacing:0.306000px;}
.ls15{letter-spacing:0.312000px;}
.lsde{letter-spacing:0.318000px;}
.ls6c{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.342000px;}
.ls13{letter-spacing:0.348000px;}
.ls14{letter-spacing:0.354000px;}
.lscd{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.378000px;}
.ls4b{letter-spacing:0.384000px;}
.lsdd{letter-spacing:0.396000px;}
.ls7f{letter-spacing:0.414000px;}
.ls9c{letter-spacing:0.420000px;}
.ls41{letter-spacing:0.432000px;}
.lsa2{letter-spacing:0.450000px;}
.ls33{letter-spacing:0.456000px;}
.ls80{letter-spacing:0.498000px;}
.lsb5{letter-spacing:0.510000px;}
.ls3{letter-spacing:0.514200px;}
.ls2{letter-spacing:0.516000px;}
.ls68{letter-spacing:0.528000px;}
.ls69{letter-spacing:0.534000px;}
.lsc6{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.552000px;}
.ls2f{letter-spacing:0.558000px;}
.ls93{letter-spacing:0.570000px;}
.ls96{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.582000px;}
.ls2c{letter-spacing:0.588000px;}
.ls2e{letter-spacing:0.594000px;}
.ls99{letter-spacing:0.606000px;}
.ls1a{letter-spacing:0.618000px;}
.ls70{letter-spacing:0.630000px;}
.ls3b{letter-spacing:0.636000px;}
.lsc5{letter-spacing:0.642000px;}
.ls62{letter-spacing:0.648000px;}
.ls56{letter-spacing:0.672000px;}
.ls5e{letter-spacing:0.678000px;}
.lsdf{letter-spacing:0.684000px;}
.ls82{letter-spacing:0.696000px;}
.lsaa{letter-spacing:0.702000px;}
.ls39{letter-spacing:0.714000px;}
.lsc9{letter-spacing:0.720000px;}
.lsc8{letter-spacing:0.726000px;}
.ls6{letter-spacing:0.774000px;}
.ls7{letter-spacing:0.776400px;}
.ls6a{letter-spacing:0.780000px;}
.ls6f{letter-spacing:0.786000px;}
.lsca{letter-spacing:0.798000px;}
.ls44{letter-spacing:0.804000px;}
.lsd4{letter-spacing:0.810000px;}
.lsaf{letter-spacing:0.816000px;}
.ls5d{letter-spacing:0.834000px;}
.lsbc{letter-spacing:0.858000px;}
.ls63{letter-spacing:0.864000px;}
.ls28{letter-spacing:0.870000px;}
.ls27{letter-spacing:0.875100px;}
.ls26{letter-spacing:0.876000px;}
.ls4f{letter-spacing:0.894000px;}
.ls71{letter-spacing:0.900000px;}
.ls84{letter-spacing:0.906000px;}
.ls4d{letter-spacing:0.912000px;}
.ls36{letter-spacing:0.924000px;}
.ls8{letter-spacing:0.930000px;}
.lsd1{letter-spacing:0.936000px;}
.ls83{letter-spacing:0.942000px;}
.ls18{letter-spacing:0.954000px;}
.lsce{letter-spacing:0.972000px;}
.lsb7{letter-spacing:0.996000px;}
.ls61{letter-spacing:1.002000px;}
.ls7c{letter-spacing:1.014000px;}
.lsbe{letter-spacing:1.020000px;}
.ls54{letter-spacing:1.032000px;}
.ls5c{letter-spacing:1.038000px;}
.ls3c{letter-spacing:1.056000px;}
.ls6e{letter-spacing:1.068000px;}
.ls22{letter-spacing:1.086000px;}
.ls86{letter-spacing:1.092000px;}
.ls3d{letter-spacing:1.098000px;}
.ls42{letter-spacing:1.122000px;}
.ls45{letter-spacing:1.170000px;}
.ls81{letter-spacing:1.182000px;}
.ls51{letter-spacing:1.200000px;}
.lse0{letter-spacing:1.206000px;}
.ls7a{letter-spacing:1.224000px;}
.lsb1{letter-spacing:1.236000px;}
.lse1{letter-spacing:1.242000px;}
.lse{letter-spacing:1.260000px;}
.lsf{letter-spacing:1.264800px;}
.ls95{letter-spacing:1.266000px;}
.lsda{letter-spacing:1.278000px;}
.lsdb{letter-spacing:1.308000px;}
.ls58{letter-spacing:1.344000px;}
.ls8c{letter-spacing:1.386000px;}
.lsb9{letter-spacing:1.392000px;}
.ls3f{letter-spacing:1.404000px;}
.ls64{letter-spacing:1.440000px;}
.lsd5{letter-spacing:1.476000px;}
.lsab{letter-spacing:1.494000px;}
.lsb2{letter-spacing:1.512000px;}
.ls23{letter-spacing:1.518000px;}
.ls17{letter-spacing:1.536000px;}
.ls59{letter-spacing:1.548000px;}
.ls46{letter-spacing:1.578000px;}
.lsbb{letter-spacing:1.590000px;}
.lsa7{letter-spacing:1.608000px;}
.lsb3{letter-spacing:1.644000px;}
.ls1d{letter-spacing:1.650000px;}
.lsba{letter-spacing:1.680000px;}
.lsa1{letter-spacing:1.692000px;}
.ls91{letter-spacing:1.728000px;}
.lsa9{letter-spacing:1.740000px;}
.ls5{letter-spacing:1.746000px;}
.lsb4{letter-spacing:1.758000px;}
.ls90{letter-spacing:1.770000px;}
.ls1e{letter-spacing:1.782000px;}
.ls75{letter-spacing:1.794000px;}
.ls49{letter-spacing:1.806000px;}
.ls60{letter-spacing:1.830000px;}
.ls72{letter-spacing:1.842000px;}
.lsc0{letter-spacing:1.860000px;}
.ls40{letter-spacing:1.884000px;}
.lsc3{letter-spacing:1.902000px;}
.lsa8{letter-spacing:1.950000px;}
.ls38{letter-spacing:1.962000px;}
.lsac{letter-spacing:1.968000px;}
.ls73{letter-spacing:1.986000px;}
.ls88{letter-spacing:1.998000px;}
.ls7d{letter-spacing:2.028000px;}
.ls21{letter-spacing:2.064000px;}
.ls1b{letter-spacing:2.100000px;}
.ls74{letter-spacing:2.112000px;}
.ls5f{letter-spacing:2.118000px;}
.lscc{letter-spacing:2.124000px;}
.ls32{letter-spacing:2.148000px;}
.ls31{letter-spacing:2.154000px;}
.ls94{letter-spacing:2.166000px;}
.ls11{letter-spacing:2.172000px;}
.ls9e{letter-spacing:2.208000px;}
.ls9a{letter-spacing:2.220000px;}
.ls5a{letter-spacing:2.274000px;}
.ls9b{letter-spacing:2.280000px;}
.ls98{letter-spacing:2.304000px;}
.lsbf{letter-spacing:2.310000px;}
.ls9{letter-spacing:2.340000px;}
.lsd9{letter-spacing:2.352000px;}
.ls87{letter-spacing:2.376000px;}
.ls52{letter-spacing:2.424000px;}
.ls55{letter-spacing:2.454000px;}
.ls89{letter-spacing:2.460000px;}
.ls5b{letter-spacing:2.490000px;}
.lsdc{letter-spacing:2.496000px;}
.ls8a{letter-spacing:2.550000px;}
.lsa6{letter-spacing:2.562000px;}
.ls77{letter-spacing:2.634000px;}
.ls9f{letter-spacing:2.652000px;}
.ls8f{letter-spacing:2.718000px;}
.ls2d{letter-spacing:2.730000px;}
.ls20{letter-spacing:2.742000px;}
.lsae{letter-spacing:2.748000px;}
.ls78{letter-spacing:2.772000px;}
.lsd7{letter-spacing:2.784000px;}
.ls8d{letter-spacing:2.796000px;}
.lscf{letter-spacing:2.826000px;}
.ls8b{letter-spacing:2.892000px;}
.ls85{letter-spacing:2.898000px;}
.lsd0{letter-spacing:2.958000px;}
.lsad{letter-spacing:3.042000px;}
.ls92{letter-spacing:3.066000px;}
.lscb{letter-spacing:3.084000px;}
.ls4e{letter-spacing:3.108000px;}
.ls6b{letter-spacing:3.198000px;}
.ls9d{letter-spacing:3.270000px;}
.lsd6{letter-spacing:3.306000px;}
.ls79{letter-spacing:3.366000px;}
.lsd2{letter-spacing:3.504000px;}
.lsd3{letter-spacing:3.510000px;}
.ls12{letter-spacing:3.588000px;}
.lsa4{letter-spacing:3.702000px;}
.lsc7{letter-spacing:3.852000px;}
.ls8e{letter-spacing:3.972000px;}
.lsa0{letter-spacing:4.026000px;}
.ls35{letter-spacing:4.248000px;}
.ls47{letter-spacing:4.374000px;}
.ls57{letter-spacing:4.554000px;}
.lsb8{letter-spacing:4.878000px;}
.ls3e{letter-spacing:4.980000px;}
.lsd8{letter-spacing:5.052000px;}
.ls3a{letter-spacing:5.202000px;}
.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;}
}
.ws1{word-spacing:-21.588000px;}
.ws76{word-spacing:-20.160000px;}
.wsb0{word-spacing:-20.028000px;}
.wsd9{word-spacing:-19.524000px;}
.ws79{word-spacing:-19.074000px;}
.ws91{word-spacing:-18.990000px;}
.ws5d{word-spacing:-18.792000px;}
.ws4c{word-spacing:-18.768000px;}
.wsae{word-spacing:-18.690000px;}
.ws59{word-spacing:-18.162000px;}
.wsc1{word-spacing:-17.964000px;}
.ws95{word-spacing:-17.868000px;}
.ws11f{word-spacing:-17.664000px;}
.ws102{word-spacing:-17.550000px;}
.ws90{word-spacing:-17.520000px;}
.ws22{word-spacing:-17.514000px;}
.wsc2{word-spacing:-17.496000px;}
.wsda{word-spacing:-17.394000px;}
.wsc3{word-spacing:-17.382000px;}
.ws1f{word-spacing:-17.268000px;}
.ws1d{word-spacing:-17.226000px;}
.ws4d{word-spacing:-17.028000px;}
.ws3{word-spacing:-17.016000px;}
.ws5c{word-spacing:-16.962000px;}
.ws11e{word-spacing:-12.833100px;}
.ws143{word-spacing:-12.480000px;}
.ws144{word-spacing:-12.468000px;}
.ws106{word-spacing:-12.413100px;}
.wsad{word-spacing:-12.047100px;}
.ws1e{word-spacing:-11.483100px;}
.ws7a{word-spacing:-11.441100px;}
.wsdb{word-spacing:-11.279100px;}
.ws5e{word-spacing:-11.159100px;}
.wsdc{word-spacing:-10.565100px;}
.ws122{word-spacing:-10.560000px;}
.ws4b{word-spacing:-10.499100px;}
.wsd8{word-spacing:-10.259100px;}
.ws5a{word-spacing:-10.253100px;}
.ws92{word-spacing:-10.199100px;}
.ws75{word-spacing:-10.109100px;}
.ws105{word-spacing:-10.055100px;}
.ws21{word-spacing:-10.043100px;}
.ws94{word-spacing:-10.025100px;}
.ws103{word-spacing:-9.917100px;}
.ws23{word-spacing:-9.881100px;}
.ws74{word-spacing:-9.857100px;}
.ws93{word-spacing:-9.827100px;}
.ws120{word-spacing:-9.725100px;}
.ws78{word-spacing:-9.683100px;}
.ws77{word-spacing:-9.659100px;}
.ws20{word-spacing:-9.635100px;}
.ws104{word-spacing:-9.587100px;}
.wsaf{word-spacing:-9.533100px;}
.ws5b{word-spacing:-9.419100px;}
.ws146{word-spacing:-0.043415px;}
.ws145{word-spacing:-0.042000px;}
.ws2{word-spacing:0.000000px;}
.ws34{word-spacing:0.036000px;}
.ws109{word-spacing:0.042000px;}
.ws9d{word-spacing:0.078000px;}
.ws11c{word-spacing:0.090000px;}
.ws55{word-spacing:0.108000px;}
.ws58{word-spacing:0.120000px;}
.wsc{word-spacing:0.126000px;}
.wsb{word-spacing:0.132000px;}
.wse1{word-spacing:0.150000px;}
.ws17{word-spacing:0.180000px;}
.ws2a{word-spacing:0.192000px;}
.ws67{word-spacing:0.210000px;}
.ws24{word-spacing:0.222000px;}
.ws7e{word-spacing:0.258000px;}
.ws13f{word-spacing:0.264000px;}
.ws9b{word-spacing:0.306000px;}
.ws110{word-spacing:0.318000px;}
.wse4{word-spacing:0.324000px;}
.ws2d{word-spacing:0.348000px;}
.ws10d{word-spacing:0.354000px;}
.ws2b{word-spacing:0.360000px;}
.ws86{word-spacing:0.390000px;}
.wse5{word-spacing:0.396000px;}
.ws113{word-spacing:0.420000px;}
.wse8{word-spacing:0.450000px;}
.ws53{word-spacing:0.462000px;}
.wsc8{word-spacing:0.480000px;}
.ws37{word-spacing:0.486000px;}
.ws96{word-spacing:0.504000px;}
.wsce{word-spacing:0.516000px;}
.wsc6{word-spacing:0.540000px;}
.wse3{word-spacing:0.552000px;}
.wsbf{word-spacing:0.564000px;}
.ws7f{word-spacing:0.582000px;}
.ws136{word-spacing:0.606000px;}
.wsfb{word-spacing:0.654000px;}
.wsf4{word-spacing:0.666000px;}
.wsaa{word-spacing:0.672000px;}
.ws11{word-spacing:0.678000px;}
.ws9f{word-spacing:0.690000px;}
.wsc5{word-spacing:0.702000px;}
.ws101{word-spacing:0.708000px;}
.ws4{word-spacing:0.750000px;}
.ws62{word-spacing:0.780000px;}
.wse7{word-spacing:0.798000px;}
.ws12a{word-spacing:0.804000px;}
.ws11a{word-spacing:0.810000px;}
.ws127{word-spacing:0.816000px;}
.ws3b{word-spacing:0.822000px;}
.wsf9{word-spacing:0.876000px;}
.ws88{word-spacing:0.882000px;}
.ws51{word-spacing:0.888000px;}
.ws2f{word-spacing:0.894000px;}
.ws13c{word-spacing:0.924000px;}
.wsa3{word-spacing:0.942000px;}
.ws49{word-spacing:0.948000px;}
.ws6{word-spacing:0.954000px;}
.wsb1{word-spacing:0.966000px;}
.ws15{word-spacing:0.984000px;}
.ws6f{word-spacing:1.014000px;}
.ws54{word-spacing:1.044000px;}
.ws66{word-spacing:1.050000px;}
.wse0{word-spacing:1.056000px;}
.ws8c{word-spacing:1.062000px;}
.ws5{word-spacing:1.074000px;}
.ws85{word-spacing:1.116000px;}
.wsea{word-spacing:1.122000px;}
.ws30{word-spacing:1.164000px;}
.wsde{word-spacing:1.182000px;}
.ws13d{word-spacing:1.188000px;}
.wsfe{word-spacing:1.200000px;}
.ws25{word-spacing:1.206000px;}
.ws10{word-spacing:1.212000px;}
.wse2{word-spacing:1.248000px;}
.wsa0{word-spacing:1.266000px;}
.ws80{word-spacing:1.278000px;}
.wsd4{word-spacing:1.284000px;}
.wsf8{word-spacing:1.326000px;}
.wsb5{word-spacing:1.344000px;}
.ws40{word-spacing:1.356000px;}
.ws12d{word-spacing:1.374000px;}
.wsa5{word-spacing:1.398000px;}
.wsb3{word-spacing:1.410000px;}
.ws33{word-spacing:1.422000px;}
.wsc4{word-spacing:1.440000px;}
.ws36{word-spacing:1.452000px;}
.ws89{word-spacing:1.464000px;}
.ws82{word-spacing:1.470000px;}
.ws12{word-spacing:1.494000px;}
.wscd{word-spacing:1.500000px;}
.wsf2{word-spacing:1.512000px;}
.ws65{word-spacing:1.524000px;}
.wsd0{word-spacing:1.596000px;}
.ws47{word-spacing:1.620000px;}
.ws7c{word-spacing:1.638000px;}
.ws11d{word-spacing:1.650000px;}
.wseb{word-spacing:1.722000px;}
.wsa2{word-spacing:1.734000px;}
.ws112{word-spacing:1.794000px;}
.ws19{word-spacing:1.830000px;}
.wsa7{word-spacing:1.842000px;}
.ws87{word-spacing:1.884000px;}
.ws111{word-spacing:1.890000px;}
.ws16{word-spacing:1.902000px;}
.ws108{word-spacing:1.914000px;}
.ws12e{word-spacing:1.920000px;}
.ws71{word-spacing:1.956000px;}
.ws68{word-spacing:1.968000px;}
.wsc9{word-spacing:2.028000px;}
.ws3d{word-spacing:2.052000px;}
.ws9{word-spacing:2.070000px;}
.ws137{word-spacing:2.100000px;}
.ws32{word-spacing:2.136000px;}
.ws8a{word-spacing:2.142000px;}
.ws8{word-spacing:2.148000px;}
.ws9c{word-spacing:2.160000px;}
.ws14{word-spacing:2.172000px;}
.wsa6{word-spacing:2.178000px;}
.wsd3{word-spacing:2.202000px;}
.ws129{word-spacing:2.280000px;}
.ws83{word-spacing:2.286000px;}
.ws2e{word-spacing:2.316000px;}
.wsee{word-spacing:2.334000px;}
.ws107{word-spacing:2.340000px;}
.ws134{word-spacing:2.382000px;}
.wsd{word-spacing:2.460000px;}
.wsdd{word-spacing:2.478000px;}
.ws56{word-spacing:2.508000px;}
.ws2c{word-spacing:2.520000px;}
.ws141{word-spacing:2.538000px;}
.ws3f{word-spacing:2.544000px;}
.ws63{word-spacing:2.586000px;}
.wsb9{word-spacing:2.604000px;}
.wsa1{word-spacing:2.616000px;}
.ws28{word-spacing:2.712000px;}
.ws70{word-spacing:2.724000px;}
.ws123{word-spacing:2.748000px;}
.ws57{word-spacing:2.808000px;}
.ws48{word-spacing:2.814000px;}
.ws61{word-spacing:2.826000px;}
.ws42{word-spacing:2.868000px;}
.ws3a{word-spacing:2.880000px;}
.ws115{word-spacing:2.922000px;}
.ws12c{word-spacing:2.958000px;}
.wsa8{word-spacing:2.964000px;}
.wsf5{word-spacing:3.012000px;}
.ws116{word-spacing:3.108000px;}
.ws10a{word-spacing:3.114000px;}
.ws7d{word-spacing:3.138000px;}
.wsca{word-spacing:3.150000px;}
.ws133{word-spacing:3.198000px;}
.wsf6{word-spacing:3.210000px;}
.ws4a{word-spacing:3.294000px;}
.ws41{word-spacing:3.306000px;}
.ws139{word-spacing:3.336000px;}
.ws138{word-spacing:3.360000px;}
.wsfa{word-spacing:3.408000px;}
.wsff{word-spacing:3.444000px;}
.ws128{word-spacing:3.456000px;}
.wsa4{word-spacing:3.468000px;}
.ws7b{word-spacing:3.474000px;}
.wscb{word-spacing:3.564000px;}
.wscc{word-spacing:3.606000px;}
.wsb8{word-spacing:3.744000px;}
.ws72{word-spacing:3.834000px;}
.ws135{word-spacing:3.840000px;}
.ws9a{word-spacing:3.912000px;}
.wsef{word-spacing:3.936000px;}
.ws81{word-spacing:3.942000px;}
.wsbd{word-spacing:3.954000px;}
.ws124{word-spacing:3.978000px;}
.ws46{word-spacing:4.008000px;}
.ws5f{word-spacing:4.068000px;}
.ws3c{word-spacing:4.080000px;}
.ws4e{word-spacing:4.134000px;}
.wsab{word-spacing:4.170000px;}
.ws8d{word-spacing:4.332000px;}
.ws44{word-spacing:4.494000px;}
.ws6b{word-spacing:4.542000px;}
.ws73{word-spacing:4.578000px;}
.wsc7{word-spacing:4.608000px;}
.ws1a{word-spacing:4.626000px;}
.ws100{word-spacing:4.668000px;}
.ws7{word-spacing:4.710000px;}
.ws29{word-spacing:4.758000px;}
.ws13e{word-spacing:4.764000px;}
.ws6a{word-spacing:4.830000px;}
.wsed{word-spacing:4.908000px;}
.ws4f{word-spacing:4.938000px;}
.ws13b{word-spacing:4.998000px;}
.ws8f{word-spacing:5.064000px;}
.ws1b{word-spacing:5.160000px;}
.wscf{word-spacing:5.382000px;}
.wsb2{word-spacing:5.388000px;}
.wsbe{word-spacing:5.418000px;}
.ws11b{word-spacing:5.424000px;}
.wsa{word-spacing:5.460000px;}
.wsd5{word-spacing:5.610000px;}
.wsec{word-spacing:5.616000px;}
.ws13{word-spacing:5.634000px;}
.wsba{word-spacing:5.664000px;}
.ws45{word-spacing:5.676000px;}
.wsf3{word-spacing:5.712000px;}
.ws125{word-spacing:5.724000px;}
.wsc0{word-spacing:5.742000px;}
.ws13a{word-spacing:5.826000px;}
.ws98{word-spacing:5.850000px;}
.ws131{word-spacing:5.880000px;}
.ws8b{word-spacing:5.904000px;}
.ws27{word-spacing:5.934000px;}
.wsd1{word-spacing:5.988000px;}
.ws52{word-spacing:6.018000px;}
.wsd7{word-spacing:6.042000px;}
.wsfc{word-spacing:6.090000px;}
.wsd2{word-spacing:6.144000px;}
.wse{word-spacing:6.246000px;}
.ws1c{word-spacing:6.264000px;}
.wsf0{word-spacing:6.288000px;}
.ws18{word-spacing:6.294000px;}
.ws60{word-spacing:6.390000px;}
.ws10c{word-spacing:6.540000px;}
.ws10f{word-spacing:6.546000px;}
.wsf7{word-spacing:6.582000px;}
.ws35{word-spacing:6.744000px;}
.ws119{word-spacing:6.750000px;}
.ws12f{word-spacing:6.756000px;}
.ws26{word-spacing:6.900000px;}
.ws8e{word-spacing:6.906000px;}
.ws10e{word-spacing:7.032000px;}
.wsb4{word-spacing:7.050000px;}
.wsac{word-spacing:7.134000px;}
.ws64{word-spacing:7.206000px;}
.wsd6{word-spacing:7.284000px;}
.ws6d{word-spacing:7.464000px;}
.ws9e{word-spacing:7.590000px;}
.ws140{word-spacing:7.872000px;}
.wsa9{word-spacing:7.992000px;}
.wse9{word-spacing:8.022000px;}
.ws6c{word-spacing:8.166000px;}
.ws31{word-spacing:8.190000px;}
.ws84{word-spacing:8.232000px;}
.ws114{word-spacing:8.562000px;}
.ws6e{word-spacing:8.934000px;}
.ws126{word-spacing:9.078000px;}
.ws118{word-spacing:9.450000px;}
.wsb6{word-spacing:9.990000px;}
.ws130{word-spacing:10.362000px;}
.ws97{word-spacing:10.542000px;}
.ws43{word-spacing:11.316000px;}
.ws10b{word-spacing:11.346000px;}
.ws132{word-spacing:11.790000px;}
.ws39{word-spacing:12.000000px;}
.wsb7{word-spacing:12.042000px;}
.wsf1{word-spacing:12.414000px;}
.wsf{word-spacing:12.618000px;}
.wsfd{word-spacing:12.678000px;}
.ws38{word-spacing:13.050000px;}
.ws99{word-spacing:13.176000px;}
.wsbb{word-spacing:13.386000px;}
.wsbc{word-spacing:13.602000px;}
.wse6{word-spacing:14.190000px;}
.ws69{word-spacing:14.328000px;}
.ws117{word-spacing:14.826000px;}
.ws3e{word-spacing:15.216000px;}
.wsdf{word-spacing:15.768000px;}
.ws12b{word-spacing:16.188000px;}
.ws50{word-spacing:17.142000px;}
.ws142{word-spacing:271.878000px;}
.ws147{word-spacing:409.498800px;}
.ws148{word-spacing:412.645200px;}
.ws0{word-spacing:425.226000px;}
.ws121{word-spacing:450.630000px;}
._17{margin-left:-17.142000px;}
._11{margin-left:-15.216000px;}
._1e{margin-left:-13.674000px;}
._c{margin-left:-12.618000px;}
._14{margin-left:-11.316000px;}
._1b{margin-left:-9.990000px;}
._e{margin-left:-8.190000px;}
._a{margin-left:-6.246000px;}
._6{margin-left:-4.710000px;}
._12{margin-left:-3.672000px;}
._8{margin-left:-2.148000px;}
._4{margin-left:-1.074000px;}
._3{width:1.056000px;}
._7{width:2.112000px;}
._f{width:3.666000px;}
._5{width:4.686000px;}
._9{width:6.204000px;}
._d{width:8.184000px;}
._1a{width:9.966000px;}
._13{width:11.286000px;}
._b{width:12.606000px;}
._1c{width:13.608000px;}
._10{width:15.180000px;}
._16{width:17.094000px;}
._1{width:254.394000px;}
._20{width:1539.486000px;}
._1d{width:1541.406000px;}
._21{width:1545.102000px;}
._1f{width:1550.910000px;}
._15{width:1559.934000px;}
._18{width:1561.086000px;}
._2{width:1562.430000px;}
._19{width:1565.550000px;}
._0{width:1571.358000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.300000px;}
.fs7{font-size:39.600000px;}
.fsa{font-size:45.600000px;}
.fs8{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:49.617670px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:41.934000px;}
.y202{bottom:111.216000px;}
.yc6{bottom:112.143000px;}
.y1bc{bottom:117.349500px;}
.y94{bottom:118.048500px;}
.ya0{bottom:120.388500px;}
.y128{bottom:120.643500px;}
.y173{bottom:122.349000px;}
.y6f{bottom:124.273500px;}
.y201{bottom:124.716000px;}
.yd0{bottom:130.365000px;}
.y44{bottom:130.471500px;}
.y116{bottom:130.845000px;}
.y1bb{bottom:130.849500px;}
.ye5{bottom:132.513000px;}
.y127{bottom:134.323500px;}
.yc5{bottom:134.697000px;}
.y172{bottom:136.515000px;}
.y200{bottom:138.216000px;}
.y93{bottom:140.602500px;}
.y9f{bottom:142.941000px;}
.y1ba{bottom:144.835500px;}
.y6e{bottom:146.826000px;}
.y126{bottom:148.489500px;}
.y171{bottom:150.681000px;}
.y84{bottom:151.423500px;}
.y1ff{bottom:151.716000px;}
.ycf{bottom:152.919000px;}
.y115{bottom:153.399000px;}
.y43{bottom:154.411500px;}
.ye4{bottom:155.065500px;}
.yc4{bottom:157.249500px;}
.y1b9{bottom:159.001500px;}
.y125{bottom:162.475500px;}
.y92{bottom:163.155000px;}
.y170{bottom:164.667000px;}
.y83{bottom:164.923500px;}
.y1fe{bottom:165.216000px;}
.y9e{bottom:165.495000px;}
.y6d{bottom:169.380000px;}
.y1b8{bottom:172.501500px;}
.yce{bottom:175.471500px;}
.y114{bottom:175.951500px;}
.y124{bottom:176.155500px;}
.ye3{bottom:177.619500px;}
.y16f{bottom:178.167000px;}
.y42{bottom:178.351500px;}
.y1fd{bottom:178.716000px;}
.yc3{bottom:179.803500px;}
.y91{bottom:185.709000px;}
.y1b7{bottom:186.001500px;}
.y9d{bottom:188.047500px;}
.y123{bottom:190.819500px;}
.y16e{bottom:191.847000px;}
.y6c{bottom:191.932500px;}
.y1fc{bottom:192.216000px;}
.ycd{bottom:198.025500px;}
.y113{bottom:198.505500px;}
.y1b6{bottom:199.501500px;}
.ye2{bottom:200.172000px;}
.y41{bottom:202.291500px;}
.y1fb{bottom:205.716000px;}
.y16d{bottom:206.013000px;}
.y9c{bottom:210.601500px;}
.y1b5{bottom:213.667500px;}
.y6b{bottom:214.486500px;}
.y1fa{bottom:219.216000px;}
.y16c{bottom:220.179000px;}
.yc2{bottom:222.156000px;}
.ye1{bottom:222.726000px;}
.y1b4{bottom:227.167500px;}
.y1f9{bottom:232.716000px;}
.y9b{bottom:233.154000px;}
.y16b{bottom:234.345000px;}
.y6a{bottom:237.039000px;}
.y1b3{bottom:240.847500px;}
.y112{bottom:240.858000px;}
.yc1{bottom:244.710000px;}
.ye0{bottom:245.278500px;}
.y1f8{bottom:246.408000px;}
.y40{bottom:246.853500px;}
.y16a{bottom:248.511000px;}
.y1b2{bottom:254.833500px;}
.y9a{bottom:255.708000px;}
.y90{bottom:257.091000px;}
.y169{bottom:262.677000px;}
.y111{bottom:263.410500px;}
.yc0{bottom:267.262500px;}
.ydf{bottom:267.832500px;}
.y1b1{bottom:268.513500px;}
.y122{bottom:269.148000px;}
.y3f{bottom:269.406000px;}
.ycc{bottom:269.409000px;}
.y8f{bottom:270.591000px;}
.y168{bottom:276.663000px;}
.y99{bottom:278.260500px;}
.y69{bottom:279.393000px;}
.y1b0{bottom:282.499500px;}
.y121{bottom:282.648000px;}
.ycb{bottom:282.909000px;}
.y8e{bottom:284.091000px;}
.y110{bottom:285.964500px;}
.ybf{bottom:289.815000px;}
.y167{bottom:290.343000px;}
.yde{bottom:290.385000px;}
.y3e{bottom:291.958500px;}
.y1af{bottom:295.999500px;}
.y120{bottom:296.148000px;}
.yca{bottom:296.409000px;}
.y1f7{bottom:296.485500px;}
.y98{bottom:300.814500px;}
.y68{bottom:301.945500px;}
.y166{bottom:304.509000px;}
.y10f{bottom:308.517000px;}
.y1ae{bottom:309.499500px;}
.y11f{bottom:309.648000px;}
.y1f6{bottom:311.149500px;}
.ybe{bottom:312.369000px;}
.ydd{bottom:312.937500px;}
.y3d{bottom:314.512500px;}
.y165{bottom:318.675000px;}
.y11e{bottom:323.148000px;}
.y1ad{bottom:323.665500px;}
.y67{bottom:324.499500px;}
.y10e{bottom:331.071000px;}
.y164{bottom:332.841000px;}
.ybd{bottom:334.921500px;}
.ydc{bottom:335.491500px;}
.y3c{bottom:337.065000px;}
.y1ac{bottom:337.165500px;}
.y163{bottom:347.007000px;}
.y66{bottom:347.052000px;}
.y1ab{bottom:350.665500px;}
.y10d{bottom:353.623500px;}
.ybc{bottom:357.475500px;}
.ydb{bottom:358.044000px;}
.y3b{bottom:359.619000px;}
.y1f5{bottom:361.047000px;}
.y162{bottom:361.173000px;}
.y1aa{bottom:364.651500px;}
.y65{bottom:369.606000px;}
.y97{bottom:372.196500px;}
.y1f4{bottom:374.727000px;}
.y161{bottom:375.339000px;}
.y10c{bottom:376.177500px;}
.y1a9{bottom:378.331500px;}
.ybb{bottom:380.028000px;}
.y3a{bottom:382.171500px;}
.y96{bottom:385.696500px;}
.y1f3{bottom:388.713000px;}
.y160{bottom:389.325000px;}
.y64{bottom:392.158500px;}
.y1a8{bottom:392.317500px;}
.y10b{bottom:398.730000px;}
.y11d{bottom:398.965500px;}
.y95{bottom:399.196500px;}
.yda{bottom:401.320500px;}
.yba{bottom:402.582000px;}
.y15f{bottom:402.825000px;}
.y1f2{bottom:402.879000px;}
.y39{bottom:404.725500px;}
.y1a7{bottom:405.997500px;}
.y63{bottom:414.712500px;}
.y15e{bottom:416.325000px;}
.y1f1{bottom:416.379000px;}
.y1a6{bottom:419.983500px;}
.y10a{bottom:421.284000px;}
.y11c{bottom:421.519500px;}
.yd9{bottom:421.570500px;}
.yb9{bottom:425.134500px;}
.y38{bottom:427.278000px;}
.y15d{bottom:430.005000px;}
.y1f0{bottom:430.059000px;}
.yf9{bottom:430.311000px;}
.y1a5{bottom:433.483500px;}
.y62{bottom:437.265000px;}
.yd8{bottom:441.820500px;}
.y109{bottom:443.836500px;}
.y1ef{bottom:444.045000px;}
.y11b{bottom:444.072000px;}
.y15c{bottom:444.171000px;}
.y1a4{bottom:447.649500px;}
.yb8{bottom:447.688500px;}
.y37{bottom:449.832000px;}
.yf8{bottom:452.863500px;}
.y1ee{bottom:457.725000px;}
.y15b{bottom:458.337000px;}
.y61{bottom:459.817500px;}
.y1a3{bottom:461.149500px;}
.y19{bottom:461.518500px;}
.yd7{bottom:462.070500px;}
.y108{bottom:466.390500px;}
.y11a{bottom:466.626000px;}
.yb7{bottom:470.241000px;}
.y1ed{bottom:471.711000px;}
.y15a{bottom:472.503000px;}
.y1a2{bottom:474.829500px;}
.yf7{bottom:475.417500px;}
.y18{bottom:481.018500px;}
.yd6{bottom:482.320500px;}
.y60{bottom:482.371500px;}
.y1ec{bottom:485.391000px;}
.y159{bottom:486.669000px;}
.y107{bottom:488.943000px;}
.y1a1{bottom:488.995500px;}
.y119{bottom:489.178500px;}
.y36{bottom:492.184500px;}
.yb6{bottom:492.795000px;}
.yf6{bottom:497.970000px;}
.y1eb{bottom:499.377000px;}
.y17{bottom:500.518500px;}
.y158{bottom:500.835000px;}
.yd5{bottom:502.570500px;}
.y1a0{bottom:502.981500px;}
.y5f{bottom:504.924000px;}
.y106{bottom:511.497000px;}
.y118{bottom:511.732500px;}
.y1ea{bottom:512.877000px;}
.y35{bottom:514.738500px;}
.y157{bottom:514.821000px;}
.y19f{bottom:516.661500px;}
.y16{bottom:520.018500px;}
.yf5{bottom:520.524000px;}
.yd4{bottom:522.820500px;}
.y1e9{bottom:527.043000px;}
.y5e{bottom:527.478000px;}
.y156{bottom:528.501000px;}
.y19e{bottom:530.647500px;}
.y105{bottom:534.049500px;}
.y117{bottom:534.285000px;}
.y34{bottom:537.291000px;}
.y15{bottom:539.518500px;}
.y1e8{bottom:541.029000px;}
.y155{bottom:542.487000px;}
.yd3{bottom:543.070500px;}
.yf4{bottom:543.076500px;}
.y19d{bottom:544.327500px;}
.y1e7{bottom:554.529000px;}
.y154{bottom:555.987000px;}
.y104{bottom:556.602000px;}
.yb2{bottom:556.837500px;}
.y19c{bottom:558.313500px;}
.y14{bottom:559.018500px;}
.y33{bottom:559.845000px;}
.yd2{bottom:563.320500px;}
.yb5{bottom:564.177000px;}
.yf3{bottom:565.629000px;}
.y1e6{bottom:568.695000px;}
.y153{bottom:569.487000px;}
.y5d{bottom:569.830500px;}
.y19b{bottom:571.993500px;}
.yb4{bottom:577.677000px;}
.y13{bottom:578.518500px;}
.y103{bottom:579.156000px;}
.yb1{bottom:579.391500px;}
.y1e5{bottom:582.195000px;}
.y32{bottom:582.397500px;}
.y152{bottom:583.167000px;}
.yd1{bottom:583.570500px;}
.y19a{bottom:585.979500px;}
.yf2{bottom:588.183000px;}
.yb3{bottom:591.177000px;}
.y5c{bottom:592.384500px;}
.y1e4{bottom:596.361000px;}
.y151{bottom:597.333000px;}
.y12{bottom:598.018500px;}
.y199{bottom:599.659500px;}
.y102{bottom:601.708500px;}
.yb0{bottom:601.944000px;}
.y31{bottom:604.950000px;}
.y1e3{bottom:609.861000px;}
.y150{bottom:611.319000px;}
.y198{bottom:613.645500px;}
.y5b{bottom:614.937000px;}
.y1e2{bottom:623.361000px;}
.y82{bottom:623.626500px;}
.y101{bottom:624.262500px;}
.yaf{bottom:624.498000px;}
.y14f{bottom:624.819000px;}
.y30{bottom:627.504000px;}
.y197{bottom:627.631500px;}
.yf1{bottom:631.458000px;}
.y1e1{bottom:637.041000px;}
.y5a{bottom:637.491000px;}
.y14e{bottom:638.319000px;}
.y196{bottom:641.131500px;}
.y11{bottom:644.473500px;}
.y81{bottom:646.179000px;}
.y100{bottom:646.815000px;}
.yae{bottom:647.050500px;}
.y1e0{bottom:651.027000px;}
.yf0{bottom:651.708000px;}
.y14d{bottom:651.819000px;}
.y195{bottom:655.297500px;}
.y59{bottom:660.043500px;}
.y1df{bottom:664.527000px;}
.y14c{bottom:665.319000px;}
.y80{bottom:668.733000px;}
.y194{bottom:668.797500px;}
.yff{bottom:669.369000px;}
.yad{bottom:669.604500px;}
.y2f{bottom:670.779000px;}
.y10{bottom:671.773500px;}
.yef{bottom:671.958000px;}
.y1de{bottom:678.207000px;}
.y14b{bottom:678.819000px;}
.y193{bottom:682.477500px;}
.y58{bottom:682.597500px;}
.y7f{bottom:691.285500px;}
.y2e{bottom:691.758000px;}
.yfe{bottom:691.921500px;}
.y8d{bottom:692.157000px;}
.y1dd{bottom:692.193000px;}
.yee{bottom:692.208000px;}
.y14a{bottom:692.319000px;}
.y192{bottom:696.463500px;}
.yf{bottom:699.073500px;}
.y57{bottom:705.150000px;}
.y1dc{bottom:705.693000px;}
.y149{bottom:705.819000px;}
.y191{bottom:710.143500px;}
.yc9{bottom:711.957000px;}
.y2d{bottom:712.008000px;}
.yed{bottom:712.458000px;}
.y7e{bottom:713.839500px;}
.yfd{bottom:714.475500px;}
.y8c{bottom:714.711000px;}
.y1db{bottom:719.373000px;}
.y148{bottom:719.499000px;}
.y190{bottom:724.129500px;}
.ye{bottom:726.373500px;}
.y56{bottom:727.704000px;}
.y2c{bottom:732.258000px;}
.yec{bottom:732.708000px;}
.y1da{bottom:733.359000px;}
.y147{bottom:733.485000px;}
.yc8{bottom:734.511000px;}
.y7d{bottom:736.392000px;}
.y8b{bottom:737.263500px;}
.y18f{bottom:737.629500px;}
.y146{bottom:746.985000px;}
.y1d9{bottom:747.039000px;}
.y55{bottom:750.256500px;}
.y18e{bottom:751.615500px;}
.y2b{bottom:752.508000px;}
.yeb{bottom:752.958000px;}
.yd{bottom:753.673500px;}
.yc7{bottom:757.063500px;}
.y7c{bottom:758.946000px;}
.yac{bottom:759.817500px;}
.y145{bottom:760.665000px;}
.y1d8{bottom:761.205000px;}
.y18d{bottom:765.601500px;}
.y2a{bottom:772.758000px;}
.y54{bottom:772.809000px;}
.yea{bottom:773.208000px;}
.y144{bottom:774.831000px;}
.y1d7{bottom:775.191000px;}
.y18c{bottom:779.587500px;}
.y8a{bottom:779.617500px;}
.yc{bottom:780.973500px;}
.y7b{bottom:781.498500px;}
.yab{bottom:782.370000px;}
.yfc{bottom:785.859000px;}
.y143{bottom:788.997000px;}
.y1d6{bottom:789.177000px;}
.y29{bottom:793.008000px;}
.ye9{bottom:793.458000px;}
.y18b{bottom:793.573500px;}
.y53{bottom:795.363000px;}
.yfb{bottom:799.359000px;}
.y89{bottom:802.170000px;}
.y1d5{bottom:802.857000px;}
.y142{bottom:802.983000px;}
.y7a{bottom:804.052500px;}
.yaa{bottom:804.924000px;}
.y18a{bottom:807.073500px;}
.yb{bottom:808.273500px;}
.yfa{bottom:812.859000px;}
.y28{bottom:813.258000px;}
.ye8{bottom:813.708000px;}
.y141{bottom:816.483000px;}
.y1d4{bottom:816.843000px;}
.y52{bottom:817.915500px;}
.y189{bottom:821.239500px;}
.y88{bottom:824.724000px;}
.y79{bottom:826.605000px;}
.ya9{bottom:827.476500px;}
.y140{bottom:830.163000px;}
.y1d3{bottom:830.343000px;}
.y27{bottom:833.508000px;}
.ye7{bottom:833.958000px;}
.y188{bottom:834.739500px;}
.ya{bottom:835.573500px;}
.y51{bottom:840.469500px;}
.y1d2{bottom:843.843000px;}
.y13f{bottom:844.149000px;}
.y87{bottom:847.276500px;}
.y187{bottom:848.239500px;}
.ya8{bottom:850.029000px;}
.y26{bottom:853.758000px;}
.ye6{bottom:854.208000px;}
.y13e{bottom:857.649000px;}
.y1d1{bottom:858.009000px;}
.y186{bottom:862.405500px;}
.y9{bottom:862.873500px;}
.y50{bottom:863.022000px;}
.y86{bottom:869.829000px;}
.y78{bottom:869.880000px;}
.y13d{bottom:871.329000px;}
.y1d0{bottom:871.509000px;}
.ya7{bottom:872.583000px;}
.y25{bottom:874.008000px;}
.y185{bottom:875.905500px;}
.y1cf{bottom:885.189000px;}
.y13c{bottom:885.495000px;}
.y4f{bottom:885.576000px;}
.y184{bottom:889.585500px;}
.y77{bottom:890.130000px;}
.y8{bottom:890.173500px;}
.y85{bottom:892.383000px;}
.ya6{bottom:895.135500px;}
.y1ce{bottom:899.355000px;}
.y13b{bottom:899.661000px;}
.y183{bottom:903.571500px;}
.y4e{bottom:908.128500px;}
.y76{bottom:910.380000px;}
.y1cd{bottom:913.341000px;}
.y13a{bottom:913.827000px;}
.y24{bottom:914.935500px;}
.y182{bottom:917.071500px;}
.ya5{bottom:917.689500px;}
.y1cc{bottom:926.841000px;}
.y139{bottom:927.813000px;}
.y75{bottom:930.630000px;}
.y4d{bottom:930.682500px;}
.y181{bottom:931.237500px;}
.y23{bottom:937.489500px;}
.y7{bottom:939.589500px;}
.ya4{bottom:940.242000px;}
.y1cb{bottom:940.521000px;}
.y138{bottom:941.493000px;}
.y180{bottom:944.737500px;}
.y74{bottom:950.880000px;}
.y4c{bottom:953.235000px;}
.y1ca{bottom:954.507000px;}
.y137{bottom:955.659000px;}
.y17f{bottom:958.903500px;}
.y17e{bottom:958.915500px;}
.y22{bottom:960.042000px;}
.ya3{bottom:962.796000px;}
.y1c9{bottom:968.007000px;}
.y136{bottom:969.645000px;}
.y73{bottom:971.130000px;}
.y4b{bottom:975.789000px;}
.y1c8{bottom:981.687000px;}
.y21{bottom:982.596000px;}
.y135{bottom:983.145000px;}
.ya2{bottom:985.348500px;}
.y72{bottom:991.380000px;}
.y1c7{bottom:995.673000px;}
.y134{bottom:996.645000px;}
.y4a{bottom:998.341500px;}
.y6{bottom:999.589500px;}
.y20{bottom:1005.148500px;}
.ya1{bottom:1007.902500px;}
.y17d{bottom:1008.813000px;}
.y1c6{bottom:1009.173000px;}
.y133{bottom:1010.325000px;}
.y71{bottom:1011.630000px;}
.y49{bottom:1020.895500px;}
.y17c{bottom:1022.493000px;}
.y1c5{bottom:1023.339000px;}
.y132{bottom:1024.491000px;}
.y1f{bottom:1027.702500px;}
.y70{bottom:1031.880000px;}
.y17b{bottom:1036.479000px;}
.y1c4{bottom:1036.839000px;}
.y131{bottom:1038.477000px;}
.y48{bottom:1043.448000px;}
.y17a{bottom:1049.979000px;}
.y1e{bottom:1050.255000px;}
.y1c3{bottom:1050.339000px;}
.y130{bottom:1051.977000px;}
.y5{bottom:1060.489500px;}
.y179{bottom:1063.479000px;}
.y1c2{bottom:1064.325000px;}
.y12f{bottom:1065.477000px;}
.y1d{bottom:1072.809000px;}
.y178{bottom:1076.979000px;}
.y1c1{bottom:1077.825000px;}
.y12e{bottom:1078.977000px;}
.y177{bottom:1090.479000px;}
.y47{bottom:1091.230500px;}
.y1c0{bottom:1091.991000px;}
.y12d{bottom:1092.477000px;}
.y1c{bottom:1095.361500px;}
.y176{bottom:1104.159000px;}
.y1bf{bottom:1105.491000px;}
.y12c{bottom:1105.977000px;}
.y46{bottom:1115.170500px;}
.y1b{bottom:1117.915500px;}
.y175{bottom:1118.325000px;}
.y1be{bottom:1118.991000px;}
.y12b{bottom:1119.477000px;}
.y4{bottom:1122.985500px;}
.y174{bottom:1132.491000px;}
.y12a{bottom:1132.977000px;}
.y1bd{bottom:1133.157000px;}
.y204{bottom:1133.643000px;}
.y45{bottom:1139.110500px;}
.y1a{bottom:1140.468000px;}
.y129{bottom:1146.657000px;}
.y203{bottom:1147.143000px;}
.y2{bottom:1198.827000px;}
.y1{bottom:1212.327000px;}
.h11{height:40.560000px;}
.h12{height:41.926931px;}
.h3{height:43.101000px;}
.h2{height:43.125000px;}
.h16{height:43.152000px;}
.h17{height:43.200000px;}
.h14{height:48.070500px;}
.h15{height:50.062500px;}
.h13{height:53.077148px;}
.h7{height:53.906250px;}
.h8{height:59.296875px;}
.ha{height:60.840000px;}
.hf{height:65.613281px;}
.h9{height:68.835938px;}
.h10{height:69.462000px;}
.hd{height:70.980000px;}
.hb{height:75.093750px;}
.h4{height:75.468750px;}
.he{height:81.039000px;}
.hc{height:87.609375px;}
.h6{height:202.800000px;}
.h5{height:216.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.780000px;}
.x1{left:64.980000px;}
.x5{left:133.936500px;}
.x6{left:164.424000px;}
.x3{left:216.850500px;}
.x2{left:218.050500px;}
.xc{left:226.606500px;}
.x35{left:232.666500px;}
.x8{left:234.360000px;}
.x9{left:240.480000px;}
.x3f{left:251.962500px;}
.x3a{left:260.542500px;}
.x2e{left:262.678500px;}
.x51{left:272.422500px;}
.x58{left:274.810500px;}
.x40{left:279.598500px;}
.x53{left:283.270500px;}
.x24{left:289.222500px;}
.x12{left:292.006500px;}
.x17{left:295.462500px;}
.x22{left:297.226500px;}
.x32{left:299.218500px;}
.x66{left:301.606500px;}
.x43{left:303.370500px;}
.x31{left:305.736000px;}
.x2d{left:307.846500px;}
.x42{left:308.926500px;}
.x3b{left:310.726500px;}
.x30{left:314.074500px;}
.xd{left:315.862500px;}
.x5c{left:317.794500px;}
.x50{left:321.922500px;}
.x4e{left:327.442500px;}
.x6e{left:331.834500px;}
.x54{left:336.334500px;}
.x2a{left:339.586500px;}
.x7{left:341.364000px;}
.x3e{left:344.530500px;}
.x1d{left:348.010500px;}
.x68{left:353.758500px;}
.x10{left:360.274500px;}
.x4b{left:364.150500px;}
.x36{left:367.294500px;}
.x33{left:370.114500px;}
.x29{left:376.330500px;}
.x15{left:379.210500px;}
.x47{left:380.830500px;}
.x52{left:382.930500px;}
.x1e{left:389.530500px;}
.x69{left:392.158500px;}
.x1f{left:399.598500px;}
.x3c{left:404.290500px;}
.x5d{left:411.226500px;}
.x60{left:421.726500px;}
.x27{left:425.230500px;}
.x56{left:429.946500px;}
.x64{left:431.806500px;}
.x44{left:433.522500px;}
.x4f{left:434.662500px;}
.x39{left:436.810500px;}
.x20{left:437.998500px;}
.x5e{left:439.042500px;}
.xe{left:442.078500px;}
.x55{left:443.554500px;}
.x61{left:446.602500px;}
.x4c{left:455.590500px;}
.x48{left:461.290500px;}
.x13{left:462.826500px;}
.x49{left:469.834500px;}
.x2f{left:476.590500px;}
.x62{left:483.430500px;}
.x11{left:484.510500px;}
.x4a{left:489.082500px;}
.x25{left:504.766500px;}
.x14{left:508.006500px;}
.x45{left:509.674500px;}
.x6a{left:515.302500px;}
.x5f{left:517.210500px;}
.x37{left:518.446500px;}
.x18{left:520.762500px;}
.x6d{left:526.546500px;}
.xf{left:530.566500px;}
.x59{left:536.434500px;}
.x21{left:539.290500px;}
.x19{left:543.202500px;}
.xa{left:544.534500px;}
.x28{left:546.490500px;}
.x5a{left:547.582500px;}
.x2b{left:559.162500px;}
.x4d{left:562.810500px;}
.x6b{left:566.410500px;}
.x38{left:567.682500px;}
.x63{left:581.434500px;}
.x1a{left:586.582500px;}
.x46{left:594.238500px;}
.x5b{left:595.642500px;}
.x1c{left:597.142500px;}
.x57{left:602.182500px;}
.x6c{left:605.830500px;}
.x65{left:607.654500px;}
.x16{left:611.518500px;}
.x2c{left:613.462500px;}
.x3d{left:616.390500px;}
.x41{left:621.034500px;}
.x1b{left:628.222500px;}
.x34{left:631.570500px;}
.x26{left:645.550500px;}
.x23{left:647.578500px;}
.xb{left:649.090500px;}
.x67{left:654.118500px;}
@media print{
.v4{vertical-align:-1.770667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.333333pt;}
.v2{vertical-align:32.000000pt;}
.v3{vertical-align:37.333333pt;}
.lse3{letter-spacing:-0.011026pt;}
.lse2{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.002133pt;}
.ls30{letter-spacing:0.010667pt;}
.lsbd{letter-spacing:0.021333pt;}
.lsa{letter-spacing:0.026667pt;}
.lsb{letter-spacing:0.027733pt;}
.lsc{letter-spacing:0.032000pt;}
.ls50{letter-spacing:0.037333pt;}
.lsd{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.053333pt;}
.ls4c{letter-spacing:0.058667pt;}
.lsc4{letter-spacing:0.069333pt;}
.ls1f{letter-spacing:0.080000pt;}
.lsc1{letter-spacing:0.096000pt;}
.ls65{letter-spacing:0.101333pt;}
.ls29{letter-spacing:0.117333pt;}
.ls76{letter-spacing:0.128000pt;}
.lsa3{letter-spacing:0.133333pt;}
.ls7b{letter-spacing:0.149333pt;}
.ls34{letter-spacing:0.154667pt;}
.ls97{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.165333pt;}
.ls4a{letter-spacing:0.176000pt;}
.ls6d{letter-spacing:0.181333pt;}
.lsa5{letter-spacing:0.186667pt;}
.ls7e{letter-spacing:0.202667pt;}
.lsb6{letter-spacing:0.208000pt;}
.ls53{letter-spacing:0.213333pt;}
.ls66{letter-spacing:0.218667pt;}
.lsc2{letter-spacing:0.224000pt;}
.lsb0{letter-spacing:0.229333pt;}
.ls2a{letter-spacing:0.234667pt;}
.ls43{letter-spacing:0.245333pt;}
.ls48{letter-spacing:0.256000pt;}
.ls67{letter-spacing:0.266667pt;}
.ls37{letter-spacing:0.272000pt;}
.ls15{letter-spacing:0.277333pt;}
.lsde{letter-spacing:0.282667pt;}
.ls6c{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.304000pt;}
.ls13{letter-spacing:0.309333pt;}
.ls14{letter-spacing:0.314667pt;}
.lscd{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.336000pt;}
.ls4b{letter-spacing:0.341333pt;}
.lsdd{letter-spacing:0.352000pt;}
.ls7f{letter-spacing:0.368000pt;}
.ls9c{letter-spacing:0.373333pt;}
.ls41{letter-spacing:0.384000pt;}
.lsa2{letter-spacing:0.400000pt;}
.ls33{letter-spacing:0.405333pt;}
.ls80{letter-spacing:0.442667pt;}
.lsb5{letter-spacing:0.453333pt;}
.ls3{letter-spacing:0.457067pt;}
.ls2{letter-spacing:0.458667pt;}
.ls68{letter-spacing:0.469333pt;}
.ls69{letter-spacing:0.474667pt;}
.lsc6{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.490667pt;}
.ls2f{letter-spacing:0.496000pt;}
.ls93{letter-spacing:0.506667pt;}
.ls96{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.517333pt;}
.ls2c{letter-spacing:0.522667pt;}
.ls2e{letter-spacing:0.528000pt;}
.ls99{letter-spacing:0.538667pt;}
.ls1a{letter-spacing:0.549333pt;}
.ls70{letter-spacing:0.560000pt;}
.ls3b{letter-spacing:0.565333pt;}
.lsc5{letter-spacing:0.570667pt;}
.ls62{letter-spacing:0.576000pt;}
.ls56{letter-spacing:0.597333pt;}
.ls5e{letter-spacing:0.602667pt;}
.lsdf{letter-spacing:0.608000pt;}
.ls82{letter-spacing:0.618667pt;}
.lsaa{letter-spacing:0.624000pt;}
.ls39{letter-spacing:0.634667pt;}
.lsc9{letter-spacing:0.640000pt;}
.lsc8{letter-spacing:0.645333pt;}
.ls6{letter-spacing:0.688000pt;}
.ls7{letter-spacing:0.690133pt;}
.ls6a{letter-spacing:0.693333pt;}
.ls6f{letter-spacing:0.698667pt;}
.lsca{letter-spacing:0.709333pt;}
.ls44{letter-spacing:0.714667pt;}
.lsd4{letter-spacing:0.720000pt;}
.lsaf{letter-spacing:0.725333pt;}
.ls5d{letter-spacing:0.741333pt;}
.lsbc{letter-spacing:0.762667pt;}
.ls63{letter-spacing:0.768000pt;}
.ls28{letter-spacing:0.773333pt;}
.ls27{letter-spacing:0.777867pt;}
.ls26{letter-spacing:0.778667pt;}
.ls4f{letter-spacing:0.794667pt;}
.ls71{letter-spacing:0.800000pt;}
.ls84{letter-spacing:0.805333pt;}
.ls4d{letter-spacing:0.810667pt;}
.ls36{letter-spacing:0.821333pt;}
.ls8{letter-spacing:0.826667pt;}
.lsd1{letter-spacing:0.832000pt;}
.ls83{letter-spacing:0.837333pt;}
.ls18{letter-spacing:0.848000pt;}
.lsce{letter-spacing:0.864000pt;}
.lsb7{letter-spacing:0.885333pt;}
.ls61{letter-spacing:0.890667pt;}
.ls7c{letter-spacing:0.901333pt;}
.lsbe{letter-spacing:0.906667pt;}
.ls54{letter-spacing:0.917333pt;}
.ls5c{letter-spacing:0.922667pt;}
.ls3c{letter-spacing:0.938667pt;}
.ls6e{letter-spacing:0.949333pt;}
.ls22{letter-spacing:0.965333pt;}
.ls86{letter-spacing:0.970667pt;}
.ls3d{letter-spacing:0.976000pt;}
.ls42{letter-spacing:0.997333pt;}
.ls45{letter-spacing:1.040000pt;}
.ls81{letter-spacing:1.050667pt;}
.ls51{letter-spacing:1.066667pt;}
.lse0{letter-spacing:1.072000pt;}
.ls7a{letter-spacing:1.088000pt;}
.lsb1{letter-spacing:1.098667pt;}
.lse1{letter-spacing:1.104000pt;}
.lse{letter-spacing:1.120000pt;}
.lsf{letter-spacing:1.124267pt;}
.ls95{letter-spacing:1.125333pt;}
.lsda{letter-spacing:1.136000pt;}
.lsdb{letter-spacing:1.162667pt;}
.ls58{letter-spacing:1.194667pt;}
.ls8c{letter-spacing:1.232000pt;}
.lsb9{letter-spacing:1.237333pt;}
.ls3f{letter-spacing:1.248000pt;}
.ls64{letter-spacing:1.280000pt;}
.lsd5{letter-spacing:1.312000pt;}
.lsab{letter-spacing:1.328000pt;}
.lsb2{letter-spacing:1.344000pt;}
.ls23{letter-spacing:1.349333pt;}
.ls17{letter-spacing:1.365333pt;}
.ls59{letter-spacing:1.376000pt;}
.ls46{letter-spacing:1.402667pt;}
.lsbb{letter-spacing:1.413333pt;}
.lsa7{letter-spacing:1.429333pt;}
.lsb3{letter-spacing:1.461333pt;}
.ls1d{letter-spacing:1.466667pt;}
.lsba{letter-spacing:1.493333pt;}
.lsa1{letter-spacing:1.504000pt;}
.ls91{letter-spacing:1.536000pt;}
.lsa9{letter-spacing:1.546667pt;}
.ls5{letter-spacing:1.552000pt;}
.lsb4{letter-spacing:1.562667pt;}
.ls90{letter-spacing:1.573333pt;}
.ls1e{letter-spacing:1.584000pt;}
.ls75{letter-spacing:1.594667pt;}
.ls49{letter-spacing:1.605333pt;}
.ls60{letter-spacing:1.626667pt;}
.ls72{letter-spacing:1.637333pt;}
.lsc0{letter-spacing:1.653333pt;}
.ls40{letter-spacing:1.674667pt;}
.lsc3{letter-spacing:1.690667pt;}
.lsa8{letter-spacing:1.733333pt;}
.ls38{letter-spacing:1.744000pt;}
.lsac{letter-spacing:1.749333pt;}
.ls73{letter-spacing:1.765333pt;}
.ls88{letter-spacing:1.776000pt;}
.ls7d{letter-spacing:1.802667pt;}
.ls21{letter-spacing:1.834667pt;}
.ls1b{letter-spacing:1.866667pt;}
.ls74{letter-spacing:1.877333pt;}
.ls5f{letter-spacing:1.882667pt;}
.lscc{letter-spacing:1.888000pt;}
.ls32{letter-spacing:1.909333pt;}
.ls31{letter-spacing:1.914667pt;}
.ls94{letter-spacing:1.925333pt;}
.ls11{letter-spacing:1.930667pt;}
.ls9e{letter-spacing:1.962667pt;}
.ls9a{letter-spacing:1.973333pt;}
.ls5a{letter-spacing:2.021333pt;}
.ls9b{letter-spacing:2.026667pt;}
.ls98{letter-spacing:2.048000pt;}
.lsbf{letter-spacing:2.053333pt;}
.ls9{letter-spacing:2.080000pt;}
.lsd9{letter-spacing:2.090667pt;}
.ls87{letter-spacing:2.112000pt;}
.ls52{letter-spacing:2.154667pt;}
.ls55{letter-spacing:2.181333pt;}
.ls89{letter-spacing:2.186667pt;}
.ls5b{letter-spacing:2.213333pt;}
.lsdc{letter-spacing:2.218667pt;}
.ls8a{letter-spacing:2.266667pt;}
.lsa6{letter-spacing:2.277333pt;}
.ls77{letter-spacing:2.341333pt;}
.ls9f{letter-spacing:2.357333pt;}
.ls8f{letter-spacing:2.416000pt;}
.ls2d{letter-spacing:2.426667pt;}
.ls20{letter-spacing:2.437333pt;}
.lsae{letter-spacing:2.442667pt;}
.ls78{letter-spacing:2.464000pt;}
.lsd7{letter-spacing:2.474667pt;}
.ls8d{letter-spacing:2.485333pt;}
.lscf{letter-spacing:2.512000pt;}
.ls8b{letter-spacing:2.570667pt;}
.ls85{letter-spacing:2.576000pt;}
.lsd0{letter-spacing:2.629333pt;}
.lsad{letter-spacing:2.704000pt;}
.ls92{letter-spacing:2.725333pt;}
.lscb{letter-spacing:2.741333pt;}
.ls4e{letter-spacing:2.762667pt;}
.ls6b{letter-spacing:2.842667pt;}
.ls9d{letter-spacing:2.906667pt;}
.lsd6{letter-spacing:2.938667pt;}
.ls79{letter-spacing:2.992000pt;}
.lsd2{letter-spacing:3.114667pt;}
.lsd3{letter-spacing:3.120000pt;}
.ls12{letter-spacing:3.189333pt;}
.lsa4{letter-spacing:3.290667pt;}
.lsc7{letter-spacing:3.424000pt;}
.ls8e{letter-spacing:3.530667pt;}
.lsa0{letter-spacing:3.578667pt;}
.ls35{letter-spacing:3.776000pt;}
.ls47{letter-spacing:3.888000pt;}
.ls57{letter-spacing:4.048000pt;}
.lsb8{letter-spacing:4.336000pt;}
.ls3e{letter-spacing:4.426667pt;}
.lsd8{letter-spacing:4.490667pt;}
.ls3a{letter-spacing:4.624000pt;}
.ws1{word-spacing:-19.189333pt;}
.ws76{word-spacing:-17.920000pt;}
.wsb0{word-spacing:-17.802667pt;}
.wsd9{word-spacing:-17.354667pt;}
.ws79{word-spacing:-16.954667pt;}
.ws91{word-spacing:-16.880000pt;}
.ws5d{word-spacing:-16.704000pt;}
.ws4c{word-spacing:-16.682667pt;}
.wsae{word-spacing:-16.613333pt;}
.ws59{word-spacing:-16.144000pt;}
.wsc1{word-spacing:-15.968000pt;}
.ws95{word-spacing:-15.882667pt;}
.ws11f{word-spacing:-15.701333pt;}
.ws102{word-spacing:-15.600000pt;}
.ws90{word-spacing:-15.573333pt;}
.ws22{word-spacing:-15.568000pt;}
.wsc2{word-spacing:-15.552000pt;}
.wsda{word-spacing:-15.461333pt;}
.wsc3{word-spacing:-15.450667pt;}
.ws1f{word-spacing:-15.349333pt;}
.ws1d{word-spacing:-15.312000pt;}
.ws4d{word-spacing:-15.136000pt;}
.ws3{word-spacing:-15.125333pt;}
.ws5c{word-spacing:-15.077333pt;}
.ws11e{word-spacing:-11.407200pt;}
.ws143{word-spacing:-11.093333pt;}
.ws144{word-spacing:-11.082667pt;}
.ws106{word-spacing:-11.033867pt;}
.wsad{word-spacing:-10.708533pt;}
.ws1e{word-spacing:-10.207200pt;}
.ws7a{word-spacing:-10.169867pt;}
.wsdb{word-spacing:-10.025867pt;}
.ws5e{word-spacing:-9.919200pt;}
.wsdc{word-spacing:-9.391200pt;}
.ws122{word-spacing:-9.386667pt;}
.ws4b{word-spacing:-9.332533pt;}
.wsd8{word-spacing:-9.119200pt;}
.ws5a{word-spacing:-9.113867pt;}
.ws92{word-spacing:-9.065867pt;}
.ws75{word-spacing:-8.985867pt;}
.ws105{word-spacing:-8.937867pt;}
.ws21{word-spacing:-8.927200pt;}
.ws94{word-spacing:-8.911200pt;}
.ws103{word-spacing:-8.815200pt;}
.ws23{word-spacing:-8.783200pt;}
.ws74{word-spacing:-8.761867pt;}
.ws93{word-spacing:-8.735200pt;}
.ws120{word-spacing:-8.644533pt;}
.ws78{word-spacing:-8.607200pt;}
.ws77{word-spacing:-8.585867pt;}
.ws20{word-spacing:-8.564533pt;}
.ws104{word-spacing:-8.521867pt;}
.wsaf{word-spacing:-8.473867pt;}
.ws5b{word-spacing:-8.372533pt;}
.ws146{word-spacing:-0.038592pt;}
.ws145{word-spacing:-0.037333pt;}
.ws2{word-spacing:0.000000pt;}
.ws34{word-spacing:0.032000pt;}
.ws109{word-spacing:0.037333pt;}
.ws9d{word-spacing:0.069333pt;}
.ws11c{word-spacing:0.080000pt;}
.ws55{word-spacing:0.096000pt;}
.ws58{word-spacing:0.106667pt;}
.wsc{word-spacing:0.112000pt;}
.wsb{word-spacing:0.117333pt;}
.wse1{word-spacing:0.133333pt;}
.ws17{word-spacing:0.160000pt;}
.ws2a{word-spacing:0.170667pt;}
.ws67{word-spacing:0.186667pt;}
.ws24{word-spacing:0.197333pt;}
.ws7e{word-spacing:0.229333pt;}
.ws13f{word-spacing:0.234667pt;}
.ws9b{word-spacing:0.272000pt;}
.ws110{word-spacing:0.282667pt;}
.wse4{word-spacing:0.288000pt;}
.ws2d{word-spacing:0.309333pt;}
.ws10d{word-spacing:0.314667pt;}
.ws2b{word-spacing:0.320000pt;}
.ws86{word-spacing:0.346667pt;}
.wse5{word-spacing:0.352000pt;}
.ws113{word-spacing:0.373333pt;}
.wse8{word-spacing:0.400000pt;}
.ws53{word-spacing:0.410667pt;}
.wsc8{word-spacing:0.426667pt;}
.ws37{word-spacing:0.432000pt;}
.ws96{word-spacing:0.448000pt;}
.wsce{word-spacing:0.458667pt;}
.wsc6{word-spacing:0.480000pt;}
.wse3{word-spacing:0.490667pt;}
.wsbf{word-spacing:0.501333pt;}
.ws7f{word-spacing:0.517333pt;}
.ws136{word-spacing:0.538667pt;}
.wsfb{word-spacing:0.581333pt;}
.wsf4{word-spacing:0.592000pt;}
.wsaa{word-spacing:0.597333pt;}
.ws11{word-spacing:0.602667pt;}
.ws9f{word-spacing:0.613333pt;}
.wsc5{word-spacing:0.624000pt;}
.ws101{word-spacing:0.629333pt;}
.ws4{word-spacing:0.666667pt;}
.ws62{word-spacing:0.693333pt;}
.wse7{word-spacing:0.709333pt;}
.ws12a{word-spacing:0.714667pt;}
.ws11a{word-spacing:0.720000pt;}
.ws127{word-spacing:0.725333pt;}
.ws3b{word-spacing:0.730667pt;}
.wsf9{word-spacing:0.778667pt;}
.ws88{word-spacing:0.784000pt;}
.ws51{word-spacing:0.789333pt;}
.ws2f{word-spacing:0.794667pt;}
.ws13c{word-spacing:0.821333pt;}
.wsa3{word-spacing:0.837333pt;}
.ws49{word-spacing:0.842667pt;}
.ws6{word-spacing:0.848000pt;}
.wsb1{word-spacing:0.858667pt;}
.ws15{word-spacing:0.874667pt;}
.ws6f{word-spacing:0.901333pt;}
.ws54{word-spacing:0.928000pt;}
.ws66{word-spacing:0.933333pt;}
.wse0{word-spacing:0.938667pt;}
.ws8c{word-spacing:0.944000pt;}
.ws5{word-spacing:0.954667pt;}
.ws85{word-spacing:0.992000pt;}
.wsea{word-spacing:0.997333pt;}
.ws30{word-spacing:1.034667pt;}
.wsde{word-spacing:1.050667pt;}
.ws13d{word-spacing:1.056000pt;}
.wsfe{word-spacing:1.066667pt;}
.ws25{word-spacing:1.072000pt;}
.ws10{word-spacing:1.077333pt;}
.wse2{word-spacing:1.109333pt;}
.wsa0{word-spacing:1.125333pt;}
.ws80{word-spacing:1.136000pt;}
.wsd4{word-spacing:1.141333pt;}
.wsf8{word-spacing:1.178667pt;}
.wsb5{word-spacing:1.194667pt;}
.ws40{word-spacing:1.205333pt;}
.ws12d{word-spacing:1.221333pt;}
.wsa5{word-spacing:1.242667pt;}
.wsb3{word-spacing:1.253333pt;}
.ws33{word-spacing:1.264000pt;}
.wsc4{word-spacing:1.280000pt;}
.ws36{word-spacing:1.290667pt;}
.ws89{word-spacing:1.301333pt;}
.ws82{word-spacing:1.306667pt;}
.ws12{word-spacing:1.328000pt;}
.wscd{word-spacing:1.333333pt;}
.wsf2{word-spacing:1.344000pt;}
.ws65{word-spacing:1.354667pt;}
.wsd0{word-spacing:1.418667pt;}
.ws47{word-spacing:1.440000pt;}
.ws7c{word-spacing:1.456000pt;}
.ws11d{word-spacing:1.466667pt;}
.wseb{word-spacing:1.530667pt;}
.wsa2{word-spacing:1.541333pt;}
.ws112{word-spacing:1.594667pt;}
.ws19{word-spacing:1.626667pt;}
.wsa7{word-spacing:1.637333pt;}
.ws87{word-spacing:1.674667pt;}
.ws111{word-spacing:1.680000pt;}
.ws16{word-spacing:1.690667pt;}
.ws108{word-spacing:1.701333pt;}
.ws12e{word-spacing:1.706667pt;}
.ws71{word-spacing:1.738667pt;}
.ws68{word-spacing:1.749333pt;}
.wsc9{word-spacing:1.802667pt;}
.ws3d{word-spacing:1.824000pt;}
.ws9{word-spacing:1.840000pt;}
.ws137{word-spacing:1.866667pt;}
.ws32{word-spacing:1.898667pt;}
.ws8a{word-spacing:1.904000pt;}
.ws8{word-spacing:1.909333pt;}
.ws9c{word-spacing:1.920000pt;}
.ws14{word-spacing:1.930667pt;}
.wsa6{word-spacing:1.936000pt;}
.wsd3{word-spacing:1.957333pt;}
.ws129{word-spacing:2.026667pt;}
.ws83{word-spacing:2.032000pt;}
.ws2e{word-spacing:2.058667pt;}
.wsee{word-spacing:2.074667pt;}
.ws107{word-spacing:2.080000pt;}
.ws134{word-spacing:2.117333pt;}
.wsd{word-spacing:2.186667pt;}
.wsdd{word-spacing:2.202667pt;}
.ws56{word-spacing:2.229333pt;}
.ws2c{word-spacing:2.240000pt;}
.ws141{word-spacing:2.256000pt;}
.ws3f{word-spacing:2.261333pt;}
.ws63{word-spacing:2.298667pt;}
.wsb9{word-spacing:2.314667pt;}
.wsa1{word-spacing:2.325333pt;}
.ws28{word-spacing:2.410667pt;}
.ws70{word-spacing:2.421333pt;}
.ws123{word-spacing:2.442667pt;}
.ws57{word-spacing:2.496000pt;}
.ws48{word-spacing:2.501333pt;}
.ws61{word-spacing:2.512000pt;}
.ws42{word-spacing:2.549333pt;}
.ws3a{word-spacing:2.560000pt;}
.ws115{word-spacing:2.597333pt;}
.ws12c{word-spacing:2.629333pt;}
.wsa8{word-spacing:2.634667pt;}
.wsf5{word-spacing:2.677333pt;}
.ws116{word-spacing:2.762667pt;}
.ws10a{word-spacing:2.768000pt;}
.ws7d{word-spacing:2.789333pt;}
.wsca{word-spacing:2.800000pt;}
.ws133{word-spacing:2.842667pt;}
.wsf6{word-spacing:2.853333pt;}
.ws4a{word-spacing:2.928000pt;}
.ws41{word-spacing:2.938667pt;}
.ws139{word-spacing:2.965333pt;}
.ws138{word-spacing:2.986667pt;}
.wsfa{word-spacing:3.029333pt;}
.wsff{word-spacing:3.061333pt;}
.ws128{word-spacing:3.072000pt;}
.wsa4{word-spacing:3.082667pt;}
.ws7b{word-spacing:3.088000pt;}
.wscb{word-spacing:3.168000pt;}
.wscc{word-spacing:3.205333pt;}
.wsb8{word-spacing:3.328000pt;}
.ws72{word-spacing:3.408000pt;}
.ws135{word-spacing:3.413333pt;}
.ws9a{word-spacing:3.477333pt;}
.wsef{word-spacing:3.498667pt;}
.ws81{word-spacing:3.504000pt;}
.wsbd{word-spacing:3.514667pt;}
.ws124{word-spacing:3.536000pt;}
.ws46{word-spacing:3.562667pt;}
.ws5f{word-spacing:3.616000pt;}
.ws3c{word-spacing:3.626667pt;}
.ws4e{word-spacing:3.674667pt;}
.wsab{word-spacing:3.706667pt;}
.ws8d{word-spacing:3.850667pt;}
.ws44{word-spacing:3.994667pt;}
.ws6b{word-spacing:4.037333pt;}
.ws73{word-spacing:4.069333pt;}
.wsc7{word-spacing:4.096000pt;}
.ws1a{word-spacing:4.112000pt;}
.ws100{word-spacing:4.149333pt;}
.ws7{word-spacing:4.186667pt;}
.ws29{word-spacing:4.229333pt;}
.ws13e{word-spacing:4.234667pt;}
.ws6a{word-spacing:4.293333pt;}
.wsed{word-spacing:4.362667pt;}
.ws4f{word-spacing:4.389333pt;}
.ws13b{word-spacing:4.442667pt;}
.ws8f{word-spacing:4.501333pt;}
.ws1b{word-spacing:4.586667pt;}
.wscf{word-spacing:4.784000pt;}
.wsb2{word-spacing:4.789333pt;}
.wsbe{word-spacing:4.816000pt;}
.ws11b{word-spacing:4.821333pt;}
.wsa{word-spacing:4.853333pt;}
.wsd5{word-spacing:4.986667pt;}
.wsec{word-spacing:4.992000pt;}
.ws13{word-spacing:5.008000pt;}
.wsba{word-spacing:5.034667pt;}
.ws45{word-spacing:5.045333pt;}
.wsf3{word-spacing:5.077333pt;}
.ws125{word-spacing:5.088000pt;}
.wsc0{word-spacing:5.104000pt;}
.ws13a{word-spacing:5.178667pt;}
.ws98{word-spacing:5.200000pt;}
.ws131{word-spacing:5.226667pt;}
.ws8b{word-spacing:5.248000pt;}
.ws27{word-spacing:5.274667pt;}
.wsd1{word-spacing:5.322667pt;}
.ws52{word-spacing:5.349333pt;}
.wsd7{word-spacing:5.370667pt;}
.wsfc{word-spacing:5.413333pt;}
.wsd2{word-spacing:5.461333pt;}
.wse{word-spacing:5.552000pt;}
.ws1c{word-spacing:5.568000pt;}
.wsf0{word-spacing:5.589333pt;}
.ws18{word-spacing:5.594667pt;}
.ws60{word-spacing:5.680000pt;}
.ws10c{word-spacing:5.813333pt;}
.ws10f{word-spacing:5.818667pt;}
.wsf7{word-spacing:5.850667pt;}
.ws35{word-spacing:5.994667pt;}
.ws119{word-spacing:6.000000pt;}
.ws12f{word-spacing:6.005333pt;}
.ws26{word-spacing:6.133333pt;}
.ws8e{word-spacing:6.138667pt;}
.ws10e{word-spacing:6.250667pt;}
.wsb4{word-spacing:6.266667pt;}
.wsac{word-spacing:6.341333pt;}
.ws64{word-spacing:6.405333pt;}
.wsd6{word-spacing:6.474667pt;}
.ws6d{word-spacing:6.634667pt;}
.ws9e{word-spacing:6.746667pt;}
.ws140{word-spacing:6.997333pt;}
.wsa9{word-spacing:7.104000pt;}
.wse9{word-spacing:7.130667pt;}
.ws6c{word-spacing:7.258667pt;}
.ws31{word-spacing:7.280000pt;}
.ws84{word-spacing:7.317333pt;}
.ws114{word-spacing:7.610667pt;}
.ws6e{word-spacing:7.941333pt;}
.ws126{word-spacing:8.069333pt;}
.ws118{word-spacing:8.400000pt;}
.wsb6{word-spacing:8.880000pt;}
.ws130{word-spacing:9.210667pt;}
.ws97{word-spacing:9.370667pt;}
.ws43{word-spacing:10.058667pt;}
.ws10b{word-spacing:10.085333pt;}
.ws132{word-spacing:10.480000pt;}
.ws39{word-spacing:10.666667pt;}
.wsb7{word-spacing:10.704000pt;}
.wsf1{word-spacing:11.034667pt;}
.wsf{word-spacing:11.216000pt;}
.wsfd{word-spacing:11.269333pt;}
.ws38{word-spacing:11.600000pt;}
.ws99{word-spacing:11.712000pt;}
.wsbb{word-spacing:11.898667pt;}
.wsbc{word-spacing:12.090667pt;}
.wse6{word-spacing:12.613333pt;}
.ws69{word-spacing:12.736000pt;}
.ws117{word-spacing:13.178667pt;}
.ws3e{word-spacing:13.525333pt;}
.wsdf{word-spacing:14.016000pt;}
.ws12b{word-spacing:14.389333pt;}
.ws50{word-spacing:15.237333pt;}
.ws142{word-spacing:241.669333pt;}
.ws147{word-spacing:363.998933pt;}
.ws148{word-spacing:366.795733pt;}
.ws0{word-spacing:377.978667pt;}
.ws121{word-spacing:400.560000pt;}
._17{margin-left:-15.237333pt;}
._11{margin-left:-13.525333pt;}
._1e{margin-left:-12.154667pt;}
._c{margin-left:-11.216000pt;}
._14{margin-left:-10.058667pt;}
._1b{margin-left:-8.880000pt;}
._e{margin-left:-7.280000pt;}
._a{margin-left:-5.552000pt;}
._6{margin-left:-4.186667pt;}
._12{margin-left:-3.264000pt;}
._8{margin-left:-1.909333pt;}
._4{margin-left:-0.954667pt;}
._3{width:0.938667pt;}
._7{width:1.877333pt;}
._f{width:3.258667pt;}
._5{width:4.165333pt;}
._9{width:5.514667pt;}
._d{width:7.274667pt;}
._1a{width:8.858667pt;}
._13{width:10.032000pt;}
._b{width:11.205333pt;}
._1c{width:12.096000pt;}
._10{width:13.493333pt;}
._16{width:15.194667pt;}
._1{width:226.128000pt;}
._20{width:1368.432000pt;}
._1d{width:1370.138667pt;}
._21{width:1373.424000pt;}
._1f{width:1378.586667pt;}
._15{width:1386.608000pt;}
._18{width:1387.632000pt;}
._2{width:1388.826667pt;}
._19{width:1391.600000pt;}
._0{width:1396.762667pt;}
.fs5{font-size:32.266667pt;}
.fs7{font-size:35.200000pt;}
.fsa{font-size:40.533333pt;}
.fs8{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:44.104596pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:37.274667pt;}
.y202{bottom:98.858667pt;}
.yc6{bottom:99.682667pt;}
.y1bc{bottom:104.310667pt;}
.y94{bottom:104.932000pt;}
.ya0{bottom:107.012000pt;}
.y128{bottom:107.238667pt;}
.y173{bottom:108.754667pt;}
.y6f{bottom:110.465333pt;}
.y201{bottom:110.858667pt;}
.yd0{bottom:115.880000pt;}
.y44{bottom:115.974667pt;}
.y116{bottom:116.306667pt;}
.y1bb{bottom:116.310667pt;}
.ye5{bottom:117.789333pt;}
.y127{bottom:119.398667pt;}
.yc5{bottom:119.730667pt;}
.y172{bottom:121.346667pt;}
.y200{bottom:122.858667pt;}
.y93{bottom:124.980000pt;}
.y9f{bottom:127.058667pt;}
.y1ba{bottom:128.742667pt;}
.y6e{bottom:130.512000pt;}
.y126{bottom:131.990667pt;}
.y171{bottom:133.938667pt;}
.y84{bottom:134.598667pt;}
.y1ff{bottom:134.858667pt;}
.ycf{bottom:135.928000pt;}
.y115{bottom:136.354667pt;}
.y43{bottom:137.254667pt;}
.ye4{bottom:137.836000pt;}
.yc4{bottom:139.777333pt;}
.y1b9{bottom:141.334667pt;}
.y125{bottom:144.422667pt;}
.y92{bottom:145.026667pt;}
.y170{bottom:146.370667pt;}
.y83{bottom:146.598667pt;}
.y1fe{bottom:146.858667pt;}
.y9e{bottom:147.106667pt;}
.y6d{bottom:150.560000pt;}
.y1b8{bottom:153.334667pt;}
.yce{bottom:155.974667pt;}
.y114{bottom:156.401333pt;}
.y124{bottom:156.582667pt;}
.ye3{bottom:157.884000pt;}
.y16f{bottom:158.370667pt;}
.y42{bottom:158.534667pt;}
.y1fd{bottom:158.858667pt;}
.yc3{bottom:159.825333pt;}
.y91{bottom:165.074667pt;}
.y1b7{bottom:165.334667pt;}
.y9d{bottom:167.153333pt;}
.y123{bottom:169.617333pt;}
.y16e{bottom:170.530667pt;}
.y6c{bottom:170.606667pt;}
.y1fc{bottom:170.858667pt;}
.ycd{bottom:176.022667pt;}
.y113{bottom:176.449333pt;}
.y1b6{bottom:177.334667pt;}
.ye2{bottom:177.930667pt;}
.y41{bottom:179.814667pt;}
.y1fb{bottom:182.858667pt;}
.y16d{bottom:183.122667pt;}
.y9c{bottom:187.201333pt;}
.y1b5{bottom:189.926667pt;}
.y6b{bottom:190.654667pt;}
.y1fa{bottom:194.858667pt;}
.y16c{bottom:195.714667pt;}
.yc2{bottom:197.472000pt;}
.ye1{bottom:197.978667pt;}
.y1b4{bottom:201.926667pt;}
.y1f9{bottom:206.858667pt;}
.y9b{bottom:207.248000pt;}
.y16b{bottom:208.306667pt;}
.y6a{bottom:210.701333pt;}
.y1b3{bottom:214.086667pt;}
.y112{bottom:214.096000pt;}
.yc1{bottom:217.520000pt;}
.ye0{bottom:218.025333pt;}
.y1f8{bottom:219.029333pt;}
.y40{bottom:219.425333pt;}
.y16a{bottom:220.898667pt;}
.y1b2{bottom:226.518667pt;}
.y9a{bottom:227.296000pt;}
.y90{bottom:228.525333pt;}
.y169{bottom:233.490667pt;}
.y111{bottom:234.142667pt;}
.yc0{bottom:237.566667pt;}
.ydf{bottom:238.073333pt;}
.y1b1{bottom:238.678667pt;}
.y122{bottom:239.242667pt;}
.y3f{bottom:239.472000pt;}
.ycc{bottom:239.474667pt;}
.y8f{bottom:240.525333pt;}
.y168{bottom:245.922667pt;}
.y99{bottom:247.342667pt;}
.y69{bottom:248.349333pt;}
.y1b0{bottom:251.110667pt;}
.y121{bottom:251.242667pt;}
.ycb{bottom:251.474667pt;}
.y8e{bottom:252.525333pt;}
.y110{bottom:254.190667pt;}
.ybf{bottom:257.613333pt;}
.y167{bottom:258.082667pt;}
.yde{bottom:258.120000pt;}
.y3e{bottom:259.518667pt;}
.y1af{bottom:263.110667pt;}
.y120{bottom:263.242667pt;}
.yca{bottom:263.474667pt;}
.y1f7{bottom:263.542667pt;}
.y98{bottom:267.390667pt;}
.y68{bottom:268.396000pt;}
.y166{bottom:270.674667pt;}
.y10f{bottom:274.237333pt;}
.y1ae{bottom:275.110667pt;}
.y11f{bottom:275.242667pt;}
.y1f6{bottom:276.577333pt;}
.ybe{bottom:277.661333pt;}
.ydd{bottom:278.166667pt;}
.y3d{bottom:279.566667pt;}
.y165{bottom:283.266667pt;}
.y11e{bottom:287.242667pt;}
.y1ad{bottom:287.702667pt;}
.y67{bottom:288.444000pt;}
.y10e{bottom:294.285333pt;}
.y164{bottom:295.858667pt;}
.ybd{bottom:297.708000pt;}
.ydc{bottom:298.214667pt;}
.y3c{bottom:299.613333pt;}
.y1ac{bottom:299.702667pt;}
.y163{bottom:308.450667pt;}
.y66{bottom:308.490667pt;}
.y1ab{bottom:311.702667pt;}
.y10d{bottom:314.332000pt;}
.ybc{bottom:317.756000pt;}
.ydb{bottom:318.261333pt;}
.y3b{bottom:319.661333pt;}
.y1f5{bottom:320.930667pt;}
.y162{bottom:321.042667pt;}
.y1aa{bottom:324.134667pt;}
.y65{bottom:328.538667pt;}
.y97{bottom:330.841333pt;}
.y1f4{bottom:333.090667pt;}
.y161{bottom:333.634667pt;}
.y10c{bottom:334.380000pt;}
.y1a9{bottom:336.294667pt;}
.ybb{bottom:337.802667pt;}
.y3a{bottom:339.708000pt;}
.y96{bottom:342.841333pt;}
.y1f3{bottom:345.522667pt;}
.y160{bottom:346.066667pt;}
.y64{bottom:348.585333pt;}
.y1a8{bottom:348.726667pt;}
.y10b{bottom:354.426667pt;}
.y11d{bottom:354.636000pt;}
.y95{bottom:354.841333pt;}
.yda{bottom:356.729333pt;}
.yba{bottom:357.850667pt;}
.y15f{bottom:358.066667pt;}
.y1f2{bottom:358.114667pt;}
.y39{bottom:359.756000pt;}
.y1a7{bottom:360.886667pt;}
.y63{bottom:368.633333pt;}
.y15e{bottom:370.066667pt;}
.y1f1{bottom:370.114667pt;}
.y1a6{bottom:373.318667pt;}
.y10a{bottom:374.474667pt;}
.y11c{bottom:374.684000pt;}
.yd9{bottom:374.729333pt;}
.yb9{bottom:377.897333pt;}
.y38{bottom:379.802667pt;}
.y15d{bottom:382.226667pt;}
.y1f0{bottom:382.274667pt;}
.yf9{bottom:382.498667pt;}
.y1a5{bottom:385.318667pt;}
.y62{bottom:388.680000pt;}
.yd8{bottom:392.729333pt;}
.y109{bottom:394.521333pt;}
.y1ef{bottom:394.706667pt;}
.y11b{bottom:394.730667pt;}
.y15c{bottom:394.818667pt;}
.y1a4{bottom:397.910667pt;}
.yb8{bottom:397.945333pt;}
.y37{bottom:399.850667pt;}
.yf8{bottom:402.545333pt;}
.y1ee{bottom:406.866667pt;}
.y15b{bottom:407.410667pt;}
.y61{bottom:408.726667pt;}
.y1a3{bottom:409.910667pt;}
.y19{bottom:410.238667pt;}
.yd7{bottom:410.729333pt;}
.y108{bottom:414.569333pt;}
.y11a{bottom:414.778667pt;}
.yb7{bottom:417.992000pt;}
.y1ed{bottom:419.298667pt;}
.y15a{bottom:420.002667pt;}
.y1a2{bottom:422.070667pt;}
.yf7{bottom:422.593333pt;}
.y18{bottom:427.572000pt;}
.yd6{bottom:428.729333pt;}
.y60{bottom:428.774667pt;}
.y1ec{bottom:431.458667pt;}
.y159{bottom:432.594667pt;}
.y107{bottom:434.616000pt;}
.y1a1{bottom:434.662667pt;}
.y119{bottom:434.825333pt;}
.y36{bottom:437.497333pt;}
.yb6{bottom:438.040000pt;}
.yf6{bottom:442.640000pt;}
.y1eb{bottom:443.890667pt;}
.y17{bottom:444.905333pt;}
.y158{bottom:445.186667pt;}
.yd5{bottom:446.729333pt;}
.y1a0{bottom:447.094667pt;}
.y5f{bottom:448.821333pt;}
.y106{bottom:454.664000pt;}
.y118{bottom:454.873333pt;}
.y1ea{bottom:455.890667pt;}
.y35{bottom:457.545333pt;}
.y157{bottom:457.618667pt;}
.y19f{bottom:459.254667pt;}
.y16{bottom:462.238667pt;}
.yf5{bottom:462.688000pt;}
.yd4{bottom:464.729333pt;}
.y1e9{bottom:468.482667pt;}
.y5e{bottom:468.869333pt;}
.y156{bottom:469.778667pt;}
.y19e{bottom:471.686667pt;}
.y105{bottom:474.710667pt;}
.y117{bottom:474.920000pt;}
.y34{bottom:477.592000pt;}
.y15{bottom:479.572000pt;}
.y1e8{bottom:480.914667pt;}
.y155{bottom:482.210667pt;}
.yd3{bottom:482.729333pt;}
.yf4{bottom:482.734667pt;}
.y19d{bottom:483.846667pt;}
.y1e7{bottom:492.914667pt;}
.y154{bottom:494.210667pt;}
.y104{bottom:494.757333pt;}
.yb2{bottom:494.966667pt;}
.y19c{bottom:496.278667pt;}
.y14{bottom:496.905333pt;}
.y33{bottom:497.640000pt;}
.yd2{bottom:500.729333pt;}
.yb5{bottom:501.490667pt;}
.yf3{bottom:502.781333pt;}
.y1e6{bottom:505.506667pt;}
.y153{bottom:506.210667pt;}
.y5d{bottom:506.516000pt;}
.y19b{bottom:508.438667pt;}
.yb4{bottom:513.490667pt;}
.y13{bottom:514.238667pt;}
.y103{bottom:514.805333pt;}
.yb1{bottom:515.014667pt;}
.y1e5{bottom:517.506667pt;}
.y32{bottom:517.686667pt;}
.y152{bottom:518.370667pt;}
.yd1{bottom:518.729333pt;}
.y19a{bottom:520.870667pt;}
.yf2{bottom:522.829333pt;}
.yb3{bottom:525.490667pt;}
.y5c{bottom:526.564000pt;}
.y1e4{bottom:530.098667pt;}
.y151{bottom:530.962667pt;}
.y12{bottom:531.572000pt;}
.y199{bottom:533.030667pt;}
.y102{bottom:534.852000pt;}
.yb0{bottom:535.061333pt;}
.y31{bottom:537.733333pt;}
.y1e3{bottom:542.098667pt;}
.y150{bottom:543.394667pt;}
.y198{bottom:545.462667pt;}
.y5b{bottom:546.610667pt;}
.y1e2{bottom:554.098667pt;}
.y82{bottom:554.334667pt;}
.y101{bottom:554.900000pt;}
.yaf{bottom:555.109333pt;}
.y14f{bottom:555.394667pt;}
.y30{bottom:557.781333pt;}
.y197{bottom:557.894667pt;}
.yf1{bottom:561.296000pt;}
.y1e1{bottom:566.258667pt;}
.y5a{bottom:566.658667pt;}
.y14e{bottom:567.394667pt;}
.y196{bottom:569.894667pt;}
.y11{bottom:572.865333pt;}
.y81{bottom:574.381333pt;}
.y100{bottom:574.946667pt;}
.yae{bottom:575.156000pt;}
.y1e0{bottom:578.690667pt;}
.yf0{bottom:579.296000pt;}
.y14d{bottom:579.394667pt;}
.y195{bottom:582.486667pt;}
.y59{bottom:586.705333pt;}
.y1df{bottom:590.690667pt;}
.y14c{bottom:591.394667pt;}
.y80{bottom:594.429333pt;}
.y194{bottom:594.486667pt;}
.yff{bottom:594.994667pt;}
.yad{bottom:595.204000pt;}
.y2f{bottom:596.248000pt;}
.y10{bottom:597.132000pt;}
.yef{bottom:597.296000pt;}
.y1de{bottom:602.850667pt;}
.y14b{bottom:603.394667pt;}
.y193{bottom:606.646667pt;}
.y58{bottom:606.753333pt;}
.y7f{bottom:614.476000pt;}
.y2e{bottom:614.896000pt;}
.yfe{bottom:615.041333pt;}
.y8d{bottom:615.250667pt;}
.y1dd{bottom:615.282667pt;}
.yee{bottom:615.296000pt;}
.y14a{bottom:615.394667pt;}
.y192{bottom:619.078667pt;}
.yf{bottom:621.398667pt;}
.y57{bottom:626.800000pt;}
.y1dc{bottom:627.282667pt;}
.y149{bottom:627.394667pt;}
.y191{bottom:631.238667pt;}
.yc9{bottom:632.850667pt;}
.y2d{bottom:632.896000pt;}
.yed{bottom:633.296000pt;}
.y7e{bottom:634.524000pt;}
.yfd{bottom:635.089333pt;}
.y8c{bottom:635.298667pt;}
.y1db{bottom:639.442667pt;}
.y148{bottom:639.554667pt;}
.y190{bottom:643.670667pt;}
.ye{bottom:645.665333pt;}
.y56{bottom:646.848000pt;}
.y2c{bottom:650.896000pt;}
.yec{bottom:651.296000pt;}
.y1da{bottom:651.874667pt;}
.y147{bottom:651.986667pt;}
.yc8{bottom:652.898667pt;}
.y7d{bottom:654.570667pt;}
.y8b{bottom:655.345333pt;}
.y18f{bottom:655.670667pt;}
.y146{bottom:663.986667pt;}
.y1d9{bottom:664.034667pt;}
.y55{bottom:666.894667pt;}
.y18e{bottom:668.102667pt;}
.y2b{bottom:668.896000pt;}
.yeb{bottom:669.296000pt;}
.yd{bottom:669.932000pt;}
.yc7{bottom:672.945333pt;}
.y7c{bottom:674.618667pt;}
.yac{bottom:675.393333pt;}
.y145{bottom:676.146667pt;}
.y1d8{bottom:676.626667pt;}
.y18d{bottom:680.534667pt;}
.y2a{bottom:686.896000pt;}
.y54{bottom:686.941333pt;}
.yea{bottom:687.296000pt;}
.y144{bottom:688.738667pt;}
.y1d7{bottom:689.058667pt;}
.y18c{bottom:692.966667pt;}
.y8a{bottom:692.993333pt;}
.yc{bottom:694.198667pt;}
.y7b{bottom:694.665333pt;}
.yab{bottom:695.440000pt;}
.yfc{bottom:698.541333pt;}
.y143{bottom:701.330667pt;}
.y1d6{bottom:701.490667pt;}
.y29{bottom:704.896000pt;}
.ye9{bottom:705.296000pt;}
.y18b{bottom:705.398667pt;}
.y53{bottom:706.989333pt;}
.yfb{bottom:710.541333pt;}
.y89{bottom:713.040000pt;}
.y1d5{bottom:713.650667pt;}
.y142{bottom:713.762667pt;}
.y7a{bottom:714.713333pt;}
.yaa{bottom:715.488000pt;}
.y18a{bottom:717.398667pt;}
.yb{bottom:718.465333pt;}
.yfa{bottom:722.541333pt;}
.y28{bottom:722.896000pt;}
.ye8{bottom:723.296000pt;}
.y141{bottom:725.762667pt;}
.y1d4{bottom:726.082667pt;}
.y52{bottom:727.036000pt;}
.y189{bottom:729.990667pt;}
.y88{bottom:733.088000pt;}
.y79{bottom:734.760000pt;}
.ya9{bottom:735.534667pt;}
.y140{bottom:737.922667pt;}
.y1d3{bottom:738.082667pt;}
.y27{bottom:740.896000pt;}
.ye7{bottom:741.296000pt;}
.y188{bottom:741.990667pt;}
.ya{bottom:742.732000pt;}
.y51{bottom:747.084000pt;}
.y1d2{bottom:750.082667pt;}
.y13f{bottom:750.354667pt;}
.y87{bottom:753.134667pt;}
.y187{bottom:753.990667pt;}
.ya8{bottom:755.581333pt;}
.y26{bottom:758.896000pt;}
.ye6{bottom:759.296000pt;}
.y13e{bottom:762.354667pt;}
.y1d1{bottom:762.674667pt;}
.y186{bottom:766.582667pt;}
.y9{bottom:766.998667pt;}
.y50{bottom:767.130667pt;}
.y86{bottom:773.181333pt;}
.y78{bottom:773.226667pt;}
.y13d{bottom:774.514667pt;}
.y1d0{bottom:774.674667pt;}
.ya7{bottom:775.629333pt;}
.y25{bottom:776.896000pt;}
.y185{bottom:778.582667pt;}
.y1cf{bottom:786.834667pt;}
.y13c{bottom:787.106667pt;}
.y4f{bottom:787.178667pt;}
.y184{bottom:790.742667pt;}
.y77{bottom:791.226667pt;}
.y8{bottom:791.265333pt;}
.y85{bottom:793.229333pt;}
.ya6{bottom:795.676000pt;}
.y1ce{bottom:799.426667pt;}
.y13b{bottom:799.698667pt;}
.y183{bottom:803.174667pt;}
.y4e{bottom:807.225333pt;}
.y76{bottom:809.226667pt;}
.y1cd{bottom:811.858667pt;}
.y13a{bottom:812.290667pt;}
.y24{bottom:813.276000pt;}
.y182{bottom:815.174667pt;}
.ya5{bottom:815.724000pt;}
.y1cc{bottom:823.858667pt;}
.y139{bottom:824.722667pt;}
.y75{bottom:827.226667pt;}
.y4d{bottom:827.273333pt;}
.y181{bottom:827.766667pt;}
.y23{bottom:833.324000pt;}
.y7{bottom:835.190667pt;}
.ya4{bottom:835.770667pt;}
.y1cb{bottom:836.018667pt;}
.y138{bottom:836.882667pt;}
.y180{bottom:839.766667pt;}
.y74{bottom:845.226667pt;}
.y4c{bottom:847.320000pt;}
.y1ca{bottom:848.450667pt;}
.y137{bottom:849.474667pt;}
.y17f{bottom:852.358667pt;}
.y17e{bottom:852.369333pt;}
.y22{bottom:853.370667pt;}
.ya3{bottom:855.818667pt;}
.y1c9{bottom:860.450667pt;}
.y136{bottom:861.906667pt;}
.y73{bottom:863.226667pt;}
.y4b{bottom:867.368000pt;}
.y1c8{bottom:872.610667pt;}
.y21{bottom:873.418667pt;}
.y135{bottom:873.906667pt;}
.ya2{bottom:875.865333pt;}
.y72{bottom:881.226667pt;}
.y1c7{bottom:885.042667pt;}
.y134{bottom:885.906667pt;}
.y4a{bottom:887.414667pt;}
.y6{bottom:888.524000pt;}
.y20{bottom:893.465333pt;}
.ya1{bottom:895.913333pt;}
.y17d{bottom:896.722667pt;}
.y1c6{bottom:897.042667pt;}
.y133{bottom:898.066667pt;}
.y71{bottom:899.226667pt;}
.y49{bottom:907.462667pt;}
.y17c{bottom:908.882667pt;}
.y1c5{bottom:909.634667pt;}
.y132{bottom:910.658667pt;}
.y1f{bottom:913.513333pt;}
.y70{bottom:917.226667pt;}
.y17b{bottom:921.314667pt;}
.y1c4{bottom:921.634667pt;}
.y131{bottom:923.090667pt;}
.y48{bottom:927.509333pt;}
.y17a{bottom:933.314667pt;}
.y1e{bottom:933.560000pt;}
.y1c3{bottom:933.634667pt;}
.y130{bottom:935.090667pt;}
.y5{bottom:942.657333pt;}
.y179{bottom:945.314667pt;}
.y1c2{bottom:946.066667pt;}
.y12f{bottom:947.090667pt;}
.y1d{bottom:953.608000pt;}
.y178{bottom:957.314667pt;}
.y1c1{bottom:958.066667pt;}
.y12e{bottom:959.090667pt;}
.y177{bottom:969.314667pt;}
.y47{bottom:969.982667pt;}
.y1c0{bottom:970.658667pt;}
.y12d{bottom:971.090667pt;}
.y1c{bottom:973.654667pt;}
.y176{bottom:981.474667pt;}
.y1bf{bottom:982.658667pt;}
.y12c{bottom:983.090667pt;}
.y46{bottom:991.262667pt;}
.y1b{bottom:993.702667pt;}
.y175{bottom:994.066667pt;}
.y1be{bottom:994.658667pt;}
.y12b{bottom:995.090667pt;}
.y4{bottom:998.209333pt;}
.y174{bottom:1006.658667pt;}
.y12a{bottom:1007.090667pt;}
.y1bd{bottom:1007.250667pt;}
.y204{bottom:1007.682667pt;}
.y45{bottom:1012.542667pt;}
.y1a{bottom:1013.749333pt;}
.y129{bottom:1019.250667pt;}
.y203{bottom:1019.682667pt;}
.y2{bottom:1065.624000pt;}
.y1{bottom:1077.624000pt;}
.h11{height:36.053333pt;}
.h12{height:37.268383pt;}
.h3{height:38.312000pt;}
.h2{height:38.333333pt;}
.h16{height:38.357333pt;}
.h17{height:38.400000pt;}
.h14{height:42.729333pt;}
.h15{height:44.500000pt;}
.h13{height:47.179688pt;}
.h7{height:47.916667pt;}
.h8{height:52.708333pt;}
.ha{height:54.080000pt;}
.hf{height:58.322917pt;}
.h9{height:61.187500pt;}
.h10{height:61.744000pt;}
.hd{height:63.093333pt;}
.hb{height:66.750000pt;}
.h4{height:67.083333pt;}
.he{height:72.034667pt;}
.hc{height:77.875000pt;}
.h6{height:180.266667pt;}
.h5{height:192.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.693333pt;}
.x1{left:57.760000pt;}
.x5{left:119.054667pt;}
.x6{left:146.154667pt;}
.x3{left:192.756000pt;}
.x2{left:193.822667pt;}
.xc{left:201.428000pt;}
.x35{left:206.814667pt;}
.x8{left:208.320000pt;}
.x9{left:213.760000pt;}
.x3f{left:223.966667pt;}
.x3a{left:231.593333pt;}
.x2e{left:233.492000pt;}
.x51{left:242.153333pt;}
.x58{left:244.276000pt;}
.x40{left:248.532000pt;}
.x53{left:251.796000pt;}
.x24{left:257.086667pt;}
.x12{left:259.561333pt;}
.x17{left:262.633333pt;}
.x22{left:264.201333pt;}
.x32{left:265.972000pt;}
.x66{left:268.094667pt;}
.x43{left:269.662667pt;}
.x31{left:271.765333pt;}
.x2d{left:273.641333pt;}
.x42{left:274.601333pt;}
.x3b{left:276.201333pt;}
.x30{left:279.177333pt;}
.xd{left:280.766667pt;}
.x5c{left:282.484000pt;}
.x50{left:286.153333pt;}
.x4e{left:291.060000pt;}
.x6e{left:294.964000pt;}
.x54{left:298.964000pt;}
.x2a{left:301.854667pt;}
.x7{left:303.434667pt;}
.x3e{left:306.249333pt;}
.x1d{left:309.342667pt;}
.x68{left:314.452000pt;}
.x10{left:320.244000pt;}
.x4b{left:323.689333pt;}
.x36{left:326.484000pt;}
.x33{left:328.990667pt;}
.x29{left:334.516000pt;}
.x15{left:337.076000pt;}
.x47{left:338.516000pt;}
.x52{left:340.382667pt;}
.x1e{left:346.249333pt;}
.x69{left:348.585333pt;}
.x1f{left:355.198667pt;}
.x3c{left:359.369333pt;}
.x5d{left:365.534667pt;}
.x60{left:374.868000pt;}
.x27{left:377.982667pt;}
.x56{left:382.174667pt;}
.x64{left:383.828000pt;}
.x44{left:385.353333pt;}
.x4f{left:386.366667pt;}
.x39{left:388.276000pt;}
.x20{left:389.332000pt;}
.x5e{left:390.260000pt;}
.xe{left:392.958667pt;}
.x55{left:394.270667pt;}
.x61{left:396.980000pt;}
.x4c{left:404.969333pt;}
.x48{left:410.036000pt;}
.x13{left:411.401333pt;}
.x49{left:417.630667pt;}
.x2f{left:423.636000pt;}
.x62{left:429.716000pt;}
.x11{left:430.676000pt;}
.x4a{left:434.740000pt;}
.x25{left:448.681333pt;}
.x14{left:451.561333pt;}
.x45{left:453.044000pt;}
.x6a{left:458.046667pt;}
.x5f{left:459.742667pt;}
.x37{left:460.841333pt;}
.x18{left:462.900000pt;}
.x6d{left:468.041333pt;}
.xf{left:471.614667pt;}
.x59{left:476.830667pt;}
.x21{left:479.369333pt;}
.x19{left:482.846667pt;}
.xa{left:484.030667pt;}
.x28{left:485.769333pt;}
.x5a{left:486.740000pt;}
.x2b{left:497.033333pt;}
.x4d{left:500.276000pt;}
.x6b{left:503.476000pt;}
.x38{left:504.606667pt;}
.x63{left:516.830667pt;}
.x1a{left:521.406667pt;}
.x46{left:528.212000pt;}
.x5b{left:529.460000pt;}
.x1c{left:530.793333pt;}
.x57{left:535.273333pt;}
.x6c{left:538.516000pt;}
.x65{left:540.137333pt;}
.x16{left:543.572000pt;}
.x2c{left:545.300000pt;}
.x3d{left:547.902667pt;}
.x41{left:552.030667pt;}
.x1b{left:558.420000pt;}
.x34{left:561.396000pt;}
.x26{left:573.822667pt;}
.x23{left:575.625333pt;}
.xb{left:576.969333pt;}
.x67{left:581.438667pt;}
}




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