
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d2832a1f7a8bbda08cf3e6e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_d044df00b6806c8e9d49c8ad.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_39849ea95048336042447fec.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cc459b95ef868147658e68c5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ebfbba807fda0bd42dcdf82e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e50b5b69a5683adca38f8409.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_3333f0f2843b3419eeaadcd0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9ca3003db217a42e5bcf4cc8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{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);}
.m1d{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);}
.m8{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);}
.m5{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);}
.mf{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);}
.m22{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);}
.m10{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);}
.m1b{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);}
.m24{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);}
.m13{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);}
.m1{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);}
.m16{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);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m17{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);}
.mc{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);}
.m1e{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);}
.m20{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);}
.m21{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);}
.m25{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m29{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);}
.m19{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);}
.m12{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);}
.m1c{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);}
.m4{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);}
.m28{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);}
.mb{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);}
.m2{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);}
.m3{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);}
.m15{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);}
.m27{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);}
.m6{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);}
.me{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;}
.v8{vertical-align:1.776000px;}
.v6{vertical-align:17.358000px;}
.va{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v7{vertical-align:26.262000px;}
.v3{vertical-align:28.392000px;}
.v9{vertical-align:32.490000px;}
.v5{vertical-align:45.756000px;}
.v4{vertical-align:56.790000px;}
.lse{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000178px;}
.ls26{letter-spacing:0.000196px;}
.ls2b{letter-spacing:0.000422px;}
.ls1a{letter-spacing:0.000566px;}
.ls18{letter-spacing:0.000689px;}
.ls28{letter-spacing:0.000741px;}
.ls20{letter-spacing:0.000800px;}
.ls2e{letter-spacing:0.001036px;}
.ls13{letter-spacing:0.001133px;}
.ls1f{letter-spacing:0.001155px;}
.ls25{letter-spacing:0.001188px;}
.ls7{letter-spacing:0.001195px;}
.ls29{letter-spacing:0.001565px;}
.ls8{letter-spacing:0.001716px;}
.ls27{letter-spacing:0.001746px;}
.lsa{letter-spacing:0.001933px;}
.ls5{letter-spacing:0.001952px;}
.ls2d{letter-spacing:0.002045px;}
.ls1e{letter-spacing:0.002293px;}
.ls19{letter-spacing:0.002422px;}
.ls24{letter-spacing:0.002841px;}
.ls30{letter-spacing:0.003070px;}
.ls23{letter-spacing:0.003306px;}
.ls9{letter-spacing:0.004124px;}
.lsf{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls3{letter-spacing:10.461300px;}
.lsd{letter-spacing:11.954850px;}
.ls16{letter-spacing:11.955746px;}
.ls2f{letter-spacing:13.215750px;}
.ls1b{letter-spacing:13.448400px;}
.ls14{letter-spacing:13.450090px;}
.ls21{letter-spacing:13.454400px;}
.ls1c{letter-spacing:13.460220px;}
.ls1d{letter-spacing:13.595901px;}
.ls15{letter-spacing:14.633854px;}
.ls10{letter-spacing:14.943900px;}
.ls12{letter-spacing:14.944200px;}
.ls11{letter-spacing:15.663483px;}
.ls22{letter-spacing:15.809224px;}
.lsc{letter-spacing:15.947859px;}
.ls2a{letter-spacing:16.437797px;}
.ls2c{letter-spacing:16.441831px;}
.ls4{letter-spacing:62.761200px;}
.lsb{letter-spacing:64.321654px;}
.ls17{letter-spacing:143.036323px;}
.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;}
}
.ws5c{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.ws63{word-spacing:-13.449600px;}
.ws14{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.ws4e{word-spacing:-2.929004px;}
.ws7a{word-spacing:-2.689902px;}
.ws22{word-spacing:-2.570351px;}
.ws65{word-spacing:-2.510575px;}
.ws50{word-spacing:-2.450800px;}
.ws51{word-spacing:-2.391024px;}
.ws29{word-spacing:-2.271473px;}
.wsbd{word-spacing:-2.151936px;}
.ws86{word-spacing:-2.151922px;}
.ws5a{word-spacing:-2.092146px;}
.ws83{word-spacing:-1.972595px;}
.ws6{word-spacing:-1.908367px;}
.ws49{word-spacing:-1.793268px;}
.ws7b{word-spacing:-1.613941px;}
.ws3e{word-spacing:-1.374839px;}
.ws5{word-spacing:-1.322630px;}
.ws8f{word-spacing:-1.022170px;}
.ws81{word-spacing:-1.016185px;}
.ws82{word-spacing:-0.777083px;}
.ws91{word-spacing:-0.753178px;}
.wsba{word-spacing:-0.645581px;}
.wsac{word-spacing:-0.537984px;}
.wsab{word-spacing:-0.496679px;}
.ws74{word-spacing:-0.478205px;}
.ws48{word-spacing:-0.418429px;}
.wsad{word-spacing:-0.376589px;}
.ws3a{word-spacing:-0.358654px;}
.ws19{word-spacing:-0.322790px;}
.ws46{word-spacing:-0.298878px;}
.ws9f{word-spacing:-0.268992px;}
.ws37{word-spacing:-0.239102px;}
.ws18{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.ws98{word-spacing:-0.161395px;}
.ws45{word-spacing:-0.119551px;}
.ws99{word-spacing:-0.107597px;}
.ws4{word-spacing:-0.059776px;}
.ws90{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.047821px;}
.ws9e{word-spacing:-0.028886px;}
.wsa8{word-spacing:-0.028186px;}
.wsa7{word-spacing:-0.024298px;}
.ws97{word-spacing:-0.006998px;}
.wsae{word-spacing:-0.005021px;}
.wsb1{word-spacing:-0.004608px;}
.ws8{word-spacing:-0.003743px;}
.ws1{word-spacing:-0.002434px;}
.wsa4{word-spacing:-0.000422px;}
.ws69{word-spacing:-0.000153px;}
.ws0{word-spacing:0.000000px;}
.ws2c{word-spacing:0.000629px;}
.ws16{word-spacing:0.047821px;}
.ws8a{word-spacing:0.053798px;}
.ws3c{word-spacing:0.059776px;}
.ws70{word-spacing:0.095641px;}
.ws66{word-spacing:0.107597px;}
.ws2e{word-spacing:0.119551px;}
.ws71{word-spacing:0.143462px;}
.ws9c{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.ws92{word-spacing:0.191282px;}
.wsa{word-spacing:0.209214px;}
.ws9a{word-spacing:0.215194px;}
.ws36{word-spacing:0.239102px;}
.ws1a{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws4c{word-spacing:0.298878px;}
.ws8b{word-spacing:0.322790px;}
.ws3b{word-spacing:0.358654px;}
.wsb5{word-spacing:0.376589px;}
.wsb6{word-spacing:0.430387px;}
.ws78{word-spacing:0.478205px;}
.wsbe{word-spacing:0.484186px;}
.wsb4{word-spacing:0.591782px;}
.ws1e{word-spacing:0.699379px;}
.ws44{word-spacing:0.717307px;}
.wsaf{word-spacing:0.753178px;}
.ws6f{word-spacing:0.765130px;}
.ws33{word-spacing:0.777083px;}
.ws1b{word-spacing:0.806976px;}
.ws34{word-spacing:0.836858px;}
.wsa6{word-spacing:0.968371px;}
.ws25{word-spacing:1.016185px;}
.wsb2{word-spacing:1.129766px;}
.ws30{word-spacing:1.135736px;}
.ws2f{word-spacing:1.255288px;}
.wsa5{word-spacing:1.291162px;}
.ws47{word-spacing:1.315063px;}
.ws40{word-spacing:1.434614px;}
.wsa1{word-spacing:1.452557px;}
.wsb3{word-spacing:1.506355px;}
.ws79{word-spacing:1.554166px;}
.wsbf{word-spacing:1.560154px;}
.ws2b{word-spacing:1.673717px;}
.ws80{word-spacing:1.793268px;}
.wsa9{word-spacing:1.829146px;}
.ws7f{word-spacing:1.853044px;}
.wsb{word-spacing:2.008454px;}
.ws72{word-spacing:2.092146px;}
.ws73{word-spacing:2.151922px;}
.wsbb{word-spacing:2.205734px;}
.ws27{word-spacing:2.211697px;}
.ws7d{word-spacing:2.271473px;}
.wsaa{word-spacing:2.367130px;}
.ws2a{word-spacing:2.391024px;}
.ws1c{word-spacing:2.474726px;}
.wsb8{word-spacing:2.528525px;}
.ws4b{word-spacing:2.570351px;}
.ws75{word-spacing:2.630126px;}
.ws4f{word-spacing:2.869229px;}
.ws17{word-spacing:2.869236px;}
.wsa3{word-spacing:2.905114px;}
.ws8d{word-spacing:3.120307px;}
.ws85{word-spacing:3.168107px;}
.ws20{word-spacing:3.219667px;}
.ws8e{word-spacing:3.222576px;}
.wsa2{word-spacing:3.223795px;}
.ws8c{word-spacing:3.224822px;}
.ws96{word-spacing:3.225994px;}
.wsa0{word-spacing:3.227021px;}
.ws3d{word-spacing:3.227882px;}
.ws9b{word-spacing:3.227904px;}
.ws88{word-spacing:3.287658px;}
.wsb0{word-spacing:3.380259px;}
.ws9d{word-spacing:3.389299px;}
.ws5f{word-spacing:3.443098px;}
.wsbc{word-spacing:3.496896px;}
.ws39{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws23{word-spacing:3.765863px;}
.ws5e{word-spacing:3.765888px;}
.ws84{word-spacing:3.825638px;}
.ws4a{word-spacing:3.885414px;}
.ws38{word-spacing:4.004965px;}
.ws53{word-spacing:4.064741px;}
.ws1f{word-spacing:4.088678px;}
.ws77{word-spacing:4.303843px;}
.ws87{word-spacing:4.363619px;}
.ws5b{word-spacing:4.423394px;}
.ws41{word-spacing:4.602721px;}
.ws7e{word-spacing:4.722272px;}
.ws1d{word-spacing:4.734259px;}
.ws57{word-spacing:4.782048px;}
.ws95{word-spacing:5.003251px;}
.ws89{word-spacing:5.080926px;}
.ws76{word-spacing:5.140702px;}
.ws58{word-spacing:5.320028px;}
.ws5d{word-spacing:5.379804px;}
.ws59{word-spacing:5.499355px;}
.ws35{word-spacing:6.037336px;}
.ws12{word-spacing:6.067206px;}
.ws55{word-spacing:6.097111px;}
.ws13{word-spacing:6.150892px;}
.ws4d{word-spacing:6.216662px;}
.ws6e{word-spacing:6.360140px;}
.ws24{word-spacing:6.455765px;}
.ws43{word-spacing:6.993745px;}
.ws3f{word-spacing:7.950155px;}
.ws31{word-spacing:8.009930px;}
.ws28{word-spacing:8.368584px;}
.wsb9{word-spacing:8.446349px;}
.ws10{word-spacing:8.661460px;}
.ws42{word-spacing:9.324994px;}
.wsb7{word-spacing:11.216858px;}
.ws7{word-spacing:15.483541px;}
.ws7c{word-spacing:15.780758px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.ws54{word-spacing:16.199188px;}
.wsf{word-spacing:17.699504px;}
.ws56{word-spacing:22.415850px;}
.ws11{word-spacing:27.448877px;}
.ws32{word-spacing:28.154308px;}
.ws68{word-spacing:104.009805px;}
.ws6a{word-spacing:108.026735px;}
.ws67{word-spacing:145.864917px;}
.ws60{word-spacing:171.132710px;}
.ws94{word-spacing:172.346640px;}
.ws6c{word-spacing:174.678584px;}
.ws62{word-spacing:198.031910px;}
.ws64{word-spacing:208.630195px;}
.ws61{word-spacing:224.931110px;}
.ws6b{word-spacing:225.875933px;}
.ws6d{word-spacing:255.283827px;}
.ws93{word-spacing:842.445241px;}
.ws52{word-spacing:941.418202px;}
._13{margin-left:-7.344832px;}
._0{margin-left:-5.917824px;}
._a{margin-left:-4.399495px;}
._4{margin-left:-3.320502px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._1{width:2.283520px;}
._2{width:3.667758px;}
._b{width:11.094379px;}
._8{width:12.971268px;}
._14{width:14.822586px;}
._c{width:16.462310px;}
._18{width:17.760920px;}
._e{width:18.801257px;}
._f{width:20.590864px;}
._11{width:22.116972px;}
._1a{width:23.312484px;}
._d{width:24.787449px;}
._7{width:25.946136px;}
._19{width:27.922772px;}
._1c{width:28.955542px;}
._10{width:30.306229px;}
._26{width:31.561517px;}
._9{width:32.637384px;}
._5d{width:33.840557px;}
._17{width:37.486868px;}
._12{width:44.233944px;}
._1b{width:47.816954px;}
._3{width:55.152083px;}
._75{width:61.868160px;}
._74{width:88.767360px;}
._71{width:116.062781px;}
._4b{width:119.941534px;}
._73{width:122.122368px;}
._47{width:131.889215px;}
._6e{width:134.165539px;}
._6f{width:137.185920px;}
._41{width:139.923076px;}
._50{width:143.892185px;}
._40{width:152.822707px;}
._46{width:154.241611px;}
._4f{width:155.847335px;}
._43{width:163.191754px;}
._4a{width:164.981070px;}
._4c{width:167.535516px;}
._64{width:170.097874px;}
._2f{width:171.670694px;}
._4e{width:177.414426px;}
._2a{width:180.063245px;}
._66{width:183.200719px;}
._2d{width:184.636109px;}
._59{width:189.417397px;}
._4d{width:190.759078px;}
._51{width:191.904068px;}
._28{width:196.525555px;}
._2c{width:197.978112px;}
._42{width:199.391726px;}
._55{width:202.711523px;}
._36{width:204.272525px;}
._3d{width:205.725082px;}
._29{width:207.016243px;}
._56{width:208.046648px;}
._31{width:211.535309px;}
._5b{width:213.279876px;}
._2e{width:216.371311px;}
._52{width:218.444501px;}
._25{width:219.820262px;}
._3e{width:222.133594px;}
._30{width:224.877312px;}
._6b{width:227.409024px;}
._38{width:229.820911px;}
._54{width:231.260422px;}
._58{width:232.551578px;}
._5a{width:234.472314px;}
._33{width:238.434509px;}
._45{width:240.585439px;}
._48{width:243.311213px;}
._57{width:249.193147px;}
._2b{width:251.561318px;}
._34{width:252.852480px;}
._27{width:255.165811px;}
._53{width:258.698584px;}
._32{width:261.352627px;}
._3b{width:265.010918px;}
._3a{width:266.302080px;}
._44{width:268.751772px;}
._39{width:275.280559px;}
._49{width:280.228716px;}
._61{width:287.449627px;}
._70{width:299.280499px;}
._3c{width:301.540032px;}
._5c{width:304.617222px;}
._72{width:313.806067px;}
._35{width:314.864208px;}
._37{width:318.319279px;}
._20{width:343.502784px;}
._6d{width:348.816852px;}
._6a{width:362.601216px;}
._67{width:363.866945px;}
._63{width:385.816601px;}
._1e{width:401.174669px;}
._62{width:403.127658px;}
._5e{width:423.355772px;}
._60{width:425.746802px;}
._65{width:444.626388px;}
._22{width:450.764820px;}
._6c{width:454.958064px;}
._69{width:462.558643px;}
._3f{width:529.392490px;}
._24{width:586.617754px;}
._68{width:642.975822px;}
._5f{width:666.953908px;}
._21{width:670.112870px;}
._23{width:698.357030px;}
._1f{width:840.008218px;}
._1d{width:864.540288px;}
._15{width:897.592662px;}
._76{width:2487.860700px;}
._16{width:2511.770700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:14.814771px;}
.y4c{bottom:31.890000px;}
.yb5{bottom:88.993500px;}
.y22{bottom:102.823500px;}
.y81{bottom:107.125500px;}
.yb4{bottom:107.823000px;}
.y4b{bottom:112.459500px;}
.y177{bottom:114.160500px;}
.y1ac{bottom:117.804000px;}
.y21{bottom:120.711000px;}
.y1e2{bottom:120.817500px;}
.y14d{bottom:125.524500px;}
.y80{bottom:125.955000px;}
.yb3{bottom:126.652500px;}
.y175{bottom:128.358000px;}
.y4a{bottom:131.289000px;}
.y1ab{bottom:135.064500px;}
.y1e1{bottom:138.078000px;}
.y20{bottom:138.600000px;}
.y176{bottom:142.554000px;}
.y125{bottom:142.948500px;}
.y14c{bottom:144.354000px;}
.y7f{bottom:144.784500px;}
.yb2{bottom:145.482000px;}
.y49{bottom:150.118500px;}
.y1aa{bottom:152.325000px;}
.y1e0{bottom:155.338500px;}
.y1f{bottom:156.487500px;}
.yec{bottom:157.654500px;}
.y124{bottom:161.778000px;}
.y14b{bottom:163.183500px;}
.y174{bottom:163.953000px;}
.yb1{bottom:164.311500px;}
.y7e{bottom:168.097500px;}
.y48{bottom:168.948000px;}
.y1a9{bottom:169.584000px;}
.y173{bottom:171.052500px;}
.y1df{bottom:172.599000px;}
.y1e{bottom:174.375000px;}
.yeb{bottom:176.484000px;}
.y123{bottom:180.607500px;}
.y14a{bottom:182.013000px;}
.yb0{bottom:183.141000px;}
.y1a8{bottom:186.844500px;}
.y47{bottom:187.777500px;}
.y1de{bottom:189.858000px;}
.y1d{bottom:192.264000px;}
.yea{bottom:195.313500px;}
.y122{bottom:199.437000px;}
.y170{bottom:199.549500px;}
.y149{bottom:200.842500px;}
.y7d{bottom:201.721500px;}
.yaf{bottom:201.970500px;}
.y1a7{bottom:204.105000px;}
.y46{bottom:206.607000px;}
.y172{bottom:206.647500px;}
.y1dd{bottom:207.118500px;}
.y1c{bottom:210.151500px;}
.y16e{bottom:213.747000px;}
.ye9{bottom:214.143000px;}
.y121{bottom:218.266500px;}
.y148{bottom:219.672000px;}
.y7c{bottom:220.551000px;}
.yae{bottom:220.800000px;}
.y171{bottom:220.845000px;}
.y1a6{bottom:221.365500px;}
.y1dc{bottom:224.379000px;}
.y45{bottom:225.435000px;}
.y16f{bottom:227.943000px;}
.y1b{bottom:228.039000px;}
.ye8{bottom:232.972500px;}
.y120{bottom:237.096000px;}
.y147{bottom:238.501500px;}
.y1a5{bottom:238.626000px;}
.y7b{bottom:239.380500px;}
.yad{bottom:239.629500px;}
.y1db{bottom:241.639500px;}
.y44{bottom:244.264500px;}
.y16d{bottom:249.342000px;}
.y1a4{bottom:255.886500px;}
.y11f{bottom:255.925500px;}
.y146{bottom:257.331000px;}
.y7a{bottom:258.210000px;}
.y1da{bottom:258.900000px;}
.yac{bottom:262.942500px;}
.y43{bottom:263.094000px;}
.y16b{bottom:263.539500px;}
.ye7{bottom:273.105000px;}
.y1a3{bottom:273.147000px;}
.y11e{bottom:274.755000px;}
.y145{bottom:276.160500px;}
.y79{bottom:277.039500px;}
.y16c{bottom:277.735500px;}
.y42{bottom:281.923500px;}
.y1a2{bottom:290.407500px;}
.ye6{bottom:291.949500px;}
.y1d9{bottom:293.421000px;}
.y11d{bottom:293.584500px;}
.y144{bottom:294.990000px;}
.y78{bottom:295.869000px;}
.yab{bottom:296.566500px;}
.y16a{bottom:299.134500px;}
.y41{bottom:300.753000px;}
.y1a{bottom:307.299000px;}
.y1a1{bottom:307.668000px;}
.ye5{bottom:308.388000px;}
.y1d8{bottom:310.681500px;}
.y11c{bottom:312.414000px;}
.y168{bottom:313.332000px;}
.y143{bottom:313.819500px;}
.y77{bottom:314.698500px;}
.yaa{bottom:315.396000px;}
.y40{bottom:319.582500px;}
.ye4{bottom:324.826500px;}
.y1a0{bottom:324.927000px;}
.y19{bottom:325.186500px;}
.y169{bottom:327.528000px;}
.y1d7{bottom:327.940500px;}
.y11b{bottom:331.242000px;}
.y142{bottom:332.649000px;}
.y76{bottom:333.528000px;}
.ya9{bottom:334.224000px;}
.y3f{bottom:338.412000px;}
.ye3{bottom:341.265000px;}
.yde{bottom:341.301000px;}
.y19f{bottom:342.187500px;}
.y18{bottom:343.074000px;}
.y1d6{bottom:345.201000px;}
.y167{bottom:348.927000px;}
.y11a{bottom:350.071500px;}
.y141{bottom:351.478500px;}
.y75{bottom:352.356000px;}
.ya8{bottom:353.053500px;}
.y3e{bottom:357.241500px;}
.ye2{bottom:357.702000px;}
.ydd{bottom:357.739500px;}
.y19e{bottom:359.448000px;}
.y17{bottom:360.963000px;}
.y1d5{bottom:362.461500px;}
.y119{bottom:368.901000px;}
.y140{bottom:370.308000px;}
.y74{bottom:371.185500px;}
.ya7{bottom:371.883000px;}
.ye1{bottom:374.140500px;}
.y3d{bottom:376.071000px;}
.y19d{bottom:376.708500px;}
.y166{bottom:378.978000px;}
.y1d4{bottom:379.722000px;}
.y118{bottom:387.730500px;}
.y13f{bottom:389.137500px;}
.y73{bottom:390.015000px;}
.ye0{bottom:390.579000px;}
.ya6{bottom:390.712500px;}
.y19c{bottom:393.969000px;}
.y3c{bottom:394.900500px;}
.y1d3{bottom:396.982500px;}
.y16{bottom:399.024000px;}
.y117{bottom:406.560000px;}
.ydf{bottom:407.017500px;}
.y13e{bottom:407.967000px;}
.y72{bottom:408.844500px;}
.ya5{bottom:409.542000px;}
.y165{bottom:410.746500px;}
.y19b{bottom:411.229500px;}
.y1d2{bottom:414.243000px;}
.y15{bottom:416.913000px;}
.y3b{bottom:418.213500px;}
.y116{bottom:425.389500px;}
.y13d{bottom:426.796500px;}
.y71{bottom:427.674000px;}
.ya4{bottom:428.371500px;}
.y19a{bottom:428.490000px;}
.ydc{bottom:430.659000px;}
.y1d1{bottom:431.503500px;}
.y14{bottom:434.800500px;}
.y115{bottom:444.219000px;}
.y13c{bottom:445.626000px;}
.y199{bottom:445.750500px;}
.y70{bottom:446.503500px;}
.ydb{bottom:447.096000px;}
.ya3{bottom:447.201000px;}
.y164{bottom:447.508500px;}
.y1d0{bottom:448.764000px;}
.y198{bottom:463.009500px;}
.y114{bottom:463.048500px;}
.yda{bottom:463.534500px;}
.y13b{bottom:464.454000px;}
.y163{bottom:465.082500px;}
.y6f{bottom:465.333000px;}
.y1cf{bottom:466.024500px;}
.ya2{bottom:466.030500px;}
.y13{bottom:470.622000px;}
.yd9{bottom:479.973000px;}
.yd4{bottom:480.009000px;}
.y197{bottom:480.270000px;}
.y113{bottom:481.878000px;}
.y162{bottom:482.656500px;}
.y13a{bottom:483.283500px;}
.y6e{bottom:484.162500px;}
.ya1{bottom:484.860000px;}
.y3a{bottom:493.363500px;}
.yd8{bottom:496.411500px;}
.yd3{bottom:496.447500px;}
.y196{bottom:497.530500px;}
.y161{bottom:500.230500px;}
.y1ce{bottom:500.544000px;}
.y112{bottom:500.707500px;}
.y139{bottom:502.113000px;}
.ya0{bottom:503.689500px;}
.y12{bottom:506.442000px;}
.y6d{bottom:507.475500px;}
.yd7{bottom:512.850000px;}
.y195{bottom:514.791000px;}
.y1cd{bottom:517.804500px;}
.y111{bottom:519.537000px;}
.y138{bottom:520.942500px;}
.y9f{bottom:522.519000px;}
.y11{bottom:524.329500px;}
.y160{bottom:526.771500px;}
.y6c{bottom:527.650500px;}
.yd6{bottom:529.288500px;}
.y39{bottom:530.754000px;}
.y194{bottom:532.051500px;}
.y1cc{bottom:535.065000px;}
.y110{bottom:538.366500px;}
.y137{bottom:539.772000px;}
.y9e{bottom:541.348500px;}
.y10{bottom:542.218500px;}
.yd5{bottom:545.727000px;}
.y193{bottom:549.312000px;}
.y38{bottom:550.210500px;}
.y1cb{bottom:552.325500px;}
.y15f{bottom:553.312500px;}
.y10f{bottom:557.196000px;}
.y136{bottom:558.601500px;}
.yf{bottom:560.106000px;}
.y9d{bottom:560.178000px;}
.y6b{bottom:561.274500px;}
.y192{bottom:566.572500px;}
.yd2{bottom:569.367000px;}
.y1ca{bottom:569.586000px;}
.y37{bottom:569.667000px;}
.y15e{bottom:570.886500px;}
.y10e{bottom:576.025500px;}
.y135{bottom:577.431000px;}
.ye{bottom:577.993500px;}
.y9c{bottom:579.007500px;}
.y6a{bottom:580.104000px;}
.y191{bottom:583.833000px;}
.yd1{bottom:585.805500px;}
.y1c9{bottom:586.846500px;}
.y36{bottom:589.125000px;}
.y10d{bottom:594.855000px;}
.yd{bottom:595.882500px;}
.y134{bottom:596.260500px;}
.y15d{bottom:597.427500px;}
.y69{bottom:598.932000px;}
.y190{bottom:601.093500px;}
.yd0{bottom:602.244000px;}
.y9b{bottom:602.320500px;}
.y1c8{bottom:604.107000px;}
.y35{bottom:608.581500px;}
.y10c{bottom:613.684500px;}
.yc{bottom:613.770000px;}
.y133{bottom:615.090000px;}
.y68{bottom:617.761500px;}
.y18f{bottom:618.352500px;}
.ycf{bottom:618.682500px;}
.yca{bottom:618.718500px;}
.y1c7{bottom:621.366000px;}
.y15c{bottom:623.967000px;}
.y34{bottom:628.038000px;}
.yb{bottom:631.657500px;}
.y10b{bottom:632.514000px;}
.y132{bottom:633.919500px;}
.yce{bottom:635.121000px;}
.yc9{bottom:635.157000px;}
.y18e{bottom:635.613000px;}
.y67{bottom:636.591000px;}
.y9a{bottom:637.651500px;}
.y1c6{bottom:638.626500px;}
.y33{bottom:647.496000px;}
.y15b{bottom:650.508000px;}
.y10a{bottom:651.343500px;}
.ycd{bottom:651.559500px;}
.y131{bottom:652.749000px;}
.y18d{bottom:652.873500px;}
.y8{bottom:654.028555px;}
.y66{bottom:655.420500px;}
.y1c5{bottom:655.887000px;}
.y99{bottom:656.494500px;}
.y32{bottom:666.952500px;}
.ycc{bottom:667.998000px;}
.y18c{bottom:670.134000px;}
.y109{bottom:670.173000px;}
.y130{bottom:671.578500px;}
.y98{bottom:672.933000px;}
.y1c4{bottom:673.147500px;}
.y65{bottom:674.250000px;}
.y15a{bottom:677.049000px;}
.ycb{bottom:684.436500px;}
.y31{bottom:686.410500px;}
.y18b{bottom:687.394500px;}
.y97{bottom:689.371500px;}
.y12f{bottom:690.408000px;}
.y64{bottom:693.079500px;}
.y108{bottom:693.486000px;}
.y159{bottom:694.623000px;}
.y18a{bottom:704.655000px;}
.y96{bottom:705.810000px;}
.y30{bottom:705.867000px;}
.y1c3{bottom:707.668500px;}
.yc8{bottom:708.076500px;}
.y12e{bottom:709.237500px;}
.y63{bottom:711.909000px;}
.y158{bottom:712.197000px;}
.y189{bottom:721.915500px;}
.y95{bottom:722.248500px;}
.yc7{bottom:724.515000px;}
.y1c2{bottom:724.929000px;}
.y2f{bottom:725.323500px;}
.y12d{bottom:728.067000px;}
.y157{bottom:729.771000px;}
.y62{bottom:730.738500px;}
.y107{bottom:738.466500px;}
.y94{bottom:738.687000px;}
.y188{bottom:739.176000px;}
.yc6{bottom:740.953500px;}
.y1c1{bottom:742.189500px;}
.y2e{bottom:744.781500px;}
.y12c{bottom:746.896500px;}
.y61{bottom:749.568000px;}
.y106{bottom:752.664000px;}
.y93{bottom:755.125500px;}
.y187{bottom:756.435000px;}
.yc5{bottom:757.392000px;}
.yc0{bottom:757.428000px;}
.y1c0{bottom:759.450000px;}
.y2d{bottom:764.238000px;}
.y156{bottom:765.277500px;}
.y12b{bottom:765.726000px;}
.y104{bottom:766.860000px;}
.y60{bottom:768.397500px;}
.y105{bottom:771.199500px;}
.y92{bottom:771.564000px;}
.yc4{bottom:773.830500px;}
.ybf{bottom:773.866500px;}
.y1bf{bottom:776.709000px;}
.y186{bottom:778.179000px;}
.y102{bottom:781.057500px;}
.y155{bottom:784.107000px;}
.y12a{bottom:784.555500px;}
.y103{bottom:785.397000px;}
.y5f{bottom:787.227000px;}
.y91{bottom:788.002500px;}
.yc3{bottom:790.269000px;}
.y1be{bottom:793.969500px;}
.y101{bottom:796.749000px;}
.y2c{bottom:802.824000px;}
.y154{bottom:802.936500px;}
.y129{bottom:803.385000px;}
.y5e{bottom:806.056500px;}
.yc2{bottom:806.707500px;}
.y1bd{bottom:811.230000px;}
.y90{bottom:811.642500px;}
.y100{bottom:818.824500px;}
.y153{bottom:821.766000px;}
.y128{bottom:822.214500px;}
.yc1{bottom:823.146000px;}
.y2b{bottom:823.302000px;}
.y185{bottom:823.641000px;}
.y5d{bottom:824.886000px;}
.y1bc{bottom:828.490500px;}
.y2a{bottom:835.102500px;}
.y183{bottom:840.079500px;}
.yff{bottom:840.223500px;}
.y152{bottom:840.595500px;}
.y127{bottom:841.044000px;}
.y8f{bottom:843.262500px;}
.y5c{bottom:843.715500px;}
.y1bb{bottom:845.751000px;}
.ybe{bottom:846.786000px;}
.y29{bottom:851.242500px;}
.y28{bottom:855.582000px;}
.y184{bottom:856.518000px;}
.y151{bottom:859.425000px;}
.y126{bottom:859.873500px;}
.yfc{bottom:860.265000px;}
.yfe{bottom:861.622500px;}
.y5b{bottom:862.545000px;}
.y1ba{bottom:863.011500px;}
.y27{bottom:871.722000px;}
.yfb{bottom:874.462500px;}
.yfd{bottom:875.818500px;}
.y150{bottom:878.254500px;}
.ybd{bottom:878.406000px;}
.y8e{bottom:878.703000px;}
.y182{bottom:880.158000px;}
.y1b9{bottom:880.272000px;}
.y5a{bottom:881.374500px;}
.y26{bottom:887.860500px;}
.y181{bottom:888.378000px;}
.y14f{bottom:897.084000px;}
.yfa{bottom:897.217500px;}
.y8d{bottom:897.532500px;}
.ybc{bottom:897.639000px;}
.y25{bottom:899.661000px;}
.y59{bottom:900.204000px;}
.yf9{bottom:903.109500px;}
.y1b7{bottom:914.791500px;}
.y1b8{bottom:914.793000px;}
.y24{bottom:915.801000px;}
.y8c{bottom:916.362000px;}
.y58{bottom:919.033500px;}
.y17f{bottom:920.238000px;}
.y14e{bottom:920.397000px;}
.y17e{bottom:928.456500px;}
.y1b6{bottom:932.052000px;}
.yf8{bottom:932.814000px;}
.ybb{bottom:934.743000px;}
.y8b{bottom:935.191500px;}
.y23{bottom:936.279000px;}
.y180{bottom:936.676500px;}
.y57{bottom:937.863000px;}
.yf7{bottom:938.887500px;}
.yf1{bottom:947.961000px;}
.y1b5{bottom:949.312500px;}
.yba{bottom:953.572500px;}
.y8a{bottom:954.021000px;}
.y56{bottom:956.692500px;}
.y17d{bottom:960.316500px;}
.yf0{bottom:962.158500px;}
.y1b4{bottom:966.573000px;}
.yf6{bottom:968.410500px;}
.y17c{bottom:968.536500px;}
.yb9{bottom:972.402000px;}
.y89{bottom:972.849000px;}
.y55{bottom:975.522000px;}
.yf5{bottom:975.858000px;}
.y7{bottom:976.473000px;}
.y1b3{bottom:983.833500px;}
.yb8{bottom:991.231500px;}
.y88{bottom:991.678500px;}
.y54{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y17b{bottom:1000.396500px;}
.y1b2{bottom:1001.094000px;}
.yf4{bottom:1004.005500px;}
.y17a{bottom:1008.615000px;}
.yb7{bottom:1010.061000px;}
.y87{bottom:1010.508000px;}
.yf3{bottom:1012.525500px;}
.y53{bottom:1013.181000px;}
.y1b1{bottom:1018.354500px;}
.y86{bottom:1029.337500px;}
.y52{bottom:1032.010500px;}
.yb6{bottom:1033.372500px;}
.y1b0{bottom:1035.615000px;}
.y179{bottom:1040.475000px;}
.yf2{bottom:1040.490000px;}
.y5{bottom:1041.199500px;}
.y85{bottom:1048.167000px;}
.y51{bottom:1050.840000px;}
.y1af{bottom:1052.875500px;}
.yef{bottom:1061.889000px;}
.y84{bottom:1066.996500px;}
.yee{bottom:1068.988500px;}
.y4{bottom:1069.443000px;}
.y50{bottom:1069.669500px;}
.y1ae{bottom:1070.134500px;}
.y178{bottom:1072.095000px;}
.y83{bottom:1085.826000px;}
.y1ad{bottom:1087.395000px;}
.y4f{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y82{bottom:1104.655500px;}
.yed{bottom:1106.137500px;}
.y4e{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4d{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.ha{height:30.461558px;}
.hb{height:30.712615px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h1d{height:34.574294px;}
.hd{height:34.813397px;}
.h13{height:35.100320px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h10{height:39.488026px;}
.h1c{height:41.482876px;}
.h11{height:43.217759px;}
.h17{height:43.468157px;}
.h12{height:43.516637px;}
.h4{height:43.875290px;}
.h22{height:50.242615px;}
.h2{height:50.931027px;}
.h6{height:54.541601px;}
.h18{height:61.075397px;}
.h19{height:61.807397px;}
.h14{height:62.966294px;}
.h1f{height:63.205397px;}
.h1e{height:63.211397px;}
.h1a{height:67.303397px;}
.h1b{height:68.035397px;}
.h16{height:71.686829px;}
.h20{height:72.039235px;}
.h21{height:72.045235px;}
.h5{height:77.792486px;}
.h15{height:91.364294px;}
.h3{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.814733px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:58.056593px;}
.x66{left:66.267000px;}
.x9b{left:67.833000px;}
.x95{left:73.818000px;}
.xa7{left:84.255000px;}
.x61{left:85.446000px;}
.x9c{left:87.058500px;}
.x67{left:89.953500px;}
.x9f{left:92.883000px;}
.x99{left:96.084000px;}
.x96{left:99.330000px;}
.xa0{left:102.129000px;}
.x9a{left:104.302500px;}
.x62{left:136.689000px;}
.x63{left:174.331500px;}
.x69{left:181.029000px;}
.x6c{left:185.506500px;}
.x6a{left:198.675000px;}
.x68{left:201.556500px;}
.x6b{left:204.874500px;}
.x6d{left:210.522000px;}
.x9d{left:243.766500px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x44{left:262.780500px;}
.x46{left:267.817500px;}
.x6{left:270.886500px;}
.x42{left:273.688500px;}
.x43{left:277.440000px;}
.x9{left:282.786000px;}
.x41{left:285.894000px;}
.x4f{left:287.949000px;}
.x79{left:291.163500px;}
.x60{left:292.857000px;}
.x45{left:294.858000px;}
.x47{left:295.960500px;}
.x3b{left:298.794000px;}
.x5f{left:303.388500px;}
.x59{left:305.482500px;}
.x8{left:309.441000px;}
.x24{left:315.135000px;}
.x73{left:317.907000px;}
.x25{left:330.079500px;}
.x74{left:332.851500px;}
.x26{left:337.701000px;}
.x18{left:339.919500px;}
.x94{left:341.254500px;}
.x39{left:342.339000px;}
.x19{left:347.392500px;}
.x27{left:352.645500px;}
.x9e{left:355.332000px;}
.x3a{left:357.282000px;}
.x64{left:364.225500px;}
.x91{left:372.327000px;}
.xe{left:377.596500px;}
.x93{left:378.810000px;}
.xf{left:385.068000px;}
.x10{left:388.879500px;}
.x37{left:392.547000px;}
.x48{left:393.678000px;}
.x11{left:396.351000px;}
.x97{left:398.532000px;}
.x8c{left:400.684500px;}
.x1e{left:405.418500px;}
.x38{left:407.491500px;}
.x49{left:408.622500px;}
.x5e{left:413.616000px;}
.x8d{left:415.627500px;}
.x1f{left:420.361500px;}
.x5b{left:423.240000px;}
.x5c{left:428.640000px;}
.x5a{left:431.671500px;}
.x92{left:432.772500px;}
.x3c{left:435.112500px;}
.x5d{left:440.797500px;}
.x7e{left:445.173000px;}
.x75{left:455.434500px;}
.x56{left:460.042500px;}
.x76{left:471.466500px;}
.x57{left:474.987000px;}
.x28{left:487.393500px;}
.x14{left:491.556000px;}
.x29{left:494.865000px;}
.x15{left:499.027500px;}
.x16{left:502.819500px;}
.x17{left:510.292500px;}
.x2a{left:513.619500px;}
.x2d{left:515.230500px;}
.x2b{left:517.431000px;}
.x51{left:520.890000px;}
.x70{left:526.821000px;}
.x1a{left:529.221000px;}
.x2c{left:532.375500px;}
.x2e{left:533.884500px;}
.x1b{left:536.692500px;}
.x71{left:541.765500px;}
.x36{left:546.807000px;}
.x2f{left:548.827500px;}
.x88{left:551.521500px;}
.x83{left:556.221000px;}
.x4e{left:563.023500px;}
.x72{left:564.226500px;}
.x89{left:566.464500px;}
.x84{left:571.165500px;}
.x8a{left:573.907500px;}
.x85{left:574.908000px;}
.x32{left:576.990000px;}
.x8b{left:588.850500px;}
.x86{left:589.852500px;}
.x33{left:591.933000px;}
.x12{left:598.221000px;}
.x34{left:599.487000px;}
.x13{left:605.692500px;}
.x35{left:614.431500px;}
.x7a{left:616.470000px;}
.x1c{left:625.663500px;}
.x50{left:629.142000px;}
.x7b{left:631.414500px;}
.x98{left:636.025500px;}
.x3d{left:638.497500px;}
.xa{left:640.266000px;}
.x1d{left:644.295000px;}
.xb{left:647.737500px;}
.xc{left:651.547500px;}
.x3e{left:653.442000px;}
.xd{left:659.020500px;}
.xa3{left:669.759000px;}
.x65{left:674.071500px;}
.x6e{left:678.187500px;}
.x6f{left:687.142500px;}
.xa5{left:690.129000px;}
.xa4{left:696.658500px;}
.x3f{left:709.500000px;}
.x8e{left:710.830500px;}
.x77{left:712.429500px;}
.x7f{left:714.724500px;}
.xa6{left:717.027000px;}
.x30{left:720.276000px;}
.x78{left:727.374000px;}
.x80{left:729.669000px;}
.x31{left:735.219000px;}
.x20{left:743.509500px;}
.x7c{left:744.949500px;}
.x21{left:750.981000px;}
.x22{left:754.792500px;}
.x7d{left:759.892500px;}
.x81{left:763.156500px;}
.x23{left:769.735500px;}
.x4a{left:771.324000px;}
.x82{left:774.439500px;}
.x87{left:775.645500px;}
.x8f{left:776.823000px;}
.x58{left:781.143000px;}
.xa1{left:783.492000px;}
.x4b{left:786.268500px;}
.x4c{left:789.261000px;}
.x52{left:798.993000px;}
.x90{left:802.156500px;}
.x4d{left:804.205500px;}
.xa2{left:810.391500px;}
.x53{left:813.937500px;}
.x54{left:817.732500px;}
.x55{left:832.677000px;}
.x40{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.578667pt;}
.v6{vertical-align:15.429333pt;}
.va{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v7{vertical-align:23.344000pt;}
.v3{vertical-align:25.237333pt;}
.v9{vertical-align:28.880000pt;}
.v5{vertical-align:40.672000pt;}
.v4{vertical-align:50.480000pt;}
.lse{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000158pt;}
.ls26{letter-spacing:0.000174pt;}
.ls2b{letter-spacing:0.000375pt;}
.ls1a{letter-spacing:0.000503pt;}
.ls18{letter-spacing:0.000613pt;}
.ls28{letter-spacing:0.000659pt;}
.ls20{letter-spacing:0.000711pt;}
.ls2e{letter-spacing:0.000921pt;}
.ls13{letter-spacing:0.001007pt;}
.ls1f{letter-spacing:0.001026pt;}
.ls25{letter-spacing:0.001056pt;}
.ls7{letter-spacing:0.001062pt;}
.ls29{letter-spacing:0.001391pt;}
.ls8{letter-spacing:0.001525pt;}
.ls27{letter-spacing:0.001552pt;}
.lsa{letter-spacing:0.001718pt;}
.ls5{letter-spacing:0.001735pt;}
.ls2d{letter-spacing:0.001818pt;}
.ls1e{letter-spacing:0.002038pt;}
.ls19{letter-spacing:0.002153pt;}
.ls24{letter-spacing:0.002525pt;}
.ls30{letter-spacing:0.002729pt;}
.ls23{letter-spacing:0.002939pt;}
.ls9{letter-spacing:0.003666pt;}
.lsf{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls3{letter-spacing:9.298933pt;}
.lsd{letter-spacing:10.626533pt;}
.ls16{letter-spacing:10.627330pt;}
.ls2f{letter-spacing:11.747334pt;}
.ls1b{letter-spacing:11.954133pt;}
.ls14{letter-spacing:11.955635pt;}
.ls21{letter-spacing:11.959467pt;}
.ls1c{letter-spacing:11.964640pt;}
.ls1d{letter-spacing:12.085245pt;}
.ls15{letter-spacing:13.007870pt;}
.ls10{letter-spacing:13.283467pt;}
.ls12{letter-spacing:13.283733pt;}
.ls11{letter-spacing:13.923096pt;}
.ls22{letter-spacing:14.052643pt;}
.lsc{letter-spacing:14.175875pt;}
.ls2a{letter-spacing:14.611375pt;}
.ls2c{letter-spacing:14.614961pt;}
.ls4{letter-spacing:55.787733pt;}
.lsb{letter-spacing:57.174803pt;}
.ls17{letter-spacing:127.143398pt;}
.ws5c{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.ws63{word-spacing:-11.955200pt;}
.ws14{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.ws4e{word-spacing:-2.603559pt;}
.ws7a{word-spacing:-2.391024pt;}
.ws22{word-spacing:-2.284756pt;}
.ws65{word-spacing:-2.231622pt;}
.ws50{word-spacing:-2.178489pt;}
.ws51{word-spacing:-2.125355pt;}
.ws29{word-spacing:-2.019087pt;}
.wsbd{word-spacing:-1.912832pt;}
.ws86{word-spacing:-1.912819pt;}
.ws5a{word-spacing:-1.859685pt;}
.ws83{word-spacing:-1.753418pt;}
.ws6{word-spacing:-1.696326pt;}
.ws49{word-spacing:-1.594016pt;}
.ws7b{word-spacing:-1.434614pt;}
.ws3e{word-spacing:-1.222079pt;}
.ws5{word-spacing:-1.175671pt;}
.ws8f{word-spacing:-0.908595pt;}
.ws81{word-spacing:-0.903276pt;}
.ws82{word-spacing:-0.690740pt;}
.ws91{word-spacing:-0.669491pt;}
.wsba{word-spacing:-0.573850pt;}
.wsac{word-spacing:-0.478208pt;}
.wsab{word-spacing:-0.441492pt;}
.ws74{word-spacing:-0.425071pt;}
.ws48{word-spacing:-0.371937pt;}
.wsad{word-spacing:-0.334746pt;}
.ws3a{word-spacing:-0.318803pt;}
.ws19{word-spacing:-0.286925pt;}
.ws46{word-spacing:-0.265669pt;}
.ws9f{word-spacing:-0.239104pt;}
.ws37{word-spacing:-0.212535pt;}
.ws18{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.ws98{word-spacing:-0.143462pt;}
.ws45{word-spacing:-0.106268pt;}
.ws99{word-spacing:-0.095642pt;}
.ws4{word-spacing:-0.053134pt;}
.ws90{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.042507pt;}
.ws9e{word-spacing:-0.025677pt;}
.wsa8{word-spacing:-0.025054pt;}
.wsa7{word-spacing:-0.021598pt;}
.ws97{word-spacing:-0.006221pt;}
.wsae{word-spacing:-0.004463pt;}
.wsb1{word-spacing:-0.004096pt;}
.ws8{word-spacing:-0.003327pt;}
.ws1{word-spacing:-0.002163pt;}
.wsa4{word-spacing:-0.000375pt;}
.ws69{word-spacing:-0.000136pt;}
.ws0{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.000559pt;}
.ws16{word-spacing:0.042507pt;}
.ws8a{word-spacing:0.047821pt;}
.ws3c{word-spacing:0.053134pt;}
.ws70{word-spacing:0.085014pt;}
.ws66{word-spacing:0.095642pt;}
.ws2e{word-spacing:0.106268pt;}
.ws71{word-spacing:0.127522pt;}
.ws9c{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.ws92{word-spacing:0.170029pt;}
.wsa{word-spacing:0.185968pt;}
.ws9a{word-spacing:0.191283pt;}
.ws36{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws4c{word-spacing:0.265669pt;}
.ws8b{word-spacing:0.286925pt;}
.ws3b{word-spacing:0.318803pt;}
.wsb5{word-spacing:0.334746pt;}
.wsb6{word-spacing:0.382566pt;}
.ws78{word-spacing:0.425071pt;}
.wsbe{word-spacing:0.430387pt;}
.wsb4{word-spacing:0.526029pt;}
.ws1e{word-spacing:0.621670pt;}
.ws44{word-spacing:0.637606pt;}
.wsaf{word-spacing:0.669491pt;}
.ws6f{word-spacing:0.680115pt;}
.ws33{word-spacing:0.690740pt;}
.ws1b{word-spacing:0.717312pt;}
.ws34{word-spacing:0.743874pt;}
.wsa6{word-spacing:0.860774pt;}
.ws25{word-spacing:0.903276pt;}
.wsb2{word-spacing:1.004237pt;}
.ws30{word-spacing:1.009543pt;}
.ws2f{word-spacing:1.115811pt;}
.wsa5{word-spacing:1.147699pt;}
.ws47{word-spacing:1.168945pt;}
.ws40{word-spacing:1.275213pt;}
.wsa1{word-spacing:1.291162pt;}
.wsb3{word-spacing:1.338982pt;}
.ws79{word-spacing:1.381481pt;}
.wsbf{word-spacing:1.386803pt;}
.ws2b{word-spacing:1.487748pt;}
.ws80{word-spacing:1.594016pt;}
.wsa9{word-spacing:1.625907pt;}
.ws7f{word-spacing:1.647150pt;}
.wsb{word-spacing:1.785293pt;}
.ws72{word-spacing:1.859685pt;}
.ws73{word-spacing:1.912819pt;}
.wsbb{word-spacing:1.960653pt;}
.ws27{word-spacing:1.965953pt;}
.ws7d{word-spacing:2.019087pt;}
.wsaa{word-spacing:2.104115pt;}
.ws2a{word-spacing:2.125355pt;}
.ws1c{word-spacing:2.199757pt;}
.wsb8{word-spacing:2.247578pt;}
.ws4b{word-spacing:2.284756pt;}
.ws75{word-spacing:2.337890pt;}
.ws4f{word-spacing:2.550426pt;}
.ws17{word-spacing:2.550432pt;}
.wsa3{word-spacing:2.582323pt;}
.ws8d{word-spacing:2.773606pt;}
.ws85{word-spacing:2.816095pt;}
.ws20{word-spacing:2.861926pt;}
.ws8e{word-spacing:2.864512pt;}
.wsa2{word-spacing:2.865596pt;}
.ws8c{word-spacing:2.866509pt;}
.ws96{word-spacing:2.867550pt;}
.wsa0{word-spacing:2.868463pt;}
.ws3d{word-spacing:2.869229pt;}
.ws9b{word-spacing:2.869248pt;}
.ws88{word-spacing:2.922363pt;}
.wsb0{word-spacing:3.004674pt;}
.ws9d{word-spacing:3.012710pt;}
.ws5f{word-spacing:3.060531pt;}
.wsbc{word-spacing:3.108352pt;}
.ws39{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws23{word-spacing:3.347434pt;}
.ws5e{word-spacing:3.347456pt;}
.ws84{word-spacing:3.400567pt;}
.ws4a{word-spacing:3.453701pt;}
.ws38{word-spacing:3.559969pt;}
.ws53{word-spacing:3.613103pt;}
.ws1f{word-spacing:3.634381pt;}
.ws77{word-spacing:3.825638pt;}
.ws87{word-spacing:3.878772pt;}
.ws5b{word-spacing:3.931906pt;}
.ws41{word-spacing:4.091308pt;}
.ws7e{word-spacing:4.197575pt;}
.ws1d{word-spacing:4.208230pt;}
.ws57{word-spacing:4.250709pt;}
.ws95{word-spacing:4.447334pt;}
.ws89{word-spacing:4.516379pt;}
.ws76{word-spacing:4.569513pt;}
.ws58{word-spacing:4.728914pt;}
.ws5d{word-spacing:4.782048pt;}
.ws59{word-spacing:4.888316pt;}
.ws35{word-spacing:5.366521pt;}
.ws12{word-spacing:5.393072pt;}
.ws55{word-spacing:5.419654pt;}
.ws13{word-spacing:5.467459pt;}
.ws4d{word-spacing:5.525922pt;}
.ws6e{word-spacing:5.653458pt;}
.ws24{word-spacing:5.738458pt;}
.ws43{word-spacing:6.216662pt;}
.ws3f{word-spacing:7.066804pt;}
.ws31{word-spacing:7.119938pt;}
.ws28{word-spacing:7.438741pt;}
.wsb9{word-spacing:7.507866pt;}
.ws10{word-spacing:7.699075pt;}
.ws42{word-spacing:8.288883pt;}
.wsb7{word-spacing:9.970541pt;}
.ws7{word-spacing:13.763148pt;}
.ws7c{word-spacing:14.027341pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.ws54{word-spacing:14.399278pt;}
.wsf{word-spacing:15.732893pt;}
.ws56{word-spacing:19.925200pt;}
.ws11{word-spacing:24.399002pt;}
.ws32{word-spacing:25.026051pt;}
.ws68{word-spacing:92.453160pt;}
.ws6a{word-spacing:96.023765pt;}
.ws67{word-spacing:129.657704pt;}
.ws60{word-spacing:152.117965pt;}
.ws94{word-spacing:153.197013pt;}
.ws6c{word-spacing:155.269853pt;}
.ws62{word-spacing:176.028365pt;}
.ws64{word-spacing:185.449062pt;}
.ws61{word-spacing:199.938765pt;}
.ws6b{word-spacing:200.778607pt;}
.ws6d{word-spacing:226.918957pt;}
.ws93{word-spacing:748.840214pt;}
.ws52{word-spacing:836.816179pt;}
._13{margin-left:-6.528739pt;}
._0{margin-left:-5.260288pt;}
._a{margin-left:-3.910662pt;}
._4{margin-left:-2.951557pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._1{width:2.029795pt;}
._2{width:3.260229pt;}
._b{width:9.861670pt;}
._8{width:11.530016pt;}
._14{width:13.175632pt;}
._c{width:14.633165pt;}
._18{width:15.787485pt;}
._e{width:16.712228pt;}
._f{width:18.302990pt;}
._11{width:19.659531pt;}
._1a{width:20.722208pt;}
._d{width:22.033288pt;}
._7{width:23.063232pt;}
._19{width:24.820242pt;}
._1c{width:25.738259pt;}
._10{width:26.938870pt;}
._26{width:28.054682pt;}
._9{width:29.011008pt;}
._5d{width:30.080495pt;}
._17{width:33.321661pt;}
._12{width:39.319061pt;}
._1b{width:42.503959pt;}
._3{width:49.024074pt;}
._75{width:54.993920pt;}
._74{width:78.904320pt;}
._71{width:103.166916pt;}
._4b{width:106.614697pt;}
._73{width:108.553216pt;}
._47{width:117.234858pt;}
._6e{width:119.258257pt;}
._6f{width:121.943040pt;}
._41{width:124.376067pt;}
._50{width:127.904165pt;}
._40{width:135.842406pt;}
._46{width:137.103654pt;}
._4f{width:138.530965pt;}
._43{width:145.059337pt;}
._4a{width:146.649840pt;}
._4c{width:148.920459pt;}
._64{width:151.198110pt;}
._2f{width:152.596173pt;}
._4e{width:157.701712pt;}
._2a{width:160.056218pt;}
._66{width:162.845083pt;}
._2d{width:164.120986pt;}
._59{width:168.371019pt;}
._4d{width:169.563625pt;}
._51{width:170.581394pt;}
._28{width:174.689382pt;}
._2c{width:175.980544pt;}
._42{width:177.237090pt;}
._55{width:180.188021pt;}
._36{width:181.575578pt;}
._3d{width:182.866739pt;}
._29{width:184.014438pt;}
._56{width:184.930354pt;}
._31{width:188.031386pt;}
._5b{width:189.582112pt;}
._2e{width:192.330054pt;}
._52{width:194.172890pt;}
._25{width:195.395789pt;}
._3e{width:197.452083pt;}
._30{width:199.890944pt;}
._6b{width:202.141355pt;}
._38{width:204.285254pt;}
._54{width:205.564819pt;}
._58{width:206.712514pt;}
._5a{width:208.419835pt;}
._33{width:211.941786pt;}
._45{width:213.853723pt;}
._48{width:216.276634pt;}
._57{width:221.505019pt;}
._2b{width:223.610061pt;}
._34{width:224.757760pt;}
._27{width:226.814054pt;}
._53{width:229.954297pt;}
._32{width:232.313446pt;}
._3b{width:235.565261pt;}
._3a{width:236.712960pt;}
._44{width:238.890464pt;}
._39{width:244.693830pt;}
._49{width:249.092192pt;}
._61{width:255.510779pt;}
._70{width:266.027110pt;}
._3c{width:268.035584pt;}
._5c{width:270.770864pt;}
._72{width:278.938726pt;}
._35{width:279.879296pt;}
._37{width:282.950470pt;}
._20{width:305.335808pt;}
._6d{width:310.059424pt;}
._6a{width:322.312192pt;}
._67{width:323.437285pt;}
._63{width:342.948090pt;}
._1e{width:356.599706pt;}
._62{width:358.335696pt;}
._5e{width:376.316242pt;}
._60{width:378.441602pt;}
._65{width:395.223456pt;}
._22{width:400.679840pt;}
._6c{width:404.407168pt;}
._69{width:411.163238pt;}
._3f{width:470.571102pt;}
._24{width:521.438003pt;}
._68{width:571.534064pt;}
._5f{width:592.847918pt;}
._21{width:595.655885pt;}
._23{width:620.761805pt;}
._1f{width:746.673971pt;}
._1d{width:768.480256pt;}
._15{width:797.860144pt;}
._76{width:2211.431733pt;}
._16{width:2232.685067pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:13.168686pt;}
.y4c{bottom:28.346667pt;}
.yb5{bottom:79.105333pt;}
.y22{bottom:91.398667pt;}
.y81{bottom:95.222667pt;}
.yb4{bottom:95.842667pt;}
.y4b{bottom:99.964000pt;}
.y177{bottom:101.476000pt;}
.y1ac{bottom:104.714667pt;}
.y21{bottom:107.298667pt;}
.y1e2{bottom:107.393333pt;}
.y14d{bottom:111.577333pt;}
.y80{bottom:111.960000pt;}
.yb3{bottom:112.580000pt;}
.y175{bottom:114.096000pt;}
.y4a{bottom:116.701333pt;}
.y1ab{bottom:120.057333pt;}
.y1e1{bottom:122.736000pt;}
.y20{bottom:123.200000pt;}
.y176{bottom:126.714667pt;}
.y125{bottom:127.065333pt;}
.y14c{bottom:128.314667pt;}
.y7f{bottom:128.697333pt;}
.yb2{bottom:129.317333pt;}
.y49{bottom:133.438667pt;}
.y1aa{bottom:135.400000pt;}
.y1e0{bottom:138.078667pt;}
.y1f{bottom:139.100000pt;}
.yec{bottom:140.137333pt;}
.y124{bottom:143.802667pt;}
.y14b{bottom:145.052000pt;}
.y174{bottom:145.736000pt;}
.yb1{bottom:146.054667pt;}
.y7e{bottom:149.420000pt;}
.y48{bottom:150.176000pt;}
.y1a9{bottom:150.741333pt;}
.y173{bottom:152.046667pt;}
.y1df{bottom:153.421333pt;}
.y1e{bottom:155.000000pt;}
.yeb{bottom:156.874667pt;}
.y123{bottom:160.540000pt;}
.y14a{bottom:161.789333pt;}
.yb0{bottom:162.792000pt;}
.y1a8{bottom:166.084000pt;}
.y47{bottom:166.913333pt;}
.y1de{bottom:168.762667pt;}
.y1d{bottom:170.901333pt;}
.yea{bottom:173.612000pt;}
.y122{bottom:177.277333pt;}
.y170{bottom:177.377333pt;}
.y149{bottom:178.526667pt;}
.y7d{bottom:179.308000pt;}
.yaf{bottom:179.529333pt;}
.y1a7{bottom:181.426667pt;}
.y46{bottom:183.650667pt;}
.y172{bottom:183.686667pt;}
.y1dd{bottom:184.105333pt;}
.y1c{bottom:186.801333pt;}
.y16e{bottom:189.997333pt;}
.ye9{bottom:190.349333pt;}
.y121{bottom:194.014667pt;}
.y148{bottom:195.264000pt;}
.y7c{bottom:196.045333pt;}
.yae{bottom:196.266667pt;}
.y171{bottom:196.306667pt;}
.y1a6{bottom:196.769333pt;}
.y1dc{bottom:199.448000pt;}
.y45{bottom:200.386667pt;}
.y16f{bottom:202.616000pt;}
.y1b{bottom:202.701333pt;}
.ye8{bottom:207.086667pt;}
.y120{bottom:210.752000pt;}
.y147{bottom:212.001333pt;}
.y1a5{bottom:212.112000pt;}
.y7b{bottom:212.782667pt;}
.yad{bottom:213.004000pt;}
.y1db{bottom:214.790667pt;}
.y44{bottom:217.124000pt;}
.y16d{bottom:221.637333pt;}
.y1a4{bottom:227.454667pt;}
.y11f{bottom:227.489333pt;}
.y146{bottom:228.738667pt;}
.y7a{bottom:229.520000pt;}
.y1da{bottom:230.133333pt;}
.yac{bottom:233.726667pt;}
.y43{bottom:233.861333pt;}
.y16b{bottom:234.257333pt;}
.ye7{bottom:242.760000pt;}
.y1a3{bottom:242.797333pt;}
.y11e{bottom:244.226667pt;}
.y145{bottom:245.476000pt;}
.y79{bottom:246.257333pt;}
.y16c{bottom:246.876000pt;}
.y42{bottom:250.598667pt;}
.y1a2{bottom:258.140000pt;}
.ye6{bottom:259.510667pt;}
.y1d9{bottom:260.818667pt;}
.y11d{bottom:260.964000pt;}
.y144{bottom:262.213333pt;}
.y78{bottom:262.994667pt;}
.yab{bottom:263.614667pt;}
.y16a{bottom:265.897333pt;}
.y41{bottom:267.336000pt;}
.y1a{bottom:273.154667pt;}
.y1a1{bottom:273.482667pt;}
.ye5{bottom:274.122667pt;}
.y1d8{bottom:276.161333pt;}
.y11c{bottom:277.701333pt;}
.y168{bottom:278.517333pt;}
.y143{bottom:278.950667pt;}
.y77{bottom:279.732000pt;}
.yaa{bottom:280.352000pt;}
.y40{bottom:284.073333pt;}
.ye4{bottom:288.734667pt;}
.y1a0{bottom:288.824000pt;}
.y19{bottom:289.054667pt;}
.y169{bottom:291.136000pt;}
.y1d7{bottom:291.502667pt;}
.y11b{bottom:294.437333pt;}
.y142{bottom:295.688000pt;}
.y76{bottom:296.469333pt;}
.ya9{bottom:297.088000pt;}
.y3f{bottom:300.810667pt;}
.ye3{bottom:303.346667pt;}
.yde{bottom:303.378667pt;}
.y19f{bottom:304.166667pt;}
.y18{bottom:304.954667pt;}
.y1d6{bottom:306.845333pt;}
.y167{bottom:310.157333pt;}
.y11a{bottom:311.174667pt;}
.y141{bottom:312.425333pt;}
.y75{bottom:313.205333pt;}
.ya8{bottom:313.825333pt;}
.y3e{bottom:317.548000pt;}
.ye2{bottom:317.957333pt;}
.ydd{bottom:317.990667pt;}
.y19e{bottom:319.509333pt;}
.y17{bottom:320.856000pt;}
.y1d5{bottom:322.188000pt;}
.y119{bottom:327.912000pt;}
.y140{bottom:329.162667pt;}
.y74{bottom:329.942667pt;}
.ya7{bottom:330.562667pt;}
.ye1{bottom:332.569333pt;}
.y3d{bottom:334.285333pt;}
.y19d{bottom:334.852000pt;}
.y166{bottom:336.869333pt;}
.y1d4{bottom:337.530667pt;}
.y118{bottom:344.649333pt;}
.y13f{bottom:345.900000pt;}
.y73{bottom:346.680000pt;}
.ye0{bottom:347.181333pt;}
.ya6{bottom:347.300000pt;}
.y19c{bottom:350.194667pt;}
.y3c{bottom:351.022667pt;}
.y1d3{bottom:352.873333pt;}
.y16{bottom:354.688000pt;}
.y117{bottom:361.386667pt;}
.ydf{bottom:361.793333pt;}
.y13e{bottom:362.637333pt;}
.y72{bottom:363.417333pt;}
.ya5{bottom:364.037333pt;}
.y165{bottom:365.108000pt;}
.y19b{bottom:365.537333pt;}
.y1d2{bottom:368.216000pt;}
.y15{bottom:370.589333pt;}
.y3b{bottom:371.745333pt;}
.y116{bottom:378.124000pt;}
.y13d{bottom:379.374667pt;}
.y71{bottom:380.154667pt;}
.ya4{bottom:380.774667pt;}
.y19a{bottom:380.880000pt;}
.ydc{bottom:382.808000pt;}
.y1d1{bottom:383.558667pt;}
.y14{bottom:386.489333pt;}
.y115{bottom:394.861333pt;}
.y13c{bottom:396.112000pt;}
.y199{bottom:396.222667pt;}
.y70{bottom:396.892000pt;}
.ydb{bottom:397.418667pt;}
.ya3{bottom:397.512000pt;}
.y164{bottom:397.785333pt;}
.y1d0{bottom:398.901333pt;}
.y198{bottom:411.564000pt;}
.y114{bottom:411.598667pt;}
.yda{bottom:412.030667pt;}
.y13b{bottom:412.848000pt;}
.y163{bottom:413.406667pt;}
.y6f{bottom:413.629333pt;}
.y1cf{bottom:414.244000pt;}
.ya2{bottom:414.249333pt;}
.y13{bottom:418.330667pt;}
.yd9{bottom:426.642667pt;}
.yd4{bottom:426.674667pt;}
.y197{bottom:426.906667pt;}
.y113{bottom:428.336000pt;}
.y162{bottom:429.028000pt;}
.y13a{bottom:429.585333pt;}
.y6e{bottom:430.366667pt;}
.ya1{bottom:430.986667pt;}
.y3a{bottom:438.545333pt;}
.yd8{bottom:441.254667pt;}
.yd3{bottom:441.286667pt;}
.y196{bottom:442.249333pt;}
.y161{bottom:444.649333pt;}
.y1ce{bottom:444.928000pt;}
.y112{bottom:445.073333pt;}
.y139{bottom:446.322667pt;}
.ya0{bottom:447.724000pt;}
.y12{bottom:450.170667pt;}
.y6d{bottom:451.089333pt;}
.yd7{bottom:455.866667pt;}
.y195{bottom:457.592000pt;}
.y1cd{bottom:460.270667pt;}
.y111{bottom:461.810667pt;}
.y138{bottom:463.060000pt;}
.y9f{bottom:464.461333pt;}
.y11{bottom:466.070667pt;}
.y160{bottom:468.241333pt;}
.y6c{bottom:469.022667pt;}
.yd6{bottom:470.478667pt;}
.y39{bottom:471.781333pt;}
.y194{bottom:472.934667pt;}
.y1cc{bottom:475.613333pt;}
.y110{bottom:478.548000pt;}
.y137{bottom:479.797333pt;}
.y9e{bottom:481.198667pt;}
.y10{bottom:481.972000pt;}
.yd5{bottom:485.090667pt;}
.y193{bottom:488.277333pt;}
.y38{bottom:489.076000pt;}
.y1cb{bottom:490.956000pt;}
.y15f{bottom:491.833333pt;}
.y10f{bottom:495.285333pt;}
.y136{bottom:496.534667pt;}
.yf{bottom:497.872000pt;}
.y9d{bottom:497.936000pt;}
.y6b{bottom:498.910667pt;}
.y192{bottom:503.620000pt;}
.yd2{bottom:506.104000pt;}
.y1ca{bottom:506.298667pt;}
.y37{bottom:506.370667pt;}
.y15e{bottom:507.454667pt;}
.y10e{bottom:512.022667pt;}
.y135{bottom:513.272000pt;}
.ye{bottom:513.772000pt;}
.y9c{bottom:514.673333pt;}
.y6a{bottom:515.648000pt;}
.y191{bottom:518.962667pt;}
.yd1{bottom:520.716000pt;}
.y1c9{bottom:521.641333pt;}
.y36{bottom:523.666667pt;}
.y10d{bottom:528.760000pt;}
.yd{bottom:529.673333pt;}
.y134{bottom:530.009333pt;}
.y15d{bottom:531.046667pt;}
.y69{bottom:532.384000pt;}
.y190{bottom:534.305333pt;}
.yd0{bottom:535.328000pt;}
.y9b{bottom:535.396000pt;}
.y1c8{bottom:536.984000pt;}
.y35{bottom:540.961333pt;}
.y10c{bottom:545.497333pt;}
.yc{bottom:545.573333pt;}
.y133{bottom:546.746667pt;}
.y68{bottom:549.121333pt;}
.y18f{bottom:549.646667pt;}
.ycf{bottom:549.940000pt;}
.yca{bottom:549.972000pt;}
.y1c7{bottom:552.325333pt;}
.y15c{bottom:554.637333pt;}
.y34{bottom:558.256000pt;}
.yb{bottom:561.473333pt;}
.y10b{bottom:562.234667pt;}
.y132{bottom:563.484000pt;}
.yce{bottom:564.552000pt;}
.yc9{bottom:564.584000pt;}
.y18e{bottom:564.989333pt;}
.y67{bottom:565.858667pt;}
.y9a{bottom:566.801333pt;}
.y1c6{bottom:567.668000pt;}
.y33{bottom:575.552000pt;}
.y15b{bottom:578.229333pt;}
.y10a{bottom:578.972000pt;}
.ycd{bottom:579.164000pt;}
.y131{bottom:580.221333pt;}
.y18d{bottom:580.332000pt;}
.y8{bottom:581.358715pt;}
.y66{bottom:582.596000pt;}
.y1c5{bottom:583.010667pt;}
.y99{bottom:583.550667pt;}
.y32{bottom:592.846667pt;}
.ycc{bottom:593.776000pt;}
.y18c{bottom:595.674667pt;}
.y109{bottom:595.709333pt;}
.y130{bottom:596.958667pt;}
.y98{bottom:598.162667pt;}
.y1c4{bottom:598.353333pt;}
.y65{bottom:599.333333pt;}
.y15a{bottom:601.821333pt;}
.ycb{bottom:608.388000pt;}
.y31{bottom:610.142667pt;}
.y18b{bottom:611.017333pt;}
.y97{bottom:612.774667pt;}
.y12f{bottom:613.696000pt;}
.y64{bottom:616.070667pt;}
.y108{bottom:616.432000pt;}
.y159{bottom:617.442667pt;}
.y18a{bottom:626.360000pt;}
.y96{bottom:627.386667pt;}
.y30{bottom:627.437333pt;}
.y1c3{bottom:629.038667pt;}
.yc8{bottom:629.401333pt;}
.y12e{bottom:630.433333pt;}
.y63{bottom:632.808000pt;}
.y158{bottom:633.064000pt;}
.y189{bottom:641.702667pt;}
.y95{bottom:641.998667pt;}
.yc7{bottom:644.013333pt;}
.y1c2{bottom:644.381333pt;}
.y2f{bottom:644.732000pt;}
.y12d{bottom:647.170667pt;}
.y157{bottom:648.685333pt;}
.y62{bottom:649.545333pt;}
.y107{bottom:656.414667pt;}
.y94{bottom:656.610667pt;}
.y188{bottom:657.045333pt;}
.yc6{bottom:658.625333pt;}
.y1c1{bottom:659.724000pt;}
.y2e{bottom:662.028000pt;}
.y12c{bottom:663.908000pt;}
.y61{bottom:666.282667pt;}
.y106{bottom:669.034667pt;}
.y93{bottom:671.222667pt;}
.y187{bottom:672.386667pt;}
.yc5{bottom:673.237333pt;}
.yc0{bottom:673.269333pt;}
.y1c0{bottom:675.066667pt;}
.y2d{bottom:679.322667pt;}
.y156{bottom:680.246667pt;}
.y12b{bottom:680.645333pt;}
.y104{bottom:681.653333pt;}
.y60{bottom:683.020000pt;}
.y105{bottom:685.510667pt;}
.y92{bottom:685.834667pt;}
.yc4{bottom:687.849333pt;}
.ybf{bottom:687.881333pt;}
.y1bf{bottom:690.408000pt;}
.y186{bottom:691.714667pt;}
.y102{bottom:694.273333pt;}
.y155{bottom:696.984000pt;}
.y12a{bottom:697.382667pt;}
.y103{bottom:698.130667pt;}
.y5f{bottom:699.757333pt;}
.y91{bottom:700.446667pt;}
.yc3{bottom:702.461333pt;}
.y1be{bottom:705.750667pt;}
.y101{bottom:708.221333pt;}
.y2c{bottom:713.621333pt;}
.y154{bottom:713.721333pt;}
.y129{bottom:714.120000pt;}
.y5e{bottom:716.494667pt;}
.yc2{bottom:717.073333pt;}
.y1bd{bottom:721.093333pt;}
.y90{bottom:721.460000pt;}
.y100{bottom:727.844000pt;}
.y153{bottom:730.458667pt;}
.y128{bottom:730.857333pt;}
.yc1{bottom:731.685333pt;}
.y2b{bottom:731.824000pt;}
.y185{bottom:732.125333pt;}
.y5d{bottom:733.232000pt;}
.y1bc{bottom:736.436000pt;}
.y2a{bottom:742.313333pt;}
.y183{bottom:746.737333pt;}
.yff{bottom:746.865333pt;}
.y152{bottom:747.196000pt;}
.y127{bottom:747.594667pt;}
.y8f{bottom:749.566667pt;}
.y5c{bottom:749.969333pt;}
.y1bb{bottom:751.778667pt;}
.ybe{bottom:752.698667pt;}
.y29{bottom:756.660000pt;}
.y28{bottom:760.517333pt;}
.y184{bottom:761.349333pt;}
.y151{bottom:763.933333pt;}
.y126{bottom:764.332000pt;}
.yfc{bottom:764.680000pt;}
.yfe{bottom:765.886667pt;}
.y5b{bottom:766.706667pt;}
.y1ba{bottom:767.121333pt;}
.y27{bottom:774.864000pt;}
.yfb{bottom:777.300000pt;}
.yfd{bottom:778.505333pt;}
.y150{bottom:780.670667pt;}
.ybd{bottom:780.805333pt;}
.y8e{bottom:781.069333pt;}
.y182{bottom:782.362667pt;}
.y1b9{bottom:782.464000pt;}
.y5a{bottom:783.444000pt;}
.y26{bottom:789.209333pt;}
.y181{bottom:789.669333pt;}
.y14f{bottom:797.408000pt;}
.yfa{bottom:797.526667pt;}
.y8d{bottom:797.806667pt;}
.ybc{bottom:797.901333pt;}
.y25{bottom:799.698667pt;}
.y59{bottom:800.181333pt;}
.yf9{bottom:802.764000pt;}
.y1b7{bottom:813.148000pt;}
.y1b8{bottom:813.149333pt;}
.y24{bottom:814.045333pt;}
.y8c{bottom:814.544000pt;}
.y58{bottom:816.918667pt;}
.y17f{bottom:817.989333pt;}
.y14e{bottom:818.130667pt;}
.y17e{bottom:825.294667pt;}
.y1b6{bottom:828.490667pt;}
.yf8{bottom:829.168000pt;}
.ybb{bottom:830.882667pt;}
.y8b{bottom:831.281333pt;}
.y23{bottom:832.248000pt;}
.y180{bottom:832.601333pt;}
.y57{bottom:833.656000pt;}
.yf7{bottom:834.566667pt;}
.yf1{bottom:842.632000pt;}
.y1b5{bottom:843.833333pt;}
.yba{bottom:847.620000pt;}
.y8a{bottom:848.018667pt;}
.y56{bottom:850.393333pt;}
.y17d{bottom:853.614667pt;}
.yf0{bottom:855.252000pt;}
.y1b4{bottom:859.176000pt;}
.yf6{bottom:860.809333pt;}
.y17c{bottom:860.921333pt;}
.yb9{bottom:864.357333pt;}
.y89{bottom:864.754667pt;}
.y55{bottom:867.130667pt;}
.yf5{bottom:867.429333pt;}
.y7{bottom:867.976000pt;}
.y1b3{bottom:874.518667pt;}
.yb8{bottom:881.094667pt;}
.y88{bottom:881.492000pt;}
.y54{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y17b{bottom:889.241333pt;}
.y1b2{bottom:889.861333pt;}
.yf4{bottom:892.449333pt;}
.y17a{bottom:896.546667pt;}
.yb7{bottom:897.832000pt;}
.y87{bottom:898.229333pt;}
.yf3{bottom:900.022667pt;}
.y53{bottom:900.605333pt;}
.y1b1{bottom:905.204000pt;}
.y86{bottom:914.966667pt;}
.y52{bottom:917.342667pt;}
.yb6{bottom:918.553333pt;}
.y1b0{bottom:920.546667pt;}
.y179{bottom:924.866667pt;}
.yf2{bottom:924.880000pt;}
.y5{bottom:925.510667pt;}
.y85{bottom:931.704000pt;}
.y51{bottom:934.080000pt;}
.y1af{bottom:935.889333pt;}
.yef{bottom:943.901333pt;}
.y84{bottom:948.441333pt;}
.yee{bottom:950.212000pt;}
.y4{bottom:950.616000pt;}
.y50{bottom:950.817333pt;}
.y1ae{bottom:951.230667pt;}
.y178{bottom:952.973333pt;}
.y83{bottom:965.178667pt;}
.y1ad{bottom:966.573333pt;}
.y4f{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y82{bottom:981.916000pt;}
.yed{bottom:983.233333pt;}
.y4e{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4d{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.ha{height:27.076941pt;}
.hb{height:27.300102pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h1d{height:30.732706pt;}
.hd{height:30.945242pt;}
.h13{height:31.200285pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h10{height:35.100467pt;}
.h1c{height:36.873667pt;}
.h11{height:38.415786pt;}
.h17{height:38.638362pt;}
.h12{height:38.681455pt;}
.h4{height:39.000258pt;}
.h22{height:44.660102pt;}
.h2{height:45.272024pt;}
.h6{height:48.481423pt;}
.h18{height:54.289242pt;}
.h19{height:54.939908pt;}
.h14{height:55.970039pt;}
.h1f{height:56.182575pt;}
.h1e{height:56.187908pt;}
.h1a{height:59.825242pt;}
.h1b{height:60.475908pt;}
.h16{height:63.721626pt;}
.h20{height:64.034876pt;}
.h21{height:64.040209pt;}
.h5{height:69.148877pt;}
.h15{height:81.212706pt;}
.h3{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.724208pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.605861pt;}
.x66{left:58.904000pt;}
.x9b{left:60.296000pt;}
.x95{left:65.616000pt;}
.xa7{left:74.893333pt;}
.x61{left:75.952000pt;}
.x9c{left:77.385333pt;}
.x67{left:79.958667pt;}
.x9f{left:82.562667pt;}
.x99{left:85.408000pt;}
.x96{left:88.293333pt;}
.xa0{left:90.781333pt;}
.x9a{left:92.713333pt;}
.x62{left:121.501333pt;}
.x63{left:154.961333pt;}
.x69{left:160.914667pt;}
.x6c{left:164.894667pt;}
.x6a{left:176.600000pt;}
.x68{left:179.161333pt;}
.x6b{left:182.110667pt;}
.x6d{left:187.130667pt;}
.x9d{left:216.681333pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x44{left:233.582667pt;}
.x46{left:238.060000pt;}
.x6{left:240.788000pt;}
.x42{left:243.278667pt;}
.x43{left:246.613333pt;}
.x9{left:251.365333pt;}
.x41{left:254.128000pt;}
.x4f{left:255.954667pt;}
.x79{left:258.812000pt;}
.x60{left:260.317333pt;}
.x45{left:262.096000pt;}
.x47{left:263.076000pt;}
.x3b{left:265.594667pt;}
.x5f{left:269.678667pt;}
.x59{left:271.540000pt;}
.x8{left:275.058667pt;}
.x24{left:280.120000pt;}
.x73{left:282.584000pt;}
.x25{left:293.404000pt;}
.x74{left:295.868000pt;}
.x26{left:300.178667pt;}
.x18{left:302.150667pt;}
.x94{left:303.337333pt;}
.x39{left:304.301333pt;}
.x19{left:308.793333pt;}
.x27{left:313.462667pt;}
.x9e{left:315.850667pt;}
.x3a{left:317.584000pt;}
.x64{left:323.756000pt;}
.x91{left:330.957333pt;}
.xe{left:335.641333pt;}
.x93{left:336.720000pt;}
.xf{left:342.282667pt;}
.x10{left:345.670667pt;}
.x37{left:348.930667pt;}
.x48{left:349.936000pt;}
.x11{left:352.312000pt;}
.x97{left:354.250667pt;}
.x8c{left:356.164000pt;}
.x1e{left:360.372000pt;}
.x38{left:362.214667pt;}
.x49{left:363.220000pt;}
.x5e{left:367.658667pt;}
.x8d{left:369.446667pt;}
.x1f{left:373.654667pt;}
.x5b{left:376.213333pt;}
.x5c{left:381.013333pt;}
.x5a{left:383.708000pt;}
.x92{left:384.686667pt;}
.x3c{left:386.766667pt;}
.x5d{left:391.820000pt;}
.x7e{left:395.709333pt;}
.x75{left:404.830667pt;}
.x56{left:408.926667pt;}
.x76{left:419.081333pt;}
.x57{left:422.210667pt;}
.x28{left:433.238667pt;}
.x14{left:436.938667pt;}
.x29{left:439.880000pt;}
.x15{left:443.580000pt;}
.x16{left:446.950667pt;}
.x17{left:453.593333pt;}
.x2a{left:456.550667pt;}
.x2d{left:457.982667pt;}
.x2b{left:459.938667pt;}
.x51{left:463.013333pt;}
.x70{left:468.285333pt;}
.x1a{left:470.418667pt;}
.x2c{left:473.222667pt;}
.x2e{left:474.564000pt;}
.x1b{left:477.060000pt;}
.x71{left:481.569333pt;}
.x36{left:486.050667pt;}
.x2f{left:487.846667pt;}
.x88{left:490.241333pt;}
.x83{left:494.418667pt;}
.x4e{left:500.465333pt;}
.x72{left:501.534667pt;}
.x89{left:503.524000pt;}
.x84{left:507.702667pt;}
.x8a{left:510.140000pt;}
.x85{left:511.029333pt;}
.x32{left:512.880000pt;}
.x8b{left:523.422667pt;}
.x86{left:524.313333pt;}
.x33{left:526.162667pt;}
.x12{left:531.752000pt;}
.x34{left:532.877333pt;}
.x13{left:538.393333pt;}
.x35{left:546.161333pt;}
.x7a{left:547.973333pt;}
.x1c{left:556.145333pt;}
.x50{left:559.237333pt;}
.x7b{left:561.257333pt;}
.x98{left:565.356000pt;}
.x3d{left:567.553333pt;}
.xa{left:569.125333pt;}
.x1d{left:572.706667pt;}
.xb{left:575.766667pt;}
.xc{left:579.153333pt;}
.x3e{left:580.837333pt;}
.xd{left:585.796000pt;}
.xa3{left:595.341333pt;}
.x65{left:599.174667pt;}
.x6e{left:602.833333pt;}
.x6f{left:610.793333pt;}
.xa5{left:613.448000pt;}
.xa4{left:619.252000pt;}
.x3f{left:630.666667pt;}
.x8e{left:631.849333pt;}
.x77{left:633.270667pt;}
.x7f{left:635.310667pt;}
.xa6{left:637.357333pt;}
.x30{left:640.245333pt;}
.x78{left:646.554667pt;}
.x80{left:648.594667pt;}
.x31{left:653.528000pt;}
.x20{left:660.897333pt;}
.x7c{left:662.177333pt;}
.x21{left:667.538667pt;}
.x22{left:670.926667pt;}
.x7d{left:675.460000pt;}
.x81{left:678.361333pt;}
.x23{left:684.209333pt;}
.x4a{left:685.621333pt;}
.x82{left:688.390667pt;}
.x87{left:689.462667pt;}
.x8f{left:690.509333pt;}
.x58{left:694.349333pt;}
.xa1{left:696.437333pt;}
.x4b{left:698.905333pt;}
.x4c{left:701.565333pt;}
.x52{left:710.216000pt;}
.x90{left:713.028000pt;}
.x4d{left:714.849333pt;}
.xa2{left:720.348000pt;}
.x53{left:723.500000pt;}
.x54{left:726.873333pt;}
.x55{left:740.157333pt;}
.x40{left:744.770667pt;}
}




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