
    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_7f935f07a95c9e90c1859865.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_44b2b2ad0aa224abd7393e51.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a971005fce8fd7fd3c59bcaa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1da88dffc575c75e4f1bb41a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_266b1e7bf783456d377946f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_355ff2b7d570b00ce2d68986.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.825000;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_3fb07b389a025260a9fbfdde.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_43df7eb0ca2d0aa6a5d2ff74.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.505000;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_e9fb900a51ff933eb49f0be7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;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;}
.me{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);}
.m29{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mf{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);}
.m12{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);}
.m2{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);}
.m21{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);}
.m1e{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);}
.m18{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);}
.m13{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);}
.m20{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);}
.m26{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);}
.m24{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);}
.m28{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);}
.m16{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);}
.m1a{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);}
.m17{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);}
.m3{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);}
.m2a{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);}
.mb{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);}
.m10{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);}
.m19{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);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m25{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);}
.m22{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m7{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m2b{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);}
.m15{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);}
.m1d{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);}
.m9{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);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.760000px;}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.982000px;}
.v5{vertical-align:14.766000px;}
.v6{vertical-align:16.494000px;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000422px;}
.ls14{letter-spacing:0.000435px;}
.ls36{letter-spacing:0.001133px;}
.ls37{letter-spacing:0.003178px;}
.ls1f{letter-spacing:0.398570px;}
.ls13{letter-spacing:0.525204px;}
.ls23{letter-spacing:0.564571px;}
.ls1d{letter-spacing:0.570571px;}
.ls32{letter-spacing:0.593444px;}
.ls33{letter-spacing:0.598407px;}
.ls26{letter-spacing:0.670741px;}
.ls16{letter-spacing:0.745331px;}
.ls25{letter-spacing:0.746383px;}
.ls2a{letter-spacing:0.793135px;}
.ls29{letter-spacing:0.799135px;}
.lsd{letter-spacing:0.896634px;}
.ls17{letter-spacing:0.994200px;}
.ls24{letter-spacing:1.044337px;}
.ls1b{letter-spacing:1.420741px;}
.ls21{letter-spacing:1.464783px;}
.ls2c{letter-spacing:1.480378px;}
.ls18{letter-spacing:1.566600px;}
.ls27{letter-spacing:1.942954px;}
.ls1c{letter-spacing:2.005897px;}
.ls22{letter-spacing:2.011897px;}
.ls35{letter-spacing:3.091344px;}
.ls1a{letter-spacing:3.806383px;}
.ls20{letter-spacing:3.812383px;}
.lsa{letter-spacing:11.536691px;}
.ls5{letter-spacing:11.954850px;}
.ls30{letter-spacing:12.911530px;}
.ls1e{letter-spacing:13.089483px;}
.lsb{letter-spacing:13.090856px;}
.ls2b{letter-spacing:13.172815px;}
.ls11{letter-spacing:13.748388px;}
.lsc{letter-spacing:13.808164px;}
.ls9{letter-spacing:14.585246px;}
.ls12{letter-spacing:14.704798px;}
.ls10{letter-spacing:14.764573px;}
.ls39{letter-spacing:14.884124px;}
.ls6{letter-spacing:14.943900px;}
.ls7{letter-spacing:15.003676px;}
.ls8{letter-spacing:15.063451px;}
.ls3b{letter-spacing:15.123227px;}
.ls3{letter-spacing:15.242778px;}
.ls28{letter-spacing:15.616741px;}
.ls15{letter-spacing:15.692383px;}
.ls2e{letter-spacing:15.960085px;}
.lsf{letter-spacing:16.079636px;}
.ls34{letter-spacing:16.258963px;}
.ls31{letter-spacing:16.378514px;}
.ls2d{letter-spacing:16.916495px;}
.lse{letter-spacing:17.633802px;}
.ls4{letter-spacing:17.932680px;}
.ls2f{letter-spacing:18.351109px;}
.ls3a{letter-spacing:19.905275px;}
.ls19{letter-spacing:25.845483px;}
.ls1{letter-spacing:62.761200px;}
.ls2{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa9{word-spacing:-51.700387px;}
.wsa7{word-spacing:-51.694387px;}
.ws12{word-spacing:-14.943900px;}
.wsdb{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.wsac{word-spacing:-8.966400px;}
.wsaa{word-spacing:-4.233600px;}
.ws41{word-spacing:-3.347434px;}
.wse6{word-spacing:-3.168107px;}
.ws9a{word-spacing:-2.988780px;}
.ws28{word-spacing:-2.929004px;}
.ws69{word-spacing:-2.570351px;}
.ws5a{word-spacing:-2.331248px;}
.wsa2{word-spacing:-2.151922px;}
.ws106{word-spacing:-2.044339px;}
.wsb5{word-spacing:-2.032370px;}
.ws9c{word-spacing:-1.912819px;}
.ws42{word-spacing:-1.853044px;}
.wse9{word-spacing:-1.793268px;}
.ws114{word-spacing:-1.775347px;}
.ws4b{word-spacing:-1.733492px;}
.ws70{word-spacing:-1.673717px;}
.ws3a{word-spacing:-1.613941px;}
.ws96{word-spacing:-1.494390px;}
.wsa6{word-spacing:-1.434614px;}
.wsaf{word-spacing:-1.374839px;}
.ws6d{word-spacing:-1.315063px;}
.ws68{word-spacing:-1.255288px;}
.wsae{word-spacing:-1.195512px;}
.ws44{word-spacing:-1.135736px;}
.ws11d{word-spacing:-0.968371px;}
.ws47{word-spacing:-0.956410px;}
.ws6c{word-spacing:-0.896634px;}
.ws88{word-spacing:-0.875127px;}
.ws108{word-spacing:-0.860774px;}
.ws3b{word-spacing:-0.836858px;}
.ws94{word-spacing:-0.777083px;}
.ws85{word-spacing:-0.743858px;}
.ws40{word-spacing:-0.717307px;}
.ws29{word-spacing:-0.657532px;}
.ws117{word-spacing:-0.645581px;}
.wsdf{word-spacing:-0.597756px;}
.wsed{word-spacing:-0.484186px;}
.wse8{word-spacing:-0.478205px;}
.ws43{word-spacing:-0.418429px;}
.wsb9{word-spacing:-0.376589px;}
.ws35{word-spacing:-0.358654px;}
.ws102{word-spacing:-0.322790px;}
.ws1d{word-spacing:-0.298878px;}
.ws104{word-spacing:-0.268992px;}
.ws87{word-spacing:-0.262538px;}
.ws45{word-spacing:-0.239102px;}
.ws18{word-spacing:-0.215194px;}
.ws21{word-spacing:-0.179327px;}
.ws76{word-spacing:-0.175025px;}
.ws16{word-spacing:-0.161395px;}
.wsd6{word-spacing:-0.143462px;}
.ws74{word-spacing:-0.131269px;}
.ws2d{word-spacing:-0.119551px;}
.wsba{word-spacing:-0.107597px;}
.wsd5{word-spacing:-0.095641px;}
.ws2a{word-spacing:-0.059776px;}
.wsec{word-spacing:-0.053798px;}
.ws78{word-spacing:-0.043756px;}
.ws124{word-spacing:-0.011453px;}
.ws11b{word-spacing:-0.011386px;}
.ws115{word-spacing:-0.011030px;}
.ws111{word-spacing:-0.009571px;}
.ws120{word-spacing:-0.006710px;}
.wsc{word-spacing:-0.006174px;}
.ws110{word-spacing:-0.006000px;}
.ws123{word-spacing:-0.005261px;}
.ws10c{word-spacing:-0.004502px;}
.ws12b{word-spacing:-0.001978px;}
.ws2e{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.000631px;}
.ws11f{word-spacing:0.002112px;}
.ws15{word-spacing:0.047821px;}
.wsca{word-spacing:0.053798px;}
.ws1e{word-spacing:0.059776px;}
.ws7e{word-spacing:0.087513px;}
.wsf1{word-spacing:0.107597px;}
.ws22{word-spacing:0.119551px;}
.ws73{word-spacing:0.131269px;}
.wsc6{word-spacing:0.143462px;}
.ws1a{word-spacing:0.161395px;}
.ws7d{word-spacing:0.175025px;}
.ws24{word-spacing:0.179327px;}
.ws13{word-spacing:0.191282px;}
.ws9f{word-spacing:0.197676px;}
.ws121{word-spacing:0.215194px;}
.ws72{word-spacing:0.218782px;}
.ws25{word-spacing:0.239102px;}
.ws8b{word-spacing:0.262538px;}
.ws1b{word-spacing:0.268992px;}
.ws49{word-spacing:0.298878px;}
.ws90{word-spacing:0.306294px;}
.ws3e{word-spacing:0.358654px;}
.ws127{word-spacing:0.376589px;}
.ws9b{word-spacing:0.418429px;}
.ws34{word-spacing:0.478205px;}
.ws129{word-spacing:0.484186px;}
.ws63{word-spacing:0.537980px;}
.ws79{word-spacing:0.544294px;}
.ws80{word-spacing:0.546065px;}
.ws9d{word-spacing:0.597756px;}
.ws75{word-spacing:0.612589px;}
.ws9e{word-spacing:0.657532px;}
.ws19{word-spacing:0.699379px;}
.ws81{word-spacing:0.700101px;}
.ws36{word-spacing:0.717307px;}
.ws5e{word-spacing:0.777083px;}
.wsfa{word-spacing:0.806976px;}
.wsd4{word-spacing:0.812950px;}
.ws7c{word-spacing:0.831370px;}
.ws66{word-spacing:0.836858px;}
.wsd8{word-spacing:0.860771px;}
.ws86{word-spacing:0.875127px;}
.ws48{word-spacing:0.896634px;}
.ws126{word-spacing:0.914573px;}
.wsb1{word-spacing:0.956410px;}
.wsb2{word-spacing:1.016185px;}
.wsda{word-spacing:1.022170px;}
.ws5d{word-spacing:1.075961px;}
.ws95{word-spacing:1.135736px;}
.ws4c{word-spacing:1.195512px;}
.ws6a{word-spacing:1.255288px;}
.ws6b{word-spacing:1.315063px;}
.wsea{word-spacing:1.374839px;}
.wsd3{word-spacing:1.386797px;}
.ws105{word-spacing:1.398758px;}
.ws39{word-spacing:1.434614px;}
.ws3d{word-spacing:1.494390px;}
.ws4d{word-spacing:1.613941px;}
.ws6f{word-spacing:1.733492px;}
.ws5b{word-spacing:1.793268px;}
.wsfb{word-spacing:1.882944px;}
.ws57{word-spacing:1.912819px;}
.wsd7{word-spacing:1.912824px;}
.wsfc{word-spacing:1.936742px;}
.wsb0{word-spacing:1.972595px;}
.ws3f{word-spacing:2.032370px;}
.ws17{word-spacing:2.044339px;}
.ws7b{word-spacing:2.056548px;}
.wsde{word-spacing:2.092146px;}
.ws71{word-spacing:2.144061px;}
.ws33{word-spacing:2.151922px;}
.ws11e{word-spacing:2.151936px;}
.ws12a{word-spacing:2.205734px;}
.ws55{word-spacing:2.211697px;}
.ws11c{word-spacing:2.313331px;}
.wsb3{word-spacing:2.331248px;}
.wsa1{word-spacing:2.391024px;}
.wsb7{word-spacing:2.420928px;}
.ws84{word-spacing:2.450355px;}
.ws38{word-spacing:2.450800px;}
.ws1{word-spacing:2.511541px;}
.ws5f{word-spacing:2.689902px;}
.ws10a{word-spacing:2.741218px;}
.wsb6{word-spacing:2.743718px;}
.ws50{word-spacing:2.749678px;}
.ws51{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.ws4a{word-spacing:2.929004px;}
.ws10f{word-spacing:2.958912px;}
.ws7f{word-spacing:2.975431px;}
.ws2c{word-spacing:2.988780px;}
.ws10e{word-spacing:3.012710px;}
.ws2b{word-spacing:3.048556px;}
.ws37{word-spacing:3.168107px;}
.ws83{word-spacing:3.194213px;}
.ws1c{word-spacing:3.219667px;}
.wsee{word-spacing:3.224822px;}
.ws6e{word-spacing:3.227882px;}
.ws103{word-spacing:3.227904px;}
.wsb4{word-spacing:3.287658px;}
.wsf8{word-spacing:3.335501px;}
.wsad{word-spacing:3.347434px;}
.ws112{word-spacing:3.389299px;}
.ws5c{word-spacing:3.407209px;}
.ws8c{word-spacing:3.456751px;}
.wsf0{word-spacing:3.496896px;}
.ws4f{word-spacing:3.526760px;}
.ws119{word-spacing:3.550694px;}
.ws58{word-spacing:3.586536px;}
.ws20{word-spacing:3.646312px;}
.wsf7{word-spacing:3.658291px;}
.wsc9{word-spacing:3.706087px;}
.ws67{word-spacing:3.765863px;}
.wse5{word-spacing:3.765888px;}
.wsef{word-spacing:3.819686px;}
.ws59{word-spacing:3.825638px;}
.ws53{word-spacing:3.885414px;}
.ws46{word-spacing:4.064741px;}
.ws128{word-spacing:4.142477px;}
.ws91{word-spacing:4.156852px;}
.wsdc{word-spacing:4.184292px;}
.wseb{word-spacing:4.244068px;}
.ws12e{word-spacing:4.250074px;}
.ws92{word-spacing:4.256033px;}
.ws26{word-spacing:4.303843px;}
.ws27{word-spacing:4.363619px;}
.ws52{word-spacing:4.423394px;}
.wsa5{word-spacing:4.568213px;}
.ws32{word-spacing:4.602721px;}
.ws12d{word-spacing:4.626662px;}
.ws8d{word-spacing:4.725684px;}
.ws9{word-spacing:4.770079px;}
.ws54{word-spacing:4.782048px;}
.ws101{word-spacing:4.841856px;}
.wsa{word-spacing:4.853765px;}
.ws93{word-spacing:4.961375px;}
.wse7{word-spacing:5.021150px;}
.ws64{word-spacing:5.140702px;}
.ws100{word-spacing:5.218445px;}
.ws4e{word-spacing:5.320028px;}
.ws77{word-spacing:5.425786px;}
.ws61{word-spacing:5.858009px;}
.wsf9{word-spacing:6.079219px;}
.ws97{word-spacing:6.156887px;}
.ws56{word-spacing:6.216662px;}
.ws1f{word-spacing:6.336214px;}
.ws31{word-spacing:6.515540px;}
.ws65{word-spacing:6.575316px;}
.wsc8{word-spacing:6.993745px;}
.wsc7{word-spacing:7.053521px;}
.wsd9{word-spacing:7.173090px;}
.ws60{word-spacing:7.412174px;}
.wsab{word-spacing:7.531726px;}
.ws62{word-spacing:7.591501px;}
.wsdd{word-spacing:7.770828px;}
.ws7{word-spacing:7.782761px;}
.ws23{word-spacing:7.830604px;}
.wsb8{word-spacing:7.950155px;}
.wsa0{word-spacing:8.009930px;}
.ws98{word-spacing:8.129482px;}
.ws118{word-spacing:8.231155px;}
.ws99{word-spacing:8.249033px;}
.wse0{word-spacing:8.308808px;}
.ws3c{word-spacing:8.428360px;}
.ws30{word-spacing:8.667462px;}
.ws122{word-spacing:8.876736px;}
.ws82{word-spacing:8.882536px;}
.ws10b{word-spacing:8.930534px;}
.ws12c{word-spacing:9.139584px;}
.ws125{word-spacing:9.139642px;}
.ws11a{word-spacing:9.140342px;}
.ws10d{word-spacing:9.140496px;}
.ws113{word-spacing:9.142051px;}
.ws107{word-spacing:9.142454px;}
.ws109{word-spacing:9.142656px;}
.ws116{word-spacing:9.142666px;}
.wsa3{word-spacing:9.548213px;}
.wsa8{word-spacing:9.554213px;}
.ws5{word-spacing:12.176255px;}
.wsa4{word-spacing:12.955613px;}
.wse4{word-spacing:15.063552px;}
.ws3{word-spacing:15.481836px;}
.ws6{word-spacing:16.109478px;}
.wsc5{word-spacing:17.550160px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
.ws89{word-spacing:42.793698px;}
.wsf{word-spacing:46.603015px;}
.wsd{word-spacing:46.603075px;}
.wse{word-spacing:46.648445px;}
.ws8e{word-spacing:48.263240px;}
.ws10{word-spacing:61.588445px;}
.wsbd{word-spacing:71.690312px;}
.wsbc{word-spacing:79.897616px;}
.wscd{word-spacing:82.828269px;}
.wsc0{word-spacing:88.671400px;}
.wsc3{word-spacing:88.676362px;}
.wsbf{word-spacing:96.411109px;}
.wsbb{word-spacing:101.849684px;}
.wsc4{word-spacing:104.618413px;}
.wsc2{word-spacing:108.672624px;}
.wsc1{word-spacing:108.722066px;}
.wscf{word-spacing:109.547066px;}
.ws8a{word-spacing:114.379065px;}
.wscb{word-spacing:115.425201px;}
.ws8f{word-spacing:119.848607px;}
.wsbe{word-spacing:129.339211px;}
.wsd1{word-spacing:145.136503px;}
.wsd2{word-spacing:171.855300px;}
.ws7a{word-spacing:172.312455px;}
.wsf2{word-spacing:185.894045px;}
.wsf3{word-spacing:204.595315px;}
.wsce{word-spacing:211.933494px;}
.wsd0{word-spacing:225.292893px;}
.wscc{word-spacing:238.652291px;}
.wse1{word-spacing:1059.939533px;}
.wse2{word-spacing:1061.445533px;}
.wse3{word-spacing:1065.909533px;}
.wsf4{word-spacing:1130.439533px;}
.wsfd{word-spacing:1131.951533px;}
.wsfe{word-spacing:1133.457533px;}
.wsff{word-spacing:1137.927533px;}
.wsf5{word-spacing:1140.945533px;}
.wsf6{word-spacing:1145.409533px;}
._84{margin-left:-26.468813px;}
._e{margin-left:-7.400224px;}
._15{margin-left:-5.760639px;}
._7{margin-left:-4.399495px;}
._1{margin-left:-3.054524px;}
._3{margin-left:-1.506341px;}
._5{width:1.141914px;}
._64{width:2.205528px;}
._6{width:3.539057px;}
._33{width:5.197818px;}
._83{width:6.460004px;}
._3b{width:11.470450px;}
._0{width:12.971268px;}
._10{width:14.822586px;}
._a{width:16.247102px;}
._86{width:17.249485px;}
._b{width:18.291456px;}
._c{width:19.379245px;}
._f{width:20.503031px;}
._17{width:21.638767px;}
._9{width:22.971902px;}
._87{width:23.994101px;}
._13{width:25.139884px;}
._1a{width:27.138122px;}
._19{width:29.409595px;}
._2{width:30.587087px;}
._18{width:31.860395px;}
._4{width:33.355008px;}
._16{width:35.339330px;}
._82{width:37.212461px;}
._4d{width:38.328203px;}
._85{width:41.293116px;}
._d{width:42.560227px;}
._14{width:44.903426px;}
._8{width:56.810873px;}
._1d{width:68.283747px;}
._32{width:71.760393px;}
._1f{width:89.131658px;}
._66{width:104.476493px;}
._48{width:108.722066px;}
._55{width:110.372066px;}
._2e{width:113.834094px;}
._2f{width:115.866780px;}
._39{width:117.028254px;}
._24{width:119.402624px;}
._1c{width:121.248810px;}
._3f{width:122.530070px;}
._5e{width:123.731464px;}
._21{width:130.612666px;}
._69{width:132.828250px;}
._61{width:134.263368px;}
._4b{width:135.519410px;}
._28{width:140.536935px;}
._38{width:142.122840px;}
._4c{width:154.060008px;}
._65{width:156.555644px;}
._26{width:159.316823px;}
._63{width:171.855300px;}
._2d{width:175.506668px;}
._67{width:178.449293px;}
._75{width:183.907929px;}
._80{width:186.179791px;}
._23{width:203.510723px;}
._6c{width:205.050700px;}
._71{width:206.205922px;}
._6b{width:218.044915px;}
._2b{width:222.457217px;}
._5c{width:225.292893px;}
._77{width:231.494515px;}
._29{width:238.428280px;}
._68{width:241.931405px;}
._70{width:244.944115px;}
._7e{width:249.570778px;}
._6e{width:251.080478px;}
._52{width:252.235700px;}
._73{width:258.013781px;}
._7c{width:259.308288px;}
._76{width:261.352627px;}
._2a{width:262.713047px;}
._20{width:272.339441px;}
._30{width:273.520862px;}
._1e{width:275.314872px;}
._6f{width:277.438349px;}
._72{width:278.890906px;}
._7b{width:281.643045px;}
._74{width:285.292915px;}
._79{width:288.897408px;}
._7a{width:291.281009px;}
._6a{width:292.606152px;}
._78{width:313.752269px;}
._5d{width:316.364618px;}
._7d{width:319.401101px;}
._34{width:320.480414px;}
._81{width:324.511949px;}
._25{width:325.915823px;}
._6d{width:330.106982px;}
._7f{width:332.635507px;}
._45{width:336.103958px;}
._54{width:344.103295px;}
._27{width:350.707041px;}
._2c{width:354.645111px;}
._4f{width:357.069997px;}
._49{width:358.841689px;}
._1b{width:390.160059px;}
._5a{width:399.887577px;}
._51{width:402.350271px;}
._31{width:403.477183px;}
._58{width:419.392298px;}
._56{width:444.250867px;}
._5f{width:449.317350px;}
._59{width:462.409561px;}
._43{width:468.261339px;}
._57{width:484.212099px;}
._50{width:489.823046px;}
._3c{width:504.897561px;}
._22{width:511.424066px;}
._60{width:525.893421px;}
._44{width:555.519544px;}
._37{width:557.898950px;}
._5b{width:574.293813px;}
._40{width:575.945132px;}
._62{width:582.256015px;}
._3d{width:585.807102px;}
._46{width:591.272026px;}
._41{width:603.385216px;}
._4a{width:611.098105px;}
._35{width:625.540573px;}
._36{width:627.247936px;}
._3e{width:635.027837px;}
._53{width:641.571743px;}
._47{width:662.121830px;}
._42{width:706.372057px;}
._11{width:747.770722px;}
._3a{width:768.619025px;}
._4e{width:2524.761300px;}
._12{width:2548.671300px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:43.756337px;}
.fs9{font-size:45.429600px;}
.fse{font-size:45.594414px;}
.fs10{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fs11{font-size:49.441594px;}
.fs12{font-size:51.518493px;}
.fs13{font-size:53.437593px;}
.fsc{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y0{bottom:0.000000px;}
.y3b{bottom:16.704213px;}
.y69{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y107{bottom:93.172500px;}
.y1de{bottom:93.633000px;}
.y4{bottom:97.125005px;}
.y1ee{bottom:102.091500px;}
.y27e{bottom:104.503500px;}
.y39{bottom:104.646000px;}
.y9f{bottom:105.847500px;}
.y248{bottom:106.623000px;}
.yb2{bottom:107.193000px;}
.y13c{bottom:109.570500px;}
.y106{bottom:112.002000px;}
.y1dd{bottom:112.462500px;}
.y1ed{bottom:120.921000px;}
.y27d{bottom:121.762500px;}
.y38{bottom:122.535000px;}
.y247{bottom:123.882000px;}
.y9e{bottom:124.677000px;}
.y1f6{bottom:125.574000px;}
.yb1{bottom:126.022500px;}
.y13b{bottom:128.400000px;}
.y68{bottom:128.517000px;}
.y105{bottom:130.831500px;}
.y1dc{bottom:131.292000px;}
.y27c{bottom:139.023000px;}
.y21{bottom:139.264499px;}
.y1ec{bottom:139.750500px;}
.y37{bottom:140.422500px;}
.y246{bottom:141.142500px;}
.y9d{bottom:143.506500px;}
.y1f5{bottom:144.403500px;}
.yb0{bottom:144.852000px;}
.y13a{bottom:147.229500px;}
.y67{bottom:147.346500px;}
.y104{bottom:149.661000px;}
.y1db{bottom:150.120000px;}
.y27b{bottom:156.283500px;}
.y36{bottom:158.310000px;}
.y245{bottom:158.403000px;}
.y1eb{bottom:158.580000px;}
.y9c{bottom:162.336000px;}
.y1f4{bottom:163.233000px;}
.yaf{bottom:163.681500px;}
.y139{bottom:166.059000px;}
.y66{bottom:166.174500px;}
.y103{bottom:168.490500px;}
.y1da{bottom:168.949500px;}
.yee{bottom:171.637500px;}
.y27a{bottom:173.544000px;}
.y244{bottom:175.663500px;}
.y35{bottom:176.199000px;}
.y1ea{bottom:177.409500px;}
.y9b{bottom:181.165500px;}
.y1f3{bottom:182.062500px;}
.yae{bottom:182.511000px;}
.y138{bottom:184.888500px;}
.y65{bottom:185.004000px;}
.y188{bottom:185.761500px;}
.y102{bottom:187.320000px;}
.y1d9{bottom:187.779000px;}
.yed{bottom:189.570000px;}
.y279{bottom:190.804500px;}
.y243{bottom:192.924000px;}
.y34{bottom:194.086500px;}
.y1e9{bottom:196.239000px;}
.y152{bottom:196.375500px;}
.y18{bottom:196.933500px;}
.y9a{bottom:199.995000px;}
.y1f2{bottom:200.892000px;}
.yad{bottom:201.340500px;}
.y22a{bottom:202.150500px;}
.y137{bottom:203.718000px;}
.y64{bottom:203.833500px;}
.y187{bottom:204.591000px;}
.y101{bottom:206.149500px;}
.yec{bottom:206.410286px;}
.y1d8{bottom:206.608500px;}
.y278{bottom:208.065000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y242{bottom:210.184500px;}
.y33{bottom:211.974000px;}
.y1e8{bottom:215.068500px;}
.y151{bottom:215.205000px;}
.yb7{bottom:218.824500px;}
.yeb{bottom:219.537055px;}
.y1f1{bottom:219.721500px;}
.yac{bottom:220.170000px;}
.y100{bottom:221.287500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y136{bottom:222.547500px;}
.y63{bottom:222.663000px;}
.y99{bottom:223.308000px;}
.y186{bottom:223.420500px;}
.yff{bottom:224.979000px;}
.y277{bottom:225.325500px;}
.y1d7{bottom:225.438000px;}
.y241{bottom:227.445000px;}
.y32{bottom:229.863000px;}
.y229{bottom:230.349000px;}
.yea{bottom:232.663824px;}
.y1e7{bottom:233.898000px;}
.y150{bottom:234.034500px;}
.y1b9{bottom:234.367500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yb6{bottom:237.654000px;}
.yab{bottom:238.999500px;}
.y135{bottom:241.377000px;}
.y62{bottom:241.492500px;}
.y185{bottom:242.250000px;}
.y276{bottom:242.586000px;}
.yfe{bottom:242.796000px;}
.y1f0{bottom:243.034500px;}
.y98{bottom:243.481500px;}
.y1d6{bottom:244.267500px;}
.y240{bottom:244.705500px;}
.ye9{bottom:245.790594px;}
.yfd{bottom:246.487500px;}
.y1b8{bottom:252.300000px;}
.y1e6{bottom:252.727500px;}
.y14f{bottom:252.862500px;}
.yb5{bottom:256.483500px;}
.yaa{bottom:257.829000px;}
.ye8{bottom:258.918461px;}
.y275{bottom:259.846500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y134{bottom:260.206500px;}
.y61{bottom:260.322000px;}
.y184{bottom:261.079500px;}
.y23f{bottom:261.964500px;}
.y1d5{bottom:263.097000px;}
.yfc{bottom:267.243000px;}
.y1b7{bottom:270.232500px;}
.y14e{bottom:271.692000px;}
.ye7{bottom:272.045230px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya9{bottom:276.658500px;}
.y97{bottom:277.105500px;}
.y133{bottom:279.036000px;}
.y60{bottom:279.151500px;}
.y23e{bottom:279.225000px;}
.yb4{bottom:279.796500px;}
.y183{bottom:279.909000px;}
.y1d4{bottom:281.926500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ye6{bottom:285.172000px;}
.y1e5{bottom:286.293000px;}
.y1b6{bottom:288.165000px;}
.y14d{bottom:290.521500px;}
.y274{bottom:294.366000px;}
.ya8{bottom:295.488000px;}
.y96{bottom:295.935000px;}
.y23d{bottom:296.485500px;}
.y132{bottom:297.865500px;}
.y5f{bottom:297.981000px;}
.ye5{bottom:298.298769px;}
.y182{bottom:298.738500px;}
.y31{bottom:299.892000px;}
.yb3{bottom:299.970000px;}
.y1d3{bottom:300.756000px;}
.y1e4{bottom:305.526000px;}
.y1b5{bottom:306.099000px;}
.y221{bottom:307.344000px;}
.y14c{bottom:309.351000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ye4{bottom:311.425538px;}
.y273{bottom:311.626500px;}
.y23c{bottom:313.746000px;}
.ya7{bottom:314.317500px;}
.y95{bottom:314.764500px;}
.y131{bottom:316.695000px;}
.y5e{bottom:316.810500px;}
.y181{bottom:317.568000px;}
.y30{bottom:317.779500px;}
.y1f7{bottom:318.799500px;}
.y1d2{bottom:319.585500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y220{bottom:323.782500px;}
.y1b4{bottom:324.031500px;}
.ye3{bottom:324.552308px;}
.y1e3{bottom:324.759000px;}
.y14b{bottom:328.180500px;}
.y272{bottom:328.887000px;}
.y23b{bottom:331.006500px;}
.ya6{bottom:333.145500px;}
.y94{bottom:333.594000px;}
.y130{bottom:335.524500px;}
.y5d{bottom:335.640000px;}
.y2f{bottom:335.667000px;}
.y180{bottom:336.397500px;}
.ye2{bottom:337.680175px;}
.y1d1{bottom:338.415000px;}
.y21f{bottom:340.221000px;}
.y1b3{bottom:341.964000px;}
.y1e2{bottom:343.992000px;}
.y271{bottom:346.147500px;}
.yf{bottom:348.133500px;}
.y23a{bottom:348.267000px;}
.ye1{bottom:350.806944px;}
.y14a{bottom:351.493500px;}
.ya5{bottom:351.975000px;}
.y93{bottom:352.423500px;}
.y2e{bottom:353.556000px;}
.y12f{bottom:354.354000px;}
.y5c{bottom:354.469500px;}
.y21e{bottom:356.659500px;}
.y1d0{bottom:357.244500px;}
.y17f{bottom:359.709000px;}
.y1b2{bottom:359.896500px;}
.y270{bottom:363.408000px;}
.ye0{bottom:363.933714px;}
.y239{bottom:365.527500px;}
.ya4{bottom:370.804500px;}
.y92{bottom:371.253000px;}
.y1e1{bottom:372.190500px;}
.y21d{bottom:373.098000px;}
.y12e{bottom:373.183500px;}
.y5b{bottom:373.299000px;}
.y1cf{bottom:376.074000px;}
.y1b1{bottom:378.216904px;}
.y26f{bottom:380.668500px;}
.y2d{bottom:381.904500px;}
.ydf{bottom:382.551656px;}
.y238{bottom:382.788000px;}
.y149{bottom:385.117500px;}
.ye{bottom:386.785499px;}
.y21c{bottom:389.535000px;}
.ya3{bottom:389.634000px;}
.y91{bottom:390.082500px;}
.y5a{bottom:392.128500px;}
.y1b0{bottom:394.249362px;}
.y1ce{bottom:394.903500px;}
.y17e{bottom:395.838000px;}
.y12d{bottom:396.495000px;}
.y26e{bottom:397.929000px;}
.y2c{bottom:399.792000px;}
.y237{bottom:400.048500px;}
.yde{bottom:401.169598px;}
.y148{bottom:403.947000px;}
.y21b{bottom:405.973500px;}
.yd{bottom:408.044999px;}
.ya2{bottom:408.463500px;}
.y90{bottom:408.912000px;}
.y1af{bottom:410.280479px;}
.y59{bottom:410.958000px;}
.y1cd{bottom:413.733000px;}
.y17d{bottom:413.770500px;}
.ydd{bottom:414.296368px;}
.y26d{bottom:415.188000px;}
.y12c{bottom:416.670000px;}
.y2b{bottom:417.679500px;}
.y236{bottom:421.791000px;}
.y21a{bottom:422.412000px;}
.y147{bottom:422.776500px;}
.ya1{bottom:427.293000px;}
.ydc{bottom:427.423137px;}
.y8f{bottom:427.741500px;}
.y58{bottom:429.787500px;}
.y17c{bottom:431.704500px;}
.y26c{bottom:432.448500px;}
.y1cb{bottom:432.562500px;}
.y1ae{bottom:433.017712px;}
.y1cc{bottom:437.986500px;}
.y219{bottom:438.850500px;}
.ydb{bottom:440.549906px;}
.y146{bottom:441.606000px;}
.y2a{bottom:444.534000px;}
.yfb{bottom:446.122500px;}
.y8e{bottom:446.571000px;}
.y57{bottom:448.617000px;}
.y1ad{bottom:449.048829px;}
.y17b{bottom:449.413976px;}
.y26b{bottom:449.709000px;}
.y12b{bottom:450.294000px;}
.ya0{bottom:450.606000px;}
.y1ca{bottom:453.214500px;}
.yda{bottom:453.677773px;}
.y218{bottom:455.289000px;}
.y235{bottom:458.553000px;}
.y145{bottom:460.435500px;}
.y29{bottom:462.423000px;}
.yfa{bottom:464.952000px;}
.y1ac{bottom:465.079947px;}
.y8d{bottom:465.400500px;}
.yd9{bottom:466.804543px;}
.y26a{bottom:466.969500px;}
.y56{bottom:467.446500px;}
.y12a{bottom:469.123500px;}
.y17a{bottom:470.449705px;}
.y217{bottom:471.727500px;}
.y1c9{bottom:472.044000px;}
.y234{bottom:475.813500px;}
.y144{bottom:479.265000px;}
.yd8{bottom:479.931312px;}
.y28{bottom:480.310500px;}
.y1ab{bottom:481.111064px;}
.y228{bottom:483.466500px;}
.yf9{bottom:483.781500px;}
.y8c{bottom:484.230000px;}
.y179{bottom:485.283275px;}
.y55{bottom:486.276000px;}
.y129{bottom:487.953000px;}
.y216{bottom:488.166000px;}
.y1c8{bottom:490.873500px;}
.yd7{bottom:493.058081px;}
.y233{bottom:493.074000px;}
.y1aa{bottom:497.142181px;}
.y232{bottom:497.956500px;}
.y143{bottom:498.094500px;}
.y27{bottom:498.198000px;}
.y178{bottom:500.115605px;}
.y269{bottom:501.490500px;}
.yf8{bottom:502.611000px;}
.y227{bottom:502.699500px;}
.yc{bottom:502.864502px;}
.y8b{bottom:503.059500px;}
.y215{bottom:504.604500px;}
.y54{bottom:505.105500px;}
.yd6{bottom:506.184851px;}
.y128{bottom:506.782500px;}
.y1c7{bottom:509.703000px;}
.y1a9{bottom:513.174639px;}
.y177{bottom:514.947934px;}
.y26{bottom:516.087000px;}
.y142{bottom:516.924000px;}
.y268{bottom:518.751000px;}
.yd5{bottom:519.311620px;}
.y231{bottom:520.044000px;}
.yb{bottom:520.864502px;}
.y214{bottom:521.043000px;}
.yf7{bottom:521.440500px;}
.y8a{bottom:521.889000px;}
.y226{bottom:521.932500px;}
.y127{bottom:525.612000px;}
.y53{bottom:528.418500px;}
.y1c6{bottom:528.532500px;}
.y1a8{bottom:529.205756px;}
.y176{bottom:529.780263px;}
.yd4{bottom:532.439487px;}
.y25{bottom:533.974500px;}
.y141{bottom:535.753500px;}
.y267{bottom:536.011500px;}
.y213{bottom:537.481500px;}
.ya{bottom:538.864499px;}
.yf6{bottom:540.270000px;}
.y89{bottom:540.718500px;}
.y225{bottom:541.165500px;}
.y126{bottom:544.441500px;}
.y175{bottom:544.612593px;}
.y1a7{bottom:545.236873px;}
.yd3{bottom:545.566257px;}
.y1c5{bottom:547.362000px;}
.y24{bottom:551.862000px;}
.y266{bottom:553.272000px;}
.y230{bottom:553.609500px;}
.y212{bottom:553.918500px;}
.y140{bottom:554.583000px;}
.y9{bottom:556.864499px;}
.yd2{bottom:558.693026px;}
.yf5{bottom:559.099500px;}
.y174{bottom:559.446163px;}
.y88{bottom:559.548000px;}
.y1a6{bottom:561.267990px;}
.y125{bottom:563.271000px;}
.y1c4{bottom:566.191500px;}
.y224{bottom:569.364000px;}
.y23{bottom:569.751000px;}
.y211{bottom:570.357000px;}
.y265{bottom:570.531000px;}
.yd1{bottom:571.819795px;}
.y22f{bottom:572.842500px;}
.y13f{bottom:573.412500px;}
.y173{bottom:574.278492px;}
.y1a5{bottom:577.299107px;}
.yf4{bottom:577.929000px;}
.y87{bottom:578.377500px;}
.y124{bottom:582.100500px;}
.yd0{bottom:584.946565px;}
.y1c3{bottom:585.021000px;}
.y210{bottom:586.795500px;}
.y22{bottom:587.638500px;}
.y264{bottom:587.791500px;}
.y172{bottom:589.110822px;}
.y22e{bottom:592.075500px;}
.yf3{bottom:596.758500px;}
.y86{bottom:597.207000px;}
.ycf{bottom:598.073334px;}
.y1a4{bottom:600.036340px;}
.y123{bottom:600.930000px;}
.y1e0{bottom:601.339500px;}
.y20f{bottom:603.234000px;}
.y52{bottom:603.568500px;}
.y1c2{bottom:603.850500px;}
.y171{bottom:603.943151px;}
.y263{bottom:605.052000px;}
.y13e{bottom:606.978000px;}
.yce{bottom:611.201201px;}
.y22d{bottom:611.308500px;}
.yf2{bottom:615.588000px;}
.y85{bottom:616.036500px;}
.y20e{bottom:619.672500px;}
.y122{bottom:619.759500px;}
.y262{bottom:622.312500px;}
.y1c1{bottom:622.680000px;}
.y1a3{bottom:622.773573px;}
.y170{bottom:624.980121px;}
.y13d{bottom:626.211000px;}
.ycd{bottom:629.819144px;}
.yf1{bottom:634.417500px;}
.y84{bottom:634.866000px;}
.y20d{bottom:636.111000px;}
.y121{bottom:638.589000px;}
.y1a2{bottom:638.804690px;}
.y1ef{bottom:638.901000px;}
.y22c{bottom:639.507000px;}
.y261{bottom:639.573000px;}
.y51{bottom:640.957500px;}
.y1c0{bottom:641.509500px;}
.y8{bottom:645.510000px;}
.y16f{bottom:646.017091px;}
.ycc{bottom:648.437086px;}
.y20c{bottom:652.549500px;}
.yf0{bottom:653.247000px;}
.y83{bottom:653.695500px;}
.y1a1{bottom:654.837148px;}
.y260{bottom:656.833500px;}
.y120{bottom:657.417000px;}
.y1bf{bottom:660.339000px;}
.y50{bottom:660.415500px;}
.y16e{bottom:660.849421px;}
.ycb{bottom:661.563855px;}
.y7{bottom:666.771000px;}
.y20b{bottom:668.988000px;}
.y1a0{bottom:670.868265px;}
.y82{bottom:672.525000px;}
.y25f{bottom:674.094000px;}
.yca{bottom:674.690625px;}
.y16d{bottom:675.681750px;}
.y11f{bottom:676.246500px;}
.yef{bottom:676.560000px;}
.y1be{bottom:679.168500px;}
.y4f{bottom:679.872000px;}
.y20a{bottom:685.426500px;}
.y19f{bottom:686.899382px;}
.yc9{bottom:687.817394px;}
.y16c{bottom:690.514080px;}
.y81{bottom:691.354500px;}
.y11e{bottom:695.076000px;}
.y1bd{bottom:697.998000px;}
.y4e{bottom:699.328500px;}
.yc8{bottom:700.944163px;}
.y209{bottom:701.865000px;}
.y19e{bottom:702.930499px;}
.y16b{bottom:705.347650px;}
.y25e{bottom:708.613500px;}
.y80{bottom:710.184000px;}
.y11d{bottom:713.905500px;}
.yc7{bottom:714.070933px;}
.y1bc{bottom:716.827500px;}
.y208{bottom:718.302000px;}
.y4d{bottom:718.786500px;}
.y19d{bottom:718.961616px;}
.y16a{bottom:720.179979px;}
.y25d{bottom:725.874000px;}
.y6{bottom:726.298500px;}
.yc6{bottom:727.198800px;}
.y7f{bottom:729.013500px;}
.y11c{bottom:732.735000px;}
.y207{bottom:734.740500px;}
.y19c{bottom:734.992733px;}
.y169{bottom:735.012308px;}
.y4c{bottom:738.243000px;}
.yc5{bottom:740.325569px;}
.y25c{bottom:743.134500px;}
.y7e{bottom:747.843000px;}
.y168{bottom:749.844638px;}
.y1bb{bottom:750.393000px;}
.y19b{bottom:751.025191px;}
.y206{bottom:751.179000px;}
.y11b{bottom:751.564500px;}
.y3{bottom:752.599495px;}
.yc4{bottom:753.452339px;}
.y223{bottom:756.325500px;}
.y4b{bottom:757.699500px;}
.y25b{bottom:760.395000px;}
.y167{bottom:764.676967px;}
.yc3{bottom:766.579108px;}
.y7d{bottom:766.671000px;}
.y19a{bottom:767.056308px;}
.y1ba{bottom:769.626000px;}
.y11a{bottom:770.394000px;}
.y205{bottom:775.119000px;}
.y4a{bottom:777.157500px;}
.y25a{bottom:777.655500px;}
.y166{bottom:779.510537px;}
.yc2{bottom:779.705877px;}
.y199{bottom:783.087425px;}
.y7c{bottom:785.500500px;}
.y119{bottom:789.223500px;}
.y204{bottom:791.557500px;}
.yc1{bottom:792.832647px;}
.y165{bottom:794.342867px;}
.y259{bottom:794.916000px;}
.y198{bottom:799.118542px;}
.y7b{bottom:804.330000px;}
.yc0{bottom:805.960514px;}
.y118{bottom:808.053000px;}
.y164{bottom:809.175196px;}
.y258{bottom:812.176500px;}
.y49{bottom:815.742000px;}
.ybf{bottom:819.087283px;}
.y197{bottom:821.855775px;}
.y7a{bottom:823.159500px;}
.y203{bottom:823.177500px;}
.y117{bottom:826.882500px;}
.y257{bottom:829.437000px;}
.y163{bottom:830.212166px;}
.y1df{bottom:830.487000px;}
.y48{bottom:831.882000px;}
.ybe{bottom:832.214053px;}
.y79{bottom:841.989000px;}
.y196{bottom:844.593008px;}
.ybd{bottom:845.340822px;}
.y116{bottom:845.712000px;}
.y256{bottom:846.697500px;}
.y47{bottom:848.022000px;}
.y162{bottom:851.249136px;}
.y202{bottom:857.232000px;}
.ybc{bottom:858.467591px;}
.y195{bottom:860.624125px;}
.y78{bottom:860.818500px;}
.y255{bottom:863.956500px;}
.y46{bottom:864.160500px;}
.y115{bottom:864.541500px;}
.y161{bottom:866.081466px;}
.ybb{bottom:871.594361px;}
.y194{bottom:876.655242px;}
.y2{bottom:879.369000px;}
.y77{bottom:879.648000px;}
.y160{bottom:880.913795px;}
.y254{bottom:881.217000px;}
.y114{bottom:883.371000px;}
.y22b{bottom:883.659000px;}
.y45{bottom:884.640000px;}
.yba{bottom:890.212303px;}
.y193{bottom:892.686359px;}
.y201{bottom:893.995500px;}
.y15f{bottom:895.746124px;}
.y76{bottom:898.477500px;}
.y44{bottom:900.780000px;}
.y113{bottom:902.200500px;}
.y192{bottom:908.718817px;}
.yb9{bottom:908.830245px;}
.y15e{bottom:910.578454px;}
.y43{bottom:912.580500px;}
.y253{bottom:915.738000px;}
.y42{bottom:916.920000px;}
.y75{bottom:917.307000px;}
.y200{bottom:920.535000px;}
.y112{bottom:921.030000px;}
.y191{bottom:924.749934px;}
.y15d{bottom:925.412024px;}
.y252{bottom:932.998500px;}
.y41{bottom:933.058500px;}
.y111{bottom:935.815500px;}
.y74{bottom:936.136500px;}
.yb8{bottom:936.691500px;}
.y110{bottom:938.061000px;}
.y1ff{bottom:938.109000px;}
.y10f{bottom:938.338500px;}
.y15c{bottom:940.244353px;}
.y190{bottom:940.781051px;}
.y222{bottom:941.787000px;}
.y10b{bottom:945.306000px;}
.y251{bottom:950.259000px;}
.y10e{bottom:952.417500px;}
.y73{bottom:954.966000px;}
.y15b{bottom:955.076683px;}
.y10d{bottom:955.222500px;}
.y10c{bottom:955.501500px;}
.y18f{bottom:956.812168px;}
.y1fe{bottom:964.650000px;}
.y1{bottom:966.726000px;}
.y250{bottom:967.519500px;}
.y15a{bottom:969.909012px;}
.y109{bottom:970.104000px;}
.y18e{bottom:972.843285px;}
.y72{bottom:973.795500px;}
.y10a{bottom:974.013000px;}
.y108{bottom:974.161500px;}
.y40{bottom:977.736000px;}
.y1fd{bottom:982.224000px;}
.y281{bottom:983.211000px;}
.y159{bottom:984.741342px;}
.y24f{bottom:984.780000px;}
.y18d{bottom:988.875743px;}
.y71{bottom:992.625000px;}
.y3f{bottom:996.565500px;}
.y280{bottom:1000.470000px;}
.y24e{bottom:1002.040500px;}
.y158{bottom:1005.778312px;}
.y1fc{bottom:1008.765000px;}
.y70{bottom:1011.454500px;}
.y18c{bottom:1011.612976px;}
.y27f{bottom:1017.730500px;}
.y24d{bottom:1019.299500px;}
.y157{bottom:1026.815282px;}
.y6f{bottom:1030.284000px;}
.y18b{bottom:1034.348868px;}
.y1fb{bottom:1035.304500px;}
.y3e{bottom:1036.485000px;}
.y24c{bottom:1036.560000px;}
.y156{bottom:1041.647611px;}
.y6e{bottom:1049.113500px;}
.y1fa{bottom:1052.880000px;}
.y24b{bottom:1053.820500px;}
.y18a{bottom:1057.086101px;}
.y155{bottom:1062.684581px;}
.y3d{bottom:1064.728500px;}
.y6d{bottom:1067.943000px;}
.y1f9{bottom:1070.454000px;}
.y24a{bottom:1071.081000px;}
.y154{bottom:1077.518151px;}
.y6c{bottom:1086.772500px;}
.y189{bottom:1087.849500px;}
.y1f8{bottom:1088.028000px;}
.y249{bottom:1088.341500px;}
.y3c{bottom:1092.972000px;}
.y6b{bottom:1105.602000px;}
.y153{bottom:1107.082500px;}
.y3a{bottom:1136.460000px;}
.y6a{bottom:1168.366500px;}
.h21{height:26.289485px;}
.h15{height:31.504563px;}
.h7{height:32.130000px;}
.hf{height:32.565965px;}
.h1e{height:33.299897px;}
.h28{height:35.052500px;}
.h17{height:35.335671px;}
.h24{height:35.597948px;}
.h9{height:37.993262px;}
.h26{height:38.475067px;}
.h11{height:38.734848px;}
.h16{height:39.730754px;}
.h1f{height:41.250077px;}
.h13{height:43.038432px;}
.h10{height:43.421105px;}
.hc{height:43.815515px;}
.h25{height:44.892968px;}
.h6{height:45.900000px;}
.h18{height:46.714950px;}
.h3{height:48.195000px;}
.h19{height:48.272115px;}
.h22{height:48.405965px;}
.h27{height:48.521335px;}
.h12{height:48.848947px;}
.h20{height:49.059965px;}
.h23{height:50.892077px;}
.ha{height:50.930649px;}
.h14{height:54.276245px;}
.he{height:54.405312px;}
.h2{height:55.080000px;}
.h1b{height:61.480950px;}
.h1a{height:62.946077px;}
.h1c{height:62.952077px;}
.h1d{height:69.042245px;}
.hd{height:77.469696px;}
.h5{height:78.030000px;}
.hb{height:87.128261px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x77{left:85.890000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x78{left:238.488000px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.xd{left:252.325057px;}
.x57{left:253.683000px;}
.x58{left:259.654500px;}
.x8{left:269.764500px;}
.x5e{left:273.294000px;}
.xb{left:281.479500px;}
.x62{left:283.026000px;}
.x5f{left:284.115000px;}
.x61{left:285.339000px;}
.x60{left:286.374000px;}
.x64{left:287.578500px;}
.x63{left:288.795000px;}
.x21{left:292.738500px;}
.x43{left:300.273000px;}
.x71{left:301.942500px;}
.x74{left:303.678000px;}
.x53{left:306.841500px;}
.xa{left:308.130000px;}
.x42{left:309.561000px;}
.x75{left:311.896500px;}
.x54{left:315.946500px;}
.x68{left:317.275500px;}
.x67{left:320.947500px;}
.x6e{left:322.480500px;}
.x22{left:325.687500px;}
.x6a{left:336.796500px;}
.x6b{left:345.013500px;}
.x52{left:354.027000px;}
.x46{left:358.227000px;}
.x65{left:362.839500px;}
.x66{left:364.341000px;}
.x27{left:369.678000px;}
.x28{left:374.122500px;}
.x29{left:383.319000px;}
.x18{left:391.629122px;}
.x19{left:392.990661px;}
.x1a{left:396.726000px;}
.x1b{left:407.413500px;}
.x2a{left:420.654000px;}
.x4b{left:426.428100px;}
.x4c{left:428.845842px;}
.x4d{left:434.158705px;}
.x20{left:442.770000px;}
.x3e{left:446.230500px;}
.x4e{left:451.304156px;}
.x3{left:454.959000px;}
.x11{left:456.314284px;}
.x4a{left:458.116207px;}
.x4f{left:459.441000px;}
.xe{left:466.492883px;}
.x45{left:467.774503px;}
.x15{left:469.063336px;}
.x31{left:471.087000px;}
.x30{left:472.543500px;}
.x3f{left:475.393500px;}
.x32{left:478.957500px;}
.x6f{left:491.322000px;}
.x33{left:493.813500px;}
.x44{left:496.475154px;}
.x70{left:498.046500px;}
.x50{left:499.845000px;}
.xf{left:518.380680px;}
.x59{left:523.597500px;}
.x76{left:525.196500px;}
.x5d{left:526.237500px;}
.x5a{left:531.814500px;}
.xc{left:546.228000px;}
.x6c{left:554.869500px;}
.x6d{left:561.594000px;}
.x23{left:567.369000px;}
.x24{left:571.815000px;}
.x2f{left:575.791500px;}
.x25{left:579.112500px;}
.x55{left:585.985500px;}
.x56{left:594.202500px;}
.x26{left:612.061500px;}
.x35{left:631.492500px;}
.x34{left:635.460000px;}
.x47{left:638.124000px;}
.x2b{left:639.447000px;}
.x36{left:643.114500px;}
.x37{left:654.589500px;}
.x3a{left:655.800000px;}
.x14{left:657.359733px;}
.x40{left:659.256000px;}
.x3b{left:661.794000px;}
.x39{left:669.642000px;}
.x38{left:670.749000px;}
.x48{left:672.700500px;}
.x10{left:674.874170px;}
.x72{left:677.095500px;}
.x3c{left:680.634000px;}
.x73{left:683.067000px;}
.x1d{left:689.359500px;}
.x1e{left:696.948000px;}
.x51{left:698.247000px;}
.x3d{left:700.488000px;}
.x69{left:701.728500px;}
.x49{left:705.480000px;}
.x2c{left:707.485500px;}
.x41{left:713.809500px;}
.x2d{left:721.147500px;}
.x2e{left:729.018000px;}
.x12{left:747.897657px;}
.x16{left:749.307509px;}
.x13{left:756.894792px;}
.x17{left:758.304644px;}
.x1f{left:762.048000px;}
.x1c{left:769.645500px;}
.x5b{left:784.693500px;}
.x5c{left:791.419500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.453333pt;}
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.984000pt;}
.v5{vertical-align:13.125333pt;}
.v6{vertical-align:14.661333pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000375pt;}
.ls14{letter-spacing:0.000387pt;}
.ls36{letter-spacing:0.001007pt;}
.ls37{letter-spacing:0.002825pt;}
.ls1f{letter-spacing:0.354285pt;}
.ls13{letter-spacing:0.466848pt;}
.ls23{letter-spacing:0.501841pt;}
.ls1d{letter-spacing:0.507174pt;}
.ls32{letter-spacing:0.527506pt;}
.ls33{letter-spacing:0.531917pt;}
.ls26{letter-spacing:0.596214pt;}
.ls16{letter-spacing:0.662516pt;}
.ls25{letter-spacing:0.663452pt;}
.ls2a{letter-spacing:0.705009pt;}
.ls29{letter-spacing:0.710342pt;}
.lsd{letter-spacing:0.797008pt;}
.ls17{letter-spacing:0.883733pt;}
.ls24{letter-spacing:0.928300pt;}
.ls1b{letter-spacing:1.262881pt;}
.ls21{letter-spacing:1.302029pt;}
.ls2c{letter-spacing:1.315891pt;}
.ls18{letter-spacing:1.392533pt;}
.ls27{letter-spacing:1.727070pt;}
.ls1c{letter-spacing:1.783020pt;}
.ls22{letter-spacing:1.788353pt;}
.ls35{letter-spacing:2.747861pt;}
.ls1a{letter-spacing:3.383452pt;}
.ls20{letter-spacing:3.388785pt;}
.lsa{letter-spacing:10.254836pt;}
.ls5{letter-spacing:10.626533pt;}
.ls30{letter-spacing:11.476915pt;}
.ls1e{letter-spacing:11.635096pt;}
.lsb{letter-spacing:11.636317pt;}
.ls2b{letter-spacing:11.709169pt;}
.ls11{letter-spacing:12.220789pt;}
.lsc{letter-spacing:12.273923pt;}
.ls9{letter-spacing:12.964663pt;}
.ls12{letter-spacing:13.070931pt;}
.ls10{letter-spacing:13.124065pt;}
.ls39{letter-spacing:13.230333pt;}
.ls6{letter-spacing:13.283467pt;}
.ls7{letter-spacing:13.336601pt;}
.ls8{letter-spacing:13.389734pt;}
.ls3b{letter-spacing:13.442868pt;}
.ls3{letter-spacing:13.549136pt;}
.ls28{letter-spacing:13.881548pt;}
.ls15{letter-spacing:13.948785pt;}
.ls2e{letter-spacing:14.186742pt;}
.lsf{letter-spacing:14.293010pt;}
.ls34{letter-spacing:14.452412pt;}
.ls31{letter-spacing:14.558679pt;}
.ls2d{letter-spacing:15.036884pt;}
.lse{letter-spacing:15.674491pt;}
.ls4{letter-spacing:15.940160pt;}
.ls2f{letter-spacing:16.312097pt;}
.ls3a{letter-spacing:17.693578pt;}
.ls19{letter-spacing:22.973762pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.wsa9{word-spacing:-45.955899pt;}
.wsa7{word-spacing:-45.950566pt;}
.ws12{word-spacing:-13.283467pt;}
.wsdb{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.wsac{word-spacing:-7.970133pt;}
.wsaa{word-spacing:-3.763200pt;}
.ws41{word-spacing:-2.975497pt;}
.wse6{word-spacing:-2.816095pt;}
.ws9a{word-spacing:-2.656693pt;}
.ws28{word-spacing:-2.603559pt;}
.ws69{word-spacing:-2.284756pt;}
.ws5a{word-spacing:-2.072221pt;}
.wsa2{word-spacing:-1.912819pt;}
.ws106{word-spacing:-1.817190pt;}
.wsb5{word-spacing:-1.806551pt;}
.ws9c{word-spacing:-1.700284pt;}
.ws42{word-spacing:-1.647150pt;}
.wse9{word-spacing:-1.594016pt;}
.ws114{word-spacing:-1.578086pt;}
.ws4b{word-spacing:-1.540882pt;}
.ws70{word-spacing:-1.487748pt;}
.ws3a{word-spacing:-1.434614pt;}
.ws96{word-spacing:-1.328347pt;}
.wsa6{word-spacing:-1.275213pt;}
.wsaf{word-spacing:-1.222079pt;}
.ws6d{word-spacing:-1.168945pt;}
.ws68{word-spacing:-1.115811pt;}
.wsae{word-spacing:-1.062677pt;}
.ws44{word-spacing:-1.009543pt;}
.ws11d{word-spacing:-0.860774pt;}
.ws47{word-spacing:-0.850142pt;}
.ws6c{word-spacing:-0.797008pt;}
.ws88{word-spacing:-0.777890pt;}
.ws108{word-spacing:-0.765133pt;}
.ws3b{word-spacing:-0.743874pt;}
.ws94{word-spacing:-0.690740pt;}
.ws85{word-spacing:-0.661207pt;}
.ws40{word-spacing:-0.637606pt;}
.ws29{word-spacing:-0.584473pt;}
.ws117{word-spacing:-0.573850pt;}
.wsdf{word-spacing:-0.531339pt;}
.wsed{word-spacing:-0.430387pt;}
.wse8{word-spacing:-0.425071pt;}
.ws43{word-spacing:-0.371937pt;}
.wsb9{word-spacing:-0.334746pt;}
.ws35{word-spacing:-0.318803pt;}
.ws102{word-spacing:-0.286925pt;}
.ws1d{word-spacing:-0.265669pt;}
.ws104{word-spacing:-0.239104pt;}
.ws87{word-spacing:-0.233367pt;}
.ws45{word-spacing:-0.212535pt;}
.ws18{word-spacing:-0.191283pt;}
.ws21{word-spacing:-0.159402pt;}
.ws76{word-spacing:-0.155578pt;}
.ws16{word-spacing:-0.143462pt;}
.wsd6{word-spacing:-0.127522pt;}
.ws74{word-spacing:-0.116684pt;}
.ws2d{word-spacing:-0.106268pt;}
.wsba{word-spacing:-0.095642pt;}
.wsd5{word-spacing:-0.085014pt;}
.ws2a{word-spacing:-0.053134pt;}
.wsec{word-spacing:-0.047821pt;}
.ws78{word-spacing:-0.038895pt;}
.ws124{word-spacing:-0.010180pt;}
.ws11b{word-spacing:-0.010121pt;}
.ws115{word-spacing:-0.009805pt;}
.ws111{word-spacing:-0.008508pt;}
.ws120{word-spacing:-0.005965pt;}
.wsc{word-spacing:-0.005488pt;}
.ws110{word-spacing:-0.005333pt;}
.ws123{word-spacing:-0.004676pt;}
.ws10c{word-spacing:-0.004002pt;}
.ws12b{word-spacing:-0.001758pt;}
.ws2e{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.000561pt;}
.ws11f{word-spacing:0.001877pt;}
.ws15{word-spacing:0.042507pt;}
.wsca{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.053134pt;}
.ws7e{word-spacing:0.077789pt;}
.wsf1{word-spacing:0.095642pt;}
.ws22{word-spacing:0.106268pt;}
.ws73{word-spacing:0.116684pt;}
.wsc6{word-spacing:0.127522pt;}
.ws1a{word-spacing:0.143462pt;}
.ws7d{word-spacing:0.155578pt;}
.ws24{word-spacing:0.159402pt;}
.ws13{word-spacing:0.170029pt;}
.ws9f{word-spacing:0.175712pt;}
.ws121{word-spacing:0.191283pt;}
.ws72{word-spacing:0.194473pt;}
.ws25{word-spacing:0.212535pt;}
.ws8b{word-spacing:0.233367pt;}
.ws1b{word-spacing:0.239104pt;}
.ws49{word-spacing:0.265669pt;}
.ws90{word-spacing:0.272262pt;}
.ws3e{word-spacing:0.318803pt;}
.ws127{word-spacing:0.334746pt;}
.ws9b{word-spacing:0.371937pt;}
.ws34{word-spacing:0.425071pt;}
.ws129{word-spacing:0.430387pt;}
.ws63{word-spacing:0.478205pt;}
.ws79{word-spacing:0.483817pt;}
.ws80{word-spacing:0.485391pt;}
.ws9d{word-spacing:0.531339pt;}
.ws75{word-spacing:0.544523pt;}
.ws9e{word-spacing:0.584473pt;}
.ws19{word-spacing:0.621670pt;}
.ws81{word-spacing:0.622312pt;}
.ws36{word-spacing:0.637606pt;}
.ws5e{word-spacing:0.690740pt;}
.wsfa{word-spacing:0.717312pt;}
.wsd4{word-spacing:0.722622pt;}
.ws7c{word-spacing:0.738996pt;}
.ws66{word-spacing:0.743874pt;}
.wsd8{word-spacing:0.765130pt;}
.ws86{word-spacing:0.777890pt;}
.ws48{word-spacing:0.797008pt;}
.ws126{word-spacing:0.812954pt;}
.wsb1{word-spacing:0.850142pt;}
.wsb2{word-spacing:0.903276pt;}
.wsda{word-spacing:0.908595pt;}
.ws5d{word-spacing:0.956410pt;}
.ws95{word-spacing:1.009543pt;}
.ws4c{word-spacing:1.062677pt;}
.ws6a{word-spacing:1.115811pt;}
.ws6b{word-spacing:1.168945pt;}
.wsea{word-spacing:1.222079pt;}
.wsd3{word-spacing:1.232709pt;}
.ws105{word-spacing:1.243341pt;}
.ws39{word-spacing:1.275213pt;}
.ws3d{word-spacing:1.328347pt;}
.ws4d{word-spacing:1.434614pt;}
.ws6f{word-spacing:1.540882pt;}
.ws5b{word-spacing:1.594016pt;}
.wsfb{word-spacing:1.673728pt;}
.ws57{word-spacing:1.700284pt;}
.wsd7{word-spacing:1.700288pt;}
.wsfc{word-spacing:1.721549pt;}
.wsb0{word-spacing:1.753418pt;}
.ws3f{word-spacing:1.806551pt;}
.ws17{word-spacing:1.817190pt;}
.ws7b{word-spacing:1.828043pt;}
.wsde{word-spacing:1.859685pt;}
.ws71{word-spacing:1.905832pt;}
.ws33{word-spacing:1.912819pt;}
.ws11e{word-spacing:1.912832pt;}
.ws12a{word-spacing:1.960653pt;}
.ws55{word-spacing:1.965953pt;}
.ws11c{word-spacing:2.056294pt;}
.wsb3{word-spacing:2.072221pt;}
.wsa1{word-spacing:2.125355pt;}
.wsb7{word-spacing:2.151936pt;}
.ws84{word-spacing:2.178093pt;}
.ws38{word-spacing:2.178489pt;}
.ws1{word-spacing:2.232481pt;}
.ws5f{word-spacing:2.391024pt;}
.ws10a{word-spacing:2.436638pt;}
.wsb6{word-spacing:2.438861pt;}
.ws50{word-spacing:2.444158pt;}
.ws51{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.ws4a{word-spacing:2.603559pt;}
.ws10f{word-spacing:2.630144pt;}
.ws7f{word-spacing:2.644827pt;}
.ws2c{word-spacing:2.656693pt;}
.ws10e{word-spacing:2.677965pt;}
.ws2b{word-spacing:2.709827pt;}
.ws37{word-spacing:2.816095pt;}
.ws83{word-spacing:2.839300pt;}
.ws1c{word-spacing:2.861926pt;}
.wsee{word-spacing:2.866509pt;}
.ws6e{word-spacing:2.869229pt;}
.ws103{word-spacing:2.869248pt;}
.wsb4{word-spacing:2.922363pt;}
.wsf8{word-spacing:2.964890pt;}
.wsad{word-spacing:2.975497pt;}
.ws112{word-spacing:3.012710pt;}
.ws5c{word-spacing:3.028630pt;}
.ws8c{word-spacing:3.072667pt;}
.wsf0{word-spacing:3.108352pt;}
.ws4f{word-spacing:3.134898pt;}
.ws119{word-spacing:3.156173pt;}
.ws58{word-spacing:3.188032pt;}
.ws20{word-spacing:3.241166pt;}
.wsf7{word-spacing:3.251814pt;}
.wsc9{word-spacing:3.294300pt;}
.ws67{word-spacing:3.347434pt;}
.wse5{word-spacing:3.347456pt;}
.wsef{word-spacing:3.395277pt;}
.ws59{word-spacing:3.400567pt;}
.ws53{word-spacing:3.453701pt;}
.ws46{word-spacing:3.613103pt;}
.ws128{word-spacing:3.682202pt;}
.ws91{word-spacing:3.694980pt;}
.wsdc{word-spacing:3.719371pt;}
.wseb{word-spacing:3.772505pt;}
.ws12e{word-spacing:3.777843pt;}
.ws92{word-spacing:3.783141pt;}
.ws26{word-spacing:3.825638pt;}
.ws27{word-spacing:3.878772pt;}
.ws52{word-spacing:3.931906pt;}
.wsa5{word-spacing:4.060634pt;}
.ws32{word-spacing:4.091308pt;}
.ws12d{word-spacing:4.112589pt;}
.ws8d{word-spacing:4.200608pt;}
.ws9{word-spacing:4.240070pt;}
.ws54{word-spacing:4.250709pt;}
.ws101{word-spacing:4.303872pt;}
.wsa{word-spacing:4.314458pt;}
.ws93{word-spacing:4.410111pt;}
.wse7{word-spacing:4.463245pt;}
.ws64{word-spacing:4.569513pt;}
.ws100{word-spacing:4.638618pt;}
.ws4e{word-spacing:4.728914pt;}
.ws77{word-spacing:4.822921pt;}
.ws61{word-spacing:5.207119pt;}
.wsf9{word-spacing:5.403750pt;}
.ws97{word-spacing:5.472788pt;}
.ws56{word-spacing:5.525922pt;}
.ws1f{word-spacing:5.632190pt;}
.ws31{word-spacing:5.791591pt;}
.ws65{word-spacing:5.844725pt;}
.wsc8{word-spacing:6.216662pt;}
.wsc7{word-spacing:6.269796pt;}
.wsd9{word-spacing:6.376080pt;}
.ws60{word-spacing:6.588599pt;}
.wsab{word-spacing:6.694867pt;}
.ws62{word-spacing:6.748001pt;}
.wsdd{word-spacing:6.907403pt;}
.ws7{word-spacing:6.918010pt;}
.ws23{word-spacing:6.960537pt;}
.wsb8{word-spacing:7.066804pt;}
.wsa0{word-spacing:7.119938pt;}
.ws98{word-spacing:7.226206pt;}
.ws118{word-spacing:7.316582pt;}
.ws99{word-spacing:7.332474pt;}
.wse0{word-spacing:7.385607pt;}
.ws3c{word-spacing:7.491875pt;}
.ws30{word-spacing:7.704411pt;}
.ws122{word-spacing:7.890432pt;}
.ws82{word-spacing:7.895588pt;}
.ws10b{word-spacing:7.938253pt;}
.ws12c{word-spacing:8.124075pt;}
.ws125{word-spacing:8.124126pt;}
.ws11a{word-spacing:8.124749pt;}
.ws10d{word-spacing:8.124885pt;}
.ws113{word-spacing:8.126268pt;}
.ws107{word-spacing:8.126626pt;}
.ws109{word-spacing:8.126805pt;}
.ws116{word-spacing:8.126814pt;}
.wsa3{word-spacing:8.487300pt;}
.wsa8{word-spacing:8.492634pt;}
.ws5{word-spacing:10.823338pt;}
.wsa4{word-spacing:11.516100pt;}
.wse4{word-spacing:13.389824pt;}
.ws3{word-spacing:13.761632pt;}
.ws6{word-spacing:14.319536pt;}
.wsc5{word-spacing:15.600142pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
.ws89{word-spacing:38.038842pt;}
.wsf{word-spacing:41.424902pt;}
.wsd{word-spacing:41.424956pt;}
.wse{word-spacing:41.465284pt;}
.ws8e{word-spacing:42.900657pt;}
.ws10{word-spacing:54.745284pt;}
.wsbd{word-spacing:63.724722pt;}
.wsbc{word-spacing:71.020103pt;}
.wscd{word-spacing:73.625128pt;}
.wsc0{word-spacing:78.819022pt;}
.wsc3{word-spacing:78.823433pt;}
.wsbf{word-spacing:85.698763pt;}
.wsbb{word-spacing:90.533053pt;}
.wsc4{word-spacing:92.994145pt;}
.wsc2{word-spacing:96.597888pt;}
.wsc1{word-spacing:96.641836pt;}
.wscf{word-spacing:97.375170pt;}
.ws8a{word-spacing:101.670280pt;}
.wscb{word-spacing:102.600179pt;}
.ws8f{word-spacing:106.532095pt;}
.wsbe{word-spacing:114.968187pt;}
.wsd1{word-spacing:129.010225pt;}
.wsd2{word-spacing:152.760266pt;}
.ws7a{word-spacing:153.166627pt;}
.wsf2{word-spacing:165.239151pt;}
.wsf3{word-spacing:181.862502pt;}
.wsce{word-spacing:188.385328pt;}
.wsd0{word-spacing:200.260349pt;}
.wscc{word-spacing:212.135370pt;}
.wse1{word-spacing:942.168474pt;}
.wse2{word-spacing:943.507140pt;}
.wse3{word-spacing:947.475140pt;}
.wsf4{word-spacing:1004.835140pt;}
.wsfd{word-spacing:1006.179140pt;}
.wsfe{word-spacing:1007.517807pt;}
.wsff{word-spacing:1011.491140pt;}
.wsf5{word-spacing:1014.173807pt;}
.wsf6{word-spacing:1018.141807pt;}
._84{margin-left:-23.527834pt;}
._e{margin-left:-6.577977pt;}
._15{margin-left:-5.120568pt;}
._7{margin-left:-3.910662pt;}
._1{margin-left:-2.715133pt;}
._3{margin-left:-1.338970pt;}
._5{width:1.015035pt;}
._64{width:1.960469pt;}
._6{width:3.145828pt;}
._33{width:4.620283pt;}
._83{width:5.742226pt;}
._3b{width:10.195955pt;}
._0{width:11.530016pt;}
._10{width:13.175632pt;}
._a{width:14.441869pt;}
._86{width:15.332876pt;}
._b{width:16.259072pt;}
._c{width:17.225996pt;}
._f{width:18.224916pt;}
._17{width:19.234460pt;}
._9{width:20.419469pt;}
._87{width:21.328090pt;}
._13{width:22.346564pt;}
._1a{width:24.122775pt;}
._19{width:26.141862pt;}
._2{width:27.188522pt;}
._18{width:28.320351pt;}
._4{width:29.648896pt;}
._16{width:31.412738pt;}
._82{width:33.077743pt;}
._4d{width:34.069514pt;}
._85{width:36.704992pt;}
._d{width:37.831313pt;}
._14{width:39.914157pt;}
._8{width:50.498554pt;}
._1d{width:60.696664pt;}
._32{width:63.787016pt;}
._1f{width:79.228141pt;}
._66{width:92.867994pt;}
._48{width:96.641836pt;}
._55{width:98.108503pt;}
._2e{width:101.185861pt;}
._2f{width:102.992694pt;}
._39{width:104.025114pt;}
._24{width:106.135666pt;}
._1c{width:107.776720pt;}
._3f{width:108.915618pt;}
._5e{width:109.983524pt;}
._21{width:116.100147pt;}
._69{width:118.069555pt;}
._61{width:119.345216pt;}
._4b{width:120.461698pt;}
._28{width:124.921720pt;}
._38{width:126.331413pt;}
._4c{width:136.942229pt;}
._65{width:139.160572pt;}
._26{width:141.614954pt;}
._63{width:152.760266pt;}
._2d{width:156.005927pt;}
._67{width:158.621594pt;}
._75{width:163.473714pt;}
._80{width:165.493147pt;}
._23{width:180.898421pt;}
._6c{width:182.267289pt;}
._71{width:183.294153pt;}
._6b{width:193.817702pt;}
._2b{width:197.739749pt;}
._5c{width:200.260349pt;}
._77{width:205.772902pt;}
._29{width:211.936249pt;}
._68{width:215.050138pt;}
._70{width:217.728102pt;}
._7e{width:221.840691pt;}
._6e{width:223.182647pt;}
._52{width:224.209511pt;}
._73{width:229.345583pt;}
._7c{width:230.496256pt;}
._76{width:232.313446pt;}
._2a{width:233.522709pt;}
._20{width:242.079503pt;}
._30{width:243.129655pt;}
._1e{width:244.724331pt;}
._6f{width:246.611866pt;}
._72{width:247.903027pt;}
._7b{width:250.349373pt;}
._74{width:253.593702pt;}
._79{width:256.797696pt;}
._7a{width:258.916453pt;}
._6a{width:260.094358pt;}
._78{width:278.890906pt;}
._5d{width:281.212994pt;}
._7d{width:283.912090pt;}
._34{width:284.871479pt;}
._81{width:288.455066pt;}
._25{width:289.702954pt;}
._6d{width:293.428429pt;}
._7f{width:295.676006pt;}
._45{width:298.759074pt;}
._54{width:305.869595pt;}
._27{width:311.739592pt;}
._2c{width:315.240099pt;}
._4f{width:317.395553pt;}
._49{width:318.970390pt;}
._1b{width:346.808942pt;}
._5a{width:355.455624pt;}
._51{width:357.644686pt;}
._31{width:358.646385pt;}
._58{width:372.793154pt;}
._56{width:394.889660pt;}
._5f{width:399.393200pt;}
._59{width:411.030720pt;}
._43{width:416.232302pt;}
._57{width:430.410754pt;}
._50{width:435.398263pt;}
._3c{width:448.797832pt;}
._22{width:454.599170pt;}
._60{width:467.460819pt;}
._44{width:493.795150pt;}
._37{width:495.910178pt;}
._5b{width:510.483390pt;}
._40{width:511.951228pt;}
._62{width:517.560902pt;}
._3d{width:520.717424pt;}
._46{width:525.575134pt;}
._41{width:536.342415pt;}
._4a{width:543.198316pt;}
._35{width:556.036065pt;}
._36{width:557.553721pt;}
._3e{width:564.469188pt;}
._53{width:570.285994pt;}
._47{width:588.552738pt;}
._42{width:627.886273pt;}
._11{width:664.685086pt;}
._3a{width:683.216911pt;}
._4e{width:2244.232267pt;}
._12{width:2265.485600pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:38.894522pt;}
.fs9{font-size:40.381867pt;}
.fse{font-size:40.528368pt;}
.fs10{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fs11{font-size:43.948084pt;}
.fs12{font-size:45.794216pt;}
.fs13{font-size:47.500083pt;}
.fsc{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:14.848190pt;}
.y69{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y107{bottom:82.820000pt;}
.y1de{bottom:83.229333pt;}
.y4{bottom:86.333337pt;}
.y1ee{bottom:90.748000pt;}
.y27e{bottom:92.892000pt;}
.y39{bottom:93.018667pt;}
.y9f{bottom:94.086667pt;}
.y248{bottom:94.776000pt;}
.yb2{bottom:95.282667pt;}
.y13c{bottom:97.396000pt;}
.y106{bottom:99.557333pt;}
.y1dd{bottom:99.966667pt;}
.y1ed{bottom:107.485333pt;}
.y27d{bottom:108.233333pt;}
.y38{bottom:108.920000pt;}
.y247{bottom:110.117333pt;}
.y9e{bottom:110.824000pt;}
.y1f6{bottom:111.621333pt;}
.yb1{bottom:112.020000pt;}
.y13b{bottom:114.133333pt;}
.y68{bottom:114.237333pt;}
.y105{bottom:116.294667pt;}
.y1dc{bottom:116.704000pt;}
.y27c{bottom:123.576000pt;}
.y21{bottom:123.790666pt;}
.y1ec{bottom:124.222667pt;}
.y37{bottom:124.820000pt;}
.y246{bottom:125.460000pt;}
.y9d{bottom:127.561333pt;}
.y1f5{bottom:128.358667pt;}
.yb0{bottom:128.757333pt;}
.y13a{bottom:130.870667pt;}
.y67{bottom:130.974667pt;}
.y104{bottom:133.032000pt;}
.y1db{bottom:133.440000pt;}
.y27b{bottom:138.918667pt;}
.y36{bottom:140.720000pt;}
.y245{bottom:140.802667pt;}
.y1eb{bottom:140.960000pt;}
.y9c{bottom:144.298667pt;}
.y1f4{bottom:145.096000pt;}
.yaf{bottom:145.494667pt;}
.y139{bottom:147.608000pt;}
.y66{bottom:147.710667pt;}
.y103{bottom:149.769333pt;}
.y1da{bottom:150.177333pt;}
.yee{bottom:152.566667pt;}
.y27a{bottom:154.261333pt;}
.y244{bottom:156.145333pt;}
.y35{bottom:156.621333pt;}
.y1ea{bottom:157.697333pt;}
.y9b{bottom:161.036000pt;}
.y1f3{bottom:161.833333pt;}
.yae{bottom:162.232000pt;}
.y138{bottom:164.345333pt;}
.y65{bottom:164.448000pt;}
.y188{bottom:165.121333pt;}
.y102{bottom:166.506667pt;}
.y1d9{bottom:166.914667pt;}
.yed{bottom:168.506667pt;}
.y279{bottom:169.604000pt;}
.y243{bottom:171.488000pt;}
.y34{bottom:172.521333pt;}
.y1e9{bottom:174.434667pt;}
.y152{bottom:174.556000pt;}
.y18{bottom:175.052000pt;}
.y9a{bottom:177.773333pt;}
.y1f2{bottom:178.570667pt;}
.yad{bottom:178.969333pt;}
.y22a{bottom:179.689333pt;}
.y137{bottom:181.082667pt;}
.y64{bottom:181.185333pt;}
.y187{bottom:181.858667pt;}
.y101{bottom:183.244000pt;}
.yec{bottom:183.475809pt;}
.y1d8{bottom:183.652000pt;}
.y278{bottom:184.946667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y242{bottom:186.830667pt;}
.y33{bottom:188.421333pt;}
.y1e8{bottom:191.172000pt;}
.y151{bottom:191.293333pt;}
.yb7{bottom:194.510667pt;}
.yeb{bottom:195.144049pt;}
.y1f1{bottom:195.308000pt;}
.yac{bottom:195.706667pt;}
.y100{bottom:196.700000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y136{bottom:197.820000pt;}
.y63{bottom:197.922667pt;}
.y99{bottom:198.496000pt;}
.y186{bottom:198.596000pt;}
.yff{bottom:199.981333pt;}
.y277{bottom:200.289333pt;}
.y1d7{bottom:200.389333pt;}
.y241{bottom:202.173333pt;}
.y32{bottom:204.322667pt;}
.y229{bottom:204.754667pt;}
.yea{bottom:206.812288pt;}
.y1e7{bottom:207.909333pt;}
.y150{bottom:208.030667pt;}
.y1b9{bottom:208.326667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yb6{bottom:211.248000pt;}
.yab{bottom:212.444000pt;}
.y135{bottom:214.557333pt;}
.y62{bottom:214.660000pt;}
.y185{bottom:215.333333pt;}
.y276{bottom:215.632000pt;}
.yfe{bottom:215.818667pt;}
.y1f0{bottom:216.030667pt;}
.y98{bottom:216.428000pt;}
.y1d6{bottom:217.126667pt;}
.y240{bottom:217.516000pt;}
.ye9{bottom:218.480528pt;}
.yfd{bottom:219.100000pt;}
.y1b8{bottom:224.266667pt;}
.y1e6{bottom:224.646667pt;}
.y14f{bottom:224.766667pt;}
.yb5{bottom:227.985333pt;}
.yaa{bottom:229.181333pt;}
.ye8{bottom:230.149743pt;}
.y275{bottom:230.974667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y134{bottom:231.294667pt;}
.y61{bottom:231.397333pt;}
.y184{bottom:232.070667pt;}
.y23f{bottom:232.857333pt;}
.y1d5{bottom:233.864000pt;}
.yfc{bottom:237.549333pt;}
.y1b7{bottom:240.206667pt;}
.y14e{bottom:241.504000pt;}
.ye7{bottom:241.817982pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya9{bottom:245.918667pt;}
.y97{bottom:246.316000pt;}
.y133{bottom:248.032000pt;}
.y60{bottom:248.134667pt;}
.y23e{bottom:248.200000pt;}
.yb4{bottom:248.708000pt;}
.y183{bottom:248.808000pt;}
.y1d4{bottom:250.601333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ye6{bottom:253.486222pt;}
.y1e5{bottom:254.482667pt;}
.y1b6{bottom:256.146667pt;}
.y14d{bottom:258.241333pt;}
.y274{bottom:261.658667pt;}
.ya8{bottom:262.656000pt;}
.y96{bottom:263.053333pt;}
.y23d{bottom:263.542667pt;}
.y132{bottom:264.769333pt;}
.y5f{bottom:264.872000pt;}
.ye5{bottom:265.154461pt;}
.y182{bottom:265.545333pt;}
.y31{bottom:266.570667pt;}
.yb3{bottom:266.640000pt;}
.y1d3{bottom:267.338667pt;}
.y1e4{bottom:271.578667pt;}
.y1b5{bottom:272.088000pt;}
.y221{bottom:273.194667pt;}
.y14c{bottom:274.978667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ye4{bottom:276.822701pt;}
.y273{bottom:277.001333pt;}
.y23c{bottom:278.885333pt;}
.ya7{bottom:279.393333pt;}
.y95{bottom:279.790667pt;}
.y131{bottom:281.506667pt;}
.y5e{bottom:281.609333pt;}
.y181{bottom:282.282667pt;}
.y30{bottom:282.470667pt;}
.y1f7{bottom:283.377333pt;}
.y1d2{bottom:284.076000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y220{bottom:287.806667pt;}
.y1b4{bottom:288.028000pt;}
.ye3{bottom:288.490940pt;}
.y1e3{bottom:288.674667pt;}
.y14b{bottom:291.716000pt;}
.y272{bottom:292.344000pt;}
.y23b{bottom:294.228000pt;}
.ya6{bottom:296.129333pt;}
.y94{bottom:296.528000pt;}
.y130{bottom:298.244000pt;}
.y5d{bottom:298.346667pt;}
.y2f{bottom:298.370667pt;}
.y180{bottom:299.020000pt;}
.ye2{bottom:300.160155pt;}
.y1d1{bottom:300.813333pt;}
.y21f{bottom:302.418667pt;}
.y1b3{bottom:303.968000pt;}
.y1e2{bottom:305.770667pt;}
.y271{bottom:307.686667pt;}
.yf{bottom:309.452000pt;}
.y23a{bottom:309.570667pt;}
.ye1{bottom:311.828395pt;}
.y14a{bottom:312.438667pt;}
.ya5{bottom:312.866667pt;}
.y93{bottom:313.265333pt;}
.y2e{bottom:314.272000pt;}
.y12f{bottom:314.981333pt;}
.y5c{bottom:315.084000pt;}
.y21e{bottom:317.030667pt;}
.y1d0{bottom:317.550667pt;}
.y17f{bottom:319.741333pt;}
.y1b2{bottom:319.908000pt;}
.y270{bottom:323.029333pt;}
.ye0{bottom:323.496634pt;}
.y239{bottom:324.913333pt;}
.ya4{bottom:329.604000pt;}
.y92{bottom:330.002667pt;}
.y1e1{bottom:330.836000pt;}
.y21d{bottom:331.642667pt;}
.y12e{bottom:331.718667pt;}
.y5b{bottom:331.821333pt;}
.y1cf{bottom:334.288000pt;}
.y1b1{bottom:336.192804pt;}
.y26f{bottom:338.372000pt;}
.y2d{bottom:339.470667pt;}
.ydf{bottom:340.045916pt;}
.y238{bottom:340.256000pt;}
.y149{bottom:342.326667pt;}
.ye{bottom:343.809333pt;}
.y21c{bottom:346.253333pt;}
.ya3{bottom:346.341333pt;}
.y91{bottom:346.740000pt;}
.y5a{bottom:348.558667pt;}
.y1b0{bottom:350.443878pt;}
.y1ce{bottom:351.025333pt;}
.y17e{bottom:351.856000pt;}
.y12d{bottom:352.440000pt;}
.y26e{bottom:353.714667pt;}
.y2c{bottom:355.370667pt;}
.y237{bottom:355.598667pt;}
.yde{bottom:356.595198pt;}
.y148{bottom:359.064000pt;}
.y21b{bottom:360.865333pt;}
.yd{bottom:362.706666pt;}
.ya2{bottom:363.078667pt;}
.y90{bottom:363.477333pt;}
.y1af{bottom:364.693760pt;}
.y59{bottom:365.296000pt;}
.y1cd{bottom:367.762667pt;}
.y17d{bottom:367.796000pt;}
.ydd{bottom:368.263438pt;}
.y26d{bottom:369.056000pt;}
.y12c{bottom:370.373333pt;}
.y2b{bottom:371.270667pt;}
.y236{bottom:374.925333pt;}
.y21a{bottom:375.477333pt;}
.y147{bottom:375.801333pt;}
.ya1{bottom:379.816000pt;}
.ydc{bottom:379.931677pt;}
.y8f{bottom:380.214667pt;}
.y58{bottom:382.033333pt;}
.y17c{bottom:383.737333pt;}
.y26c{bottom:384.398667pt;}
.y1cb{bottom:384.500000pt;}
.y1ae{bottom:384.904633pt;}
.y1cc{bottom:389.321333pt;}
.y219{bottom:390.089333pt;}
.ydb{bottom:391.599917pt;}
.y146{bottom:392.538667pt;}
.y2a{bottom:395.141333pt;}
.yfb{bottom:396.553333pt;}
.y8e{bottom:396.952000pt;}
.y57{bottom:398.770667pt;}
.y1ad{bottom:399.154515pt;}
.y17b{bottom:399.479090pt;}
.y26b{bottom:399.741333pt;}
.y12b{bottom:400.261333pt;}
.ya0{bottom:400.538667pt;}
.y1ca{bottom:402.857333pt;}
.yda{bottom:403.269132pt;}
.y218{bottom:404.701333pt;}
.y235{bottom:407.602667pt;}
.y145{bottom:409.276000pt;}
.y29{bottom:411.042667pt;}
.yfa{bottom:413.290667pt;}
.y1ac{bottom:413.404397pt;}
.y8d{bottom:413.689333pt;}
.yd9{bottom:414.937371pt;}
.y26a{bottom:415.084000pt;}
.y56{bottom:415.508000pt;}
.y12a{bottom:416.998667pt;}
.y17a{bottom:418.177516pt;}
.y217{bottom:419.313333pt;}
.y1c9{bottom:419.594667pt;}
.y234{bottom:422.945333pt;}
.y144{bottom:426.013333pt;}
.yd8{bottom:426.605611pt;}
.y28{bottom:426.942667pt;}
.y1ab{bottom:427.654279pt;}
.y228{bottom:429.748000pt;}
.yf9{bottom:430.028000pt;}
.y8c{bottom:430.426667pt;}
.y179{bottom:431.362911pt;}
.y55{bottom:432.245333pt;}
.y129{bottom:433.736000pt;}
.y216{bottom:433.925333pt;}
.y1c8{bottom:436.332000pt;}
.yd7{bottom:438.273850pt;}
.y233{bottom:438.288000pt;}
.y1aa{bottom:441.904160pt;}
.y232{bottom:442.628000pt;}
.y143{bottom:442.750667pt;}
.y27{bottom:442.842667pt;}
.y178{bottom:444.547204pt;}
.y269{bottom:445.769333pt;}
.yf8{bottom:446.765333pt;}
.y227{bottom:446.844000pt;}
.yc{bottom:446.990669pt;}
.y8b{bottom:447.164000pt;}
.y215{bottom:448.537333pt;}
.y54{bottom:448.982667pt;}
.yd6{bottom:449.942090pt;}
.y128{bottom:450.473333pt;}
.y1c7{bottom:453.069333pt;}
.y1a9{bottom:456.155234pt;}
.y177{bottom:457.731497pt;}
.y26{bottom:458.744000pt;}
.y142{bottom:459.488000pt;}
.y268{bottom:461.112000pt;}
.yd5{bottom:461.610329pt;}
.y231{bottom:462.261333pt;}
.yb{bottom:462.990669pt;}
.y214{bottom:463.149333pt;}
.yf7{bottom:463.502667pt;}
.y8a{bottom:463.901333pt;}
.y226{bottom:463.940000pt;}
.y127{bottom:467.210667pt;}
.y53{bottom:469.705333pt;}
.y1c6{bottom:469.806667pt;}
.y1a8{bottom:470.405116pt;}
.y176{bottom:470.915790pt;}
.yd4{bottom:473.279544pt;}
.y25{bottom:474.644000pt;}
.y141{bottom:476.225333pt;}
.y267{bottom:476.454667pt;}
.y213{bottom:477.761333pt;}
.ya{bottom:478.990666pt;}
.yf6{bottom:480.240000pt;}
.y89{bottom:480.638667pt;}
.y225{bottom:481.036000pt;}
.y126{bottom:483.948000pt;}
.y175{bottom:484.100083pt;}
.y1a7{bottom:484.654998pt;}
.yd3{bottom:484.947784pt;}
.y1c5{bottom:486.544000pt;}
.y24{bottom:490.544000pt;}
.y266{bottom:491.797333pt;}
.y230{bottom:492.097333pt;}
.y212{bottom:492.372000pt;}
.y140{bottom:492.962667pt;}
.y9{bottom:494.990666pt;}
.yd2{bottom:496.616023pt;}
.yf5{bottom:496.977333pt;}
.y174{bottom:497.285478pt;}
.y88{bottom:497.376000pt;}
.y1a6{bottom:498.904880pt;}
.y125{bottom:500.685333pt;}
.y1c4{bottom:503.281333pt;}
.y224{bottom:506.101333pt;}
.y23{bottom:506.445333pt;}
.y211{bottom:506.984000pt;}
.y265{bottom:507.138667pt;}
.yd1{bottom:508.284263pt;}
.y22f{bottom:509.193333pt;}
.y13f{bottom:509.700000pt;}
.y173{bottom:510.469771pt;}
.y1a5{bottom:513.154761pt;}
.yf4{bottom:513.714667pt;}
.y87{bottom:514.113333pt;}
.y124{bottom:517.422667pt;}
.yd0{bottom:519.952502pt;}
.y1c3{bottom:520.018667pt;}
.y210{bottom:521.596000pt;}
.y22{bottom:522.345333pt;}
.y264{bottom:522.481333pt;}
.y172{bottom:523.654064pt;}
.y22e{bottom:526.289333pt;}
.yf3{bottom:530.452000pt;}
.y86{bottom:530.850667pt;}
.ycf{bottom:531.620741pt;}
.y1a4{bottom:533.365635pt;}
.y123{bottom:534.160000pt;}
.y1e0{bottom:534.524000pt;}
.y20f{bottom:536.208000pt;}
.y52{bottom:536.505333pt;}
.y1c2{bottom:536.756000pt;}
.y171{bottom:536.838357pt;}
.y263{bottom:537.824000pt;}
.y13e{bottom:539.536000pt;}
.yce{bottom:543.289957pt;}
.y22d{bottom:543.385333pt;}
.yf2{bottom:547.189333pt;}
.y85{bottom:547.588000pt;}
.y20e{bottom:550.820000pt;}
.y122{bottom:550.897333pt;}
.y262{bottom:553.166667pt;}
.y1c1{bottom:553.493333pt;}
.y1a3{bottom:553.576509pt;}
.y170{bottom:555.537886pt;}
.y13d{bottom:556.632000pt;}
.ycd{bottom:559.839239pt;}
.yf1{bottom:563.926667pt;}
.y84{bottom:564.325333pt;}
.y20d{bottom:565.432000pt;}
.y121{bottom:567.634667pt;}
.y1a2{bottom:567.826391pt;}
.y1ef{bottom:567.912000pt;}
.y22c{bottom:568.450667pt;}
.y261{bottom:568.509333pt;}
.y51{bottom:569.740000pt;}
.y1c0{bottom:570.230667pt;}
.y8{bottom:573.786667pt;}
.y16f{bottom:574.237415pt;}
.ycc{bottom:576.388521pt;}
.y20c{bottom:580.044000pt;}
.yf0{bottom:580.664000pt;}
.y83{bottom:581.062667pt;}
.y1a1{bottom:582.077465pt;}
.y260{bottom:583.852000pt;}
.y120{bottom:584.370667pt;}
.y1bf{bottom:586.968000pt;}
.y50{bottom:587.036000pt;}
.y16e{bottom:587.421707pt;}
.ycb{bottom:588.056760pt;}
.y7{bottom:592.685334pt;}
.y20b{bottom:594.656000pt;}
.y1a0{bottom:596.327346pt;}
.y82{bottom:597.800000pt;}
.y25f{bottom:599.194667pt;}
.yca{bottom:599.725000pt;}
.y16d{bottom:600.606000pt;}
.y11f{bottom:601.108000pt;}
.yef{bottom:601.386667pt;}
.y1be{bottom:603.705333pt;}
.y4f{bottom:604.330667pt;}
.y20a{bottom:609.268000pt;}
.y19f{bottom:610.577228pt;}
.yc9{bottom:611.393239pt;}
.y16c{bottom:613.790293pt;}
.y81{bottom:614.537333pt;}
.y11e{bottom:617.845333pt;}
.y1bd{bottom:620.442667pt;}
.y4e{bottom:621.625333pt;}
.yc8{bottom:623.061479pt;}
.y209{bottom:623.880000pt;}
.y19e{bottom:624.827110pt;}
.y16b{bottom:626.975689pt;}
.y25e{bottom:629.878667pt;}
.y80{bottom:631.274667pt;}
.y11d{bottom:634.582667pt;}
.yc7{bottom:634.729718pt;}
.y1bc{bottom:637.180000pt;}
.y208{bottom:638.490667pt;}
.y4d{bottom:638.921333pt;}
.y19d{bottom:639.076992pt;}
.y16a{bottom:640.159981pt;}
.y25d{bottom:645.221333pt;}
.y6{bottom:645.598667pt;}
.yc6{bottom:646.398933pt;}
.y7f{bottom:648.012000pt;}
.y11c{bottom:651.320000pt;}
.y207{bottom:653.102667pt;}
.y19c{bottom:653.326874pt;}
.y169{bottom:653.344274pt;}
.y4c{bottom:656.216000pt;}
.yc5{bottom:658.067173pt;}
.y25c{bottom:660.564000pt;}
.y7e{bottom:664.749333pt;}
.y168{bottom:666.528567pt;}
.y1bb{bottom:667.016000pt;}
.y19b{bottom:667.577947pt;}
.y206{bottom:667.714667pt;}
.y11b{bottom:668.057333pt;}
.y3{bottom:668.977329pt;}
.yc4{bottom:669.735412pt;}
.y223{bottom:672.289333pt;}
.y4b{bottom:673.510667pt;}
.y25b{bottom:675.906667pt;}
.y167{bottom:679.712860pt;}
.yc3{bottom:681.403652pt;}
.y7d{bottom:681.485333pt;}
.y19a{bottom:681.827829pt;}
.y1ba{bottom:684.112000pt;}
.y11a{bottom:684.794667pt;}
.y205{bottom:688.994667pt;}
.y4a{bottom:690.806667pt;}
.y25a{bottom:691.249333pt;}
.y166{bottom:692.898255pt;}
.yc2{bottom:693.071891pt;}
.y199{bottom:696.077711pt;}
.y7c{bottom:698.222667pt;}
.y119{bottom:701.532000pt;}
.y204{bottom:703.606667pt;}
.yc1{bottom:704.740130pt;}
.y165{bottom:706.082548pt;}
.y259{bottom:706.592000pt;}
.y198{bottom:710.327593pt;}
.y7b{bottom:714.960000pt;}
.yc0{bottom:716.409346pt;}
.y118{bottom:718.269333pt;}
.y164{bottom:719.266841pt;}
.y258{bottom:721.934667pt;}
.y49{bottom:725.104000pt;}
.ybf{bottom:728.077585pt;}
.y197{bottom:730.538466pt;}
.y7a{bottom:731.697333pt;}
.y203{bottom:731.713333pt;}
.y117{bottom:735.006667pt;}
.y257{bottom:737.277333pt;}
.y163{bottom:737.966370pt;}
.y1df{bottom:738.210667pt;}
.y48{bottom:739.450667pt;}
.ybe{bottom:739.745825pt;}
.y79{bottom:748.434667pt;}
.y196{bottom:750.749340pt;}
.ybd{bottom:751.414064pt;}
.y116{bottom:751.744000pt;}
.y256{bottom:752.620000pt;}
.y47{bottom:753.797333pt;}
.y162{bottom:756.665899pt;}
.y202{bottom:761.984000pt;}
.ybc{bottom:763.082303pt;}
.y195{bottom:764.999222pt;}
.y78{bottom:765.172000pt;}
.y255{bottom:767.961333pt;}
.y46{bottom:768.142667pt;}
.y115{bottom:768.481333pt;}
.y161{bottom:769.850192pt;}
.ybb{bottom:774.750543pt;}
.y194{bottom:779.249104pt;}
.y2{bottom:781.661334pt;}
.y77{bottom:781.909333pt;}
.y160{bottom:783.034484pt;}
.y254{bottom:783.304000pt;}
.y114{bottom:785.218667pt;}
.y22b{bottom:785.474667pt;}
.y45{bottom:786.346667pt;}
.yba{bottom:791.299825pt;}
.y193{bottom:793.498986pt;}
.y201{bottom:794.662667pt;}
.y15f{bottom:796.218777pt;}
.y76{bottom:798.646667pt;}
.y44{bottom:800.693333pt;}
.y113{bottom:801.956000pt;}
.y192{bottom:807.750059pt;}
.yb9{bottom:807.849107pt;}
.y15e{bottom:809.403070pt;}
.y43{bottom:811.182667pt;}
.y253{bottom:813.989333pt;}
.y42{bottom:815.040000pt;}
.y75{bottom:815.384000pt;}
.y200{bottom:818.253333pt;}
.y112{bottom:818.693333pt;}
.y191{bottom:821.999941pt;}
.y15d{bottom:822.588466pt;}
.y252{bottom:829.332000pt;}
.y41{bottom:829.385333pt;}
.y111{bottom:831.836000pt;}
.y74{bottom:832.121333pt;}
.yb8{bottom:832.614667pt;}
.y110{bottom:833.832000pt;}
.y1ff{bottom:833.874667pt;}
.y10f{bottom:834.078667pt;}
.y15c{bottom:835.772759pt;}
.y190{bottom:836.249823pt;}
.y222{bottom:837.144000pt;}
.y10b{bottom:840.272000pt;}
.y251{bottom:844.674667pt;}
.y10e{bottom:846.593333pt;}
.y73{bottom:848.858667pt;}
.y15b{bottom:848.957051pt;}
.y10d{bottom:849.086667pt;}
.y10c{bottom:849.334667pt;}
.y18f{bottom:850.499705pt;}
.y1fe{bottom:857.466667pt;}
.y1{bottom:859.312000pt;}
.y250{bottom:860.017333pt;}
.y15a{bottom:862.141344pt;}
.y109{bottom:862.314667pt;}
.y18e{bottom:864.749587pt;}
.y72{bottom:865.596000pt;}
.y10a{bottom:865.789333pt;}
.y108{bottom:865.921333pt;}
.y40{bottom:869.098667pt;}
.y1fd{bottom:873.088000pt;}
.y281{bottom:873.965333pt;}
.y159{bottom:875.325637pt;}
.y24f{bottom:875.360000pt;}
.y18d{bottom:879.000660pt;}
.y71{bottom:882.333333pt;}
.y3f{bottom:885.836000pt;}
.y280{bottom:889.306667pt;}
.y24e{bottom:890.702667pt;}
.y158{bottom:894.025166pt;}
.y1fc{bottom:896.680000pt;}
.y70{bottom:899.070667pt;}
.y18c{bottom:899.211534pt;}
.y27f{bottom:904.649333pt;}
.y24d{bottom:906.044000pt;}
.y157{bottom:912.724695pt;}
.y6f{bottom:915.808000pt;}
.y18b{bottom:919.421216pt;}
.y1fb{bottom:920.270667pt;}
.y3e{bottom:921.320000pt;}
.y24c{bottom:921.386667pt;}
.y156{bottom:925.908988pt;}
.y6e{bottom:932.545333pt;}
.y1fa{bottom:935.893333pt;}
.y24b{bottom:936.729333pt;}
.y18a{bottom:939.632090pt;}
.y155{bottom:944.608517pt;}
.y3d{bottom:946.425333pt;}
.y6d{bottom:949.282667pt;}
.y1f9{bottom:951.514667pt;}
.y24a{bottom:952.072000pt;}
.y154{bottom:957.793912pt;}
.y6c{bottom:966.020000pt;}
.y189{bottom:966.977333pt;}
.y1f8{bottom:967.136000pt;}
.y249{bottom:967.414667pt;}
.y3c{bottom:971.530667pt;}
.y6b{bottom:982.757333pt;}
.y153{bottom:984.073333pt;}
.y3a{bottom:1010.186667pt;}
.y6a{bottom:1038.548000pt;}
.h21{height:23.368431pt;}
.h15{height:28.004056pt;}
.h7{height:28.560000pt;}
.hf{height:28.947524pt;}
.h1e{height:29.599908pt;}
.h28{height:31.157778pt;}
.h17{height:31.409485pt;}
.h24{height:31.642620pt;}
.h9{height:33.771789pt;}
.h26{height:34.200060pt;}
.h11{height:34.430976pt;}
.h16{height:35.316226pt;}
.h1f{height:36.666735pt;}
.h13{height:38.256384pt;}
.h10{height:38.596538pt;}
.hc{height:38.947124pt;}
.h25{height:39.904860pt;}
.h6{height:40.800000pt;}
.h18{height:41.524400pt;}
.h3{height:42.840000pt;}
.h19{height:42.908547pt;}
.h22{height:43.027524pt;}
.h27{height:43.130075pt;}
.h12{height:43.421286pt;}
.h20{height:43.608858pt;}
.h23{height:45.237402pt;}
.ha{height:45.271688pt;}
.h14{height:48.245551pt;}
.he{height:48.360277pt;}
.h2{height:48.960000pt;}
.h1b{height:54.649733pt;}
.h1a{height:55.952068pt;}
.h1c{height:55.957402pt;}
.h1d{height:61.370884pt;}
.hd{height:68.861952pt;}
.h5{height:69.360000pt;}
.hb{height:77.447343pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x77{left:76.346667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x78{left:211.989333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.xd{left:224.288940pt;}
.x57{left:225.496000pt;}
.x58{left:230.804000pt;}
.x8{left:239.790667pt;}
.x5e{left:242.928000pt;}
.xb{left:250.204000pt;}
.x62{left:251.578667pt;}
.x5f{left:252.546667pt;}
.x61{left:253.634667pt;}
.x60{left:254.554667pt;}
.x64{left:255.625333pt;}
.x63{left:256.706667pt;}
.x21{left:260.212000pt;}
.x43{left:266.909333pt;}
.x71{left:268.393333pt;}
.x74{left:269.936000pt;}
.x53{left:272.748000pt;}
.xa{left:273.893333pt;}
.x42{left:275.165333pt;}
.x75{left:277.241333pt;}
.x54{left:280.841333pt;}
.x68{left:282.022667pt;}
.x67{left:285.286667pt;}
.x6e{left:286.649333pt;}
.x22{left:289.500000pt;}
.x6a{left:299.374667pt;}
.x6b{left:306.678667pt;}
.x52{left:314.690667pt;}
.x46{left:318.424000pt;}
.x65{left:322.524000pt;}
.x66{left:323.858667pt;}
.x27{left:328.602667pt;}
.x28{left:332.553333pt;}
.x29{left:340.728000pt;}
.x18{left:348.114775pt;}
.x19{left:349.325032pt;}
.x1a{left:352.645333pt;}
.x1b{left:362.145333pt;}
.x2a{left:373.914667pt;}
.x4b{left:379.047200pt;}
.x4c{left:381.196304pt;}
.x4d{left:385.918849pt;}
.x20{left:393.573333pt;}
.x3e{left:396.649333pt;}
.x4e{left:401.159250pt;}
.x3{left:404.408000pt;}
.x11{left:405.612697pt;}
.x4a{left:407.214406pt;}
.x4f{left:408.392000pt;}
.xe{left:414.660341pt;}
.x45{left:415.799559pt;}
.x15{left:416.945188pt;}
.x31{left:418.744000pt;}
.x30{left:420.038667pt;}
.x3f{left:422.572000pt;}
.x32{left:425.740000pt;}
.x6f{left:436.730667pt;}
.x33{left:438.945333pt;}
.x44{left:441.311248pt;}
.x70{left:442.708000pt;}
.x50{left:444.306667pt;}
.xf{left:460.782827pt;}
.x59{left:465.420000pt;}
.x76{left:466.841333pt;}
.x5d{left:467.766667pt;}
.x5a{left:472.724000pt;}
.xc{left:485.536000pt;}
.x6c{left:493.217333pt;}
.x6d{left:499.194667pt;}
.x23{left:504.328000pt;}
.x24{left:508.280000pt;}
.x2f{left:511.814667pt;}
.x25{left:514.766667pt;}
.x55{left:520.876000pt;}
.x56{left:528.180000pt;}
.x26{left:544.054667pt;}
.x35{left:561.326667pt;}
.x34{left:564.853333pt;}
.x47{left:567.221333pt;}
.x2b{left:568.397333pt;}
.x36{left:571.657333pt;}
.x37{left:581.857333pt;}
.x3a{left:582.933333pt;}
.x14{left:584.319762pt;}
.x40{left:586.005333pt;}
.x3b{left:588.261333pt;}
.x39{left:595.237333pt;}
.x38{left:596.221333pt;}
.x48{left:597.956000pt;}
.x10{left:599.888151pt;}
.x72{left:601.862667pt;}
.x3c{left:605.008000pt;}
.x73{left:607.170667pt;}
.x1d{left:612.764000pt;}
.x1e{left:619.509333pt;}
.x51{left:620.664000pt;}
.x3d{left:622.656000pt;}
.x69{left:623.758667pt;}
.x49{left:627.093333pt;}
.x2c{left:628.876000pt;}
.x41{left:634.497333pt;}
.x2d{left:641.020000pt;}
.x2e{left:648.016000pt;}
.x12{left:664.797918pt;}
.x16{left:666.051119pt;}
.x13{left:672.795371pt;}
.x17{left:674.048572pt;}
.x1f{left:677.376000pt;}
.x1c{left:684.129333pt;}
.x5b{left:697.505333pt;}
.x5c{left:703.484000pt;}
}




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