
    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_4543205b57a5dfa359d971f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.151000;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_e95cdde52dbe8f0c1e6a6032.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_b7b9de9e7df32fe02628fc6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_24049663e38b7b2b8db96de1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.803000;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_9f0007eb3215dfcf43fd0a48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c86ca75a3e69973440295e38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a97ebc376b650b36324edab6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_821a0912f56dad851f506d00.woff2')format("woff");}.ff8{font-family:ff8;line-height:3.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9f0007eb3215dfcf43fd0a48.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0dc29d949da50b9c04374421.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9f0007eb3215dfcf43fd0a48.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.174316;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;}
.m1{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);}
.m17{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);}
.m25{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);}
.m7{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);}
.m1d{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);}
.m18{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);}
.m19{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);}
.m1f{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);}
.m23{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);}
.m1b{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);}
.m10{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);}
.m1e{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);}
.m26{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);}
.md{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);}
.mb{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);}
.m4{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);}
.m21{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);}
.m2{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);}
.m27{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);}
.m22{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);}
.m6{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);}
.m1a{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);}
.m1c{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);}
.m8{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);}
.me{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);}
.ma{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);}
.m16{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);}
.m28{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);}
.m12{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);}
.m29{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);}
.m13{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);}
.m15{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);}
.m24{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);}
.mf{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);}
.m14{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);}
.m9{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);}
.m11{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);}
.m2a{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);}
.m20{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);}
.m5{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);}
.mc{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.358000px;}
.v3{vertical-align:-11.952000px;}
.v5{vertical-align:-10.944000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v8{vertical-align:36.120000px;}
.va{vertical-align:41.010000px;}
.v7{vertical-align:48.426000px;}
.v6{vertical-align:102.246000px;}
.v9{vertical-align:143.256000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000583px;}
.ls15{letter-spacing:0.001580px;}
.ls14{letter-spacing:0.001810px;}
.ls18{letter-spacing:0.002378px;}
.ls20{letter-spacing:0.002458px;}
.lsa{letter-spacing:0.676741px;}
.lsb{letter-spacing:0.746496px;}
.ls1f{letter-spacing:2.988600px;}
.ls7{letter-spacing:2.989200px;}
.ls16{letter-spacing:2.990076px;}
.lsc{letter-spacing:7.875657px;}
.ls0{letter-spacing:8.367300px;}
.ls4{letter-spacing:11.954850px;}
.lsd{letter-spacing:12.339483px;}
.lsf{letter-spacing:12.345483px;}
.lse{letter-spacing:13.071657px;}
.ls1e{letter-spacing:13.370759px;}
.ls1d{letter-spacing:13.427951px;}
.ls19{letter-spacing:13.448400px;}
.ls22{letter-spacing:13.454400px;}
.ls1a{letter-spacing:13.484135px;}
.ls10{letter-spacing:13.987490px;}
.ls1b{letter-spacing:14.820988px;}
.ls13{letter-spacing:14.943900px;}
.ls1c{letter-spacing:14.944518px;}
.ls12{letter-spacing:15.657483px;}
.ls11{letter-spacing:15.663483px;}
.ls21{letter-spacing:16.434600px;}
.ls17{letter-spacing:16.437428px;}
.ls6{letter-spacing:17.886089px;}
.ls1{letter-spacing:17.929200px;}
.ls9{letter-spacing:17.935200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.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;}
}
.ws33{word-spacing:-14.943900px;}
.ws43{word-spacing:-13.449600px;}
.ws23{word-spacing:-11.955150px;}
.ws8{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws61{word-spacing:-2.929004px;}
.ws3e{word-spacing:-2.570351px;}
.ws2{word-spacing:-2.097001px;}
.ws13{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws66{word-spacing:-1.972595px;}
.wsa4{word-spacing:-1.853044px;}
.ws8e{word-spacing:-1.733492px;}
.wsa5{word-spacing:-1.554166px;}
.ws2c{word-spacing:-1.494390px;}
.ws4f{word-spacing:-1.434614px;}
.ws35{word-spacing:-1.315063px;}
.wsa3{word-spacing:-1.255288px;}
.wsae{word-spacing:-1.237363px;}
.ws67{word-spacing:-1.195512px;}
.wsb7{word-spacing:-1.183565px;}
.wscc{word-spacing:-1.129766px;}
.ws37{word-spacing:-1.075961px;}
.ws65{word-spacing:-1.016185px;}
.ws50{word-spacing:-0.956410px;}
.wsb8{word-spacing:-0.914573px;}
.wsb{word-spacing:-0.896634px;}
.ws25{word-spacing:-0.836858px;}
.ws12{word-spacing:-0.597756px;}
.wsb2{word-spacing:-0.591782px;}
.wsbc{word-spacing:-0.484186px;}
.ws93{word-spacing:-0.478205px;}
.ws48{word-spacing:-0.358654px;}
.wsbb{word-spacing:-0.322790px;}
.ws1e{word-spacing:-0.298878px;}
.wsdb{word-spacing:-0.268992px;}
.ws4b{word-spacing:-0.239102px;}
.ws64{word-spacing:-0.215194px;}
.ws27{word-spacing:-0.179327px;}
.ws94{word-spacing:-0.161395px;}
.ws19{word-spacing:-0.119551px;}
.ws98{word-spacing:-0.107597px;}
.ws14{word-spacing:-0.059776px;}
.ws7a{word-spacing:-0.053798px;}
.wsd4{word-spacing:-0.027408px;}
.wsb6{word-spacing:-0.009302px;}
.wsca{word-spacing:-0.009110px;}
.wsd5{word-spacing:-0.006461px;}
.wsd7{word-spacing:-0.004378px;}
.wsb3{word-spacing:-0.003955px;}
.ws4e{word-spacing:-0.002959px;}
.wsd8{word-spacing:-0.002794px;}
.ws22{word-spacing:-0.002417px;}
.wsc9{word-spacing:-0.001891px;}
.ws5{word-spacing:0.000000px;}
.wsb9{word-spacing:0.053798px;}
.wsa{word-spacing:0.059776px;}
.wsac{word-spacing:0.107597px;}
.ws7{word-spacing:0.119551px;}
.wsb4{word-spacing:0.161395px;}
.wsd6{word-spacing:0.164006px;}
.ws6{word-spacing:0.179327px;}
.wsc2{word-spacing:0.215194px;}
.ws34{word-spacing:0.239102px;}
.ws63{word-spacing:0.268992px;}
.ws18{word-spacing:0.298878px;}
.ws75{word-spacing:0.358654px;}
.ws31{word-spacing:0.418429px;}
.ws4{word-spacing:0.422252px;}
.ws99{word-spacing:0.478205px;}
.ws86{word-spacing:0.537980px;}
.wsb0{word-spacing:0.537984px;}
.ws82{word-spacing:0.597756px;}
.wsa6{word-spacing:0.657532px;}
.ws87{word-spacing:0.717307px;}
.ws6d{word-spacing:0.726463px;}
.ws6b{word-spacing:0.726613px;}
.ws71{word-spacing:0.728563px;}
.ws72{word-spacing:0.730663px;}
.ws6f{word-spacing:0.732463px;}
.ws69{word-spacing:0.734113px;}
.ws73{word-spacing:0.748753px;}
.ws70{word-spacing:0.762264px;}
.ws6c{word-spacing:0.764214px;}
.ws6e{word-spacing:0.764364px;}
.ws68{word-spacing:0.806976px;}
.ws39{word-spacing:0.896634px;}
.ws3d{word-spacing:0.956410px;}
.ws5c{word-spacing:1.016185px;}
.wsc0{word-spacing:1.022170px;}
.wsc4{word-spacing:1.129766px;}
.ws8a{word-spacing:1.135736px;}
.ws17{word-spacing:1.195512px;}
.ws2d{word-spacing:1.255288px;}
.ws60{word-spacing:1.315063px;}
.ws30{word-spacing:1.374839px;}
.wsc1{word-spacing:1.398758px;}
.wse{word-spacing:1.434614px;}
.wsdf{word-spacing:1.452557px;}
.ws4d{word-spacing:1.494390px;}
.wsd{word-spacing:1.554166px;}
.wscf{word-spacing:1.613952px;}
.ws55{word-spacing:1.673717px;}
.ws41{word-spacing:1.733492px;}
.ws3b{word-spacing:1.912819px;}
.ws95{word-spacing:1.972595px;}
.ws4c{word-spacing:2.032370px;}
.ws20{word-spacing:2.092146px;}
.ws79{word-spacing:2.098138px;}
.ws4a{word-spacing:2.271473px;}
.ws3c{word-spacing:2.331248px;}
.ws24{word-spacing:2.450800px;}
.ws54{word-spacing:2.510575px;}
.ws58{word-spacing:2.570351px;}
.ws53{word-spacing:2.630126px;}
.ws42{word-spacing:2.743718px;}
.wsf{word-spacing:2.809453px;}
.wsa9{word-spacing:2.869229px;}
.ws9{word-spacing:2.869236px;}
.wsc3{word-spacing:2.905114px;}
.ws11{word-spacing:2.929004px;}
.wsa1{word-spacing:2.988780px;}
.wsdc{word-spacing:3.066509px;}
.ws2a{word-spacing:3.108331px;}
.wsc6{word-spacing:3.174106px;}
.wsd3{word-spacing:3.219197px;}
.wsde{word-spacing:3.220330px;}
.wsbd{word-spacing:3.220944px;}
.wsdd{word-spacing:3.221155px;}
.wsb5{word-spacing:3.222086px;}
.wsba{word-spacing:3.222518px;}
.wscb{word-spacing:3.223920px;}
.wsc7{word-spacing:3.225072px;}
.wsbe{word-spacing:3.227904px;}
.wsad{word-spacing:3.228076px;}
.wsda{word-spacing:3.230986px;}
.wsbf{word-spacing:3.281702px;}
.ws1f{word-spacing:3.287658px;}
.ws59{word-spacing:3.347434px;}
.ws77{word-spacing:3.389299px;}
.ws2e{word-spacing:3.407209px;}
.wsd9{word-spacing:3.433443px;}
.wsc8{word-spacing:3.443098px;}
.ws49{word-spacing:3.466985px;}
.wse0{word-spacing:3.496896px;}
.ws8c{word-spacing:3.526760px;}
.wscd{word-spacing:3.550694px;}
.wsc{word-spacing:3.586536px;}
.ws5f{word-spacing:3.588938px;}
.ws38{word-spacing:3.646312px;}
.ws9a{word-spacing:3.765863px;}
.wsa0{word-spacing:3.819686px;}
.ws9b{word-spacing:3.825638px;}
.wsd2{word-spacing:3.873485px;}
.ws46{word-spacing:3.945190px;}
.ws78{word-spacing:3.981082px;}
.ws3a{word-spacing:4.004965px;}
.ws8b{word-spacing:4.064741px;}
.ws97{word-spacing:4.124516px;}
.ws57{word-spacing:4.184292px;}
.ws96{word-spacing:4.244068px;}
.ws28{word-spacing:4.303843px;}
.ws1c{word-spacing:4.303872px;}
.wsaa{word-spacing:4.357670px;}
.ws10{word-spacing:4.483170px;}
.wsaf{word-spacing:4.496576px;}
.ws9c{word-spacing:4.542946px;}
.wsd1{word-spacing:4.572864px;}
.ws8d{word-spacing:4.626662px;}
.wsa7{word-spacing:4.662497px;}
.ws88{word-spacing:4.782048px;}
.ws5b{word-spacing:4.961375px;}
.ws40{word-spacing:5.021150px;}
.ws9f{word-spacing:5.080926px;}
.ws74{word-spacing:5.140702px;}
.ws76{word-spacing:5.200477px;}
.ws47{word-spacing:5.320028px;}
.wsa2{word-spacing:5.379804px;}
.ws2f{word-spacing:5.499355px;}
.wsab{word-spacing:5.541235px;}
.wsce{word-spacing:5.648832px;}
.ws36{word-spacing:5.678682px;}
.ws9d{word-spacing:5.738458px;}
.ws15{word-spacing:5.798233px;}
.ws51{word-spacing:5.858009px;}
.ws1b{word-spacing:5.977560px;}
.ws81{word-spacing:6.097111px;}
.ws56{word-spacing:6.156887px;}
.ws21{word-spacing:6.216662px;}
.ws89{word-spacing:6.276438px;}
.ws9e{word-spacing:6.395989px;}
.ws62{word-spacing:6.575316px;}
.wsa8{word-spacing:6.635092px;}
.ws45{word-spacing:6.694867px;}
.ws3f{word-spacing:6.814418px;}
.ws83{word-spacing:7.113296px;}
.wsc5{word-spacing:7.155187px;}
.ws32{word-spacing:7.173072px;}
.ws85{word-spacing:7.412174px;}
.ws84{word-spacing:7.471950px;}
.ws52{word-spacing:7.830604px;}
.ws5d{word-spacing:8.488135px;}
.ws16{word-spacing:8.846789px;}
.ws8f{word-spacing:8.906564px;}
.ws26{word-spacing:9.504320px;}
.ws90{word-spacing:9.743423px;}
.ws91{word-spacing:9.803198px;}
.ws5a{word-spacing:9.982525px;}
.ws92{word-spacing:11.297588px;}
.ws1a{word-spacing:11.521828px;}
.ws1d{word-spacing:11.835569px;}
.ws44{word-spacing:11.895344px;}
.wsd0{word-spacing:12.588826px;}
.ws2b{word-spacing:13.389734px;}
.ws29{word-spacing:17.095822px;}
.ws5e{word-spacing:17.938541px;}
.ws1{word-spacing:22.179541px;}
.ws80{word-spacing:90.619810px;}
.wsb1{word-spacing:117.657101px;}
.ws7e{word-spacing:142.026826px;}
.ws7b{word-spacing:142.086601px;}
.ws7d{word-spacing:174.305400px;}
.ws7f{word-spacing:342.782486px;}
.ws7c{word-spacing:357.728486px;}
.ws6a{word-spacing:628.002454px;}
._4{margin-left:-11.728051px;}
._5{margin-left:-7.962163px;}
._7{margin-left:-6.754643px;}
._2{margin-left:-5.397721px;}
._e{margin-left:-4.184292px;}
._1{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._8{width:3.002197px;}
._13{width:4.423394px;}
._0{width:10.879128px;}
._a{width:12.385519px;}
._19{width:14.023343px;}
._9{width:15.380255px;}
._d{width:16.713266px;}
._b{width:18.673889px;}
._16{width:19.977001px;}
._f{width:22.009372px;}
._15{width:23.503762px;}
._10{width:25.285079px;}
._c{width:27.437000px;}
._3d{width:28.658190px;}
._18{width:29.917668px;}
._1d{width:31.143088px;}
._6{width:33.355008px;}
._2d{width:34.610072px;}
._17{width:36.582667px;}
._3c{width:38.017282px;}
._1a{width:39.212794px;}
._14{width:40.647408px;}
._1b{width:43.994842px;}
._45{width:61.868160px;}
._44{width:71.713267px;}
._43{width:81.922980px;}
._40{width:93.447821px;}
._3e{width:97.859290px;}
._2f{width:99.347047px;}
._30{width:106.717117px;}
._42{width:108.057030px;}
._41{width:109.802534px;}
._3f{width:128.093990px;}
._1e{width:151.782257px;}
._3b{width:157.030501px;}
._32{width:180.223434px;}
._37{width:187.755160px;}
._39{width:202.699060px;}
._1c{width:208.993414px;}
._1f{width:214.008656px;}
._33{width:225.114910px;}
._3a{width:259.246777px;}
._36{width:296.606527px;}
._38{width:311.550427px;}
._31{width:363.913853px;}
._2b{width:481.791336px;}
._28{width:496.735236px;}
._2a{width:504.207186px;}
._24{width:511.679136px;}
._25{width:526.623036px;}
._34{width:530.807328px;}
._22{width:534.094986px;}
._35{width:545.811004px;}
._29{width:581.497037px;}
._27{width:596.440937px;}
._26{width:611.384837px;}
._23{width:626.328737px;}
._21{width:648.744587px;}
._20{width:678.632387px;}
._2c{width:1317.531917px;}
._11{width:1950.816288px;}
._2e{width:2563.638288px;}
._12{width:2587.548288px;}
.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;}
.fsa{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fs6{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fsb{font-size:78.156000px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y161{bottom:3.955641px;}
.y7c{bottom:4.369778px;}
.y10a{bottom:6.372747px;}
.y43{bottom:45.921000px;}
.y182{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y15f{bottom:103.017000px;}
.y28d{bottom:105.961500px;}
.y108{bottom:107.545500px;}
.y201{bottom:107.823000px;}
.y1ca{bottom:108.411000px;}
.y19e{bottom:108.417000px;}
.yd9{bottom:109.854000px;}
.y258{bottom:112.284000px;}
.y7a{bottom:116.407500px;}
.y14{bottom:118.147500px;}
.y181{bottom:120.610500px;}
.y12c{bottom:120.796500px;}
.y42{bottom:121.716000px;}
.y15e{bottom:123.909000px;}
.y28c{bottom:125.112000px;}
.y19d{bottom:126.579000px;}
.yd8{bottom:128.016000px;}
.y107{bottom:128.437500px;}
.y200{bottom:128.713500px;}
.y1c9{bottom:129.303000px;}
.y19c{bottom:129.309000px;}
.yd7{bottom:130.746000px;}
.y257{bottom:131.434500px;}
.y1e6{bottom:133.440000px;}
.y79{bottom:134.568000px;}
.y13{bottom:136.035000px;}
.y78{bottom:137.298000px;}
.yce{bottom:138.688500px;}
.y180{bottom:141.502500px;}
.y12b{bottom:141.688500px;}
.ya0{bottom:142.207500px;}
.y41{bottom:142.606500px;}
.y122{bottom:143.271000px;}
.y28b{bottom:144.262500px;}
.y15d{bottom:144.801000px;}
.y226{bottom:147.090000px;}
.y1c8{bottom:147.465000px;}
.y105{bottom:149.329500px;}
.y1ff{bottom:149.605500px;}
.y1c7{bottom:150.193500px;}
.y19b{bottom:150.199500px;}
.y256{bottom:150.585000px;}
.yd6{bottom:151.636500px;}
.y12{bottom:153.924000px;}
.y1e5{bottom:154.330500px;}
.y106{bottom:154.753500px;}
.y77{bottom:158.190000px;}
.ycd{bottom:159.579000px;}
.y121{bottom:161.205000px;}
.y17f{bottom:162.394500px;}
.y12a{bottom:162.580500px;}
.y9f{bottom:163.098000px;}
.y28a{bottom:163.413000px;}
.y40{bottom:163.498500px;}
.y15c{bottom:165.691500px;}
.y225{bottom:166.588500px;}
.y19a{bottom:168.361500px;}
.y255{bottom:169.735500px;}
.yd5{bottom:169.798500px;}
.y104{bottom:170.221500px;}
.y1fe{bottom:170.497500px;}
.y1c6{bottom:171.085500px;}
.y199{bottom:171.091500px;}
.y11{bottom:171.811500px;}
.yd3{bottom:172.528500px;}
.y1e4{bottom:175.222500px;}
.yd4{bottom:177.952500px;}
.y76{bottom:179.082000px;}
.y120{bottom:179.137500px;}
.ycc{bottom:180.471000px;}
.y289{bottom:182.563500px;}
.y17d{bottom:183.285000px;}
.y129{bottom:183.471000px;}
.y9e{bottom:183.990000px;}
.y3f{bottom:184.390500px;}
.y224{bottom:186.087000px;}
.y15b{bottom:186.583500px;}
.y17e{bottom:188.710500px;}
.y254{bottom:188.886000px;}
.y198{bottom:189.253500px;}
.y10{bottom:189.699000px;}
.y103{bottom:191.112000px;}
.y1fd{bottom:191.388000px;}
.y1c5{bottom:191.977500px;}
.y197{bottom:191.983500px;}
.yd2{bottom:193.420500px;}
.y1e3{bottom:196.114500px;}
.y11f{bottom:197.070000px;}
.y75{bottom:199.972500px;}
.ycb{bottom:201.363000px;}
.y17b{bottom:201.447000px;}
.y288{bottom:201.714000px;}
.y17a{bottom:204.177000px;}
.y128{bottom:204.363000px;}
.y9d{bottom:204.882000px;}
.y3e{bottom:205.281000px;}
.y223{bottom:205.585500px;}
.y15a{bottom:207.475500px;}
.yf{bottom:207.588000px;}
.y253{bottom:208.036500px;}
.y17c{bottom:209.602500px;}
.y102{bottom:212.004000px;}
.y1fc{bottom:212.280000px;}
.y1c3{bottom:212.868000px;}
.y196{bottom:212.875500px;}
.yd1{bottom:214.311000px;}
.y11e{bottom:215.002500px;}
.y1e1{bottom:217.005000px;}
.y74{bottom:218.134500px;}
.y1c4{bottom:218.293500px;}
.y73{bottom:220.864500px;}
.yca{bottom:222.253500px;}
.y1e2{bottom:222.430500px;}
.y179{bottom:225.069000px;}
.y222{bottom:225.084000px;}
.ye{bottom:225.475500px;}
.y9c{bottom:225.772500px;}
.y3d{bottom:226.173000px;}
.y252{bottom:227.187000px;}
.y159{bottom:228.366000px;}
.y127{bottom:229.738500px;}
.y1c2{bottom:231.030000px;}
.y101{bottom:232.896000px;}
.y11d{bottom:232.935000px;}
.y1fb{bottom:233.172000px;}
.y1c1{bottom:233.760000px;}
.y195{bottom:233.766000px;}
.y1e0{bottom:237.897000px;}
.y72{bottom:239.026500px;}
.y287{bottom:240.015000px;}
.y71{bottom:241.756500px;}
.yc9{bottom:243.145500px;}
.y178{bottom:243.231000px;}
.y221{bottom:244.584000px;}
.y177{bottom:245.961000px;}
.y251{bottom:246.339000px;}
.y9a{bottom:246.664500px;}
.y3c{bottom:247.065000px;}
.y158{bottom:249.258000px;}
.yd0{bottom:249.939000px;}
.y11c{bottom:250.867500px;}
.y194{bottom:251.928000px;}
.y9b{bottom:252.090000px;}
.yd{bottom:252.330000px;}
.y1fa{bottom:254.062500px;}
.y1c0{bottom:254.652000px;}
.y193{bottom:254.658000px;}
.y100{bottom:258.270000px;}
.y1df{bottom:258.789000px;}
.y286{bottom:259.165500px;}
.y70{bottom:262.647000px;}
.yc8{bottom:264.037500px;}
.y250{bottom:265.489500px;}
.y176{bottom:266.851500px;}
.y99{bottom:267.556500px;}
.y3b{bottom:267.955500px;}
.y11b{bottom:268.801500px;}
.y157{bottom:270.150000px;}
.yc{bottom:270.217500px;}
.y126{bottom:270.850500px;}
.y191{bottom:272.820000px;}
.y1f9{bottom:274.954500px;}
.y1bf{bottom:275.544000px;}
.y190{bottom:275.550000px;}
.y285{bottom:278.316000px;}
.y1de{bottom:279.679500px;}
.yff{bottom:280.162500px;}
.y192{bottom:280.974000px;}
.y220{bottom:282.015000px;}
.y6f{bottom:283.539000px;}
.y24f{bottom:284.640000px;}
.yc7{bottom:284.928000px;}
.y175{bottom:285.013500px;}
.y11a{bottom:286.734000px;}
.y174{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y97{bottom:288.447000px;}
.y3a{bottom:288.847500px;}
.y125{bottom:290.083500px;}
.y156{bottom:291.040500px;}
.y1be{bottom:293.704500px;}
.y98{bottom:293.872500px;}
.y1f8{bottom:295.846500px;}
.y1bc{bottom:296.434500px;}
.y18f{bottom:296.440500px;}
.y284{bottom:297.466500px;}
.y1dd{bottom:300.571500px;}
.y1bd{bottom:301.860000px;}
.y21f{bottom:302.907000px;}
.y24e{bottom:303.790500px;}
.y6e{bottom:304.431000px;}
.yfe{bottom:304.594500px;}
.y119{bottom:304.666500px;}
.yc6{bottom:305.820000px;}
.ya{bottom:305.994000px;}
.y172{bottom:308.635500px;}
.y123{bottom:309.316500px;}
.y96{bottom:309.339000px;}
.y39{bottom:309.739500px;}
.y155{bottom:311.932500px;}
.y173{bottom:314.059500px;}
.y124{bottom:314.197500px;}
.y1ba{bottom:314.596500px;}
.y283{bottom:316.617000px;}
.y1f7{bottom:316.738500px;}
.y1b9{bottom:317.326500px;}
.y18e{bottom:317.332500px;}
.y1dc{bottom:321.463500px;}
.y118{bottom:322.599000px;}
.y1bb{bottom:322.750500px;}
.y24d{bottom:322.941000px;}
.y21e{bottom:323.797500px;}
.y9{bottom:323.881500px;}
.y6d{bottom:325.323000px;}
.yc5{bottom:326.712000px;}
.y171{bottom:329.526000px;}
.y95{bottom:330.231000px;}
.y154{bottom:332.824500px;}
.y282{bottom:333.145500px;}
.y38{bottom:335.113500px;}
.y18d{bottom:335.494500px;}
.y281{bottom:335.767500px;}
.y1f6{bottom:337.629000px;}
.y1b8{bottom:338.218500px;}
.y18c{bottom:338.224500px;}
.y8{bottom:341.769000px;}
.y24c{bottom:342.091500px;}
.y1da{bottom:342.355500px;}
.yfd{bottom:343.419000px;}
.y21d{bottom:344.689500px;}
.y6c{bottom:346.213500px;}
.yc4{bottom:347.602500px;}
.y170{bottom:347.688000px;}
.y117{bottom:347.734500px;}
.y1db{bottom:347.779500px;}
.y16f{bottom:350.418000px;}
.y153{bottom:353.715000px;}
.y280{bottom:354.918000px;}
.y94{bottom:355.605000px;}
.y1f5{bottom:358.521000px;}
.y1b6{bottom:359.109000px;}
.y18b{bottom:359.115000px;}
.y7{bottom:359.658000px;}
.y24b{bottom:361.242000px;}
.y1d8{bottom:363.246000px;}
.yfc{bottom:364.311000px;}
.y6b{bottom:364.375500px;}
.y1b7{bottom:364.534500px;}
.y21c{bottom:365.581500px;}
.y6a{bottom:367.105500px;}
.y1d9{bottom:368.671500px;}
.y16e{bottom:371.310000px;}
.yc3{bottom:372.978000px;}
.y27f{bottom:374.070000px;}
.y152{bottom:374.607000px;}
.y1b5{bottom:377.271000px;}
.y6{bottom:377.545500px;}
.y1f4{bottom:379.413000px;}
.y1b4{bottom:380.001000px;}
.y18a{bottom:380.007000px;}
.y24a{bottom:380.392500px;}
.y116{bottom:380.400000px;}
.y1d7{bottom:384.138000px;}
.y21b{bottom:386.472000px;}
.y69{bottom:387.997500px;}
.y16d{bottom:389.470500px;}
.y93{bottom:390.948000px;}
.y16c{bottom:392.200500px;}
.y27e{bottom:393.220500px;}
.y151{bottom:395.499000px;}
.y249{bottom:399.543000px;}
.y114{bottom:399.633000px;}
.y1f3{bottom:400.303500px;}
.y1b2{bottom:400.893000px;}
.y5{bottom:401.410500px;}
.yfb{bottom:402.447000px;}
.y115{bottom:404.515500px;}
.y1d6{bottom:405.030000px;}
.y189{bottom:405.382500px;}
.y1b3{bottom:406.317000px;}
.y21a{bottom:407.364000px;}
.yc2{bottom:408.321000px;}
.y68{bottom:408.888000px;}
.y16b{bottom:410.362500px;}
.y91{bottom:411.840000px;}
.y27d{bottom:412.371000px;}
.yfa{bottom:412.699500px;}
.y16a{bottom:413.092500px;}
.y37{bottom:414.325500px;}
.y150{bottom:416.391000px;}
.y92{bottom:417.264000px;}
.y248{bottom:418.693500px;}
.y4{bottom:419.299500px;}
.y1f2{bottom:421.195500px;}
.y1b1{bottom:421.783500px;}
.y219{bottom:428.256000px;}
.yc1{bottom:429.211500px;}
.y67{bottom:429.780000px;}
.y1d5{bottom:430.404000px;}
.y27c{bottom:431.521500px;}
.y90{bottom:432.730500px;}
.y169{bottom:433.984500px;}
.y36{bottom:435.217500px;}
.y113{bottom:436.737000px;}
.y3{bottom:437.187000px;}
.y14f{bottom:437.281500px;}
.y247{bottom:437.844000px;}
.y1b0{bottom:439.945500px;}
.y1f1{bottom:442.087500px;}
.y1ae{bottom:442.675500px;}
.y188{bottom:446.494500px;}
.y1af{bottom:448.101000px;}
.y218{bottom:449.146500px;}
.yc0{bottom:450.103500px;}
.y66{bottom:450.672000px;}
.y168{bottom:452.146500px;}
.y8f{bottom:453.622500px;}
.y167{bottom:454.875000px;}
.y2{bottom:455.074500px;}
.y246{bottom:456.994500px;}
.y112{bottom:457.629000px;}
.yf9{bottom:458.068500px;}
.y14e{bottom:458.173500px;}
.y1f0{bottom:462.978000px;}
.y187{bottom:463.104000px;}
.y1ad{bottom:463.567500px;}
.y186{bottom:465.727500px;}
.y27b{bottom:469.822500px;}
.y217{bottom:470.038500px;}
.ybf{bottom:470.995500px;}
.y1d4{bottom:471.516000px;}
.y65{bottom:471.562500px;}
.y35{bottom:474.042000px;}
.y8e{bottom:474.514500px;}
.y166{bottom:475.767000px;}
.y245{bottom:476.145000px;}
.y111{bottom:478.519500px;}
.y1{bottom:478.941000px;}
.yf8{bottom:478.960500px;}
.y14d{bottom:479.065500px;}
.y1ef{bottom:483.870000px;}
.y1ab{bottom:484.458000px;}
.y1d3{bottom:488.127000px;}
.y27a{bottom:488.973000px;}
.y1ac{bottom:489.883500px;}
.y1d2{bottom:490.749000px;}
.y216{bottom:490.930500px;}
.ybe{bottom:491.886000px;}
.y64{bottom:492.454500px;}
.y34{bottom:494.932500px;}
.y244{bottom:495.295500px;}
.y8d{bottom:495.405000px;}
.y110{bottom:499.411500px;}
.yf7{bottom:499.851000px;}
.y14c{bottom:499.956000px;}
.y165{bottom:501.142500px;}
.y1aa{bottom:502.620000px;}
.y1ee{bottom:504.762000px;}
.y1a9{bottom:505.350000px;}
.y279{bottom:508.123500px;}
.y214{bottom:511.822500px;}
.ybd{bottom:512.778000px;}
.y63{bottom:513.346500px;}
.y243{bottom:514.446000px;}
.y33{bottom:515.824500px;}
.y8c{bottom:516.297000px;}
.y215{bottom:517.246500px;}
.y10f{bottom:520.303500px;}
.yf6{bottom:520.743000px;}
.y14b{bottom:520.848000px;}
.y164{bottom:523.035000px;}
.y1a8{bottom:523.512000px;}
.y1ed{bottom:525.652500px;}
.y1a6{bottom:526.242000px;}
.y278{bottom:527.274000px;}
.y213{bottom:529.983000px;}
.y242{bottom:530.974500px;}
.y1a7{bottom:531.666000px;}
.y212{bottom:532.713000px;}
.y241{bottom:533.596500px;}
.ybc{bottom:533.670000px;}
.y62{bottom:534.237000px;}
.y32{bottom:536.716500px;}
.y8a{bottom:537.189000px;}
.y10e{bottom:541.194000px;}
.yf5{bottom:541.635000px;}
.y14a{bottom:541.740000px;}
.y8b{bottom:542.613000px;}
.y1a5{bottom:544.404000px;}
.y277{bottom:546.424500px;}
.y1ec{bottom:546.544500px;}
.y1a4{bottom:547.134000px;}
.y240{bottom:552.747000px;}
.y211{bottom:553.605000px;}
.ybb{bottom:554.560500px;}
.y61{bottom:555.129000px;}
.y31{bottom:557.607000px;}
.y89{bottom:558.079500px;}
.y163{bottom:562.398000px;}
.yf4{bottom:562.525500px;}
.y148{bottom:562.630500px;}
.y276{bottom:565.575000px;}
.y1eb{bottom:567.436500px;}
.y1a3{bottom:568.024500px;}
.y149{bottom:568.056000px;}
.y210{bottom:571.767000px;}
.y23f{bottom:571.897500px;}
.y20f{bottom:574.497000px;}
.yba{bottom:575.452500px;}
.y60{bottom:576.021000px;}
.y10d{bottom:576.822000px;}
.y2f{bottom:578.499000px;}
.y88{bottom:578.971500px;}
.y162{bottom:581.631000px;}
.y147{bottom:583.522500px;}
.y30{bottom:583.923000px;}
.y275{bottom:584.725500px;}
.yf3{bottom:587.901000px;}
.y1ea{bottom:588.328500px;}
.y23e{bottom:591.048000px;}
.y20e{bottom:592.657500px;}
.y1a2{bottom:593.400000px;}
.y20d{bottom:595.387500px;}
.y10c{bottom:596.055000px;}
.yb9{bottom:596.344500px;}
.y2e{bottom:596.661000px;}
.y5f{bottom:596.913000px;}
.y2d{bottom:599.391000px;}
.y87{bottom:599.863500px;}
.y274{bottom:603.876000px;}
.y146{bottom:604.414500px;}
.y160{bottom:607.048500px;}
.y23d{bottom:610.198500px;}
.y10b{bottom:615.288000px;}
.y20c{bottom:616.279500px;}
.yb8{bottom:617.235000px;}
.y2c{bottom:617.553000px;}
.y5e{bottom:617.803500px;}
.y2b{bottom:620.281500px;}
.y86{bottom:620.755500px;}
.y273{bottom:623.026500px;}
.yf2{bottom:623.244000px;}
.y1e9{bottom:623.955000px;}
.y145{bottom:625.305000px;}
.y23c{bottom:633.832500px;}
.y1a1{bottom:634.512000px;}
.y20b{bottom:637.171500px;}
.y109{bottom:637.717500px;}
.yb7{bottom:638.127000px;}
.y2a{bottom:638.443500px;}
.y5d{bottom:638.695500px;}
.y29{bottom:641.173500px;}
.y85{bottom:641.646000px;}
.y272{bottom:642.177000px;}
.y1e7{bottom:643.188000px;}
.yf1{bottom:644.134500px;}
.y144{bottom:646.197000px;}
.y1e8{bottom:648.070500px;}
.y1a0{bottom:651.121500px;}
.y19f{bottom:653.745000px;}
.y20a{bottom:658.062000px;}
.yb6{bottom:659.019000px;}
.y5c{bottom:659.587500px;}
.y271{bottom:661.327500px;}
.y28{bottom:662.065500px;}
.yf0{bottom:665.026500px;}
.y84{bottom:667.021500px;}
.y143{bottom:667.089000px;}
.y23b{bottom:673.734000px;}
.y209{bottom:678.954000px;}
.yb5{bottom:679.911000px;}
.y5b{bottom:680.478000px;}
.y27{bottom:682.957500px;}
.yef{bottom:685.918500px;}
.y142{bottom:687.981000px;}
.y23a{bottom:693.232500px;}
.y270{bottom:699.628500px;}
.y208{bottom:699.846000px;}
.yb4{bottom:700.801500px;}
.y5a{bottom:701.370000px;}
.y83{bottom:702.363000px;}
.y26{bottom:703.848000px;}
.yee{bottom:706.809000px;}
.y141{bottom:708.871500px;}
.y239{bottom:712.731000px;}
.ycf{bottom:713.659500px;}
.y26f{bottom:718.779000px;}
.y207{bottom:720.736500px;}
.yb3{bottom:721.693500px;}
.y59{bottom:722.262000px;}
.y82{bottom:723.255000px;}
.y25{bottom:724.740000px;}
.yed{bottom:727.701000px;}
.y140{bottom:729.763500px;}
.y238{bottom:732.229500px;}
.y26e{bottom:737.929500px;}
.y206{bottom:741.628500px;}
.y58{bottom:743.152500px;}
.y81{bottom:744.147000px;}
.y24{bottom:745.632000px;}
.yb2{bottom:747.067500px;}
.yec{bottom:748.593000px;}
.y13f{bottom:750.655500px;}
.y237{bottom:751.728000px;}
.y26d{bottom:757.081500px;}
.y205{bottom:762.520500px;}
.y57{bottom:764.044500px;}
.y23{bottom:766.522500px;}
.yeb{bottom:769.483500px;}
.y80{bottom:769.521000px;}
.y236{bottom:771.228000px;}
.y13e{bottom:771.546000px;}
.y26c{bottom:776.232000px;}
.yb1{bottom:782.410500px;}
.y204{bottom:783.411000px;}
.y56{bottom:784.936500px;}
.y22{bottom:787.414500px;}
.yea{bottom:790.375500px;}
.y235{bottom:790.726500px;}
.y13d{bottom:792.438000px;}
.y7f{bottom:793.953000px;}
.y26b{bottom:795.382500px;}
.yb0{bottom:803.302500px;}
.y203{bottom:804.303000px;}
.y55{bottom:805.827000px;}
.y21{bottom:808.306500px;}
.y234{bottom:810.225000px;}
.ye9{bottom:811.267500px;}
.y13c{bottom:813.330000px;}
.y26a{bottom:814.533000px;}
.yaf{bottom:824.193000px;}
.y54{bottom:826.719000px;}
.y20{bottom:829.197000px;}
.y7e{bottom:829.581000px;}
.y202{bottom:829.678500px;}
.ye8{bottom:832.158000px;}
.y269{bottom:833.683500px;}
.y233{bottom:835.900500px;}
.yae{bottom:845.085000px;}
.y53{bottom:847.611000px;}
.y7d{bottom:848.814000px;}
.y268{bottom:852.834000px;}
.ye7{bottom:853.050000px;}
.y1f{bottom:859.056000px;}
.y232{bottom:859.882500px;}
.y13b{bottom:864.291000px;}
.yad{bottom:865.977000px;}
.y52{bottom:868.503000px;}
.y7b{bottom:871.243500px;}
.y267{bottom:871.984500px;}
.ye6{bottom:873.942000px;}
.y13a{bottom:882.223500px;}
.yac{bottom:886.867500px;}
.y51{bottom:889.393500px;}
.y266{bottom:891.135000px;}
.ye4{bottom:894.834000px;}
.y231{bottom:898.707000px;}
.y1e{bottom:899.076000px;}
.y139{bottom:900.156000px;}
.ye5{bottom:900.258000px;}
.yab{bottom:907.759500px;}
.y50{bottom:910.285500px;}
.ye3{bottom:915.724500px;}
.y138{bottom:918.088500px;}
.y230{bottom:918.205500px;}
.y1d{bottom:919.554000px;}
.yaa{bottom:928.651500px;}
.y265{bottom:929.436000px;}
.y4f{bottom:931.177500px;}
.y1c{bottom:935.694000px;}
.y137{bottom:936.021000px;}
.ye2{bottom:936.616500px;}
.y22f{bottom:937.704000px;}
.y290{bottom:943.857000px;}
.y264{bottom:948.586500px;}
.y4e{bottom:952.068000px;}
.y136{bottom:953.955000px;}
.ya9{bottom:954.025500px;}
.y22e{bottom:957.202500px;}
.ye0{bottom:957.508500px;}
.ye1{bottom:962.932500px;}
.y28f{bottom:963.007500px;}
.y263{bottom:967.737000px;}
.y135{bottom:971.887500px;}
.y4d{bottom:972.960000px;}
.y1d1{bottom:978.384000px;}
.ydf{bottom:978.399000px;}
.y1b{bottom:980.370000px;}
.y28e{bottom:982.158000px;}
.y22d{bottom:985.668000px;}
.y262{bottom:986.887500px;}
.ya8{bottom:989.368500px;}
.y134{bottom:989.820000px;}
.y185{bottom:991.122000px;}
.y4c{bottom:993.852000px;}
.y133{bottom:998.787000px;}
.y184{bottom:999.276000px;}
.yde{bottom:999.291000px;}
.y19{bottom:1001.262000px;}
.y22c{bottom:1005.166500px;}
.y261{bottom:1006.038000px;}
.y1a{bottom:1006.687500px;}
.ya7{bottom:1010.260500px;}
.y4b{bottom:1014.742500px;}
.ydd{bottom:1020.183000px;}
.y260{bottom:1025.188500px;}
.y132{bottom:1025.685000px;}
.ya6{bottom:1031.151000px;}
.y22b{bottom:1033.632000px;}
.y131{bottom:1034.652000px;}
.y4a{bottom:1035.634500px;}
.y18{bottom:1040.086500px;}
.y1d0{bottom:1041.058500px;}
.ydc{bottom:1041.073500px;}
.y25f{bottom:1044.339000px;}
.ya5{bottom:1052.043000px;}
.y22a{bottom:1053.130500px;}
.y1ce{bottom:1053.796500px;}
.y49{bottom:1056.526500px;}
.y130{bottom:1061.551500px;}
.y1cf{bottom:1061.950500px;}
.y25e{bottom:1063.489500px;}
.ydb{bottom:1066.449000px;}
.ya4{bottom:1070.205000px;}
.y17{bottom:1071.424500px;}
.ya3{bottom:1072.935000px;}
.y48{bottom:1077.417000px;}
.y229{bottom:1081.596000px;}
.y25d{bottom:1082.640000px;}
.yda{bottom:1083.858000px;}
.y12f{bottom:1086.685500px;}
.ya2{bottom:1093.825500px;}
.y1cd{bottom:1095.579000px;}
.y47{bottom:1098.309000px;}
.y25c{bottom:1099.168500px;}
.y228{bottom:1101.094500px;}
.y25b{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.ya1{bottom:1114.717500px;}
.y1cb{bottom:1116.471000px;}
.y46{bottom:1119.201000px;}
.y227{bottom:1120.593000px;}
.y25a{bottom:1120.941000px;}
.y12e{bottom:1122.340500px;}
.y1cc{bottom:1124.625000px;}
.y183{bottom:1137.363000px;}
.y259{bottom:1137.469500px;}
.y45{bottom:1140.091500px;}
.y12d{bottom:1141.573500px;}
.y44{bottom:1200.543000px;}
.h8{height:31.131341px;}
.h11{height:31.526842px;}
.h6{height:32.845601px;}
.h2{height:36.319550px;}
.hc{height:39.432893px;}
.h17{height:40.587632px;}
.h1a{height:41.245164px;}
.hb{height:41.482876px;}
.h9{height:41.508281px;}
.h5{height:43.217759px;}
.h3{height:43.815515px;}
.h10{height:46.697011px;}
.hd{height:51.861658px;}
.ha{height:51.885221px;}
.hf{height:53.691152px;}
.h7{height:54.547601px;}
.h1c{height:55.849550px;}
.h1d{height:61.128893px;}
.h12{height:61.134893px;}
.h16{height:69.798498px;}
.h4{height:77.792486px;}
.h18{height:87.747221px;}
.h19{height:87.753221px;}
.h13{height:142.056550px;}
.h14{height:183.066550px;}
.he{height:283.794000px;}
.h15{height:395.167500px;}
.h1b{height:427.585500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:522.245100px;}
.w2{width:554.346000px;}
.w4{width:691.828500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x83{left:62.541000px;}
.xf0{left:85.848000px;}
.x8a{left:95.952000px;}
.x95{left:100.330500px;}
.x8b{left:107.160000px;}
.x88{left:114.631500px;}
.x2{left:192.145500px;}
.x3{left:198.571500px;}
.x89{left:229.513500px;}
.xf{left:248.526000px;}
.xe{left:249.591000px;}
.x96{left:261.775500px;}
.x97{left:268.201500px;}
.x7a{left:269.983500px;}
.x8e{left:280.002000px;}
.x1f{left:281.479500px;}
.x57{left:286.858500px;}
.xb2{left:290.538000px;}
.xb5{left:291.795000px;}
.x98{left:293.322000px;}
.x24{left:298.431000px;}
.x75{left:299.932500px;}
.x4{left:302.244000px;}
.x25{left:305.902500px;}
.x5{left:308.670000px;}
.x4a{left:315.267000px;}
.x52{left:318.649500px;}
.xaa{left:319.666500px;}
.x26{left:320.973000px;}
.x71{left:322.164000px;}
.xab{left:324.225000px;}
.x6c{left:326.871000px;}
.x27{left:328.444500px;}
.x4b{left:330.211500px;}
.xda{left:331.255500px;}
.x50{left:334.248000px;}
.x7d{left:336.603000px;}
.x7c{left:340.339500px;}
.x53{left:342.628500px;}
.x7b{left:344.074500px;}
.x94{left:346.527000px;}
.x5f{left:348.636000px;}
.x92{left:350.617500px;}
.xac{left:352.755000px;}
.x16{left:355.339500px;}
.x7e{left:356.592000px;}
.x7f{left:360.402000px;}
.x17{left:361.765500px;}
.x60{left:363.580500px;}
.xc1{left:365.983500px;}
.x61{left:367.242000px;}
.xad{left:369.352500px;}
.x84{left:371.932500px;}
.x18{left:373.276500px;}
.x80{left:375.346500px;}
.x19{left:379.702500px;}
.x62{left:382.186500px;}
.xc2{left:383.920500px;}
.xb6{left:385.237500px;}
.xae{left:387.759000px;}
.x35{left:389.058000px;}
.xc3{left:390.346500px;}
.x68{left:391.791000px;}
.xb0{left:393.283500px;}
.xf1{left:396.688500px;}
.xa0{left:398.997000px;}
.xaf{left:400.882500px;}
.xcf{left:402.876000px;}
.x36{left:404.002500px;}
.x69{left:405.900000px;}
.x37{left:407.772000px;}
.xdc{left:408.774000px;}
.xdb{left:409.971000px;}
.x6{left:411.501000px;}
.xd0{left:414.189000px;}
.xf2{left:416.622000px;}
.x7{left:417.927000px;}
.xdd{left:420.708000px;}
.x20{left:422.727000px;}
.xa7{left:426.693000px;}
.x21{left:430.198500px;}
.xa8{left:433.119000px;}
.xa3{left:435.892500px;}
.xb3{left:439.557000px;}
.xa9{left:445.099500px;}
.x85{left:446.262000px;}
.x91{left:448.335000px;}
.xe5{left:449.356500px;}
.xa4{left:453.970500px;}
.x93{left:457.197000px;}
.xe6{left:459.612000px;}
.x58{left:465.526500px;}
.xc0{left:466.594500px;}
.xb4{left:467.971500px;}
.xd7{left:470.886000px;}
.x59{left:471.952500px;}
.xa1{left:473.947500px;}
.xd8{left:477.312000px;}
.xa2{left:480.373500px;}
.x6e{left:483.951000px;}
.xce{left:486.564000px;}
.x54{left:490.222500px;}
.x64{left:491.791500px;}
.x70{left:494.296500px;}
.xd9{left:495.718500px;}
.x55{left:497.029500px;}
.x65{left:498.217500px;}
.x6f{left:499.965000px;}
.xeb{left:505.170000px;}
.xcc{left:507.234000px;}
.x66{left:509.728500px;}
.x6a{left:510.901500px;}
.x48{left:513.643500px;}
.x74{left:516.108284px;}
.x2f{left:517.522500px;}
.x67{left:519.751500px;}
.xec{left:521.121000px;}
.xcb{left:522.486000px;}
.x6b{left:524.607000px;}
.x76{left:526.504500px;}
.x49{left:528.588000px;}
.x38{left:532.263000px;}
.x30{left:533.532000px;}
.x86{left:536.793000px;}
.x72{left:540.780000px;}
.x77{left:542.163000px;}
.x99{left:547.555500px;}
.x4e{left:549.373684px;}
.x73{left:555.724500px;}
.x9a{left:559.066500px;}
.xbb{left:560.991000px;}
.x22{left:562.912500px;}
.x6d{left:566.008500px;}
.x9b{left:568.894500px;}
.x23{left:570.384000px;}
.xd1{left:572.883000px;}
.x78{left:574.545000px;}
.xe2{left:576.538500px;}
.xbd{left:578.296500px;}
.xe3{left:583.345500px;}
.xd2{left:584.863500px;}
.x79{left:586.746000px;}
.xcd{left:590.262000px;}
.x4f{left:592.317000px;}
.x56{left:596.791500px;}
.x5a{left:599.488500px;}
.xb7{left:601.728000px;}
.x8{left:604.233000px;}
.x42{left:607.114500px;}
.xb8{left:608.152500px;}
.x9{left:610.659000px;}
.x5b{left:614.431500px;}
.x5d{left:616.458000px;}
.x1a{left:617.520000px;}
.xb9{left:619.699500px;}
.x43{left:622.059000px;}
.xa5{left:624.681000px;}
.xba{left:626.125500px;}
.xc7{left:627.837000px;}
.x1b{left:629.277000px;}
.x5e{left:631.402500px;}
.x82{left:634.606500px;}
.x1c{left:635.703000px;}
.xde{left:637.336500px;}
.xc8{left:639.418500px;}
.xca{left:640.773000px;}
.xea{left:642.049500px;}
.x44{left:644.370000px;}
.xa6{left:646.507500px;}
.xbe{left:649.614000px;}
.xc4{left:652.957500px;}
.xe7{left:655.372500px;}
.x3c{left:657.907500px;}
.xc5{left:659.383500px;}
.x45{left:663.135000px;}
.x3d{left:664.333500px;}
.x12{left:667.918500px;}
.x46{left:669.561000px;}
.xc6{left:670.894500px;}
.x8f{left:672.136500px;}
.x13{left:674.344500px;}
.x3e{left:675.855000px;}
.xd3{left:679.135500px;}
.x47{left:681.543000px;}
.x14{left:685.855500px;}
.x4c{left:689.575500px;}
.x15{left:692.281500px;}
.xee{left:693.577500px;}
.x28{left:696.027000px;}
.xef{left:700.003500px;}
.x90{left:702.549000px;}
.xa{left:704.464500px;}
.x29{left:707.160000px;}
.xd4{left:712.776000px;}
.x2a{left:714.633000px;}
.xd5{left:719.200500px;}
.x39{left:721.891500px;}
.xb{left:724.497000px;}
.x3f{left:725.977500px;}
.xe8{left:727.086000px;}
.x9d{left:729.831000px;}
.xd6{left:730.935000px;}
.x40{left:732.403500px;}
.x9e{left:736.257000px;}
.x87{left:737.382000px;}
.x10{left:742.995000px;}
.xe9{left:745.755000px;}
.x9f{left:748.237500px;}
.x2b{left:749.395500px;}
.x41{left:750.400500px;}
.x63{left:752.538000px;}
.x2c{left:756.867000px;}
.x11{left:758.724000px;}
.x3a{left:760.588500px;}
.x8c{left:761.820000px;}
.x3b{left:767.014500px;}
.xf3{left:768.153000px;}
.xdf{left:775.008000px;}
.x1d{left:778.938000px;}
.xe0{left:780.507000px;}
.x81{left:782.908500px;}
.x1e{left:785.364000px;}
.xe1{left:787.314000px;}
.x2d{left:789.817500px;}
.xbf{left:791.068500px;}
.x51{left:793.842000px;}
.x8d{left:795.915000px;}
.x2e{left:797.289000px;}
.x5c{left:799.105500px;}
.x9c{left:801.423000px;}
.xbc{left:803.637000px;}
.xed{left:806.979000px;}
.xe4{left:812.116500px;}
.x31{left:813.886500px;}
.xb1{left:816.175500px;}
.x4d{left:817.846500px;}
.xc9{left:819.837000px;}
.x32{left:821.359500px;}
.x33{left:825.169500px;}
.xc{left:830.626500px;}
.x34{left:832.642500px;}
.xd{left:837.052500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v5{vertical-align:-9.728000pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v8{vertical-align:32.106667pt;}
.va{vertical-align:36.453333pt;}
.v7{vertical-align:43.045333pt;}
.v6{vertical-align:90.885333pt;}
.v9{vertical-align:127.338667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000518pt;}
.ls15{letter-spacing:0.001404pt;}
.ls14{letter-spacing:0.001609pt;}
.ls18{letter-spacing:0.002114pt;}
.ls20{letter-spacing:0.002185pt;}
.lsa{letter-spacing:0.601548pt;}
.lsb{letter-spacing:0.663552pt;}
.ls1f{letter-spacing:2.656533pt;}
.ls7{letter-spacing:2.657067pt;}
.ls16{letter-spacing:2.657845pt;}
.lsc{letter-spacing:7.000584pt;}
.ls0{letter-spacing:7.437600pt;}
.ls4{letter-spacing:10.626533pt;}
.lsd{letter-spacing:10.968429pt;}
.lsf{letter-spacing:10.973762pt;}
.lse{letter-spacing:11.619251pt;}
.ls1e{letter-spacing:11.885119pt;}
.ls1d{letter-spacing:11.935956pt;}
.ls19{letter-spacing:11.954133pt;}
.ls22{letter-spacing:11.959467pt;}
.ls1a{letter-spacing:11.985898pt;}
.ls10{letter-spacing:12.433325pt;}
.ls1b{letter-spacing:13.174212pt;}
.ls13{letter-spacing:13.283467pt;}
.ls1c{letter-spacing:13.284016pt;}
.ls12{letter-spacing:13.917762pt;}
.ls11{letter-spacing:13.923096pt;}
.ls21{letter-spacing:14.608533pt;}
.ls17{letter-spacing:14.611047pt;}
.ls6{letter-spacing:15.898746pt;}
.ls1{letter-spacing:15.937067pt;}
.ls9{letter-spacing:15.942400pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ws33{word-spacing:-13.283467pt;}
.ws43{word-spacing:-11.955200pt;}
.ws23{word-spacing:-10.626800pt;}
.ws8{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws61{word-spacing:-2.603559pt;}
.ws3e{word-spacing:-2.284756pt;}
.ws2{word-spacing:-1.864001pt;}
.ws13{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws66{word-spacing:-1.753418pt;}
.wsa4{word-spacing:-1.647150pt;}
.ws8e{word-spacing:-1.540882pt;}
.wsa5{word-spacing:-1.381481pt;}
.ws2c{word-spacing:-1.328347pt;}
.ws4f{word-spacing:-1.275213pt;}
.ws35{word-spacing:-1.168945pt;}
.wsa3{word-spacing:-1.115811pt;}
.wsae{word-spacing:-1.099878pt;}
.ws67{word-spacing:-1.062677pt;}
.wsb7{word-spacing:-1.052058pt;}
.wscc{word-spacing:-1.004237pt;}
.ws37{word-spacing:-0.956410pt;}
.ws65{word-spacing:-0.903276pt;}
.ws50{word-spacing:-0.850142pt;}
.wsb8{word-spacing:-0.812954pt;}
.wsb{word-spacing:-0.797008pt;}
.ws25{word-spacing:-0.743874pt;}
.ws12{word-spacing:-0.531339pt;}
.wsb2{word-spacing:-0.526029pt;}
.wsbc{word-spacing:-0.430387pt;}
.ws93{word-spacing:-0.425071pt;}
.ws48{word-spacing:-0.318803pt;}
.wsbb{word-spacing:-0.286925pt;}
.ws1e{word-spacing:-0.265669pt;}
.wsdb{word-spacing:-0.239104pt;}
.ws4b{word-spacing:-0.212535pt;}
.ws64{word-spacing:-0.191283pt;}
.ws27{word-spacing:-0.159402pt;}
.ws94{word-spacing:-0.143462pt;}
.ws19{word-spacing:-0.106268pt;}
.ws98{word-spacing:-0.095642pt;}
.ws14{word-spacing:-0.053134pt;}
.ws7a{word-spacing:-0.047821pt;}
.wsd4{word-spacing:-0.024363pt;}
.wsb6{word-spacing:-0.008269pt;}
.wsca{word-spacing:-0.008098pt;}
.wsd5{word-spacing:-0.005743pt;}
.wsd7{word-spacing:-0.003891pt;}
.wsb3{word-spacing:-0.003516pt;}
.ws4e{word-spacing:-0.002630pt;}
.wsd8{word-spacing:-0.002483pt;}
.ws22{word-spacing:-0.002149pt;}
.wsc9{word-spacing:-0.001681pt;}
.ws5{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.047821pt;}
.wsa{word-spacing:0.053134pt;}
.wsac{word-spacing:0.095642pt;}
.ws7{word-spacing:0.106268pt;}
.wsb4{word-spacing:0.143462pt;}
.wsd6{word-spacing:0.145784pt;}
.ws6{word-spacing:0.159402pt;}
.wsc2{word-spacing:0.191283pt;}
.ws34{word-spacing:0.212535pt;}
.ws63{word-spacing:0.239104pt;}
.ws18{word-spacing:0.265669pt;}
.ws75{word-spacing:0.318803pt;}
.ws31{word-spacing:0.371937pt;}
.ws4{word-spacing:0.375335pt;}
.ws99{word-spacing:0.425071pt;}
.ws86{word-spacing:0.478205pt;}
.wsb0{word-spacing:0.478208pt;}
.ws82{word-spacing:0.531339pt;}
.wsa6{word-spacing:0.584473pt;}
.ws87{word-spacing:0.637606pt;}
.ws6d{word-spacing:0.645745pt;}
.ws6b{word-spacing:0.645878pt;}
.ws71{word-spacing:0.647612pt;}
.ws72{word-spacing:0.649478pt;}
.ws6f{word-spacing:0.651078pt;}
.ws69{word-spacing:0.652545pt;}
.ws73{word-spacing:0.665558pt;}
.ws70{word-spacing:0.677568pt;}
.ws6c{word-spacing:0.679301pt;}
.ws6e{word-spacing:0.679435pt;}
.ws68{word-spacing:0.717312pt;}
.ws39{word-spacing:0.797008pt;}
.ws3d{word-spacing:0.850142pt;}
.ws5c{word-spacing:0.903276pt;}
.wsc0{word-spacing:0.908595pt;}
.wsc4{word-spacing:1.004237pt;}
.ws8a{word-spacing:1.009543pt;}
.ws17{word-spacing:1.062677pt;}
.ws2d{word-spacing:1.115811pt;}
.ws60{word-spacing:1.168945pt;}
.ws30{word-spacing:1.222079pt;}
.wsc1{word-spacing:1.243341pt;}
.wse{word-spacing:1.275213pt;}
.wsdf{word-spacing:1.291162pt;}
.ws4d{word-spacing:1.328347pt;}
.wsd{word-spacing:1.381481pt;}
.wscf{word-spacing:1.434624pt;}
.ws55{word-spacing:1.487748pt;}
.ws41{word-spacing:1.540882pt;}
.ws3b{word-spacing:1.700284pt;}
.ws95{word-spacing:1.753418pt;}
.ws4c{word-spacing:1.806551pt;}
.ws20{word-spacing:1.859685pt;}
.ws79{word-spacing:1.865011pt;}
.ws4a{word-spacing:2.019087pt;}
.ws3c{word-spacing:2.072221pt;}
.ws24{word-spacing:2.178489pt;}
.ws54{word-spacing:2.231622pt;}
.ws58{word-spacing:2.284756pt;}
.ws53{word-spacing:2.337890pt;}
.ws42{word-spacing:2.438861pt;}
.wsf{word-spacing:2.497292pt;}
.wsa9{word-spacing:2.550426pt;}
.ws9{word-spacing:2.550432pt;}
.wsc3{word-spacing:2.582323pt;}
.ws11{word-spacing:2.603559pt;}
.wsa1{word-spacing:2.656693pt;}
.wsdc{word-spacing:2.725786pt;}
.ws2a{word-spacing:2.762961pt;}
.wsc6{word-spacing:2.821427pt;}
.wsd3{word-spacing:2.861508pt;}
.wsde{word-spacing:2.862515pt;}
.wsbd{word-spacing:2.863061pt;}
.wsdd{word-spacing:2.863249pt;}
.wsb5{word-spacing:2.864077pt;}
.wsba{word-spacing:2.864461pt;}
.wscb{word-spacing:2.865707pt;}
.wsc7{word-spacing:2.866731pt;}
.wsbe{word-spacing:2.869248pt;}
.wsad{word-spacing:2.869401pt;}
.wsda{word-spacing:2.871987pt;}
.wsbf{word-spacing:2.917069pt;}
.ws1f{word-spacing:2.922363pt;}
.ws59{word-spacing:2.975497pt;}
.ws77{word-spacing:3.012710pt;}
.ws2e{word-spacing:3.028630pt;}
.wsd9{word-spacing:3.051949pt;}
.wsc8{word-spacing:3.060531pt;}
.ws49{word-spacing:3.081764pt;}
.wse0{word-spacing:3.108352pt;}
.ws8c{word-spacing:3.134898pt;}
.wscd{word-spacing:3.156173pt;}
.wsc{word-spacing:3.188032pt;}
.ws5f{word-spacing:3.190167pt;}
.ws38{word-spacing:3.241166pt;}
.ws9a{word-spacing:3.347434pt;}
.wsa0{word-spacing:3.395277pt;}
.ws9b{word-spacing:3.400567pt;}
.wsd2{word-spacing:3.443098pt;}
.ws46{word-spacing:3.506835pt;}
.ws78{word-spacing:3.538739pt;}
.ws3a{word-spacing:3.559969pt;}
.ws8b{word-spacing:3.613103pt;}
.ws97{word-spacing:3.666237pt;}
.ws57{word-spacing:3.719371pt;}
.ws96{word-spacing:3.772505pt;}
.ws28{word-spacing:3.825638pt;}
.ws1c{word-spacing:3.825664pt;}
.wsaa{word-spacing:3.873485pt;}
.ws10{word-spacing:3.985040pt;}
.wsaf{word-spacing:3.996956pt;}
.ws9c{word-spacing:4.038174pt;}
.wsd1{word-spacing:4.064768pt;}
.ws8d{word-spacing:4.112589pt;}
.wsa7{word-spacing:4.144442pt;}
.ws88{word-spacing:4.250709pt;}
.ws5b{word-spacing:4.410111pt;}
.ws40{word-spacing:4.463245pt;}
.ws9f{word-spacing:4.516379pt;}
.ws74{word-spacing:4.569513pt;}
.ws76{word-spacing:4.622646pt;}
.ws47{word-spacing:4.728914pt;}
.wsa2{word-spacing:4.782048pt;}
.ws2f{word-spacing:4.888316pt;}
.wsab{word-spacing:4.925542pt;}
.wsce{word-spacing:5.021184pt;}
.ws36{word-spacing:5.047717pt;}
.ws9d{word-spacing:5.100851pt;}
.ws15{word-spacing:5.153985pt;}
.ws51{word-spacing:5.207119pt;}
.ws1b{word-spacing:5.313387pt;}
.ws81{word-spacing:5.419654pt;}
.ws56{word-spacing:5.472788pt;}
.ws21{word-spacing:5.525922pt;}
.ws89{word-spacing:5.579056pt;}
.ws9e{word-spacing:5.685324pt;}
.ws62{word-spacing:5.844725pt;}
.wsa8{word-spacing:5.897859pt;}
.ws45{word-spacing:5.950993pt;}
.ws3f{word-spacing:6.057261pt;}
.ws83{word-spacing:6.322930pt;}
.wsc5{word-spacing:6.360166pt;}
.ws32{word-spacing:6.376064pt;}
.ws85{word-spacing:6.588599pt;}
.ws84{word-spacing:6.641733pt;}
.ws52{word-spacing:6.960537pt;}
.ws5d{word-spacing:7.545009pt;}
.ws16{word-spacing:7.863812pt;}
.ws8f{word-spacing:7.916946pt;}
.ws26{word-spacing:8.448285pt;}
.ws90{word-spacing:8.660820pt;}
.ws91{word-spacing:8.713954pt;}
.ws5a{word-spacing:8.873356pt;}
.ws92{word-spacing:10.042301pt;}
.ws1a{word-spacing:10.241625pt;}
.ws1d{word-spacing:10.520506pt;}
.ws44{word-spacing:10.573639pt;}
.wsd0{word-spacing:11.190067pt;}
.ws2b{word-spacing:11.901986pt;}
.ws29{word-spacing:15.196286pt;}
.ws5e{word-spacing:15.945370pt;}
.ws1{word-spacing:19.715148pt;}
.ws80{word-spacing:80.550942pt;}
.wsb1{word-spacing:104.584090pt;}
.ws7e{word-spacing:126.246067pt;}
.ws7b{word-spacing:126.299201pt;}
.ws7d{word-spacing:154.938133pt;}
.ws7f{word-spacing:304.695543pt;}
.ws7c{word-spacing:317.980877pt;}
.ws6a{word-spacing:558.224403pt;}
._4{margin-left:-10.424934pt;}
._5{margin-left:-7.077478pt;}
._7{margin-left:-6.004127pt;}
._2{margin-left:-4.797974pt;}
._e{margin-left:-3.719371pt;}
._1{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._8{width:2.668620pt;}
._13{width:3.931906pt;}
._0{width:9.670336pt;}
._a{width:11.009350pt;}
._19{width:12.465194pt;}
._9{width:13.671338pt;}
._d{width:14.856237pt;}
._b{width:16.599012pt;}
._16{width:17.757334pt;}
._f{width:19.563886pt;}
._15{width:20.892233pt;}
._10{width:22.475626pt;}
._c{width:24.388445pt;}
._3d{width:25.473947pt;}
._18{width:26.593483pt;}
._1d{width:27.682745pt;}
._6{width:29.648896pt;}
._2d{width:30.764509pt;}
._17{width:32.517926pt;}
._3c{width:33.793139pt;}
._1a{width:34.855817pt;}
._14{width:36.131029pt;}
._1b{width:39.106526pt;}
._45{width:54.993920pt;}
._44{width:63.745126pt;}
._43{width:72.820427pt;}
._40{width:83.064730pt;}
._3e{width:86.986035pt;}
._2f{width:88.308486pt;}
._30{width:94.859660pt;}
._42{width:96.050693pt;}
._41{width:97.602253pt;}
._3f{width:113.861325pt;}
._1e{width:134.917562pt;}
._3b{width:139.582668pt;}
._32{width:160.198608pt;}
._37{width:166.893475pt;}
._39{width:180.176942pt;}
._1c{width:185.771923pt;}
._1f{width:190.229917pt;}
._33{width:200.102142pt;}
._3a{width:230.441580pt;}
._36{width:263.650246pt;}
._38{width:276.933713pt;}
._31{width:323.478980pt;}
._2b{width:428.258965pt;}
._28{width:441.542432pt;}
._2a{width:448.184165pt;}
._24{width:454.825899pt;}
._25{width:468.109365pt;}
._34{width:471.828736pt;}
._22{width:474.751099pt;}
._35{width:485.165337pt;}
._29{width:516.886255pt;}
._27{width:530.169722pt;}
._26{width:543.453188pt;}
._23{width:556.736655pt;}
._21{width:576.661855pt;}
._20{width:603.228788pt;}
._2c{width:1171.139482pt;}
._11{width:1734.058923pt;}
._2e{width:2278.789589pt;}
._12{width:2300.042923pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsa{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fs6{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fsb{font-size:69.472000pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y161{bottom:3.516126pt;}
.y7c{bottom:3.884247pt;}
.y10a{bottom:5.664664pt;}
.y43{bottom:40.818667pt;}
.y182{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y15f{bottom:91.570667pt;}
.y28d{bottom:94.188000pt;}
.y108{bottom:95.596000pt;}
.y201{bottom:95.842667pt;}
.y1ca{bottom:96.365333pt;}
.y19e{bottom:96.370667pt;}
.yd9{bottom:97.648000pt;}
.y258{bottom:99.808000pt;}
.y7a{bottom:103.473333pt;}
.y14{bottom:105.020000pt;}
.y181{bottom:107.209333pt;}
.y12c{bottom:107.374667pt;}
.y42{bottom:108.192000pt;}
.y15e{bottom:110.141333pt;}
.y28c{bottom:111.210667pt;}
.y19d{bottom:112.514667pt;}
.yd8{bottom:113.792000pt;}
.y107{bottom:114.166667pt;}
.y200{bottom:114.412000pt;}
.y1c9{bottom:114.936000pt;}
.y19c{bottom:114.941333pt;}
.yd7{bottom:116.218667pt;}
.y257{bottom:116.830667pt;}
.y1e6{bottom:118.613333pt;}
.y79{bottom:119.616000pt;}
.y13{bottom:120.920000pt;}
.y78{bottom:122.042667pt;}
.yce{bottom:123.278667pt;}
.y180{bottom:125.780000pt;}
.y12b{bottom:125.945333pt;}
.ya0{bottom:126.406667pt;}
.y41{bottom:126.761333pt;}
.y122{bottom:127.352000pt;}
.y28b{bottom:128.233333pt;}
.y15d{bottom:128.712000pt;}
.y226{bottom:130.746667pt;}
.y1c8{bottom:131.080000pt;}
.y105{bottom:132.737333pt;}
.y1ff{bottom:132.982667pt;}
.y1c7{bottom:133.505333pt;}
.y19b{bottom:133.510667pt;}
.y256{bottom:133.853333pt;}
.yd6{bottom:134.788000pt;}
.y12{bottom:136.821333pt;}
.y1e5{bottom:137.182667pt;}
.y106{bottom:137.558667pt;}
.y77{bottom:140.613333pt;}
.ycd{bottom:141.848000pt;}
.y121{bottom:143.293333pt;}
.y17f{bottom:144.350667pt;}
.y12a{bottom:144.516000pt;}
.y9f{bottom:144.976000pt;}
.y28a{bottom:145.256000pt;}
.y40{bottom:145.332000pt;}
.y15c{bottom:147.281333pt;}
.y225{bottom:148.078667pt;}
.y19a{bottom:149.654667pt;}
.y255{bottom:150.876000pt;}
.yd5{bottom:150.932000pt;}
.y104{bottom:151.308000pt;}
.y1fe{bottom:151.553333pt;}
.y1c6{bottom:152.076000pt;}
.y199{bottom:152.081333pt;}
.y11{bottom:152.721333pt;}
.yd3{bottom:153.358667pt;}
.y1e4{bottom:155.753333pt;}
.yd4{bottom:158.180000pt;}
.y76{bottom:159.184000pt;}
.y120{bottom:159.233333pt;}
.ycc{bottom:160.418667pt;}
.y289{bottom:162.278667pt;}
.y17d{bottom:162.920000pt;}
.y129{bottom:163.085333pt;}
.y9e{bottom:163.546667pt;}
.y3f{bottom:163.902667pt;}
.y224{bottom:165.410667pt;}
.y15b{bottom:165.852000pt;}
.y17e{bottom:167.742667pt;}
.y254{bottom:167.898667pt;}
.y198{bottom:168.225333pt;}
.y10{bottom:168.621333pt;}
.y103{bottom:169.877333pt;}
.y1fd{bottom:170.122667pt;}
.y1c5{bottom:170.646667pt;}
.y197{bottom:170.652000pt;}
.yd2{bottom:171.929333pt;}
.y1e3{bottom:174.324000pt;}
.y11f{bottom:175.173333pt;}
.y75{bottom:177.753333pt;}
.ycb{bottom:178.989333pt;}
.y17b{bottom:179.064000pt;}
.y288{bottom:179.301333pt;}
.y17a{bottom:181.490667pt;}
.y128{bottom:181.656000pt;}
.y9d{bottom:182.117333pt;}
.y3e{bottom:182.472000pt;}
.y223{bottom:182.742667pt;}
.y15a{bottom:184.422667pt;}
.yf{bottom:184.522667pt;}
.y253{bottom:184.921333pt;}
.y17c{bottom:186.313333pt;}
.y102{bottom:188.448000pt;}
.y1fc{bottom:188.693333pt;}
.y1c3{bottom:189.216000pt;}
.y196{bottom:189.222667pt;}
.yd1{bottom:190.498667pt;}
.y11e{bottom:191.113333pt;}
.y1e1{bottom:192.893333pt;}
.y74{bottom:193.897333pt;}
.y1c4{bottom:194.038667pt;}
.y73{bottom:196.324000pt;}
.yca{bottom:197.558667pt;}
.y1e2{bottom:197.716000pt;}
.y179{bottom:200.061333pt;}
.y222{bottom:200.074667pt;}
.ye{bottom:200.422667pt;}
.y9c{bottom:200.686667pt;}
.y3d{bottom:201.042667pt;}
.y252{bottom:201.944000pt;}
.y159{bottom:202.992000pt;}
.y127{bottom:204.212000pt;}
.y1c2{bottom:205.360000pt;}
.y101{bottom:207.018667pt;}
.y11d{bottom:207.053333pt;}
.y1fb{bottom:207.264000pt;}
.y1c1{bottom:207.786667pt;}
.y195{bottom:207.792000pt;}
.y1e0{bottom:211.464000pt;}
.y72{bottom:212.468000pt;}
.y287{bottom:213.346667pt;}
.y71{bottom:214.894667pt;}
.yc9{bottom:216.129333pt;}
.y178{bottom:216.205333pt;}
.y221{bottom:217.408000pt;}
.y177{bottom:218.632000pt;}
.y251{bottom:218.968000pt;}
.y9a{bottom:219.257333pt;}
.y3c{bottom:219.613333pt;}
.y158{bottom:221.562667pt;}
.yd0{bottom:222.168000pt;}
.y11c{bottom:222.993333pt;}
.y194{bottom:223.936000pt;}
.y9b{bottom:224.080000pt;}
.yd{bottom:224.293333pt;}
.y1fa{bottom:225.833333pt;}
.y1c0{bottom:226.357333pt;}
.y193{bottom:226.362667pt;}
.y100{bottom:229.573333pt;}
.y1df{bottom:230.034667pt;}
.y286{bottom:230.369333pt;}
.y70{bottom:233.464000pt;}
.yc8{bottom:234.700000pt;}
.y250{bottom:235.990667pt;}
.y176{bottom:237.201333pt;}
.y99{bottom:237.828000pt;}
.y3b{bottom:238.182667pt;}
.y11b{bottom:238.934667pt;}
.y157{bottom:240.133333pt;}
.yc{bottom:240.193333pt;}
.y126{bottom:240.756000pt;}
.y191{bottom:242.506667pt;}
.y1f9{bottom:244.404000pt;}
.y1bf{bottom:244.928000pt;}
.y190{bottom:244.933333pt;}
.y285{bottom:247.392000pt;}
.y1de{bottom:248.604000pt;}
.yff{bottom:249.033333pt;}
.y192{bottom:249.754667pt;}
.y220{bottom:250.680000pt;}
.y6f{bottom:252.034667pt;}
.y24f{bottom:253.013333pt;}
.yc7{bottom:253.269333pt;}
.y175{bottom:253.345333pt;}
.y11a{bottom:254.874667pt;}
.y174{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y97{bottom:256.397333pt;}
.y3a{bottom:256.753333pt;}
.y125{bottom:257.852000pt;}
.y156{bottom:258.702667pt;}
.y1be{bottom:261.070667pt;}
.y98{bottom:261.220000pt;}
.y1f8{bottom:262.974667pt;}
.y1bc{bottom:263.497333pt;}
.y18f{bottom:263.502667pt;}
.y284{bottom:264.414667pt;}
.y1dd{bottom:267.174667pt;}
.y1bd{bottom:268.320000pt;}
.y21f{bottom:269.250667pt;}
.y24e{bottom:270.036000pt;}
.y6e{bottom:270.605333pt;}
.yfe{bottom:270.750667pt;}
.y119{bottom:270.814667pt;}
.yc6{bottom:271.840000pt;}
.ya{bottom:271.994667pt;}
.y172{bottom:274.342667pt;}
.y123{bottom:274.948000pt;}
.y96{bottom:274.968000pt;}
.y39{bottom:275.324000pt;}
.y155{bottom:277.273333pt;}
.y173{bottom:279.164000pt;}
.y124{bottom:279.286667pt;}
.y1ba{bottom:279.641333pt;}
.y283{bottom:281.437333pt;}
.y1f7{bottom:281.545333pt;}
.y1b9{bottom:282.068000pt;}
.y18e{bottom:282.073333pt;}
.y1dc{bottom:285.745333pt;}
.y118{bottom:286.754667pt;}
.y1bb{bottom:286.889333pt;}
.y24d{bottom:287.058667pt;}
.y21e{bottom:287.820000pt;}
.y9{bottom:287.894667pt;}
.y6d{bottom:289.176000pt;}
.yc5{bottom:290.410667pt;}
.y171{bottom:292.912000pt;}
.y95{bottom:293.538667pt;}
.y154{bottom:295.844000pt;}
.y282{bottom:296.129333pt;}
.y38{bottom:297.878667pt;}
.y18d{bottom:298.217333pt;}
.y281{bottom:298.460000pt;}
.y1f6{bottom:300.114667pt;}
.y1b8{bottom:300.638667pt;}
.y18c{bottom:300.644000pt;}
.y8{bottom:303.794667pt;}
.y24c{bottom:304.081333pt;}
.y1da{bottom:304.316000pt;}
.yfd{bottom:305.261333pt;}
.y21d{bottom:306.390667pt;}
.y6c{bottom:307.745333pt;}
.yc4{bottom:308.980000pt;}
.y170{bottom:309.056000pt;}
.y117{bottom:309.097333pt;}
.y1db{bottom:309.137333pt;}
.y16f{bottom:311.482667pt;}
.y153{bottom:314.413333pt;}
.y280{bottom:315.482667pt;}
.y94{bottom:316.093333pt;}
.y1f5{bottom:318.685333pt;}
.y1b6{bottom:319.208000pt;}
.y18b{bottom:319.213333pt;}
.y7{bottom:319.696000pt;}
.y24b{bottom:321.104000pt;}
.y1d8{bottom:322.885333pt;}
.yfc{bottom:323.832000pt;}
.y6b{bottom:323.889333pt;}
.y1b7{bottom:324.030667pt;}
.y21c{bottom:324.961333pt;}
.y6a{bottom:326.316000pt;}
.y1d9{bottom:327.708000pt;}
.y16e{bottom:330.053333pt;}
.yc3{bottom:331.536000pt;}
.y27f{bottom:332.506667pt;}
.y152{bottom:332.984000pt;}
.y1b5{bottom:335.352000pt;}
.y6{bottom:335.596000pt;}
.y1f4{bottom:337.256000pt;}
.y1b4{bottom:337.778667pt;}
.y18a{bottom:337.784000pt;}
.y24a{bottom:338.126667pt;}
.y116{bottom:338.133333pt;}
.y1d7{bottom:341.456000pt;}
.y21b{bottom:343.530667pt;}
.y69{bottom:344.886667pt;}
.y16d{bottom:346.196000pt;}
.y93{bottom:347.509333pt;}
.y16c{bottom:348.622667pt;}
.y27e{bottom:349.529333pt;}
.y151{bottom:351.554667pt;}
.y249{bottom:355.149333pt;}
.y114{bottom:355.229333pt;}
.y1f3{bottom:355.825333pt;}
.y1b2{bottom:356.349333pt;}
.y5{bottom:356.809333pt;}
.yfb{bottom:357.730667pt;}
.y115{bottom:359.569333pt;}
.y1d6{bottom:360.026667pt;}
.y189{bottom:360.340000pt;}
.y1b3{bottom:361.170667pt;}
.y21a{bottom:362.101333pt;}
.yc2{bottom:362.952000pt;}
.y68{bottom:363.456000pt;}
.y16b{bottom:364.766667pt;}
.y91{bottom:366.080000pt;}
.y27d{bottom:366.552000pt;}
.yfa{bottom:366.844000pt;}
.y16a{bottom:367.193333pt;}
.y37{bottom:368.289333pt;}
.y150{bottom:370.125333pt;}
.y92{bottom:370.901333pt;}
.y248{bottom:372.172000pt;}
.y4{bottom:372.710667pt;}
.y1f2{bottom:374.396000pt;}
.y1b1{bottom:374.918667pt;}
.y219{bottom:380.672000pt;}
.yc1{bottom:381.521333pt;}
.y67{bottom:382.026667pt;}
.y1d5{bottom:382.581333pt;}
.y27c{bottom:383.574667pt;}
.y90{bottom:384.649333pt;}
.y169{bottom:385.764000pt;}
.y36{bottom:386.860000pt;}
.y113{bottom:388.210667pt;}
.y3{bottom:388.610667pt;}
.y14f{bottom:388.694667pt;}
.y247{bottom:389.194667pt;}
.y1b0{bottom:391.062667pt;}
.y1f1{bottom:392.966667pt;}
.y1ae{bottom:393.489333pt;}
.y188{bottom:396.884000pt;}
.y1af{bottom:398.312000pt;}
.y218{bottom:399.241333pt;}
.yc0{bottom:400.092000pt;}
.y66{bottom:400.597333pt;}
.y168{bottom:401.908000pt;}
.y8f{bottom:403.220000pt;}
.y167{bottom:404.333333pt;}
.y2{bottom:404.510667pt;}
.y246{bottom:406.217333pt;}
.y112{bottom:406.781333pt;}
.yf9{bottom:407.172000pt;}
.y14e{bottom:407.265333pt;}
.y1f0{bottom:411.536000pt;}
.y187{bottom:411.648000pt;}
.y1ad{bottom:412.060000pt;}
.y186{bottom:413.980000pt;}
.y27b{bottom:417.620000pt;}
.y217{bottom:417.812000pt;}
.ybf{bottom:418.662667pt;}
.y1d4{bottom:419.125333pt;}
.y65{bottom:419.166667pt;}
.y35{bottom:421.370667pt;}
.y8e{bottom:421.790667pt;}
.y166{bottom:422.904000pt;}
.y245{bottom:423.240000pt;}
.y111{bottom:425.350667pt;}
.y1{bottom:425.725333pt;}
.yf8{bottom:425.742667pt;}
.y14d{bottom:425.836000pt;}
.y1ef{bottom:430.106667pt;}
.y1ab{bottom:430.629333pt;}
.y1d3{bottom:433.890667pt;}
.y27a{bottom:434.642667pt;}
.y1ac{bottom:435.452000pt;}
.y1d2{bottom:436.221333pt;}
.y216{bottom:436.382667pt;}
.ybe{bottom:437.232000pt;}
.y64{bottom:437.737333pt;}
.y34{bottom:439.940000pt;}
.y244{bottom:440.262667pt;}
.y8d{bottom:440.360000pt;}
.y110{bottom:443.921333pt;}
.yf7{bottom:444.312000pt;}
.y14c{bottom:444.405333pt;}
.y165{bottom:445.460000pt;}
.y1aa{bottom:446.773333pt;}
.y1ee{bottom:448.677333pt;}
.y1a9{bottom:449.200000pt;}
.y279{bottom:451.665333pt;}
.y214{bottom:454.953333pt;}
.ybd{bottom:455.802667pt;}
.y63{bottom:456.308000pt;}
.y243{bottom:457.285333pt;}
.y33{bottom:458.510667pt;}
.y8c{bottom:458.930667pt;}
.y215{bottom:459.774667pt;}
.y10f{bottom:462.492000pt;}
.yf6{bottom:462.882667pt;}
.y14b{bottom:462.976000pt;}
.y164{bottom:464.920000pt;}
.y1a8{bottom:465.344000pt;}
.y1ed{bottom:467.246667pt;}
.y1a6{bottom:467.770667pt;}
.y278{bottom:468.688000pt;}
.y213{bottom:471.096000pt;}
.y242{bottom:471.977333pt;}
.y1a7{bottom:472.592000pt;}
.y212{bottom:473.522667pt;}
.y241{bottom:474.308000pt;}
.ybc{bottom:474.373333pt;}
.y62{bottom:474.877333pt;}
.y32{bottom:477.081333pt;}
.y8a{bottom:477.501333pt;}
.y10e{bottom:481.061333pt;}
.yf5{bottom:481.453333pt;}
.y14a{bottom:481.546667pt;}
.y8b{bottom:482.322667pt;}
.y1a5{bottom:483.914667pt;}
.y277{bottom:485.710667pt;}
.y1ec{bottom:485.817333pt;}
.y1a4{bottom:486.341333pt;}
.y240{bottom:491.330667pt;}
.y211{bottom:492.093333pt;}
.ybb{bottom:492.942667pt;}
.y61{bottom:493.448000pt;}
.y31{bottom:495.650667pt;}
.y89{bottom:496.070667pt;}
.y163{bottom:499.909333pt;}
.yf4{bottom:500.022667pt;}
.y148{bottom:500.116000pt;}
.y276{bottom:502.733333pt;}
.y1eb{bottom:504.388000pt;}
.y1a3{bottom:504.910667pt;}
.y149{bottom:504.938667pt;}
.y210{bottom:508.237333pt;}
.y23f{bottom:508.353333pt;}
.y20f{bottom:510.664000pt;}
.yba{bottom:511.513333pt;}
.y60{bottom:512.018667pt;}
.y10d{bottom:512.730667pt;}
.y2f{bottom:514.221333pt;}
.y88{bottom:514.641333pt;}
.y162{bottom:517.005333pt;}
.y147{bottom:518.686667pt;}
.y30{bottom:519.042667pt;}
.y275{bottom:519.756000pt;}
.yf3{bottom:522.578667pt;}
.y1ea{bottom:522.958667pt;}
.y23e{bottom:525.376000pt;}
.y20e{bottom:526.806667pt;}
.y1a2{bottom:527.466667pt;}
.y20d{bottom:529.233333pt;}
.y10c{bottom:529.826667pt;}
.yb9{bottom:530.084000pt;}
.y2e{bottom:530.365333pt;}
.y5f{bottom:530.589333pt;}
.y2d{bottom:532.792000pt;}
.y87{bottom:533.212000pt;}
.y274{bottom:536.778667pt;}
.y146{bottom:537.257333pt;}
.y160{bottom:539.598667pt;}
.y23d{bottom:542.398667pt;}
.y10b{bottom:546.922667pt;}
.y20c{bottom:547.804000pt;}
.yb8{bottom:548.653333pt;}
.y2c{bottom:548.936000pt;}
.y5e{bottom:549.158667pt;}
.y2b{bottom:551.361333pt;}
.y86{bottom:551.782667pt;}
.y273{bottom:553.801333pt;}
.yf2{bottom:553.994667pt;}
.y1e9{bottom:554.626667pt;}
.y145{bottom:555.826667pt;}
.y23c{bottom:563.406667pt;}
.y1a1{bottom:564.010667pt;}
.y20b{bottom:566.374667pt;}
.y109{bottom:566.860000pt;}
.yb7{bottom:567.224000pt;}
.y2a{bottom:567.505333pt;}
.y5d{bottom:567.729333pt;}
.y29{bottom:569.932000pt;}
.y85{bottom:570.352000pt;}
.y272{bottom:570.824000pt;}
.y1e7{bottom:571.722667pt;}
.yf1{bottom:572.564000pt;}
.y144{bottom:574.397333pt;}
.y1e8{bottom:576.062667pt;}
.y1a0{bottom:578.774667pt;}
.y19f{bottom:581.106667pt;}
.y20a{bottom:584.944000pt;}
.yb6{bottom:585.794667pt;}
.y5c{bottom:586.300000pt;}
.y271{bottom:587.846667pt;}
.y28{bottom:588.502667pt;}
.yf0{bottom:591.134667pt;}
.y84{bottom:592.908000pt;}
.y143{bottom:592.968000pt;}
.y23b{bottom:598.874667pt;}
.y209{bottom:603.514667pt;}
.yb5{bottom:604.365333pt;}
.y5b{bottom:604.869333pt;}
.y27{bottom:607.073333pt;}
.yef{bottom:609.705333pt;}
.y142{bottom:611.538667pt;}
.y23a{bottom:616.206667pt;}
.y270{bottom:621.892000pt;}
.y208{bottom:622.085333pt;}
.yb4{bottom:622.934667pt;}
.y5a{bottom:623.440000pt;}
.y83{bottom:624.322667pt;}
.y26{bottom:625.642667pt;}
.yee{bottom:628.274667pt;}
.y141{bottom:630.108000pt;}
.y239{bottom:633.538667pt;}
.ycf{bottom:634.364000pt;}
.y26f{bottom:638.914667pt;}
.y207{bottom:640.654667pt;}
.yb3{bottom:641.505333pt;}
.y59{bottom:642.010667pt;}
.y82{bottom:642.893333pt;}
.y25{bottom:644.213333pt;}
.yed{bottom:646.845333pt;}
.y140{bottom:648.678667pt;}
.y238{bottom:650.870667pt;}
.y26e{bottom:655.937333pt;}
.y206{bottom:659.225333pt;}
.y58{bottom:660.580000pt;}
.y81{bottom:661.464000pt;}
.y24{bottom:662.784000pt;}
.yb2{bottom:664.060000pt;}
.yec{bottom:665.416000pt;}
.y13f{bottom:667.249333pt;}
.y237{bottom:668.202667pt;}
.y26d{bottom:672.961333pt;}
.y205{bottom:677.796000pt;}
.y57{bottom:679.150667pt;}
.y23{bottom:681.353333pt;}
.yeb{bottom:683.985333pt;}
.y80{bottom:684.018667pt;}
.y236{bottom:685.536000pt;}
.y13e{bottom:685.818667pt;}
.y26c{bottom:689.984000pt;}
.yb1{bottom:695.476000pt;}
.y204{bottom:696.365333pt;}
.y56{bottom:697.721333pt;}
.y22{bottom:699.924000pt;}
.yea{bottom:702.556000pt;}
.y235{bottom:702.868000pt;}
.y13d{bottom:704.389333pt;}
.y7f{bottom:705.736000pt;}
.y26b{bottom:707.006667pt;}
.yb0{bottom:714.046667pt;}
.y203{bottom:714.936000pt;}
.y55{bottom:716.290667pt;}
.y21{bottom:718.494667pt;}
.y234{bottom:720.200000pt;}
.ye9{bottom:721.126667pt;}
.y13c{bottom:722.960000pt;}
.y26a{bottom:724.029333pt;}
.yaf{bottom:732.616000pt;}
.y54{bottom:734.861333pt;}
.y20{bottom:737.064000pt;}
.y7e{bottom:737.405333pt;}
.y202{bottom:737.492000pt;}
.ye8{bottom:739.696000pt;}
.y269{bottom:741.052000pt;}
.y233{bottom:743.022667pt;}
.yae{bottom:751.186667pt;}
.y53{bottom:753.432000pt;}
.y7d{bottom:754.501333pt;}
.y268{bottom:758.074667pt;}
.ye7{bottom:758.266667pt;}
.y1f{bottom:763.605333pt;}
.y232{bottom:764.340000pt;}
.y13b{bottom:768.258667pt;}
.yad{bottom:769.757333pt;}
.y52{bottom:772.002667pt;}
.y7b{bottom:774.438667pt;}
.y267{bottom:775.097333pt;}
.ye6{bottom:776.837333pt;}
.y13a{bottom:784.198667pt;}
.yac{bottom:788.326667pt;}
.y51{bottom:790.572000pt;}
.y266{bottom:792.120000pt;}
.ye4{bottom:795.408000pt;}
.y231{bottom:798.850667pt;}
.y1e{bottom:799.178667pt;}
.y139{bottom:800.138667pt;}
.ye5{bottom:800.229333pt;}
.yab{bottom:806.897333pt;}
.y50{bottom:809.142667pt;}
.ye3{bottom:813.977333pt;}
.y138{bottom:816.078667pt;}
.y230{bottom:816.182667pt;}
.y1d{bottom:817.381333pt;}
.yaa{bottom:825.468000pt;}
.y265{bottom:826.165333pt;}
.y4f{bottom:827.713333pt;}
.y1c{bottom:831.728000pt;}
.y137{bottom:832.018667pt;}
.ye2{bottom:832.548000pt;}
.y22f{bottom:833.514667pt;}
.y290{bottom:838.984000pt;}
.y264{bottom:843.188000pt;}
.y4e{bottom:846.282667pt;}
.y136{bottom:847.960000pt;}
.ya9{bottom:848.022667pt;}
.y22e{bottom:850.846667pt;}
.ye0{bottom:851.118667pt;}
.ye1{bottom:855.940000pt;}
.y28f{bottom:856.006667pt;}
.y263{bottom:860.210667pt;}
.y135{bottom:863.900000pt;}
.y4d{bottom:864.853333pt;}
.y1d1{bottom:869.674667pt;}
.ydf{bottom:869.688000pt;}
.y1b{bottom:871.440000pt;}
.y28e{bottom:873.029333pt;}
.y22d{bottom:876.149333pt;}
.y262{bottom:877.233333pt;}
.ya8{bottom:879.438667pt;}
.y134{bottom:879.840000pt;}
.y185{bottom:880.997333pt;}
.y4c{bottom:883.424000pt;}
.y133{bottom:887.810667pt;}
.y184{bottom:888.245333pt;}
.yde{bottom:888.258667pt;}
.y19{bottom:890.010667pt;}
.y22c{bottom:893.481333pt;}
.y261{bottom:894.256000pt;}
.y1a{bottom:894.833333pt;}
.ya7{bottom:898.009333pt;}
.y4b{bottom:901.993333pt;}
.ydd{bottom:906.829333pt;}
.y260{bottom:911.278667pt;}
.y132{bottom:911.720000pt;}
.ya6{bottom:916.578667pt;}
.y22b{bottom:918.784000pt;}
.y131{bottom:919.690667pt;}
.y4a{bottom:920.564000pt;}
.y18{bottom:924.521333pt;}
.y1d0{bottom:925.385333pt;}
.ydc{bottom:925.398667pt;}
.y25f{bottom:928.301333pt;}
.ya5{bottom:935.149333pt;}
.y22a{bottom:936.116000pt;}
.y1ce{bottom:936.708000pt;}
.y49{bottom:939.134667pt;}
.y130{bottom:943.601333pt;}
.y1cf{bottom:943.956000pt;}
.y25e{bottom:945.324000pt;}
.ydb{bottom:947.954667pt;}
.ya4{bottom:951.293333pt;}
.y17{bottom:952.377333pt;}
.ya3{bottom:953.720000pt;}
.y48{bottom:957.704000pt;}
.y229{bottom:961.418667pt;}
.y25d{bottom:962.346667pt;}
.yda{bottom:963.429333pt;}
.y12f{bottom:965.942667pt;}
.ya2{bottom:972.289333pt;}
.y1cd{bottom:973.848000pt;}
.y47{bottom:976.274667pt;}
.y25c{bottom:977.038667pt;}
.y228{bottom:978.750667pt;}
.y25b{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.ya1{bottom:990.860000pt;}
.y1cb{bottom:992.418667pt;}
.y46{bottom:994.845333pt;}
.y227{bottom:996.082667pt;}
.y25a{bottom:996.392000pt;}
.y12e{bottom:997.636000pt;}
.y1cc{bottom:999.666667pt;}
.y183{bottom:1010.989333pt;}
.y259{bottom:1011.084000pt;}
.y45{bottom:1013.414667pt;}
.y12d{bottom:1014.732000pt;}
.y44{bottom:1067.149333pt;}
.h8{height:27.672303pt;}
.h11{height:28.023859pt;}
.h6{height:29.196090pt;}
.h2{height:32.284045pt;}
.hc{height:35.051460pt;}
.h17{height:36.077895pt;}
.h1a{height:36.662368pt;}
.hb{height:36.873667pt;}
.h9{height:36.896250pt;}
.h5{height:38.415786pt;}
.h3{height:38.947124pt;}
.h10{height:41.508454pt;}
.hd{height:46.099251pt;}
.ha{height:46.120196pt;}
.hf{height:47.725469pt;}
.h7{height:48.486756pt;}
.h1c{height:49.644045pt;}
.h1d{height:54.336794pt;}
.h12{height:54.342127pt;}
.h16{height:62.043109pt;}
.h4{height:69.148877pt;}
.h18{height:77.997530pt;}
.h19{height:78.002863pt;}
.h13{height:126.272489pt;}
.h14{height:162.725822pt;}
.he{height:252.261333pt;}
.h15{height:351.260000pt;}
.h1b{height:380.076000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:464.217867pt;}
.w2{width:492.752000pt;}
.w4{width:614.958667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x83{left:55.592000pt;}
.xf0{left:76.309333pt;}
.x8a{left:85.290667pt;}
.x95{left:89.182667pt;}
.x8b{left:95.253333pt;}
.x88{left:101.894667pt;}
.x2{left:170.796000pt;}
.x3{left:176.508000pt;}
.x89{left:204.012000pt;}
.xf{left:220.912000pt;}
.xe{left:221.858667pt;}
.x96{left:232.689333pt;}
.x97{left:238.401333pt;}
.x7a{left:239.985333pt;}
.x8e{left:248.890667pt;}
.x1f{left:250.204000pt;}
.x57{left:254.985333pt;}
.xb2{left:258.256000pt;}
.xb5{left:259.373333pt;}
.x98{left:260.730667pt;}
.x24{left:265.272000pt;}
.x75{left:266.606667pt;}
.x4{left:268.661333pt;}
.x25{left:271.913333pt;}
.x5{left:274.373333pt;}
.x4a{left:280.237333pt;}
.x52{left:283.244000pt;}
.xaa{left:284.148000pt;}
.x26{left:285.309333pt;}
.x71{left:286.368000pt;}
.xab{left:288.200000pt;}
.x6c{left:290.552000pt;}
.x27{left:291.950667pt;}
.x4b{left:293.521333pt;}
.xda{left:294.449333pt;}
.x50{left:297.109333pt;}
.x7d{left:299.202667pt;}
.x7c{left:302.524000pt;}
.x53{left:304.558667pt;}
.x7b{left:305.844000pt;}
.x94{left:308.024000pt;}
.x5f{left:309.898667pt;}
.x92{left:311.660000pt;}
.xac{left:313.560000pt;}
.x16{left:315.857333pt;}
.x7e{left:316.970667pt;}
.x7f{left:320.357333pt;}
.x17{left:321.569333pt;}
.x60{left:323.182667pt;}
.xc1{left:325.318667pt;}
.x61{left:326.437333pt;}
.xad{left:328.313333pt;}
.x84{left:330.606667pt;}
.x18{left:331.801333pt;}
.x80{left:333.641333pt;}
.x19{left:337.513333pt;}
.x62{left:339.721333pt;}
.xc2{left:341.262667pt;}
.xb6{left:342.433333pt;}
.xae{left:344.674667pt;}
.x35{left:345.829333pt;}
.xc3{left:346.974667pt;}
.x68{left:348.258667pt;}
.xb0{left:349.585333pt;}
.xf1{left:352.612000pt;}
.xa0{left:354.664000pt;}
.xaf{left:356.340000pt;}
.xcf{left:358.112000pt;}
.x36{left:359.113333pt;}
.x69{left:360.800000pt;}
.x37{left:362.464000pt;}
.xdc{left:363.354667pt;}
.xdb{left:364.418667pt;}
.x6{left:365.778667pt;}
.xd0{left:368.168000pt;}
.xf2{left:370.330667pt;}
.x7{left:371.490667pt;}
.xdd{left:373.962667pt;}
.x20{left:375.757333pt;}
.xa7{left:379.282667pt;}
.x21{left:382.398667pt;}
.xa8{left:384.994667pt;}
.xa3{left:387.460000pt;}
.xb3{left:390.717333pt;}
.xa9{left:395.644000pt;}
.x85{left:396.677333pt;}
.x91{left:398.520000pt;}
.xe5{left:399.428000pt;}
.xa4{left:403.529333pt;}
.x93{left:406.397333pt;}
.xe6{left:408.544000pt;}
.x58{left:413.801333pt;}
.xc0{left:414.750667pt;}
.xb4{left:415.974667pt;}
.xd7{left:418.565333pt;}
.x59{left:419.513333pt;}
.xa1{left:421.286667pt;}
.xd8{left:424.277333pt;}
.xa2{left:426.998667pt;}
.x6e{left:430.178667pt;}
.xce{left:432.501333pt;}
.x54{left:435.753333pt;}
.x64{left:437.148000pt;}
.x70{left:439.374667pt;}
.xd9{left:440.638667pt;}
.x55{left:441.804000pt;}
.x65{left:442.860000pt;}
.x6f{left:444.413333pt;}
.xeb{left:449.040000pt;}
.xcc{left:450.874667pt;}
.x66{left:453.092000pt;}
.x6a{left:454.134667pt;}
.x48{left:456.572000pt;}
.x74{left:458.762919pt;}
.x2f{left:460.020000pt;}
.x67{left:462.001333pt;}
.xec{left:463.218667pt;}
.xcb{left:464.432000pt;}
.x6b{left:466.317333pt;}
.x76{left:468.004000pt;}
.x49{left:469.856000pt;}
.x38{left:473.122667pt;}
.x30{left:474.250667pt;}
.x86{left:477.149333pt;}
.x72{left:480.693333pt;}
.x77{left:481.922667pt;}
.x99{left:486.716000pt;}
.x4e{left:488.332163pt;}
.x73{left:493.977333pt;}
.x9a{left:496.948000pt;}
.xbb{left:498.658667pt;}
.x22{left:500.366667pt;}
.x6d{left:503.118667pt;}
.x9b{left:505.684000pt;}
.x23{left:507.008000pt;}
.xd1{left:509.229333pt;}
.x78{left:510.706667pt;}
.xe2{left:512.478667pt;}
.xbd{left:514.041333pt;}
.xe3{left:518.529333pt;}
.xd2{left:519.878667pt;}
.x79{left:521.552000pt;}
.xcd{left:524.677333pt;}
.x4f{left:526.504000pt;}
.x56{left:530.481333pt;}
.x5a{left:532.878667pt;}
.xb7{left:534.869333pt;}
.x8{left:537.096000pt;}
.x42{left:539.657333pt;}
.xb8{left:540.580000pt;}
.x9{left:542.808000pt;}
.x5b{left:546.161333pt;}
.x5d{left:547.962667pt;}
.x1a{left:548.906667pt;}
.xb9{left:550.844000pt;}
.x43{left:552.941333pt;}
.xa5{left:555.272000pt;}
.xba{left:556.556000pt;}
.xc7{left:558.077333pt;}
.x1b{left:559.357333pt;}
.x5e{left:561.246667pt;}
.x82{left:564.094667pt;}
.x1c{left:565.069333pt;}
.xde{left:566.521333pt;}
.xc8{left:568.372000pt;}
.xca{left:569.576000pt;}
.xea{left:570.710667pt;}
.x44{left:572.773333pt;}
.xa6{left:574.673333pt;}
.xbe{left:577.434667pt;}
.xc4{left:580.406667pt;}
.xe7{left:582.553333pt;}
.x3c{left:584.806667pt;}
.xc5{left:586.118667pt;}
.x45{left:589.453333pt;}
.x3d{left:590.518667pt;}
.x12{left:593.705333pt;}
.x46{left:595.165333pt;}
.xc6{left:596.350667pt;}
.x8f{left:597.454667pt;}
.x13{left:599.417333pt;}
.x3e{left:600.760000pt;}
.xd3{left:603.676000pt;}
.x47{left:605.816000pt;}
.x14{left:609.649333pt;}
.x4c{left:612.956000pt;}
.x15{left:615.361333pt;}
.xee{left:616.513333pt;}
.x28{left:618.690667pt;}
.xef{left:622.225333pt;}
.x90{left:624.488000pt;}
.xa{left:626.190667pt;}
.x29{left:628.586667pt;}
.xd4{left:633.578667pt;}
.x2a{left:635.229333pt;}
.xd5{left:639.289333pt;}
.x39{left:641.681333pt;}
.xb{left:643.997333pt;}
.x3f{left:645.313333pt;}
.xe8{left:646.298667pt;}
.x9d{left:648.738667pt;}
.xd6{left:649.720000pt;}
.x40{left:651.025333pt;}
.x9e{left:654.450667pt;}
.x87{left:655.450667pt;}
.x10{left:660.440000pt;}
.xe9{left:662.893333pt;}
.x9f{left:665.100000pt;}
.x2b{left:666.129333pt;}
.x41{left:667.022667pt;}
.x63{left:668.922667pt;}
.x2c{left:672.770667pt;}
.x11{left:674.421333pt;}
.x3a{left:676.078667pt;}
.x8c{left:677.173333pt;}
.x3b{left:681.790667pt;}
.xf3{left:682.802667pt;}
.xdf{left:688.896000pt;}
.x1d{left:692.389333pt;}
.xe0{left:693.784000pt;}
.x81{left:695.918667pt;}
.x1e{left:698.101333pt;}
.xe1{left:699.834667pt;}
.x2d{left:702.060000pt;}
.xbf{left:703.172000pt;}
.x51{left:705.637333pt;}
.x8d{left:707.480000pt;}
.x2e{left:708.701333pt;}
.x5c{left:710.316000pt;}
.x9c{left:712.376000pt;}
.xbc{left:714.344000pt;}
.xed{left:717.314667pt;}
.xe4{left:721.881333pt;}
.x31{left:723.454667pt;}
.xb1{left:725.489333pt;}
.x4d{left:726.974667pt;}
.xc9{left:728.744000pt;}
.x32{left:730.097333pt;}
.x33{left:733.484000pt;}
.xc{left:738.334667pt;}
.x34{left:740.126667pt;}
.xd{left:744.046667pt;}
}




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