
    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_1ba9c4720e9042eb8e708167.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871000;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_a240be8a217cbfa65805a7df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_7a82f09b5c3be94cfe43f648.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cfcc3011a7df799929961c64.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_065076760535088539acca27.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d76db0261c55153b5186251f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871000;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_dffc63222edda749f1012afc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102539;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_6efc0167ac72707c9c702392.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6e3035597142a9bacc7e9fb4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.858000;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_d4dd13be625d15e0342986ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_b6e39bd64be91520dd16c213.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_d4fe6e1795fdb9dbe48cf477.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_1340c1a9bbb1d68ac1496f48.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_8ff5e02e62135048efec8e99.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.967000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_062e12d927fd3a5641eb2f20.woff2')format("woff");}.fff{font-family:fff;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_34d2708e513d876e9b9e46d4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.850000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7cb6fddd60dd979ec03025f5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.862000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.400000px;}
.v3{vertical-align:-13.650000px;}
.v4{vertical-align:-2.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.100000px;}
.v5{vertical-align:52.050000px;}
.lsed{letter-spacing:-3.111900px;}
.ls97{letter-spacing:-3.037500px;}
.ls95{letter-spacing:-2.835000px;}
.lsd3{letter-spacing:-2.826450px;}
.lsdc{letter-spacing:-2.655150px;}
.ls4{letter-spacing:-2.565000px;}
.ls9c{letter-spacing:-2.483850px;}
.ls46{letter-spacing:-2.367750px;}
.lscf{letter-spacing:-2.364750px;}
.ls11{letter-spacing:-2.333550px;}
.lsd5{letter-spacing:-2.327160px;}
.lsd1{letter-spacing:-2.312550px;}
.lscc{letter-spacing:-2.311350px;}
.ls2b{letter-spacing:-2.300100px;}
.ls45{letter-spacing:-2.227500px;}
.lsbf{letter-spacing:-2.223000px;}
.lsa9{letter-spacing:-2.209200px;}
.lsa7{letter-spacing:-2.207100px;}
.ls29{letter-spacing:-2.176650px;}
.ls9b{letter-spacing:-2.141250px;}
.lsce{letter-spacing:-2.051400px;}
.lsa5{letter-spacing:-2.049450px;}
.lsf{letter-spacing:-2.020755px;}
.ls21{letter-spacing:-2.016000px;}
.ls27{letter-spacing:-1.865700px;}
.lse1{letter-spacing:-1.803750px;}
.lsa3{letter-spacing:-1.735800px;}
.lsa6{letter-spacing:-1.734150px;}
.lsc0{letter-spacing:-1.687500px;}
.ls28{letter-spacing:-1.658400px;}
.ls44{letter-spacing:-1.641900px;}
.ls1a{letter-spacing:-1.638450px;}
.ls7{letter-spacing:-1.633065px;}
.ls88{letter-spacing:-1.623600px;}
.ls48{letter-spacing:-1.616835px;}
.ls26{letter-spacing:-1.599750px;}
.lse6{letter-spacing:-1.587300px;}
.lsa8{letter-spacing:-1.578000px;}
.lsb1{letter-spacing:-1.576500px;}
.ls8a{letter-spacing:-1.552500px;}
.lsbe{letter-spacing:-1.541700px;}
.ls9{letter-spacing:-1.534500px;}
.lsef{letter-spacing:-1.515360px;}
.ls66{letter-spacing:-1.515150px;}
.ls53{letter-spacing:-1.512000px;}
.lsee{letter-spacing:-1.488300px;}
.ls98{letter-spacing:-1.485000px;}
.lse4{letter-spacing:-1.443000px;}
.ls20{letter-spacing:-1.386000px;}
.ls68{letter-spacing:-1.360800px;}
.lsd0{letter-spacing:-1.284750px;}
.lsd4{letter-spacing:-1.262400px;}
.ls9d{letter-spacing:-1.199100px;}
.ls38{letter-spacing:-1.114350px;}
.lsae{letter-spacing:-1.103550px;}
.ls35{letter-spacing:-1.053000px;}
.lsd8{letter-spacing:-0.945900px;}
.ls70{letter-spacing:-0.938400px;}
.ls49{letter-spacing:-0.908460px;}
.ls82{letter-spacing:-0.883050px;}
.ls34{letter-spacing:-0.877500px;}
.ls77{letter-spacing:-0.856500px;}
.ls4f{letter-spacing:-0.851850px;}
.ls6b{letter-spacing:-0.819000px;}
.ls63{letter-spacing:-0.811800px;}
.lsf0{letter-spacing:-0.805035px;}
.lsc9{letter-spacing:-0.789000px;}
.ls89{letter-spacing:-0.742500px;}
.ls47{letter-spacing:-0.676500px;}
.ls1c{letter-spacing:-0.653250px;}
.ls8c{letter-spacing:-0.645150px;}
.lsc8{letter-spacing:-0.630600px;}
.lsd{letter-spacing:-0.595800px;}
.lsb{letter-spacing:-0.594000px;}
.ls1d{letter-spacing:-0.568350px;}
.ls15{letter-spacing:-0.544500px;}
.ls2e{letter-spacing:-0.540000px;}
.ls6f{letter-spacing:-0.526500px;}
.lse5{letter-spacing:-0.473550px;}
.ls10{letter-spacing:-0.456780px;}
.lsb4{letter-spacing:-0.366240px;}
.ls73{letter-spacing:-0.351000px;}
.ls78{letter-spacing:-0.342600px;}
.lsb6{letter-spacing:-0.326625px;}
.lse{letter-spacing:-0.297900px;}
.lse7{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.247500px;}
.ls1f{letter-spacing:-0.189000px;}
.lsc3{letter-spacing:-0.169845px;}
.ls5f{letter-spacing:-0.089265px;}
.ls60{letter-spacing:-0.024300px;}
.ls0{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.008100px;}
.ls3b{letter-spacing:0.021000px;}
.ls5c{letter-spacing:0.096000px;}
.ls14{letter-spacing:0.099300px;}
.ls52{letter-spacing:0.108000px;}
.lsde{letter-spacing:0.154050px;}
.ls8b{letter-spacing:0.175500px;}
.lsc1{letter-spacing:0.177150px;}
.ls17{letter-spacing:0.198000px;}
.ls2f{letter-spacing:0.234600px;}
.ls13{letter-spacing:0.248250px;}
.ls5a{letter-spacing:0.288600px;}
.lsdf{letter-spacing:0.382395px;}
.ls59{letter-spacing:0.432000px;}
.lsaf{letter-spacing:0.432450px;}
.lsac{letter-spacing:0.432900px;}
.ls3d{letter-spacing:0.442050px;}
.ls93{letter-spacing:0.567900px;}
.ls62{letter-spacing:0.608850px;}
.lsbc{letter-spacing:0.662550px;}
.ls3{letter-spacing:0.667200px;}
.ls61{letter-spacing:0.675000px;}
.ls76{letter-spacing:0.685200px;}
.ls87{letter-spacing:0.689550px;}
.ls22{letter-spacing:0.725550px;}
.ls86{letter-spacing:0.739500px;}
.ls96{letter-spacing:0.744150px;}
.lsbd{letter-spacing:0.756000px;}
.ls7c{letter-spacing:0.756900px;}
.ls32{letter-spacing:0.762450px;}
.lsb0{letter-spacing:0.764790px;}
.ls5d{letter-spacing:0.820950px;}
.ls7f{letter-spacing:0.869550px;}
.ls85{letter-spacing:0.877500px;}
.ls91{letter-spacing:0.881550px;}
.ls3c{letter-spacing:0.882000px;}
.ls7e{letter-spacing:0.919500px;}
.ls2a{letter-spacing:0.932850px;}
.lscd{letter-spacing:0.945900px;}
.lsb9{letter-spacing:0.953550px;}
.ls3a{letter-spacing:0.970200px;}
.lsad{letter-spacing:1.009050px;}
.ls1e{letter-spacing:1.010400px;}
.ls7d{letter-spacing:1.071000px;}
.ls12{letter-spacing:1.092300px;}
.lsa4{letter-spacing:1.103550px;}
.ls80{letter-spacing:1.103895px;}
.lsc7{letter-spacing:1.104600px;}
.lsc4{letter-spacing:1.113450px;}
.ls16{letter-spacing:1.188000px;}
.lsd2{letter-spacing:1.199100px;}
.ls4e{letter-spacing:1.230450px;}
.ls81{letter-spacing:1.261500px;}
.lsba{letter-spacing:1.306500px;}
.ls18{letter-spacing:1.336500px;}
.ls30{letter-spacing:1.348950px;}
.lsd6{letter-spacing:1.353750px;}
.lsb7{letter-spacing:1.368000px;}
.ls5e{letter-spacing:1.391655px;}
.ls6a{letter-spacing:1.404000px;}
.lsc2{letter-spacing:1.418850px;}
.ls94{letter-spacing:1.419750px;}
.lsc6{letter-spacing:1.420200px;}
.ls2d{letter-spacing:1.420650px;}
.ls19{letter-spacing:1.439850px;}
.ls65{letter-spacing:1.443000px;}
.ls75{letter-spacing:1.456050px;}
.lsd9{letter-spacing:1.458000px;}
.lsd7{letter-spacing:1.462050px;}
.ls84{letter-spacing:1.466250px;}
.ls69{letter-spacing:1.474200px;}
.lsda{letter-spacing:1.478295px;}
.lsa{letter-spacing:1.485000px;}
.ls9f{letter-spacing:1.514100px;}
.lsb8{letter-spacing:1.530000px;}
.ls5b{letter-spacing:1.566000px;}
.lsdb{letter-spacing:1.570350px;}
.ls6e{letter-spacing:1.579500px;}
.lse3{letter-spacing:1.587300px;}
.ls74{letter-spacing:1.632150px;}
.ls72{letter-spacing:1.642200px;}
.ls31{letter-spacing:1.696500px;}
.ls33{letter-spacing:1.737450px;}
.ls2c{letter-spacing:1.961850px;}
.ls64{letter-spacing:2.020200px;}
.ls50{letter-spacing:2.082300px;}
.lse9{letter-spacing:2.088000px;}
.lsb5{letter-spacing:2.090400px;}
.ls2{letter-spacing:2.111400px;}
.ls39{letter-spacing:2.164500px;}
.ls92{letter-spacing:2.271600px;}
.ls37{letter-spacing:2.340000px;}
.lsbb{letter-spacing:2.351700px;}
.lsf1{letter-spacing:2.388000px;}
.lse8{letter-spacing:2.438670px;}
.ls67{letter-spacing:2.448000px;}
.lse2{letter-spacing:2.453100px;}
.ls6d{letter-spacing:2.580600px;}
.lse0{letter-spacing:2.597400px;}
.ls71{letter-spacing:2.691000px;}
.ls1{letter-spacing:2.756550px;}
.ls79{letter-spacing:2.836050px;}
.ls4d{letter-spacing:2.839500px;}
.ls83{letter-spacing:2.866500px;}
.ls1b{letter-spacing:2.874300px;}
.ls7a{letter-spacing:2.907000px;}
.ls8d{letter-spacing:2.932500px;}
.lsf2{letter-spacing:2.934150px;}
.ls36{letter-spacing:2.983500px;}
.ls51{letter-spacing:3.066000px;}
.ls8{letter-spacing:12.686550px;}
.lsec{letter-spacing:17.133300px;}
.lseb{letter-spacing:17.190000px;}
.lsea{letter-spacing:17.373300px;}
.ls54{letter-spacing:22.380600px;}
.ls56{letter-spacing:22.464000px;}
.ls55{letter-spacing:22.500600px;}
.ls58{letter-spacing:22.584000px;}
.ls23{letter-spacing:27.764550px;}
.ls8e{letter-spacing:38.370000px;}
.ls4a{letter-spacing:38.572500px;}
.ls99{letter-spacing:43.147500px;}
.ls90{letter-spacing:47.872500px;}
.ls8f{letter-spacing:47.925000px;}
.ls4b{letter-spacing:48.022500px;}
.ls9a{letter-spacing:51.022500px;}
.ls4c{letter-spacing:54.172500px;}
.ls24{letter-spacing:57.322500px;}
.ls25{letter-spacing:57.375000px;}
.ls41{letter-spacing:57.472500px;}
.ls9e{letter-spacing:57.495000px;}
.ls3e{letter-spacing:57.502500px;}
.ls40{letter-spacing:57.525000px;}
.ls3f{letter-spacing:57.555000px;}
.ls43{letter-spacing:58.472550px;}
.ls42{letter-spacing:58.522500px;}
.ls6c{letter-spacing:58.642500px;}
.ls6{letter-spacing:94.259400px;}
.ls5{letter-spacing:94.350000px;}
.lsa0{letter-spacing:100.620000px;}
.lsc5{letter-spacing:100.672500px;}
.lsa1{letter-spacing:106.920000px;}
.lsa2{letter-spacing:106.972500px;}
.lsab{letter-spacing:111.615000px;}
.lsaa{letter-spacing:111.667500px;}
.lsca{letter-spacing:111.697500px;}
.lsb3{letter-spacing:116.340000px;}
.lsb2{letter-spacing:116.392500px;}
.lscb{letter-spacing:119.572500px;}
.ls7b{letter-spacing:124.297500px;}
.lsdd{letter-spacing:129.022500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(20,60,100),0 0.015em rgb(20,60,100),0.015em 0 rgb(20,60,100),0 -0.015em  rgb(20,60,100);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(20,60,100);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-87.346350px;}
.ws50{word-spacing:-48.872400px;}
.ws25{word-spacing:-47.975340px;}
.ws51{word-spacing:-43.826700px;}
.ws55{word-spacing:-41.777250px;}
.ws52{word-spacing:-41.619600px;}
.ws54{word-spacing:-41.082750px;}
.ws5b{word-spacing:-38.672400px;}
.ws59{word-spacing:-38.411100px;}
.ws5{word-spacing:-37.662900px;}
.ws56{word-spacing:-36.362400px;}
.ws45{word-spacing:-36.331200px;}
.ws57{word-spacing:-36.320700px;}
.ws41{word-spacing:-35.826600px;}
.ws58{word-spacing:-35.667450px;}
.ws27{word-spacing:-33.818700px;}
.ws6{word-spacing:-30.065700px;}
.ws16{word-spacing:-29.747550px;}
.ws14{word-spacing:-29.540250px;}
.ws15{word-spacing:-28.814700px;}
.ws7{word-spacing:-28.432635px;}
.ws5c{word-spacing:-25.460850px;}
.ws40{word-spacing:-23.810700px;}
.ws5a{word-spacing:-23.769000px;}
.ws6e{word-spacing:-22.496370px;}
.ws70{word-spacing:-22.104000px;}
.ws5d{word-spacing:-21.498150px;}
.ws4f{word-spacing:-21.326850px;}
.ws3{word-spacing:-21.204000px;}
.ws81{word-spacing:-21.155550px;}
.ws2c{word-spacing:-20.448000px;}
.ws6f{word-spacing:-20.440095px;}
.ws21{word-spacing:-20.057700px;}
.ws2d{word-spacing:-20.016000px;}
.ws77{word-spacing:-19.642500px;}
.ws7a{word-spacing:-19.550850px;}
.ws29{word-spacing:-19.440000px;}
.ws2a{word-spacing:-19.415550px;}
.ws1{word-spacing:-19.061250px;}
.ws3a{word-spacing:-18.954000px;}
.ws34{word-spacing:-18.885300px;}
.ws20{word-spacing:-18.806700px;}
.ws24{word-spacing:-18.765000px;}
.ws47{word-spacing:-18.585000px;}
.ws1e{word-spacing:-18.484200px;}
.ws2{word-spacing:-18.416100px;}
.ws1f{word-spacing:-18.396000px;}
.ws31{word-spacing:-18.376650px;}
.ws49{word-spacing:-18.022500px;}
.ws2b{word-spacing:-17.994900px;}
.ws3b{word-spacing:-17.946900px;}
.ws36{word-spacing:-17.842500px;}
.ws38{word-spacing:-17.667000px;}
.ws3c{word-spacing:-17.653650px;}
.ws3e{word-spacing:-17.608500px;}
.ws46{word-spacing:-17.555700px;}
.ws5e{word-spacing:-17.550000px;}
.ws1d{word-spacing:-17.514000px;}
.ws79{word-spacing:-17.318400px;}
.ws3d{word-spacing:-17.316000px;}
.ws7e{word-spacing:-17.291340px;}
.ws69{word-spacing:-17.243850px;}
.ws4a{word-spacing:-17.212500px;}
.ws72{word-spacing:-17.189865px;}
.ws71{word-spacing:-17.183100px;}
.ws6a{word-spacing:-17.099550px;}
.ws17{word-spacing:-16.912500px;}
.ws62{word-spacing:-16.875000px;}
.ws68{word-spacing:-16.624050px;}
.ws2e{word-spacing:-16.578000px;}
.ws35{word-spacing:-16.539300px;}
.ws65{word-spacing:-16.531995px;}
.ws67{word-spacing:-16.515750px;}
.ws7f{word-spacing:-16.506600px;}
.ws2f{word-spacing:-16.486200px;}
.ws63{word-spacing:-16.470000px;}
.ws66{word-spacing:-16.445355px;}
.ws3f{word-spacing:-16.416000px;}
.ws64{word-spacing:-16.407450px;}
.ws33{word-spacing:-16.304700px;}
.ws6d{word-spacing:-15.984000px;}
.ws22{word-spacing:-15.913800px;}
.ws37{word-spacing:-15.736500px;}
.ws1b{word-spacing:-15.385500px;}
.ws39{word-spacing:-15.366300px;}
.ws1c{word-spacing:-15.210000px;}
.ws4b{word-spacing:-15.190350px;}
.ws30{word-spacing:-15.053700px;}
.ws28{word-spacing:-15.012000px;}
.ws18{word-spacing:-14.612400px;}
.ws12{word-spacing:-14.271900px;}
.wsf{word-spacing:-13.959000px;}
.wsa{word-spacing:-13.802700px;}
.ws10{word-spacing:-13.761000px;}
.ws11{word-spacing:-13.703550px;}
.wsb{word-spacing:-13.504800px;}
.wsd{word-spacing:-13.345920px;}
.ws9{word-spacing:-13.206900px;}
.ws6b{word-spacing:-13.203450px;}
.ws8{word-spacing:-13.167000px;}
.wsc{word-spacing:-11.781945px;}
.wse{word-spacing:-11.469150px;}
.ws42{word-spacing:-11.268000px;}
.ws0{word-spacing:-10.170000px;}
.ws76{word-spacing:-3.867900px;}
.ws80{word-spacing:-2.697750px;}
.ws60{word-spacing:-2.596800px;}
.ws19{word-spacing:-2.331000px;}
.ws7d{word-spacing:-2.271300px;}
.ws4d{word-spacing:-1.988700px;}
.ws23{word-spacing:-1.860000px;}
.ws5f{word-spacing:-1.738200px;}
.ws78{word-spacing:-1.301250px;}
.ws73{word-spacing:-0.895350px;}
.ws53{word-spacing:-0.741300px;}
.ws4e{word-spacing:-0.555000px;}
.ws26{word-spacing:-0.532650px;}
.ws7c{word-spacing:-0.400500px;}
.ws4{word-spacing:0.000000px;}
.ws4c{word-spacing:0.871350px;}
.ws1a{word-spacing:1.695000px;}
.ws74{word-spacing:1.912500px;}
.ws75{word-spacing:1.915950px;}
.ws7b{word-spacing:2.197500px;}
.ws61{word-spacing:4.996530px;}
.ws6c{word-spacing:130.140000px;}
.ws43{word-spacing:245.747850px;}
.ws44{word-spacing:301.006200px;}
.ws32{word-spacing:3352.998900px;}
.ws48{word-spacing:3359.898900px;}
._10{margin-left:-1008.166650px;}
._b{margin-left:-8.782350px;}
._9{margin-left:-6.875400px;}
._a{margin-left:-5.809050px;}
._2{margin-left:-3.870900px;}
._4{margin-left:-2.800500px;}
._1{margin-left:-1.305000px;}
._0{width:1.980000px;}
._3{width:3.839850px;}
._6{width:5.728500px;}
._7{width:6.852300px;}
._8{width:14.511300px;}
._c{width:16.355250px;}
._12{width:17.773500px;}
._17{width:20.558550px;}
._d{width:21.874200px;}
._f{width:24.680400px;}
._16{width:28.450800px;}
._15{width:37.641150px;}
._14{width:40.322100px;}
._13{width:42.567750px;}
._18{width:146.394750px;}
._11{width:176.703000px;}
._5{width:301.757400px;}
._e{width:539.046300px;}
.fc14{color:rgb(32,172,111);}
.fc12{color:rgb(255,64,255);}
.fc11{color:rgb(192,156,0);}
.fc13{color:rgb(0,112,192);}
.fc10{color:rgb(179,80,255);}
.fcd{color:rgb(237,125,49);}
.fc7{color:rgb(255,255,255);}
.fc8{color:rgb(117,117,117);}
.fc9{color:rgb(136,136,136);}
.fc1{color:rgb(20,60,100);}
.fce{color:rgb(84,130,53);}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(70,120,134);}
.fc15{color:rgb(16,86,56);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fcf{color:rgb(163,73,234);}
.fc0{color:rgb(0,0,0);}
.fca{color:rgb(55,65,81);}
.fcb{color:rgb(14,40,65);}
.fc6{color:rgb(39,37,37);}
.fcc{color:rgb(192,0,0);}
.fs22{font-size:36.000000px;}
.fs21{font-size:37.946952px;}
.fs0{font-size:45.000000px;}
.fsd{font-size:49.500000px;}
.fse{font-size:49.650000px;}
.fs17{font-size:54.000000px;}
.fs1a{font-size:54.150000px;}
.fs15{font-size:58.500000px;}
.fs1{font-size:58.650000px;}
.fs12{font-size:63.000000px;}
.fs11{font-size:63.150000px;}
.fs9{font-size:67.500000px;}
.fsa{font-size:67.650000px;}
.fs7{font-size:72.000000px;}
.fs13{font-size:72.150000px;}
.fs1d{font-size:76.500000px;}
.fs19{font-size:76.650000px;}
.fs1b{font-size:81.000000px;}
.fsf{font-size:81.150000px;}
.fs8{font-size:85.500000px;}
.fs1c{font-size:85.650000px;}
.fs24{font-size:94.500000px;}
.fs18{font-size:94.650000px;}
.fs3{font-size:103.650000px;}
.fs4{font-size:108.150000px;}
.fs2{font-size:121.650000px;}
.fs23{font-size:121.800000px;}
.fs1f{font-size:126.150000px;}
.fs20{font-size:126.300000px;}
.fs10{font-size:130.650000px;}
.fs2a{font-size:130.800000px;}
.fs25{font-size:144.150000px;}
.fs29{font-size:144.300000px;}
.fs1e{font-size:148.650000px;}
.fs28{font-size:157.650000px;}
.fs27{font-size:157.800000px;}
.fs6{font-size:166.650000px;}
.fs5{font-size:166.800000px;}
.fs2b{font-size:175.650000px;}
.fs26{font-size:175.800000px;}
.fs16{font-size:216.300000px;}
.fs2c{font-size:238.800000px;}
.fsb{font-size:265.800000px;}
.fsc{font-size:265.950000px;}
.fs14{font-size:319.950000px;}
.y0{bottom:0.000000px;}
.y134{bottom:2.250000px;}
.y223{bottom:5.587500px;}
.y106{bottom:6.412500px;}
.y1d{bottom:7.387500px;}
.y15c{bottom:8.737500px;}
.y2{bottom:9.000000px;}
.y23d{bottom:10.350000px;}
.y48{bottom:11.250000px;}
.y166{bottom:13.312500px;}
.yf{bottom:13.500000px;}
.yc3{bottom:14.212500px;}
.y71{bottom:14.850000px;}
.y90{bottom:15.075000px;}
.y1{bottom:15.787500px;}
.y109{bottom:18.450000px;}
.y4{bottom:20.137500px;}
.y145{bottom:20.287500px;}
.y1c{bottom:22.012500px;}
.y15b{bottom:24.525000px;}
.yec{bottom:25.462500px;}
.y21d{bottom:26.587500px;}
.y165{bottom:29.100000px;}
.y47{bottom:29.287500px;}
.yc2{bottom:29.962500px;}
.y70{bottom:30.637500px;}
.y174{bottom:32.587500px;}
.y17c{bottom:34.687500px;}
.y52{bottom:35.137500px;}
.y3{bottom:38.175000px;}
.y144{bottom:38.287500px;}
.y15a{bottom:40.312500px;}
.yeb{bottom:41.250000px;}
.y21c{bottom:42.375000px;}
.yc1{bottom:46.875000px;}
.y13b{bottom:48.375000px;}
.y1b{bottom:50.175000px;}
.y259{bottom:50.850000px;}
.y51{bottom:54.300000px;}
.y17b{bottom:54.975000px;}
.ye1{bottom:57.495000px;}
.ye6{bottom:57.750000px;}
.ye4{bottom:57.780000px;}
.ye9{bottom:58.050000px;}
.y21b{bottom:58.125000px;}
.yd2{bottom:58.200000px;}
.yd0{bottom:58.350000px;}
.y1a{bottom:64.837500px;}
.y46{bottom:65.325000px;}
.y124{bottom:70.500000px;}
.y113{bottom:71.212500px;}
.y1bf{bottom:72.712500px;}
.y50{bottom:73.462500px;}
.y213{bottom:74.625000px;}
.y21a{bottom:75.037500px;}
.y1c6{bottom:77.512500px;}
.yc0{bottom:79.537500px;}
.y45{bottom:83.362500px;}
.y123{bottom:88.537500px;}
.y1a3{bottom:89.100000px;}
.y8b{bottom:89.812500px;}
.y219{bottom:90.787500px;}
.y4f{bottom:91.462500px;}
.y19{bottom:94.125000px;}
.y212{bottom:94.912500px;}
.ybf{bottom:95.325000px;}
.y1c5{bottom:96.675000px;}
.yce{bottom:98.587500px;}
.y1be{bottom:98.625000px;}
.y13f{bottom:104.175000px;}
.y13a{bottom:104.205000px;}
.y133{bottom:104.505000px;}
.y126{bottom:104.625000px;}
.y12d{bottom:104.850000px;}
.y128{bottom:104.880000px;}
.y20d{bottom:105.375000px;}
.y218{bottom:107.700000px;}
.y18{bottom:108.750000px;}
.y256{bottom:110.850000px;}
.ybe{bottom:111.075000px;}
.y12e{bottom:114.750000px;}
.y1d0{bottom:115.012500px;}
.y211{bottom:115.200000px;}
.y8a{bottom:116.850000px;}
.ycd{bottom:117.750000px;}
.y217{bottom:123.450000px;}
.y1f8{bottom:127.912500px;}
.y191{bottom:128.550000px;}
.y255{bottom:128.887500px;}
.y1a2{bottom:130.800000px;}
.y164{bottom:131.250000px;}
.y13e{bottom:133.875000px;}
.y210{bottom:134.362500px;}
.ycc{bottom:136.912500px;}
.y1bd{bottom:136.950000px;}
.yee{bottom:137.250000px;}
.y122{bottom:138.862500px;}
.y216{bottom:139.237500px;}
.y67{bottom:143.887500px;}
.y60{bottom:145.162500px;}
.y112{bottom:145.312500px;}
.y96{bottom:145.575000px;}
.y20c{bottom:147.075000px;}
.y159{bottom:148.425000px;}
.y163{bottom:151.500000px;}
.y20f{bottom:154.620000px;}
.ycb{bottom:156.045000px;}
.y121{bottom:156.870000px;}
.y4c{bottom:158.025000px;}
.y142{bottom:158.055000px;}
.y236{bottom:158.805000px;}
.y1cf{bottom:158.970000px;}
.y254{bottom:159.300000px;}
.y1bc{bottom:162.870000px;}
.yf8{bottom:162.900000px;}
.y190{bottom:163.470000px;}
.y66{bottom:164.175000px;}
.y5f{bottom:164.280000px;}
.yd8{bottom:166.155000px;}
.y1f7{bottom:166.200000px;}
.y158{bottom:168.675000px;}
.y1a1{bottom:169.095000px;}
.y89{bottom:170.925000px;}
.y23b{bottom:173.655000px;}
.yca{bottom:175.200000px;}
.y4b{bottom:176.055000px;}
.y253{bottom:177.300000px;}
.y1dc{bottom:178.620000px;}
.y65{bottom:183.300000px;}
.yd6{bottom:184.200000px;}
.y5e{bottom:184.575000px;}
.yf7{bottom:185.430000px;}
.y157{bottom:187.830000px;}
.y1ea{bottom:188.745000px;}
.y1bb{bottom:188.775000px;}
.yc9{bottom:193.245000px;}
.y4a{bottom:194.100000px;}
.y20b{bottom:195.495000px;}
.y3b{bottom:196.500000px;}
.y235{bottom:196.695000px;}
.y141{bottom:197.505000px;}
.y88{bottom:197.955000px;}
.y18f{bottom:198.375000px;}
.y1a0{bottom:200.625000px;}
.yd5{bottom:202.200000px;}
.y64{bottom:203.595000px;}
.y95{bottom:204.525000px;}
.y8{bottom:204.675000px;}
.y5d{bottom:204.855000px;}
.y252{bottom:206.625000px;}
.y139{bottom:207.000000px;}
.y156{bottom:208.125000px;}
.y1f6{bottom:209.025000px;}
.yf6{bottom:209.100000px;}
.y49{bottom:212.100000px;}
.yc8{bottom:212.370000px;}
.y120{bottom:212.925000px;}
.y30{bottom:214.470000px;}
.y3a{bottom:214.530000px;}
.y1ba{bottom:214.695000px;}
.y234{bottom:215.850000px;}
.y111{bottom:219.405000px;}
.yde{bottom:220.125000px;}
.y1db{bottom:220.275000px;}
.ybb{bottom:221.025000px;}
.y184{bottom:222.045000px;}
.y13d{bottom:222.255000px;}
.y12b{bottom:222.945000px;}
.y63{bottom:223.875000px;}
.y2d{bottom:223.995000px;}
.yb8{bottom:224.475000px;}
.y251{bottom:224.625000px;}
.y87{bottom:225.000000px;}
.y1e9{bottom:228.195000px;}
.y1e{bottom:228.375000px;}
.y155{bottom:228.405000px;}
.y5c{bottom:229.650000px;}
.y11f{bottom:230.970000px;}
.yc7{bottom:231.525000px;}
.y7{bottom:231.705000px;}
.y19f{bottom:232.200000px;}
.y18e{bottom:233.325000px;}
.y233{bottom:233.850000px;}
.y20a{bottom:237.195000px;}
.y140{bottom:238.050000px;}
.ydc{bottom:238.155000px;}
.y1ce{bottom:238.950000px;}
.y1b9{bottom:240.600000px;}
.y105{bottom:240.975000px;}
.yba{bottom:242.445000px;}
.y250{bottom:242.655000px;}
.y62{bottom:243.030000px;}
.y2c{bottom:245.355000px;}
.yb7{bottom:245.895000px;}
.y1f5{bottom:247.320000px;}
.y154{bottom:247.545000px;}
.yc6{bottom:250.695000px;}
.y86{bottom:253.155000px;}
.y1c1{bottom:253.920000px;}
.ydb{bottom:256.200000px;}
.yef{bottom:258.870000px;}
.y1e8{bottom:259.725000px;}
.y6{bottom:259.875000px;}
.y13c{bottom:262.830000px;}
.y202{bottom:263.100000px;}
.y61{bottom:263.280000px;}
.y12a{bottom:263.505000px;}
.y183{bottom:263.730000px;}
.yb9{bottom:263.820000px;}
.y35{bottom:264.900000px;}
.y1ad{bottom:265.995000px;}
.y1b8{bottom:266.505000px;}
.y2b{bottom:266.775000px;}
.y18d{bottom:267.105000px;}
.yb6{bottom:267.255000px;}
.y153{bottom:267.825000px;}
.y8e{bottom:268.470000px;}
.y1da{bottom:268.725000px;}
.y19e{bottom:269.370000px;}
.yc5{bottom:269.820000px;}
.y1cd{bottom:270.480000px;}
.y24f{bottom:271.950000px;}
.y196{bottom:272.745000px;}
.yda{bottom:274.200000px;}
.y104{bottom:274.770000px;}
.yf4{bottom:277.230000px;}
.y39{bottom:277.320000px;}
.y9a{bottom:278.145000px;}
.y11e{bottom:278.625000px;}
.y85{bottom:279.075000px;}
.y209{bottom:280.005000px;}
.y94{bottom:282.000000px;}
.y8d{bottom:284.250000px;}
.y58{bottom:286.650000px;}
.yc4{bottom:287.850000px;}
.y5{bottom:288.045000px;}
.y1f4{bottom:289.005000px;}
.y23a{bottom:289.380000px;}
.y24e{bottom:289.995000px;}
.y230{bottom:290.250000px;}
.y221{bottom:290.400000px;}
.y34{bottom:291.945000px;}
.y1e7{bottom:292.380000px;}
.y173{bottom:293.025000px;}
.y110{bottom:293.505000px;}
.y38{bottom:295.350000px;}
.y11d{bottom:296.625000px;}
.y8c{bottom:300.000000px;}
.y1ac{bottom:300.900000px;}
.y19d{bottom:302.025000px;}
.yf3{bottom:303.150000px;}
.y57{bottom:304.695000px;}
.y1b7{bottom:304.800000px;}
.y18c{bottom:308.775000px;}
.y1d9{bottom:310.425000px;}
.y22f{bottom:311.670000px;}
.y84{bottom:311.745000px;}
.y172{bottom:313.320000px;}
.y195{bottom:314.445000px;}
.y11c{bottom:314.670000px;}
.y220{bottom:316.320000px;}
.y132{bottom:319.500000px;}
.y33{bottom:320.100000px;}
.y24d{bottom:320.400000px;}
.y103{bottom:320.970000px;}
.y208{bottom:321.675000px;}
.y1c0{bottom:322.125000px;}
.y1e6{bottom:325.050000px;}
.y1f3{bottom:326.175000px;}
.y1b6{bottom:330.720000px;}
.y19c{bottom:333.570000px;}
.y1ab{bottom:336.945000px;}
.y56{bottom:337.650000px;}
.y24c{bottom:338.400000px;}
.y1cc{bottom:339.195000px;}
.y93{bottom:340.950000px;}
.y137{bottom:341.775000px;}
.y131{bottom:342.120000px;}
.y129{bottom:346.500000px;}
.y1d8{bottom:353.205000px;}
.y102{bottom:354.750000px;}
.y11b{bottom:355.545000px;}
.y239{bottom:355.575000px;}
.y1b5{bottom:356.625000px;}
.y37{bottom:358.125000px;}
.yf2{bottom:359.595000px;}
.yf0{bottom:360.075000px;}
.y5b{bottom:362.475000px;}
.y194{bottom:362.850000px;}
.y1e5{bottom:363.375000px;}
.y1f2{bottom:365.625000px;}
.y24b{bottom:367.695000px;}
.y83{bottom:369.195000px;}
.y207{bottom:370.125000px;}
.y19b{bottom:370.770000px;}
.y1cb{bottom:371.880000px;}
.y1aa{bottom:373.005000px;}
.y11a{bottom:373.575000px;}
.y36{bottom:376.155000px;}
.y10f{bottom:377.025000px;}
.y152{bottom:377.370000px;}
.ye{bottom:377.745000px;}
.y1c2{bottom:378.780000px;}
.y136{bottom:381.225000px;}
.y130{bottom:381.525000px;}
.y5a{bottom:381.630000px;}
.y1b4{bottom:382.530000px;}
.y138{bottom:383.475000px;}
.y1fe{bottom:383.775000px;}
.y24a{bottom:385.725000px;}
.y44{bottom:387.000000px;}
.yb5{bottom:387.345000px;}
.yd9{bottom:388.125000px;}
.y162{bottom:388.470000px;}
.y101{bottom:388.575000px;}
.y119{bottom:391.620000px;}
.yac{bottom:391.725000px;}
.y2a{bottom:393.195000px;}
.y92{bottom:394.125000px;}
.y201{bottom:394.905000px;}
.y77{bottom:394.995000px;}
.y18b{bottom:395.550000px;}
.yf1{bottom:395.625000px;}
.y1e4{bottom:396.030000px;}
.yed{bottom:396.195000px;}
.y151{bottom:396.525000px;}
.y25{bottom:400.755000px;}
.y1d7{bottom:401.655000px;}
.y82{bottom:401.850000px;}
.y59{bottom:401.925000px;}
.y19a{bottom:402.300000px;}
.y249{bottom:403.755000px;}
.y9c{bottom:405.120000px;}
.y17{bottom:405.225000px;}
.y43{bottom:406.155000px;}
.y161{bottom:407.595000px;}
.y1a9{bottom:407.925000px;}
.yb4{bottom:408.750000px;}
.y1ca{bottom:409.050000px;}
.y1f1{bottom:409.530000px;}
.y1fd{bottom:409.695000px;}
.y232{bottom:411.075000px;}
.y193{bottom:411.300000px;}
.y206{bottom:411.780000px;}
.y99{bottom:413.070000px;}
.yab{bottom:413.100000px;}
.y76{bottom:414.150000px;}
.y29{bottom:414.600000px;}
.ya0{bottom:416.145000px;}
.y150{bottom:416.820000px;}
.y182{bottom:419.175000px;}
.y1b3{bottom:419.700000px;}
.y24{bottom:419.880000px;}
.y135{bottom:421.755000px;}
.y9b{bottom:421.995000px;}
.y12f{bottom:422.100000px;}
.y100{bottom:423.480000px;}
.y42{bottom:425.325000px;}
.y160{bottom:427.875000px;}
.yd{bottom:428.445000px;}
.y18a{bottom:429.345000px;}
.y258{bottom:429.825000px;}
.yb3{bottom:430.170000px;}
.y22e{bottom:430.275000px;}
.y12c{bottom:432.000000px;}
.y231{bottom:432.495000px;}
.y248{bottom:433.050000px;}
.y1e3{bottom:434.325000px;}
.y75{bottom:434.400000px;}
.yaa{bottom:434.505000px;}
.y199{bottom:434.970000px;}
.y14f{bottom:435.975000px;}
.y28{bottom:436.005000px;}
.y9f{bottom:437.550000px;}
.y238{bottom:438.120000px;}
.y1c9{bottom:440.580000px;}
.ye8{bottom:442.125000px;}
.ye5{bottom:443.250000px;}
.y41{bottom:443.325000px;}
.y1d6{bottom:443.370000px;}
.y1a8{bottom:443.955000px;}
.y227{bottom:444.600000px;}
.y118{bottom:445.200000px;}
.y81{bottom:445.800000px;}
.y1f0{bottom:446.745000px;}
.y171{bottom:450.630000px;}
.y247{bottom:451.095000px;}
.yf5{bottom:451.170000px;}
.y22d{bottom:451.695000px;}
.y10e{bottom:452.175000px;}
.y1b2{bottom:452.370000px;}
.y91{bottom:453.030000px;}
.y74{bottom:454.695000px;}
.ya9{bottom:455.925000px;}
.y14e{bottom:456.225000px;}
.yff{bottom:457.275000px;}
.y9e{bottom:458.970000px;}
.y237{bottom:459.525000px;}
.y192{bottom:459.750000px;}
.yd4{bottom:460.125000px;}
.y205{bottom:460.245000px;}
.y117{bottom:463.245000px;}
.y181{bottom:466.500000px;}
.y1e2{bottom:466.995000px;}
.y10d{bottom:469.095000px;}
.y226{bottom:469.380000px;}
.y170{bottom:469.755000px;}
.y189{bottom:469.875000px;}
.y1c8{bottom:472.125000px;}
.y73{bottom:473.850000px;}
.y257{bottom:474.870000px;}
.y14d{bottom:476.505000px;}
.y16{bottom:477.345000px;}
.y1b1{bottom:478.275000px;}
.yc{bottom:479.130000px;}
.y9d{bottom:480.375000px;}
.y116{bottom:481.275000px;}
.y1ef{bottom:483.900000px;}
.y1a7{bottom:485.670000px;}
.y16f{bottom:490.050000px;}
.y17a{bottom:491.205000px;}
.y21f{bottom:492.255000px;}
.y1d5{bottom:492.900000px;}
.y72{bottom:494.130000px;}
.y225{bottom:495.255000px;}
.y14c{bottom:495.675000px;}
.y246{bottom:498.375000px;}
.y4e{bottom:499.875000px;}
.ye7{bottom:501.000000px;}
.y204{bottom:501.945000px;}
.y80{bottom:503.250000px;}
.yfe{bottom:503.475000px;}
.y198{bottom:503.700000px;}
.y188{bottom:504.825000px;}
.y127{bottom:505.125000px;}
.y1e1{bottom:505.320000px;}
.y179{bottom:510.345000px;}
.y1b0{bottom:515.475000px;}
.y14b{bottom:515.970000px;}
.y245{bottom:516.405000px;}
.y21e{bottom:518.175000px;}
.y180{bottom:519.450000px;}
.ya8{bottom:521.250000px;}
.y1ee{bottom:522.225000px;}
.y14{bottom:527.130000px;}
.y1a6{bottom:528.450000px;}
.y7f{bottom:529.155000px;}
.ye3{bottom:529.875000px;}
.y178{bottom:530.625000px;}
.ye0{bottom:531.000000px;}
.y53{bottom:534.750000px;}
.y10c{bottom:535.725000px;}
.y115{bottom:535.905000px;}
.y40{bottom:536.445000px;}
.yfd{bottom:537.255000px;}
.y1e0{bottom:537.975000px;}
.y16e{bottom:538.500000px;}
.y125{bottom:538.875000px;}
.y27{bottom:539.325000px;}
.y187{bottom:539.745000px;}
.y15f{bottom:541.875000px;}
.y197{bottom:541.995000px;}
.ya7{bottom:542.655000px;}
.y1c7{bottom:543.120000px;}
.y203{bottom:544.725000px;}
.yb2{bottom:545.250000px;}
.y244{bottom:546.825000px;}
.y15{bottom:548.295000px;}
.y1d4{bottom:550.380000px;}
.y10b{bottom:552.600000px;}
.y114{bottom:553.950000px;}
.y7e{bottom:555.075000px;}
.y3f{bottom:556.695000px;}
.y32{bottom:557.445000px;}
.y1d1{bottom:557.955000px;}
.y4d{bottom:558.450000px;}
.y26{bottom:560.700000px;}
.y16d{bottom:561.030000px;}
.y13{bottom:562.050000px;}
.y23{bottom:564.000000px;}
.ya6{bottom:564.075000px;}
.y243{bottom:564.870000px;}
.y1ed{bottom:565.005000px;}
.y55{bottom:565.695000px;}
.yb1{bottom:566.670000px;}
.y17f{bottom:566.775000px;}
.y15e{bottom:567.780000px;}
.y214{bottom:570.525000px;}
.y1df{bottom:570.630000px;}
.y1a5{bottom:571.275000px;}
.y6e{bottom:573.495000px;}
.y14a{bottom:574.530000px;}
.y3e{bottom:576.975000px;}
.y186{bottom:580.275000px;}
.y7d{bottom:580.995000px;}
.y98{bottom:581.370000px;}
.y22{bottom:583.155000px;}
.yfc{bottom:583.470000px;}
.y16c{bottom:583.575000px;}
.y31{bottom:585.600000px;}
.y54{bottom:585.975000px;}
.ya5{bottom:586.620000px;}
.y1f9{bottom:587.475000px;}
.y1fc{bottom:587.745000px;}
.yb0{bottom:588.075000px;}
.ye2{bottom:588.495000px;}
.y177{bottom:590.325000px;}
.y12{bottom:591.345000px;}
.y1d3{bottom:593.175000px;}
.y6d{bottom:593.775000px;}
.y242{bottom:594.150000px;}
.y3d{bottom:596.130000px;}
.y224{bottom:597.150000px;}
.y22a{bottom:599.100000px;}
.y149{bottom:600.450000px;}
.y1ec{bottom:602.175000px;}
.y21{bottom:602.325000px;}
.yd1{bottom:604.125000px;}
.ya4{bottom:608.025000px;}
.ydf{bottom:608.250000px;}
.y1de{bottom:608.970000px;}
.yaf{bottom:609.495000px;}
.y241{bottom:612.150000px;}
.y1fb{bottom:612.525000px;}
.y10a{bottom:612.750000px;}
.y16b{bottom:612.870000px;}
.y6c{bottom:612.945000px;}
.y7c{bottom:613.650000px;}
.y3c{bottom:616.425000px;}
.yfb{bottom:617.250000px;}
.y17e{bottom:619.725000px;}
.y185{bottom:625.350000px;}
.y11{bottom:626.250000px;}
.ydd{bottom:626.280000px;}
.y148{bottom:626.370000px;}
.ybd{bottom:626.445000px;}
.ya3{bottom:629.400000px;}
.y22c{bottom:630.750000px;}
.y6b{bottom:633.030000px;}
.y1a4{bottom:634.650000px;}
.y16a{bottom:635.400000px;}
.y1fa{bottom:638.445000px;}
.y7b{bottom:639.570000px;}
.y240{bottom:641.475000px;}
.y1d2{bottom:641.625000px;}
.y176{bottom:642.150000px;}
.y229{bottom:642.255000px;}
.yd7{bottom:644.325000px;}
.y1eb{bottom:647.250000px;}
.ybc{bottom:647.850000px;}
.y1dd{bottom:648.375000px;}
.ya2{bottom:650.820000px;}
.yfa{bottom:651.030000px;}
.y1c4{bottom:651.870000px;}
.y22b{bottom:652.125000px;}
.y6a{bottom:653.280000px;}
.yb{bottom:656.130000px;}
.y97{bottom:656.250000px;}
.y147{bottom:659.025000px;}
.yd3{bottom:662.325000px;}
.y175{bottom:664.695000px;}
.y7a{bottom:665.475000px;}
.y169{bottom:665.820000px;}
.ycf{bottom:666.000000px;}
.y222{bottom:666.600000px;}
.y23f{bottom:671.880000px;}
.ya1{bottom:672.225000px;}
.y69{bottom:672.450000px;}
.y1c3{bottom:677.775000px;}
.yae{bottom:678.195000px;}
.y215{bottom:689.130000px;}
.y23e{bottom:689.880000px;}
.y146{bottom:691.725000px;}
.y68{bottom:692.745000px;}
.y168{bottom:695.100000px;}
.y79{bottom:698.130000px;}
.yad{bottom:699.600000px;}
.y108{bottom:713.070000px;}
.y2f{bottom:714.495000px;}
.ya{bottom:714.720000px;}
.y23c{bottom:717.300000px;}
.y20e{bottom:724.950000px;}
.y1af{bottom:733.800000px;}
.y10{bottom:737.970000px;}
.y20{bottom:743.745000px;}
.y9{bottom:744.000000px;}
.y200{bottom:749.220000px;}
.y78{bottom:751.380000px;}
.y17d{bottom:752.100000px;}
.y143{bottom:754.320000px;}
.y8f{bottom:755.445000px;}
.y167{bottom:756.675000px;}
.y6f{bottom:757.425000px;}
.yf9{bottom:759.195000px;}
.y107{bottom:759.255000px;}
.y2e{bottom:760.695000px;}
.y228{bottom:763.005000px;}
.y15d{bottom:766.800000px;}
.yea{bottom:769.200000px;}
.y1ff{bottom:770.475000px;}
.y1f{bottom:771.900000px;}
.y1ae{bottom:773.205000px;}
.h1{height:19.125000px;}
.h4f{height:27.360000px;}
.h4e{height:28.839684px;}
.h2{height:31.185000px;}
.h10{height:36.085500px;}
.hf{height:36.194850px;}
.he{height:36.520752px;}
.h2d{height:39.366000px;}
.h33{height:39.475350px;}
.h42{height:40.657500px;}
.h3f{height:42.588000px;}
.h23{height:42.646500px;}
.h3e{height:42.697200px;}
.h3{height:42.755850px;}
.h16{height:42.942000px;}
.h52{height:43.160889px;}
.h14{height:43.659000px;}
.h13{height:43.762950px;}
.h7e{height:45.054900px;}
.h3b{height:45.864000px;}
.h26{height:45.927000px;}
.h28{height:45.973200px;}
.h22{height:46.036350px;}
.h3c{height:46.480957px;}
.h3a{height:46.591626px;}
.h1e{height:46.881450px;}
.h78{height:46.912500px;}
.h1d{height:47.016750px;}
.h7f{height:47.952000px;}
.h7d{height:48.051900px;}
.h39{height:48.172852px;}
.h79{height:48.306665px;}
.h1c{height:48.920728px;}
.h2a{height:49.140000px;}
.h2c{height:49.207500px;}
.h29{height:49.249200px;}
.h27{height:49.316850px;}
.h2b{height:49.867500px;}
.h5d{height:49.911694px;}
.h74{height:51.300000px;}
.h75{height:51.414000px;}
.h73{height:51.695435px;}
.h24{height:52.187256px;}
.h51{height:52.321069px;}
.h38{height:52.416000px;}
.h17{height:52.488000px;}
.h37{height:52.525200px;}
.h18{height:52.597350px;}
.h50{height:54.834000px;}
.h11{height:55.182000px;}
.h48{height:55.692000px;}
.h47{height:55.801200px;}
.h21{height:56.201660px;}
.h35{height:59.158350px;}
.h20{height:60.216064px;}
.h1f{height:60.349878px;}
.h7a{height:62.244000px;}
.h45{height:62.353200px;}
.h61{height:62.438850px;}
.h15{height:62.661621px;}
.h7b{height:63.036900px;}
.h46{height:63.191968px;}
.h7c{height:65.488500px;}
.h31{height:65.781750px;}
.h32{height:68.378687px;}
.h30{height:68.445630px;}
.h72{height:68.890500px;}
.h70{height:68.905200px;}
.h5c{height:68.999850px;}
.h71{height:69.832104px;}
.h36{height:72.259277px;}
.h34{height:72.393091px;}
.h5{height:75.457200px;}
.h1b{height:75.560850px;}
.h6f{height:76.273682px;}
.h60{height:76.407495px;}
.h6{height:78.733200px;}
.hb{height:78.841350px;}
.h5b{height:84.302490px;}
.h2f{height:84.436304px;}
.h9{height:85.429500px;}
.h4{height:88.561200px;}
.h5f{height:88.682850px;}
.h43{height:89.752515px;}
.h12{height:90.540450px;}
.h4c{height:91.963350px;}
.h6e{height:95.243850px;}
.h6d{height:95.353200px;}
.h4a{height:96.479517px;}
.h5e{height:99.895950px;}
.h49{height:103.014450px;}
.h82{height:105.050400px;}
.h6a{height:105.085350px;}
.h67{height:105.194700px;}
.h69{height:106.463525px;}
.h2e{height:108.522729px;}
.h5a{height:108.656543px;}
.h4b{height:112.537134px;}
.h4d{height:112.670947px;}
.h80{height:113.988600px;}
.h83{height:114.488850px;}
.h64{height:114.926850px;}
.h76{height:115.036200px;}
.ha{height:115.488450px;}
.h19{height:115.592400px;}
.h6b{height:116.551538px;}
.h6c{height:116.685352px;}
.h8{height:121.321200px;}
.h7{height:121.430400px;}
.h3d{height:127.125000px;}
.h66{height:128.594751px;}
.h68{height:128.728564px;}
.h65{height:140.637964px;}
.h63{height:140.771777px;}
.h25{height:149.895900px;}
.h77{height:156.695581px;}
.h62{height:156.829395px;}
.h81{height:173.846400px;}
.hc{height:184.199400px;}
.hd{height:184.303350px;}
.h1a{height:233.243550px;}
.h53{height:235.125000px;}
.h40{height:349.875000px;}
.h41{height:421.875000px;}
.h54{height:463.500000px;}
.h59{height:488.250000px;}
.h44{height:505.125000px;}
.h57{height:513.000000px;}
.h58{height:606.375000px;}
.h55{height:695.250000px;}
.h56{height:789.750000px;}
.h0{height:810.000000px;}
.w4{width:88.875000px;}
.w3{width:94.500000px;}
.w2{width:131.625000px;}
.w8{width:133.875000px;}
.w5{width:139.500000px;}
.w6{width:148.500000px;}
.wa{width:153.000000px;}
.w7{width:174.375000px;}
.w1{width:179.055000px;}
.wc{width:195.750000px;}
.w9{width:325.125000px;}
.wb{width:654.750000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x54{left:2.362500px;}
.x61{left:6.825000px;}
.x76{left:9.037500px;}
.x1{left:10.125000px;}
.x52{left:14.962500px;}
.x7f{left:20.325000px;}
.x33{left:26.962500px;}
.x53{left:28.125000px;}
.x68{left:30.187500px;}
.x75{left:33.187500px;}
.x38{left:34.425000px;}
.x4a{left:35.550000px;}
.x31{left:36.787500px;}
.x80{left:40.575000px;}
.x71{left:41.625000px;}
.x14{left:46.500000px;}
.x77{left:49.575000px;}
.x34{left:51.337500px;}
.x2c{left:52.950000px;}
.x32{left:57.037500px;}
.x95{left:59.137500px;}
.x8e{left:64.875000px;}
.x7b{left:67.012500px;}
.x94{left:68.550000px;}
.x6{left:70.275000px;}
.x35{left:71.625000px;}
.x2d{left:73.237500px;}
.x89{left:74.250000px;}
.x6e{left:80.662500px;}
.x70{left:82.462500px;}
.xe{left:84.562500px;}
.x88{left:87.487500px;}
.x99{left:89.437500px;}
.x36{left:91.912500px;}
.x6f{left:93.525000px;}
.x6d{left:95.700000px;}
.x17{left:99.450000px;}
.x9{left:105.562500px;}
.x85{left:123.487500px;}
.xa0{left:125.550000px;}
.x7{left:132.600000px;}
.x86{left:137.025000px;}
.xc{left:139.200000px;}
.x7d{left:146.250000px;}
.x6a{left:147.337500px;}
.x55{left:158.625000px;}
.x7e{left:166.500000px;}
.x23{left:169.650000px;}
.xd{left:172.980000px;}
.x87{left:177.555000px;}
.x15{left:187.995000px;}
.x63{left:192.000000px;}
.x72{left:193.500000px;}
.x98{left:195.645000px;}
.x6b{left:204.870000px;}
.x19{left:223.005000px;}
.x10{left:226.845000px;}
.x4{left:229.695000px;}
.x1a{left:234.450000px;}
.x30{left:240.030000px;}
.x2{left:247.350000px;}
.x56{left:252.000000px;}
.x3{left:260.925000px;}
.x5c{left:263.775000px;}
.x69{left:269.325000px;}
.x60{left:274.845000px;}
.x18{left:279.975000px;}
.x1b{left:286.425000px;}
.x74{left:291.570000px;}
.x5{left:311.520000px;}
.x97{left:313.245000px;}
.x62{left:331.395000px;}
.x57{left:339.750000px;}
.x7c{left:342.645000px;}
.x5d{left:350.775000px;}
.xa1{left:351.780000px;}
.x7a{left:357.525000px;}
.x16{left:367.425000px;}
.x9a{left:368.625000px;}
.x9f{left:374.295000px;}
.x4f{left:377.475000px;}
.x50{left:382.920000px;}
.x8{left:390.870000px;}
.x26{left:394.005000px;}
.x11{left:396.570000px;}
.x2e{left:407.550000px;}
.x9c{left:410.595000px;}
.xa2{left:411.780000px;}
.x8c{left:416.550000px;}
.x9d{left:418.575000px;}
.x96{left:422.925000px;}
.xa{left:427.200000px;}
.x51{left:440.475000px;}
.x81{left:449.355000px;}
.x44{left:452.250000px;}
.x45{left:457.800000px;}
.xb{left:460.695000px;}
.x28{left:463.275000px;}
.x27{left:468.750000px;}
.x64{left:475.875000px;}
.x58{left:478.125000px;}
.x5e{left:489.450000px;}
.x46{left:503.025000px;}
.x25{left:516.495000px;}
.x21{left:528.600000px;}
.x22{left:548.850000px;}
.x8d{left:551.370000px;}
.x92{left:554.670000px;}
.x20{left:562.830000px;}
.x1c{left:564.225000px;}
.x1e{left:574.845000px;}
.x83{left:589.650000px;}
.x65{left:598.905000px;}
.x9e{left:601.320000px;}
.x84{left:609.900000px;}
.x48{left:620.250000px;}
.x59{left:625.500000px;}
.x47{left:630.675000px;}
.x49{left:638.280000px;}
.x40{left:646.575000px;}
.x93{left:649.470000px;}
.x2f{left:653.130000px;}
.x1f{left:656.220000px;}
.x2a{left:666.075000px;}
.x82{left:674.130000px;}
.x1d{left:682.875000px;}
.x2b{left:686.325000px;}
.x29{left:705.405000px;}
.x24{left:707.655000px;}
.x43{left:726.450000px;}
.x37{left:742.275000px;}
.x8f{left:752.070000px;}
.x12{left:767.145000px;}
.x91{left:770.775000px;}
.x4b{left:772.005000px;}
.x13{left:774.675000px;}
.x90{left:782.400000px;}
.x5a{left:798.750000px;}
.x41{left:801.450000px;}
.xf{left:811.200000px;}
.x4e{left:840.630000px;}
.x42{left:843.525000px;}
.x78{left:845.325000px;}
.x9b{left:846.750000px;}
.x66{left:847.950000px;}
.x79{left:852.030000px;}
.x8a{left:853.170000px;}
.x8b{left:861.120000px;}
.x67{left:892.245000px;}
.x4c{left:907.050000px;}
.x5b{left:929.250000px;}
.x4d{left:935.175000px;}
.x73{left:939.495000px;}
.x5f{left:940.755000px;}
.x39{left:1017.600000px;}
.x6c{left:1035.450000px;}
.x3d{left:1357.725000px;}
.x3a{left:1359.975000px;}
.x3f{left:1371.225000px;}
.x3e{left:1375.725000px;}
.x3b{left:1379.100000px;}
.x3c{left:1383.600000px;}
@media print{
.v2{vertical-align:-15.466667pt;}
.v3{vertical-align:-12.133333pt;}
.v4{vertical-align:-2.346667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.533333pt;}
.v5{vertical-align:46.266667pt;}
.lsed{letter-spacing:-2.766133pt;}
.ls97{letter-spacing:-2.700000pt;}
.ls95{letter-spacing:-2.520000pt;}
.lsd3{letter-spacing:-2.512400pt;}
.lsdc{letter-spacing:-2.360133pt;}
.ls4{letter-spacing:-2.280000pt;}
.ls9c{letter-spacing:-2.207867pt;}
.ls46{letter-spacing:-2.104667pt;}
.lscf{letter-spacing:-2.102000pt;}
.ls11{letter-spacing:-2.074267pt;}
.lsd5{letter-spacing:-2.068587pt;}
.lsd1{letter-spacing:-2.055600pt;}
.lscc{letter-spacing:-2.054533pt;}
.ls2b{letter-spacing:-2.044533pt;}
.ls45{letter-spacing:-1.980000pt;}
.lsbf{letter-spacing:-1.976000pt;}
.lsa9{letter-spacing:-1.963733pt;}
.lsa7{letter-spacing:-1.961867pt;}
.ls29{letter-spacing:-1.934800pt;}
.ls9b{letter-spacing:-1.903333pt;}
.lsce{letter-spacing:-1.823467pt;}
.lsa5{letter-spacing:-1.821733pt;}
.lsf{letter-spacing:-1.796227pt;}
.ls21{letter-spacing:-1.792000pt;}
.ls27{letter-spacing:-1.658400pt;}
.lse1{letter-spacing:-1.603333pt;}
.lsa3{letter-spacing:-1.542933pt;}
.lsa6{letter-spacing:-1.541467pt;}
.lsc0{letter-spacing:-1.500000pt;}
.ls28{letter-spacing:-1.474133pt;}
.ls44{letter-spacing:-1.459467pt;}
.ls1a{letter-spacing:-1.456400pt;}
.ls7{letter-spacing:-1.451613pt;}
.ls88{letter-spacing:-1.443200pt;}
.ls48{letter-spacing:-1.437187pt;}
.ls26{letter-spacing:-1.422000pt;}
.lse6{letter-spacing:-1.410933pt;}
.lsa8{letter-spacing:-1.402667pt;}
.lsb1{letter-spacing:-1.401333pt;}
.ls8a{letter-spacing:-1.380000pt;}
.lsbe{letter-spacing:-1.370400pt;}
.ls9{letter-spacing:-1.364000pt;}
.lsef{letter-spacing:-1.346987pt;}
.ls66{letter-spacing:-1.346800pt;}
.ls53{letter-spacing:-1.344000pt;}
.lsee{letter-spacing:-1.322933pt;}
.ls98{letter-spacing:-1.320000pt;}
.lse4{letter-spacing:-1.282667pt;}
.ls20{letter-spacing:-1.232000pt;}
.ls68{letter-spacing:-1.209600pt;}
.lsd0{letter-spacing:-1.142000pt;}
.lsd4{letter-spacing:-1.122133pt;}
.ls9d{letter-spacing:-1.065867pt;}
.ls38{letter-spacing:-0.990533pt;}
.lsae{letter-spacing:-0.980933pt;}
.ls35{letter-spacing:-0.936000pt;}
.lsd8{letter-spacing:-0.840800pt;}
.ls70{letter-spacing:-0.834133pt;}
.ls49{letter-spacing:-0.807520pt;}
.ls82{letter-spacing:-0.784933pt;}
.ls34{letter-spacing:-0.780000pt;}
.ls77{letter-spacing:-0.761333pt;}
.ls4f{letter-spacing:-0.757200pt;}
.ls6b{letter-spacing:-0.728000pt;}
.ls63{letter-spacing:-0.721600pt;}
.lsf0{letter-spacing:-0.715587pt;}
.lsc9{letter-spacing:-0.701333pt;}
.ls89{letter-spacing:-0.660000pt;}
.ls47{letter-spacing:-0.601333pt;}
.ls1c{letter-spacing:-0.580667pt;}
.ls8c{letter-spacing:-0.573467pt;}
.lsc8{letter-spacing:-0.560533pt;}
.lsd{letter-spacing:-0.529600pt;}
.lsb{letter-spacing:-0.528000pt;}
.ls1d{letter-spacing:-0.505200pt;}
.ls15{letter-spacing:-0.484000pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls6f{letter-spacing:-0.468000pt;}
.lse5{letter-spacing:-0.420933pt;}
.ls10{letter-spacing:-0.406027pt;}
.lsb4{letter-spacing:-0.325547pt;}
.ls73{letter-spacing:-0.312000pt;}
.ls78{letter-spacing:-0.304533pt;}
.lsb6{letter-spacing:-0.290333pt;}
.lse{letter-spacing:-0.264800pt;}
.lse7{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.220000pt;}
.ls1f{letter-spacing:-0.168000pt;}
.lsc3{letter-spacing:-0.150973pt;}
.ls5f{letter-spacing:-0.079347pt;}
.ls60{letter-spacing:-0.021600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.007200pt;}
.ls3b{letter-spacing:0.018667pt;}
.ls5c{letter-spacing:0.085333pt;}
.ls14{letter-spacing:0.088267pt;}
.ls52{letter-spacing:0.096000pt;}
.lsde{letter-spacing:0.136933pt;}
.ls8b{letter-spacing:0.156000pt;}
.lsc1{letter-spacing:0.157467pt;}
.ls17{letter-spacing:0.176000pt;}
.ls2f{letter-spacing:0.208533pt;}
.ls13{letter-spacing:0.220667pt;}
.ls5a{letter-spacing:0.256533pt;}
.lsdf{letter-spacing:0.339907pt;}
.ls59{letter-spacing:0.384000pt;}
.lsaf{letter-spacing:0.384400pt;}
.lsac{letter-spacing:0.384800pt;}
.ls3d{letter-spacing:0.392933pt;}
.ls93{letter-spacing:0.504800pt;}
.ls62{letter-spacing:0.541200pt;}
.lsbc{letter-spacing:0.588933pt;}
.ls3{letter-spacing:0.593067pt;}
.ls61{letter-spacing:0.600000pt;}
.ls76{letter-spacing:0.609067pt;}
.ls87{letter-spacing:0.612933pt;}
.ls22{letter-spacing:0.644933pt;}
.ls86{letter-spacing:0.657333pt;}
.ls96{letter-spacing:0.661467pt;}
.lsbd{letter-spacing:0.672000pt;}
.ls7c{letter-spacing:0.672800pt;}
.ls32{letter-spacing:0.677733pt;}
.lsb0{letter-spacing:0.679813pt;}
.ls5d{letter-spacing:0.729733pt;}
.ls7f{letter-spacing:0.772933pt;}
.ls85{letter-spacing:0.780000pt;}
.ls91{letter-spacing:0.783600pt;}
.ls3c{letter-spacing:0.784000pt;}
.ls7e{letter-spacing:0.817333pt;}
.ls2a{letter-spacing:0.829200pt;}
.lscd{letter-spacing:0.840800pt;}
.lsb9{letter-spacing:0.847600pt;}
.ls3a{letter-spacing:0.862400pt;}
.lsad{letter-spacing:0.896933pt;}
.ls1e{letter-spacing:0.898133pt;}
.ls7d{letter-spacing:0.952000pt;}
.ls12{letter-spacing:0.970933pt;}
.lsa4{letter-spacing:0.980933pt;}
.ls80{letter-spacing:0.981240pt;}
.lsc7{letter-spacing:0.981867pt;}
.lsc4{letter-spacing:0.989733pt;}
.ls16{letter-spacing:1.056000pt;}
.lsd2{letter-spacing:1.065867pt;}
.ls4e{letter-spacing:1.093733pt;}
.ls81{letter-spacing:1.121333pt;}
.lsba{letter-spacing:1.161333pt;}
.ls18{letter-spacing:1.188000pt;}
.ls30{letter-spacing:1.199067pt;}
.lsd6{letter-spacing:1.203333pt;}
.lsb7{letter-spacing:1.216000pt;}
.ls5e{letter-spacing:1.237027pt;}
.ls6a{letter-spacing:1.248000pt;}
.lsc2{letter-spacing:1.261200pt;}
.ls94{letter-spacing:1.262000pt;}
.lsc6{letter-spacing:1.262400pt;}
.ls2d{letter-spacing:1.262800pt;}
.ls19{letter-spacing:1.279867pt;}
.ls65{letter-spacing:1.282667pt;}
.ls75{letter-spacing:1.294267pt;}
.lsd9{letter-spacing:1.296000pt;}
.lsd7{letter-spacing:1.299600pt;}
.ls84{letter-spacing:1.303333pt;}
.ls69{letter-spacing:1.310400pt;}
.lsda{letter-spacing:1.314040pt;}
.lsa{letter-spacing:1.320000pt;}
.ls9f{letter-spacing:1.345867pt;}
.lsb8{letter-spacing:1.360000pt;}
.ls5b{letter-spacing:1.392000pt;}
.lsdb{letter-spacing:1.395867pt;}
.ls6e{letter-spacing:1.404000pt;}
.lse3{letter-spacing:1.410933pt;}
.ls74{letter-spacing:1.450800pt;}
.ls72{letter-spacing:1.459733pt;}
.ls31{letter-spacing:1.508000pt;}
.ls33{letter-spacing:1.544400pt;}
.ls2c{letter-spacing:1.743867pt;}
.ls64{letter-spacing:1.795733pt;}
.ls50{letter-spacing:1.850933pt;}
.lse9{letter-spacing:1.856000pt;}
.lsb5{letter-spacing:1.858133pt;}
.ls2{letter-spacing:1.876800pt;}
.ls39{letter-spacing:1.924000pt;}
.ls92{letter-spacing:2.019200pt;}
.ls37{letter-spacing:2.080000pt;}
.lsbb{letter-spacing:2.090400pt;}
.lsf1{letter-spacing:2.122667pt;}
.lse8{letter-spacing:2.167707pt;}
.ls67{letter-spacing:2.176000pt;}
.lse2{letter-spacing:2.180533pt;}
.ls6d{letter-spacing:2.293867pt;}
.lse0{letter-spacing:2.308800pt;}
.ls71{letter-spacing:2.392000pt;}
.ls1{letter-spacing:2.450267pt;}
.ls79{letter-spacing:2.520933pt;}
.ls4d{letter-spacing:2.524000pt;}
.ls83{letter-spacing:2.548000pt;}
.ls1b{letter-spacing:2.554933pt;}
.ls7a{letter-spacing:2.584000pt;}
.ls8d{letter-spacing:2.606667pt;}
.lsf2{letter-spacing:2.608133pt;}
.ls36{letter-spacing:2.652000pt;}
.ls51{letter-spacing:2.725333pt;}
.ls8{letter-spacing:11.276933pt;}
.lsec{letter-spacing:15.229600pt;}
.lseb{letter-spacing:15.280000pt;}
.lsea{letter-spacing:15.442933pt;}
.ls54{letter-spacing:19.893867pt;}
.ls56{letter-spacing:19.968000pt;}
.ls55{letter-spacing:20.000533pt;}
.ls58{letter-spacing:20.074667pt;}
.ls23{letter-spacing:24.679600pt;}
.ls8e{letter-spacing:34.106667pt;}
.ls4a{letter-spacing:34.286667pt;}
.ls99{letter-spacing:38.353333pt;}
.ls90{letter-spacing:42.553333pt;}
.ls8f{letter-spacing:42.600000pt;}
.ls4b{letter-spacing:42.686667pt;}
.ls9a{letter-spacing:45.353333pt;}
.ls4c{letter-spacing:48.153333pt;}
.ls24{letter-spacing:50.953333pt;}
.ls25{letter-spacing:51.000000pt;}
.ls41{letter-spacing:51.086667pt;}
.ls9e{letter-spacing:51.106667pt;}
.ls3e{letter-spacing:51.113333pt;}
.ls40{letter-spacing:51.133333pt;}
.ls3f{letter-spacing:51.160000pt;}
.ls43{letter-spacing:51.975600pt;}
.ls42{letter-spacing:52.020000pt;}
.ls6c{letter-spacing:52.126667pt;}
.ls6{letter-spacing:83.786133pt;}
.ls5{letter-spacing:83.866667pt;}
.lsa0{letter-spacing:89.440000pt;}
.lsc5{letter-spacing:89.486667pt;}
.lsa1{letter-spacing:95.040000pt;}
.lsa2{letter-spacing:95.086667pt;}
.lsab{letter-spacing:99.213333pt;}
.lsaa{letter-spacing:99.260000pt;}
.lsca{letter-spacing:99.286667pt;}
.lsb3{letter-spacing:103.413333pt;}
.lsb2{letter-spacing:103.460000pt;}
.lscb{letter-spacing:106.286667pt;}
.ls7b{letter-spacing:110.486667pt;}
.lsdd{letter-spacing:114.686667pt;}
.ws13{word-spacing:-77.641200pt;}
.ws50{word-spacing:-43.442133pt;}
.ws25{word-spacing:-42.644747pt;}
.ws51{word-spacing:-38.957067pt;}
.ws55{word-spacing:-37.135333pt;}
.ws52{word-spacing:-36.995200pt;}
.ws54{word-spacing:-36.518000pt;}
.ws5b{word-spacing:-34.375467pt;}
.ws59{word-spacing:-34.143200pt;}
.ws5{word-spacing:-33.478133pt;}
.ws56{word-spacing:-32.322133pt;}
.ws45{word-spacing:-32.294400pt;}
.ws57{word-spacing:-32.285067pt;}
.ws41{word-spacing:-31.845867pt;}
.ws58{word-spacing:-31.704400pt;}
.ws27{word-spacing:-30.061067pt;}
.ws6{word-spacing:-26.725067pt;}
.ws16{word-spacing:-26.442267pt;}
.ws14{word-spacing:-26.258000pt;}
.ws15{word-spacing:-25.613067pt;}
.ws7{word-spacing:-25.273453pt;}
.ws5c{word-spacing:-22.631867pt;}
.ws40{word-spacing:-21.165067pt;}
.ws5a{word-spacing:-21.128000pt;}
.ws6e{word-spacing:-19.996773pt;}
.ws70{word-spacing:-19.648000pt;}
.ws5d{word-spacing:-19.109467pt;}
.ws4f{word-spacing:-18.957200pt;}
.ws3{word-spacing:-18.848000pt;}
.ws81{word-spacing:-18.804933pt;}
.ws2c{word-spacing:-18.176000pt;}
.ws6f{word-spacing:-18.168973pt;}
.ws21{word-spacing:-17.829067pt;}
.ws2d{word-spacing:-17.792000pt;}
.ws77{word-spacing:-17.460000pt;}
.ws7a{word-spacing:-17.378533pt;}
.ws29{word-spacing:-17.280000pt;}
.ws2a{word-spacing:-17.258267pt;}
.ws1{word-spacing:-16.943333pt;}
.ws3a{word-spacing:-16.848000pt;}
.ws34{word-spacing:-16.786933pt;}
.ws20{word-spacing:-16.717067pt;}
.ws24{word-spacing:-16.680000pt;}
.ws47{word-spacing:-16.520000pt;}
.ws1e{word-spacing:-16.430400pt;}
.ws2{word-spacing:-16.369867pt;}
.ws1f{word-spacing:-16.352000pt;}
.ws31{word-spacing:-16.334800pt;}
.ws49{word-spacing:-16.020000pt;}
.ws2b{word-spacing:-15.995467pt;}
.ws3b{word-spacing:-15.952800pt;}
.ws36{word-spacing:-15.860000pt;}
.ws38{word-spacing:-15.704000pt;}
.ws3c{word-spacing:-15.692133pt;}
.ws3e{word-spacing:-15.652000pt;}
.ws46{word-spacing:-15.605067pt;}
.ws5e{word-spacing:-15.600000pt;}
.ws1d{word-spacing:-15.568000pt;}
.ws79{word-spacing:-15.394133pt;}
.ws3d{word-spacing:-15.392000pt;}
.ws7e{word-spacing:-15.370080pt;}
.ws69{word-spacing:-15.327867pt;}
.ws4a{word-spacing:-15.300000pt;}
.ws72{word-spacing:-15.279880pt;}
.ws71{word-spacing:-15.273867pt;}
.ws6a{word-spacing:-15.199600pt;}
.ws17{word-spacing:-15.033333pt;}
.ws62{word-spacing:-15.000000pt;}
.ws68{word-spacing:-14.776933pt;}
.ws2e{word-spacing:-14.736000pt;}
.ws35{word-spacing:-14.701600pt;}
.ws65{word-spacing:-14.695107pt;}
.ws67{word-spacing:-14.680667pt;}
.ws7f{word-spacing:-14.672533pt;}
.ws2f{word-spacing:-14.654400pt;}
.ws63{word-spacing:-14.640000pt;}
.ws66{word-spacing:-14.618093pt;}
.ws3f{word-spacing:-14.592000pt;}
.ws64{word-spacing:-14.584400pt;}
.ws33{word-spacing:-14.493067pt;}
.ws6d{word-spacing:-14.208000pt;}
.ws22{word-spacing:-14.145600pt;}
.ws37{word-spacing:-13.988000pt;}
.ws1b{word-spacing:-13.676000pt;}
.ws39{word-spacing:-13.658933pt;}
.ws1c{word-spacing:-13.520000pt;}
.ws4b{word-spacing:-13.502533pt;}
.ws30{word-spacing:-13.381067pt;}
.ws28{word-spacing:-13.344000pt;}
.ws18{word-spacing:-12.988800pt;}
.ws12{word-spacing:-12.686133pt;}
.wsf{word-spacing:-12.408000pt;}
.wsa{word-spacing:-12.269067pt;}
.ws10{word-spacing:-12.232000pt;}
.ws11{word-spacing:-12.180933pt;}
.wsb{word-spacing:-12.004267pt;}
.wsd{word-spacing:-11.863040pt;}
.ws9{word-spacing:-11.739467pt;}
.ws6b{word-spacing:-11.736400pt;}
.ws8{word-spacing:-11.704000pt;}
.wsc{word-spacing:-10.472840pt;}
.wse{word-spacing:-10.194800pt;}
.ws42{word-spacing:-10.016000pt;}
.ws0{word-spacing:-9.040000pt;}
.ws76{word-spacing:-3.438133pt;}
.ws80{word-spacing:-2.398000pt;}
.ws60{word-spacing:-2.308267pt;}
.ws19{word-spacing:-2.072000pt;}
.ws7d{word-spacing:-2.018933pt;}
.ws4d{word-spacing:-1.767733pt;}
.ws23{word-spacing:-1.653333pt;}
.ws5f{word-spacing:-1.545067pt;}
.ws78{word-spacing:-1.156667pt;}
.ws73{word-spacing:-0.795867pt;}
.ws53{word-spacing:-0.658933pt;}
.ws4e{word-spacing:-0.493333pt;}
.ws26{word-spacing:-0.473467pt;}
.ws7c{word-spacing:-0.356000pt;}
.ws4{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.774533pt;}
.ws1a{word-spacing:1.506667pt;}
.ws74{word-spacing:1.700000pt;}
.ws75{word-spacing:1.703067pt;}
.ws7b{word-spacing:1.953333pt;}
.ws61{word-spacing:4.441360pt;}
.ws6c{word-spacing:115.680000pt;}
.ws43{word-spacing:218.442533pt;}
.ws44{word-spacing:267.561067pt;}
.ws32{word-spacing:2980.443467pt;}
.ws48{word-spacing:2986.576800pt;}
._10{margin-left:-896.148133pt;}
._b{margin-left:-7.806533pt;}
._9{margin-left:-6.111467pt;}
._a{margin-left:-5.163600pt;}
._2{margin-left:-3.440800pt;}
._4{margin-left:-2.489333pt;}
._1{margin-left:-1.160000pt;}
._0{width:1.760000pt;}
._3{width:3.413200pt;}
._6{width:5.092000pt;}
._7{width:6.090933pt;}
._8{width:12.898933pt;}
._c{width:14.538000pt;}
._12{width:15.798667pt;}
._17{width:18.274267pt;}
._d{width:19.443733pt;}
._f{width:21.938133pt;}
._16{width:25.289600pt;}
._15{width:33.458800pt;}
._14{width:35.841867pt;}
._13{width:37.838000pt;}
._18{width:130.128667pt;}
._11{width:157.069333pt;}
._5{width:268.228800pt;}
._e{width:479.152267pt;}
.fs22{font-size:32.000000pt;}
.fs21{font-size:33.730624pt;}
.fs0{font-size:40.000000pt;}
.fsd{font-size:44.000000pt;}
.fse{font-size:44.133333pt;}
.fs17{font-size:48.000000pt;}
.fs1a{font-size:48.133333pt;}
.fs15{font-size:52.000000pt;}
.fs1{font-size:52.133333pt;}
.fs12{font-size:56.000000pt;}
.fs11{font-size:56.133333pt;}
.fs9{font-size:60.000000pt;}
.fsa{font-size:60.133333pt;}
.fs7{font-size:64.000000pt;}
.fs13{font-size:64.133333pt;}
.fs1d{font-size:68.000000pt;}
.fs19{font-size:68.133333pt;}
.fs1b{font-size:72.000000pt;}
.fsf{font-size:72.133333pt;}
.fs8{font-size:76.000000pt;}
.fs1c{font-size:76.133333pt;}
.fs24{font-size:84.000000pt;}
.fs18{font-size:84.133333pt;}
.fs3{font-size:92.133333pt;}
.fs4{font-size:96.133333pt;}
.fs2{font-size:108.133333pt;}
.fs23{font-size:108.266667pt;}
.fs1f{font-size:112.133333pt;}
.fs20{font-size:112.266667pt;}
.fs10{font-size:116.133333pt;}
.fs2a{font-size:116.266667pt;}
.fs25{font-size:128.133333pt;}
.fs29{font-size:128.266667pt;}
.fs1e{font-size:132.133333pt;}
.fs28{font-size:140.133333pt;}
.fs27{font-size:140.266667pt;}
.fs6{font-size:148.133333pt;}
.fs5{font-size:148.266667pt;}
.fs2b{font-size:156.133333pt;}
.fs26{font-size:156.266667pt;}
.fs16{font-size:192.266667pt;}
.fs2c{font-size:212.266667pt;}
.fsb{font-size:236.266667pt;}
.fsc{font-size:236.400000pt;}
.fs14{font-size:284.400000pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:2.000000pt;}
.y223{bottom:4.966667pt;}
.y106{bottom:5.700000pt;}
.y1d{bottom:6.566667pt;}
.y15c{bottom:7.766667pt;}
.y2{bottom:8.000000pt;}
.y23d{bottom:9.200000pt;}
.y48{bottom:10.000000pt;}
.y166{bottom:11.833333pt;}
.yf{bottom:12.000000pt;}
.yc3{bottom:12.633333pt;}
.y71{bottom:13.200000pt;}
.y90{bottom:13.400000pt;}
.y1{bottom:14.033333pt;}
.y109{bottom:16.400000pt;}
.y4{bottom:17.900000pt;}
.y145{bottom:18.033333pt;}
.y1c{bottom:19.566667pt;}
.y15b{bottom:21.800000pt;}
.yec{bottom:22.633333pt;}
.y21d{bottom:23.633333pt;}
.y165{bottom:25.866667pt;}
.y47{bottom:26.033333pt;}
.yc2{bottom:26.633333pt;}
.y70{bottom:27.233333pt;}
.y174{bottom:28.966667pt;}
.y17c{bottom:30.833333pt;}
.y52{bottom:31.233333pt;}
.y3{bottom:33.933333pt;}
.y144{bottom:34.033333pt;}
.y15a{bottom:35.833333pt;}
.yeb{bottom:36.666667pt;}
.y21c{bottom:37.666667pt;}
.yc1{bottom:41.666667pt;}
.y13b{bottom:43.000000pt;}
.y1b{bottom:44.600000pt;}
.y259{bottom:45.200000pt;}
.y51{bottom:48.266667pt;}
.y17b{bottom:48.866667pt;}
.ye1{bottom:51.106667pt;}
.ye6{bottom:51.333333pt;}
.ye4{bottom:51.360000pt;}
.ye9{bottom:51.600000pt;}
.y21b{bottom:51.666667pt;}
.yd2{bottom:51.733333pt;}
.yd0{bottom:51.866667pt;}
.y1a{bottom:57.633333pt;}
.y46{bottom:58.066667pt;}
.y124{bottom:62.666667pt;}
.y113{bottom:63.300000pt;}
.y1bf{bottom:64.633333pt;}
.y50{bottom:65.300000pt;}
.y213{bottom:66.333333pt;}
.y21a{bottom:66.700000pt;}
.y1c6{bottom:68.900000pt;}
.yc0{bottom:70.700000pt;}
.y45{bottom:74.100000pt;}
.y123{bottom:78.700000pt;}
.y1a3{bottom:79.200000pt;}
.y8b{bottom:79.833333pt;}
.y219{bottom:80.700000pt;}
.y4f{bottom:81.300000pt;}
.y19{bottom:83.666667pt;}
.y212{bottom:84.366667pt;}
.ybf{bottom:84.733333pt;}
.y1c5{bottom:85.933333pt;}
.yce{bottom:87.633333pt;}
.y1be{bottom:87.666667pt;}
.y13f{bottom:92.600000pt;}
.y13a{bottom:92.626667pt;}
.y133{bottom:92.893333pt;}
.y126{bottom:93.000000pt;}
.y12d{bottom:93.200000pt;}
.y128{bottom:93.226667pt;}
.y20d{bottom:93.666667pt;}
.y218{bottom:95.733333pt;}
.y18{bottom:96.666667pt;}
.y256{bottom:98.533333pt;}
.ybe{bottom:98.733333pt;}
.y12e{bottom:102.000000pt;}
.y1d0{bottom:102.233333pt;}
.y211{bottom:102.400000pt;}
.y8a{bottom:103.866667pt;}
.ycd{bottom:104.666667pt;}
.y217{bottom:109.733333pt;}
.y1f8{bottom:113.700000pt;}
.y191{bottom:114.266667pt;}
.y255{bottom:114.566667pt;}
.y1a2{bottom:116.266667pt;}
.y164{bottom:116.666667pt;}
.y13e{bottom:119.000000pt;}
.y210{bottom:119.433333pt;}
.ycc{bottom:121.700000pt;}
.y1bd{bottom:121.733333pt;}
.yee{bottom:122.000000pt;}
.y122{bottom:123.433333pt;}
.y216{bottom:123.766667pt;}
.y67{bottom:127.900000pt;}
.y60{bottom:129.033333pt;}
.y112{bottom:129.166667pt;}
.y96{bottom:129.400000pt;}
.y20c{bottom:130.733333pt;}
.y159{bottom:131.933333pt;}
.y163{bottom:134.666667pt;}
.y20f{bottom:137.440000pt;}
.ycb{bottom:138.706667pt;}
.y121{bottom:139.440000pt;}
.y4c{bottom:140.466667pt;}
.y142{bottom:140.493333pt;}
.y236{bottom:141.160000pt;}
.y1cf{bottom:141.306667pt;}
.y254{bottom:141.600000pt;}
.y1bc{bottom:144.773333pt;}
.yf8{bottom:144.800000pt;}
.y190{bottom:145.306667pt;}
.y66{bottom:145.933333pt;}
.y5f{bottom:146.026667pt;}
.yd8{bottom:147.693333pt;}
.y1f7{bottom:147.733333pt;}
.y158{bottom:149.933333pt;}
.y1a1{bottom:150.306667pt;}
.y89{bottom:151.933333pt;}
.y23b{bottom:154.360000pt;}
.yca{bottom:155.733333pt;}
.y4b{bottom:156.493333pt;}
.y253{bottom:157.600000pt;}
.y1dc{bottom:158.773333pt;}
.y65{bottom:162.933333pt;}
.yd6{bottom:163.733333pt;}
.y5e{bottom:164.066667pt;}
.yf7{bottom:164.826667pt;}
.y157{bottom:166.960000pt;}
.y1ea{bottom:167.773333pt;}
.y1bb{bottom:167.800000pt;}
.yc9{bottom:171.773333pt;}
.y4a{bottom:172.533333pt;}
.y20b{bottom:173.773333pt;}
.y3b{bottom:174.666667pt;}
.y235{bottom:174.840000pt;}
.y141{bottom:175.560000pt;}
.y88{bottom:175.960000pt;}
.y18f{bottom:176.333333pt;}
.y1a0{bottom:178.333333pt;}
.yd5{bottom:179.733333pt;}
.y64{bottom:180.973333pt;}
.y95{bottom:181.800000pt;}
.y8{bottom:181.933333pt;}
.y5d{bottom:182.093333pt;}
.y252{bottom:183.666667pt;}
.y139{bottom:184.000000pt;}
.y156{bottom:185.000000pt;}
.y1f6{bottom:185.800000pt;}
.yf6{bottom:185.866667pt;}
.y49{bottom:188.533333pt;}
.yc8{bottom:188.773333pt;}
.y120{bottom:189.266667pt;}
.y30{bottom:190.640000pt;}
.y3a{bottom:190.693333pt;}
.y1ba{bottom:190.840000pt;}
.y234{bottom:191.866667pt;}
.y111{bottom:195.026667pt;}
.yde{bottom:195.666667pt;}
.y1db{bottom:195.800000pt;}
.ybb{bottom:196.466667pt;}
.y184{bottom:197.373333pt;}
.y13d{bottom:197.560000pt;}
.y12b{bottom:198.173333pt;}
.y63{bottom:199.000000pt;}
.y2d{bottom:199.106667pt;}
.yb8{bottom:199.533333pt;}
.y251{bottom:199.666667pt;}
.y87{bottom:200.000000pt;}
.y1e9{bottom:202.840000pt;}
.y1e{bottom:203.000000pt;}
.y155{bottom:203.026667pt;}
.y5c{bottom:204.133333pt;}
.y11f{bottom:205.306667pt;}
.yc7{bottom:205.800000pt;}
.y7{bottom:205.960000pt;}
.y19f{bottom:206.400000pt;}
.y18e{bottom:207.400000pt;}
.y233{bottom:207.866667pt;}
.y20a{bottom:210.840000pt;}
.y140{bottom:211.600000pt;}
.ydc{bottom:211.693333pt;}
.y1ce{bottom:212.400000pt;}
.y1b9{bottom:213.866667pt;}
.y105{bottom:214.200000pt;}
.yba{bottom:215.506667pt;}
.y250{bottom:215.693333pt;}
.y62{bottom:216.026667pt;}
.y2c{bottom:218.093333pt;}
.yb7{bottom:218.573333pt;}
.y1f5{bottom:219.840000pt;}
.y154{bottom:220.040000pt;}
.yc6{bottom:222.840000pt;}
.y86{bottom:225.026667pt;}
.y1c1{bottom:225.706667pt;}
.ydb{bottom:227.733333pt;}
.yef{bottom:230.106667pt;}
.y1e8{bottom:230.866667pt;}
.y6{bottom:231.000000pt;}
.y13c{bottom:233.626667pt;}
.y202{bottom:233.866667pt;}
.y61{bottom:234.026667pt;}
.y12a{bottom:234.226667pt;}
.y183{bottom:234.426667pt;}
.yb9{bottom:234.506667pt;}
.y35{bottom:235.466667pt;}
.y1ad{bottom:236.440000pt;}
.y1b8{bottom:236.893333pt;}
.y2b{bottom:237.133333pt;}
.y18d{bottom:237.426667pt;}
.yb6{bottom:237.560000pt;}
.y153{bottom:238.066667pt;}
.y8e{bottom:238.640000pt;}
.y1da{bottom:238.866667pt;}
.y19e{bottom:239.440000pt;}
.yc5{bottom:239.840000pt;}
.y1cd{bottom:240.426667pt;}
.y24f{bottom:241.733333pt;}
.y196{bottom:242.440000pt;}
.yda{bottom:243.733333pt;}
.y104{bottom:244.240000pt;}
.yf4{bottom:246.426667pt;}
.y39{bottom:246.506667pt;}
.y9a{bottom:247.240000pt;}
.y11e{bottom:247.666667pt;}
.y85{bottom:248.066667pt;}
.y209{bottom:248.893333pt;}
.y94{bottom:250.666667pt;}
.y8d{bottom:252.666667pt;}
.y58{bottom:254.800000pt;}
.yc4{bottom:255.866667pt;}
.y5{bottom:256.040000pt;}
.y1f4{bottom:256.893333pt;}
.y23a{bottom:257.226667pt;}
.y24e{bottom:257.773333pt;}
.y230{bottom:258.000000pt;}
.y221{bottom:258.133333pt;}
.y34{bottom:259.506667pt;}
.y1e7{bottom:259.893333pt;}
.y173{bottom:260.466667pt;}
.y110{bottom:260.893333pt;}
.y38{bottom:262.533333pt;}
.y11d{bottom:263.666667pt;}
.y8c{bottom:266.666667pt;}
.y1ac{bottom:267.466667pt;}
.y19d{bottom:268.466667pt;}
.yf3{bottom:269.466667pt;}
.y57{bottom:270.840000pt;}
.y1b7{bottom:270.933333pt;}
.y18c{bottom:274.466667pt;}
.y1d9{bottom:275.933333pt;}
.y22f{bottom:277.040000pt;}
.y84{bottom:277.106667pt;}
.y172{bottom:278.506667pt;}
.y195{bottom:279.506667pt;}
.y11c{bottom:279.706667pt;}
.y220{bottom:281.173333pt;}
.y132{bottom:284.000000pt;}
.y33{bottom:284.533333pt;}
.y24d{bottom:284.800000pt;}
.y103{bottom:285.306667pt;}
.y208{bottom:285.933333pt;}
.y1c0{bottom:286.333333pt;}
.y1e6{bottom:288.933333pt;}
.y1f3{bottom:289.933333pt;}
.y1b6{bottom:293.973333pt;}
.y19c{bottom:296.506667pt;}
.y1ab{bottom:299.506667pt;}
.y56{bottom:300.133333pt;}
.y24c{bottom:300.800000pt;}
.y1cc{bottom:301.506667pt;}
.y93{bottom:303.066667pt;}
.y137{bottom:303.800000pt;}
.y131{bottom:304.106667pt;}
.y129{bottom:308.000000pt;}
.y1d8{bottom:313.960000pt;}
.y102{bottom:315.333333pt;}
.y11b{bottom:316.040000pt;}
.y239{bottom:316.066667pt;}
.y1b5{bottom:317.000000pt;}
.y37{bottom:318.333333pt;}
.yf2{bottom:319.640000pt;}
.yf0{bottom:320.066667pt;}
.y5b{bottom:322.200000pt;}
.y194{bottom:322.533333pt;}
.y1e5{bottom:323.000000pt;}
.y1f2{bottom:325.000000pt;}
.y24b{bottom:326.840000pt;}
.y83{bottom:328.173333pt;}
.y207{bottom:329.000000pt;}
.y19b{bottom:329.573333pt;}
.y1cb{bottom:330.560000pt;}
.y1aa{bottom:331.560000pt;}
.y11a{bottom:332.066667pt;}
.y36{bottom:334.360000pt;}
.y10f{bottom:335.133333pt;}
.y152{bottom:335.440000pt;}
.ye{bottom:335.773333pt;}
.y1c2{bottom:336.693333pt;}
.y136{bottom:338.866667pt;}
.y130{bottom:339.133333pt;}
.y5a{bottom:339.226667pt;}
.y1b4{bottom:340.026667pt;}
.y138{bottom:340.866667pt;}
.y1fe{bottom:341.133333pt;}
.y24a{bottom:342.866667pt;}
.y44{bottom:344.000000pt;}
.yb5{bottom:344.306667pt;}
.yd9{bottom:345.000000pt;}
.y162{bottom:345.306667pt;}
.y101{bottom:345.400000pt;}
.y119{bottom:348.106667pt;}
.yac{bottom:348.200000pt;}
.y2a{bottom:349.506667pt;}
.y92{bottom:350.333333pt;}
.y201{bottom:351.026667pt;}
.y77{bottom:351.106667pt;}
.y18b{bottom:351.600000pt;}
.yf1{bottom:351.666667pt;}
.y1e4{bottom:352.026667pt;}
.yed{bottom:352.173333pt;}
.y151{bottom:352.466667pt;}
.y25{bottom:356.226667pt;}
.y1d7{bottom:357.026667pt;}
.y82{bottom:357.200000pt;}
.y59{bottom:357.266667pt;}
.y19a{bottom:357.600000pt;}
.y249{bottom:358.893333pt;}
.y9c{bottom:360.106667pt;}
.y17{bottom:360.200000pt;}
.y43{bottom:361.026667pt;}
.y161{bottom:362.306667pt;}
.y1a9{bottom:362.600000pt;}
.yb4{bottom:363.333333pt;}
.y1ca{bottom:363.600000pt;}
.y1f1{bottom:364.026667pt;}
.y1fd{bottom:364.173333pt;}
.y232{bottom:365.400000pt;}
.y193{bottom:365.600000pt;}
.y206{bottom:366.026667pt;}
.y99{bottom:367.173333pt;}
.yab{bottom:367.200000pt;}
.y76{bottom:368.133333pt;}
.y29{bottom:368.533333pt;}
.ya0{bottom:369.906667pt;}
.y150{bottom:370.506667pt;}
.y182{bottom:372.600000pt;}
.y1b3{bottom:373.066667pt;}
.y24{bottom:373.226667pt;}
.y135{bottom:374.893333pt;}
.y9b{bottom:375.106667pt;}
.y12f{bottom:375.200000pt;}
.y100{bottom:376.426667pt;}
.y42{bottom:378.066667pt;}
.y160{bottom:380.333333pt;}
.yd{bottom:380.840000pt;}
.y18a{bottom:381.640000pt;}
.y258{bottom:382.066667pt;}
.yb3{bottom:382.373333pt;}
.y22e{bottom:382.466667pt;}
.y12c{bottom:384.000000pt;}
.y231{bottom:384.440000pt;}
.y248{bottom:384.933333pt;}
.y1e3{bottom:386.066667pt;}
.y75{bottom:386.133333pt;}
.yaa{bottom:386.226667pt;}
.y199{bottom:386.640000pt;}
.y14f{bottom:387.533333pt;}
.y28{bottom:387.560000pt;}
.y9f{bottom:388.933333pt;}
.y238{bottom:389.440000pt;}
.y1c9{bottom:391.626667pt;}
.ye8{bottom:393.000000pt;}
.ye5{bottom:394.000000pt;}
.y41{bottom:394.066667pt;}
.y1d6{bottom:394.106667pt;}
.y1a8{bottom:394.626667pt;}
.y227{bottom:395.200000pt;}
.y118{bottom:395.733333pt;}
.y81{bottom:396.266667pt;}
.y1f0{bottom:397.106667pt;}
.y171{bottom:400.560000pt;}
.y247{bottom:400.973333pt;}
.yf5{bottom:401.040000pt;}
.y22d{bottom:401.506667pt;}
.y10e{bottom:401.933333pt;}
.y1b2{bottom:402.106667pt;}
.y91{bottom:402.693333pt;}
.y74{bottom:404.173333pt;}
.ya9{bottom:405.266667pt;}
.y14e{bottom:405.533333pt;}
.yff{bottom:406.466667pt;}
.y9e{bottom:407.973333pt;}
.y237{bottom:408.466667pt;}
.y192{bottom:408.666667pt;}
.yd4{bottom:409.000000pt;}
.y205{bottom:409.106667pt;}
.y117{bottom:411.773333pt;}
.y181{bottom:414.666667pt;}
.y1e2{bottom:415.106667pt;}
.y10d{bottom:416.973333pt;}
.y226{bottom:417.226667pt;}
.y170{bottom:417.560000pt;}
.y189{bottom:417.666667pt;}
.y1c8{bottom:419.666667pt;}
.y73{bottom:421.200000pt;}
.y257{bottom:422.106667pt;}
.y14d{bottom:423.560000pt;}
.y16{bottom:424.306667pt;}
.y1b1{bottom:425.133333pt;}
.yc{bottom:425.893333pt;}
.y9d{bottom:427.000000pt;}
.y116{bottom:427.800000pt;}
.y1ef{bottom:430.133333pt;}
.y1a7{bottom:431.706667pt;}
.y16f{bottom:435.600000pt;}
.y17a{bottom:436.626667pt;}
.y21f{bottom:437.560000pt;}
.y1d5{bottom:438.133333pt;}
.y72{bottom:439.226667pt;}
.y225{bottom:440.226667pt;}
.y14c{bottom:440.600000pt;}
.y246{bottom:443.000000pt;}
.y4e{bottom:444.333333pt;}
.ye7{bottom:445.333333pt;}
.y204{bottom:446.173333pt;}
.y80{bottom:447.333333pt;}
.yfe{bottom:447.533333pt;}
.y198{bottom:447.733333pt;}
.y188{bottom:448.733333pt;}
.y127{bottom:449.000000pt;}
.y1e1{bottom:449.173333pt;}
.y179{bottom:453.640000pt;}
.y1b0{bottom:458.200000pt;}
.y14b{bottom:458.640000pt;}
.y245{bottom:459.026667pt;}
.y21e{bottom:460.600000pt;}
.y180{bottom:461.733333pt;}
.ya8{bottom:463.333333pt;}
.y1ee{bottom:464.200000pt;}
.y14{bottom:468.560000pt;}
.y1a6{bottom:469.733333pt;}
.y7f{bottom:470.360000pt;}
.ye3{bottom:471.000000pt;}
.y178{bottom:471.666667pt;}
.ye0{bottom:472.000000pt;}
.y53{bottom:475.333333pt;}
.y10c{bottom:476.200000pt;}
.y115{bottom:476.360000pt;}
.y40{bottom:476.840000pt;}
.yfd{bottom:477.560000pt;}
.y1e0{bottom:478.200000pt;}
.y16e{bottom:478.666667pt;}
.y125{bottom:479.000000pt;}
.y27{bottom:479.400000pt;}
.y187{bottom:479.773333pt;}
.y15f{bottom:481.666667pt;}
.y197{bottom:481.773333pt;}
.ya7{bottom:482.360000pt;}
.y1c7{bottom:482.773333pt;}
.y203{bottom:484.200000pt;}
.yb2{bottom:484.666667pt;}
.y244{bottom:486.066667pt;}
.y15{bottom:487.373333pt;}
.y1d4{bottom:489.226667pt;}
.y10b{bottom:491.200000pt;}
.y114{bottom:492.400000pt;}
.y7e{bottom:493.400000pt;}
.y3f{bottom:494.840000pt;}
.y32{bottom:495.506667pt;}
.y1d1{bottom:495.960000pt;}
.y4d{bottom:496.400000pt;}
.y26{bottom:498.400000pt;}
.y16d{bottom:498.693333pt;}
.y13{bottom:499.600000pt;}
.y23{bottom:501.333333pt;}
.ya6{bottom:501.400000pt;}
.y243{bottom:502.106667pt;}
.y1ed{bottom:502.226667pt;}
.y55{bottom:502.840000pt;}
.yb1{bottom:503.706667pt;}
.y17f{bottom:503.800000pt;}
.y15e{bottom:504.693333pt;}
.y214{bottom:507.133333pt;}
.y1df{bottom:507.226667pt;}
.y1a5{bottom:507.800000pt;}
.y6e{bottom:509.773333pt;}
.y14a{bottom:510.693333pt;}
.y3e{bottom:512.866667pt;}
.y186{bottom:515.800000pt;}
.y7d{bottom:516.440000pt;}
.y98{bottom:516.773333pt;}
.y22{bottom:518.360000pt;}
.yfc{bottom:518.640000pt;}
.y16c{bottom:518.733333pt;}
.y31{bottom:520.533333pt;}
.y54{bottom:520.866667pt;}
.ya5{bottom:521.440000pt;}
.y1f9{bottom:522.200000pt;}
.y1fc{bottom:522.440000pt;}
.yb0{bottom:522.733333pt;}
.ye2{bottom:523.106667pt;}
.y177{bottom:524.733333pt;}
.y12{bottom:525.640000pt;}
.y1d3{bottom:527.266667pt;}
.y6d{bottom:527.800000pt;}
.y242{bottom:528.133333pt;}
.y3d{bottom:529.893333pt;}
.y224{bottom:530.800000pt;}
.y22a{bottom:532.533333pt;}
.y149{bottom:533.733333pt;}
.y1ec{bottom:535.266667pt;}
.y21{bottom:535.400000pt;}
.yd1{bottom:537.000000pt;}
.ya4{bottom:540.466667pt;}
.ydf{bottom:540.666667pt;}
.y1de{bottom:541.306667pt;}
.yaf{bottom:541.773333pt;}
.y241{bottom:544.133333pt;}
.y1fb{bottom:544.466667pt;}
.y10a{bottom:544.666667pt;}
.y16b{bottom:544.773333pt;}
.y6c{bottom:544.840000pt;}
.y7c{bottom:545.466667pt;}
.y3c{bottom:547.933333pt;}
.yfb{bottom:548.666667pt;}
.y17e{bottom:550.866667pt;}
.y185{bottom:555.866667pt;}
.y11{bottom:556.666667pt;}
.ydd{bottom:556.693333pt;}
.y148{bottom:556.773333pt;}
.ybd{bottom:556.840000pt;}
.ya3{bottom:559.466667pt;}
.y22c{bottom:560.666667pt;}
.y6b{bottom:562.693333pt;}
.y1a4{bottom:564.133333pt;}
.y16a{bottom:564.800000pt;}
.y1fa{bottom:567.506667pt;}
.y7b{bottom:568.506667pt;}
.y240{bottom:570.200000pt;}
.y1d2{bottom:570.333333pt;}
.y176{bottom:570.800000pt;}
.y229{bottom:570.893333pt;}
.yd7{bottom:572.733333pt;}
.y1eb{bottom:575.333333pt;}
.ybc{bottom:575.866667pt;}
.y1dd{bottom:576.333333pt;}
.ya2{bottom:578.506667pt;}
.yfa{bottom:578.693333pt;}
.y1c4{bottom:579.440000pt;}
.y22b{bottom:579.666667pt;}
.y6a{bottom:580.693333pt;}
.yb{bottom:583.226667pt;}
.y97{bottom:583.333333pt;}
.y147{bottom:585.800000pt;}
.yd3{bottom:588.733333pt;}
.y175{bottom:590.840000pt;}
.y7a{bottom:591.533333pt;}
.y169{bottom:591.840000pt;}
.ycf{bottom:592.000000pt;}
.y222{bottom:592.533333pt;}
.y23f{bottom:597.226667pt;}
.ya1{bottom:597.533333pt;}
.y69{bottom:597.733333pt;}
.y1c3{bottom:602.466667pt;}
.yae{bottom:602.840000pt;}
.y215{bottom:612.560000pt;}
.y23e{bottom:613.226667pt;}
.y146{bottom:614.866667pt;}
.y68{bottom:615.773333pt;}
.y168{bottom:617.866667pt;}
.y79{bottom:620.560000pt;}
.yad{bottom:621.866667pt;}
.y108{bottom:633.840000pt;}
.y2f{bottom:635.106667pt;}
.ya{bottom:635.306667pt;}
.y23c{bottom:637.600000pt;}
.y20e{bottom:644.400000pt;}
.y1af{bottom:652.266667pt;}
.y10{bottom:655.973333pt;}
.y20{bottom:661.106667pt;}
.y9{bottom:661.333333pt;}
.y200{bottom:665.973333pt;}
.y78{bottom:667.893333pt;}
.y17d{bottom:668.533333pt;}
.y143{bottom:670.506667pt;}
.y8f{bottom:671.506667pt;}
.y167{bottom:672.600000pt;}
.y6f{bottom:673.266667pt;}
.yf9{bottom:674.840000pt;}
.y107{bottom:674.893333pt;}
.y2e{bottom:676.173333pt;}
.y228{bottom:678.226667pt;}
.y15d{bottom:681.600000pt;}
.yea{bottom:683.733333pt;}
.y1ff{bottom:684.866667pt;}
.y1f{bottom:686.133333pt;}
.y1ae{bottom:687.293333pt;}
.h1{height:17.000000pt;}
.h4f{height:24.320000pt;}
.h4e{height:25.635275pt;}
.h2{height:27.720000pt;}
.h10{height:32.076000pt;}
.hf{height:32.173200pt;}
.he{height:32.462891pt;}
.h2d{height:34.992000pt;}
.h33{height:35.089200pt;}
.h42{height:36.140000pt;}
.h3f{height:37.856000pt;}
.h23{height:37.908000pt;}
.h3e{height:37.953067pt;}
.h3{height:38.005200pt;}
.h16{height:38.170667pt;}
.h52{height:38.365234pt;}
.h14{height:38.808000pt;}
.h13{height:38.900400pt;}
.h7e{height:40.048800pt;}
.h3b{height:40.768000pt;}
.h26{height:40.824000pt;}
.h28{height:40.865067pt;}
.h22{height:40.921200pt;}
.h3c{height:41.316406pt;}
.h3a{height:41.414779pt;}
.h1e{height:41.672400pt;}
.h78{height:41.700000pt;}
.h1d{height:41.792667pt;}
.h7f{height:42.624000pt;}
.h7d{height:42.712800pt;}
.h39{height:42.820312pt;}
.h79{height:42.939258pt;}
.h1c{height:43.485091pt;}
.h2a{height:43.680000pt;}
.h2c{height:43.740000pt;}
.h29{height:43.777067pt;}
.h27{height:43.837200pt;}
.h2b{height:44.326667pt;}
.h5d{height:44.365951pt;}
.h74{height:45.600000pt;}
.h75{height:45.701333pt;}
.h73{height:45.951497pt;}
.h24{height:46.388672pt;}
.h51{height:46.507617pt;}
.h38{height:46.592000pt;}
.h17{height:46.656000pt;}
.h37{height:46.689067pt;}
.h18{height:46.753200pt;}
.h50{height:48.741333pt;}
.h11{height:49.050667pt;}
.h48{height:49.504000pt;}
.h47{height:49.601067pt;}
.h21{height:49.957031pt;}
.h35{height:52.585200pt;}
.h20{height:53.525391pt;}
.h1f{height:53.644336pt;}
.h7a{height:55.328000pt;}
.h45{height:55.425067pt;}
.h61{height:55.501200pt;}
.h15{height:55.699219pt;}
.h7b{height:56.032800pt;}
.h46{height:56.170638pt;}
.h7c{height:58.212000pt;}
.h31{height:58.472667pt;}
.h32{height:60.781055pt;}
.h30{height:60.840560pt;}
.h72{height:61.236000pt;}
.h70{height:61.249067pt;}
.h5c{height:61.333200pt;}
.h71{height:62.072982pt;}
.h36{height:64.230469pt;}
.h34{height:64.349414pt;}
.h5{height:67.073067pt;}
.h1b{height:67.165200pt;}
.h6f{height:67.798828pt;}
.h60{height:67.917773pt;}
.h6{height:69.985067pt;}
.hb{height:70.081200pt;}
.h5b{height:74.935547pt;}
.h2f{height:75.054492pt;}
.h9{height:75.937333pt;}
.h4{height:78.721067pt;}
.h5f{height:78.829200pt;}
.h43{height:79.780013pt;}
.h12{height:80.480400pt;}
.h4c{height:81.745200pt;}
.h6e{height:84.661200pt;}
.h6d{height:84.758400pt;}
.h4a{height:85.759570pt;}
.h5e{height:88.796400pt;}
.h49{height:91.568400pt;}
.h82{height:93.378133pt;}
.h6a{height:93.409200pt;}
.h67{height:93.506400pt;}
.h69{height:94.634245pt;}
.h2e{height:96.464648pt;}
.h5a{height:96.583594pt;}
.h4b{height:100.033008pt;}
.h4d{height:100.151953pt;}
.h80{height:101.323200pt;}
.h83{height:101.767867pt;}
.h64{height:102.157200pt;}
.h76{height:102.254400pt;}
.ha{height:102.656400pt;}
.h19{height:102.748800pt;}
.h6b{height:103.601367pt;}
.h6c{height:103.720313pt;}
.h8{height:107.841067pt;}
.h7{height:107.938133pt;}
.h3d{height:113.000000pt;}
.h66{height:114.306445pt;}
.h68{height:114.425391pt;}
.h65{height:125.011523pt;}
.h63{height:125.130469pt;}
.h25{height:133.240800pt;}
.h77{height:139.284961pt;}
.h62{height:139.403906pt;}
.h81{height:154.530133pt;}
.hc{height:163.732800pt;}
.hd{height:163.825200pt;}
.h1a{height:207.327600pt;}
.h53{height:209.000000pt;}
.h40{height:311.000000pt;}
.h41{height:375.000000pt;}
.h54{height:412.000000pt;}
.h59{height:434.000000pt;}
.h44{height:449.000000pt;}
.h57{height:456.000000pt;}
.h58{height:539.000000pt;}
.h55{height:618.000000pt;}
.h56{height:702.000000pt;}
.h0{height:720.000000pt;}
.w4{width:79.000000pt;}
.w3{width:84.000000pt;}
.w2{width:117.000000pt;}
.w8{width:119.000000pt;}
.w5{width:124.000000pt;}
.w6{width:132.000000pt;}
.wa{width:136.000000pt;}
.w7{width:155.000000pt;}
.w1{width:159.160000pt;}
.wc{width:174.000000pt;}
.w9{width:289.000000pt;}
.wb{width:582.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x54{left:2.100000pt;}
.x61{left:6.066667pt;}
.x76{left:8.033333pt;}
.x1{left:9.000000pt;}
.x52{left:13.300000pt;}
.x7f{left:18.066667pt;}
.x33{left:23.966667pt;}
.x53{left:25.000000pt;}
.x68{left:26.833333pt;}
.x75{left:29.500000pt;}
.x38{left:30.600000pt;}
.x4a{left:31.600000pt;}
.x31{left:32.700000pt;}
.x80{left:36.066667pt;}
.x71{left:37.000000pt;}
.x14{left:41.333333pt;}
.x77{left:44.066667pt;}
.x34{left:45.633333pt;}
.x2c{left:47.066667pt;}
.x32{left:50.700000pt;}
.x95{left:52.566667pt;}
.x8e{left:57.666667pt;}
.x7b{left:59.566667pt;}
.x94{left:60.933333pt;}
.x6{left:62.466667pt;}
.x35{left:63.666667pt;}
.x2d{left:65.100000pt;}
.x89{left:66.000000pt;}
.x6e{left:71.700000pt;}
.x70{left:73.300000pt;}
.xe{left:75.166667pt;}
.x88{left:77.766667pt;}
.x99{left:79.500000pt;}
.x36{left:81.700000pt;}
.x6f{left:83.133333pt;}
.x6d{left:85.066667pt;}
.x17{left:88.400000pt;}
.x9{left:93.833333pt;}
.x85{left:109.766667pt;}
.xa0{left:111.600000pt;}
.x7{left:117.866667pt;}
.x86{left:121.800000pt;}
.xc{left:123.733333pt;}
.x7d{left:130.000000pt;}
.x6a{left:130.966667pt;}
.x55{left:141.000000pt;}
.x7e{left:148.000000pt;}
.x23{left:150.800000pt;}
.xd{left:153.760000pt;}
.x87{left:157.826667pt;}
.x15{left:167.106667pt;}
.x63{left:170.666667pt;}
.x72{left:172.000000pt;}
.x98{left:173.906667pt;}
.x6b{left:182.106667pt;}
.x19{left:198.226667pt;}
.x10{left:201.640000pt;}
.x4{left:204.173333pt;}
.x1a{left:208.400000pt;}
.x30{left:213.360000pt;}
.x2{left:219.866667pt;}
.x56{left:224.000000pt;}
.x3{left:231.933333pt;}
.x5c{left:234.466667pt;}
.x69{left:239.400000pt;}
.x60{left:244.306667pt;}
.x18{left:248.866667pt;}
.x1b{left:254.600000pt;}
.x74{left:259.173333pt;}
.x5{left:276.906667pt;}
.x97{left:278.440000pt;}
.x62{left:294.573333pt;}
.x57{left:302.000000pt;}
.x7c{left:304.573333pt;}
.x5d{left:311.800000pt;}
.xa1{left:312.693333pt;}
.x7a{left:317.800000pt;}
.x16{left:326.600000pt;}
.x9a{left:327.666667pt;}
.x9f{left:332.706667pt;}
.x4f{left:335.533333pt;}
.x50{left:340.373333pt;}
.x8{left:347.440000pt;}
.x26{left:350.226667pt;}
.x11{left:352.506667pt;}
.x2e{left:362.266667pt;}
.x9c{left:364.973333pt;}
.xa2{left:366.026667pt;}
.x8c{left:370.266667pt;}
.x9d{left:372.066667pt;}
.x96{left:375.933333pt;}
.xa{left:379.733333pt;}
.x51{left:391.533333pt;}
.x81{left:399.426667pt;}
.x44{left:402.000000pt;}
.x45{left:406.933333pt;}
.xb{left:409.506667pt;}
.x28{left:411.800000pt;}
.x27{left:416.666667pt;}
.x64{left:423.000000pt;}
.x58{left:425.000000pt;}
.x5e{left:435.066667pt;}
.x46{left:447.133333pt;}
.x25{left:459.106667pt;}
.x21{left:469.866667pt;}
.x22{left:487.866667pt;}
.x8d{left:490.106667pt;}
.x92{left:493.040000pt;}
.x20{left:500.293333pt;}
.x1c{left:501.533333pt;}
.x1e{left:510.973333pt;}
.x83{left:524.133333pt;}
.x65{left:532.360000pt;}
.x9e{left:534.506667pt;}
.x84{left:542.133333pt;}
.x48{left:551.333333pt;}
.x59{left:556.000000pt;}
.x47{left:560.600000pt;}
.x49{left:567.360000pt;}
.x40{left:574.733333pt;}
.x93{left:577.306667pt;}
.x2f{left:580.560000pt;}
.x1f{left:583.306667pt;}
.x2a{left:592.066667pt;}
.x82{left:599.226667pt;}
.x1d{left:607.000000pt;}
.x2b{left:610.066667pt;}
.x29{left:627.026667pt;}
.x24{left:629.026667pt;}
.x43{left:645.733333pt;}
.x37{left:659.800000pt;}
.x8f{left:668.506667pt;}
.x12{left:681.906667pt;}
.x91{left:685.133333pt;}
.x4b{left:686.226667pt;}
.x13{left:688.600000pt;}
.x90{left:695.466667pt;}
.x5a{left:710.000000pt;}
.x41{left:712.400000pt;}
.xf{left:721.066667pt;}
.x4e{left:747.226667pt;}
.x42{left:749.800000pt;}
.x78{left:751.400000pt;}
.x9b{left:752.666667pt;}
.x66{left:753.733333pt;}
.x79{left:757.360000pt;}
.x8a{left:758.373333pt;}
.x8b{left:765.440000pt;}
.x67{left:793.106667pt;}
.x4c{left:806.266667pt;}
.x5b{left:826.000000pt;}
.x4d{left:831.266667pt;}
.x73{left:835.106667pt;}
.x5f{left:836.226667pt;}
.x39{left:904.533333pt;}
.x6c{left:920.400000pt;}
.x3d{left:1206.866667pt;}
.x3a{left:1208.866667pt;}
.x3f{left:1218.866667pt;}
.x3e{left:1222.866667pt;}
.x3b{left:1225.866667pt;}
.x3c{left:1229.866667pt;}
}




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