
    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_acc28a29be960508fe980238.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_33aa40d007a71084bd3ce7fd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4b19fd52179d3507f3e34731.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5df3022ad708bab49981bf03.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_6229b8c2dd0745d3cd017c94.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_109523a3c11d627024061ca0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_79fad0a7c9f520a7102389bf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;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_4eafbd2b058b1ac92e1460f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.803000;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_a39afa4b29be40cf0e96377a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_312c909511966f3698806832.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.687000;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);}
.m1f{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);}
.m1e{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);}
.m16{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);}
.m1b{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);}
.m4{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);}
.m1a{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);}
.m20{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);}
.m1d{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);}
.me{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);}
.m11{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);}
.mb{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);}
.m8{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);}
.m26{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);}
.m12{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m19{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);}
.m3{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);}
.m21{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);}
.ma{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);}
.m17{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);}
.m15{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);}
.m6{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);}
.m9{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);}
.md{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);}
.m23{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);}
.mc{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);}
.m24{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);}
.m5{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);}
.m7{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);}
.m18{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);}
.m27{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);}
.m10{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);}
.m14{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.016000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.880000px;}
.v5{vertical-align:50.508000px;}
.v4{vertical-align:65.754000px;}
.ls9{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000263px;}
.ls26{letter-spacing:0.000568px;}
.ls27{letter-spacing:0.000658px;}
.ls6{letter-spacing:0.001573px;}
.ls29{letter-spacing:0.001831px;}
.ls5{letter-spacing:0.004137px;}
.ls2{letter-spacing:0.004200px;}
.lsb{letter-spacing:0.548815px;}
.ls14{letter-spacing:0.648088px;}
.lsa{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.998354px;}
.ls25{letter-spacing:10.868767px;}
.ls18{letter-spacing:11.951700px;}
.ls8{letter-spacing:11.954850px;}
.ls15{letter-spacing:11.957700px;}
.ls1c{letter-spacing:12.224120px;}
.ls17{letter-spacing:12.530693px;}
.ls2a{letter-spacing:13.286826px;}
.ls23{letter-spacing:13.315047px;}
.ls24{letter-spacing:13.360301px;}
.ls20{letter-spacing:13.448400px;}
.ls22{letter-spacing:13.454400px;}
.ls21{letter-spacing:13.456933px;}
.ls1e{letter-spacing:14.843276px;}
.ls1f{letter-spacing:14.855228px;}
.ls11{letter-spacing:14.884124px;}
.lsf{letter-spacing:14.938200px;}
.ls10{letter-spacing:14.944200px;}
.ls1d{letter-spacing:15.657483px;}
.lsc{letter-spacing:15.663483px;}
.ls12{letter-spacing:16.029847px;}
.lse{letter-spacing:17.319483px;}
.lsd{letter-spacing:17.325483px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls1a{letter-spacing:133.112014px;}
.ls1b{letter-spacing:133.118014px;}
.ls19{letter-spacing:184.552090px;}
.ls16{letter-spacing:473.014090px;}
.ls13{letter-spacing:551.698090px;}
.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;}
}
.ws4{word-spacing:-14.943900px;}
.ws1{word-spacing:-14.355754px;}
.ws8d{word-spacing:-13.449600px;}
.ws2b{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.wsb3{word-spacing:-2.929004px;}
.ws3c{word-spacing:-2.809453px;}
.ws53{word-spacing:-2.630126px;}
.wsd3{word-spacing:-2.582323px;}
.ws72{word-spacing:-2.510575px;}
.wsbf{word-spacing:-2.420928px;}
.wsa5{word-spacing:-2.391024px;}
.wscc{word-spacing:-2.313331px;}
.wsd5{word-spacing:-2.259533px;}
.wsc0{word-spacing:-2.205734px;}
.ws86{word-spacing:-2.032370px;}
.ws8{word-spacing:-1.908367px;}
.ws3b{word-spacing:-1.853044px;}
.wsa2{word-spacing:-1.733492px;}
.ws2d{word-spacing:-1.494390px;}
.wsb6{word-spacing:-1.434614px;}
.ws59{word-spacing:-1.374839px;}
.ws1d{word-spacing:-1.344960px;}
.ws7{word-spacing:-1.322630px;}
.wsa6{word-spacing:-1.315063px;}
.wsd2{word-spacing:-1.291162px;}
.wsaf{word-spacing:-1.255288px;}
.ws2c{word-spacing:-1.195512px;}
.wsa8{word-spacing:-1.135736px;}
.ws70{word-spacing:-1.075961px;}
.ws51{word-spacing:-0.956410px;}
.wscd{word-spacing:-0.914573px;}
.ws50{word-spacing:-0.896634px;}
.wsa7{word-spacing:-0.777083px;}
.wsb1{word-spacing:-0.717307px;}
.ws49{word-spacing:-0.657532px;}
.ws55{word-spacing:-0.597756px;}
.wsba{word-spacing:-0.591782px;}
.ws5c{word-spacing:-0.537980px;}
.wsc3{word-spacing:-0.430387px;}
.ws3d{word-spacing:-0.418429px;}
.ws42{word-spacing:-0.358654px;}
.wsd6{word-spacing:-0.322790px;}
.ws5a{word-spacing:-0.298878px;}
.ws24{word-spacing:-0.239102px;}
.ws1f{word-spacing:-0.215194px;}
.ws33{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.161395px;}
.ws8e{word-spacing:-0.143462px;}
.ws38{word-spacing:-0.119551px;}
.ws1a{word-spacing:-0.107597px;}
.ws5{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.053798px;}
.ws17{word-spacing:-0.047821px;}
.wsc{word-spacing:-0.041843px;}
.ws6{word-spacing:-0.000008px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.059776px;}
.ws8f{word-spacing:0.095641px;}
.ws20{word-spacing:0.107597px;}
.ws45{word-spacing:0.119551px;}
.ws90{word-spacing:0.143462px;}
.ws22{word-spacing:0.161395px;}
.ws28{word-spacing:0.179327px;}
.ws95{word-spacing:0.191282px;}
.wsd{word-spacing:0.209214px;}
.ws1b{word-spacing:0.215194px;}
.ws7d{word-spacing:0.237904px;}
.ws4e{word-spacing:0.239102px;}
.wsc9{word-spacing:0.268992px;}
.ws9d{word-spacing:0.270237px;}
.ws98{word-spacing:0.286924px;}
.wsf{word-spacing:0.292900px;}
.ws29{word-spacing:0.298878px;}
.ws30{word-spacing:0.358654px;}
.ws83{word-spacing:0.418429px;}
.wsb5{word-spacing:0.478205px;}
.wsab{word-spacing:0.537980px;}
.wse1{word-spacing:0.537984px;}
.ws91{word-spacing:0.573847px;}
.wsc4{word-spacing:0.591782px;}
.ws25{word-spacing:0.597756px;}
.ws65{word-spacing:0.657532px;}
.ws2e{word-spacing:0.717307px;}
.ws69{word-spacing:0.745343px;}
.wsa4{word-spacing:0.747133px;}
.wsdf{word-spacing:0.753178px;}
.ws6b{word-spacing:0.777083px;}
.ws21{word-spacing:0.806976px;}
.ws4b{word-spacing:0.836858px;}
.ws5d{word-spacing:0.896634px;}
.ws32{word-spacing:0.956410px;}
.ws31{word-spacing:1.016185px;}
.wsda{word-spacing:1.022170px;}
.ws40{word-spacing:1.075961px;}
.wsd7{word-spacing:1.129766px;}
.ws41{word-spacing:1.135736px;}
.wsad{word-spacing:1.255288px;}
.ws82{word-spacing:1.315063px;}
.wsa1{word-spacing:1.374839px;}
.ws87{word-spacing:1.434614px;}
.ws37{word-spacing:1.554166px;}
.ws52{word-spacing:1.673717px;}
.ws48{word-spacing:1.733492px;}
.ws43{word-spacing:1.793268px;}
.ws9c{word-spacing:1.865003px;}
.ws56{word-spacing:1.912819px;}
.ws26{word-spacing:1.972595px;}
.wse{word-spacing:2.008454px;}
.ws39{word-spacing:2.032370px;}
.ws36{word-spacing:2.092146px;}
.ws4c{word-spacing:2.151922px;}
.wsdd{word-spacing:2.151936px;}
.ws7e{word-spacing:2.211697px;}
.ws58{word-spacing:2.271473px;}
.wsaa{word-spacing:2.331248px;}
.wsce{word-spacing:2.367130px;}
.ws88{word-spacing:2.391024px;}
.ws8b{word-spacing:2.450800px;}
.ws81{word-spacing:2.570351px;}
.ws19{word-spacing:2.582323px;}
.ws62{word-spacing:2.809453px;}
.wsbd{word-spacing:2.851315px;}
.ws35{word-spacing:2.869229px;}
.ws60{word-spacing:2.929004px;}
.ws9e{word-spacing:3.048556px;}
.wsa3{word-spacing:3.168107px;}
.wsbc{word-spacing:3.174106px;}
.wse0{word-spacing:3.217987px;}
.wsbb{word-spacing:3.224822px;}
.ws84{word-spacing:3.227882px;}
.wsc8{word-spacing:3.227904px;}
.ws54{word-spacing:3.287658px;}
.ws5b{word-spacing:3.347434px;}
.wsa0{word-spacing:3.466985px;}
.ws23{word-spacing:3.586536px;}
.wsac{word-spacing:3.646312px;}
.ws4d{word-spacing:3.706087px;}
.wsb8{word-spacing:3.765888px;}
.ws5f{word-spacing:3.885414px;}
.wsbe{word-spacing:4.088678px;}
.ws34{word-spacing:4.184292px;}
.ws61{word-spacing:4.303843px;}
.wsb9{word-spacing:4.357670px;}
.ws6a{word-spacing:4.542946px;}
.wsae{word-spacing:4.841824px;}
.wsa9{word-spacing:4.901599px;}
.ws78{word-spacing:4.961375px;}
.ws99{word-spacing:5.140702px;}
.ws8a{word-spacing:5.260253px;}
.ws4a{word-spacing:5.379804px;}
.ws27{word-spacing:5.439580px;}
.ws9f{word-spacing:5.499355px;}
.ws85{word-spacing:5.559131px;}
.ws46{word-spacing:5.618906px;}
.ws89{word-spacing:5.678682px;}
.wsc2{word-spacing:5.971622px;}
.wsb4{word-spacing:5.977560px;}
.ws15{word-spacing:6.067206px;}
.ws3e{word-spacing:6.097111px;}
.ws16{word-spacing:6.150892px;}
.ws3f{word-spacing:6.156887px;}
.ws5e{word-spacing:6.216662px;}
.wsc1{word-spacing:6.348211px;}
.ws73{word-spacing:6.395989px;}
.ws7c{word-spacing:6.455765px;}
.wsb0{word-spacing:6.575316px;}
.ws18{word-spacing:6.778598px;}
.ws44{word-spacing:6.814418px;}
.ws47{word-spacing:7.113296px;}
.wsb7{word-spacing:8.129482px;}
.wsb2{word-spacing:8.308808px;}
.ws13{word-spacing:8.661460px;}
.ws3a{word-spacing:10.221628px;}
.wsd4{word-spacing:10.813478px;}
.wsa{word-spacing:12.929425px;}
.wsd0{word-spacing:13.234406px;}
.wsd1{word-spacing:13.288205px;}
.wsc7{word-spacing:13.342003px;}
.wsc5{word-spacing:13.395802px;}
.wsc6{word-spacing:13.557197px;}
.wsd9{word-spacing:13.664794px;}
.wsd8{word-spacing:14.095181px;}
.wsdb{word-spacing:14.417971px;}
.ws67{word-spacing:14.628176px;}
.ws63{word-spacing:14.640530px;}
.ws2a{word-spacing:14.776565px;}
.ws57{word-spacing:14.884124px;}
.ws66{word-spacing:14.920682px;}
.ws9{word-spacing:15.483541px;}
.ws64{word-spacing:15.570628px;}
.ws71{word-spacing:15.690296px;}
.ws77{word-spacing:15.693133px;}
.ws6f{word-spacing:16.023569px;}
.ws10{word-spacing:16.142252px;}
.ws11{word-spacing:16.151321px;}
.wscb{word-spacing:16.623706px;}
.ws74{word-spacing:16.737168px;}
.wsdc{word-spacing:16.785101px;}
.wscf{word-spacing:16.838899px;}
.wsca{word-spacing:17.000294px;}
.ws76{word-spacing:17.023741px;}
.ws79{word-spacing:17.394700px;}
.ws12{word-spacing:17.699504px;}
.ws75{word-spacing:18.052231px;}
.ws4f{word-spacing:18.470660px;}
.ws7a{word-spacing:18.709763px;}
.ws6c{word-spacing:19.606397px;}
.ws6e{word-spacing:19.905275px;}
.ws7f{word-spacing:20.263928px;}
.ws68{word-spacing:20.341328px;}
.ws6d{word-spacing:20.921460px;}
.ws7b{word-spacing:21.334666px;}
.ws80{word-spacing:21.578992px;}
.wsde{word-spacing:23.617498px;}
.ws14{word-spacing:27.448877px;}
.ws3{word-spacing:54.988186px;}
.ws94{word-spacing:94.685184px;}
.ws97{word-spacing:122.714150px;}
.ws96{word-spacing:155.633645px;}
.ws9b{word-spacing:319.508698px;}
.ws9a{word-spacing:351.468643px;}
.ws92{word-spacing:353.610643px;}
.ws8c{word-spacing:366.444643px;}
.ws93{word-spacing:396.784426px;}
._2{margin-left:-11.943245px;}
._b{margin-left:-7.029628px;}
._e{margin-left:-5.971622px;}
._7{margin-left:-4.674206px;}
._c{margin-left:-3.492964px;}
._5{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._6{width:1.091170px;}
._4{width:2.983878px;}
._0{width:10.165172px;}
._12{width:11.955150px;}
._9{width:12.971268px;}
._1f{width:14.559598px;}
._13{width:15.745187px;}
._d{width:17.257178px;}
._10{width:18.291334px;}
._1c{width:19.653235px;}
._f{width:20.801909px;}
._20{width:21.839058px;}
._11{width:22.987732px;}
._1a{width:24.471166px;}
._8{width:25.943736px;}
._1d{width:27.603390px;}
._1e{width:29.170493px;}
._16{width:31.621292px;}
._a{width:32.637384px;}
._1b{width:34.729624px;}
._19{width:36.044687px;}
._17{width:37.419526px;}
._18{width:39.511672px;}
._57{width:43.994842px;}
._3{width:54.350180px;}
._59{width:61.868160px;}
._3c{width:106.917110px;}
._23{width:107.919590px;}
._4f{width:113.138035px;}
._3d{width:128.523110px;}
._4d{width:133.640385px;}
._30{width:139.822042px;}
._53{width:152.416721px;}
._2f{width:157.407864px;}
._54{width:159.452604px;}
._44{width:161.502797px;}
._50{width:173.332591px;}
._45{width:175.006195px;}
._4c{width:178.509398px;}
._37{width:180.009446px;}
._26{width:188.617190px;}
._34{width:189.854554px;}
._48{width:193.781837px;}
._43{width:196.848346px;}
._41{width:201.690202px;}
._35{width:203.304154px;}
._40{width:207.661824px;}
._49{width:212.880269px;}
._42{width:215.139802px;}
._52{width:216.371311px;}
._38{width:217.614528px;}
._39{width:223.747546px;}
._47{width:224.877312px;}
._29{width:228.965990px;}
._33{width:231.602112px;}
._56{width:233.108467px;}
._46{width:235.798387px;}
._32{width:237.627533px;}
._3a{width:242.845978px;}
._36{width:245.105510px;}
._24{width:247.489632px;}
._2c{width:269.314790px;}
._22{width:282.226406px;}
._27{width:287.835427px;}
._25{width:302.562202px;}
._2a{width:308.010845px;}
._2d{width:326.840717px;}
._28{width:328.869619px;}
._51{width:345.547123px;}
._55{width:362.750450px;}
._2b{width:368.142451px;}
._14{width:370.083623px;}
._3f{width:378.310349px;}
._3b{width:383.098406px;}
._31{width:425.276352px;}
._4b{width:429.734515px;}
._3e{width:435.659443px;}
._21{width:440.415264px;}
._2e{width:556.060262px;}
._4a{width:574.728307px;}
._4e{width:751.882507px;}
._58{width:1983.805001px;}
._15{width:2007.715001px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fse{font-size:49.829400px;}
.fsa{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fsb{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.yb{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y50{bottom:31.890000px;}
.y2{bottom:37.114269px;}
.y155{bottom:94.374000px;}
.ybb{bottom:98.178000px;}
.y17c{bottom:102.211500px;}
.y25{bottom:102.823500px;}
.y20b{bottom:103.557000px;}
.y4f{bottom:103.621500px;}
.y1aa{bottom:105.799500px;}
.y154{bottom:108.570000px;}
.y87{bottom:109.366500px;}
.yed{bottom:113.868000px;}
.yba{bottom:117.007500px;}
.y1d4{bottom:118.800000px;}
.y11e{bottom:119.697000px;}
.y24{bottom:120.711000px;}
.y20a{bottom:120.817500px;}
.y17b{bottom:121.041000px;}
.y4e{bottom:122.449500px;}
.y153{bottom:122.767500px;}
.y1a9{bottom:124.627500px;}
.y86{bottom:128.196000px;}
.yec{bottom:132.697500px;}
.yb9{bottom:135.837000px;}
.y1d3{bottom:136.060500px;}
.y152{bottom:136.963500px;}
.y209{bottom:138.078000px;}
.y11d{bottom:138.526500px;}
.y23{bottom:138.600000px;}
.y17a{bottom:139.870500px;}
.y4d{bottom:141.279000px;}
.y1a8{bottom:143.457000px;}
.y85{bottom:147.025500px;}
.y151{bottom:151.161000px;}
.yeb{bottom:151.527000px;}
.y1d2{bottom:153.321000px;}
.yb8{bottom:154.665000px;}
.y208{bottom:155.338500px;}
.y22{bottom:156.487500px;}
.y11c{bottom:157.356000px;}
.y179{bottom:158.700000px;}
.y4c{bottom:160.108500px;}
.y1a7{bottom:162.286500px;}
.y84{bottom:165.855000px;}
.yea{bottom:170.356500px;}
.y1d1{bottom:170.581500px;}
.y207{bottom:172.599000px;}
.yb7{bottom:173.494500px;}
.y150{bottom:173.907000px;}
.y21{bottom:174.375000px;}
.y11b{bottom:176.185500px;}
.y178{bottom:177.529500px;}
.y4b{bottom:178.938000px;}
.y1a6{bottom:181.116000px;}
.y83{bottom:184.684500px;}
.y1d0{bottom:187.842000px;}
.ye9{bottom:189.186000px;}
.y206{bottom:189.858000px;}
.y14f{bottom:190.345500px;}
.y20{bottom:192.264000px;}
.yb6{bottom:192.324000px;}
.y11a{bottom:195.015000px;}
.y177{bottom:196.359000px;}
.y4a{bottom:197.767500px;}
.y1a5{bottom:199.945500px;}
.y82{bottom:203.514000px;}
.y1cf{bottom:205.102500px;}
.y14e{bottom:206.784000px;}
.y205{bottom:207.118500px;}
.ye8{bottom:208.015500px;}
.y1f{bottom:210.151500px;}
.yb5{bottom:211.153500px;}
.y119{bottom:213.844500px;}
.y176{bottom:215.188500px;}
.y49{bottom:216.597000px;}
.y1a4{bottom:218.775000px;}
.y81{bottom:222.343500px;}
.y1ce{bottom:222.363000px;}
.y14d{bottom:223.222500px;}
.y204{bottom:224.379000px;}
.y1e{bottom:228.039000px;}
.y118{bottom:232.674000px;}
.y175{bottom:234.018000px;}
.ye7{bottom:234.316500px;}
.yb4{bottom:234.466500px;}
.y48{bottom:235.426500px;}
.y1a3{bottom:237.604500px;}
.y1cd{bottom:239.622000px;}
.y80{bottom:241.173000px;}
.y203{bottom:241.639500px;}
.y14c{bottom:246.864000px;}
.y117{bottom:251.503500px;}
.y174{bottom:252.847500px;}
.ye6{bottom:253.146000px;}
.y47{bottom:254.256000px;}
.y1a2{bottom:256.434000px;}
.y1cc{bottom:256.882500px;}
.y14b{bottom:257.877000px;}
.y202{bottom:258.900000px;}
.y7f{bottom:260.002500px;}
.yb3{bottom:268.090500px;}
.y116{bottom:270.333000px;}
.y173{bottom:271.677000px;}
.ye5{bottom:271.975500px;}
.y46{bottom:273.085500px;}
.y1cb{bottom:274.143000px;}
.y1a1{bottom:275.263500px;}
.y201{bottom:276.160500px;}
.y7e{bottom:278.832000px;}
.yb2{bottom:286.920000px;}
.y115{bottom:289.162500px;}
.y172{bottom:290.506500px;}
.ye4{bottom:290.805000px;}
.y1ca{bottom:291.403500px;}
.y200{bottom:293.421000px;}
.y45{bottom:296.398500px;}
.y7d{bottom:297.661500px;}
.y1a0{bottom:298.576500px;}
.y14a{bottom:302.124000px;}
.yb1{bottom:305.749500px;}
.y1d{bottom:307.299000px;}
.y114{bottom:307.990500px;}
.y1c9{bottom:308.664000px;}
.y171{bottom:309.336000px;}
.ye3{bottom:309.634500px;}
.y1ff{bottom:310.681500px;}
.y7c{bottom:316.491000px;}
.yb0{bottom:324.579000px;}
.y1c{bottom:325.186500px;}
.y1c8{bottom:325.924500px;}
.y1fe{bottom:327.940500px;}
.y170{bottom:328.165500px;}
.ye2{bottom:328.464000px;}
.y113{bottom:331.303500px;}
.y19f{bottom:332.200500px;}
.y149{bottom:334.195500px;}
.y7b{bottom:335.320500px;}
.y1b{bottom:343.074000px;}
.y1c7{bottom:343.185000px;}
.yaf{bottom:343.408500px;}
.y1fd{bottom:345.201000px;}
.y16f{bottom:346.995000px;}
.y19e{bottom:351.030000px;}
.y148{bottom:353.025000px;}
.y7a{bottom:354.150000px;}
.ye1{bottom:354.766500px;}
.y1c6{bottom:360.445500px;}
.y1a{bottom:360.963000px;}
.yae{bottom:362.238000px;}
.y1fc{bottom:362.461500px;}
.y112{bottom:364.927500px;}
.y16e{bottom:365.824500px;}
.y19d{bottom:369.859500px;}
.y44{bottom:371.548500px;}
.y147{bottom:371.854500px;}
.y79{bottom:372.979500px;}
.ye0{bottom:373.596000px;}
.y1c5{bottom:377.706000px;}
.y1fb{bottom:379.722000px;}
.yad{bottom:381.067500px;}
.y111{bottom:383.757000px;}
.y16d{bottom:384.654000px;}
.y19c{bottom:388.689000px;}
.y146{bottom:390.684000px;}
.y43{bottom:391.005000px;}
.y78{bottom:391.809000px;}
.ydf{bottom:392.424000px;}
.y1c4{bottom:394.965000px;}
.y1fa{bottom:396.982500px;}
.y19{bottom:399.024000px;}
.yac{bottom:399.897000px;}
.y110{bottom:402.586500px;}
.y16c{bottom:403.483500px;}
.y19b{bottom:407.518500px;}
.y145{bottom:409.513500px;}
.y77{bottom:410.638500px;}
.yde{bottom:411.253500px;}
.y1c3{bottom:412.225500px;}
.y1f9{bottom:414.243000px;}
.y18{bottom:416.913000px;}
.yab{bottom:418.726500px;}
.y10f{bottom:421.416000px;}
.y16b{bottom:422.313000px;}
.y19a{bottom:426.348000px;}
.y42{bottom:428.395500px;}
.y76{bottom:429.468000px;}
.ydd{bottom:430.083000px;}
.y1f8{bottom:431.503500px;}
.y1c2{bottom:433.969500px;}
.y17{bottom:434.800500px;}
.y10e{bottom:440.245500px;}
.y16a{bottom:441.142500px;}
.yaa{bottom:442.039500px;}
.y144{bottom:442.689000px;}
.y199{bottom:445.177500px;}
.y41{bottom:447.852000px;}
.y75{bottom:448.297500px;}
.y1f7{bottom:448.764000px;}
.ydc{bottom:448.912500px;}
.y143{bottom:456.886500px;}
.y10d{bottom:459.075000px;}
.y169{bottom:459.972000px;}
.ya9{bottom:462.213000px;}
.y198{bottom:464.007000px;}
.y1f6{bottom:466.024500px;}
.y74{bottom:467.127000px;}
.y40{bottom:467.310000px;}
.y1c1{bottom:467.593500px;}
.y16{bottom:470.622000px;}
.y142{bottom:471.082500px;}
.ydb{bottom:475.215000px;}
.y10c{bottom:477.904500px;}
.y168{bottom:478.801500px;}
.y197{bottom:482.836500px;}
.y1f5{bottom:483.283500px;}
.y141{bottom:485.280000px;}
.y73{bottom:485.956500px;}
.y3f{bottom:486.766500px;}
.yda{bottom:494.044500px;}
.y1c0{bottom:494.134500px;}
.ya8{bottom:495.837000px;}
.y10b{bottom:496.734000px;}
.y167{bottom:497.631000px;}
.y140{bottom:499.476000px;}
.y1f4{bottom:500.544000px;}
.y72{bottom:504.786000px;}
.y196{bottom:506.148000px;}
.y3e{bottom:506.223000px;}
.y15{bottom:506.442000px;}
.y1bf{bottom:511.708500px;}
.yd9{bottom:512.874000px;}
.ya7{bottom:514.666500px;}
.y10a{bottom:515.563500px;}
.y166{bottom:516.460500px;}
.y1f3{bottom:517.804500px;}
.y13f{bottom:522.223500px;}
.y71{bottom:523.615500px;}
.y14{bottom:524.329500px;}
.y3d{bottom:525.681000px;}
.yd8{bottom:531.703500px;}
.ya5{bottom:533.496000px;}
.y109{bottom:534.393000px;}
.y1f2{bottom:535.065000px;}
.y165{bottom:535.290000px;}
.y1be{bottom:538.248000px;}
.y13e{bottom:538.662000px;}
.ya6{bottom:538.920000px;}
.y195{bottom:539.772000px;}
.y13{bottom:542.218500px;}
.y70{bottom:542.445000px;}
.y3c{bottom:545.137500px;}
.yd7{bottom:550.531500px;}
.ya4{bottom:552.325500px;}
.y108{bottom:553.222500px;}
.y164{bottom:554.118000px;}
.y13d{bottom:555.100500px;}
.y1bd{bottom:555.822000px;}
.y194{bottom:558.601500px;}
.y12{bottom:560.106000px;}
.y6f{bottom:561.274500px;}
.y3b{bottom:564.595500px;}
.yd6{bottom:569.361000px;}
.y1f1{bottom:569.586000px;}
.ya3{bottom:571.155000px;}
.y13c{bottom:571.539000px;}
.y107{bottom:572.052000px;}
.y163{bottom:572.947500px;}
.y193{bottom:577.431000px;}
.y11{bottom:577.993500px;}
.y6e{bottom:580.104000px;}
.y1bc{bottom:582.363000px;}
.y3a{bottom:584.052000px;}
.y1f0{bottom:586.846500px;}
.ya2{bottom:589.984500px;}
.y106{bottom:590.881500px;}
.y162{bottom:591.777000px;}
.y13b{bottom:595.179000px;}
.yd5{bottom:595.663500px;}
.y10{bottom:595.882500px;}
.y192{bottom:596.260500px;}
.y6d{bottom:598.932000px;}
.y39{bottom:603.508500px;}
.y1ef{bottom:604.107000px;}
.ya1{bottom:608.814000px;}
.y1bb{bottom:608.904000px;}
.y105{bottom:609.711000px;}
.y161{bottom:610.606500px;}
.y13a{bottom:611.617500px;}
.yf{bottom:613.770000px;}
.yd4{bottom:614.493000px;}
.y191{bottom:615.090000px;}
.y136{bottom:616.654500px;}
.y138{bottom:616.806000px;}
.y139{bottom:617.004000px;}
.y6c{bottom:617.761500px;}
.y1ee{bottom:621.366000px;}
.y38{bottom:622.966500px;}
.y1ba{bottom:626.478000px;}
.ya0{bottom:627.643500px;}
.y104{bottom:628.540500px;}
.y160{bottom:629.436000px;}
.ye{bottom:631.657500px;}
.yd3{bottom:633.322500px;}
.y190{bottom:633.919500px;}
.y137{bottom:635.259000px;}
.y6b{bottom:636.591000px;}
.y1ed{bottom:638.626500px;}
.y37{bottom:642.423000px;}
.y1b9{bottom:644.052000px;}
.y9f{bottom:646.473000px;}
.y103{bottom:647.370000px;}
.y15f{bottom:648.265500px;}
.yd{bottom:649.546500px;}
.yd2{bottom:652.152000px;}
.y18f{bottom:652.749000px;}
.y6a{bottom:655.420500px;}
.y1ec{bottom:655.887000px;}
.y36{bottom:661.879500px;}
.y9e{bottom:665.302500px;}
.y102{bottom:666.199500px;}
.y135{bottom:666.877500px;}
.y15e{bottom:667.095000px;}
.y1b8{bottom:670.593000px;}
.yd1{bottom:670.981500px;}
.y18e{bottom:671.578500px;}
.ya{bottom:671.917464px;}
.y1eb{bottom:673.147500px;}
.y69{bottom:674.250000px;}
.y35{bottom:681.337500px;}
.y9d{bottom:684.132000px;}
.y101{bottom:685.029000px;}
.y15d{bottom:685.924500px;}
.yd0{bottom:689.811000px;}
.y18d{bottom:690.408000px;}
.y68{bottom:693.079500px;}
.y1b7{bottom:697.132500px;}
.y34{bottom:700.794000px;}
.y9c{bottom:702.961500px;}
.y134{bottom:703.653000px;}
.y100{bottom:703.858500px;}
.y15c{bottom:704.754000px;}
.y1ea{bottom:707.668500px;}
.y18c{bottom:709.237500px;}
.y67{bottom:711.909000px;}
.y1b6{bottom:714.706500px;}
.ycf{bottom:716.112000px;}
.y133{bottom:717.850500px;}
.y9b{bottom:721.791000px;}
.yff{bottom:722.686500px;}
.y15b{bottom:723.583500px;}
.y1e9{bottom:724.929000px;}
.y18b{bottom:728.067000px;}
.y66{bottom:730.738500px;}
.y132{bottom:732.046500px;}
.y1b5{bottom:732.282000px;}
.yce{bottom:734.941500px;}
.y33{bottom:738.822000px;}
.y9a{bottom:740.620500px;}
.yfe{bottom:741.516000px;}
.y1e8{bottom:742.189500px;}
.y15a{bottom:742.413000px;}
.y18a{bottom:746.896500px;}
.y65{bottom:749.568000px;}
.y1b4{bottom:749.856000px;}
.ycd{bottom:753.771000px;}
.y131{bottom:754.794000px;}
.y32{bottom:759.301500px;}
.y1e7{bottom:759.450000px;}
.yfd{bottom:760.345500px;}
.y159{bottom:761.242500px;}
.y99{bottom:763.932000px;}
.y189{bottom:765.726000px;}
.y1b3{bottom:767.430000px;}
.y64{bottom:768.397500px;}
.y31{bottom:771.102000px;}
.y130{bottom:771.232500px;}
.ycc{bottom:772.600500px;}
.y1e6{bottom:776.709000px;}
.yfc{bottom:779.175000px;}
.y158{bottom:780.072000px;}
.y188{bottom:784.555500px;}
.y63{bottom:787.227000px;}
.y30{bottom:787.240500px;}
.y12f{bottom:787.671000px;}
.ycb{bottom:791.430000px;}
.y2f{bottom:791.581500px;}
.y1e5{bottom:793.969500px;}
.y98{bottom:797.556000px;}
.y157{bottom:798.901500px;}
.yfb{bottom:802.488000px;}
.y1b2{bottom:802.936500px;}
.y2e{bottom:803.380500px;}
.y187{bottom:803.385000px;}
.y12e{bottom:804.109500px;}
.y62{bottom:806.056500px;}
.yca{bottom:810.259500px;}
.y1e4{bottom:811.230000px;}
.y97{bottom:816.385500px;}
.y156{bottom:817.731000px;}
.y1b1{bottom:821.766000px;}
.y186{bottom:822.214500px;}
.y2d{bottom:823.860000px;}
.y61{bottom:824.886000px;}
.y12d{bottom:827.749500px;}
.y1e3{bottom:828.490500px;}
.y96{bottom:835.215000px;}
.yfa{bottom:836.112000px;}
.yc9{bottom:836.560500px;}
.y12c{bottom:838.764000px;}
.y2c{bottom:840.000000px;}
.y1b0{bottom:840.595500px;}
.y185{bottom:841.044000px;}
.y60{bottom:843.715500px;}
.y1e2{bottom:845.751000px;}
.y95{bottom:854.044500px;}
.yf9{bottom:854.941500px;}
.yc8{bottom:855.390000px;}
.y2b{bottom:856.138500px;}
.y1af{bottom:859.425000px;}
.y184{bottom:859.873500px;}
.y5f{bottom:862.545000px;}
.y1e1{bottom:863.011500px;}
.y2a{bottom:867.939000px;}
.y94{bottom:872.874000px;}
.yf8{bottom:873.771000px;}
.yc7{bottom:874.219500px;}
.y1ae{bottom:878.254500px;}
.y183{bottom:878.703000px;}
.y1e0{bottom:880.272000px;}
.y5e{bottom:881.374500px;}
.y12b{bottom:883.011000px;}
.y29{bottom:888.418500px;}
.y93{bottom:891.703500px;}
.yf7{bottom:892.600500px;}
.yc6{bottom:893.049000px;}
.y1ad{bottom:897.084000px;}
.y182{bottom:897.532500px;}
.y5d{bottom:900.204000px;}
.y28{bottom:900.217500px;}
.y92{bottom:910.533000px;}
.yc5{bottom:911.878500px;}
.y1df{bottom:914.793000px;}
.yf6{bottom:915.913500px;}
.y181{bottom:916.362000px;}
.y5c{bottom:919.033500px;}
.y12a{bottom:919.786500px;}
.y27{bottom:920.697000px;}
.y91{bottom:929.362500px;}
.yc4{bottom:930.708000px;}
.y1de{bottom:932.052000px;}
.y129{bottom:933.982500px;}
.yf5{bottom:934.743000px;}
.y180{bottom:935.191500px;}
.y26{bottom:936.837000px;}
.y5b{bottom:937.863000px;}
.y128{bottom:948.180000px;}
.y90{bottom:948.192000px;}
.y1dd{bottom:949.312500px;}
.yc3{bottom:949.537500px;}
.yf4{bottom:953.572500px;}
.y17f{bottom:954.021000px;}
.y5a{bottom:956.692500px;}
.y127{bottom:962.376000px;}
.y1dc{bottom:966.573000px;}
.y8f{bottom:967.021500px;}
.yc2{bottom:968.367000px;}
.y1ac{bottom:972.402000px;}
.y17e{bottom:972.849000px;}
.y59{bottom:975.522000px;}
.y9{bottom:976.473000px;}
.yf3{bottom:976.884000px;}
.y1db{bottom:983.833500px;}
.y126{bottom:985.123500px;}
.y8e{bottom:985.851000px;}
.yc1{bottom:987.196500px;}
.y17d{bottom:991.678500px;}
.y58{bottom:994.351500px;}
.y8{bottom:995.302500px;}
.y1ab{bottom:995.713500px;}
.y1da{bottom:1001.094000px;}
.y125{bottom:1001.562000px;}
.y8d{bottom:1004.680500px;}
.yc0{bottom:1006.026000px;}
.yf2{bottom:1010.508000px;}
.y57{bottom:1013.181000px;}
.y124{bottom:1018.000500px;}
.y1d9{bottom:1018.354500px;}
.y8c{bottom:1023.510000px;}
.ybf{bottom:1024.855500px;}
.yf1{bottom:1029.337500px;}
.y56{bottom:1032.010500px;}
.y123{bottom:1034.439000px;}
.y1d8{bottom:1035.615000px;}
.y7{bottom:1041.199500px;}
.y8b{bottom:1042.339500px;}
.ybe{bottom:1043.685000px;}
.yf0{bottom:1048.167000px;}
.y55{bottom:1050.840000px;}
.y1d7{bottom:1052.875500px;}
.y121{bottom:1058.079000px;}
.y8a{bottom:1061.169000px;}
.ybd{bottom:1062.513000px;}
.y120{bottom:1066.297500px;}
.yef{bottom:1066.996500px;}
.y6{bottom:1069.443000px;}
.y54{bottom:1069.669500px;}
.y1d6{bottom:1070.134500px;}
.y122{bottom:1074.517500px;}
.ybc{bottom:1081.342500px;}
.y89{bottom:1084.482000px;}
.yee{bottom:1085.826000px;}
.y1d5{bottom:1087.395000px;}
.y53{bottom:1088.499000px;}
.y5{bottom:1097.688000px;}
.y88{bottom:1104.655500px;}
.y11f{bottom:1106.137500px;}
.y52{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y51{bottom:1173.397500px;}
.h8{height:25.508090px;}
.hd{height:26.110157px;}
.he{height:26.302208px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h17{height:33.072749px;}
.ha{height:33.112997px;}
.h1a{height:33.186380px;}
.h9{height:34.199443px;}
.hf{height:34.813397px;}
.h15{height:35.052500px;}
.h11{height:38.896243px;}
.h12{height:39.165235px;}
.h3{height:39.402747px;}
.h1c{height:39.434227px;}
.h4{height:41.001535px;}
.h16{height:41.482876px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.h10{height:43.660208px;}
.h5{height:43.815515px;}
.h1d{height:49.117939px;}
.h2{height:50.931027px;}
.h7{height:54.541601px;}
.h18{height:71.776243px;}
.h6{height:77.792486px;}
.h1b{height:89.404243px;}
.h19{height:104.650243px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:59.014071px;}
.x67{left:71.454000px;}
.x6f{left:74.049000px;}
.x70{left:75.583500px;}
.x5d{left:76.854000px;}
.x78{left:78.112500px;}
.x60{left:79.450500px;}
.x61{left:80.983500px;}
.x79{left:82.887000px;}
.x5f{left:84.453000px;}
.x56{left:85.890000px;}
.x7c{left:89.404500px;}
.x76{left:97.344000px;}
.x4d{left:103.729500px;}
.x53{left:106.063500px;}
.x54{left:107.596500px;}
.x52{left:111.066000px;}
.x55{left:112.371000px;}
.x73{left:124.296000px;}
.x7d{left:127.518000px;}
.x6d{left:158.283000px;}
.x66{left:163.299000px;}
.x5e{left:169.158000px;}
.x6c{left:174.268500px;}
.x77{left:175.410000px;}
.x59{left:181.105500px;}
.x4c{left:186.574500px;}
.x68{left:191.022000px;}
.x5a{left:194.140500px;}
.x5c{left:199.539000px;}
.x63{left:235.983000px;}
.x4e{left:246.334500px;}
.x4b{left:248.655000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x5{left:271.221000px;}
.x36{left:280.137000px;}
.x9{left:282.786000px;}
.x48{left:285.490500px;}
.x37{left:295.852500px;}
.x2e{left:300.642000px;}
.x9c{left:310.705500px;}
.x6e{left:311.793000px;}
.x7{left:313.042500px;}
.x2f{left:315.586500px;}
.x8{left:321.202500px;}
.x98{left:325.782000px;}
.x99{left:330.858000px;}
.xc{left:334.690500px;}
.x38{left:340.204500px;}
.xd{left:342.163500px;}
.x12{left:346.051500px;}
.x39{left:347.676000px;}
.x33{left:349.741500px;}
.x3a{left:351.465000px;}
.x13{left:353.523000px;}
.x97{left:358.728000px;}
.x3b{left:366.408000px;}
.x3c{left:369.796500px;}
.x81{left:373.213500px;}
.x8b{left:376.245000px;}
.x3d{left:385.564500px;}
.x82{left:388.156500px;}
.x62{left:390.277500px;}
.x1c{left:394.965000px;}
.x3e{left:399.064500px;}
.x50{left:403.317000px;}
.x1d{left:409.909500px;}
.x3f{left:414.009000px;}
.x4f{left:415.449000px;}
.x40{left:417.673500px;}
.x42{left:426.009000px;}
.x41{left:432.618000px;}
.xa2{left:434.737500px;}
.x1e{left:437.914500px;}
.x1f{left:452.859000px;}
.x30{left:454.878000px;}
.x20{left:456.580500px;}
.x71{left:468.663000px;}
.x31{left:469.821000px;}
.x21{left:471.523500px;}
.x72{left:481.540500px;}
.xe{left:485.082000px;}
.x69{left:489.997500px;}
.xf{left:492.553500px;}
.xa1{left:494.350500px;}
.x2a{left:508.012500px;}
.x2b{left:522.955500px;}
.x7a{left:525.357000px;}
.x8d{left:529.119000px;}
.x57{left:532.566000px;}
.x7b{left:538.714500px;}
.x8e{left:541.410000px;}
.x58{left:545.392500px;}
.x92{left:559.578000px;}
.x9d{left:560.992500px;}
.x24{left:562.617000px;}
.x74{left:568.050000px;}
.x6a{left:574.833000px;}
.x9e{left:575.935500px;}
.x25{left:577.561500px;}
.x9f{left:579.747000px;}
.x75{left:580.866000px;}
.x8f{left:591.607500px;}
.xa0{left:594.691500px;}
.x43{left:598.041000px;}
.xa{left:599.563500px;}
.x90{left:603.898500px;}
.x95{left:605.280000px;}
.xb{left:607.036500px;}
.x44{left:612.985500px;}
.x96{left:620.224500px;}
.x45{left:633.586500px;}
.x7e{left:639.561000px;}
.x9a{left:645.205500px;}
.x46{left:648.531000px;}
.x2c{left:652.110000px;}
.x5b{left:654.802500px;}
.x9b{left:656.338500px;}
.x94{left:658.294500px;}
.x14{left:666.051000px;}
.x2d{left:667.054500px;}
.x28{left:672.180000px;}
.x15{left:673.524000px;}
.x6b{left:677.809500px;}
.x91{left:681.373500px;}
.x83{left:684.057000px;}
.x29{left:687.124500px;}
.x1a{left:688.513500px;}
.x86{left:690.840000px;}
.xa5{left:694.285500px;}
.x26{left:697.216500px;}
.x87{left:701.530500px;}
.xa7{left:704.371500px;}
.x16{left:708.523500px;}
.x27{left:712.159500px;}
.x88{left:716.025000px;}
.x51{left:717.282000px;}
.x34{left:721.467000px;}
.x17{left:723.466500px;}
.x18{left:726.621000px;}
.x89{left:728.730000px;}
.x35{left:737.200500px;}
.x19{left:741.565500px;}
.x22{left:744.879000px;}
.x85{left:747.127500px;}
.xa8{left:749.383500px;}
.x64{left:751.944000px;}
.x47{left:757.140000px;}
.x23{left:759.823500px;}
.x65{left:764.760000px;}
.x8c{left:776.730000px;}
.x49{left:779.037000px;}
.x84{left:782.997000px;}
.x93{left:790.480500px;}
.x4a{left:795.490500px;}
.x7f{left:799.366500px;}
.xa3{left:810.390000px;}
.x80{left:814.311000px;}
.xa6{left:816.844500px;}
.x32{left:817.863000px;}
.x1b{left:818.893500px;}
.x10{left:825.519000px;}
.x11{left:832.990500px;}
.x8a{left:834.024000px;}
.xa4{left:837.289500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.458667pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.226667pt;}
.v5{vertical-align:44.896000pt;}
.v4{vertical-align:58.448000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000234pt;}
.ls26{letter-spacing:0.000504pt;}
.ls27{letter-spacing:0.000585pt;}
.ls6{letter-spacing:0.001398pt;}
.ls29{letter-spacing:0.001628pt;}
.ls5{letter-spacing:0.003677pt;}
.ls2{letter-spacing:0.003733pt;}
.lsb{letter-spacing:0.487835pt;}
.ls14{letter-spacing:0.576078pt;}
.lsa{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.665203pt;}
.ls25{letter-spacing:9.661127pt;}
.ls18{letter-spacing:10.623733pt;}
.ls8{letter-spacing:10.626533pt;}
.ls15{letter-spacing:10.629067pt;}
.ls1c{letter-spacing:10.865884pt;}
.ls17{letter-spacing:11.138393pt;}
.ls2a{letter-spacing:11.810512pt;}
.ls23{letter-spacing:11.835598pt;}
.ls24{letter-spacing:11.875823pt;}
.ls20{letter-spacing:11.954133pt;}
.ls22{letter-spacing:11.959467pt;}
.ls21{letter-spacing:11.961718pt;}
.ls1e{letter-spacing:13.194023pt;}
.ls1f{letter-spacing:13.204647pt;}
.ls11{letter-spacing:13.230333pt;}
.lsf{letter-spacing:13.278400pt;}
.ls10{letter-spacing:13.283733pt;}
.ls1d{letter-spacing:13.917762pt;}
.lsc{letter-spacing:13.923096pt;}
.ls12{letter-spacing:14.248753pt;}
.lse{letter-spacing:15.395096pt;}
.lsd{letter-spacing:15.400429pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls1a{letter-spacing:118.321790pt;}
.ls1b{letter-spacing:118.327124pt;}
.ls19{letter-spacing:164.046302pt;}
.ls16{letter-spacing:420.456969pt;}
.ls13{letter-spacing:490.398302pt;}
.ws4{word-spacing:-13.283467pt;}
.ws1{word-spacing:-12.760670pt;}
.ws8d{word-spacing:-11.955200pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.wsb3{word-spacing:-2.603559pt;}
.ws3c{word-spacing:-2.497292pt;}
.ws53{word-spacing:-2.337890pt;}
.wsd3{word-spacing:-2.295398pt;}
.ws72{word-spacing:-2.231622pt;}
.wsbf{word-spacing:-2.151936pt;}
.wsa5{word-spacing:-2.125355pt;}
.wscc{word-spacing:-2.056294pt;}
.wsd5{word-spacing:-2.008474pt;}
.wsc0{word-spacing:-1.960653pt;}
.ws86{word-spacing:-1.806551pt;}
.ws8{word-spacing:-1.696326pt;}
.ws3b{word-spacing:-1.647150pt;}
.wsa2{word-spacing:-1.540882pt;}
.ws2d{word-spacing:-1.328347pt;}
.wsb6{word-spacing:-1.275213pt;}
.ws59{word-spacing:-1.222079pt;}
.ws1d{word-spacing:-1.195520pt;}
.ws7{word-spacing:-1.175671pt;}
.wsa6{word-spacing:-1.168945pt;}
.wsd2{word-spacing:-1.147699pt;}
.wsaf{word-spacing:-1.115811pt;}
.ws2c{word-spacing:-1.062677pt;}
.wsa8{word-spacing:-1.009543pt;}
.ws70{word-spacing:-0.956410pt;}
.ws51{word-spacing:-0.850142pt;}
.wscd{word-spacing:-0.812954pt;}
.ws50{word-spacing:-0.797008pt;}
.wsa7{word-spacing:-0.690740pt;}
.wsb1{word-spacing:-0.637606pt;}
.ws49{word-spacing:-0.584473pt;}
.ws55{word-spacing:-0.531339pt;}
.wsba{word-spacing:-0.526029pt;}
.ws5c{word-spacing:-0.478205pt;}
.wsc3{word-spacing:-0.382566pt;}
.ws3d{word-spacing:-0.371937pt;}
.ws42{word-spacing:-0.318803pt;}
.wsd6{word-spacing:-0.286925pt;}
.ws5a{word-spacing:-0.265669pt;}
.ws24{word-spacing:-0.212535pt;}
.ws1f{word-spacing:-0.191283pt;}
.ws33{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.143462pt;}
.ws8e{word-spacing:-0.127522pt;}
.ws38{word-spacing:-0.106268pt;}
.ws1a{word-spacing:-0.095642pt;}
.ws5{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.047821pt;}
.ws17{word-spacing:-0.042507pt;}
.wsc{word-spacing:-0.037194pt;}
.ws6{word-spacing:-0.000007pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053134pt;}
.ws8f{word-spacing:0.085014pt;}
.ws20{word-spacing:0.095642pt;}
.ws45{word-spacing:0.106268pt;}
.ws90{word-spacing:0.127522pt;}
.ws22{word-spacing:0.143462pt;}
.ws28{word-spacing:0.159402pt;}
.ws95{word-spacing:0.170029pt;}
.wsd{word-spacing:0.185968pt;}
.ws1b{word-spacing:0.191283pt;}
.ws7d{word-spacing:0.211470pt;}
.ws4e{word-spacing:0.212535pt;}
.wsc9{word-spacing:0.239104pt;}
.ws9d{word-spacing:0.240210pt;}
.ws98{word-spacing:0.255043pt;}
.wsf{word-spacing:0.260355pt;}
.ws29{word-spacing:0.265669pt;}
.ws30{word-spacing:0.318803pt;}
.ws83{word-spacing:0.371937pt;}
.wsb5{word-spacing:0.425071pt;}
.wsab{word-spacing:0.478205pt;}
.wse1{word-spacing:0.478208pt;}
.ws91{word-spacing:0.510086pt;}
.wsc4{word-spacing:0.526029pt;}
.ws25{word-spacing:0.531339pt;}
.ws65{word-spacing:0.584473pt;}
.ws2e{word-spacing:0.637606pt;}
.ws69{word-spacing:0.662527pt;}
.wsa4{word-spacing:0.664118pt;}
.wsdf{word-spacing:0.669491pt;}
.ws6b{word-spacing:0.690740pt;}
.ws21{word-spacing:0.717312pt;}
.ws4b{word-spacing:0.743874pt;}
.ws5d{word-spacing:0.797008pt;}
.ws32{word-spacing:0.850142pt;}
.ws31{word-spacing:0.903276pt;}
.wsda{word-spacing:0.908595pt;}
.ws40{word-spacing:0.956410pt;}
.wsd7{word-spacing:1.004237pt;}
.ws41{word-spacing:1.009543pt;}
.wsad{word-spacing:1.115811pt;}
.ws82{word-spacing:1.168945pt;}
.wsa1{word-spacing:1.222079pt;}
.ws87{word-spacing:1.275213pt;}
.ws37{word-spacing:1.381481pt;}
.ws52{word-spacing:1.487748pt;}
.ws48{word-spacing:1.540882pt;}
.ws43{word-spacing:1.594016pt;}
.ws9c{word-spacing:1.657781pt;}
.ws56{word-spacing:1.700284pt;}
.ws26{word-spacing:1.753418pt;}
.wse{word-spacing:1.785293pt;}
.ws39{word-spacing:1.806551pt;}
.ws36{word-spacing:1.859685pt;}
.ws4c{word-spacing:1.912819pt;}
.wsdd{word-spacing:1.912832pt;}
.ws7e{word-spacing:1.965953pt;}
.ws58{word-spacing:2.019087pt;}
.wsaa{word-spacing:2.072221pt;}
.wsce{word-spacing:2.104115pt;}
.ws88{word-spacing:2.125355pt;}
.ws8b{word-spacing:2.178489pt;}
.ws81{word-spacing:2.284756pt;}
.ws19{word-spacing:2.295398pt;}
.ws62{word-spacing:2.497292pt;}
.wsbd{word-spacing:2.534502pt;}
.ws35{word-spacing:2.550426pt;}
.ws60{word-spacing:2.603559pt;}
.ws9e{word-spacing:2.709827pt;}
.wsa3{word-spacing:2.816095pt;}
.wsbc{word-spacing:2.821427pt;}
.wse0{word-spacing:2.860433pt;}
.wsbb{word-spacing:2.866509pt;}
.ws84{word-spacing:2.869229pt;}
.wsc8{word-spacing:2.869248pt;}
.ws54{word-spacing:2.922363pt;}
.ws5b{word-spacing:2.975497pt;}
.wsa0{word-spacing:3.081764pt;}
.ws23{word-spacing:3.188032pt;}
.wsac{word-spacing:3.241166pt;}
.ws4d{word-spacing:3.294300pt;}
.wsb8{word-spacing:3.347456pt;}
.ws5f{word-spacing:3.453701pt;}
.wsbe{word-spacing:3.634381pt;}
.ws34{word-spacing:3.719371pt;}
.ws61{word-spacing:3.825638pt;}
.wsb9{word-spacing:3.873485pt;}
.ws6a{word-spacing:4.038174pt;}
.wsae{word-spacing:4.303843pt;}
.wsa9{word-spacing:4.356977pt;}
.ws78{word-spacing:4.410111pt;}
.ws99{word-spacing:4.569513pt;}
.ws8a{word-spacing:4.675780pt;}
.ws4a{word-spacing:4.782048pt;}
.ws27{word-spacing:4.835182pt;}
.ws9f{word-spacing:4.888316pt;}
.ws85{word-spacing:4.941450pt;}
.ws46{word-spacing:4.994583pt;}
.ws89{word-spacing:5.047717pt;}
.wsc2{word-spacing:5.308109pt;}
.wsb4{word-spacing:5.313387pt;}
.ws15{word-spacing:5.393072pt;}
.ws3e{word-spacing:5.419654pt;}
.ws16{word-spacing:5.467459pt;}
.ws3f{word-spacing:5.472788pt;}
.ws5e{word-spacing:5.525922pt;}
.wsc1{word-spacing:5.642854pt;}
.ws73{word-spacing:5.685324pt;}
.ws7c{word-spacing:5.738458pt;}
.wsb0{word-spacing:5.844725pt;}
.ws18{word-spacing:6.025421pt;}
.ws44{word-spacing:6.057261pt;}
.ws47{word-spacing:6.322930pt;}
.wsb7{word-spacing:7.226206pt;}
.wsb2{word-spacing:7.385607pt;}
.ws13{word-spacing:7.699075pt;}
.ws3a{word-spacing:9.085891pt;}
.wsd4{word-spacing:9.611981pt;}
.wsa{word-spacing:11.492822pt;}
.wsd0{word-spacing:11.763917pt;}
.wsd1{word-spacing:11.811738pt;}
.wsc7{word-spacing:11.859558pt;}
.wsc5{word-spacing:11.907379pt;}
.wsc6{word-spacing:12.050842pt;}
.wsd9{word-spacing:12.146483pt;}
.wsd8{word-spacing:12.529050pt;}
.wsdb{word-spacing:12.815974pt;}
.ws67{word-spacing:13.002823pt;}
.ws63{word-spacing:13.013804pt;}
.ws2a{word-spacing:13.134725pt;}
.ws57{word-spacing:13.230333pt;}
.ws66{word-spacing:13.262829pt;}
.ws9{word-spacing:13.763148pt;}
.ws64{word-spacing:13.840558pt;}
.ws71{word-spacing:13.946930pt;}
.ws77{word-spacing:13.949452pt;}
.ws6f{word-spacing:14.243172pt;}
.ws10{word-spacing:14.348669pt;}
.ws11{word-spacing:14.356730pt;}
.wscb{word-spacing:14.776627pt;}
.ws74{word-spacing:14.877483pt;}
.wsdc{word-spacing:14.920090pt;}
.wscf{word-spacing:14.967910pt;}
.wsca{word-spacing:15.111373pt;}
.ws76{word-spacing:15.132214pt;}
.ws79{word-spacing:15.461955pt;}
.ws12{word-spacing:15.732893pt;}
.ws75{word-spacing:16.046428pt;}
.ws4f{word-spacing:16.418365pt;}
.ws7a{word-spacing:16.630900pt;}
.ws6c{word-spacing:17.427908pt;}
.ws6e{word-spacing:17.693578pt;}
.ws7f{word-spacing:18.012381pt;}
.ws68{word-spacing:18.081180pt;}
.ws6d{word-spacing:18.596853pt;}
.ws7b{word-spacing:18.964147pt;}
.ws80{word-spacing:19.181326pt;}
.wsde{word-spacing:20.993331pt;}
.ws14{word-spacing:24.399002pt;}
.ws3{word-spacing:48.878387pt;}
.ws94{word-spacing:84.164608pt;}
.ws97{word-spacing:109.079245pt;}
.ws96{word-spacing:138.341018pt;}
.ws9b{word-spacing:284.007731pt;}
.ws9a{word-spacing:312.416572pt;}
.ws92{word-spacing:314.320572pt;}
.ws8c{word-spacing:325.728572pt;}
.ws93{word-spacing:352.697267pt;}
._2{margin-left:-10.616218pt;}
._b{margin-left:-6.248558pt;}
._e{margin-left:-5.308109pt;}
._7{margin-left:-4.154850pt;}
._c{margin-left:-3.104857pt;}
._5{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._6{width:0.969929pt;}
._4{width:2.652336pt;}
._0{width:9.035708pt;}
._12{width:10.626800pt;}
._9{width:11.530016pt;}
._1f{width:12.941865pt;}
._13{width:13.995722pt;}
._d{width:15.339714pt;}
._10{width:16.258963pt;}
._1c{width:17.469543pt;}
._f{width:18.490586pt;}
._20{width:19.412496pt;}
._11{width:20.433539pt;}
._1a{width:21.752148pt;}
._8{width:23.061099pt;}
._1d{width:24.536347pt;}
._1e{width:25.929327pt;}
._16{width:28.107815pt;}
._a{width:29.011008pt;}
._1b{width:30.870777pt;}
._19{width:32.039722pt;}
._17{width:33.261801pt;}
._18{width:35.121486pt;}
._57{width:39.106526pt;}
._3{width:48.311271pt;}
._59{width:54.993920pt;}
._3c{width:95.037431pt;}
._23{width:95.928525pt;}
._4f{width:100.567142pt;}
._3d{width:114.242765pt;}
._4d{width:118.791453pt;}
._30{width:124.286259pt;}
._53{width:135.481530pt;}
._2f{width:139.918101pt;}
._54{width:141.735648pt;}
._44{width:143.558042pt;}
._50{width:154.073414pt;}
._45{width:155.561062pt;}
._4c{width:158.675021pt;}
._37{width:160.008397pt;}
._26{width:167.659725pt;}
._34{width:168.759603pt;}
._48{width:172.250522pt;}
._43{width:174.976307pt;}
._41{width:179.280179pt;}
._35{width:180.714803pt;}
._40{width:184.588288pt;}
._49{width:189.226906pt;}
._42{width:191.235379pt;}
._52{width:192.330054pt;}
._38{width:193.435136pt;}
._39{width:198.886707pt;}
._47{width:199.890944pt;}
._29{width:203.525325pt;}
._33{width:205.868544pt;}
._56{width:207.207526pt;}
._46{width:209.598566pt;}
._32{width:211.224474pt;}
._3a{width:215.863091pt;}
._36{width:217.871565pt;}
._24{width:219.990784pt;}
._2c{width:239.390925pt;}
._22{width:250.867917pt;}
._27{width:255.853713pt;}
._25{width:268.944179pt;}
._2a{width:273.787418pt;}
._2d{width:290.525082pt;}
._28{width:292.328550pt;}
._51{width:307.152998pt;}
._55{width:322.444845pt;}
._2b{width:327.237734pt;}
._14{width:328.963221pt;}
._3f{width:336.275866pt;}
._3b{width:340.531917pt;}
._31{width:378.023424pt;}
._4b{width:381.986236pt;}
._3e{width:387.252838pt;}
._21{width:391.480235pt;}
._2e{width:494.275789pt;}
._4a{width:510.869606pt;}
._4e{width:668.340006pt;}
._58{width:1763.382223pt;}
._15{width:1784.635556pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fse{font-size:44.292800pt;}
.fsa{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fsb{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.yb{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y50{bottom:28.346667pt;}
.y2{bottom:32.990462pt;}
.y155{bottom:83.888000pt;}
.ybb{bottom:87.269333pt;}
.y17c{bottom:90.854667pt;}
.y25{bottom:91.398667pt;}
.y20b{bottom:92.050667pt;}
.y4f{bottom:92.108000pt;}
.y1aa{bottom:94.044000pt;}
.y154{bottom:96.506667pt;}
.y87{bottom:97.214667pt;}
.yed{bottom:101.216000pt;}
.yba{bottom:104.006667pt;}
.y1d4{bottom:105.600000pt;}
.y11e{bottom:106.397333pt;}
.y24{bottom:107.298667pt;}
.y20a{bottom:107.393333pt;}
.y17b{bottom:107.592000pt;}
.y4e{bottom:108.844000pt;}
.y153{bottom:109.126667pt;}
.y1a9{bottom:110.780000pt;}
.y86{bottom:113.952000pt;}
.yec{bottom:117.953333pt;}
.yb9{bottom:120.744000pt;}
.y1d3{bottom:120.942667pt;}
.y152{bottom:121.745333pt;}
.y209{bottom:122.736000pt;}
.y11d{bottom:123.134667pt;}
.y23{bottom:123.200000pt;}
.y17a{bottom:124.329333pt;}
.y4d{bottom:125.581333pt;}
.y1a8{bottom:127.517333pt;}
.y85{bottom:130.689333pt;}
.y151{bottom:134.365333pt;}
.yeb{bottom:134.690667pt;}
.y1d2{bottom:136.285333pt;}
.yb8{bottom:137.480000pt;}
.y208{bottom:138.078667pt;}
.y22{bottom:139.100000pt;}
.y11c{bottom:139.872000pt;}
.y179{bottom:141.066667pt;}
.y4c{bottom:142.318667pt;}
.y1a7{bottom:144.254667pt;}
.y84{bottom:147.426667pt;}
.yea{bottom:151.428000pt;}
.y1d1{bottom:151.628000pt;}
.y207{bottom:153.421333pt;}
.yb7{bottom:154.217333pt;}
.y150{bottom:154.584000pt;}
.y21{bottom:155.000000pt;}
.y11b{bottom:156.609333pt;}
.y178{bottom:157.804000pt;}
.y4b{bottom:159.056000pt;}
.y1a6{bottom:160.992000pt;}
.y83{bottom:164.164000pt;}
.y1d0{bottom:166.970667pt;}
.ye9{bottom:168.165333pt;}
.y206{bottom:168.762667pt;}
.y14f{bottom:169.196000pt;}
.y20{bottom:170.901333pt;}
.yb6{bottom:170.954667pt;}
.y11a{bottom:173.346667pt;}
.y177{bottom:174.541333pt;}
.y4a{bottom:175.793333pt;}
.y1a5{bottom:177.729333pt;}
.y82{bottom:180.901333pt;}
.y1cf{bottom:182.313333pt;}
.y14e{bottom:183.808000pt;}
.y205{bottom:184.105333pt;}
.ye8{bottom:184.902667pt;}
.y1f{bottom:186.801333pt;}
.yb5{bottom:187.692000pt;}
.y119{bottom:190.084000pt;}
.y176{bottom:191.278667pt;}
.y49{bottom:192.530667pt;}
.y1a4{bottom:194.466667pt;}
.y81{bottom:197.638667pt;}
.y1ce{bottom:197.656000pt;}
.y14d{bottom:198.420000pt;}
.y204{bottom:199.448000pt;}
.y1e{bottom:202.701333pt;}
.y118{bottom:206.821333pt;}
.y175{bottom:208.016000pt;}
.ye7{bottom:208.281333pt;}
.yb4{bottom:208.414667pt;}
.y48{bottom:209.268000pt;}
.y1a3{bottom:211.204000pt;}
.y1cd{bottom:212.997333pt;}
.y80{bottom:214.376000pt;}
.y203{bottom:214.790667pt;}
.y14c{bottom:219.434667pt;}
.y117{bottom:223.558667pt;}
.y174{bottom:224.753333pt;}
.ye6{bottom:225.018667pt;}
.y47{bottom:226.005333pt;}
.y1a2{bottom:227.941333pt;}
.y1cc{bottom:228.340000pt;}
.y14b{bottom:229.224000pt;}
.y202{bottom:230.133333pt;}
.y7f{bottom:231.113333pt;}
.yb3{bottom:238.302667pt;}
.y116{bottom:240.296000pt;}
.y173{bottom:241.490667pt;}
.ye5{bottom:241.756000pt;}
.y46{bottom:242.742667pt;}
.y1cb{bottom:243.682667pt;}
.y1a1{bottom:244.678667pt;}
.y201{bottom:245.476000pt;}
.y7e{bottom:247.850667pt;}
.yb2{bottom:255.040000pt;}
.y115{bottom:257.033333pt;}
.y172{bottom:258.228000pt;}
.ye4{bottom:258.493333pt;}
.y1ca{bottom:259.025333pt;}
.y200{bottom:260.818667pt;}
.y45{bottom:263.465333pt;}
.y7d{bottom:264.588000pt;}
.y1a0{bottom:265.401333pt;}
.y14a{bottom:268.554667pt;}
.yb1{bottom:271.777333pt;}
.y1d{bottom:273.154667pt;}
.y114{bottom:273.769333pt;}
.y1c9{bottom:274.368000pt;}
.y171{bottom:274.965333pt;}
.ye3{bottom:275.230667pt;}
.y1ff{bottom:276.161333pt;}
.y7c{bottom:281.325333pt;}
.yb0{bottom:288.514667pt;}
.y1c{bottom:289.054667pt;}
.y1c8{bottom:289.710667pt;}
.y1fe{bottom:291.502667pt;}
.y170{bottom:291.702667pt;}
.ye2{bottom:291.968000pt;}
.y113{bottom:294.492000pt;}
.y19f{bottom:295.289333pt;}
.y149{bottom:297.062667pt;}
.y7b{bottom:298.062667pt;}
.y1b{bottom:304.954667pt;}
.y1c7{bottom:305.053333pt;}
.yaf{bottom:305.252000pt;}
.y1fd{bottom:306.845333pt;}
.y16f{bottom:308.440000pt;}
.y19e{bottom:312.026667pt;}
.y148{bottom:313.800000pt;}
.y7a{bottom:314.800000pt;}
.ye1{bottom:315.348000pt;}
.y1c6{bottom:320.396000pt;}
.y1a{bottom:320.856000pt;}
.yae{bottom:321.989333pt;}
.y1fc{bottom:322.188000pt;}
.y112{bottom:324.380000pt;}
.y16e{bottom:325.177333pt;}
.y19d{bottom:328.764000pt;}
.y44{bottom:330.265333pt;}
.y147{bottom:330.537333pt;}
.y79{bottom:331.537333pt;}
.ye0{bottom:332.085333pt;}
.y1c5{bottom:335.738667pt;}
.y1fb{bottom:337.530667pt;}
.yad{bottom:338.726667pt;}
.y111{bottom:341.117333pt;}
.y16d{bottom:341.914667pt;}
.y19c{bottom:345.501333pt;}
.y146{bottom:347.274667pt;}
.y43{bottom:347.560000pt;}
.y78{bottom:348.274667pt;}
.ydf{bottom:348.821333pt;}
.y1c4{bottom:351.080000pt;}
.y1fa{bottom:352.873333pt;}
.y19{bottom:354.688000pt;}
.yac{bottom:355.464000pt;}
.y110{bottom:357.854667pt;}
.y16c{bottom:358.652000pt;}
.y19b{bottom:362.238667pt;}
.y145{bottom:364.012000pt;}
.y77{bottom:365.012000pt;}
.yde{bottom:365.558667pt;}
.y1c3{bottom:366.422667pt;}
.y1f9{bottom:368.216000pt;}
.y18{bottom:370.589333pt;}
.yab{bottom:372.201333pt;}
.y10f{bottom:374.592000pt;}
.y16b{bottom:375.389333pt;}
.y19a{bottom:378.976000pt;}
.y42{bottom:380.796000pt;}
.y76{bottom:381.749333pt;}
.ydd{bottom:382.296000pt;}
.y1f8{bottom:383.558667pt;}
.y1c2{bottom:385.750667pt;}
.y17{bottom:386.489333pt;}
.y10e{bottom:391.329333pt;}
.y16a{bottom:392.126667pt;}
.yaa{bottom:392.924000pt;}
.y144{bottom:393.501333pt;}
.y199{bottom:395.713333pt;}
.y41{bottom:398.090667pt;}
.y75{bottom:398.486667pt;}
.y1f7{bottom:398.901333pt;}
.ydc{bottom:399.033333pt;}
.y143{bottom:406.121333pt;}
.y10d{bottom:408.066667pt;}
.y169{bottom:408.864000pt;}
.ya9{bottom:410.856000pt;}
.y198{bottom:412.450667pt;}
.y1f6{bottom:414.244000pt;}
.y74{bottom:415.224000pt;}
.y40{bottom:415.386667pt;}
.y1c1{bottom:415.638667pt;}
.y16{bottom:418.330667pt;}
.y142{bottom:418.740000pt;}
.ydb{bottom:422.413333pt;}
.y10c{bottom:424.804000pt;}
.y168{bottom:425.601333pt;}
.y197{bottom:429.188000pt;}
.y1f5{bottom:429.585333pt;}
.y141{bottom:431.360000pt;}
.y73{bottom:431.961333pt;}
.y3f{bottom:432.681333pt;}
.yda{bottom:439.150667pt;}
.y1c0{bottom:439.230667pt;}
.ya8{bottom:440.744000pt;}
.y10b{bottom:441.541333pt;}
.y167{bottom:442.338667pt;}
.y140{bottom:443.978667pt;}
.y1f4{bottom:444.928000pt;}
.y72{bottom:448.698667pt;}
.y196{bottom:449.909333pt;}
.y3e{bottom:449.976000pt;}
.y15{bottom:450.170667pt;}
.y1bf{bottom:454.852000pt;}
.yd9{bottom:455.888000pt;}
.ya7{bottom:457.481333pt;}
.y10a{bottom:458.278667pt;}
.y166{bottom:459.076000pt;}
.y1f3{bottom:460.270667pt;}
.y13f{bottom:464.198667pt;}
.y71{bottom:465.436000pt;}
.y14{bottom:466.070667pt;}
.y3d{bottom:467.272000pt;}
.yd8{bottom:472.625333pt;}
.ya5{bottom:474.218667pt;}
.y109{bottom:475.016000pt;}
.y1f2{bottom:475.613333pt;}
.y165{bottom:475.813333pt;}
.y1be{bottom:478.442667pt;}
.y13e{bottom:478.810667pt;}
.ya6{bottom:479.040000pt;}
.y195{bottom:479.797333pt;}
.y13{bottom:481.972000pt;}
.y70{bottom:482.173333pt;}
.y3c{bottom:484.566667pt;}
.yd7{bottom:489.361333pt;}
.ya4{bottom:490.956000pt;}
.y108{bottom:491.753333pt;}
.y164{bottom:492.549333pt;}
.y13d{bottom:493.422667pt;}
.y1bd{bottom:494.064000pt;}
.y194{bottom:496.534667pt;}
.y12{bottom:497.872000pt;}
.y6f{bottom:498.910667pt;}
.y3b{bottom:501.862667pt;}
.yd6{bottom:506.098667pt;}
.y1f1{bottom:506.298667pt;}
.ya3{bottom:507.693333pt;}
.y13c{bottom:508.034667pt;}
.y107{bottom:508.490667pt;}
.y163{bottom:509.286667pt;}
.y193{bottom:513.272000pt;}
.y11{bottom:513.772000pt;}
.y6e{bottom:515.648000pt;}
.y1bc{bottom:517.656000pt;}
.y3a{bottom:519.157333pt;}
.y1f0{bottom:521.641333pt;}
.ya2{bottom:524.430667pt;}
.y106{bottom:525.228000pt;}
.y162{bottom:526.024000pt;}
.y13b{bottom:529.048000pt;}
.yd5{bottom:529.478667pt;}
.y10{bottom:529.673333pt;}
.y192{bottom:530.009333pt;}
.y6d{bottom:532.384000pt;}
.y39{bottom:536.452000pt;}
.y1ef{bottom:536.984000pt;}
.ya1{bottom:541.168000pt;}
.y1bb{bottom:541.248000pt;}
.y105{bottom:541.965333pt;}
.y161{bottom:542.761333pt;}
.y13a{bottom:543.660000pt;}
.yf{bottom:545.573333pt;}
.yd4{bottom:546.216000pt;}
.y191{bottom:546.746667pt;}
.y136{bottom:548.137333pt;}
.y138{bottom:548.272000pt;}
.y139{bottom:548.448000pt;}
.y6c{bottom:549.121333pt;}
.y1ee{bottom:552.325333pt;}
.y38{bottom:553.748000pt;}
.y1ba{bottom:556.869333pt;}
.ya0{bottom:557.905333pt;}
.y104{bottom:558.702667pt;}
.y160{bottom:559.498667pt;}
.ye{bottom:561.473333pt;}
.yd3{bottom:562.953333pt;}
.y190{bottom:563.484000pt;}
.y137{bottom:564.674667pt;}
.y6b{bottom:565.858667pt;}
.y1ed{bottom:567.668000pt;}
.y37{bottom:571.042667pt;}
.y1b9{bottom:572.490667pt;}
.y9f{bottom:574.642667pt;}
.y103{bottom:575.440000pt;}
.y15f{bottom:576.236000pt;}
.yd{bottom:577.374667pt;}
.yd2{bottom:579.690667pt;}
.y18f{bottom:580.221333pt;}
.y6a{bottom:582.596000pt;}
.y1ec{bottom:583.010667pt;}
.y36{bottom:588.337333pt;}
.y9e{bottom:591.380000pt;}
.y102{bottom:592.177333pt;}
.y135{bottom:592.780000pt;}
.y15e{bottom:592.973333pt;}
.y1b8{bottom:596.082667pt;}
.yd1{bottom:596.428000pt;}
.y18e{bottom:596.958667pt;}
.ya{bottom:597.259968pt;}
.y1eb{bottom:598.353333pt;}
.y69{bottom:599.333333pt;}
.y35{bottom:605.633333pt;}
.y9d{bottom:608.117333pt;}
.y101{bottom:608.914667pt;}
.y15d{bottom:609.710667pt;}
.yd0{bottom:613.165333pt;}
.y18d{bottom:613.696000pt;}
.y68{bottom:616.070667pt;}
.y1b7{bottom:619.673333pt;}
.y34{bottom:622.928000pt;}
.y9c{bottom:624.854667pt;}
.y134{bottom:625.469333pt;}
.y100{bottom:625.652000pt;}
.y15c{bottom:626.448000pt;}
.y1ea{bottom:629.038667pt;}
.y18c{bottom:630.433333pt;}
.y67{bottom:632.808000pt;}
.y1b6{bottom:635.294667pt;}
.ycf{bottom:636.544000pt;}
.y133{bottom:638.089333pt;}
.y9b{bottom:641.592000pt;}
.yff{bottom:642.388000pt;}
.y15b{bottom:643.185333pt;}
.y1e9{bottom:644.381333pt;}
.y18b{bottom:647.170667pt;}
.y66{bottom:649.545333pt;}
.y132{bottom:650.708000pt;}
.y1b5{bottom:650.917333pt;}
.yce{bottom:653.281333pt;}
.y33{bottom:656.730667pt;}
.y9a{bottom:658.329333pt;}
.yfe{bottom:659.125333pt;}
.y1e8{bottom:659.724000pt;}
.y15a{bottom:659.922667pt;}
.y18a{bottom:663.908000pt;}
.y65{bottom:666.282667pt;}
.y1b4{bottom:666.538667pt;}
.ycd{bottom:670.018667pt;}
.y131{bottom:670.928000pt;}
.y32{bottom:674.934667pt;}
.y1e7{bottom:675.066667pt;}
.yfd{bottom:675.862667pt;}
.y159{bottom:676.660000pt;}
.y99{bottom:679.050667pt;}
.y189{bottom:680.645333pt;}
.y1b3{bottom:682.160000pt;}
.y64{bottom:683.020000pt;}
.y31{bottom:685.424000pt;}
.y130{bottom:685.540000pt;}
.ycc{bottom:686.756000pt;}
.y1e6{bottom:690.408000pt;}
.yfc{bottom:692.600000pt;}
.y158{bottom:693.397333pt;}
.y188{bottom:697.382667pt;}
.y63{bottom:699.757333pt;}
.y30{bottom:699.769333pt;}
.y12f{bottom:700.152000pt;}
.ycb{bottom:703.493333pt;}
.y2f{bottom:703.628000pt;}
.y1e5{bottom:705.750667pt;}
.y98{bottom:708.938667pt;}
.y157{bottom:710.134667pt;}
.yfb{bottom:713.322667pt;}
.y1b2{bottom:713.721333pt;}
.y2e{bottom:714.116000pt;}
.y187{bottom:714.120000pt;}
.y12e{bottom:714.764000pt;}
.y62{bottom:716.494667pt;}
.yca{bottom:720.230667pt;}
.y1e4{bottom:721.093333pt;}
.y97{bottom:725.676000pt;}
.y156{bottom:726.872000pt;}
.y1b1{bottom:730.458667pt;}
.y186{bottom:730.857333pt;}
.y2d{bottom:732.320000pt;}
.y61{bottom:733.232000pt;}
.y12d{bottom:735.777333pt;}
.y1e3{bottom:736.436000pt;}
.y96{bottom:742.413333pt;}
.yfa{bottom:743.210667pt;}
.yc9{bottom:743.609333pt;}
.y12c{bottom:745.568000pt;}
.y2c{bottom:746.666667pt;}
.y1b0{bottom:747.196000pt;}
.y185{bottom:747.594667pt;}
.y60{bottom:749.969333pt;}
.y1e2{bottom:751.778667pt;}
.y95{bottom:759.150667pt;}
.yf9{bottom:759.948000pt;}
.yc8{bottom:760.346667pt;}
.y2b{bottom:761.012000pt;}
.y1af{bottom:763.933333pt;}
.y184{bottom:764.332000pt;}
.y5f{bottom:766.706667pt;}
.y1e1{bottom:767.121333pt;}
.y2a{bottom:771.501333pt;}
.y94{bottom:775.888000pt;}
.yf8{bottom:776.685333pt;}
.yc7{bottom:777.084000pt;}
.y1ae{bottom:780.670667pt;}
.y183{bottom:781.069333pt;}
.y1e0{bottom:782.464000pt;}
.y5e{bottom:783.444000pt;}
.y12b{bottom:784.898667pt;}
.y29{bottom:789.705333pt;}
.y93{bottom:792.625333pt;}
.yf7{bottom:793.422667pt;}
.yc6{bottom:793.821333pt;}
.y1ad{bottom:797.408000pt;}
.y182{bottom:797.806667pt;}
.y5d{bottom:800.181333pt;}
.y28{bottom:800.193333pt;}
.y92{bottom:809.362667pt;}
.yc5{bottom:810.558667pt;}
.y1df{bottom:813.149333pt;}
.yf6{bottom:814.145333pt;}
.y181{bottom:814.544000pt;}
.y5c{bottom:816.918667pt;}
.y12a{bottom:817.588000pt;}
.y27{bottom:818.397333pt;}
.y91{bottom:826.100000pt;}
.yc4{bottom:827.296000pt;}
.y1de{bottom:828.490667pt;}
.y129{bottom:830.206667pt;}
.yf5{bottom:830.882667pt;}
.y180{bottom:831.281333pt;}
.y26{bottom:832.744000pt;}
.y5b{bottom:833.656000pt;}
.y128{bottom:842.826667pt;}
.y90{bottom:842.837333pt;}
.y1dd{bottom:843.833333pt;}
.yc3{bottom:844.033333pt;}
.yf4{bottom:847.620000pt;}
.y17f{bottom:848.018667pt;}
.y5a{bottom:850.393333pt;}
.y127{bottom:855.445333pt;}
.y1dc{bottom:859.176000pt;}
.y8f{bottom:859.574667pt;}
.yc2{bottom:860.770667pt;}
.y1ac{bottom:864.357333pt;}
.y17e{bottom:864.754667pt;}
.y59{bottom:867.130667pt;}
.y9{bottom:867.976000pt;}
.yf3{bottom:868.341333pt;}
.y1db{bottom:874.518667pt;}
.y126{bottom:875.665333pt;}
.y8e{bottom:876.312000pt;}
.yc1{bottom:877.508000pt;}
.y17d{bottom:881.492000pt;}
.y58{bottom:883.868000pt;}
.y8{bottom:884.713333pt;}
.y1ab{bottom:885.078667pt;}
.y1da{bottom:889.861333pt;}
.y125{bottom:890.277333pt;}
.y8d{bottom:893.049333pt;}
.yc0{bottom:894.245333pt;}
.yf2{bottom:898.229333pt;}
.y57{bottom:900.605333pt;}
.y124{bottom:904.889333pt;}
.y1d9{bottom:905.204000pt;}
.y8c{bottom:909.786667pt;}
.ybf{bottom:910.982667pt;}
.yf1{bottom:914.966667pt;}
.y56{bottom:917.342667pt;}
.y123{bottom:919.501333pt;}
.y1d8{bottom:920.546667pt;}
.y7{bottom:925.510667pt;}
.y8b{bottom:926.524000pt;}
.ybe{bottom:927.720000pt;}
.yf0{bottom:931.704000pt;}
.y55{bottom:934.080000pt;}
.y1d7{bottom:935.889333pt;}
.y121{bottom:940.514667pt;}
.y8a{bottom:943.261333pt;}
.ybd{bottom:944.456000pt;}
.y120{bottom:947.820000pt;}
.yef{bottom:948.441333pt;}
.y6{bottom:950.616000pt;}
.y54{bottom:950.817333pt;}
.y1d6{bottom:951.230667pt;}
.y122{bottom:955.126667pt;}
.ybc{bottom:961.193333pt;}
.y89{bottom:963.984000pt;}
.yee{bottom:965.178667pt;}
.y1d5{bottom:966.573333pt;}
.y53{bottom:967.554667pt;}
.y5{bottom:975.722667pt;}
.y88{bottom:981.916000pt;}
.y11f{bottom:983.233333pt;}
.y52{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y51{bottom:1043.020000pt;}
.h8{height:22.673858pt;}
.hd{height:23.209028pt;}
.he{height:23.379740pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h17{height:29.397999pt;}
.ha{height:29.433775pt;}
.h1a{height:29.499005pt;}
.h9{height:30.399505pt;}
.hf{height:30.945242pt;}
.h15{height:31.157778pt;}
.h11{height:34.574438pt;}
.h12{height:34.813542pt;}
.h3{height:35.024664pt;}
.h1c{height:35.052646pt;}
.h4{height:36.445809pt;}
.h16{height:36.873667pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.h10{height:38.809074pt;}
.h5{height:38.947124pt;}
.h1d{height:43.660390pt;}
.h2{height:45.272024pt;}
.h7{height:48.481423pt;}
.h18{height:63.801105pt;}
.h6{height:69.148877pt;}
.h1b{height:79.470438pt;}
.h19{height:93.022438pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:52.456952pt;}
.x67{left:63.514667pt;}
.x6f{left:65.821333pt;}
.x70{left:67.185333pt;}
.x5d{left:68.314667pt;}
.x78{left:69.433333pt;}
.x60{left:70.622667pt;}
.x61{left:71.985333pt;}
.x79{left:73.677333pt;}
.x5f{left:75.069333pt;}
.x56{left:76.346667pt;}
.x7c{left:79.470667pt;}
.x76{left:86.528000pt;}
.x4d{left:92.204000pt;}
.x53{left:94.278667pt;}
.x54{left:95.641333pt;}
.x52{left:98.725333pt;}
.x55{left:99.885333pt;}
.x73{left:110.485333pt;}
.x7d{left:113.349333pt;}
.x6d{left:140.696000pt;}
.x66{left:145.154667pt;}
.x5e{left:150.362667pt;}
.x6c{left:154.905333pt;}
.x77{left:155.920000pt;}
.x59{left:160.982667pt;}
.x4c{left:165.844000pt;}
.x68{left:169.797333pt;}
.x5a{left:172.569333pt;}
.x5c{left:177.368000pt;}
.x63{left:209.762667pt;}
.x4e{left:218.964000pt;}
.x4b{left:221.026667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x5{left:241.085333pt;}
.x36{left:249.010667pt;}
.x9{left:251.365333pt;}
.x48{left:253.769333pt;}
.x37{left:262.980000pt;}
.x2e{left:267.237333pt;}
.x9c{left:276.182667pt;}
.x6e{left:277.149333pt;}
.x7{left:278.260000pt;}
.x2f{left:280.521333pt;}
.x8{left:285.513333pt;}
.x98{left:289.584000pt;}
.x99{left:294.096000pt;}
.xc{left:297.502667pt;}
.x38{left:302.404000pt;}
.xd{left:304.145333pt;}
.x12{left:307.601333pt;}
.x39{left:309.045333pt;}
.x33{left:310.881333pt;}
.x3a{left:312.413333pt;}
.x13{left:314.242667pt;}
.x97{left:318.869333pt;}
.x3b{left:325.696000pt;}
.x3c{left:328.708000pt;}
.x81{left:331.745333pt;}
.x8b{left:334.440000pt;}
.x3d{left:342.724000pt;}
.x82{left:345.028000pt;}
.x62{left:346.913333pt;}
.x1c{left:351.080000pt;}
.x3e{left:354.724000pt;}
.x50{left:358.504000pt;}
.x1d{left:364.364000pt;}
.x3f{left:368.008000pt;}
.x4f{left:369.288000pt;}
.x40{left:371.265333pt;}
.x42{left:378.674667pt;}
.x41{left:384.549333pt;}
.xa2{left:386.433333pt;}
.x1e{left:389.257333pt;}
.x1f{left:402.541333pt;}
.x30{left:404.336000pt;}
.x20{left:405.849333pt;}
.x71{left:416.589333pt;}
.x31{left:417.618667pt;}
.x21{left:419.132000pt;}
.x72{left:428.036000pt;}
.xe{left:431.184000pt;}
.x69{left:435.553333pt;}
.xf{left:437.825333pt;}
.xa1{left:439.422667pt;}
.x2a{left:451.566667pt;}
.x2b{left:464.849333pt;}
.x7a{left:466.984000pt;}
.x8d{left:470.328000pt;}
.x57{left:473.392000pt;}
.x7b{left:478.857333pt;}
.x8e{left:481.253333pt;}
.x58{left:484.793333pt;}
.x92{left:497.402667pt;}
.x9d{left:498.660000pt;}
.x24{left:500.104000pt;}
.x74{left:504.933333pt;}
.x6a{left:510.962667pt;}
.x9e{left:511.942667pt;}
.x25{left:513.388000pt;}
.x9f{left:515.330667pt;}
.x75{left:516.325333pt;}
.x8f{left:525.873333pt;}
.xa0{left:528.614667pt;}
.x43{left:531.592000pt;}
.xa{left:532.945333pt;}
.x90{left:536.798667pt;}
.x95{left:538.026667pt;}
.xb{left:539.588000pt;}
.x44{left:544.876000pt;}
.x96{left:551.310667pt;}
.x45{left:563.188000pt;}
.x7e{left:568.498667pt;}
.x9a{left:573.516000pt;}
.x46{left:576.472000pt;}
.x2c{left:579.653333pt;}
.x5b{left:582.046667pt;}
.x9b{left:583.412000pt;}
.x94{left:585.150667pt;}
.x14{left:592.045333pt;}
.x2d{left:592.937333pt;}
.x28{left:597.493333pt;}
.x15{left:598.688000pt;}
.x6b{left:602.497333pt;}
.x91{left:605.665333pt;}
.x83{left:608.050667pt;}
.x29{left:610.777333pt;}
.x1a{left:612.012000pt;}
.x86{left:614.080000pt;}
.xa5{left:617.142667pt;}
.x26{left:619.748000pt;}
.x87{left:623.582667pt;}
.xa7{left:626.108000pt;}
.x16{left:629.798667pt;}
.x27{left:633.030667pt;}
.x88{left:636.466667pt;}
.x51{left:637.584000pt;}
.x34{left:641.304000pt;}
.x17{left:643.081333pt;}
.x18{left:645.885333pt;}
.x89{left:647.760000pt;}
.x35{left:655.289333pt;}
.x19{left:659.169333pt;}
.x22{left:662.114667pt;}
.x85{left:664.113333pt;}
.xa8{left:666.118667pt;}
.x64{left:668.394667pt;}
.x47{left:673.013333pt;}
.x23{left:675.398667pt;}
.x65{left:679.786667pt;}
.x8c{left:690.426667pt;}
.x49{left:692.477333pt;}
.x84{left:695.997333pt;}
.x93{left:702.649333pt;}
.x4a{left:707.102667pt;}
.x7f{left:710.548000pt;}
.xa3{left:720.346667pt;}
.x80{left:723.832000pt;}
.xa6{left:726.084000pt;}
.x32{left:726.989333pt;}
.x1b{left:727.905333pt;}
.x10{left:733.794667pt;}
.x11{left:740.436000pt;}
.x8a{left:741.354667pt;}
.xa4{left:744.257333pt;}
}




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