
    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_aeedec51ce49610ebe5e4f4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_f33dc8d208a2a600685f3507.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.181000;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_a0f194de5e809b4704bbf7a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f68cc8b6c10d4126438e18ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.500000;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_e3dcd06cd3fd27a981702264.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_5e3646c4f5a3d92cdb5c6a3a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_d215542bb675b7c1dcadc60e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_5371f12d754c767d0a88add6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_9d4a8a9481981ebb52605166.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_629c9bb91d598dfe7496c97f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_13587605baa9a81c82e08e14.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8c9111d09d80565c95a2d76d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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;}
.m2a{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2b{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m28{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);}
.m5{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);}
.m19{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);}
.mb{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);}
.m11{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);}
.md{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);}
.m3{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);}
.m4{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);}
.ma{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);}
.m1c{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);}
.m21{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);}
.m24{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);}
.m20{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m13{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);}
.m18{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);}
.m1e{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);}
.m1d{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m9{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);}
.m7{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);}
.m8{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);}
.m12{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);}
.m26{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);}
.mc{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);}
.m14{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);}
.m1a{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);}
.m27{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);}
.m17{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);}
.m15{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);}
.m1f{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);}
.m29{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);}
.m16{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);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:35.862000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.lsf{letter-spacing:0.004800px;}
.lsd{letter-spacing:2.614741px;}
.lsc{letter-spacing:2.620741px;}
.ls0{letter-spacing:8.367300px;}
.ls3{letter-spacing:11.954850px;}
.ls12{letter-spacing:12.840196px;}
.lse{letter-spacing:13.448400px;}
.ls11{letter-spacing:13.454400px;}
.ls7{letter-spacing:14.764573px;}
.ls9{letter-spacing:14.824349px;}
.lsa{letter-spacing:14.943900px;}
.ls6{letter-spacing:15.123227px;}
.ls5{letter-spacing:15.242778px;}
.ls10{letter-spacing:17.703341px;}
.lsb{letter-spacing:17.753353px;}
.ls8{letter-spacing:18.709763px;}
.ls2{letter-spacing:37.063654px;}
.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;}
}
.ws87{word-spacing:-29.006058px;}
.ws47{word-spacing:-14.943900px;}
.wsa5{word-spacing:-14.602921px;}
.wse0{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws86{word-spacing:-10.152839px;}
.wsad{word-spacing:-4.124516px;}
.ws18{word-spacing:-4.004965px;}
.wsc5{word-spacing:-3.765863px;}
.wsc0{word-spacing:-3.466985px;}
.wsc9{word-spacing:-3.407209px;}
.ws82{word-spacing:-3.287658px;}
.wsc8{word-spacing:-3.227882px;}
.wsa3{word-spacing:-3.168107px;}
.wsbe{word-spacing:-3.108331px;}
.wsc1{word-spacing:-3.048556px;}
.ws78{word-spacing:-2.929004px;}
.ws1c{word-spacing:-2.869229px;}
.ws5a{word-spacing:-2.689902px;}
.wscc{word-spacing:-2.570351px;}
.ws7e{word-spacing:-2.450800px;}
.ws4f{word-spacing:-2.391024px;}
.wsa0{word-spacing:-2.271473px;}
.wsaa{word-spacing:-2.211697px;}
.wsc6{word-spacing:-2.151922px;}
.wsa2{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.wsb{word-spacing:-2.032370px;}
.ws10b{word-spacing:-1.990541px;}
.ws3b{word-spacing:-1.912819px;}
.ws73{word-spacing:-1.853044px;}
.wsd6{word-spacing:-1.829146px;}
.wsbd{word-spacing:-1.793268px;}
.ws84{word-spacing:-1.733492px;}
.wsd4{word-spacing:-1.667750px;}
.ws8c{word-spacing:-1.613941px;}
.ws30{word-spacing:-1.494390px;}
.wsee{word-spacing:-1.452557px;}
.ws7c{word-spacing:-1.434614px;}
.wsa9{word-spacing:-1.374839px;}
.ws109{word-spacing:-1.344960px;}
.wsb9{word-spacing:-1.315063px;}
.ws55{word-spacing:-1.255288px;}
.ws19{word-spacing:-1.195512px;}
.ws1b{word-spacing:-1.135736px;}
.wsda{word-spacing:-1.129766px;}
.wsdb{word-spacing:-1.075968px;}
.ws27{word-spacing:-1.075961px;}
.ws16{word-spacing:-1.016185px;}
.wsf{word-spacing:-0.956410px;}
.ws77{word-spacing:-0.896634px;}
.ws1a{word-spacing:-0.836858px;}
.wsac{word-spacing:-0.806976px;}
.wse{word-spacing:-0.777083px;}
.ws4b{word-spacing:-0.717307px;}
.ws8f{word-spacing:-0.657532px;}
.ws7f{word-spacing:-0.597756px;}
.ws33{word-spacing:-0.537980px;}
.ws31{word-spacing:-0.478205px;}
.ws45{word-spacing:-0.418429px;}
.wsc4{word-spacing:-0.368420px;}
.ws32{word-spacing:-0.358654px;}
.wsd5{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.wsf4{word-spacing:-0.268992px;}
.ws22{word-spacing:-0.239102px;}
.wsd8{word-spacing:-0.215194px;}
.ws28{word-spacing:-0.179327px;}
.wsd7{word-spacing:-0.161395px;}
.ws10c{word-spacing:-0.153893px;}
.ws8{word-spacing:-0.119551px;}
.wsde{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.wsdc{word-spacing:-0.053798px;}
.ws107{word-spacing:-0.011367px;}
.wsf3{word-spacing:-0.009667px;}
.wsfb{word-spacing:-0.009418px;}
.wsf9{word-spacing:-0.007267px;}
.wse5{word-spacing:-0.003859px;}
.wsf0{word-spacing:-0.003610px;}
.wseb{word-spacing:-0.001267px;}
.ws3{word-spacing:0.000000px;}
.wse6{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.wsd2{word-spacing:0.107597px;}
.wsc{word-spacing:0.119551px;}
.wsa6{word-spacing:0.161395px;}
.ws9{word-spacing:0.179327px;}
.wsa7{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.wse3{word-spacing:0.268992px;}
.ws10{word-spacing:0.298878px;}
.wsef{word-spacing:0.322790px;}
.ws29{word-spacing:0.358654px;}
.wsd0{word-spacing:0.376589px;}
.ws2{word-spacing:0.415663px;}
.ws69{word-spacing:0.418429px;}
.ws4{word-spacing:0.419902px;}
.ws6{word-spacing:0.422252px;}
.ws50{word-spacing:0.478205px;}
.wsdd{word-spacing:0.484186px;}
.ws65{word-spacing:0.537980px;}
.wsd1{word-spacing:0.591782px;}
.ws26{word-spacing:0.597756px;}
.ws99{word-spacing:0.657532px;}
.ws103{word-spacing:0.699379px;}
.ws5d{word-spacing:0.717307px;}
.ws43{word-spacing:0.777083px;}
.ws3d{word-spacing:0.836858px;}
.wscf{word-spacing:0.896634px;}
.ws5b{word-spacing:0.956410px;}
.ws5c{word-spacing:1.016185px;}
.ws11{word-spacing:1.075961px;}
.ws25{word-spacing:1.135736px;}
.wsd9{word-spacing:1.183565px;}
.ws7a{word-spacing:1.195512px;}
.wsa4{word-spacing:1.255288px;}
.ws85{word-spacing:1.315063px;}
.wsd{word-spacing:1.374839px;}
.ws64{word-spacing:1.434614px;}
.wsc7{word-spacing:1.494390px;}
.ws6e{word-spacing:1.554166px;}
.ws7d{word-spacing:1.613941px;}
.ws62{word-spacing:1.673717px;}
.ws8d{word-spacing:1.733492px;}
.wsf6{word-spacing:1.769278px;}
.wsf5{word-spacing:1.775347px;}
.ws70{word-spacing:1.793268px;}
.ws52{word-spacing:1.853044px;}
.ws51{word-spacing:1.912819px;}
.ws74{word-spacing:1.972595px;}
.ws54{word-spacing:2.032370px;}
.ws1d{word-spacing:2.092146px;}
.ws44{word-spacing:2.151922px;}
.ws76{word-spacing:2.211697px;}
.ws75{word-spacing:2.271473px;}
.wsab{word-spacing:2.331248px;}
.wse7{word-spacing:2.367130px;}
.ws46{word-spacing:2.391024px;}
.ws61{word-spacing:2.450800px;}
.ws3a{word-spacing:2.510575px;}
.wsb2{word-spacing:2.570351px;}
.wsd3{word-spacing:2.580863px;}
.ws81{word-spacing:2.630126px;}
.ws12{word-spacing:2.689902px;}
.ws24{word-spacing:2.749678px;}
.ws94{word-spacing:2.809453px;}
.ws66{word-spacing:2.869229px;}
.ws7{word-spacing:2.869236px;}
.ws56{word-spacing:2.929004px;}
.ws71{word-spacing:2.988780px;}
.wsdf{word-spacing:3.012710px;}
.wsa{word-spacing:3.048556px;}
.wsfa{word-spacing:3.066509px;}
.ws8b{word-spacing:3.108331px;}
.wsfc{word-spacing:3.120307px;}
.ws3c{word-spacing:3.168107px;}
.wsfe{word-spacing:3.220406px;}
.wsff{word-spacing:3.221126px;}
.ws10a{word-spacing:3.223430px;}
.wsfd{word-spacing:3.223882px;}
.ws102{word-spacing:3.224918px;}
.ws4d{word-spacing:3.227882px;}
.wse2{word-spacing:3.227904px;}
.ws10e{word-spacing:3.230986px;}
.wsb3{word-spacing:3.287658px;}
.wse8{word-spacing:3.335501px;}
.wsbf{word-spacing:3.347434px;}
.ws101{word-spacing:3.443098px;}
.ws23{word-spacing:3.466985px;}
.ws10f{word-spacing:3.496896px;}
.ws9d{word-spacing:3.526760px;}
.ws98{word-spacing:3.586536px;}
.wsf2{word-spacing:3.604493px;}
.ws14{word-spacing:3.635491px;}
.ws8a{word-spacing:3.646312px;}
.wsa1{word-spacing:3.706087px;}
.ws104{word-spacing:3.712090px;}
.ws38{word-spacing:3.765863px;}
.ws17{word-spacing:3.825638px;}
.ws106{word-spacing:3.873485px;}
.ws95{word-spacing:3.885414px;}
.wscb{word-spacing:3.945190px;}
.ws92{word-spacing:4.004965px;}
.ws97{word-spacing:4.064741px;}
.ws2d{word-spacing:4.124516px;}
.ws42{word-spacing:4.184292px;}
.ws34{word-spacing:4.244068px;}
.ws100{word-spacing:4.250074px;}
.ws2b{word-spacing:4.303843px;}
.ws15{word-spacing:4.303872px;}
.wsa8{word-spacing:4.363619px;}
.ws59{word-spacing:4.423394px;}
.ws60{word-spacing:4.483170px;}
.ws37{word-spacing:4.542946px;}
.ws63{word-spacing:4.602721px;}
.wse1{word-spacing:4.626662px;}
.ws72{word-spacing:4.662497px;}
.ws48{word-spacing:4.722272px;}
.wsb1{word-spacing:4.782048px;}
.ws2f{word-spacing:4.841824px;}
.ws6a{word-spacing:4.901599px;}
.ws6c{word-spacing:4.961375px;}
.ws20{word-spacing:5.021150px;}
.ws79{word-spacing:5.080926px;}
.ws57{word-spacing:5.140702px;}
.ws39{word-spacing:5.200477px;}
.ws7b{word-spacing:5.260253px;}
.ws9c{word-spacing:5.379804px;}
.ws93{word-spacing:5.439580px;}
.ws4a{word-spacing:5.499355px;}
.ws83{word-spacing:5.559131px;}
.ws105{word-spacing:5.594991px;}
.ws58{word-spacing:5.618906px;}
.ws40{word-spacing:5.678682px;}
.ws3e{word-spacing:5.738458px;}
.wsea{word-spacing:5.756429px;}
.ws6f{word-spacing:5.858009px;}
.ws9b{word-spacing:5.917784px;}
.ws35{word-spacing:5.977560px;}
.wsf8{word-spacing:6.025421px;}
.wsce{word-spacing:6.037336px;}
.wsca{word-spacing:6.097111px;}
.ws41{word-spacing:6.156887px;}
.ws4c{word-spacing:6.336214px;}
.ws4e{word-spacing:6.395989px;}
.ws3f{word-spacing:6.455765px;}
.wsc3{word-spacing:6.575316px;}
.ws80{word-spacing:6.635092px;}
.ws6b{word-spacing:6.694867px;}
.ws49{word-spacing:6.754643px;}
.ws91{word-spacing:6.874194px;}
.ws21{word-spacing:6.933970px;}
.ws36{word-spacing:7.053521px;}
.ws68{word-spacing:7.173072px;}
.ws88{word-spacing:7.232848px;}
.wsec{word-spacing:7.262784px;}
.wscd{word-spacing:7.292623px;}
.ws89{word-spacing:7.412174px;}
.ws8e{word-spacing:7.591501px;}
.ws90{word-spacing:7.651277px;}
.ws6d{word-spacing:7.770828px;}
.ws9a{word-spacing:8.069706px;}
.ws2e{word-spacing:8.129482px;}
.ws53{word-spacing:8.189257px;}
.ws96{word-spacing:8.249033px;}
.wsbc{word-spacing:8.368584px;}
.wsb8{word-spacing:8.488135px;}
.wsc2{word-spacing:9.026116px;}
.ws10d{word-spacing:9.136522px;}
.wsed{word-spacing:9.136790px;}
.wse4{word-spacing:9.137443px;}
.wsf7{word-spacing:9.140093px;}
.wsf1{word-spacing:9.142550px;}
.wsaf{word-spacing:9.145667px;}
.ws108{word-spacing:9.145728px;}
.wsae{word-spacing:9.504320px;}
.ws9f{word-spacing:9.623872px;}
.wsb0{word-spacing:11.716018px;}
.wse9{word-spacing:13.718592px;}
.ws9e{word-spacing:15.840534px;}
.ws1{word-spacing:22.179541px;}
.ws5e{word-spacing:122.924605px;}
.wsb4{word-spacing:179.684083px;}
.wsb6{word-spacing:197.319256px;}
.wsb7{word-spacing:217.224530px;}
.wsba{word-spacing:256.142184px;}
.ws5f{word-spacing:263.851301px;}
.wsb5{word-spacing:324.880386px;}
.ws67{word-spacing:334.245304px;}
.wsbb{word-spacing:353.154245px;}
._35{margin-left:-23.061607px;}
._36{margin-left:-22.039340px;}
._37{margin-left:-20.905733px;}
._4{margin-left:-11.943245px;}
._2e{margin-left:-9.540422px;}
._30{margin-left:-8.440418px;}
._d{margin-left:-7.113296px;}
._c{margin-left:-6.085160px;}
._9{margin-left:-4.399495px;}
._2{margin-left:-3.096367px;}
._1{margin-left:-1.506341px;}
._2b{width:1.494390px;}
._2c{width:2.630126px;}
._29{width:3.945190px;}
._2a{width:5.379804px;}
._0{width:10.879128px;}
._17{width:12.863705px;}
._12{width:14.824386px;}
._28{width:15.888359px;}
._e{width:17.107772px;}
._19{width:18.112007px;}
._b{width:19.319470px;}
._10{width:20.383480px;}
._3{width:21.760656px;}
._15{width:23.730913px;}
._11{width:24.938376px;}
._f{width:26.839244px;}
._a{width:28.333634px;}
._1b{width:29.720424px;}
._1e{width:30.856160px;}
._18{width:32.063623px;}
._5{width:33.355008px;}
._1c{width:35.566482px;}
._1d{width:37.419526px;}
._38{width:38.471970px;}
._16{width:39.930101px;}
._25{width:42.261349px;}
._2d{width:43.695964px;}
._2f{width:46.624968px;}
._6{width:54.421968px;}
._3a{width:61.868160px;}
._7{width:69.372816px;}
._8{width:84.312676px;}
._39{width:88.767360px;}
._1a{width:91.217566px;}
._27{width:93.548814px;}
._21{width:232.467308px;}
._33{width:269.528180px;}
._22{width:272.266884px;}
._24{width:280.360248px;}
._32{width:284.472080px;}
._1f{width:295.590342px;}
._23{width:330.073046px;}
._34{width:396.312228px;}
._31{width:400.078091px;}
._20{width:459.614588px;}
._13{width:1597.999804px;}
._26{width:2245.153804px;}
._14{width:2269.063804px;}
.fc3{color:transparent;}
.fc2{color:rgb(15,108,191);}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.543081px;}
.fs6{font-size:41.763522px;}
.fs0{font-size:41.842800px;}
.fsc{font-size:45.990219px;}
.fs3{font-size:47.820600px;}
.fs8{font-size:52.204402px;}
.fsb{font-size:52.560250px;}
.fs5{font-size:53.798400px;}
.fsd{font-size:59.130282px;}
.fs1{font-size:59.775600px;}
.fse{font-size:62.286600px;}
.fs10{font-size:65.112048px;}
.fsa{font-size:65.700313px;}
.fs4{font-size:71.731200px;}
.fsf{font-size:79.581392px;}
.fs9{font-size:104.401419px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y171{bottom:8.557566px;}
.y20c{bottom:29.704359px;}
.y206{bottom:35.222132px;}
.y20b{bottom:43.665676px;}
.y3f{bottom:45.921000px;}
.y221{bottom:57.797905px;}
.y200{bottom:63.375770px;}
.y208{bottom:69.021875px;}
.y18d{bottom:72.507959px;}
.y20a{bottom:77.337086px;}
.y299{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y3e{bottom:100.824000px;}
.y2f3{bottom:101.388000px;}
.y275{bottom:101.701500px;}
.y99{bottom:103.390500px;}
.y2d0{bottom:103.420500px;}
.y2d3{bottom:104.914500px;}
.y188{bottom:107.745930px;}
.ycc{bottom:109.398000px;}
.y1a9{bottom:111.694500px;}
.y219{bottom:111.955500px;}
.yf7{bottom:114.540000px;}
.y303{bottom:114.882000px;}
.y72{bottom:116.407500px;}
.y16e{bottom:116.839500px;}
.y14{bottom:118.147500px;}
.y169{bottom:118.365000px;}
.y153{bottom:118.797000px;}
.y1e0{bottom:119.365500px;}
.y164{bottom:120.322500px;}
.y298{bottom:120.610500px;}
.y3d{bottom:121.716000px;}
.y2f2{bottom:122.280000px;}
.y274{bottom:122.593500px;}
.y12b{bottom:123.268500px;}
.yb6{bottom:123.849000px;}
.y98{bottom:124.282500px;}
.y2cf{bottom:124.312500px;}
.y18c{bottom:125.364916px;}
.y1d9{bottom:125.806500px;}
.y25b{bottom:128.766000px;}
.ycb{bottom:130.290000px;}
.y1a8{bottom:132.585000px;}
.y218{bottom:132.847500px;}
.yf6{bottom:135.432000px;}
.y224{bottom:135.570629px;}
.y2fc{bottom:135.774000px;}
.y13{bottom:136.035000px;}
.y1ff{bottom:136.467368px;}
.y71{bottom:137.298000px;}
.y16d{bottom:137.731500px;}
.y168{bottom:139.255500px;}
.y311{bottom:139.468500px;}
.y152{bottom:139.689000px;}
.y1c2{bottom:140.257500px;}
.y163{bottom:141.213000px;}
.y297{bottom:141.502500px;}
.y3c{bottom:142.606500px;}
.y2f1{bottom:143.170500px;}
.y273{bottom:143.485500px;}
.y12a{bottom:144.159000px;}
.y373{bottom:144.262500px;}
.yb5{bottom:144.741000px;}
.y97{bottom:145.173000px;}
.y2ce{bottom:145.203000px;}
.y1d8{bottom:146.698500px;}
.y2f4{bottom:147.654000px;}
.y343{bottom:148.395000px;}
.y25a{bottom:149.656500px;}
.y189{bottom:150.285885px;}
.y1fe{bottom:150.428684px;}
.y1dc{bottom:151.180500px;}
.y229{bottom:152.626500px;}
.y217{bottom:153.739500px;}
.y12{bottom:153.922500px;}
.yca{bottom:155.664000px;}
.yf5{bottom:156.324000px;}
.y2fb{bottom:156.666000px;}
.y1a7{bottom:157.960500px;}
.y70{bottom:158.190000px;}
.y16c{bottom:158.623500px;}
.y223{bottom:159.987647px;}
.y167{bottom:160.147500px;}
.y151{bottom:160.581000px;}
.y1c1{bottom:161.149500px;}
.y21c{bottom:162.105000px;}
.y296{bottom:162.394500px;}
.y372{bottom:163.413000px;}
.y3b{bottom:163.498500px;}
.y2f0{bottom:164.062500px;}
.y272{bottom:164.376000px;}
.y187{bottom:164.518218px;}
.y129{bottom:165.051000px;}
.yb4{bottom:165.631500px;}
.y96{bottom:166.065000px;}
.y2cd{bottom:166.095000px;}
.y162{bottom:166.588500px;}
.y342{bottom:167.547000px;}
.y1d7{bottom:167.589000px;}
.y310{bottom:167.932500px;}
.y259{bottom:170.548500px;}
.y1a5{bottom:171.696323px;}
.y11{bottom:171.811500px;}
.y1db{bottom:172.072500px;}
.y204{bottom:173.423794px;}
.y216{bottom:174.630000px;}
.y18a{bottom:176.916763px;}
.yf4{bottom:177.214500px;}
.y2fa{bottom:177.556500px;}
.y1a3{bottom:177.569318px;}
.y6f{bottom:179.082000px;}
.y23f{bottom:179.514000px;}
.y166{bottom:181.039500px;}
.y150{bottom:181.471500px;}
.y21e{bottom:181.607399px;}
.y1c0{bottom:182.040000px;}
.y371{bottom:182.563500px;}
.y1a4{bottom:182.789759px;}
.y2de{bottom:182.997000px;}
.y295{bottom:183.285000px;}
.y16b{bottom:183.997500px;}
.y3a{bottom:184.390500px;}
.y2ef{bottom:184.954500px;}
.y128{bottom:185.943000px;}
.yb3{bottom:186.523500px;}
.y341{bottom:186.697500px;}
.y95{bottom:186.957000px;}
.y2cc{bottom:186.987000px;}
.y30f{bottom:187.432500px;}
.y21b{bottom:187.480500px;}
.y1d6{bottom:188.481000px;}
.y10{bottom:189.699000px;}
.y1a6{bottom:190.105500px;}
.yc9{bottom:191.007000px;}
.y170{bottom:192.578084px;}
.y1ec{bottom:192.964500px;}
.y215{bottom:195.522000px;}
.y186{bottom:195.840859px;}
.y258{bottom:195.922500px;}
.y1da{bottom:197.448000px;}
.yf3{bottom:198.106500px;}
.y2f9{bottom:198.448500px;}
.y6e{bottom:199.972500px;}
.y2a5{bottom:200.406000px;}
.y370{bottom:201.714000px;}
.y161{bottom:201.930000px;}
.y1fd{bottom:202.167681px;}
.y14f{bottom:202.363500px;}
.y1bf{bottom:202.932000px;}
.y1a2{bottom:203.018964px;}
.y2dd{bottom:203.887500px;}
.y294{bottom:204.177000px;}
.y23e{bottom:204.889500px;}
.y39{bottom:205.281000px;}
.y340{bottom:205.848000px;}
.y127{bottom:206.833500px;}
.y30e{bottom:206.931000px;}
.yb2{bottom:207.415500px;}
.yf{bottom:207.586500px;}
.y94{bottom:207.847500px;}
.y2cb{bottom:207.877500px;}
.y1d5{bottom:209.373000px;}
.y2ee{bottom:210.328500px;}
.y209{bottom:211.201474px;}
.yc8{bottom:211.899000px;}
.y271{bottom:212.349000px;}
.y1eb{bottom:213.856500px;}
.y205{bottom:216.270155px;}
.y214{bottom:216.414000px;}
.y18b{bottom:216.722620px;}
.y257{bottom:216.814500px;}
.y1fc{bottom:218.592759px;}
.yf2{bottom:218.998500px;}
.y2f8{bottom:219.340500px;}
.y6d{bottom:220.864500px;}
.y2a4{bottom:221.298000px;}
.y160{bottom:222.822000px;}
.y14e{bottom:223.255500px;}
.y1be{bottom:223.824000px;}
.y203{bottom:224.341536px;}
.y2dc{bottom:224.779500px;}
.y33f{bottom:224.998500px;}
.y293{bottom:225.069000px;}
.ye{bottom:225.475500px;}
.y38{bottom:226.173000px;}
.y126{bottom:227.725500px;}
.yb1{bottom:228.306000px;}
.y16f{bottom:228.703161px;}
.y93{bottom:228.739500px;}
.y2ca{bottom:228.769500px;}
.y185{bottom:229.773720px;}
.y1d4{bottom:230.263500px;}
.y270{bottom:230.281500px;}
.y1a1{bottom:230.426275px;}
.yc7{bottom:232.789500px;}
.y1ea{bottom:234.747000px;}
.y213{bottom:237.304500px;}
.y256{bottom:237.706500px;}
.y222{bottom:238.664705px;}
.yf1{bottom:239.890500px;}
.y36f{bottom:240.015000px;}
.y23d{bottom:240.232500px;}
.y6c{bottom:241.756500px;}
.y2a3{bottom:242.190000px;}
.y207{bottom:243.127698px;}
.y15f{bottom:243.714000px;}
.y14d{bottom:244.147500px;}
.y33e{bottom:244.149000px;}
.y1bd{bottom:244.714500px;}
.y2db{bottom:245.671500px;}
.y292{bottom:245.961000px;}
.y37{bottom:247.065000px;}
.y1fb{bottom:248.157900px;}
.y26f{bottom:248.214000px;}
.y125{bottom:248.617500px;}
.yb0{bottom:249.198000px;}
.y92{bottom:249.631500px;}
.y2c9{bottom:249.661500px;}
.y1d3{bottom:251.155500px;}
.yd{bottom:252.330000px;}
.yc6{bottom:253.681500px;}
.y1e9{bottom:255.639000px;}
.y212{bottom:258.196500px;}
.y255{bottom:258.597000px;}
.y36e{bottom:259.165500px;}
.yf0{bottom:260.781000px;}
.y23c{bottom:261.123000px;}
.y6b{bottom:262.647000px;}
.y2a2{bottom:263.080500px;}
.y33d{bottom:263.299500px;}
.y15e{bottom:264.606000px;}
.y1bc{bottom:265.606500px;}
.y26e{bottom:266.146500px;}
.y2da{bottom:266.563500px;}
.y291{bottom:266.851500px;}
.y36{bottom:267.955500px;}
.y124{bottom:269.508000px;}
.y14c{bottom:269.521500px;}
.yaf{bottom:270.090000px;}
.yc{bottom:270.217500px;}
.y91{bottom:270.523500px;}
.y2c8{bottom:270.553500px;}
.y30d{bottom:270.568500px;}
.y1d2{bottom:272.047500px;}
.yc5{bottom:274.573500px;}
.y202{bottom:275.259279px;}
.y1e8{bottom:276.531000px;}
.y196{bottom:277.410237px;}
.y190{bottom:278.062792px;}
.y36d{bottom:278.316000px;}
.y211{bottom:279.088500px;}
.y254{bottom:279.489000px;}
.yef{bottom:281.673000px;}
.y23b{bottom:282.015000px;}
.y33c{bottom:282.450000px;}
.y6a{bottom:283.539000px;}
.y2a1{bottom:283.972500px;}
.y26d{bottom:284.080500px;}
.y15d{bottom:285.496500px;}
.y1bb{bottom:286.498500px;}
.y2d9{bottom:287.454000px;}
.y290{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y35{bottom:288.847500px;}
.y18f{bottom:289.156228px;}
.y30c{bottom:290.067000px;}
.y123{bottom:290.400000px;}
.yae{bottom:290.980500px;}
.y90{bottom:291.414000px;}
.y2c7{bottom:291.444000px;}
.y1d1{bottom:292.939500px;}
.yc4{bottom:295.464000px;}
.y1e7{bottom:297.421500px;}
.y36c{bottom:297.466500px;}
.y195{bottom:299.597108px;}
.y210{bottom:299.979000px;}
.y253{bottom:300.381000px;}
.y33b{bottom:301.600500px;}
.y26c{bottom:302.013000px;}
.y182{bottom:302.207328px;}
.yee{bottom:302.565000px;}
.y23a{bottom:302.907000px;}
.y69{bottom:304.431000px;}
.y14b{bottom:304.864500px;}
.ya{bottom:305.994000px;}
.y15c{bottom:306.388500px;}
.y1ba{bottom:307.389000px;}
.y19c{bottom:307.427769px;}
.y2d8{bottom:308.346000px;}
.y28f{bottom:308.635500px;}
.y30b{bottom:309.565500px;}
.y34{bottom:309.739500px;}
.y122{bottom:311.292000px;}
.yad{bottom:311.872500px;}
.y2c6{bottom:312.336000px;}
.y181{bottom:313.300764px;}
.y1d0{bottom:313.830000px;}
.yc3{bottom:316.356000px;}
.y36b{bottom:316.617000px;}
.y8f{bottom:316.789500px;}
.y184{bottom:317.216094px;}
.y1e6{bottom:318.313500px;}
.y19b{bottom:318.521204px;}
.y26b{bottom:319.945500px;}
.y33a{bottom:320.751000px;}
.y20f{bottom:320.871000px;}
.y252{bottom:321.273000px;}
.yed{bottom:323.455500px;}
.y239{bottom:323.797500px;}
.y9{bottom:323.881500px;}
.y201{bottom:324.534513px;}
.y68{bottom:325.323000px;}
.y14a{bottom:325.755000px;}
.y15b{bottom:327.280500px;}
.y220{bottom:328.193772px;}
.y1b9{bottom:328.281000px;}
.y183{bottom:328.309529px;}
.y30a{bottom:329.064000px;}
.y2d7{bottom:329.238000px;}
.y28e{bottom:329.526000px;}
.y33{bottom:330.630000px;}
.y194{bottom:330.919750px;}
.y121{bottom:332.184000px;}
.yac{bottom:332.764500px;}
.y2c5{bottom:333.228000px;}
.y2d2{bottom:334.722000px;}
.y36a{bottom:335.767500px;}
.yc2{bottom:337.248000px;}
.y8e{bottom:337.680000px;}
.y26a{bottom:337.878000px;}
.y174{bottom:338.750410px;}
.y1cf{bottom:339.205500px;}
.y339{bottom:339.901500px;}
.y20e{bottom:341.763000px;}
.y8{bottom:341.769000px;}
.y251{bottom:342.163500px;}
.yec{bottom:344.347500px;}
.y238{bottom:344.689500px;}
.y67{bottom:346.213500px;}
.y149{bottom:346.647000px;}
.y15a{bottom:348.171000px;}
.y309{bottom:348.562500px;}
.y1b8{bottom:349.173000px;}
.y2d6{bottom:350.128500px;}
.y28d{bottom:350.418000px;}
.y17b{bottom:350.496400px;}
.y32{bottom:351.522000px;}
.y120{bottom:353.074500px;}
.y1cb{bottom:353.656500px;}
.y2c4{bottom:354.118500px;}
.y369{bottom:354.918000px;}
.y1a0{bottom:355.064286px;}
.y2d1{bottom:355.614000px;}
.y269{bottom:355.810500px;}
.yab{bottom:358.138500px;}
.y8d{bottom:358.572000px;}
.y338{bottom:359.052000px;}
.y7{bottom:359.658000px;}
.y1e5{bottom:360.096000px;}
.y173{bottom:360.937281px;}
.y17a{bottom:361.589836px;}
.y250{bottom:363.055500px;}
.yeb{bottom:365.239500px;}
.y237{bottom:365.581500px;}
.y19f{bottom:366.157721px;}
.y193{bottom:366.810276px;}
.y66{bottom:367.105500px;}
.y148{bottom:367.539000px;}
.y308{bottom:368.062500px;}
.y159{bottom:369.063000px;}
.y1b7{bottom:370.063500px;}
.y2ed{bottom:371.020500px;}
.y28c{bottom:371.310000px;}
.y268{bottom:373.743000px;}
.y11f{bottom:373.966500px;}
.y368{bottom:374.070000px;}
.y1ca{bottom:374.547000px;}
.y2c3{bottom:375.010500px;}
.y2d5{bottom:375.504000px;}
.y228{bottom:376.123474px;}
.y31{bottom:376.897500px;}
.y20d{bottom:377.391000px;}
.y6{bottom:377.545500px;}
.y337{bottom:378.202500px;}
.yaa{bottom:379.030500px;}
.y8c{bottom:379.464000px;}
.y19e{bottom:380.513932px;}
.y1e4{bottom:380.988000px;}
.y179{bottom:383.071542px;}
.y24f{bottom:383.947500px;}
.yea{bottom:386.130000px;}
.y236{bottom:386.472000px;}
.y1fa{bottom:387.771064px;}
.y65{bottom:387.997500px;}
.y147{bottom:388.429500px;}
.y158{bottom:389.955000px;}
.y1b6{bottom:390.955500px;}
.y19d{bottom:391.607367px;}
.y267{bottom:391.677000px;}
.y2ec{bottom:391.912500px;}
.y28b{bottom:392.200500px;}
.y367{bottom:393.220500px;}
.y11e{bottom:394.858500px;}
.y1c9{bottom:395.439000px;}
.y2c2{bottom:395.902500px;}
.y307{bottom:396.526500px;}
.y336{bottom:397.353000px;}
.y175{bottom:397.480362px;}
.ya9{bottom:399.922500px;}
.y8b{bottom:400.354500px;}
.y180{bottom:400.357442px;}
.y227{bottom:400.540492px;}
.y5{bottom:401.410500px;}
.y24e{bottom:404.838000px;}
.y1e3{bottom:406.363500px;}
.ye9{bottom:407.022000px;}
.y235{bottom:407.364000px;}
.y17d{bottom:408.573798px;}
.y64{bottom:408.888000px;}
.y146{bottom:409.321500px;}
.y266{bottom:409.609500px;}
.y157{bottom:410.845500px;}
.y1b5{bottom:411.847500px;}
.y366{bottom:412.371000px;}
.y2eb{bottom:412.803000px;}
.y28a{bottom:413.092500px;}
.y1f9{bottom:415.332298px;}
.y11d{bottom:415.749000px;}
.y306{bottom:416.025000px;}
.y1c8{bottom:416.331000px;}
.y335{bottom:416.503500px;}
.y2c1{bottom:416.793000px;}
.y198{bottom:417.057013px;}
.y4{bottom:419.299500px;}
.y17c{bottom:419.667233px;}
.y225{bottom:420.435840px;}
.ya8{bottom:420.813000px;}
.y8a{bottom:421.246500px;}
.y226{bottom:424.053176px;}
.y24d{bottom:425.730000px;}
.y177{bottom:426.192783px;}
.y1e2{bottom:427.254000px;}
.ye8{bottom:427.914000px;}
.y197{bottom:428.150449px;}
.y2f7{bottom:428.256000px;}
.y63{bottom:429.780000px;}
.y365{bottom:431.521500px;}
.y156{bottom:431.737500px;}
.y1b4{bottom:432.739500px;}
.y2ea{bottom:433.695000px;}
.y289{bottom:433.984500px;}
.y145{bottom:434.697000px;}
.y265{bottom:435.043500px;}
.y192{bottom:435.328554px;}
.y305{bottom:435.525000px;}
.y334{bottom:435.654000px;}
.y11c{bottom:436.641000px;}
.y3{bottom:437.187000px;}
.y1c7{bottom:437.221500px;}
.y176{bottom:437.286219px;}
.y2c0{bottom:437.685000px;}
.ya7{bottom:441.705000px;}
.y89{bottom:442.138500px;}
.y17f{bottom:443.159214px;}
.y264{bottom:444.009000px;}
.y191{bottom:446.421989px;}
.y24c{bottom:446.622000px;}
.y1e1{bottom:448.146000px;}
.ye7{bottom:448.804500px;}
.y2f6{bottom:449.146500px;}
.y62{bottom:450.672000px;}
.y155{bottom:452.629500px;}
.y1b3{bottom:453.630000px;}
.y17e{bottom:454.252650px;}
.y2e9{bottom:454.587000px;}
.y333{bottom:454.804500px;}
.y288{bottom:454.875000px;}
.y304{bottom:455.023500px;}
.y2{bottom:455.074500px;}
.y30{bottom:456.108000px;}
.y11b{bottom:457.533000px;}
.y1c6{bottom:458.113500px;}
.y19a{bottom:458.167980px;}
.y2bf{bottom:458.577000px;}
.ya6{bottom:462.597000px;}
.y88{bottom:463.030500px;}
.y178{bottom:467.303750px;}
.y24b{bottom:467.512500px;}
.y199{bottom:469.261415px;}
.ye6{bottom:469.696500px;}
.y364{bottom:469.822500px;}
.y2a0{bottom:470.038500px;}
.y61{bottom:471.562500px;}
.y144{bottom:473.520000px;}
.y332{bottom:473.955000px;}
.y1b2{bottom:474.522000px;}
.y2e8{bottom:475.477500px;}
.y287{bottom:475.767000px;}
.y2f{bottom:477.000000px;}
.y11a{bottom:478.423500px;}
.y1{bottom:478.941000px;}
.y1ce{bottom:479.005500px;}
.y2be{bottom:479.467500px;}
.ya4{bottom:483.487500px;}
.ya5{bottom:483.489000px;}
.y18e{bottom:484.922736px;}
.y263{bottom:485.641500px;}
.y87{bottom:488.404500px;}
.y363{bottom:488.973000px;}
.ye5{bottom:490.588500px;}
.y29f{bottom:490.930500px;}
.y60{bottom:492.454500px;}
.y331{bottom:493.105500px;}
.y143{bottom:494.412000px;}
.y1b1{bottom:495.414000px;}
.y2e7{bottom:496.369500px;}
.y286{bottom:496.659000px;}
.y119{bottom:499.315500px;}
.y1cd{bottom:499.896000px;}
.y2bd{bottom:500.359500px;}
.ya3{bottom:504.379500px;}
.y21f{bottom:505.443236px;}
.y362{bottom:508.123500px;}
.y24a{bottom:509.296500px;}
.y29e{bottom:511.822500px;}
.y330{bottom:512.256000px;}
.y172{bottom:512.330047px;}
.y5f{bottom:513.346500px;}
.y142{bottom:515.304000px;}
.y2e{bottom:515.824500px;}
.y1b0{bottom:516.304500px;}
.y2e6{bottom:517.261500px;}
.y285{bottom:517.551000px;}
.y118{bottom:520.207500px;}
.y1cc{bottom:520.788000px;}
.y2bc{bottom:521.251500px;}
.y262{bottom:522.745500px;}
.y86{bottom:523.747500px;}
.ya2{bottom:525.271500px;}
.y361{bottom:527.274000px;}
.y249{bottom:530.187000px;}
.y32f{bottom:531.406500px;}
.y29d{bottom:532.713000px;}
.y5e{bottom:534.237000px;}
.y141{bottom:536.194500px;}
.y2d{bottom:536.716500px;}
.y2e5{bottom:538.152000px;}
.ye4{bottom:538.560000px;}
.y117{bottom:541.098000px;}
.y1af{bottom:541.680000px;}
.y261{bottom:543.637500px;}
.y85{bottom:544.638000px;}
.ya1{bottom:546.163500px;}
.y360{bottom:546.424500px;}
.y2bb{bottom:546.625500px;}
.ye2{bottom:547.527000px;}
.y32e{bottom:550.558500px;}
.y248{bottom:551.079000px;}
.y29c{bottom:553.605000px;}
.y5d{bottom:555.129000px;}
.ye1{bottom:556.494000px;}
.y140{bottom:557.086500px;}
.y2c{bottom:557.607000px;}
.y2e4{bottom:559.044000px;}
.y1ae{bottom:562.570500px;}
.y284{bottom:562.792500px;}
.y260{bottom:564.528000px;}
.y84{bottom:565.530000px;}
.y35f{bottom:565.575000px;}
.y116{bottom:566.473500px;}
.ya0{bottom:567.054000px;}
.y32d{bottom:569.709000px;}
.y247{bottom:571.971000px;}
.ye3{bottom:574.426500px;}
.y29b{bottom:574.497000px;}
.y5c{bottom:576.021000px;}
.y13f{bottom:577.978500px;}
.y2b{bottom:578.499000px;}
.y2f5{bottom:578.979000px;}
.y2e3{bottom:579.936000px;}
.y283{bottom:580.725000px;}
.y2ba{bottom:581.968500px;}
.y165{bottom:582.462000px;}
.y1ad{bottom:583.462500px;}
.y35e{bottom:584.725500px;}
.y25f{bottom:585.420000px;}
.y83{bottom:586.422000px;}
.y115{bottom:587.365500px;}
.y9f{bottom:587.946000px;}
.y32c{bottom:588.859500px;}
.y302{bottom:595.387500px;}
.y5b{bottom:596.913000px;}
.y246{bottom:597.345000px;}
.y282{bottom:598.659000px;}
.y13e{bottom:598.870500px;}
.y2a{bottom:599.391000px;}
.yde{bottom:599.860500px;}
.y29a{bottom:599.871000px;}
.y2e2{bottom:600.828000px;}
.y2b9{bottom:602.860500px;}
.y35d{bottom:603.876000px;}
.y234{bottom:604.354500px;}
.y25e{bottom:606.312000px;}
.y32b{bottom:608.010000px;}
.y114{bottom:608.256000px;}
.ye0{bottom:608.826000px;}
.y9e{bottom:608.838000px;}
.y82{bottom:611.796000px;}
.y301{bottom:616.279500px;}
.y281{bottom:616.591500px;}
.ydd{bottom:617.793000px;}
.y5a{bottom:617.803500px;}
.y13d{bottom:619.761000px;}
.y29{bottom:620.281500px;}
.y2e1{bottom:621.718500px;}
.y35c{bottom:623.026500px;}
.y2b8{bottom:623.751000px;}
.y233{bottom:625.246500px;}
.yda{bottom:626.760000px;}
.y32a{bottom:627.160500px;}
.y113{bottom:629.148000px;}
.y9d{bottom:629.728500px;}
.y25d{bottom:631.686000px;}
.y245{bottom:632.688000px;}
.yc1{bottom:634.212000px;}
.y280{bottom:634.524000px;}
.ydc{bottom:635.725500px;}
.y300{bottom:637.171500px;}
.y59{bottom:638.695500px;}
.y13c{bottom:640.653000px;}
.y28{bottom:641.173500px;}
.y35b{bottom:642.177000px;}
.y2b7{bottom:644.643000px;}
.ydf{bottom:644.692500px;}
.y232{bottom:646.137000px;}
.y329{bottom:646.311000px;}
.y2e0{bottom:647.094000px;}
.y112{bottom:650.040000px;}
.y81{bottom:650.620500px;}
.y27f{bottom:652.456500px;}
.y244{bottom:653.580000px;}
.ydb{bottom:653.658000px;}
.yc0{bottom:655.104000px;}
.y2ff{bottom:658.062000px;}
.y58{bottom:659.587500px;}
.y35a{bottom:661.327500px;}
.y13b{bottom:661.545000px;}
.y27{bottom:662.065500px;}
.y328{bottom:665.461500px;}
.y231{bottom:667.029000px;}
.y27e{bottom:670.389000px;}
.y111{bottom:670.930500px;}
.y80{bottom:671.512500px;}
.y2b6{bottom:673.006500px;}
.y243{bottom:674.470500px;}
.ybf{bottom:675.996000px;}
.y2fe{bottom:678.954000px;}
.yd7{bottom:679.092000px;}
.y57{bottom:680.478000px;}
.y13a{bottom:682.435500px;}
.y26{bottom:682.957500px;}
.y327{bottom:684.612000px;}
.y230{bottom:687.921000px;}
.yd9{bottom:688.059000px;}
.y27d{bottom:688.321500px;}
.y110{bottom:691.822500px;}
.y7f{bottom:692.403000px;}
.y2b5{bottom:693.898500px;}
.y242{bottom:695.362500px;}
.ybe{bottom:696.886500px;}
.yd6{bottom:697.024500px;}
.y359{bottom:699.628500px;}
.y56{bottom:701.370000px;}
.y139{bottom:703.327500px;}
.y326{bottom:703.762500px;}
.y25{bottom:703.848000px;}
.y2fd{bottom:704.329500px;}
.yd3{bottom:705.991500px;}
.y27c{bottom:706.255500px;}
.y16a{bottom:707.811000px;}
.y22f{bottom:708.811500px;}
.y10f{bottom:712.714500px;}
.y7e{bottom:713.295000px;}
.y2b4{bottom:714.789000px;}
.yd5{bottom:714.958500px;}
.y241{bottom:716.254500px;}
.ybd{bottom:717.778500px;}
.y358{bottom:718.779000px;}
.y55{bottom:722.262000px;}
.y325{bottom:722.913000px;}
.yd8{bottom:723.924000px;}
.y27b{bottom:724.188000px;}
.y138{bottom:724.219500px;}
.y24{bottom:724.740000px;}
.y22e{bottom:729.703500px;}
.yd4{bottom:732.891000px;}
.y7d{bottom:734.187000px;}
.y2b3{bottom:735.681000px;}
.y357{bottom:737.929500px;}
.y10e{bottom:738.088500px;}
.ybc{bottom:738.670500px;}
.y240{bottom:741.628500px;}
.y324{bottom:742.063500px;}
.y27a{bottom:742.120500px;}
.y54{bottom:743.152500px;}
.y137{bottom:745.110000px;}
.y23{bottom:745.632000px;}
.y154{bottom:749.593500px;}
.y22d{bottom:750.595500px;}
.y7c{bottom:755.077500px;}
.y2b2{bottom:756.573000px;}
.y356{bottom:757.081500px;}
.yd2{bottom:758.325000px;}
.y10d{bottom:758.980500px;}
.ybb{bottom:759.561000px;}
.y279{bottom:760.053000px;}
.y323{bottom:761.214000px;}
.y53{bottom:764.044500px;}
.y136{bottom:766.002000px;}
.y22{bottom:766.522500px;}
.yd0{bottom:767.290500px;}
.y22c{bottom:771.486000px;}
.y7b{bottom:775.969500px;}
.y355{bottom:776.232000px;}
.ycf{bottom:776.257500px;}
.y2b1{bottom:777.463500px;}
.y10c{bottom:779.872500px;}
.y322{bottom:780.364500px;}
.yba{bottom:780.453000px;}
.y52{bottom:784.936500px;}
.y278{bottom:785.487000px;}
.y135{bottom:786.894000px;}
.y21{bottom:787.414500px;}
.y22b{bottom:792.378000px;}
.yd1{bottom:794.190000px;}
.y277{bottom:794.454000px;}
.y354{bottom:795.382500px;}
.y7a{bottom:796.861500px;}
.y2b0{bottom:798.355500px;}
.y321{bottom:799.515000px;}
.y9c{bottom:801.345000px;}
.y51{bottom:805.827000px;}
.y134{bottom:807.784500px;}
.y20{bottom:808.306500px;}
.y22a{bottom:813.270000px;}
.y353{bottom:814.533000px;}
.y79{bottom:817.753500px;}
.y320{bottom:818.665500px;}
.y2af{bottom:819.247500px;}
.yce{bottom:819.624000px;}
.y9b{bottom:822.235500px;}
.y50{bottom:826.719000px;}
.y10b{bottom:827.844000px;}
.y133{bottom:828.676500px;}
.y1f{bottom:829.197000px;}
.y352{bottom:833.683500px;}
.y276{bottom:836.085000px;}
.y108{bottom:836.811000px;}
.y31f{bottom:837.816000px;}
.y78{bottom:838.644000px;}
.y2ae{bottom:840.139500px;}
.y9a{bottom:843.127500px;}
.y10a{bottom:845.776500px;}
.y1f8{bottom:846.087000px;}
.y4f{bottom:847.611000px;}
.y132{bottom:849.568500px;}
.y1e{bottom:850.089000px;}
.ycd{bottom:852.289500px;}
.y351{bottom:852.834000px;}
.y107{bottom:854.743500px;}
.y31e{bottom:856.966500px;}
.y1df{bottom:859.536000px;}
.y2ad{bottom:861.030000px;}
.y109{bottom:863.710500px;}
.y77{bottom:864.019500px;}
.y1f7{bottom:866.977500px;}
.y4e{bottom:868.503000px;}
.y131{bottom:870.460500px;}
.y350{bottom:871.984500px;}
.y21a{bottom:874.942500px;}
.y31d{bottom:876.117000px;}
.y1d{bottom:879.946500px;}
.y1de{bottom:880.428000px;}
.y2ac{bottom:881.922000px;}
.y76{bottom:884.910000px;}
.y1f6{bottom:887.869500px;}
.y106{bottom:889.144500px;}
.y4d{bottom:889.393500px;}
.y34f{bottom:891.135000px;}
.y130{bottom:891.351000px;}
.y31c{bottom:895.267500px;}
.y21d{bottom:895.834500px;}
.y103{bottom:898.110000px;}
.y1dd{bottom:901.318500px;}
.y2ab{bottom:902.814000px;}
.y75{bottom:905.802000px;}
.y105{bottom:907.077000px;}
.y1f5{bottom:908.761500px;}
.y4c{bottom:910.285500px;}
.y12f{bottom:912.243000px;}
.y31b{bottom:914.418000px;}
.y102{bottom:916.042500px;}
.y1c{bottom:919.966500px;}
.y25c{bottom:922.210500px;}
.y2aa{bottom:923.704500px;}
.y104{bottom:925.009500px;}
.y74{bottom:926.694000px;}
.y34e{bottom:929.436000px;}
.y1f4{bottom:929.652000px;}
.y4b{bottom:931.177500px;}
.y12e{bottom:933.135000px;}
.y31a{bottom:933.570000px;}
.y1b{bottom:936.106500px;}
.y2d4{bottom:937.617000px;}
.y2a9{bottom:944.596500px;}
.yb9{bottom:947.584500px;}
.y73{bottom:947.586000px;}
.y34d{bottom:948.586500px;}
.y101{bottom:950.443500px;}
.y1f3{bottom:950.544000px;}
.y4a{bottom:952.068000px;}
.y1a{bottom:952.246500px;}
.y319{bottom:952.720500px;}
.y12d{bottom:954.025500px;}
.y2df{bottom:958.509000px;}
.y2a8{bottom:965.488500px;}
.y34c{bottom:967.737000px;}
.yff{bottom:968.376000px;}
.yb8{bottom:968.476500px;}
.y1f2{bottom:971.436000px;}
.y318{bottom:971.871000px;}
.y49{bottom:972.960000px;}
.y12c{bottom:979.401000px;}
.y100{bottom:986.308500px;}
.y2a7{bottom:986.379000px;}
.y34b{bottom:986.887500px;}
.yb7{bottom:989.368500px;}
.y317{bottom:991.021500px;}
.y1f1{bottom:992.326500px;}
.y48{bottom:993.852000px;}
.y19{bottom:1001.262000px;}
.y376{bottom:1004.298000px;}
.y34a{bottom:1006.038000px;}
.y2a6{bottom:1007.271000px;}
.y316{bottom:1010.172000px;}
.y1ac{bottom:1010.260500px;}
.yfe{bottom:1011.742500px;}
.y1f0{bottom:1013.218500px;}
.y47{bottom:1014.742500px;}
.y375{bottom:1023.448500px;}
.y349{bottom:1025.188500px;}
.yfc{bottom:1029.675000px;}
.y1ab{bottom:1031.151000px;}
.y315{bottom:1033.806000px;}
.y1ef{bottom:1034.110500px;}
.y46{bottom:1035.634500px;}
.y18{bottom:1040.086500px;}
.y374{bottom:1042.599000px;}
.y348{bottom:1044.339000px;}
.yfb{bottom:1047.609000px;}
.y1aa{bottom:1052.043000px;}
.y1ee{bottom:1055.001000px;}
.y45{bottom:1056.526500px;}
.y347{bottom:1063.489500px;}
.yfd{bottom:1065.541500px;}
.y17{bottom:1071.424500px;}
.y314{bottom:1072.629000px;}
.y1c5{bottom:1072.935000px;}
.y44{bottom:1077.417000px;}
.y1ed{bottom:1080.376500px;}
.y346{bottom:1082.640000px;}
.yfa{bottom:1090.975500px;}
.y1c4{bottom:1093.825500px;}
.y43{bottom:1098.309000px;}
.yf9{bottom:1099.941000px;}
.y313{bottom:1101.094500px;}
.y345{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.y1c3{bottom:1114.717500px;}
.y42{bottom:1119.201000px;}
.y312{bottom:1120.593000px;}
.y344{bottom:1120.941000px;}
.y41{bottom:1140.091500px;}
.yf8{bottom:1141.573500px;}
.y40{bottom:1200.196500px;}
.h12{height:26.604363px;}
.h14{height:26.622206px;}
.hf{height:29.947576px;}
.h11{height:30.404986px;}
.h19{height:33.482137px;}
.h2{height:37.993262px;}
.h13{height:38.006232px;}
.h18{height:38.265299px;}
.h3{height:38.286162px;}
.h1a{height:43.077334px;}
.h7{height:43.421105px;}
.h8{height:43.755849px;}
.h4{height:43.875290px;}
.h1c{height:46.714950px;}
.h20{height:47.435144px;}
.h17{height:47.831624px;}
.h1b{height:47.863704px;}
.h22{height:48.848947px;}
.hb{height:49.225536px;}
.h9{height:54.276245px;}
.h6{height:54.694674px;}
.h1e{height:57.937430px;}
.h1f{height:57.976288px;}
.ha{height:65.634048px;}
.h15{height:76.058065px;}
.hc{height:90.138245px;}
.he{height:90.144245px;}
.h21{height:90.556674px;}
.hd{height:90.562674px;}
.h5{height:98.451072px;}
.h16{height:411.678984px;}
.h10{height:549.587936px;}
.h1d{height:557.633654px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:357.148470px;}
.w3{width:701.953745px;}
.w2{width:729.686973px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x70{left:24.169019px;}
.x6c{left:25.800406px;}
.x71{left:27.472579px;}
.x6f{left:28.482003px;}
.x72{left:31.530655px;}
.x6b{left:36.353448px;}
.x73{left:45.654705px;}
.x1{left:53.574000px;}
.xaf{left:61.166254px;}
.x6a{left:71.440968px;}
.x9f{left:72.777097px;}
.xad{left:81.217030px;}
.xb9{left:85.848000px;}
.x6d{left:94.247314px;}
.x98{left:95.465343px;}
.xa1{left:98.762104px;}
.x9d{left:100.404612px;}
.x77{left:118.860874px;}
.x9e{left:119.973549px;}
.x74{left:123.928369px;}
.x76{left:128.251546px;}
.x75{left:130.525295px;}
.xae{left:133.640142px;}
.x78{left:137.122215px;}
.xb0{left:141.892190px;}
.x8e{left:143.902673px;}
.x79{left:145.177826px;}
.x99{left:151.155533px;}
.x8b{left:154.598455px;}
.xac{left:165.249446px;}
.x8c{left:193.099201px;}
.x6e{left:211.493096px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x5b{left:250.981500px;}
.xab{left:252.024055px;}
.x42{left:259.207500px;}
.x36{left:262.293000px;}
.xb5{left:264.711000px;}
.x3b{left:267.030000px;}
.x8d{left:268.550876px;}
.x55{left:272.278500px;}
.x4{left:281.368500px;}
.x5c{left:282.466500px;}
.x4e{left:283.792500px;}
.xb4{left:287.949000px;}
.x8a{left:289.106360px;}
.x4f{left:295.276500px;}
.x58{left:298.990500px;}
.x89{left:300.954312px;}
.x83{left:307.133192px;}
.x87{left:310.039105px;}
.x65{left:311.056500px;}
.x50{left:313.612500px;}
.x67{left:314.847000px;}
.x86{left:320.092530px;}
.x1f{left:326.664000px;}
.x44{left:330.370500px;}
.x3c{left:332.275500px;}
.x20{left:334.135500px;}
.x3d{left:335.652000px;}
.x45{left:337.752000px;}
.xa3{left:343.534262px;}
.xa4{left:346.701000px;}
.x43{left:349.594500px;}
.x37{left:352.972500px;}
.xb3{left:356.364000px;}
.x3e{left:359.413500px;}
.x1d{left:364.480500px;}
.xb2{left:367.095000px;}
.x3f{left:371.098500px;}
.x88{left:376.273440px;}
.x46{left:378.003000px;}
.x1e{left:379.423500px;}
.x47{left:382.008000px;}
.x66{left:383.080500px;}
.xa2{left:384.622622px;}
.x5f{left:391.344000px;}
.x91{left:393.231000px;}
.x2e{left:398.088000px;}
.x7d{left:399.439143px;}
.x9b{left:405.192470px;}
.x60{left:406.287000px;}
.x92{left:408.174000px;}
.x7c{left:409.839239px;}
.x2f{left:413.031000px;}
.xa5{left:414.067500px;}
.x61{left:418.695000px;}
.x19{left:422.422500px;}
.x5{left:423.592500px;}
.x85{left:425.021336px;}
.x4a{left:426.048000px;}
.x84{left:428.753135px;}
.x6{left:430.840500px;}
.xa6{left:431.889000px;}
.x62{left:433.639500px;}
.x8f{left:435.343500px;}
.x1a{left:437.365500px;}
.x4b{left:440.992500px;}
.x90{left:442.815000px;}
.x4c{left:444.804000px;}
.x17{left:450.643500px;}
.x23{left:452.629500px;}
.x4d{left:459.747000px;}
.x18{left:465.586500px;}
.x24{left:467.574000px;}
.xd{left:475.179000px;}
.xe{left:482.650500px;}
.x96{left:484.810500px;}
.x2c{left:486.600000px;}
.x80{left:494.334915px;}
.x97{left:499.755000px;}
.x2d{left:501.544500px;}
.x63{left:504.349500px;}
.x25{left:506.803500px;}
.xa7{left:513.459000px;}
.x7e{left:514.808829px;}
.x64{left:519.294000px;}
.x26{left:521.748000px;}
.x9c{left:523.491525px;}
.x9a{left:528.804011px;}
.x11{left:529.837500px;}
.x12{left:537.309000px;}
.x93{left:542.118000px;}
.x31{left:549.675000px;}
.x5d{left:554.268000px;}
.x7f{left:557.306476px;}
.xa0{left:562.154623px;}
.x32{left:564.619500px;}
.x15{left:565.981500px;}
.x5e{left:569.211000px;}
.xf{left:577.732500px;}
.x16{left:580.926000px;}
.x82{left:583.439268px;}
.x10{left:585.205500px;}
.x7a{left:586.508313px;}
.x38{left:589.756500px;}
.xa8{left:592.123500px;}
.x40{left:594.724500px;}
.x81{left:598.019795px;}
.x7b{left:599.284120px;}
.x35{left:601.165500px;}
.x9{left:603.525000px;}
.x39{left:607.687500px;}
.x13{left:609.277500px;}
.xa{left:610.998000px;}
.x48{left:613.950000px;}
.x14{left:616.749000px;}
.x7{left:619.344000px;}
.x54{left:624.657000px;}
.x8{left:626.592000px;}
.x59{left:627.993000px;}
.x56{left:629.517000px;}
.x41{left:631.120500px;}
.xa9{left:636.744000px;}
.x51{left:639.574500px;}
.x3a{left:640.654500px;}
.x2b{left:642.033000px;}
.x1b{left:643.432500px;}
.x52{left:645.559500px;}
.xb1{left:646.656000px;}
.x5a{left:648.085500px;}
.x49{left:649.314000px;}
.x57{left:650.379000px;}
.x53{left:652.239000px;}
.x1c{left:658.377000px;}
.xb6{left:668.991000px;}
.x33{left:672.387000px;}
.xaa{left:674.127000px;}
.xb7{left:676.462500px;}
.x29{left:681.108000px;}
.x34{left:687.330000px;}
.x27{left:689.469000px;}
.x2a{left:696.052500px;}
.x28{left:704.413500px;}
.x94{left:707.397000px;}
.x95{left:722.341500px;}
.x21{left:726.316500px;}
.x22{left:741.259500px;}
.xb{left:759.874500px;}
.xc{left:767.346000px;}
.x30{left:781.885500px;}
.xb8{left:783.489000px;}
.x68{left:790.188000px;}
.x69{left:805.132500px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:31.877333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.lsf{letter-spacing:0.004267pt;}
.lsd{letter-spacing:2.324214pt;}
.lsc{letter-spacing:2.329548pt;}
.ls0{letter-spacing:7.437600pt;}
.ls3{letter-spacing:10.626533pt;}
.ls12{letter-spacing:11.413507pt;}
.lse{letter-spacing:11.954133pt;}
.ls11{letter-spacing:11.959467pt;}
.ls7{letter-spacing:13.124065pt;}
.ls9{letter-spacing:13.177199pt;}
.lsa{letter-spacing:13.283467pt;}
.ls6{letter-spacing:13.442868pt;}
.ls5{letter-spacing:13.549136pt;}
.ls10{letter-spacing:15.736303pt;}
.lsb{letter-spacing:15.780758pt;}
.ls8{letter-spacing:16.630900pt;}
.ls2{letter-spacing:32.945470pt;}
.ws87{word-spacing:-25.783163pt;}
.ws47{word-spacing:-13.283467pt;}
.wsa5{word-spacing:-12.980374pt;}
.wse0{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws86{word-spacing:-9.024745pt;}
.wsad{word-spacing:-3.666237pt;}
.ws18{word-spacing:-3.559969pt;}
.wsc5{word-spacing:-3.347434pt;}
.wsc0{word-spacing:-3.081764pt;}
.wsc9{word-spacing:-3.028630pt;}
.ws82{word-spacing:-2.922363pt;}
.wsc8{word-spacing:-2.869229pt;}
.wsa3{word-spacing:-2.816095pt;}
.wsbe{word-spacing:-2.762961pt;}
.wsc1{word-spacing:-2.709827pt;}
.ws78{word-spacing:-2.603559pt;}
.ws1c{word-spacing:-2.550426pt;}
.ws5a{word-spacing:-2.391024pt;}
.wscc{word-spacing:-2.284756pt;}
.ws7e{word-spacing:-2.178489pt;}
.ws4f{word-spacing:-2.125355pt;}
.wsa0{word-spacing:-2.019087pt;}
.wsaa{word-spacing:-1.965953pt;}
.wsc6{word-spacing:-1.912819pt;}
.wsa2{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.wsb{word-spacing:-1.806551pt;}
.ws10b{word-spacing:-1.769370pt;}
.ws3b{word-spacing:-1.700284pt;}
.ws73{word-spacing:-1.647150pt;}
.wsd6{word-spacing:-1.625907pt;}
.wsbd{word-spacing:-1.594016pt;}
.ws84{word-spacing:-1.540882pt;}
.wsd4{word-spacing:-1.482445pt;}
.ws8c{word-spacing:-1.434614pt;}
.ws30{word-spacing:-1.328347pt;}
.wsee{word-spacing:-1.291162pt;}
.ws7c{word-spacing:-1.275213pt;}
.wsa9{word-spacing:-1.222079pt;}
.ws109{word-spacing:-1.195520pt;}
.wsb9{word-spacing:-1.168945pt;}
.ws55{word-spacing:-1.115811pt;}
.ws19{word-spacing:-1.062677pt;}
.ws1b{word-spacing:-1.009543pt;}
.wsda{word-spacing:-1.004237pt;}
.wsdb{word-spacing:-0.956416pt;}
.ws27{word-spacing:-0.956410pt;}
.ws16{word-spacing:-0.903276pt;}
.wsf{word-spacing:-0.850142pt;}
.ws77{word-spacing:-0.797008pt;}
.ws1a{word-spacing:-0.743874pt;}
.wsac{word-spacing:-0.717312pt;}
.wse{word-spacing:-0.690740pt;}
.ws4b{word-spacing:-0.637606pt;}
.ws8f{word-spacing:-0.584473pt;}
.ws7f{word-spacing:-0.531339pt;}
.ws33{word-spacing:-0.478205pt;}
.ws31{word-spacing:-0.425071pt;}
.ws45{word-spacing:-0.371937pt;}
.wsc4{word-spacing:-0.327485pt;}
.ws32{word-spacing:-0.318803pt;}
.wsd5{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.wsf4{word-spacing:-0.239104pt;}
.ws22{word-spacing:-0.212535pt;}
.wsd8{word-spacing:-0.191283pt;}
.ws28{word-spacing:-0.159402pt;}
.wsd7{word-spacing:-0.143462pt;}
.ws10c{word-spacing:-0.136794pt;}
.ws8{word-spacing:-0.106268pt;}
.wsde{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.wsdc{word-spacing:-0.047821pt;}
.ws107{word-spacing:-0.010104pt;}
.wsf3{word-spacing:-0.008593pt;}
.wsfb{word-spacing:-0.008371pt;}
.wsf9{word-spacing:-0.006460pt;}
.wse5{word-spacing:-0.003430pt;}
.wsf0{word-spacing:-0.003209pt;}
.wseb{word-spacing:-0.001126pt;}
.ws3{word-spacing:0.000000pt;}
.wse6{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.wsd2{word-spacing:0.095642pt;}
.wsc{word-spacing:0.106268pt;}
.wsa6{word-spacing:0.143462pt;}
.ws9{word-spacing:0.159402pt;}
.wsa7{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.wse3{word-spacing:0.239104pt;}
.ws10{word-spacing:0.265669pt;}
.wsef{word-spacing:0.286925pt;}
.ws29{word-spacing:0.318803pt;}
.wsd0{word-spacing:0.334746pt;}
.ws2{word-spacing:0.369478pt;}
.ws69{word-spacing:0.371937pt;}
.ws4{word-spacing:0.373246pt;}
.ws6{word-spacing:0.375335pt;}
.ws50{word-spacing:0.425071pt;}
.wsdd{word-spacing:0.430387pt;}
.ws65{word-spacing:0.478205pt;}
.wsd1{word-spacing:0.526029pt;}
.ws26{word-spacing:0.531339pt;}
.ws99{word-spacing:0.584473pt;}
.ws103{word-spacing:0.621670pt;}
.ws5d{word-spacing:0.637606pt;}
.ws43{word-spacing:0.690740pt;}
.ws3d{word-spacing:0.743874pt;}
.wscf{word-spacing:0.797008pt;}
.ws5b{word-spacing:0.850142pt;}
.ws5c{word-spacing:0.903276pt;}
.ws11{word-spacing:0.956410pt;}
.ws25{word-spacing:1.009543pt;}
.wsd9{word-spacing:1.052058pt;}
.ws7a{word-spacing:1.062677pt;}
.wsa4{word-spacing:1.115811pt;}
.ws85{word-spacing:1.168945pt;}
.wsd{word-spacing:1.222079pt;}
.ws64{word-spacing:1.275213pt;}
.wsc7{word-spacing:1.328347pt;}
.ws6e{word-spacing:1.381481pt;}
.ws7d{word-spacing:1.434614pt;}
.ws62{word-spacing:1.487748pt;}
.ws8d{word-spacing:1.540882pt;}
.wsf6{word-spacing:1.572692pt;}
.wsf5{word-spacing:1.578086pt;}
.ws70{word-spacing:1.594016pt;}
.ws52{word-spacing:1.647150pt;}
.ws51{word-spacing:1.700284pt;}
.ws74{word-spacing:1.753418pt;}
.ws54{word-spacing:1.806551pt;}
.ws1d{word-spacing:1.859685pt;}
.ws44{word-spacing:1.912819pt;}
.ws76{word-spacing:1.965953pt;}
.ws75{word-spacing:2.019087pt;}
.wsab{word-spacing:2.072221pt;}
.wse7{word-spacing:2.104115pt;}
.ws46{word-spacing:2.125355pt;}
.ws61{word-spacing:2.178489pt;}
.ws3a{word-spacing:2.231622pt;}
.wsb2{word-spacing:2.284756pt;}
.wsd3{word-spacing:2.294101pt;}
.ws81{word-spacing:2.337890pt;}
.ws12{word-spacing:2.391024pt;}
.ws24{word-spacing:2.444158pt;}
.ws94{word-spacing:2.497292pt;}
.ws66{word-spacing:2.550426pt;}
.ws7{word-spacing:2.550432pt;}
.ws56{word-spacing:2.603559pt;}
.ws71{word-spacing:2.656693pt;}
.wsdf{word-spacing:2.677965pt;}
.wsa{word-spacing:2.709827pt;}
.wsfa{word-spacing:2.725786pt;}
.ws8b{word-spacing:2.762961pt;}
.wsfc{word-spacing:2.773606pt;}
.ws3c{word-spacing:2.816095pt;}
.wsfe{word-spacing:2.862583pt;}
.wsff{word-spacing:2.863223pt;}
.ws10a{word-spacing:2.865271pt;}
.wsfd{word-spacing:2.865673pt;}
.ws102{word-spacing:2.866594pt;}
.ws4d{word-spacing:2.869229pt;}
.wse2{word-spacing:2.869248pt;}
.ws10e{word-spacing:2.871987pt;}
.wsb3{word-spacing:2.922363pt;}
.wse8{word-spacing:2.964890pt;}
.wsbf{word-spacing:2.975497pt;}
.ws101{word-spacing:3.060531pt;}
.ws23{word-spacing:3.081764pt;}
.ws10f{word-spacing:3.108352pt;}
.ws9d{word-spacing:3.134898pt;}
.ws98{word-spacing:3.188032pt;}
.wsf2{word-spacing:3.203994pt;}
.ws14{word-spacing:3.231547pt;}
.ws8a{word-spacing:3.241166pt;}
.wsa1{word-spacing:3.294300pt;}
.ws104{word-spacing:3.299635pt;}
.ws38{word-spacing:3.347434pt;}
.ws17{word-spacing:3.400567pt;}
.ws106{word-spacing:3.443098pt;}
.ws95{word-spacing:3.453701pt;}
.wscb{word-spacing:3.506835pt;}
.ws92{word-spacing:3.559969pt;}
.ws97{word-spacing:3.613103pt;}
.ws2d{word-spacing:3.666237pt;}
.ws42{word-spacing:3.719371pt;}
.ws34{word-spacing:3.772505pt;}
.ws100{word-spacing:3.777843pt;}
.ws2b{word-spacing:3.825638pt;}
.ws15{word-spacing:3.825664pt;}
.wsa8{word-spacing:3.878772pt;}
.ws59{word-spacing:3.931906pt;}
.ws60{word-spacing:3.985040pt;}
.ws37{word-spacing:4.038174pt;}
.ws63{word-spacing:4.091308pt;}
.wse1{word-spacing:4.112589pt;}
.ws72{word-spacing:4.144442pt;}
.ws48{word-spacing:4.197575pt;}
.wsb1{word-spacing:4.250709pt;}
.ws2f{word-spacing:4.303843pt;}
.ws6a{word-spacing:4.356977pt;}
.ws6c{word-spacing:4.410111pt;}
.ws20{word-spacing:4.463245pt;}
.ws79{word-spacing:4.516379pt;}
.ws57{word-spacing:4.569513pt;}
.ws39{word-spacing:4.622646pt;}
.ws7b{word-spacing:4.675780pt;}
.ws9c{word-spacing:4.782048pt;}
.ws93{word-spacing:4.835182pt;}
.ws4a{word-spacing:4.888316pt;}
.ws83{word-spacing:4.941450pt;}
.ws105{word-spacing:4.973325pt;}
.ws58{word-spacing:4.994583pt;}
.ws40{word-spacing:5.047717pt;}
.ws3e{word-spacing:5.100851pt;}
.wsea{word-spacing:5.116826pt;}
.ws6f{word-spacing:5.207119pt;}
.ws9b{word-spacing:5.260253pt;}
.ws35{word-spacing:5.313387pt;}
.wsf8{word-spacing:5.355930pt;}
.wsce{word-spacing:5.366521pt;}
.wsca{word-spacing:5.419654pt;}
.ws41{word-spacing:5.472788pt;}
.ws4c{word-spacing:5.632190pt;}
.ws4e{word-spacing:5.685324pt;}
.ws3f{word-spacing:5.738458pt;}
.wsc3{word-spacing:5.844725pt;}
.ws80{word-spacing:5.897859pt;}
.ws6b{word-spacing:5.950993pt;}
.ws49{word-spacing:6.004127pt;}
.ws91{word-spacing:6.110395pt;}
.ws21{word-spacing:6.163529pt;}
.ws36{word-spacing:6.269796pt;}
.ws68{word-spacing:6.376064pt;}
.ws88{word-spacing:6.429198pt;}
.wsec{word-spacing:6.455808pt;}
.wscd{word-spacing:6.482332pt;}
.ws89{word-spacing:6.588599pt;}
.ws8e{word-spacing:6.748001pt;}
.ws90{word-spacing:6.801135pt;}
.ws6d{word-spacing:6.907403pt;}
.ws9a{word-spacing:7.173072pt;}
.ws2e{word-spacing:7.226206pt;}
.ws53{word-spacing:7.279340pt;}
.ws96{word-spacing:7.332474pt;}
.wsbc{word-spacing:7.438741pt;}
.wsb8{word-spacing:7.545009pt;}
.wsc2{word-spacing:8.023214pt;}
.ws10d{word-spacing:8.121353pt;}
.wsed{word-spacing:8.121591pt;}
.wse4{word-spacing:8.122172pt;}
.wsf7{word-spacing:8.124527pt;}
.wsf1{word-spacing:8.126711pt;}
.wsaf{word-spacing:8.129482pt;}
.ws108{word-spacing:8.129536pt;}
.wsae{word-spacing:8.448285pt;}
.ws9f{word-spacing:8.554553pt;}
.wsb0{word-spacing:10.414238pt;}
.wse9{word-spacing:12.194304pt;}
.ws9e{word-spacing:14.080475pt;}
.ws1{word-spacing:19.715148pt;}
.ws5e{word-spacing:109.266316pt;}
.wsb4{word-spacing:159.719185pt;}
.wsb6{word-spacing:175.394894pt;}
.wsb7{word-spacing:193.088471pt;}
.wsba{word-spacing:227.681941pt;}
.ws5f{word-spacing:234.534490pt;}
.wsb5{word-spacing:288.782565pt;}
.ws67{word-spacing:297.106937pt;}
.wsbb{word-spacing:313.914884pt;}
._35{margin-left:-20.499206pt;}
._36{margin-left:-19.590525pt;}
._37{margin-left:-18.582874pt;}
._4{margin-left:-10.616218pt;}
._2e{margin-left:-8.480375pt;}
._30{margin-left:-7.502594pt;}
._d{margin-left:-6.322930pt;}
._c{margin-left:-5.409031pt;}
._9{margin-left:-3.910662pt;}
._2{margin-left:-2.752326pt;}
._1{margin-left:-1.338970pt;}
._2b{width:1.328347pt;}
._2c{width:2.337890pt;}
._29{width:3.506835pt;}
._2a{width:4.782048pt;}
._0{width:9.670336pt;}
._17{width:11.434404pt;}
._12{width:13.177232pt;}
._28{width:14.122986pt;}
._e{width:15.206909pt;}
._19{width:16.099562pt;}
._b{width:17.172862pt;}
._10{width:18.118649pt;}
._3{width:19.342805pt;}
._15{width:21.094145pt;}
._11{width:22.167445pt;}
._f{width:23.857106pt;}
._a{width:25.185453pt;}
._1b{width:26.418155pt;}
._1e{width:27.427698pt;}
._18{width:28.500998pt;}
._5{width:29.648896pt;}
._1c{width:31.614651pt;}
._1d{width:33.261801pt;}
._38{width:34.197307pt;}
._16{width:35.493423pt;}
._25{width:37.565644pt;}
._2d{width:38.840857pt;}
._2f{width:41.444416pt;}
._6{width:48.375083pt;}
._3a{width:54.993920pt;}
._7{width:61.664725pt;}
._8{width:74.944601pt;}
._39{width:78.904320pt;}
._1a{width:81.082281pt;}
._27{width:83.154501pt;}
._21{width:206.637607pt;}
._33{width:239.580605pt;}
._22{width:242.015008pt;}
._24{width:249.209109pt;}
._32{width:252.864071pt;}
._1f{width:262.746971pt;}
._23{width:293.398263pt;}
._34{width:352.277536pt;}
._31{width:355.624970pt;}
._20{width:408.546301pt;}
._13{width:1420.444270pt;}
._26{width:1995.692270pt;}
._14{width:2016.945604pt;}
.fs7{font-size:32.482739pt;}
.fs6{font-size:37.123130pt;}
.fs0{font-size:37.193600pt;}
.fsc{font-size:40.880195pt;}
.fs3{font-size:42.507200pt;}
.fs8{font-size:46.403913pt;}
.fsb{font-size:46.720222pt;}
.fs5{font-size:47.820800pt;}
.fsd{font-size:52.560250pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:55.365867pt;}
.fs10{font-size:57.877376pt;}
.fsa{font-size:58.400278pt;}
.fs4{font-size:63.761067pt;}
.fsf{font-size:70.739015pt;}
.fs9{font-size:92.801261pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y171{bottom:7.606726pt;}
.y20c{bottom:26.403875pt;}
.y206{bottom:31.308561pt;}
.y20b{bottom:38.813934pt;}
.y3f{bottom:40.818667pt;}
.y221{bottom:51.375915pt;}
.y200{bottom:56.334017pt;}
.y208{bottom:61.352778pt;}
.y18d{bottom:64.451519pt;}
.y20a{bottom:68.744077pt;}
.y299{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y3e{bottom:89.621333pt;}
.y2f3{bottom:90.122667pt;}
.y275{bottom:90.401333pt;}
.y99{bottom:91.902667pt;}
.y2d0{bottom:91.929333pt;}
.y2d3{bottom:93.257333pt;}
.y188{bottom:95.774160pt;}
.ycc{bottom:97.242667pt;}
.y1a9{bottom:99.284000pt;}
.y219{bottom:99.516000pt;}
.yf7{bottom:101.813333pt;}
.y303{bottom:102.117333pt;}
.y72{bottom:103.473333pt;}
.y16e{bottom:103.857333pt;}
.y14{bottom:105.020000pt;}
.y169{bottom:105.213333pt;}
.y153{bottom:105.597333pt;}
.y1e0{bottom:106.102667pt;}
.y164{bottom:106.953333pt;}
.y298{bottom:107.209333pt;}
.y3d{bottom:108.192000pt;}
.y2f2{bottom:108.693333pt;}
.y274{bottom:108.972000pt;}
.y12b{bottom:109.572000pt;}
.yb6{bottom:110.088000pt;}
.y98{bottom:110.473333pt;}
.y2cf{bottom:110.500000pt;}
.y18c{bottom:111.435481pt;}
.y1d9{bottom:111.828000pt;}
.y25b{bottom:114.458667pt;}
.ycb{bottom:115.813333pt;}
.y1a8{bottom:117.853333pt;}
.y218{bottom:118.086667pt;}
.yf6{bottom:120.384000pt;}
.y224{bottom:120.507226pt;}
.y2fc{bottom:120.688000pt;}
.y13{bottom:120.920000pt;}
.y1ff{bottom:121.304327pt;}
.y71{bottom:122.042667pt;}
.y16d{bottom:122.428000pt;}
.y168{bottom:123.782667pt;}
.y311{bottom:123.972000pt;}
.y152{bottom:124.168000pt;}
.y1c2{bottom:124.673333pt;}
.y163{bottom:125.522667pt;}
.y297{bottom:125.780000pt;}
.y3c{bottom:126.761333pt;}
.y2f1{bottom:127.262667pt;}
.y273{bottom:127.542667pt;}
.y12a{bottom:128.141333pt;}
.y373{bottom:128.233333pt;}
.yb5{bottom:128.658667pt;}
.y97{bottom:129.042667pt;}
.y2ce{bottom:129.069333pt;}
.y1d8{bottom:130.398667pt;}
.y2f4{bottom:131.248000pt;}
.y343{bottom:131.906667pt;}
.y25a{bottom:133.028000pt;}
.y189{bottom:133.587454pt;}
.y1fe{bottom:133.714386pt;}
.y1dc{bottom:134.382667pt;}
.y229{bottom:135.668000pt;}
.y217{bottom:136.657333pt;}
.y12{bottom:136.820000pt;}
.yca{bottom:138.368000pt;}
.yf5{bottom:138.954667pt;}
.y2fb{bottom:139.258667pt;}
.y1a7{bottom:140.409333pt;}
.y70{bottom:140.613333pt;}
.y16c{bottom:140.998667pt;}
.y223{bottom:142.211242pt;}
.y167{bottom:142.353333pt;}
.y151{bottom:142.738667pt;}
.y1c1{bottom:143.244000pt;}
.y21c{bottom:144.093333pt;}
.y296{bottom:144.350667pt;}
.y372{bottom:145.256000pt;}
.y3b{bottom:145.332000pt;}
.y2f0{bottom:145.833333pt;}
.y272{bottom:146.112000pt;}
.y187{bottom:146.238416pt;}
.y129{bottom:146.712000pt;}
.yb4{bottom:147.228000pt;}
.y96{bottom:147.613333pt;}
.y2cd{bottom:147.640000pt;}
.y162{bottom:148.078667pt;}
.y342{bottom:148.930667pt;}
.y1d7{bottom:148.968000pt;}
.y310{bottom:149.273333pt;}
.y259{bottom:151.598667pt;}
.y1a5{bottom:152.618954pt;}
.y11{bottom:152.721333pt;}
.y1db{bottom:152.953333pt;}
.y204{bottom:154.154483pt;}
.y216{bottom:155.226667pt;}
.y18a{bottom:157.259345pt;}
.yf4{bottom:157.524000pt;}
.y2fa{bottom:157.828000pt;}
.y1a3{bottom:157.839394pt;}
.y6f{bottom:159.184000pt;}
.y23f{bottom:159.568000pt;}
.y166{bottom:160.924000pt;}
.y150{bottom:161.308000pt;}
.y21e{bottom:161.428799pt;}
.y1c0{bottom:161.813333pt;}
.y371{bottom:162.278667pt;}
.y1a4{bottom:162.479785pt;}
.y2de{bottom:162.664000pt;}
.y295{bottom:162.920000pt;}
.y16b{bottom:163.553333pt;}
.y3a{bottom:163.902667pt;}
.y2ef{bottom:164.404000pt;}
.y128{bottom:165.282667pt;}
.yb3{bottom:165.798667pt;}
.y341{bottom:165.953333pt;}
.y95{bottom:166.184000pt;}
.y2cc{bottom:166.210667pt;}
.y30f{bottom:166.606667pt;}
.y21b{bottom:166.649333pt;}
.y1d6{bottom:167.538667pt;}
.y10{bottom:168.621333pt;}
.y1a6{bottom:168.982667pt;}
.yc9{bottom:169.784000pt;}
.y170{bottom:171.180519pt;}
.y1ec{bottom:171.524000pt;}
.y215{bottom:173.797333pt;}
.y186{bottom:174.080764pt;}
.y258{bottom:174.153333pt;}
.y1da{bottom:175.509333pt;}
.yf3{bottom:176.094667pt;}
.y2f9{bottom:176.398667pt;}
.y6e{bottom:177.753333pt;}
.y2a5{bottom:178.138667pt;}
.y370{bottom:179.301333pt;}
.y161{bottom:179.493333pt;}
.y1fd{bottom:179.704605pt;}
.y14f{bottom:179.878667pt;}
.y1bf{bottom:180.384000pt;}
.y1a2{bottom:180.461302pt;}
.y2dd{bottom:181.233333pt;}
.y294{bottom:181.490667pt;}
.y23e{bottom:182.124000pt;}
.y39{bottom:182.472000pt;}
.y340{bottom:182.976000pt;}
.y127{bottom:183.852000pt;}
.y30e{bottom:183.938667pt;}
.yb2{bottom:184.369333pt;}
.yf{bottom:184.521333pt;}
.y94{bottom:184.753333pt;}
.y2cb{bottom:184.780000pt;}
.y1d5{bottom:186.109333pt;}
.y2ee{bottom:186.958667pt;}
.y209{bottom:187.734643pt;}
.yc8{bottom:188.354667pt;}
.y271{bottom:188.754667pt;}
.y1eb{bottom:190.094667pt;}
.y205{bottom:192.240137pt;}
.y214{bottom:192.368000pt;}
.y18b{bottom:192.642329pt;}
.y257{bottom:192.724000pt;}
.y1fc{bottom:194.304674pt;}
.yf2{bottom:194.665333pt;}
.y2f8{bottom:194.969333pt;}
.y6d{bottom:196.324000pt;}
.y2a4{bottom:196.709333pt;}
.y160{bottom:198.064000pt;}
.y14e{bottom:198.449333pt;}
.y1be{bottom:198.954667pt;}
.y203{bottom:199.414699pt;}
.y2dc{bottom:199.804000pt;}
.y33f{bottom:199.998667pt;}
.y293{bottom:200.061333pt;}
.ye{bottom:200.422667pt;}
.y38{bottom:201.042667pt;}
.y126{bottom:202.422667pt;}
.yb1{bottom:202.938667pt;}
.y16f{bottom:203.291699pt;}
.y93{bottom:203.324000pt;}
.y2ca{bottom:203.350667pt;}
.y185{bottom:204.243307pt;}
.y1d4{bottom:204.678667pt;}
.y270{bottom:204.694667pt;}
.y1a1{bottom:204.823356pt;}
.yc7{bottom:206.924000pt;}
.y1ea{bottom:208.664000pt;}
.y213{bottom:210.937333pt;}
.y256{bottom:211.294667pt;}
.y222{bottom:212.146405pt;}
.yf1{bottom:213.236000pt;}
.y36f{bottom:213.346667pt;}
.y23d{bottom:213.540000pt;}
.y6c{bottom:214.894667pt;}
.y2a3{bottom:215.280000pt;}
.y207{bottom:216.113509pt;}
.y15f{bottom:216.634667pt;}
.y14d{bottom:217.020000pt;}
.y33e{bottom:217.021333pt;}
.y1bd{bottom:217.524000pt;}
.y2db{bottom:218.374667pt;}
.y292{bottom:218.632000pt;}
.y37{bottom:219.613333pt;}
.y1fb{bottom:220.584800pt;}
.y26f{bottom:220.634667pt;}
.y125{bottom:220.993333pt;}
.yb0{bottom:221.509333pt;}
.y92{bottom:221.894667pt;}
.y2c9{bottom:221.921333pt;}
.y1d3{bottom:223.249333pt;}
.yd{bottom:224.293333pt;}
.yc6{bottom:225.494667pt;}
.y1e9{bottom:227.234667pt;}
.y212{bottom:229.508000pt;}
.y255{bottom:229.864000pt;}
.y36e{bottom:230.369333pt;}
.yf0{bottom:231.805333pt;}
.y23c{bottom:232.109333pt;}
.y6b{bottom:233.464000pt;}
.y2a2{bottom:233.849333pt;}
.y33d{bottom:234.044000pt;}
.y15e{bottom:235.205333pt;}
.y1bc{bottom:236.094667pt;}
.y26e{bottom:236.574667pt;}
.y2da{bottom:236.945333pt;}
.y291{bottom:237.201333pt;}
.y36{bottom:238.182667pt;}
.y124{bottom:239.562667pt;}
.y14c{bottom:239.574667pt;}
.yaf{bottom:240.080000pt;}
.yc{bottom:240.193333pt;}
.y91{bottom:240.465333pt;}
.y2c8{bottom:240.492000pt;}
.y30d{bottom:240.505333pt;}
.y1d2{bottom:241.820000pt;}
.yc5{bottom:244.065333pt;}
.y202{bottom:244.674914pt;}
.y1e8{bottom:245.805333pt;}
.y196{bottom:246.586878pt;}
.y190{bottom:247.166927pt;}
.y36d{bottom:247.392000pt;}
.y211{bottom:248.078667pt;}
.y254{bottom:248.434667pt;}
.yef{bottom:250.376000pt;}
.y23b{bottom:250.680000pt;}
.y33c{bottom:251.066667pt;}
.y6a{bottom:252.034667pt;}
.y2a1{bottom:252.420000pt;}
.y26d{bottom:252.516000pt;}
.y15d{bottom:253.774667pt;}
.y1bb{bottom:254.665333pt;}
.y2d9{bottom:255.514667pt;}
.y290{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y35{bottom:256.753333pt;}
.y18f{bottom:257.027758pt;}
.y30c{bottom:257.837333pt;}
.y123{bottom:258.133333pt;}
.yae{bottom:258.649333pt;}
.y90{bottom:259.034667pt;}
.y2c7{bottom:259.061333pt;}
.y1d1{bottom:260.390667pt;}
.yc4{bottom:262.634667pt;}
.y1e7{bottom:264.374667pt;}
.y36c{bottom:264.414667pt;}
.y195{bottom:266.308541pt;}
.y210{bottom:266.648000pt;}
.y253{bottom:267.005333pt;}
.y33b{bottom:268.089333pt;}
.y26c{bottom:268.456000pt;}
.y182{bottom:268.628736pt;}
.yee{bottom:268.946667pt;}
.y23a{bottom:269.250667pt;}
.y69{bottom:270.605333pt;}
.y14b{bottom:270.990667pt;}
.ya{bottom:271.994667pt;}
.y15c{bottom:272.345333pt;}
.y1ba{bottom:273.234667pt;}
.y19c{bottom:273.269128pt;}
.y2d8{bottom:274.085333pt;}
.y28f{bottom:274.342667pt;}
.y30b{bottom:275.169333pt;}
.y34{bottom:275.324000pt;}
.y122{bottom:276.704000pt;}
.yad{bottom:277.220000pt;}
.y2c6{bottom:277.632000pt;}
.y181{bottom:278.489568pt;}
.y1d0{bottom:278.960000pt;}
.yc3{bottom:281.205333pt;}
.y36b{bottom:281.437333pt;}
.y8f{bottom:281.590667pt;}
.y184{bottom:281.969861pt;}
.y1e6{bottom:282.945333pt;}
.y19b{bottom:283.129959pt;}
.y26b{bottom:284.396000pt;}
.y33a{bottom:285.112000pt;}
.y20f{bottom:285.218667pt;}
.y252{bottom:285.576000pt;}
.yed{bottom:287.516000pt;}
.y239{bottom:287.820000pt;}
.y9{bottom:287.894667pt;}
.y201{bottom:288.475123pt;}
.y68{bottom:289.176000pt;}
.y14a{bottom:289.560000pt;}
.y15b{bottom:290.916000pt;}
.y220{bottom:291.727797pt;}
.y1b9{bottom:291.805333pt;}
.y183{bottom:291.830693pt;}
.y30a{bottom:292.501333pt;}
.y2d7{bottom:292.656000pt;}
.y28e{bottom:292.912000pt;}
.y33{bottom:293.893333pt;}
.y194{bottom:294.150889pt;}
.y121{bottom:295.274667pt;}
.yac{bottom:295.790667pt;}
.y2c5{bottom:296.202667pt;}
.y2d2{bottom:297.530667pt;}
.y36a{bottom:298.460000pt;}
.yc2{bottom:299.776000pt;}
.y8e{bottom:300.160000pt;}
.y26a{bottom:300.336000pt;}
.y174{bottom:301.111475pt;}
.y1cf{bottom:301.516000pt;}
.y339{bottom:302.134667pt;}
.y20e{bottom:303.789333pt;}
.y8{bottom:303.794667pt;}
.y251{bottom:304.145333pt;}
.yec{bottom:306.086667pt;}
.y238{bottom:306.390667pt;}
.y67{bottom:307.745333pt;}
.y149{bottom:308.130667pt;}
.y15a{bottom:309.485333pt;}
.y309{bottom:309.833333pt;}
.y1b8{bottom:310.376000pt;}
.y2d6{bottom:311.225333pt;}
.y28d{bottom:311.482667pt;}
.y17b{bottom:311.552356pt;}
.y32{bottom:312.464000pt;}
.y120{bottom:313.844000pt;}
.y1cb{bottom:314.361333pt;}
.y2c4{bottom:314.772000pt;}
.y369{bottom:315.482667pt;}
.y1a0{bottom:315.612698pt;}
.y2d1{bottom:316.101333pt;}
.y269{bottom:316.276000pt;}
.yab{bottom:318.345333pt;}
.y8d{bottom:318.730667pt;}
.y338{bottom:319.157333pt;}
.y7{bottom:319.696000pt;}
.y1e5{bottom:320.085333pt;}
.y173{bottom:320.833138pt;}
.y17a{bottom:321.413187pt;}
.y250{bottom:322.716000pt;}
.yeb{bottom:324.657333pt;}
.y237{bottom:324.961333pt;}
.y19f{bottom:325.473530pt;}
.y193{bottom:326.053579pt;}
.y66{bottom:326.316000pt;}
.y148{bottom:326.701333pt;}
.y308{bottom:327.166667pt;}
.y159{bottom:328.056000pt;}
.y1b7{bottom:328.945333pt;}
.y2ed{bottom:329.796000pt;}
.y28c{bottom:330.053333pt;}
.y268{bottom:332.216000pt;}
.y11f{bottom:332.414667pt;}
.y368{bottom:332.506667pt;}
.y1ca{bottom:332.930667pt;}
.y2c3{bottom:333.342667pt;}
.y2d5{bottom:333.781333pt;}
.y228{bottom:334.331977pt;}
.y31{bottom:335.020000pt;}
.y20d{bottom:335.458667pt;}
.y6{bottom:335.596000pt;}
.y337{bottom:336.180000pt;}
.yaa{bottom:336.916000pt;}
.y8c{bottom:337.301333pt;}
.y19e{bottom:338.234606pt;}
.y1e4{bottom:338.656000pt;}
.y179{bottom:340.508038pt;}
.y24f{bottom:341.286667pt;}
.yea{bottom:343.226667pt;}
.y236{bottom:343.530667pt;}
.y1fa{bottom:344.685391pt;}
.y65{bottom:344.886667pt;}
.y147{bottom:345.270667pt;}
.y158{bottom:346.626667pt;}
.y1b6{bottom:347.516000pt;}
.y19d{bottom:348.095437pt;}
.y267{bottom:348.157333pt;}
.y2ec{bottom:348.366667pt;}
.y28b{bottom:348.622667pt;}
.y367{bottom:349.529333pt;}
.y11e{bottom:350.985333pt;}
.y1c9{bottom:351.501333pt;}
.y2c2{bottom:351.913333pt;}
.y307{bottom:352.468000pt;}
.y336{bottom:353.202667pt;}
.y175{bottom:353.315878pt;}
.ya9{bottom:355.486667pt;}
.y8b{bottom:355.870667pt;}
.y180{bottom:355.873281pt;}
.y227{bottom:356.035993pt;}
.y5{bottom:356.809333pt;}
.y24e{bottom:359.856000pt;}
.y1e3{bottom:361.212000pt;}
.ye9{bottom:361.797333pt;}
.y235{bottom:362.101333pt;}
.y17d{bottom:363.176709pt;}
.y64{bottom:363.456000pt;}
.y146{bottom:363.841333pt;}
.y266{bottom:364.097333pt;}
.y157{bottom:365.196000pt;}
.y1b5{bottom:366.086667pt;}
.y366{bottom:366.552000pt;}
.y2eb{bottom:366.936000pt;}
.y28a{bottom:367.193333pt;}
.y1f9{bottom:369.184265pt;}
.y11d{bottom:369.554667pt;}
.y306{bottom:369.800000pt;}
.y1c8{bottom:370.072000pt;}
.y335{bottom:370.225333pt;}
.y2c1{bottom:370.482667pt;}
.y198{bottom:370.717345pt;}
.y4{bottom:372.710667pt;}
.y17c{bottom:373.037541pt;}
.y225{bottom:373.720746pt;}
.ya8{bottom:374.056000pt;}
.y8a{bottom:374.441333pt;}
.y226{bottom:376.936156pt;}
.y24d{bottom:378.426667pt;}
.y177{bottom:378.838030pt;}
.y1e2{bottom:379.781333pt;}
.ye8{bottom:380.368000pt;}
.y197{bottom:380.578176pt;}
.y2f7{bottom:380.672000pt;}
.y63{bottom:382.026667pt;}
.y365{bottom:383.574667pt;}
.y156{bottom:383.766667pt;}
.y1b4{bottom:384.657333pt;}
.y2ea{bottom:385.506667pt;}
.y289{bottom:385.764000pt;}
.y145{bottom:386.397333pt;}
.y265{bottom:386.705333pt;}
.y192{bottom:386.958715pt;}
.y305{bottom:387.133333pt;}
.y334{bottom:387.248000pt;}
.y11c{bottom:388.125333pt;}
.y3{bottom:388.610667pt;}
.y1c7{bottom:388.641333pt;}
.y176{bottom:388.698861pt;}
.y2c0{bottom:389.053333pt;}
.ya7{bottom:392.626667pt;}
.y89{bottom:393.012000pt;}
.y17f{bottom:393.919301pt;}
.y264{bottom:394.674667pt;}
.y191{bottom:396.819546pt;}
.y24c{bottom:396.997333pt;}
.y1e1{bottom:398.352000pt;}
.ye7{bottom:398.937333pt;}
.y2f6{bottom:399.241333pt;}
.y62{bottom:400.597333pt;}
.y155{bottom:402.337333pt;}
.y1b3{bottom:403.226667pt;}
.y17e{bottom:403.780133pt;}
.y2e9{bottom:404.077333pt;}
.y333{bottom:404.270667pt;}
.y288{bottom:404.333333pt;}
.y304{bottom:404.465333pt;}
.y2{bottom:404.510667pt;}
.y30{bottom:405.429333pt;}
.y11b{bottom:406.696000pt;}
.y1c6{bottom:407.212000pt;}
.y19a{bottom:407.260426pt;}
.y2bf{bottom:407.624000pt;}
.ya6{bottom:411.197333pt;}
.y88{bottom:411.582667pt;}
.y178{bottom:415.381111pt;}
.y24b{bottom:415.566667pt;}
.y199{bottom:417.121258pt;}
.ye6{bottom:417.508000pt;}
.y364{bottom:417.620000pt;}
.y2a0{bottom:417.812000pt;}
.y61{bottom:419.166667pt;}
.y144{bottom:420.906667pt;}
.y332{bottom:421.293333pt;}
.y1b2{bottom:421.797333pt;}
.y2e8{bottom:422.646667pt;}
.y287{bottom:422.904000pt;}
.y2f{bottom:424.000000pt;}
.y11a{bottom:425.265333pt;}
.y1{bottom:425.725333pt;}
.y1ce{bottom:425.782667pt;}
.y2be{bottom:426.193333pt;}
.ya4{bottom:429.766667pt;}
.ya5{bottom:429.768000pt;}
.y18e{bottom:431.042432pt;}
.y263{bottom:431.681333pt;}
.y87{bottom:434.137333pt;}
.y363{bottom:434.642667pt;}
.ye5{bottom:436.078667pt;}
.y29f{bottom:436.382667pt;}
.y60{bottom:437.737333pt;}
.y331{bottom:438.316000pt;}
.y143{bottom:439.477333pt;}
.y1b1{bottom:440.368000pt;}
.y2e7{bottom:441.217333pt;}
.y286{bottom:441.474667pt;}
.y119{bottom:443.836000pt;}
.y1cd{bottom:444.352000pt;}
.y2bd{bottom:444.764000pt;}
.ya3{bottom:448.337333pt;}
.y21f{bottom:449.282876pt;}
.y362{bottom:451.665333pt;}
.y24a{bottom:452.708000pt;}
.y29e{bottom:454.953333pt;}
.y330{bottom:455.338667pt;}
.y172{bottom:455.404486pt;}
.y5f{bottom:456.308000pt;}
.y142{bottom:458.048000pt;}
.y2e{bottom:458.510667pt;}
.y1b0{bottom:458.937333pt;}
.y2e6{bottom:459.788000pt;}
.y285{bottom:460.045333pt;}
.y118{bottom:462.406667pt;}
.y1cc{bottom:462.922667pt;}
.y2bc{bottom:463.334667pt;}
.y262{bottom:464.662667pt;}
.y86{bottom:465.553333pt;}
.ya2{bottom:466.908000pt;}
.y361{bottom:468.688000pt;}
.y249{bottom:471.277333pt;}
.y32f{bottom:472.361333pt;}
.y29d{bottom:473.522667pt;}
.y5e{bottom:474.877333pt;}
.y141{bottom:476.617333pt;}
.y2d{bottom:477.081333pt;}
.y2e5{bottom:478.357333pt;}
.ye4{bottom:478.720000pt;}
.y117{bottom:480.976000pt;}
.y1af{bottom:481.493333pt;}
.y261{bottom:483.233333pt;}
.y85{bottom:484.122667pt;}
.ya1{bottom:485.478667pt;}
.y360{bottom:485.710667pt;}
.y2bb{bottom:485.889333pt;}
.ye2{bottom:486.690667pt;}
.y32e{bottom:489.385333pt;}
.y248{bottom:489.848000pt;}
.y29c{bottom:492.093333pt;}
.y5d{bottom:493.448000pt;}
.ye1{bottom:494.661333pt;}
.y140{bottom:495.188000pt;}
.y2c{bottom:495.650667pt;}
.y2e4{bottom:496.928000pt;}
.y1ae{bottom:500.062667pt;}
.y284{bottom:500.260000pt;}
.y260{bottom:501.802667pt;}
.y84{bottom:502.693333pt;}
.y35f{bottom:502.733333pt;}
.y116{bottom:503.532000pt;}
.ya0{bottom:504.048000pt;}
.y32d{bottom:506.408000pt;}
.y247{bottom:508.418667pt;}
.ye3{bottom:510.601333pt;}
.y29b{bottom:510.664000pt;}
.y5c{bottom:512.018667pt;}
.y13f{bottom:513.758667pt;}
.y2b{bottom:514.221333pt;}
.y2f5{bottom:514.648000pt;}
.y2e3{bottom:515.498667pt;}
.y283{bottom:516.200000pt;}
.y2ba{bottom:517.305333pt;}
.y165{bottom:517.744000pt;}
.y1ad{bottom:518.633333pt;}
.y35e{bottom:519.756000pt;}
.y25f{bottom:520.373333pt;}
.y83{bottom:521.264000pt;}
.y115{bottom:522.102667pt;}
.y9f{bottom:522.618667pt;}
.y32c{bottom:523.430667pt;}
.y302{bottom:529.233333pt;}
.y5b{bottom:530.589333pt;}
.y246{bottom:530.973333pt;}
.y282{bottom:532.141333pt;}
.y13e{bottom:532.329333pt;}
.y2a{bottom:532.792000pt;}
.yde{bottom:533.209333pt;}
.y29a{bottom:533.218667pt;}
.y2e2{bottom:534.069333pt;}
.y2b9{bottom:535.876000pt;}
.y35d{bottom:536.778667pt;}
.y234{bottom:537.204000pt;}
.y25e{bottom:538.944000pt;}
.y32b{bottom:540.453333pt;}
.y114{bottom:540.672000pt;}
.ye0{bottom:541.178667pt;}
.y9e{bottom:541.189333pt;}
.y82{bottom:543.818667pt;}
.y301{bottom:547.804000pt;}
.y281{bottom:548.081333pt;}
.ydd{bottom:549.149333pt;}
.y5a{bottom:549.158667pt;}
.y13d{bottom:550.898667pt;}
.y29{bottom:551.361333pt;}
.y2e1{bottom:552.638667pt;}
.y35c{bottom:553.801333pt;}
.y2b8{bottom:554.445333pt;}
.y233{bottom:555.774667pt;}
.yda{bottom:557.120000pt;}
.y32a{bottom:557.476000pt;}
.y113{bottom:559.242667pt;}
.y9d{bottom:559.758667pt;}
.y25d{bottom:561.498667pt;}
.y245{bottom:562.389333pt;}
.yc1{bottom:563.744000pt;}
.y280{bottom:564.021333pt;}
.ydc{bottom:565.089333pt;}
.y300{bottom:566.374667pt;}
.y59{bottom:567.729333pt;}
.y13c{bottom:569.469333pt;}
.y28{bottom:569.932000pt;}
.y35b{bottom:570.824000pt;}
.y2b7{bottom:573.016000pt;}
.ydf{bottom:573.060000pt;}
.y232{bottom:574.344000pt;}
.y329{bottom:574.498667pt;}
.y2e0{bottom:575.194667pt;}
.y112{bottom:577.813333pt;}
.y81{bottom:578.329333pt;}
.y27f{bottom:579.961333pt;}
.y244{bottom:580.960000pt;}
.ydb{bottom:581.029333pt;}
.yc0{bottom:582.314667pt;}
.y2ff{bottom:584.944000pt;}
.y58{bottom:586.300000pt;}
.y35a{bottom:587.846667pt;}
.y13b{bottom:588.040000pt;}
.y27{bottom:588.502667pt;}
.y328{bottom:591.521333pt;}
.y231{bottom:592.914667pt;}
.y27e{bottom:595.901333pt;}
.y111{bottom:596.382667pt;}
.y80{bottom:596.900000pt;}
.y2b6{bottom:598.228000pt;}
.y243{bottom:599.529333pt;}
.ybf{bottom:600.885333pt;}
.y2fe{bottom:603.514667pt;}
.yd7{bottom:603.637333pt;}
.y57{bottom:604.869333pt;}
.y13a{bottom:606.609333pt;}
.y26{bottom:607.073333pt;}
.y327{bottom:608.544000pt;}
.y230{bottom:611.485333pt;}
.yd9{bottom:611.608000pt;}
.y27d{bottom:611.841333pt;}
.y110{bottom:614.953333pt;}
.y7f{bottom:615.469333pt;}
.y2b5{bottom:616.798667pt;}
.y242{bottom:618.100000pt;}
.ybe{bottom:619.454667pt;}
.yd6{bottom:619.577333pt;}
.y359{bottom:621.892000pt;}
.y56{bottom:623.440000pt;}
.y139{bottom:625.180000pt;}
.y326{bottom:625.566667pt;}
.y25{bottom:625.642667pt;}
.y2fd{bottom:626.070667pt;}
.yd3{bottom:627.548000pt;}
.y27c{bottom:627.782667pt;}
.y16a{bottom:629.165333pt;}
.y22f{bottom:630.054667pt;}
.y10f{bottom:633.524000pt;}
.y7e{bottom:634.040000pt;}
.y2b4{bottom:635.368000pt;}
.yd5{bottom:635.518667pt;}
.y241{bottom:636.670667pt;}
.ybd{bottom:638.025333pt;}
.y358{bottom:638.914667pt;}
.y55{bottom:642.010667pt;}
.y325{bottom:642.589333pt;}
.yd8{bottom:643.488000pt;}
.y27b{bottom:643.722667pt;}
.y138{bottom:643.750667pt;}
.y24{bottom:644.213333pt;}
.y22e{bottom:648.625333pt;}
.yd4{bottom:651.458667pt;}
.y7d{bottom:652.610667pt;}
.y2b3{bottom:653.938667pt;}
.y357{bottom:655.937333pt;}
.y10e{bottom:656.078667pt;}
.ybc{bottom:656.596000pt;}
.y240{bottom:659.225333pt;}
.y324{bottom:659.612000pt;}
.y27a{bottom:659.662667pt;}
.y54{bottom:660.580000pt;}
.y137{bottom:662.320000pt;}
.y23{bottom:662.784000pt;}
.y154{bottom:666.305333pt;}
.y22d{bottom:667.196000pt;}
.y7c{bottom:671.180000pt;}
.y2b2{bottom:672.509333pt;}
.y356{bottom:672.961333pt;}
.yd2{bottom:674.066667pt;}
.y10d{bottom:674.649333pt;}
.ybb{bottom:675.165333pt;}
.y279{bottom:675.602667pt;}
.y323{bottom:676.634667pt;}
.y53{bottom:679.150667pt;}
.y136{bottom:680.890667pt;}
.y22{bottom:681.353333pt;}
.yd0{bottom:682.036000pt;}
.y22c{bottom:685.765333pt;}
.y7b{bottom:689.750667pt;}
.y355{bottom:689.984000pt;}
.ycf{bottom:690.006667pt;}
.y2b1{bottom:691.078667pt;}
.y10c{bottom:693.220000pt;}
.y322{bottom:693.657333pt;}
.yba{bottom:693.736000pt;}
.y52{bottom:697.721333pt;}
.y278{bottom:698.210667pt;}
.y135{bottom:699.461333pt;}
.y21{bottom:699.924000pt;}
.y22b{bottom:704.336000pt;}
.yd1{bottom:705.946667pt;}
.y277{bottom:706.181333pt;}
.y354{bottom:707.006667pt;}
.y7a{bottom:708.321333pt;}
.y2b0{bottom:709.649333pt;}
.y321{bottom:710.680000pt;}
.y9c{bottom:712.306667pt;}
.y51{bottom:716.290667pt;}
.y134{bottom:718.030667pt;}
.y20{bottom:718.494667pt;}
.y22a{bottom:722.906667pt;}
.y353{bottom:724.029333pt;}
.y79{bottom:726.892000pt;}
.y320{bottom:727.702667pt;}
.y2af{bottom:728.220000pt;}
.yce{bottom:728.554667pt;}
.y9b{bottom:730.876000pt;}
.y50{bottom:734.861333pt;}
.y10b{bottom:735.861333pt;}
.y133{bottom:736.601333pt;}
.y1f{bottom:737.064000pt;}
.y352{bottom:741.052000pt;}
.y276{bottom:743.186667pt;}
.y108{bottom:743.832000pt;}
.y31f{bottom:744.725333pt;}
.y78{bottom:745.461333pt;}
.y2ae{bottom:746.790667pt;}
.y9a{bottom:749.446667pt;}
.y10a{bottom:751.801333pt;}
.y1f8{bottom:752.077333pt;}
.y4f{bottom:753.432000pt;}
.y132{bottom:755.172000pt;}
.y1e{bottom:755.634667pt;}
.ycd{bottom:757.590667pt;}
.y351{bottom:758.074667pt;}
.y107{bottom:759.772000pt;}
.y31e{bottom:761.748000pt;}
.y1df{bottom:764.032000pt;}
.y2ad{bottom:765.360000pt;}
.y109{bottom:767.742667pt;}
.y77{bottom:768.017333pt;}
.y1f7{bottom:770.646667pt;}
.y4e{bottom:772.002667pt;}
.y131{bottom:773.742667pt;}
.y350{bottom:775.097333pt;}
.y21a{bottom:777.726667pt;}
.y31d{bottom:778.770667pt;}
.y1d{bottom:782.174667pt;}
.y1de{bottom:782.602667pt;}
.y2ac{bottom:783.930667pt;}
.y76{bottom:786.586667pt;}
.y1f6{bottom:789.217333pt;}
.y106{bottom:790.350667pt;}
.y4d{bottom:790.572000pt;}
.y34f{bottom:792.120000pt;}
.y130{bottom:792.312000pt;}
.y31c{bottom:795.793333pt;}
.y21d{bottom:796.297333pt;}
.y103{bottom:798.320000pt;}
.y1dd{bottom:801.172000pt;}
.y2ab{bottom:802.501333pt;}
.y75{bottom:805.157333pt;}
.y105{bottom:806.290667pt;}
.y1f5{bottom:807.788000pt;}
.y4c{bottom:809.142667pt;}
.y12f{bottom:810.882667pt;}
.y31b{bottom:812.816000pt;}
.y102{bottom:814.260000pt;}
.y1c{bottom:817.748000pt;}
.y25c{bottom:819.742667pt;}
.y2aa{bottom:821.070667pt;}
.y104{bottom:822.230667pt;}
.y74{bottom:823.728000pt;}
.y34e{bottom:826.165333pt;}
.y1f4{bottom:826.357333pt;}
.y4b{bottom:827.713333pt;}
.y12e{bottom:829.453333pt;}
.y31a{bottom:829.840000pt;}
.y1b{bottom:832.094667pt;}
.y2d4{bottom:833.437333pt;}
.y2a9{bottom:839.641333pt;}
.yb9{bottom:842.297333pt;}
.y73{bottom:842.298667pt;}
.y34d{bottom:843.188000pt;}
.y101{bottom:844.838667pt;}
.y1f3{bottom:844.928000pt;}
.y4a{bottom:846.282667pt;}
.y1a{bottom:846.441333pt;}
.y319{bottom:846.862667pt;}
.y12d{bottom:848.022667pt;}
.y2df{bottom:852.008000pt;}
.y2a8{bottom:858.212000pt;}
.y34c{bottom:860.210667pt;}
.yff{bottom:860.778667pt;}
.yb8{bottom:860.868000pt;}
.y1f2{bottom:863.498667pt;}
.y318{bottom:863.885333pt;}
.y49{bottom:864.853333pt;}
.y12c{bottom:870.578667pt;}
.y100{bottom:876.718667pt;}
.y2a7{bottom:876.781333pt;}
.y34b{bottom:877.233333pt;}
.yb7{bottom:879.438667pt;}
.y317{bottom:880.908000pt;}
.y1f1{bottom:882.068000pt;}
.y48{bottom:883.424000pt;}
.y19{bottom:890.010667pt;}
.y376{bottom:892.709333pt;}
.y34a{bottom:894.256000pt;}
.y2a6{bottom:895.352000pt;}
.y316{bottom:897.930667pt;}
.y1ac{bottom:898.009333pt;}
.yfe{bottom:899.326667pt;}
.y1f0{bottom:900.638667pt;}
.y47{bottom:901.993333pt;}
.y375{bottom:909.732000pt;}
.y349{bottom:911.278667pt;}
.yfc{bottom:915.266667pt;}
.y1ab{bottom:916.578667pt;}
.y315{bottom:918.938667pt;}
.y1ef{bottom:919.209333pt;}
.y46{bottom:920.564000pt;}
.y18{bottom:924.521333pt;}
.y374{bottom:926.754667pt;}
.y348{bottom:928.301333pt;}
.yfb{bottom:931.208000pt;}
.y1aa{bottom:935.149333pt;}
.y1ee{bottom:937.778667pt;}
.y45{bottom:939.134667pt;}
.y347{bottom:945.324000pt;}
.yfd{bottom:947.148000pt;}
.y17{bottom:952.377333pt;}
.y314{bottom:953.448000pt;}
.y1c5{bottom:953.720000pt;}
.y44{bottom:957.704000pt;}
.y1ed{bottom:960.334667pt;}
.y346{bottom:962.346667pt;}
.yfa{bottom:969.756000pt;}
.y1c4{bottom:972.289333pt;}
.y43{bottom:976.274667pt;}
.yf9{bottom:977.725333pt;}
.y313{bottom:978.750667pt;}
.y345{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.y1c3{bottom:990.860000pt;}
.y42{bottom:994.845333pt;}
.y312{bottom:996.082667pt;}
.y344{bottom:996.392000pt;}
.y41{bottom:1013.414667pt;}
.yf8{bottom:1014.732000pt;}
.y40{bottom:1066.841333pt;}
.h12{height:23.648322pt;}
.h14{height:23.664183pt;}
.hf{height:26.620067pt;}
.h11{height:27.026654pt;}
.h19{height:29.761900pt;}
.h2{height:33.771789pt;}
.h13{height:33.783318pt;}
.h18{height:34.013599pt;}
.h3{height:34.032144pt;}
.h1a{height:38.290964pt;}
.h7{height:38.596538pt;}
.h8{height:38.894088pt;}
.h4{height:39.000258pt;}
.h1c{height:41.524400pt;}
.h20{height:42.164573pt;}
.h17{height:42.516999pt;}
.h1b{height:42.545515pt;}
.h22{height:43.421286pt;}
.hb{height:43.756032pt;}
.h9{height:48.245551pt;}
.h6{height:48.617488pt;}
.h1e{height:51.499937pt;}
.h1f{height:51.534478pt;}
.ha{height:58.341376pt;}
.h15{height:67.607169pt;}
.hc{height:80.122884pt;}
.he{height:80.128218pt;}
.h21{height:80.494821pt;}
.hd{height:80.500155pt;}
.h5{height:87.512064pt;}
.h16{height:365.936875pt;}
.h10{height:488.522610pt;}
.h1d{height:495.674359pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:317.465307pt;}
.w3{width:623.958884pt;}
.w2{width:648.610643pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x70{left:21.483572pt;}
.x6c{left:22.933695pt;}
.x71{left:24.420070pt;}
.x6f{left:25.317336pt;}
.x72{left:28.027249pt;}
.x6b{left:32.314176pt;}
.x73{left:40.581960pt;}
.x1{left:47.621333pt;}
.xaf{left:54.370004pt;}
.x6a{left:63.503083pt;}
.x9f{left:64.690753pt;}
.xad{left:72.192916pt;}
.xb9{left:76.309333pt;}
.x6d{left:83.775390pt;}
.x98{left:84.858082pt;}
.xa1{left:87.788537pt;}
.x9d{left:89.248544pt;}
.x77{left:105.654110pt;}
.x9e{left:106.643155pt;}
.x74{left:110.158550pt;}
.x76{left:114.001374pt;}
.x75{left:116.022485pt;}
.xae{left:118.791237pt;}
.x78{left:121.886414pt;}
.xb0{left:126.126391pt;}
.x8e{left:127.913487pt;}
.x79{left:129.046957pt;}
.x99{left:134.360474pt;}
.x8b{left:137.420849pt;}
.xac{left:146.888396pt;}
.x8c{left:171.643735pt;}
.x6e{left:187.993863pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x5b{left:223.094667pt;}
.xab{left:224.021383pt;}
.x42{left:230.406667pt;}
.x36{left:233.149333pt;}
.xb5{left:235.298667pt;}
.x3b{left:237.360000pt;}
.x8d{left:238.711890pt;}
.x55{left:242.025333pt;}
.x4{left:250.105333pt;}
.x5c{left:251.081333pt;}
.x4e{left:252.260000pt;}
.xb4{left:255.954667pt;}
.x8a{left:256.983431pt;}
.x4f{left:262.468000pt;}
.x58{left:265.769333pt;}
.x89{left:267.514944pt;}
.x83{left:273.007282pt;}
.x87{left:275.590315pt;}
.x65{left:276.494667pt;}
.x50{left:278.766667pt;}
.x67{left:279.864000pt;}
.x86{left:284.526694pt;}
.x1f{left:290.368000pt;}
.x44{left:293.662667pt;}
.x3c{left:295.356000pt;}
.x20{left:297.009333pt;}
.x3d{left:298.357333pt;}
.x45{left:300.224000pt;}
.xa3{left:305.363788pt;}
.xa4{left:308.178667pt;}
.x43{left:310.750667pt;}
.x37{left:313.753333pt;}
.xb3{left:316.768000pt;}
.x3e{left:319.478667pt;}
.x1d{left:323.982667pt;}
.xb2{left:326.306667pt;}
.x3f{left:329.865333pt;}
.x88{left:334.465280pt;}
.x46{left:336.002667pt;}
.x1e{left:337.265333pt;}
.x47{left:339.562667pt;}
.x66{left:340.516000pt;}
.xa2{left:341.886775pt;}
.x5f{left:347.861333pt;}
.x91{left:349.538667pt;}
.x2e{left:353.856000pt;}
.x7d{left:355.057016pt;}
.x9b{left:360.171084pt;}
.x60{left:361.144000pt;}
.x92{left:362.821333pt;}
.x7c{left:364.301546pt;}
.x2f{left:367.138667pt;}
.xa5{left:368.060000pt;}
.x61{left:372.173333pt;}
.x19{left:375.486667pt;}
.x5{left:376.526667pt;}
.x85{left:377.796743pt;}
.x4a{left:378.709333pt;}
.x84{left:381.113898pt;}
.x6{left:382.969333pt;}
.xa6{left:383.901333pt;}
.x62{left:385.457333pt;}
.x8f{left:386.972000pt;}
.x1a{left:388.769333pt;}
.x4b{left:391.993333pt;}
.x90{left:393.613333pt;}
.x4c{left:395.381333pt;}
.x17{left:400.572000pt;}
.x23{left:402.337333pt;}
.x4d{left:408.664000pt;}
.x18{left:413.854667pt;}
.x24{left:415.621333pt;}
.xd{left:422.381333pt;}
.xe{left:429.022667pt;}
.x96{left:430.942667pt;}
.x2c{left:432.533333pt;}
.x80{left:439.408814pt;}
.x97{left:444.226667pt;}
.x2d{left:445.817333pt;}
.x63{left:448.310667pt;}
.x25{left:450.492000pt;}
.xa7{left:456.408000pt;}
.x7e{left:457.607848pt;}
.x64{left:461.594667pt;}
.x26{left:463.776000pt;}
.x9c{left:465.325800pt;}
.x9a{left:470.048010pt;}
.x11{left:470.966667pt;}
.x12{left:477.608000pt;}
.x93{left:481.882667pt;}
.x31{left:488.600000pt;}
.x5d{left:492.682667pt;}
.x7f{left:495.383534pt;}
.xa0{left:499.692999pt;}
.x32{left:501.884000pt;}
.x15{left:503.094667pt;}
.x5e{left:505.965333pt;}
.xf{left:513.540000pt;}
.x16{left:516.378667pt;}
.x82{left:518.612683pt;}
.x10{left:520.182667pt;}
.x7a{left:521.340723pt;}
.x38{left:524.228000pt;}
.xa8{left:526.332000pt;}
.x40{left:528.644000pt;}
.x81{left:531.573151pt;}
.x7b{left:532.696996pt;}
.x35{left:534.369333pt;}
.x9{left:536.466667pt;}
.x39{left:540.166667pt;}
.x13{left:541.580000pt;}
.xa{left:543.109333pt;}
.x48{left:545.733333pt;}
.x14{left:548.221333pt;}
.x7{left:550.528000pt;}
.x54{left:555.250667pt;}
.x8{left:556.970667pt;}
.x59{left:558.216000pt;}
.x56{left:559.570667pt;}
.x41{left:560.996000pt;}
.xa9{left:565.994667pt;}
.x51{left:568.510667pt;}
.x3a{left:569.470667pt;}
.x2b{left:570.696000pt;}
.x1b{left:571.940000pt;}
.x52{left:573.830667pt;}
.xb1{left:574.805333pt;}
.x5a{left:576.076000pt;}
.x49{left:577.168000pt;}
.x57{left:578.114667pt;}
.x53{left:579.768000pt;}
.x1c{left:585.224000pt;}
.xb6{left:594.658667pt;}
.x33{left:597.677333pt;}
.xaa{left:599.224000pt;}
.xb7{left:601.300000pt;}
.x29{left:605.429333pt;}
.x34{left:610.960000pt;}
.x27{left:612.861333pt;}
.x2a{left:618.713333pt;}
.x28{left:626.145333pt;}
.x94{left:628.797333pt;}
.x95{left:642.081333pt;}
.x21{left:645.614667pt;}
.x22{left:658.897333pt;}
.xb{left:675.444000pt;}
.xc{left:682.085333pt;}
.x30{left:695.009333pt;}
.xb8{left:696.434667pt;}
.x68{left:702.389333pt;}
.x69{left:715.673333pt;}
}




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