
    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_ce1dadb0bc42e8b70cb543e7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0e580003c88c40ca3c3fbdf2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.151000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7603e5ba7edf59d720ffeac8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7a6352c8a56a1e455ff748e0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_dfdfbc59a97c68674a0b601d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_c99dd67febb1ebfb01d1d79f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b25932d537c6017452e4a28a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.482000;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_859e1b3a65f349a9aa4e4110.woff')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_71f6e33ddb15b1d1bdd9d4cf.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000488;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_5af2ad3ec11d0b5ea68d7dde.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006836;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_8c5c0ad38892f06c6eb6f1e3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_71f6e33ddb15b1d1bdd9d4cf.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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:ffd;src:url('chunks/assets/font_5af2ad3ec11d0b5ea68d7dde.woff')format("woff");}.ffd{font-family:ffd;line-height:1.006836;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:ffe;src:url('chunks/assets/font_8c5c0ad38892f06c6eb6f1e3.woff')format("woff");}.ffe{font-family:ffe;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m2b{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);}
.m19{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);}
.m18{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);}
.m2c{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);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m2a{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);}
.m20{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);}
.mb{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);}
.m1c{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);}
.m1{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);}
.m14{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);}
.m1b{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);}
.me{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);}
.m5{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);}
.mf{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);}
.m1f{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);}
.m3{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);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m27{transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.md{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);}
.m23{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);}
.m13{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);}
.m1e{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);}
.m9{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);}
.m15{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);}
.m16{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);}
.m24{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);}
.m1a{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);}
.m11{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);}
.m21{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);}
.m6{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);}
.m17{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);}
.m25{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);}
.m10{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);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-47.820000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.212000px;}
.v3{vertical-align:15.192000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:23.910000px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls28{letter-spacing:0.000800px;}
.ls2b{letter-spacing:0.002877px;}
.ls23{letter-spacing:0.004800px;}
.ls14{letter-spacing:0.181392px;}
.ls1a{letter-spacing:0.497764px;}
.ls19{letter-spacing:0.503764px;}
.lsd{letter-spacing:0.548815px;}
.ls16{letter-spacing:0.717483px;}
.ls4{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls1f{letter-spacing:10.455403px;}
.ls0{letter-spacing:10.461300px;}
.ls17{letter-spacing:10.461403px;}
.ls1b{letter-spacing:11.951700px;}
.ls9{letter-spacing:11.954850px;}
.lsc{letter-spacing:12.993833px;}
.ls21{letter-spacing:13.200057px;}
.ls2a{letter-spacing:13.268501px;}
.ls29{letter-spacing:13.428012px;}
.ls18{letter-spacing:13.448100px;}
.ls20{letter-spacing:13.448400px;}
.ls22{letter-spacing:13.454400px;}
.ls26{letter-spacing:13.535385px;}
.ls24{letter-spacing:13.599380px;}
.ls8{letter-spacing:13.652795px;}
.lsb{letter-spacing:14.458644px;}
.ls1d{letter-spacing:14.944200px;}
.lsf{letter-spacing:14.944766px;}
.ls13{letter-spacing:15.123227px;}
.ls12{letter-spacing:15.183002px;}
.lse{letter-spacing:15.661207px;}
.ls10{letter-spacing:16.188845px;}
.ls11{letter-spacing:16.194845px;}
.ls1c{letter-spacing:17.059259px;}
.ls1e{letter-spacing:18.709763px;}
.ls15{letter-spacing:19.187968px;}
.ls25{letter-spacing:19.715106px;}
.ls27{letter-spacing:20.003341px;}
.ls3{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.361200px;}
.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;}
}
.ws51{word-spacing:-14.943900px;}
.wsf{word-spacing:-14.355754px;}
.wsa4{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws7d{word-spacing:-11.337000px;}
.ws4{word-spacing:-10.460700px;}
.wsa1{word-spacing:-3.227882px;}
.ws26{word-spacing:-3.168107px;}
.ws27{word-spacing:-2.929004px;}
.wsb0{word-spacing:-2.689920px;}
.wsad{word-spacing:-2.528525px;}
.wsa0{word-spacing:-2.510575px;}
.wsb1{word-spacing:-2.474726px;}
.ws50{word-spacing:-2.391024px;}
.ws59{word-spacing:-2.211697px;}
.wsf6{word-spacing:-2.205734px;}
.ws73{word-spacing:-2.151922px;}
.ws17{word-spacing:-2.098138px;}
.ws70{word-spacing:-1.972595px;}
.ws4c{word-spacing:-1.912819px;}
.ws94{word-spacing:-1.853044px;}
.ws9d{word-spacing:-1.793268px;}
.ws3b{word-spacing:-1.733492px;}
.wsb6{word-spacing:-1.667750px;}
.ws49{word-spacing:-1.613941px;}
.ws71{word-spacing:-1.494390px;}
.ws13{word-spacing:-1.452557px;}
.ws6b{word-spacing:-1.434614px;}
.ws77{word-spacing:-1.374839px;}
.ws62{word-spacing:-1.315063px;}
.ws9f{word-spacing:-1.255288px;}
.ws54{word-spacing:-1.195512px;}
.ws1b{word-spacing:-1.183565px;}
.ws12{word-spacing:-1.075968px;}
.ws74{word-spacing:-1.075961px;}
.wsf0{word-spacing:-1.022170px;}
.wsa2{word-spacing:-1.016185px;}
.ws3d{word-spacing:-0.956410px;}
.ws5c{word-spacing:-0.896634px;}
.ws5b{word-spacing:-0.777083px;}
.ws19{word-spacing:-0.699379px;}
.ws75{word-spacing:-0.657532px;}
.ws52{word-spacing:-0.478205px;}
.ws2c{word-spacing:-0.418429px;}
.ws35{word-spacing:-0.358654px;}
.ws5d{word-spacing:-0.298878px;}
.wsaf{word-spacing:-0.268992px;}
.ws38{word-spacing:-0.239102px;}
.ws1a{word-spacing:-0.215194px;}
.ws3a{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws20{word-spacing:-0.119551px;}
.wsaa{word-spacing:-0.107597px;}
.ws2b{word-spacing:-0.059776px;}
.wsc6{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.wsee{word-spacing:-0.024749px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:0.047821px;}
.ws14{word-spacing:0.053798px;}
.ws24{word-spacing:0.059776px;}
.wsae{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.wsb5{word-spacing:0.161395px;}
.ws2e{word-spacing:0.179327px;}
.ws15{word-spacing:0.215194px;}
.ws40{word-spacing:0.239102px;}
.ws80{word-spacing:0.268992px;}
.ws88{word-spacing:0.286924px;}
.ws25{word-spacing:0.298878px;}
.wsa3{word-spacing:0.322790px;}
.ws33{word-spacing:0.358654px;}
.ws34{word-spacing:0.418429px;}
.ws22{word-spacing:0.478205px;}
.wsab{word-spacing:0.484186px;}
.ws86{word-spacing:0.521700px;}
.ws91{word-spacing:0.527700px;}
.ws23{word-spacing:0.537980px;}
.ws16{word-spacing:0.591782px;}
.ws4b{word-spacing:0.657532px;}
.ws42{word-spacing:0.717307px;}
.ws7a{word-spacing:0.777083px;}
.ws8b{word-spacing:0.836858px;}
.ws45{word-spacing:0.896634px;}
.ws46{word-spacing:0.956410px;}
.ws1e{word-spacing:1.016185px;}
.wsa5{word-spacing:1.022170px;}
.ws1f{word-spacing:1.075961px;}
.wsdb{word-spacing:1.075968px;}
.wse6{word-spacing:1.129766px;}
.wsd9{word-spacing:1.183565px;}
.ws57{word-spacing:1.255288px;}
.ws6f{word-spacing:1.374839px;}
.ws48{word-spacing:1.494390px;}
.ws66{word-spacing:1.554166px;}
.ws58{word-spacing:1.613941px;}
.ws4f{word-spacing:1.793268px;}
.ws3e{word-spacing:1.853044px;}
.ws61{word-spacing:1.912819px;}
.ws9e{word-spacing:1.972595px;}
.ws9c{word-spacing:2.032370px;}
.ws89{word-spacing:2.092146px;}
.ws7b{word-spacing:2.151922px;}
.wseb{word-spacing:2.151936px;}
.ws43{word-spacing:2.331248px;}
.ws36{word-spacing:2.391024px;}
.ws2a{word-spacing:2.450800px;}
.ws8f{word-spacing:2.510568px;}
.ws4e{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws4d{word-spacing:2.570351px;}
.ws29{word-spacing:2.630126px;}
.ws79{word-spacing:2.689902px;}
.ws28{word-spacing:2.749678px;}
.ws11{word-spacing:2.869236px;}
.wse4{word-spacing:2.905114px;}
.ws67{word-spacing:2.929004px;}
.ws9a{word-spacing:2.988780px;}
.wsd2{word-spacing:3.012710px;}
.ws2d{word-spacing:3.048556px;}
.ws69{word-spacing:3.108331px;}
.wsf4{word-spacing:3.199325px;}
.ws1c{word-spacing:3.219667px;}
.ws41{word-spacing:3.227882px;}
.wsce{word-spacing:3.227904px;}
.ws3c{word-spacing:3.287658px;}
.ws64{word-spacing:3.407209px;}
.ws72{word-spacing:3.526760px;}
.ws1d{word-spacing:3.586536px;}
.ws5e{word-spacing:3.646312px;}
.ws47{word-spacing:3.765863px;}
.wsa7{word-spacing:3.819686px;}
.ws65{word-spacing:3.825638px;}
.ws6a{word-spacing:3.885414px;}
.ws53{word-spacing:3.945190px;}
.wsac{word-spacing:3.981082px;}
.ws55{word-spacing:4.004965px;}
.wsa6{word-spacing:4.142477px;}
.ws56{word-spacing:4.184292px;}
.ws7f{word-spacing:4.244068px;}
.wsfb{word-spacing:4.250074px;}
.ws76{word-spacing:4.303843px;}
.ws6e{word-spacing:4.363619px;}
.ws3f{word-spacing:4.423394px;}
.wsa8{word-spacing:4.465267px;}
.ws68{word-spacing:4.483170px;}
.wsb3{word-spacing:4.519066px;}
.wsfa{word-spacing:4.626662px;}
.ws4a{word-spacing:4.662497px;}
.ws5f{word-spacing:4.722272px;}
.wsb{word-spacing:4.770079px;}
.ws96{word-spacing:4.841824px;}
.wsb4{word-spacing:4.841856px;}
.wsc{word-spacing:4.853765px;}
.wse0{word-spacing:4.949453px;}
.ws78{word-spacing:4.961375px;}
.ws44{word-spacing:5.140702px;}
.wse7{word-spacing:5.164646px;}
.ws97{word-spacing:5.320028px;}
.ws85{word-spacing:5.512511px;}
.ws63{word-spacing:5.559131px;}
.ws39{word-spacing:5.618906px;}
.ws9b{word-spacing:5.738458px;}
.wsf8{word-spacing:5.864026px;}
.ws8c{word-spacing:6.156887px;}
.wse2{word-spacing:6.240614px;}
.wsb2{word-spacing:6.294413px;}
.ws8a{word-spacing:6.395989px;}
.ws5a{word-spacing:6.515540px;}
.wse9{word-spacing:6.563405px;}
.ws37{word-spacing:6.874194px;}
.ws21{word-spacing:7.173072px;}
.ws98{word-spacing:7.471950px;}
.ws9{word-spacing:7.782761px;}
.ws6c{word-spacing:7.890379px;}
.ws99{word-spacing:8.189257px;}
.ws60{word-spacing:8.249033px;}
.ws6d{word-spacing:9.026116px;}
.ws3{word-spacing:10.414975px;}
.wsa9{word-spacing:11.997043px;}
.ws7{word-spacing:12.176255px;}
.wscf{word-spacing:12.319834px;}
.ws95{word-spacing:12.433325px;}
.ws2{word-spacing:12.929425px;}
.wsed{word-spacing:13.180608px;}
.wsde{word-spacing:13.288205px;}
.wsd1{word-spacing:13.342003px;}
.wsd3{word-spacing:13.388602px;}
.wsf9{word-spacing:13.389485px;}
.wsdd{word-spacing:13.389734px;}
.wsd6{word-spacing:13.390358px;}
.wsc9{word-spacing:13.390810px;}
.wsea{word-spacing:13.392230px;}
.wsda{word-spacing:13.392336px;}
.wscb{word-spacing:13.393373px;}
.wsc8{word-spacing:13.393498px;}
.wsf1{word-spacing:13.394726px;}
.wsc5{word-spacing:13.395802px;}
.wse5{word-spacing:13.449600px;}
.wscd{word-spacing:13.503398px;}
.wsf2{word-spacing:13.557197px;}
.ws30{word-spacing:14.776565px;}
.ws7e{word-spacing:14.884124px;}
.ws8{word-spacing:16.109478px;}
.wsc7{word-spacing:16.300915px;}
.wsd5{word-spacing:16.615046px;}
.wsd8{word-spacing:16.615104px;}
.wsd4{word-spacing:16.616957px;}
.wsf3{word-spacing:16.617293px;}
.wsef{word-spacing:16.618742px;}
.wsca{word-spacing:16.619616px;}
.wse3{word-spacing:16.619789px;}
.wsf7{word-spacing:16.621373px;}
.wsf5{word-spacing:16.621459px;}
.wsec{word-spacing:16.623504px;}
.wsd0{word-spacing:16.623706px;}
.wscc{word-spacing:16.785101px;}
.wsdf{word-spacing:16.838899px;}
.wsd7{word-spacing:16.892698px;}
.wsdc{word-spacing:16.946496px;}
.wse8{word-spacing:18.560448px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.wse1{word-spacing:31.956250px;}
.wse{word-spacing:40.042186px;}
.ws92{word-spacing:65.688748px;}
.wsba{word-spacing:116.086266px;}
.wsc0{word-spacing:166.003187px;}
.ws7c{word-spacing:172.908058px;}
.wsbb{word-spacing:287.596358px;}
.ws82{word-spacing:314.783384px;}
.wsb8{word-spacing:336.416112px;}
.ws83{word-spacing:357.463040px;}
.ws8e{word-spacing:357.504883px;}
.wsb9{word-spacing:379.095768px;}
.wsbc{word-spacing:400.686653px;}
.wsbe{word-spacing:568.476236px;}
.wsc3{word-spacing:592.874941px;}
.wsc2{word-spacing:595.743118px;}
.wsc1{word-spacing:599.316236px;}
.ws90{word-spacing:642.516236px;}
.wsbd{word-spacing:645.326554px;}
.ws84{word-spacing:653.310236px;}
.ws81{word-spacing:1247.166497px;}
.ws8d{word-spacing:1257.961939px;}
.ws87{word-spacing:1270.556622px;}
.wsb7{word-spacing:1279.552824px;}
.ws93{word-spacing:1281.352064px;}
.wsc4{word-spacing:1288.716397px;}
.wsbf{word-spacing:1288.758240px;}
._7{margin-left:-7.962163px;}
._a{margin-left:-6.445318px;}
._0{margin-left:-4.644551px;}
._1{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._3b{width:1.132430px;}
._8{width:3.002363px;}
._19{width:4.303843px;}
._3c{width:9.433567px;}
._4{width:10.460700px;}
._d{width:11.728051px;}
._3{width:12.973405px;}
._14{width:14.664502px;}
._b{width:16.516109px;}
._12{width:17.753353px;}
._c{width:18.829440px;}
._11{width:20.503031px;}
._e{width:22.116972px;}
._72{width:23.312484px;}
._f{width:24.519947px;}
._5{width:25.950018px;}
._13{width:27.197898px;}
._17{width:28.692288px;}
._6{width:30.587087px;}
._94{width:31.764745px;}
._b1{width:32.822462px;}
._18{width:34.550297px;}
._95{width:36.953272px;}
._1a{width:38.674813px;}
._10{width:40.121378px;}
._1b{width:46.086988px;}
._9{width:54.400717px;}
._b2{width:61.868160px;}
._68{width:74.102646px;}
._b0{width:88.767360px;}
._56{width:92.181857px;}
._63{width:103.222228px;}
._9e{width:104.944602px;}
._7a{width:109.100965px;}
._3f{width:110.462140px;}
._40{width:111.636906px;}
._41{width:113.976252px;}
._57{width:120.693676px;}
._45{width:122.422387px;}
._74{width:124.760082px;}
._55{width:126.972215px;}
._4f{width:130.591379px;}
._42{width:132.033948px;}
._4e{width:133.750736px;}
._44{width:135.549524px;}
._5d{width:137.862587px;}
._5b{width:140.822183px;}
._77{width:141.945448px;}
._59{width:144.273988px;}
._53{width:146.386810px;}
._50{width:148.604465px;}
._52{width:152.703605px;}
._43{width:154.869634px;}
._5c{width:156.659443px;}
._7b{width:159.288926px;}
._78{width:163.465747px;}
._5a{width:166.072279px;}
._24{width:167.528218px;}
._51{width:170.184780px;}
._9b{width:173.759714px;}
._8d{width:177.873743px;}
._23{width:181.031616px;}
._22{width:194.481216px;}
._1d{width:204.451808px;}
._30{width:207.930816px;}
._9a{width:211.347983px;}
._7c{width:212.394053px;}
._97{width:217.715651px;}
._2b{width:221.326618px;}
._58{width:223.189495px;}
._27{width:226.222272px;}
._2a{width:234.830016px;}
._26{width:238.488307px;}
._29{width:248.279616px;}
._20{width:252.074170px;}
._33{width:253.910273px;}
._79{width:259.006932px;}
._1f{width:265.530970px;}
._54{width:269.802374px;}
._1c{width:275.985792px;}
._76{width:280.221232px;}
._4d{width:291.058517px;}
._1e{width:300.894451px;}
._99{width:325.034870px;}
._48{width:335.220988px;}
._47{width:346.918655px;}
._75{width:358.481678px;}
._98{width:367.541946px;}
._46{width:368.909651px;}
._4c{width:378.719183px;}
._4a{width:389.598311px;}
._49{width:400.644810px;}
._4b{width:411.147353px;}
._39{width:427.697280px;}
._15{width:431.580915px;}
._ad{width:513.683476px;}
._82{width:524.067934px;}
._83{width:529.834168px;}
._88{width:534.050230px;}
._67{width:541.039336px;}
._8f{width:543.578423px;}
._9f{width:545.276646px;}
._62{width:554.901934px;}
._a7{width:562.613992px;}
._81{width:565.001276px;}
._80{width:571.994521px;}
._a0{width:576.346266px;}
._86{width:578.135148px;}
._8a{width:582.232606px;}
._61{width:588.896077px;}
._66{width:593.435285px;}
._a6{width:594.900706px;}
._8c{width:597.494036px;}
._38{width:600.766733px;}
._a8{width:605.736446px;}
._a3{width:610.497054px;}
._ae{width:611.867264px;}
._a5{width:615.423902px;}
._a4{width:623.164820px;}
._8e{width:638.094706px;}
._37{width:640.846541px;}
._6b{width:648.900706px;}
._34{width:650.637850px;}
._a2{width:655.676676px;}
._2c{width:660.042079px;}
._8b{width:662.706266px;}
._87{width:666.346590px;}
._2d{width:670.704653px;}
._6a{width:673.501709px;}
._31{width:677.268058px;}
._35{width:679.473792px;}
._6c{width:680.782356px;}
._89{width:697.645004px;}
._85{width:702.959040px;}
._69{width:708.482290px;}
._65{width:713.754482px;}
._7f{width:715.930308px;}
._32{width:721.328947px;}
._60{width:730.826345px;}
._2f{width:733.971571px;}
._25{width:737.522266px;}
._9c{width:751.789588px;}
._2e{width:761.139763px;}
._a1{width:786.979382px;}
._21{width:789.814310px;}
._7d{width:794.971357px;}
._28{width:804.770266px;}
._5e{width:805.808642px;}
._7e{width:819.072810px;}
._5f{width:829.868252px;}
._84{width:831.024520px;}
._36{width:834.951168px;}
._64{width:840.956594px;}
._9d{width:851.500980px;}
._71{width:1043.643118px;}
._92{width:1071.928850px;}
._70{width:1080.130039px;}
._ac{width:1098.146362px;}
._af{width:1101.762767px;}
._ab{width:1111.010026px;}
._91{width:1181.222244px;}
._6f{width:1192.059529px;}
._aa{width:1194.611940px;}
._3e{width:1285.159759px;}
._90{width:1299.177097px;}
._6d{width:1309.972540px;}
._6e{width:1313.445492px;}
._96{width:1328.383372px;}
._a9{width:1334.994534px;}
._3a{width:1525.520513px;}
._93{width:2008.332616px;}
._16{width:2032.242616px;}
._73{width:3486.312616px;}
._3d{width:3510.222616px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(40,82,46);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs10{font-size:43.600200px;}
.fsc{font-size:45.348000px;}
.fs5{font-size:45.429600px;}
.fsb{font-size:47.337600px;}
.fs7{font-size:47.820600px;}
.fse{font-size:50.760000px;}
.fs8{font-size:53.798400px;}
.fs9{font-size:56.058000px;}
.fsd{font-size:56.178000px;}
.fs1{font-size:56.694600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:60.474240px;}
.fsa{font-size:62.286600px;}
.fs4{font-size:107.596800px;}
.yec{bottom:-685.791196px;}
.yf9{bottom:-615.049050px;}
.yf8{bottom:-597.044001px;}
.yf7{bottom:-578.856374px;}
.yf6{bottom:-560.865369px;}
.yf5{bottom:-542.860320px;}
.yf4{bottom:-524.686737px;}
.yf3{bottom:-506.681688px;}
.yf2{bottom:-488.494060px;}
.yf1{bottom:-466.359928px;}
.yf0{bottom:-431.816070px;}
.yef{bottom:-410.743708px;}
.yfe{bottom:-286.519697px;}
.y10b{bottom:-215.777550px;}
.y10a{bottom:-197.772501px;}
.y109{bottom:-179.584874px;}
.y108{bottom:-161.593869px;}
.y107{bottom:-143.588820px;}
.y106{bottom:-125.415237px;}
.y105{bottom:-107.410188px;}
.y104{bottom:-89.222560px;}
.y103{bottom:-67.088428px;}
.yee{bottom:-41.230560px;}
.y102{bottom:-32.544570px;}
.yed{bottom:-11.535960px;}
.y101{bottom:-11.472209px;}
.y0{bottom:0.000000px;}
.y1c{bottom:6.350457px;}
.y1b{bottom:20.308195px;}
.y4b{bottom:31.890000px;}
.y1a{bottom:37.114269px;}
.yb7{bottom:103.158000px;}
.y4a{bottom:103.621500px;}
.y18{bottom:104.646000px;}
.y2ac{bottom:107.491500px;}
.y82{bottom:107.641500px;}
.y1d7{bottom:113.431500px;}
.y1a3{bottom:117.802500px;}
.yb6{bottom:121.987500px;}
.y49{bottom:122.449500px;}
.y17{bottom:122.535000px;}
.y2ab{bottom:124.752000px;}
.yca{bottom:126.022500px;}
.y81{bottom:126.471000px;}
.y275{bottom:129.235500px;}
.y1d6{bottom:131.476500px;}
.y1a2{bottom:136.632000px;}
.y16{bottom:140.422500px;}
.yb5{bottom:140.817000px;}
.y48{bottom:141.279000px;}
.y2aa{bottom:142.012500px;}
.yc9{bottom:144.852000px;}
.y80{bottom:145.300500px;}
.y274{bottom:146.496000px;}
.y1d5{bottom:149.521500px;}
.y1a1{bottom:155.461500px;}
.y15{bottom:158.310000px;}
.y2a9{bottom:159.273000px;}
.yb4{bottom:159.646500px;}
.y47{bottom:160.108500px;}
.yc8{bottom:163.681500px;}
.yfa{bottom:163.690500px;}
.y273{bottom:163.756500px;}
.y7f{bottom:164.130000px;}
.y1a0{bottom:174.291000px;}
.y14{bottom:176.199000px;}
.y2a8{bottom:176.533500px;}
.yb3{bottom:178.476000px;}
.y46{bottom:178.938000px;}
.y272{bottom:181.015500px;}
.yc7{bottom:182.511000px;}
.y7e{bottom:182.959500px;}
.y1d4{bottom:185.499000px;}
.ye9{bottom:186.120000px;}
.y19f{bottom:193.120500px;}
.y2a7{bottom:193.794000px;}
.y13{bottom:194.086500px;}
.yb2{bottom:197.305500px;}
.y45{bottom:197.767500px;}
.y271{bottom:198.276000px;}
.y129{bottom:200.856000px;}
.yc6{bottom:201.340500px;}
.y7d{bottom:201.789000px;}
.y1d3{bottom:204.328500px;}
.y2a6{bottom:211.053000px;}
.y19e{bottom:211.950000px;}
.y12{bottom:211.974000px;}
.y270{bottom:215.536500px;}
.yb1{bottom:216.135000px;}
.y44{bottom:216.597000px;}
.y128{bottom:219.685500px;}
.yc5{bottom:220.170000px;}
.y7c{bottom:220.618500px;}
.y1d2{bottom:223.158000px;}
.y2a5{bottom:228.313500px;}
.y11{bottom:229.863000px;}
.y19d{bottom:230.779500px;}
.y26f{bottom:232.797000px;}
.yb0{bottom:234.964500px;}
.y43{bottom:235.426500px;}
.y127{bottom:238.515000px;}
.yc4{bottom:238.999500px;}
.y7b{bottom:239.446500px;}
.y1d1{bottom:241.987500px;}
.y2a4{bottom:245.574000px;}
.y19c{bottom:249.609000px;}
.y26e{bottom:250.057500px;}
.yaf{bottom:253.794000px;}
.y42{bottom:254.256000px;}
.y126{bottom:257.344500px;}
.yc3{bottom:257.829000px;}
.y7a{bottom:258.276000px;}
.y1d0{bottom:260.817000px;}
.y2a3{bottom:262.834500px;}
.y26d{bottom:267.318000px;}
.y19b{bottom:268.438500px;}
.y21a{bottom:271.234500px;}
.yae{bottom:272.623500px;}
.y41{bottom:273.085500px;}
.y125{bottom:276.174000px;}
.yc2{bottom:276.658500px;}
.y79{bottom:277.105500px;}
.y1cf{bottom:279.646500px;}
.y2a2{bottom:280.095000px;}
.y26c{bottom:284.578500px;}
.y219{bottom:285.430500px;}
.y19a{bottom:287.268000px;}
.yad{bottom:291.453000px;}
.y40{bottom:291.915000px;}
.y124{bottom:295.003500px;}
.yc1{bottom:295.488000px;}
.y78{bottom:295.935000px;}
.y10{bottom:297.166500px;}
.y2a1{bottom:297.355500px;}
.y23d{bottom:300.793500px;}
.y26b{bottom:301.839000px;}
.y1ce{bottom:302.959500px;}
.y218{bottom:305.919000px;}
.y199{bottom:306.097500px;}
.yac{bottom:310.282500px;}
.y3f{bottom:310.744500px;}
.y123{bottom:313.833000px;}
.yc0{bottom:314.317500px;}
.y2a0{bottom:314.616000px;}
.y77{bottom:314.764500px;}
.y23c{bottom:314.989500px;}
.yf{bottom:315.054000px;}
.y217{bottom:317.874000px;}
.y269{bottom:319.098000px;}
.y26a{bottom:319.099500px;}
.y198{bottom:324.927000px;}
.yab{bottom:329.112000px;}
.y3e{bottom:329.574000px;}
.y216{bottom:329.829000px;}
.y29f{bottom:331.876500px;}
.y122{bottom:332.662500px;}
.ye{bottom:332.943000px;}
.ybf{bottom:333.145500px;}
.y76{bottom:333.594000px;}
.y23b{bottom:335.478000px;}
.y268{bottom:336.358500px;}
.y1cd{bottom:336.583500px;}
.y215{bottom:341.784000px;}
.y197{bottom:343.756500px;}
.y148{bottom:345.625500px;}
.y23a{bottom:347.433000px;}
.yaa{bottom:347.940000px;}
.y3d{bottom:348.403500px;}
.y29e{bottom:349.135500px;}
.yd{bottom:350.830500px;}
.y121{bottom:351.492000px;}
.ybe{bottom:351.975000px;}
.y75{bottom:352.423500px;}
.y267{bottom:353.619000px;}
.y214{bottom:353.739000px;}
.y1cc{bottom:355.413000px;}
.y100{bottom:358.040940px;}
.y239{bottom:359.388000px;}
.y147{bottom:359.821500px;}
.y196{bottom:362.586000px;}
.y213{bottom:365.694000px;}
.y29d{bottom:366.396000px;}
.ya9{bottom:366.769500px;}
.y3c{bottom:367.233000px;}
.y120{bottom:370.321500px;}
.ybd{bottom:370.804500px;}
.y266{bottom:370.879500px;}
.y74{bottom:371.253000px;}
.y238{bottom:371.343000px;}
.y1cb{bottom:374.242500px;}
.y212{bottom:377.649000px;}
.yc{bottom:379.179000px;}
.y146{bottom:380.310000px;}
.yeb{bottom:380.366526px;}
.y195{bottom:381.415500px;}
.y237{bottom:383.298000px;}
.y29c{bottom:383.656500px;}
.ya8{bottom:385.599000px;}
.y170{bottom:385.899000px;}
.y3b{bottom:386.062500px;}
.yff{bottom:387.735540px;}
.y265{bottom:388.140000px;}
.y11f{bottom:389.151000px;}
.yea{bottom:389.368104px;}
.y211{bottom:389.604000px;}
.ybc{bottom:389.634000px;}
.y73{bottom:390.082500px;}
.y145{bottom:392.265000px;}
.y1ca{bottom:393.072000px;}
.y236{bottom:395.253000px;}
.yb{bottom:397.066500px;}
.y194{bottom:400.245000px;}
.y29b{bottom:400.917000px;}
.y210{bottom:401.560500px;}
.y144{bottom:404.220000px;}
.ya7{bottom:404.428500px;}
.y16f{bottom:404.728500px;}
.y3a{bottom:404.892000px;}
.y264{bottom:405.400500px;}
.y235{bottom:407.208000px;}
.y11e{bottom:407.980500px;}
.ybb{bottom:408.463500px;}
.y72{bottom:408.912000px;}
.y1c9{bottom:411.901500px;}
.y20f{bottom:413.515500px;}
.ya{bottom:414.955500px;}
.y143{bottom:416.175000px;}
.y29a{bottom:418.177500px;}
.y193{bottom:419.074500px;}
.y234{bottom:419.164500px;}
.y263{bottom:422.661000px;}
.ya6{bottom:423.258000px;}
.y16e{bottom:423.558000px;}
.y39{bottom:423.721500px;}
.y20e{bottom:425.470500px;}
.y11d{bottom:426.810000px;}
.yba{bottom:427.293000px;}
.y71{bottom:427.741500px;}
.y142{bottom:428.130000px;}
.y1c8{bottom:430.731000px;}
.y233{bottom:431.119500px;}
.y9{bottom:432.843000px;}
.y299{bottom:435.438000px;}
.y20d{bottom:437.425500px;}
.y192{bottom:437.904000px;}
.y262{bottom:439.921500px;}
.y141{bottom:440.085000px;}
.ya5{bottom:442.087500px;}
.y16d{bottom:442.387500px;}
.y38{bottom:442.551000px;}
.y232{bottom:443.074500px;}
.y11c{bottom:445.639500px;}
.y70{bottom:446.571000px;}
.y20c{bottom:449.380500px;}
.y1c7{bottom:449.560500px;}
.yb9{bottom:450.606000px;}
.y140{bottom:452.040000px;}
.y298{bottom:452.698500px;}
.y231{bottom:455.029500px;}
.y191{bottom:456.733500px;}
.y261{bottom:457.182000px;}
.y8{bottom:459.697500px;}
.ya4{bottom:460.917000px;}
.y16c{bottom:461.217000px;}
.y20b{bottom:461.335500px;}
.y13f{bottom:463.995000px;}
.y11b{bottom:464.469000px;}
.y6f{bottom:465.400500px;}
.y37{bottom:465.864000px;}
.y230{bottom:466.984500px;}
.y1c6{bottom:468.390000px;}
.y297{bottom:469.959000px;}
.y20a{bottom:473.290500px;}
.y260{bottom:474.441000px;}
.y190{bottom:475.563000px;}
.y13e{bottom:475.951500px;}
.y7{bottom:477.585000px;}
.y22f{bottom:478.939500px;}
.ya3{bottom:479.746500px;}
.y16b{bottom:480.045000px;}
.y11a{bottom:483.298500px;}
.y6e{bottom:484.230000px;}
.y209{bottom:485.245500px;}
.y1c5{bottom:487.219500px;}
.y13d{bottom:487.906500px;}
.y22e{bottom:490.894500px;}
.y25f{bottom:491.701500px;}
.y18f{bottom:494.392500px;}
.y6{bottom:495.474000px;}
.y208{bottom:497.200500px;}
.ya2{bottom:498.576000px;}
.y16a{bottom:498.874500px;}
.y119{bottom:502.128000px;}
.y22d{bottom:502.849500px;}
.y6d{bottom:503.059500px;}
.y296{bottom:504.478500px;}
.y1c4{bottom:506.049000px;}
.y25e{bottom:508.962000px;}
.y207{bottom:509.157000px;}
.y1f6{bottom:509.994000px;}
.y13c{bottom:511.816500px;}
.y18e{bottom:513.222000px;}
.y5{bottom:513.361500px;}
.y22c{bottom:514.804500px;}
.ya1{bottom:517.405500px;}
.y169{bottom:517.704000px;}
.y118{bottom:520.957500px;}
.y206{bottom:521.112000px;}
.y295{bottom:521.739000px;}
.y6c{bottom:521.889000px;}
.y13b{bottom:523.771500px;}
.y1c3{bottom:524.877000px;}
.y25d{bottom:526.222500px;}
.y22b{bottom:526.761000px;}
.y1f5{bottom:527.568000px;}
.y4{bottom:531.249000px;}
.y18d{bottom:532.051500px;}
.y205{bottom:533.067000px;}
.y13a{bottom:535.726500px;}
.ya0{bottom:536.235000px;}
.y168{bottom:536.533500px;}
.y22a{bottom:538.716000px;}
.y294{bottom:538.999500px;}
.y117{bottom:539.787000px;}
.y6b{bottom:540.718500px;}
.y36{bottom:541.014000px;}
.y25c{bottom:543.483000px;}
.y1c2{bottom:543.706500px;}
.y204{bottom:545.022000px;}
.y1f4{bottom:545.142000px;}
.y139{bottom:547.681500px;}
.y3{bottom:549.138000px;}
.y229{bottom:550.671000px;}
.y18c{bottom:550.881000px;}
.ye8{bottom:553.395000px;}
.y9f{bottom:555.064500px;}
.y167{bottom:555.363000px;}
.y293{bottom:556.260000px;}
.y203{bottom:556.977000px;}
.y116{bottom:558.616500px;}
.y6a{bottom:559.548000px;}
.y138{bottom:559.636500px;}
.y25b{bottom:560.743500px;}
.y1c1{bottom:562.536000px;}
.y228{bottom:562.626000px;}
.y2{bottom:567.025500px;}
.y202{bottom:568.932000px;}
.y18b{bottom:569.710500px;}
.y137{bottom:571.593000px;}
.y1f3{bottom:571.683000px;}
.ye7{bottom:572.224500px;}
.y292{bottom:573.520500px;}
.y9e{bottom:573.894000px;}
.y166{bottom:574.192500px;}
.y227{bottom:574.581000px;}
.y115{bottom:577.446000px;}
.y25a{bottom:578.004000px;}
.y69{bottom:578.377500px;}
.y35{bottom:578.403000px;}
.y201{bottom:580.887000px;}
.y1c0{bottom:581.365500px;}
.y136{bottom:583.548000px;}
.y1{bottom:584.913000px;}
.y226{bottom:586.536000px;}
.y18a{bottom:588.538500px;}
.y1f2{bottom:589.257000px;}
.y291{bottom:590.781000px;}
.y9d{bottom:592.723500px;}
.y200{bottom:592.842000px;}
.y165{bottom:593.022000px;}
.y259{bottom:595.264500px;}
.y135{bottom:595.503000px;}
.y114{bottom:596.275500px;}
.y68{bottom:597.207000px;}
.y34{bottom:597.861000px;}
.y225{bottom:598.491000px;}
.y1bf{bottom:600.195000px;}
.y1ff{bottom:604.797000px;}
.y189{bottom:607.368000px;}
.y134{bottom:607.458000px;}
.y290{bottom:608.041500px;}
.y224{bottom:610.446000px;}
.y9c{bottom:611.553000px;}
.y164{bottom:611.851500px;}
.y258{bottom:612.525000px;}
.y113{bottom:615.105000px;}
.y1f1{bottom:615.798000px;}
.y67{bottom:616.036500px;}
.y33{bottom:617.317500px;}
.y1be{bottom:619.024500px;}
.y133{bottom:619.413000px;}
.ye6{bottom:620.676000px;}
.y223{bottom:622.401000px;}
.y1fe{bottom:624.562500px;}
.y28f{bottom:625.302000px;}
.y188{bottom:626.197500px;}
.y257{bottom:629.784000px;}
.y9b{bottom:630.382500px;}
.y163{bottom:630.681000px;}
.y132{bottom:631.368000px;}
.y1f0{bottom:633.372000px;}
.y112{bottom:633.934500px;}
.y222{bottom:634.357500px;}
.y66{bottom:634.866000px;}
.y1fb{bottom:636.046500px;}
.y32{bottom:636.774000px;}
.ye5{bottom:637.114500px;}
.y1bd{bottom:637.854000px;}
.y28e{bottom:642.561000px;}
.y131{bottom:643.323000px;}
.y1fd{bottom:643.719000px;}
.y187{bottom:645.027000px;}
.y256{bottom:647.044500px;}
.y1fa{bottom:648.001500px;}
.y9a{bottom:649.212000px;}
.y162{bottom:649.510500px;}
.y1ef{bottom:650.946000px;}
.y111{bottom:652.762500px;}
.ye4{bottom:653.553000px;}
.y65{bottom:653.695500px;}
.y221{bottom:654.121500px;}
.y31{bottom:656.232000px;}
.y1bc{bottom:656.683500px;}
.y28d{bottom:659.821500px;}
.y1fc{bottom:662.877000px;}
.y130{bottom:663.087000px;}
.y186{bottom:663.856500px;}
.y255{bottom:664.305000px;}
.y21e{bottom:665.605500px;}
.y99{bottom:668.041500px;}
.y161{bottom:668.340000px;}
.y1ee{bottom:668.520000px;}
.ye3{bottom:669.991500px;}
.y110{bottom:671.592000px;}
.y64{bottom:672.525000px;}
.y220{bottom:673.278000px;}
.y1bb{bottom:675.513000px;}
.y30{bottom:675.688500px;}
.y28c{bottom:677.082000px;}
.y21d{bottom:677.560500px;}
.y12d{bottom:680.773500px;}
.y254{bottom:681.565500px;}
.y12f{bottom:682.245000px;}
.y185{bottom:682.686000px;}
.y1ed{bottom:686.094000px;}
.ye2{bottom:686.428500px;}
.y98{bottom:686.871000px;}
.y160{bottom:687.169500px;}
.y10f{bottom:690.421500px;}
.y63{bottom:691.354500px;}
.y1f9{bottom:691.357500px;}
.y21f{bottom:692.436000px;}
.y1ba{bottom:694.342500px;}
.y2f{bottom:695.145000px;}
.y253{bottom:698.826000px;}
.y12e{bottom:701.403000px;}
.y184{bottom:701.515500px;}
.ye1{bottom:702.867000px;}
.y1ec{bottom:703.668000px;}
.y97{bottom:705.700500px;}
.y15f{bottom:705.999000px;}
.y10e{bottom:709.251000px;}
.y62{bottom:710.184000px;}
.y1f8{bottom:710.590500px;}
.y28b{bottom:711.603000px;}
.y1b9{bottom:713.172000px;}
.y2e{bottom:714.603000px;}
.y252{bottom:716.086500px;}
.ye0{bottom:719.305500px;}
.y183{bottom:720.345000px;}
.y21c{bottom:720.918000px;}
.y96{bottom:724.530000px;}
.y15e{bottom:724.828500px;}
.y28a{bottom:728.863500px;}
.y61{bottom:729.013500px;}
.y12c{bottom:729.883500px;}
.y1eb{bottom:730.209000px;}
.y1b8{bottom:732.001500px;}
.y10d{bottom:732.564000px;}
.y251{bottom:733.347000px;}
.y2d{bottom:734.059500px;}
.ydf{bottom:735.744000px;}
.y182{bottom:739.174500px;}
.y21b{bottom:740.151000px;}
.y95{bottom:743.359500px;}
.y15d{bottom:743.658000px;}
.y289{bottom:746.124000px;}
.y1f7{bottom:747.636000px;}
.y1ea{bottom:747.783000px;}
.y60{bottom:747.843000px;}
.y12b{bottom:749.116500px;}
.y250{bottom:750.607500px;}
.y1b7{bottom:750.831000px;}
.yde{bottom:752.182500px;}
.y2c{bottom:753.517500px;}
.y181{bottom:758.004000px;}
.y94{bottom:762.189000px;}
.y15c{bottom:762.487500px;}
.y10c{bottom:762.991500px;}
.y288{bottom:763.384500px;}
.y5f{bottom:766.671000px;}
.y24f{bottom:767.866500px;}
.ydd{bottom:768.621000px;}
.y1b6{bottom:769.660500px;}
.y2b{bottom:772.974000px;}
.y1e9{bottom:774.324000px;}
.y180{bottom:776.833500px;}
.yfd{bottom:779.638026px;}
.y287{bottom:780.645000px;}
.y93{bottom:781.018500px;}
.y15b{bottom:781.317000px;}
.ydc{bottom:785.059500px;}
.y24e{bottom:785.127000px;}
.yfb{bottom:785.421000px;}
.y5e{bottom:785.500500px;}
.y1b5{bottom:788.490000px;}
.yfc{bottom:788.639604px;}
.y1e8{bottom:791.898000px;}
.y2a{bottom:792.430500px;}
.y17f{bottom:795.663000px;}
.y286{bottom:797.904000px;}
.y92{bottom:799.848000px;}
.y15a{bottom:800.146500px;}
.y12a{bottom:801.433500px;}
.ydb{bottom:801.498000px;}
.y24d{bottom:802.387500px;}
.y5d{bottom:804.330000px;}
.y1b4{bottom:807.319500px;}
.y1e7{bottom:809.472000px;}
.y29{bottom:811.888500px;}
.y285{bottom:815.164500px;}
.yda{bottom:817.936500px;}
.y91{bottom:818.677500px;}
.y159{bottom:818.976000px;}
.y24c{bottom:819.648000px;}
.y5c{bottom:823.159500px;}
.y1b3{bottom:826.149000px;}
.y1e6{bottom:827.046000px;}
.y28{bottom:831.345000px;}
.y284{bottom:832.425000px;}
.yd9{bottom:834.375000px;}
.y24b{bottom:836.908500px;}
.y90{bottom:837.507000px;}
.y5b{bottom:841.989000px;}
.y158{bottom:842.289000px;}
.y1e5{bottom:844.620000px;}
.y1b2{bottom:844.978500px;}
.y2ae{bottom:845.127000px;}
.y283{bottom:849.685500px;}
.yd8{bottom:850.812000px;}
.y17e{bottom:852.600000px;}
.y24a{bottom:854.169000px;}
.y8f{bottom:856.335000px;}
.y157{bottom:857.979000px;}
.y5a{bottom:860.818500px;}
.y1e4{bottom:862.194000px;}
.y2ad{bottom:862.387500px;}
.y1b1{bottom:863.808000px;}
.y282{bottom:866.946000px;}
.yd7{bottom:867.250500px;}
.y27{bottom:867.307500px;}
.y17d{bottom:871.429500px;}
.y8e{bottom:875.164500px;}
.y59{bottom:879.648000px;}
.y1b0{bottom:882.637500px;}
.y26{bottom:883.447500px;}
.yd6{bottom:883.689000px;}
.y281{bottom:884.206500px;}
.y249{bottom:888.690000px;}
.y1e3{bottom:888.735000px;}
.y17c{bottom:890.259000px;}
.y156{bottom:891.603000px;}
.y8d{bottom:893.994000px;}
.y58{bottom:898.477500px;}
.y25{bottom:899.587500px;}
.yd5{bottom:900.127500px;}
.y1af{bottom:901.467000px;}
.y24{bottom:903.927000px;}
.y248{bottom:905.950500px;}
.y1e2{bottom:906.309000px;}
.y17b{bottom:909.088500px;}
.y155{bottom:910.432500px;}
.y8c{bottom:912.823500px;}
.yd4{bottom:916.566000px;}
.y57{bottom:917.307000px;}
.y280{bottom:918.727500px;}
.y23{bottom:920.067000px;}
.y1ae{bottom:920.296500px;}
.y247{bottom:923.209500px;}
.y1e1{bottom:923.883000px;}
.y17a{bottom:927.918000px;}
.y154{bottom:929.262000px;}
.y8b{bottom:931.653000px;}
.yd3{bottom:933.004500px;}
.y27f{bottom:935.986500px;}
.y56{bottom:936.136500px;}
.y22{bottom:936.205500px;}
.y1ad{bottom:939.126000px;}
.y246{bottom:940.470000px;}
.y1e0{bottom:941.457000px;}
.y179{bottom:946.747500px;}
.y153{bottom:948.091500px;}
.yd2{bottom:949.443000px;}
.y8a{bottom:950.482500px;}
.y27e{bottom:953.247000px;}
.y55{bottom:954.966000px;}
.y245{bottom:957.730500px;}
.y1ac{bottom:957.955500px;}
.y1df{bottom:959.031000px;}
.y178{bottom:965.577000px;}
.yd1{bottom:965.881500px;}
.y152{bottom:966.921000px;}
.y89{bottom:969.312000px;}
.y27d{bottom:970.507500px;}
.y54{bottom:973.795500px;}
.y244{bottom:974.991000px;}
.y1de{bottom:976.605000px;}
.y1ab{bottom:976.785000px;}
.y21{bottom:978.259500px;}
.yd0{bottom:982.320000px;}
.y177{bottom:984.406500px;}
.y151{bottom:985.750500px;}
.y27c{bottom:987.768000px;}
.y88{bottom:988.141500px;}
.y243{bottom:992.251500px;}
.y53{bottom:992.625000px;}
.y1aa{bottom:995.614500px;}
.y20{bottom:997.089000px;}
.y1dd{bottom:1003.146000px;}
.y176{bottom:1003.236000px;}
.y150{bottom:1004.580000px;}
.y27b{bottom:1005.028500px;}
.ycf{bottom:1005.960000px;}
.y87{bottom:1006.971000px;}
.y242{bottom:1009.512000px;}
.y52{bottom:1011.454500px;}
.y1a9{bottom:1014.444000px;}
.y1dc{bottom:1020.720000px;}
.y175{bottom:1022.064000px;}
.y27a{bottom:1022.289000px;}
.y14f{bottom:1023.409500px;}
.y86{bottom:1025.800500px;}
.y241{bottom:1026.772500px;}
.yce{bottom:1029.601500px;}
.y51{bottom:1030.284000px;}
.y1a8{bottom:1033.272000px;}
.y1f{bottom:1037.008500px;}
.y1db{bottom:1038.294000px;}
.y279{bottom:1039.549500px;}
.y174{bottom:1040.893500px;}
.y14e{bottom:1042.239000px;}
.y240{bottom:1044.033000px;}
.y85{bottom:1044.630000px;}
.y50{bottom:1049.113500px;}
.y1a7{bottom:1052.101500px;}
.ycd{bottom:1053.241500px;}
.y1da{bottom:1055.868000px;}
.y278{bottom:1056.810000px;}
.y173{bottom:1059.723000px;}
.y14d{bottom:1061.068500px;}
.y23f{bottom:1061.292000px;}
.y84{bottom:1063.459500px;}
.y1e{bottom:1065.253500px;}
.y4f{bottom:1067.943000px;}
.y1a6{bottom:1070.931000px;}
.y1d9{bottom:1073.442000px;}
.y277{bottom:1074.070500px;}
.y172{bottom:1078.552500px;}
.y14c{bottom:1079.898000px;}
.y83{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.ycc{bottom:1087.849500px;}
.y1a5{bottom:1089.760500px;}
.y1d8{bottom:1091.016000px;}
.y276{bottom:1091.329500px;}
.y1d{bottom:1093.497000px;}
.y23e{bottom:1095.813000px;}
.y14b{bottom:1098.727500px;}
.y171{bottom:1101.865500px;}
.y4d{bottom:1105.602000px;}
.ycb{bottom:1107.082500px;}
.y1a4{bottom:1108.590000px;}
.yb8{bottom:1111.026000px;}
.y14a{bottom:1117.557000px;}
.y19{bottom:1136.983500px;}
.y4c{bottom:1168.366500px;}
.y149{bottom:1171.354500px;}
.hd{height:27.524478px;}
.h1b{height:30.252344px;}
.h10{height:30.582721px;}
.h9{height:31.131341px;}
.h2{height:36.319550px;}
.h15{height:37.376016px;}
.hb{height:38.896243px;}
.h4{height:39.402747px;}
.h11{height:39.432893px;}
.h17{height:40.432799px;}
.h13{height:40.498775px;}
.h5{height:41.001535px;}
.h1e{height:41.128610px;}
.h1c{height:41.134610px;}
.ha{height:41.508281px;}
.he{height:43.217759px;}
.h6{height:43.815515px;}
.h16{height:45.332051px;}
.hc{height:46.697011px;}
.h14{height:50.170685px;}
.h3{height:50.931027px;}
.hf{height:51.885221px;}
.h8{height:54.547601px;}
.h1d{height:60.229550px;}
.h7{height:77.792486px;}
.h18{height:335.125500px;}
.h12{height:343.635000px;}
.h19{height:892.914000px;}
.h1a{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w4{width:465.381000px;}
.w3{width:473.889000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w5{width:1262.835000px;}
.w6{width:1263.000000px;}
.x70{left:-191.813378px;}
.x72{left:-7.864525px;}
.x0{left:0.000000px;}
.x74{left:22.196166px;}
.x1{left:53.574000px;}
.x2{left:59.014071px;}
.x6e{left:62.541000px;}
.xa3{left:68.776500px;}
.x8b{left:72.606000px;}
.xa6{left:74.064000px;}
.x79{left:75.175500px;}
.xaa{left:76.558500px;}
.xa8{left:79.389000px;}
.xa7{left:80.470500px;}
.xa9{left:85.486500px;}
.xa4{left:87.307500px;}
.x6f{left:89.440500px;}
.x93{left:91.869000px;}
.x80{left:92.964000px;}
.x84{left:95.458500px;}
.x90{left:96.670500px;}
.x82{left:98.289000px;}
.x81{left:99.370500px;}
.x92{left:101.686500px;}
.x8f{left:102.744000px;}
.x83{left:104.386500px;}
.x7f{left:105.444000px;}
.x91{left:107.089500px;}
.x7d{left:108.163500px;}
.x7e{left:109.926000px;}
.x94{left:112.638000px;}
.x85{left:115.339500px;}
.xa5{left:167.382000px;}
.x8e{left:199.780500px;}
.x7c{left:205.182000px;}
.xb1{left:238.488000px;}
.x4f{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x4{left:269.748000px;}
.xd{left:281.479500px;}
.x39{left:294.204000px;}
.x3f{left:295.521000px;}
.xb{left:299.329500px;}
.x6c{left:300.418500px;}
.x86{left:306.592500px;}
.x6{left:307.971000px;}
.x3a{left:309.148500px;}
.xc{left:310.392000px;}
.xa0{left:311.608500px;}
.x40{left:314.275500px;}
.x2c{left:317.508000px;}
.x95{left:320.596500px;}
.x50{left:322.386000px;}
.x6d{left:323.904000px;}
.x41{left:329.220000px;}
.x2d{left:332.452500px;}
.x12{left:339.069000px;}
.x54{left:340.894500px;}
.x8d{left:343.255500px;}
.x13{left:346.540500px;}
.x7b{left:348.655500px;}
.x66{left:350.212500px;}
.x32{left:353.557500px;}
.x9f{left:360.669000px;}
.x20{left:363.525000px;}
.x67{left:365.157000px;}
.x68{left:368.967000px;}
.x21{left:370.998000px;}
.xa2{left:372.387000px;}
.x99{left:375.891000px;}
.x5f{left:377.377500px;}
.x16{left:380.820000px;}
.x69{left:383.911500px;}
.x17{left:388.291500px;}
.x9a{left:390.835500px;}
.x60{left:392.322000px;}
.x9e{left:393.817500px;}
.x42{left:398.647500px;}
.x77{left:406.327500px;}
.x43{left:413.592000px;}
.x44{left:417.253500px;}
.x78{left:418.618500px;}
.x4b{left:429.507000px;}
.x45{left:432.196500px;}
.x37{left:435.817500px;}
.x3d{left:437.895000px;}
.x52{left:439.317000px;}
.x6a{left:441.166500px;}
.x61{left:445.575000px;}
.x38{left:450.762000px;}
.x3e{left:452.839500px;}
.x53{left:454.260000px;}
.x6b{left:456.111000px;}
.x62{left:461.049000px;}
.x73{left:472.172394px;}
.x35{left:476.323500px;}
.x71{left:480.616305px;}
.xa1{left:486.723000px;}
.x87{left:489.046500px;}
.x36{left:491.266500px;}
.x2e{left:494.242500px;}
.x63{left:497.283000px;}
.x2f{left:509.185500px;}
.x1a{left:515.632500px;}
.x1b{left:523.104000px;}
.x55{left:534.988500px;}
.x96{left:544.179000px;}
.x46{left:546.547500px;}
.x1c{left:547.678500px;}
.x56{left:549.933000px;}
.x57{left:553.743000px;}
.x1d{left:555.150000px;}
.x97{left:556.972500px;}
.x47{left:561.492000px;}
.x64{left:566.698500px;}
.x58{left:568.687500px;}
.x65{left:576.307500px;}
.x3b{left:585.909000px;}
.x9c{left:594.222000px;}
.x18{left:596.719500px;}
.x3c{left:600.852000px;}
.x19{left:604.192500px;}
.x30{left:606.474000px;}
.x8c{left:609.900000px;}
.x7a{left:612.600000px;}
.x89{left:617.250000px;}
.x31{left:621.417000px;}
.x8a{left:629.541000px;}
.x9d{left:633.018000px;}
.x4c{left:635.730000px;}
.x10{left:640.963500px;}
.x9b{left:644.655000px;}
.x11{left:648.435000px;}
.x4d{left:650.674500px;}
.x48{left:652.927500px;}
.x98{left:661.806000px;}
.x49{left:667.872000px;}
.xe{left:670.149000px;}
.x4a{left:671.578500px;}
.x22{left:676.041000px;}
.xf{left:677.620500px;}
.x23{left:683.514000px;}
.x24{left:687.211500px;}
.x25{left:694.684500px;}
.x51{left:697.006500px;}
.x75{left:718.860000px;}
.x59{left:726.495000px;}
.x76{left:731.151000px;}
.xaf{left:732.291000px;}
.xb0{left:736.656000px;}
.x1e{left:737.746500px;}
.x2b{left:739.269000px;}
.x5a{left:741.438000px;}
.x1f{left:745.219500px;}
.xab{left:749.397000px;}
.x14{left:753.478500px;}
.x26{left:755.382000px;}
.x33{left:756.558000px;}
.x88{left:759.480000px;}
.x15{left:760.951500px;}
.x5b{left:763.779000px;}
.x7{left:765.372000px;}
.x27{left:770.325000px;}
.x34{left:771.502500px;}
.xac{left:776.295000px;}
.x5c{left:778.723500px;}
.x5d{left:782.422500px;}
.xae{left:784.002000px;}
.x4e{left:787.083000px;}
.x5e{left:797.365500px;}
.x28{left:798.943500px;}
.x9{left:802.203000px;}
.xad{left:811.018500px;}
.xa{left:813.265500px;}
.x29{left:817.698000px;}
.x2a{left:832.642500px;}
.x8{left:837.837000px;}
@media print{
.v5{vertical-align:-42.506667pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.077333pt;}
.v3{vertical-align:13.504000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:21.253333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls28{letter-spacing:0.000711pt;}
.ls2b{letter-spacing:0.002557pt;}
.ls23{letter-spacing:0.004267pt;}
.ls14{letter-spacing:0.161237pt;}
.ls1a{letter-spacing:0.442457pt;}
.ls19{letter-spacing:0.447791pt;}
.lsd{letter-spacing:0.487835pt;}
.ls16{letter-spacing:0.637762pt;}
.ls4{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls1f{letter-spacing:9.293692pt;}
.ls0{letter-spacing:9.298933pt;}
.ls17{letter-spacing:9.299025pt;}
.ls1b{letter-spacing:10.623733pt;}
.ls9{letter-spacing:10.626533pt;}
.lsc{letter-spacing:11.550073pt;}
.ls21{letter-spacing:11.733384pt;}
.ls2a{letter-spacing:11.794223pt;}
.ls29{letter-spacing:11.936011pt;}
.ls18{letter-spacing:11.953867pt;}
.ls20{letter-spacing:11.954133pt;}
.ls22{letter-spacing:11.959467pt;}
.ls26{letter-spacing:12.031453pt;}
.ls24{letter-spacing:12.088337pt;}
.ls8{letter-spacing:12.135818pt;}
.lsb{letter-spacing:12.852128pt;}
.ls1d{letter-spacing:13.283733pt;}
.lsf{letter-spacing:13.284237pt;}
.ls13{letter-spacing:13.442868pt;}
.ls12{letter-spacing:13.496002pt;}
.lse{letter-spacing:13.921073pt;}
.ls10{letter-spacing:14.390084pt;}
.ls11{letter-spacing:14.395418pt;}
.ls1c{letter-spacing:15.163786pt;}
.ls1e{letter-spacing:16.630900pt;}
.ls15{letter-spacing:17.055971pt;}
.ls25{letter-spacing:17.524539pt;}
.ls27{letter-spacing:17.780748pt;}
.ls3{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.321067pt;}
.ws51{word-spacing:-13.283467pt;}
.wsf{word-spacing:-12.760670pt;}
.wsa4{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws7d{word-spacing:-10.077333pt;}
.ws4{word-spacing:-9.298400pt;}
.wsa1{word-spacing:-2.869229pt;}
.ws26{word-spacing:-2.816095pt;}
.ws27{word-spacing:-2.603559pt;}
.wsb0{word-spacing:-2.391040pt;}
.wsad{word-spacing:-2.247578pt;}
.wsa0{word-spacing:-2.231622pt;}
.wsb1{word-spacing:-2.199757pt;}
.ws50{word-spacing:-2.125355pt;}
.ws59{word-spacing:-1.965953pt;}
.wsf6{word-spacing:-1.960653pt;}
.ws73{word-spacing:-1.912819pt;}
.ws17{word-spacing:-1.865011pt;}
.ws70{word-spacing:-1.753418pt;}
.ws4c{word-spacing:-1.700284pt;}
.ws94{word-spacing:-1.647150pt;}
.ws9d{word-spacing:-1.594016pt;}
.ws3b{word-spacing:-1.540882pt;}
.wsb6{word-spacing:-1.482445pt;}
.ws49{word-spacing:-1.434614pt;}
.ws71{word-spacing:-1.328347pt;}
.ws13{word-spacing:-1.291162pt;}
.ws6b{word-spacing:-1.275213pt;}
.ws77{word-spacing:-1.222079pt;}
.ws62{word-spacing:-1.168945pt;}
.ws9f{word-spacing:-1.115811pt;}
.ws54{word-spacing:-1.062677pt;}
.ws1b{word-spacing:-1.052058pt;}
.ws12{word-spacing:-0.956416pt;}
.ws74{word-spacing:-0.956410pt;}
.wsf0{word-spacing:-0.908595pt;}
.wsa2{word-spacing:-0.903276pt;}
.ws3d{word-spacing:-0.850142pt;}
.ws5c{word-spacing:-0.797008pt;}
.ws5b{word-spacing:-0.690740pt;}
.ws19{word-spacing:-0.621670pt;}
.ws75{word-spacing:-0.584473pt;}
.ws52{word-spacing:-0.425071pt;}
.ws2c{word-spacing:-0.371937pt;}
.ws35{word-spacing:-0.318803pt;}
.ws5d{word-spacing:-0.265669pt;}
.wsaf{word-spacing:-0.239104pt;}
.ws38{word-spacing:-0.212535pt;}
.ws1a{word-spacing:-0.191283pt;}
.ws3a{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws20{word-spacing:-0.106268pt;}
.wsaa{word-spacing:-0.095642pt;}
.ws2b{word-spacing:-0.053134pt;}
.wsc6{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.wsee{word-spacing:-0.021999pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:0.042507pt;}
.ws14{word-spacing:0.047821pt;}
.ws24{word-spacing:0.053134pt;}
.wsae{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.wsb5{word-spacing:0.143462pt;}
.ws2e{word-spacing:0.159402pt;}
.ws15{word-spacing:0.191283pt;}
.ws40{word-spacing:0.212535pt;}
.ws80{word-spacing:0.239104pt;}
.ws88{word-spacing:0.255043pt;}
.ws25{word-spacing:0.265669pt;}
.wsa3{word-spacing:0.286925pt;}
.ws33{word-spacing:0.318803pt;}
.ws34{word-spacing:0.371937pt;}
.ws22{word-spacing:0.425071pt;}
.wsab{word-spacing:0.430387pt;}
.ws86{word-spacing:0.463733pt;}
.ws91{word-spacing:0.469067pt;}
.ws23{word-spacing:0.478205pt;}
.ws16{word-spacing:0.526029pt;}
.ws4b{word-spacing:0.584473pt;}
.ws42{word-spacing:0.637606pt;}
.ws7a{word-spacing:0.690740pt;}
.ws8b{word-spacing:0.743874pt;}
.ws45{word-spacing:0.797008pt;}
.ws46{word-spacing:0.850142pt;}
.ws1e{word-spacing:0.903276pt;}
.wsa5{word-spacing:0.908595pt;}
.ws1f{word-spacing:0.956410pt;}
.wsdb{word-spacing:0.956416pt;}
.wse6{word-spacing:1.004237pt;}
.wsd9{word-spacing:1.052058pt;}
.ws57{word-spacing:1.115811pt;}
.ws6f{word-spacing:1.222079pt;}
.ws48{word-spacing:1.328347pt;}
.ws66{word-spacing:1.381481pt;}
.ws58{word-spacing:1.434614pt;}
.ws4f{word-spacing:1.594016pt;}
.ws3e{word-spacing:1.647150pt;}
.ws61{word-spacing:1.700284pt;}
.ws9e{word-spacing:1.753418pt;}
.ws9c{word-spacing:1.806551pt;}
.ws89{word-spacing:1.859685pt;}
.ws7b{word-spacing:1.912819pt;}
.wseb{word-spacing:1.912832pt;}
.ws43{word-spacing:2.072221pt;}
.ws36{word-spacing:2.125355pt;}
.ws2a{word-spacing:2.178489pt;}
.ws8f{word-spacing:2.231616pt;}
.ws4e{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws4d{word-spacing:2.284756pt;}
.ws29{word-spacing:2.337890pt;}
.ws79{word-spacing:2.391024pt;}
.ws28{word-spacing:2.444158pt;}
.ws11{word-spacing:2.550432pt;}
.wse4{word-spacing:2.582323pt;}
.ws67{word-spacing:2.603559pt;}
.ws9a{word-spacing:2.656693pt;}
.wsd2{word-spacing:2.677965pt;}
.ws2d{word-spacing:2.709827pt;}
.ws69{word-spacing:2.762961pt;}
.wsf4{word-spacing:2.843844pt;}
.ws1c{word-spacing:2.861926pt;}
.ws41{word-spacing:2.869229pt;}
.wsce{word-spacing:2.869248pt;}
.ws3c{word-spacing:2.922363pt;}
.ws64{word-spacing:3.028630pt;}
.ws72{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.188032pt;}
.ws5e{word-spacing:3.241166pt;}
.ws47{word-spacing:3.347434pt;}
.wsa7{word-spacing:3.395277pt;}
.ws65{word-spacing:3.400567pt;}
.ws6a{word-spacing:3.453701pt;}
.ws53{word-spacing:3.506835pt;}
.wsac{word-spacing:3.538739pt;}
.ws55{word-spacing:3.559969pt;}
.wsa6{word-spacing:3.682202pt;}
.ws56{word-spacing:3.719371pt;}
.ws7f{word-spacing:3.772505pt;}
.wsfb{word-spacing:3.777843pt;}
.ws76{word-spacing:3.825638pt;}
.ws6e{word-spacing:3.878772pt;}
.ws3f{word-spacing:3.931906pt;}
.wsa8{word-spacing:3.969126pt;}
.ws68{word-spacing:3.985040pt;}
.wsb3{word-spacing:4.016947pt;}
.wsfa{word-spacing:4.112589pt;}
.ws4a{word-spacing:4.144442pt;}
.ws5f{word-spacing:4.197575pt;}
.wsb{word-spacing:4.240070pt;}
.ws96{word-spacing:4.303843pt;}
.wsb4{word-spacing:4.303872pt;}
.wsc{word-spacing:4.314458pt;}
.wse0{word-spacing:4.399514pt;}
.ws78{word-spacing:4.410111pt;}
.ws44{word-spacing:4.569513pt;}
.wse7{word-spacing:4.590797pt;}
.ws97{word-spacing:4.728914pt;}
.ws85{word-spacing:4.900010pt;}
.ws63{word-spacing:4.941450pt;}
.ws39{word-spacing:4.994583pt;}
.ws9b{word-spacing:5.100851pt;}
.wsf8{word-spacing:5.212467pt;}
.ws8c{word-spacing:5.472788pt;}
.wse2{word-spacing:5.547213pt;}
.wsb2{word-spacing:5.595034pt;}
.ws8a{word-spacing:5.685324pt;}
.ws5a{word-spacing:5.791591pt;}
.wse9{word-spacing:5.834138pt;}
.ws37{word-spacing:6.110395pt;}
.ws21{word-spacing:6.376064pt;}
.ws98{word-spacing:6.641733pt;}
.ws9{word-spacing:6.918010pt;}
.ws6c{word-spacing:7.013670pt;}
.ws99{word-spacing:7.279340pt;}
.ws60{word-spacing:7.332474pt;}
.ws6d{word-spacing:8.023214pt;}
.ws3{word-spacing:9.257756pt;}
.wsa9{word-spacing:10.664038pt;}
.ws7{word-spacing:10.823338pt;}
.wscf{word-spacing:10.950963pt;}
.ws95{word-spacing:11.051844pt;}
.ws2{word-spacing:11.492822pt;}
.wsed{word-spacing:11.716096pt;}
.wsde{word-spacing:11.811738pt;}
.wsd1{word-spacing:11.859558pt;}
.wsd3{word-spacing:11.900979pt;}
.wsf9{word-spacing:11.901764pt;}
.wsdd{word-spacing:11.901986pt;}
.wsd6{word-spacing:11.902541pt;}
.wsc9{word-spacing:11.902942pt;}
.wsea{word-spacing:11.904205pt;}
.wsda{word-spacing:11.904299pt;}
.wscb{word-spacing:11.905220pt;}
.wsc8{word-spacing:11.905331pt;}
.wsf1{word-spacing:11.906423pt;}
.wsc5{word-spacing:11.907379pt;}
.wse5{word-spacing:11.955200pt;}
.wscd{word-spacing:12.003021pt;}
.wsf2{word-spacing:12.050842pt;}
.ws30{word-spacing:13.134725pt;}
.ws7e{word-spacing:13.230333pt;}
.ws8{word-spacing:14.319536pt;}
.wsc7{word-spacing:14.489702pt;}
.wsd5{word-spacing:14.768930pt;}
.wsd8{word-spacing:14.768981pt;}
.wsd4{word-spacing:14.770628pt;}
.wsf3{word-spacing:14.770927pt;}
.wsef{word-spacing:14.772215pt;}
.wsca{word-spacing:14.772992pt;}
.wse3{word-spacing:14.773146pt;}
.wsf7{word-spacing:14.774554pt;}
.wsf5{word-spacing:14.774630pt;}
.wsec{word-spacing:14.776448pt;}
.wsd0{word-spacing:14.776627pt;}
.wscc{word-spacing:14.920090pt;}
.wsdf{word-spacing:14.967910pt;}
.wsd7{word-spacing:15.015731pt;}
.wsdc{word-spacing:15.063552pt;}
.wse8{word-spacing:16.498176pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.wse1{word-spacing:28.405555pt;}
.wse{word-spacing:35.593054pt;}
.ws92{word-spacing:58.389998pt;}
.wsba{word-spacing:103.187792pt;}
.wsc0{word-spacing:147.558388pt;}
.ws7c{word-spacing:153.696051pt;}
.wsbb{word-spacing:255.641207pt;}
.ws82{word-spacing:279.807453pt;}
.wsb8{word-spacing:299.036544pt;}
.ws83{word-spacing:317.744925pt;}
.ws8e{word-spacing:317.782118pt;}
.wsb9{word-spacing:336.974016pt;}
.wsbc{word-spacing:356.165914pt;}
.wsbe{word-spacing:505.312210pt;}
.wsc3{word-spacing:526.999948pt;}
.wsc2{word-spacing:529.549438pt;}
.wsc1{word-spacing:532.725543pt;}
.ws90{word-spacing:571.125543pt;}
.wsbd{word-spacing:573.623603pt;}
.ws84{word-spacing:580.720210pt;}
.ws81{word-spacing:1108.592442pt;}
.ws8d{word-spacing:1118.188390pt;}
.ws87{word-spacing:1129.383664pt;}
.wsb7{word-spacing:1137.380288pt;}
.ws93{word-spacing:1138.979613pt;}
.wsc4{word-spacing:1145.525686pt;}
.wsbf{word-spacing:1145.562880pt;}
._7{margin-left:-7.077478pt;}
._a{margin-left:-5.729171pt;}
._0{margin-left:-4.128490pt;}
._1{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._3b{width:1.006604pt;}
._8{width:2.668767pt;}
._19{width:3.825638pt;}
._3c{width:8.385393pt;}
._4{width:9.298400pt;}
._d{width:10.424934pt;}
._3{width:11.531916pt;}
._14{width:13.035113pt;}
._b{width:14.680986pt;}
._12{width:15.780758pt;}
._c{width:16.737280pt;}
._11{width:18.224916pt;}
._e{width:19.659531pt;}
._72{width:20.722208pt;}
._f{width:21.795508pt;}
._5{width:23.066683pt;}
._13{width:24.175909pt;}
._17{width:25.504256pt;}
._6{width:27.188522pt;}
._94{width:28.235329pt;}
._b1{width:29.175522pt;}
._18{width:30.711375pt;}
._95{width:32.847353pt;}
._1a{width:34.377612pt;}
._10{width:35.663447pt;}
._1b{width:40.966211pt;}
._9{width:48.356193pt;}
._b2{width:54.993920pt;}
._68{width:65.869019pt;}
._b0{width:78.904320pt;}
._56{width:81.939428pt;}
._63{width:91.753091pt;}
._9e{width:93.284091pt;}
._7a{width:96.978636pt;}
._3f{width:98.188569pt;}
._40{width:99.232805pt;}
._41{width:101.312224pt;}
._57{width:107.283268pt;}
._45{width:108.819900pt;}
._74{width:110.897851pt;}
._55{width:112.864191pt;}
._4f{width:116.081226pt;}
._42{width:117.363509pt;}
._4e{width:118.889543pt;}
._44{width:120.488466pt;}
._5d{width:122.544522pt;}
._5b{width:125.175274pt;}
._77{width:126.173731pt;}
._59{width:128.243545pt;}
._53{width:130.121609pt;}
._50{width:132.092858pt;}
._52{width:135.736538pt;}
._43{width:137.661897pt;}
._5c{width:139.252838pt;}
._7b{width:141.590157pt;}
._78{width:145.302886pt;}
._5a{width:147.619804pt;}
._24{width:148.913971pt;}
._51{width:151.275360pt;}
._9b{width:154.453079pt;}
._8d{width:158.109994pt;}
._23{width:160.916992pt;}
._22{width:172.872192pt;}
._1d{width:181.734941pt;}
._30{width:184.827392pt;}
._9a{width:187.864874pt;}
._7c{width:188.794714pt;}
._97{width:193.525023pt;}
._2b{width:196.734771pt;}
._58{width:198.390662pt;}
._27{width:201.086464pt;}
._2a{width:208.737792pt;}
._26{width:211.989606pt;}
._29{width:220.692992pt;}
._20{width:224.065929pt;}
._33{width:225.698020pt;}
._79{width:230.228384pt;}
._1f{width:236.027529pt;}
._54{width:239.824333pt;}
._1c{width:245.320704pt;}
._76{width:249.085539pt;}
._4d{width:258.718682pt;}
._1e{width:267.461734pt;}
._99{width:288.919885pt;}
._48{width:297.974211pt;}
._47{width:308.372138pt;}
._75{width:318.650381pt;}
._98{width:326.703952pt;}
._46{width:327.919690pt;}
._4c{width:336.639274pt;}
._4a{width:346.309610pt;}
._49{width:356.128720pt;}
._4b{width:365.464314pt;}
._39{width:380.175360pt;}
._15{width:383.627480pt;}
._ad{width:456.607534pt;}
._82{width:465.838163pt;}
._83{width:470.963705pt;}
._88{width:474.711315pt;}
._67{width:480.923854pt;}
._8f{width:483.180820pt;}
._9f{width:484.690352pt;}
._62{width:493.246163pt;}
._a7{width:500.101326pt;}
._81{width:502.223357pt;}
._80{width:508.439574pt;}
._a0{width:512.307792pt;}
._86{width:513.897909pt;}
._8a{width:517.540094pt;}
._61{width:523.463180pt;}
._66{width:527.498031pt;}
._a6{width:528.800627pt;}
._8c{width:531.105810pt;}
._38{width:534.014874pt;}
._a8{width:538.432397pt;}
._a3{width:542.664048pt;}
._ae{width:543.882013pt;}
._a5{width:547.043469pt;}
._a4{width:553.924285pt;}
._8e{width:567.195294pt;}
._37{width:569.641370pt;}
._6b{width:576.800627pt;}
._34{width:578.344755pt;}
._a2{width:582.823712pt;}
._2c{width:586.704070pt;}
._8b{width:589.072237pt;}
._87{width:592.308080pt;}
._2d{width:596.181914pt;}
._6a{width:598.668186pt;}
._31{width:602.016051pt;}
._35{width:603.976704pt;}
._6c{width:605.139872pt;}
._89{width:620.128893pt;}
._85{width:624.852480pt;}
._69{width:629.762035pt;}
._65{width:634.448429pt;}
._7f{width:636.382496pt;}
._32{width:641.181286pt;}
._60{width:649.623418pt;}
._2f{width:652.419174pt;}
._25{width:655.575347pt;}
._9c{width:668.257411pt;}
._2e{width:676.568678pt;}
._a1{width:699.537229pt;}
._21{width:702.057165pt;}
._7d{width:706.641206pt;}
._28{width:715.351347pt;}
._5e{width:716.274349pt;}
._7e{width:728.064720pt;}
._5f{width:737.660669pt;}
._84{width:738.688462pt;}
._36{width:742.178816pt;}
._64{width:747.516973pt;}
._9d{width:756.889760pt;}
._71{width:927.682771pt;}
._92{width:952.825645pt;}
._70{width:960.115590pt;}
._ac{width:976.130099pt;}
._af{width:979.344682pt;}
._ab{width:987.564467pt;}
._91{width:1049.975328pt;}
._6f{width:1059.608470pt;}
._aa{width:1061.877280pt;}
._3e{width:1142.364230pt;}
._90{width:1154.824086pt;}
._6d{width:1164.420035pt;}
._6e{width:1167.507104pt;}
._96{width:1180.785219pt;}
._a9{width:1186.661808pt;}
._3a{width:1356.018234pt;}
._93{width:1785.184548pt;}
._16{width:1806.437881pt;}
._73{width:3098.944548pt;}
._3d{width:3120.197881pt;}
.fsf{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs10{font-size:38.755733pt;}
.fsc{font-size:40.309333pt;}
.fs5{font-size:40.381867pt;}
.fsb{font-size:42.077867pt;}
.fs7{font-size:42.507200pt;}
.fse{font-size:45.120000pt;}
.fs8{font-size:47.820800pt;}
.fs9{font-size:49.829333pt;}
.fsd{font-size:49.936000pt;}
.fs1{font-size:50.395200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:53.754880pt;}
.fsa{font-size:55.365867pt;}
.fs4{font-size:95.641600pt;}
.yec{bottom:-609.592175pt;}
.yf9{bottom:-546.710267pt;}
.yf8{bottom:-530.705779pt;}
.yf7{bottom:-514.538999pt;}
.yf6{bottom:-498.546995pt;}
.yf5{bottom:-482.542507pt;}
.yf4{bottom:-466.388211pt;}
.yf3{bottom:-450.383723pt;}
.yf2{bottom:-434.216943pt;}
.yf1{bottom:-414.542159pt;}
.yf0{bottom:-383.836507pt;}
.yef{bottom:-365.105519pt;}
.yfe{bottom:-254.684175pt;}
.y10b{bottom:-191.802267pt;}
.y10a{bottom:-175.797779pt;}
.y109{bottom:-159.630999pt;}
.y108{bottom:-143.638995pt;}
.y107{bottom:-127.634507pt;}
.y106{bottom:-111.480211pt;}
.y105{bottom:-95.475723pt;}
.y104{bottom:-79.308943pt;}
.y103{bottom:-59.634159pt;}
.yee{bottom:-36.649387pt;}
.y102{bottom:-28.928507pt;}
.yed{bottom:-10.254187pt;}
.y101{bottom:-10.197519pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:5.644850pt;}
.y1b{bottom:18.051729pt;}
.y4b{bottom:28.346667pt;}
.y1a{bottom:32.990462pt;}
.yb7{bottom:91.696000pt;}
.y4a{bottom:92.108000pt;}
.y18{bottom:93.018667pt;}
.y2ac{bottom:95.548000pt;}
.y82{bottom:95.681333pt;}
.y1d7{bottom:100.828000pt;}
.y1a3{bottom:104.713333pt;}
.yb6{bottom:108.433333pt;}
.y49{bottom:108.844000pt;}
.y17{bottom:108.920000pt;}
.y2ab{bottom:110.890667pt;}
.yca{bottom:112.020000pt;}
.y81{bottom:112.418667pt;}
.y275{bottom:114.876000pt;}
.y1d6{bottom:116.868000pt;}
.y1a2{bottom:121.450667pt;}
.y16{bottom:124.820000pt;}
.yb5{bottom:125.170667pt;}
.y48{bottom:125.581333pt;}
.y2aa{bottom:126.233333pt;}
.yc9{bottom:128.757333pt;}
.y80{bottom:129.156000pt;}
.y274{bottom:130.218667pt;}
.y1d5{bottom:132.908000pt;}
.y1a1{bottom:138.188000pt;}
.y15{bottom:140.720000pt;}
.y2a9{bottom:141.576000pt;}
.yb4{bottom:141.908000pt;}
.y47{bottom:142.318667pt;}
.yc8{bottom:145.494667pt;}
.yfa{bottom:145.502667pt;}
.y273{bottom:145.561333pt;}
.y7f{bottom:145.893333pt;}
.y1a0{bottom:154.925333pt;}
.y14{bottom:156.621333pt;}
.y2a8{bottom:156.918667pt;}
.yb3{bottom:158.645333pt;}
.y46{bottom:159.056000pt;}
.y272{bottom:160.902667pt;}
.yc7{bottom:162.232000pt;}
.y7e{bottom:162.630667pt;}
.y1d4{bottom:164.888000pt;}
.ye9{bottom:165.440000pt;}
.y19f{bottom:171.662667pt;}
.y2a7{bottom:172.261333pt;}
.y13{bottom:172.521333pt;}
.yb2{bottom:175.382667pt;}
.y45{bottom:175.793333pt;}
.y271{bottom:176.245333pt;}
.y129{bottom:178.538667pt;}
.yc6{bottom:178.969333pt;}
.y7d{bottom:179.368000pt;}
.y1d3{bottom:181.625333pt;}
.y2a6{bottom:187.602667pt;}
.y19e{bottom:188.400000pt;}
.y12{bottom:188.421333pt;}
.y270{bottom:191.588000pt;}
.yb1{bottom:192.120000pt;}
.y44{bottom:192.530667pt;}
.y128{bottom:195.276000pt;}
.yc5{bottom:195.706667pt;}
.y7c{bottom:196.105333pt;}
.y1d2{bottom:198.362667pt;}
.y2a5{bottom:202.945333pt;}
.y11{bottom:204.322667pt;}
.y19d{bottom:205.137333pt;}
.y26f{bottom:206.930667pt;}
.yb0{bottom:208.857333pt;}
.y43{bottom:209.268000pt;}
.y127{bottom:212.013333pt;}
.yc4{bottom:212.444000pt;}
.y7b{bottom:212.841333pt;}
.y1d1{bottom:215.100000pt;}
.y2a4{bottom:218.288000pt;}
.y19c{bottom:221.874667pt;}
.y26e{bottom:222.273333pt;}
.yaf{bottom:225.594667pt;}
.y42{bottom:226.005333pt;}
.y126{bottom:228.750667pt;}
.yc3{bottom:229.181333pt;}
.y7a{bottom:229.578667pt;}
.y1d0{bottom:231.837333pt;}
.y2a3{bottom:233.630667pt;}
.y26d{bottom:237.616000pt;}
.y19b{bottom:238.612000pt;}
.y21a{bottom:241.097333pt;}
.yae{bottom:242.332000pt;}
.y41{bottom:242.742667pt;}
.y125{bottom:245.488000pt;}
.yc2{bottom:245.918667pt;}
.y79{bottom:246.316000pt;}
.y1cf{bottom:248.574667pt;}
.y2a2{bottom:248.973333pt;}
.y26c{bottom:252.958667pt;}
.y219{bottom:253.716000pt;}
.y19a{bottom:255.349333pt;}
.yad{bottom:259.069333pt;}
.y40{bottom:259.480000pt;}
.y124{bottom:262.225333pt;}
.yc1{bottom:262.656000pt;}
.y78{bottom:263.053333pt;}
.y10{bottom:264.148000pt;}
.y2a1{bottom:264.316000pt;}
.y23d{bottom:267.372000pt;}
.y26b{bottom:268.301333pt;}
.y1ce{bottom:269.297333pt;}
.y218{bottom:271.928000pt;}
.y199{bottom:272.086667pt;}
.yac{bottom:275.806667pt;}
.y3f{bottom:276.217333pt;}
.y123{bottom:278.962667pt;}
.yc0{bottom:279.393333pt;}
.y2a0{bottom:279.658667pt;}
.y77{bottom:279.790667pt;}
.y23c{bottom:279.990667pt;}
.yf{bottom:280.048000pt;}
.y217{bottom:282.554667pt;}
.y269{bottom:283.642667pt;}
.y26a{bottom:283.644000pt;}
.y198{bottom:288.824000pt;}
.yab{bottom:292.544000pt;}
.y3e{bottom:292.954667pt;}
.y216{bottom:293.181333pt;}
.y29f{bottom:295.001333pt;}
.y122{bottom:295.700000pt;}
.ye{bottom:295.949333pt;}
.ybf{bottom:296.129333pt;}
.y76{bottom:296.528000pt;}
.y23b{bottom:298.202667pt;}
.y268{bottom:298.985333pt;}
.y1cd{bottom:299.185333pt;}
.y215{bottom:303.808000pt;}
.y197{bottom:305.561333pt;}
.y148{bottom:307.222667pt;}
.y23a{bottom:308.829333pt;}
.yaa{bottom:309.280000pt;}
.y3d{bottom:309.692000pt;}
.y29e{bottom:310.342667pt;}
.yd{bottom:311.849333pt;}
.y121{bottom:312.437333pt;}
.ybe{bottom:312.866667pt;}
.y75{bottom:313.265333pt;}
.y267{bottom:314.328000pt;}
.y214{bottom:314.434667pt;}
.y1cc{bottom:315.922667pt;}
.y100{bottom:318.258613pt;}
.y239{bottom:319.456000pt;}
.y147{bottom:319.841333pt;}
.y196{bottom:322.298667pt;}
.y213{bottom:325.061333pt;}
.y29d{bottom:325.685333pt;}
.ya9{bottom:326.017333pt;}
.y3c{bottom:326.429333pt;}
.y120{bottom:329.174667pt;}
.ybd{bottom:329.604000pt;}
.y266{bottom:329.670667pt;}
.y74{bottom:330.002667pt;}
.y238{bottom:330.082667pt;}
.y1cb{bottom:332.660000pt;}
.y212{bottom:335.688000pt;}
.yc{bottom:337.048000pt;}
.y146{bottom:338.053333pt;}
.yeb{bottom:338.103579pt;}
.y195{bottom:339.036000pt;}
.y237{bottom:340.709333pt;}
.y29c{bottom:341.028000pt;}
.ya8{bottom:342.754667pt;}
.y170{bottom:343.021333pt;}
.y3b{bottom:343.166667pt;}
.yff{bottom:344.653813pt;}
.y265{bottom:345.013333pt;}
.y11f{bottom:345.912000pt;}
.yea{bottom:346.104981pt;}
.y211{bottom:346.314667pt;}
.ybc{bottom:346.341333pt;}
.y73{bottom:346.740000pt;}
.y145{bottom:348.680000pt;}
.y1ca{bottom:349.397333pt;}
.y236{bottom:351.336000pt;}
.yb{bottom:352.948000pt;}
.y194{bottom:355.773333pt;}
.y29b{bottom:356.370667pt;}
.y210{bottom:356.942667pt;}
.y144{bottom:359.306667pt;}
.ya7{bottom:359.492000pt;}
.y16f{bottom:359.758667pt;}
.y3a{bottom:359.904000pt;}
.y264{bottom:360.356000pt;}
.y235{bottom:361.962667pt;}
.y11e{bottom:362.649333pt;}
.ybb{bottom:363.078667pt;}
.y72{bottom:363.477333pt;}
.y1c9{bottom:366.134667pt;}
.y20f{bottom:367.569333pt;}
.ya{bottom:368.849333pt;}
.y143{bottom:369.933333pt;}
.y29a{bottom:371.713333pt;}
.y193{bottom:372.510667pt;}
.y234{bottom:372.590667pt;}
.y263{bottom:375.698667pt;}
.ya6{bottom:376.229333pt;}
.y16e{bottom:376.496000pt;}
.y39{bottom:376.641333pt;}
.y20e{bottom:378.196000pt;}
.y11d{bottom:379.386667pt;}
.yba{bottom:379.816000pt;}
.y71{bottom:380.214667pt;}
.y142{bottom:380.560000pt;}
.y1c8{bottom:382.872000pt;}
.y233{bottom:383.217333pt;}
.y9{bottom:384.749333pt;}
.y299{bottom:387.056000pt;}
.y20d{bottom:388.822667pt;}
.y192{bottom:389.248000pt;}
.y262{bottom:391.041333pt;}
.y141{bottom:391.186667pt;}
.ya5{bottom:392.966667pt;}
.y16d{bottom:393.233333pt;}
.y38{bottom:393.378667pt;}
.y232{bottom:393.844000pt;}
.y11c{bottom:396.124000pt;}
.y70{bottom:396.952000pt;}
.y20c{bottom:399.449333pt;}
.y1c7{bottom:399.609333pt;}
.yb9{bottom:400.538667pt;}
.y140{bottom:401.813333pt;}
.y298{bottom:402.398667pt;}
.y231{bottom:404.470667pt;}
.y191{bottom:405.985333pt;}
.y261{bottom:406.384000pt;}
.y8{bottom:408.620000pt;}
.ya4{bottom:409.704000pt;}
.y16c{bottom:409.970667pt;}
.y20b{bottom:410.076000pt;}
.y13f{bottom:412.440000pt;}
.y11b{bottom:412.861333pt;}
.y6f{bottom:413.689333pt;}
.y37{bottom:414.101333pt;}
.y230{bottom:415.097333pt;}
.y1c6{bottom:416.346667pt;}
.y297{bottom:417.741333pt;}
.y20a{bottom:420.702667pt;}
.y260{bottom:421.725333pt;}
.y190{bottom:422.722667pt;}
.y13e{bottom:423.068000pt;}
.y7{bottom:424.520000pt;}
.y22f{bottom:425.724000pt;}
.ya3{bottom:426.441333pt;}
.y16b{bottom:426.706667pt;}
.y11a{bottom:429.598667pt;}
.y6e{bottom:430.426667pt;}
.y209{bottom:431.329333pt;}
.y1c5{bottom:433.084000pt;}
.y13d{bottom:433.694667pt;}
.y22e{bottom:436.350667pt;}
.y25f{bottom:437.068000pt;}
.y18f{bottom:439.460000pt;}
.y6{bottom:440.421333pt;}
.y208{bottom:441.956000pt;}
.ya2{bottom:443.178667pt;}
.y16a{bottom:443.444000pt;}
.y119{bottom:446.336000pt;}
.y22d{bottom:446.977333pt;}
.y6d{bottom:447.164000pt;}
.y296{bottom:448.425333pt;}
.y1c4{bottom:449.821333pt;}
.y25e{bottom:452.410667pt;}
.y207{bottom:452.584000pt;}
.y1f6{bottom:453.328000pt;}
.y13c{bottom:454.948000pt;}
.y18e{bottom:456.197333pt;}
.y5{bottom:456.321333pt;}
.y22c{bottom:457.604000pt;}
.ya1{bottom:459.916000pt;}
.y169{bottom:460.181333pt;}
.y118{bottom:463.073333pt;}
.y206{bottom:463.210667pt;}
.y295{bottom:463.768000pt;}
.y6c{bottom:463.901333pt;}
.y13b{bottom:465.574667pt;}
.y1c3{bottom:466.557333pt;}
.y25d{bottom:467.753333pt;}
.y22b{bottom:468.232000pt;}
.y1f5{bottom:468.949333pt;}
.y4{bottom:472.221333pt;}
.y18d{bottom:472.934667pt;}
.y205{bottom:473.837333pt;}
.y13a{bottom:476.201333pt;}
.ya0{bottom:476.653333pt;}
.y168{bottom:476.918667pt;}
.y22a{bottom:478.858667pt;}
.y294{bottom:479.110667pt;}
.y117{bottom:479.810667pt;}
.y6b{bottom:480.638667pt;}
.y36{bottom:480.901333pt;}
.y25c{bottom:483.096000pt;}
.y1c2{bottom:483.294667pt;}
.y204{bottom:484.464000pt;}
.y1f4{bottom:484.570667pt;}
.y139{bottom:486.828000pt;}
.y3{bottom:488.122667pt;}
.y229{bottom:489.485333pt;}
.y18c{bottom:489.672000pt;}
.ye8{bottom:491.906667pt;}
.y9f{bottom:493.390667pt;}
.y167{bottom:493.656000pt;}
.y293{bottom:494.453333pt;}
.y203{bottom:495.090667pt;}
.y116{bottom:496.548000pt;}
.y6a{bottom:497.376000pt;}
.y138{bottom:497.454667pt;}
.y25b{bottom:498.438667pt;}
.y1c1{bottom:500.032000pt;}
.y228{bottom:500.112000pt;}
.y2{bottom:504.022667pt;}
.y202{bottom:505.717333pt;}
.y18b{bottom:506.409333pt;}
.y137{bottom:508.082667pt;}
.y1f3{bottom:508.162667pt;}
.ye7{bottom:508.644000pt;}
.y292{bottom:509.796000pt;}
.y9e{bottom:510.128000pt;}
.y166{bottom:510.393333pt;}
.y227{bottom:510.738667pt;}
.y115{bottom:513.285333pt;}
.y25a{bottom:513.781333pt;}
.y69{bottom:514.113333pt;}
.y35{bottom:514.136000pt;}
.y201{bottom:516.344000pt;}
.y1c0{bottom:516.769333pt;}
.y136{bottom:518.709333pt;}
.y1{bottom:519.922667pt;}
.y226{bottom:521.365333pt;}
.y18a{bottom:523.145333pt;}
.y1f2{bottom:523.784000pt;}
.y291{bottom:525.138667pt;}
.y9d{bottom:526.865333pt;}
.y200{bottom:526.970667pt;}
.y165{bottom:527.130667pt;}
.y259{bottom:529.124000pt;}
.y135{bottom:529.336000pt;}
.y114{bottom:530.022667pt;}
.y68{bottom:530.850667pt;}
.y34{bottom:531.432000pt;}
.y225{bottom:531.992000pt;}
.y1bf{bottom:533.506667pt;}
.y1ff{bottom:537.597333pt;}
.y189{bottom:539.882667pt;}
.y134{bottom:539.962667pt;}
.y290{bottom:540.481333pt;}
.y224{bottom:542.618667pt;}
.y9c{bottom:543.602667pt;}
.y164{bottom:543.868000pt;}
.y258{bottom:544.466667pt;}
.y113{bottom:546.760000pt;}
.y1f1{bottom:547.376000pt;}
.y67{bottom:547.588000pt;}
.y33{bottom:548.726667pt;}
.y1be{bottom:550.244000pt;}
.y133{bottom:550.589333pt;}
.ye6{bottom:551.712000pt;}
.y223{bottom:553.245333pt;}
.y1fe{bottom:555.166667pt;}
.y28f{bottom:555.824000pt;}
.y188{bottom:556.620000pt;}
.y257{bottom:559.808000pt;}
.y9b{bottom:560.340000pt;}
.y163{bottom:560.605333pt;}
.y132{bottom:561.216000pt;}
.y1f0{bottom:562.997333pt;}
.y112{bottom:563.497333pt;}
.y222{bottom:563.873333pt;}
.y66{bottom:564.325333pt;}
.y1fb{bottom:565.374667pt;}
.y32{bottom:566.021333pt;}
.ye5{bottom:566.324000pt;}
.y1bd{bottom:566.981333pt;}
.y28e{bottom:571.165333pt;}
.y131{bottom:571.842667pt;}
.y1fd{bottom:572.194667pt;}
.y187{bottom:573.357333pt;}
.y256{bottom:575.150667pt;}
.y1fa{bottom:576.001333pt;}
.y9a{bottom:577.077333pt;}
.y162{bottom:577.342667pt;}
.y1ef{bottom:578.618667pt;}
.y111{bottom:580.233333pt;}
.ye4{bottom:580.936000pt;}
.y65{bottom:581.062667pt;}
.y221{bottom:581.441333pt;}
.y31{bottom:583.317333pt;}
.y1bc{bottom:583.718667pt;}
.y28d{bottom:586.508000pt;}
.y1fc{bottom:589.224000pt;}
.y130{bottom:589.410667pt;}
.y186{bottom:590.094667pt;}
.y255{bottom:590.493333pt;}
.y21e{bottom:591.649333pt;}
.y99{bottom:593.814667pt;}
.y161{bottom:594.080000pt;}
.y1ee{bottom:594.240000pt;}
.ye3{bottom:595.548000pt;}
.y110{bottom:596.970667pt;}
.y64{bottom:597.800000pt;}
.y220{bottom:598.469333pt;}
.y1bb{bottom:600.456000pt;}
.y30{bottom:600.612000pt;}
.y28c{bottom:601.850667pt;}
.y21d{bottom:602.276000pt;}
.y12d{bottom:605.132000pt;}
.y254{bottom:605.836000pt;}
.y12f{bottom:606.440000pt;}
.y185{bottom:606.832000pt;}
.y1ed{bottom:609.861333pt;}
.ye2{bottom:610.158667pt;}
.y98{bottom:610.552000pt;}
.y160{bottom:610.817333pt;}
.y10f{bottom:613.708000pt;}
.y63{bottom:614.537333pt;}
.y1f9{bottom:614.540000pt;}
.y21f{bottom:615.498667pt;}
.y1ba{bottom:617.193333pt;}
.y2f{bottom:617.906667pt;}
.y253{bottom:621.178667pt;}
.y12e{bottom:623.469333pt;}
.y184{bottom:623.569333pt;}
.ye1{bottom:624.770667pt;}
.y1ec{bottom:625.482667pt;}
.y97{bottom:627.289333pt;}
.y15f{bottom:627.554667pt;}
.y10e{bottom:630.445333pt;}
.y62{bottom:631.274667pt;}
.y1f8{bottom:631.636000pt;}
.y28b{bottom:632.536000pt;}
.y1b9{bottom:633.930667pt;}
.y2e{bottom:635.202667pt;}
.y252{bottom:636.521333pt;}
.ye0{bottom:639.382667pt;}
.y183{bottom:640.306667pt;}
.y21c{bottom:640.816000pt;}
.y96{bottom:644.026667pt;}
.y15e{bottom:644.292000pt;}
.y28a{bottom:647.878667pt;}
.y61{bottom:648.012000pt;}
.y12c{bottom:648.785333pt;}
.y1eb{bottom:649.074667pt;}
.y1b8{bottom:650.668000pt;}
.y10d{bottom:651.168000pt;}
.y251{bottom:651.864000pt;}
.y2d{bottom:652.497333pt;}
.ydf{bottom:653.994667pt;}
.y182{bottom:657.044000pt;}
.y21b{bottom:657.912000pt;}
.y95{bottom:660.764000pt;}
.y15d{bottom:661.029333pt;}
.y289{bottom:663.221333pt;}
.y1f7{bottom:664.565333pt;}
.y1ea{bottom:664.696000pt;}
.y60{bottom:664.749333pt;}
.y12b{bottom:665.881333pt;}
.y250{bottom:667.206667pt;}
.y1b7{bottom:667.405333pt;}
.yde{bottom:668.606667pt;}
.y2c{bottom:669.793333pt;}
.y181{bottom:673.781333pt;}
.y94{bottom:677.501333pt;}
.y15c{bottom:677.766667pt;}
.y10c{bottom:678.214667pt;}
.y288{bottom:678.564000pt;}
.y5f{bottom:681.485333pt;}
.y24f{bottom:682.548000pt;}
.ydd{bottom:683.218667pt;}
.y1b6{bottom:684.142667pt;}
.y2b{bottom:687.088000pt;}
.y1e9{bottom:688.288000pt;}
.y180{bottom:690.518667pt;}
.yfd{bottom:693.011579pt;}
.y287{bottom:693.906667pt;}
.y93{bottom:694.238667pt;}
.y15b{bottom:694.504000pt;}
.ydc{bottom:697.830667pt;}
.y24e{bottom:697.890667pt;}
.yfb{bottom:698.152000pt;}
.y5e{bottom:698.222667pt;}
.y1b5{bottom:700.880000pt;}
.yfc{bottom:701.012981pt;}
.y1e8{bottom:703.909333pt;}
.y2a{bottom:704.382667pt;}
.y17f{bottom:707.256000pt;}
.y286{bottom:709.248000pt;}
.y92{bottom:710.976000pt;}
.y15a{bottom:711.241333pt;}
.y12a{bottom:712.385333pt;}
.ydb{bottom:712.442667pt;}
.y24d{bottom:713.233333pt;}
.y5d{bottom:714.960000pt;}
.y1b4{bottom:717.617333pt;}
.y1e7{bottom:719.530667pt;}
.y29{bottom:721.678667pt;}
.y285{bottom:724.590667pt;}
.yda{bottom:727.054667pt;}
.y91{bottom:727.713333pt;}
.y159{bottom:727.978667pt;}
.y24c{bottom:728.576000pt;}
.y5c{bottom:731.697333pt;}
.y1b3{bottom:734.354667pt;}
.y1e6{bottom:735.152000pt;}
.y28{bottom:738.973333pt;}
.y284{bottom:739.933333pt;}
.yd9{bottom:741.666667pt;}
.y24b{bottom:743.918667pt;}
.y90{bottom:744.450667pt;}
.y5b{bottom:748.434667pt;}
.y158{bottom:748.701333pt;}
.y1e5{bottom:750.773333pt;}
.y1b2{bottom:751.092000pt;}
.y2ae{bottom:751.224000pt;}
.y283{bottom:755.276000pt;}
.yd8{bottom:756.277333pt;}
.y17e{bottom:757.866667pt;}
.y24a{bottom:759.261333pt;}
.y8f{bottom:761.186667pt;}
.y157{bottom:762.648000pt;}
.y5a{bottom:765.172000pt;}
.y1e4{bottom:766.394667pt;}
.y2ad{bottom:766.566667pt;}
.y1b1{bottom:767.829333pt;}
.y282{bottom:770.618667pt;}
.yd7{bottom:770.889333pt;}
.y27{bottom:770.940000pt;}
.y17d{bottom:774.604000pt;}
.y8e{bottom:777.924000pt;}
.y59{bottom:781.909333pt;}
.y1b0{bottom:784.566667pt;}
.y26{bottom:785.286667pt;}
.yd6{bottom:785.501333pt;}
.y281{bottom:785.961333pt;}
.y249{bottom:789.946667pt;}
.y1e3{bottom:789.986667pt;}
.y17c{bottom:791.341333pt;}
.y156{bottom:792.536000pt;}
.y8d{bottom:794.661333pt;}
.y58{bottom:798.646667pt;}
.y25{bottom:799.633333pt;}
.yd5{bottom:800.113333pt;}
.y1af{bottom:801.304000pt;}
.y24{bottom:803.490667pt;}
.y248{bottom:805.289333pt;}
.y1e2{bottom:805.608000pt;}
.y17b{bottom:808.078667pt;}
.y155{bottom:809.273333pt;}
.y8c{bottom:811.398667pt;}
.yd4{bottom:814.725333pt;}
.y57{bottom:815.384000pt;}
.y280{bottom:816.646667pt;}
.y23{bottom:817.837333pt;}
.y1ae{bottom:818.041333pt;}
.y247{bottom:820.630667pt;}
.y1e1{bottom:821.229333pt;}
.y17a{bottom:824.816000pt;}
.y154{bottom:826.010667pt;}
.y8b{bottom:828.136000pt;}
.yd3{bottom:829.337333pt;}
.y27f{bottom:831.988000pt;}
.y56{bottom:832.121333pt;}
.y22{bottom:832.182667pt;}
.y1ad{bottom:834.778667pt;}
.y246{bottom:835.973333pt;}
.y1e0{bottom:836.850667pt;}
.y179{bottom:841.553333pt;}
.y153{bottom:842.748000pt;}
.yd2{bottom:843.949333pt;}
.y8a{bottom:844.873333pt;}
.y27e{bottom:847.330667pt;}
.y55{bottom:848.858667pt;}
.y245{bottom:851.316000pt;}
.y1ac{bottom:851.516000pt;}
.y1df{bottom:852.472000pt;}
.y178{bottom:858.290667pt;}
.yd1{bottom:858.561333pt;}
.y152{bottom:859.485333pt;}
.y89{bottom:861.610667pt;}
.y27d{bottom:862.673333pt;}
.y54{bottom:865.596000pt;}
.y244{bottom:866.658667pt;}
.y1de{bottom:868.093333pt;}
.y1ab{bottom:868.253333pt;}
.y21{bottom:869.564000pt;}
.yd0{bottom:873.173333pt;}
.y177{bottom:875.028000pt;}
.y151{bottom:876.222667pt;}
.y27c{bottom:878.016000pt;}
.y88{bottom:878.348000pt;}
.y243{bottom:882.001333pt;}
.y53{bottom:882.333333pt;}
.y1aa{bottom:884.990667pt;}
.y20{bottom:886.301333pt;}
.y1dd{bottom:891.685333pt;}
.y176{bottom:891.765333pt;}
.y150{bottom:892.960000pt;}
.y27b{bottom:893.358667pt;}
.ycf{bottom:894.186667pt;}
.y87{bottom:895.085333pt;}
.y242{bottom:897.344000pt;}
.y52{bottom:899.070667pt;}
.y1a9{bottom:901.728000pt;}
.y1dc{bottom:907.306667pt;}
.y175{bottom:908.501333pt;}
.y27a{bottom:908.701333pt;}
.y14f{bottom:909.697333pt;}
.y86{bottom:911.822667pt;}
.y241{bottom:912.686667pt;}
.yce{bottom:915.201333pt;}
.y51{bottom:915.808000pt;}
.y1a8{bottom:918.464000pt;}
.y1f{bottom:921.785333pt;}
.y1db{bottom:922.928000pt;}
.y279{bottom:924.044000pt;}
.y174{bottom:925.238667pt;}
.y14e{bottom:926.434667pt;}
.y240{bottom:928.029333pt;}
.y85{bottom:928.560000pt;}
.y50{bottom:932.545333pt;}
.y1a7{bottom:935.201333pt;}
.ycd{bottom:936.214667pt;}
.y1da{bottom:938.549333pt;}
.y278{bottom:939.386667pt;}
.y173{bottom:941.976000pt;}
.y14d{bottom:943.172000pt;}
.y23f{bottom:943.370667pt;}
.y84{bottom:945.297333pt;}
.y1e{bottom:946.892000pt;}
.y4f{bottom:949.282667pt;}
.y1a6{bottom:951.938667pt;}
.y1d9{bottom:954.170667pt;}
.y277{bottom:954.729333pt;}
.y172{bottom:958.713333pt;}
.y14c{bottom:959.909333pt;}
.y83{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.ycc{bottom:966.977333pt;}
.y1a5{bottom:968.676000pt;}
.y1d8{bottom:969.792000pt;}
.y276{bottom:970.070667pt;}
.y1d{bottom:971.997333pt;}
.y23e{bottom:974.056000pt;}
.y14b{bottom:976.646667pt;}
.y171{bottom:979.436000pt;}
.y4d{bottom:982.757333pt;}
.ycb{bottom:984.073333pt;}
.y1a4{bottom:985.413333pt;}
.yb8{bottom:987.578667pt;}
.y14a{bottom:993.384000pt;}
.y19{bottom:1010.652000pt;}
.y4c{bottom:1038.548000pt;}
.y149{bottom:1041.204000pt;}
.hd{height:24.466203pt;}
.h1b{height:26.890973pt;}
.h10{height:27.184641pt;}
.h9{height:27.672303pt;}
.h2{height:32.284045pt;}
.h15{height:33.223125pt;}
.hb{height:34.574438pt;}
.h4{height:35.024664pt;}
.h11{height:35.051460pt;}
.h17{height:35.940266pt;}
.h13{height:35.998911pt;}
.h5{height:36.445809pt;}
.h1e{height:36.558765pt;}
.h1c{height:36.564098pt;}
.ha{height:36.896250pt;}
.he{height:38.415786pt;}
.h6{height:38.947124pt;}
.h16{height:40.295156pt;}
.hc{height:41.508454pt;}
.h14{height:44.596164pt;}
.h3{height:45.272024pt;}
.hf{height:46.120196pt;}
.h8{height:48.486756pt;}
.h1d{height:53.537378pt;}
.h7{height:69.148877pt;}
.h18{height:297.889333pt;}
.h12{height:305.453333pt;}
.h19{height:793.701333pt;}
.h1a{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w4{width:413.672000pt;}
.w3{width:421.234667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w5{width:1122.520000pt;}
.w6{width:1122.666667pt;}
.x70{left:-170.500780pt;}
.x72{left:-6.990689pt;}
.x0{left:0.000000pt;}
.x74{left:19.729925pt;}
.x1{left:47.621333pt;}
.x2{left:52.456952pt;}
.x6e{left:55.592000pt;}
.xa3{left:61.134667pt;}
.x8b{left:64.538667pt;}
.xa6{left:65.834667pt;}
.x79{left:66.822667pt;}
.xaa{left:68.052000pt;}
.xa8{left:70.568000pt;}
.xa7{left:71.529333pt;}
.xa9{left:75.988000pt;}
.xa4{left:77.606667pt;}
.x6f{left:79.502667pt;}
.x93{left:81.661333pt;}
.x80{left:82.634667pt;}
.x84{left:84.852000pt;}
.x90{left:85.929333pt;}
.x82{left:87.368000pt;}
.x81{left:88.329333pt;}
.x92{left:90.388000pt;}
.x8f{left:91.328000pt;}
.x83{left:92.788000pt;}
.x7f{left:93.728000pt;}
.x91{left:95.190667pt;}
.x7d{left:96.145333pt;}
.x7e{left:97.712000pt;}
.x94{left:100.122667pt;}
.x85{left:102.524000pt;}
.xa5{left:148.784000pt;}
.x8e{left:177.582667pt;}
.x7c{left:182.384000pt;}
.xb1{left:211.989333pt;}
.x4f{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x4{left:239.776000pt;}
.xd{left:250.204000pt;}
.x39{left:261.514667pt;}
.x3f{left:262.685333pt;}
.xb{left:266.070667pt;}
.x6c{left:267.038667pt;}
.x86{left:272.526667pt;}
.x6{left:273.752000pt;}
.x3a{left:274.798667pt;}
.xc{left:275.904000pt;}
.xa0{left:276.985333pt;}
.x40{left:279.356000pt;}
.x2c{left:282.229333pt;}
.x95{left:284.974667pt;}
.x50{left:286.565333pt;}
.x6d{left:287.914667pt;}
.x41{left:292.640000pt;}
.x2d{left:295.513333pt;}
.x12{left:301.394667pt;}
.x54{left:303.017333pt;}
.x8d{left:305.116000pt;}
.x13{left:308.036000pt;}
.x7b{left:309.916000pt;}
.x66{left:311.300000pt;}
.x32{left:314.273333pt;}
.x9f{left:320.594667pt;}
.x20{left:323.133333pt;}
.x67{left:324.584000pt;}
.x68{left:327.970667pt;}
.x21{left:329.776000pt;}
.xa2{left:331.010667pt;}
.x99{left:334.125333pt;}
.x5f{left:335.446667pt;}
.x16{left:338.506667pt;}
.x69{left:341.254667pt;}
.x17{left:345.148000pt;}
.x9a{left:347.409333pt;}
.x60{left:348.730667pt;}
.x9e{left:350.060000pt;}
.x42{left:354.353333pt;}
.x77{left:361.180000pt;}
.x43{left:367.637333pt;}
.x44{left:370.892000pt;}
.x78{left:372.105333pt;}
.x4b{left:381.784000pt;}
.x45{left:384.174667pt;}
.x37{left:387.393333pt;}
.x3d{left:389.240000pt;}
.x52{left:390.504000pt;}
.x6a{left:392.148000pt;}
.x61{left:396.066667pt;}
.x38{left:400.677333pt;}
.x3e{left:402.524000pt;}
.x53{left:403.786667pt;}
.x6b{left:405.432000pt;}
.x62{left:409.821333pt;}
.x73{left:419.708795pt;}
.x35{left:423.398667pt;}
.x71{left:427.214493pt;}
.xa1{left:432.642667pt;}
.x87{left:434.708000pt;}
.x36{left:436.681333pt;}
.x2e{left:439.326667pt;}
.x63{left:442.029333pt;}
.x2f{left:452.609333pt;}
.x1a{left:458.340000pt;}
.x1b{left:464.981333pt;}
.x55{left:475.545333pt;}
.x96{left:483.714667pt;}
.x46{left:485.820000pt;}
.x1c{left:486.825333pt;}
.x56{left:488.829333pt;}
.x57{left:492.216000pt;}
.x1d{left:493.466667pt;}
.x97{left:495.086667pt;}
.x47{left:499.104000pt;}
.x64{left:503.732000pt;}
.x58{left:505.500000pt;}
.x65{left:512.273333pt;}
.x3b{left:520.808000pt;}
.x9c{left:528.197333pt;}
.x18{left:530.417333pt;}
.x3c{left:534.090667pt;}
.x19{left:537.060000pt;}
.x30{left:539.088000pt;}
.x8c{left:542.133333pt;}
.x7a{left:544.533333pt;}
.x89{left:548.666667pt;}
.x31{left:552.370667pt;}
.x8a{left:559.592000pt;}
.x9d{left:562.682667pt;}
.x4c{left:565.093333pt;}
.x10{left:569.745333pt;}
.x9b{left:573.026667pt;}
.x11{left:576.386667pt;}
.x4d{left:578.377333pt;}
.x48{left:580.380000pt;}
.x98{left:588.272000pt;}
.x49{left:593.664000pt;}
.xe{left:595.688000pt;}
.x4a{left:596.958667pt;}
.x22{left:600.925333pt;}
.xf{left:602.329333pt;}
.x23{left:607.568000pt;}
.x24{left:610.854667pt;}
.x25{left:617.497333pt;}
.x51{left:619.561333pt;}
.x75{left:638.986667pt;}
.x59{left:645.773333pt;}
.x76{left:649.912000pt;}
.xaf{left:650.925333pt;}
.xb0{left:654.805333pt;}
.x1e{left:655.774667pt;}
.x2b{left:657.128000pt;}
.x5a{left:659.056000pt;}
.x1f{left:662.417333pt;}
.xab{left:666.130667pt;}
.x14{left:669.758667pt;}
.x26{left:671.450667pt;}
.x33{left:672.496000pt;}
.x88{left:675.093333pt;}
.x15{left:676.401333pt;}
.x5b{left:678.914667pt;}
.x7{left:680.330667pt;}
.x27{left:684.733333pt;}
.x34{left:685.780000pt;}
.xac{left:690.040000pt;}
.x5c{left:692.198667pt;}
.x5d{left:695.486667pt;}
.xae{left:696.890667pt;}
.x4e{left:699.629333pt;}
.x5e{left:708.769333pt;}
.x28{left:710.172000pt;}
.x9{left:713.069333pt;}
.xad{left:720.905333pt;}
.xa{left:722.902667pt;}
.x29{left:726.842667pt;}
.x2a{left:740.126667pt;}
.x8{left:744.744000pt;}
}




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