
    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_e74de93c8a90f361c044e96e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896484;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_9efa828f665419598cc43962.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f21a7e3fcbc3a0b1f7495063.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8983ad22ca530db1e510e9f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_7a1aa90c9c23687990720b8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7955f2979cafb34f9aafd8a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_eaa659314ca7e613fcceb7b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e6d29412386e65c9b9951507.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_f6580061db5fd8674a24c0bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_91b987e6be9511f73892f3b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ca178a0e190bf2a43fce8818.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908691;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_d8f14a76d99e8209ca727f07.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_36b2641a776f883c7d839fa5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.115234;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_ff703615d8a0d538dc57b917.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a6301b9515e8f1c5c48bfe96.woff2')format("woff");}.fff{font-family:fff;line-height:1.112305;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_276e328e83e0ec867c2e9deb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752441;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;}
.m5{transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.274661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274661,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.278011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278011,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-31.080000px;}
.v7{vertical-align:-29.520000px;}
.v8{vertical-align:-26.640000px;}
.vb{vertical-align:-23.328000px;}
.v5{vertical-align:-22.320000px;}
.vd{vertical-align:-10.557939px;}
.v3{vertical-align:-7.920000px;}
.v15{vertical-align:-6.300000px;}
.vc{vertical-align:-2.708734px;}
.v10{vertical-align:-1.020000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:7.450215px;}
.v11{vertical-align:18.000000px;}
.v13{vertical-align:19.296000px;}
.v6{vertical-align:22.320000px;}
.v4{vertical-align:32.400000px;}
.v2{vertical-align:36.000000px;}
.v14{vertical-align:51.720000px;}
.ve{vertical-align:57.180000px;}
.vf{vertical-align:61.620000px;}
.v1{vertical-align:103.260000px;}
.v12{vertical-align:111.600000px;}
.ls96{letter-spacing:-9.103389px;}
.ls6a{letter-spacing:-8.651173px;}
.ls91{letter-spacing:-7.933997px;}
.ls94{letter-spacing:-6.108853px;}
.ls8a{letter-spacing:-6.033108px;}
.ls64{letter-spacing:-5.987619px;}
.ls85{letter-spacing:-5.946002px;}
.ls59{letter-spacing:-5.858896px;}
.ls65{letter-spacing:-5.848681px;}
.ls5f{letter-spacing:-5.564476px;}
.ls8e{letter-spacing:-5.331406px;}
.ls95{letter-spacing:-3.246077px;}
.ls88{letter-spacing:-3.083589px;}
.ls82{letter-spacing:-3.039068px;}
.ls62{letter-spacing:-3.029735px;}
.ls55{letter-spacing:-2.994547px;}
.ls69{letter-spacing:-2.924340px;}
.ls5a{letter-spacing:-2.844066px;}
.ls90{letter-spacing:-2.668708px;}
.ls8d{letter-spacing:-1.676958px;}
.ls89{letter-spacing:-1.582015px;}
.ls84{letter-spacing:-1.559174px;}
.ls58{letter-spacing:-1.536333px;}
.ls63{letter-spacing:-1.514868px;}
.ls5e{letter-spacing:-1.459129px;}
.ls7{letter-spacing:-1.026000px;}
.ls5{letter-spacing:-0.882000px;}
.ls17{letter-spacing:-0.828000px;}
.ls21{letter-spacing:-0.696000px;}
.ls9d{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.487800px;}
.ls66{letter-spacing:-0.453882px;}
.ls42{letter-spacing:-0.439800px;}
.ls9{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.346800px;}
.ls67{letter-spacing:-0.336299px;}
.ls4{letter-spacing:-0.306600px;}
.ls18{letter-spacing:-0.280200px;}
.ls27{letter-spacing:-0.277200px;}
.ls40{letter-spacing:-0.252000px;}
.ls6b{letter-spacing:-0.226636px;}
.lsf{letter-spacing:-0.216000px;}
.ls97{letter-spacing:-0.204826px;}
.ls26{letter-spacing:-0.189600px;}
.ls16{letter-spacing:-0.170400px;}
.ls10{letter-spacing:-0.162600px;}
.ls8b{letter-spacing:-0.149063px;}
.ls3f{letter-spacing:-0.144000px;}
.ls3e{letter-spacing:-0.135600px;}
.ls68{letter-spacing:-0.117583px;}
.ls61{letter-spacing:-0.117357px;}
.lsb{letter-spacing:-0.106800px;}
.ls24{letter-spacing:-0.102000px;}
.ls86{letter-spacing:-0.083123px;}
.ls81{letter-spacing:-0.081923px;}
.ls57{letter-spacing:-0.080723px;}
.ls5b{letter-spacing:-0.076666px;}
.ls8f{letter-spacing:-0.074531px;}
.ls87{letter-spacing:-0.045583px;}
.ls83{letter-spacing:-0.044925px;}
.ls56{letter-spacing:-0.044267px;}
.ls5d{letter-spacing:-0.042043px;}
.ls60{letter-spacing:-0.031495px;}
.ls9a{letter-spacing:-0.029400px;}
.ls3d{letter-spacing:-0.026640px;}
.ls8c{letter-spacing:-0.015808px;}
.ls28{letter-spacing:-0.008640px;}
.ls92{letter-spacing:-0.001946px;}
.ls0{letter-spacing:0.000000px;}
.ls79{letter-spacing:0.015808px;}
.ls1{letter-spacing:0.026640px;}
.ls4f{letter-spacing:0.035541px;}
.ls41{letter-spacing:0.036000px;}
.ls98{letter-spacing:0.037440px;}
.ls5c{letter-spacing:0.042043px;}
.ls47{letter-spacing:0.044267px;}
.ls37{letter-spacing:0.044640px;}
.ls70{letter-spacing:0.044925px;}
.ls76{letter-spacing:0.045583px;}
.ls7b{letter-spacing:0.045876px;}
.ls9b{letter-spacing:0.053280px;}
.ls44{letter-spacing:0.078490px;}
.ls7c{letter-spacing:0.082812px;}
.ls49{letter-spacing:0.084660px;}
.ls43{letter-spacing:0.088200px;}
.ls46{letter-spacing:0.089140px;}
.ls6f{letter-spacing:0.090465px;}
.ls72{letter-spacing:0.091790px;}
.ls4c{letter-spacing:0.098219px;}
.ls45{letter-spacing:0.103416px;}
.ls6e{letter-spacing:0.104954px;}
.ls75{letter-spacing:0.106491px;}
.lse{letter-spacing:0.106800px;}
.ls3c{letter-spacing:0.108000px;}
.ls33{letter-spacing:0.142800px;}
.ls7d{letter-spacing:0.143976px;}
.ls3b{letter-spacing:0.144000px;}
.ls50{letter-spacing:0.179244px;}
.ls12{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.191489px;}
.ls22{letter-spacing:0.202800px;}
.ls6d{letter-spacing:0.204618px;}
.ls74{letter-spacing:0.207616px;}
.ls77{letter-spacing:0.212701px;}
.ls52{letter-spacing:0.213177px;}
.ls31{letter-spacing:0.216000px;}
.ls4e{letter-spacing:0.227315px;}
.ls15{letter-spacing:0.232200px;}
.ls4a{letter-spacing:0.233751px;}
.ls93{letter-spacing:0.245552px;}
.ls48{letter-spacing:0.246119px;}
.ls71{letter-spacing:0.249778px;}
.ls73{letter-spacing:0.253437px;}
.ls6c{letter-spacing:0.256200px;}
.ls7f{letter-spacing:0.266306px;}
.ls23{letter-spacing:0.280080px;}
.ls1a{letter-spacing:0.280200px;}
.ls99{letter-spacing:0.286800px;}
.ls51{letter-spacing:0.287191px;}
.ls25{letter-spacing:0.287280px;}
.lsd{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.306600px;}
.ls36{letter-spacing:0.306720px;}
.ls53{letter-spacing:0.326607px;}
.lsa{letter-spacing:0.360000px;}
.ls80{letter-spacing:0.371639px;}
.ls78{letter-spacing:0.387157px;}
.ls11{letter-spacing:0.504000px;}
.ls7e{letter-spacing:0.551152px;}
.ls54{letter-spacing:0.559530px;}
.ls7a{letter-spacing:0.601246px;}
.ls4d{letter-spacing:2.878247px;}
.ls29{letter-spacing:4.543200px;}
.ls3a{letter-spacing:18.144000px;}
.ls2d{letter-spacing:26.208000px;}
.ls20{letter-spacing:27.013248px;}
.ls1c{letter-spacing:27.053280px;}
.ls35{letter-spacing:28.182240px;}
.ls34{letter-spacing:28.902240px;}
.ls14{letter-spacing:29.880000px;}
.ls2a{letter-spacing:34.063200px;}
.ls13{letter-spacing:34.213248px;}
.ls2b{letter-spacing:34.783200px;}
.ls3{letter-spacing:34.840080px;}
.ls30{letter-spacing:34.840800px;}
.ls2{letter-spacing:45.000000px;}
.ls39{letter-spacing:46.224000px;}
.ls32{letter-spacing:50.140800px;}
.ls38{letter-spacing:58.680000px;}
.ls2e{letter-spacing:78.168000px;}
.lsa0{letter-spacing:93.369600px;}
.ls9f{letter-spacing:93.420000px;}
.ls9c{letter-spacing:97.560000px;}
.ls2f{letter-spacing:97.572000px;}
.lsc{letter-spacing:119.916000px;}
.ls9e{letter-spacing:120.060000px;}
.ls1f{letter-spacing:121.912128px;}
.ls1e{letter-spacing:121.960080px;}
.ls2c{letter-spacing:124.212000px;}
.ls1b{letter-spacing:175.960080px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb9{word-spacing:-108.144000px;}
.wsb6{word-spacing:-108.000000px;}
.ws52{word-spacing:-92.196000px;}
.wsbb{word-spacing:-77.867568px;}
.wsb8{word-spacing:-77.616000px;}
.wsba{word-spacing:-66.134016px;}
.wsb7{word-spacing:-65.952000px;}
.ws119{word-spacing:-54.266381px;}
.ws106{word-spacing:-53.584056px;}
.wsfa{word-spacing:-52.810406px;}
.wsda{word-spacing:-52.036757px;}
.wsef{word-spacing:-48.117109px;}
.ws109{word-spacing:-47.550947px;}
.ws10f{word-spacing:-47.448909px;}
.ws100{word-spacing:-46.864405px;}
.wse0{word-spacing:-46.177862px;}
.ws11d{word-spacing:-45.162992px;}
.wse8{word-spacing:-43.857346px;}
.wsf7{word-spacing:-41.863150px;}
.ws113{word-spacing:-39.514912px;}
.ws155{word-spacing:-36.144000px;}
.wsd4{word-spacing:-36.124200px;}
.ws98{word-spacing:-30.420000px;}
.ws6b{word-spacing:-30.384000px;}
.ws33{word-spacing:-30.096000px;}
.ws8{word-spacing:-30.060000px;}
.ws77{word-spacing:-29.779800px;}
.ws9d{word-spacing:-29.034000px;}
.wsaa{word-spacing:-27.036000px;}
.wsa1{word-spacing:-27.000000px;}
.wsd2{word-spacing:-26.892000px;}
.wsad{word-spacing:-23.976000px;}
.wsab{word-spacing:-23.940000px;}
.ws14b{word-spacing:-21.096000px;}
.ws12b{word-spacing:-21.060000px;}
.ws12d{word-spacing:-18.144000px;}
.wsd7{word-spacing:-18.036000px;}
.wsd1{word-spacing:-18.000000px;}
.ws118{word-spacing:-15.086054px;}
.wsec{word-spacing:-15.041114px;}
.ws138{word-spacing:-14.940000px;}
.ws105{word-spacing:-14.896367px;}
.wsf8{word-spacing:-14.681293px;}
.wsd9{word-spacing:-14.466218px;}
.wsf0{word-spacing:-14.042982px;}
.ws117{word-spacing:-13.812147px;}
.wse1{word-spacing:-13.739267px;}
.ws11a{word-spacing:-13.649407px;}
.ws114{word-spacing:-13.612471px;}
.ws116{word-spacing:-13.566595px;}
.ws115{word-spacing:-13.564649px;}
.wse9{word-spacing:-13.526182px;}
.wsea{word-spacing:-13.494687px;}
.ws103{word-spacing:-13.441597px;}
.wseb{word-spacing:-13.408825px;}
.ws102{word-spacing:-13.396014px;}
.ws104{word-spacing:-13.350430px;}
.ws101{word-spacing:-13.312891px;}
.wsfc{word-spacing:-13.247527px;}
.wsfe{word-spacing:-13.202602px;}
.ws10e{word-spacing:-13.190797px;}
.wsfd{word-spacing:-13.157676px;}
.wsfb{word-spacing:-13.120679px;}
.wsdd{word-spacing:-13.053456px;}
.wsdc{word-spacing:-13.009189px;}
.wsdb{word-spacing:-12.964922px;}
.wsde{word-spacing:-12.928467px;}
.wsf2{word-spacing:-12.628581px;}
.wsf5{word-spacing:-12.510998px;}
.wse5{word-spacing:-12.397498px;}
.wse4{word-spacing:-12.355456px;}
.wse6{word-spacing:-12.313413px;}
.wsf4{word-spacing:-12.292282px;}
.wse3{word-spacing:-12.278789px;}
.wsf3{word-spacing:-12.174699px;}
.wsed{word-spacing:-12.011379px;}
.ws10c{word-spacing:-11.878035px;}
.ws10b{word-spacing:-11.862227px;}
.ws10d{word-spacing:-11.846419px;}
.ws108{word-spacing:-11.812779px;}
.ws10a{word-spacing:-11.713164px;}
.wsf9{word-spacing:-11.642225px;}
.ws110{word-spacing:-11.513838px;}
.wsd8{word-spacing:-11.471672px;}
.wse2{word-spacing:-10.895201px;}
.wsee{word-spacing:-9.053495px;}
.ws11c{word-spacing:-8.977201px;}
.ws107{word-spacing:-8.863259px;}
.wsff{word-spacing:-8.735291px;}
.wsdf{word-spacing:-8.607323px;}
.wsf1{word-spacing:-8.194301px;}
.wse7{word-spacing:-8.174790px;}
.ws111{word-spacing:-7.859391px;}
.ws11b{word-spacing:-5.982665px;}
.wsf6{word-spacing:-5.391809px;}
.ws112{word-spacing:-5.256800px;}
.ws15a{word-spacing:-4.563456px;}
.ws7d{word-spacing:-4.219200px;}
.ws159{word-spacing:-4.099920px;}
.ws3c{word-spacing:-3.980880px;}
.ws158{word-spacing:-3.206520px;}
.wsa7{word-spacing:-3.006720px;}
.wsbc{word-spacing:-2.808000px;}
.ws91{word-spacing:-2.771520px;}
.ws7f{word-spacing:-2.700000px;}
.ws141{word-spacing:-2.646720px;}
.ws9f{word-spacing:-2.572416px;}
.ws15f{word-spacing:-2.486400px;}
.ws80{word-spacing:-2.433960px;}
.ws21{word-spacing:-2.419920px;}
.ws4e{word-spacing:-2.393520px;}
.ws164{word-spacing:-2.360160px;}
.ws129{word-spacing:-2.338320px;}
.ws50{word-spacing:-2.333520px;}
.ws131{word-spacing:-2.311920px;}
.wsc6{word-spacing:-2.304000px;}
.ws4d{word-spacing:-2.286720px;}
.ws1c{word-spacing:-2.279760px;}
.ws8f{word-spacing:-2.233440px;}
.wsc5{word-spacing:-2.232000px;}
.ws44{word-spacing:-2.219760px;}
.ws6d{word-spacing:-2.202960px;}
.ws154{word-spacing:-2.160000px;}
.ws65{word-spacing:-2.100960px;}
.ws43{word-spacing:-2.011920px;}
.ws42{word-spacing:-1.997280px;}
.ws3b{word-spacing:-1.974720px;}
.ws84{word-spacing:-1.952160px;}
.ws157{word-spacing:-1.923360px;}
.ws6f{word-spacing:-1.913040px;}
.ws163{word-spacing:-1.896000px;}
.ws64{word-spacing:-1.812240px;}
.wsa6{word-spacing:-1.793520px;}
.ws7a{word-spacing:-1.749408px;}
.ws13{word-spacing:-1.699920px;}
.ws15e{word-spacing:-1.622400px;}
.ws71{word-spacing:-1.532880px;}
.ws134{word-spacing:-1.506960px;}
.ws75{word-spacing:-1.420560px;}
.ws81{word-spacing:-1.406400px;}
.ws7c{word-spacing:-1.405248px;}
.ws140{word-spacing:-1.380480px;}
.ws135{word-spacing:-1.366800px;}
.ws14e{word-spacing:-1.320480px;}
.ws165{word-spacing:-1.313280px;}
.wsb5{word-spacing:-1.248000px;}
.ws79{word-spacing:-1.237248px;}
.ws86{word-spacing:-1.206720px;}
.ws132{word-spacing:-1.149840px;}
.ws82{word-spacing:-1.118160px;}
.wsbe{word-spacing:-1.116000px;}
.wsc7{word-spacing:-1.044000px;}
.ws4b{word-spacing:-0.992160px;}
.ws85{word-spacing:-0.979920px;}
.ws4c{word-spacing:-0.953280px;}
.ws7b{word-spacing:-0.919872px;}
.ws153{word-spacing:-0.900000px;}
.wsbf{word-spacing:-0.864000px;}
.ws15d{word-spacing:-0.846240px;}
.ws11e{word-spacing:-0.828000px;}
.ws162{word-spacing:-0.807840px;}
.ws144{word-spacing:-0.792000px;}
.wsc3{word-spacing:-0.756000px;}
.ws15c{word-spacing:-0.714240px;}
.wsa8{word-spacing:-0.712320px;}
.ws8e{word-spacing:-0.693648px;}
.ws15b{word-spacing:-0.658944px;}
.wsc2{word-spacing:-0.648000px;}
.ws83{word-spacing:-0.632880px;}
.wsc1{word-spacing:-0.576000px;}
.ws78{word-spacing:-0.540000px;}
.ws122{word-spacing:-0.496080px;}
.ws121{word-spacing:-0.472176px;}
.ws147{word-spacing:-0.468000px;}
.ws9e{word-spacing:-0.459600px;}
.wsc4{word-spacing:-0.384000px;}
.wsc8{word-spacing:-0.348000px;}
.ws143{word-spacing:-0.339840px;}
.ws76{word-spacing:-0.323520px;}
.ws4a{word-spacing:-0.299280px;}
.ws7e{word-spacing:-0.286560px;}
.ws148{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.175200px;}
.ws120{word-spacing:-0.144000px;}
.ws3d{word-spacing:-0.132360px;}
.ws99{word-spacing:-0.125520px;}
.ws51{word-spacing:-0.120240px;}
.ws13c{word-spacing:-0.108144px;}
.wsb1{word-spacing:-0.108000px;}
.wsce{word-spacing:-0.093600px;}
.wsc0{word-spacing:-0.072000px;}
.ws152{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws40{word-spacing:0.000720px;}
.ws9c{word-spacing:0.014160px;}
.ws166{word-spacing:0.073200px;}
.ws9a{word-spacing:0.089760px;}
.ws146{word-spacing:0.096000px;}
.ws70{word-spacing:0.099600px;}
.ws41{word-spacing:0.144144px;}
.ws128{word-spacing:0.180000px;}
.wsbd{word-spacing:0.228000px;}
.ws6e{word-spacing:0.367440px;}
.wscd{word-spacing:0.396000px;}
.ws90{word-spacing:0.405648px;}
.ws45{word-spacing:0.433080px;}
.ws3f{word-spacing:0.593280px;}
.ws142{word-spacing:0.836400px;}
.ws3e{word-spacing:0.942000px;}
.ws9b{word-spacing:1.180080px;}
.ws97{word-spacing:1.402320px;}
.wsac{word-spacing:1.450560px;}
.wsaf{word-spacing:1.570560px;}
.ws15{word-spacing:1.579968px;}
.wsa{word-spacing:1.634400px;}
.ws94{word-spacing:1.702080px;}
.ws14{word-spacing:1.800576px;}
.ws92{word-spacing:1.808640px;}
.ws96{word-spacing:1.863120px;}
.ws93{word-spacing:1.928160px;}
.wsae{word-spacing:2.220624px;}
.wsb0{word-spacing:2.290560px;}
.ws9{word-spacing:2.620080px;}
.ws95{word-spacing:3.340080px;}
.ws17{word-spacing:3.754800px;}
.ws1b{word-spacing:3.914400px;}
.ws18{word-spacing:4.060080px;}
.ws49{word-spacing:4.178880px;}
.ws1a{word-spacing:4.407120px;}
.ws46{word-spacing:4.615296px;}
.ws26{word-spacing:4.726560px;}
.wsb{word-spacing:4.751280px;}
.ws47{word-spacing:4.892736px;}
.ws19{word-spacing:5.047680px;}
.ws67{word-spacing:5.130048px;}
.ws6a{word-spacing:5.157504px;}
.ws25{word-spacing:5.312160px;}
.ws27{word-spacing:5.409360px;}
.ws29{word-spacing:5.432400px;}
.ws24{word-spacing:5.500080px;}
.ws22{word-spacing:5.619600px;}
.ws66{word-spacing:5.727528px;}
.ws2b{word-spacing:5.730000px;}
.ws23{word-spacing:5.777520px;}
.ws2f{word-spacing:5.780160px;}
.ws69{word-spacing:5.879232px;}
.ws16{word-spacing:5.939640px;}
.ws6c{word-spacing:6.048000px;}
.ws48{word-spacing:6.280128px;}
.ws2d{word-spacing:6.426720px;}
.ws28{word-spacing:6.628080px;}
.ws2c{word-spacing:6.633840px;}
.wsa0{word-spacing:6.840000px;}
.ws2a{word-spacing:6.913080px;}
.ws8a{word-spacing:7.073280px;}
.ws8b{word-spacing:7.287120px;}
.wscf{word-spacing:7.482240px;}
.ws150{word-spacing:7.596000px;}
.ws14f{word-spacing:7.704000px;}
.ws68{word-spacing:7.720128px;}
.ws8c{word-spacing:7.756560px;}
.ws151{word-spacing:7.884000px;}
.ws53{word-spacing:7.887528px;}
.wsd0{word-spacing:8.202240px;}
.ws56{word-spacing:8.208000px;}
.ws54{word-spacing:8.322336px;}
.ws2e{word-spacing:8.351280px;}
.ws167{word-spacing:8.460000px;}
.wsb3{word-spacing:8.604000px;}
.ws55{word-spacing:8.777952px;}
.wsd3{word-spacing:9.504000px;}
.wsb2{word-spacing:9.696000px;}
.wsb4{word-spacing:9.756000px;}
.ws8d{word-spacing:9.791280px;}
.ws30{word-spacing:9.953280px;}
.ws6{word-spacing:11.984400px;}
.ws32{word-spacing:12.420720px;}
.ws126{word-spacing:12.943200px;}
.wscb{word-spacing:13.284000px;}
.ws1{word-spacing:13.516320px;}
.ws4f{word-spacing:13.753440px;}
.wsc9{word-spacing:14.076000px;}
.ws3{word-spacing:14.113440px;}
.ws4{word-spacing:14.182560px;}
.wscc{word-spacing:14.256000px;}
.ws2{word-spacing:14.753160px;}
.wsca{word-spacing:14.832000px;}
.ws7{word-spacing:14.860080px;}
.ws127{word-spacing:15.300000px;}
.ws72{word-spacing:15.480864px;}
.ws5{word-spacing:16.425840px;}
.ws74{word-spacing:16.956000px;}
.ws161{word-spacing:17.193600px;}
.ws31{word-spacing:17.273280px;}
.ws73{word-spacing:18.520128px;}
.ws14a{word-spacing:21.060000px;}
.ws145{word-spacing:26.964000px;}
.ws36{word-spacing:27.180000px;}
.ws38{word-spacing:27.181440px;}
.ws34{word-spacing:27.481680px;}
.ws39{word-spacing:27.493200px;}
.ws11f{word-spacing:27.648000px;}
.ws37{word-spacing:27.993120px;}
.ws35{word-spacing:28.236720px;}
.ws3a{word-spacing:28.979640px;}
.ws1f{word-spacing:29.948880px;}
.ws1d{word-spacing:30.231600px;}
.ws1e{word-spacing:30.369600px;}
.ws20{word-spacing:30.601440px;}
.ws61{word-spacing:36.247440px;}
.ws60{word-spacing:36.766800px;}
.ws63{word-spacing:36.913440px;}
.ws62{word-spacing:37.539720px;}
.ws57{word-spacing:38.373696px;}
.ws5c{word-spacing:39.115440px;}
.ws5f{word-spacing:39.367440px;}
.ws11{word-spacing:39.513600px;}
.wse{word-spacing:39.514752px;}
.wsc{word-spacing:39.811008px;}
.ws5d{word-spacing:40.268880px;}
.ws10{word-spacing:40.333824px;}
.wsd{word-spacing:40.725648px;}
.wsf{word-spacing:40.840128px;}
.ws5e{word-spacing:41.464080px;}
.ws160{word-spacing:46.770960px;}
.ws137{word-spacing:51.436800px;}
.ws87{word-spacing:51.880800px;}
.ws89{word-spacing:55.379280px;}
.ws88{word-spacing:58.041360px;}
.wsa3{word-spacing:72.040800px;}
.wsa5{word-spacing:75.858480px;}
.wsa4{word-spacing:76.753440px;}
.ws13e{word-spacing:84.328200px;}
.ws13f{word-spacing:86.698560px;}
.ws13d{word-spacing:88.474368px;}
.ws14d{word-spacing:88.534368px;}
.ws156{word-spacing:94.680000px;}
.ws124{word-spacing:96.580080px;}
.ws12f{word-spacing:96.688200px;}
.ws13a{word-spacing:96.700080px;}
.ws130{word-spacing:100.179072px;}
.ws125{word-spacing:100.200960px;}
.ws13b{word-spacing:100.261440px;}
.ws123{word-spacing:100.505280px;}
.ws139{word-spacing:100.565280px;}
.ws12e{word-spacing:100.776672px;}
.ws5b{word-spacing:102.074400px;}
.ws136{word-spacing:125.034480px;}
.ws133{word-spacing:125.214480px;}
.ws58{word-spacing:131.518080px;}
.ws5a{word-spacing:131.682720px;}
.ws59{word-spacing:132.719760px;}
.wsd5{word-spacing:432.624000px;}
.wsd6{word-spacing:760.416000px;}
.ws149{word-spacing:761.871120px;}
.ws12c{word-spacing:773.205600px;}
.ws12a{word-spacing:990.854400px;}
.ws14c{word-spacing:1029.134400px;}
.wsa9{word-spacing:1487.364000px;}
.wsa2{word-spacing:1531.740000px;}
._21{margin-left:-19.171152px;}
._7{margin-left:-14.927616px;}
._40{margin-left:-13.471920px;}
._12{margin-left:-12.071232px;}
._23{margin-left:-10.941840px;}
._5{margin-left:-9.901296px;}
._d{margin-left:-8.667648px;}
._1{margin-left:-7.584192px;}
._31{margin-left:-6.573983px;}
._4{margin-left:-5.533920px;}
._8{margin-left:-3.776400px;}
._2{margin-left:-2.287296px;}
._0{margin-left:-1.083456px;}
._3{width:1.205136px;}
._2a{width:2.401200px;}
._30{width:3.811647px;}
._32{width:5.812070px;}
._34{width:7.045501px;}
._3a{width:8.346398px;}
._39{width:10.390600px;}
._3e{width:20.223072px;}
._3d{width:22.114560px;}
._22{width:23.226288px;}
._2f{width:25.837920px;}
._2e{width:27.156000px;}
._6{width:28.900080px;}
._15{width:30.463776px;}
._25{width:31.599024px;}
._b{width:32.944752px;}
._a{width:34.514256px;}
._e{width:35.643552px;}
._f{width:37.199568px;}
._16{width:39.425760px;}
._10{width:41.425152px;}
._9{width:43.548048px;}
._19{width:46.802880px;}
._11{width:48.800160px;}
._3b{width:55.182864px;}
._14{width:58.908096px;}
._c{width:71.037120px;}
._24{width:84.142800px;}
._13{width:85.163520px;}
._2c{width:104.954880px;}
._2b{width:106.701360px;}
._43{width:120.081984px;}
._41{width:124.245936px;}
._44{width:125.712000px;}
._3c{width:132.162816px;}
._2d{width:135.144000px;}
._17{width:189.283200px;}
._35{width:308.914176px;}
._38{width:423.782620px;}
._33{width:501.517890px;}
._28{width:516.960000px;}
._29{width:524.880000px;}
._37{width:532.593739px;}
._18{width:549.367056px;}
._36{width:551.462932px;}
._1f{width:636.546576px;}
._1c{width:647.898816px;}
._1e{width:656.538816px;}
._1a{width:663.220080px;}
._42{width:699.156000px;}
._1d{width:725.658816px;}
._20{width:767.902320px;}
._1b{width:778.505376px;}
._3f{width:986.038224px;}
._27{width:1187.400000px;}
._26{width:1313.400000px;}
.fc5{color:transparent;}
.fc4{color:rgb(177,85,9);}
.fc3{color:rgb(137,137,137);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(192,0,0);}
.fs1a{font-size:40.320000px;}
.fs14{font-size:47.448909px;}
.fs17{font-size:48.240000px;}
.fs18{font-size:48.384000px;}
.fse{font-size:49.421822px;}
.fs10{font-size:50.514323px;}
.fsd{font-size:52.036757px;}
.fs12{font-size:52.810406px;}
.fs13{font-size:53.584056px;}
.fsf{font-size:54.104728px;}
.fs15{font-size:54.266381px;}
.fs19{font-size:59.760000px;}
.fs11{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fsc{font-size:79.200000px;}
.fs6{font-size:79.920000px;}
.fs16{font-size:84.240000px;}
.fs1b{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs8{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fs0{font-size:120.384000px;}
.fs2{font-size:131.760000px;}
.fs5{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs1c{font-size:167.760000px;}
.fs1d{font-size:167.904000px;}
.y12e{bottom:-102.243419px;}
.y21d{bottom:-89.647421px;}
.y12d{bottom:-86.263959px;}
.y1ef{bottom:-79.821224px;}
.y21c{bottom:-73.440993px;}
.y15a{bottom:-73.110038px;}
.y12c{bottom:-70.136306px;}
.y1ee{bottom:-65.571585px;}
.y159{bottom:-57.949161px;}
.y21b{bottom:-57.384292px;}
.y12b{bottom:-54.046076px;}
.y1ed{bottom:-51.321946px;}
.y158{bottom:-42.862916px;}
.y21a{bottom:-41.179361px;}
.y1ec{bottom:-37.185006px;}
.y12a{bottom:-37.175958px;}
.y157{bottom:-27.700516px;}
.y219{bottom:-24.192856px;}
.y1eb{bottom:-22.150983px;}
.y129{bottom:-21.048305px;}
.y156{bottom:-11.820739px;}
.y218{bottom:-8.135855px;}
.y1ea{bottom:-7.902096px;}
.y128{bottom:-4.958509px;}
.y0{bottom:0.000000px;}
.y103{bottom:0.000183px;}
.y155{bottom:3.341052px;}
.y1e9{bottom:6.198180px;}
.yfe{bottom:6.867271px;}
.yd5{bottom:7.230615px;}
.y194{bottom:7.338110px;}
.y1c1{bottom:7.445610px;}
.y217{bottom:8.069825px;}
.y127{bottom:11.019888px;}
.y22d{bottom:15.300000px;}
.y7c{bottom:16.992000px;}
.y154{bottom:18.427907px;}
.y1e8{bottom:20.447669px;}
.yfd{bottom:21.601772px;}
.yd4{bottom:22.744726px;}
.y162{bottom:22.932000px;}
.y193{bottom:23.082875px;}
.y1c0{bottom:23.421029px;}
.y216{bottom:24.164408px;}
.y126{bottom:27.147541px;}
.y130{bottom:28.485774px;}
.ya7{bottom:29.160000px;}
.yf{bottom:31.428000px;}
.y1e7{bottom:32.683755px;}
.y33{bottom:32.724000px;}
.y38{bottom:33.408000px;}
.y153{bottom:33.588783px;}
.y54{bottom:34.488000px;}
.y241{bottom:35.856000px;}
.y99{bottom:35.964000px;}
.yfc{bottom:36.297399px;}
.yd3{bottom:38.217907px;}
.y192{bottom:38.786100px;}
.y1bf{bottom:39.354300px;}
.y215{bottom:40.221109px;}
.y252{bottom:40.608000px;}
.y214{bottom:42.971590px;}
.y161{bottom:44.532000px;}
.y12f{bottom:44.576004px;}
.y7b{bottom:45.792000px;}
.y151{bottom:46.822963px;}
.y1e6{bottom:46.931892px;}
.y152{bottom:48.675029px;}
.y7e{bottom:50.112000px;}
.yfb{bottom:50.974477px;}
.y23f{bottom:51.300000px;}
.yd2{bottom:53.671557px;}
.y191{bottom:54.469506px;}
.y1be{bottom:55.267460px;}
.y213{bottom:59.065724px;}
.y150{bottom:61.871133px;}
.y251{bottom:65.808000px;}
.y160{bottom:66.132000px;}
.yfa{bottom:66.476181px;}
.y32{bottom:68.724000px;}
.y37{bottom:69.444000px;}
.yd1{bottom:69.993464px;}
.y53{bottom:70.488000px;}
.y25{bottom:70.848000px;}
.y190{bottom:71.034076px;}
.y98{bottom:71.964000px;}
.y1bd{bottom:72.074694px;}
.y1e3{bottom:73.492750px;}
.y7a{bottom:74.592000px;}
.y23e{bottom:76.500000px;}
.yf9{bottom:81.156351px;}
.y7d{bottom:82.512000px;}
.y7{bottom:84.240000px;}
.yd0{bottom:85.450369px;}
.y18f{bottom:86.720785px;}
.y1e2{bottom:87.740886px;}
.y1bc{bottom:87.991207px;}
.y60{bottom:88.488000px;}
.y246{bottom:91.224000px;}
.y8a{bottom:91.980000px;}
.yf8{bottom:95.886756px;}
.ycf{bottom:100.960168px;}
.y18e{bottom:102.461173px;}
.y79{bottom:103.392000px;}
.y264{bottom:103.425000px;}
.y261{bottom:103.500000px;}
.y66{bottom:103.575000px;}
.y254{bottom:103.680000px;}
.y1bb{bottom:103.962185px;}
.y31{bottom:104.724000px;}
.y52{bottom:106.488000px;}
.y15f{bottom:109.332000px;}
.yf7{bottom:110.586247px;}
.y73{bottom:114.912000px;}
.yce{bottom:116.437417px;}
.y1c5{bottom:117.583534px;}
.y18d{bottom:118.168528px;}
.y1ba{bottom:119.899645px;}
.ya1{bottom:120.456000px;}
.y24{bottom:121.284000px;}
.y97{bottom:121.716000px;}
.y107{bottom:122.500381px;}
.yf6{bottom:123.400004px;}
.y5f{bottom:124.488000px;}
.y253{bottom:125.280000px;}
.y195{bottom:129.960000px;}
.y42{bottom:130.248000px;}
.y1cc{bottom:131.161488px;}
.y1c4{bottom:131.833173px;}
.ycd{bottom:131.890254px;}
.y237{bottom:132.192000px;}
.y78{bottom:132.228000px;}
.y1f4{bottom:134.183657px;}
.y18c{bottom:134.528292px;}
.y166{bottom:136.620000px;}
.y135{bottom:136.697683px;}
.y10e{bottom:137.809227px;}
.yf5{bottom:138.153595px;}
.y1b9{bottom:138.451453px;}
.y106{bottom:138.628034px;}
.y26d{bottom:139.680000px;}
.y30{bottom:140.724000px;}
.y51{bottom:142.488000px;}
.y22b{bottom:144.720000px;}
.y1cb{bottom:145.299931px;}
.y72{bottom:147.348000px;}
.y89{bottom:147.780000px;}
.ya8{bottom:148.499990px;}
.y1fb{bottom:149.497713px;}
.y18b{bottom:150.227388px;}
.y1f3{bottom:150.280785px;}
.y134{bottom:151.896638px;}
.ya0{bottom:152.850000px;}
.y236{bottom:153.795000px;}
.y10d{bottom:153.930892px;}
.y1b8{bottom:154.430810px;}
.y13c{bottom:154.990031px;}
.y6{bottom:156.270000px;}
.y23{bottom:157.290000px;}
.y77{bottom:161.025000px;}
.y96{bottom:163.110000px;}
.y258{bottom:163.545000px;}
.y41{bottom:165.345000px;}
.y1fa{bottom:165.672699px;}
.y257{bottom:165.885000px;}
.y22a{bottom:166.320000px;}
.y1ca{bottom:167.459524px;}
.y13b{bottom:170.190509px;}
.y1cf{bottom:173.094465px;}
.yd6{bottom:174.059980px;}
.yca{bottom:174.171948px;}
.y1c7{bottom:174.687275px;}
.y2f{bottom:176.760000px;}
.y188{bottom:176.761421px;}
.y10c{bottom:178.914234px;}
.y71{bottom:179.745000px;}
.y88{bottom:180.180000px;}
.y1c9{bottom:181.704655px;}
.y111{bottom:185.335956px;}
.y109{bottom:187.042428px;}
.y1ce{bottom:187.339596px;}
.y238{bottom:188.385000px;}
.y1c6{bottom:188.947433px;}
.yc9{bottom:189.641060px;}
.y13a{bottom:189.777501px;}
.y76{bottom:189.825000px;}
.y1f9{bottom:190.751937px;}
.y5{bottom:192.270000px;}
.y187{bottom:192.460518px;}
.y17{bottom:193.650000px;}
.y10b{bottom:195.035900px;}
.y13f{bottom:195.793714px;}
.y1c8{bottom:195.949786px;}
.y5e{bottom:196.950000px;}
.y1fe{bottom:197.145272px;}
.y137{bottom:197.423442px;}
.y1f6{bottom:198.971938px;}
.y233{bottom:199.800000px;}
.y110{bottom:201.352838px;}
.y1cd{bottom:201.584727px;}
.y108{bottom:203.134155px;}
.y95{bottom:204.510000px;}
.y229{bottom:204.585000px;}
.y139{bottom:204.825669px;}
.y1f8{bottom:206.847568px;}
.y22{bottom:207.690000px;}
.y239{bottom:208.905000px;}
.y256{bottom:210.675000px;}
.y13e{bottom:210.841883px;}
.yda{bottom:210.978674px;}
.y10a{bottom:211.127627px;}
.y26c{bottom:211.710000px;}
.y70{bottom:212.145000px;}
.y40{bottom:212.190000px;}
.y228{bottom:212.400000px;}
.y136{bottom:212.578228px;}
.y87{bottom:212.580000px;}
.y1fd{bottom:213.360683px;}
.y50{bottom:214.530000px;}
.y1f5{bottom:215.067569px;}
.y10f{bottom:217.444565px;}
.y1d3{bottom:217.888490px;}
.y75{bottom:218.625000px;}
.y138{bottom:220.026147px;}
.y1e1{bottom:221.284481px;}
.yac{bottom:222.141659px;}
.y1f7{bottom:223.018062px;}
.y16a{bottom:225.444311px;}
.yd9{bottom:225.654981px;}
.y13d{bottom:226.042361px;}
.y199{bottom:228.746972px;}
.ye1{bottom:228.808180px;}
.y1fc{bottom:229.411396px;}
.y16{bottom:229.650000px;}
.y1f0{bottom:231.660000px;}
.y1d2{bottom:232.133621px;}
.y1e0{bottom:235.499559px;}
.y255{bottom:235.875000px;}
.y115{bottom:235.916371px;}
.yb3{bottom:236.813308px;}
.yab{bottom:237.594496px;}
.y131{bottom:239.219980px;}
.y123{bottom:239.733479px;}
.y171{bottom:240.334091px;}
.y169{bottom:241.126891px;}
.y5d{bottom:241.200000px;}
.y143{bottom:243.283792px;}
.ye0{bottom:243.484486px;}
.y21{bottom:243.690000px;}
.y1a0{bottom:243.854880px;}
.y6f{bottom:244.545000px;}
.y198{bottom:244.659295px;}
.y94{bottom:245.955000px;}
.ye{bottom:246.315000px;}
.y14d{bottom:246.878272px;}
.y74{bottom:247.425000px;}
.y202{bottom:247.887682px;}
.y23d{bottom:248.430000px;}
.y240{bottom:249.405000px;}
.y4f{bottom:250.530000px;}
.y210{bottom:251.780579px;}
.y114{bottom:252.008099px;}
.y35{bottom:252.075000px;}
.yb2{bottom:252.323106px;}
.y25d{bottom:254.730000px;}
.y122{bottom:255.825206px;}
.y170{bottom:256.074479px;}
.ya6{bottom:256.755000px;}
.y1d5{bottom:258.369907px;}
.y142{bottom:258.484270px;}
.y3f{bottom:258.990000px;}
.y19f{bottom:259.825858px;}
.y1d1{bottom:261.976269px;}
.y14c{bottom:262.078752px;}
.ydf{bottom:262.511905px;}
.y201{bottom:264.088122px;}
.y15{bottom:265.680000px;}
.y1d7{bottom:266.379036px;}
.y20f{bottom:267.846264px;}
.ye4{bottom:268.385516px;}
.y1e5{bottom:269.219047px;}
.ydc{bottom:269.993037px;}
.y1d4{bottom:272.494826px;}
.y227{bottom:273.570000px;}
.y23c{bottom:273.630000px;}
.y1d0{bottom:276.236427px;}
.yb1{bottom:276.401540px;}
.yde{bottom:277.250038px;}
.y16f{bottom:280.510895px;}
.y1d6{bottom:280.639194px;}
.y117{bottom:281.616877px;}
.yb6{bottom:282.585929px;}
.ye3{bottom:283.061822px;}
.y1e4{bottom:283.464178px;}
.y26b{bottom:283.710000px;}
.yae{bottom:284.278501px;}
.y5c{bottom:284.400000px;}
.y19e{bottom:284.620257px;}
.ydb{bottom:284.692529px;}
.y34{bottom:285.330000px;}
.y113{bottom:285.778272px;}
.y145{bottom:286.387340px;}
.y4e{bottom:286.530000px;}
.y174{bottom:286.787230px;}
.y25c{bottom:287.130000px;}
.y93{bottom:287.355000px;}
.y6e{bottom:287.745000px;}
.y16c{bottom:288.504964px;}
.y141{bottom:290.210319px;}
.y119{bottom:290.762966px;}
.y1a3{bottom:290.988538px;}
.y1d9{bottom:291.488334px;}
.y86{bottom:291.810000px;}
.yb0{bottom:291.919476px;}
.ydd{bottom:291.941801px;}
.y19b{bottom:292.731436px;}
.ya5{bottom:292.755000px;}
.y204{bottom:293.868781px;}
.y125{bottom:293.996280px;}
.y20{bottom:294.120000px;}
.y147{bottom:294.962352px;}
.y1c3{bottom:294.989510px;}
.y16e{bottom:296.259542px;}
.y116{bottom:297.708604px;}
.ye2{bottom:297.792227px;}
.y200{bottom:297.956323px;}
.y14f{bottom:297.993322px;}
.yb5{bottom:298.038766px;}
.y226{bottom:298.770000px;}
.yad{bottom:299.755751px;}
.y235{bottom:300.570000px;}
.y19d{bottom:300.599614px;}
.y144{bottom:301.465971px;}
.y112{bottom:301.765216px;}
.y173{bottom:302.469810px;}
.y206{bottom:302.972170px;}
.y16b{bottom:304.212319px;}
.y140{bottom:305.410798px;}
.y1d8{bottom:305.733465px;}
.y3e{bottom:305.790000px;}
.y118{bottom:306.854693px;}
.y1a2{bottom:306.900860px;}
.yaf{bottom:307.388588px;}
.y212{bottom:308.661789px;}
.y19a{bottom:308.668896px;}
.y1c2{bottom:309.249668px;}
.y203{bottom:309.919494px;}
.y124{bottom:310.117946px;}
.y146{bottom:310.132369px;}
.y16d{bottom:311.958638px;}
.y14e{bottom:313.163338px;}
.y1db{bottom:313.532223px;}
.yb4{bottom:313.548564px;}
.y1ff{bottom:314.036981px;}
.ye8{bottom:314.640227px;}
.y1dd{bottom:316.252021px;}
.y19c{bottom:316.528696px;}
.y5b{bottom:316.800000px;}
.yf2{bottom:318.110289px;}
.y172{bottom:318.210199px;}
.yd{bottom:318.315000px;}
.y11b{bottom:319.114344px;}
.y205{bottom:319.172610px;}
.y26a{bottom:319.710000px;}
.y6d{bottom:320.190000px;}
.y149{bottom:321.631737px;}
.y1df{bottom:321.781777px;}
.y234{bottom:322.200000px;}
.y4d{bottom:322.530000px;}
.y1a1{bottom:322.871838px;}
.y105{bottom:323.051204px;}
.y211{bottom:324.862228px;}
.y133{bottom:326.124882px;}
.y1da{bottom:327.777354px;}
.y92{bottom:328.755000px;}
.ye7{bottom:329.316533px;}
.y1f{bottom:330.120000px;}
.y1dc{bottom:330.512179px;}
.yba{bottom:331.287999px;}
.y208{bottom:331.360371px;}
.yf1{bottom:332.848424px;}
.y263{bottom:334.800000px;}
.yc8{bottom:334.941668px;}
.y273{bottom:335.130000px;}
.y11a{bottom:335.206071px;}
.y1f2{bottom:335.447912px;}
.y1de{bottom:336.026908px;}
.y178{bottom:336.213371px;}
.y148{bottom:336.679905px;}
.y104{bottom:339.172869px;}
.y186{bottom:339.921364px;}
.y1a7{bottom:341.138749px;}
.y132{bottom:341.325360px;}
.y85{bottom:343.110000px;}
.y11d{bottom:344.007872px;}
.y1b5{bottom:344.901063px;}
.y14b{bottom:345.026462px;}
.y11f{bottom:346.238260px;}
.yb9{bottom:346.740836px;}
.y15c{bottom:347.113105px;}
.y207{bottom:347.575783px;}
.yc7{bottom:350.459604px;}
.y1f1{bottom:351.543543px;}
.y15e{bottom:351.606238px;}
.y177{bottom:351.895951px;}
.y3d{bottom:352.590000px;}
.y121{bottom:353.333589px;}
.y185{bottom:355.670010px;}
.y20a{bottom:356.454582px;}
.yea{bottom:356.481993px;}
.y1a6{bottom:357.051072px;}
.y4c{bottom:358.530000px;}
.y20c{bottom:359.538954px;}
.y11c{bottom:360.099599px;}
.ye6{bottom:360.183920px;}
.y14a{bottom:360.196478px;}
.y5a{bottom:360.615000px;}
.y1b4{bottom:360.880420px;}
.y15b{bottom:362.267891px;}
.y11e{bottom:362.359925px;}
.ya4{bottom:364.755000px;}
.yec{bottom:364.828706px;}
.y20e{bottom:365.827479px;}
.y1e{bottom:366.120000px;}
.y15d{bottom:366.806716px;}
.y245{bottom:366.810000px;}
.yf4{bottom:367.780973px;}
.y232{bottom:368.205000px;}
.y250{bottom:369.435000px;}
.y120{bottom:369.470223px;}
.y91{bottom:370.155000px;}
.y272{bottom:371.130000px;}
.ye9{bottom:371.158299px;}
.y209{bottom:372.550212px;}
.ye5{bottom:374.922054px;}
.ybc{bottom:375.343637px;}
.y20b{bottom:375.589666px;}
.y260{bottom:378.540000px;}
.yb8{bottom:379.241432px;}
.yeb{bottom:379.505012px;}
.y84{bottom:380.010000px;}
.y17a{bottom:380.924001px;}
.y20d{bottom:381.983000px;}
.yf3{bottom:382.480465px;}
.ybe{bottom:384.131979px;}
.y176{bottom:384.879744px;}
.y6c{bottom:384.990000px;}
.y1a9{bottom:386.504371px;}
.y223{bottom:386.640000px;}
.ycc{bottom:387.810066px;}
.y17c{bottom:389.843004px;}
.yc{bottom:390.345000px;}
.y1a5{bottom:390.518064px;}
.yee{bottom:390.711251px;}
.ybb{bottom:390.796474px;}
.y269{bottom:391.755000px;}
.y2e{bottom:392.790000px;}
.y18a{bottom:392.997688px;}
.y164{bottom:393.660000px;}
.yb7{bottom:394.759368px;}
.yd8{bottom:395.178295px;}
.y1ab{bottom:395.554033px;}
.y179{bottom:396.606581px;}
.y13{bottom:397.950000px;}
.y3c{bottom:399.420000px;}
.ybd{bottom:399.584816px;}
.y175{bottom:400.628391px;}
.y1b7{bottom:401.210072px;}
.y24f{bottom:401.835000px;}
.y1d{bottom:402.120000px;}
.y1a8{bottom:402.416694px;}
.ycb{bottom:403.262903px;}
.y59{bottom:404.430000px;}
.yed{bottom:405.464842px;}
.y17b{bottom:405.525584px;}
.y1a4{bottom:406.497421px;}
.y189{bottom:408.705043px;}
.y4{bottom:409.035000px;}
.yd7{bottom:409.877786px;}
.y1aa{bottom:411.466356px;}
.y23a{bottom:411.480000px;}
.yc0{bottom:411.945460px;}
.yf0{bottom:413.525604px;}
.yaa{bottom:415.241092px;}
.y100{bottom:415.496358px;}
.y249{bottom:416.625000px;}
.y1b6{bottom:417.147533px;}
.y6b{bottom:417.390000px;}
.y222{bottom:419.040000px;}
.y17e{bottom:419.176613px;}
.y102{bottom:419.971126px;}
.y168{bottom:421.414622px;}
.y1ad{bottom:423.616365px;}
.ybf{bottom:427.398297px;}
.y197{bottom:427.588162px;}
.yef{bottom:428.256010px;}
.y2d{bottom:428.790000px;}
.yff{bottom:430.234492px;}
.y4b{bottom:430.560000px;}
.ya9{bottom:430.693929px;}
.y83{bottom:432.075000px;}
.y23b{bottom:433.155000px;}
.y12{bottom:433.980000px;}
.y101{bottom:434.647432px;}
.y17d{bottom:434.867451px;}
.yc2{bottom:435.405455px;}
.y276{bottom:436.035000px;}
.y167{bottom:437.097202px;}
.y1c{bottom:438.120000px;}
.y265{bottom:438.225000px;}
.yc4{bottom:438.391865px;}
.y90{bottom:439.560000px;}
.y1ac{bottom:439.612481px;}
.y180{bottom:441.878778px;}
.y271{bottom:443.160000px;}
.y196{bottom:443.500484px;}
.yc6{bottom:444.389096px;}
.y182{bottom:444.909588px;}
.y3b{bottom:446.220000px;}
.y58{bottom:448.230000px;}
.y1af{bottom:448.352109px;}
.y3{bottom:448.635000px;}
.y248{bottom:449.025000px;}
.y6a{bottom:449.790000px;}
.yc1{bottom:450.915253px;}
.y184{bottom:450.995981px;}
.y1b1{bottom:451.427318px;}
.y244{bottom:452.340000px;}
.y24b{bottom:453.525000px;}
.yc3{bottom:453.869114px;}
.y65{bottom:454.860000px;}
.y1b3{bottom:457.602875px;}
.y17f{bottom:457.619167px;}
.yc5{bottom:459.907032px;}
.y181{bottom:460.616943px;}
.yb{bottom:462.345000px;}
.y268{bottom:463.755000px;}
.y1ae{bottom:464.323087px;}
.y82{bottom:464.475000px;}
.y22f{bottom:466.230000px;}
.y4a{bottom:466.560000px;}
.y24e{bottom:466.665000px;}
.y183{bottom:466.744628px;}
.y1b0{bottom:467.364779px;}
.y11{bottom:469.980000px;}
.y1b2{bottom:473.582232px;}
.y1b{bottom:474.120000px;}
.y2a{bottom:479.670000px;}
.y243{bottom:480.855000px;}
.y247{bottom:481.425000px;}
.y262{bottom:482.040000px;}
.y69{bottom:482.190000px;}
.y221{bottom:483.840000px;}
.y24a{bottom:485.925000px;}
.y275{bottom:486.435000px;}
.y57{bottom:491.430000px;}
.y49{bottom:502.560000px;}
.y8f{bottom:503.715000px;}
.y10{bottom:505.980000px;}
.y81{bottom:510.555000px;}
.y68{bottom:514.620000px;}
.y270{bottom:515.160000px;}
.y29{bottom:515.670000px;}
.y9f{bottom:517.650000px;}
.y56{bottom:523.830000px;}
.y1a{bottom:524.550000px;}
.y25f{bottom:525.855000px;}
.y3a{bottom:526.830000px;}
.ya{bottom:534.345000px;}
.y267{bottom:535.785000px;}
.y231{bottom:537.810000px;}
.y80{bottom:542.955000px;}
.y24d{bottom:548.610000px;}
.y9e{bottom:550.050000px;}
.y25b{bottom:551.265000px;}
.y225{bottom:551.490000px;}
.y28{bottom:551.700000px;}
.y67{bottom:558.435000px;}
.y19{bottom:560.550000px;}
.y39{bottom:562.860000px;}
.y8e{bottom:573.375000px;}
.y230{bottom:573.840000px;}
.y48{bottom:574.590000px;}
.y9d{bottom:582.450000px;}
.y24c{bottom:584.640000px;}
.y26f{bottom:587.160000px;}
.y25a{bottom:587.310000px;}
.y224{bottom:587.490000px;}
.y18{bottom:589.170000px;}
.y7f{bottom:589.755000px;}
.y9c{bottom:592.740000px;}
.y64{bottom:602.205000px;}
.y9{bottom:606.390000px;}
.y266{bottom:607.785000px;}
.y61{bottom:619.050000px;}
.y2b{bottom:620.790000px;}
.y163{bottom:626.970000px;}
.ya2{bottom:627.015000px;}
.y43{bottom:632.415000px;}
.y259{bottom:634.890000px;}
.y27{bottom:635.685000px;}
.y8d{bottom:637.590000px;}
.y47{bottom:640.905000px;}
.y22c{bottom:644.400000px;}
.y8b{bottom:645.810000px;}
.y220{bottom:647.385000px;}
.y63{bottom:651.495000px;}
.y242{bottom:657.570000px;}
.y21e{bottom:664.920000px;}
.y165{bottom:666.285000px;}
.y2{bottom:667.545000px;}
.ya3{bottom:675.255000px;}
.y45{bottom:691.200000px;}
.y55{bottom:701.790000px;}
.y1{bottom:703.590000px;}
.y21f{bottom:711.825000px;}
.y62{bottom:723.780000px;}
.y8c{bottom:729.030000px;}
.y9a{bottom:731.805000px;}
.y46{bottom:741.030000px;}
.y22e{bottom:742.320000px;}
.y2c{bottom:742.650000px;}
.y25e{bottom:743.040000px;}
.y9b{bottom:743.835000px;}
.y26e{bottom:745.485000px;}
.y14{bottom:746.790000px;}
.y274{bottom:749.490000px;}
.y26{bottom:749.880000px;}
.y8{bottom:751.860000px;}
.y44{bottom:752.250000px;}
.y36{bottom:755.925000px;}
.h35{height:46.568509px;}
.h22{height:48.504816px;}
.h7{height:49.211508px;}
.h36{height:49.487729px;}
.h29{height:49.577046px;}
.h1f{height:51.071231px;}
.h21{height:51.545416px;}
.h2e{height:51.830526px;}
.h30{height:52.370869px;}
.h32{height:52.589820px;}
.h28{height:52.684861px;}
.h25{height:53.100832px;}
.h39{height:53.259485px;}
.h1e{height:54.272711px;}
.h2f{height:55.079603px;}
.h33{height:55.886496px;}
.h26{height:56.429541px;}
.h3a{height:56.598139px;}
.h37{height:57.541938px;}
.h3d{height:58.621992px;}
.h23{height:58.995632px;}
.h2a{height:70.664062px;}
.h2b{height:70.805391px;}
.h1b{height:72.562500px;}
.h1c{height:72.707625px;}
.h3f{height:73.669922px;}
.h3e{height:73.768148px;}
.h1a{height:74.916094px;}
.h19{height:75.041016px;}
.h17{height:75.462891px;}
.h18{height:75.563508px;}
.h38{height:76.498414px;}
.h16{height:77.308594px;}
.h43{height:79.945312px;}
.h1{height:81.941063px;}
.h3b{height:84.898125px;}
.h41{height:85.043250px;}
.h27{height:85.501943px;}
.hd{height:93.983203px;}
.h15{height:94.124531px;}
.h2c{height:96.508125px;}
.h13{height:105.943359px;}
.hf{height:105.996094px;}
.h12{height:106.137422px;}
.he{height:108.843750px;}
.h11{height:108.988875px;}
.h2{height:117.950273px;}
.h9{height:118.008984px;}
.ha{height:118.091531px;}
.h8{height:118.150312px;}
.h4{height:121.179375px;}
.h5{height:121.324500px;}
.h3{height:132.789375px;}
.h42{height:136.618125px;}
.hb{height:145.125000px;}
.h6{height:145.270125px;}
.h3c{height:146.518125px;}
.h45{height:169.070625px;}
.h46{height:169.215750px;}
.h40{height:217.596094px;}
.hc{height:221.268984px;}
.h44{height:226.800000px;}
.h10{height:226.980000px;}
.h34{height:350.272039px;}
.h24{height:389.154522px;}
.h20{height:482.934723px;}
.h1d{height:508.487043px;}
.h2d{height:516.046893px;}
.h31{height:523.606754px;}
.h14{height:756.900000px;}
.h0{height:810.000000px;}
.wc{width:180.000430px;}
.w8{width:188.996928px;}
.w2{width:240.120000px;}
.wd{width:360.000000px;}
.w4{width:365.220000px;}
.w3{width:378.540000px;}
.wb{width:382.504779px;}
.w7{width:439.553244px;}
.w6{width:461.340041px;}
.wa{width:473.220041px;}
.w5{width:621.544745px;}
.w9{width:630.724815px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x25{left:10.872000px;}
.x8{left:19.547984px;}
.xcb{left:23.579984px;}
.xca{left:24.695984px;}
.x1b{left:25.811984px;}
.xb0{left:28.577167px;}
.xb1{left:32.414972px;}
.xe{left:35.567984px;}
.xd1{left:37.799984px;}
.x22{left:39.491984px;}
.xbb{left:41.879658px;}
.x23{left:43.631984px;}
.x8a{left:46.588159px;}
.xc8{left:48.347984px;}
.xbd{left:50.259408px;}
.xd9{left:52.811984px;}
.xbe{left:54.597872px;}
.xc5{left:55.799984px;}
.x8d{left:56.943613px;}
.xc6{left:58.787984px;}
.x66{left:61.518983px;}
.xd8{left:62.639984px;}
.xa{left:64.799984px;}
.x48{left:65.987984px;}
.xd{left:67.823984px;}
.x8b{left:69.269406px;}
.xd5{left:70.271984px;}
.x4e{left:71.591448px;}
.x99{left:72.648836px;}
.x21{left:73.799984px;}
.xb3{left:74.852966px;}
.xf{left:76.067984px;}
.xc{left:79.055984px;}
.xbf{left:82.906365px;}
.x42{left:84.203984px;}
.x86{left:85.505855px;}
.x7c{left:87.777139px;}
.x1c{left:88.811984px;}
.xb5{left:90.688979px;}
.x87{left:92.841744px;}
.x69{left:93.893620px;}
.x50{left:95.004450px;}
.x77{left:99.165341px;}
.x9a{left:100.305237px;}
.xa3{left:102.047594px;}
.xb2{left:103.766335px;}
.x2a{left:105.047984px;}
.x8f{left:107.667340px;}
.xaf{left:110.268658px;}
.x6a{left:111.950380px;}
.xb6{left:113.826878px;}
.x3{left:115.055984px;}
.x47{left:116.963984px;}
.x26{left:119.447984px;}
.x7a{left:120.475101px;}
.x3a{left:122.831984px;}
.x91{left:124.090180px;}
.x24{left:127.079984px;}
.x1d{left:129.311984px;}
.x80{left:131.871973px;}
.x7b{left:133.138135px;}
.x59{left:135.146373px;}
.x2f{left:137.267984px;}
.x85{left:138.984330px;}
.x67{left:141.825973px;}
.x4f{left:147.482711px;}
.x8e{left:149.229262px;}
.x6e{left:152.222511px;}
.x68{left:153.374261px;}
.x3c{left:155.774984px;}
.x43{left:156.779984px;}
.x78{left:158.769627px;}
.x5a{left:160.250333px;}
.x44{left:161.459984px;}
.x1{left:162.929984px;}
.x1e{left:165.419984px;}
.x61{left:167.077633px;}
.x19{left:168.839984px;}
.x7d{left:172.160855px;}
.xc1{left:173.402095px;}
.xba{left:174.930085px;}
.x6f{left:176.648610px;}
.x62{left:177.786486px;}
.x70{left:180.946367px;}
.xab{left:183.038221px;}
.x5b{left:185.964599px;}
.x7e{left:187.057661px;}
.x84{left:188.407815px;}
.x3e{left:189.719984px;}
.xa8{left:191.457919px;}
.x88{left:193.028377px;}
.xa9{left:196.115978px;}
.x30{left:197.384984px;}
.x51{left:198.976344px;}
.x89{left:201.249373px;}
.x6b{left:202.597477px;}
.x74{left:203.803308px;}
.xa5{left:204.854028px;}
.x52{left:206.975433px;}
.x76{left:207.985122px;}
.x9b{left:210.032412px;}
.x94{left:211.830181px;}
.x53{left:213.281939px;}
.x31{left:214.664984px;}
.x46{left:216.329984px;}
.xa1{left:217.720251px;}
.xa6{left:219.582206px;}
.x83{left:220.766734px;}
.x4b{left:223.589984px;}
.xae{left:224.860211px;}
.xb7{left:225.945731px;}
.x60{left:227.807244px;}
.xb4{left:229.893102px;}
.x73{left:230.896179px;}
.x90{left:233.688296px;}
.x93{left:235.698582px;}
.x1f{left:237.959984px;}
.x40{left:240.119984px;}
.x17{left:241.919984px;}
.x7f{left:244.559621px;}
.xc0{left:245.845239px;}
.x5e{left:247.841587px;}
.xa0{left:250.090098px;}
.x54{left:251.519704px;}
.xaa{left:252.900712px;}
.x5f{left:254.148093px;}
.x55{left:255.661654px;}
.x6c{left:257.494351px;}
.x6d{left:259.218093px;}
.xcf{left:261.434984px;}
.x16{left:262.799984px;}
.x92{left:264.832733px;}
.x41{left:266.399984px;}
.x15{left:268.589984px;}
.xd0{left:269.894984px;}
.x56{left:271.073939px;}
.x57{left:272.888585px;}
.x9c{left:275.077638px;}
.x5c{left:277.657117px;}
.x18{left:279.749984px;}
.x9e{left:281.758047px;}
.x27{left:283.140000px;}
.x79{left:285.299980px;}
.x58{left:286.827996px;}
.x5{left:289.469984px;}
.x9d{left:291.064378px;}
.xdb{left:292.289984px;}
.xa7{left:295.300779px;}
.x32{left:302.039984px;}
.xdc{left:309.029984px;}
.x33{left:312.119984px;}
.xb9{left:313.793503px;}
.x4d{left:316.109984px;}
.x81{left:319.043636px;}
.x71{left:323.066044px;}
.x35{left:326.010000px;}
.x82{left:327.834701px;}
.x72{left:331.120473px;}
.xb8{left:332.644827px;}
.xd6{left:333.899984px;}
.xcc{left:337.424984px;}
.x34{left:338.579984px;}
.x2c{left:340.919984px;}
.xc2{left:342.465901px;}
.x9f{left:345.126977px;}
.x5d{left:348.827046px;}
.x2b{left:350.999984px;}
.x64{left:353.294493px;}
.x36{left:354.779984px;}
.x75{left:358.522536px;}
.x45{left:360.869984px;}
.x4{left:370.694984px;}
.xc3{left:372.383144px;}
.x1a{left:375.119984px;}
.x11{left:378.104984px;}
.x10{left:380.954984px;}
.xb{left:382.934984px;}
.xc7{left:385.559984px;}
.xac{left:388.579219px;}
.xc4{left:394.557444px;}
.x63{left:398.798980px;}
.xa2{left:404.689147px;}
.x6{left:405.974984px;}
.xad{left:410.579328px;}
.x97{left:431.894984px;}
.x2{left:436.394984px;}
.x12{left:442.004984px;}
.x7{left:443.699984px;}
.x3b{left:479.264984px;}
.x20{left:487.079984px;}
.x3f{left:494.489984px;}
.x95{left:589.574984px;}
.xa4{left:606.779959px;}
.x13{left:610.889984px;}
.x65{left:618.659959px;}
.xd7{left:620.459984px;}
.x96{left:625.574984px;}
.xcd{left:646.049984px;}
.xce{left:653.369984px;}
.x28{left:661.500000px;}
.x37{left:706.424984px;}
.xda{left:709.199984px;}
.x2e{left:726.584984px;}
.x14{left:738.899984px;}
.x38{left:745.304984px;}
.x39{left:746.744984px;}
.xd2{left:751.889984px;}
.x98{left:770.114984px;}
.x49{left:816.809984px;}
.x29{left:824.864984px;}
.xd3{left:847.439984px;}
.x4c{left:849.059984px;}
.x8c{left:856.440000px;}
.xd4{left:858.419984px;}
.x4a{left:860.369984px;}
.xbc{left:863.999919px;}
.x2d{left:869.144984px;}
.x3d{left:996.809984px;}
.xc9{left:1004.294984px;}
.x9{left:1005.989984px;}
@media print{
.v9{vertical-align:-27.626667pt;}
.v7{vertical-align:-26.240000pt;}
.v8{vertical-align:-23.680000pt;}
.vb{vertical-align:-20.736000pt;}
.v5{vertical-align:-19.840000pt;}
.vd{vertical-align:-9.384835pt;}
.v3{vertical-align:-7.040000pt;}
.v15{vertical-align:-5.600000pt;}
.vc{vertical-align:-2.407764pt;}
.v10{vertical-align:-0.906667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:6.622414pt;}
.v11{vertical-align:16.000000pt;}
.v13{vertical-align:17.152000pt;}
.v6{vertical-align:19.840000pt;}
.v4{vertical-align:28.800000pt;}
.v2{vertical-align:32.000000pt;}
.v14{vertical-align:45.973333pt;}
.ve{vertical-align:50.826667pt;}
.vf{vertical-align:54.773333pt;}
.v1{vertical-align:91.786667pt;}
.v12{vertical-align:99.200000pt;}
.ls96{letter-spacing:-8.091901pt;}
.ls6a{letter-spacing:-7.689932pt;}
.ls91{letter-spacing:-7.052442pt;}
.ls94{letter-spacing:-5.430092pt;}
.ls8a{letter-spacing:-5.362763pt;}
.ls64{letter-spacing:-5.322328pt;}
.ls85{letter-spacing:-5.285335pt;}
.ls59{letter-spacing:-5.207907pt;}
.ls65{letter-spacing:-5.198827pt;}
.ls5f{letter-spacing:-4.946201pt;}
.ls8e{letter-spacing:-4.739027pt;}
.ls95{letter-spacing:-2.885402pt;}
.ls88{letter-spacing:-2.740968pt;}
.ls82{letter-spacing:-2.701393pt;}
.ls62{letter-spacing:-2.693098pt;}
.ls55{letter-spacing:-2.661819pt;}
.ls69{letter-spacing:-2.599414pt;}
.ls5a{letter-spacing:-2.528058pt;}
.ls90{letter-spacing:-2.372185pt;}
.ls8d{letter-spacing:-1.490630pt;}
.ls89{letter-spacing:-1.406236pt;}
.ls84{letter-spacing:-1.385932pt;}
.ls58{letter-spacing:-1.365629pt;}
.ls63{letter-spacing:-1.346549pt;}
.ls5e{letter-spacing:-1.297004pt;}
.ls7{letter-spacing:-0.912000pt;}
.ls5{letter-spacing:-0.784000pt;}
.ls17{letter-spacing:-0.736000pt;}
.ls21{letter-spacing:-0.618667pt;}
.ls9d{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.433600pt;}
.ls66{letter-spacing:-0.403451pt;}
.ls42{letter-spacing:-0.390933pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.308267pt;}
.ls67{letter-spacing:-0.298933pt;}
.ls4{letter-spacing:-0.272533pt;}
.ls18{letter-spacing:-0.249067pt;}
.ls27{letter-spacing:-0.246400pt;}
.ls40{letter-spacing:-0.224000pt;}
.ls6b{letter-spacing:-0.201455pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls97{letter-spacing:-0.182068pt;}
.ls26{letter-spacing:-0.168533pt;}
.ls16{letter-spacing:-0.151467pt;}
.ls10{letter-spacing:-0.144533pt;}
.ls8b{letter-spacing:-0.132500pt;}
.ls3f{letter-spacing:-0.128000pt;}
.ls3e{letter-spacing:-0.120533pt;}
.ls68{letter-spacing:-0.104518pt;}
.ls61{letter-spacing:-0.104318pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls24{letter-spacing:-0.090667pt;}
.ls86{letter-spacing:-0.073887pt;}
.ls81{letter-spacing:-0.072820pt;}
.ls57{letter-spacing:-0.071753pt;}
.ls5b{letter-spacing:-0.068148pt;}
.ls8f{letter-spacing:-0.066250pt;}
.ls87{letter-spacing:-0.040519pt;}
.ls83{letter-spacing:-0.039934pt;}
.ls56{letter-spacing:-0.039349pt;}
.ls5d{letter-spacing:-0.037371pt;}
.ls60{letter-spacing:-0.027995pt;}
.ls9a{letter-spacing:-0.026133pt;}
.ls3d{letter-spacing:-0.023680pt;}
.ls8c{letter-spacing:-0.014051pt;}
.ls28{letter-spacing:-0.007680pt;}
.ls92{letter-spacing:-0.001730pt;}
.ls0{letter-spacing:0.000000pt;}
.ls79{letter-spacing:0.014051pt;}
.ls1{letter-spacing:0.023680pt;}
.ls4f{letter-spacing:0.031592pt;}
.ls41{letter-spacing:0.032000pt;}
.ls98{letter-spacing:0.033280pt;}
.ls5c{letter-spacing:0.037371pt;}
.ls47{letter-spacing:0.039349pt;}
.ls37{letter-spacing:0.039680pt;}
.ls70{letter-spacing:0.039934pt;}
.ls76{letter-spacing:0.040519pt;}
.ls7b{letter-spacing:0.040779pt;}
.ls9b{letter-spacing:0.047360pt;}
.ls44{letter-spacing:0.069769pt;}
.ls7c{letter-spacing:0.073610pt;}
.ls49{letter-spacing:0.075254pt;}
.ls43{letter-spacing:0.078400pt;}
.ls46{letter-spacing:0.079235pt;}
.ls6f{letter-spacing:0.080413pt;}
.ls72{letter-spacing:0.081591pt;}
.ls4c{letter-spacing:0.087306pt;}
.ls45{letter-spacing:0.091925pt;}
.ls6e{letter-spacing:0.093292pt;}
.ls75{letter-spacing:0.094659pt;}
.lse{letter-spacing:0.094933pt;}
.ls3c{letter-spacing:0.096000pt;}
.ls33{letter-spacing:0.126933pt;}
.ls7d{letter-spacing:0.127979pt;}
.ls3b{letter-spacing:0.128000pt;}
.ls50{letter-spacing:0.159328pt;}
.ls12{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.170213pt;}
.ls22{letter-spacing:0.180267pt;}
.ls6d{letter-spacing:0.181883pt;}
.ls74{letter-spacing:0.184548pt;}
.ls77{letter-spacing:0.189067pt;}
.ls52{letter-spacing:0.189491pt;}
.ls31{letter-spacing:0.192000pt;}
.ls4e{letter-spacing:0.202058pt;}
.ls15{letter-spacing:0.206400pt;}
.ls4a{letter-spacing:0.207779pt;}
.ls93{letter-spacing:0.218268pt;}
.ls48{letter-spacing:0.218773pt;}
.ls71{letter-spacing:0.222025pt;}
.ls73{letter-spacing:0.225278pt;}
.ls6c{letter-spacing:0.227733pt;}
.ls7f{letter-spacing:0.236716pt;}
.ls23{letter-spacing:0.248960pt;}
.ls1a{letter-spacing:0.249067pt;}
.ls99{letter-spacing:0.254933pt;}
.ls51{letter-spacing:0.255281pt;}
.ls25{letter-spacing:0.255360pt;}
.lsd{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.272533pt;}
.ls36{letter-spacing:0.272640pt;}
.ls53{letter-spacing:0.290318pt;}
.lsa{letter-spacing:0.320000pt;}
.ls80{letter-spacing:0.330346pt;}
.ls78{letter-spacing:0.344140pt;}
.ls11{letter-spacing:0.448000pt;}
.ls7e{letter-spacing:0.489913pt;}
.ls54{letter-spacing:0.497360pt;}
.ls7a{letter-spacing:0.534441pt;}
.ls4d{letter-spacing:2.558442pt;}
.ls29{letter-spacing:4.038400pt;}
.ls3a{letter-spacing:16.128000pt;}
.ls2d{letter-spacing:23.296000pt;}
.ls20{letter-spacing:24.011776pt;}
.ls1c{letter-spacing:24.047360pt;}
.ls35{letter-spacing:25.050880pt;}
.ls34{letter-spacing:25.690880pt;}
.ls14{letter-spacing:26.560000pt;}
.ls2a{letter-spacing:30.278400pt;}
.ls13{letter-spacing:30.411776pt;}
.ls2b{letter-spacing:30.918400pt;}
.ls3{letter-spacing:30.968960pt;}
.ls30{letter-spacing:30.969600pt;}
.ls2{letter-spacing:40.000000pt;}
.ls39{letter-spacing:41.088000pt;}
.ls32{letter-spacing:44.569600pt;}
.ls38{letter-spacing:52.160000pt;}
.ls2e{letter-spacing:69.482667pt;}
.lsa0{letter-spacing:82.995200pt;}
.ls9f{letter-spacing:83.040000pt;}
.ls9c{letter-spacing:86.720000pt;}
.ls2f{letter-spacing:86.730667pt;}
.lsc{letter-spacing:106.592000pt;}
.ls9e{letter-spacing:106.720000pt;}
.ls1f{letter-spacing:108.366336pt;}
.ls1e{letter-spacing:108.408960pt;}
.ls2c{letter-spacing:110.410667pt;}
.ls1b{letter-spacing:156.408960pt;}
.wsb9{word-spacing:-96.128000pt;}
.wsb6{word-spacing:-96.000000pt;}
.ws52{word-spacing:-81.952000pt;}
.wsbb{word-spacing:-69.215616pt;}
.wsb8{word-spacing:-68.992000pt;}
.wsba{word-spacing:-58.785792pt;}
.wsb7{word-spacing:-58.624000pt;}
.ws119{word-spacing:-48.236783pt;}
.ws106{word-spacing:-47.630272pt;}
.wsfa{word-spacing:-46.942583pt;}
.wsda{word-spacing:-46.254895pt;}
.wsef{word-spacing:-42.770763pt;}
.ws109{word-spacing:-42.267509pt;}
.ws10f{word-spacing:-42.176808pt;}
.ws100{word-spacing:-41.657248pt;}
.wse0{word-spacing:-41.046988pt;}
.ws11d{word-spacing:-40.144881pt;}
.wse8{word-spacing:-38.984308pt;}
.wsf7{word-spacing:-37.211689pt;}
.ws113{word-spacing:-35.124366pt;}
.ws155{word-spacing:-32.128000pt;}
.wsd4{word-spacing:-32.110400pt;}
.ws98{word-spacing:-27.040000pt;}
.ws6b{word-spacing:-27.008000pt;}
.ws33{word-spacing:-26.752000pt;}
.ws8{word-spacing:-26.720000pt;}
.ws77{word-spacing:-26.470933pt;}
.ws9d{word-spacing:-25.808000pt;}
.wsaa{word-spacing:-24.032000pt;}
.wsa1{word-spacing:-24.000000pt;}
.wsd2{word-spacing:-23.904000pt;}
.wsad{word-spacing:-21.312000pt;}
.wsab{word-spacing:-21.280000pt;}
.ws14b{word-spacing:-18.752000pt;}
.ws12b{word-spacing:-18.720000pt;}
.ws12d{word-spacing:-16.128000pt;}
.wsd7{word-spacing:-16.032000pt;}
.wsd1{word-spacing:-16.000000pt;}
.ws118{word-spacing:-13.409826pt;}
.wsec{word-spacing:-13.369879pt;}
.ws138{word-spacing:-13.280000pt;}
.ws105{word-spacing:-13.241216pt;}
.wsf8{word-spacing:-13.050038pt;}
.wsd9{word-spacing:-12.858861pt;}
.wsf0{word-spacing:-12.482651pt;}
.ws117{word-spacing:-12.277464pt;}
.wse1{word-spacing:-12.212681pt;}
.ws11a{word-spacing:-12.132806pt;}
.ws114{word-spacing:-12.099975pt;}
.ws116{word-spacing:-12.059196pt;}
.ws115{word-spacing:-12.057466pt;}
.wse9{word-spacing:-12.023273pt;}
.wsea{word-spacing:-11.995277pt;}
.ws103{word-spacing:-11.948087pt;}
.wseb{word-spacing:-11.918955pt;}
.ws102{word-spacing:-11.907568pt;}
.ws104{word-spacing:-11.867049pt;}
.ws101{word-spacing:-11.833681pt;}
.wsfc{word-spacing:-11.775579pt;}
.wsfe{word-spacing:-11.735646pt;}
.ws10e{word-spacing:-11.725153pt;}
.wsfd{word-spacing:-11.695712pt;}
.wsfb{word-spacing:-11.662826pt;}
.wsdd{word-spacing:-11.603072pt;}
.wsdc{word-spacing:-11.563724pt;}
.wsdb{word-spacing:-11.524375pt;}
.wsde{word-spacing:-11.491970pt;}
.wsf2{word-spacing:-11.225405pt;}
.wsf5{word-spacing:-11.120887pt;}
.wse5{word-spacing:-11.019999pt;}
.wse4{word-spacing:-10.982627pt;}
.wse6{word-spacing:-10.945256pt;}
.wsf4{word-spacing:-10.926473pt;}
.wse3{word-spacing:-10.914480pt;}
.wsf3{word-spacing:-10.821955pt;}
.wsed{word-spacing:-10.676781pt;}
.ws10c{word-spacing:-10.558253pt;}
.ws10b{word-spacing:-10.544202pt;}
.ws10d{word-spacing:-10.530150pt;}
.ws108{word-spacing:-10.500248pt;}
.ws10a{word-spacing:-10.411701pt;}
.wsf9{word-spacing:-10.348645pt;}
.ws110{word-spacing:-10.234523pt;}
.wsd8{word-spacing:-10.197042pt;}
.wse2{word-spacing:-9.684623pt;}
.wsee{word-spacing:-8.047551pt;}
.ws11c{word-spacing:-7.979734pt;}
.ws107{word-spacing:-7.878453pt;}
.wsff{word-spacing:-7.764703pt;}
.wsdf{word-spacing:-7.650954pt;}
.wsf1{word-spacing:-7.283823pt;}
.wse7{word-spacing:-7.266480pt;}
.ws111{word-spacing:-6.986125pt;}
.ws11b{word-spacing:-5.317924pt;}
.wsf6{word-spacing:-4.792719pt;}
.ws112{word-spacing:-4.672711pt;}
.ws15a{word-spacing:-4.056405pt;}
.ws7d{word-spacing:-3.750400pt;}
.ws159{word-spacing:-3.644373pt;}
.ws3c{word-spacing:-3.538560pt;}
.ws158{word-spacing:-2.850240pt;}
.wsa7{word-spacing:-2.672640pt;}
.wsbc{word-spacing:-2.496000pt;}
.ws91{word-spacing:-2.463573pt;}
.ws7f{word-spacing:-2.400000pt;}
.ws141{word-spacing:-2.352640pt;}
.ws9f{word-spacing:-2.286592pt;}
.ws15f{word-spacing:-2.210133pt;}
.ws80{word-spacing:-2.163520pt;}
.ws21{word-spacing:-2.151040pt;}
.ws4e{word-spacing:-2.127573pt;}
.ws164{word-spacing:-2.097920pt;}
.ws129{word-spacing:-2.078507pt;}
.ws50{word-spacing:-2.074240pt;}
.ws131{word-spacing:-2.055040pt;}
.wsc6{word-spacing:-2.048000pt;}
.ws4d{word-spacing:-2.032640pt;}
.ws1c{word-spacing:-2.026453pt;}
.ws8f{word-spacing:-1.985280pt;}
.wsc5{word-spacing:-1.984000pt;}
.ws44{word-spacing:-1.973120pt;}
.ws6d{word-spacing:-1.958187pt;}
.ws154{word-spacing:-1.920000pt;}
.ws65{word-spacing:-1.867520pt;}
.ws43{word-spacing:-1.788373pt;}
.ws42{word-spacing:-1.775360pt;}
.ws3b{word-spacing:-1.755307pt;}
.ws84{word-spacing:-1.735253pt;}
.ws157{word-spacing:-1.709653pt;}
.ws6f{word-spacing:-1.700480pt;}
.ws163{word-spacing:-1.685333pt;}
.ws64{word-spacing:-1.610880pt;}
.wsa6{word-spacing:-1.594240pt;}
.ws7a{word-spacing:-1.555029pt;}
.ws13{word-spacing:-1.511040pt;}
.ws15e{word-spacing:-1.442133pt;}
.ws71{word-spacing:-1.362560pt;}
.ws134{word-spacing:-1.339520pt;}
.ws75{word-spacing:-1.262720pt;}
.ws81{word-spacing:-1.250133pt;}
.ws7c{word-spacing:-1.249109pt;}
.ws140{word-spacing:-1.227093pt;}
.ws135{word-spacing:-1.214933pt;}
.ws14e{word-spacing:-1.173760pt;}
.ws165{word-spacing:-1.167360pt;}
.wsb5{word-spacing:-1.109333pt;}
.ws79{word-spacing:-1.099776pt;}
.ws86{word-spacing:-1.072640pt;}
.ws132{word-spacing:-1.022080pt;}
.ws82{word-spacing:-0.993920pt;}
.wsbe{word-spacing:-0.992000pt;}
.wsc7{word-spacing:-0.928000pt;}
.ws4b{word-spacing:-0.881920pt;}
.ws85{word-spacing:-0.871040pt;}
.ws4c{word-spacing:-0.847360pt;}
.ws7b{word-spacing:-0.817664pt;}
.ws153{word-spacing:-0.800000pt;}
.wsbf{word-spacing:-0.768000pt;}
.ws15d{word-spacing:-0.752213pt;}
.ws11e{word-spacing:-0.736000pt;}
.ws162{word-spacing:-0.718080pt;}
.ws144{word-spacing:-0.704000pt;}
.wsc3{word-spacing:-0.672000pt;}
.ws15c{word-spacing:-0.634880pt;}
.wsa8{word-spacing:-0.633173pt;}
.ws8e{word-spacing:-0.616576pt;}
.ws15b{word-spacing:-0.585728pt;}
.wsc2{word-spacing:-0.576000pt;}
.ws83{word-spacing:-0.562560pt;}
.wsc1{word-spacing:-0.512000pt;}
.ws78{word-spacing:-0.480000pt;}
.ws122{word-spacing:-0.440960pt;}
.ws121{word-spacing:-0.419712pt;}
.ws147{word-spacing:-0.416000pt;}
.ws9e{word-spacing:-0.408533pt;}
.wsc4{word-spacing:-0.341333pt;}
.wsc8{word-spacing:-0.309333pt;}
.ws143{word-spacing:-0.302080pt;}
.ws76{word-spacing:-0.287573pt;}
.ws4a{word-spacing:-0.266027pt;}
.ws7e{word-spacing:-0.254720pt;}
.ws148{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.155733pt;}
.ws120{word-spacing:-0.128000pt;}
.ws3d{word-spacing:-0.117653pt;}
.ws99{word-spacing:-0.111573pt;}
.ws51{word-spacing:-0.106880pt;}
.ws13c{word-spacing:-0.096128pt;}
.wsb1{word-spacing:-0.096000pt;}
.wsce{word-spacing:-0.083200pt;}
.wsc0{word-spacing:-0.064000pt;}
.ws152{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws40{word-spacing:0.000640pt;}
.ws9c{word-spacing:0.012587pt;}
.ws166{word-spacing:0.065067pt;}
.ws9a{word-spacing:0.079787pt;}
.ws146{word-spacing:0.085333pt;}
.ws70{word-spacing:0.088533pt;}
.ws41{word-spacing:0.128128pt;}
.ws128{word-spacing:0.160000pt;}
.wsbd{word-spacing:0.202667pt;}
.ws6e{word-spacing:0.326613pt;}
.wscd{word-spacing:0.352000pt;}
.ws90{word-spacing:0.360576pt;}
.ws45{word-spacing:0.384960pt;}
.ws3f{word-spacing:0.527360pt;}
.ws142{word-spacing:0.743467pt;}
.ws3e{word-spacing:0.837333pt;}
.ws9b{word-spacing:1.048960pt;}
.ws97{word-spacing:1.246507pt;}
.wsac{word-spacing:1.289387pt;}
.wsaf{word-spacing:1.396053pt;}
.ws15{word-spacing:1.404416pt;}
.wsa{word-spacing:1.452800pt;}
.ws94{word-spacing:1.512960pt;}
.ws14{word-spacing:1.600512pt;}
.ws92{word-spacing:1.607680pt;}
.ws96{word-spacing:1.656107pt;}
.ws93{word-spacing:1.713920pt;}
.wsae{word-spacing:1.973888pt;}
.wsb0{word-spacing:2.036053pt;}
.ws9{word-spacing:2.328960pt;}
.ws95{word-spacing:2.968960pt;}
.ws17{word-spacing:3.337600pt;}
.ws1b{word-spacing:3.479467pt;}
.ws18{word-spacing:3.608960pt;}
.ws49{word-spacing:3.714560pt;}
.ws1a{word-spacing:3.917440pt;}
.ws46{word-spacing:4.102485pt;}
.ws26{word-spacing:4.201387pt;}
.wsb{word-spacing:4.223360pt;}
.ws47{word-spacing:4.349099pt;}
.ws19{word-spacing:4.486827pt;}
.ws67{word-spacing:4.560043pt;}
.ws6a{word-spacing:4.584448pt;}
.ws25{word-spacing:4.721920pt;}
.ws27{word-spacing:4.808320pt;}
.ws29{word-spacing:4.828800pt;}
.ws24{word-spacing:4.888960pt;}
.ws22{word-spacing:4.995200pt;}
.ws66{word-spacing:5.091136pt;}
.ws2b{word-spacing:5.093333pt;}
.ws23{word-spacing:5.135573pt;}
.ws2f{word-spacing:5.137920pt;}
.ws69{word-spacing:5.225984pt;}
.ws16{word-spacing:5.279680pt;}
.ws6c{word-spacing:5.376000pt;}
.ws48{word-spacing:5.582336pt;}
.ws2d{word-spacing:5.712640pt;}
.ws28{word-spacing:5.891627pt;}
.ws2c{word-spacing:5.896747pt;}
.wsa0{word-spacing:6.080000pt;}
.ws2a{word-spacing:6.144960pt;}
.ws8a{word-spacing:6.287360pt;}
.ws8b{word-spacing:6.477440pt;}
.wscf{word-spacing:6.650880pt;}
.ws150{word-spacing:6.752000pt;}
.ws14f{word-spacing:6.848000pt;}
.ws68{word-spacing:6.862336pt;}
.ws8c{word-spacing:6.894720pt;}
.ws151{word-spacing:7.008000pt;}
.ws53{word-spacing:7.011136pt;}
.wsd0{word-spacing:7.290880pt;}
.ws56{word-spacing:7.296000pt;}
.ws54{word-spacing:7.397632pt;}
.ws2e{word-spacing:7.423360pt;}
.ws167{word-spacing:7.520000pt;}
.wsb3{word-spacing:7.648000pt;}
.ws55{word-spacing:7.802624pt;}
.wsd3{word-spacing:8.448000pt;}
.wsb2{word-spacing:8.618667pt;}
.wsb4{word-spacing:8.672000pt;}
.ws8d{word-spacing:8.703360pt;}
.ws30{word-spacing:8.847360pt;}
.ws6{word-spacing:10.652800pt;}
.ws32{word-spacing:11.040640pt;}
.ws126{word-spacing:11.505067pt;}
.wscb{word-spacing:11.808000pt;}
.ws1{word-spacing:12.014507pt;}
.ws4f{word-spacing:12.225280pt;}
.wsc9{word-spacing:12.512000pt;}
.ws3{word-spacing:12.545280pt;}
.ws4{word-spacing:12.606720pt;}
.wscc{word-spacing:12.672000pt;}
.ws2{word-spacing:13.113920pt;}
.wsca{word-spacing:13.184000pt;}
.ws7{word-spacing:13.208960pt;}
.ws127{word-spacing:13.600000pt;}
.ws72{word-spacing:13.760768pt;}
.ws5{word-spacing:14.600747pt;}
.ws74{word-spacing:15.072000pt;}
.ws161{word-spacing:15.283200pt;}
.ws31{word-spacing:15.354027pt;}
.ws73{word-spacing:16.462336pt;}
.ws14a{word-spacing:18.720000pt;}
.ws145{word-spacing:23.968000pt;}
.ws36{word-spacing:24.160000pt;}
.ws38{word-spacing:24.161280pt;}
.ws34{word-spacing:24.428160pt;}
.ws39{word-spacing:24.438400pt;}
.ws11f{word-spacing:24.576000pt;}
.ws37{word-spacing:24.882773pt;}
.ws35{word-spacing:25.099307pt;}
.ws3a{word-spacing:25.759680pt;}
.ws1f{word-spacing:26.621227pt;}
.ws1d{word-spacing:26.872533pt;}
.ws1e{word-spacing:26.995200pt;}
.ws20{word-spacing:27.201280pt;}
.ws61{word-spacing:32.219947pt;}
.ws60{word-spacing:32.681600pt;}
.ws63{word-spacing:32.811947pt;}
.ws62{word-spacing:33.368640pt;}
.ws57{word-spacing:34.109952pt;}
.ws5c{word-spacing:34.769280pt;}
.ws5f{word-spacing:34.993280pt;}
.ws11{word-spacing:35.123200pt;}
.wse{word-spacing:35.124224pt;}
.wsc{word-spacing:35.387563pt;}
.ws5d{word-spacing:35.794560pt;}
.ws10{word-spacing:35.852288pt;}
.wsd{word-spacing:36.200576pt;}
.wsf{word-spacing:36.302336pt;}
.ws5e{word-spacing:36.856960pt;}
.ws160{word-spacing:41.574187pt;}
.ws137{word-spacing:45.721600pt;}
.ws87{word-spacing:46.116267pt;}
.ws89{word-spacing:49.226027pt;}
.ws88{word-spacing:51.592320pt;}
.wsa3{word-spacing:64.036267pt;}
.wsa5{word-spacing:67.429760pt;}
.wsa4{word-spacing:68.225280pt;}
.ws13e{word-spacing:74.958400pt;}
.ws13f{word-spacing:77.065387pt;}
.ws13d{word-spacing:78.643883pt;}
.ws14d{word-spacing:78.697216pt;}
.ws156{word-spacing:84.160000pt;}
.ws124{word-spacing:85.848960pt;}
.ws12f{word-spacing:85.945067pt;}
.ws13a{word-spacing:85.955627pt;}
.ws130{word-spacing:89.048064pt;}
.ws125{word-spacing:89.067520pt;}
.ws13b{word-spacing:89.121280pt;}
.ws123{word-spacing:89.338027pt;}
.ws139{word-spacing:89.391360pt;}
.ws12e{word-spacing:89.579264pt;}
.ws5b{word-spacing:90.732800pt;}
.ws136{word-spacing:111.141760pt;}
.ws133{word-spacing:111.301760pt;}
.ws58{word-spacing:116.904960pt;}
.ws5a{word-spacing:117.051307pt;}
.ws59{word-spacing:117.973120pt;}
.wsd5{word-spacing:384.554667pt;}
.wsd6{word-spacing:675.925333pt;}
.ws149{word-spacing:677.218773pt;}
.ws12c{word-spacing:687.293867pt;}
.ws12a{word-spacing:880.759467pt;}
.ws14c{word-spacing:914.786133pt;}
.wsa9{word-spacing:1322.101333pt;}
.wsa2{word-spacing:1361.546667pt;}
._21{margin-left:-17.041024pt;}
._7{margin-left:-13.268992pt;}
._40{margin-left:-11.975040pt;}
._12{margin-left:-10.729984pt;}
._23{margin-left:-9.726080pt;}
._5{margin-left:-8.801152pt;}
._d{margin-left:-7.704576pt;}
._1{margin-left:-6.741504pt;}
._31{margin-left:-5.843541pt;}
._4{margin-left:-4.919040pt;}
._8{margin-left:-3.356800pt;}
._2{margin-left:-2.033152pt;}
._0{margin-left:-0.963072pt;}
._3{width:1.071232pt;}
._2a{width:2.134400pt;}
._30{width:3.388131pt;}
._32{width:5.166284pt;}
._34{width:6.262668pt;}
._3a{width:7.419020pt;}
._39{width:9.236089pt;}
._3e{width:17.976064pt;}
._3d{width:19.657387pt;}
._22{width:20.645589pt;}
._2f{width:22.967040pt;}
._2e{width:24.138667pt;}
._6{width:25.688960pt;}
._15{width:27.078912pt;}
._25{width:28.088021pt;}
._b{width:29.284224pt;}
._a{width:30.679339pt;}
._e{width:31.683157pt;}
._f{width:33.066283pt;}
._16{width:35.045120pt;}
._10{width:36.822357pt;}
._9{width:38.709376pt;}
._19{width:41.602560pt;}
._11{width:43.377920pt;}
._3b{width:49.051435pt;}
._14{width:52.362752pt;}
._c{width:63.144107pt;}
._24{width:74.793600pt;}
._13{width:75.700907pt;}
._2c{width:93.293227pt;}
._2b{width:94.845653pt;}
._43{width:106.739541pt;}
._41{width:110.440832pt;}
._44{width:111.744000pt;}
._3c{width:117.478059pt;}
._2d{width:120.128000pt;}
._17{width:168.251733pt;}
._35{width:274.590379pt;}
._38{width:376.695662pt;}
._33{width:445.793680pt;}
._28{width:459.520000pt;}
._29{width:466.560000pt;}
._37{width:473.416657pt;}
._18{width:488.326272pt;}
._36{width:490.189273pt;}
._1f{width:565.819179pt;}
._1c{width:575.910059pt;}
._1e{width:583.590059pt;}
._1a{width:589.528960pt;}
._42{width:621.472000pt;}
._1d{width:645.030059pt;}
._20{width:682.579840pt;}
._1b{width:692.004779pt;}
._3f{width:876.478421pt;}
._27{width:1055.466667pt;}
._26{width:1167.466667pt;}
.fs1a{font-size:35.840000pt;}
.fs14{font-size:42.176808pt;}
.fs17{font-size:42.880000pt;}
.fs18{font-size:43.008000pt;}
.fse{font-size:43.930509pt;}
.fs10{font-size:44.901621pt;}
.fsd{font-size:46.254895pt;}
.fs12{font-size:46.942583pt;}
.fs13{font-size:47.630272pt;}
.fsf{font-size:48.093092pt;}
.fs15{font-size:48.236783pt;}
.fs19{font-size:53.120000pt;}
.fs11{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fsc{font-size:70.400000pt;}
.fs6{font-size:71.040000pt;}
.fs16{font-size:74.880000pt;}
.fs1b{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs8{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fs0{font-size:107.008000pt;}
.fs2{font-size:117.120000pt;}
.fs5{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs1c{font-size:149.120000pt;}
.fs1d{font-size:149.248000pt;}
.y12e{bottom:-90.883039pt;}
.y21d{bottom:-79.686597pt;}
.y12d{bottom:-76.679075pt;}
.y1ef{bottom:-70.952199pt;}
.y21c{bottom:-65.280883pt;}
.y15a{bottom:-64.986700pt;}
.y12c{bottom:-62.343383pt;}
.y1ee{bottom:-58.285853pt;}
.y159{bottom:-51.510365pt;}
.y21b{bottom:-51.008259pt;}
.y12b{bottom:-48.040956pt;}
.y1ed{bottom:-45.619508pt;}
.y158{bottom:-38.100369pt;}
.y21a{bottom:-36.603876pt;}
.y1ec{bottom:-33.053339pt;}
.y12a{bottom:-33.045296pt;}
.y157{bottom:-24.622681pt;}
.y219{bottom:-21.504761pt;}
.y1eb{bottom:-19.689763pt;}
.y129{bottom:-18.709605pt;}
.y156{bottom:-10.507323pt;}
.y218{bottom:-7.231871pt;}
.y1ea{bottom:-7.024085pt;}
.y128{bottom:-4.407563pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:0.000163pt;}
.y155{bottom:2.969824pt;}
.y1e9{bottom:5.509493pt;}
.yfe{bottom:6.104241pt;}
.yd5{bottom:6.427214pt;}
.y194{bottom:6.522764pt;}
.y1c1{bottom:6.618320pt;}
.y217{bottom:7.173178pt;}
.y127{bottom:9.795456pt;}
.y22d{bottom:13.600000pt;}
.y7c{bottom:15.104000pt;}
.y154{bottom:16.380361pt;}
.y1e8{bottom:18.175705pt;}
.yfd{bottom:19.201575pt;}
.yd4{bottom:20.217535pt;}
.y162{bottom:20.384000pt;}
.y193{bottom:20.518111pt;}
.y1c0{bottom:20.818692pt;}
.y216{bottom:21.479473pt;}
.y126{bottom:24.131147pt;}
.y130{bottom:25.320688pt;}
.ya7{bottom:25.920000pt;}
.yf{bottom:27.936000pt;}
.y1e7{bottom:29.052227pt;}
.y33{bottom:29.088000pt;}
.y38{bottom:29.696000pt;}
.y153{bottom:29.856696pt;}
.y54{bottom:30.656000pt;}
.y241{bottom:31.872000pt;}
.y99{bottom:31.968000pt;}
.yfc{bottom:32.264354pt;}
.yd3{bottom:33.971473pt;}
.y192{bottom:34.476534pt;}
.y1bf{bottom:34.981600pt;}
.y215{bottom:35.752097pt;}
.y252{bottom:36.096000pt;}
.y214{bottom:38.196969pt;}
.y161{bottom:39.584000pt;}
.y12f{bottom:39.623115pt;}
.y7b{bottom:40.704000pt;}
.y151{bottom:41.620412pt;}
.y1e6{bottom:41.717237pt;}
.y152{bottom:43.266692pt;}
.y7e{bottom:44.544000pt;}
.yfb{bottom:45.310647pt;}
.y23f{bottom:45.600000pt;}
.yd2{bottom:47.708051pt;}
.y191{bottom:48.417339pt;}
.y1be{bottom:49.126631pt;}
.y213{bottom:52.502865pt;}
.y150{bottom:54.996563pt;}
.y251{bottom:58.496000pt;}
.y160{bottom:58.784000pt;}
.yfa{bottom:59.089938pt;}
.y32{bottom:61.088000pt;}
.y37{bottom:61.728000pt;}
.yd1{bottom:62.216412pt;}
.y53{bottom:62.656000pt;}
.y25{bottom:62.976000pt;}
.y190{bottom:63.141401pt;}
.y98{bottom:63.968000pt;}
.y1bd{bottom:64.066395pt;}
.y1e3{bottom:65.326889pt;}
.y7a{bottom:66.304000pt;}
.y23e{bottom:68.000000pt;}
.yf9{bottom:72.138978pt;}
.y7d{bottom:73.344000pt;}
.y7{bottom:74.880000pt;}
.yd0{bottom:75.955884pt;}
.y18f{bottom:77.085142pt;}
.y1e2{bottom:77.991899pt;}
.y1bc{bottom:78.214406pt;}
.y60{bottom:78.656000pt;}
.y246{bottom:81.088000pt;}
.y8a{bottom:81.760000pt;}
.yf8{bottom:85.232672pt;}
.ycf{bottom:89.742371pt;}
.y18e{bottom:91.076599pt;}
.y79{bottom:91.904000pt;}
.y264{bottom:91.933333pt;}
.y261{bottom:92.000000pt;}
.y66{bottom:92.066667pt;}
.y254{bottom:92.160000pt;}
.y1bb{bottom:92.410831pt;}
.y31{bottom:93.088000pt;}
.y52{bottom:94.656000pt;}
.y15f{bottom:97.184000pt;}
.yf7{bottom:98.298886pt;}
.y73{bottom:102.144000pt;}
.yce{bottom:103.499926pt;}
.y1c5{bottom:104.518697pt;}
.y18d{bottom:105.038692pt;}
.y1ba{bottom:106.577463pt;}
.ya1{bottom:107.072000pt;}
.y24{bottom:107.808000pt;}
.y97{bottom:108.192000pt;}
.y107{bottom:108.889227pt;}
.yf6{bottom:109.688893pt;}
.y5f{bottom:110.656000pt;}
.y253{bottom:111.360000pt;}
.y195{bottom:115.520000pt;}
.y42{bottom:115.776000pt;}
.y1cc{bottom:116.587989pt;}
.y1c4{bottom:117.185043pt;}
.ycd{bottom:117.235781pt;}
.y237{bottom:117.504000pt;}
.y78{bottom:117.536000pt;}
.y1f4{bottom:119.274362pt;}
.y18c{bottom:119.580704pt;}
.y166{bottom:121.440000pt;}
.y135{bottom:121.509052pt;}
.y10e{bottom:122.497090pt;}
.yf5{bottom:122.803196pt;}
.y1b9{bottom:123.067958pt;}
.y106{bottom:123.224919pt;}
.y26d{bottom:124.160000pt;}
.y30{bottom:125.088000pt;}
.y51{bottom:126.656000pt;}
.y22b{bottom:128.640000pt;}
.y1cb{bottom:129.155494pt;}
.y72{bottom:130.976000pt;}
.y89{bottom:131.360000pt;}
.ya8{bottom:131.999991pt;}
.y1fb{bottom:132.886856pt;}
.y18b{bottom:133.535456pt;}
.y1f3{bottom:133.582920pt;}
.y134{bottom:135.019234pt;}
.ya0{bottom:135.866667pt;}
.y236{bottom:136.706667pt;}
.y10d{bottom:136.827460pt;}
.y1b8{bottom:137.271831pt;}
.y13c{bottom:137.768917pt;}
.y6{bottom:138.906667pt;}
.y23{bottom:139.813333pt;}
.y77{bottom:143.133333pt;}
.y96{bottom:144.986667pt;}
.y258{bottom:145.373333pt;}
.y41{bottom:146.973333pt;}
.y1fa{bottom:147.264621pt;}
.y257{bottom:147.453333pt;}
.y22a{bottom:147.840000pt;}
.y1ca{bottom:148.852910pt;}
.y13b{bottom:151.280452pt;}
.y1cf{bottom:153.861747pt;}
.yd6{bottom:154.719982pt;}
.yca{bottom:154.819509pt;}
.y1c7{bottom:155.277578pt;}
.y2f{bottom:157.120000pt;}
.y188{bottom:157.121263pt;}
.y10c{bottom:159.034875pt;}
.y71{bottom:159.773333pt;}
.y88{bottom:160.160000pt;}
.y1c9{bottom:161.515249pt;}
.y111{bottom:164.743072pt;}
.y109{bottom:166.259936pt;}
.y1ce{bottom:166.524086pt;}
.y238{bottom:167.453333pt;}
.y1c6{bottom:167.953274pt;}
.yc9{bottom:168.569831pt;}
.y13a{bottom:168.691112pt;}
.y76{bottom:168.733333pt;}
.y1f9{bottom:169.557278pt;}
.y5{bottom:170.906667pt;}
.y187{bottom:171.076016pt;}
.y17{bottom:172.133333pt;}
.y10b{bottom:173.365244pt;}
.y13f{bottom:174.038857pt;}
.y1c8{bottom:174.177588pt;}
.y5e{bottom:175.066667pt;}
.y1fe{bottom:175.240241pt;}
.y137{bottom:175.487504pt;}
.y1f6{bottom:176.863945pt;}
.y233{bottom:177.600000pt;}
.y110{bottom:178.980301pt;}
.y1cd{bottom:179.186424pt;}
.y108{bottom:180.563693pt;}
.y95{bottom:181.786667pt;}
.y229{bottom:181.853333pt;}
.y139{bottom:182.067261pt;}
.y1f8{bottom:183.864505pt;}
.y22{bottom:184.613333pt;}
.y239{bottom:185.693333pt;}
.y256{bottom:187.266667pt;}
.y13e{bottom:187.415007pt;}
.yda{bottom:187.536599pt;}
.y10a{bottom:187.669002pt;}
.y26c{bottom:188.186667pt;}
.y70{bottom:188.573333pt;}
.y40{bottom:188.613333pt;}
.y228{bottom:188.800000pt;}
.y136{bottom:188.958425pt;}
.y87{bottom:188.960000pt;}
.y1fd{bottom:189.653941pt;}
.y50{bottom:190.693333pt;}
.y1f5{bottom:191.171172pt;}
.y10f{bottom:193.284058pt;}
.y1d3{bottom:193.678658pt;}
.y75{bottom:194.333333pt;}
.y138{bottom:195.578797pt;}
.y1e1{bottom:196.697317pt;}
.yac{bottom:197.459252pt;}
.y1f7{bottom:198.238277pt;}
.y16a{bottom:200.394944pt;}
.yd9{bottom:200.582205pt;}
.y13d{bottom:200.926543pt;}
.y199{bottom:203.330642pt;}
.ye1{bottom:203.385049pt;}
.y1fc{bottom:203.921241pt;}
.y16{bottom:204.133333pt;}
.y1f0{bottom:205.920000pt;}
.y1d2{bottom:206.340997pt;}
.y1e0{bottom:209.332942pt;}
.y255{bottom:209.666667pt;}
.y115{bottom:209.703441pt;}
.yb3{bottom:210.500718pt;}
.yab{bottom:211.195107pt;}
.y131{bottom:212.639982pt;}
.y123{bottom:213.096426pt;}
.y171{bottom:213.630303pt;}
.y169{bottom:214.335015pt;}
.y5d{bottom:214.400000pt;}
.y143{bottom:216.252260pt;}
.ye0{bottom:216.430654pt;}
.y21{bottom:216.613333pt;}
.y1a0{bottom:216.759893pt;}
.y6f{bottom:217.373333pt;}
.y198{bottom:217.474928pt;}
.y94{bottom:218.626667pt;}
.ye{bottom:218.946667pt;}
.y14d{bottom:219.447353pt;}
.y74{bottom:219.933333pt;}
.y202{bottom:220.344607pt;}
.y23d{bottom:220.826667pt;}
.y240{bottom:221.693333pt;}
.y4f{bottom:222.693333pt;}
.y210{bottom:223.804959pt;}
.y114{bottom:224.007199pt;}
.y35{bottom:224.066667pt;}
.yb2{bottom:224.287206pt;}
.y25d{bottom:226.426667pt;}
.y122{bottom:227.400183pt;}
.y170{bottom:227.621759pt;}
.ya6{bottom:228.226667pt;}
.y1d5{bottom:229.662139pt;}
.y142{bottom:229.763795pt;}
.y3f{bottom:230.213333pt;}
.y19f{bottom:230.956318pt;}
.y1d1{bottom:232.867795pt;}
.y14c{bottom:232.958890pt;}
.ydf{bottom:233.343915pt;}
.y201{bottom:234.744997pt;}
.y15{bottom:236.160000pt;}
.y1d7{bottom:236.781366pt;}
.y20f{bottom:238.085568pt;}
.ye4{bottom:238.564903pt;}
.y1e5{bottom:239.305819pt;}
.ydc{bottom:239.993810pt;}
.y1d4{bottom:242.217623pt;}
.y227{bottom:243.173333pt;}
.y23c{bottom:243.226667pt;}
.y1d0{bottom:245.543490pt;}
.yb1{bottom:245.690258pt;}
.yde{bottom:246.444478pt;}
.y16f{bottom:249.343018pt;}
.y1d6{bottom:249.457061pt;}
.y117{bottom:250.326113pt;}
.yb6{bottom:251.187492pt;}
.ye3{bottom:251.610509pt;}
.y1e4{bottom:251.968158pt;}
.y26b{bottom:252.186667pt;}
.yae{bottom:252.692001pt;}
.y5c{bottom:252.800000pt;}
.y19e{bottom:252.995784pt;}
.ydb{bottom:253.060025pt;}
.y34{bottom:253.626667pt;}
.y113{bottom:254.025131pt;}
.y145{bottom:254.566525pt;}
.y4e{bottom:254.693333pt;}
.y174{bottom:254.921983pt;}
.y25c{bottom:255.226667pt;}
.y93{bottom:255.426667pt;}
.y6e{bottom:255.773333pt;}
.y16c{bottom:256.448857pt;}
.y141{bottom:257.964728pt;}
.y119{bottom:258.455969pt;}
.y1a3{bottom:258.656478pt;}
.y1d9{bottom:259.100741pt;}
.y86{bottom:259.386667pt;}
.yb0{bottom:259.483979pt;}
.ydd{bottom:259.503823pt;}
.y19b{bottom:260.205720pt;}
.ya5{bottom:260.226667pt;}
.y204{bottom:261.216695pt;}
.y125{bottom:261.330027pt;}
.y20{bottom:261.440000pt;}
.y147{bottom:262.188758pt;}
.y1c3{bottom:262.212898pt;}
.y16e{bottom:263.341815pt;}
.y116{bottom:264.629870pt;}
.ye2{bottom:264.704202pt;}
.y200{bottom:264.850065pt;}
.y14f{bottom:264.882953pt;}
.yb5{bottom:264.923347pt;}
.y226{bottom:265.573333pt;}
.yad{bottom:266.449556pt;}
.y235{bottom:267.173333pt;}
.y19d{bottom:267.199657pt;}
.y144{bottom:267.969752pt;}
.y112{bottom:268.235748pt;}
.y173{bottom:268.862054pt;}
.y206{bottom:269.308596pt;}
.y16b{bottom:270.410950pt;}
.y140{bottom:271.476265pt;}
.y1d8{bottom:271.763080pt;}
.y3e{bottom:271.813333pt;}
.y118{bottom:272.759727pt;}
.y1a2{bottom:272.800765pt;}
.yaf{bottom:273.234300pt;}
.y212{bottom:274.366034pt;}
.y19a{bottom:274.372352pt;}
.y1c2{bottom:274.888594pt;}
.y203{bottom:275.483994pt;}
.y124{bottom:275.660396pt;}
.y146{bottom:275.673216pt;}
.y16d{bottom:277.296567pt;}
.y14e{bottom:278.367411pt;}
.y1db{bottom:278.695309pt;}
.yb4{bottom:278.709835pt;}
.y1ff{bottom:279.143983pt;}
.ye8{bottom:279.680202pt;}
.y1dd{bottom:281.112908pt;}
.y19c{bottom:281.358840pt;}
.y5b{bottom:281.600000pt;}
.yf2{bottom:282.764702pt;}
.y172{bottom:282.853510pt;}
.yd{bottom:282.946667pt;}
.y11b{bottom:283.657194pt;}
.y205{bottom:283.708986pt;}
.y26a{bottom:284.186667pt;}
.y6d{bottom:284.613333pt;}
.y149{bottom:285.894877pt;}
.y1df{bottom:286.028246pt;}
.y234{bottom:286.400000pt;}
.y4d{bottom:286.693333pt;}
.y1a1{bottom:286.997190pt;}
.y105{bottom:287.156625pt;}
.y211{bottom:288.766425pt;}
.y133{bottom:289.888784pt;}
.y1da{bottom:291.357648pt;}
.y92{bottom:292.226667pt;}
.ye7{bottom:292.725807pt;}
.y1f{bottom:293.440000pt;}
.y1dc{bottom:293.788603pt;}
.yba{bottom:294.478222pt;}
.y208{bottom:294.542552pt;}
.yf1{bottom:295.865265pt;}
.y263{bottom:297.600000pt;}
.yc8{bottom:297.725927pt;}
.y273{bottom:297.893333pt;}
.y11a{bottom:297.960952pt;}
.y1f2{bottom:298.175922pt;}
.y1de{bottom:298.690585pt;}
.y178{bottom:298.856330pt;}
.y148{bottom:299.271027pt;}
.y104{bottom:301.486995pt;}
.y186{bottom:302.152323pt;}
.y1a7{bottom:303.234444pt;}
.y132{bottom:303.400320pt;}
.y85{bottom:304.986667pt;}
.y11d{bottom:305.784775pt;}
.y1b5{bottom:306.578722pt;}
.y14b{bottom:306.690188pt;}
.y11f{bottom:307.767342pt;}
.yb9{bottom:308.214077pt;}
.y15c{bottom:308.544983pt;}
.y207{bottom:308.956251pt;}
.yc7{bottom:311.519648pt;}
.y1f1{bottom:312.483149pt;}
.y15e{bottom:312.538878pt;}
.y177{bottom:312.796401pt;}
.y3d{bottom:313.413333pt;}
.y121{bottom:314.074301pt;}
.y185{bottom:316.151120pt;}
.y20a{bottom:316.848517pt;}
.yea{bottom:316.872883pt;}
.y1a6{bottom:317.378731pt;}
.y4c{bottom:318.693333pt;}
.y20c{bottom:319.590181pt;}
.y11c{bottom:320.088532pt;}
.ye6{bottom:320.163484pt;}
.y14a{bottom:320.174647pt;}
.y5a{bottom:320.546667pt;}
.y1b4{bottom:320.782595pt;}
.y15b{bottom:322.015903pt;}
.y11e{bottom:322.097711pt;}
.ya4{bottom:324.226667pt;}
.yec{bottom:324.292183pt;}
.y20e{bottom:325.179982pt;}
.y1e{bottom:325.440000pt;}
.y15d{bottom:326.050414pt;}
.y245{bottom:326.053333pt;}
.yf4{bottom:326.916421pt;}
.y232{bottom:327.293333pt;}
.y250{bottom:328.386667pt;}
.y120{bottom:328.417976pt;}
.y91{bottom:329.026667pt;}
.y272{bottom:329.893333pt;}
.ye9{bottom:329.918488pt;}
.y209{bottom:331.155744pt;}
.ye5{bottom:333.264048pt;}
.ybc{bottom:333.638789pt;}
.y20b{bottom:333.857481pt;}
.y260{bottom:336.480000pt;}
.yb8{bottom:337.103495pt;}
.yeb{bottom:337.337788pt;}
.y84{bottom:337.786667pt;}
.y17a{bottom:338.599112pt;}
.y20d{bottom:339.540445pt;}
.yf3{bottom:339.982635pt;}
.ybe{bottom:341.450648pt;}
.y176{bottom:342.115328pt;}
.y6c{bottom:342.213333pt;}
.y1a9{bottom:343.559441pt;}
.y223{bottom:343.680000pt;}
.ycc{bottom:344.720058pt;}
.y17c{bottom:346.527115pt;}
.yc{bottom:346.973333pt;}
.y1a5{bottom:347.127168pt;}
.yee{bottom:347.298890pt;}
.ybb{bottom:347.374644pt;}
.y269{bottom:348.226667pt;}
.y2e{bottom:349.146667pt;}
.y18a{bottom:349.331279pt;}
.y164{bottom:349.920000pt;}
.yb7{bottom:350.897216pt;}
.yd8{bottom:351.269596pt;}
.y1ab{bottom:351.603585pt;}
.y179{bottom:352.539183pt;}
.y13{bottom:353.733333pt;}
.y3c{bottom:355.040000pt;}
.ybd{bottom:355.186504pt;}
.y175{bottom:356.114125pt;}
.y1b7{bottom:356.631175pt;}
.y24f{bottom:357.186667pt;}
.y1d{bottom:357.440000pt;}
.y1a8{bottom:357.703728pt;}
.ycb{bottom:358.455914pt;}
.y59{bottom:359.493333pt;}
.yed{bottom:360.413193pt;}
.y17b{bottom:360.467186pt;}
.y1a4{bottom:361.331041pt;}
.y189{bottom:363.293372pt;}
.y4{bottom:363.586667pt;}
.yd7{bottom:364.335810pt;}
.y1aa{bottom:365.747872pt;}
.y23a{bottom:365.760000pt;}
.yc0{bottom:366.173742pt;}
.yf0{bottom:367.578315pt;}
.yaa{bottom:369.103193pt;}
.y100{bottom:369.330096pt;}
.y249{bottom:370.333333pt;}
.y1b6{bottom:370.797807pt;}
.y6b{bottom:371.013333pt;}
.y222{bottom:372.480000pt;}
.y17e{bottom:372.601434pt;}
.y102{bottom:373.307667pt;}
.y168{bottom:374.590775pt;}
.y1ad{bottom:376.547880pt;}
.ybf{bottom:379.909597pt;}
.y197{bottom:380.078366pt;}
.yef{bottom:380.672009pt;}
.y2d{bottom:381.146667pt;}
.yff{bottom:382.430659pt;}
.y4b{bottom:382.720000pt;}
.ya9{bottom:382.839048pt;}
.y83{bottom:384.066667pt;}
.y23b{bottom:385.026667pt;}
.y12{bottom:385.760000pt;}
.y101{bottom:386.353273pt;}
.y17d{bottom:386.548846pt;}
.yc2{bottom:387.027071pt;}
.y276{bottom:387.586667pt;}
.y167{bottom:388.530846pt;}
.y1c{bottom:389.440000pt;}
.y265{bottom:389.533333pt;}
.yc4{bottom:389.681657pt;}
.y90{bottom:390.720000pt;}
.y1ac{bottom:390.766650pt;}
.y180{bottom:392.781136pt;}
.y271{bottom:393.920000pt;}
.y196{bottom:394.222653pt;}
.yc6{bottom:395.012530pt;}
.y182{bottom:395.475189pt;}
.y3b{bottom:396.640000pt;}
.y58{bottom:398.426667pt;}
.y1af{bottom:398.535208pt;}
.y3{bottom:398.786667pt;}
.y248{bottom:399.133333pt;}
.y6a{bottom:399.813333pt;}
.yc1{bottom:400.813558pt;}
.y184{bottom:400.885317pt;}
.y1b1{bottom:401.268727pt;}
.y244{bottom:402.080000pt;}
.y24b{bottom:403.133333pt;}
.yc3{bottom:403.439212pt;}
.y65{bottom:404.320000pt;}
.y1b3{bottom:406.758111pt;}
.y17f{bottom:406.772593pt;}
.yc5{bottom:408.806251pt;}
.y181{bottom:409.437282pt;}
.yb{bottom:410.973333pt;}
.y268{bottom:412.226667pt;}
.y1ae{bottom:412.731633pt;}
.y82{bottom:412.866667pt;}
.y22f{bottom:414.426667pt;}
.y4a{bottom:414.720000pt;}
.y24e{bottom:414.813333pt;}
.y183{bottom:414.884114pt;}
.y1b0{bottom:415.435359pt;}
.y11{bottom:417.760000pt;}
.y1b2{bottom:420.961984pt;}
.y1b{bottom:421.440000pt;}
.y2a{bottom:426.373333pt;}
.y243{bottom:427.426667pt;}
.y247{bottom:427.933333pt;}
.y262{bottom:428.480000pt;}
.y69{bottom:428.613333pt;}
.y221{bottom:430.080000pt;}
.y24a{bottom:431.933333pt;}
.y275{bottom:432.386667pt;}
.y57{bottom:436.826667pt;}
.y49{bottom:446.720000pt;}
.y8f{bottom:447.746667pt;}
.y10{bottom:449.760000pt;}
.y81{bottom:453.826667pt;}
.y68{bottom:457.440000pt;}
.y270{bottom:457.920000pt;}
.y29{bottom:458.373333pt;}
.y9f{bottom:460.133333pt;}
.y56{bottom:465.626667pt;}
.y1a{bottom:466.266667pt;}
.y25f{bottom:467.426667pt;}
.y3a{bottom:468.293333pt;}
.ya{bottom:474.973333pt;}
.y267{bottom:476.253333pt;}
.y231{bottom:478.053333pt;}
.y80{bottom:482.626667pt;}
.y24d{bottom:487.653333pt;}
.y9e{bottom:488.933333pt;}
.y25b{bottom:490.013333pt;}
.y225{bottom:490.213333pt;}
.y28{bottom:490.400000pt;}
.y67{bottom:496.386667pt;}
.y19{bottom:498.266667pt;}
.y39{bottom:500.320000pt;}
.y8e{bottom:509.666667pt;}
.y230{bottom:510.080000pt;}
.y48{bottom:510.746667pt;}
.y9d{bottom:517.733333pt;}
.y24c{bottom:519.680000pt;}
.y26f{bottom:521.920000pt;}
.y25a{bottom:522.053333pt;}
.y224{bottom:522.213333pt;}
.y18{bottom:523.706667pt;}
.y7f{bottom:524.226667pt;}
.y9c{bottom:526.880000pt;}
.y64{bottom:535.293333pt;}
.y9{bottom:539.013333pt;}
.y266{bottom:540.253333pt;}
.y61{bottom:550.266667pt;}
.y2b{bottom:551.813333pt;}
.y163{bottom:557.306667pt;}
.ya2{bottom:557.346667pt;}
.y43{bottom:562.146667pt;}
.y259{bottom:564.346667pt;}
.y27{bottom:565.053333pt;}
.y8d{bottom:566.746667pt;}
.y47{bottom:569.693333pt;}
.y22c{bottom:572.800000pt;}
.y8b{bottom:574.053333pt;}
.y220{bottom:575.453333pt;}
.y63{bottom:579.106667pt;}
.y242{bottom:584.506667pt;}
.y21e{bottom:591.040000pt;}
.y165{bottom:592.253333pt;}
.y2{bottom:593.373333pt;}
.ya3{bottom:600.226667pt;}
.y45{bottom:614.400000pt;}
.y55{bottom:623.813333pt;}
.y1{bottom:625.413333pt;}
.y21f{bottom:632.733333pt;}
.y62{bottom:643.360000pt;}
.y8c{bottom:648.026667pt;}
.y9a{bottom:650.493333pt;}
.y46{bottom:658.693333pt;}
.y22e{bottom:659.840000pt;}
.y2c{bottom:660.133333pt;}
.y25e{bottom:660.480000pt;}
.y9b{bottom:661.186667pt;}
.y26e{bottom:662.653333pt;}
.y14{bottom:663.813333pt;}
.y274{bottom:666.213333pt;}
.y26{bottom:666.560000pt;}
.y8{bottom:668.320000pt;}
.y44{bottom:668.666667pt;}
.y36{bottom:671.933333pt;}
.h35{height:41.394230pt;}
.h22{height:43.115392pt;}
.h7{height:43.743562pt;}
.h36{height:43.989092pt;}
.h29{height:44.068485pt;}
.h1f{height:45.396650pt;}
.h21{height:45.818148pt;}
.h2e{height:46.071578pt;}
.h30{height:46.551884pt;}
.h32{height:46.746507pt;}
.h28{height:46.830987pt;}
.h25{height:47.200739pt;}
.h39{height:47.341765pt;}
.h1e{height:48.242410pt;}
.h2f{height:48.959648pt;}
.h33{height:49.676885pt;}
.h26{height:50.159592pt;}
.h3a{height:50.309457pt;}
.h37{height:51.148389pt;}
.h3d{height:52.108438pt;}
.h23{height:52.440561pt;}
.h2a{height:62.812500pt;}
.h2b{height:62.938125pt;}
.h1b{height:64.500000pt;}
.h1c{height:64.629000pt;}
.h3f{height:65.484375pt;}
.h3e{height:65.571687pt;}
.h1a{height:66.592083pt;}
.h19{height:66.703125pt;}
.h17{height:67.078125pt;}
.h18{height:67.167563pt;}
.h38{height:67.998590pt;}
.h16{height:68.718750pt;}
.h43{height:71.062500pt;}
.h1{height:72.836500pt;}
.h3b{height:75.465000pt;}
.h41{height:75.594000pt;}
.h27{height:76.001727pt;}
.hd{height:83.540625pt;}
.h15{height:83.666250pt;}
.h2c{height:85.785000pt;}
.h13{height:94.171875pt;}
.hf{height:94.218750pt;}
.h12{height:94.344375pt;}
.he{height:96.750000pt;}
.h11{height:96.879000pt;}
.h2{height:104.844687pt;}
.h9{height:104.896875pt;}
.ha{height:104.970250pt;}
.h8{height:105.022500pt;}
.h4{height:107.715000pt;}
.h5{height:107.844000pt;}
.h3{height:118.035000pt;}
.h42{height:121.438333pt;}
.hb{height:129.000000pt;}
.h6{height:129.129000pt;}
.h3c{height:130.238333pt;}
.h45{height:150.285000pt;}
.h46{height:150.414000pt;}
.h40{height:193.418750pt;}
.hc{height:196.683542pt;}
.h44{height:201.600000pt;}
.h10{height:201.760000pt;}
.h34{height:311.352923pt;}
.h24{height:345.915131pt;}
.h20{height:429.275310pt;}
.h1d{height:451.988482pt;}
.h2d{height:458.708349pt;}
.h31{height:465.428226pt;}
.h14{height:672.800000pt;}
.h0{height:720.000000pt;}
.wc{width:160.000382pt;}
.w8{width:167.997270pt;}
.w2{width:213.440000pt;}
.wd{width:320.000000pt;}
.w4{width:324.640000pt;}
.w3{width:336.480000pt;}
.wb{width:340.004248pt;}
.w7{width:390.713994pt;}
.w6{width:410.080036pt;}
.wa{width:420.640036pt;}
.w5{width:552.484218pt;}
.w9{width:560.644280pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x25{left:9.664000pt;}
.x8{left:17.375986pt;}
.xcb{left:20.959986pt;}
.xca{left:21.951986pt;}
.x1b{left:22.943986pt;}
.xb0{left:25.401926pt;}
.xb1{left:28.813309pt;}
.xe{left:31.615986pt;}
.xd1{left:33.599986pt;}
.x22{left:35.103986pt;}
.xbb{left:37.226363pt;}
.x23{left:38.783986pt;}
.x8a{left:41.411697pt;}
.xc8{left:42.975986pt;}
.xbd{left:44.675029pt;}
.xd9{left:46.943986pt;}
.xbe{left:48.531442pt;}
.xc5{left:49.599986pt;}
.x8d{left:50.616545pt;}
.xc6{left:52.255986pt;}
.x66{left:54.683541pt;}
.xd8{left:55.679986pt;}
.xa{left:57.599986pt;}
.x48{left:58.655986pt;}
.xd{left:60.287986pt;}
.x8b{left:61.572805pt;}
.xd5{left:62.463986pt;}
.x4e{left:63.636842pt;}
.x99{left:64.576744pt;}
.x21{left:65.599986pt;}
.xb3{left:66.535970pt;}
.xf{left:67.615986pt;}
.xc{left:70.271986pt;}
.xbf{left:73.694547pt;}
.x42{left:74.847986pt;}
.x86{left:76.005204pt;}
.x7c{left:78.024123pt;}
.x1c{left:78.943986pt;}
.xb5{left:80.612426pt;}
.x87{left:82.525994pt;}
.x69{left:83.460995pt;}
.x50{left:84.448400pt;}
.x77{left:88.146970pt;}
.x9a{left:89.160211pt;}
.xa3{left:90.708972pt;}
.xb2{left:92.236742pt;}
.x2a{left:93.375986pt;}
.x8f{left:95.704303pt;}
.xaf{left:98.016585pt;}
.x6a{left:99.511449pt;}
.xb6{left:101.179447pt;}
.x3{left:102.271986pt;}
.x47{left:103.967986pt;}
.x26{left:106.175986pt;}
.x7a{left:107.088978pt;}
.x3a{left:109.183986pt;}
.x91{left:110.302383pt;}
.x24{left:112.959986pt;}
.x1d{left:114.943986pt;}
.x80{left:117.219532pt;}
.x7b{left:118.345009pt;}
.x59{left:120.130109pt;}
.x2f{left:122.015986pt;}
.x85{left:123.541627pt;}
.x67{left:126.067531pt;}
.x4f{left:131.095743pt;}
.x8e{left:132.648233pt;}
.x6e{left:135.308899pt;}
.x68{left:136.332676pt;}
.x3c{left:138.466652pt;}
.x43{left:139.359986pt;}
.x78{left:141.128557pt;}
.x5a{left:142.444740pt;}
.x44{left:143.519986pt;}
.x1{left:144.826652pt;}
.x1e{left:147.039986pt;}
.x61{left:148.513452pt;}
.x19{left:150.079986pt;}
.x7d{left:153.031871pt;}
.xc1{left:154.135195pt;}
.xba{left:155.493408pt;}
.x6f{left:157.020986pt;}
.x62{left:158.032432pt;}
.x70{left:160.841215pt;}
.xab{left:162.700641pt;}
.x5b{left:165.301866pt;}
.x7e{left:166.273476pt;}
.x84{left:167.473613pt;}
.x3e{left:168.639986pt;}
.xa8{left:170.184817pt;}
.x88{left:171.580780pt;}
.xa9{left:174.325314pt;}
.x30{left:175.453319pt;}
.x51{left:176.867861pt;}
.x89{left:178.888332pt;}
.x6b{left:180.086646pt;}
.x74{left:181.158496pt;}
.xa5{left:182.092469pt;}
.x52{left:183.978163pt;}
.x76{left:184.875664pt;}
.x9b{left:186.695477pt;}
.x94{left:188.293495pt;}
.x53{left:189.583946pt;}
.x31{left:190.813319pt;}
.x46{left:192.293319pt;}
.xa1{left:193.529112pt;}
.xa6{left:195.184183pt;}
.x83{left:196.237097pt;}
.x4b{left:198.746652pt;}
.xae{left:199.875743pt;}
.xb7{left:200.840650pt;}
.x60{left:202.495328pt;}
.xb4{left:204.349424pt;}
.x73{left:205.241048pt;}
.x90{left:207.722930pt;}
.x93{left:209.509851pt;}
.x1f{left:211.519986pt;}
.x40{left:213.439986pt;}
.x17{left:215.039986pt;}
.x7f{left:217.386330pt;}
.xc0{left:218.529101pt;}
.x5e{left:220.303633pt;}
.xa0{left:222.302309pt;}
.x54{left:223.573070pt;}
.xaa{left:224.800633pt;}
.x5f{left:225.909416pt;}
.x55{left:227.254804pt;}
.x6c{left:228.883868pt;}
.x6d{left:230.416083pt;}
.xcf{left:232.386652pt;}
.x16{left:233.599986pt;}
.x92{left:235.406874pt;}
.x41{left:236.799986pt;}
.x15{left:238.746652pt;}
.xd0{left:239.906652pt;}
.x56{left:240.954613pt;}
.x57{left:242.567631pt;}
.x9c{left:244.513456pt;}
.x5c{left:246.806326pt;}
.x18{left:248.666652pt;}
.x9e{left:250.451598pt;}
.x27{left:251.680000pt;}
.x79{left:253.599982pt;}
.x58{left:254.958219pt;}
.x5{left:257.306652pt;}
.x9d{left:258.723892pt;}
.xdb{left:259.813319pt;}
.xa7{left:262.489581pt;}
.x32{left:268.479986pt;}
.xdc{left:274.693319pt;}
.x33{left:277.439986pt;}
.xb9{left:278.927558pt;}
.x4d{left:280.986652pt;}
.x81{left:283.594343pt;}
.x71{left:287.169817pt;}
.x35{left:289.786667pt;}
.x82{left:291.408623pt;}
.x72{left:294.329309pt;}
.xb8{left:295.684291pt;}
.xd6{left:296.799986pt;}
.xcc{left:299.933319pt;}
.x34{left:300.959986pt;}
.x2c{left:303.039986pt;}
.xc2{left:304.414134pt;}
.x9f{left:306.779535pt;}
.x5d{left:310.068485pt;}
.x2b{left:311.999986pt;}
.x64{left:314.039549pt;}
.x36{left:315.359986pt;}
.x75{left:318.686698pt;}
.x45{left:320.773319pt;}
.x4{left:329.506652pt;}
.xc3{left:331.007239pt;}
.x1a{left:333.439986pt;}
.x11{left:336.093319pt;}
.x10{left:338.626652pt;}
.xb{left:340.386652pt;}
.xc7{left:342.719986pt;}
.xac{left:345.403750pt;}
.xc4{left:350.717728pt;}
.x63{left:354.487982pt;}
.xa2{left:359.723686pt;}
.x6{left:360.866652pt;}
.xad{left:364.959403pt;}
.x97{left:383.906652pt;}
.x2{left:387.906652pt;}
.x12{left:392.893319pt;}
.x7{left:394.399986pt;}
.x3b{left:426.013319pt;}
.x20{left:432.959986pt;}
.x3f{left:439.546652pt;}
.x95{left:524.066652pt;}
.xa4{left:539.359964pt;}
.x13{left:543.013319pt;}
.x65{left:549.919964pt;}
.xd7{left:551.519986pt;}
.x96{left:556.066652pt;}
.xcd{left:574.266652pt;}
.xce{left:580.773319pt;}
.x28{left:588.000000pt;}
.x37{left:627.933319pt;}
.xda{left:630.399986pt;}
.x2e{left:645.853319pt;}
.x14{left:656.799986pt;}
.x38{left:662.493319pt;}
.x39{left:663.773319pt;}
.xd2{left:668.346652pt;}
.x98{left:684.546652pt;}
.x49{left:726.053319pt;}
.x29{left:733.213319pt;}
.xd3{left:753.279986pt;}
.x4c{left:754.719986pt;}
.x8c{left:761.280000pt;}
.xd4{left:763.039986pt;}
.x4a{left:764.773319pt;}
.xbc{left:767.999928pt;}
.x2d{left:772.573319pt;}
.x3d{left:886.053319pt;}
.xc9{left:892.706652pt;}
.x9{left:894.213319pt;}
}




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