
    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_903f232bda33dce11990cebb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6545a007faa5aaf097e299c3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_523b76f0b6c32a69985ff44d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_76b3aac4548a97bdf983494a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976074;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_8cd2bfcc66d46236ac2a5d60.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_6f13e293e3dfbb1a0f4040d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_d14c237bbd4cbc2211fabfd2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f34a416ce99b7edd2cca3929.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_a82f4dd80a379ddd18327f9b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_144440d9b9a02519b460b3dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.949219;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_903db8b2012ef3c051aaad65.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_b99f41533fd8771b223b0d62.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971191;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_444f079bce5d79e05c6ebd2e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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_e84dc7c68e41ccc56dd367e4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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_c14ca226976e37b7cebe2e37.woff2')format("woff");}.fff{font-family:fff;line-height:0.793457;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_456c36c88aa18e462a13c678.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.854980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b5f570b9b60d1627d901339f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_661581c3fc7ed1f93ec604c5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_90d2334c7d2290fb02a8cdf5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.941895;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:ff14;src:url('chunks/assets/font_fbcf8e28f2f5cbddc72d569b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.866699;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:ff15;src:url('chunks/assets/font_16010e956f21ec0a2140cced.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.104980;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:ff16;src:url('chunks/assets/font_00903a39ebec8771be5576b1.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_818ca64a3a813215ff7cfab9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.962402;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:ff18;src:url('chunks/assets/font_696937def409bb43cabcb47f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.971191;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;}
.mb{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249012,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,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);}
.m7{transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);}
.v13{vertical-align:-129.312000px;}
.v2{vertical-align:-127.838588px;}
.v11{vertical-align:-93.888000px;}
.vc{vertical-align:-88.522084px;}
.v4{vertical-align:-73.572348px;}
.v1{vertical-align:-66.010701px;}
.v3{vertical-align:-38.727820px;}
.v12{vertical-align:-36.000000px;}
.v8{vertical-align:-10.560000px;}
.v9{vertical-align:-8.940000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.620000px;}
.vf{vertical-align:3.744000px;}
.v7{vertical-align:8.208000px;}
.ve{vertical-align:36.272820px;}
.v5{vertical-align:42.720000px;}
.v10{vertical-align:51.120000px;}
.v6{vertical-align:65.640000px;}
.vd{vertical-align:72.305423px;}
.vb{vertical-align:84.379917px;}
.ls2e{letter-spacing:-5.877208px;}
.ls1c{letter-spacing:-4.356000px;}
.ls5e{letter-spacing:-1.084330px;}
.ls60{letter-spacing:-0.844176px;}
.ls63{letter-spacing:-0.811422px;}
.ls3e{letter-spacing:-0.805701px;}
.ls48{letter-spacing:-0.702044px;}
.ls62{letter-spacing:-0.678117px;}
.ls36{letter-spacing:-0.655092px;}
.ls65{letter-spacing:-0.633199px;}
.ls5d{letter-spacing:-0.632405px;}
.ls3b{letter-spacing:-0.627245px;}
.ls35{letter-spacing:-0.626265px;}
.ls6b{letter-spacing:-0.625671px;}
.ls68{letter-spacing:-0.576064px;}
.ls44{letter-spacing:-0.561473px;}
.ls5c{letter-spacing:-0.547259px;}
.ls67{letter-spacing:-0.537804px;}
.ls16{letter-spacing:-0.522632px;}
.ls2c{letter-spacing:-0.521152px;}
.ls51{letter-spacing:-0.517494px;}
.ls31{letter-spacing:-0.500868px;}
.ls43{letter-spacing:-0.471799px;}
.ls5f{letter-spacing:-0.457020px;}
.ls61{letter-spacing:-0.449905px;}
.ls37{letter-spacing:-0.449697px;}
.ls29{letter-spacing:-0.446788px;}
.ls3d{letter-spacing:-0.446732px;}
.ls53{letter-spacing:-0.438157px;}
.ls13{letter-spacing:-0.417985px;}
.ls2a{letter-spacing:-0.371224px;}
.ls66{letter-spacing:-0.358055px;}
.ls58{letter-spacing:-0.356850px;}
.ls6a{letter-spacing:-0.347226px;}
.ls64{letter-spacing:-0.335436px;}
.ls3a{letter-spacing:-0.322645px;}
.ls49{letter-spacing:-0.302145px;}
.ls47{letter-spacing:-0.300530px;}
.ls71{letter-spacing:-0.299071px;}
.ls2b{letter-spacing:-0.298658px;}
.ls4f{letter-spacing:-0.298115px;}
.ls1{letter-spacing:-0.288000px;}
.ls69{letter-spacing:-0.274316px;}
.ls54{letter-spacing:-0.274073px;}
.ls30{letter-spacing:-0.269532px;}
.ls39{letter-spacing:-0.268510px;}
.ls32{letter-spacing:-0.268090px;}
.ls1d{letter-spacing:-0.261600px;}
.ls2d{letter-spacing:-0.248882px;}
.ls45{letter-spacing:-0.240747px;}
.ls50{letter-spacing:-0.228394px;}
.ls6d{letter-spacing:-0.224603px;}
.ls2f{letter-spacing:-0.224293px;}
.ls12{letter-spacing:-0.223727px;}
.ls6e{letter-spacing:-0.223402px;}
.ls33{letter-spacing:-0.214761px;}
.ls38{letter-spacing:-0.210727px;}
.ls6c{letter-spacing:-0.209517px;}
.ls3f{letter-spacing:-0.209338px;}
.ls34{letter-spacing:-0.179448px;}
.ls11{letter-spacing:-0.179222px;}
.ls6f{letter-spacing:-0.178962px;}
.ls2{letter-spacing:-0.175800px;}
.ls79{letter-spacing:-0.168600px;}
.ls59{letter-spacing:-0.094968px;}
.ls3c{letter-spacing:-0.090225px;}
.ls52{letter-spacing:-0.079337px;}
.ls14{letter-spacing:-0.077583px;}
.ls18{letter-spacing:-0.037440px;}
.ls7a{letter-spacing:-0.026640px;}
.ls46{letter-spacing:-0.013653px;}
.ls70{letter-spacing:-0.010149px;}
.ls7c{letter-spacing:-0.004314px;}
.ls28{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.036000px;}
.ls78{letter-spacing:0.037440px;}
.ls83{letter-spacing:0.054720px;}
.ls42{letter-spacing:0.055646px;}
.ls21{letter-spacing:0.057600px;}
.ls5a{letter-spacing:0.067125px;}
.ls15{letter-spacing:0.077583px;}
.ls4c{letter-spacing:0.081513px;}
.ls5b{letter-spacing:0.083457px;}
.ls55{letter-spacing:0.099832px;}
.ls4e{letter-spacing:0.104809px;}
.ls76{letter-spacing:0.106800px;}
.ls41{letter-spacing:0.136434px;}
.ls4b{letter-spacing:0.141617px;}
.ls20{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.173198px;}
.ls1e{letter-spacing:0.191520px;}
.ls4d{letter-spacing:0.201720px;}
.ls19{letter-spacing:0.216000px;}
.ls40{letter-spacing:0.298009px;}
.ls4a{letter-spacing:0.383919px;}
.ls10{letter-spacing:0.599397px;}
.ls7b{letter-spacing:18.720000px;}
.ls7{letter-spacing:28.834560px;}
.ls5{letter-spacing:28.874496px;}
.ls82{letter-spacing:31.789440px;}
.lsc{letter-spacing:33.226560px;}
.ls75{letter-spacing:36.901440px;}
.ls17{letter-spacing:41.949360px;}
.ls81{letter-spacing:42.013440px;}
.ls8{letter-spacing:43.450560px;}
.ls23{letter-spacing:55.272000px;}
.ls7e{letter-spacing:61.997376px;}
.ls80{letter-spacing:62.077440px;}
.ls7f{letter-spacing:68.184000px;}
.ls73{letter-spacing:68.402496px;}
.ls74{letter-spacing:68.482560px;}
.lsb{letter-spacing:68.506560px;}
.ls87{letter-spacing:68.518560px;}
.ls84{letter-spacing:72.005376px;}
.ls85{letter-spacing:72.085440px;}
.ls77{letter-spacing:72.216000px;}
.lse{letter-spacing:77.282231px;}
.ls4{letter-spacing:78.410496px;}
.ls6{letter-spacing:78.490560px;}
.ls9{letter-spacing:80.784000px;}
.lsd{letter-spacing:104.943458px;}
.ls22{letter-spacing:105.393600px;}
.ls24{letter-spacing:105.444000px;}
.ls3{letter-spacing:107.460000px;}
.ls7d{letter-spacing:109.728000px;}
.lsa{letter-spacing:111.600000px;}
.ls86{letter-spacing:115.833600px;}
.ls72{letter-spacing:116.028000px;}
.lsf{letter-spacing:126.220112px;}
.ls26{letter-spacing:156.668138px;}
.ls1b{letter-spacing:190.272000px;}
.ls27{letter-spacing:216.951502px;}
.ls57{letter-spacing:600.061325px;}
.ls56{letter-spacing:853.258576px;}
.ls1a{letter-spacing:1217.988000px;}
.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;}
}
.ws4e{word-spacing:-66.693312px;}
.ws4{word-spacing:-59.102208px;}
.ws84{word-spacing:-57.369606px;}
.ws3{word-spacing:-53.482752px;}
.ws24{word-spacing:-50.738688px;}
.ws26{word-spacing:-50.688000px;}
.ws53{word-spacing:-46.898264px;}
.ws5{word-spacing:-43.434720px;}
.ws7d{word-spacing:-43.056000px;}
.ws22{word-spacing:-42.375168px;}
.ws23{word-spacing:-42.324480px;}
.ws28{word-spacing:-40.032000px;}
.ws1b{word-spacing:-38.016000px;}
.ws9{word-spacing:-34.913100px;}
.ws5c{word-spacing:-34.904298px;}
.ws79{word-spacing:-34.862360px;}
.ws27{word-spacing:-33.707520px;}
.ws80{word-spacing:-33.426720px;}
.ws19{word-spacing:-32.799168px;}
.ws1{word-spacing:-30.024000px;}
.ws11{word-spacing:-28.859328px;}
.ws7c{word-spacing:-28.422720px;}
.ws54{word-spacing:-27.040558px;}
.ws56{word-spacing:-26.738412px;}
.ws82{word-spacing:-26.621280px;}
.ws55{word-spacing:-26.338514px;}
.ws14{word-spacing:-25.394688px;}
.ws13{word-spacing:-25.344000px;}
.ws29{word-spacing:-24.440544px;}
.ws2a{word-spacing:-24.408000px;}
.ws41{word-spacing:-24.338794px;}
.ws70{word-spacing:-24.198986px;}
.ws4b{word-spacing:-24.178371px;}
.ws46{word-spacing:-24.159535px;}
.ws42{word-spacing:-24.128066px;}
.ws36{word-spacing:-24.121795px;}
.ws48{word-spacing:-24.069310px;}
.ws72{word-spacing:-23.989469px;}
.ws4d{word-spacing:-23.969033px;}
.ws3c{word-spacing:-23.942347px;}
.ws37{word-spacing:-23.852263px;}
.ws6e{word-spacing:-23.674711px;}
.ws71{word-spacing:-23.573316px;}
.ws6a{word-spacing:-23.538638px;}
.ws47{word-spacing:-23.532290px;}
.ws66{word-spacing:-23.524809px;}
.ws3d{word-spacing:-23.495530px;}
.wse{word-spacing:-23.444623px;}
.ws4c{word-spacing:-23.372670px;}
.wsd{word-spacing:-23.367040px;}
.ws12{word-spacing:-23.316480px;}
.wsc{word-spacing:-23.289457px;}
.ws50{word-spacing:-22.467919px;}
.ws51{word-spacing:-22.227172px;}
.ws52{word-spacing:-22.167389px;}
.ws4f{word-spacing:-21.906445px;}
.ws65{word-spacing:-20.441528px;}
.ws68{word-spacing:-20.249422px;}
.ws3f{word-spacing:-20.240052px;}
.ws5d{word-spacing:-20.159236px;}
.ws62{word-spacing:-20.142344px;}
.wsf{word-spacing:-20.130163px;}
.ws6c{word-spacing:-20.126590px;}
.ws49{word-spacing:-20.106646px;}
.ws73{word-spacing:-20.100908px;}
.ws43{word-spacing:-20.074085px;}
.ws2c{word-spacing:-20.073185px;}
.ws61{word-spacing:-20.058888px;}
.ws39{word-spacing:-20.042727px;}
.ws67{word-spacing:-19.984508px;}
.ws60{word-spacing:-19.963919px;}
.ws6b{word-spacing:-19.913986px;}
.ws63{word-spacing:-19.894269px;}
.ws5e{word-spacing:-19.885163px;}
.ws74{word-spacing:-19.876304px;}
.ws6f{word-spacing:-19.852274px;}
.ws34{word-spacing:-19.848891px;}
.ws3a{word-spacing:-19.827966px;}
.ws64{word-spacing:-19.809123px;}
.ws44{word-spacing:-19.805575px;}
.ws69{word-spacing:-19.799517px;}
.ws40{word-spacing:-19.790356px;}
.ws3b{word-spacing:-19.774637px;}
.ws2d{word-spacing:-19.774527px;}
.ws6d{word-spacing:-19.768535px;}
.ws45{word-spacing:-19.751440px;}
.ws5f{word-spacing:-19.702037px;}
.ws2b{word-spacing:-19.701961px;}
.ws4a{word-spacing:-19.659913px;}
.ws10{word-spacing:-19.607532px;}
.ws2e{word-spacing:-19.552032px;}
.ws38{word-spacing:-19.541859px;}
.ws57{word-spacing:-16.757313px;}
.ws7{word-spacing:-16.726093px;}
.ws75{word-spacing:-16.701784px;}
.ws5b{word-spacing:-16.677976px;}
.ws8{word-spacing:-16.546870px;}
.ws5a{word-spacing:-16.528918px;}
.ws78{word-spacing:-16.522822px;}
.wsa{word-spacing:-16.502365px;}
.ws76{word-spacing:-16.478382px;}
.ws58{word-spacing:-16.459198px;}
.wsb{word-spacing:-16.308107px;}
.ws59{word-spacing:-16.239819px;}
.ws30{word-spacing:-14.195977px;}
.ws7e{word-spacing:-0.947520px;}
.ws81{word-spacing:-0.746640px;}
.ws7f{word-spacing:-0.549360px;}
.ws25{word-spacing:-0.095760px;}
.ws2{word-spacing:0.000000px;}
.ws1a{word-spacing:0.782784px;}
.ws0{word-spacing:1.152000px;}
.ws3e{word-spacing:1.590528px;}
.ws85{word-spacing:36.558720px;}
.ws7b{word-spacing:43.702848px;}
.ws6{word-spacing:52.510509px;}
.ws1e{word-spacing:139.752000px;}
.ws2f{word-spacing:152.431151px;}
.ws20{word-spacing:152.712000px;}
.ws1c{word-spacing:152.724000px;}
.ws33{word-spacing:172.205318px;}
.ws16{word-spacing:201.648000px;}
.ws35{word-spacing:205.094415px;}
.ws1d{word-spacing:221.412000px;}
.ws32{word-spacing:221.706523px;}
.ws18{word-spacing:331.224000px;}
.ws15{word-spacing:364.716000px;}
.ws31{word-spacing:367.686899px;}
.ws17{word-spacing:376.072800px;}
.ws83{word-spacing:504.816960px;}
.ws77{word-spacing:997.362412px;}
.ws21{word-spacing:1003.728000px;}
.ws7a{word-spacing:1010.874638px;}
.ws1f{word-spacing:2171.316000px;}
._b{margin-left:-654.642864px;}
._11{margin-left:-67.968000px;}
._f{margin-left:-11.124000px;}
._14{margin-left:-8.906373px;}
._a{margin-left:-7.632000px;}
._d{margin-left:-5.292000px;}
._12{margin-left:-3.583584px;}
._2{margin-left:-2.407680px;}
._1{margin-left:-1.248768px;}
._3{width:1.153008px;}
._0{width:2.366640px;}
._1a{width:3.675744px;}
._5{width:4.722912px;}
._13{width:6.387446px;}
._19{width:31.021248px;}
._c{width:33.969072px;}
._1b{width:37.907136px;}
._4{width:51.163680px;}
._1d{width:72.005376px;}
._6{width:91.223195px;}
._1c{width:116.028000px;}
._8{width:194.688000px;}
._e{width:226.764000px;}
._18{width:260.280768px;}
._7{width:278.736000px;}
._9{width:336.595680px;}
._10{width:586.776000px;}
._15{width:785.719154px;}
._16{width:895.834896px;}
._17{width:1563.816000px;}
._1e{width:2394.934512px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(240,109,25);}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(51,204,51);}
.fc3{color:rgb(204,0,0);}
.fc2{color:rgb(255,102,0);}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs39{font-size:54.000000px;}
.fs38{font-size:59.760000px;}
.fs36{font-size:60.078360px;}
.fs12{font-size:60.165801px;}
.fs2b{font-size:60.278104px;}
.fs11{font-size:63.267700px;}
.fs15{font-size:66.240000px;}
.fs16{font-size:66.384000px;}
.fs18{font-size:72.000000px;}
.fs22{font-size:72.096140px;}
.fs19{font-size:72.144000px;}
.fs2d{font-size:72.154272px;}
.fs20{font-size:72.205700px;}
.fs25{font-size:72.208939px;}
.fs35{font-size:72.305423px;}
.fs27{font-size:72.326063px;}
.fs32{font-size:72.397807px;}
.fs14{font-size:72.410660px;}
.fs2c{font-size:72.515238px;}
.fs23{font-size:72.805944px;}
.fs30{font-size:72.839646px;}
.fs2e{font-size:73.530676px;}
.fsf{font-size:77.760000px;}
.fs1f{font-size:78.160871px;}
.fs29{font-size:80.819851px;}
.fs13{font-size:84.054101px;}
.fs9{font-size:84.240000px;}
.fs17{font-size:84.384000px;}
.fs21{font-size:86.769045px;}
.fs26{font-size:86.904801px;}
.fs28{font-size:86.972558px;}
.fs34{font-size:87.046713px;}
.fs33{font-size:87.095377px;}
.fs24{font-size:87.549618px;}
.fs31{font-size:87.590146px;}
.fs2f{font-size:88.522084px;}
.fs5{font-size:95.760000px;}
.fs1a{font-size:95.904000px;}
.fs2a{font-size:97.268194px;}
.fse{font-size:102.240000px;}
.fsd{font-size:102.384000px;}
.fs4{font-size:108.000000px;}
.fs1e{font-size:108.144000px;}
.fs3d{font-size:113.760000px;}
.fs3e{font-size:113.904000px;}
.fs2{font-size:120.240000px;}
.fs1{font-size:120.384000px;}
.fs37{font-size:131.760000px;}
.fs3c{font-size:131.904000px;}
.fs3{font-size:144.000000px;}
.fs1b{font-size:144.144000px;}
.fs3b{font-size:149.760000px;}
.fsc{font-size:156.240000px;}
.fs1d{font-size:162.000000px;}
.fs1c{font-size:162.144000px;}
.fsa{font-size:167.760000px;}
.fsb{font-size:167.904000px;}
.fs6{font-size:192.240000px;}
.fs7{font-size:192.384000px;}
.fs3a{font-size:216.000000px;}
.fs10{font-size:216.144000px;}
.fs0{font-size:239.760000px;}
.fs8{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.357263px;}
.y51{bottom:5.400000px;}
.y1c0{bottom:14.220000px;}
.y198{bottom:19.404000px;}
.yf{bottom:22.464000px;}
.y1b0{bottom:23.508000px;}
.yd9{bottom:27.540000px;}
.yd3{bottom:32.040000px;}
.y4c{bottom:40.212000px;}
.yd6{bottom:41.171504px;}
.y13c{bottom:41.672976px;}
.y165{bottom:44.031839px;}
.y169{bottom:44.153730px;}
.y170{bottom:44.495162px;}
.yd8{bottom:46.655114px;}
.y1c3{bottom:54.180000px;}
.y1ee{bottom:54.792000px;}
.y174{bottom:54.798260px;}
.y138{bottom:54.802652px;}
.y7{bottom:55.260000px;}
.y1bf{bottom:57.456000px;}
.y1bb{bottom:58.176000px;}
.y13b{bottom:59.801785px;}
.y144{bottom:59.801789px;}
.y4b{bottom:60.012000px;}
.y10d{bottom:61.447006px;}
.y18b{bottom:61.560000px;}
.yd5{bottom:63.058908px;}
.y185{bottom:64.124526px;}
.ydc{bottom:64.368379px;}
.yd2{bottom:64.440000px;}
.y155{bottom:64.537973px;}
.y15c{bottom:65.010076px;}
.y168{bottom:66.049454px;}
.y164{bottom:66.162359px;}
.y16f{bottom:66.269006px;}
.y186{bottom:67.068686px;}
.y134{bottom:67.932328px;}
.y1c2{bottom:70.380000px;}
.yd7{bottom:72.090849px;}
.y137{bottom:72.931461px;}
.y61{bottom:73.908000px;}
.y60{bottom:75.816000px;}
.y16b{bottom:76.300899px;}
.y166{bottom:77.227614px;}
.y153{bottom:77.669152px;}
.y13a{bottom:77.929092px;}
.y143{bottom:77.929096px;}
.y109{bottom:79.095044px;}
.ycd{bottom:80.036175px;}
.y130{bottom:80.988377px;}
.y142{bottom:81.995119px;}
.y184{bottom:82.163348px;}
.y4e{bottom:82.404000px;}
.y154{bottom:82.666783px;}
.y27{bottom:83.107168px;}
.ybb{bottom:83.664000px;}
.yaa{bottom:84.132000px;}
.y10c{bottom:85.764055px;}
.y133{bottom:86.061138px;}
.yc5{bottom:89.616929px;}
.y151{bottom:90.836393px;}
.y2e{bottom:90.901339px;}
.y136{bottom:91.060271px;}
.y1ed{bottom:91.548000px;}
.y97{bottom:92.412000px;}
.y2c{bottom:93.283074px;}
.y30{bottom:94.000353px;}
.y12c{bottom:94.118053px;}
.y31{bottom:95.040000px;}
.y141{bottom:95.124795px;}
.y152{bottom:95.796459px;}
.y139{bottom:96.020337px;}
.y105{bottom:96.593624px;}
.yd1{bottom:96.876000px;}
.y197{bottom:97.056000px;}
.y12f{bottom:99.079622px;}
.yeb{bottom:99.451479px;}
.y149{bottom:99.676164px;}
.ycc{bottom:101.728437px;}
.y4d{bottom:102.204000px;}
.y108{bottom:103.412092px;}
.y14f{bottom:103.853375px;}
.y132{bottom:104.189947px;}
.y128{bottom:107.136537px;}
.y7d{bottom:107.172000px;}
.y6c{bottom:107.820000px;}
.y140{bottom:108.143279px;}
.y68{bottom:108.396000px;}
.y3e{bottom:108.799422px;}
.y150{bottom:108.963700px;}
.y135{bottom:109.187578px;}
.y11d{bottom:111.333317px;}
.yc4{bottom:112.209697px;}
.y12b{bottom:112.246863px;}
.y101{bottom:114.241662px;}
.yba{bottom:116.064000px;}
.y95{bottom:116.280000px;}
.yd{bottom:116.316000px;}
.y14d{bottom:116.984553px;}
.yea{bottom:117.099516px;}
.y12e{bottom:117.208431px;}
.y148{bottom:117.767409px;}
.y183{bottom:118.650861px;}
.yab{bottom:120.024000px;}
.y124{bottom:120.266213px;}
.yb7{bottom:120.564000px;}
.y104{bottom:120.910673px;}
.y13f{bottom:121.310520px;}
.y1e0{bottom:121.536000px;}
.yac{bottom:121.716000px;}
.y14e{bottom:121.982184px;}
.y2f{bottom:122.079336px;}
.y131{bottom:122.317254px;}
.y28{bottom:125.242721px;}
.y127{bottom:125.265347px;}
.ye1{bottom:126.228931px;}
.y20{bottom:127.476000px;}
.y11b{bottom:128.831897px;}
.yd0{bottom:129.276000px;}
.y1d1{bottom:130.140000px;}
.y12a{bottom:130.375672px;}
.y14b{bottom:130.375681px;}
.ye3{bottom:131.631427px;}
.yfd{bottom:131.889700px;}
.y7c{bottom:132.372000px;}
.y179{bottom:132.479990px;}
.y16a{bottom:133.672809px;}
.y13e{bottom:134.329004px;}
.y3d{bottom:134.478443px;}
.ye9{bottom:134.598097px;}
.y14c{bottom:135.111860px;}
.y12d{bottom:135.335738px;}
.y11c{bottom:135.650365px;}
.y147{bottom:135.896219px;}
.y172{bottom:136.203382px;}
.ya9{bottom:136.296000px;}
.y123{bottom:138.395023px;}
.y100{bottom:138.558711px;}
.y1df{bottom:142.056000px;}
.y126{bottom:143.392654px;}
.y1a2{bottom:143.532000px;}
.y2b{bottom:143.534653px;}
.y99{bottom:144.396000px;}
.y98{bottom:145.404000px;}
.y119{bottom:146.479935px;}
.y81{bottom:146.988000px;}
.y13d{bottom:147.458680px;}
.ye0{bottom:147.972070px;}
.y129{bottom:148.465414px;}
.y14a{bottom:148.465423px;}
.yf9{bottom:149.337788px;}
.y16c{bottom:151.200000px;}
.ye8{bottom:152.246135px;}
.y11a{bottom:153.148945px;}
.y1f{bottom:154.470000px;}
.y16e{bottom:154.974186px;}
.yfc{bottom:156.206748px;}
.y26{bottom:156.240000px;}
.y122{bottom:156.525335px;}
.y62{bottom:156.705000px;}
.ye2{bottom:157.079354px;}
.y1d0{bottom:157.500000px;}
.y178{bottom:158.534465px;}
.y94{bottom:159.510000px;}
.y63{bottom:160.560000px;}
.y125{bottom:161.528976px;}
.y162{bottom:163.509045px;}
.y117{bottom:163.978516px;}
.y47{bottom:164.190000px;}
.y173{bottom:166.533363px;}
.yf5{bottom:166.987845px;}
.y1de{bottom:169.410000px;}
.ye7{bottom:169.744716px;}
.y1ec{bottom:170.025000px;}
.y111{bottom:170.496054px;}
.y118{bottom:170.796983px;}
.y2a{bottom:171.358778px;}
.y37{bottom:173.253329px;}
.yf8{bottom:173.705329px;}
.yde{bottom:173.759076px;}
.y1ba{bottom:173.805000px;}
.y18a{bottom:174.187612px;}
.y196{bottom:174.450000px;}
.y121{bottom:174.646631px;}
.ya8{bottom:175.170000px;}
.y1ad{bottom:175.320000px;}
.ydb{bottom:175.507638px;}
.y2d{bottom:176.180050px;}
.y16d{bottom:176.748030px;}
.y115{bottom:181.576061px;}
.y177{bottom:183.957290px;}
.yf3{bottom:184.484406px;}
.y161{bottom:185.206047px;}
.y1e{bottom:186.870000px;}
.ye6{bottom:187.392753px;}
.y171{bottom:187.635855px;}
.y116{bottom:188.295564px;}
.y10b{bottom:188.445014px;}
.y75{bottom:188.460000px;}
.y146{bottom:189.837875px;}
.yf4{bottom:191.353367px;}
.y1cf{bottom:192.780000px;}
.y110{bottom:194.813103px;}
.y6{bottom:195.090000px;}
.y1dd{bottom:196.815000px;}
.yda{bottom:197.232034px;}
.yaf{bottom:198.825000px;}
.y195{bottom:198.975000px;}
.ydd{bottom:199.018490px;}
.y96{bottom:199.050000px;}
.y113{bottom:199.527052px;}
.y29{bottom:199.537602px;}
.y157{bottom:201.948781px;}
.yf1{bottom:202.130424px;}
.ye5{bottom:204.836802px;}
.y107{bottom:205.947635px;}
.y114{bottom:205.947641px;}
.y1eb{bottom:206.025000px;}
.y160{bottom:206.861680px;}
.ye4{bottom:207.179980px;}
.y46{bottom:207.390000px;}
.y145{bottom:207.959172px;}
.yc{bottom:208.470000px;}
.yf2{bottom:208.795396px;}
.y1b9{bottom:209.805000px;}
.y5f{bottom:210.240000px;}
.y1ac{bottom:211.320000px;}
.y10a{bottom:212.753984px;}
.y1d{bottom:213.915000px;}
.y5e{bottom:215.430000px;}
.y180{bottom:215.595083px;}
.ybd{bottom:218.130000px;}
.yef{bottom:219.641123px;}
.ya7{bottom:222.735000px;}
.y156{bottom:223.105320px;}
.y103{bottom:223.599712px;}
.y79{bottom:223.770000px;}
.y112{bottom:223.902671px;}
.yae{bottom:224.070000px;}
.y188{bottom:224.603229px;}
.y182{bottom:224.603231px;}
.y1dc{bottom:225.075000px;}
.yf0{bottom:226.447473px;}
.y194{bottom:229.575000px;}
.y106{bottom:230.264683px;}
.y1ce{bottom:231.330000px;}
.y40{bottom:231.665998px;}
.yc9{bottom:232.453125px;}
.y17f{bottom:233.671439px;}
.y6b{bottom:235.410000px;}
.y5{bottom:235.950000px;}
.y1bd{bottom:239.295000px;}
.y1ea{bottom:240.945000px;}
.yff{bottom:241.191198px;}
.ycb{bottom:241.587670px;}
.y187{bottom:242.679585px;}
.y181{bottom:242.679587px;}
.y175{bottom:243.816524px;}
.yee{bottom:243.958172px;}
.y102{bottom:247.916760px;}
.y36{bottom:248.535757px;}
.y19a{bottom:248.685000px;}
.ybc{bottom:250.530000px;}
.y45{bottom:250.590000px;}
.y1c{bottom:250.635000px;}
.y15b{bottom:251.342070px;}
.y17e{bottom:251.702754px;}
.y15f{bottom:252.277354px;}
.y78{bottom:252.570000px;}
.y3f{bottom:252.835892px;}
.yad{bottom:253.335000px;}
.yc7{bottom:255.358698px;}
.yfb{bottom:258.681700px;}
.y1ae{bottom:258.765000px;}
.yc3{bottom:259.560000px;}
.y193{bottom:261.255000px;}
.ya6{bottom:261.615000px;}
.yd4{bottom:262.979980px;}
.yca{bottom:263.279932px;}
.y1cd{bottom:265.530000px;}
.yfe{bottom:265.548640px;}
.y35{bottom:266.608351px;}
.y1bc{bottom:268.095000px;}
.y158{bottom:270.539980px;}
.y1e9{bottom:271.590000px;}
.y15a{bottom:272.997705px;}
.y15e{bottom:273.932989px;}
.y199{bottom:274.065000px;}
.yf7{bottom:276.333777px;}
.yc6{bottom:276.453677px;}
.y10f{bottom:279.403709px;}
.y77{bottom:281.370000px;}
.yfa{bottom:283.059339px;}
.yc8{bottom:284.399980px;}
.y34{bottom:284.711016px;}
.y176{bottom:284.759980px;}
.y120{bottom:284.939980px;}
.y7f{bottom:285.870000px;}
.y1db{bottom:287.535000px;}
.y83{bottom:292.935000px;}
.yed{bottom:293.844476px;}
.y159{bottom:294.689312px;}
.y50{bottom:295.230000px;}
.y15d{bottom:295.624596px;}
.y189{bottom:296.323125px;}
.y4{bottom:296.820000px;}
.y192{bottom:297.255000px;}
.y1b4{bottom:298.335000px;}
.y13{bottom:298.905000px;}
.yf6{bottom:300.650825px;}
.yb{bottom:300.675000px;}
.y1cc{bottom:300.810000px;}
.y1e8{bottom:303.270000px;}
.y10e{bottom:303.720757px;}
.y15{bottom:309.030000px;}
.y76{bottom:310.215000px;}
.y7e{bottom:311.115000px;}
.y8f{bottom:314.250000px;}
.y1da{bottom:314.895000px;}
.y4f{bottom:315.075000px;}
.yec{bottom:318.161524px;}
.y11f{bottom:325.614168px;}
.y82{bottom:328.935000px;}
.yb2{bottom:330.690000px;}
.y3{bottom:332.850000px;}
.y5c{bottom:333.825000px;}
.y191{bottom:333.975000px;}
.y56{bottom:334.005000px;}
.y8a{bottom:334.185000px;}
.y5b{bottom:334.590000px;}
.y87{bottom:335.880000px;}
.y1e7{bottom:338.190000px;}
.y1b7{bottom:338.295000px;}
.ycf{bottom:340.427984px;}
.yb6{bottom:341.250000px;}
.y1cb{bottom:341.310000px;}
.y1d9{bottom:343.155000px;}
.y8d{bottom:345.165000px;}
.y44{bottom:346.245000px;}
.y1af{bottom:346.710000px;}
.y7b{bottom:349.275000px;}
.y12{bottom:349.305000px;}
.y1b{bottom:350.535000px;}
.ybe{bottom:352.410000px;}
.y11e{bottom:354.051382px;}
.y59{bottom:355.425000px;}
.y55{bottom:355.605000px;}
.yb1{bottom:355.890000px;}
.y5a{bottom:356.190000px;}
.y8b{bottom:356.220000px;}
.y14{bottom:359.430000px;}
.y74{bottom:362.130000px;}
.ya5{bottom:362.595000px;}
.y89{bottom:363.030000px;}
.y33{bottom:363.135850px;}
.yce{bottom:365.795679px;}
.y43{bottom:366.090000px;}
.y11{bottom:366.990000px;}
.y1b6{bottom:367.095000px;}
.y1e6{bottom:368.790000px;}
.y8e{bottom:370.515000px;}
.y167{bottom:372.959959px;}
.y1a1{bottom:374.655000px;}
.y86{bottom:379.080000px;}
.y32{bottom:381.238515px;}
.y7a{bottom:381.675000px;}
.y58{bottom:382.710000px;}
.y1a{bottom:384.225000px;}
.y91{bottom:384.810000px;}
.y3c{bottom:386.200209px;}
.yb5{bottom:386.670000px;}
.y17d{bottom:389.302250px;}
.y17c{bottom:389.302254px;}
.y88{bottom:389.310000px;}
.yb0{bottom:391.395000px;}
.ya{bottom:392.835000px;}
.y57{bottom:393.630000px;}
.y2{bottom:395.895000px;}
.y1e5{bottom:400.470000px;}
.ya4{bottom:401.505000px;}
.y19d{bottom:405.150000px;}
.y1d8{bottom:405.645000px;}
.y17b{bottom:407.378610px;}
.y1a0{bottom:410.070000px;}
.y3b{bottom:411.730379px;}
.y190{bottom:412.485000px;}
.y8c{bottom:414.285000px;}
.y10{bottom:417.390000px;}
.y90{bottom:420.810000px;}
.y19{bottom:420.945000px;}
.y1ca{bottom:430.455000px;}
.y19f{bottom:431.715000px;}
.y1d7{bottom:433.005000px;}
.y17a{bottom:433.772490px;}
.y1e4{bottom:437.220000px;}
.y1aa{bottom:438.480000px;}
.y1a9{bottom:444.420000px;}
.y18f{bottom:448.485000px;}
.y38{bottom:449.499395px;}
.y69{bottom:449.535000px;}
.ya3{bottom:450.105000px;}
.y19e{bottom:453.315000px;}
.y25{bottom:458.565000px;}
.y6e{bottom:458.640000px;}
.y1d6{bottom:460.365000px;}
.y1{bottom:467.925000px;}
.y1c9{bottom:468.975000px;}
.yb8{bottom:471.600000px;}
.ydf{bottom:473.039959px;}
.yc2{bottom:473.550000px;}
.y1a8{bottom:480.420000px;}
.y54{bottom:480.525000px;}
.y6a{bottom:483.480000px;}
.y9{bottom:485.025000px;}
.y18e{bottom:485.205000px;}
.y39{bottom:485.223591px;}
.y163{bottom:488.159959px;}
.y1d5{bottom:488.625000px;}
.y6d{bottom:491.040000px;}
.y93{bottom:493.950000px;}
.y24{bottom:501.765000px;}
.ya2{bottom:502.485000px;}
.y1c8{bottom:504.255000px;}
.yc1{bottom:505.980000px;}
.y19c{bottom:506.955000px;}
.y4a{bottom:507.090000px;}
.yb9{bottom:509.730000px;}
.y1e3{bottom:515.700000px;}
.y1a7{bottom:516.450000px;}
.y1b3{bottom:517.320000px;}
.y18{bottom:520.845000px;}
.y92{bottom:529.950000px;}
.y19b{bottom:534.390000px;}
.ya1{bottom:541.365000px;}
.y1c7{bottom:542.775000px;}
.y53{bottom:543.240000px;}
.y23{bottom:544.965000px;}
.y9c{bottom:546.405000px;}
.y70{bottom:550.830000px;}
.y1d4{bottom:551.130000px;}
.y6f{bottom:551.235000px;}
.y1e2{bottom:551.700000px;}
.y1a6{bottom:552.450000px;}
.y9f{bottom:553.785000px;}
.y17{bottom:554.550000px;}
.y18d{bottom:563.730000px;}
.y1b2{bottom:564.090000px;}
.y65{bottom:567.435000px;}
.y66{bottom:567.795000px;}
.y64{bottom:568.155000px;}
.y67{bottom:569.310000px;}
.y1b8{bottom:574.170000px;}
.y85{bottom:576.390000px;}
.y8{bottom:577.185000px;}
.y1c6{bottom:578.085000px;}
.y1d3{bottom:578.490000px;}
.y9d{bottom:582.990000px;}
.y9a{bottom:584.025000px;}
.y1e1{bottom:587.700000px;}
.yb4{bottom:588.060000px;}
.y1a5{bottom:588.450000px;}
.y22{bottom:589.470000px;}
.ya0{bottom:590.010000px;}
.y16{bottom:591.270000px;}
.y9e{bottom:596.985000px;}
.yc0{bottom:597.885000px;}
.y49{bottom:599.610000px;}
.y1b1{bottom:600.090000px;}
.y18c{bottom:600.450000px;}
.y42{bottom:601.485000px;}
.y1d2{bottom:606.750000px;}
.y5d{bottom:614.415000px;}
.y9b{bottom:617.295000px;}
.y1c5{bottom:618.585000px;}
.y1b5{bottom:619.170000px;}
.y41{bottom:621.285000px;}
.y1a4{bottom:624.450000px;}
.ybf{bottom:630.285000px;}
.yb3{bottom:630.510000px;}
.y48{bottom:632.010000px;}
.y84{bottom:640.005000px;}
.y52{bottom:641.910000px;}
.y80{bottom:659.805000px;}
.y71{bottom:660.390000px;}
.y72{bottom:661.320000px;}
.y73{bottom:661.860000px;}
.y1ab{bottom:711.285000px;}
.ye{bottom:722.235000px;}
.y1a3{bottom:722.775000px;}
.y21{bottom:724.395000px;}
.y1c4{bottom:726.630000px;}
.y1c1{bottom:728.355000px;}
.y1be{bottom:744.480000px;}
.h63{height:41.291016px;}
.h18{height:50.650312px;}
.h19{height:50.760422px;}
.h32{height:53.010474px;}
.h1e{height:55.054688px;}
.h1f{height:55.164797px;}
.h5f{height:59.097656px;}
.h60{height:59.215852px;}
.h57{height:62.659852px;}
.h15{height:62.751050px;}
.h46{height:62.868179px;}
.h23{height:63.262687px;}
.h28{height:63.824414px;}
.h27{height:63.920391px;}
.h2d{height:64.331719px;}
.h30{height:64.441688px;}
.h1c{height:64.524094px;}
.h13{height:65.986234px;}
.h6{height:73.222734px;}
.h24{height:73.332844px;}
.h37{height:75.194021px;}
.h49{height:75.254651px;}
.h33{height:75.308289px;}
.h3d{height:75.311667px;}
.h56{height:75.412297px;}
.h40{height:75.433824px;}
.h51{height:75.508650px;}
.h17{height:75.522055px;}
.h47{height:75.631127px;}
.h3a{height:75.934324px;}
.h4e{height:75.969475px;}
.h4b{height:76.690197px;}
.h10{height:81.101250px;}
.h2f{height:82.476562px;}
.h1b{height:82.582031px;}
.h2e{height:82.586531px;}
.h38{height:82.692141px;}
.h6a{height:83.258930px;}
.h25{height:84.202031px;}
.h43{height:84.292579px;}
.h16{height:87.665801px;}
.ha{height:87.859687px;}
.h26{height:88.009875px;}
.h61{height:90.414844px;}
.h36{height:90.497403px;}
.h3e{height:90.638992px;}
.h41{height:90.709661px;}
.h54{height:90.787002px;}
.h52{height:90.837756px;}
.h3b{height:91.311515px;}
.h4f{height:91.353785px;}
.h1d{height:91.941328px;}
.h29{height:92.051438px;}
.h4c{height:92.325767px;}
.h68{height:96.310898px;}
.h20{height:97.774688px;}
.h21{height:98.254688px;}
.h5d{height:99.874688px;}
.h44{height:101.447686px;}
.hf{height:106.633125px;}
.he{height:106.783312px;}
.h4a{height:109.972211px;}
.h1a{height:110.109375px;}
.h2a{height:110.219484px;}
.h5a{height:111.685117px;}
.h5{height:112.640625px;}
.h5b{height:113.853375px;}
.h5e{height:118.195312px;}
.h67{height:118.648125px;}
.h69{height:118.798312px;}
.h22{height:120.694687px;}
.h3{height:125.406562px;}
.h2{height:125.556750px;}
.hb{height:128.277422px;}
.hc{height:128.387531px;}
.h58{height:134.965275px;}
.h5c{height:137.421562px;}
.h66{height:137.571750px;}
.h59{height:146.591795px;}
.h4{height:150.187500px;}
.h62{height:150.337688px;}
.h65{height:156.195000px;}
.h34{height:159.688206px;}
.hd{height:162.953438px;}
.h4d{height:165.597217px;}
.h2c{height:168.960938px;}
.h2b{height:169.111125px;}
.h39{height:174.603214px;}
.h3f{height:188.998100px;}
.h7{height:200.500313px;}
.h8{height:200.650500px;}
.h53{height:203.397014px;}
.h64{height:225.281250px;}
.h11{height:225.431438px;}
.h45{height:240.114713px;}
.h1{height:250.062187px;}
.h9{height:250.212375px;}
.h12{height:257.222085px;}
.h50{height:275.398975px;}
.h31{height:292.496056px;}
.h48{height:327.604444px;}
.h3c{height:354.602625px;}
.h42{height:376.570924px;}
.h35{height:385.199811px;}
.h55{height:467.988453px;}
.h14{height:505.225682px;}
.h0{height:810.000000px;}
.wf{width:187.386706px;}
.wb{width:334.982521px;}
.we{width:349.201322px;}
.wd{width:410.403375px;}
.w8{width:471.609261px;}
.w6{width:498.789475px;}
.wc{width:516.423375px;}
.w7{width:554.389856px;}
.w2{width:620.818344px;}
.w3{width:625.516537px;}
.w5{width:707.407190px;}
.w10{width:744.143400px;}
.wa{width:811.448845px;}
.w4{width:823.515570px;}
.w1{width:1079.999984px;}
.w9{width:1079.999999px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5b{left:4.427984px;}
.x2c{left:8.121272px;}
.x8d{left:12.969462px;}
.x97{left:14.939984px;}
.x6b{left:16.595984px;}
.x125{left:20.951984px;}
.x83{left:23.543984px;}
.x3a{left:25.019984px;}
.x6a{left:28.835984px;}
.x82{left:32.003984px;}
.x2b{left:33.603405px;}
.x6{left:36.179984px;}
.x29{left:38.557171px;}
.x94{left:39.628555px;}
.x27{left:42.283374px;}
.x26{left:45.226221px;}
.xfe{left:46.979291px;}
.x18{left:49.067984px;}
.x2a{left:50.292547px;}
.x3d{left:51.947984px;}
.x95{left:53.301212px;}
.x28{left:54.353405px;}
.x1b{left:59.173134px;}
.x11f{left:60.587984px;}
.x14{left:64.799984px;}
.x11d{left:65.951984px;}
.x116{left:67.499984px;}
.x68{left:68.507984px;}
.x115{left:70.199984px;}
.x3b{left:72.719984px;}
.x7d{left:77.039984px;}
.x1c{left:78.495850px;}
.x7c{left:84.959984px;}
.xfb{left:88.506299px;}
.xe9{left:89.833783px;}
.x126{left:91.691984px;}
.xf4{left:92.779930px;}
.x1{left:96.047984px;}
.x102{left:97.767347px;}
.xcc{left:99.310319px;}
.x3e{left:100.367984px;}
.x19{left:103.067984px;}
.xf5{left:104.870759px;}
.xf3{left:106.930691px;}
.x100{left:111.598377px;}
.x80{left:112.643984px;}
.x111{left:114.083984px;}
.x92{left:116.279990px;}
.x2{left:117.647984px;}
.x15{left:118.835984px;}
.x56{left:120.095984px;}
.x62{left:122.399984px;}
.x8b{left:127.439990px;}
.x117{left:129.275984px;}
.x24{left:131.687984px;}
.xd8{left:133.559990px;}
.x45{left:148.139984px;}
.x7e{left:152.669984px;}
.x105{left:154.253506px;}
.xa{left:156.704984px;}
.x96{left:158.504984px;}
.x10b{left:160.349984px;}
.xf9{left:164.515001px;}
.xfc{left:167.526221px;}
.x4d{left:171.029984px;}
.x16{left:172.829984px;}
.x8e{left:174.419438px;}
.xf8{left:179.605538px;}
.x1f{left:185.377884px;}
.x10c{left:189.149984px;}
.x25{left:191.339980px;}
.x9f{left:193.322900px;}
.x87{left:198.149984px;}
.x1a{left:199.799980px;}
.x3{left:203.219984px;}
.x123{left:204.584984px;}
.x124{left:205.664984px;}
.x52{left:208.184984px;}
.x11c{left:212.834984px;}
.x1d{left:214.281233px;}
.x9b{left:216.998531px;}
.x7a{left:218.804984px;}
.x7b{left:222.764984px;}
.x58{left:227.729984px;}
.x8a{left:229.784984px;}
.x7f{left:231.404984px;}
.x6f{left:234.614984px;}
.x78{left:238.034984px;}
.x1e{left:242.751432px;}
.x101{left:243.963049px;}
.xf7{left:246.452325px;}
.xd{left:248.504984px;}
.x107{left:251.423316px;}
.x7{left:253.079984px;}
.xea{left:255.008341px;}
.x88{left:256.649984px;}
.xf6{left:258.555780px;}
.x127{left:261.644984px;}
.x20{left:267.808879px;}
.xeb{left:269.762502px;}
.x2e{left:272.885015px;}
.x17{left:277.049984px;}
.x10{left:279.869984px;}
.xec{left:281.829997px;}
.x81{left:283.469984px;}
.x104{left:287.248771px;}
.x2d{left:288.792282px;}
.x85{left:291.704984px;}
.x36{left:293.789984px;}
.xee{left:295.803674px;}
.x35{left:297.749984px;}
.xce{left:299.917750px;}
.x50{left:304.919984px;}
.x109{left:306.689984px;}
.xf0{left:309.777351px;}
.xed{left:311.938691px;}
.xcb{left:312.972725px;}
.x55{left:315.029984px;}
.x120{left:316.874984px;}
.xd0{left:319.923292px;}
.xcd{left:321.575310px;}
.xef{left:325.912368px;}
.x38{left:328.649984px;}
.x37{left:332.969984px;}
.x9c{left:335.933883px;}
.x33{left:337.969817px;}
.x46{left:339.989984px;}
.xcf{left:341.520412px;}
.x47{left:345.779984px;}
.x48{left:351.539984px;}
.xfa{left:353.879959px;}
.x21{left:357.131014px;}
.xf2{left:358.349984px;}
.xd1{left:360.276867px;}
.x34{left:361.769984px;}
.x118{left:373.679984px;}
.xd7{left:374.909984px;}
.xd3{left:376.333681px;}
.x119{left:377.819984px;}
.xd2{left:379.073614px;}
.xa0{left:380.382853px;}
.x128{left:381.749984px;}
.x4{left:383.939984px;}
.x11b{left:389.234984px;}
.x8c{left:395.198599px;}
.x5f{left:398.309984px;}
.xa1{left:400.109984px;}
.x11a{left:401.429984px;}
.x108{left:405.241755px;}
.x13{left:410.549984px;}
.x5{left:414.614984px;}
.xd4{left:416.284325px;}
.x9d{left:417.497239px;}
.x122{left:423.359984px;}
.x98{left:426.779959px;}
.x6e{left:429.914984px;}
.x54{left:432.974984px;}
.x8{left:436.829984px;}
.x9a{left:437.939959px;}
.x99{left:440.072265px;}
.x79{left:441.389984px;}
.x8f{left:442.459085px;}
.xe3{left:443.510384px;}
.x76{left:447.044984px;}
.x6c{left:448.274984px;}
.x9e{left:451.799959px;}
.x75{left:456.224984px;}
.xe4{left:457.589126px;}
.xfd{left:459.899959px;}
.x106{left:464.740817px;}
.x22{left:468.465367px;}
.xe5{left:471.562803px;}
.x77{left:476.024984px;}
.x6d{left:480.314984px;}
.xe6{left:485.641546px;}
.xe8{left:492.981104px;}
.x23{left:497.368724px;}
.xe7{left:499.660250px;}
.x4c{left:503.069984px;}
.x84{left:507.029984px;}
.x4b{left:512.069984px;}
.x93{left:513.934758px;}
.x2f{left:520.063218px;}
.xff{left:521.099959px;}
.x31{left:523.004576px;}
.x32{left:531.243351px;}
.x30{left:536.975966px;}
.x4e{left:543.239984px;}
.x10a{left:547.919984px;}
.x110{left:549.644984px;}
.x10d{left:552.524984px;}
.x10e{left:559.334984px;}
.x44{left:561.674984px;}
.xda{left:564.455479px;}
.xd9{left:566.616820px;}
.x10f{left:570.134984px;}
.xdc{left:578.564239px;}
.xdb{left:580.590497px;}
.xde{left:592.537916px;}
.xdd{left:594.669239px;}
.xaa{left:602.237142px;}
.xab{left:607.535689px;}
.xdf{left:608.642916px;}
.xa9{left:611.746321px;}
.xb4{left:619.643776px;}
.xe0{left:622.766686px;}
.xac{left:623.995435px;}
.xad{left:626.292144px;}
.xb3{left:629.152956px;}
.xe1{left:634.684087px;}
.xba{left:637.151143px;}
.x3f{left:638.639984px;}
.xb5{left:641.543095px;}
.xae{left:642.751889px;}
.xb6{left:643.859951px;}
.xaf{left:645.209771px;}
.xb9{left:646.700616px;}
.xb{left:648.869984px;}
.xe2{left:650.699030px;}
.x90{left:653.765125px;}
.xbb{left:658.949730px;}
.xb7{left:660.299550px;}
.xb0{left:661.709810px;}
.xb1{left:663.946078px;}
.xf1{left:666.398773px;}
.xc0{left:672.105438px;}
.x4f{left:676.079984px;}
.xbc{left:677.867357px;}
.xb8{left:679.056004px;}
.xb2{left:680.466264px;}
.x4a{left:682.274984px;}
.x5d{left:686.489984px;}
.x5e{left:687.599984px;}
.xc4{left:689.653098px;}
.x40{left:690.659984px;}
.x72{left:693.389984px;}
.x70{left:694.949984px;}
.xbd{left:696.623811px;}
.xc{left:697.649984px;}
.x39{left:698.759984px;}
.x86{left:704.489984px;}
.x71{left:706.349984px;}
.xc5{left:711.471832px;}
.xc1{left:712.821652px;}
.x5c{left:714.599984px;}
.xbe{left:716.468180px;}
.x112{left:722.519984px;}
.xc8{left:728.878466px;}
.xc6{left:730.228286px;}
.xc2{left:731.578106px;}
.xbf{left:732.927926px;}
.x11{left:736.739984px;}
.x113{left:740.159984px;}
.xc9{left:747.775946px;}
.xc7{left:749.125767px;}
.xc3{left:750.475587px;}
.x11e{left:752.369984px;}
.x114{left:755.819984px;}
.x91{left:757.714185px;}
.x59{left:762.149984px;}
.x57{left:767.054984px;}
.xca{left:768.788816px;}
.x51{left:771.554984px;}
.xe{left:775.589984px;}
.x60{left:779.549984px;}
.x63{left:781.169984px;}
.x61{left:783.644984px;}
.x64{left:784.769984px;}
.x5a{left:786.134984px;}
.x12{left:832.349984px;}
.x3c{left:850.784984px;}
.x65{left:852.839984px;}
.x103{left:854.639919px;}
.x41{left:856.694984px;}
.x69{left:871.709984px;}
.x74{left:875.309984px;}
.x73{left:879.149984px;}
.x67{left:880.889984px;}
.x42{left:882.074984px;}
.x66{left:883.874984px;}
.xa2{left:891.823903px;}
.x49{left:894.269984px;}
.xf{left:898.889984px;}
.x89{left:902.879984px;}
.xa3{left:910.560211px;}
.xd5{left:911.769004px;}
.x121{left:919.949984px;}
.xa4{left:929.477838px;}
.xd6{left:932.681141px;}
.xa5{left:948.234293px;}
.xa6{left:966.990747px;}
.xa7{left:985.888228px;}
.xa8{left:1004.644682px;}
.x43{left:1025.999984px;}
.x53{left:1027.079984px;}
.x9{left:1037.699984px;}
@media print{
.v13{vertical-align:-114.944000pt;}
.v2{vertical-align:-113.634301pt;}
.v11{vertical-align:-83.456000pt;}
.vc{vertical-align:-78.686297pt;}
.v4{vertical-align:-65.397642pt;}
.v1{vertical-align:-58.676179pt;}
.v3{vertical-align:-34.424729pt;}
.v12{vertical-align:-32.000000pt;}
.v8{vertical-align:-9.386667pt;}
.v9{vertical-align:-7.946667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.440000pt;}
.vf{vertical-align:3.328000pt;}
.v7{vertical-align:7.296000pt;}
.ve{vertical-align:32.242507pt;}
.v5{vertical-align:37.973333pt;}
.v10{vertical-align:45.440000pt;}
.v6{vertical-align:58.346667pt;}
.vd{vertical-align:64.271487pt;}
.vb{vertical-align:75.004371pt;}
.ls2e{letter-spacing:-5.224185pt;}
.ls1c{letter-spacing:-3.872000pt;}
.ls5e{letter-spacing:-0.963849pt;}
.ls60{letter-spacing:-0.750379pt;}
.ls63{letter-spacing:-0.721264pt;}
.ls3e{letter-spacing:-0.716179pt;}
.ls48{letter-spacing:-0.624039pt;}
.ls62{letter-spacing:-0.602771pt;}
.ls36{letter-spacing:-0.582304pt;}
.ls65{letter-spacing:-0.562844pt;}
.ls5d{letter-spacing:-0.562137pt;}
.ls3b{letter-spacing:-0.557551pt;}
.ls35{letter-spacing:-0.556680pt;}
.ls6b{letter-spacing:-0.556152pt;}
.ls68{letter-spacing:-0.512057pt;}
.ls44{letter-spacing:-0.499087pt;}
.ls5c{letter-spacing:-0.486453pt;}
.ls67{letter-spacing:-0.478048pt;}
.ls16{letter-spacing:-0.464562pt;}
.ls2c{letter-spacing:-0.463247pt;}
.ls51{letter-spacing:-0.459994pt;}
.ls31{letter-spacing:-0.445216pt;}
.ls43{letter-spacing:-0.419377pt;}
.ls5f{letter-spacing:-0.406240pt;}
.ls61{letter-spacing:-0.399915pt;}
.ls37{letter-spacing:-0.399730pt;}
.ls29{letter-spacing:-0.397145pt;}
.ls3d{letter-spacing:-0.397096pt;}
.ls53{letter-spacing:-0.389473pt;}
.ls13{letter-spacing:-0.371542pt;}
.ls2a{letter-spacing:-0.329977pt;}
.ls66{letter-spacing:-0.318271pt;}
.ls58{letter-spacing:-0.317200pt;}
.ls6a{letter-spacing:-0.308646pt;}
.ls64{letter-spacing:-0.298166pt;}
.ls3a{letter-spacing:-0.286795pt;}
.ls49{letter-spacing:-0.268574pt;}
.ls47{letter-spacing:-0.267137pt;}
.ls71{letter-spacing:-0.265841pt;}
.ls2b{letter-spacing:-0.265474pt;}
.ls4f{letter-spacing:-0.264991pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls69{letter-spacing:-0.243837pt;}
.ls54{letter-spacing:-0.243621pt;}
.ls30{letter-spacing:-0.239584pt;}
.ls39{letter-spacing:-0.238675pt;}
.ls32{letter-spacing:-0.238303pt;}
.ls1d{letter-spacing:-0.232533pt;}
.ls2d{letter-spacing:-0.221228pt;}
.ls45{letter-spacing:-0.213997pt;}
.ls50{letter-spacing:-0.203017pt;}
.ls6d{letter-spacing:-0.199647pt;}
.ls2f{letter-spacing:-0.199372pt;}
.ls12{letter-spacing:-0.198869pt;}
.ls6e{letter-spacing:-0.198580pt;}
.ls33{letter-spacing:-0.190898pt;}
.ls38{letter-spacing:-0.187313pt;}
.ls6c{letter-spacing:-0.186237pt;}
.ls3f{letter-spacing:-0.186079pt;}
.ls34{letter-spacing:-0.159509pt;}
.ls11{letter-spacing:-0.159309pt;}
.ls6f{letter-spacing:-0.159077pt;}
.ls2{letter-spacing:-0.156267pt;}
.ls79{letter-spacing:-0.149867pt;}
.ls59{letter-spacing:-0.084416pt;}
.ls3c{letter-spacing:-0.080200pt;}
.ls52{letter-spacing:-0.070522pt;}
.ls14{letter-spacing:-0.068963pt;}
.ls18{letter-spacing:-0.033280pt;}
.ls7a{letter-spacing:-0.023680pt;}
.ls46{letter-spacing:-0.012136pt;}
.ls70{letter-spacing:-0.009021pt;}
.ls7c{letter-spacing:-0.003835pt;}
.ls28{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls78{letter-spacing:0.033280pt;}
.ls83{letter-spacing:0.048640pt;}
.ls42{letter-spacing:0.049464pt;}
.ls21{letter-spacing:0.051200pt;}
.ls5a{letter-spacing:0.059667pt;}
.ls15{letter-spacing:0.068963pt;}
.ls4c{letter-spacing:0.072456pt;}
.ls5b{letter-spacing:0.074184pt;}
.ls55{letter-spacing:0.088739pt;}
.ls4e{letter-spacing:0.093164pt;}
.ls76{letter-spacing:0.094933pt;}
.ls41{letter-spacing:0.121275pt;}
.ls4b{letter-spacing:0.125881pt;}
.ls20{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.153954pt;}
.ls1e{letter-spacing:0.170240pt;}
.ls4d{letter-spacing:0.179307pt;}
.ls19{letter-spacing:0.192000pt;}
.ls40{letter-spacing:0.264897pt;}
.ls4a{letter-spacing:0.341261pt;}
.ls10{letter-spacing:0.532797pt;}
.ls7b{letter-spacing:16.640000pt;}
.ls7{letter-spacing:25.630720pt;}
.ls5{letter-spacing:25.666219pt;}
.ls82{letter-spacing:28.257280pt;}
.lsc{letter-spacing:29.534720pt;}
.ls75{letter-spacing:32.801280pt;}
.ls17{letter-spacing:37.288320pt;}
.ls81{letter-spacing:37.345280pt;}
.ls8{letter-spacing:38.622720pt;}
.ls23{letter-spacing:49.130667pt;}
.ls7e{letter-spacing:55.108779pt;}
.ls80{letter-spacing:55.179947pt;}
.ls7f{letter-spacing:60.608000pt;}
.ls73{letter-spacing:60.802219pt;}
.ls74{letter-spacing:60.873387pt;}
.lsb{letter-spacing:60.894720pt;}
.ls87{letter-spacing:60.905387pt;}
.ls84{letter-spacing:64.004779pt;}
.ls85{letter-spacing:64.075947pt;}
.ls77{letter-spacing:64.192000pt;}
.lse{letter-spacing:68.695316pt;}
.ls4{letter-spacing:69.698219pt;}
.ls6{letter-spacing:69.769387pt;}
.ls9{letter-spacing:71.808000pt;}
.lsd{letter-spacing:93.283074pt;}
.ls22{letter-spacing:93.683200pt;}
.ls24{letter-spacing:93.728000pt;}
.ls3{letter-spacing:95.520000pt;}
.ls7d{letter-spacing:97.536000pt;}
.lsa{letter-spacing:99.200000pt;}
.ls86{letter-spacing:102.963200pt;}
.ls72{letter-spacing:103.136000pt;}
.lsf{letter-spacing:112.195655pt;}
.ls26{letter-spacing:139.260567pt;}
.ls1b{letter-spacing:169.130667pt;}
.ls27{letter-spacing:192.845780pt;}
.ls57{letter-spacing:533.387844pt;}
.ls56{letter-spacing:758.452068pt;}
.ls1a{letter-spacing:1082.656000pt;}
.ws4e{word-spacing:-59.282944pt;}
.ws4{word-spacing:-52.535296pt;}
.ws84{word-spacing:-50.995205pt;}
.ws3{word-spacing:-47.540224pt;}
.ws24{word-spacing:-45.101056pt;}
.ws26{word-spacing:-45.056000pt;}
.ws53{word-spacing:-41.687345pt;}
.ws5{word-spacing:-38.608640pt;}
.ws7d{word-spacing:-38.272000pt;}
.ws22{word-spacing:-37.666816pt;}
.ws23{word-spacing:-37.621760pt;}
.ws28{word-spacing:-35.584000pt;}
.ws1b{word-spacing:-33.792000pt;}
.ws9{word-spacing:-31.033867pt;}
.ws5c{word-spacing:-31.026043pt;}
.ws79{word-spacing:-30.988764pt;}
.ws27{word-spacing:-29.962240pt;}
.ws80{word-spacing:-29.712640pt;}
.ws19{word-spacing:-29.154816pt;}
.ws1{word-spacing:-26.688000pt;}
.ws11{word-spacing:-25.652736pt;}
.ws7c{word-spacing:-25.264640pt;}
.ws54{word-spacing:-24.036051pt;}
.ws56{word-spacing:-23.767478pt;}
.ws82{word-spacing:-23.663360pt;}
.ws55{word-spacing:-23.412013pt;}
.ws14{word-spacing:-22.573056pt;}
.ws13{word-spacing:-22.528000pt;}
.ws29{word-spacing:-21.724928pt;}
.ws2a{word-spacing:-21.696000pt;}
.ws41{word-spacing:-21.634483pt;}
.ws70{word-spacing:-21.510210pt;}
.ws4b{word-spacing:-21.491886pt;}
.ws46{word-spacing:-21.475142pt;}
.ws42{word-spacing:-21.447170pt;}
.ws36{word-spacing:-21.441595pt;}
.ws48{word-spacing:-21.394942pt;}
.ws72{word-spacing:-21.323973pt;}
.ws4d{word-spacing:-21.305807pt;}
.ws3c{word-spacing:-21.282086pt;}
.ws37{word-spacing:-21.202011pt;}
.ws6e{word-spacing:-21.044187pt;}
.ws71{word-spacing:-20.954058pt;}
.ws6a{word-spacing:-20.923234pt;}
.ws47{word-spacing:-20.917591pt;}
.ws66{word-spacing:-20.910942pt;}
.ws3d{word-spacing:-20.884915pt;}
.wse{word-spacing:-20.839665pt;}
.ws4c{word-spacing:-20.775707pt;}
.wsd{word-spacing:-20.770702pt;}
.ws12{word-spacing:-20.725760pt;}
.wsc{word-spacing:-20.701740pt;}
.ws50{word-spacing:-19.971483pt;}
.ws51{word-spacing:-19.757486pt;}
.ws52{word-spacing:-19.704346pt;}
.ws4f{word-spacing:-19.472396pt;}
.ws65{word-spacing:-18.170247pt;}
.ws68{word-spacing:-17.999486pt;}
.ws3f{word-spacing:-17.991158pt;}
.ws5d{word-spacing:-17.919321pt;}
.ws62{word-spacing:-17.904306pt;}
.wsf{word-spacing:-17.893479pt;}
.ws6c{word-spacing:-17.890302pt;}
.ws49{word-spacing:-17.872574pt;}
.ws73{word-spacing:-17.867473pt;}
.ws43{word-spacing:-17.843631pt;}
.ws2c{word-spacing:-17.842831pt;}
.ws61{word-spacing:-17.830122pt;}
.ws39{word-spacing:-17.815757pt;}
.ws67{word-spacing:-17.764007pt;}
.ws60{word-spacing:-17.745706pt;}
.ws6b{word-spacing:-17.701320pt;}
.ws63{word-spacing:-17.683794pt;}
.ws5e{word-spacing:-17.675700pt;}
.ws74{word-spacing:-17.667826pt;}
.ws6f{word-spacing:-17.646466pt;}
.ws34{word-spacing:-17.643459pt;}
.ws3a{word-spacing:-17.624859pt;}
.ws64{word-spacing:-17.608110pt;}
.ws44{word-spacing:-17.604956pt;}
.ws69{word-spacing:-17.599571pt;}
.ws40{word-spacing:-17.591427pt;}
.ws3b{word-spacing:-17.577455pt;}
.ws2d{word-spacing:-17.577357pt;}
.ws6d{word-spacing:-17.572032pt;}
.ws45{word-spacing:-17.556836pt;}
.ws5f{word-spacing:-17.512922pt;}
.ws2b{word-spacing:-17.512854pt;}
.ws4a{word-spacing:-17.475478pt;}
.ws10{word-spacing:-17.428917pt;}
.ws2e{word-spacing:-17.379584pt;}
.ws38{word-spacing:-17.370542pt;}
.ws57{word-spacing:-14.895389pt;}
.ws7{word-spacing:-14.867638pt;}
.ws75{word-spacing:-14.846030pt;}
.ws5b{word-spacing:-14.824867pt;}
.ws8{word-spacing:-14.708329pt;}
.ws5a{word-spacing:-14.692372pt;}
.ws78{word-spacing:-14.686953pt;}
.wsa{word-spacing:-14.668769pt;}
.ws76{word-spacing:-14.647451pt;}
.ws58{word-spacing:-14.630398pt;}
.wsb{word-spacing:-14.496096pt;}
.ws59{word-spacing:-14.435395pt;}
.ws30{word-spacing:-12.618646pt;}
.ws7e{word-spacing:-0.842240pt;}
.ws81{word-spacing:-0.663680pt;}
.ws7f{word-spacing:-0.488320pt;}
.ws25{word-spacing:-0.085120pt;}
.ws2{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.695808pt;}
.ws0{word-spacing:1.024000pt;}
.ws3e{word-spacing:1.413803pt;}
.ws85{word-spacing:32.496640pt;}
.ws7b{word-spacing:38.846976pt;}
.ws6{word-spacing:46.676008pt;}
.ws1e{word-spacing:124.224000pt;}
.ws2f{word-spacing:135.494356pt;}
.ws20{word-spacing:135.744000pt;}
.ws1c{word-spacing:135.754667pt;}
.ws33{word-spacing:153.071394pt;}
.ws16{word-spacing:179.242667pt;}
.ws35{word-spacing:182.306146pt;}
.ws1d{word-spacing:196.810667pt;}
.ws32{word-spacing:197.072465pt;}
.ws18{word-spacing:294.421333pt;}
.ws15{word-spacing:324.192000pt;}
.ws31{word-spacing:326.832799pt;}
.ws17{word-spacing:334.286933pt;}
.ws83{word-spacing:448.726187pt;}
.ws77{word-spacing:886.544366pt;}
.ws21{word-spacing:892.202667pt;}
.ws7a{word-spacing:898.555234pt;}
.ws1f{word-spacing:1930.058667pt;}
._b{margin-left:-581.904768pt;}
._11{margin-left:-60.416000pt;}
._f{margin-left:-9.888000pt;}
._14{margin-left:-7.916776pt;}
._a{margin-left:-6.784000pt;}
._d{margin-left:-4.704000pt;}
._12{margin-left:-3.185408pt;}
._2{margin-left:-2.140160pt;}
._1{margin-left:-1.110016pt;}
._3{width:1.024896pt;}
._0{width:2.103680pt;}
._1a{width:3.267328pt;}
._5{width:4.198144pt;}
._13{width:5.677730pt;}
._19{width:27.574443pt;}
._c{width:30.194731pt;}
._1b{width:33.695232pt;}
._4{width:45.478827pt;}
._1d{width:64.004779pt;}
._6{width:81.087285pt;}
._1c{width:103.136000pt;}
._8{width:173.056000pt;}
._e{width:201.568000pt;}
._18{width:231.360683pt;}
._7{width:247.765333pt;}
._9{width:299.196160pt;}
._10{width:521.578667pt;}
._15{width:698.417026pt;}
._16{width:796.297685pt;}
._17{width:1390.058667pt;}
._1e{width:2128.830677pt;}
.fs39{font-size:48.000000pt;}
.fs38{font-size:53.120000pt;}
.fs36{font-size:53.402986pt;}
.fs12{font-size:53.480712pt;}
.fs2b{font-size:53.580537pt;}
.fs11{font-size:56.237955pt;}
.fs15{font-size:58.880000pt;}
.fs16{font-size:59.008000pt;}
.fs18{font-size:64.000000pt;}
.fs22{font-size:64.085458pt;}
.fs19{font-size:64.128000pt;}
.fs2d{font-size:64.137130pt;}
.fs20{font-size:64.182845pt;}
.fs25{font-size:64.185724pt;}
.fs35{font-size:64.271487pt;}
.fs27{font-size:64.289834pt;}
.fs32{font-size:64.353606pt;}
.fs14{font-size:64.365031pt;}
.fs2c{font-size:64.457989pt;}
.fs23{font-size:64.716394pt;}
.fs30{font-size:64.746352pt;}
.fs2e{font-size:65.360601pt;}
.fsf{font-size:69.120000pt;}
.fs1f{font-size:69.476330pt;}
.fs29{font-size:71.839868pt;}
.fs13{font-size:74.714757pt;}
.fs9{font-size:74.880000pt;}
.fs17{font-size:75.008000pt;}
.fs21{font-size:77.128040pt;}
.fs26{font-size:77.248712pt;}
.fs28{font-size:77.308941pt;}
.fs34{font-size:77.374856pt;}
.fs33{font-size:77.418113pt;}
.fs24{font-size:77.821882pt;}
.fs31{font-size:77.857907pt;}
.fs2f{font-size:78.686297pt;}
.fs5{font-size:85.120000pt;}
.fs1a{font-size:85.248000pt;}
.fs2a{font-size:86.460617pt;}
.fse{font-size:90.880000pt;}
.fsd{font-size:91.008000pt;}
.fs4{font-size:96.000000pt;}
.fs1e{font-size:96.128000pt;}
.fs3d{font-size:101.120000pt;}
.fs3e{font-size:101.248000pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:107.008000pt;}
.fs37{font-size:117.120000pt;}
.fs3c{font-size:117.248000pt;}
.fs3{font-size:128.000000pt;}
.fs1b{font-size:128.128000pt;}
.fs3b{font-size:133.120000pt;}
.fsc{font-size:138.880000pt;}
.fs1d{font-size:144.000000pt;}
.fs1c{font-size:144.128000pt;}
.fsa{font-size:149.120000pt;}
.fsb{font-size:149.248000pt;}
.fs6{font-size:170.880000pt;}
.fs7{font-size:171.008000pt;}
.fs3a{font-size:192.000000pt;}
.fs10{font-size:192.128000pt;}
.fs0{font-size:213.120000pt;}
.fs8{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.984233pt;}
.y51{bottom:4.800000pt;}
.y1c0{bottom:12.640000pt;}
.y198{bottom:17.248000pt;}
.yf{bottom:19.968000pt;}
.y1b0{bottom:20.896000pt;}
.yd9{bottom:24.480000pt;}
.yd3{bottom:28.480000pt;}
.y4c{bottom:35.744000pt;}
.yd6{bottom:36.596893pt;}
.y13c{bottom:37.042645pt;}
.y165{bottom:39.139413pt;}
.y169{bottom:39.247760pt;}
.y170{bottom:39.551255pt;}
.yd8{bottom:41.471212pt;}
.y1c3{bottom:48.160000pt;}
.y1ee{bottom:48.704000pt;}
.y174{bottom:48.709564pt;}
.y138{bottom:48.713468pt;}
.y7{bottom:49.120000pt;}
.y1bf{bottom:51.072000pt;}
.y1bb{bottom:51.712000pt;}
.y13b{bottom:53.157143pt;}
.y144{bottom:53.157146pt;}
.y4b{bottom:53.344000pt;}
.y10d{bottom:54.619561pt;}
.y18b{bottom:54.720000pt;}
.yd5{bottom:56.052363pt;}
.y185{bottom:56.999579pt;}
.ydc{bottom:57.216337pt;}
.yd2{bottom:57.280000pt;}
.y155{bottom:57.367088pt;}
.y15c{bottom:57.786735pt;}
.y168{bottom:58.710626pt;}
.y164{bottom:58.810986pt;}
.y16f{bottom:58.905783pt;}
.y186{bottom:59.616610pt;}
.y134{bottom:60.384292pt;}
.y1c2{bottom:62.560000pt;}
.yd7{bottom:64.080755pt;}
.y137{bottom:64.827966pt;}
.y61{bottom:65.696000pt;}
.y60{bottom:67.392000pt;}
.y16b{bottom:67.823021pt;}
.y166{bottom:68.646768pt;}
.y153{bottom:69.039246pt;}
.y13a{bottom:69.270304pt;}
.y143{bottom:69.270308pt;}
.y109{bottom:70.306705pt;}
.ycd{bottom:71.143267pt;}
.y130{bottom:71.989668pt;}
.y142{bottom:72.884550pt;}
.y184{bottom:73.034087pt;}
.y4e{bottom:73.248000pt;}
.y154{bottom:73.481585pt;}
.y27{bottom:73.873039pt;}
.ybb{bottom:74.368000pt;}
.yaa{bottom:74.784000pt;}
.y10c{bottom:76.234715pt;}
.y133{bottom:76.498789pt;}
.yc5{bottom:79.659493pt;}
.y151{bottom:80.743461pt;}
.y2e{bottom:80.801190pt;}
.y136{bottom:80.942463pt;}
.y1ed{bottom:81.376000pt;}
.y97{bottom:82.144000pt;}
.y2c{bottom:82.918288pt;}
.y30{bottom:83.555869pt;}
.y12c{bottom:83.660492pt;}
.y31{bottom:84.480000pt;}
.y141{bottom:84.555373pt;}
.y152{bottom:85.152408pt;}
.y139{bottom:85.351411pt;}
.y105{bottom:85.860999pt;}
.yd1{bottom:86.112000pt;}
.y197{bottom:86.272000pt;}
.y12f{bottom:88.070775pt;}
.yeb{bottom:88.401314pt;}
.y149{bottom:88.601035pt;}
.ycc{bottom:90.425278pt;}
.y4d{bottom:90.848000pt;}
.y108{bottom:91.921860pt;}
.y14f{bottom:92.314111pt;}
.y132{bottom:92.613286pt;}
.y128{bottom:95.232477pt;}
.y7d{bottom:95.264000pt;}
.y6c{bottom:95.840000pt;}
.y140{bottom:96.127359pt;}
.y68{bottom:96.352000pt;}
.y3e{bottom:96.710597pt;}
.y150{bottom:96.856622pt;}
.y135{bottom:97.055625pt;}
.y11d{bottom:98.962948pt;}
.yc4{bottom:99.741953pt;}
.y12b{bottom:99.774989pt;}
.y101{bottom:101.548144pt;}
.yba{bottom:103.168000pt;}
.y95{bottom:103.360000pt;}
.yd{bottom:103.392000pt;}
.y14d{bottom:103.986270pt;}
.yea{bottom:104.088459pt;}
.y12e{bottom:104.185272pt;}
.y148{bottom:104.682141pt;}
.y183{bottom:105.467432pt;}
.yab{bottom:106.688000pt;}
.y124{bottom:106.903301pt;}
.yb7{bottom:107.168000pt;}
.y104{bottom:107.476154pt;}
.y13f{bottom:107.831573pt;}
.y1e0{bottom:108.032000pt;}
.yac{bottom:108.192000pt;}
.y14e{bottom:108.428608pt;}
.y2f{bottom:108.514965pt;}
.y131{bottom:108.726448pt;}
.y28{bottom:111.326863pt;}
.y127{bottom:111.346975pt;}
.ye1{bottom:112.203494pt;}
.y20{bottom:113.312000pt;}
.y11b{bottom:114.517242pt;}
.yd0{bottom:114.912000pt;}
.y1d1{bottom:115.680000pt;}
.y12a{bottom:115.889486pt;}
.y14b{bottom:115.889494pt;}
.ye3{bottom:117.005713pt;}
.yfd{bottom:117.235288pt;}
.y7c{bottom:117.664000pt;}
.y179{bottom:117.759991pt;}
.y16a{bottom:118.820275pt;}
.y13e{bottom:119.403559pt;}
.y3d{bottom:119.536394pt;}
.ye9{bottom:119.642753pt;}
.y14c{bottom:120.099431pt;}
.y12d{bottom:120.298434pt;}
.y11c{bottom:120.578102pt;}
.y147{bottom:120.796639pt;}
.y172{bottom:121.069673pt;}
.ya9{bottom:121.152000pt;}
.y123{bottom:123.017798pt;}
.y100{bottom:123.163298pt;}
.y1df{bottom:126.272000pt;}
.y126{bottom:127.460136pt;}
.y1a2{bottom:127.584000pt;}
.y2b{bottom:127.586358pt;}
.y99{bottom:128.352000pt;}
.y98{bottom:129.248000pt;}
.y119{bottom:130.204387pt;}
.y81{bottom:130.656000pt;}
.y13d{bottom:131.074382pt;}
.ye0{bottom:131.530729pt;}
.y129{bottom:131.969257pt;}
.y14a{bottom:131.969265pt;}
.yf9{bottom:132.744700pt;}
.y16c{bottom:134.400000pt;}
.ye8{bottom:135.329898pt;}
.y11a{bottom:136.132396pt;}
.y1f{bottom:137.306667pt;}
.y16e{bottom:137.754832pt;}
.yfc{bottom:138.850443pt;}
.y26{bottom:138.880000pt;}
.y122{bottom:139.133631pt;}
.y62{bottom:139.293333pt;}
.ye2{bottom:139.626093pt;}
.y1d0{bottom:140.000000pt;}
.y178{bottom:140.919525pt;}
.y94{bottom:141.786667pt;}
.y63{bottom:142.720000pt;}
.y125{bottom:143.581312pt;}
.y162{bottom:145.341373pt;}
.y117{bottom:145.758681pt;}
.y47{bottom:145.946667pt;}
.y173{bottom:148.029656pt;}
.yf5{bottom:148.433640pt;}
.y1de{bottom:150.586667pt;}
.ye7{bottom:150.884192pt;}
.y1ec{bottom:151.133333pt;}
.y111{bottom:151.552048pt;}
.y118{bottom:151.819541pt;}
.y2a{bottom:152.318914pt;}
.y37{bottom:154.002959pt;}
.yf8{bottom:154.404737pt;}
.yde{bottom:154.452512pt;}
.y1ba{bottom:154.493333pt;}
.y18a{bottom:154.833433pt;}
.y196{bottom:155.066667pt;}
.y121{bottom:155.241450pt;}
.ya8{bottom:155.706667pt;}
.y1ad{bottom:155.840000pt;}
.ydb{bottom:156.006789pt;}
.y2d{bottom:156.604489pt;}
.y16d{bottom:157.109360pt;}
.y115{bottom:161.400943pt;}
.y177{bottom:163.517591pt;}
.yf3{bottom:163.986139pt;}
.y161{bottom:164.627597pt;}
.y1e{bottom:166.106667pt;}
.ye6{bottom:166.571336pt;}
.y171{bottom:166.787426pt;}
.y116{bottom:167.373834pt;}
.y10b{bottom:167.506680pt;}
.y75{bottom:167.520000pt;}
.y146{bottom:168.744778pt;}
.yf4{bottom:170.091881pt;}
.y1cf{bottom:171.360000pt;}
.y110{bottom:173.167203pt;}
.y6{bottom:173.413333pt;}
.y1dd{bottom:174.946667pt;}
.yda{bottom:175.317363pt;}
.yaf{bottom:176.733333pt;}
.y195{bottom:176.866667pt;}
.ydd{bottom:176.905325pt;}
.y96{bottom:176.933333pt;}
.y113{bottom:177.357380pt;}
.y29{bottom:177.366758pt;}
.y157{bottom:179.510028pt;}
.yf1{bottom:179.671488pt;}
.ye5{bottom:182.077158pt;}
.y107{bottom:183.064564pt;}
.y114{bottom:183.064570pt;}
.y1eb{bottom:183.133333pt;}
.y160{bottom:183.877049pt;}
.ye4{bottom:184.159982pt;}
.y46{bottom:184.346667pt;}
.y145{bottom:184.852598pt;}
.yc{bottom:185.306667pt;}
.yf2{bottom:185.595908pt;}
.y1b9{bottom:186.493333pt;}
.y5f{bottom:186.880000pt;}
.y1ac{bottom:187.840000pt;}
.y10a{bottom:189.114652pt;}
.y1d{bottom:190.146667pt;}
.y5e{bottom:191.493333pt;}
.y180{bottom:191.640074pt;}
.ybd{bottom:193.893333pt;}
.yef{bottom:195.236554pt;}
.ya7{bottom:197.986667pt;}
.y156{bottom:198.315840pt;}
.y103{bottom:198.755299pt;}
.y79{bottom:198.906667pt;}
.y112{bottom:199.024597pt;}
.yae{bottom:199.173333pt;}
.y188{bottom:199.647315pt;}
.y182{bottom:199.647316pt;}
.y1dc{bottom:200.066667pt;}
.yf0{bottom:201.286643pt;}
.y194{bottom:204.066667pt;}
.y106{bottom:204.679718pt;}
.y1ce{bottom:205.626667pt;}
.y40{bottom:205.925331pt;}
.yc9{bottom:206.625000pt;}
.y17f{bottom:207.707946pt;}
.y6b{bottom:209.253333pt;}
.y5{bottom:209.733333pt;}
.y1bd{bottom:212.706667pt;}
.y1ea{bottom:214.173333pt;}
.yff{bottom:214.392176pt;}
.ycb{bottom:214.744596pt;}
.y187{bottom:215.715186pt;}
.y181{bottom:215.715188pt;}
.y175{bottom:216.725799pt;}
.yee{bottom:216.851708pt;}
.y102{bottom:220.370453pt;}
.y36{bottom:220.920673pt;}
.y19a{bottom:221.053333pt;}
.ybc{bottom:222.693333pt;}
.y45{bottom:222.746667pt;}
.y1c{bottom:222.786667pt;}
.y15b{bottom:223.415173pt;}
.y17e{bottom:223.735781pt;}
.y15f{bottom:224.246537pt;}
.y78{bottom:224.506667pt;}
.y3f{bottom:224.743015pt;}
.yad{bottom:225.186667pt;}
.yc7{bottom:226.985509pt;}
.yfb{bottom:229.939289pt;}
.y1ae{bottom:230.013333pt;}
.yc3{bottom:230.720000pt;}
.y193{bottom:232.226667pt;}
.ya6{bottom:232.546667pt;}
.yd4{bottom:233.759982pt;}
.yca{bottom:234.026606pt;}
.y1cd{bottom:236.026667pt;}
.yfe{bottom:236.043236pt;}
.y35{bottom:236.985201pt;}
.y1bc{bottom:238.306667pt;}
.y158{bottom:240.479982pt;}
.y1e9{bottom:241.413333pt;}
.y15a{bottom:242.664627pt;}
.y15e{bottom:243.495990pt;}
.y199{bottom:243.613333pt;}
.yf7{bottom:245.630024pt;}
.yc6{bottom:245.736602pt;}
.y10f{bottom:248.358852pt;}
.y77{bottom:250.106667pt;}
.yfa{bottom:251.608301pt;}
.yc8{bottom:252.799982pt;}
.y34{bottom:253.076459pt;}
.y176{bottom:253.119982pt;}
.y120{bottom:253.279982pt;}
.y7f{bottom:254.106667pt;}
.y1db{bottom:255.586667pt;}
.y83{bottom:260.386667pt;}
.yed{bottom:261.195089pt;}
.y159{bottom:261.946055pt;}
.y50{bottom:262.426667pt;}
.y15d{bottom:262.777418pt;}
.y189{bottom:263.398333pt;}
.y4{bottom:263.840000pt;}
.y192{bottom:264.226667pt;}
.y1b4{bottom:265.186667pt;}
.y13{bottom:265.693333pt;}
.yf6{bottom:267.245178pt;}
.yb{bottom:267.266667pt;}
.y1cc{bottom:267.386667pt;}
.y1e8{bottom:269.573333pt;}
.y10e{bottom:269.974006pt;}
.y15{bottom:274.693333pt;}
.y76{bottom:275.746667pt;}
.y7e{bottom:276.546667pt;}
.y8f{bottom:279.333333pt;}
.y1da{bottom:279.906667pt;}
.y4f{bottom:280.066667pt;}
.yec{bottom:282.810243pt;}
.y11f{bottom:289.434816pt;}
.y82{bottom:292.386667pt;}
.yb2{bottom:293.946667pt;}
.y3{bottom:295.866667pt;}
.y5c{bottom:296.733333pt;}
.y191{bottom:296.866667pt;}
.y56{bottom:296.893333pt;}
.y8a{bottom:297.053333pt;}
.y5b{bottom:297.413333pt;}
.y87{bottom:298.560000pt;}
.y1e7{bottom:300.613333pt;}
.y1b7{bottom:300.706667pt;}
.ycf{bottom:302.602653pt;}
.yb6{bottom:303.333333pt;}
.y1cb{bottom:303.386667pt;}
.y1d9{bottom:305.026667pt;}
.y8d{bottom:306.813333pt;}
.y44{bottom:307.773333pt;}
.y1af{bottom:308.186667pt;}
.y7b{bottom:310.466667pt;}
.y12{bottom:310.493333pt;}
.y1b{bottom:311.586667pt;}
.ybe{bottom:313.253333pt;}
.y11e{bottom:314.712339pt;}
.y59{bottom:315.933333pt;}
.y55{bottom:316.093333pt;}
.yb1{bottom:316.346667pt;}
.y5a{bottom:316.613333pt;}
.y8b{bottom:316.640000pt;}
.y14{bottom:319.493333pt;}
.y74{bottom:321.893333pt;}
.ya5{bottom:322.306667pt;}
.y89{bottom:322.693333pt;}
.y33{bottom:322.787422pt;}
.yce{bottom:325.151715pt;}
.y43{bottom:325.413333pt;}
.y11{bottom:326.213333pt;}
.y1b6{bottom:326.306667pt;}
.y1e6{bottom:327.813333pt;}
.y8e{bottom:329.346667pt;}
.y167{bottom:331.519964pt;}
.y1a1{bottom:333.026667pt;}
.y86{bottom:336.960000pt;}
.y32{bottom:338.878680pt;}
.y7a{bottom:339.266667pt;}
.y58{bottom:340.186667pt;}
.y1a{bottom:341.533333pt;}
.y91{bottom:342.053333pt;}
.y3c{bottom:343.289075pt;}
.yb5{bottom:343.706667pt;}
.y17d{bottom:346.046445pt;}
.y17c{bottom:346.046448pt;}
.y88{bottom:346.053333pt;}
.yb0{bottom:347.906667pt;}
.ya{bottom:349.186667pt;}
.y57{bottom:349.893333pt;}
.y2{bottom:351.906667pt;}
.y1e5{bottom:355.973333pt;}
.ya4{bottom:356.893333pt;}
.y19d{bottom:360.133333pt;}
.y1d8{bottom:360.573333pt;}
.y17b{bottom:362.114320pt;}
.y1a0{bottom:364.506667pt;}
.y3b{bottom:365.982559pt;}
.y190{bottom:366.653333pt;}
.y8c{bottom:368.253333pt;}
.y10{bottom:371.013333pt;}
.y90{bottom:374.053333pt;}
.y19{bottom:374.173333pt;}
.y1ca{bottom:382.626667pt;}
.y19f{bottom:383.746667pt;}
.y1d7{bottom:384.893333pt;}
.y17a{bottom:385.575547pt;}
.y1e4{bottom:388.640000pt;}
.y1aa{bottom:389.760000pt;}
.y1a9{bottom:395.040000pt;}
.y18f{bottom:398.653333pt;}
.y38{bottom:399.555017pt;}
.y69{bottom:399.586667pt;}
.ya3{bottom:400.093333pt;}
.y19e{bottom:402.946667pt;}
.y25{bottom:407.613333pt;}
.y6e{bottom:407.680000pt;}
.y1d6{bottom:409.213333pt;}
.y1{bottom:415.933333pt;}
.y1c9{bottom:416.866667pt;}
.yb8{bottom:419.200000pt;}
.ydf{bottom:420.479964pt;}
.yc2{bottom:420.933333pt;}
.y1a8{bottom:427.040000pt;}
.y54{bottom:427.133333pt;}
.y6a{bottom:429.760000pt;}
.y9{bottom:431.133333pt;}
.y18e{bottom:431.293333pt;}
.y39{bottom:431.309858pt;}
.y163{bottom:433.919964pt;}
.y1d5{bottom:434.333333pt;}
.y6d{bottom:436.480000pt;}
.y93{bottom:439.066667pt;}
.y24{bottom:446.013333pt;}
.ya2{bottom:446.653333pt;}
.y1c8{bottom:448.226667pt;}
.yc1{bottom:449.760000pt;}
.y19c{bottom:450.626667pt;}
.y4a{bottom:450.746667pt;}
.yb9{bottom:453.093333pt;}
.y1e3{bottom:458.400000pt;}
.y1a7{bottom:459.066667pt;}
.y1b3{bottom:459.840000pt;}
.y18{bottom:462.973333pt;}
.y92{bottom:471.066667pt;}
.y19b{bottom:475.013333pt;}
.ya1{bottom:481.213333pt;}
.y1c7{bottom:482.466667pt;}
.y53{bottom:482.880000pt;}
.y23{bottom:484.413333pt;}
.y9c{bottom:485.693333pt;}
.y70{bottom:489.626667pt;}
.y1d4{bottom:489.893333pt;}
.y6f{bottom:489.986667pt;}
.y1e2{bottom:490.400000pt;}
.y1a6{bottom:491.066667pt;}
.y9f{bottom:492.253333pt;}
.y17{bottom:492.933333pt;}
.y18d{bottom:501.093333pt;}
.y1b2{bottom:501.413333pt;}
.y65{bottom:504.386667pt;}
.y66{bottom:504.706667pt;}
.y64{bottom:505.026667pt;}
.y67{bottom:506.053333pt;}
.y1b8{bottom:510.373333pt;}
.y85{bottom:512.346667pt;}
.y8{bottom:513.053333pt;}
.y1c6{bottom:513.853333pt;}
.y1d3{bottom:514.213333pt;}
.y9d{bottom:518.213333pt;}
.y9a{bottom:519.133333pt;}
.y1e1{bottom:522.400000pt;}
.yb4{bottom:522.720000pt;}
.y1a5{bottom:523.066667pt;}
.y22{bottom:523.973333pt;}
.ya0{bottom:524.453333pt;}
.y16{bottom:525.573333pt;}
.y9e{bottom:530.653333pt;}
.yc0{bottom:531.453333pt;}
.y49{bottom:532.986667pt;}
.y1b1{bottom:533.413333pt;}
.y18c{bottom:533.733333pt;}
.y42{bottom:534.653333pt;}
.y1d2{bottom:539.333333pt;}
.y5d{bottom:546.146667pt;}
.y9b{bottom:548.706667pt;}
.y1c5{bottom:549.853333pt;}
.y1b5{bottom:550.373333pt;}
.y41{bottom:552.253333pt;}
.y1a4{bottom:555.066667pt;}
.ybf{bottom:560.253333pt;}
.yb3{bottom:560.453333pt;}
.y48{bottom:561.786667pt;}
.y84{bottom:568.893333pt;}
.y52{bottom:570.586667pt;}
.y80{bottom:586.493333pt;}
.y71{bottom:587.013333pt;}
.y72{bottom:587.840000pt;}
.y73{bottom:588.320000pt;}
.y1ab{bottom:632.253333pt;}
.ye{bottom:641.986667pt;}
.y1a3{bottom:642.466667pt;}
.y21{bottom:643.906667pt;}
.y1c4{bottom:645.893333pt;}
.y1c1{bottom:647.426667pt;}
.y1be{bottom:661.760000pt;}
.h63{height:36.703125pt;}
.h18{height:45.022500pt;}
.h19{height:45.120375pt;}
.h32{height:47.120421pt;}
.h1e{height:48.937500pt;}
.h1f{height:49.035375pt;}
.h5f{height:52.531250pt;}
.h60{height:52.636312pt;}
.h57{height:55.697646pt;}
.h15{height:55.778711pt;}
.h46{height:55.882825pt;}
.h23{height:56.233500pt;}
.h28{height:56.732813pt;}
.h27{height:56.818125pt;}
.h2d{height:57.183750pt;}
.h30{height:57.281500pt;}
.h1c{height:57.354750pt;}
.h13{height:58.654430pt;}
.h6{height:65.086875pt;}
.h24{height:65.184750pt;}
.h37{height:66.839130pt;}
.h49{height:66.893023pt;}
.h33{height:66.940701pt;}
.h3d{height:66.943704pt;}
.h56{height:67.033153pt;}
.h40{height:67.052288pt;}
.h51{height:67.118800pt;}
.h17{height:67.130716pt;}
.h47{height:67.227669pt;}
.h3a{height:67.497177pt;}
.h4e{height:67.528422pt;}
.h4b{height:68.169064pt;}
.h10{height:72.090000pt;}
.h2f{height:73.312500pt;}
.h1b{height:73.406250pt;}
.h2e{height:73.410250pt;}
.h38{height:73.504125pt;}
.h6a{height:74.007937pt;}
.h25{height:74.846250pt;}
.h43{height:74.926737pt;}
.h16{height:77.925157pt;}
.ha{height:78.097500pt;}
.h26{height:78.231000pt;}
.h61{height:80.368750pt;}
.h36{height:80.442136pt;}
.h3e{height:80.567993pt;}
.h41{height:80.630809pt;}
.h54{height:80.699557pt;}
.h52{height:80.744672pt;}
.h3b{height:81.165792pt;}
.h4f{height:81.203364pt;}
.h1d{height:81.725625pt;}
.h29{height:81.823500pt;}
.h4c{height:82.067349pt;}
.h68{height:85.609687pt;}
.h20{height:86.910833pt;}
.h21{height:87.337500pt;}
.h5d{height:88.777500pt;}
.h44{height:90.175721pt;}
.hf{height:94.785000pt;}
.he{height:94.918500pt;}
.h4a{height:97.753076pt;}
.h1a{height:97.875000pt;}
.h2a{height:97.972875pt;}
.h5a{height:99.275659pt;}
.h5{height:100.125000pt;}
.h5b{height:101.203000pt;}
.h5e{height:105.062500pt;}
.h67{height:105.465000pt;}
.h69{height:105.598500pt;}
.h22{height:107.284167pt;}
.h3{height:111.472500pt;}
.h2{height:111.606000pt;}
.hb{height:114.024375pt;}
.hc{height:114.122250pt;}
.h58{height:119.969133pt;}
.h5c{height:122.152500pt;}
.h66{height:122.286000pt;}
.h59{height:130.303817pt;}
.h4{height:133.500000pt;}
.h62{height:133.633500pt;}
.h65{height:138.840000pt;}
.h34{height:141.945072pt;}
.hd{height:144.847500pt;}
.h4d{height:147.197526pt;}
.h2c{height:150.187500pt;}
.h2b{height:150.321000pt;}
.h39{height:155.202857pt;}
.h3f{height:167.998311pt;}
.h7{height:178.222500pt;}
.h8{height:178.356000pt;}
.h53{height:180.797345pt;}
.h64{height:200.250000pt;}
.h11{height:200.383500pt;}
.h45{height:213.435300pt;}
.h1{height:222.277500pt;}
.h9{height:222.411000pt;}
.h12{height:228.641854pt;}
.h50{height:244.799089pt;}
.h31{height:259.996495pt;}
.h48{height:291.203950pt;}
.h3c{height:315.202333pt;}
.h42{height:334.729710pt;}
.h35{height:342.399832pt;}
.h55{height:415.989736pt;}
.h14{height:449.089495pt;}
.h0{height:720.000000pt;}
.wf{width:166.565961pt;}
.wb{width:297.762241pt;}
.we{width:310.401175pt;}
.wd{width:364.803000pt;}
.w8{width:419.208232pt;}
.w6{width:443.368423pt;}
.wc{width:459.043000pt;}
.w7{width:492.790983pt;}
.w2{width:551.838528pt;}
.w3{width:556.014700pt;}
.w5{width:628.806391pt;}
.w10{width:661.460800pt;}
.wa{width:721.287863pt;}
.w4{width:732.013840pt;}
.w1{width:959.999986pt;}
.w9{width:959.999999pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5b{left:3.935986pt;}
.x2c{left:7.218909pt;}
.x8d{left:11.528411pt;}
.x97{left:13.279986pt;}
.x6b{left:14.751986pt;}
.x125{left:18.623986pt;}
.x83{left:20.927986pt;}
.x3a{left:22.239986pt;}
.x6a{left:25.631986pt;}
.x82{left:28.447986pt;}
.x2b{left:29.869694pt;}
.x6{left:32.159986pt;}
.x29{left:34.273041pt;}
.x94{left:35.225383pt;}
.x27{left:37.585221pt;}
.x26{left:40.201085pt;}
.xfe{left:41.759369pt;}
.x18{left:43.615986pt;}
.x2a{left:44.704486pt;}
.x3d{left:46.175986pt;}
.x95{left:47.378855pt;}
.x28{left:48.314138pt;}
.x1b{left:52.598342pt;}
.x11f{left:53.855986pt;}
.x14{left:57.599986pt;}
.x11d{left:58.623986pt;}
.x116{left:59.999986pt;}
.x68{left:60.895986pt;}
.x115{left:62.399986pt;}
.x3b{left:64.639986pt;}
.x7d{left:68.479986pt;}
.x1c{left:69.774089pt;}
.x7c{left:75.519986pt;}
.xfb{left:78.672266pt;}
.xe9{left:79.852252pt;}
.x126{left:81.503986pt;}
.xf4{left:82.471049pt;}
.x1{left:85.375986pt;}
.x102{left:86.904309pt;}
.xcc{left:88.275839pt;}
.x3e{left:89.215986pt;}
.x19{left:91.615986pt;}
.xf5{left:93.218453pt;}
.xf3{left:95.049503pt;}
.x100{left:99.198557pt;}
.x80{left:100.127986pt;}
.x111{left:101.407986pt;}
.x92{left:103.359991pt;}
.x2{left:104.575986pt;}
.x15{left:105.631986pt;}
.x56{left:106.751986pt;}
.x62{left:108.799986pt;}
.x8b{left:113.279991pt;}
.x117{left:114.911986pt;}
.x24{left:117.055986pt;}
.xd8{left:118.719991pt;}
.x45{left:131.679986pt;}
.x7e{left:135.706652pt;}
.x105{left:137.114228pt;}
.xa{left:139.293319pt;}
.x96{left:140.893319pt;}
.x10b{left:142.533319pt;}
.xf9{left:146.235556pt;}
.xfc{left:148.912196pt;}
.x4d{left:152.026652pt;}
.x16{left:153.626652pt;}
.x8e{left:155.039500pt;}
.xf8{left:159.649367pt;}
.x1f{left:164.780342pt;}
.x10c{left:168.133319pt;}
.x25{left:170.079982pt;}
.x9f{left:171.842578pt;}
.x87{left:176.133319pt;}
.x1a{left:177.599982pt;}
.x3{left:180.639986pt;}
.x123{left:181.853319pt;}
.x124{left:182.813319pt;}
.x52{left:185.053319pt;}
.x11c{left:189.186652pt;}
.x1d{left:190.472207pt;}
.x9b{left:192.887583pt;}
.x7a{left:194.493319pt;}
.x7b{left:198.013319pt;}
.x58{left:202.426652pt;}
.x8a{left:204.253319pt;}
.x7f{left:205.693319pt;}
.x6f{left:208.546652pt;}
.x78{left:211.586652pt;}
.x1e{left:215.779051pt;}
.x101{left:216.856044pt;}
.xf7{left:219.068733pt;}
.xd{left:220.893319pt;}
.x107{left:223.487392pt;}
.x7{left:224.959986pt;}
.xea{left:226.674081pt;}
.x88{left:228.133319pt;}
.xf6{left:229.827360pt;}
.x127{left:232.573319pt;}
.x20{left:238.052337pt;}
.xeb{left:239.788891pt;}
.x2e{left:242.564457pt;}
.x17{left:246.266652pt;}
.x10{left:248.773319pt;}
.xec{left:250.515553pt;}
.x81{left:251.973319pt;}
.x104{left:255.332241pt;}
.x2d{left:256.704250pt;}
.x85{left:259.293319pt;}
.x36{left:261.146652pt;}
.xee{left:262.936599pt;}
.x35{left:264.666652pt;}
.xce{left:266.593556pt;}
.x50{left:271.039986pt;}
.x109{left:272.613319pt;}
.xf0{left:275.357645pt;}
.xed{left:277.278837pt;}
.xcb{left:278.197978pt;}
.x55{left:280.026652pt;}
.x120{left:281.666652pt;}
.xd0{left:284.376259pt;}
.xcd{left:285.844720pt;}
.xef{left:289.699883pt;}
.x38{left:292.133319pt;}
.x37{left:295.973319pt;}
.x9c{left:298.607896pt;}
.x33{left:300.417615pt;}
.x46{left:302.213319pt;}
.xcf{left:303.573700pt;}
.x47{left:307.359986pt;}
.x48{left:312.479986pt;}
.xfa{left:314.559964pt;}
.x21{left:317.449790pt;}
.xf2{left:318.533319pt;}
.xd1{left:320.246104pt;}
.x34{left:321.573319pt;}
.x118{left:332.159986pt;}
.xd7{left:333.253319pt;}
.xd3{left:334.518828pt;}
.x119{left:335.839986pt;}
.xd2{left:336.954324pt;}
.xa0{left:338.118091pt;}
.x128{left:339.333319pt;}
.x4{left:341.279986pt;}
.x11b{left:345.986652pt;}
.x8c{left:351.287644pt;}
.x5f{left:354.053319pt;}
.xa1{left:355.653319pt;}
.x11a{left:356.826652pt;}
.x108{left:360.214893pt;}
.x13{left:364.933319pt;}
.x5{left:368.546652pt;}
.xd4{left:370.030511pt;}
.x9d{left:371.108657pt;}
.x122{left:376.319986pt;}
.x98{left:379.359964pt;}
.x6e{left:382.146652pt;}
.x54{left:384.866652pt;}
.x8{left:388.293319pt;}
.x9a{left:389.279964pt;}
.x99{left:391.175347pt;}
.x79{left:392.346652pt;}
.x8f{left:393.296964pt;}
.xe3{left:394.231453pt;}
.x76{left:397.373319pt;}
.x6c{left:398.466652pt;}
.x9e{left:401.599964pt;}
.x75{left:405.533319pt;}
.xe4{left:406.745890pt;}
.xfd{left:408.799964pt;}
.x106{left:413.102949pt;}
.x22{left:416.413660pt;}
.xe5{left:419.166936pt;}
.x77{left:423.133319pt;}
.x6d{left:426.946652pt;}
.xe6{left:431.681374pt;}
.xe8{left:438.205425pt;}
.x23{left:442.105532pt;}
.xe7{left:444.142444pt;}
.x4c{left:447.173319pt;}
.x84{left:450.693319pt;}
.x4b{left:455.173319pt;}
.x93{left:456.830896pt;}
.x2f{left:462.278416pt;}
.xff{left:463.199964pt;}
.x31{left:464.892957pt;}
.x32{left:472.216312pt;}
.x30{left:477.311969pt;}
.x4e{left:482.879986pt;}
.x10a{left:487.039986pt;}
.x110{left:488.573319pt;}
.x10d{left:491.133319pt;}
.x10e{left:497.186652pt;}
.x44{left:499.266652pt;}
.xda{left:501.738203pt;}
.xd9{left:503.659395pt;}
.x10f{left:506.786652pt;}
.xdc{left:514.279324pt;}
.xdb{left:516.080442pt;}
.xde{left:526.700370pt;}
.xdd{left:528.594879pt;}
.xaa{left:535.321904pt;}
.xab{left:540.031724pt;}
.xdf{left:541.015925pt;}
.xa9{left:543.774508pt;}
.xb4{left:550.794468pt;}
.xe0{left:553.570388pt;}
.xac{left:554.662609pt;}
.xad{left:556.704128pt;}
.xb3{left:559.247072pt;}
.xe1{left:564.163633pt;}
.xba{left:566.356572pt;}
.x3f{left:567.679986pt;}
.xb5{left:570.260529pt;}
.xae{left:571.335013pt;}
.xb6{left:572.319956pt;}
.xaf{left:573.519796pt;}
.xb9{left:574.844992pt;}
.xb{left:576.773319pt;}
.xe2{left:578.399138pt;}
.x90{left:581.124555pt;}
.xbb{left:585.733093pt;}
.xb7{left:586.932933pt;}
.xb0{left:588.186497pt;}
.xb1{left:590.174292pt;}
.xf1{left:592.354465pt;}
.xc0{left:597.427056pt;}
.x4f{left:600.959986pt;}
.xbc{left:602.548762pt;}
.xb8{left:603.605337pt;}
.xb2{left:604.858901pt;}
.x4a{left:606.466652pt;}
.x5d{left:610.213319pt;}
.x5e{left:611.199986pt;}
.xc4{left:613.024976pt;}
.x40{left:613.919986pt;}
.x72{left:616.346652pt;}
.x70{left:617.733319pt;}
.xbd{left:619.221166pt;}
.xc{left:620.133319pt;}
.x39{left:621.119986pt;}
.x86{left:626.213319pt;}
.x71{left:627.866652pt;}
.xc5{left:632.419406pt;}
.xc1{left:633.619246pt;}
.x5c{left:635.199986pt;}
.xbe{left:636.860605pt;}
.x112{left:642.239986pt;}
.xc8{left:647.891970pt;}
.xc6{left:649.091810pt;}
.xc2{left:650.291650pt;}
.xbf{left:651.491490pt;}
.x11{left:654.879986pt;}
.x113{left:657.919986pt;}
.xc9{left:664.689730pt;}
.xc7{left:665.889570pt;}
.xc3{left:667.089410pt;}
.x11e{left:668.773319pt;}
.x114{left:671.839986pt;}
.x91{left:673.523720pt;}
.x59{left:677.466652pt;}
.x57{left:681.826652pt;}
.xca{left:683.367837pt;}
.x51{left:685.826652pt;}
.xe{left:689.413319pt;}
.x60{left:692.933319pt;}
.x63{left:694.373319pt;}
.x61{left:696.573319pt;}
.x64{left:697.573319pt;}
.x5a{left:698.786652pt;}
.x12{left:739.866652pt;}
.x3c{left:756.253319pt;}
.x65{left:758.079986pt;}
.x103{left:759.679928pt;}
.x41{left:761.506652pt;}
.x69{left:774.853319pt;}
.x74{left:778.053319pt;}
.x73{left:781.466652pt;}
.x67{left:783.013319pt;}
.x42{left:784.066652pt;}
.x66{left:785.666652pt;}
.xa2{left:792.732359pt;}
.x49{left:794.906652pt;}
.xf{left:799.013319pt;}
.x89{left:802.559986pt;}
.xa3{left:809.386854pt;}
.xd5{left:810.461337pt;}
.x121{left:817.733319pt;}
.xa4{left:826.202523pt;}
.xd6{left:829.049903pt;}
.xa5{left:842.874927pt;}
.xa6{left:859.547331pt;}
.xa7{left:876.345091pt;}
.xa8{left:893.017495pt;}
.x43{left:911.999986pt;}
.x53{left:912.959986pt;}
.x9{left:922.399986pt;}
}




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