
    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_09e8ac6f19d4a4590177ae8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.226000;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_3f2de18fccd341b65f9ca380.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_233f2b63dfb0441e0756b9b0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_331636d9862900866291331d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.215332;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_331636d9862900866291331d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.215332;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);}
.m1f{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);}
.m1d{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);}
.m6{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);}
.m22{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);}
.m11{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);}
.m21{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);}
.m12{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);}
.m28{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);}
.m3{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);}
.m7{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);}
.ma{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);}
.m17{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);}
.m9{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);}
.m23{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);}
.m15{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);}
.m19{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);}
.m1c{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);}
.m20{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);}
.m25{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m8{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);}
.mb{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);}
.m14{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);}
.m1b{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);}
.m5{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);}
.m18{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);}
.m16{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);}
.mc{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);}
.m27{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);}
.m29{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);}
.m2a{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);}
.m13{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);}
.m2{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);}
.m1a{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);}
.m24{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);}
.m10{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);}
.m4{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.248000px;}
.v7{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:32.880000px;}
.v5{vertical-align:35.868000px;}
.v4{vertical-align:65.748000px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000800px;}
.ls14{letter-spacing:0.002293px;}
.ls3{letter-spacing:11.954850px;}
.ls12{letter-spacing:13.158563px;}
.lsd{letter-spacing:13.227596px;}
.ls17{letter-spacing:13.241273px;}
.ls13{letter-spacing:13.380251px;}
.ls8{letter-spacing:13.442995px;}
.lse{letter-spacing:13.448400px;}
.lsc{letter-spacing:13.454400px;}
.ls15{letter-spacing:13.456933px;}
.ls1c{letter-spacing:13.490400px;}
.ls11{letter-spacing:13.496183px;}
.ls10{letter-spacing:13.611376px;}
.ls1b{letter-spacing:13.617202px;}
.lsf{letter-spacing:13.688015px;}
.ls5{letter-spacing:14.625845px;}
.lsa{letter-spacing:14.941200px;}
.ls6{letter-spacing:14.944766px;}
.ls1a{letter-spacing:15.232753px;}
.ls19{letter-spacing:15.579812px;}
.ls16{letter-spacing:16.868047px;}
.ls0{letter-spacing:57.415200px;}
.ls1{letter-spacing:62.761200px;}
.ls2{letter-spacing:64.321654px;}
.lsb{letter-spacing:209.242394px;}
.ls9{letter-spacing:244.326600px;}
.ls7{letter-spacing:274.931894px;}
.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;}
}
.ws56{word-spacing:-14.943900px;}
.ws59{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws77{word-spacing:-3.227882px;}
.ws90{word-spacing:-3.108331px;}
.ws1b{word-spacing:-2.869229px;}
.wsfc{word-spacing:-2.689920px;}
.ws4b{word-spacing:-2.510575px;}
.wsbc{word-spacing:-2.313331px;}
.ws3b{word-spacing:-2.271473px;}
.wsbd{word-spacing:-2.259533px;}
.ws9e{word-spacing:-1.972595px;}
.wsd5{word-spacing:-1.882944px;}
.ws72{word-spacing:-1.853044px;}
.ws2c{word-spacing:-1.793268px;}
.ws83{word-spacing:-1.673717px;}
.ws88{word-spacing:-1.613941px;}
.ws38{word-spacing:-1.554166px;}
.wsb1{word-spacing:-1.434614px;}
.ws48{word-spacing:-1.345673px;}
.ws47{word-spacing:-1.329705px;}
.ws46{word-spacing:-1.329351px;}
.ws45{word-spacing:-1.315063px;}
.ws3f{word-spacing:-1.255288px;}
.ws2f{word-spacing:-1.195512px;}
.ws5d{word-spacing:-1.075961px;}
.ws7e{word-spacing:-1.016185px;}
.ws93{word-spacing:-0.956410px;}
.ws81{word-spacing:-0.836858px;}
.ws25{word-spacing:-0.717307px;}
.ws7d{word-spacing:-0.657532px;}
.wsf7{word-spacing:-0.645581px;}
.wsa9{word-spacing:-0.597756px;}
.ws86{word-spacing:-0.537980px;}
.wsd2{word-spacing:-0.484186px;}
.ws5e{word-spacing:-0.478205px;}
.wse1{word-spacing:-0.430387px;}
.ws51{word-spacing:-0.418429px;}
.ws108{word-spacing:-0.376589px;}
.ws43{word-spacing:-0.358654px;}
.ws44{word-spacing:-0.353738px;}
.wsb7{word-spacing:-0.322790px;}
.wsb{word-spacing:-0.298878px;}
.wse2{word-spacing:-0.268992px;}
.ws9{word-spacing:-0.239102px;}
.ws8e{word-spacing:-0.215194px;}
.ws11{word-spacing:-0.179327px;}
.wsb2{word-spacing:-0.161395px;}
.wsc{word-spacing:-0.119551px;}
.ws5a{word-spacing:-0.107597px;}
.ws16{word-spacing:-0.059776px;}
.ws63{word-spacing:-0.053798px;}
.wsd7{word-spacing:-0.022886px;}
.wsd0{word-spacing:-0.009302px;}
.wscc{word-spacing:-0.008208px;}
.wsf0{word-spacing:-0.006998px;}
.wse3{word-spacing:-0.006806px;}
.ws101{word-spacing:-0.004800px;}
.wsd3{word-spacing:-0.003302px;}
.wsfb{word-spacing:-0.003110px;}
.ws5{word-spacing:-0.002557px;}
.ws1d{word-spacing:-0.000304px;}
.ws0{word-spacing:0.000000px;}
.wsf2{word-spacing:0.000557px;}
.ws105{word-spacing:0.001200px;}
.ws2{word-spacing:0.002503px;}
.ws58{word-spacing:0.053798px;}
.wsa{word-spacing:0.059776px;}
.ws5b{word-spacing:0.107597px;}
.ws36{word-spacing:0.113610px;}
.ws35{word-spacing:0.116626px;}
.ws14{word-spacing:0.119551px;}
.wsff{word-spacing:0.160400px;}
.ws52{word-spacing:0.161395px;}
.ws10{word-spacing:0.179327px;}
.ws57{word-spacing:0.215194px;}
.ws4c{word-spacing:0.239102px;}
.ws8c{word-spacing:0.243764px;}
.wsc0{word-spacing:0.268992px;}
.ws24{word-spacing:0.298878px;}
.wsb8{word-spacing:0.322790px;}
.ws26{word-spacing:0.358654px;}
.wsdb{word-spacing:0.376589px;}
.ws4f{word-spacing:0.418429px;}
.ws41{word-spacing:0.478205px;}
.wscd{word-spacing:0.484186px;}
.ws29{word-spacing:0.537980px;}
.ws92{word-spacing:0.597756px;}
.wse0{word-spacing:0.645581px;}
.wsa8{word-spacing:0.657532px;}
.ws4d{word-spacing:0.717307px;}
.wsaf{word-spacing:0.777083px;}
.wsf8{word-spacing:0.860774px;}
.wsb0{word-spacing:0.896634px;}
.wsc9{word-spacing:0.914573px;}
.ws75{word-spacing:0.956410px;}
.ws8f{word-spacing:1.016185px;}
.ws27{word-spacing:1.075961px;}
.wse4{word-spacing:1.075968px;}
.ws2d{word-spacing:1.135736px;}
.ws37{word-spacing:1.195512px;}
.ws5c{word-spacing:1.255288px;}
.wsb6{word-spacing:1.291162px;}
.ws32{word-spacing:1.315063px;}
.wsec{word-spacing:1.348870px;}
.ws12{word-spacing:1.374839px;}
.wsfd{word-spacing:1.398758px;}
.ws13{word-spacing:1.434614px;}
.ws71{word-spacing:1.494390px;}
.ws5f{word-spacing:1.554166px;}
.ws89{word-spacing:1.613941px;}
.ws8a{word-spacing:1.617363px;}
.wsf5{word-spacing:1.667750px;}
.ws34{word-spacing:1.673717px;}
.ws21{word-spacing:1.733492px;}
.wsee{word-spacing:1.829146px;}
.ws1a{word-spacing:1.853044px;}
.ws87{word-spacing:1.912819px;}
.ws8d{word-spacing:1.972595px;}
.ws8b{word-spacing:2.080796px;}
.ws30{word-spacing:2.092146px;}
.ws3d{word-spacing:2.151922px;}
.wse5{word-spacing:2.151936px;}
.wse6{word-spacing:2.205734px;}
.wsea{word-spacing:2.259533px;}
.ws106{word-spacing:2.313331px;}
.ws91{word-spacing:2.331248px;}
.ws31{word-spacing:2.391024px;}
.ws33{word-spacing:2.450800px;}
.wsf3{word-spacing:2.474726px;}
.ws4{word-spacing:2.510252px;}
.ws3e{word-spacing:2.510575px;}
.wsb5{word-spacing:2.630126px;}
.wse7{word-spacing:2.689920px;}
.wsd{word-spacing:2.749678px;}
.ws54{word-spacing:2.809453px;}
.ws7{word-spacing:2.869236px;}
.ws94{word-spacing:2.929004px;}
.wsce{word-spacing:2.958912px;}
.wsb3{word-spacing:2.988780px;}
.wsef{word-spacing:3.012710px;}
.ws55{word-spacing:3.048556px;}
.ws102{word-spacing:3.066509px;}
.wsd9{word-spacing:3.120307px;}
.ws2b{word-spacing:3.168107px;}
.wsdd{word-spacing:3.174106px;}
.wsdc{word-spacing:3.203002px;}
.wsda{word-spacing:3.219379px;}
.wsf9{word-spacing:3.219408px;}
.wse8{word-spacing:3.222758px;}
.ws107{word-spacing:3.223306px;}
.ws103{word-spacing:3.224765px;}
.wse9{word-spacing:3.225082px;}
.ws104{word-spacing:3.225206px;}
.wsc7{word-spacing:3.225859px;}
.wsd8{word-spacing:3.226512px;}
.wsf1{word-spacing:3.226742px;}
.wsad{word-spacing:3.227882px;}
.wsc8{word-spacing:3.227904px;}
.wsbb{word-spacing:3.268692px;}
.ws84{word-spacing:3.287658px;}
.ws100{word-spacing:3.312566px;}
.wsba{word-spacing:3.335501px;}
.ws1f{word-spacing:3.347434px;}
.ws20{word-spacing:3.407209px;}
.wsed{word-spacing:3.443098px;}
.wsd1{word-spacing:3.496896px;}
.ws15{word-spacing:3.510732px;}
.wsae{word-spacing:3.526760px;}
.ws60{word-spacing:3.586536px;}
.wsac{word-spacing:3.646312px;}
.wse{word-spacing:3.706087px;}
.ws8{word-spacing:3.765863px;}
.ws76{word-spacing:3.825638px;}
.ws4e{word-spacing:3.885414px;}
.ws42{word-spacing:3.945190px;}
.wsfa{word-spacing:3.981082px;}
.ws49{word-spacing:4.004965px;}
.wsca{word-spacing:4.088678px;}
.wseb{word-spacing:4.142477px;}
.ws4a{word-spacing:4.244068px;}
.wsbf{word-spacing:4.250074px;}
.ws17{word-spacing:4.303872px;}
.wsd6{word-spacing:4.357670px;}
.ws7f{word-spacing:4.423394px;}
.wsaa{word-spacing:4.542946px;}
.ws2e{word-spacing:4.722272px;}
.wsdf{word-spacing:4.788058px;}
.ws18{word-spacing:4.841824px;}
.wscf{word-spacing:4.895654px;}
.ws61{word-spacing:4.961375px;}
.ws73{word-spacing:5.140702px;}
.ws62{word-spacing:5.320028px;}
.ws74{word-spacing:5.379804px;}
.ws3c{word-spacing:5.439580px;}
.ws50{word-spacing:5.499355px;}
.wscb{word-spacing:5.541235px;}
.ws2a{word-spacing:5.678682px;}
.ws22{word-spacing:5.738458px;}
.wsa7{word-spacing:5.858009px;}
.ws3a{word-spacing:5.977560px;}
.ws39{word-spacing:6.037336px;}
.ws28{word-spacing:6.097111px;}
.ws19{word-spacing:6.156887px;}
.wsde{word-spacing:6.186816px;}
.ws53{word-spacing:6.216662px;}
.wsf{word-spacing:6.455765px;}
.ws85{word-spacing:6.515540px;}
.wsd4{word-spacing:6.563405px;}
.ws23{word-spacing:6.575316px;}
.wsab{word-spacing:6.754643px;}
.wsb4{word-spacing:6.814418px;}
.ws82{word-spacing:6.874194px;}
.ws1c{word-spacing:7.173072px;}
.ws80{word-spacing:7.352399px;}
.wsfe{word-spacing:7.800768px;}
.ws40{word-spacing:8.308808px;}
.wsf6{word-spacing:8.630610px;}
.wsb9{word-spacing:10.114117px;}
.wsf4{word-spacing:11.781850px;}
.ws1{word-spacing:28.455541px;}
.ws78{word-spacing:152.092243px;}
.wsc1{word-spacing:156.714739px;}
.wsbe{word-spacing:188.186803px;}
.ws64{word-spacing:220.645018px;}
.wsc5{word-spacing:278.083930px;}
.wsc3{word-spacing:279.267494px;}
.ws69{word-spacing:298.638898px;}
.ws70{word-spacing:307.844340px;}
.wsc6{word-spacing:318.109939px;}
.ws6a{word-spacing:321.054748px;}
.ws66{word-spacing:333.727175px;}
.wsc2{word-spacing:338.940864px;}
.wsc4{word-spacing:370.356864px;}
.ws67{word-spacing:384.895088px;}
.ws96{word-spacing:385.911274px;}
.ws6e{word-spacing:386.210152px;}
.ws79{word-spacing:387.079488px;}
.ws7a{word-spacing:389.823206px;}
.ws7c{word-spacing:392.513126px;}
.ws7b{word-spacing:392.566925px;}
.ws6c{word-spacing:398.822803px;}
.ws97{word-spacing:408.327124px;}
.ws9a{word-spacing:426.738008px;}
.ws6b{word-spacing:432.117812px;}
.ws6f{word-spacing:446.942161px;}
.ws6d{word-spacing:449.632063px;}
.wsa2{word-spacing:464.064998px;}
.ws68{word-spacing:465.891026px;}
.ws9d{word-spacing:473.482528px;}
.ws99{word-spacing:478.875979px;}
.ws65{word-spacing:481.432682px;}
.wsa6{word-spacing:484.400794px;}
.wsa1{word-spacing:492.847142px;}
.wsa0{word-spacing:495.806054px;}
.wsa3{word-spacing:510.493018px;}
.wsa5{word-spacing:517.217818px;}
.ws98{word-spacing:519.390188px;}
.wsa4{word-spacing:522.382464px;}
.ws9b{word-spacing:523.753807px;}
.ws9f{word-spacing:525.072384px;}
.ws9c{word-spacing:536.964215px;}
.ws95{word-spacing:591.300235px;}
._9{margin-left:-7.077449px;}
._7{margin-left:-5.260266px;}
._1{margin-left:-3.849538px;}
._8{margin-left:-2.630133px;}
._2{margin-left:-1.506341px;}
._b{width:1.028143px;}
._5{width:2.998528px;}
._a{width:11.955150px;}
._0{width:12.971268px;}
._16{width:13.999441px;}
._13{width:15.732940px;}
._d{width:17.418628px;}
._c{width:18.709763px;}
._15{width:19.965050px;}
._e{width:21.100787px;}
._14{width:22.547352px;}
._f{width:24.029791px;}
._3{width:25.943736px;}
._42{width:27.747829px;}
._17{width:28.871615px;}
._1a{width:30.664896px;}
._9d{width:31.717478px;}
._4{width:33.355008px;}
._1b{width:34.622023px;}
._18{width:35.937086px;}
._40{width:38.196622px;}
._66{width:39.726890px;}
._10{width:41.376679px;}
._19{width:43.456861px;}
._6{width:54.404552px;}
._9c{width:61.868160px;}
._6e{width:71.713267px;}
._68{width:106.574630px;}
._6d{width:128.416781px;}
._8e{width:130.138330px;}
._96{width:131.997466px;}
._70{width:138.961267px;}
._84{width:142.284791px;}
._97{width:143.414557px;}
._6f{width:145.524672px;}
._76{width:148.155926px;}
._8b{width:158.771244px;}
._83{width:167.528218px;}
._71{width:170.110541px;}
._6c{width:173.446042px;}
._7c{width:177.881318px;}
._85{width:179.471462px;}
._72{width:191.145715px;}
._75{width:199.084071px;}
._94{width:200.130048px;}
._74{width:202.186224px;}
._6a{width:204.541517px;}
._67{width:208.253606px;}
._6b{width:213.525850px;}
._69{width:218.152512px;}
._80{width:226.030886px;}
._7a{width:230.125748px;}
._78{width:233.084660px;}
._77{width:237.412339px;}
._88{width:245.177323px;}
._8f{width:247.096051px;}
._38{width:248.978995px;}
._93{width:253.551859px;}
._8a{width:258.638900px;}
._44{width:262.426835px;}
._7d{width:266.828087px;}
._39{width:268.442039px;}
._91{width:276.200986px;}
._4f{width:277.896764px;}
._2d{width:280.534849px;}
._89{width:282.656794px;}
._86{width:288.604609px;}
._87{width:289.626778px;}
._8c{width:292.179110px;}
._90{width:294.223450px;}
._99{width:296.859571px;}
._98{width:297.911599px;}
._1e{width:303.452827px;}
._4d{width:310.546193px;}
._9a{width:311.683990px;}
._81{width:314.666842px;}
._3c{width:327.554650px;}
._3f{width:328.738215px;}
._31{width:335.086426px;}
._2f{width:340.089677px;}
._9b{width:341.835034px;}
._3d{width:351.494938px;}
._8d{width:354.585254px;}
._45{width:357.111385px;}
._35{width:359.026714px;}
._95{width:360.879667px;}
._33{width:361.985626px;}
._79{width:366.098112px;}
._3a{width:370.055386px;}
._73{width:371.746944px;}
._3b{width:373.821274px;}
._7b{width:378.579341px;}
._30{width:379.762906px;}
._82{width:383.122214px;}
._3e{width:384.903745px;}
._92{width:398.592346px;}
._22{width:399.659662px;}
._2e{width:401.569124px;}
._36{width:403.219008px;}
._34{width:406.016525px;}
._2a{width:407.968470px;}
._53{width:408.996606px;}
._32{width:416.644661px;}
._58{width:419.346551px;}
._7e{width:421.080077px;}
._24{width:426.259804px;}
._5c{width:428.319053px;}
._21{width:431.579832px;}
._37{width:433.830298px;}
._1f{width:434.867490px;}
._43{width:440.486396px;}
._4e{width:441.980786px;}
._29{width:448.018122px;}
._23{width:451.186229px;}
._5a{width:452.366938px;}
._59{width:455.995238px;}
._55{width:457.361108px;}
._7f{width:458.695853px;}
._52{width:462.866370px;}
._60{width:469.262252px;}
._20{width:474.080323px;}
._65{width:475.781072px;}
._27{width:477.786371px;}
._2b{width:480.583873px;}
._48{width:484.361647px;}
._50{width:486.035404px;}
._5e{width:490.994189px;}
._62{width:493.546522px;}
._51{width:495.300622px;}
._25{width:496.388546px;}
._26{width:499.126273px;}
._4a{width:500.859752px;}
._2c{width:502.413918px;}
._61{width:515.203469px;}
._64{width:517.785653px;}
._28{width:518.971759px;}
._5b{width:520.959898px;}
._46{width:522.199642px;}
._47{width:526.682812px;}
._5d{width:527.977498px;}
._4b{width:530.508450px;}
._1d{width:552.832358px;}
._1c{width:567.465523px;}
._54{width:583.228454px;}
._57{width:584.734810px;}
._63{width:590.521229px;}
._4c{width:598.891736px;}
._5f{width:610.372839px;}
._56{width:623.499649px;}
._49{width:644.560295px;}
._11{width:1916.102700px;}
._41{width:2583.914700px;}
._12{width:2607.824700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs7{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.ya2{bottom:4.876440px;}
.y158{bottom:5.458963px;}
.y43{bottom:45.921000px;}
.y156{bottom:99.720000px;}
.y16{bottom:100.260000px;}
.y172{bottom:104.056500px;}
.y24f{bottom:105.961500px;}
.y42{bottom:107.502000px;}
.y1be{bottom:110.952000px;}
.y124{bottom:113.037000px;}
.y1cb{bottom:114.577500px;}
.y77{bottom:116.407500px;}
.y15{bottom:118.147500px;}
.y155{bottom:120.610500px;}
.y21d{bottom:122.718000px;}
.y171{bottom:124.948500px;}
.y24e{bottom:125.112000px;}
.y1e7{bottom:125.329500px;}
.y41{bottom:128.394000px;}
.y1bd{bottom:131.842500px;}
.y123{bottom:133.927500px;}
.y1ca{bottom:135.469500px;}
.y14{bottom:136.035000px;}
.y76{bottom:137.298000px;}
.y8b{bottom:137.731500px;}
.y1c0{bottom:139.546500px;}
.y154{bottom:141.502500px;}
.y21c{bottom:141.870000px;}
.y24d{bottom:144.262500px;}
.y1e6{bottom:144.828000px;}
.yb8{bottom:144.960000px;}
.y170{bottom:145.840500px;}
.yf2{bottom:146.458500px;}
.y40{bottom:149.286000px;}
.y13{bottom:153.922500px;}
.y122{bottom:154.819500px;}
.y1c9{bottom:156.360000px;}
.y1bc{bottom:157.218000px;}
.y75{bottom:158.190000px;}
.y8a{bottom:158.623500px;}
.y1bf{bottom:158.779500px;}
.y21b{bottom:161.020500px;}
.yb7{bottom:161.398500px;}
.y153{bottom:162.394500px;}
.y24c{bottom:163.413000px;}
.y1e5{bottom:164.326500px;}
.y16f{bottom:166.731000px;}
.yf1{bottom:167.350500px;}
.y3f{bottom:170.176500px;}
.y12{bottom:171.811500px;}
.y121{bottom:175.711500px;}
.y192{bottom:176.011500px;}
.y1c8{bottom:177.252000px;}
.yb6{bottom:177.837000px;}
.y74{bottom:179.082000px;}
.y89{bottom:179.514000px;}
.y21a{bottom:180.171000px;}
.y24b{bottom:182.563500px;}
.y152{bottom:183.285000px;}
.y1e4{bottom:183.825000px;}
.y16e{bottom:187.623000px;}
.yf0{bottom:188.242500px;}
.y3e{bottom:188.338500px;}
.y11{bottom:189.699000px;}
.y3d{bottom:191.068500px;}
.y1bb{bottom:192.559500px;}
.y191{bottom:193.944000px;}
.yb5{bottom:194.275500px;}
.y120{bottom:196.602000px;}
.y1c7{bottom:198.144000px;}
.y219{bottom:199.321500px;}
.y73{bottom:199.972500px;}
.y88{bottom:200.406000px;}
.y24a{bottom:201.714000px;}
.y1e3{bottom:203.325000px;}
.y151{bottom:204.177000px;}
.y10{bottom:207.586500px;}
.y16d{bottom:208.515000px;}
.yef{bottom:209.134500px;}
.yb4{bottom:210.714000px;}
.y190{bottom:211.878000px;}
.y3c{bottom:211.960500px;}
.y1ba{bottom:213.451500px;}
.y11f{bottom:217.494000px;}
.y218{bottom:218.472000px;}
.y1c6{bottom:219.036000px;}
.y72{bottom:220.864500px;}
.ya0{bottom:221.298000px;}
.y1e2{bottom:222.823500px;}
.y150{bottom:225.069000px;}
.yf{bottom:225.475500px;}
.y87{bottom:225.781500px;}
.yae{bottom:227.152500px;}
.y16c{bottom:229.405500px;}
.y18f{bottom:229.810500px;}
.yee{bottom:230.025000px;}
.y3b{bottom:232.851000px;}
.y1b9{bottom:234.343500px;}
.y217{bottom:237.622500px;}
.y11e{bottom:238.386000px;}
.y1c5{bottom:239.926500px;}
.y249{bottom:240.015000px;}
.y71{bottom:241.756500px;}
.y9f{bottom:242.190000px;}
.y1e1{bottom:242.322000px;}
.yb3{bottom:243.589500px;}
.y14f{bottom:245.961000px;}
.y18e{bottom:247.743000px;}
.y16b{bottom:250.297500px;}
.yed{bottom:250.917000px;}
.ye{bottom:252.330000px;}
.y1b8{bottom:255.234000px;}
.y3a{bottom:258.226500px;}
.y248{bottom:259.165500px;}
.y11d{bottom:259.276500px;}
.yb2{bottom:260.028000px;}
.y86{bottom:261.123000px;}
.y216{bottom:261.256500px;}
.y1e0{bottom:261.820500px;}
.y70{bottom:262.647000px;}
.y9e{bottom:263.080500px;}
.y1c4{bottom:265.302000px;}
.y18d{bottom:265.675500px;}
.y14e{bottom:266.851500px;}
.yd{bottom:270.217500px;}
.y16a{bottom:271.189500px;}
.yec{bottom:271.809000px;}
.y1b7{bottom:276.126000px;}
.yb1{bottom:276.466500px;}
.y247{bottom:278.316000px;}
.y11c{bottom:280.168500px;}
.y1df{bottom:281.319000px;}
.y85{bottom:282.015000px;}
.y6f{bottom:283.539000px;}
.y18c{bottom:283.608000px;}
.y9d{bottom:283.972500px;}
.y14d{bottom:287.743500px;}
.yc{bottom:288.105000px;}
.y169{bottom:292.080000px;}
.yeb{bottom:292.699500px;}
.yb0{bottom:292.905000px;}
.y1b6{bottom:297.018000px;}
.y246{bottom:297.466500px;}
.y1de{bottom:300.817500px;}
.y1c3{bottom:300.930000px;}
.y11b{bottom:301.060500px;}
.y18b{bottom:301.540500px;}
.y84{bottom:302.907000px;}
.y6e{bottom:304.431000px;}
.y9c{bottom:304.864500px;}
.yb{bottom:305.994000px;}
.y14c{bottom:308.635500px;}
.yaf{bottom:309.343500px;}
.y215{bottom:311.769000px;}
.y168{bottom:312.972000px;}
.yea{bottom:313.591500px;}
.y245{bottom:316.617000px;}
.y1b5{bottom:317.908500px;}
.y18a{bottom:319.474500px;}
.y1c2{bottom:320.161500px;}
.y11a{bottom:321.951000px;}
.y83{bottom:323.797500px;}
.ya{bottom:323.881500px;}
.y6d{bottom:325.323000px;}
.y9b{bottom:325.755000px;}
.y214{bottom:328.207500px;}
.yad{bottom:332.985000px;}
.y167{bottom:333.864000px;}
.ye9{bottom:334.483500px;}
.y1dd{bottom:335.460000px;}
.y244{bottom:335.767500px;}
.y189{bottom:337.407000px;}
.y39{bottom:337.438500px;}
.y1b4{bottom:338.800500px;}
.y1c1{bottom:339.394500px;}
.y9{bottom:341.769000px;}
.y119{bottom:342.843000px;}
.y213{bottom:344.646000px;}
.y82{bottom:344.689500px;}
.y6c{bottom:346.213500px;}
.y9a{bottom:346.647000px;}
.y14b{bottom:352.869000px;}
.y166{bottom:354.756000px;}
.y243{bottom:354.918000px;}
.y188{bottom:355.339500px;}
.ye8{bottom:355.374000px;}
.y38{bottom:358.329000px;}
.y1dc{bottom:359.442000px;}
.y1b3{bottom:359.692500px;}
.y212{bottom:361.084500px;}
.y118{bottom:363.735000px;}
.y81{bottom:365.581500px;}
.y8{bottom:365.635500px;}
.y6b{bottom:367.105500px;}
.yac{bottom:367.593000px;}
.y211{bottom:369.303000px;}
.y99{bottom:372.021000px;}
.y14a{bottom:372.265500px;}
.y187{bottom:373.272000px;}
.y242{bottom:374.070000px;}
.y165{bottom:375.646500px;}
.ye7{bottom:376.266000px;}
.y1b2{bottom:380.584500px;}
.y186{bottom:382.239000px;}
.y7{bottom:383.523000px;}
.y117{bottom:384.627000px;}
.y80{bottom:386.472000px;}
.yab{bottom:386.826000px;}
.y6a{bottom:387.997500px;}
.y149{bottom:389.329500px;}
.y241{bottom:393.220500px;}
.y210{bottom:393.960000px;}
.y164{bottom:396.538500px;}
.y37{bottom:397.153500px;}
.ye6{bottom:397.158000px;}
.y1db{bottom:398.266500px;}
.y6{bottom:401.410500px;}
.y1b1{bottom:401.475000px;}
.y116{bottom:405.517500px;}
.y148{bottom:405.766500px;}
.yaa{bottom:406.059000px;}
.y7f{bottom:407.364000px;}
.y69{bottom:408.888000px;}
.y185{bottom:409.137000px;}
.y20f{bottom:410.398500px;}
.y98{bottom:410.845500px;}
.y240{bottom:412.371000px;}
.y163{bottom:417.430500px;}
.y1da{bottom:417.765000px;}
.y36{bottom:418.045500px;}
.ye5{bottom:418.048500px;}
.y20e{bottom:418.618500px;}
.y5{bottom:419.299500px;}
.y147{bottom:422.205000px;}
.y1b0{bottom:422.367000px;}
.y115{bottom:426.409500px;}
.y184{bottom:427.071000px;}
.y7e{bottom:428.256000px;}
.y68{bottom:429.780000px;}
.y23f{bottom:431.521500px;}
.y97{bottom:431.737500px;}
.y1d9{bottom:437.263500px;}
.y162{bottom:438.321000px;}
.y146{bottom:438.643500px;}
.y35{bottom:438.937500px;}
.ye4{bottom:438.940500px;}
.ya9{bottom:443.073000px;}
.y4{bottom:443.164500px;}
.y1af{bottom:443.259000px;}
.y20d{bottom:443.275500px;}
.y183{bottom:445.003500px;}
.y7d{bottom:449.146500px;}
.y67{bottom:450.672000px;}
.y96{bottom:452.629500px;}
.y145{bottom:455.082000px;}
.y161{bottom:459.213000px;}
.y20c{bottom:459.714000px;}
.y34{bottom:459.828000px;}
.ye3{bottom:459.832500px;}
.y3{bottom:461.052000px;}
.y182{bottom:462.936000px;}
.ya8{bottom:463.965000px;}
.y1d8{bottom:465.729000px;}
.y23e{bottom:469.822500px;}
.y7c{bottom:470.038500px;}
.y144{bottom:471.520500px;}
.y66{bottom:471.562500px;}
.y95{bottom:473.520000px;}
.y20b{bottom:476.152500px;}
.y114{bottom:477.370500px;}
.y2{bottom:478.941000px;}
.y160{bottom:480.105000px;}
.y33{bottom:480.720000px;}
.ye2{bottom:480.723000px;}
.y181{bottom:480.868500px;}
.ya7{bottom:484.855500px;}
.y1d7{bottom:485.227500px;}
.y143{bottom:487.959000px;}
.y23d{bottom:488.973000px;}
.y1ae{bottom:490.782000px;}
.y7b{bottom:490.930500px;}
.y65{bottom:492.454500px;}
.y20a{bottom:492.591000px;}
.y94{bottom:494.412000px;}
.y113{bottom:495.303000px;}
.y1{bottom:496.828500px;}
.y180{bottom:498.801000px;}
.y15f{bottom:500.995500px;}
.y32{bottom:501.612000px;}
.ye1{bottom:501.615000px;}
.y142{bottom:504.397500px;}
.ya6{bottom:505.747500px;}
.y1ad{bottom:507.220500px;}
.y23c{bottom:508.123500px;}
.y209{bottom:509.029500px;}
.y7a{bottom:511.822500px;}
.y112{bottom:513.235500px;}
.y64{bottom:513.346500px;}
.y1d6{bottom:513.693000px;}
.y93{bottom:515.304000px;}
.y17f{bottom:516.733500px;}
.y208{bottom:517.248000px;}
.y141{bottom:520.836000px;}
.y15e{bottom:521.887500px;}
.y31{bottom:522.502500px;}
.y1ac{bottom:523.659000px;}
.ya5{bottom:526.639500px;}
.y23b{bottom:527.274000px;}
.y111{bottom:531.168000px;}
.y79{bottom:532.713000px;}
.y1d5{bottom:533.191500px;}
.y63{bottom:534.237000px;}
.y17e{bottom:534.667500px;}
.y92{bottom:536.194500px;}
.y140{bottom:537.274500px;}
.y1ab{bottom:540.097500px;}
.y207{bottom:541.905000px;}
.y15d{bottom:542.779500px;}
.y30{bottom:543.394500px;}
.y23a{bottom:546.424500px;}
.y110{bottom:549.102000px;}
.y206{bottom:550.125000px;}
.ya4{bottom:552.013500px;}
.ydf{bottom:552.127500px;}
.y17d{bottom:552.600000px;}
.y13f{bottom:553.713000px;}
.y62{bottom:555.129000px;}
.y1aa{bottom:556.536000px;}
.y91{bottom:557.086500px;}
.y78{bottom:558.088500px;}
.y1d4{bottom:561.657000px;}
.y15c{bottom:563.670000px;}
.y2f{bottom:564.286500px;}
.y239{bottom:565.575000px;}
.y10f{bottom:567.034500px;}
.yde{bottom:568.566000px;}
.y13e{bottom:570.150000px;}
.y17c{bottom:570.532500px;}
.y1a9{bottom:572.974500px;}
.y205{bottom:574.782000px;}
.y61{bottom:576.021000px;}
.y90{bottom:577.978500px;}
.y1d3{bottom:581.155500px;}
.y204{bottom:583.002000px;}
.ya3{bottom:584.160000px;}
.y238{bottom:584.725500px;}
.y10e{bottom:584.967000px;}
.ydd{bottom:585.004500px;}
.y2e{bottom:585.177000px;}
.y13d{bottom:586.588500px;}
.y1a8{bottom:589.413000px;}
.y17b{bottom:595.668000px;}
.y60{bottom:596.913000px;}
.y8f{bottom:598.870500px;}
.y15b{bottom:599.298000px;}
.y1d2{bottom:600.654000px;}
.yd9{bottom:601.443000px;}
.y10d{bottom:602.899500px;}
.y13c{bottom:603.027000px;}
.y237{bottom:603.876000px;}
.y1a7{bottom:605.851500px;}
.y2d{bottom:606.069000px;}
.ya1{bottom:606.589500px;}
.y203{bottom:607.659000px;}
.ye0{bottom:609.663000px;}
.y5f{bottom:617.803500px;}
.yd8{bottom:617.881500px;}
.y15a{bottom:618.531000px;}
.y13b{bottom:619.465500px;}
.y8e{bottom:619.761000px;}
.y1d1{bottom:620.152500px;}
.y10c{bottom:620.832000px;}
.y1a6{bottom:622.290000px;}
.y236{bottom:623.026500px;}
.y202{bottom:624.097500px;}
.y2c{bottom:626.961000px;}
.y17a{bottom:628.333500px;}
.ydc{bottom:634.320000px;}
.y13a{bottom:635.904000px;}
.y159{bottom:637.764000px;}
.y5e{bottom:638.695500px;}
.y1a5{bottom:638.727000px;}
.y10b{bottom:638.764500px;}
.y201{bottom:640.536000px;}
.y8d{bottom:640.653000px;}
.y235{bottom:642.177000px;}
.y2b{bottom:647.853000px;}
.y1d0{bottom:648.618000px;}
.y200{bottom:648.754500px;}
.ydb{bottom:650.758500px;}
.y139{bottom:652.342500px;}
.y1a4{bottom:655.165500px;}
.y10a{bottom:656.698500px;}
.y5d{bottom:659.587500px;}
.y157{bottom:660.193500px;}
.y234{bottom:661.327500px;}
.y179{bottom:661.545000px;}
.y8c{bottom:666.027000px;}
.yda{bottom:667.197000px;}
.y1cf{bottom:668.116500px;}
.y2a{bottom:668.743500px;}
.y138{bottom:668.781000px;}
.y1a3{bottom:671.604000px;}
.y1ff{bottom:673.413000px;}
.y109{bottom:674.631000px;}
.y5c{bottom:680.478000px;}
.y1fe{bottom:681.631500px;}
.y178{bottom:682.435500px;}
.y137{bottom:685.219500px;}
.y1ce{bottom:687.615000px;}
.y1a2{bottom:688.042500px;}
.y29{bottom:689.635500px;}
.yd7{bottom:690.837000px;}
.y108{bottom:692.563500px;}
.y233{bottom:699.628500px;}
.y5b{bottom:701.370000px;}
.y136{bottom:701.658000px;}
.y177{bottom:703.327500px;}
.y1a1{bottom:704.481000px;}
.y1fd{bottom:706.290000px;}
.y1cd{bottom:707.115000px;}
.yd3{bottom:707.275500px;}
.y107{bottom:710.496000px;}
.y28{bottom:710.527500px;}
.y252{bottom:714.049500px;}
.y1fc{bottom:714.508500px;}
.y135{bottom:718.096500px;}
.y232{bottom:718.779000px;}
.y1a0{bottom:720.919500px;}
.y5a{bottom:722.262000px;}
.yd2{bottom:723.714000px;}
.y176{bottom:724.219500px;}
.y1cc{bottom:726.613500px;}
.y106{bottom:728.428500px;}
.y27{bottom:731.418000px;}
.y251{bottom:733.200000px;}
.y19f{bottom:737.358000px;}
.y231{bottom:737.929500px;}
.y1fb{bottom:739.165500px;}
.yd1{bottom:740.152500px;}
.y133{bottom:741.736500px;}
.y59{bottom:743.152500px;}
.y175{bottom:745.110000px;}
.y105{bottom:746.362500px;}
.y1fa{bottom:747.385500px;}
.y132{bottom:749.955000px;}
.y250{bottom:752.350500px;}
.y19e{bottom:753.796500px;}
.yd0{bottom:756.591000px;}
.y230{bottom:757.081500px;}
.y134{bottom:758.175000px;}
.y26{bottom:761.277000px;}
.y130{bottom:763.137000px;}
.y58{bottom:764.044500px;}
.y104{bottom:764.295000px;}
.yd5{bottom:764.809500px;}
.y174{bottom:766.002000px;}
.y19d{bottom:770.235000px;}
.y1f9{bottom:772.042500px;}
.ycb{bottom:773.029500px;}
.y22f{bottom:776.232000px;}
.yd4{bottom:781.248000px;}
.y131{bottom:781.815000px;}
.y103{bottom:782.227500px;}
.y57{bottom:784.936500px;}
.y19c{bottom:786.673500px;}
.y1f8{bottom:788.481000px;}
.ycf{bottom:789.468000px;}
.y173{bottom:791.377500px;}
.y22e{bottom:795.382500px;}
.y102{bottom:800.160000px;}
.y25{bottom:801.295500px;}
.y19b{bottom:803.112000px;}
.y1f7{bottom:804.919500px;}
.y56{bottom:805.827000px;}
.yce{bottom:805.906500px;}
.y1f6{bottom:813.138000px;}
.y22d{bottom:814.533000px;}
.y12f{bottom:816.424500px;}
.y24{bottom:817.435500px;}
.y101{bottom:818.092500px;}
.y19a{bottom:819.549000px;}
.ycd{bottom:822.343500px;}
.y55{bottom:826.719000px;}
.y22c{bottom:833.683500px;}
.y12e{bottom:835.657500px;}
.y199{bottom:835.987500px;}
.y100{bottom:836.025000px;}
.y23{bottom:837.915000px;}
.ycc{bottom:838.782000px;}
.y1f4{bottom:844.998000px;}
.y54{bottom:847.611000px;}
.y22{bottom:849.715500px;}
.y22b{bottom:852.834000px;}
.y1f3{bottom:853.218000px;}
.yff{bottom:853.959000px;}
.yd6{bottom:855.220500px;}
.y198{bottom:859.629000px;}
.y1f5{bottom:861.436500px;}
.y53{bottom:868.503000px;}
.y21{bottom:870.193500px;}
.y12d{bottom:870.460500px;}
.y22a{bottom:871.984500px;}
.yca{bottom:878.862000px;}
.yfe{bottom:879.093000px;}
.y20{bottom:881.994000px;}
.y52{bottom:889.393500px;}
.y229{bottom:891.135000px;}
.y197{bottom:891.247500px;}
.y12c{bottom:891.351000px;}
.yc7{bottom:895.300500px;}
.y1f2{bottom:896.044500px;}
.yfd{bottom:897.025500px;}
.y1f{bottom:898.134000px;}
.yfb{bottom:901.755000px;}
.y51{bottom:910.285500px;}
.y196{bottom:910.480500px;}
.yc6{bottom:911.739000px;}
.y12b{bottom:912.243000px;}
.y1f1{bottom:915.277500px;}
.y1e{bottom:918.613500px;}
.yfc{bottom:922.161000px;}
.yc8{bottom:928.176000px;}
.y228{bottom:929.436000px;}
.y1d{bottom:930.412500px;}
.y50{bottom:931.177500px;}
.y12a{bottom:933.135000px;}
.y1f0{bottom:934.510500px;}
.yc9{bottom:944.614500px;}
.y1c{bottom:946.552500px;}
.y195{bottom:947.584500px;}
.y227{bottom:948.586500px;}
.y4f{bottom:952.068000px;}
.y1ef{bottom:953.743500px;}
.y129{bottom:954.025500px;}
.yfa{bottom:957.816000px;}
.y1b{bottom:967.032000px;}
.y226{bottom:967.737000px;}
.yc5{bottom:968.256000px;}
.y194{bottom:968.476500px;}
.y4e{bottom:972.960000px;}
.y128{bottom:974.917500px;}
.yf9{bottom:977.049000px;}
.yc4{bottom:984.694500px;}
.y225{bottom:986.887500px;}
.y193{bottom:989.368500px;}
.y1ee{bottom:990.847500px;}
.y4d{bottom:993.852000px;}
.y127{bottom:995.809500px;}
.ybe{bottom:1001.133000px;}
.y224{bottom:1006.038000px;}
.yc1{bottom:1009.351500px;}
.yf8{bottom:1010.260500px;}
.y1a{bottom:1011.708000px;}
.y1ed{bottom:1011.739500px;}
.y4c{bottom:1014.742500px;}
.y126{bottom:1016.700000px;}
.ybc{bottom:1017.571500px;}
.y223{bottom:1025.188500px;}
.yc0{bottom:1025.790000px;}
.yf7{bottom:1031.151000px;}
.y19{bottom:1032.600000px;}
.ybb{bottom:1034.008500px;}
.y4b{bottom:1035.634500px;}
.y1ec{bottom:1037.113500px;}
.y125{bottom:1042.075500px;}
.ybf{bottom:1042.228500px;}
.y222{bottom:1044.339000px;}
.ybd{bottom:1050.447000px;}
.yf6{bottom:1052.043000px;}
.y4a{bottom:1056.526500px;}
.y1eb{bottom:1062.489000px;}
.y221{bottom:1063.489500px;}
.yc3{bottom:1066.885500px;}
.y18{bottom:1071.424500px;}
.yf5{bottom:1072.935000px;}
.y49{bottom:1077.417000px;}
.y220{bottom:1082.640000px;}
.yc2{bottom:1083.324000px;}
.yf4{bottom:1093.825500px;}
.y48{bottom:1098.309000px;}
.y21f{bottom:1101.790500px;}
.y1ea{bottom:1102.389000px;}
.y17{bottom:1102.761000px;}
.yba{bottom:1106.965500px;}
.yf3{bottom:1114.717500px;}
.y47{bottom:1116.471000px;}
.y46{bottom:1119.201000px;}
.y21e{bottom:1120.941000px;}
.y1e9{bottom:1121.889000px;}
.y45{bottom:1140.091500px;}
.y1e8{bottom:1141.387500px;}
.yb9{bottom:1141.573500px;}
.y44{bottom:1200.196500px;}
.h6{height:33.821261px;}
.hf{height:38.734848px;}
.h2{height:39.457760px;}
.h10{height:39.488026px;}
.hb{height:42.840113px;}
.h8{height:43.038432px;}
.h3{height:43.875290px;}
.h7{height:45.094826px;}
.he{height:50.731891px;}
.ha{height:51.646464px;}
.h5{height:54.405312px;}
.hd{height:55.033871px;}
.h16{height:56.157012px;}
.h9{height:56.368391px;}
.h14{height:58.987760px;}
.h19{height:71.608848px;}
.h13{height:71.614848px;}
.h4{height:77.469696px;}
.h12{height:78.906432px;}
.h1b{height:83.605891px;}
.h1a{height:83.611891px;}
.h17{height:92.230391px;}
.h18{height:92.236391px;}
.h11{height:116.479891px;}
.h15{height:494.844000px;}
.hc{height:548.451120px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:308.295000px;}
.w2{width:585.015900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x63{left:63.951000px;}
.xcd{left:65.751000px;}
.x102{left:67.828500px;}
.x8f{left:70.615500px;}
.xaa{left:72.226500px;}
.xcb{left:73.645500px;}
.xa5{left:75.522000px;}
.xa2{left:78.690000px;}
.x7f{left:79.869000px;}
.xcf{left:85.159500px;}
.x72{left:87.468000px;}
.x62{left:88.860000px;}
.x86{left:92.127000px;}
.xa4{left:93.567000px;}
.xa7{left:94.963500px;}
.xce{left:96.046500px;}
.xa0{left:98.133000px;}
.x9e{left:100.291500px;}
.xa6{left:103.288500px;}
.x9f{left:104.371500px;}
.xa9{left:106.239000px;}
.xa8{left:107.674500px;}
.xcc{left:111.963000px;}
.xa1{left:115.489500px;}
.xa3{left:121.266000px;}
.x99{left:130.963500px;}
.x90{left:183.169500px;}
.x65{left:184.608000px;}
.x67{left:186.108000px;}
.x66{left:190.041000px;}
.x68{left:191.245500px;}
.x64{left:192.354000px;}
.x6a{left:195.831000px;}
.x73{left:197.425500px;}
.x92{left:198.468000px;}
.x6b{left:201.103500px;}
.x74{left:204.123000px;}
.x91{left:210.855000px;}
.x69{left:215.064000px;}
.x6c{left:217.195500px;}
.x87{left:218.352000px;}
.x88{left:222.051000px;}
.x80{left:223.684500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x89{left:256.071000px;}
.x75{left:258.760500px;}
.x81{left:261.793500px;}
.x6d{left:262.822500px;}
.xea{left:264.267000px;}
.xe8{left:267.435000px;}
.x3{left:269.914500px;}
.xf3{left:272.979000px;}
.xf5{left:275.056500px;}
.xf4{left:278.022000px;}
.xed{left:280.227000px;}
.x5{left:281.479500px;}
.xec{left:283.708500px;}
.xe3{left:287.725500px;}
.x5b{left:289.779000px;}
.x41{left:291.987000px;}
.xee{left:293.116500px;}
.xd3{left:294.252000px;}
.xef{left:296.419500px;}
.xf6{left:298.371000px;}
.xf1{left:300.315000px;}
.x26{left:301.921500px;}
.x9b{left:303.202500px;}
.x5c{left:304.723500px;}
.x42{left:306.931500px;}
.x5d{left:308.385000px;}
.xe9{left:310.011000px;}
.xf7{left:313.992000px;}
.xab{left:315.057000px;}
.x27{left:316.864500px;}
.xf2{left:319.191000px;}
.x28{left:320.676000px;}
.x5e{left:323.329500px;}
.xf0{left:328.182000px;}
.xac{left:330.000000px;}
.x29{left:335.619000px;}
.x1e{left:340.801500px;}
.x97{left:345.694500px;}
.xb6{left:349.441500px;}
.x45{left:351.937500px;}
.x1f{left:355.746000px;}
.x98{left:360.639000px;}
.xfd{left:361.978500px;}
.xb3{left:364.861500px;}
.x46{left:366.880500px;}
.xb7{left:368.196000px;}
.xb4{left:379.806000px;}
.x47{left:382.746000px;}
.xc0{left:385.380000px;}
.x32{left:387.264000px;}
.xc4{left:392.652000px;}
.x4f{left:394.545000px;}
.x48{left:397.690500px;}
.x3d{left:400.479000px;}
.x1c{left:402.472500px;}
.xc1{left:404.092500px;}
.xb8{left:405.705000px;}
.xdc{left:407.437500px;}
.x50{left:409.489500px;}
.x51{left:413.299500px;}
.x3e{left:415.423500px;}
.x1d{left:417.417000px;}
.xc2{left:419.037000px;}
.xb9{left:420.649500px;}
.xdd{left:422.382000px;}
.x5f{left:423.558000px;}
.xc{left:427.122000px;}
.x52{left:428.244000px;}
.x96{left:430.050000px;}
.x43{left:432.823500px;}
.xd{left:434.593500px;}
.x2c{left:436.855500px;}
.xe{left:438.255000px;}
.x9c{left:440.335500px;}
.xc3{left:441.520500px;}
.xb5{left:443.208000px;}
.xf{left:445.726500px;}
.x44{left:447.768000px;}
.x3a{left:449.344500px;}
.x2d{left:451.800000px;}
.x2e{left:455.550000px;}
.xfa{left:457.408500px;}
.x6{left:460.924500px;}
.xba{left:461.970000px;}
.x5a{left:463.284000px;}
.x3b{left:464.577000px;}
.xbb{left:465.780000px;}
.x7{left:467.350500px;}
.x2f{left:470.494500px;}
.x3c{left:472.048500px;}
.x39{left:473.634000px;}
.x8a{left:474.814500px;}
.xfb{left:476.055000px;}
.x9a{left:477.423000px;}
.x76{left:479.595000px;}
.xbc{left:480.724500px;}
.x12{left:482.355000px;}
.xbd{left:484.534500px;}
.x1a{left:486.432000px;}
.x83{left:488.155500px;}
.x8{left:489.204000px;}
.xd2{left:490.530000px;}
.xc5{left:492.502500px;}
.x1b{left:493.903500px;}
.x9{left:495.630000px;}
.x94{left:497.826000px;}
.x82{left:499.144500px;}
.xbe{left:503.289000px;}
.x77{left:506.367000px;}
.x20{left:509.425500px;}
.x95{left:512.770500px;}
.xc6{left:514.533000px;}
.xfe{left:515.649000px;}
.xbf{left:518.233500px;}
.x101{left:519.711000px;}
.xeb{left:528.018000px;}
.xe6{left:531.276000px;}
.x49{left:535.494000px;}
.x37{left:540.067500px;}
.x55{left:543.916500px;}
.xe7{left:546.220500px;}
.x4a{left:550.438500px;}
.x3f{left:552.204000px;}
.x38{left:555.012000px;}
.x53{left:558.622500px;}
.x93{left:563.467500px;}
.x40{left:567.147000px;}
.xa{left:570.814500px;}
.x54{left:573.567000px;}
.xb{left:577.240500px;}
.x60{left:579.174091px;}
.xad{left:580.936500px;}
.x33{left:582.741000px;}
.xae{left:595.881000px;}
.x34{left:597.685500px;}
.xfc{left:602.697000px;}
.x9d{left:608.022000px;}
.xc8{left:615.688500px;}
.x6e{left:618.846000px;}
.x8b{left:619.869000px;}
.x8e{left:621.058500px;}
.x7b{left:622.336500px;}
.xc7{left:623.529000px;}
.x85{left:626.041500px;}
.x84{left:629.275500px;}
.x7d{left:630.943500px;}
.x70{left:631.953000px;}
.x78{left:633.304500px;}
.x8c{left:634.635000px;}
.x2a{left:638.487000px;}
.x8d{left:639.591000px;}
.x79{left:640.627500px;}
.x21{left:643.657500px;}
.x7c{left:645.603000px;}
.x7a{left:646.915500px;}
.x6f{left:648.300000px;}
.xaf{left:652.362000px;}
.x2b{left:653.431500px;}
.x71{left:655.758000px;}
.xde{left:656.797500px;}
.x22{left:658.600500px;}
.xb1{left:660.420000px;}
.xb0{left:667.305000px;}
.xdf{left:671.742000px;}
.xb2{left:675.364500px;}
.x4b{left:676.425000px;}
.x13{left:684.232500px;}
.xd0{left:685.756500px;}
.x30{left:688.042500px;}
.x4c{left:691.369500px;}
.x14{left:694.401000px;}
.x7e{left:697.996500px;}
.xd1{left:700.701000px;}
.x31{left:702.987000px;}
.xe0{left:706.440000px;}
.x58{left:708.315000px;}
.xf8{left:710.155500px;}
.xff{left:713.056500px;}
.xd5{left:716.640000px;}
.xd6{left:720.301500px;}
.x59{left:723.259500px;}
.xd8{left:726.061500px;}
.xf9{left:728.910000px;}
.xd7{left:735.246000px;}
.xe1{left:736.777500px;}
.x103{left:738.495000px;}
.xca{left:739.807500px;}
.xd9{left:741.006000px;}
.xc9{left:743.607000px;}
.x100{left:748.986000px;}
.xe2{left:751.720500px;}
.x56{left:754.009500px;}
.x18{left:760.059000px;}
.x19{left:767.530500px;}
.x57{left:768.952500px;}
.xda{left:789.211500px;}
.x35{left:790.618500px;}
.x15{left:792.450000px;}
.x23{left:795.651000px;}
.x4d{left:798.694500px;}
.x16{left:799.923000px;}
.xdb{left:804.156000px;}
.x36{left:805.561500px;}
.x17{left:806.574000px;}
.x24{left:810.594000px;}
.x4e{left:813.637500px;}
.xd4{left:816.951000px;}
.x25{left:817.977000px;}
.xe4{left:819.087000px;}
.x10{left:824.770500px;}
.x61{left:830.923500px;}
.x11{left:832.243500px;}
.xe5{left:834.031500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.109333pt;}
.v7{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:29.226667pt;}
.v5{vertical-align:31.882667pt;}
.v4{vertical-align:58.442667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000711pt;}
.ls14{letter-spacing:0.002038pt;}
.ls3{letter-spacing:10.626533pt;}
.ls12{letter-spacing:11.696501pt;}
.lsd{letter-spacing:11.757864pt;}
.ls17{letter-spacing:11.770021pt;}
.ls13{letter-spacing:11.893556pt;}
.ls8{letter-spacing:11.949329pt;}
.lse{letter-spacing:11.954133pt;}
.lsc{letter-spacing:11.959467pt;}
.ls15{letter-spacing:11.961718pt;}
.ls1c{letter-spacing:11.991467pt;}
.ls11{letter-spacing:11.996607pt;}
.ls10{letter-spacing:12.099001pt;}
.ls1b{letter-spacing:12.104179pt;}
.lsf{letter-spacing:12.167124pt;}
.ls5{letter-spacing:13.000751pt;}
.lsa{letter-spacing:13.281067pt;}
.ls6{letter-spacing:13.284237pt;}
.ls1a{letter-spacing:13.540225pt;}
.ls19{letter-spacing:13.848722pt;}
.ls16{letter-spacing:14.993820pt;}
.ls0{letter-spacing:51.035733pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.lsb{letter-spacing:185.993239pt;}
.ls9{letter-spacing:217.179200pt;}
.ls7{letter-spacing:244.383906pt;}
.ws56{word-spacing:-13.283467pt;}
.ws59{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws77{word-spacing:-2.869229pt;}
.ws90{word-spacing:-2.762961pt;}
.ws1b{word-spacing:-2.550426pt;}
.wsfc{word-spacing:-2.391040pt;}
.ws4b{word-spacing:-2.231622pt;}
.wsbc{word-spacing:-2.056294pt;}
.ws3b{word-spacing:-2.019087pt;}
.wsbd{word-spacing:-2.008474pt;}
.ws9e{word-spacing:-1.753418pt;}
.wsd5{word-spacing:-1.673728pt;}
.ws72{word-spacing:-1.647150pt;}
.ws2c{word-spacing:-1.594016pt;}
.ws83{word-spacing:-1.487748pt;}
.ws88{word-spacing:-1.434614pt;}
.ws38{word-spacing:-1.381481pt;}
.wsb1{word-spacing:-1.275213pt;}
.ws48{word-spacing:-1.196154pt;}
.ws47{word-spacing:-1.181960pt;}
.ws46{word-spacing:-1.181646pt;}
.ws45{word-spacing:-1.168945pt;}
.ws3f{word-spacing:-1.115811pt;}
.ws2f{word-spacing:-1.062677pt;}
.ws5d{word-spacing:-0.956410pt;}
.ws7e{word-spacing:-0.903276pt;}
.ws93{word-spacing:-0.850142pt;}
.ws81{word-spacing:-0.743874pt;}
.ws25{word-spacing:-0.637606pt;}
.ws7d{word-spacing:-0.584473pt;}
.wsf7{word-spacing:-0.573850pt;}
.wsa9{word-spacing:-0.531339pt;}
.ws86{word-spacing:-0.478205pt;}
.wsd2{word-spacing:-0.430387pt;}
.ws5e{word-spacing:-0.425071pt;}
.wse1{word-spacing:-0.382566pt;}
.ws51{word-spacing:-0.371937pt;}
.ws108{word-spacing:-0.334746pt;}
.ws43{word-spacing:-0.318803pt;}
.ws44{word-spacing:-0.314434pt;}
.wsb7{word-spacing:-0.286925pt;}
.wsb{word-spacing:-0.265669pt;}
.wse2{word-spacing:-0.239104pt;}
.ws9{word-spacing:-0.212535pt;}
.ws8e{word-spacing:-0.191283pt;}
.ws11{word-spacing:-0.159402pt;}
.wsb2{word-spacing:-0.143462pt;}
.wsc{word-spacing:-0.106268pt;}
.ws5a{word-spacing:-0.095642pt;}
.ws16{word-spacing:-0.053134pt;}
.ws63{word-spacing:-0.047821pt;}
.wsd7{word-spacing:-0.020343pt;}
.wsd0{word-spacing:-0.008269pt;}
.wscc{word-spacing:-0.007296pt;}
.wsf0{word-spacing:-0.006221pt;}
.wse3{word-spacing:-0.006050pt;}
.ws101{word-spacing:-0.004267pt;}
.wsd3{word-spacing:-0.002935pt;}
.wsfb{word-spacing:-0.002765pt;}
.ws5{word-spacing:-0.002273pt;}
.ws1d{word-spacing:-0.000270pt;}
.ws0{word-spacing:0.000000pt;}
.wsf2{word-spacing:0.000495pt;}
.ws105{word-spacing:0.001067pt;}
.ws2{word-spacing:0.002225pt;}
.ws58{word-spacing:0.047821pt;}
.wsa{word-spacing:0.053134pt;}
.ws5b{word-spacing:0.095642pt;}
.ws36{word-spacing:0.100987pt;}
.ws35{word-spacing:0.103668pt;}
.ws14{word-spacing:0.106268pt;}
.wsff{word-spacing:0.142578pt;}
.ws52{word-spacing:0.143462pt;}
.ws10{word-spacing:0.159402pt;}
.ws57{word-spacing:0.191283pt;}
.ws4c{word-spacing:0.212535pt;}
.ws8c{word-spacing:0.216679pt;}
.wsc0{word-spacing:0.239104pt;}
.ws24{word-spacing:0.265669pt;}
.wsb8{word-spacing:0.286925pt;}
.ws26{word-spacing:0.318803pt;}
.wsdb{word-spacing:0.334746pt;}
.ws4f{word-spacing:0.371937pt;}
.ws41{word-spacing:0.425071pt;}
.wscd{word-spacing:0.430387pt;}
.ws29{word-spacing:0.478205pt;}
.ws92{word-spacing:0.531339pt;}
.wse0{word-spacing:0.573850pt;}
.wsa8{word-spacing:0.584473pt;}
.ws4d{word-spacing:0.637606pt;}
.wsaf{word-spacing:0.690740pt;}
.wsf8{word-spacing:0.765133pt;}
.wsb0{word-spacing:0.797008pt;}
.wsc9{word-spacing:0.812954pt;}
.ws75{word-spacing:0.850142pt;}
.ws8f{word-spacing:0.903276pt;}
.ws27{word-spacing:0.956410pt;}
.wse4{word-spacing:0.956416pt;}
.ws2d{word-spacing:1.009543pt;}
.ws37{word-spacing:1.062677pt;}
.ws5c{word-spacing:1.115811pt;}
.wsb6{word-spacing:1.147699pt;}
.ws32{word-spacing:1.168945pt;}
.wsec{word-spacing:1.198996pt;}
.ws12{word-spacing:1.222079pt;}
.wsfd{word-spacing:1.243341pt;}
.ws13{word-spacing:1.275213pt;}
.ws71{word-spacing:1.328347pt;}
.ws5f{word-spacing:1.381481pt;}
.ws89{word-spacing:1.434614pt;}
.ws8a{word-spacing:1.437656pt;}
.wsf5{word-spacing:1.482445pt;}
.ws34{word-spacing:1.487748pt;}
.ws21{word-spacing:1.540882pt;}
.wsee{word-spacing:1.625907pt;}
.ws1a{word-spacing:1.647150pt;}
.ws87{word-spacing:1.700284pt;}
.ws8d{word-spacing:1.753418pt;}
.ws8b{word-spacing:1.849596pt;}
.ws30{word-spacing:1.859685pt;}
.ws3d{word-spacing:1.912819pt;}
.wse5{word-spacing:1.912832pt;}
.wse6{word-spacing:1.960653pt;}
.wsea{word-spacing:2.008474pt;}
.ws106{word-spacing:2.056294pt;}
.ws91{word-spacing:2.072221pt;}
.ws31{word-spacing:2.125355pt;}
.ws33{word-spacing:2.178489pt;}
.wsf3{word-spacing:2.199757pt;}
.ws4{word-spacing:2.231335pt;}
.ws3e{word-spacing:2.231622pt;}
.wsb5{word-spacing:2.337890pt;}
.wse7{word-spacing:2.391040pt;}
.wsd{word-spacing:2.444158pt;}
.ws54{word-spacing:2.497292pt;}
.ws7{word-spacing:2.550432pt;}
.ws94{word-spacing:2.603559pt;}
.wsce{word-spacing:2.630144pt;}
.wsb3{word-spacing:2.656693pt;}
.wsef{word-spacing:2.677965pt;}
.ws55{word-spacing:2.709827pt;}
.ws102{word-spacing:2.725786pt;}
.wsd9{word-spacing:2.773606pt;}
.ws2b{word-spacing:2.816095pt;}
.wsdd{word-spacing:2.821427pt;}
.wsdc{word-spacing:2.847113pt;}
.wsda{word-spacing:2.861670pt;}
.wsf9{word-spacing:2.861696pt;}
.wse8{word-spacing:2.864674pt;}
.ws107{word-spacing:2.865161pt;}
.ws103{word-spacing:2.866458pt;}
.wse9{word-spacing:2.866739pt;}
.ws104{word-spacing:2.866850pt;}
.wsc7{word-spacing:2.867430pt;}
.wsd8{word-spacing:2.868011pt;}
.wsf1{word-spacing:2.868215pt;}
.wsad{word-spacing:2.869229pt;}
.wsc8{word-spacing:2.869248pt;}
.wsbb{word-spacing:2.905504pt;}
.ws84{word-spacing:2.922363pt;}
.ws100{word-spacing:2.944503pt;}
.wsba{word-spacing:2.964890pt;}
.ws1f{word-spacing:2.975497pt;}
.ws20{word-spacing:3.028630pt;}
.wsed{word-spacing:3.060531pt;}
.wsd1{word-spacing:3.108352pt;}
.ws15{word-spacing:3.120651pt;}
.wsae{word-spacing:3.134898pt;}
.ws60{word-spacing:3.188032pt;}
.wsac{word-spacing:3.241166pt;}
.wse{word-spacing:3.294300pt;}
.ws8{word-spacing:3.347434pt;}
.ws76{word-spacing:3.400567pt;}
.ws4e{word-spacing:3.453701pt;}
.ws42{word-spacing:3.506835pt;}
.wsfa{word-spacing:3.538739pt;}
.ws49{word-spacing:3.559969pt;}
.wsca{word-spacing:3.634381pt;}
.wseb{word-spacing:3.682202pt;}
.ws4a{word-spacing:3.772505pt;}
.wsbf{word-spacing:3.777843pt;}
.ws17{word-spacing:3.825664pt;}
.wsd6{word-spacing:3.873485pt;}
.ws7f{word-spacing:3.931906pt;}
.wsaa{word-spacing:4.038174pt;}
.ws2e{word-spacing:4.197575pt;}
.wsdf{word-spacing:4.256051pt;}
.ws18{word-spacing:4.303843pt;}
.wscf{word-spacing:4.351693pt;}
.ws61{word-spacing:4.410111pt;}
.ws73{word-spacing:4.569513pt;}
.ws62{word-spacing:4.728914pt;}
.ws74{word-spacing:4.782048pt;}
.ws3c{word-spacing:4.835182pt;}
.ws50{word-spacing:4.888316pt;}
.wscb{word-spacing:4.925542pt;}
.ws2a{word-spacing:5.047717pt;}
.ws22{word-spacing:5.100851pt;}
.wsa7{word-spacing:5.207119pt;}
.ws3a{word-spacing:5.313387pt;}
.ws39{word-spacing:5.366521pt;}
.ws28{word-spacing:5.419654pt;}
.ws19{word-spacing:5.472788pt;}
.wsde{word-spacing:5.499392pt;}
.ws53{word-spacing:5.525922pt;}
.wsf{word-spacing:5.738458pt;}
.ws85{word-spacing:5.791591pt;}
.wsd4{word-spacing:5.834138pt;}
.ws23{word-spacing:5.844725pt;}
.wsab{word-spacing:6.004127pt;}
.wsb4{word-spacing:6.057261pt;}
.ws82{word-spacing:6.110395pt;}
.ws1c{word-spacing:6.376064pt;}
.ws80{word-spacing:6.535466pt;}
.wsfe{word-spacing:6.934016pt;}
.ws40{word-spacing:7.385607pt;}
.wsf6{word-spacing:7.671654pt;}
.wsb9{word-spacing:8.990326pt;}
.wsf4{word-spacing:10.472755pt;}
.ws1{word-spacing:25.293814pt;}
.ws78{word-spacing:135.193105pt;}
.wsc1{word-spacing:139.301990pt;}
.wsbe{word-spacing:167.277158pt;}
.ws64{word-spacing:196.128905pt;}
.wsc5{word-spacing:247.185715pt;}
.wsc3{word-spacing:248.237773pt;}
.ws69{word-spacing:265.456798pt;}
.ws70{word-spacing:273.639413pt;}
.wsc6{word-spacing:282.764390pt;}
.ws6a{word-spacing:285.381998pt;}
.ws66{word-spacing:296.646378pt;}
.wsc2{word-spacing:301.280768pt;}
.wsc4{word-spacing:329.206101pt;}
.ws67{word-spacing:342.128967pt;}
.ws96{word-spacing:343.032243pt;}
.ws6e{word-spacing:343.297913pt;}
.ws79{word-spacing:344.070656pt;}
.ws7a{word-spacing:346.509517pt;}
.ws7c{word-spacing:348.900557pt;}
.ws7b{word-spacing:348.948378pt;}
.ws6c{word-spacing:354.509158pt;}
.ws97{word-spacing:362.957443pt;}
.ws9a{word-spacing:379.322674pt;}
.ws6b{word-spacing:384.104722pt;}
.ws6f{word-spacing:397.281921pt;}
.ws6d{word-spacing:399.672945pt;}
.wsa2{word-spacing:412.502221pt;}
.ws68{word-spacing:414.125357pt;}
.ws9d{word-spacing:420.873358pt;}
.ws99{word-spacing:425.667537pt;}
.ws65{word-spacing:427.940162pt;}
.wsa6{word-spacing:430.578483pt;}
.wsa1{word-spacing:438.086349pt;}
.wsa0{word-spacing:440.716493pt;}
.wsa3{word-spacing:453.771571pt;}
.wsa5{word-spacing:459.749171pt;}
.ws98{word-spacing:461.680167pt;}
.wsa4{word-spacing:464.339968pt;}
.ws9b{word-spacing:465.558940pt;}
.ws9f{word-spacing:466.731008pt;}
.ws9c{word-spacing:477.301524pt;}
.ws95{word-spacing:525.600209pt;}
._9{margin-left:-6.291066pt;}
._7{margin-left:-4.675792pt;}
._1{margin-left:-3.421811pt;}
._8{margin-left:-2.337896pt;}
._2{margin-left:-1.338970pt;}
._b{width:0.913905pt;}
._5{width:2.665358pt;}
._a{width:10.626800pt;}
._0{width:11.530016pt;}
._16{width:12.443948pt;}
._13{width:13.984836pt;}
._d{width:15.483225pt;}
._c{width:16.630900pt;}
._15{width:17.746711pt;}
._e{width:18.756255pt;}
._14{width:20.042091pt;}
._f{width:21.359814pt;}
._3{width:23.061099pt;}
._42{width:24.664737pt;}
._17{width:25.663658pt;}
._1a{width:27.257685pt;}
._9d{width:28.193314pt;}
._4{width:29.648896pt;}
._1b{width:30.775132pt;}
._18{width:31.944077pt;}
._40{width:33.952553pt;}
._66{width:35.312791pt;}
._10{width:36.779270pt;}
._19{width:38.628321pt;}
._6{width:48.359602pt;}
._9c{width:54.993920pt;}
._6e{width:63.745126pt;}
._68{width:94.733005pt;}
._6d{width:114.148250pt;}
._8e{width:115.678515pt;}
._96{width:117.331081pt;}
._70{width:123.521126pt;}
._84{width:126.475370pt;}
._97{width:127.479606pt;}
._6f{width:129.355264pt;}
._76{width:131.694157pt;}
._8b{width:141.129995pt;}
._83{width:148.913971pt;}
._71{width:151.209370pt;}
._6c{width:154.174259pt;}
._7c{width:158.116727pt;}
._85{width:159.530189pt;}
._72{width:169.907302pt;}
._75{width:176.963619pt;}
._94{width:177.893376pt;}
._74{width:179.721088pt;}
._6a{width:181.814682pt;}
._67{width:185.114317pt;}
._6b{width:189.800755pt;}
._69{width:193.913344pt;}
._80{width:200.916343pt;}
._7a{width:204.556220pt;}
._78{width:207.186364pt;}
._77{width:211.033190pt;}
._88{width:217.935398pt;}
._8f{width:219.640934pt;}
._38{width:221.314662pt;}
._93{width:225.379430pt;}
._8a{width:229.901244pt;}
._44{width:233.268298pt;}
._7d{width:237.180522pt;}
._39{width:238.615146pt;}
._91{width:245.511987pt;}
._4f{width:247.019346pt;}
._2d{width:249.364310pt;}
._89{width:251.250483pt;}
._86{width:256.537430pt;}
._87{width:257.446025pt;}
._8c{width:259.714765pt;}
._90{width:261.531955pt;}
._99{width:263.875174pt;}
._98{width:264.810310pt;}
._1e{width:269.735846pt;}
._4d{width:276.041060pt;}
._9a{width:277.052435pt;}
._81{width:279.703859pt;}
._3c{width:291.159689pt;}
._3f{width:292.211747pt;}
._31{width:297.854601pt;}
._2f{width:302.301935pt;}
._9b{width:303.853363pt;}
._3d{width:312.439945pt;}
._8d{width:315.186893pt;}
._45{width:317.432342pt;}
._35{width:319.134857pt;}
._95{width:320.781926pt;}
._33{width:321.765001pt;}
._79{width:325.420544pt;}
._3a{width:328.938121pt;}
._73{width:330.441728pt;}
._3b{width:332.285577pt;}
._7b{width:336.514970pt;}
._30{width:337.567027pt;}
._82{width:340.553079pt;}
._3e{width:342.136662pt;}
._92{width:354.304307pt;}
._22{width:355.253033pt;}
._2e{width:356.950333pt;}
._36{width:358.416896pt;}
._34{width:360.903578pt;}
._2a{width:362.638640pt;}
._53{width:363.552539pt;}
._32{width:370.350810pt;}
._58{width:372.752490pt;}
._7e{width:374.293402pt;}
._24{width:378.897603pt;}
._5c{width:380.728047pt;}
._21{width:383.626517pt;}
._37{width:385.626931pt;}
._1f{width:386.548880pt;}
._43{width:391.543463pt;}
._4e{width:392.871810pt;}
._29{width:398.238331pt;}
._23{width:401.054426pt;}
._5a{width:402.103945pt;}
._59{width:405.329101pt;}
._55{width:406.543207pt;}
._7f{width:407.729647pt;}
._52{width:411.436773pt;}
._60{width:417.122002pt;}
._20{width:421.404732pt;}
._65{width:422.916509pt;}
._27{width:424.698996pt;}
._2b{width:427.185665pt;}
._48{width:430.543686pt;}
._50{width:432.031470pt;}
._5e{width:436.439279pt;}
._62{width:438.708019pt;}
._51{width:440.267219pt;}
._25{width:441.234263pt;}
._26{width:443.667798pt;}
._4a{width:445.208669pt;}
._2c{width:446.590149pt;}
._61{width:457.958639pt;}
._64{width:460.253914pt;}
._28{width:461.308230pt;}
._5b{width:463.075465pt;}
._46{width:464.177459pt;}
._47{width:468.162499pt;}
._5d{width:469.313331pt;}
._4b{width:471.563067pt;}
._1d{width:491.406541pt;}
._1c{width:504.413798pt;}
._54{width:518.425293pt;}
._57{width:519.764275pt;}
._63{width:524.907759pt;}
._4c{width:532.348210pt;}
._5f{width:542.553635pt;}
._56{width:554.221910pt;}
._49{width:572.942484pt;}
._11{width:1703.202400pt;}
._41{width:2296.813067pt;}
._12{width:2318.066400pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs7{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:4.334614pt;}
.y158{bottom:4.852412pt;}
.y43{bottom:40.818667pt;}
.y156{bottom:88.640000pt;}
.y16{bottom:89.120000pt;}
.y172{bottom:92.494667pt;}
.y24f{bottom:94.188000pt;}
.y42{bottom:95.557333pt;}
.y1be{bottom:98.624000pt;}
.y124{bottom:100.477333pt;}
.y1cb{bottom:101.846667pt;}
.y77{bottom:103.473333pt;}
.y15{bottom:105.020000pt;}
.y155{bottom:107.209333pt;}
.y21d{bottom:109.082667pt;}
.y171{bottom:111.065333pt;}
.y24e{bottom:111.210667pt;}
.y1e7{bottom:111.404000pt;}
.y41{bottom:114.128000pt;}
.y1bd{bottom:117.193333pt;}
.y123{bottom:119.046667pt;}
.y1ca{bottom:120.417333pt;}
.y14{bottom:120.920000pt;}
.y76{bottom:122.042667pt;}
.y8b{bottom:122.428000pt;}
.y1c0{bottom:124.041333pt;}
.y154{bottom:125.780000pt;}
.y21c{bottom:126.106667pt;}
.y24d{bottom:128.233333pt;}
.y1e6{bottom:128.736000pt;}
.yb8{bottom:128.853333pt;}
.y170{bottom:129.636000pt;}
.yf2{bottom:130.185333pt;}
.y40{bottom:132.698667pt;}
.y13{bottom:136.820000pt;}
.y122{bottom:137.617333pt;}
.y1c9{bottom:138.986667pt;}
.y1bc{bottom:139.749333pt;}
.y75{bottom:140.613333pt;}
.y8a{bottom:140.998667pt;}
.y1bf{bottom:141.137333pt;}
.y21b{bottom:143.129333pt;}
.yb7{bottom:143.465333pt;}
.y153{bottom:144.350667pt;}
.y24c{bottom:145.256000pt;}
.y1e5{bottom:146.068000pt;}
.y16f{bottom:148.205333pt;}
.yf1{bottom:148.756000pt;}
.y3f{bottom:151.268000pt;}
.y12{bottom:152.721333pt;}
.y121{bottom:156.188000pt;}
.y192{bottom:156.454667pt;}
.y1c8{bottom:157.557333pt;}
.yb6{bottom:158.077333pt;}
.y74{bottom:159.184000pt;}
.y89{bottom:159.568000pt;}
.y21a{bottom:160.152000pt;}
.y24b{bottom:162.278667pt;}
.y152{bottom:162.920000pt;}
.y1e4{bottom:163.400000pt;}
.y16e{bottom:166.776000pt;}
.yf0{bottom:167.326667pt;}
.y3e{bottom:167.412000pt;}
.y11{bottom:168.621333pt;}
.y3d{bottom:169.838667pt;}
.y1bb{bottom:171.164000pt;}
.y191{bottom:172.394667pt;}
.yb5{bottom:172.689333pt;}
.y120{bottom:174.757333pt;}
.y1c7{bottom:176.128000pt;}
.y219{bottom:177.174667pt;}
.y73{bottom:177.753333pt;}
.y88{bottom:178.138667pt;}
.y24a{bottom:179.301333pt;}
.y1e3{bottom:180.733333pt;}
.y151{bottom:181.490667pt;}
.y10{bottom:184.521333pt;}
.y16d{bottom:185.346667pt;}
.yef{bottom:185.897333pt;}
.yb4{bottom:187.301333pt;}
.y190{bottom:188.336000pt;}
.y3c{bottom:188.409333pt;}
.y1ba{bottom:189.734667pt;}
.y11f{bottom:193.328000pt;}
.y218{bottom:194.197333pt;}
.y1c6{bottom:194.698667pt;}
.y72{bottom:196.324000pt;}
.ya0{bottom:196.709333pt;}
.y1e2{bottom:198.065333pt;}
.y150{bottom:200.061333pt;}
.yf{bottom:200.422667pt;}
.y87{bottom:200.694667pt;}
.yae{bottom:201.913333pt;}
.y16c{bottom:203.916000pt;}
.y18f{bottom:204.276000pt;}
.yee{bottom:204.466667pt;}
.y3b{bottom:206.978667pt;}
.y1b9{bottom:208.305333pt;}
.y217{bottom:211.220000pt;}
.y11e{bottom:211.898667pt;}
.y1c5{bottom:213.268000pt;}
.y249{bottom:213.346667pt;}
.y71{bottom:214.894667pt;}
.y9f{bottom:215.280000pt;}
.y1e1{bottom:215.397333pt;}
.yb3{bottom:216.524000pt;}
.y14f{bottom:218.632000pt;}
.y18e{bottom:220.216000pt;}
.y16b{bottom:222.486667pt;}
.yed{bottom:223.037333pt;}
.ye{bottom:224.293333pt;}
.y1b8{bottom:226.874667pt;}
.y3a{bottom:229.534667pt;}
.y248{bottom:230.369333pt;}
.y11d{bottom:230.468000pt;}
.yb2{bottom:231.136000pt;}
.y86{bottom:232.109333pt;}
.y216{bottom:232.228000pt;}
.y1e0{bottom:232.729333pt;}
.y70{bottom:233.464000pt;}
.y9e{bottom:233.849333pt;}
.y1c4{bottom:235.824000pt;}
.y18d{bottom:236.156000pt;}
.y14e{bottom:237.201333pt;}
.yd{bottom:240.193333pt;}
.y16a{bottom:241.057333pt;}
.yec{bottom:241.608000pt;}
.y1b7{bottom:245.445333pt;}
.yb1{bottom:245.748000pt;}
.y247{bottom:247.392000pt;}
.y11c{bottom:249.038667pt;}
.y1df{bottom:250.061333pt;}
.y85{bottom:250.680000pt;}
.y6f{bottom:252.034667pt;}
.y18c{bottom:252.096000pt;}
.y9d{bottom:252.420000pt;}
.y14d{bottom:255.772000pt;}
.yc{bottom:256.093333pt;}
.y169{bottom:259.626667pt;}
.yeb{bottom:260.177333pt;}
.yb0{bottom:260.360000pt;}
.y1b6{bottom:264.016000pt;}
.y246{bottom:264.414667pt;}
.y1de{bottom:267.393333pt;}
.y1c3{bottom:267.493333pt;}
.y11b{bottom:267.609333pt;}
.y18b{bottom:268.036000pt;}
.y84{bottom:269.250667pt;}
.y6e{bottom:270.605333pt;}
.y9c{bottom:270.990667pt;}
.yb{bottom:271.994667pt;}
.y14c{bottom:274.342667pt;}
.yaf{bottom:274.972000pt;}
.y215{bottom:277.128000pt;}
.y168{bottom:278.197333pt;}
.yea{bottom:278.748000pt;}
.y245{bottom:281.437333pt;}
.y1b5{bottom:282.585333pt;}
.y18a{bottom:283.977333pt;}
.y1c2{bottom:284.588000pt;}
.y11a{bottom:286.178667pt;}
.y83{bottom:287.820000pt;}
.ya{bottom:287.894667pt;}
.y6d{bottom:289.176000pt;}
.y9b{bottom:289.560000pt;}
.y214{bottom:291.740000pt;}
.yad{bottom:295.986667pt;}
.y167{bottom:296.768000pt;}
.ye9{bottom:297.318667pt;}
.y1dd{bottom:298.186667pt;}
.y244{bottom:298.460000pt;}
.y189{bottom:299.917333pt;}
.y39{bottom:299.945333pt;}
.y1b4{bottom:301.156000pt;}
.y1c1{bottom:301.684000pt;}
.y9{bottom:303.794667pt;}
.y119{bottom:304.749333pt;}
.y213{bottom:306.352000pt;}
.y82{bottom:306.390667pt;}
.y6c{bottom:307.745333pt;}
.y9a{bottom:308.130667pt;}
.y14b{bottom:313.661333pt;}
.y166{bottom:315.338667pt;}
.y243{bottom:315.482667pt;}
.y188{bottom:315.857333pt;}
.ye8{bottom:315.888000pt;}
.y38{bottom:318.514667pt;}
.y1dc{bottom:319.504000pt;}
.y1b3{bottom:319.726667pt;}
.y212{bottom:320.964000pt;}
.y118{bottom:323.320000pt;}
.y81{bottom:324.961333pt;}
.y8{bottom:325.009333pt;}
.y6b{bottom:326.316000pt;}
.yac{bottom:326.749333pt;}
.y211{bottom:328.269333pt;}
.y99{bottom:330.685333pt;}
.y14a{bottom:330.902667pt;}
.y187{bottom:331.797333pt;}
.y242{bottom:332.506667pt;}
.y165{bottom:333.908000pt;}
.ye7{bottom:334.458667pt;}
.y1b2{bottom:338.297333pt;}
.y186{bottom:339.768000pt;}
.y7{bottom:340.909333pt;}
.y117{bottom:341.890667pt;}
.y80{bottom:343.530667pt;}
.yab{bottom:343.845333pt;}
.y6a{bottom:344.886667pt;}
.y149{bottom:346.070667pt;}
.y241{bottom:349.529333pt;}
.y210{bottom:350.186667pt;}
.y164{bottom:352.478667pt;}
.y37{bottom:353.025333pt;}
.ye6{bottom:353.029333pt;}
.y1db{bottom:354.014667pt;}
.y6{bottom:356.809333pt;}
.y1b1{bottom:356.866667pt;}
.y116{bottom:360.460000pt;}
.y148{bottom:360.681333pt;}
.yaa{bottom:360.941333pt;}
.y7f{bottom:362.101333pt;}
.y69{bottom:363.456000pt;}
.y185{bottom:363.677333pt;}
.y20f{bottom:364.798667pt;}
.y98{bottom:365.196000pt;}
.y240{bottom:366.552000pt;}
.y163{bottom:371.049333pt;}
.y1da{bottom:371.346667pt;}
.y36{bottom:371.596000pt;}
.ye5{bottom:371.598667pt;}
.y20e{bottom:372.105333pt;}
.y5{bottom:372.710667pt;}
.y147{bottom:375.293333pt;}
.y1b0{bottom:375.437333pt;}
.y115{bottom:379.030667pt;}
.y184{bottom:379.618667pt;}
.y7e{bottom:380.672000pt;}
.y68{bottom:382.026667pt;}
.y23f{bottom:383.574667pt;}
.y97{bottom:383.766667pt;}
.y1d9{bottom:388.678667pt;}
.y162{bottom:389.618667pt;}
.y146{bottom:389.905333pt;}
.y35{bottom:390.166667pt;}
.ye4{bottom:390.169333pt;}
.ya9{bottom:393.842667pt;}
.y4{bottom:393.924000pt;}
.y1af{bottom:394.008000pt;}
.y20d{bottom:394.022667pt;}
.y183{bottom:395.558667pt;}
.y7d{bottom:399.241333pt;}
.y67{bottom:400.597333pt;}
.y96{bottom:402.337333pt;}
.y145{bottom:404.517333pt;}
.y161{bottom:408.189333pt;}
.y20c{bottom:408.634667pt;}
.y34{bottom:408.736000pt;}
.ye3{bottom:408.740000pt;}
.y3{bottom:409.824000pt;}
.y182{bottom:411.498667pt;}
.ya8{bottom:412.413333pt;}
.y1d8{bottom:413.981333pt;}
.y23e{bottom:417.620000pt;}
.y7c{bottom:417.812000pt;}
.y144{bottom:419.129333pt;}
.y66{bottom:419.166667pt;}
.y95{bottom:420.906667pt;}
.y20b{bottom:423.246667pt;}
.y114{bottom:424.329333pt;}
.y2{bottom:425.725333pt;}
.y160{bottom:426.760000pt;}
.y33{bottom:427.306667pt;}
.ye2{bottom:427.309333pt;}
.y181{bottom:427.438667pt;}
.ya7{bottom:430.982667pt;}
.y1d7{bottom:431.313333pt;}
.y143{bottom:433.741333pt;}
.y23d{bottom:434.642667pt;}
.y1ae{bottom:436.250667pt;}
.y7b{bottom:436.382667pt;}
.y65{bottom:437.737333pt;}
.y20a{bottom:437.858667pt;}
.y94{bottom:439.477333pt;}
.y113{bottom:440.269333pt;}
.y1{bottom:441.625333pt;}
.y180{bottom:443.378667pt;}
.y15f{bottom:445.329333pt;}
.y32{bottom:445.877333pt;}
.ye1{bottom:445.880000pt;}
.y142{bottom:448.353333pt;}
.ya6{bottom:449.553333pt;}
.y1ad{bottom:450.862667pt;}
.y23c{bottom:451.665333pt;}
.y209{bottom:452.470667pt;}
.y7a{bottom:454.953333pt;}
.y112{bottom:456.209333pt;}
.y64{bottom:456.308000pt;}
.y1d6{bottom:456.616000pt;}
.y93{bottom:458.048000pt;}
.y17f{bottom:459.318667pt;}
.y208{bottom:459.776000pt;}
.y141{bottom:462.965333pt;}
.y15e{bottom:463.900000pt;}
.y31{bottom:464.446667pt;}
.y1ac{bottom:465.474667pt;}
.ya5{bottom:468.124000pt;}
.y23b{bottom:468.688000pt;}
.y111{bottom:472.149333pt;}
.y79{bottom:473.522667pt;}
.y1d5{bottom:473.948000pt;}
.y63{bottom:474.877333pt;}
.y17e{bottom:475.260000pt;}
.y92{bottom:476.617333pt;}
.y140{bottom:477.577333pt;}
.y1ab{bottom:480.086667pt;}
.y207{bottom:481.693333pt;}
.y15d{bottom:482.470667pt;}
.y30{bottom:483.017333pt;}
.y23a{bottom:485.710667pt;}
.y110{bottom:488.090667pt;}
.y206{bottom:489.000000pt;}
.ya4{bottom:490.678667pt;}
.ydf{bottom:490.780000pt;}
.y17d{bottom:491.200000pt;}
.y13f{bottom:492.189333pt;}
.y62{bottom:493.448000pt;}
.y1aa{bottom:494.698667pt;}
.y91{bottom:495.188000pt;}
.y78{bottom:496.078667pt;}
.y1d4{bottom:499.250667pt;}
.y15c{bottom:501.040000pt;}
.y2f{bottom:501.588000pt;}
.y239{bottom:502.733333pt;}
.y10f{bottom:504.030667pt;}
.yde{bottom:505.392000pt;}
.y13e{bottom:506.800000pt;}
.y17c{bottom:507.140000pt;}
.y1a9{bottom:509.310667pt;}
.y205{bottom:510.917333pt;}
.y61{bottom:512.018667pt;}
.y90{bottom:513.758667pt;}
.y1d3{bottom:516.582667pt;}
.y204{bottom:518.224000pt;}
.ya3{bottom:519.253333pt;}
.y238{bottom:519.756000pt;}
.y10e{bottom:519.970667pt;}
.ydd{bottom:520.004000pt;}
.y2e{bottom:520.157333pt;}
.y13d{bottom:521.412000pt;}
.y1a8{bottom:523.922667pt;}
.y17b{bottom:529.482667pt;}
.y60{bottom:530.589333pt;}
.y8f{bottom:532.329333pt;}
.y15b{bottom:532.709333pt;}
.y1d2{bottom:533.914667pt;}
.yd9{bottom:534.616000pt;}
.y10d{bottom:535.910667pt;}
.y13c{bottom:536.024000pt;}
.y237{bottom:536.778667pt;}
.y1a7{bottom:538.534667pt;}
.y2d{bottom:538.728000pt;}
.ya1{bottom:539.190667pt;}
.y203{bottom:540.141333pt;}
.ye0{bottom:541.922667pt;}
.y5f{bottom:549.158667pt;}
.yd8{bottom:549.228000pt;}
.y15a{bottom:549.805333pt;}
.y13b{bottom:550.636000pt;}
.y8e{bottom:550.898667pt;}
.y1d1{bottom:551.246667pt;}
.y10c{bottom:551.850667pt;}
.y1a6{bottom:553.146667pt;}
.y236{bottom:553.801333pt;}
.y202{bottom:554.753333pt;}
.y2c{bottom:557.298667pt;}
.y17a{bottom:558.518667pt;}
.ydc{bottom:563.840000pt;}
.y13a{bottom:565.248000pt;}
.y159{bottom:566.901333pt;}
.y5e{bottom:567.729333pt;}
.y1a5{bottom:567.757333pt;}
.y10b{bottom:567.790667pt;}
.y201{bottom:569.365333pt;}
.y8d{bottom:569.469333pt;}
.y235{bottom:570.824000pt;}
.y2b{bottom:575.869333pt;}
.y1d0{bottom:576.549333pt;}
.y200{bottom:576.670667pt;}
.ydb{bottom:578.452000pt;}
.y139{bottom:579.860000pt;}
.y1a4{bottom:582.369333pt;}
.y10a{bottom:583.732000pt;}
.y5d{bottom:586.300000pt;}
.y157{bottom:586.838667pt;}
.y234{bottom:587.846667pt;}
.y179{bottom:588.040000pt;}
.y8c{bottom:592.024000pt;}
.yda{bottom:593.064000pt;}
.y1cf{bottom:593.881333pt;}
.y2a{bottom:594.438667pt;}
.y138{bottom:594.472000pt;}
.y1a3{bottom:596.981333pt;}
.y1ff{bottom:598.589333pt;}
.y109{bottom:599.672000pt;}
.y5c{bottom:604.869333pt;}
.y1fe{bottom:605.894667pt;}
.y178{bottom:606.609333pt;}
.y137{bottom:609.084000pt;}
.y1ce{bottom:611.213333pt;}
.y1a2{bottom:611.593333pt;}
.y29{bottom:613.009333pt;}
.yd7{bottom:614.077333pt;}
.y108{bottom:615.612000pt;}
.y233{bottom:621.892000pt;}
.y5b{bottom:623.440000pt;}
.y136{bottom:623.696000pt;}
.y177{bottom:625.180000pt;}
.y1a1{bottom:626.205333pt;}
.y1fd{bottom:627.813333pt;}
.y1cd{bottom:628.546667pt;}
.yd3{bottom:628.689333pt;}
.y107{bottom:631.552000pt;}
.y28{bottom:631.580000pt;}
.y252{bottom:634.710667pt;}
.y1fc{bottom:635.118667pt;}
.y135{bottom:638.308000pt;}
.y232{bottom:638.914667pt;}
.y1a0{bottom:640.817333pt;}
.y5a{bottom:642.010667pt;}
.yd2{bottom:643.301333pt;}
.y176{bottom:643.750667pt;}
.y1cc{bottom:645.878667pt;}
.y106{bottom:647.492000pt;}
.y27{bottom:650.149333pt;}
.y251{bottom:651.733333pt;}
.y19f{bottom:655.429333pt;}
.y231{bottom:655.937333pt;}
.y1fb{bottom:657.036000pt;}
.yd1{bottom:657.913333pt;}
.y133{bottom:659.321333pt;}
.y59{bottom:660.580000pt;}
.y175{bottom:662.320000pt;}
.y105{bottom:663.433333pt;}
.y1fa{bottom:664.342667pt;}
.y132{bottom:666.626667pt;}
.y250{bottom:668.756000pt;}
.y19e{bottom:670.041333pt;}
.yd0{bottom:672.525333pt;}
.y230{bottom:672.961333pt;}
.y134{bottom:673.933333pt;}
.y26{bottom:676.690667pt;}
.y130{bottom:678.344000pt;}
.y58{bottom:679.150667pt;}
.y104{bottom:679.373333pt;}
.yd5{bottom:679.830667pt;}
.y174{bottom:680.890667pt;}
.y19d{bottom:684.653333pt;}
.y1f9{bottom:686.260000pt;}
.ycb{bottom:687.137333pt;}
.y22f{bottom:689.984000pt;}
.yd4{bottom:694.442667pt;}
.y131{bottom:694.946667pt;}
.y103{bottom:695.313333pt;}
.y57{bottom:697.721333pt;}
.y19c{bottom:699.265333pt;}
.y1f8{bottom:700.872000pt;}
.ycf{bottom:701.749333pt;}
.y173{bottom:703.446667pt;}
.y22e{bottom:707.006667pt;}
.y102{bottom:711.253333pt;}
.y25{bottom:712.262667pt;}
.y19b{bottom:713.877333pt;}
.y1f7{bottom:715.484000pt;}
.y56{bottom:716.290667pt;}
.yce{bottom:716.361333pt;}
.y1f6{bottom:722.789333pt;}
.y22d{bottom:724.029333pt;}
.y12f{bottom:725.710667pt;}
.y24{bottom:726.609333pt;}
.y101{bottom:727.193333pt;}
.y19a{bottom:728.488000pt;}
.ycd{bottom:730.972000pt;}
.y55{bottom:734.861333pt;}
.y22c{bottom:741.052000pt;}
.y12e{bottom:742.806667pt;}
.y199{bottom:743.100000pt;}
.y100{bottom:743.133333pt;}
.y23{bottom:744.813333pt;}
.ycc{bottom:745.584000pt;}
.y1f4{bottom:751.109333pt;}
.y54{bottom:753.432000pt;}
.y22{bottom:755.302667pt;}
.y22b{bottom:758.074667pt;}
.y1f3{bottom:758.416000pt;}
.yff{bottom:759.074667pt;}
.yd6{bottom:760.196000pt;}
.y198{bottom:764.114667pt;}
.y1f5{bottom:765.721333pt;}
.y53{bottom:772.002667pt;}
.y21{bottom:773.505333pt;}
.y12d{bottom:773.742667pt;}
.y22a{bottom:775.097333pt;}
.yca{bottom:781.210667pt;}
.yfe{bottom:781.416000pt;}
.y20{bottom:783.994667pt;}
.y52{bottom:790.572000pt;}
.y229{bottom:792.120000pt;}
.y197{bottom:792.220000pt;}
.y12c{bottom:792.312000pt;}
.yc7{bottom:795.822667pt;}
.y1f2{bottom:796.484000pt;}
.yfd{bottom:797.356000pt;}
.y1f{bottom:798.341333pt;}
.yfb{bottom:801.560000pt;}
.y51{bottom:809.142667pt;}
.y196{bottom:809.316000pt;}
.yc6{bottom:810.434667pt;}
.y12b{bottom:810.882667pt;}
.y1f1{bottom:813.580000pt;}
.y1e{bottom:816.545333pt;}
.yfc{bottom:819.698667pt;}
.yc8{bottom:825.045333pt;}
.y228{bottom:826.165333pt;}
.y1d{bottom:827.033333pt;}
.y50{bottom:827.713333pt;}
.y12a{bottom:829.453333pt;}
.y1f0{bottom:830.676000pt;}
.yc9{bottom:839.657333pt;}
.y1c{bottom:841.380000pt;}
.y195{bottom:842.297333pt;}
.y227{bottom:843.188000pt;}
.y4f{bottom:846.282667pt;}
.y1ef{bottom:847.772000pt;}
.y129{bottom:848.022667pt;}
.yfa{bottom:851.392000pt;}
.y1b{bottom:859.584000pt;}
.y226{bottom:860.210667pt;}
.yc5{bottom:860.672000pt;}
.y194{bottom:860.868000pt;}
.y4e{bottom:864.853333pt;}
.y128{bottom:866.593333pt;}
.yf9{bottom:868.488000pt;}
.yc4{bottom:875.284000pt;}
.y225{bottom:877.233333pt;}
.y193{bottom:879.438667pt;}
.y1ee{bottom:880.753333pt;}
.y4d{bottom:883.424000pt;}
.y127{bottom:885.164000pt;}
.ybe{bottom:889.896000pt;}
.y224{bottom:894.256000pt;}
.yc1{bottom:897.201333pt;}
.yf8{bottom:898.009333pt;}
.y1a{bottom:899.296000pt;}
.y1ed{bottom:899.324000pt;}
.y4c{bottom:901.993333pt;}
.y126{bottom:903.733333pt;}
.ybc{bottom:904.508000pt;}
.y223{bottom:911.278667pt;}
.yc0{bottom:911.813333pt;}
.yf7{bottom:916.578667pt;}
.y19{bottom:917.866667pt;}
.ybb{bottom:919.118667pt;}
.y4b{bottom:920.564000pt;}
.y1ec{bottom:921.878667pt;}
.y125{bottom:926.289333pt;}
.ybf{bottom:926.425333pt;}
.y222{bottom:928.301333pt;}
.ybd{bottom:933.730667pt;}
.yf6{bottom:935.149333pt;}
.y4a{bottom:939.134667pt;}
.y1eb{bottom:944.434667pt;}
.y221{bottom:945.324000pt;}
.yc3{bottom:948.342667pt;}
.y18{bottom:952.377333pt;}
.yf5{bottom:953.720000pt;}
.y49{bottom:957.704000pt;}
.y220{bottom:962.346667pt;}
.yc2{bottom:962.954667pt;}
.yf4{bottom:972.289333pt;}
.y48{bottom:976.274667pt;}
.y21f{bottom:979.369333pt;}
.y1ea{bottom:979.901333pt;}
.y17{bottom:980.232000pt;}
.yba{bottom:983.969333pt;}
.yf3{bottom:990.860000pt;}
.y47{bottom:992.418667pt;}
.y46{bottom:994.845333pt;}
.y21e{bottom:996.392000pt;}
.y1e9{bottom:997.234667pt;}
.y45{bottom:1013.414667pt;}
.y1e8{bottom:1014.566667pt;}
.yb9{bottom:1014.732000pt;}
.y44{bottom:1066.841333pt;}
.h6{height:30.063343pt;}
.hf{height:34.430976pt;}
.h2{height:35.073565pt;}
.h10{height:35.100467pt;}
.hb{height:38.080100pt;}
.h8{height:38.256384pt;}
.h3{height:39.000258pt;}
.h7{height:40.084290pt;}
.he{height:45.095014pt;}
.ha{height:45.907968pt;}
.h5{height:48.360277pt;}
.hd{height:48.918997pt;}
.h16{height:49.917344pt;}
.h9{height:50.105236pt;}
.h14{height:52.433565pt;}
.h19{height:63.652309pt;}
.h13{height:63.657643pt;}
.h4{height:68.861952pt;}
.h12{height:70.139051pt;}
.h1b{height:74.316348pt;}
.h1a{height:74.321681pt;}
.h17{height:81.982570pt;}
.h18{height:81.987903pt;}
.h11{height:103.537681pt;}
.h15{height:439.861333pt;}
.hc{height:487.512107pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:274.040000pt;}
.w2{width:520.014133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x63{left:56.845333pt;}
.xcd{left:58.445333pt;}
.x102{left:60.292000pt;}
.x8f{left:62.769333pt;}
.xaa{left:64.201333pt;}
.xcb{left:65.462667pt;}
.xa5{left:67.130667pt;}
.xa2{left:69.946667pt;}
.x7f{left:70.994667pt;}
.xcf{left:75.697333pt;}
.x72{left:77.749333pt;}
.x62{left:78.986667pt;}
.x86{left:81.890667pt;}
.xa4{left:83.170667pt;}
.xa7{left:84.412000pt;}
.xce{left:85.374667pt;}
.xa0{left:87.229333pt;}
.x9e{left:89.148000pt;}
.xa6{left:91.812000pt;}
.x9f{left:92.774667pt;}
.xa9{left:94.434667pt;}
.xa8{left:95.710667pt;}
.xcc{left:99.522667pt;}
.xa1{left:102.657333pt;}
.xa3{left:107.792000pt;}
.x99{left:116.412000pt;}
.x90{left:162.817333pt;}
.x65{left:164.096000pt;}
.x67{left:165.429333pt;}
.x66{left:168.925333pt;}
.x68{left:169.996000pt;}
.x64{left:170.981333pt;}
.x6a{left:174.072000pt;}
.x73{left:175.489333pt;}
.x92{left:176.416000pt;}
.x6b{left:178.758667pt;}
.x74{left:181.442667pt;}
.x91{left:187.426667pt;}
.x69{left:191.168000pt;}
.x6c{left:193.062667pt;}
.x87{left:194.090667pt;}
.x88{left:197.378667pt;}
.x80{left:198.830667pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x89{left:227.618667pt;}
.x75{left:230.009333pt;}
.x81{left:232.705333pt;}
.x6d{left:233.620000pt;}
.xea{left:234.904000pt;}
.xe8{left:237.720000pt;}
.x3{left:239.924000pt;}
.xf3{left:242.648000pt;}
.xf5{left:244.494667pt;}
.xf4{left:247.130667pt;}
.xed{left:249.090667pt;}
.x5{left:250.204000pt;}
.xec{left:252.185333pt;}
.xe3{left:255.756000pt;}
.x5b{left:257.581333pt;}
.x41{left:259.544000pt;}
.xee{left:260.548000pt;}
.xd3{left:261.557333pt;}
.xef{left:263.484000pt;}
.xf6{left:265.218667pt;}
.xf1{left:266.946667pt;}
.x26{left:268.374667pt;}
.x9b{left:269.513333pt;}
.x5c{left:270.865333pt;}
.x42{left:272.828000pt;}
.x5d{left:274.120000pt;}
.xe9{left:275.565333pt;}
.xf7{left:279.104000pt;}
.xab{left:280.050667pt;}
.x27{left:281.657333pt;}
.xf2{left:283.725333pt;}
.x28{left:285.045333pt;}
.x5e{left:287.404000pt;}
.xf0{left:291.717333pt;}
.xac{left:293.333333pt;}
.x29{left:298.328000pt;}
.x1e{left:302.934667pt;}
.x97{left:307.284000pt;}
.xb6{left:310.614667pt;}
.x45{left:312.833333pt;}
.x1f{left:316.218667pt;}
.x98{left:320.568000pt;}
.xfd{left:321.758667pt;}
.xb3{left:324.321333pt;}
.x46{left:326.116000pt;}
.xb7{left:327.285333pt;}
.xb4{left:337.605333pt;}
.x47{left:340.218667pt;}
.xc0{left:342.560000pt;}
.x32{left:344.234667pt;}
.xc4{left:349.024000pt;}
.x4f{left:350.706667pt;}
.x48{left:353.502667pt;}
.x3d{left:355.981333pt;}
.x1c{left:357.753333pt;}
.xc1{left:359.193333pt;}
.xb8{left:360.626667pt;}
.xdc{left:362.166667pt;}
.x50{left:363.990667pt;}
.x51{left:367.377333pt;}
.x3e{left:369.265333pt;}
.x1d{left:371.037333pt;}
.xc2{left:372.477333pt;}
.xb9{left:373.910667pt;}
.xdd{left:375.450667pt;}
.x5f{left:376.496000pt;}
.xc{left:379.664000pt;}
.x52{left:380.661333pt;}
.x96{left:382.266667pt;}
.x43{left:384.732000pt;}
.xd{left:386.305333pt;}
.x2c{left:388.316000pt;}
.xe{left:389.560000pt;}
.x9c{left:391.409333pt;}
.xc3{left:392.462667pt;}
.xb5{left:393.962667pt;}
.xf{left:396.201333pt;}
.x44{left:398.016000pt;}
.x3a{left:399.417333pt;}
.x2d{left:401.600000pt;}
.x2e{left:404.933333pt;}
.xfa{left:406.585333pt;}
.x6{left:409.710667pt;}
.xba{left:410.640000pt;}
.x5a{left:411.808000pt;}
.x3b{left:412.957333pt;}
.xbb{left:414.026667pt;}
.x7{left:415.422667pt;}
.x2f{left:418.217333pt;}
.x3c{left:419.598667pt;}
.x39{left:421.008000pt;}
.x8a{left:422.057333pt;}
.xfb{left:423.160000pt;}
.x9a{left:424.376000pt;}
.x76{left:426.306667pt;}
.xbc{left:427.310667pt;}
.x12{left:428.760000pt;}
.xbd{left:430.697333pt;}
.x1a{left:432.384000pt;}
.x83{left:433.916000pt;}
.x8{left:434.848000pt;}
.xd2{left:436.026667pt;}
.xc5{left:437.780000pt;}
.x1b{left:439.025333pt;}
.x9{left:440.560000pt;}
.x94{left:442.512000pt;}
.x82{left:443.684000pt;}
.xbe{left:447.368000pt;}
.x77{left:450.104000pt;}
.x20{left:452.822667pt;}
.x95{left:455.796000pt;}
.xc6{left:457.362667pt;}
.xfe{left:458.354667pt;}
.xbf{left:460.652000pt;}
.x101{left:461.965333pt;}
.xeb{left:469.349333pt;}
.xe6{left:472.245333pt;}
.x49{left:475.994667pt;}
.x37{left:480.060000pt;}
.x55{left:483.481333pt;}
.xe7{left:485.529333pt;}
.x4a{left:489.278667pt;}
.x3f{left:490.848000pt;}
.x38{left:493.344000pt;}
.x53{left:496.553333pt;}
.x93{left:500.860000pt;}
.x40{left:504.130667pt;}
.xa{left:507.390667pt;}
.x54{left:509.837333pt;}
.xb{left:513.102667pt;}
.x60{left:514.821414pt;}
.xad{left:516.388000pt;}
.x33{left:517.992000pt;}
.xae{left:529.672000pt;}
.x34{left:531.276000pt;}
.xfc{left:535.730667pt;}
.x9d{left:540.464000pt;}
.xc8{left:547.278667pt;}
.x6e{left:550.085333pt;}
.x8b{left:550.994667pt;}
.x8e{left:552.052000pt;}
.x7b{left:553.188000pt;}
.xc7{left:554.248000pt;}
.x85{left:556.481333pt;}
.x84{left:559.356000pt;}
.x7d{left:560.838667pt;}
.x70{left:561.736000pt;}
.x78{left:562.937333pt;}
.x8c{left:564.120000pt;}
.x2a{left:567.544000pt;}
.x8d{left:568.525333pt;}
.x79{left:569.446667pt;}
.x21{left:572.140000pt;}
.x7c{left:573.869333pt;}
.x7a{left:575.036000pt;}
.x6f{left:576.266667pt;}
.xaf{left:579.877333pt;}
.x2b{left:580.828000pt;}
.x71{left:582.896000pt;}
.xde{left:583.820000pt;}
.x22{left:585.422667pt;}
.xb1{left:587.040000pt;}
.xb0{left:593.160000pt;}
.xdf{left:597.104000pt;}
.xb2{left:600.324000pt;}
.x4b{left:601.266667pt;}
.x13{left:608.206667pt;}
.xd0{left:609.561333pt;}
.x30{left:611.593333pt;}
.x4c{left:614.550667pt;}
.x14{left:617.245333pt;}
.x7e{left:620.441333pt;}
.xd1{left:622.845333pt;}
.x31{left:624.877333pt;}
.xe0{left:627.946667pt;}
.x58{left:629.613333pt;}
.xf8{left:631.249333pt;}
.xff{left:633.828000pt;}
.xd5{left:637.013333pt;}
.xd6{left:640.268000pt;}
.x59{left:642.897333pt;}
.xd8{left:645.388000pt;}
.xf9{left:647.920000pt;}
.xd7{left:653.552000pt;}
.xe1{left:654.913333pt;}
.x103{left:656.440000pt;}
.xca{left:657.606667pt;}
.xd9{left:658.672000pt;}
.xc9{left:660.984000pt;}
.x100{left:665.765333pt;}
.xe2{left:668.196000pt;}
.x56{left:670.230667pt;}
.x18{left:675.608000pt;}
.x19{left:682.249333pt;}
.x57{left:683.513333pt;}
.xda{left:701.521333pt;}
.x35{left:702.772000pt;}
.x15{left:704.400000pt;}
.x23{left:707.245333pt;}
.x4d{left:709.950667pt;}
.x16{left:711.042667pt;}
.xdb{left:714.805333pt;}
.x36{left:716.054667pt;}
.x17{left:716.954667pt;}
.x24{left:720.528000pt;}
.x4e{left:723.233333pt;}
.xd4{left:726.178667pt;}
.x25{left:727.090667pt;}
.xe4{left:728.077333pt;}
.x10{left:733.129333pt;}
.x61{left:738.598667pt;}
.x11{left:739.772000pt;}
.xe5{left:741.361333pt;}
}




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