
    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_8a6b235a569bcd4df4108cec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_8510a45ec816210d97607781.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_fb1d134a9daba0b693fa0fd6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.991000;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_1b365e737669b28ed748a976.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991000;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_f561a16d2db60817ef69c090.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.853000;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_168d1325a13dbd5326a72cd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.628000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aad9719c3e510dd740ccbba8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.992000;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_47ffeb02ab4a360c68f698f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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_16e1f43de11a2292c6861c12.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_41cc6e78bceead7c5d12c7d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_3f79fb5f3cbe7e475b78264c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_05851196b51b564c2dc73870.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aad9719c3e510dd740ccbba8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_edc412db7a47f22c1e144296.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b68f40d4d1933f39fedeac94.woff2')format("woff");}.fff{font-family:fff;line-height:0.259000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7aa99a3df214cc568aaf3612.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m9{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);}
.m24{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);}
.m1f{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);}
.m20{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);}
.m14{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);}
.m22{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);}
.m19{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);}
.m12{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);}
.ma{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);}
.m3{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);}
.m1d{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);}
.m18{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);}
.mc{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);}
.mb{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);}
.m1a{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);}
.m4{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);}
.m25{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);}
.m6{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);}
.m13{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);}
.m23{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);}
.m1c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.mf{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);}
.m16{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);}
.m27{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);}
.me{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);}
.m10{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);}
.m1b{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);}
.m17{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);}
.m8{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);}
.m7{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);}
.m1e{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);}
.m5{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);}
.m11{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);}
.vc{vertical-align:-41.004000px;}
.v3{vertical-align:-15.840000px;}
.v8{vertical-align:-13.350000px;}
.v2{vertical-align:-7.170000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:6.048000px;}
.v4{vertical-align:8.070000px;}
.v9{vertical-align:14.118000px;}
.v1{vertical-align:23.760000px;}
.vd{vertical-align:25.818000px;}
.v6{vertical-align:32.124000px;}
.ve{vertical-align:33.888000px;}
.v7{vertical-align:36.906000px;}
.v5{vertical-align:40.194000px;}
.vb{vertical-align:74.892000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.236491px;}
.ls10{letter-spacing:0.259459px;}
.ls1c{letter-spacing:0.278486px;}
.ls1b{letter-spacing:0.285955px;}
.ls48{letter-spacing:0.289949px;}
.ls4c{letter-spacing:0.300010px;}
.ls1f{letter-spacing:0.305165px;}
.ls44{letter-spacing:0.306010px;}
.ls50{letter-spacing:0.570720px;}
.ls39{letter-spacing:0.571526px;}
.ls37{letter-spacing:0.573936px;}
.ls47{letter-spacing:0.576720px;}
.ls49{letter-spacing:0.860774px;}
.ls4a{letter-spacing:0.914573px;}
.lsc{letter-spacing:1.075968px;}
.ls12{letter-spacing:1.370913px;}
.ls20{letter-spacing:1.376602px;}
.ls11{letter-spacing:1.376913px;}
.ls24{letter-spacing:1.379971px;}
.ls42{letter-spacing:1.578072px;}
.ls16{letter-spacing:1.873162px;}
.ls2e{letter-spacing:2.151936px;}
.ls1d{letter-spacing:2.752667px;}
.ls2c{letter-spacing:2.947997px;}
.ls32{letter-spacing:2.960669px;}
.ls30{letter-spacing:2.983546px;}
.ls6{letter-spacing:2.990943px;}
.ls0{letter-spacing:2.991487px;}
.ls2a{letter-spacing:3.152006px;}
.ls2f{letter-spacing:3.157440px;}
.ls4f{letter-spacing:3.866276px;}
.ls3b{letter-spacing:3.905728px;}
.lsd{letter-spacing:4.160297px;}
.ls3d{letter-spacing:4.723882px;}
.ls18{letter-spacing:5.038186px;}
.ls14{letter-spacing:5.044186px;}
.ls34{letter-spacing:5.257882px;}
.ls2d{letter-spacing:5.678913px;}
.ls13{letter-spacing:5.716667px;}
.ls17{letter-spacing:5.811097px;}
.ls27{letter-spacing:6.114701px;}
.ls52{letter-spacing:6.124195px;}
.lsb{letter-spacing:6.724800px;}
.ls1e{letter-spacing:6.871882px;}
.lse{letter-spacing:6.877882px;}
.ls53{letter-spacing:7.951882px;}
.ls3c{letter-spacing:9.355601px;}
.ls35{letter-spacing:9.522317px;}
.ls51{letter-spacing:9.898906px;}
.ls3f{letter-spacing:10.060301px;}
.ls2b{letter-spacing:10.436890px;}
.ls7{letter-spacing:10.460700px;}
.ls5b{letter-spacing:10.867277px;}
.ls22{letter-spacing:11.943245px;}
.ls5{letter-spacing:11.955150px;}
.ls28{letter-spacing:11.997043px;}
.ls4d{letter-spacing:12.481229px;}
.ls21{letter-spacing:12.588826px;}
.ls5a{letter-spacing:12.804019px;}
.ls46{letter-spacing:13.073011px;}
.ls59{letter-spacing:13.126810px;}
.lsa{letter-spacing:13.342003px;}
.ls1{letter-spacing:13.449600px;}
.ls9{letter-spacing:13.503398px;}
.ls57{letter-spacing:13.664794px;}
.ls25{letter-spacing:13.826189px;}
.ls4{letter-spacing:13.915795px;}
.ls3{letter-spacing:13.963615px;}
.ls1a{letter-spacing:15.816730px;}
.ls56{letter-spacing:16.677504px;}
.ls23{letter-spacing:16.972109px;}
.ls29{letter-spacing:18.452851px;}
.ls3e{letter-spacing:18.829882px;}
.ls38{letter-spacing:19.220297px;}
.ls41{letter-spacing:20.066803px;}
.ls3a{letter-spacing:20.714297px;}
.ls58{letter-spacing:20.738297px;}
.lsf{letter-spacing:21.794297px;}
.ls19{letter-spacing:21.817882px;}
.ls33{letter-spacing:21.823882px;}
.ls45{letter-spacing:21.836297px;}
.ls15{letter-spacing:22.897882px;}
.ls43{letter-spacing:23.119882px;}
.ls55{letter-spacing:28.646297px;}
.ls4e{letter-spacing:37.336090px;}
.ls31{letter-spacing:1036.103386px;}
.ls54{letter-spacing:1040.465069px;}
.ls4b{letter-spacing:1055.201818px;}
.ls36{letter-spacing:1098.240538px;}
.ls40{letter-spacing:1123.804790px;}
.ls26{letter-spacing:1141.160957px;}
.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;}
}
.ws42{word-spacing:-55.089562px;}
.ws4a{word-spacing:-45.298253px;}
.ws3e{word-spacing:-37.712678px;}
.ws54{word-spacing:-35.775936px;}
.ws3d{word-spacing:-34.269581px;}
.ws40{word-spacing:-25.984627px;}
.ws3f{word-spacing:-25.823232px;}
.ws4e{word-spacing:-20.550989px;}
.ws31{word-spacing:-13.449600px;}
.wse{word-spacing:-11.955150px;}
.ws71{word-spacing:-10.460700px;}
.ws41{word-spacing:-4.303872px;}
.ws29{word-spacing:-3.604493px;}
.ws6c{word-spacing:-3.012710px;}
.ws2{word-spacing:-2.914050px;}
.ws6b{word-spacing:-2.636122px;}
.ws6a{word-spacing:-2.582323px;}
.ws35{word-spacing:-2.528525px;}
.ws4{word-spacing:-2.247568px;}
.ws77{word-spacing:-1.909350px;}
.ws6d{word-spacing:-1.882944px;}
.ws76{word-spacing:-1.757398px;}
.ws78{word-spacing:-1.715555px;}
.ws51{word-spacing:-1.560154px;}
.ws48{word-spacing:-1.452557px;}
.ws47{word-spacing:-1.398758px;}
.ws25{word-spacing:-1.344960px;}
.ws66{word-spacing:-1.237363px;}
.ws61{word-spacing:-1.129766px;}
.ws4d{word-spacing:-1.075968px;}
.ws27{word-spacing:-0.968371px;}
.ws4c{word-spacing:-0.908591px;}
.ws5e{word-spacing:-0.699379px;}
.ws33{word-spacing:-0.430387px;}
.ws28{word-spacing:-0.376589px;}
.ws57{word-spacing:-0.322790px;}
.ws50{word-spacing:-0.268992px;}
.ws70{word-spacing:-0.251057px;}
.ws3b{word-spacing:-0.239103px;}
.ws20{word-spacing:-0.215194px;}
.ws3a{word-spacing:-0.191282px;}
.ws1c{word-spacing:-0.167371px;}
.ws1a{word-spacing:-0.161395px;}
.ws7{word-spacing:-0.143462px;}
.ws12{word-spacing:-0.107597px;}
.ws1d{word-spacing:-0.083686px;}
.ws18{word-spacing:-0.053798px;}
.ws6{word-spacing:-0.047821px;}
.ws8a{word-spacing:-0.044831px;}
.ws1b{word-spacing:-0.041843px;}
.ws43{word-spacing:-0.039452px;}
.ws7e{word-spacing:-0.026831px;}
.ws7b{word-spacing:-0.014831px;}
.ws8b{word-spacing:-0.006739px;}
.ws1{word-spacing:0.000000px;}
.ws80{word-spacing:0.010100px;}
.ws74{word-spacing:0.011104px;}
.ws8c{word-spacing:0.014044px;}
.ws6f{word-spacing:0.017648px;}
.ws72{word-spacing:0.034100px;}
.ws16{word-spacing:0.053798px;}
.ws6e{word-spacing:0.083686px;}
.ws3{word-spacing:0.095641px;}
.ws15{word-spacing:0.107597px;}
.wsd{word-spacing:0.143462px;}
.ws17{word-spacing:0.161395px;}
.ws7f{word-spacing:0.167371px;}
.ws8{word-spacing:0.191282px;}
.ws30{word-spacing:0.215194px;}
.ws67{word-spacing:0.239103px;}
.ws10{word-spacing:0.268992px;}
.ws21{word-spacing:0.322790px;}
.ws14{word-spacing:0.376589px;}
.ws82{word-spacing:0.418428px;}
.ws19{word-spacing:0.537984px;}
.ws4b{word-spacing:0.591782px;}
.ws83{word-spacing:0.657169px;}
.ws2a{word-spacing:0.753178px;}
.ws7c{word-spacing:0.779731px;}
.ws2b{word-spacing:0.860774px;}
.ws60{word-spacing:0.914573px;}
.ws63{word-spacing:1.022170px;}
.ws34{word-spacing:1.075968px;}
.ws5f{word-spacing:1.398758px;}
.ws13{word-spacing:1.506355px;}
.ws5d{word-spacing:1.560154px;}
.ws75{word-spacing:1.841083px;}
.ws3c{word-spacing:1.936742px;}
.ws9{word-spacing:1.960645px;}
.ws55{word-spacing:1.990541px;}
.ws56{word-spacing:2.098138px;}
.ws11{word-spacing:2.151936px;}
.ws64{word-spacing:2.259533px;}
.ws26{word-spacing:2.313331px;}
.ws5{word-spacing:2.343209px;}
.ws23{word-spacing:2.367130px;}
.ws39{word-spacing:2.474726px;}
.ws69{word-spacing:2.582323px;}
.ws2e{word-spacing:2.797517px;}
.ws65{word-spacing:2.851315px;}
.ws73{word-spacing:2.928996px;}
.ws5a{word-spacing:3.227904px;}
.ws1e{word-spacing:3.389299px;}
.ws24{word-spacing:3.712090px;}
.ws85{word-spacing:4.100594px;}
.ws79{word-spacing:4.226123px;}
.ws49{word-spacing:4.303872px;}
.ws84{word-spacing:4.373731px;}
.ws88{word-spacing:4.560865px;}
.ws86{word-spacing:5.021136px;}
.ws22{word-spacing:5.164646px;}
.ws87{word-spacing:7.650704px;}
.ws52{word-spacing:11.835648px;}
.wsc{word-spacing:11.907329px;}
.ws2c{word-spacing:13.126810px;}
.ws36{word-spacing:13.234406px;}
.ws53{word-spacing:13.288205px;}
.ws4f{word-spacing:13.342003px;}
.ws1f{word-spacing:13.395802px;}
.ws37{word-spacing:13.449600px;}
.ws62{word-spacing:13.557197px;}
.ws2f{word-spacing:13.610995px;}
.ws32{word-spacing:13.718592px;}
.wsa{word-spacing:13.867974px;}
.wsb{word-spacing:13.915795px;}
.ws81{word-spacing:14.686823px;}
.ws58{word-spacing:14.727278px;}
.ws7d{word-spacing:15.063408px;}
.ws8d{word-spacing:15.607364px;}
.ws38{word-spacing:15.924326px;}
.ws2d{word-spacing:16.139520px;}
.ws0{word-spacing:17.861069px;}
.ws46{word-spacing:18.791013px;}
.ws7a{word-spacing:18.871103px;}
.ws59{word-spacing:19.331013px;}
.ws44{word-spacing:20.285013px;}
.ws45{word-spacing:21.779013px;}
.ws5c{word-spacing:21.803013px;}
.ws5b{word-spacing:29.717013px;}
.ws89{word-spacing:36.737978px;}
.wsf{word-spacing:53.744602px;}
.ws68{word-spacing:262.891709px;}
._9{margin-left:-6.671002px;}
._7{margin-left:-4.758145px;}
._1{margin-left:-3.207275px;}
._1a{margin-left:-2.188970px;}
._0{margin-left:-1.075968px;}
._5{width:1.243336px;}
._4{width:2.421820px;}
._a{width:3.472952px;}
._12{width:5.016125px;}
._11{width:6.085747px;}
._14{width:7.680115px;}
._13{width:10.041319px;}
._6{width:11.046568px;}
._c{width:12.696422px;}
._2{width:14.104146px;}
._15{width:15.292140px;}
._3{width:16.363650px;}
._18{width:17.592077px;}
._10{width:20.819981px;}
._8{width:22.953879px;}
._16{width:24.436327px;}
._21{width:25.776078px;}
._17{width:28.297958px;}
._19{width:29.911910px;}
._23{width:31.813130px;}
._22{width:33.890258px;}
._f{width:52.722432px;}
._d{width:53.798400px;}
._1b{width:54.874368px;}
._1c{width:125.238036px;}
._1f{width:249.442109px;}
._20{width:262.897709px;}
._1e{width:303.300307px;}
._1d{width:376.143341px;}
._e{width:721.746457px;}
._b{width:1479.705230px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(76,0,217);}
.fc3{color:rgb(0,54,201);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:32.877000px;}
.fs0{font-size:35.865600px;}
.fs1{font-size:39.451800px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs3{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.yb4{bottom:88.879500px;}
.y41{bottom:90.223500px;}
.y73{bottom:94.560000px;}
.yb3{bottom:105.318000px;}
.y40{bottom:106.662000px;}
.ye4{bottom:112.494000px;}
.y12f{bottom:113.085000px;}
.y15f{bottom:114.031500px;}
.y1d7{bottom:114.081000px;}
.y19a{bottom:115.528500px;}
.y186{bottom:115.551000px;}
.y112{bottom:115.933500px;}
.y145{bottom:120.484500px;}
.yb2{bottom:121.756500px;}
.y3f{bottom:123.100500px;}
.y72{bottom:127.590000px;}
.y1d6{bottom:129.025500px;}
.ye3{bottom:133.041000px;}
.y12e{bottom:133.632000px;}
.y15e{bottom:134.580000px;}
.y199{bottom:136.075500px;}
.y185{bottom:136.099500px;}
.y111{bottom:136.482000px;}
.y1a7{bottom:138.060000px;}
.yb1{bottom:138.195000px;}
.y3e{bottom:139.539000px;}
.y71{bottom:142.534500px;}
.y1d5{bottom:143.968500px;}
.y144{bottom:150.022500px;}
.y1a6{bottom:153.003000px;}
.ye2{bottom:153.589500px;}
.y12d{bottom:154.180500px;}
.yb0{bottom:154.632000px;}
.y3d{bottom:155.977500px;}
.y198{bottom:156.624000px;}
.y184{bottom:156.648000px;}
.y110{bottom:157.030500px;}
.y1d4{bottom:158.913000px;}
.y70{bottom:158.973000px;}
.y15d{bottom:162.426000px;}
.y1a5{bottom:170.488500px;}
.y143{bottom:170.569500px;}
.yaf{bottom:171.070500px;}
.y3c{bottom:172.416000px;}
.y1d3{bottom:173.857500px;}
.y6f{bottom:173.916000px;}
.ye1{bottom:174.138000px;}
.y12c{bottom:174.729000px;}
.y197{bottom:177.172500px;}
.y10f{bottom:177.577500px;}
.y15c{bottom:182.974500px;}
.yae{bottom:187.509000px;}
.y1a4{bottom:187.524000px;}
.y183{bottom:188.149500px;}
.y1d2{bottom:188.800500px;}
.y3b{bottom:188.854500px;}
.y6e{bottom:188.860500px;}
.ye0{bottom:194.685000px;}
.y12b{bottom:195.276000px;}
.y196{bottom:197.719500px;}
.y142{bottom:200.107500px;}
.y1d1{bottom:203.745000px;}
.y6d{bottom:203.805000px;}
.yad{bottom:203.947500px;}
.y1a3{bottom:204.559500px;}
.y3a{bottom:205.293000px;}
.y15b{bottom:208.659000px;}
.y182{bottom:208.696500px;}
.y10e{bottom:215.281500px;}
.y12a{bottom:215.824500px;}
.y195{bottom:218.268000px;}
.y1d0{bottom:218.689500px;}
.ydf{bottom:220.369500px;}
.yac{bottom:220.386000px;}
.y1a2{bottom:221.596500px;}
.y39{bottom:221.731500px;}
.y181{bottom:229.245000px;}
.y141{bottom:229.645500px;}
.y6c{bottom:232.513500px;}
.y1cf{bottom:233.632500px;}
.y10d{bottom:235.828500px;}
.y129{bottom:236.373000px;}
.yab{bottom:236.824500px;}
.y38{bottom:238.170000px;}
.y1a1{bottom:238.632000px;}
.y194{bottom:238.815000px;}
.y6b{bottom:245.118000px;}
.y15a{bottom:247.695000px;}
.y1ce{bottom:248.577000px;}
.y140{bottom:250.192500px;}
.yaa{bottom:253.263000px;}
.y37{bottom:254.607000px;}
.y1a0{bottom:255.070500px;}
.yde{bottom:256.329000px;}
.y10c{bottom:256.377000px;}
.y128{bottom:256.920000px;}
.y193{bottom:259.363500px;}
.y180{bottom:260.746500px;}
.y1cd{bottom:263.521500px;}
.y6a{bottom:265.507500px;}
.y159{bottom:268.243500px;}
.ya9{bottom:269.701500px;}
.y13f{bottom:270.741000px;}
.y36{bottom:271.045500px;}
.y19f{bottom:275.694000px;}
.ydd{bottom:276.877500px;}
.y10b{bottom:276.925500px;}
.y127{bottom:277.468500px;}
.y1cc{bottom:278.464500px;}
.y17f{bottom:281.295000px;}
.y192{bottom:285.048000px;}
.y69{bottom:286.054500px;}
.ya8{bottom:286.140000px;}
.y35{bottom:287.484000px;}
.y158{bottom:288.790500px;}
.y13e{bottom:291.289500px;}
.y1cb{bottom:293.409000px;}
.ydc{bottom:297.424500px;}
.y10a{bottom:297.472500px;}
.y126{bottom:298.015500px;}
.y17e{bottom:301.843500px;}
.ya7{bottom:302.578500px;}
.y34{bottom:303.922500px;}
.y19e{bottom:304.236000px;}
.y68{bottom:306.603000px;}
.y13d{bottom:307.105500px;}
.y1ca{bottom:308.352000px;}
.y157{bottom:309.339000px;}
.y13c{bottom:316.332000px;}
.ydb{bottom:317.973000px;}
.y125{bottom:318.564000px;}
.ya6{bottom:319.015500px;}
.y19d{bottom:319.180500px;}
.y33{bottom:320.361000px;}
.y17d{bottom:322.390500px;}
.y1c9{bottom:323.296500px;}
.y191{bottom:327.076500px;}
.y67{bottom:327.150000px;}
.y156{bottom:329.887500px;}
.y109{bottom:335.176500px;}
.ya5{bottom:335.454000px;}
.y32{bottom:336.799500px;}
.y1c8{bottom:338.241000px;}
.yda{bottom:338.521500px;}
.y124{bottom:339.112500px;}
.y13b{bottom:340.108500px;}
.y190{bottom:347.625000px;}
.y66{bottom:347.698500px;}
.y155{bottom:350.434500px;}
.ya4{bottom:351.892500px;}
.y1c7{bottom:353.184000px;}
.y31{bottom:353.238000px;}
.y108{bottom:355.723500px;}
.y13a{bottom:358.638000px;}
.yd9{bottom:359.068500px;}
.y17c{bottom:359.328000px;}
.y123{bottom:359.659500px;}
.y139{bottom:360.655500px;}
.y18f{bottom:368.172000px;}
.y65{bottom:368.247000px;}
.ya3{bottom:368.331000px;}
.y30{bottom:369.676500px;}
.y154{bottom:370.983000px;}
.y1c6{bottom:373.266000px;}
.y107{bottom:376.272000px;}
.y138{bottom:379.186500px;}
.yd8{bottom:379.617000px;}
.y17b{bottom:379.876500px;}
.y122{bottom:380.208000px;}
.y137{bottom:381.204000px;}
.ya2{bottom:384.769500px;}
.y2f{bottom:386.115000px;}
.y18e{bottom:388.720500px;}
.y64{bottom:388.794000px;}
.y106{bottom:396.819000px;}
.y153{bottom:398.829000px;}
.yd7{bottom:400.164000px;}
.y17a{bottom:400.425000px;}
.y121{bottom:400.756500px;}
.ya1{bottom:401.208000px;}
.y136{bottom:401.752500px;}
.y2e{bottom:402.553500px;}
.y63{bottom:409.342500px;}
.y1c5{bottom:412.399500px;}
.y18d{bottom:414.405000px;}
.y105{bottom:417.367500px;}
.ya0{bottom:417.646500px;}
.y2d{bottom:418.990500px;}
.y152{bottom:419.377500px;}
.yd6{bottom:420.712500px;}
.y179{bottom:420.972000px;}
.y120{bottom:421.303500px;}
.y135{bottom:422.299500px;}
.y62{bottom:429.891000px;}
.y1c4{bottom:432.948000px;}
.y9f{bottom:434.085000px;}
.y2c{bottom:435.429000px;}
.y104{bottom:437.916000px;}
.y18c{bottom:440.089500px;}
.yd5{bottom:441.261000px;}
.y178{bottom:441.520500px;}
.y11f{bottom:441.852000px;}
.y134{bottom:442.848000px;}
.y151{bottom:445.062000px;}
.y61{bottom:450.438000px;}
.y9e{bottom:450.523500px;}
.y2b{bottom:451.867500px;}
.y1c3{bottom:453.496500px;}
.y177{bottom:462.069000px;}
.y133{bottom:463.395000px;}
.y103{bottom:463.600500px;}
.yd4{bottom:466.945500px;}
.y9d{bottom:466.962000px;}
.y2a{bottom:468.306000px;}
.y60{bottom:470.986500px;}
.y11e{bottom:473.856000px;}
.y1c2{bottom:474.043500px;}
.y18b{bottom:482.118000px;}
.y176{bottom:482.616000px;}
.y9c{bottom:483.399000px;}
.y132{bottom:483.943500px;}
.y150{bottom:484.098000px;}
.y29{bottom:484.744500px;}
.y5f{bottom:491.533500px;}
.y11d{bottom:494.404500px;}
.y1c1{bottom:494.592000px;}
.y9b{bottom:499.837500px;}
.y28{bottom:501.183000px;}
.y18a{bottom:502.666500px;}
.yd3{bottom:502.905000px;}
.y175{bottom:503.164500px;}
.y14f{bottom:504.646500px;}
.y102{bottom:506.440500px;}
.y5e{bottom:512.082000px;}
.y11c{bottom:514.951500px;}
.y1c0{bottom:515.140500px;}
.y9a{bottom:516.276000px;}
.y27{bottom:517.621500px;}
.y189{bottom:523.213500px;}
.yd2{bottom:523.452000px;}
.y174{bottom:523.711500px;}
.y14d{bottom:525.193500px;}
.y101{bottom:526.989000px;}
.y14e{bottom:530.076000px;}
.y99{bottom:532.714500px;}
.y26{bottom:534.060000px;}
.y11b{bottom:535.500000px;}
.y1bf{bottom:535.687500px;}
.y5d{bottom:537.766500px;}
.yd1{bottom:544.000500px;}
.y173{bottom:544.260000px;}
.y100{bottom:547.536000px;}
.y14c{bottom:548.568000px;}
.y98{bottom:549.153000px;}
.y25{bottom:550.498500px;}
.y11a{bottom:556.048500px;}
.y1be{bottom:556.236000px;}
.y148{bottom:561.325500px;}
.y14b{bottom:561.513000px;}
.yd0{bottom:564.547500px;}
.y97{bottom:565.591500px;}
.y24{bottom:566.937000px;}
.yff{bottom:568.084500px;}
.y14a{bottom:569.356500px;}
.y172{bottom:569.944500px;}
.y5c{bottom:574.170000px;}
.y119{bottom:576.595500px;}
.y1bd{bottom:576.783000px;}
.y96{bottom:582.030000px;}
.y149{bottom:582.300000px;}
.y23{bottom:583.375500px;}
.ycf{bottom:585.096000px;}
.yfe{bottom:588.633000px;}
.y188{bottom:589.333500px;}
.y131{bottom:589.714500px;}
.y19c{bottom:592.666500px;}
.y5b{bottom:592.851000px;}
.y147{bottom:596.442000px;}
.y118{bottom:597.144000px;}
.y1bc{bottom:597.331500px;}
.y95{bottom:598.468500px;}
.y22{bottom:599.812500px;}
.y187{bottom:604.276500px;}
.y130{bottom:604.659000px;}
.yce{bottom:605.644500px;}
.y19b{bottom:607.611000px;}
.yfd{bottom:609.180000px;}
.y5a{bottom:611.530500px;}
.y171{bottom:612.019500px;}
.y94{bottom:614.907000px;}
.y21{bottom:616.251000px;}
.y117{bottom:617.692500px;}
.y1bb{bottom:623.016000px;}
.ycd{bottom:626.191500px;}
.yfc{bottom:629.728500px;}
.y93{bottom:631.345500px;}
.y170{bottom:632.568000px;}
.y20{bottom:632.689500px;}
.y59{bottom:638.137500px;}
.y116{bottom:638.239500px;}
.ycc{bottom:646.740000px;}
.y92{bottom:647.784000px;}
.y1f{bottom:649.128000px;}
.yfb{bottom:650.275500px;}
.y146{bottom:650.593500px;}
.y16f{bottom:653.116500px;}
.y58{bottom:656.818500px;}
.y115{bottom:658.788000px;}
.y1ba{bottom:662.151000px;}
.y91{bottom:664.221000px;}
.y1e{bottom:665.566500px;}
.ycb{bottom:667.288500px;}
.yfa{bottom:670.824000px;}
.y57{bottom:675.498000px;}
.y16e{bottom:678.801000px;}
.y90{bottom:680.659500px;}
.y1d{bottom:682.005000px;}
.y1b9{bottom:682.699500px;}
.yca{bottom:687.835500px;}
.yf9{bottom:691.372500px;}
.y8f{bottom:697.098000px;}
.y1c{bottom:698.443500px;}
.y56{bottom:702.105000px;}
.y1b8{bottom:703.246500px;}
.y114{bottom:705.361500px;}
.yc9{bottom:708.384000px;}
.yf8{bottom:711.919500px;}
.y8e{bottom:713.536500px;}
.y1b{bottom:714.882000px;}
.y113{bottom:720.304500px;}
.y55{bottom:720.786000px;}
.y16d{bottom:720.876000px;}
.y1b7{bottom:723.795000px;}
.yc8{bottom:728.932500px;}
.y8d{bottom:729.975000px;}
.y1a{bottom:731.320500px;}
.yf7{bottom:732.468000px;}
.y16c{bottom:741.423000px;}
.y1b6{bottom:744.342000px;}
.y8c{bottom:746.413500px;}
.y54{bottom:747.393000px;}
.y19{bottom:747.759000px;}
.yc7{bottom:749.479500px;}
.yf6{bottom:753.016500px;}
.y8b{bottom:762.852000px;}
.y18{bottom:764.196000px;}
.y1b5{bottom:764.890500px;}
.y53{bottom:766.072500px;}
.y16b{bottom:767.109000px;}
.yc6{bottom:770.028000px;}
.yf5{bottom:773.563500px;}
.y8a{bottom:779.290500px;}
.y17{bottom:780.634500px;}
.y52{bottom:784.753500px;}
.y1b4{bottom:785.439000px;}
.y16a{bottom:792.793500px;}
.yf4{bottom:794.112000px;}
.yc5{bottom:795.712500px;}
.y89{bottom:795.729000px;}
.y16{bottom:797.073000px;}
.y51{bottom:803.433000px;}
.y1b3{bottom:805.986000px;}
.y88{bottom:812.167500px;}
.y15{bottom:813.511500px;}
.yf3{bottom:814.660500px;}
.y50{bottom:822.112500px;}
.y1b2{bottom:826.534500px;}
.y87{bottom:828.604500px;}
.y14{bottom:829.950000px;}
.yc4{bottom:831.672000px;}
.y169{bottom:834.868500px;}
.yf2{bottom:835.207500px;}
.y4f{bottom:840.793500px;}
.y86{bottom:845.043000px;}
.y13{bottom:846.388500px;}
.y1b1{bottom:847.083000px;}
.yc3{bottom:852.219000px;}
.y168{bottom:855.415500px;}
.yf1{bottom:855.756000px;}
.y1ea{bottom:855.955500px;}
.y4e{bottom:859.473000px;}
.y85{bottom:861.481500px;}
.y12{bottom:862.827000px;}
.y1b0{bottom:867.630000px;}
.y1e9{bottom:870.900000px;}
.y167{bottom:875.964000px;}
.yf0{bottom:876.303000px;}
.yc2{bottom:877.905000px;}
.y84{bottom:877.920000px;}
.y4d{bottom:878.152500px;}
.y11{bottom:879.265500px;}
.y1e8{bottom:885.843000px;}
.y1af{bottom:888.178500px;}
.y83{bottom:894.358500px;}
.y10{bottom:895.704000px;}
.y165{bottom:896.512500px;}
.y166{bottom:896.592000px;}
.y4c{bottom:896.833500px;}
.yef{bottom:896.851500px;}
.y1e7{bottom:900.787500px;}
.y1ae{bottom:908.727000px;}
.y82{bottom:910.797000px;}
.yf{bottom:912.142500px;}
.yc1{bottom:913.863000px;}
.y4b{bottom:915.513000px;}
.y1e6{bottom:915.732000px;}
.y164{bottom:917.059500px;}
.yee{bottom:917.400000px;}
.y81{bottom:927.235500px;}
.ye{bottom:928.579500px;}
.y1ad{bottom:929.274000px;}
.y1e5{bottom:930.675000px;}
.y4a{bottom:934.192500px;}
.yc0{bottom:934.411500px;}
.yed{bottom:937.947000px;}
.y163{bottom:940.066500px;}
.y80{bottom:943.674000px;}
.yd{bottom:945.018000px;}
.y1e4{bottom:945.619500px;}
.y162{bottom:948.538500px;}
.y1ac{bottom:949.822500px;}
.ybf{bottom:954.958500px;}
.yec{bottom:958.495500px;}
.y7f{bottom:960.112500px;}
.y1e3{bottom:960.562500px;}
.yc{bottom:961.456500px;}
.y49{bottom:964.473000px;}
.y1ab{bottom:970.369500px;}
.ybe{bottom:975.507000px;}
.y7e{bottom:976.551000px;}
.yb{bottom:977.895000px;}
.y161{bottom:978.075000px;}
.yeb{bottom:979.044000px;}
.y48{bottom:988.756500px;}
.y1e2{bottom:990.451500px;}
.y1aa{bottom:990.918000px;}
.y7d{bottom:992.988000px;}
.ya{bottom:994.333500px;}
.ybd{bottom:996.055500px;}
.yea{bottom:999.591000px;}
.y1e1{bottom:1005.394500px;}
.y160{bottom:1007.613000px;}
.y7c{bottom:1009.426500px;}
.y9{bottom:1010.772000px;}
.y1a9{bottom:1011.466500px;}
.y47{bottom:1013.040000px;}
.ybc{bottom:1016.602500px;}
.ye9{bottom:1020.139500px;}
.y1e0{bottom:1020.339000px;}
.y7b{bottom:1025.865000px;}
.y8{bottom:1027.210500px;}
.y1a8{bottom:1032.013500px;}
.y1df{bottom:1035.283500px;}
.ybb{bottom:1037.151000px;}
.y46{bottom:1037.323500px;}
.y7a{bottom:1042.303500px;}
.y7{bottom:1043.649000px;}
.y1de{bottom:1050.226500px;}
.ye8{bottom:1052.562000px;}
.yba{bottom:1057.699500px;}
.y79{bottom:1058.742000px;}
.y6{bottom:1060.087500px;}
.y45{bottom:1061.608500px;}
.y1dd{bottom:1065.171000px;}
.ye7{bottom:1073.110500px;}
.y78{bottom:1075.180500px;}
.y5{bottom:1076.526000px;}
.yb9{bottom:1078.246500px;}
.y1dc{bottom:1080.115500px;}
.y44{bottom:1085.892000px;}
.y77{bottom:1091.619000px;}
.y4{bottom:1092.963000px;}
.ye6{bottom:1093.657500px;}
.y1db{bottom:1095.058500px;}
.yb8{bottom:1098.795000px;}
.y76{bottom:1108.057500px;}
.y3{bottom:1109.401500px;}
.y1da{bottom:1110.003000px;}
.ye5{bottom:1114.206000px;}
.yb7{bottom:1119.342000px;}
.y75{bottom:1124.496000px;}
.y1d9{bottom:1124.946000px;}
.y1d8{bottom:1124.947500px;}
.y2{bottom:1125.840000px;}
.y43{bottom:1125.960000px;}
.yb6{bottom:1139.890500px;}
.y74{bottom:1140.934500px;}
.y1{bottom:1142.278500px;}
.y42{bottom:1144.773000px;}
.yb5{bottom:1179.343500px;}
.h14{height:9.153212px;}
.h11{height:24.381212px;}
.hd{height:24.789258px;}
.h2{height:27.042662px;}
.h8{height:29.553131px;}
.h3{height:29.746657px;}
.he{height:31.549471px;}
.ha{height:33.474420px;}
.h9{height:34.287370px;}
.h7{height:36.056732px;}
.hb{height:37.551283px;}
.hf{height:38.573453px;}
.hc{height:40.563994px;}
.h10{height:46.643453px;}
.h6{height:49.352768px;}
.h4{height:50.068378px;}
.h15{height:51.669283px;}
.h5{height:59.816732px;}
.h13{height:77.469994px;}
.h17{height:77.904710px;}
.h12{height:80.757994px;}
.h16{height:91.593994px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.940000px;}
.x4{left:108.000000px;}
.x26{left:110.614500px;}
.x3{left:112.483500px;}
.x2{left:122.944500px;}
.x27{left:129.198000px;}
.x71{left:132.648000px;}
.x33{left:136.338000px;}
.x2a{left:149.419500px;}
.x28{left:150.940500px;}
.x50{left:152.155500px;}
.x46{left:154.459500px;}
.x62{left:157.941000px;}
.x6e{left:161.541000px;}
.x29{left:171.463500px;}
.x1a{left:173.709000px;}
.x20{left:175.396500px;}
.x1b{left:179.962500px;}
.x21{left:181.651500px;}
.x63{left:185.334000px;}
.x51{left:188.017500px;}
.xd{left:193.114500px;}
.x47{left:196.774500px;}
.xe{left:199.369500px;}
.x52{left:203.526000px;}
.x69{left:206.680500px;}
.x75{left:208.797000px;}
.x48{left:215.407500px;}
.x6a{left:217.554000px;}
.xb{left:238.737000px;}
.xc{left:244.992000px;}
.x78{left:251.308500px;}
.x34{left:253.882500px;}
.x2f{left:270.391500px;}
.x37{left:275.182500px;}
.x6f{left:278.616000px;}
.x30{left:282.898500px;}
.x38{left:291.529500px;}
.x5e{left:294.352500px;}
.x7{left:304.666500px;}
.x14{left:317.223000px;}
.x67{left:319.077000px;}
.x8{left:320.464500px;}
.x15{left:323.478000px;}
.x5f{left:325.105500px;}
.x68{left:330.366000px;}
.x35{left:348.993000px;}
.x6b{left:353.296500px;}
.x53{left:362.208000px;}
.x6c{left:363.577500px;}
.x64{left:372.573000px;}
.x2b{left:376.972500px;}
.x45{left:379.612500px;}
.x5c{left:384.121500px;}
.x2c{left:389.479500px;}
.x54{left:393.634500px;}
.x4b{left:394.713000px;}
.x3f{left:399.949500px;}
.x41{left:405.238500px;}
.x5d{left:423.337500px;}
.x42{left:424.710000px;}
.x3b{left:425.826000px;}
.x4e{left:427.200000px;}
.x4c{left:429.787500px;}
.x3c{left:433.743000px;}
.x5{left:437.112000px;}
.x4f{left:438.856500px;}
.x4d{left:441.442500px;}
.x11{left:443.904000px;}
.x6{left:448.342500px;}
.x40{left:457.942500px;}
.x36{left:469.330500px;}
.x1c{left:470.397000px;}
.x24{left:474.810000px;}
.x60{left:477.762000px;}
.x25{left:481.063500px;}
.x1d{left:482.905500px;}
.x6d{left:487.074000px;}
.x70{left:493.587000px;}
.x61{left:513.214500px;}
.x65{left:526.833000px;}
.x7c{left:535.927500px;}
.x1e{left:551.970000px;}
.x66{left:553.630500px;}
.x43{left:558.127500px;}
.x1f{left:564.478500px;}
.x16{left:574.362000px;}
.x44{left:576.417000px;}
.x7a{left:579.621000px;}
.x7d{left:585.771000px;}
.x17{left:586.870500px;}
.x49{left:594.841500px;}
.x18{left:597.519000px;}
.x39{left:599.281500px;}
.x31{left:605.014500px;}
.xf{left:606.240000px;}
.x19{left:610.027500px;}
.x10{left:612.493500px;}
.x4a{left:613.756500px;}
.x22{left:620.577000px;}
.x59{left:629.175000px;}
.x23{left:633.085500px;}
.x7e{left:644.919000px;}
.x12{left:647.176500px;}
.x76{left:651.880500px;}
.x13{left:653.430000px;}
.x32{left:657.084000px;}
.x9{left:669.270000px;}
.xa{left:685.068000px;}
.x80{left:693.420000px;}
.x73{left:701.083500px;}
.x79{left:702.166500px;}
.x3d{left:704.488500px;}
.x82{left:705.685500px;}
.x5a{left:710.161500px;}
.x81{left:720.862500px;}
.x7b{left:721.891500px;}
.x3e{left:723.897000px;}
.x5b{left:728.718000px;}
.x55{left:729.780000px;}
.x72{left:733.996500px;}
.x7f{left:739.996500px;}
.x77{left:745.648500px;}
.x58{left:756.921000px;}
.x74{left:758.448000px;}
.x56{left:762.063000px;}
.x57{left:767.976000px;}
.x2d{left:773.857500px;}
.x2e{left:780.111000px;}
.x3a{left:812.065500px;}
@media print{
.vc{vertical-align:-36.448000pt;}
.v3{vertical-align:-14.080000pt;}
.v8{vertical-align:-11.866667pt;}
.v2{vertical-align:-6.373333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.376000pt;}
.v4{vertical-align:7.173333pt;}
.v9{vertical-align:12.549333pt;}
.v1{vertical-align:21.120000pt;}
.vd{vertical-align:22.949333pt;}
.v6{vertical-align:28.554667pt;}
.ve{vertical-align:30.122667pt;}
.v7{vertical-align:32.805333pt;}
.v5{vertical-align:35.728000pt;}
.vb{vertical-align:66.570667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.210214pt;}
.ls10{letter-spacing:0.230630pt;}
.ls1c{letter-spacing:0.247543pt;}
.ls1b{letter-spacing:0.254182pt;}
.ls48{letter-spacing:0.257732pt;}
.ls4c{letter-spacing:0.266675pt;}
.ls1f{letter-spacing:0.271258pt;}
.ls44{letter-spacing:0.272009pt;}
.ls50{letter-spacing:0.507307pt;}
.ls39{letter-spacing:0.508023pt;}
.ls37{letter-spacing:0.510165pt;}
.ls47{letter-spacing:0.512640pt;}
.ls49{letter-spacing:0.765133pt;}
.ls4a{letter-spacing:0.812954pt;}
.lsc{letter-spacing:0.956416pt;}
.ls12{letter-spacing:1.218589pt;}
.ls20{letter-spacing:1.223646pt;}
.ls11{letter-spacing:1.223923pt;}
.ls24{letter-spacing:1.226641pt;}
.ls42{letter-spacing:1.402731pt;}
.ls16{letter-spacing:1.665033pt;}
.ls2e{letter-spacing:1.912832pt;}
.ls1d{letter-spacing:2.446815pt;}
.ls2c{letter-spacing:2.620442pt;}
.ls32{letter-spacing:2.631706pt;}
.ls30{letter-spacing:2.652041pt;}
.ls6{letter-spacing:2.658616pt;}
.ls0{letter-spacing:2.659100pt;}
.ls2a{letter-spacing:2.801783pt;}
.ls2f{letter-spacing:2.806613pt;}
.ls4f{letter-spacing:3.436690pt;}
.ls3b{letter-spacing:3.471758pt;}
.lsd{letter-spacing:3.698042pt;}
.ls3d{letter-spacing:4.199006pt;}
.ls18{letter-spacing:4.478387pt;}
.ls14{letter-spacing:4.483721pt;}
.ls34{letter-spacing:4.673673pt;}
.ls2d{letter-spacing:5.047923pt;}
.ls13{letter-spacing:5.081482pt;}
.ls17{letter-spacing:5.165419pt;}
.ls27{letter-spacing:5.435290pt;}
.ls52{letter-spacing:5.443729pt;}
.lsb{letter-spacing:5.977600pt;}
.ls1e{letter-spacing:6.108339pt;}
.lse{letter-spacing:6.113673pt;}
.ls53{letter-spacing:7.068339pt;}
.ls3c{letter-spacing:8.316090pt;}
.ls35{letter-spacing:8.464282pt;}
.ls51{letter-spacing:8.799027pt;}
.ls3f{letter-spacing:8.942490pt;}
.ls2b{letter-spacing:9.277235pt;}
.ls7{letter-spacing:9.298400pt;}
.ls5b{letter-spacing:9.659802pt;}
.ls22{letter-spacing:10.616218pt;}
.ls5{letter-spacing:10.626800pt;}
.ls28{letter-spacing:10.664038pt;}
.ls4d{letter-spacing:11.094426pt;}
.ls21{letter-spacing:11.190067pt;}
.ls5a{letter-spacing:11.381350pt;}
.ls46{letter-spacing:11.620454pt;}
.ls59{letter-spacing:11.668275pt;}
.lsa{letter-spacing:11.859558pt;}
.ls1{letter-spacing:11.955200pt;}
.ls9{letter-spacing:12.003021pt;}
.ls57{letter-spacing:12.146483pt;}
.ls25{letter-spacing:12.289946pt;}
.ls4{letter-spacing:12.369595pt;}
.ls3{letter-spacing:12.412102pt;}
.ls1a{letter-spacing:14.059315pt;}
.ls56{letter-spacing:14.824448pt;}
.ls23{letter-spacing:15.086319pt;}
.ls29{letter-spacing:16.402534pt;}
.ls3e{letter-spacing:16.737673pt;}
.ls38{letter-spacing:17.084709pt;}
.ls41{letter-spacing:17.837158pt;}
.ls3a{letter-spacing:18.412709pt;}
.ls58{letter-spacing:18.434042pt;}
.lsf{letter-spacing:19.372709pt;}
.ls19{letter-spacing:19.393673pt;}
.ls33{letter-spacing:19.399006pt;}
.ls45{letter-spacing:19.410042pt;}
.ls15{letter-spacing:20.353673pt;}
.ls43{letter-spacing:20.551006pt;}
.ls55{letter-spacing:25.463375pt;}
.ls4e{letter-spacing:33.187635pt;}
.ls31{letter-spacing:920.980787pt;}
.ls54{letter-spacing:924.857839pt;}
.ls4b{letter-spacing:937.957171pt;}
.ls36{letter-spacing:976.213811pt;}
.ls40{letter-spacing:998.937591pt;}
.ls26{letter-spacing:1014.365295pt;}
.ws42{word-spacing:-48.968499pt;}
.ws4a{word-spacing:-40.265114pt;}
.ws3e{word-spacing:-33.522381pt;}
.ws54{word-spacing:-31.800832pt;}
.ws3d{word-spacing:-30.461850pt;}
.ws40{word-spacing:-23.097446pt;}
.ws3f{word-spacing:-22.953984pt;}
.ws4e{word-spacing:-18.267546pt;}
.ws31{word-spacing:-11.955200pt;}
.wse{word-spacing:-10.626800pt;}
.ws71{word-spacing:-9.298400pt;}
.ws41{word-spacing:-3.825664pt;}
.ws29{word-spacing:-3.203994pt;}
.ws6c{word-spacing:-2.677965pt;}
.ws2{word-spacing:-2.590267pt;}
.ws6b{word-spacing:-2.343219pt;}
.ws6a{word-spacing:-2.295398pt;}
.ws35{word-spacing:-2.247578pt;}
.ws4{word-spacing:-1.997838pt;}
.ws77{word-spacing:-1.697200pt;}
.ws6d{word-spacing:-1.673728pt;}
.ws76{word-spacing:-1.562131pt;}
.ws78{word-spacing:-1.524938pt;}
.ws51{word-spacing:-1.386803pt;}
.ws48{word-spacing:-1.291162pt;}
.ws47{word-spacing:-1.243341pt;}
.ws25{word-spacing:-1.195520pt;}
.ws66{word-spacing:-1.099878pt;}
.ws61{word-spacing:-1.004237pt;}
.ws4d{word-spacing:-0.956416pt;}
.ws27{word-spacing:-0.860774pt;}
.ws4c{word-spacing:-0.807637pt;}
.ws5e{word-spacing:-0.621670pt;}
.ws33{word-spacing:-0.382566pt;}
.ws28{word-spacing:-0.334746pt;}
.ws57{word-spacing:-0.286925pt;}
.ws50{word-spacing:-0.239104pt;}
.ws70{word-spacing:-0.223162pt;}
.ws3b{word-spacing:-0.212536pt;}
.ws20{word-spacing:-0.191283pt;}
.ws3a{word-spacing:-0.170029pt;}
.ws1c{word-spacing:-0.148774pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws7{word-spacing:-0.127522pt;}
.ws12{word-spacing:-0.095642pt;}
.ws1d{word-spacing:-0.074387pt;}
.ws18{word-spacing:-0.047821pt;}
.ws6{word-spacing:-0.042507pt;}
.ws8a{word-spacing:-0.039850pt;}
.ws1b{word-spacing:-0.037194pt;}
.ws43{word-spacing:-0.035068pt;}
.ws7e{word-spacing:-0.023850pt;}
.ws7b{word-spacing:-0.013183pt;}
.ws8b{word-spacing:-0.005990pt;}
.ws1{word-spacing:0.000000pt;}
.ws80{word-spacing:0.008978pt;}
.ws74{word-spacing:0.009870pt;}
.ws8c{word-spacing:0.012483pt;}
.ws6f{word-spacing:0.015687pt;}
.ws72{word-spacing:0.030311pt;}
.ws16{word-spacing:0.047821pt;}
.ws6e{word-spacing:0.074387pt;}
.ws3{word-spacing:0.085014pt;}
.ws15{word-spacing:0.095642pt;}
.wsd{word-spacing:0.127522pt;}
.ws17{word-spacing:0.143462pt;}
.ws7f{word-spacing:0.148774pt;}
.ws8{word-spacing:0.170029pt;}
.ws30{word-spacing:0.191283pt;}
.ws67{word-spacing:0.212536pt;}
.ws10{word-spacing:0.239104pt;}
.ws21{word-spacing:0.286925pt;}
.ws14{word-spacing:0.334746pt;}
.ws82{word-spacing:0.371936pt;}
.ws19{word-spacing:0.478208pt;}
.ws4b{word-spacing:0.526029pt;}
.ws83{word-spacing:0.584150pt;}
.ws2a{word-spacing:0.669491pt;}
.ws7c{word-spacing:0.693094pt;}
.ws2b{word-spacing:0.765133pt;}
.ws60{word-spacing:0.812954pt;}
.ws63{word-spacing:0.908595pt;}
.ws34{word-spacing:0.956416pt;}
.ws5f{word-spacing:1.243341pt;}
.ws13{word-spacing:1.338982pt;}
.ws5d{word-spacing:1.386803pt;}
.ws75{word-spacing:1.636518pt;}
.ws3c{word-spacing:1.721549pt;}
.ws9{word-spacing:1.742795pt;}
.ws55{word-spacing:1.769370pt;}
.ws56{word-spacing:1.865011pt;}
.ws11{word-spacing:1.912832pt;}
.ws64{word-spacing:2.008474pt;}
.ws26{word-spacing:2.056294pt;}
.ws5{word-spacing:2.082853pt;}
.ws23{word-spacing:2.104115pt;}
.ws39{word-spacing:2.199757pt;}
.ws69{word-spacing:2.295398pt;}
.ws2e{word-spacing:2.486682pt;}
.ws65{word-spacing:2.534502pt;}
.ws73{word-spacing:2.603552pt;}
.ws5a{word-spacing:2.869248pt;}
.ws1e{word-spacing:3.012710pt;}
.ws24{word-spacing:3.299635pt;}
.ws85{word-spacing:3.644973pt;}
.ws79{word-spacing:3.756554pt;}
.ws49{word-spacing:3.825664pt;}
.ws84{word-spacing:3.887761pt;}
.ws88{word-spacing:4.054102pt;}
.ws86{word-spacing:4.463232pt;}
.ws22{word-spacing:4.590797pt;}
.ws87{word-spacing:6.800626pt;}
.ws52{word-spacing:10.520576pt;}
.wsc{word-spacing:10.584293pt;}
.ws2c{word-spacing:11.668275pt;}
.ws36{word-spacing:11.763917pt;}
.ws53{word-spacing:11.811738pt;}
.ws4f{word-spacing:11.859558pt;}
.ws1f{word-spacing:11.907379pt;}
.ws37{word-spacing:11.955200pt;}
.ws62{word-spacing:12.050842pt;}
.ws2f{word-spacing:12.098662pt;}
.ws32{word-spacing:12.194304pt;}
.wsa{word-spacing:12.327088pt;}
.wsb{word-spacing:12.369595pt;}
.ws81{word-spacing:13.054954pt;}
.ws58{word-spacing:13.090914pt;}
.ws7d{word-spacing:13.389696pt;}
.ws8d{word-spacing:13.873213pt;}
.ws38{word-spacing:14.154957pt;}
.ws2d{word-spacing:14.346240pt;}
.ws0{word-spacing:15.876506pt;}
.ws46{word-spacing:16.703123pt;}
.ws7a{word-spacing:16.774314pt;}
.ws59{word-spacing:17.183123pt;}
.ws44{word-spacing:18.031123pt;}
.ws45{word-spacing:19.359123pt;}
.ws5c{word-spacing:19.380456pt;}
.ws5b{word-spacing:26.415123pt;}
.ws89{word-spacing:32.655981pt;}
.wsf{word-spacing:47.772979pt;}
.ws68{word-spacing:233.681519pt;}
._9{margin-left:-5.929779pt;}
._7{margin-left:-4.229462pt;}
._1{margin-left:-2.850911pt;}
._1a{margin-left:-1.945751pt;}
._0{margin-left:-0.956416pt;}
._5{width:1.105187pt;}
._4{width:2.152729pt;}
._a{width:3.087069pt;}
._12{width:4.458778pt;}
._11{width:5.409553pt;}
._14{width:6.826769pt;}
._13{width:8.925617pt;}
._6{width:9.819171pt;}
._c{width:11.285709pt;}
._2{width:12.537019pt;}
._15{width:13.593013pt;}
._3{width:14.545467pt;}
._18{width:15.637402pt;}
._10{width:18.506650pt;}
._8{width:20.403448pt;}
._16{width:21.721179pt;}
._21{width:22.912069pt;}
._17{width:25.153741pt;}
._19{width:26.588365pt;}
._23{width:28.278338pt;}
._22{width:30.124674pt;}
._f{width:46.864384pt;}
._d{width:47.820800pt;}
._1b{width:48.777216pt;}
._1c{width:111.322699pt;}
._1f{width:221.726319pt;}
._20{width:233.686852pt;}
._1e{width:269.600273pt;}
._1d{width:334.349636pt;}
._e{width:641.552406pt;}
._b{width:1315.293538pt;}
.fs6{font-size:29.224000pt;}
.fs0{font-size:31.880533pt;}
.fs1{font-size:35.068267pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs3{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:79.004000pt;}
.y41{bottom:80.198667pt;}
.y73{bottom:84.053333pt;}
.yb3{bottom:93.616000pt;}
.y40{bottom:94.810667pt;}
.ye4{bottom:99.994667pt;}
.y12f{bottom:100.520000pt;}
.y15f{bottom:101.361333pt;}
.y1d7{bottom:101.405333pt;}
.y19a{bottom:102.692000pt;}
.y186{bottom:102.712000pt;}
.y112{bottom:103.052000pt;}
.y145{bottom:107.097333pt;}
.yb2{bottom:108.228000pt;}
.y3f{bottom:109.422667pt;}
.y72{bottom:113.413333pt;}
.y1d6{bottom:114.689333pt;}
.ye3{bottom:118.258667pt;}
.y12e{bottom:118.784000pt;}
.y15e{bottom:119.626667pt;}
.y199{bottom:120.956000pt;}
.y185{bottom:120.977333pt;}
.y111{bottom:121.317333pt;}
.y1a7{bottom:122.720000pt;}
.yb1{bottom:122.840000pt;}
.y3e{bottom:124.034667pt;}
.y71{bottom:126.697333pt;}
.y1d5{bottom:127.972000pt;}
.y144{bottom:133.353333pt;}
.y1a6{bottom:136.002667pt;}
.ye2{bottom:136.524000pt;}
.y12d{bottom:137.049333pt;}
.yb0{bottom:137.450667pt;}
.y3d{bottom:138.646667pt;}
.y198{bottom:139.221333pt;}
.y184{bottom:139.242667pt;}
.y110{bottom:139.582667pt;}
.y1d4{bottom:141.256000pt;}
.y70{bottom:141.309333pt;}
.y15d{bottom:144.378667pt;}
.y1a5{bottom:151.545333pt;}
.y143{bottom:151.617333pt;}
.yaf{bottom:152.062667pt;}
.y3c{bottom:153.258667pt;}
.y1d3{bottom:154.540000pt;}
.y6f{bottom:154.592000pt;}
.ye1{bottom:154.789333pt;}
.y12c{bottom:155.314667pt;}
.y197{bottom:157.486667pt;}
.y10f{bottom:157.846667pt;}
.y15c{bottom:162.644000pt;}
.yae{bottom:166.674667pt;}
.y1a4{bottom:166.688000pt;}
.y183{bottom:167.244000pt;}
.y1d2{bottom:167.822667pt;}
.y3b{bottom:167.870667pt;}
.y6e{bottom:167.876000pt;}
.ye0{bottom:173.053333pt;}
.y12b{bottom:173.578667pt;}
.y196{bottom:175.750667pt;}
.y142{bottom:177.873333pt;}
.y1d1{bottom:181.106667pt;}
.y6d{bottom:181.160000pt;}
.yad{bottom:181.286667pt;}
.y1a3{bottom:181.830667pt;}
.y3a{bottom:182.482667pt;}
.y15b{bottom:185.474667pt;}
.y182{bottom:185.508000pt;}
.y10e{bottom:191.361333pt;}
.y12a{bottom:191.844000pt;}
.y195{bottom:194.016000pt;}
.y1d0{bottom:194.390667pt;}
.ydf{bottom:195.884000pt;}
.yac{bottom:195.898667pt;}
.y1a2{bottom:196.974667pt;}
.y39{bottom:197.094667pt;}
.y181{bottom:203.773333pt;}
.y141{bottom:204.129333pt;}
.y6c{bottom:206.678667pt;}
.y1cf{bottom:207.673333pt;}
.y10d{bottom:209.625333pt;}
.y129{bottom:210.109333pt;}
.yab{bottom:210.510667pt;}
.y38{bottom:211.706667pt;}
.y1a1{bottom:212.117333pt;}
.y194{bottom:212.280000pt;}
.y6b{bottom:217.882667pt;}
.y15a{bottom:220.173333pt;}
.y1ce{bottom:220.957333pt;}
.y140{bottom:222.393333pt;}
.yaa{bottom:225.122667pt;}
.y37{bottom:226.317333pt;}
.y1a0{bottom:226.729333pt;}
.yde{bottom:227.848000pt;}
.y10c{bottom:227.890667pt;}
.y128{bottom:228.373333pt;}
.y193{bottom:230.545333pt;}
.y180{bottom:231.774667pt;}
.y1cd{bottom:234.241333pt;}
.y6a{bottom:236.006667pt;}
.y159{bottom:238.438667pt;}
.ya9{bottom:239.734667pt;}
.y13f{bottom:240.658667pt;}
.y36{bottom:240.929333pt;}
.y19f{bottom:245.061333pt;}
.ydd{bottom:246.113333pt;}
.y10b{bottom:246.156000pt;}
.y127{bottom:246.638667pt;}
.y1cc{bottom:247.524000pt;}
.y17f{bottom:250.040000pt;}
.y192{bottom:253.376000pt;}
.y69{bottom:254.270667pt;}
.ya8{bottom:254.346667pt;}
.y35{bottom:255.541333pt;}
.y158{bottom:256.702667pt;}
.y13e{bottom:258.924000pt;}
.y1cb{bottom:260.808000pt;}
.ydc{bottom:264.377333pt;}
.y10a{bottom:264.420000pt;}
.y126{bottom:264.902667pt;}
.y17e{bottom:268.305333pt;}
.ya7{bottom:268.958667pt;}
.y34{bottom:270.153333pt;}
.y19e{bottom:270.432000pt;}
.y68{bottom:272.536000pt;}
.y13d{bottom:272.982667pt;}
.y1ca{bottom:274.090667pt;}
.y157{bottom:274.968000pt;}
.y13c{bottom:281.184000pt;}
.ydb{bottom:282.642667pt;}
.y125{bottom:283.168000pt;}
.ya6{bottom:283.569333pt;}
.y19d{bottom:283.716000pt;}
.y33{bottom:284.765333pt;}
.y17d{bottom:286.569333pt;}
.y1c9{bottom:287.374667pt;}
.y191{bottom:290.734667pt;}
.y67{bottom:290.800000pt;}
.y156{bottom:293.233333pt;}
.y109{bottom:297.934667pt;}
.ya5{bottom:298.181333pt;}
.y32{bottom:299.377333pt;}
.y1c8{bottom:300.658667pt;}
.yda{bottom:300.908000pt;}
.y124{bottom:301.433333pt;}
.y13b{bottom:302.318667pt;}
.y190{bottom:309.000000pt;}
.y66{bottom:309.065333pt;}
.y155{bottom:311.497333pt;}
.ya4{bottom:312.793333pt;}
.y1c7{bottom:313.941333pt;}
.y31{bottom:313.989333pt;}
.y108{bottom:316.198667pt;}
.y13a{bottom:318.789333pt;}
.yd9{bottom:319.172000pt;}
.y17c{bottom:319.402667pt;}
.y123{bottom:319.697333pt;}
.y139{bottom:320.582667pt;}
.y18f{bottom:327.264000pt;}
.y65{bottom:327.330667pt;}
.ya3{bottom:327.405333pt;}
.y30{bottom:328.601333pt;}
.y154{bottom:329.762667pt;}
.y1c6{bottom:331.792000pt;}
.y107{bottom:334.464000pt;}
.y138{bottom:337.054667pt;}
.yd8{bottom:337.437333pt;}
.y17b{bottom:337.668000pt;}
.y122{bottom:337.962667pt;}
.y137{bottom:338.848000pt;}
.ya2{bottom:342.017333pt;}
.y2f{bottom:343.213333pt;}
.y18e{bottom:345.529333pt;}
.y64{bottom:345.594667pt;}
.y106{bottom:352.728000pt;}
.y153{bottom:354.514667pt;}
.yd7{bottom:355.701333pt;}
.y17a{bottom:355.933333pt;}
.y121{bottom:356.228000pt;}
.ya1{bottom:356.629333pt;}
.y136{bottom:357.113333pt;}
.y2e{bottom:357.825333pt;}
.y63{bottom:363.860000pt;}
.y1c5{bottom:366.577333pt;}
.y18d{bottom:368.360000pt;}
.y105{bottom:370.993333pt;}
.ya0{bottom:371.241333pt;}
.y2d{bottom:372.436000pt;}
.y152{bottom:372.780000pt;}
.yd6{bottom:373.966667pt;}
.y179{bottom:374.197333pt;}
.y120{bottom:374.492000pt;}
.y135{bottom:375.377333pt;}
.y62{bottom:382.125333pt;}
.y1c4{bottom:384.842667pt;}
.y9f{bottom:385.853333pt;}
.y2c{bottom:387.048000pt;}
.y104{bottom:389.258667pt;}
.y18c{bottom:391.190667pt;}
.yd5{bottom:392.232000pt;}
.y178{bottom:392.462667pt;}
.y11f{bottom:392.757333pt;}
.y134{bottom:393.642667pt;}
.y151{bottom:395.610667pt;}
.y61{bottom:400.389333pt;}
.y9e{bottom:400.465333pt;}
.y2b{bottom:401.660000pt;}
.y1c3{bottom:403.108000pt;}
.y177{bottom:410.728000pt;}
.y133{bottom:411.906667pt;}
.y103{bottom:412.089333pt;}
.yd4{bottom:415.062667pt;}
.y9d{bottom:415.077333pt;}
.y2a{bottom:416.272000pt;}
.y60{bottom:418.654667pt;}
.y11e{bottom:421.205333pt;}
.y1c2{bottom:421.372000pt;}
.y18b{bottom:428.549333pt;}
.y176{bottom:428.992000pt;}
.y9c{bottom:429.688000pt;}
.y132{bottom:430.172000pt;}
.y150{bottom:430.309333pt;}
.y29{bottom:430.884000pt;}
.y5f{bottom:436.918667pt;}
.y11d{bottom:439.470667pt;}
.y1c1{bottom:439.637333pt;}
.y9b{bottom:444.300000pt;}
.y28{bottom:445.496000pt;}
.y18a{bottom:446.814667pt;}
.yd3{bottom:447.026667pt;}
.y175{bottom:447.257333pt;}
.y14f{bottom:448.574667pt;}
.y102{bottom:450.169333pt;}
.y5e{bottom:455.184000pt;}
.y11c{bottom:457.734667pt;}
.y1c0{bottom:457.902667pt;}
.y9a{bottom:458.912000pt;}
.y27{bottom:460.108000pt;}
.y189{bottom:465.078667pt;}
.yd2{bottom:465.290667pt;}
.y174{bottom:465.521333pt;}
.y14d{bottom:466.838667pt;}
.y101{bottom:468.434667pt;}
.y14e{bottom:471.178667pt;}
.y99{bottom:473.524000pt;}
.y26{bottom:474.720000pt;}
.y11b{bottom:476.000000pt;}
.y1bf{bottom:476.166667pt;}
.y5d{bottom:478.014667pt;}
.yd1{bottom:483.556000pt;}
.y173{bottom:483.786667pt;}
.y100{bottom:486.698667pt;}
.y14c{bottom:487.616000pt;}
.y98{bottom:488.136000pt;}
.y25{bottom:489.332000pt;}
.y11a{bottom:494.265333pt;}
.y1be{bottom:494.432000pt;}
.y148{bottom:498.956000pt;}
.y14b{bottom:499.122667pt;}
.yd0{bottom:501.820000pt;}
.y97{bottom:502.748000pt;}
.y24{bottom:503.944000pt;}
.yff{bottom:504.964000pt;}
.y14a{bottom:506.094667pt;}
.y172{bottom:506.617333pt;}
.y5c{bottom:510.373333pt;}
.y119{bottom:512.529333pt;}
.y1bd{bottom:512.696000pt;}
.y96{bottom:517.360000pt;}
.y149{bottom:517.600000pt;}
.y23{bottom:518.556000pt;}
.ycf{bottom:520.085333pt;}
.yfe{bottom:523.229333pt;}
.y188{bottom:523.852000pt;}
.y131{bottom:524.190667pt;}
.y19c{bottom:526.814667pt;}
.y5b{bottom:526.978667pt;}
.y147{bottom:530.170667pt;}
.y118{bottom:530.794667pt;}
.y1bc{bottom:530.961333pt;}
.y95{bottom:531.972000pt;}
.y22{bottom:533.166667pt;}
.y187{bottom:537.134667pt;}
.y130{bottom:537.474667pt;}
.yce{bottom:538.350667pt;}
.y19b{bottom:540.098667pt;}
.yfd{bottom:541.493333pt;}
.y5a{bottom:543.582667pt;}
.y171{bottom:544.017333pt;}
.y94{bottom:546.584000pt;}
.y21{bottom:547.778667pt;}
.y117{bottom:549.060000pt;}
.y1bb{bottom:553.792000pt;}
.ycd{bottom:556.614667pt;}
.yfc{bottom:559.758667pt;}
.y93{bottom:561.196000pt;}
.y170{bottom:562.282667pt;}
.y20{bottom:562.390667pt;}
.y59{bottom:567.233333pt;}
.y116{bottom:567.324000pt;}
.ycc{bottom:574.880000pt;}
.y92{bottom:575.808000pt;}
.y1f{bottom:577.002667pt;}
.yfb{bottom:578.022667pt;}
.y146{bottom:578.305333pt;}
.y16f{bottom:580.548000pt;}
.y58{bottom:583.838667pt;}
.y115{bottom:585.589333pt;}
.y1ba{bottom:588.578667pt;}
.y91{bottom:590.418667pt;}
.y1e{bottom:591.614667pt;}
.ycb{bottom:593.145333pt;}
.yfa{bottom:596.288000pt;}
.y57{bottom:600.442667pt;}
.y16e{bottom:603.378667pt;}
.y90{bottom:605.030667pt;}
.y1d{bottom:606.226667pt;}
.y1b9{bottom:606.844000pt;}
.yca{bottom:611.409333pt;}
.yf9{bottom:614.553333pt;}
.y8f{bottom:619.642667pt;}
.y1c{bottom:620.838667pt;}
.y56{bottom:624.093333pt;}
.y1b8{bottom:625.108000pt;}
.y114{bottom:626.988000pt;}
.yc9{bottom:629.674667pt;}
.yf8{bottom:632.817333pt;}
.y8e{bottom:634.254667pt;}
.y1b{bottom:635.450667pt;}
.y113{bottom:640.270667pt;}
.y55{bottom:640.698667pt;}
.y16d{bottom:640.778667pt;}
.y1b7{bottom:643.373333pt;}
.yc8{bottom:647.940000pt;}
.y8d{bottom:648.866667pt;}
.y1a{bottom:650.062667pt;}
.yf7{bottom:651.082667pt;}
.y16c{bottom:659.042667pt;}
.y1b6{bottom:661.637333pt;}
.y8c{bottom:663.478667pt;}
.y54{bottom:664.349333pt;}
.y19{bottom:664.674667pt;}
.yc7{bottom:666.204000pt;}
.yf6{bottom:669.348000pt;}
.y8b{bottom:678.090667pt;}
.y18{bottom:679.285333pt;}
.y1b5{bottom:679.902667pt;}
.y53{bottom:680.953333pt;}
.y16b{bottom:681.874667pt;}
.yc6{bottom:684.469333pt;}
.yf5{bottom:687.612000pt;}
.y8a{bottom:692.702667pt;}
.y17{bottom:693.897333pt;}
.y52{bottom:697.558667pt;}
.y1b4{bottom:698.168000pt;}
.y16a{bottom:704.705333pt;}
.yf4{bottom:705.877333pt;}
.yc5{bottom:707.300000pt;}
.y89{bottom:707.314667pt;}
.y16{bottom:708.509333pt;}
.y51{bottom:714.162667pt;}
.y1b3{bottom:716.432000pt;}
.y88{bottom:721.926667pt;}
.y15{bottom:723.121333pt;}
.yf3{bottom:724.142667pt;}
.y50{bottom:730.766667pt;}
.y1b2{bottom:734.697333pt;}
.y87{bottom:736.537333pt;}
.y14{bottom:737.733333pt;}
.yc4{bottom:739.264000pt;}
.y169{bottom:742.105333pt;}
.yf2{bottom:742.406667pt;}
.y4f{bottom:747.372000pt;}
.y86{bottom:751.149333pt;}
.y13{bottom:752.345333pt;}
.y1b1{bottom:752.962667pt;}
.yc3{bottom:757.528000pt;}
.y168{bottom:760.369333pt;}
.yf1{bottom:760.672000pt;}
.y1ea{bottom:760.849333pt;}
.y4e{bottom:763.976000pt;}
.y85{bottom:765.761333pt;}
.y12{bottom:766.957333pt;}
.y1b0{bottom:771.226667pt;}
.y1e9{bottom:774.133333pt;}
.y167{bottom:778.634667pt;}
.yf0{bottom:778.936000pt;}
.yc2{bottom:780.360000pt;}
.y84{bottom:780.373333pt;}
.y4d{bottom:780.580000pt;}
.y11{bottom:781.569333pt;}
.y1e8{bottom:787.416000pt;}
.y1af{bottom:789.492000pt;}
.y83{bottom:794.985333pt;}
.y10{bottom:796.181333pt;}
.y165{bottom:796.900000pt;}
.y166{bottom:796.970667pt;}
.y4c{bottom:797.185333pt;}
.yef{bottom:797.201333pt;}
.y1e7{bottom:800.700000pt;}
.y1ae{bottom:807.757333pt;}
.y82{bottom:809.597333pt;}
.yf{bottom:810.793333pt;}
.yc1{bottom:812.322667pt;}
.y4b{bottom:813.789333pt;}
.y1e6{bottom:813.984000pt;}
.y164{bottom:815.164000pt;}
.yee{bottom:815.466667pt;}
.y81{bottom:824.209333pt;}
.ye{bottom:825.404000pt;}
.y1ad{bottom:826.021333pt;}
.y1e5{bottom:827.266667pt;}
.y4a{bottom:830.393333pt;}
.yc0{bottom:830.588000pt;}
.yed{bottom:833.730667pt;}
.y163{bottom:835.614667pt;}
.y80{bottom:838.821333pt;}
.yd{bottom:840.016000pt;}
.y1e4{bottom:840.550667pt;}
.y162{bottom:843.145333pt;}
.y1ac{bottom:844.286667pt;}
.ybf{bottom:848.852000pt;}
.yec{bottom:851.996000pt;}
.y7f{bottom:853.433333pt;}
.y1e3{bottom:853.833333pt;}
.yc{bottom:854.628000pt;}
.y49{bottom:857.309333pt;}
.y1ab{bottom:862.550667pt;}
.ybe{bottom:867.117333pt;}
.y7e{bottom:868.045333pt;}
.yb{bottom:869.240000pt;}
.y161{bottom:869.400000pt;}
.yeb{bottom:870.261333pt;}
.y48{bottom:878.894667pt;}
.y1e2{bottom:880.401333pt;}
.y1aa{bottom:880.816000pt;}
.y7d{bottom:882.656000pt;}
.ya{bottom:883.852000pt;}
.ybd{bottom:885.382667pt;}
.yea{bottom:888.525333pt;}
.y1e1{bottom:893.684000pt;}
.y160{bottom:895.656000pt;}
.y7c{bottom:897.268000pt;}
.y9{bottom:898.464000pt;}
.y1a9{bottom:899.081333pt;}
.y47{bottom:900.480000pt;}
.ybc{bottom:903.646667pt;}
.ye9{bottom:906.790667pt;}
.y1e0{bottom:906.968000pt;}
.y7b{bottom:911.880000pt;}
.y8{bottom:913.076000pt;}
.y1a8{bottom:917.345333pt;}
.y1df{bottom:920.252000pt;}
.ybb{bottom:921.912000pt;}
.y46{bottom:922.065333pt;}
.y7a{bottom:926.492000pt;}
.y7{bottom:927.688000pt;}
.y1de{bottom:933.534667pt;}
.ye8{bottom:935.610667pt;}
.yba{bottom:940.177333pt;}
.y79{bottom:941.104000pt;}
.y6{bottom:942.300000pt;}
.y45{bottom:943.652000pt;}
.y1dd{bottom:946.818667pt;}
.ye7{bottom:953.876000pt;}
.y78{bottom:955.716000pt;}
.y5{bottom:956.912000pt;}
.yb9{bottom:958.441333pt;}
.y1dc{bottom:960.102667pt;}
.y44{bottom:965.237333pt;}
.y77{bottom:970.328000pt;}
.y4{bottom:971.522667pt;}
.ye6{bottom:972.140000pt;}
.y1db{bottom:973.385333pt;}
.yb8{bottom:976.706667pt;}
.y76{bottom:984.940000pt;}
.y3{bottom:986.134667pt;}
.y1da{bottom:986.669333pt;}
.ye5{bottom:990.405333pt;}
.yb7{bottom:994.970667pt;}
.y75{bottom:999.552000pt;}
.y1d9{bottom:999.952000pt;}
.y1d8{bottom:999.953333pt;}
.y2{bottom:1000.746667pt;}
.y43{bottom:1000.853333pt;}
.yb6{bottom:1013.236000pt;}
.y74{bottom:1014.164000pt;}
.y1{bottom:1015.358667pt;}
.y42{bottom:1017.576000pt;}
.yb5{bottom:1048.305333pt;}
.h14{height:8.136189pt;}
.h11{height:21.672189pt;}
.hd{height:22.034896pt;}
.h2{height:24.037922pt;}
.h8{height:26.269450pt;}
.h3{height:26.441473pt;}
.he{height:28.043974pt;}
.ha{height:29.755040pt;}
.h9{height:30.477662pt;}
.h7{height:32.050429pt;}
.hb{height:33.378918pt;}
.hf{height:34.287514pt;}
.hc{height:36.056883pt;}
.h10{height:41.460847pt;}
.h6{height:43.869127pt;}
.h4{height:44.505225pt;}
.h15{height:45.928252pt;}
.h5{height:53.170429pt;}
.h13{height:68.862217pt;}
.h17{height:69.248631pt;}
.h12{height:71.784883pt;}
.h16{height:81.416883pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:61.280000pt;}
.x4{left:96.000000pt;}
.x26{left:98.324000pt;}
.x3{left:99.985333pt;}
.x2{left:109.284000pt;}
.x27{left:114.842667pt;}
.x71{left:117.909333pt;}
.x33{left:121.189333pt;}
.x2a{left:132.817333pt;}
.x28{left:134.169333pt;}
.x50{left:135.249333pt;}
.x46{left:137.297333pt;}
.x62{left:140.392000pt;}
.x6e{left:143.592000pt;}
.x29{left:152.412000pt;}
.x1a{left:154.408000pt;}
.x20{left:155.908000pt;}
.x1b{left:159.966667pt;}
.x21{left:161.468000pt;}
.x63{left:164.741333pt;}
.x51{left:167.126667pt;}
.xd{left:171.657333pt;}
.x47{left:174.910667pt;}
.xe{left:177.217333pt;}
.x52{left:180.912000pt;}
.x69{left:183.716000pt;}
.x75{left:185.597333pt;}
.x48{left:191.473333pt;}
.x6a{left:193.381333pt;}
.xb{left:212.210667pt;}
.xc{left:217.770667pt;}
.x78{left:223.385333pt;}
.x34{left:225.673333pt;}
.x2f{left:240.348000pt;}
.x37{left:244.606667pt;}
.x6f{left:247.658667pt;}
.x30{left:251.465333pt;}
.x38{left:259.137333pt;}
.x5e{left:261.646667pt;}
.x7{left:270.814667pt;}
.x14{left:281.976000pt;}
.x67{left:283.624000pt;}
.x8{left:284.857333pt;}
.x15{left:287.536000pt;}
.x5f{left:288.982667pt;}
.x68{left:293.658667pt;}
.x35{left:310.216000pt;}
.x6b{left:314.041333pt;}
.x53{left:321.962667pt;}
.x6c{left:323.180000pt;}
.x64{left:331.176000pt;}
.x2b{left:335.086667pt;}
.x45{left:337.433333pt;}
.x5c{left:341.441333pt;}
.x2c{left:346.204000pt;}
.x54{left:349.897333pt;}
.x4b{left:350.856000pt;}
.x3f{left:355.510667pt;}
.x41{left:360.212000pt;}
.x5d{left:376.300000pt;}
.x42{left:377.520000pt;}
.x3b{left:378.512000pt;}
.x4e{left:379.733333pt;}
.x4c{left:382.033333pt;}
.x3c{left:385.549333pt;}
.x5{left:388.544000pt;}
.x4f{left:390.094667pt;}
.x4d{left:392.393333pt;}
.x11{left:394.581333pt;}
.x6{left:398.526667pt;}
.x40{left:407.060000pt;}
.x36{left:417.182667pt;}
.x1c{left:418.130667pt;}
.x24{left:422.053333pt;}
.x60{left:424.677333pt;}
.x25{left:427.612000pt;}
.x1d{left:429.249333pt;}
.x6d{left:432.954667pt;}
.x70{left:438.744000pt;}
.x61{left:456.190667pt;}
.x65{left:468.296000pt;}
.x7c{left:476.380000pt;}
.x1e{left:490.640000pt;}
.x66{left:492.116000pt;}
.x43{left:496.113333pt;}
.x1f{left:501.758667pt;}
.x16{left:510.544000pt;}
.x44{left:512.370667pt;}
.x7a{left:515.218667pt;}
.x7d{left:520.685333pt;}
.x17{left:521.662667pt;}
.x49{left:528.748000pt;}
.x18{left:531.128000pt;}
.x39{left:532.694667pt;}
.x31{left:537.790667pt;}
.xf{left:538.880000pt;}
.x19{left:542.246667pt;}
.x10{left:544.438667pt;}
.x4a{left:545.561333pt;}
.x22{left:551.624000pt;}
.x59{left:559.266667pt;}
.x23{left:562.742667pt;}
.x7e{left:573.261333pt;}
.x12{left:575.268000pt;}
.x76{left:579.449333pt;}
.x13{left:580.826667pt;}
.x32{left:584.074667pt;}
.x9{left:594.906667pt;}
.xa{left:608.949333pt;}
.x80{left:616.373333pt;}
.x73{left:623.185333pt;}
.x79{left:624.148000pt;}
.x3d{left:626.212000pt;}
.x82{left:627.276000pt;}
.x5a{left:631.254667pt;}
.x81{left:640.766667pt;}
.x7b{left:641.681333pt;}
.x3e{left:643.464000pt;}
.x5b{left:647.749333pt;}
.x55{left:648.693333pt;}
.x72{left:652.441333pt;}
.x7f{left:657.774667pt;}
.x77{left:662.798667pt;}
.x58{left:672.818667pt;}
.x74{left:674.176000pt;}
.x56{left:677.389333pt;}
.x57{left:682.645333pt;}
.x2d{left:687.873333pt;}
.x2e{left:693.432000pt;}
.x3a{left:721.836000pt;}
}




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