
    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_c36324b9778d442f9f8dcc5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_1cbff9a912dfd7becb2d89b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_63e41dee3c88a81df2accdea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.114000;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_a037701b6c8e9604bf678276.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f4ecb239c98239de44f8c631.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_55b0bcacd8bc7000c63eaa49.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_1cb49d2f9bf19f393a60f1f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.114000;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_1dff6781c21c1209acc42da3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a4554d0a119abdb89c2d0676.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.685000;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_04be784a85562920f9dc8215.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_a037701b6c8e9604bf678276.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_54d18b631c7bff38f3c460fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.628000;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_7c67804d7910730fbd026644.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_82df77fb73c3545988afe1f6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921000;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_7e23e6498dbc4923961e351a.woff2')format("woff");}.fff{font-family:fff;line-height:0.703450;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:ff10;src:url('chunks/assets/font_f57c35298b31675758a98015.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.804000;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:ff11;src:url('chunks/assets/font_20272585175d540cc2836780.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.520000;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:ff12;src:url('chunks/assets/font_fbb3bf83234db7fe01040036.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m1b{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);}
.m3{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);}
.m15{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);}
.m16{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);}
.m17{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);}
.m5{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);}
.mc{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);}
.me{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);}
.m18{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);}
.m14{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);}
.m1c{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);}
.md{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);}
.m1f{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);}
.m1a{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);}
.mf{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);}
.m1e{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);}
.ma{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);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m11{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);}
.mb{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);}
.m13{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);}
.m8{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);}
.m10{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.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);}
.m7{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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v27{vertical-align:-85.704000px;}
.v28{vertical-align:-41.802000px;}
.v7{vertical-align:-38.856000px;}
.v9{vertical-align:-35.868000px;}
.v2{vertical-align:-26.034000px;}
.v21{vertical-align:-23.754000px;}
.v15{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.566000px;}
.v16{vertical-align:16.176000px;}
.v1f{vertical-align:17.934000px;}
.v17{vertical-align:19.020000px;}
.v22{vertical-align:20.322000px;}
.va{vertical-align:23.754000px;}
.v5{vertical-align:25.320000px;}
.v14{vertical-align:27.024000px;}
.v12{vertical-align:28.596000px;}
.v13{vertical-align:30.162000px;}
.v1{vertical-align:31.236000px;}
.v1e{vertical-align:40.746000px;}
.vc{vertical-align:44.898000px;}
.v1a{vertical-align:46.722000px;}
.v20{vertical-align:58.680000px;}
.v18{vertical-align:67.770000px;}
.v3{vertical-align:70.164000px;}
.v6{vertical-align:71.730000px;}
.vd{vertical-align:85.710000px;}
.v29{vertical-align:88.092000px;}
.v19{vertical-align:89.178000px;}
.v1c{vertical-align:90.834000px;}
.v10{vertical-align:106.026000px;}
.vf{vertical-align:108.756000px;}
.v11{vertical-align:115.062000px;}
.v1d{vertical-align:117.864000px;}
.v2b{vertical-align:121.572000px;}
.v26{vertical-align:123.960000px;}
.ve{vertical-align:127.680000px;}
.v8{vertical-align:128.718000px;}
.vb{vertical-align:130.608000px;}
.v25{vertical-align:132.990000px;}
.v1b{vertical-align:158.610000px;}
.v24{vertical-align:160.998000px;}
.v2a{vertical-align:166.470000px;}
.v23{vertical-align:168.858000px;}
.ls1d{letter-spacing:0.000000px;}
.ls96{letter-spacing:0.001056px;}
.ls3d{letter-spacing:0.002012px;}
.ls2c{letter-spacing:0.002045px;}
.lsa{letter-spacing:0.002108px;}
.ls56{letter-spacing:0.002698px;}
.ls62{letter-spacing:0.002700px;}
.ls9{letter-spacing:0.002793px;}
.ls7d{letter-spacing:0.003181px;}
.ls22{letter-spacing:0.004344px;}
.ls5d{letter-spacing:0.004438px;}
.ls6a{letter-spacing:0.010835px;}
.ls78{letter-spacing:0.015165px;}
.ls50{letter-spacing:0.016835px;}
.ls4e{letter-spacing:0.020566px;}
.ls4c{letter-spacing:0.021165px;}
.ls24{letter-spacing:0.026026px;}
.ls1b{letter-spacing:0.026566px;}
.ls45{letter-spacing:0.027656px;}
.ls34{letter-spacing:0.032022px;}
.ls75{letter-spacing:0.033656px;}
.ls66{letter-spacing:0.065455px;}
.ls3e{letter-spacing:0.242692px;}
.ls73{letter-spacing:0.251883px;}
.ls40{letter-spacing:0.257883px;}
.ls31{letter-spacing:0.261818px;}
.ls3{letter-spacing:0.327273px;}
.ls25{letter-spacing:1.721542px;}
.ls28{letter-spacing:2.356366px;}
.ls98{letter-spacing:2.487275px;}
.ls2e{letter-spacing:2.983110px;}
.ls63{letter-spacing:2.983194px;}
.ls2{letter-spacing:2.984915px;}
.ls4a{letter-spacing:2.985056px;}
.ls1{letter-spacing:2.986200px;}
.ls1f{letter-spacing:2.988471px;}
.ls2f{letter-spacing:2.988593px;}
.ls47{letter-spacing:2.989194px;}
.ls20{letter-spacing:2.990292px;}
.ls6b{letter-spacing:2.990915px;}
.ls77{letter-spacing:2.991056px;}
.ls0{letter-spacing:2.992200px;}
.ls8d{letter-spacing:2.994103px;}
.ls36{letter-spacing:2.994593px;}
.ls4b{letter-spacing:6.278517px;}
.ls2d{letter-spacing:6.293424px;}
.ls30{letter-spacing:6.299424px;}
.ls8f{letter-spacing:6.931489px;}
.ls92{letter-spacing:7.014531px;}
.ls5b{letter-spacing:7.014944px;}
.ls39{letter-spacing:7.021914px;}
.ls7e{letter-spacing:7.037448px;}
.ls8c{letter-spacing:7.040140px;}
.ls6{letter-spacing:7.043428px;}
.ls57{letter-spacing:7.055919px;}
.ls81{letter-spacing:7.061919px;}
.lsf{letter-spacing:7.069097px;}
.ls61{letter-spacing:7.169412px;}
.ls52{letter-spacing:7.172700px;}
.ls12{letter-spacing:7.173181px;}
.ls6f{letter-spacing:7.174438px;}
.ls76{letter-spacing:7.175412px;}
.ls43{letter-spacing:7.179181px;}
.ls99{letter-spacing:9.098189px;}
.ls67{letter-spacing:10.865464px;}
.ls55{letter-spacing:10.905181px;}
.ls6e{letter-spacing:10.906438px;}
.ls95{letter-spacing:10.909599px;}
.ls41{letter-spacing:10.910012px;}
.ls7b{letter-spacing:10.910793px;}
.ls5a{letter-spacing:10.911181px;}
.ls8{letter-spacing:10.911956px;}
.ls94{letter-spacing:10.919903px;}
.ls85{letter-spacing:10.930918px;}
.ls91{letter-spacing:11.127282px;}
.ls71{letter-spacing:11.715181px;}
.ls51{letter-spacing:11.721181px;}
.ls26{letter-spacing:13.885051px;}
.ls35{letter-spacing:13.891194px;}
.ls1c{letter-spacing:13.892915px;}
.ls23{letter-spacing:13.896471px;}
.ls37{letter-spacing:13.897194px;}
.ls3a{letter-spacing:13.898915px;}
.ls1a{letter-spacing:13.900613px;}
.ls21{letter-spacing:14.334557px;}
.ls10{letter-spacing:14.530921px;}
.ls5e{letter-spacing:14.541181px;}
.ls15{letter-spacing:14.542438px;}
.ls82{letter-spacing:14.543412px;}
.ls14{letter-spacing:14.547181px;}
.ls88{letter-spacing:14.548438px;}
.ls7c{letter-spacing:14.555377px;}
.ls58{letter-spacing:14.559189px;}
.ls53{letter-spacing:14.561377px;}
.ls83{letter-spacing:14.596376px;}
.ls7a{letter-spacing:14.727285px;}
.ls3b{letter-spacing:14.792740px;}
.ls3f{letter-spacing:17.528915px;}
.ls97{letter-spacing:17.533223px;}
.ls72{letter-spacing:17.534915px;}
.ls93{letter-spacing:17.539223px;}
.ls3c{letter-spacing:17.934560px;}
.ls87{letter-spacing:17.939221px;}
.ls42{letter-spacing:17.951428px;}
.ls11{letter-spacing:17.956139px;}
.ls74{letter-spacing:17.957428px;}
.ls5f{letter-spacing:18.000015px;}
.ls32{letter-spacing:18.063161px;}
.lse{letter-spacing:18.080700px;}
.ls89{letter-spacing:18.105154px;}
.ls17{letter-spacing:18.111154px;}
.ls2a{letter-spacing:18.130924px;}
.lsb{letter-spacing:18.182793px;}
.lsc{letter-spacing:18.196379px;}
.ls8e{letter-spacing:18.392743px;}
.ls86{letter-spacing:18.458197px;}
.ls4{letter-spacing:21.010927px;}
.ls5{letter-spacing:21.076381px;}
.ls7{letter-spacing:21.166613px;}
.ls65{letter-spacing:21.665473px;}
.ls6c{letter-spacing:21.713412px;}
.ls46{letter-spacing:21.719412px;}
.lsd{letter-spacing:21.796382px;}
.ls1e{letter-spacing:21.861836px;}
.ls38{letter-spacing:22.189109px;}
.ls29{letter-spacing:23.988879px;}
.ls2b{letter-spacing:25.200021px;}
.ls8b{letter-spacing:25.330930px;}
.ls27{letter-spacing:25.342258px;}
.ls7f{letter-spacing:25.355412px;}
.ls18{letter-spacing:26.560677px;}
.ls33{letter-spacing:26.566677px;}
.ls5c{letter-spacing:28.930933px;}
.ls49{letter-spacing:34.908532px;}
.ls4f{letter-spacing:41.372915px;}
.ls69{letter-spacing:41.378915px;}
.ls59{letter-spacing:58.988700px;}
.ls54{letter-spacing:58.994700px;}
.ls13{letter-spacing:62.150700px;}
.ls44{letter-spacing:62.156700px;}
.ls8a{letter-spacing:66.947412px;}
.ls19{letter-spacing:74.447412px;}
.ls16{letter-spacing:76.697412px;}
.ls6d{letter-spacing:94.862700px;}
.ls48{letter-spacing:101.881223px;}
.ls70{letter-spacing:109.406700px;}
.ls79{letter-spacing:163.745412px;}
.ls4d{letter-spacing:163.751412px;}
.ls84{letter-spacing:245.561412px;}
.ls64{letter-spacing:245.567412px;}
.ls90{letter-spacing:261.929412px;}
.ls60{letter-spacing:503.830438px;}
.ls80{letter-spacing:638.182350px;}
.ls68{letter-spacing:815.524438px;}
.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;}
}
.ws60{word-spacing:-54.523682px;}
.ws57{word-spacing:-50.809387px;}
.ws50{word-spacing:-48.418425px;}
.ws17{word-spacing:-47.324343px;}
.ws5d{word-spacing:-47.323676px;}
.ws1c{word-spacing:-42.637126px;}
.ws4c{word-spacing:-36.913078px;}
.ws72{word-spacing:-33.453846px;}
.ws4{word-spacing:-32.727300px;}
.ws1a{word-spacing:-32.714209px;}
.ws2c{word-spacing:-31.771663px;}
.ws15{word-spacing:-31.706208px;}
.ws49{word-spacing:-29.641078px;}
.ws58{word-spacing:-28.106205px;}
.ws3c{word-spacing:-24.506202px;}
.ws38{word-spacing:-24.440748px;}
.ws3a{word-spacing:-24.244384px;}
.ws0{word-spacing:-23.245313px;}
.ws1b{word-spacing:-18.183288px;}
.ws4f{word-spacing:-16.225552px;}
.wse{word-spacing:-16.139475px;}
.ws22{word-spacing:-16.101832px;}
.ws8b{word-spacing:-15.840013px;}
.ws6d{word-spacing:-15.774559px;}
.ws99{word-spacing:-15.709104px;}
.ws85{word-spacing:-15.643649px;}
.ws41{word-spacing:-15.381831px;}
.ws9f{word-spacing:-14.661830px;}
.ws8c{word-spacing:-14.537467px;}
.ws6e{word-spacing:-14.472012px;}
.ws9a{word-spacing:-14.406557px;}
.ws86{word-spacing:-14.341103px;}
.ws68{word-spacing:-13.876375px;}
.ws75{word-spacing:-13.680011px;}
.wsa0{word-spacing:-13.424738px;}
.ws73{word-spacing:-13.352738px;}
.ws25{word-spacing:-13.156375px;}
.ws24{word-spacing:-12.829102px;}
.ws7{word-spacing:-12.732203px;}
.ws76{word-spacing:-12.508374px;}
.ws7b{word-spacing:-12.370919px;}
.ws74{word-spacing:-12.181101px;}
.ws30{word-spacing:-11.912737px;}
.ws69{word-spacing:-11.520010px;}
.ws6b{word-spacing:-11.454555px;}
.ws7c{word-spacing:-11.330191px;}
.ws3d{word-spacing:-11.323646px;}
.ws11{word-spacing:-11.258191px;}
.ws2d{word-spacing:-11.192737px;}
.ws12{word-spacing:-11.127282px;}
.ws32{word-spacing:-11.061827px;}
.ws2f{word-spacing:-10.996373px;}
.ws3{word-spacing:-10.930918px;}
.ws33{word-spacing:-10.865464px;}
.ws10{word-spacing:-10.800009px;}
.ws1e{word-spacing:-10.734554px;}
.ws1f{word-spacing:-10.669100px;}
.ws70{word-spacing:-10.610191px;}
.wsd{word-spacing:-10.603645px;}
.ws43{word-spacing:-10.538191px;}
.ws6c{word-spacing:-10.479281px;}
.ws42{word-spacing:-10.472736px;}
.ws82{word-spacing:-10.413827px;}
.ws67{word-spacing:-10.407281px;}
.ws88{word-spacing:-10.348372px;}
.ws77{word-spacing:-10.282918px;}
.ws90{word-spacing:-10.217463px;}
.ws3e{word-spacing:-10.210918px;}
.ws97{word-spacing:-10.152008px;}
.ws78{word-spacing:-10.086554px;}
.ws34{word-spacing:-10.021099px;}
.ws6{word-spacing:-9.982525px;}
.ws8d{word-spacing:-9.955645px;}
.ws71{word-spacing:-9.890190px;}
.ws45{word-spacing:-9.883645px;}
.ws39{word-spacing:-9.759281px;}
.ws2b{word-spacing:-9.687281px;}
.ws98{word-spacing:-9.628372px;}
.ws16{word-spacing:-9.621826px;}
.ws8{word-spacing:-9.504320px;}
.ws26{word-spacing:-9.490917px;}
.ws21{word-spacing:-9.151644px;}
.ws7d{word-spacing:-8.973826px;}
.ws47{word-spacing:-8.967280px;}
.ws8e{word-spacing:-8.901826px;}
.ws31{word-spacing:-8.640007px;}
.ws44{word-spacing:-8.312734px;}
.ws8f{word-spacing:-8.253825px;}
.ws13{word-spacing:-8.247280px;}
.ws66{word-spacing:-7.854552px;}
.ws2a{word-spacing:-7.723643px;}
.ws6f{word-spacing:-7.664734px;}
.ws23{word-spacing:-7.592734px;}
.ws7e{word-spacing:-7.396370px;}
.ws9e{word-spacing:-7.134551px;}
.ws6a{word-spacing:-7.069097px;}
.ws96{word-spacing:-7.010188px;}
.ws7f{word-spacing:-6.879278px;}
.ws4e{word-spacing:-6.676369px;}
.ws9d{word-spacing:-6.617460px;}
.ws2e{word-spacing:-6.610915px;}
.ws4d{word-spacing:-6.545460px;}
.ws80{word-spacing:-6.480005px;}
.ws87{word-spacing:-6.349096px;}
.wsf{word-spacing:-6.021823px;}
.ws81{word-spacing:-5.962914px;}
.ws28{word-spacing:-5.956369px;}
.ws29{word-spacing:-5.890914px;}
.wsb{word-spacing:-5.858009px;}
.ws83{word-spacing:-5.760005px;}
.wsa{word-spacing:-5.738458px;}
.ws40{word-spacing:-5.432732px;}
.ws84{word-spacing:-5.308368px;}
.ws8a{word-spacing:-5.301823px;}
.ws94{word-spacing:-5.105459px;}
.ws89{word-spacing:-4.981095px;}
.ws95{word-spacing:-4.784731px;}
.ws61{word-spacing:-4.064731px;}
.ws79{word-spacing:-3.927276px;}
.ws56{word-spacing:-3.673274px;}
.ws7a{word-spacing:-3.672003px;}
.ws37{word-spacing:-3.652367px;}
.ws4a{word-spacing:-3.586912px;}
.ws9{word-spacing:-3.347434px;}
.ws27{word-spacing:-2.749093px;}
.ws9c{word-spacing:-1.374547px;}
.ws9b{word-spacing:-1.315637px;}
.ws3f{word-spacing:-0.785455px;}
.ws53{word-spacing:-0.726546px;}
.ws1d{word-spacing:-0.100488px;}
.ws5c{word-spacing:-0.065455px;}
.ws35{word-spacing:-0.052364px;}
.ws18{word-spacing:-0.047821px;}
.ws20{word-spacing:0.000000px;}
.ws36{word-spacing:0.013091px;}
.ws63{word-spacing:0.798546px;}
.ws92{word-spacing:1.957093px;}
.ws91{word-spacing:2.160002px;}
.ws48{word-spacing:3.547639px;}
.ws52{word-spacing:5.945985px;}
.ws93{word-spacing:7.782552px;}
.ws54{word-spacing:16.853985px;}
.ws55{word-spacing:16.859985px;}
.ws4b{word-spacing:17.485373px;}
.ws2{word-spacing:23.312640px;}
.ws5{word-spacing:25.003657px;}
.ws59{word-spacing:25.069112px;}
.ws5f{word-spacing:25.330930px;}
.ws51{word-spacing:25.396385px;}
.ws5b{word-spacing:25.527294px;}
.ws14{word-spacing:26.770931px;}
.ws62{word-spacing:27.761985px;}
.ws1{word-spacing:27.975090px;}
.ws46{word-spacing:28.603660px;}
.wsc{word-spacing:29.454570px;}
.ws19{word-spacing:33.133119px;}
.ws64{word-spacing:34.531512px;}
.ws5a{word-spacing:45.439512px;}
.ws65{word-spacing:48.418425px;}
.ws5e{word-spacing:50.896812px;}
.ws3b{word-spacing:454.264513px;}
._21{margin-left:-21.624093px;}
._10{margin-left:-19.923207px;}
._11{margin-left:-14.532483px;}
._0{margin-left:-11.653650px;}
._20{margin-left:-8.553764px;}
._23{margin-left:-6.807278px;}
._3{margin-left:-5.518774px;}
._1{margin-left:-3.843225px;}
._2{margin-left:-2.228196px;}
._5{margin-left:-1.214902px;}
._d{width:1.448219px;}
._4{width:2.663111px;}
._1a{width:5.566380px;}
._1f{width:7.066858px;}
._18{width:10.930918px;}
._12{width:17.874644px;}
._19{width:19.756333px;}
._24{width:20.760065px;}
._f{width:22.063678px;}
._b{width:23.160285px;}
._25{width:24.218202px;}
._a{width:25.285079px;}
._8{width:26.643431px;}
._6{width:28.296915px;}
._7{width:29.522764px;}
._13{width:31.347275px;}
._14{width:34.101847px;}
._17{width:36.720031px;}
._e{width:38.678190px;}
._9{width:39.810550px;}
._22{width:41.028648px;}
._16{width:43.060909px;}
._15{width:44.770946px;}
._1d{width:46.407311px;}
._1c{width:54.523682px;}
._1b{width:75.984927px;}
._c{width:96.836850px;}
._1e{width:488.988171px;}
.fc2{color:rgb(5,150,105);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,185,129);}
.fs6{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:61.467000px;}
.y5b{bottom:100.134000px;}
.yc5{bottom:100.698000px;}
.y5a{bottom:102.171000px;}
.y2a{bottom:106.299000px;}
.y59{bottom:109.350000px;}
.yc6{bottom:111.922500px;}
.y58{bottom:113.395500px;}
.yc4{bottom:122.992500px;}
.y29{bottom:130.951500px;}
.yc3{bottom:133.945500px;}
.yfb{bottom:148.341000px;}
.y87{bottom:155.604000px;}
.y57{bottom:157.987500px;}
.yc2{bottom:158.226000px;}
.y25{bottom:168.723000px;}
.yc1{bottom:169.450500px;}
.y24{bottom:170.758500px;}
.y148{bottom:171.097500px;}
.y56{bottom:177.885000px;}
.y55{bottom:178.596000px;}
.y86{bottom:180.258000px;}
.y28{bottom:181.591500px;}
.y26{bottom:181.984500px;}
.y54{bottom:182.640000px;}
.y27{bottom:190.558500px;}
.yfa{bottom:191.107500px;}
.yc0{bottom:191.473500px;}
.y23{bottom:193.054500px;}
.y165{bottom:194.229000px;}
.y147{bottom:195.750000px;}
.y85{bottom:204.910500px;}
.y22{bottom:208.491000px;}
.ybf{bottom:217.227000px;}
.y164{bottom:218.881500px;}
.y146{bottom:220.402500px;}
.y53{bottom:221.733000px;}
.y12c{bottom:221.818500px;}
.y84{bottom:229.563000px;}
.y21{bottom:234.408000px;}
.yf9{bottom:245.722500px;}
.y51{bottom:247.777500px;}
.y20{bottom:248.655000px;}
.y1e{bottom:249.046500px;}
.ybc{bottom:252.735000px;}
.y83{bottom:254.215500px;}
.yf8{bottom:256.947000px;}
.y163{bottom:257.506500px;}
.y1f{bottom:257.620500px;}
.y52{bottom:259.261500px;}
.y145{bottom:260.547000px;}
.ybe{bottom:264.219000px;}
.y4e{bottom:270.486000px;}
.y12b{bottom:272.887500px;}
.y1d{bottom:273.699000px;}
.yb9{bottom:275.443500px;}
.y82{bottom:278.868000px;}
.y162{bottom:282.159000px;}
.y12a{bottom:284.112000px;}
.y144{bottom:285.201000px;}
.ybd{bottom:286.515000px;}
.y50{bottom:291.181500px;}
.y4f{bottom:294.169500px;}
.yf6{bottom:294.303000px;}
.ybb{bottom:296.139000px;}
.yf5{bottom:296.340000px;}
.yba{bottom:299.128500px;}
.y81{bottom:303.520500px;}
.y4d{bottom:304.863000px;}
.y1c{bottom:306.745500px;}
.yf7{bottom:307.564500px;}
.yb8{bottom:315.799500px;}
.yf4{bottom:318.634500px;}
.y161{bottom:320.784000px;}
.y128{bottom:321.469500px;}
.y127{bottom:323.506500px;}
.y143{bottom:325.345500px;}
.yb3{bottom:327.283500px;}
.yb5{bottom:329.149500px;}
.y1b{bottom:331.398000px;}
.yf3{bottom:334.071000px;}
.y129{bottom:334.731000px;}
.yb2{bottom:338.508000px;}
.y4c{bottom:339.064500px;}
.y80{bottom:339.741000px;}
.y160{bottom:345.436500px;}
.y126{bottom:345.801000px;}
.y142{bottom:349.998000px;}
.y7d{bottom:351.225000px;}
.yb4{bottom:356.049000px;}
.y1a{bottom:356.050500px;}
.yf2{bottom:358.687500px;}
.yb7{bottom:359.203500px;}
.y125{bottom:361.237500px;}
.y49{bottom:361.773000px;}
.yb6{bottom:362.191500px;}
.y7c{bottom:362.449500px;}
.y19{bottom:380.703000px;}
.y4b{bottom:382.468500px;}
.y124{bottom:382.671000px;}
.y7f{bottom:383.145000px;}
.yb1{bottom:384.012000px;}
.y15f{bottom:384.061500px;}
.yaf{bottom:384.469500px;}
.y4a{bottom:385.456500px;}
.y7e{bottom:386.134500px;}
.y141{bottom:390.144000px;}
.yb0{bottom:393.832500px;}
.yae{bottom:395.694000px;}
.yf1{bottom:396.636000px;}
.y18{bottom:405.355500px;}
.y123{bottom:407.325000px;}
.yf0{bottom:407.860500px;}
.y15e{bottom:408.714000px;}
.y140{bottom:414.796500px;}
.y48{bottom:416.715000px;}
.y17{bottom:430.009500px;}
.yad{bottom:432.268500px;}
.y7b{bottom:435.576000px;}
.y79{bottom:436.032000px;}
.y13f{bottom:439.449000px;}
.y7a{bottom:445.395000px;}
.yef{bottom:446.797500px;}
.yed{bottom:447.253500px;}
.y15d{bottom:447.337500px;}
.y17a{bottom:452.038500px;}
.yac{bottom:454.564500px;}
.y16{bottom:454.662000px;}
.y47{bottom:455.808000px;}
.yee{bottom:456.618000px;}
.y78{bottom:458.326500px;}
.yec{bottom:458.478000px;}
.yab{bottom:465.517500px;}
.y15c{bottom:471.991500px;}
.y179{bottom:476.691000px;}
.y13e{bottom:479.593500px;}
.y46{bottom:480.460500px;}
.y122{bottom:484.912500px;}
.y77{bottom:485.343000px;}
.yaa{bottom:491.452500px;}
.yeb{bottom:495.054000px;}
.y15{bottom:495.514500px;}
.y121{bottom:496.137000px;}
.y15b{bottom:496.644000px;}
.y13d{bottom:504.246000px;}
.y178{bottom:514.794000px;}
.yea{bottom:517.348500px;}
.y45{bottom:519.552000px;}
.ya8{bottom:526.653000px;}
.ye9{bottom:528.303000px;}
.y13c{bottom:528.900000px;}
.y120{bottom:529.924500px;}
.y76{bottom:529.935000px;}
.y15a{bottom:535.267500px;}
.ya9{bottom:538.138500px;}
.y177{bottom:539.446500px;}
.y11c{bottom:541.408500px;}
.y44{bottom:544.206000px;}
.ya5{bottom:549.363000px;}
.y11b{bottom:552.633000px;}
.ye8{bottom:554.238000px;}
.y75{bottom:554.587500px;}
.y14{bottom:555.115500px;}
.y11d{bottom:556.126500px;}
.y159{bottom:559.921500px;}
.y176{bottom:564.099000px;}
.y43{bottom:568.858500px;}
.y13b{bottom:569.044500px;}
.ya7{bottom:570.058500px;}
.ya6{bottom:573.046500px;}
.y11f{bottom:573.328500px;}
.y11e{bottom:576.316500px;}
.ye7{bottom:578.890500px;}
.y158{bottom:584.574000px;}
.ya4{bottom:589.717500px;}
.y11a{bottom:592.987500px;}
.y13{bottom:593.457000px;}
.y42{bottom:593.511000px;}
.y13a{bottom:593.697000px;}
.y74{bottom:600.768000px;}
.y9f{bottom:601.201500px;}
.y175{bottom:602.202000px;}
.ya1{bottom:603.067500px;}
.y115{bottom:604.471500px;}
.y117{bottom:606.337500px;}
.y9e{bottom:612.426000px;}
.ye6{bottom:613.243500px;}
.y12{bottom:615.208500px;}
.y114{bottom:615.696000px;}
.y41{bottom:618.163500px;}
.y157{bottom:623.197500px;}
.ye5{bottom:624.468000px;}
.y73{bottom:625.422000px;}
.y174{bottom:626.854500px;}
.ya0{bottom:629.967000px;}
.ya3{bottom:633.121500px;}
.y116{bottom:633.237000px;}
.y139{bottom:633.843000px;}
.ya2{bottom:636.111000px;}
.y119{bottom:636.391500px;}
.y11{bottom:636.961500px;}
.y118{bottom:639.381000px;}
.y40{bottom:642.816000px;}
.y156{bottom:647.851500px;}
.y72{bottom:650.074500px;}
.y173{bottom:651.507000px;}
.y9d{bottom:654.921000px;}
.y9b{bottom:655.377000px;}
.y113{bottom:656.052000px;}
.y138{bottom:658.495500px;}
.y10{bottom:658.714500px;}
.ye3{bottom:661.824000px;}
.ye2{bottom:663.861000px;}
.y9c{bottom:664.741500px;}
.y9a{bottom:666.601500px;}
.y3f{bottom:667.468500px;}
.y10e{bottom:667.536000px;}
.y110{bottom:669.402000px;}
.y71{bottom:674.727000px;}
.ye4{bottom:675.085500px;}
.y10d{bottom:678.760500px;}
.yf{bottom:680.466000px;}
.y137{bottom:683.148000px;}
.ye1{bottom:686.155500px;}
.y155{bottom:686.475000px;}
.y172{bottom:689.608500px;}
.y3e{bottom:692.121000px;}
.y10f{bottom:696.301500px;}
.y70{bottom:699.379500px;}
.y112{bottom:699.456000px;}
.y99{bottom:701.383500px;}
.ye0{bottom:701.592000px;}
.ye{bottom:702.219000px;}
.y111{bottom:702.444000px;}
.y154{bottom:711.127500px;}
.y171{bottom:714.262500px;}
.y3d{bottom:716.773500px;}
.y10b{bottom:719.115000px;}
.y136{bottom:723.292500px;}
.y98{bottom:723.678000px;}
.y6f{bottom:726.052500px;}
.ydf{bottom:726.208500px;}
.yd{bottom:727.243500px;}
.y10c{bottom:730.599000px;}
.y108{bottom:732.465000px;}
.y3c{bottom:741.427500px;}
.y106{bottom:741.823500px;}
.y135{bottom:747.946500px;}
.y153{bottom:749.752500px;}
.y6e{bottom:750.705000px;}
.y170{bottom:752.364000px;}
.y107{bottom:759.364500px;}
.y97{bottom:759.657000px;}
.yc{bottom:760.861500px;}
.y10a{bottom:762.519000px;}
.y109{bottom:765.508500px;}
.y3b{bottom:766.080000px;}
.y152{bottom:774.405000px;}
.y6d{bottom:775.357500px;}
.y16f{bottom:777.016500px;}
.y105{bottom:784.776000px;}
.y134{bottom:788.091000px;}
.y3a{bottom:790.732500px;}
.yb{bottom:790.795500px;}
.y104{bottom:796.000500px;}
.y96{bottom:799.156500px;}
.y6c{bottom:800.010000px;}
.yde{bottom:808.761000px;}
.y95{bottom:810.381000px;}
.y133{bottom:812.743500px;}
.y151{bottom:813.030000px;}
.y16e{bottom:815.119500px;}
.ya{bottom:815.448000px;}
.ydd{bottom:819.985500px;}
.y6b{bottom:824.662500px;}
.y39{bottom:829.825500px;}
.y103{bottom:834.936000px;}
.y101{bottom:835.393500px;}
.y150{bottom:837.682500px;}
.y16d{bottom:839.772000px;}
.y9{bottom:840.100500px;}
.y102{bottom:844.756500px;}
.y100{bottom:846.618000px;}
.y6a{bottom:849.315000px;}
.y94{bottom:849.316500px;}
.y92{bottom:849.774000px;}
.ydc{bottom:853.771500px;}
.y38{bottom:854.478000px;}
.y132{bottom:854.589000px;}
.y93{bottom:859.137000px;}
.y91{bottom:860.998500px;}
.y16c{bottom:864.424500px;}
.y8{bottom:864.753000px;}
.yd9{bottom:865.255500px;}
.y69{bottom:873.967500px;}
.y14f{bottom:876.307500px;}
.yd8{bottom:876.480000px;}
.y37{bottom:879.130500px;}
.yff{bottom:883.194000px;}
.ydb{bottom:897.175500px;}
.y90{bottom:897.573000px;}
.y7{bottom:897.588000px;}
.y68{bottom:898.621500px;}
.yda{bottom:900.165000px;}
.y14e{bottom:900.960000px;}
.y16b{bottom:902.527500px;}
.y36{bottom:903.783000px;}
.yfe{bottom:905.488500px;}
.y131{bottom:914.788500px;}
.yfd{bottom:916.441500px;}
.yd5{bottom:916.836000px;}
.y8f{bottom:919.869000px;}
.y67{bottom:923.274000px;}
.y16a{bottom:927.180000px;}
.yd7{bottom:928.320000px;}
.y35{bottom:928.435500px;}
.yd2{bottom:930.186000px;}
.y8e{bottom:930.822000px;}
.y6{bottom:937.527000px;}
.y130{bottom:939.441000px;}
.yd0{bottom:939.544500px;}
.y14d{bottom:939.585000px;}
.yfc{bottom:941.467500px;}
.y66{bottom:947.926500px;}
.yd6{bottom:950.614500px;}
.y34{bottom:953.088000px;}
.y8d{bottom:956.757000px;}
.yd1{bottom:957.085500px;}
.yd4{bottom:960.240000px;}
.yd3{bottom:963.228000px;}
.y12f{bottom:964.093500px;}
.y14c{bottom:964.237500px;}
.y5{bottom:964.660500px;}
.y169{bottom:965.281500px;}
.y65{bottom:972.579000px;}
.y33{bottom:977.740500px;}
.y8c{bottom:981.409500px;}
.ycf{bottom:982.495500px;}
.y12e{bottom:988.746000px;}
.y14b{bottom:988.890000px;}
.y168{bottom:989.934000px;}
.y4{bottom:991.795500px;}
.yce{bottom:993.720000px;}
.y64{bottom:997.231500px;}
.y32{bottom:1002.393000px;}
.y3{bottom:1014.879000px;}
.y63{bottom:1021.884000px;}
.y14a{bottom:1027.515000px;}
.y167{bottom:1028.037000px;}
.y8b{bottom:1030.314000px;}
.y12d{bottom:1030.591500px;}
.ycd{bottom:1032.657000px;}
.ycb{bottom:1033.113000px;}
.y31{bottom:1041.486000px;}
.ycc{bottom:1042.477500px;}
.yca{bottom:1044.337500px;}
.y62{bottom:1048.557000px;}
.y149{bottom:1052.167500px;}
.y166{bottom:1052.689500px;}
.y8a{bottom:1054.968000px;}
.y30{bottom:1066.138500px;}
.y61{bottom:1068.454500px;}
.y60{bottom:1069.164000px;}
.y5f{bottom:1073.209500px;}
.yc9{bottom:1080.913500px;}
.y2{bottom:1090.027500px;}
.y2f{bottom:1090.791000px;}
.y89{bottom:1101.067500px;}
.y5e{bottom:1102.183500px;}
.yc8{bottom:1103.208000px;}
.y5d{bottom:1104.220500px;}
.y5c{bottom:1111.399500px;}
.yc7{bottom:1114.162500px;}
.y2e{bottom:1115.445000px;}
.y88{bottom:1133.695500px;}
.y1{bottom:1135.345500px;}
.y2d{bottom:1140.097500px;}
.y2c{bottom:1199.275500px;}
.hc{height:2.391024px;}
.h28{height:24.871000px;}
.h19{height:26.970818px;}
.h12{height:33.187496px;}
.h4{height:35.865450px;}
.h8{height:41.723369px;}
.h17{height:42.799330px;}
.h6{height:45.687311px;}
.ha{height:46.210948px;}
.h45{height:46.865494px;}
.h18{height:49.090950px;}
.h7{height:51.646118px;}
.h5{height:56.552774px;}
.h1c{height:56.941496px;}
.he{height:58.118774px;}
.h23{height:59.619450px;}
.h1f{height:60.211496px;}
.h9{height:60.254040px;}
.h2e{height:60.680870px;}
.h1d{height:62.386948px;}
.h24{height:62.392948px;}
.h1a{height:62.889450px;}
.h1e{height:65.230948px;}
.h22{height:66.027450px;}
.h16{height:67.593450px;}
.hb{height:72.555024px;}
.hd{height:74.121024px;}
.h3{height:82.882118px;}
.h2{height:86.782500px;}
.h40{height:90.483024px;}
.h39{height:90.490948px;}
.h1b{height:91.108948px;}
.h3d{height:93.370950px;}
.h14{height:100.832774px;}
.h33{height:101.450774px;}
.h30{height:103.899450px;}
.h29{height:106.933496px;}
.h31{height:106.939496px;}
.h13{height:108.417024px;}
.h2b{height:110.307450px;}
.h20{height:117.014774px;}
.h15{height:117.453024px;}
.h44{height:123.963024px;}
.h3e{height:126.351024px;}
.h42{height:126.357024px;}
.hf{height:131.109024px;}
.h27{height:132.993024px;}
.h2f{height:132.999024px;}
.h2a{height:134.817024px;}
.h34{height:134.823024px;}
.h3a{height:135.381024px;}
.h3c{height:135.387024px;}
.h2d{height:135.388948px;}
.h21{height:141.937496px;}
.h11{height:141.943496px;}
.h25{height:145.730774px;}
.h10{height:145.736774px;}
.h26{height:148.797450px;}
.h32{height:155.145024px;}
.h3f{height:163.389024px;}
.h43{height:168.861024px;}
.h35{height:171.249024px;}
.h41{height:171.255024px;}
.h38{height:181.317024px;}
.h3b{height:181.323024px;}
.h36{height:181.324948px;}
.h2c{height:181.330948px;}
.h37{height:191.672774px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:104.385000px;}
.xf{left:106.299000px;}
.x7c{left:108.093000px;}
.x82{left:110.844000px;}
.x5{left:112.591500px;}
.x6c{left:113.970000px;}
.x4{left:117.430500px;}
.x6d{left:125.551500px;}
.x83{left:129.910500px;}
.x22{left:131.704500px;}
.xba{left:136.140000px;}
.x3d{left:138.069000px;}
.xcb{left:139.935000px;}
.x1{left:142.555500px;}
.xe{left:147.208500px;}
.xbf{left:153.412500px;}
.x71{left:156.444000px;}
.x3e{left:158.466000px;}
.x6e{left:163.956000px;}
.xc1{left:166.695000px;}
.xbc{left:172.656000px;}
.xc0{left:174.313500px;}
.x18{left:175.671000px;}
.x6f{left:176.683500px;}
.x92{left:181.038000px;}
.x19{left:182.446500px;}
.x95{left:183.789000px;}
.x9c{left:188.821500px;}
.x9f{left:190.614000px;}
.xbb{left:191.625000px;}
.x9d{left:195.595500px;}
.x6{left:196.984500px;}
.x98{left:199.245000px;}
.x38{left:203.536500px;}
.x15{left:205.512000px;}
.x2{left:208.030500px;}
.xa2{left:209.704500px;}
.x99{left:215.608500px;}
.x72{left:217.573500px;}
.x39{left:219.900000px;}
.x2c{left:221.271000px;}
.x32{left:223.380000px;}
.x73{left:225.756000px;}
.x3{left:227.454000px;}
.x91{left:229.749000px;}
.x33{left:231.562500px;}
.x16{left:240.565500px;}
.x47{left:244.815000px;}
.xd0{left:249.222000px;}
.x8a{left:252.186000px;}
.x8d{left:253.980000px;}
.x10{left:255.385500px;}
.x2f{left:259.008000px;}
.x85{left:260.101500px;}
.x7{left:261.828000px;}
.x84{left:266.743500px;}
.xad{left:268.720500px;}
.x11{left:270.424500px;}
.x88{left:273.045000px;}
.x12{left:280.326000px;}
.xae{left:282.003000px;}
.x17{left:284.136000px;}
.x54{left:285.369000px;}
.x43{left:287.821500px;}
.xa9{left:289.822500px;}
.xaa{left:291.615000px;}
.x48{left:292.821000px;}
.x55{left:294.444000px;}
.x49{left:297.403500px;}
.xc5{left:299.521500px;}
.x1a{left:301.407000px;}
.xb9{left:305.182500px;}
.x8b{left:307.671000px;}
.xc2{left:310.603500px;}
.xa{left:311.964000px;}
.xab{left:313.537500px;}
.xc9{left:314.955000px;}
.xb{left:318.139500px;}
.x9{left:319.737000px;}
.x5a{left:323.022000px;}
.x4a{left:324.849000px;}
.xa0{left:326.121000px;}
.x93{left:328.957500px;}
.x5b{left:332.095500px;}
.x4b{left:334.848000px;}
.xa3{left:338.920500px;}
.x3a{left:341.397000px;}
.xc{left:342.741000px;}
.x97{left:345.354000px;}
.x9a{left:349.512000px;}
.x96{left:352.971000px;}
.x13{left:357.042000px;}
.x5c{left:359.242500px;}
.x74{left:362.982000px;}
.x44{left:364.995000px;}
.x57{left:366.024000px;}
.x56{left:367.281000px;}
.xbd{left:369.951000px;}
.x3f{left:373.273500px;}
.x5d{left:374.970000px;}
.xbe{left:376.884000px;}
.x75{left:378.298500px;}
.x45{left:382.665000px;}
.x8e{left:389.485500px;}
.x76{left:393.195000px;}
.x8{left:396.076500px;}
.xaf{left:400.132500px;}
.xac{left:402.061500px;}
.x5e{left:403.191000px;}
.x86{left:405.690000px;}
.x58{left:412.330500px;}
.xd{left:413.812500px;}
.x1b{left:415.330500px;}
.xb5{left:416.374500px;}
.x94{left:418.534500px;}
.xa1{left:422.632500px;}
.x23{left:423.957000px;}
.x77{left:426.319500px;}
.x59{left:427.879500px;}
.x26{left:430.279500px;}
.x2a{left:433.365000px;}
.x41{left:434.671500px;}
.x5f{left:438.099000px;}
.x40{left:439.113000px;}
.x60{left:444.475500px;}
.x27{left:446.643000px;}
.xca{left:447.655500px;}
.x2b{left:449.730000px;}
.x42{left:452.343000px;}
.x61{left:453.828000px;}
.xcc{left:455.445000px;}
.x28{left:456.892500px;}
.x1c{left:463.825500px;}
.xcd{left:464.872500px;}
.x78{left:466.096500px;}
.xb0{left:467.431500px;}
.x87{left:468.436500px;}
.xb4{left:470.002500px;}
.x29{left:473.257500px;}
.xb3{left:476.644500px;}
.x1d{left:479.376000px;}
.x62{left:482.047500px;}
.x9e{left:483.438000px;}
.x8f{left:485.997000px;}
.xa4{left:488.224500px;}
.x63{left:491.820000px;}
.x90{left:492.931500px;}
.x64{left:498.196500px;}
.x9b{left:502.408500px;}
.x65{left:507.549000px;}
.x66{left:513.925500px;}
.x67{left:523.921500px;}
.x46{left:530.904000px;}
.x7d{left:532.788000px;}
.x1e{left:538.624500px;}
.x3b{left:543.285000px;}
.x8c{left:546.802500px;}
.xa5{left:550.971000px;}
.x24{left:554.373000px;}
.x1f{left:557.691000px;}
.x3c{left:559.648500px;}
.xa8{left:560.854500px;}
.xb1{left:562.663500px;}
.xb7{left:568.795500px;}
.x25{left:570.736500px;}
.x4c{left:572.043000px;}
.x4d{left:581.116500px;}
.xb2{left:584.586000px;}
.xce{left:593.388000px;}
.x20{left:594.939000px;}
.xb6{left:597.072000px;}
.xc6{left:605.029500px;}
.x2d{left:607.861500px;}
.x4e{left:613.716000px;}
.x2e{left:616.044000px;}
.xc3{left:620.932500px;}
.x34{left:623.458500px;}
.x21{left:629.992500px;}
.x35{left:631.129500px;}
.x7e{left:633.571500px;}
.xc4{left:635.359500px;}
.x7f{left:640.506000px;}
.x89{left:643.971000px;}
.x4f{left:645.270000px;}
.xa6{left:650.994000px;}
.x50{left:654.343500px;}
.xc7{left:669.402000px;}
.x68{left:679.108500px;}
.x6a{left:682.674000px;}
.xcf{left:684.304500px;}
.x51{left:685.630500px;}
.xa7{left:690.600000px;}
.x69{left:694.182000px;}
.x70{left:695.560500px;}
.x6b{left:699.037500px;}
.xb8{left:705.444000px;}
.x36{left:719.716500px;}
.x37{left:727.386000px;}
.x80{left:730.083000px;}
.xc8{left:731.791500px;}
.x81{left:737.017500px;}
.x52{left:746.577000px;}
.x79{left:759.093000px;}
.x30{left:764.179500px;}
.x7b{left:767.619000px;}
.x53{left:778.923000px;}
.x31{left:780.543000px;}
.x7a{left:782.037000px;}
@media print{
.v27{vertical-align:-76.181333pt;}
.v28{vertical-align:-37.157333pt;}
.v7{vertical-align:-34.538667pt;}
.v9{vertical-align:-31.882667pt;}
.v2{vertical-align:-23.141333pt;}
.v21{vertical-align:-21.114667pt;}
.v15{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.392000pt;}
.v16{vertical-align:14.378667pt;}
.v1f{vertical-align:15.941333pt;}
.v17{vertical-align:16.906667pt;}
.v22{vertical-align:18.064000pt;}
.va{vertical-align:21.114667pt;}
.v5{vertical-align:22.506667pt;}
.v14{vertical-align:24.021333pt;}
.v12{vertical-align:25.418667pt;}
.v13{vertical-align:26.810667pt;}
.v1{vertical-align:27.765333pt;}
.v1e{vertical-align:36.218667pt;}
.vc{vertical-align:39.909333pt;}
.v1a{vertical-align:41.530667pt;}
.v20{vertical-align:52.160000pt;}
.v18{vertical-align:60.240000pt;}
.v3{vertical-align:62.368000pt;}
.v6{vertical-align:63.760000pt;}
.vd{vertical-align:76.186667pt;}
.v29{vertical-align:78.304000pt;}
.v19{vertical-align:79.269333pt;}
.v1c{vertical-align:80.741333pt;}
.v10{vertical-align:94.245333pt;}
.vf{vertical-align:96.672000pt;}
.v11{vertical-align:102.277333pt;}
.v1d{vertical-align:104.768000pt;}
.v2b{vertical-align:108.064000pt;}
.v26{vertical-align:110.186667pt;}
.ve{vertical-align:113.493333pt;}
.v8{vertical-align:114.416000pt;}
.vb{vertical-align:116.096000pt;}
.v25{vertical-align:118.213333pt;}
.v1b{vertical-align:140.986667pt;}
.v24{vertical-align:143.109333pt;}
.v2a{vertical-align:147.973333pt;}
.v23{vertical-align:150.096000pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls96{letter-spacing:0.000939pt;}
.ls3d{letter-spacing:0.001788pt;}
.ls2c{letter-spacing:0.001818pt;}
.lsa{letter-spacing:0.001874pt;}
.ls56{letter-spacing:0.002399pt;}
.ls62{letter-spacing:0.002400pt;}
.ls9{letter-spacing:0.002482pt;}
.ls7d{letter-spacing:0.002827pt;}
.ls22{letter-spacing:0.003861pt;}
.ls5d{letter-spacing:0.003945pt;}
.ls6a{letter-spacing:0.009631pt;}
.ls78{letter-spacing:0.013480pt;}
.ls50{letter-spacing:0.014964pt;}
.ls4e{letter-spacing:0.018281pt;}
.ls4c{letter-spacing:0.018814pt;}
.ls24{letter-spacing:0.023134pt;}
.ls1b{letter-spacing:0.023614pt;}
.ls45{letter-spacing:0.024583pt;}
.ls34{letter-spacing:0.028464pt;}
.ls75{letter-spacing:0.029917pt;}
.ls66{letter-spacing:0.058182pt;}
.ls3e{letter-spacing:0.215727pt;}
.ls73{letter-spacing:0.223896pt;}
.ls40{letter-spacing:0.229230pt;}
.ls31{letter-spacing:0.232727pt;}
.ls3{letter-spacing:0.290909pt;}
.ls25{letter-spacing:1.530259pt;}
.ls28{letter-spacing:2.094547pt;}
.ls98{letter-spacing:2.210911pt;}
.ls2e{letter-spacing:2.651653pt;}
.ls63{letter-spacing:2.651728pt;}
.ls2{letter-spacing:2.653258pt;}
.ls4a{letter-spacing:2.653383pt;}
.ls1{letter-spacing:2.654400pt;}
.ls1f{letter-spacing:2.656418pt;}
.ls2f{letter-spacing:2.656528pt;}
.ls47{letter-spacing:2.657061pt;}
.ls20{letter-spacing:2.658037pt;}
.ls6b{letter-spacing:2.658591pt;}
.ls77{letter-spacing:2.658717pt;}
.ls0{letter-spacing:2.659733pt;}
.ls8d{letter-spacing:2.661425pt;}
.ls36{letter-spacing:2.661861pt;}
.ls4b{letter-spacing:5.580904pt;}
.ls2d{letter-spacing:5.594155pt;}
.ls30{letter-spacing:5.599488pt;}
.ls8f{letter-spacing:6.161324pt;}
.ls92{letter-spacing:6.235139pt;}
.ls5b{letter-spacing:6.235505pt;}
.ls39{letter-spacing:6.241701pt;}
.ls7e{letter-spacing:6.255509pt;}
.ls8c{letter-spacing:6.257902pt;}
.ls6{letter-spacing:6.260825pt;}
.ls57{letter-spacing:6.271928pt;}
.ls81{letter-spacing:6.277261pt;}
.lsf{letter-spacing:6.283642pt;}
.ls61{letter-spacing:6.372811pt;}
.ls52{letter-spacing:6.375733pt;}
.ls12{letter-spacing:6.376161pt;}
.ls6f{letter-spacing:6.377279pt;}
.ls76{letter-spacing:6.378144pt;}
.ls43{letter-spacing:6.381494pt;}
.ls99{letter-spacing:8.087279pt;}
.ls67{letter-spacing:9.658190pt;}
.ls55{letter-spacing:9.693494pt;}
.ls6e{letter-spacing:9.694612pt;}
.ls95{letter-spacing:9.697422pt;}
.ls41{letter-spacing:9.697788pt;}
.ls7b{letter-spacing:9.698482pt;}
.ls5a{letter-spacing:9.698827pt;}
.ls8{letter-spacing:9.699516pt;}
.ls94{letter-spacing:9.706580pt;}
.ls85{letter-spacing:9.716372pt;}
.ls91{letter-spacing:9.890917pt;}
.ls71{letter-spacing:10.413494pt;}
.ls51{letter-spacing:10.418827pt;}
.ls26{letter-spacing:12.342267pt;}
.ls35{letter-spacing:12.347728pt;}
.ls1c{letter-spacing:12.349258pt;}
.ls23{letter-spacing:12.352418pt;}
.ls37{letter-spacing:12.353061pt;}
.ls3a{letter-spacing:12.354591pt;}
.ls1a{letter-spacing:12.356100pt;}
.ls21{letter-spacing:12.741829pt;}
.ls10{letter-spacing:12.916374pt;}
.ls5e{letter-spacing:12.925494pt;}
.ls15{letter-spacing:12.926612pt;}
.ls82{letter-spacing:12.927477pt;}
.ls14{letter-spacing:12.930827pt;}
.ls88{letter-spacing:12.931945pt;}
.ls7c{letter-spacing:12.938113pt;}
.ls58{letter-spacing:12.941502pt;}
.ls53{letter-spacing:12.943446pt;}
.ls83{letter-spacing:12.974556pt;}
.ls7a{letter-spacing:13.090920pt;}
.ls3b{letter-spacing:13.149102pt;}
.ls3f{letter-spacing:15.581258pt;}
.ls97{letter-spacing:15.585087pt;}
.ls72{letter-spacing:15.586591pt;}
.ls93{letter-spacing:15.590420pt;}
.ls3c{letter-spacing:15.941831pt;}
.ls87{letter-spacing:15.945974pt;}
.ls42{letter-spacing:15.956825pt;}
.ls11{letter-spacing:15.961013pt;}
.ls74{letter-spacing:15.962158pt;}
.ls5f{letter-spacing:16.000013pt;}
.ls32{letter-spacing:16.056143pt;}
.lse{letter-spacing:16.071733pt;}
.ls89{letter-spacing:16.093470pt;}
.ls17{letter-spacing:16.098803pt;}
.ls2a{letter-spacing:16.116377pt;}
.lsb{letter-spacing:16.162482pt;}
.lsc{letter-spacing:16.174559pt;}
.ls8e{letter-spacing:16.349105pt;}
.ls86{letter-spacing:16.407286pt;}
.ls4{letter-spacing:18.676379pt;}
.ls5{letter-spacing:18.734561pt;}
.ls7{letter-spacing:18.814767pt;}
.ls65{letter-spacing:19.258198pt;}
.ls6c{letter-spacing:19.300811pt;}
.ls46{letter-spacing:19.306144pt;}
.lsd{letter-spacing:19.374562pt;}
.ls1e{letter-spacing:19.432743pt;}
.ls38{letter-spacing:19.723653pt;}
.ls29{letter-spacing:21.323448pt;}
.ls2b{letter-spacing:22.400019pt;}
.ls8b{letter-spacing:22.516382pt;}
.ls27{letter-spacing:22.526452pt;}
.ls7f{letter-spacing:22.538144pt;}
.ls18{letter-spacing:23.609490pt;}
.ls33{letter-spacing:23.614824pt;}
.ls5c{letter-spacing:25.716385pt;}
.ls49{letter-spacing:31.029806pt;}
.ls4f{letter-spacing:36.775925pt;}
.ls69{letter-spacing:36.781258pt;}
.ls59{letter-spacing:52.434400pt;}
.ls54{letter-spacing:52.439733pt;}
.ls13{letter-spacing:55.245067pt;}
.ls44{letter-spacing:55.250400pt;}
.ls8a{letter-spacing:59.508811pt;}
.ls19{letter-spacing:66.175477pt;}
.ls16{letter-spacing:68.175477pt;}
.ls6d{letter-spacing:84.322400pt;}
.ls48{letter-spacing:90.561087pt;}
.ls70{letter-spacing:97.250400pt;}
.ls79{letter-spacing:145.551477pt;}
.ls4d{letter-spacing:145.556811pt;}
.ls84{letter-spacing:218.276811pt;}
.ls64{letter-spacing:218.282144pt;}
.ls90{letter-spacing:232.826144pt;}
.ls60{letter-spacing:447.849279pt;}
.ls80{letter-spacing:567.273200pt;}
.ls68{letter-spacing:724.910612pt;}
.ws60{word-spacing:-48.465495pt;}
.ws57{word-spacing:-45.163900pt;}
.ws50{word-spacing:-43.038600pt;}
.ws17{word-spacing:-42.066082pt;}
.ws5d{word-spacing:-42.065490pt;}
.ws1c{word-spacing:-37.899668pt;}
.ws4c{word-spacing:-32.811625pt;}
.ws72{word-spacing:-29.736752pt;}
.ws4{word-spacing:-29.090933pt;}
.ws1a{word-spacing:-29.079297pt;}
.ws2c{word-spacing:-28.241478pt;}
.ws15{word-spacing:-28.183296pt;}
.ws49{word-spacing:-26.347625pt;}
.ws58{word-spacing:-24.983294pt;}
.ws3c{word-spacing:-21.783291pt;}
.ws38{word-spacing:-21.725109pt;}
.ws3a{word-spacing:-21.550563pt;}
.ws0{word-spacing:-20.662500pt;}
.ws1b{word-spacing:-16.162923pt;}
.ws4f{word-spacing:-14.422713pt;}
.wse{word-spacing:-14.346200pt;}
.ws22{word-spacing:-14.312739pt;}
.ws8b{word-spacing:-14.080012pt;}
.ws6d{word-spacing:-14.021830pt;}
.ws99{word-spacing:-13.963648pt;}
.ws85{word-spacing:-13.905466pt;}
.ws41{word-spacing:-13.672739pt;}
.ws9f{word-spacing:-13.032738pt;}
.ws8c{word-spacing:-12.922193pt;}
.ws6e{word-spacing:-12.864011pt;}
.ws9a{word-spacing:-12.805829pt;}
.ws86{word-spacing:-12.747647pt;}
.ws68{word-spacing:-12.334556pt;}
.ws75{word-spacing:-12.160010pt;}
.wsa0{word-spacing:-11.933101pt;}
.ws73{word-spacing:-11.869101pt;}
.ws25{word-spacing:-11.694555pt;}
.ws24{word-spacing:-11.403646pt;}
.ws7{word-spacing:-11.317514pt;}
.ws76{word-spacing:-11.118555pt;}
.ws7b{word-spacing:-10.996373pt;}
.ws74{word-spacing:-10.827645pt;}
.ws30{word-spacing:-10.589100pt;}
.ws69{word-spacing:-10.240009pt;}
.ws6b{word-spacing:-10.181827pt;}
.ws7c{word-spacing:-10.071281pt;}
.ws3d{word-spacing:-10.065463pt;}
.ws11{word-spacing:-10.007281pt;}
.ws2d{word-spacing:-9.949099pt;}
.ws12{word-spacing:-9.890917pt;}
.ws32{word-spacing:-9.832735pt;}
.ws2f{word-spacing:-9.774554pt;}
.ws3{word-spacing:-9.716372pt;}
.ws33{word-spacing:-9.658190pt;}
.ws10{word-spacing:-9.600008pt;}
.ws1e{word-spacing:-9.541826pt;}
.ws1f{word-spacing:-9.483644pt;}
.ws70{word-spacing:-9.431281pt;}
.wsd{word-spacing:-9.425462pt;}
.ws43{word-spacing:-9.367281pt;}
.ws6c{word-spacing:-9.314917pt;}
.ws42{word-spacing:-9.309099pt;}
.ws82{word-spacing:-9.256735pt;}
.ws67{word-spacing:-9.250917pt;}
.ws88{word-spacing:-9.198553pt;}
.ws77{word-spacing:-9.140371pt;}
.ws90{word-spacing:-9.082189pt;}
.ws3e{word-spacing:-9.076371pt;}
.ws97{word-spacing:-9.024008pt;}
.ws78{word-spacing:-8.965826pt;}
.ws34{word-spacing:-8.907644pt;}
.ws6{word-spacing:-8.873356pt;}
.ws8d{word-spacing:-8.849462pt;}
.ws71{word-spacing:-8.791280pt;}
.ws45{word-spacing:-8.785462pt;}
.ws39{word-spacing:-8.674916pt;}
.ws2b{word-spacing:-8.610916pt;}
.ws98{word-spacing:-8.558553pt;}
.ws16{word-spacing:-8.552734pt;}
.ws8{word-spacing:-8.448285pt;}
.ws26{word-spacing:-8.436371pt;}
.ws21{word-spacing:-8.134795pt;}
.ws7d{word-spacing:-7.976734pt;}
.ws47{word-spacing:-7.970916pt;}
.ws8e{word-spacing:-7.912734pt;}
.ws31{word-spacing:-7.680006pt;}
.ws44{word-spacing:-7.389097pt;}
.ws8f{word-spacing:-7.336733pt;}
.ws13{word-spacing:-7.330915pt;}
.ws66{word-spacing:-6.981824pt;}
.ws2a{word-spacing:-6.865460pt;}
.ws6f{word-spacing:-6.813097pt;}
.ws23{word-spacing:-6.749097pt;}
.ws7e{word-spacing:-6.574551pt;}
.ws9e{word-spacing:-6.341823pt;}
.ws6a{word-spacing:-6.283642pt;}
.ws96{word-spacing:-6.231278pt;}
.ws7f{word-spacing:-6.114914pt;}
.ws4e{word-spacing:-5.934550pt;}
.ws9d{word-spacing:-5.882187pt;}
.ws2e{word-spacing:-5.876369pt;}
.ws4d{word-spacing:-5.818187pt;}
.ws80{word-spacing:-5.760005pt;}
.ws87{word-spacing:-5.643641pt;}
.wsf{word-spacing:-5.352732pt;}
.ws81{word-spacing:-5.300368pt;}
.ws28{word-spacing:-5.294550pt;}
.ws29{word-spacing:-5.236368pt;}
.wsb{word-spacing:-5.207119pt;}
.ws83{word-spacing:-5.120004pt;}
.wsa{word-spacing:-5.100851pt;}
.ws40{word-spacing:-4.829095pt;}
.ws84{word-spacing:-4.718549pt;}
.ws8a{word-spacing:-4.712731pt;}
.ws94{word-spacing:-4.538186pt;}
.ws89{word-spacing:-4.427640pt;}
.ws95{word-spacing:-4.253094pt;}
.ws61{word-spacing:-3.613094pt;}
.ws79{word-spacing:-3.490912pt;}
.ws56{word-spacing:-3.265132pt;}
.ws7a{word-spacing:-3.264003pt;}
.ws37{word-spacing:-3.246548pt;}
.ws4a{word-spacing:-3.188366pt;}
.ws9{word-spacing:-2.975497pt;}
.ws27{word-spacing:-2.443638pt;}
.ws9c{word-spacing:-1.221819pt;}
.ws9b{word-spacing:-1.169456pt;}
.ws3f{word-spacing:-0.698182pt;}
.ws53{word-spacing:-0.645819pt;}
.ws1d{word-spacing:-0.089323pt;}
.ws5c{word-spacing:-0.058182pt;}
.ws35{word-spacing:-0.046545pt;}
.ws18{word-spacing:-0.042507pt;}
.ws20{word-spacing:0.000000pt;}
.ws36{word-spacing:0.011636pt;}
.ws63{word-spacing:0.709819pt;}
.ws92{word-spacing:1.739638pt;}
.ws91{word-spacing:1.920002pt;}
.ws48{word-spacing:3.153457pt;}
.ws52{word-spacing:5.285320pt;}
.ws93{word-spacing:6.917824pt;}
.ws54{word-spacing:14.981320pt;}
.ws55{word-spacing:14.986653pt;}
.ws4b{word-spacing:15.542554pt;}
.ws2{word-spacing:20.722347pt;}
.ws5{word-spacing:22.225473pt;}
.ws59{word-spacing:22.283655pt;}
.ws5f{word-spacing:22.516382pt;}
.ws51{word-spacing:22.574564pt;}
.ws5b{word-spacing:22.690928pt;}
.ws14{word-spacing:23.796383pt;}
.ws62{word-spacing:24.677320pt;}
.ws1{word-spacing:24.866747pt;}
.ws46{word-spacing:25.425476pt;}
.wsc{word-spacing:26.181840pt;}
.ws19{word-spacing:29.451661pt;}
.ws64{word-spacing:30.694677pt;}
.ws5a{word-spacing:40.390677pt;}
.ws65{word-spacing:43.038600pt;}
.ws5e{word-spacing:45.241611pt;}
.ws3b{word-spacing:403.790678pt;}
._21{margin-left:-19.221416pt;}
._10{margin-left:-17.709518pt;}
._11{margin-left:-12.917763pt;}
._0{margin-left:-10.358800pt;}
._20{margin-left:-7.603346pt;}
._23{margin-left:-6.050914pt;}
._3{margin-left:-4.905577pt;}
._1{margin-left:-3.416200pt;}
._2{margin-left:-1.980618pt;}
._5{margin-left:-1.079913pt;}
._d{width:1.287305pt;}
._4{width:2.367210pt;}
._1a{width:4.947893pt;}
._1f{width:6.281652pt;}
._18{width:9.716372pt;}
._12{width:15.888573pt;}
._19{width:17.561185pt;}
._24{width:18.453391pt;}
._f{width:19.612159pt;}
._b{width:20.586920pt;}
._25{width:21.527291pt;}
._a{width:22.475626pt;}
._8{width:23.683050pt;}
._6{width:25.152813pt;}
._7{width:26.242457pt;}
._13{width:27.864245pt;}
._14{width:30.312753pt;}
._17{width:32.640027pt;}
._e{width:34.380614pt;}
._9{width:35.387155pt;}
._22{width:36.469910pt;}
._16{width:38.276364pt;}
._15{width:39.796397pt;}
._1d{width:41.250943pt;}
._1c{width:48.465495pt;}
._1b{width:67.542157pt;}
._c{width:86.077200pt;}
._1e{width:434.656152pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:54.637333pt;}
.y5b{bottom:89.008000pt;}
.yc5{bottom:89.509333pt;}
.y5a{bottom:90.818667pt;}
.y2a{bottom:94.488000pt;}
.y59{bottom:97.200000pt;}
.yc6{bottom:99.486667pt;}
.y58{bottom:100.796000pt;}
.yc4{bottom:109.326667pt;}
.y29{bottom:116.401333pt;}
.yc3{bottom:119.062667pt;}
.yfb{bottom:131.858667pt;}
.y87{bottom:138.314667pt;}
.y57{bottom:140.433333pt;}
.yc2{bottom:140.645333pt;}
.y25{bottom:149.976000pt;}
.yc1{bottom:150.622667pt;}
.y24{bottom:151.785333pt;}
.y148{bottom:152.086667pt;}
.y56{bottom:158.120000pt;}
.y55{bottom:158.752000pt;}
.y86{bottom:160.229333pt;}
.y28{bottom:161.414667pt;}
.y26{bottom:161.764000pt;}
.y54{bottom:162.346667pt;}
.y27{bottom:169.385333pt;}
.yfa{bottom:169.873333pt;}
.yc0{bottom:170.198667pt;}
.y23{bottom:171.604000pt;}
.y165{bottom:172.648000pt;}
.y147{bottom:174.000000pt;}
.y85{bottom:182.142667pt;}
.y22{bottom:185.325333pt;}
.ybf{bottom:193.090667pt;}
.y164{bottom:194.561333pt;}
.y146{bottom:195.913333pt;}
.y53{bottom:197.096000pt;}
.y12c{bottom:197.172000pt;}
.y84{bottom:204.056000pt;}
.y21{bottom:208.362667pt;}
.yf9{bottom:218.420000pt;}
.y51{bottom:220.246667pt;}
.y20{bottom:221.026667pt;}
.y1e{bottom:221.374667pt;}
.ybc{bottom:224.653333pt;}
.y83{bottom:225.969333pt;}
.yf8{bottom:228.397333pt;}
.y163{bottom:228.894667pt;}
.y1f{bottom:228.996000pt;}
.y52{bottom:230.454667pt;}
.y145{bottom:231.597333pt;}
.ybe{bottom:234.861333pt;}
.y4e{bottom:240.432000pt;}
.y12b{bottom:242.566667pt;}
.y1d{bottom:243.288000pt;}
.yb9{bottom:244.838667pt;}
.y82{bottom:247.882667pt;}
.y162{bottom:250.808000pt;}
.y12a{bottom:252.544000pt;}
.y144{bottom:253.512000pt;}
.ybd{bottom:254.680000pt;}
.y50{bottom:258.828000pt;}
.y4f{bottom:261.484000pt;}
.yf6{bottom:261.602667pt;}
.ybb{bottom:263.234667pt;}
.yf5{bottom:263.413333pt;}
.yba{bottom:265.892000pt;}
.y81{bottom:269.796000pt;}
.y4d{bottom:270.989333pt;}
.y1c{bottom:272.662667pt;}
.yf7{bottom:273.390667pt;}
.yb8{bottom:280.710667pt;}
.yf4{bottom:283.230667pt;}
.y161{bottom:285.141333pt;}
.y128{bottom:285.750667pt;}
.y127{bottom:287.561333pt;}
.y143{bottom:289.196000pt;}
.yb3{bottom:290.918667pt;}
.yb5{bottom:292.577333pt;}
.y1b{bottom:294.576000pt;}
.yf3{bottom:296.952000pt;}
.y129{bottom:297.538667pt;}
.yb2{bottom:300.896000pt;}
.y4c{bottom:301.390667pt;}
.y80{bottom:301.992000pt;}
.y160{bottom:307.054667pt;}
.y126{bottom:307.378667pt;}
.y142{bottom:311.109333pt;}
.y7d{bottom:312.200000pt;}
.yb4{bottom:316.488000pt;}
.y1a{bottom:316.489333pt;}
.yf2{bottom:318.833333pt;}
.yb7{bottom:319.292000pt;}
.y125{bottom:321.100000pt;}
.y49{bottom:321.576000pt;}
.yb6{bottom:321.948000pt;}
.y7c{bottom:322.177333pt;}
.y19{bottom:338.402667pt;}
.y4b{bottom:339.972000pt;}
.y124{bottom:340.152000pt;}
.y7f{bottom:340.573333pt;}
.yb1{bottom:341.344000pt;}
.y15f{bottom:341.388000pt;}
.yaf{bottom:341.750667pt;}
.y4a{bottom:342.628000pt;}
.y7e{bottom:343.230667pt;}
.y141{bottom:346.794667pt;}
.yb0{bottom:350.073333pt;}
.yae{bottom:351.728000pt;}
.yf1{bottom:352.565333pt;}
.y18{bottom:360.316000pt;}
.y123{bottom:362.066667pt;}
.yf0{bottom:362.542667pt;}
.y15e{bottom:363.301333pt;}
.y140{bottom:368.708000pt;}
.y48{bottom:370.413333pt;}
.y17{bottom:382.230667pt;}
.yad{bottom:384.238667pt;}
.y7b{bottom:387.178667pt;}
.y79{bottom:387.584000pt;}
.y13f{bottom:390.621333pt;}
.y7a{bottom:395.906667pt;}
.yef{bottom:397.153333pt;}
.yed{bottom:397.558667pt;}
.y15d{bottom:397.633333pt;}
.y17a{bottom:401.812000pt;}
.yac{bottom:404.057333pt;}
.y16{bottom:404.144000pt;}
.y47{bottom:405.162667pt;}
.yee{bottom:405.882667pt;}
.y78{bottom:407.401333pt;}
.yec{bottom:407.536000pt;}
.yab{bottom:413.793333pt;}
.y15c{bottom:419.548000pt;}
.y179{bottom:423.725333pt;}
.y13e{bottom:426.305333pt;}
.y46{bottom:427.076000pt;}
.y122{bottom:431.033333pt;}
.y77{bottom:431.416000pt;}
.yaa{bottom:436.846667pt;}
.yeb{bottom:440.048000pt;}
.y15{bottom:440.457333pt;}
.y121{bottom:441.010667pt;}
.y15b{bottom:441.461333pt;}
.y13d{bottom:448.218667pt;}
.y178{bottom:457.594667pt;}
.yea{bottom:459.865333pt;}
.y45{bottom:461.824000pt;}
.ya8{bottom:468.136000pt;}
.ye9{bottom:469.602667pt;}
.y13c{bottom:470.133333pt;}
.y120{bottom:471.044000pt;}
.y76{bottom:471.053333pt;}
.y15a{bottom:475.793333pt;}
.ya9{bottom:478.345333pt;}
.y177{bottom:479.508000pt;}
.y11c{bottom:481.252000pt;}
.y44{bottom:483.738667pt;}
.ya5{bottom:488.322667pt;}
.y11b{bottom:491.229333pt;}
.ye8{bottom:492.656000pt;}
.y75{bottom:492.966667pt;}
.y14{bottom:493.436000pt;}
.y11d{bottom:494.334667pt;}
.y159{bottom:497.708000pt;}
.y176{bottom:501.421333pt;}
.y43{bottom:505.652000pt;}
.y13b{bottom:505.817333pt;}
.ya7{bottom:506.718667pt;}
.ya6{bottom:509.374667pt;}
.y11f{bottom:509.625333pt;}
.y11e{bottom:512.281333pt;}
.ye7{bottom:514.569333pt;}
.y158{bottom:519.621333pt;}
.ya4{bottom:524.193333pt;}
.y11a{bottom:527.100000pt;}
.y13{bottom:527.517333pt;}
.y42{bottom:527.565333pt;}
.y13a{bottom:527.730667pt;}
.y74{bottom:534.016000pt;}
.y9f{bottom:534.401333pt;}
.y175{bottom:535.290667pt;}
.ya1{bottom:536.060000pt;}
.y115{bottom:537.308000pt;}
.y117{bottom:538.966667pt;}
.y9e{bottom:544.378667pt;}
.ye6{bottom:545.105333pt;}
.y12{bottom:546.852000pt;}
.y114{bottom:547.285333pt;}
.y41{bottom:549.478667pt;}
.y157{bottom:553.953333pt;}
.ye5{bottom:555.082667pt;}
.y73{bottom:555.930667pt;}
.y174{bottom:557.204000pt;}
.ya0{bottom:559.970667pt;}
.ya3{bottom:562.774667pt;}
.y116{bottom:562.877333pt;}
.y139{bottom:563.416000pt;}
.ya2{bottom:565.432000pt;}
.y119{bottom:565.681333pt;}
.y11{bottom:566.188000pt;}
.y118{bottom:568.338667pt;}
.y40{bottom:571.392000pt;}
.y156{bottom:575.868000pt;}
.y72{bottom:577.844000pt;}
.y173{bottom:579.117333pt;}
.y9d{bottom:582.152000pt;}
.y9b{bottom:582.557333pt;}
.y113{bottom:583.157333pt;}
.y138{bottom:585.329333pt;}
.y10{bottom:585.524000pt;}
.ye3{bottom:588.288000pt;}
.ye2{bottom:590.098667pt;}
.y9c{bottom:590.881333pt;}
.y9a{bottom:592.534667pt;}
.y3f{bottom:593.305333pt;}
.y10e{bottom:593.365333pt;}
.y110{bottom:595.024000pt;}
.y71{bottom:599.757333pt;}
.ye4{bottom:600.076000pt;}
.y10d{bottom:603.342667pt;}
.yf{bottom:604.858667pt;}
.y137{bottom:607.242667pt;}
.ye1{bottom:609.916000pt;}
.y155{bottom:610.200000pt;}
.y172{bottom:612.985333pt;}
.y3e{bottom:615.218667pt;}
.y10f{bottom:618.934667pt;}
.y70{bottom:621.670667pt;}
.y112{bottom:621.738667pt;}
.y99{bottom:623.452000pt;}
.ye0{bottom:623.637333pt;}
.ye{bottom:624.194667pt;}
.y111{bottom:624.394667pt;}
.y154{bottom:632.113333pt;}
.y171{bottom:634.900000pt;}
.y3d{bottom:637.132000pt;}
.y10b{bottom:639.213333pt;}
.y136{bottom:642.926667pt;}
.y98{bottom:643.269333pt;}
.y6f{bottom:645.380000pt;}
.ydf{bottom:645.518667pt;}
.yd{bottom:646.438667pt;}
.y10c{bottom:649.421333pt;}
.y108{bottom:651.080000pt;}
.y3c{bottom:659.046667pt;}
.y106{bottom:659.398667pt;}
.y135{bottom:664.841333pt;}
.y153{bottom:666.446667pt;}
.y6e{bottom:667.293333pt;}
.y170{bottom:668.768000pt;}
.y107{bottom:674.990667pt;}
.y97{bottom:675.250667pt;}
.yc{bottom:676.321333pt;}
.y10a{bottom:677.794667pt;}
.y109{bottom:680.452000pt;}
.y3b{bottom:680.960000pt;}
.y152{bottom:688.360000pt;}
.y6d{bottom:689.206667pt;}
.y16f{bottom:690.681333pt;}
.y105{bottom:697.578667pt;}
.y134{bottom:700.525333pt;}
.y3a{bottom:702.873333pt;}
.yb{bottom:702.929333pt;}
.y104{bottom:707.556000pt;}
.y96{bottom:710.361333pt;}
.y6c{bottom:711.120000pt;}
.yde{bottom:718.898667pt;}
.y95{bottom:720.338667pt;}
.y133{bottom:722.438667pt;}
.y151{bottom:722.693333pt;}
.y16e{bottom:724.550667pt;}
.ya{bottom:724.842667pt;}
.ydd{bottom:728.876000pt;}
.y6b{bottom:733.033333pt;}
.y39{bottom:737.622667pt;}
.y103{bottom:742.165333pt;}
.y101{bottom:742.572000pt;}
.y150{bottom:744.606667pt;}
.y16d{bottom:746.464000pt;}
.y9{bottom:746.756000pt;}
.y102{bottom:750.894667pt;}
.y100{bottom:752.549333pt;}
.y6a{bottom:754.946667pt;}
.y94{bottom:754.948000pt;}
.y92{bottom:755.354667pt;}
.ydc{bottom:758.908000pt;}
.y38{bottom:759.536000pt;}
.y132{bottom:759.634667pt;}
.y93{bottom:763.677333pt;}
.y91{bottom:765.332000pt;}
.y16c{bottom:768.377333pt;}
.y8{bottom:768.669333pt;}
.yd9{bottom:769.116000pt;}
.y69{bottom:776.860000pt;}
.y14f{bottom:778.940000pt;}
.yd8{bottom:779.093333pt;}
.y37{bottom:781.449333pt;}
.yff{bottom:785.061333pt;}
.ydb{bottom:797.489333pt;}
.y90{bottom:797.842667pt;}
.y7{bottom:797.856000pt;}
.y68{bottom:798.774667pt;}
.yda{bottom:800.146667pt;}
.y14e{bottom:800.853333pt;}
.y16b{bottom:802.246667pt;}
.y36{bottom:803.362667pt;}
.yfe{bottom:804.878667pt;}
.y131{bottom:813.145333pt;}
.yfd{bottom:814.614667pt;}
.yd5{bottom:814.965333pt;}
.y8f{bottom:817.661333pt;}
.y67{bottom:820.688000pt;}
.y16a{bottom:824.160000pt;}
.yd7{bottom:825.173333pt;}
.y35{bottom:825.276000pt;}
.yd2{bottom:826.832000pt;}
.y8e{bottom:827.397333pt;}
.y6{bottom:833.357333pt;}
.y130{bottom:835.058667pt;}
.yd0{bottom:835.150667pt;}
.y14d{bottom:835.186667pt;}
.yfc{bottom:836.860000pt;}
.y66{bottom:842.601333pt;}
.yd6{bottom:844.990667pt;}
.y34{bottom:847.189333pt;}
.y8d{bottom:850.450667pt;}
.yd1{bottom:850.742667pt;}
.yd4{bottom:853.546667pt;}
.yd3{bottom:856.202667pt;}
.y12f{bottom:856.972000pt;}
.y14c{bottom:857.100000pt;}
.y5{bottom:857.476000pt;}
.y169{bottom:858.028000pt;}
.y65{bottom:864.514667pt;}
.y33{bottom:869.102667pt;}
.y8c{bottom:872.364000pt;}
.ycf{bottom:873.329333pt;}
.y12e{bottom:878.885333pt;}
.y14b{bottom:879.013333pt;}
.y168{bottom:879.941333pt;}
.y4{bottom:881.596000pt;}
.yce{bottom:883.306667pt;}
.y64{bottom:886.428000pt;}
.y32{bottom:891.016000pt;}
.y3{bottom:902.114667pt;}
.y63{bottom:908.341333pt;}
.y14a{bottom:913.346667pt;}
.y167{bottom:913.810667pt;}
.y8b{bottom:915.834667pt;}
.y12d{bottom:916.081333pt;}
.ycd{bottom:917.917333pt;}
.ycb{bottom:918.322667pt;}
.y31{bottom:925.765333pt;}
.ycc{bottom:926.646667pt;}
.yca{bottom:928.300000pt;}
.y62{bottom:932.050667pt;}
.y149{bottom:935.260000pt;}
.y166{bottom:935.724000pt;}
.y8a{bottom:937.749333pt;}
.y30{bottom:947.678667pt;}
.y61{bottom:949.737333pt;}
.y60{bottom:950.368000pt;}
.y5f{bottom:953.964000pt;}
.yc9{bottom:960.812000pt;}
.y2{bottom:968.913333pt;}
.y2f{bottom:969.592000pt;}
.y89{bottom:978.726667pt;}
.y5e{bottom:979.718667pt;}
.yc8{bottom:980.629333pt;}
.y5d{bottom:981.529333pt;}
.y5c{bottom:987.910667pt;}
.yc7{bottom:990.366667pt;}
.y2e{bottom:991.506667pt;}
.y88{bottom:1007.729333pt;}
.y1{bottom:1009.196000pt;}
.y2d{bottom:1013.420000pt;}
.y2c{bottom:1066.022667pt;}
.hc{height:2.125355pt;}
.h28{height:22.107556pt;}
.h19{height:23.974061pt;}
.h12{height:29.499997pt;}
.h4{height:31.880400pt;}
.h8{height:37.087439pt;}
.h17{height:38.043849pt;}
.h6{height:40.610943pt;}
.ha{height:41.076398pt;}
.h45{height:41.658217pt;}
.h18{height:43.636400pt;}
.h7{height:45.907661pt;}
.h5{height:50.269133pt;}
.h1c{height:50.614663pt;}
.he{height:51.661133pt;}
.h23{height:52.995067pt;}
.h1f{height:53.521330pt;}
.h9{height:53.559147pt;}
.h2e{height:53.938551pt;}
.h1d{height:55.455065pt;}
.h24{height:55.460398pt;}
.h1a{height:55.901733pt;}
.h1e{height:57.983065pt;}
.h22{height:58.691067pt;}
.h16{height:60.083067pt;}
.hb{height:64.493355pt;}
.hd{height:65.885355pt;}
.h3{height:73.672994pt;}
.h2{height:77.140000pt;}
.h40{height:80.429355pt;}
.h39{height:80.436398pt;}
.h1b{height:80.985731pt;}
.h3d{height:82.996400pt;}
.h14{height:89.629133pt;}
.h33{height:90.178466pt;}
.h30{height:92.355067pt;}
.h29{height:95.051997pt;}
.h31{height:95.057330pt;}
.h13{height:96.370688pt;}
.h2b{height:98.051067pt;}
.h20{height:104.013133pt;}
.h15{height:104.402688pt;}
.h44{height:110.189355pt;}
.h3e{height:112.312021pt;}
.h42{height:112.317355pt;}
.hf{height:116.541355pt;}
.h27{height:118.216021pt;}
.h2f{height:118.221355pt;}
.h2a{height:119.837355pt;}
.h34{height:119.842688pt;}
.h3a{height:120.338688pt;}
.h3c{height:120.344021pt;}
.h2d{height:120.345731pt;}
.h21{height:126.166663pt;}
.h11{height:126.171997pt;}
.h25{height:129.538466pt;}
.h10{height:129.543799pt;}
.h26{height:132.264400pt;}
.h32{height:137.906688pt;}
.h3f{height:145.234688pt;}
.h43{height:150.098688pt;}
.h35{height:152.221355pt;}
.h41{height:152.226688pt;}
.h38{height:161.170688pt;}
.h3b{height:161.176021pt;}
.h36{height:161.177731pt;}
.h2c{height:161.183065pt;}
.h37{height:170.375799pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:92.786667pt;}
.xf{left:94.488000pt;}
.x7c{left:96.082667pt;}
.x82{left:98.528000pt;}
.x5{left:100.081333pt;}
.x6c{left:101.306667pt;}
.x4{left:104.382667pt;}
.x6d{left:111.601333pt;}
.x83{left:115.476000pt;}
.x22{left:117.070667pt;}
.xba{left:121.013333pt;}
.x3d{left:122.728000pt;}
.xcb{left:124.386667pt;}
.x1{left:126.716000pt;}
.xe{left:130.852000pt;}
.xbf{left:136.366667pt;}
.x71{left:139.061333pt;}
.x3e{left:140.858667pt;}
.x6e{left:145.738667pt;}
.xc1{left:148.173333pt;}
.xbc{left:153.472000pt;}
.xc0{left:154.945333pt;}
.x18{left:156.152000pt;}
.x6f{left:157.052000pt;}
.x92{left:160.922667pt;}
.x19{left:162.174667pt;}
.x95{left:163.368000pt;}
.x9c{left:167.841333pt;}
.x9f{left:169.434667pt;}
.xbb{left:170.333333pt;}
.x9d{left:173.862667pt;}
.x6{left:175.097333pt;}
.x98{left:177.106667pt;}
.x38{left:180.921333pt;}
.x15{left:182.677333pt;}
.x2{left:184.916000pt;}
.xa2{left:186.404000pt;}
.x99{left:191.652000pt;}
.x72{left:193.398667pt;}
.x39{left:195.466667pt;}
.x2c{left:196.685333pt;}
.x32{left:198.560000pt;}
.x73{left:200.672000pt;}
.x3{left:202.181333pt;}
.x91{left:204.221333pt;}
.x33{left:205.833333pt;}
.x16{left:213.836000pt;}
.x47{left:217.613333pt;}
.xd0{left:221.530667pt;}
.x8a{left:224.165333pt;}
.x8d{left:225.760000pt;}
.x10{left:227.009333pt;}
.x2f{left:230.229333pt;}
.x85{left:231.201333pt;}
.x7{left:232.736000pt;}
.x84{left:237.105333pt;}
.xad{left:238.862667pt;}
.x11{left:240.377333pt;}
.x88{left:242.706667pt;}
.x12{left:249.178667pt;}
.xae{left:250.669333pt;}
.x17{left:252.565333pt;}
.x54{left:253.661333pt;}
.x43{left:255.841333pt;}
.xa9{left:257.620000pt;}
.xaa{left:259.213333pt;}
.x48{left:260.285333pt;}
.x55{left:261.728000pt;}
.x49{left:264.358667pt;}
.xc5{left:266.241333pt;}
.x1a{left:267.917333pt;}
.xb9{left:271.273333pt;}
.x8b{left:273.485333pt;}
.xc2{left:276.092000pt;}
.xa{left:277.301333pt;}
.xab{left:278.700000pt;}
.xc9{left:279.960000pt;}
.xb{left:282.790667pt;}
.x9{left:284.210667pt;}
.x5a{left:287.130667pt;}
.x4a{left:288.754667pt;}
.xa0{left:289.885333pt;}
.x93{left:292.406667pt;}
.x5b{left:295.196000pt;}
.x4b{left:297.642667pt;}
.xa3{left:301.262667pt;}
.x3a{left:303.464000pt;}
.xc{left:304.658667pt;}
.x97{left:306.981333pt;}
.x9a{left:310.677333pt;}
.x96{left:313.752000pt;}
.x13{left:317.370667pt;}
.x5c{left:319.326667pt;}
.x74{left:322.650667pt;}
.x44{left:324.440000pt;}
.x57{left:325.354667pt;}
.x56{left:326.472000pt;}
.xbd{left:328.845333pt;}
.x3f{left:331.798667pt;}
.x5d{left:333.306667pt;}
.xbe{left:335.008000pt;}
.x75{left:336.265333pt;}
.x45{left:340.146667pt;}
.x8e{left:346.209333pt;}
.x76{left:349.506667pt;}
.x8{left:352.068000pt;}
.xaf{left:355.673333pt;}
.xac{left:357.388000pt;}
.x5e{left:358.392000pt;}
.x86{left:360.613333pt;}
.x58{left:366.516000pt;}
.xd{left:367.833333pt;}
.x1b{left:369.182667pt;}
.xb5{left:370.110667pt;}
.x94{left:372.030667pt;}
.xa1{left:375.673333pt;}
.x23{left:376.850667pt;}
.x77{left:378.950667pt;}
.x59{left:380.337333pt;}
.x26{left:382.470667pt;}
.x2a{left:385.213333pt;}
.x41{left:386.374667pt;}
.x5f{left:389.421333pt;}
.x40{left:390.322667pt;}
.x60{left:395.089333pt;}
.x27{left:397.016000pt;}
.xca{left:397.916000pt;}
.x2b{left:399.760000pt;}
.x42{left:402.082667pt;}
.x61{left:403.402667pt;}
.xcc{left:404.840000pt;}
.x28{left:406.126667pt;}
.x1c{left:412.289333pt;}
.xcd{left:413.220000pt;}
.x78{left:414.308000pt;}
.xb0{left:415.494667pt;}
.x87{left:416.388000pt;}
.xb4{left:417.780000pt;}
.x29{left:420.673333pt;}
.xb3{left:423.684000pt;}
.x1d{left:426.112000pt;}
.x62{left:428.486667pt;}
.x9e{left:429.722667pt;}
.x8f{left:431.997333pt;}
.xa4{left:433.977333pt;}
.x63{left:437.173333pt;}
.x90{left:438.161333pt;}
.x64{left:442.841333pt;}
.x9b{left:446.585333pt;}
.x65{left:451.154667pt;}
.x66{left:456.822667pt;}
.x67{left:465.708000pt;}
.x46{left:471.914667pt;}
.x7d{left:473.589333pt;}
.x1e{left:478.777333pt;}
.x3b{left:482.920000pt;}
.x8c{left:486.046667pt;}
.xa5{left:489.752000pt;}
.x24{left:492.776000pt;}
.x1f{left:495.725333pt;}
.x3c{left:497.465333pt;}
.xa8{left:498.537333pt;}
.xb1{left:500.145333pt;}
.xb7{left:505.596000pt;}
.x25{left:507.321333pt;}
.x4c{left:508.482667pt;}
.x4d{left:516.548000pt;}
.xb2{left:519.632000pt;}
.xce{left:527.456000pt;}
.x20{left:528.834667pt;}
.xb6{left:530.730667pt;}
.xc6{left:537.804000pt;}
.x2d{left:540.321333pt;}
.x4e{left:545.525333pt;}
.x2e{left:547.594667pt;}
.xc3{left:551.940000pt;}
.x34{left:554.185333pt;}
.x21{left:559.993333pt;}
.x35{left:561.004000pt;}
.x7e{left:563.174667pt;}
.xc4{left:564.764000pt;}
.x7f{left:569.338667pt;}
.x89{left:572.418667pt;}
.x4f{left:573.573333pt;}
.xa6{left:578.661333pt;}
.x50{left:581.638667pt;}
.xc7{left:595.024000pt;}
.x68{left:603.652000pt;}
.x6a{left:606.821333pt;}
.xcf{left:608.270667pt;}
.x51{left:609.449333pt;}
.xa7{left:613.866667pt;}
.x69{left:617.050667pt;}
.x70{left:618.276000pt;}
.x6b{left:621.366667pt;}
.xb8{left:627.061333pt;}
.x36{left:639.748000pt;}
.x37{left:646.565333pt;}
.x80{left:648.962667pt;}
.xc8{left:650.481333pt;}
.x81{left:655.126667pt;}
.x52{left:663.624000pt;}
.x79{left:674.749333pt;}
.x30{left:679.270667pt;}
.x7b{left:682.328000pt;}
.x53{left:692.376000pt;}
.x31{left:693.816000pt;}
.x7a{left:695.144000pt;}
}




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