
    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_c675407082d8b0a4300cbd3c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_70af2eb99eadca3163380965.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_b8425053a8405b36a9c89f53.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8daa1985afe7d3e8fe8888a8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_60ef483ff5c1357cf27fad24.woff')format("woff");}.ff5{font-family:ff5;line-height:0.770000;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_698a99914e71e6febb8583c1.woff')format("woff");}.ff6{font-family:ff6;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;}
.m4{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);}
.m24{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m1a{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);}
.m1c{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);}
.m2{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);}
.m7{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);}
.m26{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);}
.m22{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);}
.m17{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);}
.m9{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);}
.m6{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);}
.m23{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);}
.m19{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);}
.m1{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);}
.ma{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);}
.m16{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.mc{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);}
.m12{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m15{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);}
.m8{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);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.md{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);}
.m1d{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);}
.m10{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);}
.m11{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);}
.me{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);}
.mf{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);}
.mb{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);}
.ve{vertical-align:-45.582000px;}
.v3{vertical-align:-11.952000px;}
.v2{vertical-align:-10.848000px;}
.v5{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.970000px;}
.vb{vertical-align:17.154000px;}
.v9{vertical-align:18.222000px;}
.v4{vertical-align:21.696000px;}
.v7{vertical-align:24.684000px;}
.v8{vertical-align:27.048000px;}
.v1{vertical-align:39.054000px;}
.vc{vertical-align:41.838000px;}
.va{vertical-align:42.906000px;}
.vd{vertical-align:66.324000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls1c{letter-spacing:0.717483px;}
.ls15{letter-spacing:0.720783px;}
.ls1a{letter-spacing:0.723483px;}
.lsc{letter-spacing:1.044337px;}
.lsf{letter-spacing:1.050337px;}
.ls16{letter-spacing:1.312766px;}
.ls13{letter-spacing:1.318766px;}
.ls2{letter-spacing:1.464783px;}
.ls5{letter-spacing:1.906200px;}
.ls14{letter-spacing:3.284912px;}
.ls3{letter-spacing:3.290912px;}
.ls1b{letter-spacing:3.559200px;}
.ls12{letter-spacing:3.566576px;}
.ls0{letter-spacing:10.455300px;}
.ls6{letter-spacing:11.954850px;}
.ls17{letter-spacing:12.339483px;}
.lse{letter-spacing:13.083483px;}
.ls10{letter-spacing:13.089483px;}
.ls24{letter-spacing:13.138635px;}
.ls1e{letter-spacing:13.448400px;}
.ls20{letter-spacing:13.454400px;}
.ls22{letter-spacing:13.487083px;}
.ls23{letter-spacing:13.535264px;}
.ls1d{letter-spacing:13.544518px;}
.ls21{letter-spacing:13.956282px;}
.ls19{letter-spacing:14.824349px;}
.ls18{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.663483px;}
.lsa{letter-spacing:15.720983px;}
.ls9{letter-spacing:17.929200px;}
.ls4{letter-spacing:18.066783px;}
.lsd{letter-spacing:18.069483px;}
.lsb{letter-spacing:20.985943px;}
.ls1f{letter-spacing:21.568047px;}
.ls11{letter-spacing:60.717483px;}
.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;}
}
.ws71{word-spacing:-13.449600px;}
.ws22{word-spacing:-11.955150px;}
.ws3{word-spacing:-10.460700px;}
.ws1e{word-spacing:-3.108331px;}
.ws52{word-spacing:-2.630126px;}
.ws57{word-spacing:-2.569500px;}
.ws62{word-spacing:-2.391024px;}
.ws47{word-spacing:-2.331248px;}
.ws69{word-spacing:-2.211697px;}
.ws7d{word-spacing:-2.044339px;}
.ws68{word-spacing:-1.972595px;}
.ws5c{word-spacing:-1.853044px;}
.wsb{word-spacing:-1.733492px;}
.ws63{word-spacing:-1.673717px;}
.ws78{word-spacing:-1.506355px;}
.ws61{word-spacing:-1.494390px;}
.ws4d{word-spacing:-1.434614px;}
.ws64{word-spacing:-1.374839px;}
.ws48{word-spacing:-1.255288px;}
.ws45{word-spacing:-1.135736px;}
.ws2b{word-spacing:-1.016185px;}
.ws14{word-spacing:-0.956410px;}
.ws13{word-spacing:-0.896634px;}
.ws5d{word-spacing:-0.836858px;}
.ws1d{word-spacing:-0.717307px;}
.ws6f{word-spacing:-0.597756px;}
.ws7a{word-spacing:-0.537980px;}
.ws32{word-spacing:-0.478205px;}
.ws60{word-spacing:-0.418429px;}
.ws73{word-spacing:-0.358654px;}
.ws2d{word-spacing:-0.322790px;}
.ws28{word-spacing:-0.298878px;}
.ws2e{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.239102px;}
.ws30{word-spacing:-0.223925px;}
.ws2f{word-spacing:-0.215194px;}
.ws17{word-spacing:-0.179327px;}
.ws80{word-spacing:-0.161395px;}
.ws16{word-spacing:-0.150067px;}
.ws18{word-spacing:-0.119551px;}
.ws37{word-spacing:-0.107597px;}
.ws29{word-spacing:-0.059776px;}
.ws6d{word-spacing:-0.053798px;}
.ws23{word-spacing:-0.047821px;}
.ws3e{word-spacing:-0.045430px;}
.ws4c{word-spacing:-0.035866px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.047821px;}
.ws7e{word-spacing:0.053798px;}
.ws1a{word-spacing:0.059776px;}
.ws8b{word-spacing:0.107597px;}
.ws1c{word-spacing:0.119551px;}
.ws94{word-spacing:0.161395px;}
.ws9{word-spacing:0.179327px;}
.ws58{word-spacing:0.215194px;}
.ws8{word-spacing:0.239102px;}
.ws99{word-spacing:0.268992px;}
.ws15{word-spacing:0.298878px;}
.ws85{word-spacing:0.322790px;}
.wsa{word-spacing:0.358654px;}
.ws91{word-spacing:0.376589px;}
.ws6e{word-spacing:0.478205px;}
.ws27{word-spacing:0.537980px;}
.ws6a{word-spacing:0.562500px;}
.ws76{word-spacing:0.568500px;}
.ws49{word-spacing:0.597756px;}
.ws50{word-spacing:0.645581px;}
.ws35{word-spacing:0.717307px;}
.ws4e{word-spacing:0.745494px;}
.ws25{word-spacing:0.750600px;}
.ws5b{word-spacing:0.896634px;}
.ws33{word-spacing:0.956410px;}
.ws59{word-spacing:0.968371px;}
.ws67{word-spacing:1.183565px;}
.ws3a{word-spacing:1.195512px;}
.wsc{word-spacing:1.255288px;}
.wsd{word-spacing:1.315063px;}
.ws5f{word-spacing:1.374839px;}
.ws1b{word-spacing:1.434614px;}
.ws89{word-spacing:1.560154px;}
.ws3c{word-spacing:1.613941px;}
.ws88{word-spacing:1.775347px;}
.ws20{word-spacing:1.912819px;}
.ws75{word-spacing:2.032370px;}
.ws8c{word-spacing:2.044339px;}
.ws46{word-spacing:2.092146px;}
.ws81{word-spacing:2.205734px;}
.ws3d{word-spacing:2.211697px;}
.ws39{word-spacing:2.271473px;}
.ws5{word-spacing:2.510252px;}
.ws26{word-spacing:2.630126px;}
.ws19{word-spacing:2.689902px;}
.ws5a{word-spacing:2.809453px;}
.ws6b{word-spacing:2.869229px;}
.ws70{word-spacing:3.012710px;}
.ws7f{word-spacing:3.052702px;}
.ws7c{word-spacing:3.195506px;}
.ws6c{word-spacing:3.227882px;}
.ws8f{word-spacing:3.227904px;}
.ws74{word-spacing:3.287658px;}
.ws4a{word-spacing:3.466985px;}
.ws98{word-spacing:3.496896px;}
.ws11{word-spacing:3.583475px;}
.ws65{word-spacing:3.706087px;}
.ws95{word-spacing:3.712090px;}
.ws72{word-spacing:3.765863px;}
.ws31{word-spacing:3.825638px;}
.ws77{word-spacing:3.885414px;}
.ws10{word-spacing:3.936600px;}
.wsf{word-spacing:3.945190px;}
.ws7{word-spacing:3.950681px;}
.ws51{word-spacing:4.004965px;}
.wse{word-spacing:4.124516px;}
.ws82{word-spacing:4.250074px;}
.ws53{word-spacing:4.303843px;}
.ws12{word-spacing:4.303872px;}
.ws34{word-spacing:4.363619px;}
.ws55{word-spacing:4.542946px;}
.ws4f{word-spacing:5.140702px;}
.ws56{word-spacing:5.295424px;}
.ws3b{word-spacing:5.320028px;}
.ws96{word-spacing:5.326042px;}
.ws5e{word-spacing:5.379804px;}
.ws2a{word-spacing:5.798233px;}
.ws36{word-spacing:6.079219px;}
.ws7b{word-spacing:6.097111px;}
.ws66{word-spacing:6.156887px;}
.ws24{word-spacing:6.395989px;}
.ws8d{word-spacing:6.455808px;}
.ws1f{word-spacing:6.993745px;}
.ws79{word-spacing:8.249033px;}
.ws2{word-spacing:10.417187px;}
.ws21{word-spacing:11.905309px;}
.ws97{word-spacing:13.073011px;}
.ws83{word-spacing:13.288205px;}
.ws87{word-spacing:13.342003px;}
.ws8a{word-spacing:13.395802px;}
.ws93{word-spacing:13.449600px;}
.ws84{word-spacing:13.610995px;}
.ws86{word-spacing:13.718592px;}
.ws92{word-spacing:13.772390px;}
.ws38{word-spacing:14.884124px;}
.ws4{word-spacing:15.481836px;}
.ws40{word-spacing:15.882125px;}
.ws43{word-spacing:16.107818px;}
.ws42{word-spacing:16.328966px;}
.ws90{word-spacing:16.617216px;}
.ws41{word-spacing:17.970084px;}
.ws54{word-spacing:18.470660px;}
.ws8e{word-spacing:19.851610px;}
.ws3f{word-spacing:23.742173px;}
.ws4b{word-spacing:23.920675px;}
.ws1{word-spacing:28.455541px;}
.ws44{word-spacing:533.562353px;}
._1c{margin-left:-21.049510px;}
._4{margin-left:-9.898906px;}
._19{margin-left:-7.304572px;}
._3{margin-left:-5.917824px;}
._6{margin-left:-4.399495px;}
._1{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._13{width:1.532462px;}
._14{width:3.134642px;}
._0{width:12.971268px;}
._17{width:14.238544px;}
._1e{width:15.316525px;}
._10{width:16.370732px;}
._7{width:17.920732px;}
._9{width:19.905275px;}
._f{width:21.435581px;}
._a{width:23.372260px;}
._b{width:24.448260px;}
._15{width:26.994672px;}
._16{width:29.062892px;}
._1a{width:30.318180px;}
._8{width:31.932121px;}
._12{width:34.167678px;}
._11{width:35.427269px;}
._18{width:37.598852px;}
._e{width:38.746540px;}
._1d{width:61.868160px;}
._5{width:84.313225px;}
._c{width:1857.477600px;}
._1b{width:2585.877600px;}
._d{width:2609.787600px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs7{font-size:45.429600px;}
.fsa{font-size:47.337600px;}
.fs4{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs8{font-size:71.731200px;}
.fs3{font-size:81.772800px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y43{bottom:45.921000px;}
.yd3{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y42{bottom:104.097000px;}
.y8a{bottom:104.575500px;}
.y12b{bottom:109.642500px;}
.y167{bottom:112.530000px;}
.y13f{bottom:115.041000px;}
.yb3{bottom:115.533000px;}
.yec{bottom:117.031500px;}
.y14{bottom:118.147500px;}
.yd2{bottom:120.610500px;}
.y41{bottom:124.987500px;}
.y89{bottom:125.466000px;}
.y12a{bottom:130.534500px;}
.y166{bottom:131.680500px;}
.y13e{bottom:135.933000px;}
.y13{bottom:136.035000px;}
.yb2{bottom:136.423500px;}
.yeb{bottom:137.922000px;}
.yd1{bottom:141.502500px;}
.y40{bottom:145.879500px;}
.y88{bottom:146.358000px;}
.y165{bottom:150.831000px;}
.y129{bottom:151.425000px;}
.y12{bottom:153.922500px;}
.y13d{bottom:156.825000px;}
.yb1{bottom:157.315500px;}
.yea{bottom:158.814000px;}
.y3f{bottom:166.771500px;}
.yd0{bottom:166.878000px;}
.y87{bottom:167.250000px;}
.y164{bottom:169.981500px;}
.y11{bottom:171.811500px;}
.y128{bottom:172.317000px;}
.yb0{bottom:178.207500px;}
.y64{bottom:181.810500px;}
.y13c{bottom:182.199000px;}
.ye9{bottom:184.189500px;}
.y3e{bottom:187.662000px;}
.y86{bottom:188.140500px;}
.y163{bottom:189.132000px;}
.y10{bottom:189.699000px;}
.y127{bottom:193.209000px;}
.y100{bottom:196.606500px;}
.yaf{bottom:199.098000px;}
.ycf{bottom:202.219500px;}
.y63{bottom:202.701000px;}
.yf{bottom:207.586500px;}
.y162{bottom:208.284000px;}
.y3d{bottom:208.554000px;}
.y85{bottom:209.032500px;}
.y113{bottom:209.086500px;}
.y126{bottom:214.101000px;}
.ye8{bottom:216.334500px;}
.yff{bottom:217.498500px;}
.y13b{bottom:217.827000px;}
.yae{bottom:219.990000px;}
.yce{bottom:223.111500px;}
.y62{bottom:223.593000px;}
.ye{bottom:225.475500px;}
.y161{bottom:227.434500px;}
.y3c{bottom:229.446000px;}
.y84{bottom:229.924500px;}
.y112{bottom:229.978500px;}
.y125{bottom:234.991500px;}
.yfe{bottom:238.390500px;}
.yad{bottom:240.882000px;}
.ycd{bottom:244.003500px;}
.y61{bottom:244.485000px;}
.y160{bottom:246.585000px;}
.y3b{bottom:250.336500px;}
.y83{bottom:250.815000px;}
.y111{bottom:250.869000px;}
.yd{bottom:252.330000px;}
.y124{bottom:255.883500px;}
.yfd{bottom:259.281000px;}
.yac{bottom:261.774000px;}
.y60{bottom:265.375500px;}
.y15f{bottom:265.735500px;}
.ycc{bottom:269.377500px;}
.yc{bottom:270.217500px;}
.y3a{bottom:271.228500px;}
.y82{bottom:271.707000px;}
.y110{bottom:271.761000px;}
.y123{bottom:276.775500px;}
.yfc{bottom:280.173000px;}
.yab{bottom:282.664500px;}
.y15e{bottom:284.886000px;}
.y5f{bottom:286.267500px;}
.yb{bottom:288.105000px;}
.y39{bottom:292.120500px;}
.y81{bottom:292.599000px;}
.y10f{bottom:292.653000px;}
.y122{bottom:297.666000px;}
.yfb{bottom:301.065000px;}
.yaa{bottom:303.556500px;}
.y15d{bottom:304.036500px;}
.ycb{bottom:304.212000px;}
.ya{bottom:305.994000px;}
.y5e{bottom:307.159500px;}
.y38{bottom:313.012500px;}
.y80{bottom:313.489500px;}
.y10e{bottom:313.543500px;}
.yf9{bottom:321.955500px;}
.y15c{bottom:323.187000px;}
.yca{bottom:323.445000px;}
.y9{bottom:323.881500px;}
.ya9{bottom:324.448500px;}
.yfa{bottom:327.381000px;}
.y5d{bottom:328.050000px;}
.y121{bottom:333.294000px;}
.y37{bottom:333.903000px;}
.y7f{bottom:334.381500px;}
.y10d{bottom:334.435500px;}
.y8{bottom:341.769000px;}
.y15b{bottom:342.337500px;}
.yc9{bottom:342.676500px;}
.yf8{bottom:342.847500px;}
.ya8{bottom:345.339000px;}
.y5c{bottom:348.942000px;}
.y120{bottom:352.527000px;}
.y36{bottom:354.795000px;}
.y7e{bottom:355.273500px;}
.y10c{bottom:355.327500px;}
.y15a{bottom:361.488000px;}
.yc8{bottom:361.909500px;}
.yf7{bottom:363.739500px;}
.y7{bottom:365.635500px;}
.ya7{bottom:366.231000px;}
.y5b{bottom:369.834000px;}
.y35{bottom:375.687000px;}
.y7d{bottom:376.165500px;}
.y10b{bottom:376.218000px;}
.y159{bottom:380.638500px;}
.y6{bottom:383.523000px;}
.yf6{bottom:384.630000px;}
.ya6{bottom:387.123000px;}
.y5a{bottom:390.726000px;}
.y34{bottom:396.577500px;}
.y7c{bottom:397.056000px;}
.y10a{bottom:397.110000px;}
.y158{bottom:399.789000px;}
.y5{bottom:401.410500px;}
.yf5{bottom:405.522000px;}
.y59{bottom:411.616500px;}
.ya5{bottom:412.497000px;}
.y33{bottom:414.853500px;}
.y32{bottom:417.469500px;}
.y7b{bottom:417.948000px;}
.y109{bottom:418.002000px;}
.y157{bottom:418.939500px;}
.y4{bottom:419.299500px;}
.yf4{bottom:426.414000px;}
.y58{bottom:432.508500px;}
.ya4{bottom:436.929000px;}
.y156{bottom:438.090000px;}
.y31{bottom:438.361500px;}
.y7a{bottom:438.840000px;}
.y108{bottom:438.894000px;}
.y3{bottom:443.164500px;}
.yf3{bottom:447.304500px;}
.y57{bottom:453.400500px;}
.y155{bottom:457.240500px;}
.y30{bottom:459.252000px;}
.y79{bottom:459.730500px;}
.y2{bottom:461.052000px;}
.yf2{bottom:468.196500px;}
.y55{bottom:474.291000px;}
.y107{bottom:474.520500px;}
.ya3{bottom:475.753500px;}
.y154{bottom:476.391000px;}
.y1{bottom:478.941000px;}
.y56{bottom:479.716500px;}
.y2f{bottom:480.144000px;}
.y76{bottom:484.510500px;}
.y78{bottom:484.698000px;}
.y77{bottom:484.777500px;}
.y75{bottom:484.924500px;}
.y74{bottom:489.066000px;}
.yf1{bottom:493.572000px;}
.y106{bottom:493.753500px;}
.y153{bottom:495.541500px;}
.ya2{bottom:496.645500px;}
.y2e{bottom:501.036000px;}
.y54{bottom:509.919000px;}
.y105{bottom:512.986500px;}
.y152{bottom:514.692000px;}
.ya0{bottom:517.536000px;}
.y73{bottom:518.400000px;}
.y2d{bottom:521.926500px;}
.ya1{bottom:522.961500px;}
.yf0{bottom:525.717000px;}
.y53{bottom:529.152000px;}
.y151{bottom:533.842500px;}
.y9f{bottom:538.428000px;}
.y72{bottom:539.292000px;}
.y2c{bottom:542.818500px;}
.yef{bottom:544.950000px;}
.y52{bottom:548.385000px;}
.y150{bottom:552.993000px;}
.y71{bottom:560.184000px;}
.y2b{bottom:568.194000px;}
.y13a{bottom:570.910500px;}
.y14f{bottom:572.143500px;}
.y9e{bottom:574.056000px;}
.y70{bottom:581.074500px;}
.y14e{bottom:591.295500px;}
.y139{bottom:591.801000px;}
.y9d{bottom:593.289000px;}
.y6f{bottom:601.966500px;}
.y9c{bottom:612.522000px;}
.y138{bottom:612.693000px;}
.y14d{bottom:614.928000px;}
.ye7{bottom:617.803500px;}
.y6e{bottom:622.858500px;}
.y137{bottom:633.585000px;}
.ye6{bottom:638.695500px;}
.y6d{bottom:643.749000px;}
.y2a{bottom:647.404500px;}
.y14c{bottom:653.752500px;}
.y136{bottom:654.475500px;}
.ye5{bottom:659.587500px;}
.y6c{bottom:664.641000px;}
.y11f{bottom:673.041000px;}
.y135{bottom:675.367500px;}
.ye4{bottom:680.478000px;}
.y14b{bottom:682.218000px;}
.y6b{bottom:685.533000px;}
.y29{bottom:686.229000px;}
.y11e{bottom:693.931500px;}
.y134{bottom:696.259500px;}
.ye3{bottom:701.370000px;}
.y14a{bottom:701.716500px;}
.y6a{bottom:706.425000px;}
.y28{bottom:707.121000px;}
.y11d{bottom:714.823500px;}
.y133{bottom:717.150000px;}
.yc7{bottom:719.736000px;}
.y149{bottom:721.215000px;}
.ye2{bottom:722.262000px;}
.y26{bottom:728.013000px;}
.y69{bottom:731.799000px;}
.y27{bottom:733.437000px;}
.y11c{bottom:735.715500px;}
.y132{bottom:738.042000px;}
.yc6{bottom:740.628000px;}
.y148{bottom:740.713500px;}
.ye1{bottom:743.152500px;}
.y25{bottom:748.903500px;}
.y68{bottom:756.231000px;}
.y11b{bottom:756.606000px;}
.y131{bottom:758.934000px;}
.yc4{bottom:761.518500px;}
.ye0{bottom:764.044500px;}
.yc5{bottom:766.944000px;}
.y147{bottom:769.179000px;}
.y24{bottom:769.795500px;}
.y11a{bottom:777.498000px;}
.y130{bottom:779.826000px;}
.yc3{bottom:782.410500px;}
.ydf{bottom:784.936500px;}
.y146{bottom:788.677500px;}
.y23{bottom:790.687500px;}
.y67{bottom:791.859000px;}
.y119{bottom:798.390000px;}
.y12f{bottom:800.716500px;}
.yde{bottom:805.827000px;}
.yc2{bottom:807.784500px;}
.y66{bottom:811.092000px;}
.y22{bottom:811.578000px;}
.y176{bottom:812.791500px;}
.y145{bottom:817.143000px;}
.y118{bottom:819.280500px;}
.y9b{bottom:823.168500px;}
.ydd{bottom:826.719000px;}
.y65{bottom:830.325000px;}
.y175{bottom:831.942000px;}
.y21{bottom:832.470000px;}
.y12e{bottom:836.344500px;}
.y144{bottom:836.641500px;}
.yc1{bottom:843.127500px;}
.y9a{bottom:844.060500px;}
.y117{bottom:844.656000px;}
.ydc{bottom:847.611000px;}
.y174{bottom:851.092500px;}
.y20{bottom:853.362000px;}
.y12d{bottom:855.577500px;}
.y143{bottom:856.140000px;}
.yc0{bottom:864.019500px;}
.y99{bottom:864.951000px;}
.y51{bottom:866.977500px;}
.ydb{bottom:868.503000px;}
.y1f{bottom:874.252500px;}
.y12c{bottom:874.810500px;}
.y142{bottom:875.640000px;}
.y116{bottom:876.802500px;}
.ybf{bottom:884.910000px;}
.y98{bottom:885.843000px;}
.y50{bottom:887.869500px;}
.yda{bottom:889.393500px;}
.y173{bottom:891.135000px;}
.y141{bottom:895.138500px;}
.y1e{bottom:895.144500px;}
.y115{bottom:896.034000px;}
.ybe{bottom:905.802000px;}
.y97{bottom:906.735000px;}
.y4f{bottom:908.761500px;}
.yd9{bottom:910.285500px;}
.y140{bottom:914.637000px;}
.y114{bottom:915.267000px;}
.yee{bottom:915.709500px;}
.ybd{bottom:926.694000px;}
.y96{bottom:927.625500px;}
.yed{bottom:928.560000px;}
.y104{bottom:928.651500px;}
.y172{bottom:929.436000px;}
.y4e{bottom:929.652000px;}
.yd8{bottom:931.177500px;}
.y1d{bottom:935.164500px;}
.ybc{bottom:947.584500px;}
.y95{bottom:948.517500px;}
.y171{bottom:948.586500px;}
.y103{bottom:949.543500px;}
.y4d{bottom:950.544000px;}
.y1c{bottom:951.304500px;}
.yd7{bottom:952.068000px;}
.y1b{bottom:955.644000px;}
.y1a{bottom:967.443000px;}
.y170{bottom:967.737000px;}
.ybb{bottom:968.476500px;}
.y94{bottom:969.409500px;}
.y102{bottom:970.434000px;}
.y4c{bottom:971.436000px;}
.yd6{bottom:972.960000px;}
.y19{bottom:983.583000px;}
.y16f{bottom:986.887500px;}
.yba{bottom:989.368500px;}
.y93{bottom:990.301500px;}
.yd5{bottom:993.852000px;}
.y101{bottom:995.809500px;}
.y4b{bottom:996.810000px;}
.y16e{bottom:1006.038000px;}
.yb9{bottom:1010.260500px;}
.y91{bottom:1011.192000px;}
.yd4{bottom:1014.742500px;}
.y92{bottom:1016.617500px;}
.y16d{bottom:1025.188500px;}
.yb8{bottom:1031.151000px;}
.y90{bottom:1032.084000px;}
.y18{bottom:1032.600000px;}
.y4a{bottom:1035.634500px;}
.y16c{bottom:1044.339000px;}
.yb7{bottom:1052.043000px;}
.y8f{bottom:1052.976000px;}
.y49{bottom:1056.526500px;}
.y16b{bottom:1063.489500px;}
.y17{bottom:1071.424500px;}
.yb6{bottom:1072.935000px;}
.y8e{bottom:1073.866500px;}
.y48{bottom:1077.417000px;}
.y16a{bottom:1082.640000px;}
.yb5{bottom:1093.825500px;}
.y47{bottom:1098.309000px;}
.y8d{bottom:1099.242000px;}
.y169{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.yb4{bottom:1114.717500px;}
.y46{bottom:1119.201000px;}
.y168{bottom:1120.941000px;}
.y8b{bottom:1136.415000px;}
.y8c{bottom:1136.833500px;}
.y45{bottom:1140.091500px;}
.y44{bottom:1200.196500px;}
.h8{height:26.110157px;}
.h16{height:29.529146px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.hb{height:33.072749px;}
.h7{height:34.813397px;}
.hd{height:35.052500px;}
.h18{height:35.503200px;}
.hf{height:39.165235px;}
.h1b{height:39.434227px;}
.h6{height:43.038432px;}
.h9{height:43.516637px;}
.h4{height:43.815515px;}
.ha{height:46.714950px;}
.hc{height:51.646464px;}
.he{height:54.768749px;}
.h19{height:57.199200px;}
.h1a{height:57.205200px;}
.h10{height:57.756749px;}
.h15{height:60.670637px;}
.h11{height:74.322749px;}
.h17{height:74.517146px;}
.h13{height:74.910749px;}
.h14{height:75.228749px;}
.h12{height:75.978749px;}
.h5{height:97.930416px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x57{left:85.848000px;}
.x2{left:249.591000px;}
.x3{left:260.110500px;}
.x4{left:262.143000px;}
.x9{left:281.479500px;}
.xa{left:288.363000px;}
.x51{left:289.993500px;}
.x4c{left:298.042500px;}
.xb{left:304.188000px;}
.xc{left:311.659500px;}
.x2c{left:315.748500px;}
.xf{left:337.629000px;}
.x2d{left:348.790500px;}
.xd{left:351.660000px;}
.x10{left:353.677500px;}
.xe{left:361.711500px;}
.x4d{left:365.664000px;}
.x3a{left:374.947500px;}
.x15{left:378.361500px;}
.x4e{left:380.608500px;}
.x22{left:398.106000px;}
.x23{left:405.874500px;}
.x1e{left:452.695500px;}
.x28{left:456.235500px;}
.x1f{left:460.167000px;}
.x52{left:485.182500px;}
.x31{left:492.675000px;}
.x53{left:500.127000px;}
.x29{left:501.555000px;}
.x2a{left:507.681000px;}
.x24{left:516.810000px;}
.x2b{left:534.852000px;}
.x32{left:550.312500px;}
.x5{left:558.577500px;}
.x25{left:562.707000px;}
.x2e{left:568.116000px;}
.x6{left:574.174500px;}
.x2f{left:600.760500px;}
.x4f{left:609.925500px;}
.x26{left:613.827000px;}
.x3b{left:620.976000px;}
.x7{left:624.961500px;}
.x8{left:636.202500px;}
.x3c{left:639.906000px;}
.x21{left:641.368500px;}
.x43{left:650.491500px;}
.x1c{left:655.623000px;}
.x1d{left:663.096000px;}
.x27{left:665.095500px;}
.x44{left:666.216000px;}
.x54{left:668.700000px;}
.x3d{left:670.570500px;}
.x18{left:674.458500px;}
.x55{left:683.643000px;}
.x16{left:687.345000px;}
.x19{left:689.658000px;}
.x17{left:694.167000px;}
.x41{left:696.444000px;}
.x50{left:701.964000px;}
.x30{left:703.021500px;}
.x34{left:707.460000px;}
.x42{left:711.604500px;}
.x4a{left:712.870500px;}
.x3e{left:717.466500px;}
.x13{left:719.686500px;}
.x35{left:722.104500px;}
.x11{left:724.374000px;}
.x45{left:728.935500px;}
.x46{left:730.053000px;}
.x12{left:731.847000px;}
.x1a{left:735.438000px;}
.x14{left:737.422500px;}
.x47{left:741.358500px;}
.x1b{left:745.605000px;}
.x20{left:746.620500px;}
.x49{left:751.065000px;}
.x48{left:759.751500px;}
.x3f{left:766.054500px;}
.x40{left:776.215500px;}
.x36{left:783.090000px;}
.x4b{left:790.398000px;}
.x37{left:812.007000px;}
.x56{left:817.779000px;}
.x33{left:822.982500px;}
.x38{left:831.441000px;}
.x39{left:837.867000px;}
@media print{
.ve{vertical-align:-40.517333pt;}
.v3{vertical-align:-10.624000pt;}
.v2{vertical-align:-9.642667pt;}
.v5{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.973333pt;}
.vb{vertical-align:15.248000pt;}
.v9{vertical-align:16.197333pt;}
.v4{vertical-align:19.285333pt;}
.v7{vertical-align:21.941333pt;}
.v8{vertical-align:24.042667pt;}
.v1{vertical-align:34.714667pt;}
.vc{vertical-align:37.189333pt;}
.va{vertical-align:38.138667pt;}
.vd{vertical-align:58.954667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls1c{letter-spacing:0.637762pt;}
.ls15{letter-spacing:0.640696pt;}
.ls1a{letter-spacing:0.643096pt;}
.lsc{letter-spacing:0.928300pt;}
.lsf{letter-spacing:0.933633pt;}
.ls16{letter-spacing:1.166903pt;}
.ls13{letter-spacing:1.172237pt;}
.ls2{letter-spacing:1.302029pt;}
.ls5{letter-spacing:1.694400pt;}
.ls14{letter-spacing:2.919922pt;}
.ls3{letter-spacing:2.925255pt;}
.ls1b{letter-spacing:3.163733pt;}
.ls12{letter-spacing:3.170290pt;}
.ls0{letter-spacing:9.293600pt;}
.ls6{letter-spacing:10.626533pt;}
.ls17{letter-spacing:10.968429pt;}
.lse{letter-spacing:11.629762pt;}
.ls10{letter-spacing:11.635096pt;}
.ls24{letter-spacing:11.678787pt;}
.ls1e{letter-spacing:11.954133pt;}
.ls20{letter-spacing:11.959467pt;}
.ls22{letter-spacing:11.988519pt;}
.ls23{letter-spacing:12.031346pt;}
.ls1d{letter-spacing:12.039571pt;}
.ls21{letter-spacing:12.405584pt;}
.ls19{letter-spacing:13.177199pt;}
.ls18{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.923096pt;}
.lsa{letter-spacing:13.974207pt;}
.ls9{letter-spacing:15.937067pt;}
.ls4{letter-spacing:16.059362pt;}
.lsd{letter-spacing:16.061762pt;}
.lsb{letter-spacing:18.654172pt;}
.ls1f{letter-spacing:19.171597pt;}
.ls11{letter-spacing:53.971096pt;}
.ws71{word-spacing:-11.955200pt;}
.ws22{word-spacing:-10.626800pt;}
.ws3{word-spacing:-9.298400pt;}
.ws1e{word-spacing:-2.762961pt;}
.ws52{word-spacing:-2.337890pt;}
.ws57{word-spacing:-2.284000pt;}
.ws62{word-spacing:-2.125355pt;}
.ws47{word-spacing:-2.072221pt;}
.ws69{word-spacing:-1.965953pt;}
.ws7d{word-spacing:-1.817190pt;}
.ws68{word-spacing:-1.753418pt;}
.ws5c{word-spacing:-1.647150pt;}
.wsb{word-spacing:-1.540882pt;}
.ws63{word-spacing:-1.487748pt;}
.ws78{word-spacing:-1.338982pt;}
.ws61{word-spacing:-1.328347pt;}
.ws4d{word-spacing:-1.275213pt;}
.ws64{word-spacing:-1.222079pt;}
.ws48{word-spacing:-1.115811pt;}
.ws45{word-spacing:-1.009543pt;}
.ws2b{word-spacing:-0.903276pt;}
.ws14{word-spacing:-0.850142pt;}
.ws13{word-spacing:-0.797008pt;}
.ws5d{word-spacing:-0.743874pt;}
.ws1d{word-spacing:-0.637606pt;}
.ws6f{word-spacing:-0.531339pt;}
.ws7a{word-spacing:-0.478205pt;}
.ws32{word-spacing:-0.425071pt;}
.ws60{word-spacing:-0.371937pt;}
.ws73{word-spacing:-0.318803pt;}
.ws2d{word-spacing:-0.286925pt;}
.ws28{word-spacing:-0.265669pt;}
.ws2e{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws30{word-spacing:-0.199044pt;}
.ws2f{word-spacing:-0.191283pt;}
.ws17{word-spacing:-0.159402pt;}
.ws80{word-spacing:-0.143462pt;}
.ws16{word-spacing:-0.133393pt;}
.ws18{word-spacing:-0.106268pt;}
.ws37{word-spacing:-0.095642pt;}
.ws29{word-spacing:-0.053134pt;}
.ws6d{word-spacing:-0.047821pt;}
.ws23{word-spacing:-0.042507pt;}
.ws3e{word-spacing:-0.040382pt;}
.ws4c{word-spacing:-0.031881pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.042507pt;}
.ws7e{word-spacing:0.047821pt;}
.ws1a{word-spacing:0.053134pt;}
.ws8b{word-spacing:0.095642pt;}
.ws1c{word-spacing:0.106268pt;}
.ws94{word-spacing:0.143462pt;}
.ws9{word-spacing:0.159402pt;}
.ws58{word-spacing:0.191283pt;}
.ws8{word-spacing:0.212535pt;}
.ws99{word-spacing:0.239104pt;}
.ws15{word-spacing:0.265669pt;}
.ws85{word-spacing:0.286925pt;}
.wsa{word-spacing:0.318803pt;}
.ws91{word-spacing:0.334746pt;}
.ws6e{word-spacing:0.425071pt;}
.ws27{word-spacing:0.478205pt;}
.ws6a{word-spacing:0.500000pt;}
.ws76{word-spacing:0.505333pt;}
.ws49{word-spacing:0.531339pt;}
.ws50{word-spacing:0.573850pt;}
.ws35{word-spacing:0.637606pt;}
.ws4e{word-spacing:0.662661pt;}
.ws25{word-spacing:0.667200pt;}
.ws5b{word-spacing:0.797008pt;}
.ws33{word-spacing:0.850142pt;}
.ws59{word-spacing:0.860774pt;}
.ws67{word-spacing:1.052058pt;}
.ws3a{word-spacing:1.062677pt;}
.wsc{word-spacing:1.115811pt;}
.wsd{word-spacing:1.168945pt;}
.ws5f{word-spacing:1.222079pt;}
.ws1b{word-spacing:1.275213pt;}
.ws89{word-spacing:1.386803pt;}
.ws3c{word-spacing:1.434614pt;}
.ws88{word-spacing:1.578086pt;}
.ws20{word-spacing:1.700284pt;}
.ws75{word-spacing:1.806551pt;}
.ws8c{word-spacing:1.817190pt;}
.ws46{word-spacing:1.859685pt;}
.ws81{word-spacing:1.960653pt;}
.ws3d{word-spacing:1.965953pt;}
.ws39{word-spacing:2.019087pt;}
.ws5{word-spacing:2.231335pt;}
.ws26{word-spacing:2.337890pt;}
.ws19{word-spacing:2.391024pt;}
.ws5a{word-spacing:2.497292pt;}
.ws6b{word-spacing:2.550426pt;}
.ws70{word-spacing:2.677965pt;}
.ws7f{word-spacing:2.713513pt;}
.ws7c{word-spacing:2.840450pt;}
.ws6c{word-spacing:2.869229pt;}
.ws8f{word-spacing:2.869248pt;}
.ws74{word-spacing:2.922363pt;}
.ws4a{word-spacing:3.081764pt;}
.ws98{word-spacing:3.108352pt;}
.ws11{word-spacing:3.185311pt;}
.ws65{word-spacing:3.294300pt;}
.ws95{word-spacing:3.299635pt;}
.ws72{word-spacing:3.347434pt;}
.ws31{word-spacing:3.400567pt;}
.ws77{word-spacing:3.453701pt;}
.ws10{word-spacing:3.499200pt;}
.wsf{word-spacing:3.506835pt;}
.ws7{word-spacing:3.511716pt;}
.ws51{word-spacing:3.559969pt;}
.wse{word-spacing:3.666237pt;}
.ws82{word-spacing:3.777843pt;}
.ws53{word-spacing:3.825638pt;}
.ws12{word-spacing:3.825664pt;}
.ws34{word-spacing:3.878772pt;}
.ws55{word-spacing:4.038174pt;}
.ws4f{word-spacing:4.569513pt;}
.ws56{word-spacing:4.707043pt;}
.ws3b{word-spacing:4.728914pt;}
.ws96{word-spacing:4.734259pt;}
.ws5e{word-spacing:4.782048pt;}
.ws2a{word-spacing:5.153985pt;}
.ws36{word-spacing:5.403750pt;}
.ws7b{word-spacing:5.419654pt;}
.ws66{word-spacing:5.472788pt;}
.ws24{word-spacing:5.685324pt;}
.ws8d{word-spacing:5.738496pt;}
.ws1f{word-spacing:6.216662pt;}
.ws79{word-spacing:7.332474pt;}
.ws2{word-spacing:9.259722pt;}
.ws21{word-spacing:10.582497pt;}
.ws97{word-spacing:11.620454pt;}
.ws83{word-spacing:11.811738pt;}
.ws87{word-spacing:11.859558pt;}
.ws8a{word-spacing:11.907379pt;}
.ws93{word-spacing:11.955200pt;}
.ws84{word-spacing:12.098662pt;}
.ws86{word-spacing:12.194304pt;}
.ws92{word-spacing:12.242125pt;}
.ws38{word-spacing:13.230333pt;}
.ws4{word-spacing:13.761632pt;}
.ws40{word-spacing:14.117444pt;}
.ws43{word-spacing:14.318061pt;}
.ws42{word-spacing:14.514637pt;}
.ws90{word-spacing:14.770859pt;}
.ws41{word-spacing:15.973408pt;}
.ws54{word-spacing:16.418365pt;}
.ws8e{word-spacing:17.645875pt;}
.ws3f{word-spacing:21.104154pt;}
.ws4b{word-spacing:21.262822pt;}
.ws1{word-spacing:25.293814pt;}
.ws44{word-spacing:474.277647pt;}
._1c{margin-left:-18.710675pt;}
._4{margin-left:-8.799027pt;}
._19{margin-left:-6.492953pt;}
._3{margin-left:-5.260288pt;}
._6{margin-left:-3.910662pt;}
._1{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._13{width:1.362189pt;}
._14{width:2.786349pt;}
._0{width:11.530016pt;}
._17{width:12.656483pt;}
._1e{width:13.614689pt;}
._10{width:14.551762pt;}
._7{width:15.929539pt;}
._9{width:17.693578pt;}
._f{width:19.053850pt;}
._a{width:20.775342pt;}
._b{width:21.731787pt;}
._15{width:23.995264pt;}
._16{width:25.833682pt;}
._1a{width:26.949493pt;}
._8{width:28.384108pt;}
._12{width:30.371269pt;}
._11{width:31.490906pt;}
._18{width:33.421202pt;}
._e{width:34.441369pt;}
._1d{width:54.993920pt;}
._5{width:74.945089pt;}
._c{width:1651.091200pt;}
._1b{width:2298.557867pt;}
._d{width:2319.811200pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs7{font-size:40.381867pt;}
.fsa{font-size:42.077867pt;}
.fs4{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs8{font-size:63.761067pt;}
.fs3{font-size:72.686933pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:40.818667pt;}
.yd3{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y42{bottom:92.530667pt;}
.y8a{bottom:92.956000pt;}
.y12b{bottom:97.460000pt;}
.y167{bottom:100.026667pt;}
.y13f{bottom:102.258667pt;}
.yb3{bottom:102.696000pt;}
.yec{bottom:104.028000pt;}
.y14{bottom:105.020000pt;}
.yd2{bottom:107.209333pt;}
.y41{bottom:111.100000pt;}
.y89{bottom:111.525333pt;}
.y12a{bottom:116.030667pt;}
.y166{bottom:117.049333pt;}
.y13e{bottom:120.829333pt;}
.y13{bottom:120.920000pt;}
.yb2{bottom:121.265333pt;}
.yeb{bottom:122.597333pt;}
.yd1{bottom:125.780000pt;}
.y40{bottom:129.670667pt;}
.y88{bottom:130.096000pt;}
.y165{bottom:134.072000pt;}
.y129{bottom:134.600000pt;}
.y12{bottom:136.820000pt;}
.y13d{bottom:139.400000pt;}
.yb1{bottom:139.836000pt;}
.yea{bottom:141.168000pt;}
.y3f{bottom:148.241333pt;}
.yd0{bottom:148.336000pt;}
.y87{bottom:148.666667pt;}
.y164{bottom:151.094667pt;}
.y11{bottom:152.721333pt;}
.y128{bottom:153.170667pt;}
.yb0{bottom:158.406667pt;}
.y64{bottom:161.609333pt;}
.y13c{bottom:161.954667pt;}
.ye9{bottom:163.724000pt;}
.y3e{bottom:166.810667pt;}
.y86{bottom:167.236000pt;}
.y163{bottom:168.117333pt;}
.y10{bottom:168.621333pt;}
.y127{bottom:171.741333pt;}
.y100{bottom:174.761333pt;}
.yaf{bottom:176.976000pt;}
.ycf{bottom:179.750667pt;}
.y63{bottom:180.178667pt;}
.yf{bottom:184.521333pt;}
.y162{bottom:185.141333pt;}
.y3d{bottom:185.381333pt;}
.y85{bottom:185.806667pt;}
.y113{bottom:185.854667pt;}
.y126{bottom:190.312000pt;}
.ye8{bottom:192.297333pt;}
.yff{bottom:193.332000pt;}
.y13b{bottom:193.624000pt;}
.yae{bottom:195.546667pt;}
.yce{bottom:198.321333pt;}
.y62{bottom:198.749333pt;}
.ye{bottom:200.422667pt;}
.y161{bottom:202.164000pt;}
.y3c{bottom:203.952000pt;}
.y84{bottom:204.377333pt;}
.y112{bottom:204.425333pt;}
.y125{bottom:208.881333pt;}
.yfe{bottom:211.902667pt;}
.yad{bottom:214.117333pt;}
.ycd{bottom:216.892000pt;}
.y61{bottom:217.320000pt;}
.y160{bottom:219.186667pt;}
.y3b{bottom:222.521333pt;}
.y83{bottom:222.946667pt;}
.y111{bottom:222.994667pt;}
.yd{bottom:224.293333pt;}
.y124{bottom:227.452000pt;}
.yfd{bottom:230.472000pt;}
.yac{bottom:232.688000pt;}
.y60{bottom:235.889333pt;}
.y15f{bottom:236.209333pt;}
.ycc{bottom:239.446667pt;}
.yc{bottom:240.193333pt;}
.y3a{bottom:241.092000pt;}
.y82{bottom:241.517333pt;}
.y110{bottom:241.565333pt;}
.y123{bottom:246.022667pt;}
.yfc{bottom:249.042667pt;}
.yab{bottom:251.257333pt;}
.y15e{bottom:253.232000pt;}
.y5f{bottom:254.460000pt;}
.yb{bottom:256.093333pt;}
.y39{bottom:259.662667pt;}
.y81{bottom:260.088000pt;}
.y10f{bottom:260.136000pt;}
.y122{bottom:264.592000pt;}
.yfb{bottom:267.613333pt;}
.yaa{bottom:269.828000pt;}
.y15d{bottom:270.254667pt;}
.ycb{bottom:270.410667pt;}
.ya{bottom:271.994667pt;}
.y5e{bottom:273.030667pt;}
.y38{bottom:278.233333pt;}
.y80{bottom:278.657333pt;}
.y10e{bottom:278.705333pt;}
.yf9{bottom:286.182667pt;}
.y15c{bottom:287.277333pt;}
.yca{bottom:287.506667pt;}
.y9{bottom:287.894667pt;}
.ya9{bottom:288.398667pt;}
.yfa{bottom:291.005333pt;}
.y5d{bottom:291.600000pt;}
.y121{bottom:296.261333pt;}
.y37{bottom:296.802667pt;}
.y7f{bottom:297.228000pt;}
.y10d{bottom:297.276000pt;}
.y8{bottom:303.794667pt;}
.y15b{bottom:304.300000pt;}
.yc9{bottom:304.601333pt;}
.yf8{bottom:304.753333pt;}
.ya8{bottom:306.968000pt;}
.y5c{bottom:310.170667pt;}
.y120{bottom:313.357333pt;}
.y36{bottom:315.373333pt;}
.y7e{bottom:315.798667pt;}
.y10c{bottom:315.846667pt;}
.y15a{bottom:321.322667pt;}
.yc8{bottom:321.697333pt;}
.yf7{bottom:323.324000pt;}
.y7{bottom:325.009333pt;}
.ya7{bottom:325.538667pt;}
.y5b{bottom:328.741333pt;}
.y35{bottom:333.944000pt;}
.y7d{bottom:334.369333pt;}
.y10b{bottom:334.416000pt;}
.y159{bottom:338.345333pt;}
.y6{bottom:340.909333pt;}
.yf6{bottom:341.893333pt;}
.ya6{bottom:344.109333pt;}
.y5a{bottom:347.312000pt;}
.y34{bottom:352.513333pt;}
.y7c{bottom:352.938667pt;}
.y10a{bottom:352.986667pt;}
.y158{bottom:355.368000pt;}
.y5{bottom:356.809333pt;}
.yf5{bottom:360.464000pt;}
.y59{bottom:365.881333pt;}
.ya5{bottom:366.664000pt;}
.y33{bottom:368.758667pt;}
.y32{bottom:371.084000pt;}
.y7b{bottom:371.509333pt;}
.y109{bottom:371.557333pt;}
.y157{bottom:372.390667pt;}
.y4{bottom:372.710667pt;}
.yf4{bottom:379.034667pt;}
.y58{bottom:384.452000pt;}
.ya4{bottom:388.381333pt;}
.y156{bottom:389.413333pt;}
.y31{bottom:389.654667pt;}
.y7a{bottom:390.080000pt;}
.y108{bottom:390.128000pt;}
.y3{bottom:393.924000pt;}
.yf3{bottom:397.604000pt;}
.y57{bottom:403.022667pt;}
.y155{bottom:406.436000pt;}
.y30{bottom:408.224000pt;}
.y79{bottom:408.649333pt;}
.y2{bottom:409.824000pt;}
.yf2{bottom:416.174667pt;}
.y55{bottom:421.592000pt;}
.y107{bottom:421.796000pt;}
.ya3{bottom:422.892000pt;}
.y154{bottom:423.458667pt;}
.y1{bottom:425.725333pt;}
.y56{bottom:426.414667pt;}
.y2f{bottom:426.794667pt;}
.y76{bottom:430.676000pt;}
.y78{bottom:430.842667pt;}
.y77{bottom:430.913333pt;}
.y75{bottom:431.044000pt;}
.y74{bottom:434.725333pt;}
.yf1{bottom:438.730667pt;}
.y106{bottom:438.892000pt;}
.y153{bottom:440.481333pt;}
.ya2{bottom:441.462667pt;}
.y2e{bottom:445.365333pt;}
.y54{bottom:453.261333pt;}
.y105{bottom:455.988000pt;}
.y152{bottom:457.504000pt;}
.ya0{bottom:460.032000pt;}
.y73{bottom:460.800000pt;}
.y2d{bottom:463.934667pt;}
.ya1{bottom:464.854667pt;}
.yf0{bottom:467.304000pt;}
.y53{bottom:470.357333pt;}
.y151{bottom:474.526667pt;}
.y9f{bottom:478.602667pt;}
.y72{bottom:479.370667pt;}
.y2c{bottom:482.505333pt;}
.yef{bottom:484.400000pt;}
.y52{bottom:487.453333pt;}
.y150{bottom:491.549333pt;}
.y71{bottom:497.941333pt;}
.y2b{bottom:505.061333pt;}
.y13a{bottom:507.476000pt;}
.y14f{bottom:508.572000pt;}
.y9e{bottom:510.272000pt;}
.y70{bottom:516.510667pt;}
.y14e{bottom:525.596000pt;}
.y139{bottom:526.045333pt;}
.y9d{bottom:527.368000pt;}
.y6f{bottom:535.081333pt;}
.y9c{bottom:544.464000pt;}
.y138{bottom:544.616000pt;}
.y14d{bottom:546.602667pt;}
.ye7{bottom:549.158667pt;}
.y6e{bottom:553.652000pt;}
.y137{bottom:563.186667pt;}
.ye6{bottom:567.729333pt;}
.y6d{bottom:572.221333pt;}
.y2a{bottom:575.470667pt;}
.y14c{bottom:581.113333pt;}
.y136{bottom:581.756000pt;}
.ye5{bottom:586.300000pt;}
.y6c{bottom:590.792000pt;}
.y11f{bottom:598.258667pt;}
.y135{bottom:600.326667pt;}
.ye4{bottom:604.869333pt;}
.y14b{bottom:606.416000pt;}
.y6b{bottom:609.362667pt;}
.y29{bottom:609.981333pt;}
.y11e{bottom:616.828000pt;}
.y134{bottom:618.897333pt;}
.ye3{bottom:623.440000pt;}
.y14a{bottom:623.748000pt;}
.y6a{bottom:627.933333pt;}
.y28{bottom:628.552000pt;}
.y11d{bottom:635.398667pt;}
.y133{bottom:637.466667pt;}
.yc7{bottom:639.765333pt;}
.y149{bottom:641.080000pt;}
.ye2{bottom:642.010667pt;}
.y26{bottom:647.122667pt;}
.y69{bottom:650.488000pt;}
.y27{bottom:651.944000pt;}
.y11c{bottom:653.969333pt;}
.y132{bottom:656.037333pt;}
.yc6{bottom:658.336000pt;}
.y148{bottom:658.412000pt;}
.ye1{bottom:660.580000pt;}
.y25{bottom:665.692000pt;}
.y68{bottom:672.205333pt;}
.y11b{bottom:672.538667pt;}
.y131{bottom:674.608000pt;}
.yc4{bottom:676.905333pt;}
.ye0{bottom:679.150667pt;}
.yc5{bottom:681.728000pt;}
.y147{bottom:683.714667pt;}
.y24{bottom:684.262667pt;}
.y11a{bottom:691.109333pt;}
.y130{bottom:693.178667pt;}
.yc3{bottom:695.476000pt;}
.ydf{bottom:697.721333pt;}
.y146{bottom:701.046667pt;}
.y23{bottom:702.833333pt;}
.y67{bottom:703.874667pt;}
.y119{bottom:709.680000pt;}
.y12f{bottom:711.748000pt;}
.yde{bottom:716.290667pt;}
.yc2{bottom:718.030667pt;}
.y66{bottom:720.970667pt;}
.y22{bottom:721.402667pt;}
.y176{bottom:722.481333pt;}
.y145{bottom:726.349333pt;}
.y118{bottom:728.249333pt;}
.y9b{bottom:731.705333pt;}
.ydd{bottom:734.861333pt;}
.y65{bottom:738.066667pt;}
.y175{bottom:739.504000pt;}
.y21{bottom:739.973333pt;}
.y12e{bottom:743.417333pt;}
.y144{bottom:743.681333pt;}
.yc1{bottom:749.446667pt;}
.y9a{bottom:750.276000pt;}
.y117{bottom:750.805333pt;}
.ydc{bottom:753.432000pt;}
.y174{bottom:756.526667pt;}
.y20{bottom:758.544000pt;}
.y12d{bottom:760.513333pt;}
.y143{bottom:761.013333pt;}
.yc0{bottom:768.017333pt;}
.y99{bottom:768.845333pt;}
.y51{bottom:770.646667pt;}
.ydb{bottom:772.002667pt;}
.y1f{bottom:777.113333pt;}
.y12c{bottom:777.609333pt;}
.y142{bottom:778.346667pt;}
.y116{bottom:779.380000pt;}
.ybf{bottom:786.586667pt;}
.y98{bottom:787.416000pt;}
.y50{bottom:789.217333pt;}
.yda{bottom:790.572000pt;}
.y173{bottom:792.120000pt;}
.y141{bottom:795.678667pt;}
.y1e{bottom:795.684000pt;}
.y115{bottom:796.474667pt;}
.ybe{bottom:805.157333pt;}
.y97{bottom:805.986667pt;}
.y4f{bottom:807.788000pt;}
.yd9{bottom:809.142667pt;}
.y140{bottom:813.010667pt;}
.y114{bottom:813.570667pt;}
.yee{bottom:813.964000pt;}
.ybd{bottom:823.728000pt;}
.y96{bottom:824.556000pt;}
.yed{bottom:825.386667pt;}
.y104{bottom:825.468000pt;}
.y172{bottom:826.165333pt;}
.y4e{bottom:826.357333pt;}
.yd8{bottom:827.713333pt;}
.y1d{bottom:831.257333pt;}
.ybc{bottom:842.297333pt;}
.y95{bottom:843.126667pt;}
.y171{bottom:843.188000pt;}
.y103{bottom:844.038667pt;}
.y4d{bottom:844.928000pt;}
.y1c{bottom:845.604000pt;}
.yd7{bottom:846.282667pt;}
.y1b{bottom:849.461333pt;}
.y1a{bottom:859.949333pt;}
.y170{bottom:860.210667pt;}
.ybb{bottom:860.868000pt;}
.y94{bottom:861.697333pt;}
.y102{bottom:862.608000pt;}
.y4c{bottom:863.498667pt;}
.yd6{bottom:864.853333pt;}
.y19{bottom:874.296000pt;}
.y16f{bottom:877.233333pt;}
.yba{bottom:879.438667pt;}
.y93{bottom:880.268000pt;}
.yd5{bottom:883.424000pt;}
.y101{bottom:885.164000pt;}
.y4b{bottom:886.053333pt;}
.y16e{bottom:894.256000pt;}
.yb9{bottom:898.009333pt;}
.y91{bottom:898.837333pt;}
.yd4{bottom:901.993333pt;}
.y92{bottom:903.660000pt;}
.y16d{bottom:911.278667pt;}
.yb8{bottom:916.578667pt;}
.y90{bottom:917.408000pt;}
.y18{bottom:917.866667pt;}
.y4a{bottom:920.564000pt;}
.y16c{bottom:928.301333pt;}
.yb7{bottom:935.149333pt;}
.y8f{bottom:935.978667pt;}
.y49{bottom:939.134667pt;}
.y16b{bottom:945.324000pt;}
.y17{bottom:952.377333pt;}
.yb6{bottom:953.720000pt;}
.y8e{bottom:954.548000pt;}
.y48{bottom:957.704000pt;}
.y16a{bottom:962.346667pt;}
.yb5{bottom:972.289333pt;}
.y47{bottom:976.274667pt;}
.y8d{bottom:977.104000pt;}
.y169{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.yb4{bottom:990.860000pt;}
.y46{bottom:994.845333pt;}
.y168{bottom:996.392000pt;}
.y8b{bottom:1010.146667pt;}
.y8c{bottom:1010.518667pt;}
.y45{bottom:1013.414667pt;}
.y44{bottom:1066.841333pt;}
.h8{height:23.209028pt;}
.h16{height:26.248130pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.hb{height:29.397999pt;}
.h7{height:30.945242pt;}
.hd{height:31.157778pt;}
.h18{height:31.558400pt;}
.hf{height:34.813542pt;}
.h1b{height:35.052646pt;}
.h6{height:38.256384pt;}
.h9{height:38.681455pt;}
.h4{height:38.947124pt;}
.ha{height:41.524400pt;}
.hc{height:45.907968pt;}
.he{height:48.683332pt;}
.h19{height:50.843733pt;}
.h1a{height:50.849067pt;}
.h10{height:51.339332pt;}
.h15{height:53.929455pt;}
.h11{height:66.064666pt;}
.h17{height:66.237463pt;}
.h13{height:66.587332pt;}
.h14{height:66.869999pt;}
.h12{height:67.536666pt;}
.h5{height:87.049259pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x57{left:76.309333pt;}
.x2{left:221.858667pt;}
.x3{left:231.209333pt;}
.x4{left:233.016000pt;}
.x9{left:250.204000pt;}
.xa{left:256.322667pt;}
.x51{left:257.772000pt;}
.x4c{left:264.926667pt;}
.xb{left:270.389333pt;}
.xc{left:277.030667pt;}
.x2c{left:280.665333pt;}
.xf{left:300.114667pt;}
.x2d{left:310.036000pt;}
.xd{left:312.586667pt;}
.x10{left:314.380000pt;}
.xe{left:321.521333pt;}
.x4d{left:325.034667pt;}
.x3a{left:333.286667pt;}
.x15{left:336.321333pt;}
.x4e{left:338.318667pt;}
.x22{left:353.872000pt;}
.x23{left:360.777333pt;}
.x1e{left:402.396000pt;}
.x28{left:405.542667pt;}
.x1f{left:409.037333pt;}
.x52{left:431.273333pt;}
.x31{left:437.933333pt;}
.x53{left:444.557333pt;}
.x29{left:445.826667pt;}
.x2a{left:451.272000pt;}
.x24{left:459.386667pt;}
.x2b{left:475.424000pt;}
.x32{left:489.166667pt;}
.x5{left:496.513333pt;}
.x25{left:500.184000pt;}
.x2e{left:504.992000pt;}
.x6{left:510.377333pt;}
.x2f{left:534.009333pt;}
.x4f{left:542.156000pt;}
.x26{left:545.624000pt;}
.x3b{left:551.978667pt;}
.x7{left:555.521333pt;}
.x8{left:565.513333pt;}
.x3c{left:568.805333pt;}
.x21{left:570.105333pt;}
.x43{left:578.214667pt;}
.x1c{left:582.776000pt;}
.x1d{left:589.418667pt;}
.x27{left:591.196000pt;}
.x44{left:592.192000pt;}
.x54{left:594.400000pt;}
.x3d{left:596.062667pt;}
.x18{left:599.518667pt;}
.x55{left:607.682667pt;}
.x16{left:610.973333pt;}
.x19{left:613.029333pt;}
.x17{left:617.037333pt;}
.x41{left:619.061333pt;}
.x50{left:623.968000pt;}
.x30{left:624.908000pt;}
.x34{left:628.853333pt;}
.x42{left:632.537333pt;}
.x4a{left:633.662667pt;}
.x3e{left:637.748000pt;}
.x13{left:639.721333pt;}
.x35{left:641.870667pt;}
.x11{left:643.888000pt;}
.x45{left:647.942667pt;}
.x46{left:648.936000pt;}
.x12{left:650.530667pt;}
.x1a{left:653.722667pt;}
.x14{left:655.486667pt;}
.x47{left:658.985333pt;}
.x1b{left:662.760000pt;}
.x20{left:663.662667pt;}
.x49{left:667.613333pt;}
.x48{left:675.334667pt;}
.x3f{left:680.937333pt;}
.x40{left:689.969333pt;}
.x36{left:696.080000pt;}
.x4b{left:702.576000pt;}
.x37{left:721.784000pt;}
.x56{left:726.914667pt;}
.x33{left:731.540000pt;}
.x38{left:739.058667pt;}
.x39{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; }
  