
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_8e2314c673ddb7239dce66ff.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_caaa4313bb468dfa8ac78d7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_d8640378e61c0700321a0d6a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_acc28a29be960508fe980238.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_33aa40d007a71084bd3ce7fd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_52c15d634d76760b290bfa7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.761000;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_6819acc9eb8d0c5507c9e57d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_63d764d8f1e4eb8bd5705dfc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773000;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_1b7483ad812a83cd7a7dd595.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.486000;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_afd96bcf5411eed3fc99e8ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.726000;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_a57485a0f5f674f4ac7e5b5c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.663000;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:fff;src:url('chunks/assets/font_45d74e93078450ac3b310597.woff2')format("woff");}.fff{font-family:fff;line-height:0.667000;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;}
.m5{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);}
.me{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);}
.m1b{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);}
.m28{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);}
.m1e{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);}
.m23{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);}
.m1c{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);}
.m25{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.mf{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);}
.m19{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);}
.m1a{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);}
.m24{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);}
.mc{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);}
.m7{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);}
.m2{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);}
.m18{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);}
.m6{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);}
.m20{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);}
.m8{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);}
.md{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);}
.m1d{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);}
.m29{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);}
.m21{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);}
.m12{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);}
.ma{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);}
.m13{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);}
.m22{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);}
.m9{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);}
.m3{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);}
.m15{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);}
.m26{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);}
.m16{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);}
.m14{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);}
.m27{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);}
.m17{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);}
.m1f{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:23.910000px;}
.v4{vertical-align:32.874000px;}
.ls9{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000705px;}
.ls3a{letter-spacing:0.000800px;}
.ls3e{letter-spacing:0.001074px;}
.ls45{letter-spacing:0.001155px;}
.ls16{letter-spacing:0.001200px;}
.lsa{letter-spacing:0.001298px;}
.ls44{letter-spacing:0.001651px;}
.ls15{letter-spacing:0.001702px;}
.ls4b{letter-spacing:0.002460px;}
.ls3b{letter-spacing:0.002544px;}
.ls4c{letter-spacing:0.002856px;}
.ls40{letter-spacing:0.004800px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls1{letter-spacing:10.461300px;}
.ls14{letter-spacing:10.461403px;}
.ls35{letter-spacing:11.951700px;}
.ls7{letter-spacing:11.954850px;}
.ls39{letter-spacing:11.955746px;}
.ls34{letter-spacing:11.955787px;}
.ls17{letter-spacing:12.530693px;}
.ls3d{letter-spacing:13.280370px;}
.ls49{letter-spacing:13.406974px;}
.ls42{letter-spacing:13.433517px;}
.ls33{letter-spacing:13.444090px;}
.ls3c{letter-spacing:13.448400px;}
.ls12{letter-spacing:13.450090px;}
.ls3f{letter-spacing:13.454400px;}
.ls47{letter-spacing:13.484135px;}
.ls4a{letter-spacing:13.508146px;}
.ls2f{letter-spacing:13.514241px;}
.ls2e{letter-spacing:13.515787px;}
.ls41{letter-spacing:13.529252px;}
.ls1c{letter-spacing:13.564766px;}
.ls43{letter-spacing:13.571591px;}
.ls20{letter-spacing:13.696652px;}
.ls25{letter-spacing:14.042317px;}
.ls10{letter-spacing:14.640873px;}
.ls30{letter-spacing:14.652562px;}
.ls31{letter-spacing:14.657476px;}
.ls37{letter-spacing:14.717569px;}
.ls38{letter-spacing:14.800375px;}
.ls28{letter-spacing:14.894178px;}
.ls11{letter-spacing:14.902629px;}
.ls13{letter-spacing:14.943900px;}
.lsb{letter-spacing:14.944200px;}
.ls32{letter-spacing:14.944766px;}
.ls2c{letter-spacing:14.947119px;}
.ls2b{letter-spacing:14.953002px;}
.ls1b{letter-spacing:14.957537px;}
.ls1a{letter-spacing:14.963562px;}
.ls22{letter-spacing:15.006215px;}
.ls23{letter-spacing:15.012251px;}
.ls1d{letter-spacing:15.018033px;}
.ls24{letter-spacing:15.079918px;}
.ls18{letter-spacing:15.222083px;}
.ls19{letter-spacing:15.228181px;}
.ls1f{letter-spacing:15.302554px;}
.ls1e{letter-spacing:15.305943px;}
.ls2d{letter-spacing:15.306318px;}
.lsc{letter-spacing:16.147119px;}
.ls36{letter-spacing:16.270649px;}
.ls46{letter-spacing:16.444518px;}
.lsd{letter-spacing:17.294178px;}
.ls21{letter-spacing:17.633802px;}
.lsf{letter-spacing:18.876531px;}
.lse{letter-spacing:18.882413px;}
.ls29{letter-spacing:19.029472px;}
.ls2a{letter-spacing:19.035355px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls27{letter-spacing:346.187222px;}
.ls26{letter-spacing:346.192090px;}
.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;}
}
.ws6c{word-spacing:-13.449600px;}
.ws26{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws6f{word-spacing:-3.526760px;}
.ws7d{word-spacing:-3.227882px;}
.ws24{word-spacing:-2.869229px;}
.ws4a{word-spacing:-2.749678px;}
.ws95{word-spacing:-2.630126px;}
.ws72{word-spacing:-2.468725px;}
.wsa3{word-spacing:-1.990541px;}
.ws43{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws78{word-spacing:-1.865003px;}
.ws8e{word-spacing:-1.853044px;}
.ws44{word-spacing:-1.793268px;}
.wsa4{word-spacing:-1.775347px;}
.ws3f{word-spacing:-1.733492px;}
.wsda{word-spacing:-1.613952px;}
.ws98{word-spacing:-1.613941px;}
.ws2f{word-spacing:-1.554166px;}
.ws8d{word-spacing:-1.494390px;}
.ws25{word-spacing:-1.434614px;}
.ws54{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws5d{word-spacing:-1.315063px;}
.ws2d{word-spacing:-1.255288px;}
.ws47{word-spacing:-1.195512px;}
.ws7{word-spacing:-1.171598px;}
.ws2e{word-spacing:-1.135736px;}
.ws9{word-spacing:-1.046070px;}
.ws41{word-spacing:-1.016185px;}
.ws4c{word-spacing:-0.956410px;}
.ws7a{word-spacing:-0.896634px;}
.wsbf{word-spacing:-0.860774px;}
.ws7e{word-spacing:-0.777083px;}
.ws51{word-spacing:-0.657532px;}
.wsdc{word-spacing:-0.645581px;}
.ws30{word-spacing:-0.597756px;}
.ws2c{word-spacing:-0.537980px;}
.ws36{word-spacing:-0.418429px;}
.ws71{word-spacing:-0.418428px;}
.ws21{word-spacing:-0.358654px;}
.wsd4{word-spacing:-0.322790px;}
.ws22{word-spacing:-0.298878px;}
.wsc7{word-spacing:-0.268992px;}
.ws1f{word-spacing:-0.239102px;}
.wsbc{word-spacing:-0.215194px;}
.ws70{word-spacing:-0.209214px;}
.ws29{word-spacing:-0.179327px;}
.wsa2{word-spacing:-0.161395px;}
.ws2b{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.053798px;}
.wsd0{word-spacing:-0.026410px;}
.wsab{word-spacing:-0.017261px;}
.wsc0{word-spacing:-0.009696px;}
.wscb{word-spacing:-0.009677px;}
.wsa8{word-spacing:-0.008947px;}
.wsbd{word-spacing:-0.007325px;}
.wsc4{word-spacing:-0.006422px;}
.wsdf{word-spacing:-0.006288px;}
.wsaa{word-spacing:-0.006086px;}
.wsce{word-spacing:-0.004550px;}
.wsc9{word-spacing:-0.004061px;}
.ws5{word-spacing:-0.003882px;}
.wsb7{word-spacing:-0.003466px;}
.wsde{word-spacing:-0.002630px;}
.ws12{word-spacing:-0.002083px;}
.wsc6{word-spacing:-0.001210px;}
.wsd5{word-spacing:-0.000845px;}
.wsd1{word-spacing:-0.000682px;}
.ws3{word-spacing:0.000000px;}
.ws17{word-spacing:0.053798px;}
.ws35{word-spacing:0.059776px;}
.wsac{word-spacing:0.090181px;}
.ws79{word-spacing:0.095641px;}
.ws1c{word-spacing:0.107597px;}
.ws2a{word-spacing:0.119551px;}
.ws1d{word-spacing:0.161395px;}
.ws20{word-spacing:0.179327px;}
.wsa9{word-spacing:0.209711px;}
.wsd9{word-spacing:0.214804px;}
.ws1a{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.ws75{word-spacing:0.268992px;}
.ws40{word-spacing:0.298878px;}
.wsa0{word-spacing:0.322790px;}
.ws60{word-spacing:0.358654px;}
.ws9d{word-spacing:0.418429px;}
.ws5c{word-spacing:0.478205px;}
.wsb4{word-spacing:0.484186px;}
.ws7f{word-spacing:0.523418px;}
.ws84{word-spacing:0.537980px;}
.ws74{word-spacing:0.597756px;}
.wsc3{word-spacing:0.645581px;}
.ws96{word-spacing:0.657532px;}
.ws52{word-spacing:0.717307px;}
.wsad{word-spacing:0.753178px;}
.ws6e{word-spacing:0.777083px;}
.ws97{word-spacing:0.836858px;}
.wsdb{word-spacing:0.860774px;}
.wsa1{word-spacing:0.914573px;}
.ws8{word-spacing:1.004227px;}
.ws37{word-spacing:1.016185px;}
.ws64{word-spacing:1.075961px;}
.ws69{word-spacing:1.135736px;}
.ws66{word-spacing:1.195512px;}
.ws48{word-spacing:1.255288px;}
.ws63{word-spacing:1.315063px;}
.ws55{word-spacing:1.374839px;}
.ws6a{word-spacing:1.434614px;}
.wsd7{word-spacing:1.447997px;}
.wsd8{word-spacing:1.452557px;}
.ws34{word-spacing:1.554166px;}
.ws32{word-spacing:1.613941px;}
.ws65{word-spacing:1.673717px;}
.ws68{word-spacing:1.733492px;}
.ws18{word-spacing:1.775347px;}
.ws49{word-spacing:1.793268px;}
.wsb6{word-spacing:1.936742px;}
.ws3e{word-spacing:2.032370px;}
.ws4e{word-spacing:2.092146px;}
.ws62{word-spacing:2.151922px;}
.ws4b{word-spacing:2.211697px;}
.ws88{word-spacing:2.271473px;}
.ws39{word-spacing:2.331248px;}
.ws16{word-spacing:2.367130px;}
.ws4f{word-spacing:2.391024px;}
.ws93{word-spacing:2.450800px;}
.wsc5{word-spacing:2.474726px;}
.ws4{word-spacing:2.510568px;}
.ws31{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws6d{word-spacing:2.534492px;}
.ws87{word-spacing:2.689902px;}
.wsbe{word-spacing:2.689920px;}
.ws9e{word-spacing:2.743718px;}
.ws5a{word-spacing:2.749678px;}
.wsc1{word-spacing:2.797517px;}
.ws58{word-spacing:2.809453px;}
.ws28{word-spacing:2.869229px;}
.ws15{word-spacing:2.869236px;}
.wsd3{word-spacing:3.012710px;}
.wsae{word-spacing:3.066509px;}
.ws9f{word-spacing:3.120307px;}
.wsc2{word-spacing:3.218688px;}
.wsca{word-spacing:3.219658px;}
.wsc8{word-spacing:3.220454px;}
.wsdd{word-spacing:3.221856px;}
.wsaf{word-spacing:3.222518px;}
.wsd6{word-spacing:3.223853px;}
.wsb8{word-spacing:3.224035px;}
.wsb1{word-spacing:3.226118px;}
.ws56{word-spacing:3.227882px;}
.wsb0{word-spacing:3.227904px;}
.ws80{word-spacing:3.287658px;}
.wsbb{word-spacing:3.335501px;}
.ws45{word-spacing:3.347434px;}
.ws99{word-spacing:3.407209px;}
.wscf{word-spacing:3.443098px;}
.wsa6{word-spacing:3.496896px;}
.ws1e{word-spacing:3.586536px;}
.wsb2{word-spacing:3.604493px;}
.wsb3{word-spacing:3.658291px;}
.ws3d{word-spacing:3.706087px;}
.ws5f{word-spacing:3.765863px;}
.wsa5{word-spacing:3.819686px;}
.ws8a{word-spacing:3.825638px;}
.ws94{word-spacing:3.885414px;}
.wscd{word-spacing:3.927283px;}
.ws67{word-spacing:3.945190px;}
.wsb9{word-spacing:4.034880px;}
.ws3b{word-spacing:4.064741px;}
.ws83{word-spacing:4.124516px;}
.ws86{word-spacing:4.160392px;}
.ws5b{word-spacing:4.184292px;}
.ws8b{word-spacing:4.244068px;}
.ws46{word-spacing:4.303843px;}
.wsa7{word-spacing:4.303872px;}
.ws89{word-spacing:4.423394px;}
.ws59{word-spacing:4.483170px;}
.ws50{word-spacing:4.602721px;}
.wsf{word-spacing:4.770079px;}
.ws10{word-spacing:4.853765px;}
.ws3c{word-spacing:5.140702px;}
.ws42{word-spacing:5.200477px;}
.ws92{word-spacing:5.260253px;}
.ws38{word-spacing:5.499355px;}
.ws8c{word-spacing:5.618906px;}
.ws90{word-spacing:5.678682px;}
.ws33{word-spacing:5.858009px;}
.ws8f{word-spacing:5.917784px;}
.ws27{word-spacing:5.977560px;}
.wscc{word-spacing:6.025421px;}
.ws4d{word-spacing:6.037336px;}
.ws9c{word-spacing:6.156887px;}
.ws5e{word-spacing:6.395989px;}
.ws61{word-spacing:6.515540px;}
.ws57{word-spacing:6.694867px;}
.wsb5{word-spacing:6.832397px;}
.ws9b{word-spacing:7.053521px;}
.ws53{word-spacing:7.113296px;}
.ws9a{word-spacing:7.412174px;}
.wsd{word-spacing:7.782761px;}
.ws91{word-spacing:8.129482px;}
.wsd2{word-spacing:10.705882px;}
.wsb{word-spacing:12.176255px;}
.wsc{word-spacing:16.109478px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws3a{word-spacing:28.034756px;}
.wsba{word-spacing:48.418560px;}
.ws13{word-spacing:54.988186px;}
.ws73{word-spacing:217.675451px;}
.ws7b{word-spacing:270.767347px;}
.ws7c{word-spacing:297.612749px;}
.ws77{word-spacing:472.497888px;}
.ws82{word-spacing:642.297888px;}
.ws81{word-spacing:655.903133px;}
.ws76{word-spacing:692.101133px;}
.ws85{word-spacing:728.697888px;}
.ws6b{word-spacing:998.581133px;}
._a{margin-left:-9.683712px;}
._ab{margin-left:-7.703485px;}
._c{margin-left:-6.635392px;}
._4{margin-left:-4.644551px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._7{width:2.301354px;}
._d{width:3.678613px;}
._3c{width:7.782761px;}
._9{width:8.797222px;}
._5{width:11.133370px;}
._3{width:12.301783px;}
._16{width:13.995058px;}
._11{width:15.258136px;}
._f{width:16.354714px;}
._15{width:17.693578px;}
._10{width:18.709763px;}
._17{width:19.912842px;}
._19{width:20.913893px;}
._e{width:22.433933px;}
._1a{width:24.318290px;}
._6{width:25.950018px;}
._14{width:27.676103px;}
._b1{width:29.524451px;}
._8{width:30.587087px;}
._aa{width:31.920170px;}
._b{width:33.355008px;}
._ad{width:34.550297px;}
._18{width:35.566482px;}
._1c{width:37.484965px;}
._1b{width:39.093242px;}
._ac{width:43.763306px;}
._b2{width:61.868160px;}
._8c{width:119.809037px;}
._8d{width:128.793370px;}
._96{width:134.011814px;}
._7f{width:141.435994px;}
._93{width:147.461414px;}
._80{width:150.366528px;}
._38{width:160.882670px;}
._9e{width:163.009152px;}
._85{width:168.603907px;}
._9f{width:171.993485px;}
._90{width:174.414413px;}
._a5{width:177.265728px;}
._92{width:187.864013px;}
._83{width:189.262771px;}
._9c{width:200.345520px;}
._8a{width:202.227907px;}
._a4{width:204.111130px;}
._82{width:209.921635px;}
._88{width:215.729117px;}
._3a{width:216.923342px;}
._a8{width:224.549461px;}
._3e{width:228.137023px;}
._a2{width:231.064128px;}
._47{width:233.031292px;}
._3d{width:243.817135px;}
._41{width:254.099560px;}
._3b{width:258.755875px;}
._43{width:263.984093px;}
._42{width:268.461140px;}
._46{width:269.970592px;}
._a7{width:273.242074px;}
._40{width:278.736634px;}
._af{width:280.172717px;}
._75{width:284.216947px;}
._84{width:285.398746px;}
._b0{width:286.808717px;}
._3f{width:290.137975px;}
._76{width:297.612749px;}
._87{width:303.904694px;}
._a9{width:309.036198px;}
._79{width:311.062349px;}
._7b{width:323.615398px;}
._70{width:325.014023px;}
._89{width:327.952349px;}
._7d{width:331.236749px;}
._8f{width:343.610381px;}
._61{width:352.433318px;}
._78{width:356.091610px;}
._4c{width:361.955635px;}
._74{width:374.221670px;}
._4b{width:375.405235px;}
._98{width:382.937011px;}
._5b{width:388.854835px;}
._7a{width:392.136538px;}
._91{width:396.386611px;}
._9b{width:400.206298px;}
._6b{width:401.336064px;}
._66{width:404.510170px;}
._9d{width:409.190630px;}
._57{width:415.754035px;}
._a1{width:419.161223px;}
._a3{width:422.209843px;}
._8b{width:425.608124px;}
._54{width:429.203635px;}
._12{width:431.580915px;}
._77{width:433.446235px;}
._49{width:439.766010px;}
._58{width:443.376554px;}
._50{width:456.102835px;}
._67{width:465.409958px;}
._73{width:468.315072px;}
._6e{width:478.482970px;}
._6c{width:491.932570px;}
._7e{width:503.727193px;}
._72{width:505.382170px;}
._7c{width:508.610074px;}
._5a{width:509.827115px;}
._5c{width:512.678430px;}
._69{width:518.885568px;}
._6a{width:520.338125px;}
._5e{width:535.832064px;}
._55{width:562.408474px;}
._59{width:584.412019px;}
._37{width:595.506730px;}
._62{width:606.415565px;}
._60{width:614.462995px;}
._65{width:624.169037px;}
._5d{width:635.161799px;}
._52{width:649.346688px;}
._53{width:657.553903px;}
._4e{width:660.913344px;}
._56{width:662.634893px;}
._63{width:672.211008px;}
._51{width:673.394573px;}
._4a{width:679.419994px;}
._64{width:680.711155px;}
._4d{width:703.467878px;}
._6d{width:706.606074px;}
._6f{width:709.600896px;}
._5f{width:717.939648px;}
._44{width:719.242876px;}
._68{width:725.018707px;}
._4f{width:731.389248px;}
._71{width:733.505274px;}
._ae{width:824.514278px;}
._25{width:872.605607px;}
._28{width:892.710328px;}
._30{width:896.335142px;}
._2f{width:914.787994px;}
._26{width:937.975104px;}
._29{width:946.475251px;}
._22{width:952.316947px;}
._2a{width:955.782374px;}
._21{width:959.978650px;}
._31{width:968.855386px;}
._2c{width:979.292275px;}
._32{width:983.318909px;}
._1d{width:994.302029px;}
._20{width:999.628070px;}
._2e{width:1007.482637px;}
._2b{width:1010.495347px;}
._1e{width:1012.808678px;}
._34{width:1016.843558px;}
._24{width:1020.824640px;}
._33{width:1024.106342px;}
._23{width:1025.774093px;}
._35{width:1027.979827px;}
._2d{width:1036.802765px;}
._1f{width:1070.480563px;}
._27{width:1082.477606px;}
._39{width:1163.063543px;}
._8e{width:1311.748387px;}
._97{width:1317.397680px;}
._94{width:1382.224195px;}
._95{width:1384.889866px;}
._9a{width:1402.910794px;}
._99{width:1423.085981px;}
._a6{width:1443.519936px;}
._a0{width:1553.027222px;}
._81{width:1591.606339px;}
._86{width:1631.852746px;}
._48{width:2008.926250px;}
._13{width:2032.836250px;}
._45{width:3486.906250px;}
._36{width:3510.816250px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(40,82,46);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs8{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs7{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:49.829400px;}
.fsa{font-size:53.798400px;}
.fs3{font-size:56.694600px;}
.fs5{font-size:59.775600px;}
.fs4{font-size:60.474240px;}
.fs6{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y22{bottom:6.350457px;}
.y2{bottom:14.151273px;}
.y21{bottom:20.308195px;}
.y51{bottom:31.890000px;}
.y20{bottom:37.114269px;}
.y16e{bottom:93.310500px;}
.y2ac{bottom:94.654500px;}
.y50{bottom:103.621500px;}
.y1e{bottom:104.646000px;}
.yaf{bottom:105.399000px;}
.ye0{bottom:106.296000px;}
.y88{bottom:107.641500px;}
.y32f{bottom:110.629500px;}
.y16d{bottom:112.140000px;}
.y2ab{bottom:113.484000px;}
.y372{bottom:115.390500px;}
.y112{bottom:121.090500px;}
.y4f{bottom:122.449500px;}
.y1d{bottom:122.535000px;}
.yae{bottom:124.228500px;}
.y3a7{bottom:124.752000px;}
.ydf{bottom:125.125500px;}
.y87{bottom:126.471000px;}
.y32e{bottom:129.459000px;}
.y16c{bottom:130.969500px;}
.y2aa{bottom:132.313500px;}
.y371{bottom:132.651000px;}
.y1c1{bottom:134.416500px;}
.y341{bottom:137.439000px;}
.y111{bottom:139.920000px;}
.y1c{bottom:140.422500px;}
.y4e{bottom:141.279000px;}
.y3a6{bottom:142.012500px;}
.yad{bottom:143.058000px;}
.yde{bottom:143.955000px;}
.y1b2{bottom:144.183000px;}
.y86{bottom:145.300500px;}
.y1bf{bottom:146.371500px;}
.y32d{bottom:148.288500px;}
.y16b{bottom:149.799000px;}
.y370{bottom:149.911500px;}
.y2a9{bottom:151.143000px;}
.y340{bottom:155.014500px;}
.y1b1{bottom:156.138000px;}
.y1b{bottom:158.310000px;}
.y1c0{bottom:158.326500px;}
.y110{bottom:158.749500px;}
.y3a5{bottom:159.273000px;}
.y278{bottom:159.346500px;}
.y4d{bottom:160.108500px;}
.yac{bottom:161.887500px;}
.ydd{bottom:162.784500px;}
.y85{bottom:164.130000px;}
.y32c{bottom:167.118000px;}
.y36f{bottom:167.172000px;}
.y1b0{bottom:168.093000px;}
.y2a8{bottom:169.972500px;}
.y1be{bottom:170.281500px;}
.y33f{bottom:172.588500px;}
.y277{bottom:175.783500px;}
.y16a{bottom:176.100000px;}
.y1a{bottom:176.199000px;}
.y3a4{bottom:176.533500px;}
.y10f{bottom:177.579000px;}
.y4c{bottom:178.938000px;}
.yab{bottom:180.717000px;}
.ydc{bottom:181.614000px;}
.y1bc{bottom:182.236500px;}
.y84{bottom:182.959500px;}
.y36e{bottom:184.432500px;}
.y32b{bottom:185.947500px;}
.y1af{bottom:187.521000px;}
.y2a7{bottom:188.802000px;}
.y33e{bottom:190.162500px;}
.y276{bottom:192.222000px;}
.y3a3{bottom:193.794000px;}
.y19{bottom:194.086500px;}
.y1bd{bottom:194.191500px;}
.y169{bottom:194.929500px;}
.y10e{bottom:196.408500px;}
.y202{bottom:197.481000px;}
.y4b{bottom:197.767500px;}
.y1ae{bottom:199.476000px;}
.yaa{bottom:199.546500px;}
.ydb{bottom:200.443500px;}
.y36d{bottom:201.691500px;}
.y83{bottom:201.789000px;}
.y32a{bottom:204.777000px;}
.y1bb{bottom:206.148000px;}
.y2a6{bottom:207.631500px;}
.y33d{bottom:207.736500px;}
.y275{bottom:208.660500px;}
.y200{bottom:209.436000px;}
.y3a2{bottom:211.053000px;}
.y1ad{bottom:211.431000px;}
.y18{bottom:211.974000px;}
.y168{bottom:213.759000px;}
.y10d{bottom:215.238000px;}
.y4a{bottom:216.597000px;}
.y1b9{bottom:218.103000px;}
.ya9{bottom:218.376000px;}
.y36c{bottom:218.952000px;}
.yda{bottom:219.273000px;}
.y82{bottom:220.618500px;}
.y139{bottom:220.794000px;}
.y201{bottom:221.391000px;}
.y329{bottom:223.606500px;}
.y274{bottom:225.099000px;}
.y33c{bottom:225.310500px;}
.y2a5{bottom:226.461000px;}
.y3a1{bottom:228.313500px;}
.y17{bottom:229.863000px;}
.y1ba{bottom:230.058000px;}
.y1ac{bottom:230.857500px;}
.y167{bottom:232.588500px;}
.y1ff{bottom:233.346000px;}
.y10c{bottom:234.067500px;}
.y49{bottom:235.426500px;}
.y36b{bottom:236.212500px;}
.ya8{bottom:237.205500px;}
.y138{bottom:237.232500px;}
.yd9{bottom:238.102500px;}
.y81{bottom:239.446500px;}
.y273{bottom:241.537500px;}
.y1b8{bottom:242.013000px;}
.y328{bottom:242.436000px;}
.y1ab{bottom:242.812500px;}
.y2a4{bottom:245.290500px;}
.y1fd{bottom:245.301000px;}
.y3a0{bottom:245.574000px;}
.y166{bottom:251.418000px;}
.y10b{bottom:252.897000px;}
.y36a{bottom:253.473000px;}
.y137{bottom:253.671000px;}
.y1b6{bottom:253.968000px;}
.y48{bottom:254.256000px;}
.y1aa{bottom:254.767500px;}
.ya7{bottom:256.035000px;}
.yd8{bottom:256.932000px;}
.y1fe{bottom:257.256000px;}
.y272{bottom:257.976000px;}
.y80{bottom:258.276000px;}
.y33b{bottom:260.817000px;}
.y327{bottom:261.265500px;}
.y39f{bottom:262.834500px;}
.y2a3{bottom:264.120000px;}
.y1b7{bottom:265.923000px;}
.y1a9{bottom:266.724000px;}
.y229{bottom:269.035500px;}
.y1fc{bottom:269.211000px;}
.y136{bottom:270.109500px;}
.y165{bottom:270.247500px;}
.y369{bottom:270.733500px;}
.y10a{bottom:271.726500px;}
.y47{bottom:273.085500px;}
.y271{bottom:274.414500px;}
.ya6{bottom:274.864500px;}
.yd7{bottom:275.761500px;}
.y7f{bottom:277.105500px;}
.y1b5{bottom:277.878000px;}
.y2d9{bottom:278.329500px;}
.y1a8{bottom:278.679000px;}
.y33a{bottom:279.646500px;}
.y326{bottom:280.095000px;}
.y228{bottom:280.990500px;}
.y1fa{bottom:281.166000px;}
.y2a2{bottom:282.949500px;}
.y1e4{bottom:283.461000px;}
.y135{bottom:286.548000px;}
.y368{bottom:287.994000px;}
.y164{bottom:289.077000px;}
.y1b3{bottom:289.833000px;}
.y109{bottom:290.556000px;}
.y1a7{bottom:290.634000px;}
.y270{bottom:290.853000px;}
.y46{bottom:291.915000px;}
.y227{bottom:292.945500px;}
.y1fb{bottom:293.121000px;}
.y235{bottom:293.640000px;}
.ya5{bottom:293.694000px;}
.yd6{bottom:294.591000px;}
.y1e3{bottom:295.416000px;}
.y7e{bottom:295.935000px;}
.y2d8{bottom:296.809500px;}
.y39e{bottom:297.355500px;}
.y339{bottom:298.476000px;}
.y325{bottom:298.924500px;}
.y16{bottom:300.154500px;}
.y2a1{bottom:301.779000px;}
.y1b4{bottom:301.788000px;}
.y134{bottom:302.986500px;}
.y226{bottom:304.900500px;}
.y1f9{bottom:305.077500px;}
.y367{bottom:305.254500px;}
.y233{bottom:305.595000px;}
.y26f{bottom:307.291500px;}
.y108{bottom:309.385500px;}
.y1a6{bottom:310.060500px;}
.ya4{bottom:312.523500px;}
.y2d7{bottom:313.248000px;}
.yd5{bottom:313.420500px;}
.y1a3{bottom:313.744500px;}
.y39d{bottom:314.616000px;}
.y7d{bottom:314.764500px;}
.y1e2{bottom:314.844000px;}
.y45{bottom:315.228000px;}
.y163{bottom:315.378000px;}
.y1f7{bottom:317.032500px;}
.y338{bottom:317.305500px;}
.y234{bottom:317.550000px;}
.y324{bottom:317.754000px;}
.y15{bottom:318.043500px;}
.y133{bottom:319.425000px;}
.y2a0{bottom:320.607000px;}
.y1a5{bottom:322.015500px;}
.y366{bottom:322.515000px;}
.y26e{bottom:323.730000px;}
.y225{bottom:324.328500px;}
.y1a1{bottom:325.699500px;}
.y1e1{bottom:326.799000px;}
.y107{bottom:328.215000px;}
.y1f8{bottom:328.987500px;}
.y232{bottom:329.505000px;}
.y2d6{bottom:329.686500px;}
.ya3{bottom:331.353000px;}
.y39c{bottom:331.876500px;}
.y7c{bottom:333.594000px;}
.y1a4{bottom:333.970500px;}
.y162{bottom:334.207500px;}
.y132{bottom:335.862000px;}
.y14{bottom:335.931000px;}
.y337{bottom:336.135000px;}
.y224{bottom:336.283500px;}
.y323{bottom:336.583500px;}
.yd4{bottom:336.733500px;}
.y1a2{bottom:337.654500px;}
.y29f{bottom:339.436500px;}
.y26d{bottom:340.168500px;}
.y1f6{bottom:340.942500px;}
.y230{bottom:341.460000px;}
.y365{bottom:344.257500px;}
.y1e0{bottom:346.225500px;}
.y105{bottom:347.044500px;}
.y2d5{bottom:347.674500px;}
.y39b{bottom:349.135500px;}
.ya2{bottom:350.182500px;}
.y131{bottom:352.300500px;}
.y7b{bottom:352.423500px;}
.y106{bottom:352.468500px;}
.y1f4{bottom:352.897500px;}
.y161{bottom:353.037000px;}
.y231{bottom:353.416500px;}
.y13{bottom:353.818500px;}
.y336{bottom:354.964500px;}
.y322{bottom:355.413000px;}
.y223{bottom:355.710000px;}
.y26c{bottom:356.605500px;}
.y1a0{bottom:356.811000px;}
.y1df{bottom:358.180500px;}
.y29e{bottom:358.266000px;}
.y2d4{bottom:364.113000px;}
.y1f5{bottom:364.852500px;}
.y22f{bottom:365.371500px;}
.y104{bottom:365.874000px;}
.y39a{bottom:366.396000px;}
.y222{bottom:367.665000px;}
.y130{bottom:368.739000px;}
.ya1{bottom:369.012000px;}
.yd3{bottom:370.357500px;}
.y7a{bottom:371.253000px;}
.y160{bottom:371.866500px;}
.y26b{bottom:373.044000px;}
.y335{bottom:373.794000px;}
.y321{bottom:374.242500px;}
.y19f{bottom:375.969000px;}
.y1f3{bottom:376.807500px;}
.y29d{bottom:377.095500px;}
.y22d{bottom:377.326500px;}
.y1de{bottom:377.608500px;}
.y221{bottom:379.621500px;}
.y2d3{bottom:380.551500px;}
.y12{bottom:380.673000px;}
.y399{bottom:383.656500px;}
.y103{bottom:384.703500px;}
.y12f{bottom:385.177500px;}
.ya0{bottom:387.841500px;}
.y19d{bottom:387.924000px;}
.y1f1{bottom:388.762500px;}
.yd2{bottom:389.187000px;}
.y22e{bottom:389.281500px;}
.y26a{bottom:389.482500px;}
.y1dd{bottom:389.563500px;}
.y364{bottom:389.719500px;}
.y79{bottom:390.082500px;}
.y44{bottom:390.378000px;}
.y15f{bottom:390.696000px;}
.y334{bottom:392.623500px;}
.y320{bottom:393.072000px;}
.y29c{bottom:395.925000px;}
.y2d2{bottom:396.990000px;}
.y363{bottom:397.939500px;}
.y11{bottom:398.562000px;}
.y220{bottom:399.048000px;}
.y19e{bottom:399.879000px;}
.y1f2{bottom:400.717500px;}
.y398{bottom:400.917000px;}
.y22c{bottom:401.236500px;}
.y1dc{bottom:401.518500px;}
.y12e{bottom:401.616000px;}
.y18a{bottom:402.174000px;}
.y102{bottom:403.533000px;}
.y269{bottom:405.921000px;}
.y9f{bottom:406.671000px;}
.yd1{bottom:408.015000px;}
.y78{bottom:408.912000px;}
.y15e{bottom:409.525500px;}
.y43{bottom:409.834500px;}
.y21f{bottom:411.003000px;}
.y333{bottom:411.453000px;}
.y19c{bottom:411.834000px;}
.y31f{bottom:411.901500px;}
.y1f0{bottom:412.674000px;}
.y22a{bottom:413.191500px;}
.y2d1{bottom:413.428500px;}
.y189{bottom:414.129000px;}
.y29b{bottom:414.754500px;}
.y10{bottom:416.449500px;}
.y12d{bottom:418.054500px;}
.y397{bottom:418.177500px;}
.y1db{bottom:420.945000px;}
.y101{bottom:422.362500px;}
.y19a{bottom:423.790500px;}
.y268{bottom:423.910500px;}
.y1ee{bottom:424.629000px;}
.y22b{bottom:425.146500px;}
.y9e{bottom:425.500500px;}
.y188{bottom:426.084000px;}
.yd0{bottom:426.844500px;}
.y77{bottom:427.741500px;}
.y15d{bottom:428.355000px;}
.y362{bottom:429.799500px;}
.y2d0{bottom:429.867000px;}
.y332{bottom:430.282500px;}
.y21e{bottom:430.431000px;}
.y31e{bottom:430.731000px;}
.y1da{bottom:432.900000px;}
.y2fc{bottom:433.584000px;}
.y396{bottom:435.438000px;}
.y19b{bottom:435.745500px;}
.y12c{bottom:436.044000px;}
.y1ef{bottom:436.584000px;}
.y21b{bottom:437.101500px;}
.y187{bottom:438.039000px;}
.y267{bottom:440.349000px;}
.y100{bottom:441.192000px;}
.y21d{bottom:442.386000px;}
.y9d{bottom:444.330000px;}
.yf{bottom:444.798000px;}
.y1d9{bottom:444.856500px;}
.ycf{bottom:445.674000px;}
.y2cf{bottom:446.305500px;}
.y76{bottom:446.571000px;}
.y15c{bottom:447.184500px;}
.y42{bottom:447.225000px;}
.y199{bottom:447.700500px;}
.y1ed{bottom:448.539000px;}
.y219{bottom:449.056500px;}
.y331{bottom:449.112000px;}
.y31d{bottom:449.560500px;}
.y186{bottom:449.995500px;}
.y2fb{bottom:452.413500px;}
.y12b{bottom:452.482500px;}
.y395{bottom:452.698500px;}
.y361{bottom:453.439500px;}
.y29a{bottom:454.299000px;}
.y21c{bottom:454.341000px;}
.y266{bottom:456.787500px;}
.y197{bottom:459.655500px;}
.y242{bottom:459.982500px;}
.yff{bottom:460.021500px;}
.y1eb{bottom:460.494000px;}
.y21a{bottom:461.013000px;}
.y35f{bottom:461.659500px;}
.ye{bottom:462.685500px;}
.y2ce{bottom:462.744000px;}
.y9c{bottom:463.159500px;}
.y1d8{bottom:464.283000px;}
.yce{bottom:464.503500px;}
.y75{bottom:465.400500px;}
.y15b{bottom:466.014000px;}
.y41{bottom:466.681500px;}
.y31c{bottom:468.390000px;}
.y299{bottom:468.496500px;}
.y12a{bottom:468.921000px;}
.y185{bottom:469.422000px;}
.y360{bottom:469.878000px;}
.y394{bottom:469.959000px;}
.y2fa{bottom:471.243000px;}
.y198{bottom:471.610500px;}
.y330{bottom:472.425000px;}
.y1ec{bottom:472.449000px;}
.y265{bottom:473.226000px;}
.y1d7{bottom:476.238000px;}
.yfe{bottom:478.851000px;}
.y218{bottom:480.169500px;}
.y2cd{bottom:480.733500px;}
.y184{bottom:481.377000px;}
.y9b{bottom:481.989000px;}
.ycd{bottom:483.333000px;}
.y196{bottom:483.565500px;}
.y74{bottom:484.230000px;}
.y23e{bottom:484.366500px;}
.y1ea{bottom:484.404000px;}
.y15a{bottom:484.843500px;}
.y129{bottom:485.359500px;}
.y40{bottom:486.139500px;}
.y31b{bottom:487.219500px;}
.y298{bottom:487.339500px;}
.y1d6{bottom:488.193000px;}
.yd{bottom:489.540000px;}
.y264{bottom:489.664500px;}
.y2f9{bottom:490.072500px;}
.y183{bottom:493.332000px;}
.y35e{bottom:493.518000px;}
.y241{bottom:494.026500px;}
.y194{bottom:495.520500px;}
.y23d{bottom:496.321500px;}
.y1e8{bottom:496.359000px;}
.y2cc{bottom:497.172000px;}
.yfd{bottom:497.680500px;}
.y1d5{bottom:500.148000px;}
.y20e{bottom:500.805000px;}
.y9a{bottom:500.818500px;}
.ycc{bottom:502.162500px;}
.y73{bottom:503.059500px;}
.y128{bottom:503.347500px;}
.y297{bottom:503.778000px;}
.y393{bottom:504.478500px;}
.y3f{bottom:505.596000px;}
.y23f{bottom:505.981500px;}
.y31a{bottom:506.049000px;}
.y263{bottom:506.103000px;}
.yc{bottom:507.429000px;}
.y195{bottom:507.475500px;}
.y23c{bottom:508.276500px;}
.y1e9{bottom:508.314000px;}
.y2f8{bottom:508.902000px;}
.y35c{bottom:509.956500px;}
.y159{bottom:511.144500px;}
.y182{bottom:512.760000px;}
.y2cb{bottom:513.609000px;}
.yfc{bottom:516.508500px;}
.y240{bottom:517.936500px;}
.y193{bottom:519.430500px;}
.y1d4{bottom:519.576000px;}
.y99{bottom:519.648000px;}
.y127{bottom:519.786000px;}
.y296{bottom:520.216500px;}
.y1e7{bottom:520.270500px;}
.ycb{bottom:520.992000px;}
.y392{bottom:521.739000px;}
.y72{bottom:521.889000px;}
.y262{bottom:522.540000px;}
.y181{bottom:524.715000px;}
.y319{bottom:524.877000px;}
.y3e{bottom:525.052500px;}
.yb{bottom:525.316500px;}
.y35d{bottom:526.395000px;}
.y3a8{bottom:526.621500px;}
.y23b{bottom:527.703000px;}
.y2f7{bottom:527.731500px;}
.y217{bottom:529.891500px;}
.y158{bottom:529.974000px;}
.y2ca{bottom:530.047500px;}
.y191{bottom:531.387000px;}
.y1d3{bottom:531.531000px;}
.y1e5{bottom:532.225500px;}
.yfb{bottom:535.338000px;}
.y126{bottom:536.224500px;}
.y295{bottom:536.655000px;}
.y180{bottom:536.670000px;}
.y98{bottom:538.477500px;}
.y261{bottom:538.978500px;}
.y391{bottom:538.999500px;}
.y23a{bottom:539.658000px;}
.yca{bottom:539.821500px;}
.y71{bottom:540.718500px;}
.y215{bottom:541.846500px;}
.ya{bottom:543.204000px;}
.y192{bottom:543.342000px;}
.y1d2{bottom:543.486000px;}
.y318{bottom:543.706500px;}
.y20d{bottom:544.141500px;}
.y1e6{bottom:544.180500px;}
.y3d{bottom:544.510500px;}
.y2f6{bottom:546.561000px;}
.y2c9{bottom:548.037000px;}
.y17f{bottom:548.625000px;}
.y157{bottom:548.803500px;}
.y35b{bottom:550.036500px;}
.y239{bottom:551.614500px;}
.y294{bottom:553.093500px;}
.y216{bottom:553.803000px;}
.yfa{bottom:554.167500px;}
.y190{bottom:555.297000px;}
.y260{bottom:555.417000px;}
.y20c{bottom:556.096500px;}
.y1d1{bottom:556.135500px;}
.y390{bottom:556.260000px;}
.y97{bottom:557.307000px;}
.yc9{bottom:558.651000px;}
.y70{bottom:559.548000px;}
.y125{bottom:559.866000px;}
.y9{bottom:561.093000px;}
.y317{bottom:562.536000px;}
.y238{bottom:563.569500px;}
.y3c{bottom:563.967000px;}
.y2c8{bottom:564.475500px;}
.y2f5{bottom:565.390500px;}
.y214{bottom:565.758000px;}
.y18e{bottom:567.252000px;}
.y156{bottom:567.633000px;}
.y17e{bottom:568.051500px;}
.y1cf{bottom:568.090500px;}
.y293{bottom:569.532000px;}
.y25f{bottom:571.855500px;}
.yf9{bottom:572.997000px;}
.y38f{bottom:573.520500px;}
.y35a{bottom:573.676500px;}
.y237{bottom:575.524500px;}
.yc8{bottom:577.480500px;}
.y212{bottom:577.713000px;}
.y6f{bottom:578.377500px;}
.y8{bottom:578.980500px;}
.y18f{bottom:579.207000px;}
.y17d{bottom:580.008000px;}
.y1d0{bottom:580.045500px;}
.y96{bottom:580.618500px;}
.y2c7{bottom:580.914000px;}
.y316{bottom:581.365500px;}
.y359{bottom:581.896500px;}
.y3b{bottom:583.423500px;}
.y2f4{bottom:584.220000px;}
.y236{bottom:587.479500px;}
.y25e{bottom:588.294000px;}
.y213{bottom:589.668000px;}
.y38e{bottom:590.781000px;}
.y18d{bottom:591.162000px;}
.y124{bottom:591.484500px;}
.yf8{bottom:591.826500px;}
.y17c{bottom:591.963000px;}
.y292{bottom:593.172000px;}
.y155{bottom:593.934000px;}
.yc7{bottom:596.310000px;}
.y7{bottom:596.868000px;}
.y6e{bottom:597.207000px;}
.y2c6{bottom:597.352500px;}
.y1ce{bottom:599.203500px;}
.y20b{bottom:599.434500px;}
.y315{bottom:600.195000px;}
.y211{bottom:601.623000px;}
.y3a{bottom:602.881500px;}
.y2f3{bottom:603.049500px;}
.y18b{bottom:603.117000px;}
.y17b{bottom:603.918000px;}
.y25d{bottom:604.732500px;}
.y38d{bottom:608.041500px;}
.yf7{bottom:610.656000px;}
.y20a{bottom:611.389500px;}
.y154{bottom:612.763500px;}
.y20f{bottom:613.578000px;}
.y358{bottom:613.756500px;}
.y95{bottom:614.242500px;}
.y6{bottom:614.757000px;}
.y18c{bottom:615.072000px;}
.yc6{bottom:615.139500px;}
.y2c5{bottom:615.342000px;}
.y6d{bottom:616.036500px;}
.y291{bottom:616.813500px;}
.y314{bottom:619.024500px;}
.y25c{bottom:621.171000px;}
.y2f2{bottom:621.879000px;}
.y39{bottom:622.338000px;}
.y17a{bottom:623.344500px;}
.y38c{bottom:625.302000px;}
.y210{bottom:625.533000px;}
.y1cd{bottom:626.064000px;}
.y177{bottom:627.027000px;}
.y123{bottom:628.588500px;}
.yf6{bottom:629.485500px;}
.y356{bottom:630.195000px;}
.y209{bottom:630.817500px;}
.y153{bottom:631.593000px;}
.y2c4{bottom:631.780500px;}
.y5{bottom:632.644500px;}
.y94{bottom:633.072000px;}
.yc5{bottom:633.969000px;}
.y6c{bottom:634.866000px;}
.y179{bottom:635.299500px;}
.y1c8{bottom:635.377500px;}
.y206{bottom:637.488000px;}
.y25b{bottom:637.609500px;}
.y313{bottom:637.854000px;}
.y1cc{bottom:638.019000px;}
.y175{bottom:638.983500px;}
.y2f1{bottom:640.708500px;}
.y38{bottom:641.796000px;}
.y38b{bottom:642.561000px;}
.y208{bottom:642.772500px;}
.y357{bottom:646.632000px;}
.y178{bottom:647.254500px;}
.y1c6{bottom:647.332500px;}
.y122{bottom:647.418000px;}
.y2c3{bottom:648.219000px;}
.yf5{bottom:648.315000px;}
.y290{bottom:648.433500px;}
.y204{bottom:649.443000px;}
.y1cb{bottom:649.974000px;}
.y152{bottom:650.422500px;}
.y4{bottom:650.532000px;}
.y176{bottom:650.938500px;}
.y93{bottom:651.901500px;}
.yc4{bottom:652.798500px;}
.y6b{bottom:653.695500px;}
.y25a{bottom:654.048000px;}
.y207{bottom:654.727500px;}
.y312{bottom:656.683500px;}
.y1c7{bottom:659.287500px;}
.y2f0{bottom:659.538000px;}
.y38a{bottom:659.821500px;}
.y37{bottom:661.252500px;}
.y205{bottom:661.399500px;}
.y1ca{bottom:661.929000px;}
.y2c2{bottom:664.657500px;}
.y121{bottom:666.247500px;}
.yf4{bottom:667.144500px;}
.y1{bottom:668.420964px;}
.y151{bottom:669.252000px;}
.y174{bottom:670.095000px;}
.y355{bottom:670.273500px;}
.y259{bottom:670.486500px;}
.y92{bottom:670.731000px;}
.yc3{bottom:671.628000px;}
.y6a{bottom:672.525000px;}
.y1c9{bottom:673.884000px;}
.y311{bottom:675.513000px;}
.y389{bottom:677.082000px;}
.y2ef{bottom:678.367500px;}
.y353{bottom:678.492000px;}
.y203{bottom:680.556000px;}
.y36{bottom:680.709000px;}
.y28f{bottom:681.055500px;}
.y2c1{bottom:682.645500px;}
.y120{bottom:685.077000px;}
.yf3{bottom:685.974000px;}
.y354{bottom:686.712000px;}
.y258{bottom:686.923500px;}
.y150{bottom:688.081500px;}
.y172{bottom:689.253000px;}
.y91{bottom:689.560500px;}
.y69{bottom:691.354500px;}
.y310{bottom:694.342500px;}
.yc2{bottom:694.941000px;}
.y171{bottom:695.230500px;}
.y2ee{bottom:697.197000px;}
.y2c0{bottom:699.084000px;}
.y1c4{bottom:699.714000px;}
.y28e{bottom:699.885000px;}
.y35{bottom:700.167000px;}
.y173{bottom:701.208000px;}
.y257{bottom:703.362000px;}
.y11f{bottom:703.906500px;}
.yf2{bottom:704.803500px;}
.y1c3{bottom:705.691500px;}
.y14f{bottom:706.911000px;}
.y90{bottom:708.390000px;}
.y68{bottom:710.184000px;}
.y352{bottom:710.352000px;}
.y388{bottom:711.603000px;}
.y1c5{bottom:711.669000px;}
.y30f{bottom:713.172000px;}
.y2bf{bottom:715.522500px;}
.y2ed{bottom:716.026500px;}
.y351{bottom:718.572000px;}
.y28d{bottom:718.714500px;}
.y256{bottom:719.800500px;}
.y11e{bottom:722.736000px;}
.y14e{bottom:725.740500px;}
.y8f{bottom:727.219500px;}
.yf1{bottom:728.116500px;}
.yc1{bottom:728.565000px;}
.y387{bottom:728.863500px;}
.y67{bottom:729.013500px;}
.y170{bottom:729.690000px;}
.y34{bottom:731.565000px;}
.y2be{bottom:731.961000px;}
.y30e{bottom:732.001500px;}
.y255{bottom:736.239000px;}
.y28c{bottom:737.544000px;}
.y2ec{bottom:739.338000px;}
.y1c2{bottom:740.151000px;}
.y11d{bottom:741.565500px;}
.y14d{bottom:744.570000px;}
.y8e{bottom:746.049000px;}
.y386{bottom:746.124000px;}
.yc0{bottom:747.394500px;}
.y33{bottom:747.705000px;}
.y66{bottom:747.843000px;}
.y2bd{bottom:749.950500px;}
.y350{bottom:750.432000px;}
.y30d{bottom:750.831000px;}
.y254{bottom:752.677500px;}
.y28b{bottom:756.373500px;}
.y11c{bottom:760.395000px;}
.yf0{bottom:761.740500px;}
.y385{bottom:763.384500px;}
.y14c{bottom:763.399500px;}
.y8d{bottom:764.878500px;}
.ybf{bottom:766.224000px;}
.y65{bottom:766.671000px;}
.y32{bottom:768.183000px;}
.y253{bottom:769.116000px;}
.y30c{bottom:769.660500px;}
.y2bc{bottom:773.590500px;}
.y2eb{bottom:774.085500px;}
.y28a{bottom:775.203000px;}
.y11b{bottom:779.224500px;}
.y31{bottom:779.983500px;}
.yef{bottom:780.570000px;}
.y384{bottom:780.645000px;}
.y34f{bottom:782.050500px;}
.y8c{bottom:783.708000px;}
.ybe{bottom:785.053500px;}
.y64{bottom:785.500500px;}
.y252{bottom:787.105500px;}
.y2ea{bottom:788.281500px;}
.y30b{bottom:788.490000px;}
.y289{bottom:794.032500px;}
.y2bb{bottom:797.232000px;}
.y383{bottom:797.904000px;}
.y11a{bottom:798.054000px;}
.yee{bottom:799.399500px;}
.y30{bottom:800.463000px;}
.y16f{bottom:801.433500px;}
.y2e9{bottom:802.479000px;}
.y8b{bottom:802.537500px;}
.y14b{bottom:803.532000px;}
.ybd{bottom:803.883000px;}
.y63{bottom:804.330000px;}
.y2ba{bottom:805.450500px;}
.y30a{bottom:807.319500px;}
.y251{bottom:810.745500px;}
.y2f{bottom:812.262000px;}
.y382{bottom:815.164500px;}
.y34e{bottom:816.106500px;}
.y119{bottom:816.883500px;}
.y14a{bottom:817.729500px;}
.yed{bottom:818.229000px;}
.y2e8{bottom:821.322000px;}
.ybc{bottom:822.712500px;}
.y62{bottom:823.159500px;}
.y8a{bottom:825.850500px;}
.y309{bottom:826.149000px;}
.y381{bottom:832.425000px;}
.y2e{bottom:832.741500px;}
.y288{bottom:833.577000px;}
.y250{bottom:834.387000px;}
.y118{bottom:835.713000px;}
.y149{bottom:836.572500px;}
.yec{bottom:837.058500px;}
.y2e7{bottom:837.760500px;}
.ybb{bottom:841.540500px;}
.y61{bottom:841.989000px;}
.y2d{bottom:844.542000px;}
.y308{bottom:844.978500px;}
.y2b9{bottom:845.290500px;}
.y89{bottom:846.024000px;}
.y287{bottom:847.773000px;}
.y380{bottom:849.685500px;}
.y34d{bottom:852.868500px;}
.y148{bottom:853.011000px;}
.y2e6{bottom:854.199000px;}
.y117{bottom:854.542500px;}
.yeb{bottom:855.888000px;}
.yba{bottom:860.370000px;}
.y2c{bottom:860.682000px;}
.y60{bottom:860.818500px;}
.y286{bottom:861.970500px;}
.y307{bottom:863.808000px;}
.y2b8{bottom:864.522000px;}
.y24f{bottom:866.007000px;}
.y37f{bottom:866.946000px;}
.y147{bottom:869.449500px;}
.y2e5{bottom:872.188500px;}
.y116{bottom:873.372000px;}
.yea{bottom:874.717500px;}
.y285{bottom:876.166500px;}
.yb9{bottom:879.199500px;}
.y34c{bottom:879.409500px;}
.y5f{bottom:879.648000px;}
.y2b{bottom:881.160000px;}
.y306{bottom:882.637500px;}
.y37e{bottom:884.206500px;}
.y146{bottom:885.888000px;}
.y2e4{bottom:888.627000px;}
.y2a{bottom:892.960500px;}
.ye9{bottom:893.547000px;}
.y284{bottom:895.011000px;}
.y2b7{bottom:895.707000px;}
.y115{bottom:896.685000px;}
.y34b{bottom:896.983500px;}
.yb8{bottom:898.029000px;}
.y5e{bottom:898.477500px;}
.y305{bottom:901.467000px;}
.y145{bottom:902.326500px;}
.y24e{bottom:903.111000px;}
.y2e3{bottom:905.065500px;}
.ye8{bottom:912.376500px;}
.y283{bottom:913.000500px;}
.y29{bottom:913.440000px;}
.y2b6{bottom:914.551500px;}
.y34a{bottom:914.557500px;}
.yb7{bottom:916.858500px;}
.y5d{bottom:917.307000px;}
.y37d{bottom:918.727500px;}
.y144{bottom:918.765000px;}
.y304{bottom:920.296500px;}
.y2e2{bottom:921.504000px;}
.y24d{bottom:921.940500px;}
.y282{bottom:929.439000px;}
.y2b5{bottom:930.990000px;}
.ye7{bottom:931.206000px;}
.y143{bottom:935.203500px;}
.yb6{bottom:935.688000px;}
.y37c{bottom:935.986500px;}
.y5c{bottom:936.136500px;}
.y303{bottom:939.126000px;}
.y24c{bottom:940.770000px;}
.y349{bottom:941.098500px;}
.y2e1{bottom:945.144000px;}
.y281{bottom:945.877500px;}
.y2b4{bottom:947.428500px;}
.y114{bottom:950.482500px;}
.y28{bottom:950.929500px;}
.y142{bottom:951.642000px;}
.y37b{bottom:953.247000px;}
.yb5{bottom:954.517500px;}
.y5b{bottom:954.966000px;}
.y302{bottom:957.955500px;}
.y348{bottom:958.672500px;}
.y24b{bottom:959.599500px;}
.y280{bottom:962.316000px;}
.y2b3{bottom:965.416500px;}
.y141{bottom:968.080500px;}
.y2e0{bottom:968.785500px;}
.y113{bottom:969.312000px;}
.y27{bottom:969.759000px;}
.y37a{bottom:970.507500px;}
.yb4{bottom:973.347000px;}
.y5a{bottom:973.795500px;}
.y301{bottom:976.785000px;}
.y24a{bottom:978.427500px;}
.y27f{bottom:978.753000px;}
.y2b2{bottom:981.855000px;}
.y140{bottom:984.517500px;}
.y347{bottom:985.213500px;}
.y2df{bottom:985.224000px;}
.y379{bottom:987.768000px;}
.ye6{bottom:988.141500px;}
.yb3{bottom:992.176500px;}
.y59{bottom:992.625000px;}
.y300{bottom:995.614500px;}
.y27e{bottom:996.742500px;}
.y249{bottom:997.257000px;}
.y2b1{bottom:998.293500px;}
.y13f{bottom:1000.956000px;}
.y378{bottom:1005.028500px;}
.ye5{bottom:1006.971000px;}
.y26{bottom:1009.677000px;}
.yb2{bottom:1011.006000px;}
.y58{bottom:1011.454500px;}
.y346{bottom:1011.753000px;}
.y27d{bottom:1013.181000px;}
.y2ff{bottom:1014.444000px;}
.y2b0{bottom:1014.732000px;}
.y248{bottom:1016.086500px;}
.y2de{bottom:1016.842500px;}
.y13e{bottom:1017.394500px;}
.y377{bottom:1022.289000px;}
.ye4{bottom:1025.800500px;}
.y345{bottom:1029.327000px;}
.yb1{bottom:1029.835500px;}
.y57{bottom:1030.284000px;}
.y27c{bottom:1031.170500px;}
.y2fe{bottom:1033.272000px;}
.y13d{bottom:1033.833000px;}
.y247{bottom:1034.916000px;}
.y2dd{bottom:1036.075500px;}
.y25{bottom:1037.922000px;}
.y2af{bottom:1038.373500px;}
.y376{bottom:1039.549500px;}
.ye3{bottom:1044.630000px;}
.y344{bottom:1046.901000px;}
.y56{bottom:1049.113500px;}
.y13c{bottom:1051.822500px;}
.y2fd{bottom:1052.101500px;}
.yb0{bottom:1053.148500px;}
.y246{bottom:1053.745500px;}
.y27b{bottom:1054.812000px;}
.y375{bottom:1056.810000px;}
.y2ae{bottom:1062.013500px;}
.ye2{bottom:1063.459500px;}
.y343{bottom:1064.476500px;}
.y24{bottom:1066.165500px;}
.y55{bottom:1067.943000px;}
.y2ad{bottom:1070.233500px;}
.y2dc{bottom:1070.931000px;}
.y245{bottom:1072.575000px;}
.y374{bottom:1074.070500px;}
.y13b{bottom:1075.462500px;}
.y27a{bottom:1078.452000px;}
.ye1{bottom:1082.289000px;}
.y54{bottom:1086.772500px;}
.y2db{bottom:1089.760500px;}
.y342{bottom:1091.016000px;}
.y373{bottom:1091.329500px;}
.y23{bottom:1094.410500px;}
.y244{bottom:1095.888000px;}
.y53{bottom:1105.602000px;}
.y13a{bottom:1107.082500px;}
.y2da{bottom:1108.590000px;}
.y279{bottom:1110.072000px;}
.y1f{bottom:1137.897000px;}
.y52{bottom:1168.366500px;}
.y243{bottom:1171.354500px;}
.h2{height:25.508090px;}
.hd{height:26.110157px;}
.h1a{height:27.855430px;}
.h14{height:30.106714px;}
.h19{height:30.252344px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.he{height:34.813397px;}
.h13{height:35.052500px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h8{height:39.402747px;}
.h15{height:39.434227px;}
.h9{height:41.001535px;}
.h11{height:43.217759px;}
.h12{height:43.516637px;}
.ha{height:43.815515px;}
.h7{height:50.931027px;}
.h18{height:54.162344px;}
.hc{height:54.541601px;}
.h1b{height:71.770243px;}
.h1c{height:71.776243px;}
.h1e{height:72.039235px;}
.h1d{height:72.308227px;}
.hb{height:77.792486px;}
.h16{height:892.914000px;}
.h17{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:59.014071px;}
.x56{left:62.967000px;}
.xc0{left:84.220500px;}
.xbd{left:85.848000px;}
.x71{left:132.163500px;}
.x6f{left:135.867000px;}
.x5f{left:141.087000px;}
.x60{left:145.533000px;}
.x6a{left:148.963500px;}
.x7c{left:160.825500px;}
.x73{left:164.310000px;}
.x53{left:185.319000px;}
.x5b{left:187.375500px;}
.x76{left:194.049000px;}
.x5d{left:200.953500px;}
.x69{left:206.466000px;}
.x62{left:209.770500px;}
.x70{left:211.194000px;}
.x6b{left:212.355000px;}
.x7a{left:215.587500px;}
.x5e{left:221.487000px;}
.x72{left:223.705500px;}
.x57{left:231.237000px;}
.x75{left:235.704000px;}
.x78{left:237.639000px;}
.x74{left:239.019000px;}
.x68{left:242.209500px;}
.x7b{left:246.363000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x64{left:251.583000px;}
.x67{left:254.020500px;}
.x65{left:256.353000px;}
.x77{left:257.796000px;}
.x8c{left:259.186500px;}
.x6e{left:260.589000px;}
.x8d{left:262.075500px;}
.x95{left:264.846000px;}
.x6c{left:266.206500px;}
.x6d{left:268.152000px;}
.x5{left:269.914500px;}
.x52{left:278.491500px;}
.x9{left:281.479500px;}
.x9d{left:282.538500px;}
.x79{left:285.496500px;}
.x98{left:286.654500px;}
.x14{left:288.408000px;}
.x99{left:291.583500px;}
.x94{left:293.325000px;}
.x9e{left:294.684000px;}
.x15{left:295.879500px;}
.x87{left:298.747500px;}
.x30{left:299.946000px;}
.x35{left:303.474000px;}
.xb9{left:305.215500px;}
.x36{left:307.284000px;}
.x7{left:309.465000px;}
.x7d{left:310.581000px;}
.x93{left:311.758500px;}
.x31{left:314.889000px;}
.x88{left:317.181000px;}
.x8{left:319.926000px;}
.x37{left:322.228500px;}
.x2c{left:323.862000px;}
.x38{left:326.040000px;}
.x84{left:328.363500px;}
.xa{left:329.994000px;}
.x85{left:332.445000px;}
.x89{left:334.657500px;}
.xb{left:337.465500px;}
.x2d{left:338.805000px;}
.x39{left:340.983000px;}
.x83{left:343.723500px;}
.xc{left:344.788500px;}
.x4c{left:349.633500px;}
.xd{left:352.260000px;}
.x86{left:353.668500px;}
.x45{left:355.698000px;}
.x80{left:356.709000px;}
.x48{left:358.200000px;}
.x81{left:361.980000px;}
.x82{left:363.526500px;}
.x4a{left:365.160000px;}
.x4b{left:366.565500px;}
.x4d{left:367.762500px;}
.x7f{left:369.573000px;}
.x43{left:371.145000px;}
.x4e{left:372.301500px;}
.x49{left:373.452000px;}
.x44{left:374.668500px;}
.x4f{left:376.209000px;}
.x1d{left:378.153000px;}
.x46{left:380.109000px;}
.x8b{left:381.751500px;}
.x47{left:386.121000px;}
.x1e{left:393.096000px;}
.x2e{left:394.386000px;}
.x1f{left:396.757500px;}
.xa1{left:397.962000px;}
.x9f{left:409.306500px;}
.x20{left:411.702000px;}
.xa2{left:412.906500px;}
.x21{left:419.025000px;}
.x50{left:424.614000px;}
.xa3{left:426.109500px;}
.xb8{left:431.814000px;}
.x22{left:433.968000px;}
.x9c{left:443.239500px;}
.x3b{left:444.711000px;}
.x51{left:447.955500px;}
.x3a{left:450.283500px;}
.x92{left:454.039500px;}
.xba{left:457.300500px;}
.x3c{left:459.654000px;}
.xb5{left:462.532500px;}
.xe{left:464.647500px;}
.x54{left:468.472500px;}
.xf{left:472.119000px;}
.xb6{left:477.477000px;}
.x97{left:481.039500px;}
.xa0{left:483.201000px;}
.xb7{left:489.058500px;}
.x17{left:499.315500px;}
.x19{left:507.198000px;}
.x18{left:514.260000px;}
.x23{left:517.819500px;}
.xb1{left:518.877000px;}
.x1a{left:522.142500px;}
.x9a{left:524.568000px;}
.x28{left:526.708500px;}
.x90{left:527.743500px;}
.x27{left:530.022000px;}
.x24{left:532.764000px;}
.xb2{left:533.820000px;}
.x91{left:536.361000px;}
.x2f{left:537.943500px;}
.x29{left:541.653000px;}
.x66{left:546.589500px;}
.x5c{left:549.205500px;}
.x61{left:550.282500px;}
.x63{left:551.590500px;}
.x58{left:553.128000px;}
.x55{left:554.806500px;}
.xb3{left:556.131000px;}
.xbc{left:560.947500px;}
.x9b{left:566.173500px;}
.xb4{left:571.075500px;}
.xbb{left:573.367500px;}
.x25{left:582.310500px;}
.x7e{left:587.317500px;}
.x26{left:589.782000px;}
.x96{left:593.175000px;}
.xa6{left:595.416000px;}
.x33{left:596.710500px;}
.xa7{left:602.887500px;}
.x32{left:605.311500px;}
.x8a{left:606.813000px;}
.x34{left:611.653500px;}
.xc5{left:633.133500px;}
.x2a{left:634.773000px;}
.x2b{left:649.717500px;}
.xc7{left:655.443000px;}
.x5a{left:660.756000px;}
.x59{left:662.325000px;}
.xa4{left:669.286500px;}
.xbe{left:673.641000px;}
.x41{left:675.660000px;}
.xc8{left:682.341000px;}
.xa5{left:684.231000px;}
.x42{left:690.604500px;}
.xc9{left:692.230500px;}
.xc3{left:695.370000px;}
.xbf{left:700.540500px;}
.x12{left:704.584500px;}
.x8e{left:716.956500px;}
.x13{left:719.529000px;}
.xc4{left:722.269500px;}
.x8f{left:725.574000px;}
.xa8{left:735.831000px;}
.xa9{left:743.302500px;}
.xaa{left:747.024000px;}
.xab{left:761.968500px;}
.xca{left:763.645500px;}
.xac{left:765.688500px;}
.x3f{left:766.753500px;}
.x40{left:770.902500px;}
.xb0{left:772.861500px;}
.xad{left:780.633000px;}
.xae{left:784.354500px;}
.xc6{left:788.293500px;}
.x1b{left:790.405500px;}
.x3d{left:795.472500px;}
.xc1{left:796.981500px;}
.xaf{left:799.297500px;}
.x3e{left:810.417000px;}
.x10{left:817.950000px;}
.xc2{left:823.881000px;}
.x16{left:825.265500px;}
.x11{left:832.894500px;}
.x1c{left:837.717000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:21.253333pt;}
.v4{vertical-align:29.221333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000627pt;}
.ls3a{letter-spacing:0.000711pt;}
.ls3e{letter-spacing:0.000954pt;}
.ls45{letter-spacing:0.001026pt;}
.ls16{letter-spacing:0.001067pt;}
.lsa{letter-spacing:0.001154pt;}
.ls44{letter-spacing:0.001467pt;}
.ls15{letter-spacing:0.001513pt;}
.ls4b{letter-spacing:0.002187pt;}
.ls3b{letter-spacing:0.002262pt;}
.ls4c{letter-spacing:0.002538pt;}
.ls40{letter-spacing:0.004267pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls1{letter-spacing:9.298933pt;}
.ls14{letter-spacing:9.299025pt;}
.ls35{letter-spacing:10.623733pt;}
.ls7{letter-spacing:10.626533pt;}
.ls39{letter-spacing:10.627330pt;}
.ls34{letter-spacing:10.627366pt;}
.ls17{letter-spacing:11.138393pt;}
.ls3d{letter-spacing:11.804774pt;}
.ls49{letter-spacing:11.917310pt;}
.ls42{letter-spacing:11.940904pt;}
.ls33{letter-spacing:11.950302pt;}
.ls3c{letter-spacing:11.954133pt;}
.ls12{letter-spacing:11.955635pt;}
.ls3f{letter-spacing:11.959467pt;}
.ls47{letter-spacing:11.985898pt;}
.ls4a{letter-spacing:12.007241pt;}
.ls2f{letter-spacing:12.012659pt;}
.ls2e{letter-spacing:12.014033pt;}
.ls41{letter-spacing:12.026002pt;}
.ls1c{letter-spacing:12.057570pt;}
.ls43{letter-spacing:12.063636pt;}
.ls20{letter-spacing:12.174802pt;}
.ls25{letter-spacing:12.482060pt;}
.ls10{letter-spacing:13.014109pt;}
.ls30{letter-spacing:13.024499pt;}
.ls31{letter-spacing:13.028867pt;}
.ls37{letter-spacing:13.082283pt;}
.ls38{letter-spacing:13.155889pt;}
.ls28{letter-spacing:13.239269pt;}
.ls11{letter-spacing:13.246781pt;}
.ls13{letter-spacing:13.283467pt;}
.lsb{letter-spacing:13.283733pt;}
.ls32{letter-spacing:13.284237pt;}
.ls2c{letter-spacing:13.286328pt;}
.ls2b{letter-spacing:13.291557pt;}
.ls1b{letter-spacing:13.295589pt;}
.ls1a{letter-spacing:13.300944pt;}
.ls22{letter-spacing:13.338858pt;}
.ls23{letter-spacing:13.344223pt;}
.ls1d{letter-spacing:13.349362pt;}
.ls24{letter-spacing:13.404371pt;}
.ls18{letter-spacing:13.530741pt;}
.ls19{letter-spacing:13.536161pt;}
.ls1f{letter-spacing:13.602270pt;}
.ls1e{letter-spacing:13.605283pt;}
.ls2d{letter-spacing:13.605616pt;}
.lsc{letter-spacing:14.352995pt;}
.ls36{letter-spacing:14.462799pt;}
.ls46{letter-spacing:14.617349pt;}
.lsd{letter-spacing:15.372603pt;}
.ls21{letter-spacing:15.674491pt;}
.lsf{letter-spacing:16.779139pt;}
.lse{letter-spacing:16.784368pt;}
.ls29{letter-spacing:16.915086pt;}
.ls2a{letter-spacing:16.920315pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls27{letter-spacing:307.721975pt;}
.ls26{letter-spacing:307.726302pt;}
.ws6c{word-spacing:-11.955200pt;}
.ws26{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws6f{word-spacing:-3.134898pt;}
.ws7d{word-spacing:-2.869229pt;}
.ws24{word-spacing:-2.550426pt;}
.ws4a{word-spacing:-2.444158pt;}
.ws95{word-spacing:-2.337890pt;}
.ws72{word-spacing:-2.194422pt;}
.wsa3{word-spacing:-1.769370pt;}
.ws43{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws78{word-spacing:-1.657781pt;}
.ws8e{word-spacing:-1.647150pt;}
.ws44{word-spacing:-1.594016pt;}
.wsa4{word-spacing:-1.578086pt;}
.ws3f{word-spacing:-1.540882pt;}
.wsda{word-spacing:-1.434624pt;}
.ws98{word-spacing:-1.434614pt;}
.ws2f{word-spacing:-1.381481pt;}
.ws8d{word-spacing:-1.328347pt;}
.ws25{word-spacing:-1.275213pt;}
.ws54{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws5d{word-spacing:-1.168945pt;}
.ws2d{word-spacing:-1.115811pt;}
.ws47{word-spacing:-1.062677pt;}
.ws7{word-spacing:-1.041421pt;}
.ws2e{word-spacing:-1.009543pt;}
.ws9{word-spacing:-0.929840pt;}
.ws41{word-spacing:-0.903276pt;}
.ws4c{word-spacing:-0.850142pt;}
.ws7a{word-spacing:-0.797008pt;}
.wsbf{word-spacing:-0.765133pt;}
.ws7e{word-spacing:-0.690740pt;}
.ws51{word-spacing:-0.584473pt;}
.wsdc{word-spacing:-0.573850pt;}
.ws30{word-spacing:-0.531339pt;}
.ws2c{word-spacing:-0.478205pt;}
.ws36{word-spacing:-0.371937pt;}
.ws71{word-spacing:-0.371936pt;}
.ws21{word-spacing:-0.318803pt;}
.wsd4{word-spacing:-0.286925pt;}
.ws22{word-spacing:-0.265669pt;}
.wsc7{word-spacing:-0.239104pt;}
.ws1f{word-spacing:-0.212535pt;}
.wsbc{word-spacing:-0.191283pt;}
.ws70{word-spacing:-0.185968pt;}
.ws29{word-spacing:-0.159402pt;}
.wsa2{word-spacing:-0.143462pt;}
.ws2b{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.047821pt;}
.wsd0{word-spacing:-0.023475pt;}
.wsab{word-spacing:-0.015343pt;}
.wsc0{word-spacing:-0.008619pt;}
.wscb{word-spacing:-0.008602pt;}
.wsa8{word-spacing:-0.007953pt;}
.wsbd{word-spacing:-0.006511pt;}
.wsc4{word-spacing:-0.005709pt;}
.wsdf{word-spacing:-0.005589pt;}
.wsaa{word-spacing:-0.005410pt;}
.wsce{word-spacing:-0.004045pt;}
.wsc9{word-spacing:-0.003610pt;}
.ws5{word-spacing:-0.003451pt;}
.wsb7{word-spacing:-0.003081pt;}
.wsde{word-spacing:-0.002338pt;}
.ws12{word-spacing:-0.001852pt;}
.wsc6{word-spacing:-0.001075pt;}
.wsd5{word-spacing:-0.000751pt;}
.wsd1{word-spacing:-0.000606pt;}
.ws3{word-spacing:0.000000pt;}
.ws17{word-spacing:0.047821pt;}
.ws35{word-spacing:0.053134pt;}
.wsac{word-spacing:0.080161pt;}
.ws79{word-spacing:0.085014pt;}
.ws1c{word-spacing:0.095642pt;}
.ws2a{word-spacing:0.106268pt;}
.ws1d{word-spacing:0.143462pt;}
.ws20{word-spacing:0.159402pt;}
.wsa9{word-spacing:0.186410pt;}
.wsd9{word-spacing:0.190937pt;}
.ws1a{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.ws75{word-spacing:0.239104pt;}
.ws40{word-spacing:0.265669pt;}
.wsa0{word-spacing:0.286925pt;}
.ws60{word-spacing:0.318803pt;}
.ws9d{word-spacing:0.371937pt;}
.ws5c{word-spacing:0.425071pt;}
.wsb4{word-spacing:0.430387pt;}
.ws7f{word-spacing:0.465260pt;}
.ws84{word-spacing:0.478205pt;}
.ws74{word-spacing:0.531339pt;}
.wsc3{word-spacing:0.573850pt;}
.ws96{word-spacing:0.584473pt;}
.ws52{word-spacing:0.637606pt;}
.wsad{word-spacing:0.669491pt;}
.ws6e{word-spacing:0.690740pt;}
.ws97{word-spacing:0.743874pt;}
.wsdb{word-spacing:0.765133pt;}
.wsa1{word-spacing:0.812954pt;}
.ws8{word-spacing:0.892646pt;}
.ws37{word-spacing:0.903276pt;}
.ws64{word-spacing:0.956410pt;}
.ws69{word-spacing:1.009543pt;}
.ws66{word-spacing:1.062677pt;}
.ws48{word-spacing:1.115811pt;}
.ws63{word-spacing:1.168945pt;}
.ws55{word-spacing:1.222079pt;}
.ws6a{word-spacing:1.275213pt;}
.wsd7{word-spacing:1.287109pt;}
.wsd8{word-spacing:1.291162pt;}
.ws34{word-spacing:1.381481pt;}
.ws32{word-spacing:1.434614pt;}
.ws65{word-spacing:1.487748pt;}
.ws68{word-spacing:1.540882pt;}
.ws18{word-spacing:1.578086pt;}
.ws49{word-spacing:1.594016pt;}
.wsb6{word-spacing:1.721549pt;}
.ws3e{word-spacing:1.806551pt;}
.ws4e{word-spacing:1.859685pt;}
.ws62{word-spacing:1.912819pt;}
.ws4b{word-spacing:1.965953pt;}
.ws88{word-spacing:2.019087pt;}
.ws39{word-spacing:2.072221pt;}
.ws16{word-spacing:2.104115pt;}
.ws4f{word-spacing:2.125355pt;}
.ws93{word-spacing:2.178489pt;}
.wsc5{word-spacing:2.199757pt;}
.ws4{word-spacing:2.231616pt;}
.ws31{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws6d{word-spacing:2.252882pt;}
.ws87{word-spacing:2.391024pt;}
.wsbe{word-spacing:2.391040pt;}
.ws9e{word-spacing:2.438861pt;}
.ws5a{word-spacing:2.444158pt;}
.wsc1{word-spacing:2.486682pt;}
.ws58{word-spacing:2.497292pt;}
.ws28{word-spacing:2.550426pt;}
.ws15{word-spacing:2.550432pt;}
.wsd3{word-spacing:2.677965pt;}
.wsae{word-spacing:2.725786pt;}
.ws9f{word-spacing:2.773606pt;}
.wsc2{word-spacing:2.861056pt;}
.wsca{word-spacing:2.861918pt;}
.wsc8{word-spacing:2.862626pt;}
.wsdd{word-spacing:2.863872pt;}
.wsaf{word-spacing:2.864461pt;}
.wsd6{word-spacing:2.865647pt;}
.wsb8{word-spacing:2.865809pt;}
.wsb1{word-spacing:2.867661pt;}
.ws56{word-spacing:2.869229pt;}
.wsb0{word-spacing:2.869248pt;}
.ws80{word-spacing:2.922363pt;}
.wsbb{word-spacing:2.964890pt;}
.ws45{word-spacing:2.975497pt;}
.ws99{word-spacing:3.028630pt;}
.wscf{word-spacing:3.060531pt;}
.wsa6{word-spacing:3.108352pt;}
.ws1e{word-spacing:3.188032pt;}
.wsb2{word-spacing:3.203994pt;}
.wsb3{word-spacing:3.251814pt;}
.ws3d{word-spacing:3.294300pt;}
.ws5f{word-spacing:3.347434pt;}
.wsa5{word-spacing:3.395277pt;}
.ws8a{word-spacing:3.400567pt;}
.ws94{word-spacing:3.453701pt;}
.wscd{word-spacing:3.490918pt;}
.ws67{word-spacing:3.506835pt;}
.wsb9{word-spacing:3.586560pt;}
.ws3b{word-spacing:3.613103pt;}
.ws83{word-spacing:3.666237pt;}
.ws86{word-spacing:3.698126pt;}
.ws5b{word-spacing:3.719371pt;}
.ws8b{word-spacing:3.772505pt;}
.ws46{word-spacing:3.825638pt;}
.wsa7{word-spacing:3.825664pt;}
.ws89{word-spacing:3.931906pt;}
.ws59{word-spacing:3.985040pt;}
.ws50{word-spacing:4.091308pt;}
.wsf{word-spacing:4.240070pt;}
.ws10{word-spacing:4.314458pt;}
.ws3c{word-spacing:4.569513pt;}
.ws42{word-spacing:4.622646pt;}
.ws92{word-spacing:4.675780pt;}
.ws38{word-spacing:4.888316pt;}
.ws8c{word-spacing:4.994583pt;}
.ws90{word-spacing:5.047717pt;}
.ws33{word-spacing:5.207119pt;}
.ws8f{word-spacing:5.260253pt;}
.ws27{word-spacing:5.313387pt;}
.wscc{word-spacing:5.355930pt;}
.ws4d{word-spacing:5.366521pt;}
.ws9c{word-spacing:5.472788pt;}
.ws5e{word-spacing:5.685324pt;}
.ws61{word-spacing:5.791591pt;}
.ws57{word-spacing:5.950993pt;}
.wsb5{word-spacing:6.073242pt;}
.ws9b{word-spacing:6.269796pt;}
.ws53{word-spacing:6.322930pt;}
.ws9a{word-spacing:6.588599pt;}
.wsd{word-spacing:6.918010pt;}
.ws91{word-spacing:7.226206pt;}
.wsd2{word-spacing:9.516339pt;}
.wsb{word-spacing:10.823338pt;}
.wsc{word-spacing:14.319536pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws3a{word-spacing:24.919783pt;}
.wsba{word-spacing:43.038720pt;}
.ws13{word-spacing:48.878387pt;}
.ws73{word-spacing:193.489290pt;}
.ws7b{word-spacing:240.682086pt;}
.ws7c{word-spacing:264.544666pt;}
.ws77{word-spacing:419.998123pt;}
.ws82{word-spacing:570.931456pt;}
.ws81{word-spacing:583.025007pt;}
.ws76{word-spacing:615.201007pt;}
.ws85{word-spacing:647.731456pt;}
.ws6b{word-spacing:887.627674pt;}
._a{margin-left:-8.607744pt;}
._ab{margin-left:-6.847542pt;}
._c{margin-left:-5.898126pt;}
._4{margin-left:-4.128490pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._7{width:2.045648pt;}
._d{width:3.269878pt;}
._3c{width:6.918010pt;}
._9{width:7.819753pt;}
._5{width:9.896329pt;}
._3{width:10.934918pt;}
._16{width:12.440051pt;}
._11{width:13.562788pt;}
._f{width:14.537523pt;}
._15{width:15.727625pt;}
._10{width:16.630900pt;}
._17{width:17.700304pt;}
._19{width:18.590127pt;}
._e{width:19.941274pt;}
._1a{width:21.616258pt;}
._6{width:23.066683pt;}
._14{width:24.600980pt;}
._b1{width:26.243956pt;}
._8{width:27.188522pt;}
._aa{width:28.373485pt;}
._b{width:29.648896pt;}
._ad{width:30.711375pt;}
._18{width:31.614651pt;}
._1c{width:33.319969pt;}
._1b{width:34.749549pt;}
._ac{width:38.900717pt;}
._b2{width:54.993920pt;}
._8c{width:106.496922pt;}
._8d{width:114.482995pt;}
._96{width:119.121613pt;}
._7f{width:125.720883pt;}
._93{width:131.076813pt;}
._80{width:133.659136pt;}
._38{width:143.006818pt;}
._9e{width:144.897024pt;}
._85{width:149.870140pt;}
._9f{width:152.883098pt;}
._90{width:155.035034pt;}
._a5{width:157.569536pt;}
._92{width:166.990234pt;}
._83{width:168.233574pt;}
._9c{width:178.084907pt;}
._8a{width:179.758140pt;}
._a4{width:181.432115pt;}
._82{width:186.597009pt;}
._88{width:191.759215pt;}
._3a{width:192.820749pt;}
._a8{width:199.599521pt;}
._3e{width:202.788465pt;}
._a2{width:205.390336pt;}
._47{width:207.138926pt;}
._3d{width:216.726342pt;}
._41{width:225.866275pt;}
._3b{width:230.005222pt;}
._43{width:234.652527pt;}
._42{width:238.632125pt;}
._46{width:239.973859pt;}
._a7{width:242.881843pt;}
._40{width:247.765897pt;}
._af{width:249.042415pt;}
._75{width:252.637286pt;}
._84{width:253.687774pt;}
._b0{width:254.941082pt;}
._3f{width:257.900422pt;}
._76{width:264.544666pt;}
._87{width:270.137506pt;}
._a9{width:274.698843pt;}
._79{width:276.499866pt;}
._7b{width:287.658131pt;}
._70{width:288.901354pt;}
._89{width:291.513199pt;}
._7d{width:294.432666pt;}
._8f{width:305.431450pt;}
._61{width:313.274061pt;}
._78{width:316.525875pt;}
._4c{width:321.738342pt;}
._74{width:332.641485pt;}
._4b{width:333.693542pt;}
._98{width:340.388454pt;}
._5b{width:345.648742pt;}
._7a{width:348.565811pt;}
._91{width:352.343654pt;}
._9b{width:355.738931pt;}
._6b{width:356.743168pt;}
._66{width:359.564595pt;}
._9d{width:363.725005pt;}
._57{width:369.559142pt;}
._a1{width:372.587754pt;}
._a3{width:375.297638pt;}
._8b{width:378.318333pt;}
._54{width:381.514342pt;}
._12{width:383.627480pt;}
._77{width:385.285542pt;}
._49{width:390.903120pt;}
._58{width:394.112493pt;}
._50{width:405.424742pt;}
._67{width:413.697741pt;}
._73{width:416.280064pt;}
._6e{width:425.318195pt;}
._6c{width:437.273395pt;}
._7e{width:447.757505pt;}
._72{width:449.228595pt;}
._7c{width:452.097843pt;}
._5a{width:453.179658pt;}
._5c{width:455.714160pt;}
._69{width:461.231616pt;}
._6a{width:462.522778pt;}
._5e{width:476.295168pt;}
._55{width:499.918643pt;}
._59{width:519.477350pt;}
._37{width:529.339315pt;}
._62{width:539.036058pt;}
._60{width:546.189329pt;}
._65{width:554.816922pt;}
._5d{width:564.588266pt;}
._52{width:577.197056pt;}
._53{width:584.492358pt;}
._4e{width:587.478528pt;}
._56{width:589.008794pt;}
._63{width:597.520896pt;}
._51{width:598.572954pt;}
._4a{width:603.928883pt;}
._64{width:605.076582pt;}
._4d{width:625.304781pt;}
._6d{width:628.094288pt;}
._6f{width:630.756352pt;}
._5f{width:638.168576pt;}
._44{width:639.327001pt;}
._68{width:644.461073pt;}
._4f{width:650.123776pt;}
._71{width:652.004688pt;}
._ae{width:732.901581pt;}
._25{width:775.649428pt;}
._28{width:793.520291pt;}
._30{width:796.742349pt;}
._2f{width:813.144883pt;}
._26{width:833.755648pt;}
._29{width:841.311334pt;}
._22{width:846.503953pt;}
._2a{width:849.584333pt;}
._21{width:853.314355pt;}
._31{width:861.204787pt;}
._2c{width:870.482022pt;}
._32{width:874.061252pt;}
._1d{width:883.824026pt;}
._20{width:888.558285pt;}
._2e{width:895.540122pt;}
._2b{width:898.218086pt;}
._1e{width:900.274381pt;}
._34{width:903.860941pt;}
._24{width:907.399680pt;}
._33{width:910.316749pt;}
._23{width:911.799194pt;}
._35{width:913.759846pt;}
._2d{width:921.602458pt;}
._1f{width:951.538278pt;}
._27{width:962.202317pt;}
._39{width:1033.834260pt;}
._8e{width:1165.998566pt;}
._97{width:1171.020160pt;}
._94{width:1228.643729pt;}
._95{width:1231.013214pt;}
._9a{width:1247.031817pt;}
._99{width:1264.965316pt;}
._a6{width:1283.128832pt;}
._a0{width:1380.468642pt;}
._81{width:1414.761190pt;}
._86{width:1450.535774pt;}
._48{width:1785.712222pt;}
._13{width:1806.965556pt;}
._45{width:3099.472222pt;}
._36{width:3120.725556pt;}
.fs8{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs7{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:44.292800pt;}
.fsa{font-size:47.820800pt;}
.fs3{font-size:50.395200pt;}
.fs5{font-size:53.133867pt;}
.fs4{font-size:53.754880pt;}
.fs6{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y22{bottom:5.644850pt;}
.y2{bottom:12.578910pt;}
.y21{bottom:18.051729pt;}
.y51{bottom:28.346667pt;}
.y20{bottom:32.990462pt;}
.y16e{bottom:82.942667pt;}
.y2ac{bottom:84.137333pt;}
.y50{bottom:92.108000pt;}
.y1e{bottom:93.018667pt;}
.yaf{bottom:93.688000pt;}
.ye0{bottom:94.485333pt;}
.y88{bottom:95.681333pt;}
.y32f{bottom:98.337333pt;}
.y16d{bottom:99.680000pt;}
.y2ab{bottom:100.874667pt;}
.y372{bottom:102.569333pt;}
.y112{bottom:107.636000pt;}
.y4f{bottom:108.844000pt;}
.y1d{bottom:108.920000pt;}
.yae{bottom:110.425333pt;}
.y3a7{bottom:110.890667pt;}
.ydf{bottom:111.222667pt;}
.y87{bottom:112.418667pt;}
.y32e{bottom:115.074667pt;}
.y16c{bottom:116.417333pt;}
.y2aa{bottom:117.612000pt;}
.y371{bottom:117.912000pt;}
.y1c1{bottom:119.481333pt;}
.y341{bottom:122.168000pt;}
.y111{bottom:124.373333pt;}
.y1c{bottom:124.820000pt;}
.y4e{bottom:125.581333pt;}
.y3a6{bottom:126.233333pt;}
.yad{bottom:127.162667pt;}
.yde{bottom:127.960000pt;}
.y1b2{bottom:128.162667pt;}
.y86{bottom:129.156000pt;}
.y1bf{bottom:130.108000pt;}
.y32d{bottom:131.812000pt;}
.y16b{bottom:133.154667pt;}
.y370{bottom:133.254667pt;}
.y2a9{bottom:134.349333pt;}
.y340{bottom:137.790667pt;}
.y1b1{bottom:138.789333pt;}
.y1b{bottom:140.720000pt;}
.y1c0{bottom:140.734667pt;}
.y110{bottom:141.110667pt;}
.y3a5{bottom:141.576000pt;}
.y278{bottom:141.641333pt;}
.y4d{bottom:142.318667pt;}
.yac{bottom:143.900000pt;}
.ydd{bottom:144.697333pt;}
.y85{bottom:145.893333pt;}
.y32c{bottom:148.549333pt;}
.y36f{bottom:148.597333pt;}
.y1b0{bottom:149.416000pt;}
.y2a8{bottom:151.086667pt;}
.y1be{bottom:151.361333pt;}
.y33f{bottom:153.412000pt;}
.y277{bottom:156.252000pt;}
.y16a{bottom:156.533333pt;}
.y1a{bottom:156.621333pt;}
.y3a4{bottom:156.918667pt;}
.y10f{bottom:157.848000pt;}
.y4c{bottom:159.056000pt;}
.yab{bottom:160.637333pt;}
.ydc{bottom:161.434667pt;}
.y1bc{bottom:161.988000pt;}
.y84{bottom:162.630667pt;}
.y36e{bottom:163.940000pt;}
.y32b{bottom:165.286667pt;}
.y1af{bottom:166.685333pt;}
.y2a7{bottom:167.824000pt;}
.y33e{bottom:169.033333pt;}
.y276{bottom:170.864000pt;}
.y3a3{bottom:172.261333pt;}
.y19{bottom:172.521333pt;}
.y1bd{bottom:172.614667pt;}
.y169{bottom:173.270667pt;}
.y10e{bottom:174.585333pt;}
.y202{bottom:175.538667pt;}
.y4b{bottom:175.793333pt;}
.y1ae{bottom:177.312000pt;}
.yaa{bottom:177.374667pt;}
.ydb{bottom:178.172000pt;}
.y36d{bottom:179.281333pt;}
.y83{bottom:179.368000pt;}
.y32a{bottom:182.024000pt;}
.y1bb{bottom:183.242667pt;}
.y2a6{bottom:184.561333pt;}
.y33d{bottom:184.654667pt;}
.y275{bottom:185.476000pt;}
.y200{bottom:186.165333pt;}
.y3a2{bottom:187.602667pt;}
.y1ad{bottom:187.938667pt;}
.y18{bottom:188.421333pt;}
.y168{bottom:190.008000pt;}
.y10d{bottom:191.322667pt;}
.y4a{bottom:192.530667pt;}
.y1b9{bottom:193.869333pt;}
.ya9{bottom:194.112000pt;}
.y36c{bottom:194.624000pt;}
.yda{bottom:194.909333pt;}
.y82{bottom:196.105333pt;}
.y139{bottom:196.261333pt;}
.y201{bottom:196.792000pt;}
.y329{bottom:198.761333pt;}
.y274{bottom:200.088000pt;}
.y33c{bottom:200.276000pt;}
.y2a5{bottom:201.298667pt;}
.y3a1{bottom:202.945333pt;}
.y17{bottom:204.322667pt;}
.y1ba{bottom:204.496000pt;}
.y1ac{bottom:205.206667pt;}
.y167{bottom:206.745333pt;}
.y1ff{bottom:207.418667pt;}
.y10c{bottom:208.060000pt;}
.y49{bottom:209.268000pt;}
.y36b{bottom:209.966667pt;}
.ya8{bottom:210.849333pt;}
.y138{bottom:210.873333pt;}
.yd9{bottom:211.646667pt;}
.y81{bottom:212.841333pt;}
.y273{bottom:214.700000pt;}
.y1b8{bottom:215.122667pt;}
.y328{bottom:215.498667pt;}
.y1ab{bottom:215.833333pt;}
.y2a4{bottom:218.036000pt;}
.y1fd{bottom:218.045333pt;}
.y3a0{bottom:218.288000pt;}
.y166{bottom:223.482667pt;}
.y10b{bottom:224.797333pt;}
.y36a{bottom:225.309333pt;}
.y137{bottom:225.485333pt;}
.y1b6{bottom:225.749333pt;}
.y48{bottom:226.005333pt;}
.y1aa{bottom:226.460000pt;}
.ya7{bottom:227.586667pt;}
.yd8{bottom:228.384000pt;}
.y1fe{bottom:228.672000pt;}
.y272{bottom:229.312000pt;}
.y80{bottom:229.578667pt;}
.y33b{bottom:231.837333pt;}
.y327{bottom:232.236000pt;}
.y39f{bottom:233.630667pt;}
.y2a3{bottom:234.773333pt;}
.y1b7{bottom:236.376000pt;}
.y1a9{bottom:237.088000pt;}
.y229{bottom:239.142667pt;}
.y1fc{bottom:239.298667pt;}
.y136{bottom:240.097333pt;}
.y165{bottom:240.220000pt;}
.y369{bottom:240.652000pt;}
.y10a{bottom:241.534667pt;}
.y47{bottom:242.742667pt;}
.y271{bottom:243.924000pt;}
.ya6{bottom:244.324000pt;}
.yd7{bottom:245.121333pt;}
.y7f{bottom:246.316000pt;}
.y1b5{bottom:247.002667pt;}
.y2d9{bottom:247.404000pt;}
.y1a8{bottom:247.714667pt;}
.y33a{bottom:248.574667pt;}
.y326{bottom:248.973333pt;}
.y228{bottom:249.769333pt;}
.y1fa{bottom:249.925333pt;}
.y2a2{bottom:251.510667pt;}
.y1e4{bottom:251.965333pt;}
.y135{bottom:254.709333pt;}
.y368{bottom:255.994667pt;}
.y164{bottom:256.957333pt;}
.y1b3{bottom:257.629333pt;}
.y109{bottom:258.272000pt;}
.y1a7{bottom:258.341333pt;}
.y270{bottom:258.536000pt;}
.y46{bottom:259.480000pt;}
.y227{bottom:260.396000pt;}
.y1fb{bottom:260.552000pt;}
.y235{bottom:261.013333pt;}
.ya5{bottom:261.061333pt;}
.yd6{bottom:261.858667pt;}
.y1e3{bottom:262.592000pt;}
.y7e{bottom:263.053333pt;}
.y2d8{bottom:263.830667pt;}
.y39e{bottom:264.316000pt;}
.y339{bottom:265.312000pt;}
.y325{bottom:265.710667pt;}
.y16{bottom:266.804000pt;}
.y2a1{bottom:268.248000pt;}
.y1b4{bottom:268.256000pt;}
.y134{bottom:269.321333pt;}
.y226{bottom:271.022667pt;}
.y1f9{bottom:271.180000pt;}
.y367{bottom:271.337333pt;}
.y233{bottom:271.640000pt;}
.y26f{bottom:273.148000pt;}
.y108{bottom:275.009333pt;}
.y1a6{bottom:275.609333pt;}
.ya4{bottom:277.798667pt;}
.y2d7{bottom:278.442667pt;}
.yd5{bottom:278.596000pt;}
.y1a3{bottom:278.884000pt;}
.y39d{bottom:279.658667pt;}
.y7d{bottom:279.790667pt;}
.y1e2{bottom:279.861333pt;}
.y45{bottom:280.202667pt;}
.y163{bottom:280.336000pt;}
.y1f7{bottom:281.806667pt;}
.y338{bottom:282.049333pt;}
.y234{bottom:282.266667pt;}
.y324{bottom:282.448000pt;}
.y15{bottom:282.705333pt;}
.y133{bottom:283.933333pt;}
.y2a0{bottom:284.984000pt;}
.y1a5{bottom:286.236000pt;}
.y366{bottom:286.680000pt;}
.y26e{bottom:287.760000pt;}
.y225{bottom:288.292000pt;}
.y1a1{bottom:289.510667pt;}
.y1e1{bottom:290.488000pt;}
.y107{bottom:291.746667pt;}
.y1f8{bottom:292.433333pt;}
.y232{bottom:292.893333pt;}
.y2d6{bottom:293.054667pt;}
.ya3{bottom:294.536000pt;}
.y39c{bottom:295.001333pt;}
.y7c{bottom:296.528000pt;}
.y1a4{bottom:296.862667pt;}
.y162{bottom:297.073333pt;}
.y132{bottom:298.544000pt;}
.y14{bottom:298.605333pt;}
.y337{bottom:298.786667pt;}
.y224{bottom:298.918667pt;}
.y323{bottom:299.185333pt;}
.yd4{bottom:299.318667pt;}
.y1a2{bottom:300.137333pt;}
.y29f{bottom:301.721333pt;}
.y26d{bottom:302.372000pt;}
.y1f6{bottom:303.060000pt;}
.y230{bottom:303.520000pt;}
.y365{bottom:306.006667pt;}
.y1e0{bottom:307.756000pt;}
.y105{bottom:308.484000pt;}
.y2d5{bottom:309.044000pt;}
.y39b{bottom:310.342667pt;}
.ya2{bottom:311.273333pt;}
.y131{bottom:313.156000pt;}
.y7b{bottom:313.265333pt;}
.y106{bottom:313.305333pt;}
.y1f4{bottom:313.686667pt;}
.y161{bottom:313.810667pt;}
.y231{bottom:314.148000pt;}
.y13{bottom:314.505333pt;}
.y336{bottom:315.524000pt;}
.y322{bottom:315.922667pt;}
.y223{bottom:316.186667pt;}
.y26c{bottom:316.982667pt;}
.y1a0{bottom:317.165333pt;}
.y1df{bottom:318.382667pt;}
.y29e{bottom:318.458667pt;}
.y2d4{bottom:323.656000pt;}
.y1f5{bottom:324.313333pt;}
.y22f{bottom:324.774667pt;}
.y104{bottom:325.221333pt;}
.y39a{bottom:325.685333pt;}
.y222{bottom:326.813333pt;}
.y130{bottom:327.768000pt;}
.ya1{bottom:328.010667pt;}
.yd3{bottom:329.206667pt;}
.y7a{bottom:330.002667pt;}
.y160{bottom:330.548000pt;}
.y26b{bottom:331.594667pt;}
.y335{bottom:332.261333pt;}
.y321{bottom:332.660000pt;}
.y19f{bottom:334.194667pt;}
.y1f3{bottom:334.940000pt;}
.y29d{bottom:335.196000pt;}
.y22d{bottom:335.401333pt;}
.y1de{bottom:335.652000pt;}
.y221{bottom:337.441333pt;}
.y2d3{bottom:338.268000pt;}
.y12{bottom:338.376000pt;}
.y399{bottom:341.028000pt;}
.y103{bottom:341.958667pt;}
.y12f{bottom:342.380000pt;}
.ya0{bottom:344.748000pt;}
.y19d{bottom:344.821333pt;}
.y1f1{bottom:345.566667pt;}
.yd2{bottom:345.944000pt;}
.y22e{bottom:346.028000pt;}
.y26a{bottom:346.206667pt;}
.y1dd{bottom:346.278667pt;}
.y364{bottom:346.417333pt;}
.y79{bottom:346.740000pt;}
.y44{bottom:347.002667pt;}
.y15f{bottom:347.285333pt;}
.y334{bottom:348.998667pt;}
.y320{bottom:349.397333pt;}
.y29c{bottom:351.933333pt;}
.y2d2{bottom:352.880000pt;}
.y363{bottom:353.724000pt;}
.y11{bottom:354.277333pt;}
.y220{bottom:354.709333pt;}
.y19e{bottom:355.448000pt;}
.y1f2{bottom:356.193333pt;}
.y398{bottom:356.370667pt;}
.y22c{bottom:356.654667pt;}
.y1dc{bottom:356.905333pt;}
.y12e{bottom:356.992000pt;}
.y18a{bottom:357.488000pt;}
.y102{bottom:358.696000pt;}
.y269{bottom:360.818667pt;}
.y9f{bottom:361.485333pt;}
.yd1{bottom:362.680000pt;}
.y78{bottom:363.477333pt;}
.y15e{bottom:364.022667pt;}
.y43{bottom:364.297333pt;}
.y21f{bottom:365.336000pt;}
.y333{bottom:365.736000pt;}
.y19c{bottom:366.074667pt;}
.y31f{bottom:366.134667pt;}
.y1f0{bottom:366.821333pt;}
.y22a{bottom:367.281333pt;}
.y2d1{bottom:367.492000pt;}
.y189{bottom:368.114667pt;}
.y29b{bottom:368.670667pt;}
.y10{bottom:370.177333pt;}
.y12d{bottom:371.604000pt;}
.y397{bottom:371.713333pt;}
.y1db{bottom:374.173333pt;}
.y101{bottom:375.433333pt;}
.y19a{bottom:376.702667pt;}
.y268{bottom:376.809333pt;}
.y1ee{bottom:377.448000pt;}
.y22b{bottom:377.908000pt;}
.y9e{bottom:378.222667pt;}
.y188{bottom:378.741333pt;}
.yd0{bottom:379.417333pt;}
.y77{bottom:380.214667pt;}
.y15d{bottom:380.760000pt;}
.y362{bottom:382.044000pt;}
.y2d0{bottom:382.104000pt;}
.y332{bottom:382.473333pt;}
.y21e{bottom:382.605333pt;}
.y31e{bottom:382.872000pt;}
.y1da{bottom:384.800000pt;}
.y2fc{bottom:385.408000pt;}
.y396{bottom:387.056000pt;}
.y19b{bottom:387.329333pt;}
.y12c{bottom:387.594667pt;}
.y1ef{bottom:388.074667pt;}
.y21b{bottom:388.534667pt;}
.y187{bottom:389.368000pt;}
.y267{bottom:391.421333pt;}
.y100{bottom:392.170667pt;}
.y21d{bottom:393.232000pt;}
.y9d{bottom:394.960000pt;}
.yf{bottom:395.376000pt;}
.y1d9{bottom:395.428000pt;}
.ycf{bottom:396.154667pt;}
.y2cf{bottom:396.716000pt;}
.y76{bottom:396.952000pt;}
.y15c{bottom:397.497333pt;}
.y42{bottom:397.533333pt;}
.y199{bottom:397.956000pt;}
.y1ed{bottom:398.701333pt;}
.y219{bottom:399.161333pt;}
.y331{bottom:399.210667pt;}
.y31d{bottom:399.609333pt;}
.y186{bottom:399.996000pt;}
.y2fb{bottom:402.145333pt;}
.y12b{bottom:402.206667pt;}
.y395{bottom:402.398667pt;}
.y361{bottom:403.057333pt;}
.y29a{bottom:403.821333pt;}
.y21c{bottom:403.858667pt;}
.y266{bottom:406.033333pt;}
.y197{bottom:408.582667pt;}
.y242{bottom:408.873333pt;}
.yff{bottom:408.908000pt;}
.y1eb{bottom:409.328000pt;}
.y21a{bottom:409.789333pt;}
.y35f{bottom:410.364000pt;}
.ye{bottom:411.276000pt;}
.y2ce{bottom:411.328000pt;}
.y9c{bottom:411.697333pt;}
.y1d8{bottom:412.696000pt;}
.yce{bottom:412.892000pt;}
.y75{bottom:413.689333pt;}
.y15b{bottom:414.234667pt;}
.y41{bottom:414.828000pt;}
.y31c{bottom:416.346667pt;}
.y299{bottom:416.441333pt;}
.y12a{bottom:416.818667pt;}
.y185{bottom:417.264000pt;}
.y360{bottom:417.669333pt;}
.y394{bottom:417.741333pt;}
.y2fa{bottom:418.882667pt;}
.y198{bottom:419.209333pt;}
.y330{bottom:419.933333pt;}
.y1ec{bottom:419.954667pt;}
.y265{bottom:420.645333pt;}
.y1d7{bottom:423.322667pt;}
.yfe{bottom:425.645333pt;}
.y218{bottom:426.817333pt;}
.y2cd{bottom:427.318667pt;}
.y184{bottom:427.890667pt;}
.y9b{bottom:428.434667pt;}
.ycd{bottom:429.629333pt;}
.y196{bottom:429.836000pt;}
.y74{bottom:430.426667pt;}
.y23e{bottom:430.548000pt;}
.y1ea{bottom:430.581333pt;}
.y15a{bottom:430.972000pt;}
.y129{bottom:431.430667pt;}
.y40{bottom:432.124000pt;}
.y31b{bottom:433.084000pt;}
.y298{bottom:433.190667pt;}
.y1d6{bottom:433.949333pt;}
.yd{bottom:435.146667pt;}
.y264{bottom:435.257333pt;}
.y2f9{bottom:435.620000pt;}
.y183{bottom:438.517333pt;}
.y35e{bottom:438.682667pt;}
.y241{bottom:439.134667pt;}
.y194{bottom:440.462667pt;}
.y23d{bottom:441.174667pt;}
.y1e8{bottom:441.208000pt;}
.y2cc{bottom:441.930667pt;}
.yfd{bottom:442.382667pt;}
.y1d5{bottom:444.576000pt;}
.y20e{bottom:445.160000pt;}
.y9a{bottom:445.172000pt;}
.ycc{bottom:446.366667pt;}
.y73{bottom:447.164000pt;}
.y128{bottom:447.420000pt;}
.y297{bottom:447.802667pt;}
.y393{bottom:448.425333pt;}
.y3f{bottom:449.418667pt;}
.y23f{bottom:449.761333pt;}
.y31a{bottom:449.821333pt;}
.y263{bottom:449.869333pt;}
.yc{bottom:451.048000pt;}
.y195{bottom:451.089333pt;}
.y23c{bottom:451.801333pt;}
.y1e9{bottom:451.834667pt;}
.y2f8{bottom:452.357333pt;}
.y35c{bottom:453.294667pt;}
.y159{bottom:454.350667pt;}
.y182{bottom:455.786667pt;}
.y2cb{bottom:456.541333pt;}
.yfc{bottom:459.118667pt;}
.y240{bottom:460.388000pt;}
.y193{bottom:461.716000pt;}
.y1d4{bottom:461.845333pt;}
.y99{bottom:461.909333pt;}
.y127{bottom:462.032000pt;}
.y296{bottom:462.414667pt;}
.y1e7{bottom:462.462667pt;}
.ycb{bottom:463.104000pt;}
.y392{bottom:463.768000pt;}
.y72{bottom:463.901333pt;}
.y262{bottom:464.480000pt;}
.y181{bottom:466.413333pt;}
.y319{bottom:466.557333pt;}
.y3e{bottom:466.713333pt;}
.yb{bottom:466.948000pt;}
.y35d{bottom:467.906667pt;}
.y3a8{bottom:468.108000pt;}
.y23b{bottom:469.069333pt;}
.y2f7{bottom:469.094667pt;}
.y217{bottom:471.014667pt;}
.y158{bottom:471.088000pt;}
.y2ca{bottom:471.153333pt;}
.y191{bottom:472.344000pt;}
.y1d3{bottom:472.472000pt;}
.y1e5{bottom:473.089333pt;}
.yfb{bottom:475.856000pt;}
.y126{bottom:476.644000pt;}
.y295{bottom:477.026667pt;}
.y180{bottom:477.040000pt;}
.y98{bottom:478.646667pt;}
.y261{bottom:479.092000pt;}
.y391{bottom:479.110667pt;}
.y23a{bottom:479.696000pt;}
.yca{bottom:479.841333pt;}
.y71{bottom:480.638667pt;}
.y215{bottom:481.641333pt;}
.ya{bottom:482.848000pt;}
.y192{bottom:482.970667pt;}
.y1d2{bottom:483.098667pt;}
.y318{bottom:483.294667pt;}
.y20d{bottom:483.681333pt;}
.y1e6{bottom:483.716000pt;}
.y3d{bottom:484.009333pt;}
.y2f6{bottom:485.832000pt;}
.y2c9{bottom:487.144000pt;}
.y17f{bottom:487.666667pt;}
.y157{bottom:487.825333pt;}
.y35b{bottom:488.921333pt;}
.y239{bottom:490.324000pt;}
.y294{bottom:491.638667pt;}
.y216{bottom:492.269333pt;}
.yfa{bottom:492.593333pt;}
.y190{bottom:493.597333pt;}
.y260{bottom:493.704000pt;}
.y20c{bottom:494.308000pt;}
.y1d1{bottom:494.342667pt;}
.y390{bottom:494.453333pt;}
.y97{bottom:495.384000pt;}
.yc9{bottom:496.578667pt;}
.y70{bottom:497.376000pt;}
.y125{bottom:497.658667pt;}
.y9{bottom:498.749333pt;}
.y317{bottom:500.032000pt;}
.y238{bottom:500.950667pt;}
.y3c{bottom:501.304000pt;}
.y2c8{bottom:501.756000pt;}
.y2f5{bottom:502.569333pt;}
.y214{bottom:502.896000pt;}
.y18e{bottom:504.224000pt;}
.y156{bottom:504.562667pt;}
.y17e{bottom:504.934667pt;}
.y1cf{bottom:504.969333pt;}
.y293{bottom:506.250667pt;}
.y25f{bottom:508.316000pt;}
.yf9{bottom:509.330667pt;}
.y38f{bottom:509.796000pt;}
.y35a{bottom:509.934667pt;}
.y237{bottom:511.577333pt;}
.yc8{bottom:513.316000pt;}
.y212{bottom:513.522667pt;}
.y6f{bottom:514.113333pt;}
.y8{bottom:514.649333pt;}
.y18f{bottom:514.850667pt;}
.y17d{bottom:515.562667pt;}
.y1d0{bottom:515.596000pt;}
.y96{bottom:516.105333pt;}
.y2c7{bottom:516.368000pt;}
.y316{bottom:516.769333pt;}
.y359{bottom:517.241333pt;}
.y3b{bottom:518.598667pt;}
.y2f4{bottom:519.306667pt;}
.y236{bottom:522.204000pt;}
.y25e{bottom:522.928000pt;}
.y213{bottom:524.149333pt;}
.y38e{bottom:525.138667pt;}
.y18d{bottom:525.477333pt;}
.y124{bottom:525.764000pt;}
.yf8{bottom:526.068000pt;}
.y17c{bottom:526.189333pt;}
.y292{bottom:527.264000pt;}
.y155{bottom:527.941333pt;}
.yc7{bottom:530.053333pt;}
.y7{bottom:530.549333pt;}
.y6e{bottom:530.850667pt;}
.y2c6{bottom:530.980000pt;}
.y1ce{bottom:532.625333pt;}
.y20b{bottom:532.830667pt;}
.y315{bottom:533.506667pt;}
.y211{bottom:534.776000pt;}
.y3a{bottom:535.894667pt;}
.y2f3{bottom:536.044000pt;}
.y18b{bottom:536.104000pt;}
.y17b{bottom:536.816000pt;}
.y25d{bottom:537.540000pt;}
.y38d{bottom:540.481333pt;}
.yf7{bottom:542.805333pt;}
.y20a{bottom:543.457333pt;}
.y154{bottom:544.678667pt;}
.y20f{bottom:545.402667pt;}
.y358{bottom:545.561333pt;}
.y95{bottom:545.993333pt;}
.y6{bottom:546.450667pt;}
.y18c{bottom:546.730667pt;}
.yc6{bottom:546.790667pt;}
.y2c5{bottom:546.970667pt;}
.y6d{bottom:547.588000pt;}
.y291{bottom:548.278667pt;}
.y314{bottom:550.244000pt;}
.y25c{bottom:552.152000pt;}
.y2f2{bottom:552.781333pt;}
.y39{bottom:553.189333pt;}
.y17a{bottom:554.084000pt;}
.y38c{bottom:555.824000pt;}
.y210{bottom:556.029333pt;}
.y1cd{bottom:556.501333pt;}
.y177{bottom:557.357333pt;}
.y123{bottom:558.745333pt;}
.yf6{bottom:559.542667pt;}
.y356{bottom:560.173333pt;}
.y209{bottom:560.726667pt;}
.y153{bottom:561.416000pt;}
.y2c4{bottom:561.582667pt;}
.y5{bottom:562.350667pt;}
.y94{bottom:562.730667pt;}
.yc5{bottom:563.528000pt;}
.y6c{bottom:564.325333pt;}
.y179{bottom:564.710667pt;}
.y1c8{bottom:564.780000pt;}
.y206{bottom:566.656000pt;}
.y25b{bottom:566.764000pt;}
.y313{bottom:566.981333pt;}
.y1cc{bottom:567.128000pt;}
.y175{bottom:567.985333pt;}
.y2f1{bottom:569.518667pt;}
.y38{bottom:570.485333pt;}
.y38b{bottom:571.165333pt;}
.y208{bottom:571.353333pt;}
.y357{bottom:574.784000pt;}
.y178{bottom:575.337333pt;}
.y1c6{bottom:575.406667pt;}
.y122{bottom:575.482667pt;}
.y2c3{bottom:576.194667pt;}
.yf5{bottom:576.280000pt;}
.y290{bottom:576.385333pt;}
.y204{bottom:577.282667pt;}
.y1cb{bottom:577.754667pt;}
.y152{bottom:578.153333pt;}
.y4{bottom:578.250667pt;}
.y176{bottom:578.612000pt;}
.y93{bottom:579.468000pt;}
.yc4{bottom:580.265333pt;}
.y6b{bottom:581.062667pt;}
.y25a{bottom:581.376000pt;}
.y207{bottom:581.980000pt;}
.y312{bottom:583.718667pt;}
.y1c7{bottom:586.033333pt;}
.y2f0{bottom:586.256000pt;}
.y38a{bottom:586.508000pt;}
.y37{bottom:587.780000pt;}
.y205{bottom:587.910667pt;}
.y1ca{bottom:588.381333pt;}
.y2c2{bottom:590.806667pt;}
.y121{bottom:592.220000pt;}
.yf4{bottom:593.017333pt;}
.y1{bottom:594.151968pt;}
.y151{bottom:594.890667pt;}
.y174{bottom:595.640000pt;}
.y355{bottom:595.798667pt;}
.y259{bottom:595.988000pt;}
.y92{bottom:596.205333pt;}
.yc3{bottom:597.002667pt;}
.y6a{bottom:597.800000pt;}
.y1c9{bottom:599.008000pt;}
.y311{bottom:600.456000pt;}
.y389{bottom:601.850667pt;}
.y2ef{bottom:602.993333pt;}
.y353{bottom:603.104000pt;}
.y203{bottom:604.938667pt;}
.y36{bottom:605.074667pt;}
.y28f{bottom:605.382667pt;}
.y2c1{bottom:606.796000pt;}
.y120{bottom:608.957333pt;}
.yf3{bottom:609.754667pt;}
.y354{bottom:610.410667pt;}
.y258{bottom:610.598667pt;}
.y150{bottom:611.628000pt;}
.y172{bottom:612.669333pt;}
.y91{bottom:612.942667pt;}
.y69{bottom:614.537333pt;}
.y310{bottom:617.193333pt;}
.yc2{bottom:617.725333pt;}
.y171{bottom:617.982667pt;}
.y2ee{bottom:619.730667pt;}
.y2c0{bottom:621.408000pt;}
.y1c4{bottom:621.968000pt;}
.y28e{bottom:622.120000pt;}
.y35{bottom:622.370667pt;}
.y173{bottom:623.296000pt;}
.y257{bottom:625.210667pt;}
.y11f{bottom:625.694667pt;}
.yf2{bottom:626.492000pt;}
.y1c3{bottom:627.281333pt;}
.y14f{bottom:628.365333pt;}
.y90{bottom:629.680000pt;}
.y68{bottom:631.274667pt;}
.y352{bottom:631.424000pt;}
.y388{bottom:632.536000pt;}
.y1c5{bottom:632.594667pt;}
.y30f{bottom:633.930667pt;}
.y2bf{bottom:636.020000pt;}
.y2ed{bottom:636.468000pt;}
.y351{bottom:638.730667pt;}
.y28d{bottom:638.857333pt;}
.y256{bottom:639.822667pt;}
.y11e{bottom:642.432000pt;}
.y14e{bottom:645.102667pt;}
.y8f{bottom:646.417333pt;}
.yf1{bottom:647.214667pt;}
.yc1{bottom:647.613333pt;}
.y387{bottom:647.878667pt;}
.y67{bottom:648.012000pt;}
.y170{bottom:648.613333pt;}
.y34{bottom:650.280000pt;}
.y2be{bottom:650.632000pt;}
.y30e{bottom:650.668000pt;}
.y255{bottom:654.434667pt;}
.y28c{bottom:655.594667pt;}
.y2ec{bottom:657.189333pt;}
.y1c2{bottom:657.912000pt;}
.y11d{bottom:659.169333pt;}
.y14d{bottom:661.840000pt;}
.y8e{bottom:663.154667pt;}
.y386{bottom:663.221333pt;}
.yc0{bottom:664.350667pt;}
.y33{bottom:664.626667pt;}
.y66{bottom:664.749333pt;}
.y2bd{bottom:666.622667pt;}
.y350{bottom:667.050667pt;}
.y30d{bottom:667.405333pt;}
.y254{bottom:669.046667pt;}
.y28b{bottom:672.332000pt;}
.y11c{bottom:675.906667pt;}
.yf0{bottom:677.102667pt;}
.y385{bottom:678.564000pt;}
.y14c{bottom:678.577333pt;}
.y8d{bottom:679.892000pt;}
.ybf{bottom:681.088000pt;}
.y65{bottom:681.485333pt;}
.y32{bottom:682.829333pt;}
.y253{bottom:683.658667pt;}
.y30c{bottom:684.142667pt;}
.y2bc{bottom:687.636000pt;}
.y2eb{bottom:688.076000pt;}
.y28a{bottom:689.069333pt;}
.y11b{bottom:692.644000pt;}
.y31{bottom:693.318667pt;}
.yef{bottom:693.840000pt;}
.y384{bottom:693.906667pt;}
.y34f{bottom:695.156000pt;}
.y8c{bottom:696.629333pt;}
.ybe{bottom:697.825333pt;}
.y64{bottom:698.222667pt;}
.y252{bottom:699.649333pt;}
.y2ea{bottom:700.694667pt;}
.y30b{bottom:700.880000pt;}
.y289{bottom:705.806667pt;}
.y2bb{bottom:708.650667pt;}
.y383{bottom:709.248000pt;}
.y11a{bottom:709.381333pt;}
.yee{bottom:710.577333pt;}
.y30{bottom:711.522667pt;}
.y16f{bottom:712.385333pt;}
.y2e9{bottom:713.314667pt;}
.y8b{bottom:713.366667pt;}
.y14b{bottom:714.250667pt;}
.ybd{bottom:714.562667pt;}
.y63{bottom:714.960000pt;}
.y2ba{bottom:715.956000pt;}
.y30a{bottom:717.617333pt;}
.y251{bottom:720.662667pt;}
.y2f{bottom:722.010667pt;}
.y382{bottom:724.590667pt;}
.y34e{bottom:725.428000pt;}
.y119{bottom:726.118667pt;}
.y14a{bottom:726.870667pt;}
.yed{bottom:727.314667pt;}
.y2e8{bottom:730.064000pt;}
.ybc{bottom:731.300000pt;}
.y62{bottom:731.697333pt;}
.y8a{bottom:734.089333pt;}
.y309{bottom:734.354667pt;}
.y381{bottom:739.933333pt;}
.y2e{bottom:740.214667pt;}
.y288{bottom:740.957333pt;}
.y250{bottom:741.677333pt;}
.y118{bottom:742.856000pt;}
.y149{bottom:743.620000pt;}
.yec{bottom:744.052000pt;}
.y2e7{bottom:744.676000pt;}
.ybb{bottom:748.036000pt;}
.y61{bottom:748.434667pt;}
.y2d{bottom:750.704000pt;}
.y308{bottom:751.092000pt;}
.y2b9{bottom:751.369333pt;}
.y89{bottom:752.021333pt;}
.y287{bottom:753.576000pt;}
.y380{bottom:755.276000pt;}
.y34d{bottom:758.105333pt;}
.y148{bottom:758.232000pt;}
.y2e6{bottom:759.288000pt;}
.y117{bottom:759.593333pt;}
.yeb{bottom:760.789333pt;}
.yba{bottom:764.773333pt;}
.y2c{bottom:765.050667pt;}
.y60{bottom:765.172000pt;}
.y286{bottom:766.196000pt;}
.y307{bottom:767.829333pt;}
.y2b8{bottom:768.464000pt;}
.y24f{bottom:769.784000pt;}
.y37f{bottom:770.618667pt;}
.y147{bottom:772.844000pt;}
.y2e5{bottom:775.278667pt;}
.y116{bottom:776.330667pt;}
.yea{bottom:777.526667pt;}
.y285{bottom:778.814667pt;}
.yb9{bottom:781.510667pt;}
.y34c{bottom:781.697333pt;}
.y5f{bottom:781.909333pt;}
.y2b{bottom:783.253333pt;}
.y306{bottom:784.566667pt;}
.y37e{bottom:785.961333pt;}
.y146{bottom:787.456000pt;}
.y2e4{bottom:789.890667pt;}
.y2a{bottom:793.742667pt;}
.ye9{bottom:794.264000pt;}
.y284{bottom:795.565333pt;}
.y2b7{bottom:796.184000pt;}
.y115{bottom:797.053333pt;}
.y34b{bottom:797.318667pt;}
.yb8{bottom:798.248000pt;}
.y5e{bottom:798.646667pt;}
.y305{bottom:801.304000pt;}
.y145{bottom:802.068000pt;}
.y24e{bottom:802.765333pt;}
.y2e3{bottom:804.502667pt;}
.ye8{bottom:811.001333pt;}
.y283{bottom:811.556000pt;}
.y29{bottom:811.946667pt;}
.y2b6{bottom:812.934667pt;}
.y34a{bottom:812.940000pt;}
.yb7{bottom:814.985333pt;}
.y5d{bottom:815.384000pt;}
.y37d{bottom:816.646667pt;}
.y144{bottom:816.680000pt;}
.y304{bottom:818.041333pt;}
.y2e2{bottom:819.114667pt;}
.y24d{bottom:819.502667pt;}
.y282{bottom:826.168000pt;}
.y2b5{bottom:827.546667pt;}
.ye7{bottom:827.738667pt;}
.y143{bottom:831.292000pt;}
.yb6{bottom:831.722667pt;}
.y37c{bottom:831.988000pt;}
.y5c{bottom:832.121333pt;}
.y303{bottom:834.778667pt;}
.y24c{bottom:836.240000pt;}
.y349{bottom:836.532000pt;}
.y2e1{bottom:840.128000pt;}
.y281{bottom:840.780000pt;}
.y2b4{bottom:842.158667pt;}
.y114{bottom:844.873333pt;}
.y28{bottom:845.270667pt;}
.y142{bottom:845.904000pt;}
.y37b{bottom:847.330667pt;}
.yb5{bottom:848.460000pt;}
.y5b{bottom:848.858667pt;}
.y302{bottom:851.516000pt;}
.y348{bottom:852.153333pt;}
.y24b{bottom:852.977333pt;}
.y280{bottom:855.392000pt;}
.y2b3{bottom:858.148000pt;}
.y141{bottom:860.516000pt;}
.y2e0{bottom:861.142667pt;}
.y113{bottom:861.610667pt;}
.y27{bottom:862.008000pt;}
.y37a{bottom:862.673333pt;}
.yb4{bottom:865.197333pt;}
.y5a{bottom:865.596000pt;}
.y301{bottom:868.253333pt;}
.y24a{bottom:869.713333pt;}
.y27f{bottom:870.002667pt;}
.y2b2{bottom:872.760000pt;}
.y140{bottom:875.126667pt;}
.y347{bottom:875.745333pt;}
.y2df{bottom:875.754667pt;}
.y379{bottom:878.016000pt;}
.ye6{bottom:878.348000pt;}
.yb3{bottom:881.934667pt;}
.y59{bottom:882.333333pt;}
.y300{bottom:884.990667pt;}
.y27e{bottom:885.993333pt;}
.y249{bottom:886.450667pt;}
.y2b1{bottom:887.372000pt;}
.y13f{bottom:889.738667pt;}
.y378{bottom:893.358667pt;}
.ye5{bottom:895.085333pt;}
.y26{bottom:897.490667pt;}
.yb2{bottom:898.672000pt;}
.y58{bottom:899.070667pt;}
.y346{bottom:899.336000pt;}
.y27d{bottom:900.605333pt;}
.y2ff{bottom:901.728000pt;}
.y2b0{bottom:901.984000pt;}
.y248{bottom:903.188000pt;}
.y2de{bottom:903.860000pt;}
.y13e{bottom:904.350667pt;}
.y377{bottom:908.701333pt;}
.ye4{bottom:911.822667pt;}
.y345{bottom:914.957333pt;}
.yb1{bottom:915.409333pt;}
.y57{bottom:915.808000pt;}
.y27c{bottom:916.596000pt;}
.y2fe{bottom:918.464000pt;}
.y13d{bottom:918.962667pt;}
.y247{bottom:919.925333pt;}
.y2dd{bottom:920.956000pt;}
.y25{bottom:922.597333pt;}
.y2af{bottom:922.998667pt;}
.y376{bottom:924.044000pt;}
.ye3{bottom:928.560000pt;}
.y344{bottom:930.578667pt;}
.y56{bottom:932.545333pt;}
.y13c{bottom:934.953333pt;}
.y2fd{bottom:935.201333pt;}
.yb0{bottom:936.132000pt;}
.y246{bottom:936.662667pt;}
.y27b{bottom:937.610667pt;}
.y375{bottom:939.386667pt;}
.y2ae{bottom:944.012000pt;}
.ye2{bottom:945.297333pt;}
.y343{bottom:946.201333pt;}
.y24{bottom:947.702667pt;}
.y55{bottom:949.282667pt;}
.y2ad{bottom:951.318667pt;}
.y2dc{bottom:951.938667pt;}
.y245{bottom:953.400000pt;}
.y374{bottom:954.729333pt;}
.y13b{bottom:955.966667pt;}
.y27a{bottom:958.624000pt;}
.ye1{bottom:962.034667pt;}
.y54{bottom:966.020000pt;}
.y2db{bottom:968.676000pt;}
.y342{bottom:969.792000pt;}
.y373{bottom:970.070667pt;}
.y23{bottom:972.809333pt;}
.y244{bottom:974.122667pt;}
.y53{bottom:982.757333pt;}
.y13a{bottom:984.073333pt;}
.y2da{bottom:985.413333pt;}
.y279{bottom:986.730667pt;}
.y1f{bottom:1011.464000pt;}
.y52{bottom:1038.548000pt;}
.y243{bottom:1041.204000pt;}
.h2{height:22.673858pt;}
.hd{height:23.209028pt;}
.h1a{height:24.760382pt;}
.h14{height:26.761523pt;}
.h19{height:26.890973pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.he{height:30.945242pt;}
.h13{height:31.157778pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h8{height:35.024664pt;}
.h15{height:35.052646pt;}
.h9{height:36.445809pt;}
.h11{height:38.415786pt;}
.h12{height:38.681455pt;}
.ha{height:38.947124pt;}
.h7{height:45.272024pt;}
.h18{height:48.144306pt;}
.hc{height:48.481423pt;}
.h1b{height:63.795772pt;}
.h1c{height:63.801105pt;}
.h1e{height:64.034876pt;}
.h1d{height:64.273980pt;}
.hb{height:69.148877pt;}
.h16{height:793.701333pt;}
.h17{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:52.456952pt;}
.x56{left:55.970667pt;}
.xc0{left:74.862667pt;}
.xbd{left:76.309333pt;}
.x71{left:117.478667pt;}
.x6f{left:120.770667pt;}
.x5f{left:125.410667pt;}
.x60{left:129.362667pt;}
.x6a{left:132.412000pt;}
.x7c{left:142.956000pt;}
.x73{left:146.053333pt;}
.x53{left:164.728000pt;}
.x5b{left:166.556000pt;}
.x76{left:172.488000pt;}
.x5d{left:178.625333pt;}
.x69{left:183.525333pt;}
.x62{left:186.462667pt;}
.x70{left:187.728000pt;}
.x6b{left:188.760000pt;}
.x7a{left:191.633333pt;}
.x5e{left:196.877333pt;}
.x72{left:198.849333pt;}
.x57{left:205.544000pt;}
.x75{left:209.514667pt;}
.x78{left:211.234667pt;}
.x74{left:212.461333pt;}
.x68{left:215.297333pt;}
.x7b{left:218.989333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x64{left:223.629333pt;}
.x67{left:225.796000pt;}
.x65{left:227.869333pt;}
.x77{left:229.152000pt;}
.x8c{left:230.388000pt;}
.x6e{left:231.634667pt;}
.x8d{left:232.956000pt;}
.x95{left:235.418667pt;}
.x6c{left:236.628000pt;}
.x6d{left:238.357333pt;}
.x5{left:239.924000pt;}
.x52{left:247.548000pt;}
.x9{left:250.204000pt;}
.x9d{left:251.145333pt;}
.x79{left:253.774667pt;}
.x98{left:254.804000pt;}
.x14{left:256.362667pt;}
.x99{left:259.185333pt;}
.x94{left:260.733333pt;}
.x9e{left:261.941333pt;}
.x15{left:263.004000pt;}
.x87{left:265.553333pt;}
.x30{left:266.618667pt;}
.x35{left:269.754667pt;}
.xb9{left:271.302667pt;}
.x36{left:273.141333pt;}
.x7{left:275.080000pt;}
.x7d{left:276.072000pt;}
.x93{left:277.118667pt;}
.x31{left:279.901333pt;}
.x88{left:281.938667pt;}
.x8{left:284.378667pt;}
.x37{left:286.425333pt;}
.x2c{left:287.877333pt;}
.x38{left:289.813333pt;}
.x84{left:291.878667pt;}
.xa{left:293.328000pt;}
.x85{left:295.506667pt;}
.x89{left:297.473333pt;}
.xb{left:299.969333pt;}
.x2d{left:301.160000pt;}
.x39{left:303.096000pt;}
.x83{left:305.532000pt;}
.xc{left:306.478667pt;}
.x4c{left:310.785333pt;}
.xd{left:313.120000pt;}
.x86{left:314.372000pt;}
.x45{left:316.176000pt;}
.x80{left:317.074667pt;}
.x48{left:318.400000pt;}
.x81{left:321.760000pt;}
.x82{left:323.134667pt;}
.x4a{left:324.586667pt;}
.x4b{left:325.836000pt;}
.x4d{left:326.900000pt;}
.x7f{left:328.509333pt;}
.x43{left:329.906667pt;}
.x4e{left:330.934667pt;}
.x49{left:331.957333pt;}
.x44{left:333.038667pt;}
.x4f{left:334.408000pt;}
.x1d{left:336.136000pt;}
.x46{left:337.874667pt;}
.x8b{left:339.334667pt;}
.x47{left:343.218667pt;}
.x1e{left:349.418667pt;}
.x2e{left:350.565333pt;}
.x1f{left:352.673333pt;}
.xa1{left:353.744000pt;}
.x9f{left:363.828000pt;}
.x20{left:365.957333pt;}
.xa2{left:367.028000pt;}
.x21{left:372.466667pt;}
.x50{left:377.434667pt;}
.xa3{left:378.764000pt;}
.xb8{left:383.834667pt;}
.x22{left:385.749333pt;}
.x9c{left:393.990667pt;}
.x3b{left:395.298667pt;}
.x51{left:398.182667pt;}
.x3a{left:400.252000pt;}
.x92{left:403.590667pt;}
.xba{left:406.489333pt;}
.x3c{left:408.581333pt;}
.xb5{left:411.140000pt;}
.xe{left:413.020000pt;}
.x54{left:416.420000pt;}
.xf{left:419.661333pt;}
.xb6{left:424.424000pt;}
.x97{left:427.590667pt;}
.xa0{left:429.512000pt;}
.xb7{left:434.718667pt;}
.x17{left:443.836000pt;}
.x19{left:450.842667pt;}
.x18{left:457.120000pt;}
.x23{left:460.284000pt;}
.xb1{left:461.224000pt;}
.x1a{left:464.126667pt;}
.x9a{left:466.282667pt;}
.x28{left:468.185333pt;}
.x90{left:469.105333pt;}
.x27{left:471.130667pt;}
.x24{left:473.568000pt;}
.xb2{left:474.506667pt;}
.x91{left:476.765333pt;}
.x2f{left:478.172000pt;}
.x29{left:481.469333pt;}
.x66{left:485.857333pt;}
.x5c{left:488.182667pt;}
.x61{left:489.140000pt;}
.x63{left:490.302667pt;}
.x58{left:491.669333pt;}
.x55{left:493.161333pt;}
.xb3{left:494.338667pt;}
.xbc{left:498.620000pt;}
.x9b{left:503.265333pt;}
.xb4{left:507.622667pt;}
.xbb{left:509.660000pt;}
.x25{left:517.609333pt;}
.x7e{left:522.060000pt;}
.x26{left:524.250667pt;}
.x96{left:527.266667pt;}
.xa6{left:529.258667pt;}
.x33{left:530.409333pt;}
.xa7{left:535.900000pt;}
.x32{left:538.054667pt;}
.x8a{left:539.389333pt;}
.x34{left:543.692000pt;}
.xc5{left:562.785333pt;}
.x2a{left:564.242667pt;}
.x2b{left:577.526667pt;}
.xc7{left:582.616000pt;}
.x5a{left:587.338667pt;}
.x59{left:588.733333pt;}
.xa4{left:594.921333pt;}
.xbe{left:598.792000pt;}
.x41{left:600.586667pt;}
.xc8{left:606.525333pt;}
.xa5{left:608.205333pt;}
.x42{left:613.870667pt;}
.xc9{left:615.316000pt;}
.xc3{left:618.106667pt;}
.xbf{left:622.702667pt;}
.x12{left:626.297333pt;}
.x8e{left:637.294667pt;}
.x13{left:639.581333pt;}
.xc4{left:642.017333pt;}
.x8f{left:644.954667pt;}
.xa8{left:654.072000pt;}
.xa9{left:660.713333pt;}
.xaa{left:664.021333pt;}
.xab{left:677.305333pt;}
.xca{left:678.796000pt;}
.xac{left:680.612000pt;}
.x3f{left:681.558667pt;}
.x40{left:685.246667pt;}
.xb0{left:686.988000pt;}
.xad{left:693.896000pt;}
.xae{left:697.204000pt;}
.xc6{left:700.705333pt;}
.x1b{left:702.582667pt;}
.x3d{left:707.086667pt;}
.xc1{left:708.428000pt;}
.xaf{left:710.486667pt;}
.x3e{left:720.370667pt;}
.x10{left:727.066667pt;}
.xc2{left:732.338667pt;}
.x16{left:733.569333pt;}
.x11{left:740.350667pt;}
.x1c{left:744.637333pt;}
}




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