
    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_cf7dc1b4f2260bcf61fcc3f3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8d5ff9e2ad31250659d68647.woff')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_98cdaa133896474bf8fc6c76.woff')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_6cbfa4d6cbf31c52fd3401d7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_0538297394078dbaa27a656b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_1ed63b8f92318703073c89e0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_f39720b45268535487cf80b9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.693000;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_dfdfbc59a97c68674a0b601d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.710000;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_e6b312607aa0787a8e7bbe5f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.761000;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_331d695a0e65700ff797defd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_7f9096f110ad5424df077403.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_15849802500ba3aa8f400c70.woff')format("woff");}.ffc{font-family:ffc;line-height:0.703000;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;}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.me{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-29.796000px;}
.v5{vertical-align:-24.294000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:28.392000px;}
.lsc{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000009px;}
.ls25{letter-spacing:0.000419px;}
.ls1b{letter-spacing:0.000800px;}
.ls10{letter-spacing:0.000959px;}
.ls20{letter-spacing:0.001155px;}
.lsd{letter-spacing:0.001555px;}
.ls19{letter-spacing:0.001776px;}
.ls7{letter-spacing:0.001952px;}
.ls21{letter-spacing:0.002544px;}
.ls24{letter-spacing:0.002697px;}
.ls1e{letter-spacing:0.002892px;}
.ls8{letter-spacing:0.003488px;}
.lsf{letter-spacing:0.003717px;}
.ls1d{letter-spacing:0.004800px;}
.lsb{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.ls1{letter-spacing:10.461300px;}
.lsa{letter-spacing:11.954850px;}
.ls2b{letter-spacing:12.436114px;}
.ls16{letter-spacing:13.242100px;}
.ls18{letter-spacing:13.443828px;}
.ls12{letter-spacing:13.448400px;}
.ls11{letter-spacing:13.449828px;}
.ls14{letter-spacing:13.454400px;}
.ls17{letter-spacing:13.508061px;}
.ls27{letter-spacing:13.517234px;}
.ls2a{letter-spacing:13.532255px;}
.ls2c{letter-spacing:13.709584px;}
.ls4{letter-spacing:14.944200px;}
.ls28{letter-spacing:15.338635px;}
.ls23{letter-spacing:15.785694px;}
.ls1c{letter-spacing:16.544518px;}
.ls13{letter-spacing:16.676400px;}
.ls2d{letter-spacing:16.682400px;}
.ls26{letter-spacing:16.761455px;}
.ls1f{letter-spacing:16.778628px;}
.ls29{letter-spacing:16.804432px;}
.ls15{letter-spacing:17.215106px;}
.lse{letter-spacing:18.244518px;}
.ls1a{letter-spacing:18.350400px;}
.ls22{letter-spacing:22.591576px;}
.ls2{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.355200px;}
.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;}
}
.ws11{word-spacing:-14.943900px;}
.wsfb{word-spacing:-13.449600px;}
.ws15{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsb0{word-spacing:-4.363619px;}
.ws43{word-spacing:-3.168107px;}
.wsd1{word-spacing:-2.929004px;}
.wsa7{word-spacing:-2.809453px;}
.ws35{word-spacing:-2.450800px;}
.ws34{word-spacing:-2.391024px;}
.ws3d{word-spacing:-2.331248px;}
.ws1e{word-spacing:-2.259533px;}
.wsa6{word-spacing:-2.211697px;}
.wse2{word-spacing:-2.151922px;}
.ws24{word-spacing:-2.092146px;}
.ws5f{word-spacing:-1.972595px;}
.ws1{word-spacing:-1.908367px;}
.wsf3{word-spacing:-1.853044px;}
.ws1f{word-spacing:-1.775347px;}
.wsb3{word-spacing:-1.733492px;}
.wsf6{word-spacing:-1.560154px;}
.wscf{word-spacing:-1.374839px;}
.ws13a{word-spacing:-1.344960px;}
.ws0{word-spacing:-1.322630px;}
.ws9c{word-spacing:-1.315063px;}
.ws9d{word-spacing:-1.295197px;}
.wsa9{word-spacing:-1.255288px;}
.ws129{word-spacing:-1.237363px;}
.ws6{word-spacing:-1.171598px;}
.wsb6{word-spacing:-1.135736px;}
.wsce{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws13b{word-spacing:-1.022170px;}
.wse9{word-spacing:-0.956410px;}
.wsd3{word-spacing:-0.896634px;}
.ws6b{word-spacing:-0.836858px;}
.ws130{word-spacing:-0.806976px;}
.wsd2{word-spacing:-0.777083px;}
.wsf7{word-spacing:-0.753178px;}
.wsbd{word-spacing:-0.717307px;}
.wsae{word-spacing:-0.657532px;}
.wsee{word-spacing:-0.597756px;}
.ws12f{word-spacing:-0.591782px;}
.wsb7{word-spacing:-0.537980px;}
.wsaf{word-spacing:-0.478205px;}
.ws11b{word-spacing:-0.430387px;}
.wsf1{word-spacing:-0.418429px;}
.ws41{word-spacing:-0.358654px;}
.ws111{word-spacing:-0.322790px;}
.ws27{word-spacing:-0.298878px;}
.ws18{word-spacing:-0.268992px;}
.ws3e{word-spacing:-0.239102px;}
.ws149{word-spacing:-0.238743px;}
.wse5{word-spacing:-0.227417px;}
.ws17{word-spacing:-0.215194px;}
.ws9b{word-spacing:-0.195537px;}
.ws2d{word-spacing:-0.179327px;}
.wsd4{word-spacing:-0.161395px;}
.wsb9{word-spacing:-0.159857px;}
.wse3{word-spacing:-0.128463px;}
.ws2f{word-spacing:-0.119551px;}
.ws1a{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.ws46{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.ws8e{word-spacing:-0.047070px;}
.ws131{word-spacing:-0.014304px;}
.ws132{word-spacing:-0.014179px;}
.ws144{word-spacing:-0.010723px;}
.ws147{word-spacing:-0.010022px;}
.wsfd{word-spacing:-0.008554px;}
.ws13e{word-spacing:-0.008016px;}
.ws12c{word-spacing:-0.007987px;}
.ws77{word-spacing:-0.007189px;}
.ws146{word-spacing:-0.006854px;}
.ws85{word-spacing:-0.006686px;}
.wsff{word-spacing:-0.006259px;}
.ws87{word-spacing:-0.006174px;}
.ws11c{word-spacing:-0.006086px;}
.ws142{word-spacing:-0.005261px;}
.ws11a{word-spacing:-0.004838px;}
.ws119{word-spacing:-0.003773px;}
.ws8c{word-spacing:-0.003715px;}
.ws110{word-spacing:-0.003466px;}
.ws4d{word-spacing:-0.003464px;}
.ws123{word-spacing:-0.003427px;}
.ws81{word-spacing:-0.003365px;}
.ws48{word-spacing:-0.003339px;}
.ws7f{word-spacing:-0.003199px;}
.ws134{word-spacing:-0.003043px;}
.wsb4{word-spacing:-0.002962px;}
.ws86{word-spacing:-0.002940px;}
.ws7e{word-spacing:-0.002522px;}
.ws135{word-spacing:-0.002458px;}
.ws7a{word-spacing:-0.002363px;}
.ws83{word-spacing:-0.001929px;}
.ws29{word-spacing:-0.001691px;}
.ws7c{word-spacing:-0.001610px;}
.ws51{word-spacing:-0.001256px;}
.ws99{word-spacing:-0.001232px;}
.ws49{word-spacing:-0.001166px;}
.ws79{word-spacing:-0.001007px;}
.ws4a{word-spacing:-0.000767px;}
.ws133{word-spacing:-0.000730px;}
.ws4f{word-spacing:-0.000614px;}
.ws7b{word-spacing:-0.000574px;}
.ws98{word-spacing:-0.000455px;}
.ws91{word-spacing:-0.000195px;}
.ws93{word-spacing:-0.000036px;}
.ws3{word-spacing:0.000000px;}
.ws84{word-spacing:0.000906px;}
.ws12{word-spacing:0.001466px;}
.ws14{word-spacing:0.001792px;}
.ws115{word-spacing:0.001978px;}
.ws94{word-spacing:0.002158px;}
.ws137{word-spacing:0.051934px;}
.ws1b{word-spacing:0.053798px;}
.ws31{word-spacing:0.059776px;}
.wsb2{word-spacing:0.095468px;}
.ws90{word-spacing:0.095641px;}
.ws59{word-spacing:0.099474px;}
.ws5a{word-spacing:0.101651px;}
.ws47{word-spacing:0.107597px;}
.ws30{word-spacing:0.119551px;}
.ws95{word-spacing:0.143462px;}
.wsf0{word-spacing:0.147338px;}
.ws96{word-spacing:0.156982px;}
.ws1c{word-spacing:0.161395px;}
.ws28{word-spacing:0.179327px;}
.ws126{word-spacing:0.191224px;}
.ws92{word-spacing:0.191282px;}
.ws1d{word-spacing:0.215194px;}
.wsbc{word-spacing:0.228177px;}
.ws3f{word-spacing:0.239102px;}
.wsc8{word-spacing:0.249298px;}
.wsc9{word-spacing:0.253563px;}
.ws68{word-spacing:0.268992px;}
.wsa8{word-spacing:0.278181px;}
.ws23{word-spacing:0.298878px;}
.ws69{word-spacing:0.322790px;}
.ws61{word-spacing:0.336012px;}
.wse0{word-spacing:0.342536px;}
.ws2c{word-spacing:0.358654px;}
.wsc6{word-spacing:0.478205px;}
.ws10a{word-spacing:0.484186px;}
.wsd7{word-spacing:0.575514px;}
.wsd6{word-spacing:0.591782px;}
.wsef{word-spacing:0.597756px;}
.ws125{word-spacing:0.645581px;}
.wsab{word-spacing:0.777083px;}
.wsd5{word-spacing:0.806976px;}
.ws6d{word-spacing:0.836858px;}
.wsc3{word-spacing:0.896634px;}
.wsc4{word-spacing:0.946707px;}
.wsc5{word-spacing:0.956410px;}
.wsa0{word-spacing:0.968371px;}
.ws7{word-spacing:1.004227px;}
.ws63{word-spacing:1.016185px;}
.wscd{word-spacing:1.075961px;}
.wscc{word-spacing:1.089392px;}
.ws76{word-spacing:1.135736px;}
.ws11f{word-spacing:1.183565px;}
.ws2e{word-spacing:1.195512px;}
.wsdd{word-spacing:1.228779px;}
.wsde{word-spacing:1.244244px;}
.wsdb{word-spacing:1.252168px;}
.wsdc{word-spacing:1.255288px;}
.ws5c{word-spacing:1.315063px;}
.ws136{word-spacing:1.339978px;}
.wsc2{word-spacing:1.374839px;}
.wsd0{word-spacing:1.434614px;}
.ws118{word-spacing:1.452557px;}
.ws25{word-spacing:1.494390px;}
.ws11e{word-spacing:1.506355px;}
.wseb{word-spacing:1.554166px;}
.wsdf{word-spacing:1.613941px;}
.ws66{word-spacing:1.667750px;}
.ws57{word-spacing:1.673717px;}
.ws128{word-spacing:1.775347px;}
.ws72{word-spacing:1.793268px;}
.ws127{word-spacing:1.829146px;}
.ws62{word-spacing:1.853044px;}
.ws117{word-spacing:1.882944px;}
.ws74{word-spacing:1.912819px;}
.wsb8{word-spacing:1.972595px;}
.ws65{word-spacing:1.990541px;}
.ws6e{word-spacing:2.032370px;}
.ws10f{word-spacing:2.044339px;}
.wsc7{word-spacing:2.151922px;}
.ws71{word-spacing:2.211697px;}
.ws2b{word-spacing:2.271473px;}
.wse6{word-spacing:2.331248px;}
.ws3b{word-spacing:2.391024px;}
.ws58{word-spacing:2.450800px;}
.ws4{word-spacing:2.510568px;}
.wsb1{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws140{word-spacing:2.565726px;}
.ws9e{word-spacing:2.570351px;}
.ws13f{word-spacing:2.582323px;}
.ws19{word-spacing:2.743718px;}
.ws5b{word-spacing:2.749678px;}
.ws13d{word-spacing:2.797517px;}
.wse1{word-spacing:2.809453px;}
.ws56{word-spacing:2.869229px;}
.ws32{word-spacing:2.869236px;}
.ws8f{word-spacing:2.917057px;}
.ws36{word-spacing:2.929004px;}
.wsda{word-spacing:2.958912px;}
.ws6c{word-spacing:2.988780px;}
.ws60{word-spacing:3.048556px;}
.ws97{word-spacing:3.060518px;}
.ws42{word-spacing:3.108331px;}
.ws113{word-spacing:3.120307px;}
.ws73{word-spacing:3.168107px;}
.ws20{word-spacing:3.219667px;}
.ws143{word-spacing:3.220819px;}
.ws11d{word-spacing:3.220963px;}
.ws109{word-spacing:3.221213px;}
.ws138{word-spacing:3.221731px;}
.ws112{word-spacing:3.222451px;}
.ws124{word-spacing:3.222835px;}
.ws139{word-spacing:3.223853px;}
.wsfe{word-spacing:3.225149px;}
.ws105{word-spacing:3.225802px;}
.ws145{word-spacing:3.225840px;}
.ws116{word-spacing:3.226416px;}
.ws108{word-spacing:3.226752px;}
.ws101{word-spacing:3.227030px;}
.ws100{word-spacing:3.227904px;}
.ws148{word-spacing:3.227942px;}
.wsf5{word-spacing:3.281702px;}
.ws54{word-spacing:3.287658px;}
.ws107{word-spacing:3.335501px;}
.wsf2{word-spacing:3.407209px;}
.wse7{word-spacing:3.466985px;}
.ws12e{word-spacing:3.496896px;}
.ws122{word-spacing:3.531286px;}
.ws13c{word-spacing:3.550694px;}
.ws21{word-spacing:3.586536px;}
.ws9f{word-spacing:3.646312px;}
.ws67{word-spacing:3.658291px;}
.wse4{word-spacing:3.765863px;}
.wsf9{word-spacing:3.765888px;}
.ws12d{word-spacing:3.819686px;}
.ws10c{word-spacing:3.868682px;}
.ws10b{word-spacing:3.873485px;}
.ws5d{word-spacing:3.885414px;}
.ws5e{word-spacing:3.945190px;}
.ws104{word-spacing:3.981082px;}
.ws52{word-spacing:4.064741px;}
.ws114{word-spacing:4.088678px;}
.wsf4{word-spacing:4.124516px;}
.ws12b{word-spacing:4.142477px;}
.ws53{word-spacing:4.244068px;}
.ws55{word-spacing:4.303843px;}
.wsb5{word-spacing:4.363619px;}
.ws106{word-spacing:4.411469px;}
.wse8{word-spacing:4.423394px;}
.ws121{word-spacing:4.465267px;}
.wsbe{word-spacing:4.483170px;}
.wsc0{word-spacing:4.542946px;}
.wsd9{word-spacing:4.626662px;}
.ws37{word-spacing:4.662497px;}
.wsd8{word-spacing:4.680461px;}
.wse{word-spacing:4.770079px;}
.wsfc{word-spacing:4.788058px;}
.wsec{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws10e{word-spacing:4.895654px;}
.ws9a{word-spacing:4.901599px;}
.ws33{word-spacing:4.961375px;}
.ws39{word-spacing:5.021150px;}
.wsf8{word-spacing:5.272243px;}
.wsca{word-spacing:5.379804px;}
.wsbf{word-spacing:5.618906px;}
.ws22{word-spacing:5.678682px;}
.wscb{word-spacing:5.917784px;}
.ws3a{word-spacing:6.037336px;}
.ws75{word-spacing:6.097111px;}
.ws6a{word-spacing:6.133018px;}
.wsba{word-spacing:6.216662px;}
.wsbb{word-spacing:6.233937px;}
.ws40{word-spacing:6.336214px;}
.wsa5{word-spacing:6.392790px;}
.wsa4{word-spacing:6.402010px;}
.wsad{word-spacing:6.455765px;}
.wsac{word-spacing:6.459108px;}
.wsea{word-spacing:6.754643px;}
.ws64{word-spacing:6.814418px;}
.wsed{word-spacing:6.874194px;}
.ws141{word-spacing:6.886195px;}
.wsa2{word-spacing:7.155187px;}
.wsa3{word-spacing:7.157359px;}
.ws120{word-spacing:7.174979px;}
.wsa1{word-spacing:7.208986px;}
.ws44{word-spacing:7.292623px;}
.ws6f{word-spacing:7.531726px;}
.wsaa{word-spacing:7.711052px;}
.wsc{word-spacing:7.782761px;}
.ws2a{word-spacing:7.830604px;}
.ws26{word-spacing:7.890379px;}
.ws12a{word-spacing:8.069760px;}
.ws3c{word-spacing:8.189257px;}
.ws45{word-spacing:8.308808px;}
.wsa{word-spacing:12.176255px;}
.ws102{word-spacing:12.574208px;}
.ws103{word-spacing:12.588826px;}
.wsfa{word-spacing:15.009754px;}
.ws10d{word-spacing:15.278746px;}
.wsb{word-spacing:16.109478px;}
.wsc1{word-spacing:17.753353px;}
.ws38{word-spacing:18.112007px;}
.wsd{word-spacing:26.109907px;}
.ws70{word-spacing:26.719693px;}
.ws9{word-spacing:26.840252px;}
.ws78{word-spacing:167.802485px;}
.ws4c{word-spacing:190.832504px;}
.ws4e{word-spacing:210.722504px;}
.ws80{word-spacing:237.542804px;}
.ws88{word-spacing:278.402804px;}
.ws8a{word-spacing:330.620804px;}
.ws4b{word-spacing:382.490504px;}
.ws8b{word-spacing:462.924183px;}
.ws50{word-spacing:469.824785px;}
.ws89{word-spacing:482.409972px;}
.ws8d{word-spacing:524.037637px;}
.ws82{word-spacing:593.119350px;}
.ws7d{word-spacing:787.667452px;}
._7{margin-left:-35.544868px;}
._15{margin-left:-27.197898px;}
._74{margin-left:-24.532070px;}
._6e{margin-left:-7.710797px;}
._8{margin-left:-6.635092px;}
._77{margin-left:-5.617363px;}
._2{margin-left:-4.602708px;}
._b{margin-left:-3.132299px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._9{width:3.672580px;}
._73{width:5.648832px;}
._14{width:7.539293px;}
._3{width:10.460700px;}
._16{width:11.955150px;}
._4{width:12.971268px;}
._70{width:13.995058px;}
._c{width:15.274418px;}
._e{width:16.408512px;}
._f{width:18.112007px;}
._11{width:20.024826px;}
._1a{width:21.108354px;}
._10{width:22.602744px;}
._12{width:23.858032px;}
._d{width:25.392845px;}
._13{width:26.682619px;}
._19{width:27.974981px;}
._75{width:29.425022px;}
._6{width:30.587087px;}
._1c{width:32.398362px;}
._1b{width:34.378537px;}
._35{width:35.582232px;}
._6f{width:37.778179px;}
._72{width:39.907361px;}
._a{width:54.423634px;}
._78{width:61.868160px;}
._76{width:88.767360px;}
._1d{width:165.889661px;}
._31{width:170.706700px;}
._30{width:172.727654px;}
._34{width:175.018187px;}
._33{width:176.579654px;}
._55{width:180.832365px;}
._3f{width:182.898170px;}
._63{width:185.325149px;}
._57{width:187.067542px;}
._26{width:199.380591px;}
._27{width:201.153592px;}
._5b{width:203.492871px;}
._4d{width:204.569654px;}
._5d{width:207.850263px;}
._2c{width:210.878876px;}
._54{width:211.926591px;}
._3e{width:216.857654px;}
._56{width:218.172591px;}
._62{width:219.755654px;}
._23{width:224.673694px;}
._64{width:226.518291px;}
._6c{width:228.137224px;}
._25{width:229.959715px;}
._4f{width:233.187886px;}
._2b{width:236.351954px;}
._6b{width:238.022150px;}
._52{width:239.740419px;}
._41{width:242.643764px;}
._68{width:245.602442px;}
._47{width:247.247954px;}
._22{width:250.151954px;}
._5a{width:252.158277px;}
._24{width:255.431954px;}
._6d{width:257.370243px;}
._2e{width:259.824926px;}
._4c{width:263.099954px;}
._66{width:264.642304px;}
._2d{width:266.458610px;}
._43{width:268.043041px;}
._21{width:269.872674px;}
._69{width:271.037954px;}
._6a{width:272.453654px;}
._28{width:273.774291px;}
._29{width:275.067919px;}
._40{width:277.067654px;}
._46{width:278.175296px;}
._67{width:280.031654px;}
._53{width:281.755359px;}
._20{width:283.385954px;}
._61{width:285.008719px;}
._5c{width:286.554291px;}
._65{width:293.681654px;}
._51{width:297.605954px;}
._42{width:298.944291px;}
._5f{width:300.515919px;}
._2a{width:301.969901px;}
._4b{width:307.500658px;}
._45{width:308.814591px;}
._3a{width:310.761819px;}
._3c{width:317.296097px;}
._60{width:319.433654px;}
._1f{width:326.040851px;}
._3d{width:328.667654px;}
._4e{width:333.089954px;}
._5e{width:334.427654px;}
._59{width:342.799409px;}
._49{width:344.725369px;}
._2f{width:352.400668px;}
._38{width:354.015902px;}
._3b{width:359.886591px;}
._4a{width:364.769954px;}
._1e{width:366.066693px;}
._39{width:369.095954px;}
._58{width:373.902291px;}
._50{width:377.393654px;}
._48{width:389.780884px;}
._37{width:437.080284px;}
._32{width:511.115811px;}
._36{width:518.470945px;}
._44{width:533.695952px;}
._17{width:873.786842px;}
._71{width:2378.095511px;}
._18{width:2402.005511px;}
.fc6{color:rgb(8,117,183);}
.fc5{color:rgb(53,30,58);}
.fc7{color:transparent;}
.fc4{color:rgb(90,40,100);}
.fc3{color:rgb(14,15,14);}
.fc2{color:rgb(72,62,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs9{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs8{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsa{font-size:47.820600px;}
.fs3{font-size:52.914960px;}
.fsb{font-size:53.798400px;}
.fs4{font-size:56.694600px;}
.fs6{font-size:59.775600px;}
.fs5{font-size:68.033520px;}
.fs7{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y20{bottom:9.473101px;}
.y2{bottom:14.151273px;}
.y1f{bottom:28.937869px;}
.y4e{bottom:31.890000px;}
.y1e{bottom:32.769195px;}
.y88{bottom:91.665000px;}
.y198{bottom:100.500000px;}
.y1d7{bottom:101.230500px;}
.y14d{bottom:102.709500px;}
.y210{bottom:104.503500px;}
.y1c{bottom:104.646000px;}
.y1a3{bottom:106.744500px;}
.y87{bottom:110.494500px;}
.y4d{bottom:111.211500px;}
.ya8{bottom:113.545500px;}
.y1d6{bottom:118.491000px;}
.y197{bottom:119.329500px;}
.y14c{bottom:121.539000px;}
.y20f{bottom:121.762500px;}
.y1b{bottom:122.535000px;}
.y1a2{bottom:125.574000px;}
.y118{bottom:129.324000px;}
.y4c{bottom:130.041000px;}
.ya7{bottom:132.778500px;}
.y1d5{bottom:135.751500px;}
.y132{bottom:138.052500px;}
.y196{bottom:138.159000px;}
.y20e{bottom:139.023000px;}
.y14b{bottom:140.368500px;}
.y1a{bottom:140.422500px;}
.y16c{bottom:144.403500px;}
.y117{bottom:148.153500px;}
.y4b{bottom:148.870500px;}
.y86{bottom:150.144000px;}
.ya6{bottom:152.011500px;}
.y1d4{bottom:153.012000px;}
.y20d{bottom:156.283500px;}
.y131{bottom:156.882000px;}
.y195{bottom:156.988500px;}
.y85{bottom:157.242000px;}
.y19{bottom:158.310000px;}
.y14a{bottom:159.198000px;}
.y16b{bottom:163.233000px;}
.y116{bottom:166.983000px;}
.y4a{bottom:167.700000px;}
.y1d3{bottom:170.272500px;}
.ya5{bottom:171.244500px;}
.y20c{bottom:173.544000px;}
.y130{bottom:175.711500px;}
.y194{bottom:175.818000px;}
.y18{bottom:176.199000px;}
.y149{bottom:178.027500px;}
.y83{bottom:179.136000px;}
.y16a{bottom:182.062500px;}
.y115{bottom:185.812500px;}
.y49{bottom:186.529500px;}
.y1d2{bottom:187.531500px;}
.ya4{bottom:190.477500px;}
.y20b{bottom:190.804500px;}
.y82{bottom:193.930500px;}
.y17{bottom:194.086500px;}
.y12f{bottom:194.541000px;}
.y193{bottom:194.647500px;}
.y148{bottom:196.857000px;}
.y169{bottom:200.892000px;}
.y81{bottom:201.028500px;}
.y114{bottom:204.642000px;}
.y1d1{bottom:204.792000px;}
.y48{bottom:205.359000px;}
.y20a{bottom:208.065000px;}
.ya3{bottom:209.710500px;}
.y16{bottom:211.974000px;}
.y12e{bottom:213.370500px;}
.y192{bottom:213.477000px;}
.yd4{bottom:215.238000px;}
.y147{bottom:215.686500px;}
.y168{bottom:219.721500px;}
.y84{bottom:221.415000px;}
.y1d0{bottom:222.052500px;}
.y80{bottom:222.921000px;}
.y47{bottom:224.188500px;}
.y209{bottom:225.325500px;}
.y113{bottom:227.955000px;}
.ya2{bottom:228.943500px;}
.y15{bottom:229.863000px;}
.y7f{bottom:230.019000px;}
.y12d{bottom:232.200000px;}
.y191{bottom:232.305000px;}
.yd3{bottom:234.067500px;}
.y146{bottom:234.516000px;}
.y166{bottom:238.551000px;}
.y1cf{bottom:239.313000px;}
.y208{bottom:242.586000px;}
.y46{bottom:243.018000px;}
.y167{bottom:243.975000px;}
.y12c{bottom:251.029500px;}
.y190{bottom:251.134500px;}
.y7e{bottom:251.913000px;}
.yd2{bottom:252.897000px;}
.y145{bottom:253.345500px;}
.y1ce{bottom:256.573500px;}
.y164{bottom:257.380500px;}
.y207{bottom:259.846500px;}
.y45{bottom:261.847500px;}
.y165{bottom:262.804500px;}
.y7d{bottom:266.707500px;}
.y112{bottom:267.759000px;}
.y12b{bottom:269.859000px;}
.y18f{bottom:269.964000px;}
.yd1{bottom:271.726500px;}
.y144{bottom:272.175000px;}
.y7c{bottom:273.805500px;}
.y1cd{bottom:273.834000px;}
.y162{bottom:276.210000px;}
.y206{bottom:277.105500px;}
.y44{bottom:280.677000px;}
.y163{bottom:281.634000px;}
.y110{bottom:282.553500px;}
.y12a{bottom:288.688500px;}
.y18e{bottom:288.793500px;}
.yd0{bottom:290.556000px;}
.y143{bottom:291.004500px;}
.y1cc{bottom:291.094500px;}
.y205{bottom:294.366000px;}
.y161{bottom:295.039500px;}
.y7b{bottom:295.848000px;}
.y10f{bottom:297.348000px;}
.y43{bottom:299.506500px;}
.y14{bottom:300.154500px;}
.y111{bottom:302.043000px;}
.y18d{bottom:307.623000px;}
.y1cb{bottom:308.355000px;}
.ycf{bottom:309.385500px;}
.y142{bottom:309.834000px;}
.y7a{bottom:310.791000px;}
.y204{bottom:311.626500px;}
.y129{bottom:312.001500px;}
.y10e{bottom:312.142500px;}
.y160{bottom:313.869000px;}
.y13{bottom:318.043500px;}
.y42{bottom:318.334500px;}
.y1a1{bottom:318.351000px;}
.y1ca{bottom:325.614000px;}
.y79{bottom:325.735500px;}
.y18c{bottom:326.452500px;}
.y10d{bottom:326.937000px;}
.yce{bottom:328.215000px;}
.y141{bottom:328.663500px;}
.y203{bottom:328.887000px;}
.y15f{bottom:332.698500px;}
.y12{bottom:335.931000px;}
.y41{bottom:337.164000px;}
.y77{bottom:340.530000px;}
.y10c{bottom:341.731500px;}
.y1c9{bottom:342.874500px;}
.y18b{bottom:345.282000px;}
.y128{bottom:345.625500px;}
.y202{bottom:346.147500px;}
.ycd{bottom:347.044500px;}
.y140{bottom:347.493000px;}
.y15e{bottom:351.528000px;}
.y1a0{bottom:351.975000px;}
.y11{bottom:353.818500px;}
.y78{bottom:354.478500px;}
.y76{bottom:355.324500px;}
.y40{bottom:355.993500px;}
.y10b{bottom:356.674500px;}
.y1c8{bottom:360.135000px;}
.y201{bottom:363.408000px;}
.y18a{bottom:364.111500px;}
.y127{bottom:364.455000px;}
.ycc{bottom:365.874000px;}
.y13f{bottom:366.322500px;}
.y75{bottom:370.119000px;}
.y15d{bottom:370.357500px;}
.y19f{bottom:370.804500px;}
.y108{bottom:371.469000px;}
.y3f{bottom:374.823000px;}
.y1c7{bottom:377.395500px;}
.y200{bottom:380.668500px;}
.y10{bottom:380.673000px;}
.y189{bottom:382.941000px;}
.y126{bottom:383.284500px;}
.ycb{bottom:384.703500px;}
.y74{bottom:384.913500px;}
.y13e{bottom:385.152000px;}
.y107{bottom:386.263500px;}
.y15c{bottom:389.187000px;}
.y19e{bottom:389.634000px;}
.y3e{bottom:393.652500px;}
.y1c6{bottom:394.656000px;}
.y1ff{bottom:397.929000px;}
.yf{bottom:398.562000px;}
.y73{bottom:399.858000px;}
.y106{bottom:401.058000px;}
.y188{bottom:401.770500px;}
.y125{bottom:402.114000px;}
.yca{bottom:403.533000px;}
.y13d{bottom:403.981500px;}
.y15b{bottom:408.015000px;}
.y19d{bottom:408.463500px;}
.y1c5{bottom:411.916500px;}
.y3d{bottom:412.482000px;}
.y1fe{bottom:415.188000px;}
.y105{bottom:415.852500px;}
.ye{bottom:416.449500px;}
.y187{bottom:420.600000px;}
.y124{bottom:420.943500px;}
.yc9{bottom:422.362500px;}
.y13c{bottom:422.811000px;}
.y15a{bottom:426.844500px;}
.ya1{bottom:427.293000px;}
.y1c4{bottom:429.177000px;}
.y72{bottom:429.907500px;}
.y104{bottom:430.647000px;}
.y3c{bottom:431.311500px;}
.y1fd{bottom:432.448500px;}
.y186{bottom:439.429500px;}
.y123{bottom:439.773000px;}
.yc8{bottom:441.192000px;}
.y13b{bottom:441.639000px;}
.yd{bottom:444.798000px;}
.y103{bottom:445.441500px;}
.y159{bottom:445.674000px;}
.ya0{bottom:446.122500px;}
.y1c3{bottom:446.437500px;}
.y71{bottom:449.140500px;}
.y1fc{bottom:449.709000px;}
.y3b{bottom:450.141000px;}
.y10a{bottom:457.236000px;}
.y185{bottom:458.259000px;}
.y122{bottom:458.602500px;}
.yc7{bottom:460.021500px;}
.y102{bottom:460.236000px;}
.y13a{bottom:460.468500px;}
.y1c2{bottom:463.698000px;}
.y158{bottom:464.503500px;}
.y9f{bottom:464.952000px;}
.y1fb{bottom:466.969500px;}
.y70{bottom:468.373500px;}
.y3a{bottom:468.970500px;}
.yc{bottom:471.652500px;}
.y101{bottom:475.030500px;}
.y184{bottom:477.088500px;}
.y121{bottom:477.432000px;}
.yc6{bottom:478.851000px;}
.y139{bottom:479.298000px;}
.y1c1{bottom:480.957000px;}
.y157{bottom:483.333000px;}
.y9d{bottom:483.781500px;}
.y1fa{bottom:484.230000px;}
.y39{bottom:487.800000px;}
.y9e{bottom:489.207000px;}
.yb{bottom:489.540000px;}
.y100{bottom:489.825000px;}
.y183{bottom:495.918000px;}
.y138{bottom:498.127500px;}
.y1c0{bottom:498.217500px;}
.y1f9{bottom:501.490500px;}
.yc5{bottom:502.162500px;}
.y6f{bottom:502.611000px;}
.yff{bottom:504.619500px;}
.ya{bottom:507.429000px;}
.y120{bottom:510.997500px;}
.y38{bottom:511.113000px;}
.y182{bottom:514.747500px;}
.y1bf{bottom:515.478000px;}
.y137{bottom:516.957000px;}
.y1f8{bottom:518.751000px;}
.yfe{bottom:519.414000px;}
.y156{bottom:520.992000px;}
.y6e{bottom:521.440500px;}
.y9{bottom:525.316500px;}
.y9c{bottom:526.866000px;}
.y11f{bottom:530.230500px;}
.y1be{bottom:532.738500px;}
.y181{bottom:533.577000px;}
.yfd{bottom:534.208500px;}
.yc4{bottom:535.786500px;}
.y1f7{bottom:536.011500px;}
.y155{bottom:539.821500px;}
.y6d{bottom:540.270000px;}
.y8{bottom:543.204000px;}
.yfc{bottom:549.003000px;}
.y11e{bottom:549.463500px;}
.y1bd{bottom:549.999000px;}
.y180{bottom:552.406500px;}
.y109{bottom:552.417000px;}
.y1f6{bottom:553.272000px;}
.yc3{bottom:554.616000px;}
.y154{bottom:558.651000px;}
.y6c{bottom:559.099500px;}
.y7{bottom:561.093000px;}
.yfb{bottom:563.797500px;}
.y1bc{bottom:567.259500px;}
.y11d{bottom:568.696500px;}
.y1f5{bottom:570.531000px;}
.y17f{bottom:571.236000px;}
.yc2{bottom:573.445500px;}
.y153{bottom:577.480500px;}
.y6b{bottom:577.929000px;}
.yfa{bottom:578.592000px;}
.y6{bottom:578.980500px;}
.y1bb{bottom:584.520000px;}
.yf9{bottom:585.691500px;}
.y37{bottom:586.263000px;}
.y1f4{bottom:587.791500px;}
.y11c{bottom:587.928000px;}
.yc1{bottom:592.275000px;}
.y17e{bottom:594.549000px;}
.y152{bottom:596.310000px;}
.y6a{bottom:596.758500px;}
.y5{bottom:596.868000px;}
.y1ba{bottom:601.780500px;}
.y1f3{bottom:605.052000px;}
.y11b{bottom:607.161000px;}
.yf7{bottom:607.584000px;}
.yc0{bottom:611.104500px;}
.y4{bottom:614.757000px;}
.y151{bottom:615.139500px;}
.y69{bottom:615.588000px;}
.y1b8{bottom:619.039500px;}
.y1b9{bottom:619.041000px;}
.y1f2{bottom:622.312500px;}
.yf6{bottom:622.378500px;}
.y36{bottom:623.652000px;}
.y11a{bottom:626.394000px;}
.y17d{bottom:628.173000px;}
.ybf{bottom:629.934000px;}
.y1{bottom:632.644464px;}
.y150{bottom:633.969000px;}
.y68{bottom:634.417500px;}
.y1b7{bottom:636.300000px;}
.yf5{bottom:637.173000px;}
.y1f1{bottom:639.573000px;}
.y9b{bottom:639.841500px;}
.yf8{bottom:641.781000px;}
.y35{bottom:643.110000px;}
.yf4{bottom:644.271000px;}
.y119{bottom:645.627000px;}
.y17c{bottom:647.002500px;}
.ybe{bottom:648.763500px;}
.y14f{bottom:652.798500px;}
.y67{bottom:653.247000px;}
.y1b6{bottom:653.560500px;}
.y1f0{bottom:656.833500px;}
.y34{bottom:662.566500px;}
.y17b{bottom:665.830500px;}
.yf3{bottom:666.163500px;}
.ybd{bottom:667.593000px;}
.y1b5{bottom:670.821000px;}
.y66{bottom:672.076500px;}
.y1ef{bottom:674.094000px;}
.y14e{bottom:676.111500px;}
.y9a{bottom:677.500500px;}
.yf2{bottom:680.958000px;}
.y33{bottom:682.024500px;}
.y17a{bottom:684.660000px;}
.y136{bottom:686.422500px;}
.yf1{bottom:688.056000px;}
.y1b4{bottom:688.081500px;}
.y99{bottom:690.906000px;}
.y1ee{bottom:691.354500px;}
.y65{bottom:695.389500px;}
.y32{bottom:701.481000px;}
.y179{bottom:703.489500px;}
.y135{bottom:705.252000px;}
.y1b3{bottom:705.342000px;}
.y1ed{bottom:708.613500px;}
.y97{bottom:709.735500px;}
.yf0{bottom:709.950000px;}
.y98{bottom:715.159500px;}
.y31{bottom:720.937500px;}
.y178{bottom:722.319000px;}
.y1b2{bottom:722.602500px;}
.y134{bottom:724.081500px;}
.ybc{bottom:724.530000px;}
.y1ec{bottom:725.874000px;}
.y96{bottom:728.565000px;}
.y64{bottom:729.013500px;}
.yef{bottom:730.818000px;}
.yee{bottom:739.539000px;}
.y1b1{bottom:739.863000px;}
.y30{bottom:740.395500px;}
.y177{bottom:741.148500px;}
.y133{bottom:742.911000px;}
.y1eb{bottom:743.134500px;}
.ybb{bottom:743.359500px;}
.y95{bottom:747.394500px;}
.y63{bottom:747.843000px;}
.y1b0{bottom:757.123500px;}
.y2f{bottom:759.852000px;}
.y176{bottom:759.978000px;}
.y1ea{bottom:760.395000px;}
.yed{bottom:761.781000px;}
.yba{bottom:762.189000px;}
.y94{bottom:766.224000px;}
.y62{bottom:766.671000px;}
.yec{bottom:769.128000px;}
.y1af{bottom:774.382500px;}
.y1e9{bottom:777.655500px;}
.y175{bottom:778.807500px;}
.y2e{bottom:779.310000px;}
.yb9{bottom:781.018500px;}
.yeb{bottom:784.071000px;}
.y93{bottom:785.053500px;}
.y61{bottom:785.500500px;}
.y1ae{bottom:791.643000px;}
.y1e8{bottom:794.916000px;}
.y174{bottom:797.637000px;}
.y2d{bottom:798.766500px;}
.ye9{bottom:798.865500px;}
.yb8{bottom:799.848000px;}
.y92{bottom:803.883000px;}
.y60{bottom:804.330000px;}
.y1e7{bottom:812.176500px;}
.y1ad{bottom:813.387000px;}
.ye8{bottom:813.660000px;}
.y173{bottom:816.466500px;}
.y2c{bottom:818.223000px;}
.yb7{bottom:818.677500px;}
.y91{bottom:822.712500px;}
.y5f{bottom:823.159500px;}
.yea{bottom:825.891000px;}
.ye7{bottom:828.454500px;}
.y1e6{bottom:829.437000px;}
.ye6{bottom:835.554000px;}
.yb6{bottom:837.507000px;}
.y2b{bottom:837.681000px;}
.y90{bottom:841.540500px;}
.y5e{bottom:841.989000px;}
.y1e5{bottom:846.697500px;}
.y1ac{bottom:847.011000px;}
.y172{bottom:850.032000px;}
.yb5{bottom:856.335000px;}
.ye5{bottom:857.446500px;}
.y8f{bottom:860.370000px;}
.y5d{bottom:860.818500px;}
.y1e4{bottom:863.956500px;}
.y171{bottom:869.265000px;}
.ye4{bottom:872.241000px;}
.y1ab{bottom:873.552000px;}
.yb4{bottom:875.164500px;}
.y2a{bottom:876.265500px;}
.y8e{bottom:879.199500px;}
.y5c{bottom:879.648000px;}
.y1e3{bottom:881.217000px;}
.y170{bottom:888.498000px;}
.y29{bottom:892.405500px;}
.yb3{bottom:893.994000px;}
.ye3{bottom:894.633000px;}
.y8d{bottom:898.029000px;}
.y5b{bottom:898.477500px;}
.y1aa{bottom:900.091500px;}
.ye2{bottom:901.978500px;}
.y16f{bottom:907.731000px;}
.y28{bottom:908.545500px;}
.yb2{bottom:912.823500px;}
.y1e2{bottom:915.738000px;}
.y8c{bottom:916.858500px;}
.ye1{bottom:916.923000px;}
.y5a{bottom:917.307000px;}
.y1a9{bottom:926.632500px;}
.y16e{bottom:926.964000px;}
.y27{bottom:929.023500px;}
.yb1{bottom:931.653000px;}
.ye0{bottom:931.867500px;}
.y1e1{bottom:932.998500px;}
.y8b{bottom:935.688000px;}
.y59{bottom:936.136500px;}
.y26{bottom:940.824000px;}
.y16d{bottom:946.197000px;}
.yde{bottom:946.662000px;}
.y1e0{bottom:950.259000px;}
.yb0{bottom:950.482500px;}
.y1a8{bottom:953.173500px;}
.y8a{bottom:954.517500px;}
.y58{bottom:954.966000px;}
.y25{bottom:961.303500px;}
.ydd{bottom:961.456500px;}
.y1df{bottom:967.519500px;}
.yaf{bottom:969.312000px;}
.y1a7{bottom:970.747500px;}
.y19c{bottom:973.347000px;}
.y57{bottom:973.795500px;}
.ydf{bottom:974.806500px;}
.ydc{bottom:976.251000px;}
.y89{bottom:977.830500px;}
.y1de{bottom:984.780000px;}
.yae{bottom:988.141500px;}
.ydb{bottom:991.045500px;}
.y19b{bottom:992.176500px;}
.y56{bottom:992.625000px;}
.y1a6{bottom:997.287000px;}
.y1dd{bottom:1002.040500px;}
.yda{bottom:1005.840000px;}
.y24{bottom:1005.979500px;}
.yad{bottom:1006.971000px;}
.y19a{bottom:1011.006000px;}
.y55{bottom:1011.454500px;}
.y1a5{bottom:1014.862500px;}
.y1dc{bottom:1019.299500px;}
.yd9{bottom:1020.634500px;}
.y23{bottom:1024.809000px;}
.yac{bottom:1025.800500px;}
.y54{bottom:1030.284000px;}
.y1a4{bottom:1032.436500px;}
.y199{bottom:1034.319000px;}
.yd8{bottom:1035.577500px;}
.y1db{bottom:1036.560000px;}
.yab{bottom:1044.630000px;}
.y53{bottom:1049.113500px;}
.y1da{bottom:1053.820500px;}
.yaa{bottom:1063.459500px;}
.y22{bottom:1064.728500px;}
.y52{bottom:1067.943000px;}
.yd7{bottom:1068.616500px;}
.y1d9{bottom:1071.081000px;}
.ya9{bottom:1082.289000px;}
.y51{bottom:1086.772500px;}
.yd6{bottom:1087.849500px;}
.y1d8{bottom:1088.341500px;}
.y21{bottom:1092.972000px;}
.y50{bottom:1105.602000px;}
.yd5{bottom:1107.082500px;}
.y1d{bottom:1136.460000px;}
.y4f{bottom:1168.366500px;}
.h2{height:25.508090px;}
.he{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.712615px;}
.h1b{height:33.072749px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h16{height:34.430832px;}
.hf{height:34.813397px;}
.h15{height:35.100320px;}
.h8{height:35.876343px;}
.h1e{height:37.551283px;}
.h10{height:38.734848px;}
.h11{height:39.165235px;}
.h9{height:39.402747px;}
.h12{height:39.488026px;}
.h1d{height:41.723369px;}
.h1c{height:41.842920px;}
.h13{height:43.038432px;}
.h14{height:43.516637px;}
.hb{height:43.875290px;}
.ha{height:46.126727px;}
.h7{height:50.931027px;}
.hd{height:54.411312px;}
.h17{height:63.205397px;}
.h1a{height:63.211397px;}
.h19{height:63.492320px;}
.h18{height:63.498320px;}
.hc{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x4{left:60.027581px;}
.x58{left:61.998000px;}
.xb4{left:85.848000px;}
.x4d{left:141.678000px;}
.x4f{left:145.719000px;}
.x4b{left:151.618500px;}
.x50{left:166.491000px;}
.x3{left:181.274369px;}
.x51{left:226.744500px;}
.x52{left:239.931000px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x54{left:259.974000px;}
.x25{left:266.352000px;}
.x8{left:268.108500px;}
.x6{left:269.914500px;}
.x59{left:271.164000px;}
.xa{left:281.479500px;}
.x28{left:284.320500px;}
.x27{left:290.208000px;}
.x38{left:295.324500px;}
.x79{left:298.794000px;}
.x21{left:300.364500px;}
.xa9{left:301.810500px;}
.xb{left:305.455500px;}
.x63{left:306.873000px;}
.x9{left:308.151000px;}
.xb3{left:309.301500px;}
.x90{left:310.534500px;}
.xc{left:312.927000px;}
.x39{left:314.187000px;}
.xd{left:316.722000px;}
.x91{left:319.578000px;}
.x86{left:321.199500px;}
.xe{left:324.195000px;}
.x3f{left:330.232500px;}
.x5f{left:331.758000px;}
.xaa{left:335.508000px;}
.x9f{left:339.301500px;}
.x40{left:340.696500px;}
.x60{left:346.702500px;}
.x61{left:350.364000px;}
.x72{left:361.681500px;}
.x62{left:365.307000px;}
.x9d{left:368.298000px;}
.x92{left:371.493000px;}
.x84{left:373.440000px;}
.x30{left:377.238000px;}
.x9e{left:378.762000px;}
.x64{left:380.596500px;}
.x65{left:391.060500px;}
.x13{left:394.137000px;}
.x14{left:401.610000px;}
.x4e{left:405.831000px;}
.x15{left:409.066500px;}
.x4c{left:412.639500px;}
.x16{left:416.538000px;}
.x98{left:418.830000px;}
.x93{left:420.226500px;}
.x94{left:424.038000px;}
.xb5{left:426.138000px;}
.x99{left:430.186500px;}
.x26{left:435.787500px;}
.x24{left:438.777000px;}
.x23{left:442.596000px;}
.xa1{left:451.692000px;}
.x85{left:453.636000px;}
.x19{left:456.495000px;}
.x95{left:457.735500px;}
.xb1{left:459.115500px;}
.x73{left:460.417500px;}
.x1a{left:463.966500px;}
.xb2{left:466.587000px;}
.x1b{left:467.628000px;}
.xa2{left:470.446500px;}
.x83{left:473.820000px;}
.x1c{left:475.099500px;}
.xa6{left:478.426500px;}
.xa7{left:482.223000px;}
.x6f{left:489.469500px;}
.x8b{left:490.486500px;}
.x70{left:493.281000px;}
.x8c{left:494.293500px;}
.x45{left:495.408000px;}
.xa8{left:497.167500px;}
.x56{left:501.088500px;}
.x71{left:508.224000px;}
.x8d{left:509.236500px;}
.x46{left:510.351000px;}
.x74{left:512.400000px;}
.x43{left:515.058000px;}
.x5a{left:516.982500px;}
.x7b{left:520.348500px;}
.x9c{left:521.475000px;}
.xa3{left:526.372500px;}
.x8e{left:527.988000px;}
.x44{left:530.001000px;}
.x47{left:535.677000px;}
.xab{left:538.432500px;}
.x17{left:542.091000px;}
.xc0{left:543.447000px;}
.xa4{left:544.977000px;}
.xac{left:547.477500px;}
.x18{left:549.564000px;}
.x48{left:550.621500px;}
.xc1{left:555.843000px;}
.x66{left:560.082000px;}
.x2c{left:561.609000px;}
.xa5{left:563.583000px;}
.x29{left:568.357500px;}
.x34{left:575.778000px;}
.x53{left:577.122000px;}
.x3a{left:581.463000px;}
.xb7{left:586.392000px;}
.x35{left:590.722500px;}
.x55{left:592.401000px;}
.x3b{left:596.406000px;}
.xb8{left:598.717500px;}
.x2b{left:600.702000px;}
.x7c{left:605.982000px;}
.x2a{left:608.037000px;}
.x31{left:610.128000px;}
.x8f{left:613.819500px;}
.x3c{left:615.127500px;}
.x3d{left:618.904500px;}
.x68{left:622.705500px;}
.x32{left:627.978000px;}
.x81{left:631.161000px;}
.x3e{left:633.849000px;}
.xa0{left:636.903000px;}
.x82{left:638.632500px;}
.xaf{left:639.793500px;}
.xc4{left:658.537500px;}
.xb6{left:659.956500px;}
.x87{left:665.857500px;}
.xc2{left:667.014000px;}
.x7a{left:668.920500px;}
.x75{left:674.169000px;}
.xc3{left:678.511500px;}
.x36{left:680.871000px;}
.x49{left:682.350000px;}
.xf{left:684.081000px;}
.x67{left:685.092000px;}
.x33{left:687.210000px;}
.x4a{left:689.074500px;}
.x10{left:691.554000px;}
.x76{left:692.923500px;}
.x11{left:695.364000px;}
.xbd{left:696.412500px;}
.x37{left:698.466000px;}
.xc7{left:700.918500px;}
.x12{left:702.837000px;}
.xb0{left:705.390000px;}
.x77{left:707.866500px;}
.x78{left:708.876000px;}
.xc8{left:713.202000px;}
.x69{left:714.742500px;}
.xae{left:716.794500px;}
.x5b{left:724.011000px;}
.x6a{left:729.687000px;}
.xc5{left:731.860500px;}
.x6b{left:733.347000px;}
.x5c{left:738.955500px;}
.xbe{left:741.376500px;}
.x5d{left:742.765500px;}
.x6c{left:748.291500px;}
.x6d{left:751.953000px;}
.xad{left:754.128000px;}
.x96{left:755.695500px;}
.x5e{left:757.710000px;}
.xc6{left:758.760000px;}
.xb9{left:760.423500px;}
.x1d{left:764.044500px;}
.x6e{left:766.897500px;}
.x97{left:769.003500px;}
.x7d{left:770.166000px;}
.x1e{left:771.517500px;}
.x1f{left:775.327500px;}
.x20{left:782.799000px;}
.x7e{left:785.109000px;}
.xba{left:787.323000px;}
.x22{left:789.430500px;}
.x57{left:790.825500px;}
.x7f{left:792.730500px;}
.x41{left:795.868500px;}
.x9a{left:799.230000px;}
.x42{left:804.840000px;}
.x2f{left:807.489000px;}
.xbb{left:810.265500px;}
.x9b{left:814.173000px;}
.x88{left:815.431500px;}
.x80{left:817.698000px;}
.x89{left:819.093000px;}
.x2d{left:825.169500px;}
.xbf{left:830.773500px;}
.x2e{left:832.642500px;}
.x8a{left:834.036000px;}
.xbc{left:837.165000px;}
@media print{
.v4{vertical-align:-26.485333pt;}
.v5{vertical-align:-21.594667pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:25.237333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000008pt;}
.ls25{letter-spacing:0.000372pt;}
.ls1b{letter-spacing:0.000711pt;}
.ls10{letter-spacing:0.000853pt;}
.ls20{letter-spacing:0.001026pt;}
.lsd{letter-spacing:0.001382pt;}
.ls19{letter-spacing:0.001579pt;}
.ls7{letter-spacing:0.001735pt;}
.ls21{letter-spacing:0.002262pt;}
.ls24{letter-spacing:0.002397pt;}
.ls1e{letter-spacing:0.002571pt;}
.ls8{letter-spacing:0.003100pt;}
.lsf{letter-spacing:0.003304pt;}
.ls1d{letter-spacing:0.004267pt;}
.lsb{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1{letter-spacing:9.298933pt;}
.lsa{letter-spacing:10.626533pt;}
.ls2b{letter-spacing:11.054324pt;}
.ls16{letter-spacing:11.770755pt;}
.ls18{letter-spacing:11.950070pt;}
.ls12{letter-spacing:11.954133pt;}
.ls11{letter-spacing:11.955403pt;}
.ls14{letter-spacing:11.959467pt;}
.ls17{letter-spacing:12.007166pt;}
.ls27{letter-spacing:12.015319pt;}
.ls2a{letter-spacing:12.028671pt;}
.ls2c{letter-spacing:12.186297pt;}
.ls4{letter-spacing:13.283733pt;}
.ls28{letter-spacing:13.634342pt;}
.ls23{letter-spacing:14.031728pt;}
.ls1c{letter-spacing:14.706238pt;}
.ls13{letter-spacing:14.823467pt;}
.ls2d{letter-spacing:14.828800pt;}
.ls26{letter-spacing:14.899071pt;}
.ls1f{letter-spacing:14.914336pt;}
.ls29{letter-spacing:14.937273pt;}
.ls15{letter-spacing:15.302316pt;}
.lse{letter-spacing:16.217349pt;}
.ls1a{letter-spacing:16.311467pt;}
.ls22{letter-spacing:20.081401pt;}
.ls2{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.315733pt;}
.ws11{word-spacing:-13.283467pt;}
.wsfb{word-spacing:-11.955200pt;}
.ws15{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsb0{word-spacing:-3.878772pt;}
.ws43{word-spacing:-2.816095pt;}
.wsd1{word-spacing:-2.603559pt;}
.wsa7{word-spacing:-2.497292pt;}
.ws35{word-spacing:-2.178489pt;}
.ws34{word-spacing:-2.125355pt;}
.ws3d{word-spacing:-2.072221pt;}
.ws1e{word-spacing:-2.008474pt;}
.wsa6{word-spacing:-1.965953pt;}
.wse2{word-spacing:-1.912819pt;}
.ws24{word-spacing:-1.859685pt;}
.ws5f{word-spacing:-1.753418pt;}
.ws1{word-spacing:-1.696326pt;}
.wsf3{word-spacing:-1.647150pt;}
.ws1f{word-spacing:-1.578086pt;}
.wsb3{word-spacing:-1.540882pt;}
.wsf6{word-spacing:-1.386803pt;}
.wscf{word-spacing:-1.222079pt;}
.ws13a{word-spacing:-1.195520pt;}
.ws0{word-spacing:-1.175671pt;}
.ws9c{word-spacing:-1.168945pt;}
.ws9d{word-spacing:-1.151286pt;}
.wsa9{word-spacing:-1.115811pt;}
.ws129{word-spacing:-1.099878pt;}
.ws6{word-spacing:-1.041421pt;}
.wsb6{word-spacing:-1.009543pt;}
.wsce{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws13b{word-spacing:-0.908595pt;}
.wse9{word-spacing:-0.850142pt;}
.wsd3{word-spacing:-0.797008pt;}
.ws6b{word-spacing:-0.743874pt;}
.ws130{word-spacing:-0.717312pt;}
.wsd2{word-spacing:-0.690740pt;}
.wsf7{word-spacing:-0.669491pt;}
.wsbd{word-spacing:-0.637606pt;}
.wsae{word-spacing:-0.584473pt;}
.wsee{word-spacing:-0.531339pt;}
.ws12f{word-spacing:-0.526029pt;}
.wsb7{word-spacing:-0.478205pt;}
.wsaf{word-spacing:-0.425071pt;}
.ws11b{word-spacing:-0.382566pt;}
.wsf1{word-spacing:-0.371937pt;}
.ws41{word-spacing:-0.318803pt;}
.ws111{word-spacing:-0.286925pt;}
.ws27{word-spacing:-0.265669pt;}
.ws18{word-spacing:-0.239104pt;}
.ws3e{word-spacing:-0.212535pt;}
.ws149{word-spacing:-0.212216pt;}
.wse5{word-spacing:-0.202148pt;}
.ws17{word-spacing:-0.191283pt;}
.ws9b{word-spacing:-0.173811pt;}
.ws2d{word-spacing:-0.159402pt;}
.wsd4{word-spacing:-0.143462pt;}
.wsb9{word-spacing:-0.142095pt;}
.wse3{word-spacing:-0.114189pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws1a{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.ws46{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.ws8e{word-spacing:-0.041840pt;}
.ws131{word-spacing:-0.012715pt;}
.ws132{word-spacing:-0.012604pt;}
.ws144{word-spacing:-0.009532pt;}
.ws147{word-spacing:-0.008909pt;}
.wsfd{word-spacing:-0.007603pt;}
.ws13e{word-spacing:-0.007125pt;}
.ws12c{word-spacing:-0.007100pt;}
.ws77{word-spacing:-0.006390pt;}
.ws146{word-spacing:-0.006093pt;}
.ws85{word-spacing:-0.005943pt;}
.wsff{word-spacing:-0.005564pt;}
.ws87{word-spacing:-0.005488pt;}
.ws11c{word-spacing:-0.005410pt;}
.ws142{word-spacing:-0.004676pt;}
.ws11a{word-spacing:-0.004301pt;}
.ws119{word-spacing:-0.003354pt;}
.ws8c{word-spacing:-0.003302pt;}
.ws110{word-spacing:-0.003081pt;}
.ws4d{word-spacing:-0.003079pt;}
.ws123{word-spacing:-0.003046pt;}
.ws81{word-spacing:-0.002991pt;}
.ws48{word-spacing:-0.002968pt;}
.ws7f{word-spacing:-0.002843pt;}
.ws134{word-spacing:-0.002705pt;}
.wsb4{word-spacing:-0.002633pt;}
.ws86{word-spacing:-0.002613pt;}
.ws7e{word-spacing:-0.002242pt;}
.ws135{word-spacing:-0.002185pt;}
.ws7a{word-spacing:-0.002101pt;}
.ws83{word-spacing:-0.001715pt;}
.ws29{word-spacing:-0.001503pt;}
.ws7c{word-spacing:-0.001431pt;}
.ws51{word-spacing:-0.001116pt;}
.ws99{word-spacing:-0.001095pt;}
.ws49{word-spacing:-0.001036pt;}
.ws79{word-spacing:-0.000895pt;}
.ws4a{word-spacing:-0.000682pt;}
.ws133{word-spacing:-0.000649pt;}
.ws4f{word-spacing:-0.000546pt;}
.ws7b{word-spacing:-0.000510pt;}
.ws98{word-spacing:-0.000404pt;}
.ws91{word-spacing:-0.000173pt;}
.ws93{word-spacing:-0.000032pt;}
.ws3{word-spacing:0.000000pt;}
.ws84{word-spacing:0.000805pt;}
.ws12{word-spacing:0.001303pt;}
.ws14{word-spacing:0.001593pt;}
.ws115{word-spacing:0.001758pt;}
.ws94{word-spacing:0.001918pt;}
.ws137{word-spacing:0.046164pt;}
.ws1b{word-spacing:0.047821pt;}
.ws31{word-spacing:0.053134pt;}
.wsb2{word-spacing:0.084860pt;}
.ws90{word-spacing:0.085014pt;}
.ws59{word-spacing:0.088422pt;}
.ws5a{word-spacing:0.090356pt;}
.ws47{word-spacing:0.095642pt;}
.ws30{word-spacing:0.106268pt;}
.ws95{word-spacing:0.127522pt;}
.wsf0{word-spacing:0.130967pt;}
.ws96{word-spacing:0.139539pt;}
.ws1c{word-spacing:0.143462pt;}
.ws28{word-spacing:0.159402pt;}
.ws126{word-spacing:0.169977pt;}
.ws92{word-spacing:0.170029pt;}
.ws1d{word-spacing:0.191283pt;}
.wsbc{word-spacing:0.202824pt;}
.ws3f{word-spacing:0.212535pt;}
.wsc8{word-spacing:0.221598pt;}
.wsc9{word-spacing:0.225389pt;}
.ws68{word-spacing:0.239104pt;}
.wsa8{word-spacing:0.247272pt;}
.ws23{word-spacing:0.265669pt;}
.ws69{word-spacing:0.286925pt;}
.ws61{word-spacing:0.298677pt;}
.wse0{word-spacing:0.304477pt;}
.ws2c{word-spacing:0.318803pt;}
.wsc6{word-spacing:0.425071pt;}
.ws10a{word-spacing:0.430387pt;}
.wsd7{word-spacing:0.511568pt;}
.wsd6{word-spacing:0.526029pt;}
.wsef{word-spacing:0.531339pt;}
.ws125{word-spacing:0.573850pt;}
.wsab{word-spacing:0.690740pt;}
.wsd5{word-spacing:0.717312pt;}
.ws6d{word-spacing:0.743874pt;}
.wsc3{word-spacing:0.797008pt;}
.wsc4{word-spacing:0.841518pt;}
.wsc5{word-spacing:0.850142pt;}
.wsa0{word-spacing:0.860774pt;}
.ws7{word-spacing:0.892646pt;}
.ws63{word-spacing:0.903276pt;}
.wscd{word-spacing:0.956410pt;}
.wscc{word-spacing:0.968349pt;}
.ws76{word-spacing:1.009543pt;}
.ws11f{word-spacing:1.052058pt;}
.ws2e{word-spacing:1.062677pt;}
.wsdd{word-spacing:1.092248pt;}
.wsde{word-spacing:1.105995pt;}
.wsdb{word-spacing:1.113038pt;}
.wsdc{word-spacing:1.115811pt;}
.ws5c{word-spacing:1.168945pt;}
.ws136{word-spacing:1.191091pt;}
.wsc2{word-spacing:1.222079pt;}
.wsd0{word-spacing:1.275213pt;}
.ws118{word-spacing:1.291162pt;}
.ws25{word-spacing:1.328347pt;}
.ws11e{word-spacing:1.338982pt;}
.wseb{word-spacing:1.381481pt;}
.wsdf{word-spacing:1.434614pt;}
.ws66{word-spacing:1.482445pt;}
.ws57{word-spacing:1.487748pt;}
.ws128{word-spacing:1.578086pt;}
.ws72{word-spacing:1.594016pt;}
.ws127{word-spacing:1.625907pt;}
.ws62{word-spacing:1.647150pt;}
.ws117{word-spacing:1.673728pt;}
.ws74{word-spacing:1.700284pt;}
.wsb8{word-spacing:1.753418pt;}
.ws65{word-spacing:1.769370pt;}
.ws6e{word-spacing:1.806551pt;}
.ws10f{word-spacing:1.817190pt;}
.wsc7{word-spacing:1.912819pt;}
.ws71{word-spacing:1.965953pt;}
.ws2b{word-spacing:2.019087pt;}
.wse6{word-spacing:2.072221pt;}
.ws3b{word-spacing:2.125355pt;}
.ws58{word-spacing:2.178489pt;}
.ws4{word-spacing:2.231616pt;}
.wsb1{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws140{word-spacing:2.280645pt;}
.ws9e{word-spacing:2.284756pt;}
.ws13f{word-spacing:2.295398pt;}
.ws19{word-spacing:2.438861pt;}
.ws5b{word-spacing:2.444158pt;}
.ws13d{word-spacing:2.486682pt;}
.wse1{word-spacing:2.497292pt;}
.ws56{word-spacing:2.550426pt;}
.ws32{word-spacing:2.550432pt;}
.ws8f{word-spacing:2.592939pt;}
.ws36{word-spacing:2.603559pt;}
.wsda{word-spacing:2.630144pt;}
.ws6c{word-spacing:2.656693pt;}
.ws60{word-spacing:2.709827pt;}
.ws97{word-spacing:2.720461pt;}
.ws42{word-spacing:2.762961pt;}
.ws113{word-spacing:2.773606pt;}
.ws73{word-spacing:2.816095pt;}
.ws20{word-spacing:2.861926pt;}
.ws143{word-spacing:2.862950pt;}
.ws11d{word-spacing:2.863078pt;}
.ws109{word-spacing:2.863300pt;}
.ws138{word-spacing:2.863761pt;}
.ws112{word-spacing:2.864401pt;}
.ws124{word-spacing:2.864742pt;}
.ws139{word-spacing:2.865647pt;}
.wsfe{word-spacing:2.866799pt;}
.ws105{word-spacing:2.867379pt;}
.ws145{word-spacing:2.867413pt;}
.ws116{word-spacing:2.867925pt;}
.ws108{word-spacing:2.868224pt;}
.ws101{word-spacing:2.868471pt;}
.ws100{word-spacing:2.869248pt;}
.ws148{word-spacing:2.869282pt;}
.wsf5{word-spacing:2.917069pt;}
.ws54{word-spacing:2.922363pt;}
.ws107{word-spacing:2.964890pt;}
.wsf2{word-spacing:3.028630pt;}
.wse7{word-spacing:3.081764pt;}
.ws12e{word-spacing:3.108352pt;}
.ws122{word-spacing:3.138921pt;}
.ws13c{word-spacing:3.156173pt;}
.ws21{word-spacing:3.188032pt;}
.ws9f{word-spacing:3.241166pt;}
.ws67{word-spacing:3.251814pt;}
.wse4{word-spacing:3.347434pt;}
.wsf9{word-spacing:3.347456pt;}
.ws12d{word-spacing:3.395277pt;}
.ws10c{word-spacing:3.438828pt;}
.ws10b{word-spacing:3.443098pt;}
.ws5d{word-spacing:3.453701pt;}
.ws5e{word-spacing:3.506835pt;}
.ws104{word-spacing:3.538739pt;}
.ws52{word-spacing:3.613103pt;}
.ws114{word-spacing:3.634381pt;}
.wsf4{word-spacing:3.666237pt;}
.ws12b{word-spacing:3.682202pt;}
.ws53{word-spacing:3.772505pt;}
.ws55{word-spacing:3.825638pt;}
.wsb5{word-spacing:3.878772pt;}
.ws106{word-spacing:3.921306pt;}
.wse8{word-spacing:3.931906pt;}
.ws121{word-spacing:3.969126pt;}
.wsbe{word-spacing:3.985040pt;}
.wsc0{word-spacing:4.038174pt;}
.wsd9{word-spacing:4.112589pt;}
.ws37{word-spacing:4.144442pt;}
.wsd8{word-spacing:4.160410pt;}
.wse{word-spacing:4.240070pt;}
.wsfc{word-spacing:4.256051pt;}
.wsec{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws10e{word-spacing:4.351693pt;}
.ws9a{word-spacing:4.356977pt;}
.ws33{word-spacing:4.410111pt;}
.ws39{word-spacing:4.463245pt;}
.wsf8{word-spacing:4.686438pt;}
.wsca{word-spacing:4.782048pt;}
.wsbf{word-spacing:4.994583pt;}
.ws22{word-spacing:5.047717pt;}
.wscb{word-spacing:5.260253pt;}
.ws3a{word-spacing:5.366521pt;}
.ws75{word-spacing:5.419654pt;}
.ws6a{word-spacing:5.451571pt;}
.wsba{word-spacing:5.525922pt;}
.wsbb{word-spacing:5.541277pt;}
.ws40{word-spacing:5.632190pt;}
.wsa5{word-spacing:5.682480pt;}
.wsa4{word-spacing:5.690675pt;}
.wsad{word-spacing:5.738458pt;}
.wsac{word-spacing:5.741429pt;}
.wsea{word-spacing:6.004127pt;}
.ws64{word-spacing:6.057261pt;}
.wsed{word-spacing:6.110395pt;}
.ws141{word-spacing:6.121062pt;}
.wsa2{word-spacing:6.360166pt;}
.wsa3{word-spacing:6.362097pt;}
.ws120{word-spacing:6.377759pt;}
.wsa1{word-spacing:6.407987pt;}
.ws44{word-spacing:6.482332pt;}
.ws6f{word-spacing:6.694867pt;}
.wsaa{word-spacing:6.854269pt;}
.wsc{word-spacing:6.918010pt;}
.ws2a{word-spacing:6.960537pt;}
.ws26{word-spacing:7.013670pt;}
.ws12a{word-spacing:7.173120pt;}
.ws3c{word-spacing:7.279340pt;}
.ws45{word-spacing:7.385607pt;}
.wsa{word-spacing:10.823338pt;}
.ws102{word-spacing:11.177073pt;}
.ws103{word-spacing:11.190067pt;}
.wsfa{word-spacing:13.342003pt;}
.ws10d{word-spacing:13.581107pt;}
.wsb{word-spacing:14.319536pt;}
.wsc1{word-spacing:15.780758pt;}
.ws38{word-spacing:16.099562pt;}
.wsd{word-spacing:23.208806pt;}
.ws70{word-spacing:23.750838pt;}
.ws9{word-spacing:23.858002pt;}
.ws78{word-spacing:149.157765pt;}
.ws4c{word-spacing:169.628893pt;}
.ws4e{word-spacing:187.308893pt;}
.ws80{word-spacing:211.149159pt;}
.ws88{word-spacing:247.469159pt;}
.ws8a{word-spacing:293.885159pt;}
.ws4b{word-spacing:339.991559pt;}
.ws8b{word-spacing:411.488163pt;}
.ws50{word-spacing:417.622031pt;}
.ws89{word-spacing:428.808864pt;}
.ws8d{word-spacing:465.811233pt;}
.ws82{word-spacing:527.217200pt;}
.ws7d{word-spacing:700.148846pt;}
._7{margin-left:-31.595439pt;}
._15{margin-left:-24.175909pt;}
._74{margin-left:-21.806285pt;}
._6e{margin-left:-6.854042pt;}
._8{margin-left:-5.897859pt;}
._77{margin-left:-4.993212pt;}
._2{margin-left:-4.091296pt;}
._b{margin-left:-2.784266pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._9{width:3.264515pt;}
._73{width:5.021184pt;}
._14{width:6.701594pt;}
._3{width:9.298400pt;}
._16{width:10.626800pt;}
._4{width:11.530016pt;}
._70{width:12.440051pt;}
._c{width:13.577260pt;}
._e{width:14.585344pt;}
._f{width:16.099562pt;}
._11{width:17.799845pt;}
._1a{width:18.762981pt;}
._10{width:20.091328pt;}
._12{width:21.207139pt;}
._d{width:22.571418pt;}
._13{width:23.717884pt;}
._19{width:24.866650pt;}
._75{width:26.155575pt;}
._6{width:27.188522pt;}
._1c{width:28.798544pt;}
._1b{width:30.558700pt;}
._35{width:31.628651pt;}
._6f{width:33.580604pt;}
._72{width:35.473209pt;}
._a{width:48.376563pt;}
._78{width:54.993920pt;}
._76{width:78.904320pt;}
._1d{width:147.457477pt;}
._31{width:151.739289pt;}
._30{width:153.535693pt;}
._34{width:155.571722pt;}
._33{width:156.959693pt;}
._55{width:160.739880pt;}
._3f{width:162.576151pt;}
._63{width:164.733466pt;}
._57{width:166.282259pt;}
._26{width:177.227192pt;}
._27{width:178.803193pt;}
._5b{width:180.882552pt;}
._4d{width:181.839693pt;}
._5d{width:184.755789pt;}
._2c{width:187.447890pt;}
._54{width:188.379192pt;}
._3e{width:192.762359pt;}
._56{width:193.931192pt;}
._62{width:195.338359pt;}
._23{width:199.709950pt;}
._64{width:201.349592pt;}
._6c{width:202.788644pt;}
._25{width:204.408635pt;}
._4f{width:207.278121pt;}
._2b{width:210.090626pt;}
._6b{width:211.575244pt;}
._52{width:213.102595pt;}
._41{width:215.683346pt;}
._68{width:218.313282pt;}
._47{width:219.775959pt;}
._22{width:222.357293pt;}
._5a{width:224.140691pt;}
._24{width:227.050626pt;}
._6d{width:228.773549pt;}
._2e{width:230.955490pt;}
._4c{width:233.866626pt;}
._66{width:235.237603pt;}
._2d{width:236.852098pt;}
._43{width:238.260481pt;}
._21{width:239.886821pt;}
._69{width:240.922626pt;}
._6a{width:242.181026pt;}
._28{width:243.354925pt;}
._29{width:244.504817pt;}
._40{width:246.282359pt;}
._46{width:247.266930pt;}
._67{width:248.917026pt;}
._53{width:250.449208pt;}
._20{width:251.898626pt;}
._61{width:253.341084pt;}
._5c{width:254.714925pt;}
._65{width:261.050359pt;}
._51{width:264.538626pt;}
._42{width:265.728259pt;}
._5f{width:267.125261pt;}
._2a{width:268.417690pt;}
._4b{width:273.333918pt;}
._45{width:274.501859pt;}
._3a{width:276.232728pt;}
._3c{width:282.040975pt;}
._60{width:283.941026pt;}
._1f{width:289.814090pt;}
._3d{width:292.149026pt;}
._4e{width:296.079959pt;}
._5e{width:297.269026pt;}
._59{width:304.710586pt;}
._49{width:306.422550pt;}
._2f{width:313.245038pt;}
._38{width:314.680802pt;}
._3b{width:319.899192pt;}
._4a{width:324.239959pt;}
._1e{width:325.392616pt;}
._39{width:328.085293pt;}
._58{width:332.357592pt;}
._50{width:335.461026pt;}
._48{width:346.471897pt;}
._37{width:388.515808pt;}
._32{width:454.325165pt;}
._36{width:460.863062pt;}
._44{width:474.396402pt;}
._17{width:776.699415pt;}
._71{width:2113.862676pt;}
._18{width:2135.116010pt;}
.fs9{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs8{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsa{font-size:42.507200pt;}
.fs3{font-size:47.035520pt;}
.fsb{font-size:47.820800pt;}
.fs4{font-size:50.395200pt;}
.fs6{font-size:53.133867pt;}
.fs5{font-size:60.474240pt;}
.fs7{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y20{bottom:8.420534pt;}
.y2{bottom:12.578910pt;}
.y1f{bottom:25.722550pt;}
.y4e{bottom:28.346667pt;}
.y1e{bottom:29.128174pt;}
.y88{bottom:81.480000pt;}
.y198{bottom:89.333333pt;}
.y1d7{bottom:89.982667pt;}
.y14d{bottom:91.297333pt;}
.y210{bottom:92.892000pt;}
.y1c{bottom:93.018667pt;}
.y1a3{bottom:94.884000pt;}
.y87{bottom:98.217333pt;}
.y4d{bottom:98.854667pt;}
.ya8{bottom:100.929333pt;}
.y1d6{bottom:105.325333pt;}
.y197{bottom:106.070667pt;}
.y14c{bottom:108.034667pt;}
.y20f{bottom:108.233333pt;}
.y1b{bottom:108.920000pt;}
.y1a2{bottom:111.621333pt;}
.y118{bottom:114.954667pt;}
.y4c{bottom:115.592000pt;}
.ya7{bottom:118.025333pt;}
.y1d5{bottom:120.668000pt;}
.y132{bottom:122.713333pt;}
.y196{bottom:122.808000pt;}
.y20e{bottom:123.576000pt;}
.y14b{bottom:124.772000pt;}
.y1a{bottom:124.820000pt;}
.y16c{bottom:128.358667pt;}
.y117{bottom:131.692000pt;}
.y4b{bottom:132.329333pt;}
.y86{bottom:133.461333pt;}
.ya6{bottom:135.121333pt;}
.y1d4{bottom:136.010667pt;}
.y20d{bottom:138.918667pt;}
.y131{bottom:139.450667pt;}
.y195{bottom:139.545333pt;}
.y85{bottom:139.770667pt;}
.y19{bottom:140.720000pt;}
.y14a{bottom:141.509333pt;}
.y16b{bottom:145.096000pt;}
.y116{bottom:148.429333pt;}
.y4a{bottom:149.066667pt;}
.y1d3{bottom:151.353333pt;}
.ya5{bottom:152.217333pt;}
.y20c{bottom:154.261333pt;}
.y130{bottom:156.188000pt;}
.y194{bottom:156.282667pt;}
.y18{bottom:156.621333pt;}
.y149{bottom:158.246667pt;}
.y83{bottom:159.232000pt;}
.y16a{bottom:161.833333pt;}
.y115{bottom:165.166667pt;}
.y49{bottom:165.804000pt;}
.y1d2{bottom:166.694667pt;}
.ya4{bottom:169.313333pt;}
.y20b{bottom:169.604000pt;}
.y82{bottom:172.382667pt;}
.y17{bottom:172.521333pt;}
.y12f{bottom:172.925333pt;}
.y193{bottom:173.020000pt;}
.y148{bottom:174.984000pt;}
.y169{bottom:178.570667pt;}
.y81{bottom:178.692000pt;}
.y114{bottom:181.904000pt;}
.y1d1{bottom:182.037333pt;}
.y48{bottom:182.541333pt;}
.y20a{bottom:184.946667pt;}
.ya3{bottom:186.409333pt;}
.y16{bottom:188.421333pt;}
.y12e{bottom:189.662667pt;}
.y192{bottom:189.757333pt;}
.yd4{bottom:191.322667pt;}
.y147{bottom:191.721333pt;}
.y168{bottom:195.308000pt;}
.y84{bottom:196.813333pt;}
.y1d0{bottom:197.380000pt;}
.y80{bottom:198.152000pt;}
.y47{bottom:199.278667pt;}
.y209{bottom:200.289333pt;}
.y113{bottom:202.626667pt;}
.ya2{bottom:203.505333pt;}
.y15{bottom:204.322667pt;}
.y7f{bottom:204.461333pt;}
.y12d{bottom:206.400000pt;}
.y191{bottom:206.493333pt;}
.yd3{bottom:208.060000pt;}
.y146{bottom:208.458667pt;}
.y166{bottom:212.045333pt;}
.y1cf{bottom:212.722667pt;}
.y208{bottom:215.632000pt;}
.y46{bottom:216.016000pt;}
.y167{bottom:216.866667pt;}
.y12c{bottom:223.137333pt;}
.y190{bottom:223.230667pt;}
.y7e{bottom:223.922667pt;}
.yd2{bottom:224.797333pt;}
.y145{bottom:225.196000pt;}
.y1ce{bottom:228.065333pt;}
.y164{bottom:228.782667pt;}
.y207{bottom:230.974667pt;}
.y45{bottom:232.753333pt;}
.y165{bottom:233.604000pt;}
.y7d{bottom:237.073333pt;}
.y112{bottom:238.008000pt;}
.y12b{bottom:239.874667pt;}
.y18f{bottom:239.968000pt;}
.yd1{bottom:241.534667pt;}
.y144{bottom:241.933333pt;}
.y7c{bottom:243.382667pt;}
.y1cd{bottom:243.408000pt;}
.y162{bottom:245.520000pt;}
.y206{bottom:246.316000pt;}
.y44{bottom:249.490667pt;}
.y163{bottom:250.341333pt;}
.y110{bottom:251.158667pt;}
.y12a{bottom:256.612000pt;}
.y18e{bottom:256.705333pt;}
.yd0{bottom:258.272000pt;}
.y143{bottom:258.670667pt;}
.y1cc{bottom:258.750667pt;}
.y205{bottom:261.658667pt;}
.y161{bottom:262.257333pt;}
.y7b{bottom:262.976000pt;}
.y10f{bottom:264.309333pt;}
.y43{bottom:266.228000pt;}
.y14{bottom:266.804000pt;}
.y111{bottom:268.482667pt;}
.y18d{bottom:273.442667pt;}
.y1cb{bottom:274.093333pt;}
.ycf{bottom:275.009333pt;}
.y142{bottom:275.408000pt;}
.y7a{bottom:276.258667pt;}
.y204{bottom:277.001333pt;}
.y129{bottom:277.334667pt;}
.y10e{bottom:277.460000pt;}
.y160{bottom:278.994667pt;}
.y13{bottom:282.705333pt;}
.y42{bottom:282.964000pt;}
.y1a1{bottom:282.978667pt;}
.y1ca{bottom:289.434667pt;}
.y79{bottom:289.542667pt;}
.y18c{bottom:290.180000pt;}
.y10d{bottom:290.610667pt;}
.yce{bottom:291.746667pt;}
.y141{bottom:292.145333pt;}
.y203{bottom:292.344000pt;}
.y15f{bottom:295.732000pt;}
.y12{bottom:298.605333pt;}
.y41{bottom:299.701333pt;}
.y77{bottom:302.693333pt;}
.y10c{bottom:303.761333pt;}
.y1c9{bottom:304.777333pt;}
.y18b{bottom:306.917333pt;}
.y128{bottom:307.222667pt;}
.y202{bottom:307.686667pt;}
.ycd{bottom:308.484000pt;}
.y140{bottom:308.882667pt;}
.y15e{bottom:312.469333pt;}
.y1a0{bottom:312.866667pt;}
.y11{bottom:314.505333pt;}
.y78{bottom:315.092000pt;}
.y76{bottom:315.844000pt;}
.y40{bottom:316.438667pt;}
.y10b{bottom:317.044000pt;}
.y1c8{bottom:320.120000pt;}
.y201{bottom:323.029333pt;}
.y18a{bottom:323.654667pt;}
.y127{bottom:323.960000pt;}
.ycc{bottom:325.221333pt;}
.y13f{bottom:325.620000pt;}
.y75{bottom:328.994667pt;}
.y15d{bottom:329.206667pt;}
.y19f{bottom:329.604000pt;}
.y108{bottom:330.194667pt;}
.y3f{bottom:333.176000pt;}
.y1c7{bottom:335.462667pt;}
.y200{bottom:338.372000pt;}
.y10{bottom:338.376000pt;}
.y189{bottom:340.392000pt;}
.y126{bottom:340.697333pt;}
.ycb{bottom:341.958667pt;}
.y74{bottom:342.145333pt;}
.y13e{bottom:342.357333pt;}
.y107{bottom:343.345333pt;}
.y15c{bottom:345.944000pt;}
.y19e{bottom:346.341333pt;}
.y3e{bottom:349.913333pt;}
.y1c6{bottom:350.805333pt;}
.y1ff{bottom:353.714667pt;}
.yf{bottom:354.277333pt;}
.y73{bottom:355.429333pt;}
.y106{bottom:356.496000pt;}
.y188{bottom:357.129333pt;}
.y125{bottom:357.434667pt;}
.yca{bottom:358.696000pt;}
.y13d{bottom:359.094667pt;}
.y15b{bottom:362.680000pt;}
.y19d{bottom:363.078667pt;}
.y1c5{bottom:366.148000pt;}
.y3d{bottom:366.650667pt;}
.y1fe{bottom:369.056000pt;}
.y105{bottom:369.646667pt;}
.ye{bottom:370.177333pt;}
.y187{bottom:373.866667pt;}
.y124{bottom:374.172000pt;}
.yc9{bottom:375.433333pt;}
.y13c{bottom:375.832000pt;}
.y15a{bottom:379.417333pt;}
.ya1{bottom:379.816000pt;}
.y1c4{bottom:381.490667pt;}
.y72{bottom:382.140000pt;}
.y104{bottom:382.797333pt;}
.y3c{bottom:383.388000pt;}
.y1fd{bottom:384.398667pt;}
.y186{bottom:390.604000pt;}
.y123{bottom:390.909333pt;}
.yc8{bottom:392.170667pt;}
.y13b{bottom:392.568000pt;}
.yd{bottom:395.376000pt;}
.y103{bottom:395.948000pt;}
.y159{bottom:396.154667pt;}
.ya0{bottom:396.553333pt;}
.y1c3{bottom:396.833333pt;}
.y71{bottom:399.236000pt;}
.y1fc{bottom:399.741333pt;}
.y3b{bottom:400.125333pt;}
.y10a{bottom:406.432000pt;}
.y185{bottom:407.341333pt;}
.y122{bottom:407.646667pt;}
.yc7{bottom:408.908000pt;}
.y102{bottom:409.098667pt;}
.y13a{bottom:409.305333pt;}
.y1c2{bottom:412.176000pt;}
.y158{bottom:412.892000pt;}
.y9f{bottom:413.290667pt;}
.y1fb{bottom:415.084000pt;}
.y70{bottom:416.332000pt;}
.y3a{bottom:416.862667pt;}
.yc{bottom:419.246667pt;}
.y101{bottom:422.249333pt;}
.y184{bottom:424.078667pt;}
.y121{bottom:424.384000pt;}
.yc6{bottom:425.645333pt;}
.y139{bottom:426.042667pt;}
.y1c1{bottom:427.517333pt;}
.y157{bottom:429.629333pt;}
.y9d{bottom:430.028000pt;}
.y1fa{bottom:430.426667pt;}
.y39{bottom:433.600000pt;}
.y9e{bottom:434.850667pt;}
.yb{bottom:435.146667pt;}
.y100{bottom:435.400000pt;}
.y183{bottom:440.816000pt;}
.y138{bottom:442.780000pt;}
.y1c0{bottom:442.860000pt;}
.y1f9{bottom:445.769333pt;}
.yc5{bottom:446.366667pt;}
.y6f{bottom:446.765333pt;}
.yff{bottom:448.550667pt;}
.ya{bottom:451.048000pt;}
.y120{bottom:454.220000pt;}
.y38{bottom:454.322667pt;}
.y182{bottom:457.553333pt;}
.y1bf{bottom:458.202667pt;}
.y137{bottom:459.517333pt;}
.y1f8{bottom:461.112000pt;}
.yfe{bottom:461.701333pt;}
.y156{bottom:463.104000pt;}
.y6e{bottom:463.502667pt;}
.y9{bottom:466.948000pt;}
.y9c{bottom:468.325333pt;}
.y11f{bottom:471.316000pt;}
.y1be{bottom:473.545333pt;}
.y181{bottom:474.290667pt;}
.yfd{bottom:474.852000pt;}
.yc4{bottom:476.254667pt;}
.y1f7{bottom:476.454667pt;}
.y155{bottom:479.841333pt;}
.y6d{bottom:480.240000pt;}
.y8{bottom:482.848000pt;}
.yfc{bottom:488.002667pt;}
.y11e{bottom:488.412000pt;}
.y1bd{bottom:488.888000pt;}
.y180{bottom:491.028000pt;}
.y109{bottom:491.037333pt;}
.y1f6{bottom:491.797333pt;}
.yc3{bottom:492.992000pt;}
.y154{bottom:496.578667pt;}
.y6c{bottom:496.977333pt;}
.y7{bottom:498.749333pt;}
.yfb{bottom:501.153333pt;}
.y1bc{bottom:504.230667pt;}
.y11d{bottom:505.508000pt;}
.y1f5{bottom:507.138667pt;}
.y17f{bottom:507.765333pt;}
.yc2{bottom:509.729333pt;}
.y153{bottom:513.316000pt;}
.y6b{bottom:513.714667pt;}
.yfa{bottom:514.304000pt;}
.y6{bottom:514.649333pt;}
.y1bb{bottom:519.573333pt;}
.yf9{bottom:520.614667pt;}
.y37{bottom:521.122667pt;}
.y1f4{bottom:522.481333pt;}
.y11c{bottom:522.602667pt;}
.yc1{bottom:526.466667pt;}
.y17e{bottom:528.488000pt;}
.y152{bottom:530.053333pt;}
.y6a{bottom:530.452000pt;}
.y5{bottom:530.549333pt;}
.y1ba{bottom:534.916000pt;}
.y1f3{bottom:537.824000pt;}
.y11b{bottom:539.698667pt;}
.yf7{bottom:540.074667pt;}
.yc0{bottom:543.204000pt;}
.y4{bottom:546.450667pt;}
.y151{bottom:546.790667pt;}
.y69{bottom:547.189333pt;}
.y1b8{bottom:550.257333pt;}
.y1b9{bottom:550.258667pt;}
.y1f2{bottom:553.166667pt;}
.yf6{bottom:553.225333pt;}
.y36{bottom:554.357333pt;}
.y11a{bottom:556.794667pt;}
.y17d{bottom:558.376000pt;}
.ybf{bottom:559.941333pt;}
.y1{bottom:562.350634pt;}
.y150{bottom:563.528000pt;}
.y68{bottom:563.926667pt;}
.y1b7{bottom:565.600000pt;}
.yf5{bottom:566.376000pt;}
.y1f1{bottom:568.509333pt;}
.y9b{bottom:568.748000pt;}
.yf8{bottom:570.472000pt;}
.y35{bottom:571.653333pt;}
.yf4{bottom:572.685333pt;}
.y119{bottom:573.890667pt;}
.y17c{bottom:575.113333pt;}
.ybe{bottom:576.678667pt;}
.y14f{bottom:580.265333pt;}
.y67{bottom:580.664000pt;}
.y1b6{bottom:580.942667pt;}
.y1f0{bottom:583.852000pt;}
.y34{bottom:588.948000pt;}
.y17b{bottom:591.849333pt;}
.yf3{bottom:592.145333pt;}
.ybd{bottom:593.416000pt;}
.y1b5{bottom:596.285333pt;}
.y66{bottom:597.401333pt;}
.y1ef{bottom:599.194667pt;}
.y14e{bottom:600.988000pt;}
.y9a{bottom:602.222667pt;}
.yf2{bottom:605.296000pt;}
.y33{bottom:606.244000pt;}
.y17a{bottom:608.586667pt;}
.y136{bottom:610.153333pt;}
.yf1{bottom:611.605333pt;}
.y1b4{bottom:611.628000pt;}
.y99{bottom:614.138667pt;}
.y1ee{bottom:614.537333pt;}
.y65{bottom:618.124000pt;}
.y32{bottom:623.538667pt;}
.y179{bottom:625.324000pt;}
.y135{bottom:626.890667pt;}
.y1b3{bottom:626.970667pt;}
.y1ed{bottom:629.878667pt;}
.y97{bottom:630.876000pt;}
.yf0{bottom:631.066667pt;}
.y98{bottom:635.697333pt;}
.y31{bottom:640.833333pt;}
.y178{bottom:642.061333pt;}
.y1b2{bottom:642.313333pt;}
.y134{bottom:643.628000pt;}
.ybc{bottom:644.026667pt;}
.y1ec{bottom:645.221333pt;}
.y96{bottom:647.613333pt;}
.y64{bottom:648.012000pt;}
.yef{bottom:649.616000pt;}
.yee{bottom:657.368000pt;}
.y1b1{bottom:657.656000pt;}
.y30{bottom:658.129333pt;}
.y177{bottom:658.798667pt;}
.y133{bottom:660.365333pt;}
.y1eb{bottom:660.564000pt;}
.ybb{bottom:660.764000pt;}
.y95{bottom:664.350667pt;}
.y63{bottom:664.749333pt;}
.y1b0{bottom:672.998667pt;}
.y2f{bottom:675.424000pt;}
.y176{bottom:675.536000pt;}
.y1ea{bottom:675.906667pt;}
.yed{bottom:677.138667pt;}
.yba{bottom:677.501333pt;}
.y94{bottom:681.088000pt;}
.y62{bottom:681.485333pt;}
.yec{bottom:683.669333pt;}
.y1af{bottom:688.340000pt;}
.y1e9{bottom:691.249333pt;}
.y175{bottom:692.273333pt;}
.y2e{bottom:692.720000pt;}
.yb9{bottom:694.238667pt;}
.yeb{bottom:696.952000pt;}
.y93{bottom:697.825333pt;}
.y61{bottom:698.222667pt;}
.y1ae{bottom:703.682667pt;}
.y1e8{bottom:706.592000pt;}
.y174{bottom:709.010667pt;}
.y2d{bottom:710.014667pt;}
.ye9{bottom:710.102667pt;}
.yb8{bottom:710.976000pt;}
.y92{bottom:714.562667pt;}
.y60{bottom:714.960000pt;}
.y1e7{bottom:721.934667pt;}
.y1ad{bottom:723.010667pt;}
.ye8{bottom:723.253333pt;}
.y173{bottom:725.748000pt;}
.y2c{bottom:727.309333pt;}
.yb7{bottom:727.713333pt;}
.y91{bottom:731.300000pt;}
.y5f{bottom:731.697333pt;}
.yea{bottom:734.125333pt;}
.ye7{bottom:736.404000pt;}
.y1e6{bottom:737.277333pt;}
.ye6{bottom:742.714667pt;}
.yb6{bottom:744.450667pt;}
.y2b{bottom:744.605333pt;}
.y90{bottom:748.036000pt;}
.y5e{bottom:748.434667pt;}
.y1e5{bottom:752.620000pt;}
.y1ac{bottom:752.898667pt;}
.y172{bottom:755.584000pt;}
.yb5{bottom:761.186667pt;}
.ye5{bottom:762.174667pt;}
.y8f{bottom:764.773333pt;}
.y5d{bottom:765.172000pt;}
.y1e4{bottom:767.961333pt;}
.y171{bottom:772.680000pt;}
.ye4{bottom:775.325333pt;}
.y1ab{bottom:776.490667pt;}
.yb4{bottom:777.924000pt;}
.y2a{bottom:778.902667pt;}
.y8e{bottom:781.510667pt;}
.y5c{bottom:781.909333pt;}
.y1e3{bottom:783.304000pt;}
.y170{bottom:789.776000pt;}
.y29{bottom:793.249333pt;}
.yb3{bottom:794.661333pt;}
.ye3{bottom:795.229333pt;}
.y8d{bottom:798.248000pt;}
.y5b{bottom:798.646667pt;}
.y1aa{bottom:800.081333pt;}
.ye2{bottom:801.758667pt;}
.y16f{bottom:806.872000pt;}
.y28{bottom:807.596000pt;}
.yb2{bottom:811.398667pt;}
.y1e2{bottom:813.989333pt;}
.y8c{bottom:814.985333pt;}
.ye1{bottom:815.042667pt;}
.y5a{bottom:815.384000pt;}
.y1a9{bottom:823.673333pt;}
.y16e{bottom:823.968000pt;}
.y27{bottom:825.798667pt;}
.yb1{bottom:828.136000pt;}
.ye0{bottom:828.326667pt;}
.y1e1{bottom:829.332000pt;}
.y8b{bottom:831.722667pt;}
.y59{bottom:832.121333pt;}
.y26{bottom:836.288000pt;}
.y16d{bottom:841.064000pt;}
.yde{bottom:841.477333pt;}
.y1e0{bottom:844.674667pt;}
.yb0{bottom:844.873333pt;}
.y1a8{bottom:847.265333pt;}
.y8a{bottom:848.460000pt;}
.y58{bottom:848.858667pt;}
.y25{bottom:854.492000pt;}
.ydd{bottom:854.628000pt;}
.y1df{bottom:860.017333pt;}
.yaf{bottom:861.610667pt;}
.y1a7{bottom:862.886667pt;}
.y19c{bottom:865.197333pt;}
.y57{bottom:865.596000pt;}
.ydf{bottom:866.494667pt;}
.ydc{bottom:867.778667pt;}
.y89{bottom:869.182667pt;}
.y1de{bottom:875.360000pt;}
.yae{bottom:878.348000pt;}
.ydb{bottom:880.929333pt;}
.y19b{bottom:881.934667pt;}
.y56{bottom:882.333333pt;}
.y1a6{bottom:886.477333pt;}
.y1dd{bottom:890.702667pt;}
.yda{bottom:894.080000pt;}
.y24{bottom:894.204000pt;}
.yad{bottom:895.085333pt;}
.y19a{bottom:898.672000pt;}
.y55{bottom:899.070667pt;}
.y1a5{bottom:902.100000pt;}
.y1dc{bottom:906.044000pt;}
.yd9{bottom:907.230667pt;}
.y23{bottom:910.941333pt;}
.yac{bottom:911.822667pt;}
.y54{bottom:915.808000pt;}
.y1a4{bottom:917.721333pt;}
.y199{bottom:919.394667pt;}
.yd8{bottom:920.513333pt;}
.y1db{bottom:921.386667pt;}
.yab{bottom:928.560000pt;}
.y53{bottom:932.545333pt;}
.y1da{bottom:936.729333pt;}
.yaa{bottom:945.297333pt;}
.y22{bottom:946.425333pt;}
.y52{bottom:949.282667pt;}
.yd7{bottom:949.881333pt;}
.y1d9{bottom:952.072000pt;}
.ya9{bottom:962.034667pt;}
.y51{bottom:966.020000pt;}
.yd6{bottom:966.977333pt;}
.y1d8{bottom:967.414667pt;}
.y21{bottom:971.530667pt;}
.y50{bottom:982.757333pt;}
.yd5{bottom:984.073333pt;}
.y1d{bottom:1010.186667pt;}
.y4f{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.he{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.300102pt;}
.h1b{height:29.397999pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h16{height:30.605184pt;}
.hf{height:30.945242pt;}
.h15{height:31.200285pt;}
.h8{height:31.890083pt;}
.h1e{height:33.378918pt;}
.h10{height:34.430976pt;}
.h11{height:34.813542pt;}
.h9{height:35.024664pt;}
.h12{height:35.100467pt;}
.h1d{height:37.087439pt;}
.h1c{height:37.193707pt;}
.h13{height:38.256384pt;}
.h14{height:38.681455pt;}
.hb{height:39.000258pt;}
.ha{height:41.001535pt;}
.h7{height:45.272024pt;}
.hd{height:48.365611pt;}
.h17{height:56.182575pt;}
.h1a{height:56.187908pt;}
.h19{height:56.437618pt;}
.h18{height:56.442951pt;}
.hc{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x4{left:53.357850pt;}
.x58{left:55.109333pt;}
.xb4{left:76.309333pt;}
.x4d{left:125.936000pt;}
.x4f{left:129.528000pt;}
.x4b{left:134.772000pt;}
.x50{left:147.992000pt;}
.x3{left:161.132773pt;}
.x51{left:201.550667pt;}
.x52{left:213.272000pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x54{left:231.088000pt;}
.x25{left:236.757333pt;}
.x8{left:238.318667pt;}
.x6{left:239.924000pt;}
.x59{left:241.034667pt;}
.xa{left:250.204000pt;}
.x28{left:252.729333pt;}
.x27{left:257.962667pt;}
.x38{left:262.510667pt;}
.x79{left:265.594667pt;}
.x21{left:266.990667pt;}
.xa9{left:268.276000pt;}
.xb{left:271.516000pt;}
.x63{left:272.776000pt;}
.x9{left:273.912000pt;}
.xb3{left:274.934667pt;}
.x90{left:276.030667pt;}
.xc{left:278.157333pt;}
.x39{left:279.277333pt;}
.xd{left:281.530667pt;}
.x91{left:284.069333pt;}
.x86{left:285.510667pt;}
.xe{left:288.173333pt;}
.x3f{left:293.540000pt;}
.x5f{left:294.896000pt;}
.xaa{left:298.229333pt;}
.x9f{left:301.601333pt;}
.x40{left:302.841333pt;}
.x60{left:308.180000pt;}
.x61{left:311.434667pt;}
.x72{left:321.494667pt;}
.x62{left:324.717333pt;}
.x9d{left:327.376000pt;}
.x92{left:330.216000pt;}
.x84{left:331.946667pt;}
.x30{left:335.322667pt;}
.x9e{left:336.677333pt;}
.x64{left:338.308000pt;}
.x65{left:347.609333pt;}
.x13{left:350.344000pt;}
.x14{left:356.986667pt;}
.x4e{left:360.738667pt;}
.x15{left:363.614667pt;}
.x4c{left:366.790667pt;}
.x16{left:370.256000pt;}
.x98{left:372.293333pt;}
.x93{left:373.534667pt;}
.x94{left:376.922667pt;}
.xb5{left:378.789333pt;}
.x99{left:382.388000pt;}
.x26{left:387.366667pt;}
.x24{left:390.024000pt;}
.x23{left:393.418667pt;}
.xa1{left:401.504000pt;}
.x85{left:403.232000pt;}
.x19{left:405.773333pt;}
.x95{left:406.876000pt;}
.xb1{left:408.102667pt;}
.x73{left:409.260000pt;}
.x1a{left:412.414667pt;}
.xb2{left:414.744000pt;}
.x1b{left:415.669333pt;}
.xa2{left:418.174667pt;}
.x83{left:421.173333pt;}
.x1c{left:422.310667pt;}
.xa6{left:425.268000pt;}
.xa7{left:428.642667pt;}
.x6f{left:435.084000pt;}
.x8b{left:435.988000pt;}
.x70{left:438.472000pt;}
.x8c{left:439.372000pt;}
.x45{left:440.362667pt;}
.xa8{left:441.926667pt;}
.x56{left:445.412000pt;}
.x71{left:451.754667pt;}
.x8d{left:452.654667pt;}
.x46{left:453.645333pt;}
.x74{left:455.466667pt;}
.x43{left:457.829333pt;}
.x5a{left:459.540000pt;}
.x7b{left:462.532000pt;}
.x9c{left:463.533333pt;}
.xa3{left:467.886667pt;}
.x8e{left:469.322667pt;}
.x44{left:471.112000pt;}
.x47{left:476.157333pt;}
.xab{left:478.606667pt;}
.x17{left:481.858667pt;}
.xc0{left:483.064000pt;}
.xa4{left:484.424000pt;}
.xac{left:486.646667pt;}
.x18{left:488.501333pt;}
.x48{left:489.441333pt;}
.xc1{left:494.082667pt;}
.x66{left:497.850667pt;}
.x2c{left:499.208000pt;}
.xa5{left:500.962667pt;}
.x29{left:505.206667pt;}
.x34{left:511.802667pt;}
.x53{left:512.997333pt;}
.x3a{left:516.856000pt;}
.xb7{left:521.237333pt;}
.x35{left:525.086667pt;}
.x55{left:526.578667pt;}
.x3b{left:530.138667pt;}
.xb8{left:532.193333pt;}
.x2b{left:533.957333pt;}
.x7c{left:538.650667pt;}
.x2a{left:540.477333pt;}
.x31{left:542.336000pt;}
.x8f{left:545.617333pt;}
.x3c{left:546.780000pt;}
.x3d{left:550.137333pt;}
.x68{left:553.516000pt;}
.x32{left:558.202667pt;}
.x81{left:561.032000pt;}
.x3e{left:563.421333pt;}
.xa0{left:566.136000pt;}
.x82{left:567.673333pt;}
.xaf{left:568.705333pt;}
.xc4{left:585.366667pt;}
.xb6{left:586.628000pt;}
.x87{left:591.873333pt;}
.xc2{left:592.901333pt;}
.x7a{left:594.596000pt;}
.x75{left:599.261333pt;}
.xc3{left:603.121333pt;}
.x36{left:605.218667pt;}
.x49{left:606.533333pt;}
.xf{left:608.072000pt;}
.x67{left:608.970667pt;}
.x33{left:610.853333pt;}
.x4a{left:612.510667pt;}
.x10{left:614.714667pt;}
.x76{left:615.932000pt;}
.x11{left:618.101333pt;}
.xbd{left:619.033333pt;}
.x37{left:620.858667pt;}
.xc7{left:623.038667pt;}
.x12{left:624.744000pt;}
.xb0{left:627.013333pt;}
.x77{left:629.214667pt;}
.x78{left:630.112000pt;}
.xc8{left:633.957333pt;}
.x69{left:635.326667pt;}
.xae{left:637.150667pt;}
.x5b{left:643.565333pt;}
.x6a{left:648.610667pt;}
.xc5{left:650.542667pt;}
.x6b{left:651.864000pt;}
.x5c{left:656.849333pt;}
.xbe{left:659.001333pt;}
.x5d{left:660.236000pt;}
.x6c{left:665.148000pt;}
.x6d{left:668.402667pt;}
.xad{left:670.336000pt;}
.x96{left:671.729333pt;}
.x5e{left:673.520000pt;}
.xc6{left:674.453333pt;}
.xb9{left:675.932000pt;}
.x1d{left:679.150667pt;}
.x6e{left:681.686667pt;}
.x97{left:683.558667pt;}
.x7d{left:684.592000pt;}
.x1e{left:685.793333pt;}
.x1f{left:689.180000pt;}
.x20{left:695.821333pt;}
.x7e{left:697.874667pt;}
.xba{left:699.842667pt;}
.x22{left:701.716000pt;}
.x57{left:702.956000pt;}
.x7f{left:704.649333pt;}
.x41{left:707.438667pt;}
.x9a{left:710.426667pt;}
.x42{left:715.413333pt;}
.x2f{left:717.768000pt;}
.xbb{left:720.236000pt;}
.x9b{left:723.709333pt;}
.x88{left:724.828000pt;}
.x80{left:726.842667pt;}
.x89{left:728.082667pt;}
.x2d{left:733.484000pt;}
.xbf{left:738.465333pt;}
.x2e{left:740.126667pt;}
.x8a{left:741.365333pt;}
.xbc{left:744.146667pt;}
}




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