
    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_059b307ce6fa44823f73d812.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_78dda86229b0af51bebf17e7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_943174053b5890b9725cf6f3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_1debf043f490b99b8f07e503.woff')format("woff");}.ff4{font-family:ff4;line-height:0.903000;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_c8df07867618e0283bffb99d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.580000;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_6d2124599ec484b6d903d5ec.woff')format("woff");}.ff6{font-family:ff6;line-height:0.234000;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_357da786a68bf2a3f0fdc4fe.woff')format("woff");}.ff7{font-family:ff7;line-height:0.773000;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_bff226f756b95d770e3e6983.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962000;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;}
.md{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);}
.m6{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);}
.mc{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);}
.m8{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);}
.m1b{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);}
.m1d{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);}
.m14{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);}
.m22{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);}
.mb{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);}
.m16{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);}
.m28{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);}
.m3{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);}
.m25{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);}
.m10{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);}
.m2{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);}
.me{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);}
.ma{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);}
.m19{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);}
.m7{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);}
.m21{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);}
.m17{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);}
.m11{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);}
.m5{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);}
.m27{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);}
.m4{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);}
.m15{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);}
.m26{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);}
.m1a{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);}
.m23{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);}
.m12{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);}
.m9{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);}
.m18{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);}
.m1f{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);}
.m1e{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);}
.m24{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);}
.m1c{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);}
.m20{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);}
.mf{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);}
.m1{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);}
.m29{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);}
.v3{vertical-align:-9.486000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.524000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:1.443582px;}
.ls0{letter-spacing:2.988780px;}
.ls7{letter-spacing:11.889446px;}
.ls5{letter-spacing:11.943245px;}
.ls9{letter-spacing:11.997043px;}
.ls6{letter-spacing:13.180608px;}
.ls8{letter-spacing:13.234406px;}
.ls14{letter-spacing:14.779530px;}
.lsb{letter-spacing:16.841790px;}
.ls20{letter-spacing:16.910532px;}
.ls18{letter-spacing:16.979274px;}
.ls10{letter-spacing:17.048016px;}
.lsd{letter-spacing:17.116758px;}
.lse{letter-spacing:17.185500px;}
.ls19{letter-spacing:17.254242px;}
.ls13{letter-spacing:17.322984px;}
.ls21{letter-spacing:17.391726px;}
.ls1c{letter-spacing:17.460468px;}
.ls17{letter-spacing:17.529210px;}
.ls12{letter-spacing:18.216630px;}
.lsf{letter-spacing:18.354114px;}
.ls1b{letter-spacing:18.766566px;}
.ls15{letter-spacing:19.522728px;}
.ls16{letter-spacing:19.591470px;}
.ls1a{letter-spacing:20.897568px;}
.ls1d{letter-spacing:21.584988px;}
.ls1e{letter-spacing:22.959828px;}
.ls1f{letter-spacing:23.647248px;}
.lsc{letter-spacing:24.884604px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.lsa{letter-spacing:1703.496600px;}
.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;}
}
.ws63{word-spacing:-17.185500px;}
.ws140{word-spacing:-13.449600px;}
.wsf6{word-spacing:-3.849552px;}
.ws101{word-spacing:-3.780810px;}
.wsca{word-spacing:-3.712068px;}
.wsc1{word-spacing:-3.643326px;}
.ws84{word-spacing:-3.574584px;}
.ws2d{word-spacing:-3.505842px;}
.ws83{word-spacing:-3.437100px;}
.wse2{word-spacing:-3.368358px;}
.wsc5{word-spacing:-3.299616px;}
.ws128{word-spacing:-3.230874px;}
.ws10c{word-spacing:-3.162132px;}
.wsc0{word-spacing:-3.093390px;}
.ws26{word-spacing:-3.024648px;}
.ws10{word-spacing:-2.988780px;}
.wsfe{word-spacing:-2.955906px;}
.ws19{word-spacing:-2.887164px;}
.wsdc{word-spacing:-2.818422px;}
.ws14b{word-spacing:-2.749680px;}
.wse1{word-spacing:-2.680938px;}
.wsc3{word-spacing:-2.612196px;}
.ws13d{word-spacing:-2.582323px;}
.ws85{word-spacing:-2.543454px;}
.ws121{word-spacing:-2.474726px;}
.ws37{word-spacing:-2.474712px;}
.wsa4{word-spacing:-2.405970px;}
.wsd6{word-spacing:-2.337228px;}
.ws17{word-spacing:-2.268486px;}
.ws25{word-spacing:-2.199744px;}
.ws8e{word-spacing:-2.062260px;}
.wsbf{word-spacing:-1.993518px;}
.ws106{word-spacing:-1.856034px;}
.ws38{word-spacing:-1.787292px;}
.wse7{word-spacing:-1.718550px;}
.ws62{word-spacing:-1.649808px;}
.ws7a{word-spacing:-1.581066px;}
.ws3f{word-spacing:-1.512324px;}
.ws137{word-spacing:-1.452557px;}
.ws36{word-spacing:-1.443582px;}
.ws33{word-spacing:-1.374840px;}
.wsd9{word-spacing:-1.306098px;}
.wsa0{word-spacing:-1.237356px;}
.ws27{word-spacing:-1.168614px;}
.ws41{word-spacing:-1.099872px;}
.ws82{word-spacing:-1.031130px;}
.ws134{word-spacing:-0.968371px;}
.wsf1{word-spacing:-0.962388px;}
.wsed{word-spacing:-0.893646px;}
.ws13e{word-spacing:-0.860774px;}
.wsc6{word-spacing:-0.824904px;}
.wsb5{word-spacing:-0.756162px;}
.ws80{word-spacing:-0.687420px;}
.ws72{word-spacing:-0.618678px;}
.ws8b{word-spacing:-0.549936px;}
.ws6a{word-spacing:-0.481194px;}
.ws13f{word-spacing:-0.430387px;}
.ws51{word-spacing:-0.412452px;}
.ws1a{word-spacing:-0.343710px;}
.ws40{word-spacing:-0.274968px;}
.ws12f{word-spacing:-0.268992px;}
.ws10f{word-spacing:-0.215194px;}
.ws32{word-spacing:-0.206226px;}
.wsf{word-spacing:-0.179327px;}
.ws10e{word-spacing:-0.161395px;}
.ws16{word-spacing:-0.137484px;}
.ws23{word-spacing:-0.068742px;}
.ws7{word-spacing:-0.059776px;}
.ws12e{word-spacing:-0.053798px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.ws13c{word-spacing:0.053798px;}
.ws11{word-spacing:0.059776px;}
.ws18{word-spacing:0.068742px;}
.ws12{word-spacing:0.107597px;}
.ws1f{word-spacing:0.137484px;}
.ws120{word-spacing:0.161395px;}
.ws6{word-spacing:0.179327px;}
.ws1c{word-spacing:0.206226px;}
.ws111{word-spacing:0.215194px;}
.ws9{word-spacing:0.239102px;}
.ws123{word-spacing:0.268992px;}
.ws14{word-spacing:0.274968px;}
.ws2e{word-spacing:0.343710px;}
.wse{word-spacing:0.358654px;}
.ws24{word-spacing:0.412452px;}
.ws22{word-spacing:0.481194px;}
.ws90{word-spacing:0.549936px;}
.ws45{word-spacing:0.618678px;}
.ws3a{word-spacing:0.687420px;}
.wsbe{word-spacing:0.756162px;}
.wse5{word-spacing:0.824904px;}
.wsf0{word-spacing:0.893646px;}
.ws30{word-spacing:0.962388px;}
.ws42{word-spacing:1.031130px;}
.ws4{word-spacing:1.075961px;}
.ws97{word-spacing:1.099872px;}
.ws143{word-spacing:1.129766px;}
.wsd8{word-spacing:1.168614px;}
.ws29{word-spacing:1.237356px;}
.ws147{word-spacing:1.237363px;}
.ws135{word-spacing:1.291162px;}
.wse9{word-spacing:1.306098px;}
.wsfd{word-spacing:1.374840px;}
.wsb8{word-spacing:1.443582px;}
.wsd{word-spacing:1.494390px;}
.wsa6{word-spacing:1.512324px;}
.ws39{word-spacing:1.581066px;}
.ws4a{word-spacing:1.649808px;}
.wsa{word-spacing:1.673717px;}
.wsf3{word-spacing:1.718550px;}
.ws2b{word-spacing:1.787292px;}
.ws136{word-spacing:1.829146px;}
.wsb7{word-spacing:1.856034px;}
.ws5a{word-spacing:1.924776px;}
.wsff{word-spacing:1.993518px;}
.ws5{word-spacing:2.032370px;}
.wsfb{word-spacing:2.062260px;}
.wsf2{word-spacing:2.131002px;}
.ws93{word-spacing:2.199744px;}
.wsc{word-spacing:2.211697px;}
.ws71{word-spacing:2.268486px;}
.ws44{word-spacing:2.337228px;}
.ws114{word-spacing:2.405970px;}
.wsb{word-spacing:2.450800px;}
.ws53{word-spacing:2.474712px;}
.ws43{word-spacing:2.543454px;}
.ws3e{word-spacing:2.612196px;}
.wsdd{word-spacing:2.680938px;}
.wsc4{word-spacing:2.749680px;}
.ws8{word-spacing:2.809453px;}
.wsb0{word-spacing:2.818422px;}
.ws4d{word-spacing:2.887164px;}
.wsaa{word-spacing:2.955906px;}
.ws4f{word-spacing:3.024648px;}
.wsb9{word-spacing:3.093390px;}
.wsc8{word-spacing:3.162132px;}
.ws145{word-spacing:3.227904px;}
.wsfa{word-spacing:3.230874px;}
.ws35{word-spacing:3.299616px;}
.ws49{word-spacing:3.368358px;}
.ws3d{word-spacing:3.437100px;}
.ws100{word-spacing:3.505842px;}
.ws59{word-spacing:3.574584px;}
.wsc7{word-spacing:3.643326px;}
.ws96{word-spacing:3.712068px;}
.ws104{word-spacing:3.780810px;}
.ws50{word-spacing:3.849552px;}
.ws20{word-spacing:3.918294px;}
.ws74{word-spacing:3.987036px;}
.ws112{word-spacing:4.055778px;}
.wsa1{word-spacing:4.124520px;}
.ws129{word-spacing:4.142477px;}
.ws3b{word-spacing:4.193262px;}
.wsa5{word-spacing:4.262004px;}
.ws52{word-spacing:4.330746px;}
.ws1b{word-spacing:4.399488px;}
.ws2f{word-spacing:4.468230px;}
.wsf5{word-spacing:4.536972px;}
.ws21{word-spacing:4.605714px;}
.ws6b{word-spacing:4.674456px;}
.wse3{word-spacing:4.743198px;}
.ws4b{word-spacing:4.811940px;}
.ws28{word-spacing:4.880682px;}
.wsea{word-spacing:4.949424px;}
.wsd2{word-spacing:5.018166px;}
.wseb{word-spacing:5.086908px;}
.ws47{word-spacing:5.155650px;}
.ws127{word-spacing:5.164646px;}
.wsd7{word-spacing:5.224392px;}
.wscd{word-spacing:5.293134px;}
.ws56{word-spacing:5.361876px;}
.ws8c{word-spacing:5.430618px;}
.ws31{word-spacing:5.499360px;}
.ws7e{word-spacing:5.568102px;}
.wscc{word-spacing:5.636844px;}
.ws1d{word-spacing:5.705586px;}
.ws113{word-spacing:5.774328px;}
.wsbc{word-spacing:5.843070px;}
.wsda{word-spacing:5.911812px;}
.wsc2{word-spacing:5.980554px;}
.ws95{word-spacing:6.049296px;}
.wsf8{word-spacing:6.118038px;}
.wse8{word-spacing:6.186780px;}
.wsf9{word-spacing:6.255522px;}
.wsb6{word-spacing:6.324264px;}
.ws116{word-spacing:6.393006px;}
.ws57{word-spacing:6.461748px;}
.wsb1{word-spacing:6.530490px;}
.ws7b{word-spacing:6.599232px;}
.wsc9{word-spacing:6.667974px;}
.wsaf{word-spacing:6.736716px;}
.ws34{word-spacing:6.805458px;}
.ws2c{word-spacing:6.874200px;}
.ws131{word-spacing:6.942942px;}
.ws153{word-spacing:7.011684px;}
.wscb{word-spacing:7.080426px;}
.ws2a{word-spacing:7.149168px;}
.wsba{word-spacing:7.217910px;}
.ws92{word-spacing:7.286652px;}
.ws99{word-spacing:7.355394px;}
.wsd3{word-spacing:7.424136px;}
.ws105{word-spacing:7.492878px;}
.ws152{word-spacing:7.561500px;}
.wsab{word-spacing:7.630362px;}
.ws54{word-spacing:7.699104px;}
.ws81{word-spacing:7.767846px;}
.ws9a{word-spacing:7.836588px;}
.ws46{word-spacing:7.905330px;}
.ws48{word-spacing:7.974072px;}
.wsbd{word-spacing:8.042814px;}
.wse4{word-spacing:8.111556px;}
.ws109{word-spacing:8.177357px;}
.ws88{word-spacing:8.180298px;}
.ws13b{word-spacing:8.249040px;}
.wsef{word-spacing:8.317782px;}
.ws5d{word-spacing:8.386524px;}
.wsb3{word-spacing:8.455266px;}
.ws122{word-spacing:8.524008px;}
.ws3c{word-spacing:8.592750px;}
.ws108{word-spacing:8.607744px;}
.ws64{word-spacing:8.661492px;}
.wsd4{word-spacing:8.730234px;}
.ws110{word-spacing:8.769139px;}
.ws58{word-spacing:8.798976px;}
.wsac{word-spacing:8.867718px;}
.ws10a{word-spacing:8.936460px;}
.ws75{word-spacing:9.005202px;}
.ws5f{word-spacing:9.073944px;}
.ws4e{word-spacing:9.142686px;}
.ws11e{word-spacing:9.211428px;}
.ws78{word-spacing:9.280170px;}
.wsae{word-spacing:9.348912px;}
.wsb2{word-spacing:9.417654px;}
.wse6{word-spacing:9.486396px;}
.ws11c{word-spacing:9.555138px;}
.wsee{word-spacing:9.623880px;}
.wsdb{word-spacing:9.692622px;}
.ws10d{word-spacing:9.737510px;}
.ws6d{word-spacing:9.761364px;}
.wsb4{word-spacing:9.830106px;}
.ws115{word-spacing:9.898848px;}
.ws4c{word-spacing:9.967590px;}
.ws118{word-spacing:10.036332px;}
.ws61{word-spacing:10.105074px;}
.wsfc{word-spacing:10.173816px;}
.ws146{word-spacing:10.242558px;}
.ws132{word-spacing:10.311300px;}
.ws7c{word-spacing:10.448784px;}
.wsad{word-spacing:10.517526px;}
.ws76{word-spacing:10.586268px;}
.ws15{word-spacing:10.655010px;}
.ws9d{word-spacing:10.723752px;}
.ws66{word-spacing:10.792494px;}
.ws12c{word-spacing:10.861236px;}
.ws9e{word-spacing:10.929978px;}
.ws7f{word-spacing:10.998720px;}
.wsbb{word-spacing:11.067462px;}
.ws12d{word-spacing:11.136204px;}
.ws55{word-spacing:11.204946px;}
.ws68{word-spacing:11.273688px;}
.wsa9{word-spacing:11.342430px;}
.ws65{word-spacing:11.686140px;}
.wsf4{word-spacing:11.754882px;}
.ws9c{word-spacing:11.823624px;}
.ws67{word-spacing:11.961108px;}
.ws133{word-spacing:12.029850px;}
.ws117{word-spacing:12.098592px;}
.ws150{word-spacing:12.167334px;}
.ws11d{word-spacing:12.236076px;}
.ws86{word-spacing:12.373560px;}
.ws8f{word-spacing:12.442302px;}
.ws91{word-spacing:12.579786px;}
.ws125{word-spacing:12.648528px;}
.wscf{word-spacing:12.717270px;}
.ws14e{word-spacing:12.786012px;}
.ws69{word-spacing:12.923496px;}
.ws14d{word-spacing:12.992238px;}
.ws142{word-spacing:13.060980px;}
.ws60{word-spacing:13.129722px;}
.ws107{word-spacing:13.395802px;}
.ws8d{word-spacing:13.473432px;}
.ws7d{word-spacing:13.542174px;}
.ws98{word-spacing:13.885884px;}
.ws1e{word-spacing:14.092110px;}
.ws94{word-spacing:14.229594px;}
.ws9f{word-spacing:14.298336px;}
.ws5e{word-spacing:14.367078px;}
.wsf7{word-spacing:14.642046px;}
.wsd1{word-spacing:14.710788px;}
.ws13a{word-spacing:14.985756px;}
.ws138{word-spacing:15.054498px;}
.ws6f{word-spacing:15.466950px;}
.ws14c{word-spacing:15.741918px;}
.ws10b{word-spacing:15.879402px;}
.ws141{word-spacing:16.085628px;}
.ws79{word-spacing:16.704306px;}
.ws151{word-spacing:16.773048px;}
.ws6e{word-spacing:16.841790px;}
.ws0{word-spacing:16.880672px;}
.ws87{word-spacing:16.910532px;}
.wsa2{word-spacing:17.254242px;}
.ws6c{word-spacing:17.460468px;}
.wsd5{word-spacing:17.735436px;}
.ws130{word-spacing:17.872920px;}
.ws119{word-spacing:19.349392px;}
.ws8a{word-spacing:19.797696px;}
.ws89{word-spacing:20.691342px;}
.ws5c{word-spacing:21.103794px;}
.ws70{word-spacing:21.859956px;}
.ws3{word-spacing:22.116972px;}
.wsa8{word-spacing:22.134924px;}
.wsdf{word-spacing:23.715990px;}
.wsce{word-spacing:24.265926px;}
.wsde{word-spacing:26.190702px;}
.wse0{word-spacing:26.465670px;}
.wsa3{word-spacing:27.290574px;}
.ws5b{word-spacing:50.181660px;}
.ws9b{word-spacing:50.250402px;}
.ws14f{word-spacing:50.319144px;}
.ws124{word-spacing:50.800338px;}
.ws73{word-spacing:51.762726px;}
.wsd0{word-spacing:51.831468px;}
.ws103{word-spacing:52.243920px;}
.ws102{word-spacing:52.312662px;}
.ws11f{word-spacing:52.931340px;}
.ws77{word-spacing:62.555220px;}
.wsa7{word-spacing:70.460550px;}
.ws13{word-spacing:77.630692px;}
.ws144{word-spacing:82.688141px;}
.ws149{word-spacing:112.062067px;}
.ws14a{word-spacing:125.511667px;}
.ws148{word-spacing:137.401114px;}
.ws12a{word-spacing:201.367411px;}
.ws11b{word-spacing:207.661824px;}
.ws12b{word-spacing:248.978995px;}
.ws139{word-spacing:300.786854px;}
.ws126{word-spacing:940.539258px;}
.wsec{word-spacing:943.119258px;}
.ws11a{word-spacing:1522.709914px;}
._7e{margin-left:-30.521448px;}
._81{margin-left:-27.359316px;}
._82{margin-left:-25.846992px;}
._1a{margin-left:-24.815862px;}
._7c{margin-left:-9.124761px;}
._2{margin-left:-7.230468px;}
._16{margin-left:-5.354700px;}
._1{margin-left:-4.131696px;}
._3{margin-left:-2.582310px;}
._4{margin-left:-1.549386px;}
._0{width:1.386797px;}
._7b{width:2.955906px;}
._7d{width:4.832852px;}
._80{width:6.007471px;}
._7f{width:7.112106px;}
._79{width:8.904780px;}
._7a{width:12.378330px;}
._28{width:13.510494px;}
._b{width:14.568599px;}
._9{width:16.236349px;}
._32{width:17.291304px;}
._6{width:18.470660px;}
._10{width:19.507194px;}
._c{width:21.179712px;}
._e{width:22.409892px;}
._7{width:24.328669px;}
._5{width:25.961749px;}
._12{width:27.290574px;}
._23{width:28.390446px;}
._14{width:29.566236px;}
._15{width:30.658932px;}
._1b{width:31.996710px;}
._a{width:33.122005px;}
._d{width:35.058420px;}
._1e{width:36.944340px;}
._33{width:38.190666px;}
._11{width:39.428022px;}
._27{width:40.626522px;}
._1d{width:41.627766px;}
._20{width:42.911154px;}
._f{width:43.935108px;}
._22{width:45.293802px;}
._21{width:47.088270px;}
._17{width:48.843882px;}
._24{width:50.181660px;}
._13{width:51.900210px;}
._1f{width:53.749068px;}
._5a{width:57.713394px;}
._8{width:59.895151px;}
._25{width:61.624512px;}
._1c{width:67.367160px;}
._18{width:68.742000px;}
._26{width:70.116840px;}
._51{width:71.713267px;}
._53{width:75.478716px;}
._34{width:77.708400px;}
._76{width:80.374796px;}
._63{width:81.481052px;}
._19{width:86.997486px;}
._4c{width:88.121766px;}
._3a{width:90.381312px;}
._37{width:93.609216px;}
._66{width:96.137741px;}
._35{width:97.859290px;}
._65{width:109.587341px;}
._5e{width:116.096947px;}
._38{width:124.005312px;}
._2d{width:125.511667px;}
._72{width:133.658749px;}
._2b{width:144.746341px;}
._2f{width:145.836695px;}
._31{width:154.767229px;}
._6e{width:156.876134px;}
._61{width:163.600934px;}
._43{width:165.107290px;}
._4e{width:168.066202px;}
._29{width:174.468211px;}
._50{width:187.960842px;}
._39{width:189.940615px;}
._2a{width:198.731290px;}
._2e{width:200.183846px;}
._52{width:201.561056px;}
._46{width:204.627565px;}
._30{width:209.168179px;}
._47{width:218.184762px;}
._3d{width:221.111424px;}
._4a{width:234.345817px;}
._2c{width:256.241779px;}
._74{width:259.200691px;}
._6d{width:263.533222px;}
._6b{width:264.688128px;}
._71{width:268.185024px;}
._5b{width:269.207194px;}
._56{width:312.547169px;}
._42{width:379.752138px;}
._69{width:394.718861px;}
._57{width:397.182806px;}
._49{width:414.236912px;}
._62{width:416.076826px;}
._59{width:440.587348px;}
._64{width:452.498329px;}
._73{width:514.581683px;}
._70{width:523.835021px;}
._58{width:529.150295px;}
._3b{width:551.433600px;}
._48{width:562.128714px;}
._41{width:573.641558px;}
._54{width:578.440397px;}
._55{width:583.002493px;}
._67{width:599.367974px;}
._44{width:615.819517px;}
._68{width:627.816560px;}
._3f{width:669.725514px;}
._6a{width:680.065574px;}
._77{width:686.790374px;}
._3c{width:729.237312px;}
._3e{width:746.926205px;}
._6f{width:780.130598px;}
._40{width:791.794070px;}
._45{width:884.660890px;}
._5c{width:960.731827px;}
._6c{width:969.339571px;}
._60{width:1023.030374px;}
._5d{width:1024.239445px;}
._5f{width:1153.706688px;}
._36{width:1178.400154px;}
._4b{width:1300.059884px;}
._4f{width:1363.681843px;}
._4d{width:1494.358157px;}
._75{width:1748.383434px;}
._78{width:1761.833034px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:41.245800px;}
.fs6{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y83{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.yf6{bottom:88.036500px;}
.y81{bottom:89.719500px;}
.y52{bottom:90.733500px;}
.y25{bottom:92.148000px;}
.y9a{bottom:92.844000px;}
.y14c{bottom:95.047500px;}
.y151{bottom:96.061500px;}
.y13e{bottom:96.478500px;}
.y172{bottom:96.481500px;}
.y1eb{bottom:97.446000px;}
.y1d6{bottom:98.109000px;}
.y180{bottom:100.383000px;}
.y1a9{bottom:101.035500px;}
.y184{bottom:101.397000px;}
.y1ad{bottom:102.049500px;}
.yc4{bottom:105.067500px;}
.y22d{bottom:105.237000px;}
.y216{bottom:105.313500px;}
.yc9{bottom:106.081500px;}
.y121{bottom:106.525500px;}
.y235{bottom:108.145500px;}
.y239{bottom:109.159500px;}
.yf5{bottom:110.833500px;}
.y80{bottom:112.516500px;}
.y51{bottom:113.530500px;}
.y24{bottom:114.945000px;}
.y99{bottom:115.641000px;}
.y14b{bottom:117.844500px;}
.y13d{bottom:118.641000px;}
.y171{bottom:118.642500px;}
.y150{bottom:118.858500px;}
.y1ea{bottom:120.243000px;}
.y1d5{bottom:120.906000px;}
.y17f{bottom:123.180000px;}
.y1a8{bottom:123.832500px;}
.y183{bottom:124.194000px;}
.y1ac{bottom:124.846500px;}
.y9f{bottom:126.078000px;}
.y24d{bottom:127.092000px;}
.yc3{bottom:127.864500px;}
.y22c{bottom:128.034000px;}
.y215{bottom:128.110500px;}
.yc8{bottom:128.878500px;}
.y120{bottom:129.322500px;}
.y234{bottom:130.942500px;}
.y238{bottom:131.956500px;}
.yf4{bottom:133.630500px;}
.y7f{bottom:135.313500px;}
.y50{bottom:136.327500px;}
.y23{bottom:137.742000px;}
.y98{bottom:138.438000px;}
.y14a{bottom:140.641500px;}
.y13c{bottom:140.802000px;}
.y170{bottom:140.805000px;}
.y14f{bottom:141.655500px;}
.y1e9{bottom:143.040000px;}
.y1d4{bottom:143.703000px;}
.y17e{bottom:145.977000px;}
.y1a7{bottom:146.629500px;}
.y182{bottom:146.991000px;}
.y1ab{bottom:147.643500px;}
.y9e{bottom:148.875000px;}
.y24c{bottom:149.889000px;}
.yc2{bottom:150.661500px;}
.y22b{bottom:150.831000px;}
.y214{bottom:150.907500px;}
.yc7{bottom:151.675500px;}
.y11f{bottom:152.119500px;}
.y233{bottom:153.739500px;}
.y237{bottom:154.753500px;}
.yf3{bottom:156.427500px;}
.y7e{bottom:158.110500px;}
.y4f{bottom:159.124500px;}
.y22{bottom:160.539000px;}
.y97{bottom:161.236500px;}
.y13b{bottom:162.964500px;}
.y16f{bottom:162.967500px;}
.y149{bottom:163.438500px;}
.y14e{bottom:164.452500px;}
.y1e8{bottom:165.837000px;}
.y1d3{bottom:166.500000px;}
.y17d{bottom:168.774000px;}
.y1a6{bottom:169.426500px;}
.y181{bottom:169.788000px;}
.y1aa{bottom:170.440500px;}
.y9d{bottom:171.672000px;}
.y24b{bottom:172.686000px;}
.yc1{bottom:173.460000px;}
.y22a{bottom:173.628000px;}
.y213{bottom:173.704500px;}
.yc6{bottom:174.472500px;}
.y232{bottom:176.536500px;}
.y236{bottom:177.550500px;}
.yf2{bottom:179.224500px;}
.y7c{bottom:180.907500px;}
.y7d{bottom:180.993000px;}
.y13a{bottom:181.540500px;}
.y4e{bottom:181.921500px;}
.y21{bottom:183.336000px;}
.y96{bottom:184.033500px;}
.y16e{bottom:185.128500px;}
.y148{bottom:186.235500px;}
.y14d{bottom:187.249500px;}
.y1e7{bottom:188.634000px;}
.y1d2{bottom:189.297000px;}
.y249{bottom:195.483000px;}
.y24a{bottom:195.570000px;}
.yc0{bottom:196.257000px;}
.y229{bottom:196.425000px;}
.y212{bottom:196.501500px;}
.yc5{bottom:197.271000px;}
.y11e{bottom:199.020000px;}
.yf1{bottom:202.021500px;}
.y139{bottom:203.701500px;}
.y7b{bottom:203.704500px;}
.y4d{bottom:204.718500px;}
.y252{bottom:204.805500px;}
.y9c{bottom:204.930000px;}
.y20{bottom:206.134500px;}
.y95{bottom:206.830500px;}
.y16d{bottom:207.291000px;}
.y1e6{bottom:211.431000px;}
.y1d1{bottom:212.094000px;}
.y17c{bottom:216.688500px;}
.y231{bottom:218.280000px;}
.y228{bottom:219.222000px;}
.y211{bottom:219.298500px;}
.y11d{bottom:221.181000px;}
.y138{bottom:222.277500px;}
.yf0{bottom:224.818500px;}
.y7a{bottom:226.501500px;}
.y4c{bottom:227.515500px;}
.y1f{bottom:228.931500px;}
.y16c{bottom:229.453500px;}
.y94{bottom:229.627500px;}
.y1a5{bottom:229.735500px;}
.y147{bottom:234.150000px;}
.y1e5{bottom:234.229500px;}
.y1d0{bottom:234.892500px;}
.y17b{bottom:238.849500px;}
.y230{bottom:241.078500px;}
.y210{bottom:242.097000px;}
.y11c{bottom:243.343500px;}
.y137{bottom:244.440000px;}
.yef{bottom:247.615500px;}
.y79{bottom:249.298500px;}
.y4b{bottom:250.312500px;}
.y195{bottom:251.518500px;}
.y93{bottom:252.424500px;}
.y1a4{bottom:252.532500px;}
.y9b{bottom:255.654000px;}
.ybf{bottom:255.933000px;}
.y146{bottom:256.312500px;}
.y1e4{bottom:257.026500px;}
.y17a{bottom:257.425500px;}
.y1cf{bottom:257.689500px;}
.y22f{bottom:263.875500px;}
.y248{bottom:263.961000px;}
.y20f{bottom:264.894000px;}
.y11b{bottom:265.504500px;}
.y16b{bottom:267.825000px;}
.yee{bottom:270.412500px;}
.y78{bottom:272.097000px;}
.y4a{bottom:273.109500px;}
.y251{bottom:273.196500px;}
.y194{bottom:274.315500px;}
.y92{bottom:275.221500px;}
.y1a3{bottom:275.329500px;}
.y227{bottom:277.807500px;}
.y145{bottom:278.473500px;}
.ybe{bottom:278.730000px;}
.y179{bottom:279.588000px;}
.y1e3{bottom:279.823500px;}
.y1e{bottom:280.122000px;}
.y1ce{bottom:280.486500px;}
.y136{bottom:282.811500px;}
.y247{bottom:286.672500px;}
.y11a{bottom:287.667000px;}
.y16a{bottom:290.622000px;}
.yed{bottom:293.209500px;}
.y77{bottom:294.894000px;}
.y49{bottom:295.908000px;}
.y144{bottom:297.049500px;}
.y193{bottom:297.112500px;}
.y22e{bottom:297.133500px;}
.y91{bottom:298.018500px;}
.y1a2{bottom:298.126500px;}
.y178{bottom:298.162500px;}
.ybd{bottom:301.527000px;}
.y1e2{bottom:302.620500px;}
.y1cd{bottom:303.283500px;}
.y246{bottom:309.469500px;}
.y119{bottom:309.829500px;}
.yec{bottom:316.008000px;}
.y135{bottom:316.702500px;}
.y76{bottom:317.691000px;}
.y48{bottom:318.705000px;}
.y143{bottom:319.212000px;}
.y192{bottom:319.909500px;}
.y177{bottom:320.325000px;}
.y90{bottom:320.815500px;}
.y1a1{bottom:320.923500px;}
.y1d{bottom:321.295500px;}
.y20e{bottom:322.464000px;}
.y226{bottom:323.052000px;}
.ybc{bottom:324.324000px;}
.y169{bottom:325.146000px;}
.y1e1{bottom:325.417500px;}
.y1cc{bottom:326.080500px;}
.y245{bottom:332.266500px;}
.y142{bottom:337.786500px;}
.yeb{bottom:338.805000px;}
.y176{bottom:338.899500px;}
.y134{bottom:339.499500px;}
.y1c{bottom:339.870000px;}
.y75{bottom:340.488000px;}
.y20d{bottom:341.038500px;}
.y47{bottom:341.502000px;}
.y191{bottom:342.708000px;}
.y8f{bottom:343.612500px;}
.y1a0{bottom:343.722000px;}
.y225{bottom:345.214500px;}
.y15e{bottom:346.929000px;}
.ybb{bottom:347.121000px;}
.y168{bottom:347.943000px;}
.y118{bottom:348.201000px;}
.y1cb{bottom:348.877500px;}
.y244{bottom:355.063500px;}
.y1b{bottom:356.761500px;}
.y20c{bottom:359.614500px;}
.y141{bottom:359.949000px;}
.y175{bottom:361.062000px;}
.yea{bottom:361.602000px;}
.y133{bottom:362.296500px;}
.y74{bottom:363.285000px;}
.y46{bottom:364.299000px;}
.y250{bottom:364.384500px;}
.y190{bottom:365.505000px;}
.y8e{bottom:366.409500px;}
.y19f{bottom:366.519000px;}
.y224{bottom:367.377000px;}
.y15d{bottom:369.726000px;}
.y167{bottom:370.740000px;}
.y1ca{bottom:371.674500px;}
.y243{bottom:377.860500px;}
.y1a{bottom:378.714000px;}
.y140{bottom:382.111500px;}
.y117{bottom:382.725000px;}
.y174{bottom:383.224500px;}
.y1e0{bottom:384.079500px;}
.ye9{bottom:384.399000px;}
.y132{bottom:385.093500px;}
.y73{bottom:386.082000px;}
.y45{bottom:387.096000px;}
.y18f{bottom:388.302000px;}
.y8d{bottom:389.206500px;}
.y19e{bottom:389.316000px;}
.y223{bottom:389.538000px;}
.y15c{bottom:392.523000px;}
.y166{bottom:393.537000px;}
.yba{bottom:394.021500px;}
.y1c9{bottom:394.471500px;}
.y242{bottom:400.657500px;}
.y19{bottom:400.666500px;}
.y109{bottom:404.508000px;}
.y20b{bottom:404.859000px;}
.y116{bottom:405.522000px;}
.y1df{bottom:406.876500px;}
.ye8{bottom:407.196000px;}
.y131{bottom:407.890500px;}
.y72{bottom:408.879000px;}
.y44{bottom:409.893000px;}
.y18e{bottom:411.099000px;}
.y222{bottom:411.700500px;}
.y8c{bottom:412.003500px;}
.y19d{bottom:412.113000px;}
.y15b{bottom:415.320000px;}
.yb9{bottom:416.184000px;}
.y165{bottom:416.334000px;}
.y1c8{bottom:417.268500px;}
.y13f{bottom:420.483000px;}
.y173{bottom:421.596000px;}
.y241{bottom:423.454500px;}
.y18{bottom:424.494000px;}
.y20a{bottom:427.020000px;}
.y108{bottom:427.305000px;}
.y115{bottom:428.319000px;}
.y1de{bottom:429.673500px;}
.ye7{bottom:429.993000px;}
.y130{bottom:430.687500px;}
.y71{bottom:431.676000px;}
.y43{bottom:432.690000px;}
.y221{bottom:433.861500px;}
.y18d{bottom:433.896000px;}
.yb8{bottom:434.758500px;}
.y8b{bottom:434.800500px;}
.y19c{bottom:434.910000px;}
.y15a{bottom:438.117000px;}
.y164{bottom:439.131000px;}
.y1c7{bottom:440.065500px;}
.y240{bottom:446.251500px;}
.y209{bottom:449.182500px;}
.y107{bottom:450.102000px;}
.y114{bottom:451.116000px;}
.y1dd{bottom:452.470500px;}
.ye6{bottom:452.790000px;}
.y12f{bottom:453.484500px;}
.y70{bottom:454.473000px;}
.y42{bottom:455.487000px;}
.y24f{bottom:455.572500px;}
.y220{bottom:456.024000px;}
.y18c{bottom:456.693000px;}
.yb7{bottom:456.921000px;}
.y19b{bottom:457.707000px;}
.y17{bottom:459.897000px;}
.y159{bottom:460.914000px;}
.y163{bottom:461.928000px;}
.y23f{bottom:469.048500px;}
.y208{bottom:471.345000px;}
.y8a{bottom:472.515000px;}
.y106{bottom:472.899000px;}
.y112{bottom:473.913000px;}
.y113{bottom:473.998500px;}
.y1dc{bottom:475.269000px;}
.yb6{bottom:475.497000px;}
.ye5{bottom:475.587000px;}
.y12e{bottom:476.281500px;}
.y6f{bottom:477.270000px;}
.y21f{bottom:478.186500px;}
.y41{bottom:478.284000px;}
.y18b{bottom:479.490000px;}
.y19a{bottom:480.504000px;}
.y16{bottom:481.849500px;}
.y158{bottom:483.711000px;}
.y162{bottom:484.725000px;}
.y1c6{bottom:486.966000px;}
.y23e{bottom:491.845500px;}
.y207{bottom:493.506000px;}
.y86{bottom:494.298000px;}
.y89{bottom:495.312000px;}
.y105{bottom:495.696000px;}
.y111{bottom:496.710000px;}
.yb5{bottom:497.658000px;}
.y1db{bottom:498.066000px;}
.ye4{bottom:498.384000px;}
.y12d{bottom:499.080000px;}
.y6e{bottom:500.067000px;}
.y21e{bottom:500.347500px;}
.y40{bottom:501.081000px;}
.y18a{bottom:502.287000px;}
.y199{bottom:503.301000px;}
.y15{bottom:503.802000px;}
.y157{bottom:506.509500px;}
.y161{bottom:507.522000px;}
.y1c5{bottom:509.128500px;}
.y23d{bottom:514.642500px;}
.y206{bottom:515.668500px;}
.yb4{bottom:516.234000px;}
.y85{bottom:517.095000px;}
.y88{bottom:518.109000px;}
.y104{bottom:518.493000px;}
.y110{bottom:519.507000px;}
.y1da{bottom:520.863000px;}
.ye3{bottom:521.181000px;}
.y12c{bottom:521.877000px;}
.y21d{bottom:522.510000px;}
.y6d{bottom:522.864000px;}
.y3f{bottom:523.878000px;}
.y189{bottom:525.084000px;}
.y14{bottom:525.756000px;}
.y198{bottom:526.098000px;}
.y1c4{bottom:527.703000px;}
.y156{bottom:529.306500px;}
.y160{bottom:530.320500px;}
.y23c{bottom:537.439500px;}
.y205{bottom:537.829500px;}
.yb3{bottom:538.395000px;}
.y84{bottom:539.892000px;}
.y87{bottom:540.906000px;}
.y103{bottom:541.290000px;}
.y10f{bottom:542.304000px;}
.y1d9{bottom:543.660000px;}
.ye2{bottom:543.978000px;}
.y21c{bottom:544.672500px;}
.y12b{bottom:544.674000px;}
.y6c{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.y13{bottom:547.708500px;}
.y188{bottom:547.881000px;}
.y197{bottom:548.895000px;}
.y1c3{bottom:549.865500px;}
.y155{bottom:552.103500px;}
.y15f{bottom:553.117500px;}
.yb2{bottom:556.971000px;}
.y23b{bottom:560.238000px;}
.y102{bottom:564.088500px;}
.y10e{bottom:565.101000px;}
.y1d8{bottom:566.457000px;}
.ye1{bottom:566.775000px;}
.y21b{bottom:566.833500px;}
.y12a{bottom:567.471000px;}
.y1c2{bottom:568.441500px;}
.y6b{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y12{bottom:569.661000px;}
.y187{bottom:570.678000px;}
.y196{bottom:571.692000px;}
.y204{bottom:576.202500px;}
.yb1{bottom:579.133500px;}
.y101{bottom:586.885500px;}
.y10d{bottom:587.899500px;}
.y21a{bottom:588.397500px;}
.y1d7{bottom:589.254000px;}
.ye0{bottom:589.572000px;}
.y129{bottom:590.268000px;}
.y1c1{bottom:590.602500px;}
.y6a{bottom:591.256500px;}
.y11{bottom:591.613500px;}
.y3c{bottom:592.269000px;}
.ya0{bottom:592.270500px;}
.y23a{bottom:593.494500px;}
.y203{bottom:598.999500px;}
.y154{bottom:600.016500px;}
.y1c0{bottom:609.178500px;}
.y100{bottom:609.682500px;}
.y10c{bottom:610.696500px;}
.ydf{bottom:612.369000px;}
.y10{bottom:613.566000px;}
.yb0{bottom:613.654500px;}
.y69{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y186{bottom:618.592500px;}
.y153{bottom:622.179000px;}
.y219{bottom:626.770500px;}
.y1bf{bottom:631.339500px;}
.yff{bottom:632.479500px;}
.y10b{bottom:633.493500px;}
.y202{bottom:633.523500px;}
.yde{bottom:635.167500px;}
.yf{bottom:635.520000px;}
.yaf{bottom:636.451500px;}
.y68{bottom:636.850500px;}
.y128{bottom:637.168500px;}
.y3a{bottom:637.864500px;}
.y152{bottom:640.755000px;}
.y218{bottom:649.567500px;}
.y1be{bottom:649.915500px;}
.yfe{bottom:655.276500px;}
.y1fd{bottom:655.306500px;}
.y10a{bottom:656.290500px;}
.y201{bottom:656.320500px;}
.ye{bottom:657.472500px;}
.ydd{bottom:657.964500px;}
.yae{bottom:659.250000px;}
.y127{bottom:659.329500px;}
.y67{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.y185{bottom:662.916000px;}
.y1bd{bottom:672.078000px;}
.y217{bottom:672.364500px;}
.y1fc{bottom:678.103500px;}
.y200{bottom:679.117500px;}
.yd{bottom:679.425000px;}
.ydc{bottom:680.761500px;}
.y126{bottom:681.492000px;}
.yad{bottom:682.047000px;}
.y66{bottom:682.444500px;}
.y38{bottom:683.458500px;}
.yfd{bottom:697.020000px;}
.y1fb{bottom:700.900500px;}
.yc{bottom:701.377500px;}
.y1ff{bottom:701.914500px;}
.ydb{bottom:703.558500px;}
.y125{bottom:703.654500px;}
.yac{bottom:704.844000px;}
.y65{bottom:705.241500px;}
.y37{bottom:706.255500px;}
.y1bc{bottom:710.449500px;}
.yfc{bottom:719.817000px;}
.yb{bottom:723.330000px;}
.y1fa{bottom:723.697500px;}
.y1fe{bottom:724.711500px;}
.y124{bottom:725.815500px;}
.yda{bottom:726.355500px;}
.yab{bottom:727.641000px;}
.y64{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.yfb{bottom:742.614000px;}
.y1bb{bottom:744.340500px;}
.ya{bottom:745.282500px;}
.y1f9{bottom:745.825500px;}
.y123{bottom:747.978000px;}
.yd9{bottom:749.152500px;}
.y253{bottom:749.500500px;}
.yaa{bottom:750.438000px;}
.y63{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.yfa{bottom:765.411000px;}
.y1ba{bottom:767.137500px;}
.y9{bottom:767.236500px;}
.y1f8{bottom:767.988000px;}
.yd8{bottom:771.949500px;}
.ya9{bottom:773.235000px;}
.y62{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y122{bottom:786.349500px;}
.y1f7{bottom:786.564000px;}
.yf9{bottom:788.208000px;}
.y8{bottom:789.189000px;}
.y1b9{bottom:789.934500px;}
.yd7{bottom:794.746500px;}
.y61{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y1f6{bottom:805.138500px;}
.yf8{bottom:811.005000px;}
.y7{bottom:811.141500px;}
.y1b8{bottom:812.731500px;}
.yd6{bottom:817.543500px;}
.y60{bottom:819.226500px;}
.ya8{bottom:820.135500px;}
.y32{bottom:820.240500px;}
.y1f5{bottom:827.301000px;}
.y1b7{bottom:835.528500px;}
.yd5{bottom:840.340500px;}
.y5f{bottom:842.023500px;}
.y82{bottom:842.110500px;}
.ya7{bottom:842.296500px;}
.y31{bottom:843.037500px;}
.yf7{bottom:844.263000px;}
.y1f4{bottom:845.875500px;}
.y1b6{bottom:858.325500px;}
.yd4{bottom:863.137500px;}
.ya6{bottom:864.459000px;}
.y5e{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.y24e{bottom:865.921500px;}
.y1f3{bottom:868.038000px;}
.y6{bottom:880.816500px;}
.y1b5{bottom:881.122500px;}
.ya5{bottom:883.035000px;}
.yd3{bottom:884.253000px;}
.y1f2{bottom:886.614000px;}
.y5d{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.y1b4{bottom:902.238000px;}
.ya4{bottom:905.196000px;}
.yd2{bottom:906.414000px;}
.y1f1{bottom:908.775000px;}
.y5c{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y5{bottom:922.197000px;}
.ya3{bottom:923.772000px;}
.y1b3{bottom:924.399000px;}
.yd1{bottom:924.990000px;}
.y1f0{bottom:927.351000px;}
.y5b{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.y1b2{bottom:942.975000px;}
.y1ef{bottom:945.927000px;}
.ya2{bottom:945.934500px;}
.yd0{bottom:947.151000px;}
.y5a{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y1b1{bottom:965.137500px;}
.ycf{bottom:965.727000px;}
.y1ee{bottom:968.088000px;}
.ya1{bottom:968.095500px;}
.y59{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.y1ed{bottom:986.664000px;}
.y1b0{bottom:987.298500px;}
.yce{bottom:987.889500px;}
.y3{bottom:996.498000px;}
.y58{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.ycd{bottom:1006.464000px;}
.y1ec{bottom:1008.825000px;}
.y1af{bottom:1009.461000px;}
.y57{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.ycc{bottom:1028.626500px;}
.y1ae{bottom:1031.622000px;}
.y56{bottom:1047.198000px;}
.ycb{bottom:1047.202500px;}
.y28{bottom:1048.212000px;}
.yca{bottom:1069.363500px;}
.y55{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.hf{height:28.294619px;}
.h1{height:35.865450px;}
.hb{height:37.228493px;}
.h5{height:38.250662px;}
.h4{height:42.500452px;}
.h9{height:47.157012px;}
.h7{height:48.875562px;}
.hc{height:49.274231px;}
.hd{height:49.280231px;}
.he{height:50.869080px;}
.h6{height:53.774213px;}
.h3{height:55.250672px;}
.h2{height:73.440896px;}
.ha{height:91.407450px;}
.h8{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:124.500000px;}
.x20{left:126.270000px;}
.x14{left:127.558500px;}
.x42{left:130.921500px;}
.x38{left:137.643000px;}
.x36{left:141.631500px;}
.x3{left:145.048500px;}
.x4{left:148.962000px;}
.x21{left:151.072500px;}
.x15{left:153.070500px;}
.x4a{left:158.563500px;}
.x37{left:161.731500px;}
.x28{left:166.222500px;}
.x2f{left:168.090000px;}
.x39{left:173.412000px;}
.x2d{left:174.627000px;}
.x7{left:178.044000px;}
.x29{left:179.665500px;}
.x2e{left:181.162500px;}
.x12{left:182.308500px;}
.x23{left:184.305000px;}
.x34{left:186.111000px;}
.x24{left:190.990500px;}
.x4c{left:193.164000px;}
.x22{left:202.096500px;}
.x40{left:213.208500px;}
.x30{left:216.889500px;}
.x32{left:218.893500px;}
.x9{left:221.101500px;}
.x31{left:223.437000px;}
.x3c{left:224.794500px;}
.x35{left:231.814500px;}
.xa{left:236.010000px;}
.x3d{left:238.963500px;}
.x10{left:240.510000px;}
.x3e{left:241.816500px;}
.xb{left:244.318500px;}
.x41{left:253.884000px;}
.x4b{left:266.397000px;}
.x25{left:271.135500px;}
.x3f{left:280.215000px;}
.x49{left:282.351000px;}
.x4d{left:285.939000px;}
.x45{left:287.515500px;}
.x46{left:305.071500px;}
.x3a{left:324.076500px;}
.x47{left:334.176000px;}
.x3b{left:336.126000px;}
.x48{left:351.972000px;}
.x5{left:353.544000px;}
.x6{left:377.290500px;}
.xc{left:399.553500px;}
.x17{left:404.373000px;}
.x2a{left:407.367000px;}
.xd{left:408.684000px;}
.x8{left:410.130000px;}
.x4f{left:413.469000px;}
.x4e{left:414.904500px;}
.x11{left:430.453500px;}
.x13{left:432.832500px;}
.x27{left:447.636000px;}
.x18{left:452.577000px;}
.x26{left:461.767500px;}
.x43{left:463.297500px;}
.x16{left:464.346000px;}
.x1a{left:489.858000px;}
.xe{left:540.943500px;}
.xf{left:545.920500px;}
.x2{left:573.774000px;}
.x19{left:578.070000px;}
.x1d{left:579.361500px;}
.x33{left:581.650500px;}
.x1b{left:586.984500px;}
.x1c{left:597.474000px;}
.x1e{left:648.711000px;}
.x50{left:666.823500px;}
.x2c{left:677.886000px;}
.x2b{left:679.321500px;}
.x51{left:681.043500px;}
.x52{left:684.721500px;}
.x1{left:696.322500px;}
.x44{left:774.640500px;}
@media print{
.v3{vertical-align:-8.432000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.354667pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:1.283184pt;}
.ls0{letter-spacing:2.656693pt;}
.ls7{letter-spacing:10.568397pt;}
.ls5{letter-spacing:10.616218pt;}
.ls9{letter-spacing:10.664038pt;}
.ls6{letter-spacing:11.716096pt;}
.ls8{letter-spacing:11.763917pt;}
.ls14{letter-spacing:13.137360pt;}
.lsb{letter-spacing:14.970480pt;}
.ls20{letter-spacing:15.031584pt;}
.ls18{letter-spacing:15.092688pt;}
.ls10{letter-spacing:15.153792pt;}
.lsd{letter-spacing:15.214896pt;}
.lse{letter-spacing:15.276000pt;}
.ls19{letter-spacing:15.337104pt;}
.ls13{letter-spacing:15.398208pt;}
.ls21{letter-spacing:15.459312pt;}
.ls1c{letter-spacing:15.520416pt;}
.ls17{letter-spacing:15.581520pt;}
.ls12{letter-spacing:16.192560pt;}
.lsf{letter-spacing:16.314768pt;}
.ls1b{letter-spacing:16.681392pt;}
.ls15{letter-spacing:17.353536pt;}
.ls16{letter-spacing:17.414640pt;}
.ls1a{letter-spacing:18.575616pt;}
.ls1d{letter-spacing:19.186656pt;}
.ls1e{letter-spacing:20.408736pt;}
.ls1f{letter-spacing:21.019776pt;}
.lsc{letter-spacing:22.119648pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.lsa{letter-spacing:1514.219200pt;}
.ws63{word-spacing:-15.276000pt;}
.ws140{word-spacing:-11.955200pt;}
.wsf6{word-spacing:-3.421824pt;}
.ws101{word-spacing:-3.360720pt;}
.wsca{word-spacing:-3.299616pt;}
.wsc1{word-spacing:-3.238512pt;}
.ws84{word-spacing:-3.177408pt;}
.ws2d{word-spacing:-3.116304pt;}
.ws83{word-spacing:-3.055200pt;}
.wse2{word-spacing:-2.994096pt;}
.wsc5{word-spacing:-2.932992pt;}
.ws128{word-spacing:-2.871888pt;}
.ws10c{word-spacing:-2.810784pt;}
.wsc0{word-spacing:-2.749680pt;}
.ws26{word-spacing:-2.688576pt;}
.ws10{word-spacing:-2.656693pt;}
.wsfe{word-spacing:-2.627472pt;}
.ws19{word-spacing:-2.566368pt;}
.wsdc{word-spacing:-2.505264pt;}
.ws14b{word-spacing:-2.444160pt;}
.wse1{word-spacing:-2.383056pt;}
.wsc3{word-spacing:-2.321952pt;}
.ws13d{word-spacing:-2.295398pt;}
.ws85{word-spacing:-2.260848pt;}
.ws121{word-spacing:-2.199757pt;}
.ws37{word-spacing:-2.199744pt;}
.wsa4{word-spacing:-2.138640pt;}
.wsd6{word-spacing:-2.077536pt;}
.ws17{word-spacing:-2.016432pt;}
.ws25{word-spacing:-1.955328pt;}
.ws8e{word-spacing:-1.833120pt;}
.wsbf{word-spacing:-1.772016pt;}
.ws106{word-spacing:-1.649808pt;}
.ws38{word-spacing:-1.588704pt;}
.wse7{word-spacing:-1.527600pt;}
.ws62{word-spacing:-1.466496pt;}
.ws7a{word-spacing:-1.405392pt;}
.ws3f{word-spacing:-1.344288pt;}
.ws137{word-spacing:-1.291162pt;}
.ws36{word-spacing:-1.283184pt;}
.ws33{word-spacing:-1.222080pt;}
.wsd9{word-spacing:-1.160976pt;}
.wsa0{word-spacing:-1.099872pt;}
.ws27{word-spacing:-1.038768pt;}
.ws41{word-spacing:-0.977664pt;}
.ws82{word-spacing:-0.916560pt;}
.ws134{word-spacing:-0.860774pt;}
.wsf1{word-spacing:-0.855456pt;}
.wsed{word-spacing:-0.794352pt;}
.ws13e{word-spacing:-0.765133pt;}
.wsc6{word-spacing:-0.733248pt;}
.wsb5{word-spacing:-0.672144pt;}
.ws80{word-spacing:-0.611040pt;}
.ws72{word-spacing:-0.549936pt;}
.ws8b{word-spacing:-0.488832pt;}
.ws6a{word-spacing:-0.427728pt;}
.ws13f{word-spacing:-0.382566pt;}
.ws51{word-spacing:-0.366624pt;}
.ws1a{word-spacing:-0.305520pt;}
.ws40{word-spacing:-0.244416pt;}
.ws12f{word-spacing:-0.239104pt;}
.ws10f{word-spacing:-0.191283pt;}
.ws32{word-spacing:-0.183312pt;}
.wsf{word-spacing:-0.159402pt;}
.ws10e{word-spacing:-0.143462pt;}
.ws16{word-spacing:-0.122208pt;}
.ws23{word-spacing:-0.061104pt;}
.ws7{word-spacing:-0.053134pt;}
.ws12e{word-spacing:-0.047821pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.ws13c{word-spacing:0.047821pt;}
.ws11{word-spacing:0.053134pt;}
.ws18{word-spacing:0.061104pt;}
.ws12{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.122208pt;}
.ws120{word-spacing:0.143462pt;}
.ws6{word-spacing:0.159402pt;}
.ws1c{word-spacing:0.183312pt;}
.ws111{word-spacing:0.191283pt;}
.ws9{word-spacing:0.212535pt;}
.ws123{word-spacing:0.239104pt;}
.ws14{word-spacing:0.244416pt;}
.ws2e{word-spacing:0.305520pt;}
.wse{word-spacing:0.318803pt;}
.ws24{word-spacing:0.366624pt;}
.ws22{word-spacing:0.427728pt;}
.ws90{word-spacing:0.488832pt;}
.ws45{word-spacing:0.549936pt;}
.ws3a{word-spacing:0.611040pt;}
.wsbe{word-spacing:0.672144pt;}
.wse5{word-spacing:0.733248pt;}
.wsf0{word-spacing:0.794352pt;}
.ws30{word-spacing:0.855456pt;}
.ws42{word-spacing:0.916560pt;}
.ws4{word-spacing:0.956410pt;}
.ws97{word-spacing:0.977664pt;}
.ws143{word-spacing:1.004237pt;}
.wsd8{word-spacing:1.038768pt;}
.ws29{word-spacing:1.099872pt;}
.ws147{word-spacing:1.099878pt;}
.ws135{word-spacing:1.147699pt;}
.wse9{word-spacing:1.160976pt;}
.wsfd{word-spacing:1.222080pt;}
.wsb8{word-spacing:1.283184pt;}
.wsd{word-spacing:1.328347pt;}
.wsa6{word-spacing:1.344288pt;}
.ws39{word-spacing:1.405392pt;}
.ws4a{word-spacing:1.466496pt;}
.wsa{word-spacing:1.487748pt;}
.wsf3{word-spacing:1.527600pt;}
.ws2b{word-spacing:1.588704pt;}
.ws136{word-spacing:1.625907pt;}
.wsb7{word-spacing:1.649808pt;}
.ws5a{word-spacing:1.710912pt;}
.wsff{word-spacing:1.772016pt;}
.ws5{word-spacing:1.806551pt;}
.wsfb{word-spacing:1.833120pt;}
.wsf2{word-spacing:1.894224pt;}
.ws93{word-spacing:1.955328pt;}
.wsc{word-spacing:1.965953pt;}
.ws71{word-spacing:2.016432pt;}
.ws44{word-spacing:2.077536pt;}
.ws114{word-spacing:2.138640pt;}
.wsb{word-spacing:2.178489pt;}
.ws53{word-spacing:2.199744pt;}
.ws43{word-spacing:2.260848pt;}
.ws3e{word-spacing:2.321952pt;}
.wsdd{word-spacing:2.383056pt;}
.wsc4{word-spacing:2.444160pt;}
.ws8{word-spacing:2.497292pt;}
.wsb0{word-spacing:2.505264pt;}
.ws4d{word-spacing:2.566368pt;}
.wsaa{word-spacing:2.627472pt;}
.ws4f{word-spacing:2.688576pt;}
.wsb9{word-spacing:2.749680pt;}
.wsc8{word-spacing:2.810784pt;}
.ws145{word-spacing:2.869248pt;}
.wsfa{word-spacing:2.871888pt;}
.ws35{word-spacing:2.932992pt;}
.ws49{word-spacing:2.994096pt;}
.ws3d{word-spacing:3.055200pt;}
.ws100{word-spacing:3.116304pt;}
.ws59{word-spacing:3.177408pt;}
.wsc7{word-spacing:3.238512pt;}
.ws96{word-spacing:3.299616pt;}
.ws104{word-spacing:3.360720pt;}
.ws50{word-spacing:3.421824pt;}
.ws20{word-spacing:3.482928pt;}
.ws74{word-spacing:3.544032pt;}
.ws112{word-spacing:3.605136pt;}
.wsa1{word-spacing:3.666240pt;}
.ws129{word-spacing:3.682202pt;}
.ws3b{word-spacing:3.727344pt;}
.wsa5{word-spacing:3.788448pt;}
.ws52{word-spacing:3.849552pt;}
.ws1b{word-spacing:3.910656pt;}
.ws2f{word-spacing:3.971760pt;}
.wsf5{word-spacing:4.032864pt;}
.ws21{word-spacing:4.093968pt;}
.ws6b{word-spacing:4.155072pt;}
.wse3{word-spacing:4.216176pt;}
.ws4b{word-spacing:4.277280pt;}
.ws28{word-spacing:4.338384pt;}
.wsea{word-spacing:4.399488pt;}
.wsd2{word-spacing:4.460592pt;}
.wseb{word-spacing:4.521696pt;}
.ws47{word-spacing:4.582800pt;}
.ws127{word-spacing:4.590797pt;}
.wsd7{word-spacing:4.643904pt;}
.wscd{word-spacing:4.705008pt;}
.ws56{word-spacing:4.766112pt;}
.ws8c{word-spacing:4.827216pt;}
.ws31{word-spacing:4.888320pt;}
.ws7e{word-spacing:4.949424pt;}
.wscc{word-spacing:5.010528pt;}
.ws1d{word-spacing:5.071632pt;}
.ws113{word-spacing:5.132736pt;}
.wsbc{word-spacing:5.193840pt;}
.wsda{word-spacing:5.254944pt;}
.wsc2{word-spacing:5.316048pt;}
.ws95{word-spacing:5.377152pt;}
.wsf8{word-spacing:5.438256pt;}
.wse8{word-spacing:5.499360pt;}
.wsf9{word-spacing:5.560464pt;}
.wsb6{word-spacing:5.621568pt;}
.ws116{word-spacing:5.682672pt;}
.ws57{word-spacing:5.743776pt;}
.wsb1{word-spacing:5.804880pt;}
.ws7b{word-spacing:5.865984pt;}
.wsc9{word-spacing:5.927088pt;}
.wsaf{word-spacing:5.988192pt;}
.ws34{word-spacing:6.049296pt;}
.ws2c{word-spacing:6.110400pt;}
.ws131{word-spacing:6.171504pt;}
.ws153{word-spacing:6.232608pt;}
.wscb{word-spacing:6.293712pt;}
.ws2a{word-spacing:6.354816pt;}
.wsba{word-spacing:6.415920pt;}
.ws92{word-spacing:6.477024pt;}
.ws99{word-spacing:6.538128pt;}
.wsd3{word-spacing:6.599232pt;}
.ws105{word-spacing:6.660336pt;}
.ws152{word-spacing:6.721333pt;}
.wsab{word-spacing:6.782544pt;}
.ws54{word-spacing:6.843648pt;}
.ws81{word-spacing:6.904752pt;}
.ws9a{word-spacing:6.965856pt;}
.ws46{word-spacing:7.026960pt;}
.ws48{word-spacing:7.088064pt;}
.wsbd{word-spacing:7.149168pt;}
.wse4{word-spacing:7.210272pt;}
.ws109{word-spacing:7.268762pt;}
.ws88{word-spacing:7.271376pt;}
.ws13b{word-spacing:7.332480pt;}
.wsef{word-spacing:7.393584pt;}
.ws5d{word-spacing:7.454688pt;}
.wsb3{word-spacing:7.515792pt;}
.ws122{word-spacing:7.576896pt;}
.ws3c{word-spacing:7.638000pt;}
.ws108{word-spacing:7.651328pt;}
.ws64{word-spacing:7.699104pt;}
.wsd4{word-spacing:7.760208pt;}
.ws110{word-spacing:7.794790pt;}
.ws58{word-spacing:7.821312pt;}
.wsac{word-spacing:7.882416pt;}
.ws10a{word-spacing:7.943520pt;}
.ws75{word-spacing:8.004624pt;}
.ws5f{word-spacing:8.065728pt;}
.ws4e{word-spacing:8.126832pt;}
.ws11e{word-spacing:8.187936pt;}
.ws78{word-spacing:8.249040pt;}
.wsae{word-spacing:8.310144pt;}
.wsb2{word-spacing:8.371248pt;}
.wse6{word-spacing:8.432352pt;}
.ws11c{word-spacing:8.493456pt;}
.wsee{word-spacing:8.554560pt;}
.wsdb{word-spacing:8.615664pt;}
.ws10d{word-spacing:8.655565pt;}
.ws6d{word-spacing:8.676768pt;}
.wsb4{word-spacing:8.737872pt;}
.ws115{word-spacing:8.798976pt;}
.ws4c{word-spacing:8.860080pt;}
.ws118{word-spacing:8.921184pt;}
.ws61{word-spacing:8.982288pt;}
.wsfc{word-spacing:9.043392pt;}
.ws146{word-spacing:9.104496pt;}
.ws132{word-spacing:9.165600pt;}
.ws7c{word-spacing:9.287808pt;}
.wsad{word-spacing:9.348912pt;}
.ws76{word-spacing:9.410016pt;}
.ws15{word-spacing:9.471120pt;}
.ws9d{word-spacing:9.532224pt;}
.ws66{word-spacing:9.593328pt;}
.ws12c{word-spacing:9.654432pt;}
.ws9e{word-spacing:9.715536pt;}
.ws7f{word-spacing:9.776640pt;}
.wsbb{word-spacing:9.837744pt;}
.ws12d{word-spacing:9.898848pt;}
.ws55{word-spacing:9.959952pt;}
.ws68{word-spacing:10.021056pt;}
.wsa9{word-spacing:10.082160pt;}
.ws65{word-spacing:10.387680pt;}
.wsf4{word-spacing:10.448784pt;}
.ws9c{word-spacing:10.509888pt;}
.ws67{word-spacing:10.632096pt;}
.ws133{word-spacing:10.693200pt;}
.ws117{word-spacing:10.754304pt;}
.ws150{word-spacing:10.815408pt;}
.ws11d{word-spacing:10.876512pt;}
.ws86{word-spacing:10.998720pt;}
.ws8f{word-spacing:11.059824pt;}
.ws91{word-spacing:11.182032pt;}
.ws125{word-spacing:11.243136pt;}
.wscf{word-spacing:11.304240pt;}
.ws14e{word-spacing:11.365344pt;}
.ws69{word-spacing:11.487552pt;}
.ws14d{word-spacing:11.548656pt;}
.ws142{word-spacing:11.609760pt;}
.ws60{word-spacing:11.670864pt;}
.ws107{word-spacing:11.907379pt;}
.ws8d{word-spacing:11.976384pt;}
.ws7d{word-spacing:12.037488pt;}
.ws98{word-spacing:12.343008pt;}
.ws1e{word-spacing:12.526320pt;}
.ws94{word-spacing:12.648528pt;}
.ws9f{word-spacing:12.709632pt;}
.ws5e{word-spacing:12.770736pt;}
.wsf7{word-spacing:13.015152pt;}
.wsd1{word-spacing:13.076256pt;}
.ws13a{word-spacing:13.320672pt;}
.ws138{word-spacing:13.381776pt;}
.ws6f{word-spacing:13.748400pt;}
.ws14c{word-spacing:13.992816pt;}
.ws10b{word-spacing:14.115024pt;}
.ws141{word-spacing:14.298336pt;}
.ws79{word-spacing:14.848272pt;}
.ws151{word-spacing:14.909376pt;}
.ws6e{word-spacing:14.970480pt;}
.ws0{word-spacing:15.005042pt;}
.ws87{word-spacing:15.031584pt;}
.wsa2{word-spacing:15.337104pt;}
.ws6c{word-spacing:15.520416pt;}
.wsd5{word-spacing:15.764832pt;}
.ws130{word-spacing:15.887040pt;}
.ws119{word-spacing:17.199459pt;}
.ws8a{word-spacing:17.597952pt;}
.ws89{word-spacing:18.392304pt;}
.ws5c{word-spacing:18.758928pt;}
.ws70{word-spacing:19.431072pt;}
.ws3{word-spacing:19.659531pt;}
.wsa8{word-spacing:19.675488pt;}
.wsdf{word-spacing:21.080880pt;}
.wsce{word-spacing:21.569712pt;}
.wsde{word-spacing:23.280624pt;}
.wse0{word-spacing:23.525040pt;}
.wsa3{word-spacing:24.258288pt;}
.ws5b{word-spacing:44.605920pt;}
.ws9b{word-spacing:44.667024pt;}
.ws14f{word-spacing:44.728128pt;}
.ws124{word-spacing:45.155856pt;}
.ws73{word-spacing:46.011312pt;}
.wsd0{word-spacing:46.072416pt;}
.ws103{word-spacing:46.439040pt;}
.ws102{word-spacing:46.500144pt;}
.ws11f{word-spacing:47.050080pt;}
.ws77{word-spacing:55.604640pt;}
.wsa7{word-spacing:62.631600pt;}
.ws13{word-spacing:69.005059pt;}
.ws144{word-spacing:73.500570pt;}
.ws149{word-spacing:99.610726pt;}
.ws14a{word-spacing:111.565926pt;}
.ws148{word-spacing:122.134323pt;}
.ws12a{word-spacing:178.993254pt;}
.ws11b{word-spacing:184.588288pt;}
.ws12b{word-spacing:221.314662pt;}
.ws139{word-spacing:267.366093pt;}
.ws126{word-spacing:836.034896pt;}
.wsec{word-spacing:838.328229pt;}
.ws11a{word-spacing:1353.519923pt;}
._7e{margin-left:-27.130176pt;}
._81{margin-left:-24.319392pt;}
._82{margin-left:-22.975104pt;}
._1a{margin-left:-22.058544pt;}
._7c{margin-left:-8.110899pt;}
._2{margin-left:-6.427083pt;}
._16{margin-left:-4.759733pt;}
._1{margin-left:-3.672619pt;}
._3{margin-left:-2.295387pt;}
._4{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._7b{width:2.627472pt;}
._7d{width:4.295869pt;}
._80{width:5.339974pt;}
._7f{width:6.321872pt;}
._79{width:7.915360pt;}
._7a{width:11.002960pt;}
._28{width:12.009328pt;}
._b{width:12.949866pt;}
._9{width:14.432310pt;}
._32{width:15.370048pt;}
._6{width:16.418365pt;}
._10{width:17.339728pt;}
._c{width:18.826411pt;}
._e{width:19.919904pt;}
._7{width:21.625484pt;}
._5{width:23.077110pt;}
._12{width:24.258288pt;}
._23{width:25.235952pt;}
._14{width:26.281099pt;}
._15{width:27.252384pt;}
._1b{width:28.441520pt;}
._a{width:29.441782pt;}
._d{width:31.163040pt;}
._1e{width:32.839413pt;}
._33{width:33.947259pt;}
._11{width:35.047131pt;}
._27{width:36.112464pt;}
._1d{width:37.002459pt;}
._20{width:38.143248pt;}
._f{width:39.053429pt;}
._22{width:40.261157pt;}
._21{width:41.856240pt;}
._17{width:43.416784pt;}
._24{width:44.605920pt;}
._13{width:46.133520pt;}
._1f{width:47.776949pt;}
._5a{width:51.300795pt;}
._8{width:53.240134pt;}
._25{width:54.777344pt;}
._1c{width:59.881920pt;}
._18{width:61.104000pt;}
._26{width:62.326080pt;}
._51{width:63.745126pt;}
._53{width:67.092192pt;}
._34{width:69.074133pt;}
._76{width:71.444263pt;}
._63{width:72.427602pt;}
._19{width:77.331099pt;}
._4c{width:78.330459pt;}
._3a{width:80.338944pt;}
._37{width:83.208192pt;}
._66{width:85.455770pt;}
._35{width:86.986035pt;}
._65{width:97.410970pt;}
._5e{width:103.197286pt;}
._38{width:110.226944pt;}
._2d{width:111.565926pt;}
._72{width:118.807777pt;}
._2b{width:128.663414pt;}
._2f{width:129.632618pt;}
._31{width:137.570870pt;}
._6e{width:139.445453pt;}
._61{width:145.423053pt;}
._43{width:146.762035pt;}
._4e{width:149.392179pt;}
._29{width:155.082854pt;}
._50{width:167.076304pt;}
._39{width:168.836102pt;}
._2a{width:176.650035pt;}
._2e{width:177.941197pt;}
._52{width:179.165383pt;}
._46{width:181.891169pt;}
._30{width:185.927270pt;}
._47{width:193.942011pt;}
._3d{width:196.543488pt;}
._4a{width:208.307393pt;}
._2c{width:227.770470pt;}
._74{width:230.400614pt;}
._6d{width:234.251753pt;}
._6b{width:235.278336pt;}
._71{width:238.386688pt;}
._5b{width:239.295283pt;}
._56{width:277.819706pt;}
._42{width:337.557456pt;}
._69{width:350.861210pt;}
._57{width:353.051383pt;}
._49{width:368.210589pt;}
._62{width:369.846067pt;}
._59{width:391.633198pt;}
._64{width:402.220737pt;}
._73{width:457.405940pt;}
._70{width:465.631130pt;}
._58{width:470.355818pt;}
._3b{width:490.163200pt;}
._48{width:499.669968pt;}
._41{width:509.903607pt;}
._54{width:514.169242pt;}
._55{width:518.224438pt;}
._67{width:532.771533pt;}
._44{width:547.395126pt;}
._68{width:558.059165pt;}
._3f{width:595.311568pt;}
._6a{width:604.502733pt;}
._77{width:610.480333pt;}
._3c{width:648.210944pt;}
._3e{width:663.934404pt;}
._6f{width:693.449421pt;}
._40{width:703.816951pt;}
._45{width:786.365235pt;}
._5c{width:853.983846pt;}
._6c{width:861.635174pt;}
._60{width:909.360333pt;}
._5d{width:910.435062pt;}
._5f{width:1025.517056pt;}
._36{width:1047.466803pt;}
._4b{width:1155.608786pt;}
._4f{width:1212.161638pt;}
._4d{width:1328.318362pt;}
._75{width:1554.118608pt;}
._78{width:1566.073808pt;}
.fs7{font-size:36.662933pt;}
.fs6{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y83{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.yf6{bottom:78.254667pt;}
.y81{bottom:79.750667pt;}
.y52{bottom:80.652000pt;}
.y25{bottom:81.909333pt;}
.y9a{bottom:82.528000pt;}
.y14c{bottom:84.486667pt;}
.y151{bottom:85.388000pt;}
.y13e{bottom:85.758667pt;}
.y172{bottom:85.761333pt;}
.y1eb{bottom:86.618667pt;}
.y1d6{bottom:87.208000pt;}
.y180{bottom:89.229333pt;}
.y1a9{bottom:89.809333pt;}
.y184{bottom:90.130667pt;}
.y1ad{bottom:90.710667pt;}
.yc4{bottom:93.393333pt;}
.y22d{bottom:93.544000pt;}
.y216{bottom:93.612000pt;}
.yc9{bottom:94.294667pt;}
.y121{bottom:94.689333pt;}
.y235{bottom:96.129333pt;}
.y239{bottom:97.030667pt;}
.yf5{bottom:98.518667pt;}
.y80{bottom:100.014667pt;}
.y51{bottom:100.916000pt;}
.y24{bottom:102.173333pt;}
.y99{bottom:102.792000pt;}
.y14b{bottom:104.750667pt;}
.y13d{bottom:105.458667pt;}
.y171{bottom:105.460000pt;}
.y150{bottom:105.652000pt;}
.y1ea{bottom:106.882667pt;}
.y1d5{bottom:107.472000pt;}
.y17f{bottom:109.493333pt;}
.y1a8{bottom:110.073333pt;}
.y183{bottom:110.394667pt;}
.y1ac{bottom:110.974667pt;}
.y9f{bottom:112.069333pt;}
.y24d{bottom:112.970667pt;}
.yc3{bottom:113.657333pt;}
.y22c{bottom:113.808000pt;}
.y215{bottom:113.876000pt;}
.yc8{bottom:114.558667pt;}
.y120{bottom:114.953333pt;}
.y234{bottom:116.393333pt;}
.y238{bottom:117.294667pt;}
.yf4{bottom:118.782667pt;}
.y7f{bottom:120.278667pt;}
.y50{bottom:121.180000pt;}
.y23{bottom:122.437333pt;}
.y98{bottom:123.056000pt;}
.y14a{bottom:125.014667pt;}
.y13c{bottom:125.157333pt;}
.y170{bottom:125.160000pt;}
.y14f{bottom:125.916000pt;}
.y1e9{bottom:127.146667pt;}
.y1d4{bottom:127.736000pt;}
.y17e{bottom:129.757333pt;}
.y1a7{bottom:130.337333pt;}
.y182{bottom:130.658667pt;}
.y1ab{bottom:131.238667pt;}
.y9e{bottom:132.333333pt;}
.y24c{bottom:133.234667pt;}
.yc2{bottom:133.921333pt;}
.y22b{bottom:134.072000pt;}
.y214{bottom:134.140000pt;}
.yc7{bottom:134.822667pt;}
.y11f{bottom:135.217333pt;}
.y233{bottom:136.657333pt;}
.y237{bottom:137.558667pt;}
.yf3{bottom:139.046667pt;}
.y7e{bottom:140.542667pt;}
.y4f{bottom:141.444000pt;}
.y22{bottom:142.701333pt;}
.y97{bottom:143.321333pt;}
.y13b{bottom:144.857333pt;}
.y16f{bottom:144.860000pt;}
.y149{bottom:145.278667pt;}
.y14e{bottom:146.180000pt;}
.y1e8{bottom:147.410667pt;}
.y1d3{bottom:148.000000pt;}
.y17d{bottom:150.021333pt;}
.y1a6{bottom:150.601333pt;}
.y181{bottom:150.922667pt;}
.y1aa{bottom:151.502667pt;}
.y9d{bottom:152.597333pt;}
.y24b{bottom:153.498667pt;}
.yc1{bottom:154.186667pt;}
.y22a{bottom:154.336000pt;}
.y213{bottom:154.404000pt;}
.yc6{bottom:155.086667pt;}
.y232{bottom:156.921333pt;}
.y236{bottom:157.822667pt;}
.yf2{bottom:159.310667pt;}
.y7c{bottom:160.806667pt;}
.y7d{bottom:160.882667pt;}
.y13a{bottom:161.369333pt;}
.y4e{bottom:161.708000pt;}
.y21{bottom:162.965333pt;}
.y96{bottom:163.585333pt;}
.y16e{bottom:164.558667pt;}
.y148{bottom:165.542667pt;}
.y14d{bottom:166.444000pt;}
.y1e7{bottom:167.674667pt;}
.y1d2{bottom:168.264000pt;}
.y249{bottom:173.762667pt;}
.y24a{bottom:173.840000pt;}
.yc0{bottom:174.450667pt;}
.y229{bottom:174.600000pt;}
.y212{bottom:174.668000pt;}
.yc5{bottom:175.352000pt;}
.y11e{bottom:176.906667pt;}
.yf1{bottom:179.574667pt;}
.y139{bottom:181.068000pt;}
.y7b{bottom:181.070667pt;}
.y4d{bottom:181.972000pt;}
.y252{bottom:182.049333pt;}
.y9c{bottom:182.160000pt;}
.y20{bottom:183.230667pt;}
.y95{bottom:183.849333pt;}
.y16d{bottom:184.258667pt;}
.y1e6{bottom:187.938667pt;}
.y1d1{bottom:188.528000pt;}
.y17c{bottom:192.612000pt;}
.y231{bottom:194.026667pt;}
.y228{bottom:194.864000pt;}
.y211{bottom:194.932000pt;}
.y11d{bottom:196.605333pt;}
.y138{bottom:197.580000pt;}
.yf0{bottom:199.838667pt;}
.y7a{bottom:201.334667pt;}
.y4c{bottom:202.236000pt;}
.y1f{bottom:203.494667pt;}
.y16c{bottom:203.958667pt;}
.y94{bottom:204.113333pt;}
.y1a5{bottom:204.209333pt;}
.y147{bottom:208.133333pt;}
.y1e5{bottom:208.204000pt;}
.y1d0{bottom:208.793333pt;}
.y17b{bottom:212.310667pt;}
.y230{bottom:214.292000pt;}
.y210{bottom:215.197333pt;}
.y11c{bottom:216.305333pt;}
.y137{bottom:217.280000pt;}
.yef{bottom:220.102667pt;}
.y79{bottom:221.598667pt;}
.y4b{bottom:222.500000pt;}
.y195{bottom:223.572000pt;}
.y93{bottom:224.377333pt;}
.y1a4{bottom:224.473333pt;}
.y9b{bottom:227.248000pt;}
.ybf{bottom:227.496000pt;}
.y146{bottom:227.833333pt;}
.y1e4{bottom:228.468000pt;}
.y17a{bottom:228.822667pt;}
.y1cf{bottom:229.057333pt;}
.y22f{bottom:234.556000pt;}
.y248{bottom:234.632000pt;}
.y20f{bottom:235.461333pt;}
.y11b{bottom:236.004000pt;}
.y16b{bottom:238.066667pt;}
.yee{bottom:240.366667pt;}
.y78{bottom:241.864000pt;}
.y4a{bottom:242.764000pt;}
.y251{bottom:242.841333pt;}
.y194{bottom:243.836000pt;}
.y92{bottom:244.641333pt;}
.y1a3{bottom:244.737333pt;}
.y227{bottom:246.940000pt;}
.y145{bottom:247.532000pt;}
.ybe{bottom:247.760000pt;}
.y179{bottom:248.522667pt;}
.y1e3{bottom:248.732000pt;}
.y1e{bottom:248.997333pt;}
.y1ce{bottom:249.321333pt;}
.y136{bottom:251.388000pt;}
.y247{bottom:254.820000pt;}
.y11a{bottom:255.704000pt;}
.y16a{bottom:258.330667pt;}
.yed{bottom:260.630667pt;}
.y77{bottom:262.128000pt;}
.y49{bottom:263.029333pt;}
.y144{bottom:264.044000pt;}
.y193{bottom:264.100000pt;}
.y22e{bottom:264.118667pt;}
.y91{bottom:264.905333pt;}
.y1a2{bottom:265.001333pt;}
.y178{bottom:265.033333pt;}
.ybd{bottom:268.024000pt;}
.y1e2{bottom:268.996000pt;}
.y1cd{bottom:269.585333pt;}
.y246{bottom:275.084000pt;}
.y119{bottom:275.404000pt;}
.yec{bottom:280.896000pt;}
.y135{bottom:281.513333pt;}
.y76{bottom:282.392000pt;}
.y48{bottom:283.293333pt;}
.y143{bottom:283.744000pt;}
.y192{bottom:284.364000pt;}
.y177{bottom:284.733333pt;}
.y90{bottom:285.169333pt;}
.y1a1{bottom:285.265333pt;}
.y1d{bottom:285.596000pt;}
.y20e{bottom:286.634667pt;}
.y226{bottom:287.157333pt;}
.ybc{bottom:288.288000pt;}
.y169{bottom:289.018667pt;}
.y1e1{bottom:289.260000pt;}
.y1cc{bottom:289.849333pt;}
.y245{bottom:295.348000pt;}
.y142{bottom:300.254667pt;}
.yeb{bottom:301.160000pt;}
.y176{bottom:301.244000pt;}
.y134{bottom:301.777333pt;}
.y1c{bottom:302.106667pt;}
.y75{bottom:302.656000pt;}
.y20d{bottom:303.145333pt;}
.y47{bottom:303.557333pt;}
.y191{bottom:304.629333pt;}
.y8f{bottom:305.433333pt;}
.y1a0{bottom:305.530667pt;}
.y225{bottom:306.857333pt;}
.y15e{bottom:308.381333pt;}
.ybb{bottom:308.552000pt;}
.y168{bottom:309.282667pt;}
.y118{bottom:309.512000pt;}
.y1cb{bottom:310.113333pt;}
.y244{bottom:315.612000pt;}
.y1b{bottom:317.121333pt;}
.y20c{bottom:319.657333pt;}
.y141{bottom:319.954667pt;}
.y175{bottom:320.944000pt;}
.yea{bottom:321.424000pt;}
.y133{bottom:322.041333pt;}
.y74{bottom:322.920000pt;}
.y46{bottom:323.821333pt;}
.y250{bottom:323.897333pt;}
.y190{bottom:324.893333pt;}
.y8e{bottom:325.697333pt;}
.y19f{bottom:325.794667pt;}
.y224{bottom:326.557333pt;}
.y15d{bottom:328.645333pt;}
.y167{bottom:329.546667pt;}
.y1ca{bottom:330.377333pt;}
.y243{bottom:335.876000pt;}
.y1a{bottom:336.634667pt;}
.y140{bottom:339.654667pt;}
.y117{bottom:340.200000pt;}
.y174{bottom:340.644000pt;}
.y1e0{bottom:341.404000pt;}
.ye9{bottom:341.688000pt;}
.y132{bottom:342.305333pt;}
.y73{bottom:343.184000pt;}
.y45{bottom:344.085333pt;}
.y18f{bottom:345.157333pt;}
.y8d{bottom:345.961333pt;}
.y19e{bottom:346.058667pt;}
.y223{bottom:346.256000pt;}
.y15c{bottom:348.909333pt;}
.y166{bottom:349.810667pt;}
.yba{bottom:350.241333pt;}
.y1c9{bottom:350.641333pt;}
.y242{bottom:356.140000pt;}
.y19{bottom:356.148000pt;}
.y109{bottom:359.562667pt;}
.y20b{bottom:359.874667pt;}
.y116{bottom:360.464000pt;}
.y1df{bottom:361.668000pt;}
.ye8{bottom:361.952000pt;}
.y131{bottom:362.569333pt;}
.y72{bottom:363.448000pt;}
.y44{bottom:364.349333pt;}
.y18e{bottom:365.421333pt;}
.y222{bottom:365.956000pt;}
.y8c{bottom:366.225333pt;}
.y19d{bottom:366.322667pt;}
.y15b{bottom:369.173333pt;}
.yb9{bottom:369.941333pt;}
.y165{bottom:370.074667pt;}
.y1c8{bottom:370.905333pt;}
.y13f{bottom:373.762667pt;}
.y173{bottom:374.752000pt;}
.y241{bottom:376.404000pt;}
.y18{bottom:377.328000pt;}
.y20a{bottom:379.573333pt;}
.y108{bottom:379.826667pt;}
.y115{bottom:380.728000pt;}
.y1de{bottom:381.932000pt;}
.ye7{bottom:382.216000pt;}
.y130{bottom:382.833333pt;}
.y71{bottom:383.712000pt;}
.y43{bottom:384.613333pt;}
.y221{bottom:385.654667pt;}
.y18d{bottom:385.685333pt;}
.yb8{bottom:386.452000pt;}
.y8b{bottom:386.489333pt;}
.y19c{bottom:386.586667pt;}
.y15a{bottom:389.437333pt;}
.y164{bottom:390.338667pt;}
.y1c7{bottom:391.169333pt;}
.y240{bottom:396.668000pt;}
.y209{bottom:399.273333pt;}
.y107{bottom:400.090667pt;}
.y114{bottom:400.992000pt;}
.y1dd{bottom:402.196000pt;}
.ye6{bottom:402.480000pt;}
.y12f{bottom:403.097333pt;}
.y70{bottom:403.976000pt;}
.y42{bottom:404.877333pt;}
.y24f{bottom:404.953333pt;}
.y220{bottom:405.354667pt;}
.y18c{bottom:405.949333pt;}
.yb7{bottom:406.152000pt;}
.y19b{bottom:406.850667pt;}
.y17{bottom:408.797333pt;}
.y159{bottom:409.701333pt;}
.y163{bottom:410.602667pt;}
.y23f{bottom:416.932000pt;}
.y208{bottom:418.973333pt;}
.y8a{bottom:420.013333pt;}
.y106{bottom:420.354667pt;}
.y112{bottom:421.256000pt;}
.y113{bottom:421.332000pt;}
.y1dc{bottom:422.461333pt;}
.yb6{bottom:422.664000pt;}
.ye5{bottom:422.744000pt;}
.y12e{bottom:423.361333pt;}
.y6f{bottom:424.240000pt;}
.y21f{bottom:425.054667pt;}
.y41{bottom:425.141333pt;}
.y18b{bottom:426.213333pt;}
.y19a{bottom:427.114667pt;}
.y16{bottom:428.310667pt;}
.y158{bottom:429.965333pt;}
.y162{bottom:430.866667pt;}
.y1c6{bottom:432.858667pt;}
.y23e{bottom:437.196000pt;}
.y207{bottom:438.672000pt;}
.y86{bottom:439.376000pt;}
.y89{bottom:440.277333pt;}
.y105{bottom:440.618667pt;}
.y111{bottom:441.520000pt;}
.yb5{bottom:442.362667pt;}
.y1db{bottom:442.725333pt;}
.ye4{bottom:443.008000pt;}
.y12d{bottom:443.626667pt;}
.y6e{bottom:444.504000pt;}
.y21e{bottom:444.753333pt;}
.y40{bottom:445.405333pt;}
.y18a{bottom:446.477333pt;}
.y199{bottom:447.378667pt;}
.y15{bottom:447.824000pt;}
.y157{bottom:450.230667pt;}
.y161{bottom:451.130667pt;}
.y1c5{bottom:452.558667pt;}
.y23d{bottom:457.460000pt;}
.y206{bottom:458.372000pt;}
.yb4{bottom:458.874667pt;}
.y85{bottom:459.640000pt;}
.y88{bottom:460.541333pt;}
.y104{bottom:460.882667pt;}
.y110{bottom:461.784000pt;}
.y1da{bottom:462.989333pt;}
.ye3{bottom:463.272000pt;}
.y12c{bottom:463.890667pt;}
.y21d{bottom:464.453333pt;}
.y6d{bottom:464.768000pt;}
.y3f{bottom:465.669333pt;}
.y189{bottom:466.741333pt;}
.y14{bottom:467.338667pt;}
.y198{bottom:467.642667pt;}
.y1c4{bottom:469.069333pt;}
.y156{bottom:470.494667pt;}
.y160{bottom:471.396000pt;}
.y23c{bottom:477.724000pt;}
.y205{bottom:478.070667pt;}
.yb3{bottom:478.573333pt;}
.y84{bottom:479.904000pt;}
.y87{bottom:480.805333pt;}
.y103{bottom:481.146667pt;}
.y10f{bottom:482.048000pt;}
.y1d9{bottom:483.253333pt;}
.ye2{bottom:483.536000pt;}
.y21c{bottom:484.153333pt;}
.y12b{bottom:484.154667pt;}
.y6c{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.y13{bottom:486.852000pt;}
.y188{bottom:487.005333pt;}
.y197{bottom:487.906667pt;}
.y1c3{bottom:488.769333pt;}
.y155{bottom:490.758667pt;}
.y15f{bottom:491.660000pt;}
.yb2{bottom:495.085333pt;}
.y23b{bottom:497.989333pt;}
.y102{bottom:501.412000pt;}
.y10e{bottom:502.312000pt;}
.y1d8{bottom:503.517333pt;}
.ye1{bottom:503.800000pt;}
.y21b{bottom:503.852000pt;}
.y12a{bottom:504.418667pt;}
.y1c2{bottom:505.281333pt;}
.y6b{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y12{bottom:506.365333pt;}
.y187{bottom:507.269333pt;}
.y196{bottom:508.170667pt;}
.y204{bottom:512.180000pt;}
.yb1{bottom:514.785333pt;}
.y101{bottom:521.676000pt;}
.y10d{bottom:522.577333pt;}
.y21a{bottom:523.020000pt;}
.y1d7{bottom:523.781333pt;}
.ye0{bottom:524.064000pt;}
.y129{bottom:524.682667pt;}
.y1c1{bottom:524.980000pt;}
.y6a{bottom:525.561333pt;}
.y11{bottom:525.878667pt;}
.y3c{bottom:526.461333pt;}
.ya0{bottom:526.462667pt;}
.y23a{bottom:527.550667pt;}
.y203{bottom:532.444000pt;}
.y154{bottom:533.348000pt;}
.y1c0{bottom:541.492000pt;}
.y100{bottom:541.940000pt;}
.y10c{bottom:542.841333pt;}
.ydf{bottom:544.328000pt;}
.y10{bottom:545.392000pt;}
.yb0{bottom:545.470667pt;}
.y69{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y186{bottom:549.860000pt;}
.y153{bottom:553.048000pt;}
.y219{bottom:557.129333pt;}
.y1bf{bottom:561.190667pt;}
.yff{bottom:562.204000pt;}
.y10b{bottom:563.105333pt;}
.y202{bottom:563.132000pt;}
.yde{bottom:564.593333pt;}
.yf{bottom:564.906667pt;}
.yaf{bottom:565.734667pt;}
.y68{bottom:566.089333pt;}
.y128{bottom:566.372000pt;}
.y3a{bottom:566.990667pt;}
.y152{bottom:569.560000pt;}
.y218{bottom:577.393333pt;}
.y1be{bottom:577.702667pt;}
.yfe{bottom:582.468000pt;}
.y1fd{bottom:582.494667pt;}
.y10a{bottom:583.369333pt;}
.y201{bottom:583.396000pt;}
.ye{bottom:584.420000pt;}
.ydd{bottom:584.857333pt;}
.yae{bottom:586.000000pt;}
.y127{bottom:586.070667pt;}
.y67{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.y185{bottom:589.258667pt;}
.y1bd{bottom:597.402667pt;}
.y217{bottom:597.657333pt;}
.y1fc{bottom:602.758667pt;}
.y200{bottom:603.660000pt;}
.yd{bottom:603.933333pt;}
.ydc{bottom:605.121333pt;}
.y126{bottom:605.770667pt;}
.yad{bottom:606.264000pt;}
.y66{bottom:606.617333pt;}
.y38{bottom:607.518667pt;}
.yfd{bottom:619.573333pt;}
.y1fb{bottom:623.022667pt;}
.yc{bottom:623.446667pt;}
.y1ff{bottom:623.924000pt;}
.ydb{bottom:625.385333pt;}
.y125{bottom:625.470667pt;}
.yac{bottom:626.528000pt;}
.y65{bottom:626.881333pt;}
.y37{bottom:627.782667pt;}
.y1bc{bottom:631.510667pt;}
.yfc{bottom:639.837333pt;}
.yb{bottom:642.960000pt;}
.y1fa{bottom:643.286667pt;}
.y1fe{bottom:644.188000pt;}
.y124{bottom:645.169333pt;}
.yda{bottom:645.649333pt;}
.yab{bottom:646.792000pt;}
.y64{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.yfb{bottom:660.101333pt;}
.y1bb{bottom:661.636000pt;}
.ya{bottom:662.473333pt;}
.y1f9{bottom:662.956000pt;}
.y123{bottom:664.869333pt;}
.yd9{bottom:665.913333pt;}
.y253{bottom:666.222667pt;}
.yaa{bottom:667.056000pt;}
.y63{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.yfa{bottom:680.365333pt;}
.y1ba{bottom:681.900000pt;}
.y9{bottom:681.988000pt;}
.y1f8{bottom:682.656000pt;}
.yd8{bottom:686.177333pt;}
.ya9{bottom:687.320000pt;}
.y62{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y122{bottom:698.977333pt;}
.y1f7{bottom:699.168000pt;}
.yf9{bottom:700.629333pt;}
.y8{bottom:701.501333pt;}
.y1b9{bottom:702.164000pt;}
.yd7{bottom:706.441333pt;}
.y61{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y1f6{bottom:715.678667pt;}
.yf8{bottom:720.893333pt;}
.y7{bottom:721.014667pt;}
.y1b8{bottom:722.428000pt;}
.yd6{bottom:726.705333pt;}
.y60{bottom:728.201333pt;}
.ya8{bottom:729.009333pt;}
.y32{bottom:729.102667pt;}
.y1f5{bottom:735.378667pt;}
.y1b7{bottom:742.692000pt;}
.yd5{bottom:746.969333pt;}
.y5f{bottom:748.465333pt;}
.y82{bottom:748.542667pt;}
.ya7{bottom:748.708000pt;}
.y31{bottom:749.366667pt;}
.yf7{bottom:750.456000pt;}
.y1f4{bottom:751.889333pt;}
.y1b6{bottom:762.956000pt;}
.yd4{bottom:767.233333pt;}
.ya6{bottom:768.408000pt;}
.y5e{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.y24e{bottom:769.708000pt;}
.y1f3{bottom:771.589333pt;}
.y6{bottom:782.948000pt;}
.y1b5{bottom:783.220000pt;}
.ya5{bottom:784.920000pt;}
.yd3{bottom:786.002667pt;}
.y1f2{bottom:788.101333pt;}
.y5d{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.y1b4{bottom:801.989333pt;}
.ya4{bottom:804.618667pt;}
.yd2{bottom:805.701333pt;}
.y1f1{bottom:807.800000pt;}
.y5c{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y5{bottom:819.730667pt;}
.ya3{bottom:821.130667pt;}
.y1b3{bottom:821.688000pt;}
.yd1{bottom:822.213333pt;}
.y1f0{bottom:824.312000pt;}
.y5b{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.y1b2{bottom:838.200000pt;}
.y1ef{bottom:840.824000pt;}
.ya2{bottom:840.830667pt;}
.yd0{bottom:841.912000pt;}
.y5a{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y1b1{bottom:857.900000pt;}
.ycf{bottom:858.424000pt;}
.y1ee{bottom:860.522667pt;}
.ya1{bottom:860.529333pt;}
.y59{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.y1ed{bottom:877.034667pt;}
.y1b0{bottom:877.598667pt;}
.yce{bottom:878.124000pt;}
.y3{bottom:885.776000pt;}
.y58{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.ycd{bottom:894.634667pt;}
.y1ec{bottom:896.733333pt;}
.y1af{bottom:897.298667pt;}
.y57{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.ycc{bottom:914.334667pt;}
.y1ae{bottom:916.997333pt;}
.y56{bottom:930.842667pt;}
.ycb{bottom:930.846667pt;}
.y28{bottom:931.744000pt;}
.yca{bottom:950.545333pt;}
.y55{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.hf{height:25.150772pt;}
.h1{height:31.880400pt;}
.hb{height:33.091994pt;}
.h5{height:34.000589pt;}
.h4{height:37.778179pt;}
.h9{height:41.917344pt;}
.h7{height:43.444944pt;}
.hc{height:43.799316pt;}
.hd{height:43.804650pt;}
.he{height:45.216960pt;}
.h6{height:47.799300pt;}
.h3{height:49.111709pt;}
.h2{height:65.280797pt;}
.ha{height:81.251067pt;}
.h8{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:110.666667pt;}
.x20{left:112.240000pt;}
.x14{left:113.385333pt;}
.x42{left:116.374667pt;}
.x38{left:122.349333pt;}
.x36{left:125.894667pt;}
.x3{left:128.932000pt;}
.x4{left:132.410667pt;}
.x21{left:134.286667pt;}
.x15{left:136.062667pt;}
.x4a{left:140.945333pt;}
.x37{left:143.761333pt;}
.x28{left:147.753333pt;}
.x2f{left:149.413333pt;}
.x39{left:154.144000pt;}
.x2d{left:155.224000pt;}
.x7{left:158.261333pt;}
.x29{left:159.702667pt;}
.x2e{left:161.033333pt;}
.x12{left:162.052000pt;}
.x23{left:163.826667pt;}
.x34{left:165.432000pt;}
.x24{left:169.769333pt;}
.x4c{left:171.701333pt;}
.x22{left:179.641333pt;}
.x40{left:189.518667pt;}
.x30{left:192.790667pt;}
.x32{left:194.572000pt;}
.x9{left:196.534667pt;}
.x31{left:198.610667pt;}
.x3c{left:199.817333pt;}
.x35{left:206.057333pt;}
.xa{left:209.786667pt;}
.x3d{left:212.412000pt;}
.x10{left:213.786667pt;}
.x3e{left:214.948000pt;}
.xb{left:217.172000pt;}
.x41{left:225.674667pt;}
.x4b{left:236.797333pt;}
.x25{left:241.009333pt;}
.x3f{left:249.080000pt;}
.x49{left:250.978667pt;}
.x4d{left:254.168000pt;}
.x45{left:255.569333pt;}
.x46{left:271.174667pt;}
.x3a{left:288.068000pt;}
.x47{left:297.045333pt;}
.x3b{left:298.778667pt;}
.x48{left:312.864000pt;}
.x5{left:314.261333pt;}
.x6{left:335.369333pt;}
.xc{left:355.158667pt;}
.x17{left:359.442667pt;}
.x2a{left:362.104000pt;}
.xd{left:363.274667pt;}
.x8{left:364.560000pt;}
.x4f{left:367.528000pt;}
.x4e{left:368.804000pt;}
.x11{left:382.625333pt;}
.x13{left:384.740000pt;}
.x27{left:397.898667pt;}
.x18{left:402.290667pt;}
.x26{left:410.460000pt;}
.x43{left:411.820000pt;}
.x16{left:412.752000pt;}
.x1a{left:435.429333pt;}
.xe{left:480.838667pt;}
.xf{left:485.262667pt;}
.x2{left:510.021333pt;}
.x19{left:513.840000pt;}
.x1d{left:514.988000pt;}
.x33{left:517.022667pt;}
.x1b{left:521.764000pt;}
.x1c{left:531.088000pt;}
.x1e{left:576.632000pt;}
.x50{left:592.732000pt;}
.x2c{left:602.565333pt;}
.x2b{left:603.841333pt;}
.x51{left:605.372000pt;}
.x52{left:608.641333pt;}
.x1{left:618.953333pt;}
.x44{left:688.569333pt;}
}




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