
    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_de9ce8471af18cfed3046e77.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_79a19167c6a37acdc15006aa.woff2')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_2ef6812e90ac85f5b9757561.woff2')format("woff");}.ff3{font-family:ff3;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;}
.m3{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);}
.m1b{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);}
.m11{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);}
.m18{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);}
.mb{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);}
.m28{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{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);}
.m1a{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);}
.m14{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);}
.m5{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);}
.m26{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);}
.m12{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);}
.m27{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);}
.m9{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);}
.m8{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);}
.m10{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);}
.m20{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);}
.m21{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);}
.m23{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);}
.m19{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);}
.md{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);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m13{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);}
.m25{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m16{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);}
.m1f{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);}
.m22{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);}
.m6{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);}
.ma{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);}
.m24{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);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.880000px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000496px;}
.lsc{letter-spacing:0.000800px;}
.ls12{letter-spacing:0.002841px;}
.lsd{letter-spacing:0.004800px;}
.ls0{letter-spacing:2.989200px;}
.ls4{letter-spacing:11.954850px;}
.ls11{letter-spacing:12.154482px;}
.lsb{letter-spacing:13.144518px;}
.ls9{letter-spacing:13.448400px;}
.lse{letter-spacing:13.454400px;}
.ls13{letter-spacing:13.693257px;}
.lsa{letter-spacing:13.708937px;}
.lsf{letter-spacing:14.315106px;}
.ls7{letter-spacing:14.704798px;}
.ls8{letter-spacing:14.943900px;}
.ls6{letter-spacing:16.318739px;}
.ls1{letter-spacing:17.929200px;}
.ls15{letter-spacing:19.315106px;}
.ls10{letter-spacing:22.991576px;}
.ls3{letter-spacing:67.247510px;}
.ls2{letter-spacing:70.236600px;}
.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;}
}
.ws9c{word-spacing:-13.449600px;}
.ws20{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws67{word-spacing:-2.988780px;}
.ws88{word-spacing:-2.869229px;}
.ws40{word-spacing:-2.331248px;}
.ws3f{word-spacing:-2.211697px;}
.ws45{word-spacing:-2.151922px;}
.ws5e{word-spacing:-2.032370px;}
.wsa3{word-spacing:-1.990541px;}
.ws84{word-spacing:-1.912819px;}
.ws18{word-spacing:-1.793268px;}
.ws5b{word-spacing:-1.673717px;}
.wsb1{word-spacing:-1.667750px;}
.wsbf{word-spacing:-1.613952px;}
.ws82{word-spacing:-1.613941px;}
.wsd{word-spacing:-1.434614px;}
.ws8c{word-spacing:-1.315063px;}
.wsb2{word-spacing:-1.291162px;}
.ws66{word-spacing:-1.255288px;}
.ws4c{word-spacing:-1.195512px;}
.ws6c{word-spacing:-1.135736px;}
.wsb4{word-spacing:-1.129766px;}
.ws8d{word-spacing:-1.075961px;}
.ws50{word-spacing:-1.016185px;}
.ws6e{word-spacing:-0.896634px;}
.ws85{word-spacing:-0.836858px;}
.ws23{word-spacing:-0.717307px;}
.wsa6{word-spacing:-0.699379px;}
.ws33{word-spacing:-0.657532px;}
.wsb{word-spacing:-0.597756px;}
.ws51{word-spacing:-0.537980px;}
.ws8{word-spacing:-0.478205px;}
.ws54{word-spacing:-0.418429px;}
.ws15{word-spacing:-0.358654px;}
.wsa9{word-spacing:-0.322790px;}
.ws21{word-spacing:-0.298878px;}
.ws97{word-spacing:-0.268992px;}
.ws14{word-spacing:-0.239102px;}
.ws96{word-spacing:-0.215194px;}
.ws1e{word-spacing:-0.179327px;}
.ws98{word-spacing:-0.161395px;}
.ws2f{word-spacing:-0.119551px;}
.ws9a{word-spacing:-0.107597px;}
.ws2c{word-spacing:-0.059776px;}
.ws99{word-spacing:-0.053798px;}
.wsb6{word-spacing:-0.026122px;}
.wsaa{word-spacing:-0.006806px;}
.wsac{word-spacing:-0.000806px;}
.ws0{word-spacing:0.000000px;}
.ws1f{word-spacing:0.001907px;}
.ws39{word-spacing:0.053798px;}
.ws1d{word-spacing:0.059776px;}
.wsa4{word-spacing:0.107597px;}
.wsf{word-spacing:0.119551px;}
.ws2{word-spacing:0.161395px;}
.ws10{word-spacing:0.179327px;}
.ws3a{word-spacing:0.215194px;}
.wsc{word-spacing:0.239102px;}
.wsa5{word-spacing:0.268992px;}
.ws22{word-spacing:0.298878px;}
.ws41{word-spacing:0.358654px;}
.ws7a{word-spacing:0.418429px;}
.ws9{word-spacing:0.478205px;}
.ws73{word-spacing:0.597756px;}
.wsad{word-spacing:0.645581px;}
.ws7f{word-spacing:0.717307px;}
.ws12{word-spacing:0.777083px;}
.ws11{word-spacing:0.836858px;}
.wsae{word-spacing:0.860774px;}
.ws34{word-spacing:0.896634px;}
.ws5d{word-spacing:0.956410px;}
.ws1c{word-spacing:1.016185px;}
.ws9d{word-spacing:1.022170px;}
.ws29{word-spacing:1.075961px;}
.wsa1{word-spacing:1.075968px;}
.ws71{word-spacing:1.195512px;}
.ws6b{word-spacing:1.255288px;}
.ws4a{word-spacing:1.315063px;}
.wsab{word-spacing:1.344960px;}
.ws3b{word-spacing:1.374839px;}
.ws63{word-spacing:1.434614px;}
.ws4b{word-spacing:1.494390px;}
.ws6d{word-spacing:1.554166px;}
.wsbe{word-spacing:1.560154px;}
.wsbd{word-spacing:1.613952px;}
.wsc2{word-spacing:1.667750px;}
.ws61{word-spacing:1.673717px;}
.ws4f{word-spacing:1.793268px;}
.ws24{word-spacing:1.853044px;}
.ws3c{word-spacing:1.912819px;}
.ws62{word-spacing:1.972595px;}
.ws56{word-spacing:2.032370px;}
.ws46{word-spacing:2.151922px;}
.ws44{word-spacing:2.331248px;}
.ws9e{word-spacing:2.367130px;}
.ws80{word-spacing:2.510575px;}
.ws2b{word-spacing:2.570351px;}
.ws7{word-spacing:2.689902px;}
.ws65{word-spacing:2.749678px;}
.ws75{word-spacing:2.809453px;}
.ws4{word-spacing:2.869229px;}
.ws83{word-spacing:2.929004px;}
.ws47{word-spacing:3.048556px;}
.ws81{word-spacing:3.108331px;}
.wsb5{word-spacing:3.120307px;}
.ws9f{word-spacing:3.174106px;}
.ws32{word-spacing:3.227882px;}
.ws9b{word-spacing:3.227904px;}
.wsb0{word-spacing:3.335501px;}
.ws76{word-spacing:3.347434px;}
.ws8e{word-spacing:3.407209px;}
.ws5f{word-spacing:3.466985px;}
.ws95{word-spacing:3.496896px;}
.ws60{word-spacing:3.526760px;}
.ws64{word-spacing:3.586536px;}
.wsa8{word-spacing:3.604493px;}
.wsbb{word-spacing:3.658291px;}
.ws69{word-spacing:3.706087px;}
.ws4e{word-spacing:3.825638px;}
.ws87{word-spacing:3.885414px;}
.ws1a{word-spacing:3.945190px;}
.ws1b{word-spacing:4.004965px;}
.ws49{word-spacing:4.064741px;}
.ws42{word-spacing:4.124516px;}
.wsba{word-spacing:4.142477px;}
.wse{word-spacing:4.184292px;}
.ws55{word-spacing:4.363619px;}
.wsb3{word-spacing:4.465267px;}
.ws4d{word-spacing:4.483170px;}
.ws6f{word-spacing:4.542946px;}
.ws58{word-spacing:4.602721px;}
.wsc1{word-spacing:4.626662px;}
.ws91{word-spacing:4.662497px;}
.ws16{word-spacing:4.722272px;}
.ws13{word-spacing:4.901599px;}
.ws72{word-spacing:4.961375px;}
.ws7d{word-spacing:5.021150px;}
.ws94{word-spacing:5.057050px;}
.ws27{word-spacing:5.080926px;}
.ws25{word-spacing:5.140702px;}
.ws5c{word-spacing:5.260253px;}
.ws57{word-spacing:5.379804px;}
.ws89{word-spacing:5.439580px;}
.ws48{word-spacing:5.499355px;}
.ws8f{word-spacing:5.559131px;}
.ws17{word-spacing:5.618906px;}
.wsa0{word-spacing:5.864026px;}
.ws7c{word-spacing:5.917784px;}
.wsa7{word-spacing:5.971622px;}
.ws3e{word-spacing:5.977560px;}
.ws35{word-spacing:6.037336px;}
.ws36{word-spacing:6.097111px;}
.ws28{word-spacing:6.156887px;}
.ws79{word-spacing:6.216662px;}
.ws30{word-spacing:6.336214px;}
.ws52{word-spacing:6.395989px;}
.wsa2{word-spacing:6.402010px;}
.wsb9{word-spacing:6.563405px;}
.ws68{word-spacing:6.575316px;}
.ws19{word-spacing:6.694867px;}
.ws93{word-spacing:6.754643px;}
.ws90{word-spacing:6.814418px;}
.ws74{word-spacing:6.933970px;}
.ws3{word-spacing:7.053521px;}
.ws43{word-spacing:7.113296px;}
.ws86{word-spacing:7.173072px;}
.ws92{word-spacing:7.292623px;}
.wsaf{word-spacing:7.585574px;}
.ws77{word-spacing:7.591501px;}
.ws7b{word-spacing:7.651277px;}
.ws3d{word-spacing:7.711052px;}
.ws7e{word-spacing:7.770828px;}
.ws6a{word-spacing:7.890379px;}
.wsb8{word-spacing:8.553946px;}
.wsb7{word-spacing:8.607744px;}
.ws6{word-spacing:8.787013px;}
.wsc0{word-spacing:8.930534px;}
.ws8b{word-spacing:9.145667px;}
.wsbc{word-spacing:9.145728px;}
.ws2a{word-spacing:9.324994px;}
.ws78{word-spacing:9.384769px;}
.ws2e{word-spacing:9.444545px;}
.ws2d{word-spacing:9.504320px;}
.ws37{word-spacing:9.743423px;}
.ws53{word-spacing:9.803198px;}
.ws8a{word-spacing:10.102076px;}
.ws70{word-spacing:10.161852px;}
.ws31{word-spacing:10.221628px;}
.ws26{word-spacing:10.341179px;}
.ws5{word-spacing:10.819384px;}
.ws5a{word-spacing:10.998710px;}
.ws59{word-spacing:11.895344px;}
.wsa{word-spacing:22.116972px;}
.ws38{word-spacing:1156.289011px;}
._2{margin-left:-6.993792px;}
._16{margin-left:-5.971622px;}
._5{margin-left:-4.949453px;}
._3{margin-left:-3.706127px;}
._0{margin-left:-2.211697px;}
._7{margin-left:-1.016185px;}
._1{width:3.001442px;}
._c{width:12.493100px;}
._1f{width:14.214520px;}
._4{width:15.709133px;}
._6{width:17.645875px;}
._b{width:18.769585px;}
._24{width:19.785763px;}
._d{width:21.459440px;}
._f{width:22.535401px;}
._10{width:23.671138px;}
._1e{width:24.687323px;}
._25{width:26.002386px;}
._9{width:27.638660px;}
._23{width:28.752064px;}
._21{width:29.768249px;}
._11{width:31.023536px;}
._8{width:32.937622px;}
._e{width:33.952588px;}
._20{width:35.506706px;}
._14{width:37.885808px;}
._26{width:39.690998px;}
._1d{width:41.424491px;}
._a{width:45.788156px;}
._15{width:48.298685px;}
._22{width:54.694674px;}
._29{width:61.868160px;}
._1b{width:73.004429px;}
._28{width:88.767360px;}
._1a{width:141.008352px;}
._18{width:249.681888px;}
._19{width:258.967307px;}
._17{width:265.716106px;}
._1c{width:354.591648px;}
._12{width:1101.976406px;}
._27{width:2103.768529px;}
._13{width:2127.678529px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs2{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y2d{bottom:63.780000px;}
.y2c{bottom:108.612000px;}
.ybb{bottom:116.607000px;}
.ya6{bottom:119.863500px;}
.y86{bottom:121.501500px;}
.y8f{bottom:123.121500px;}
.yb3{bottom:125.572500px;}
.yc8{bottom:127.785000px;}
.y2b{bottom:128.875500px;}
.yba{bottom:136.870500px;}
.ya5{bottom:140.128500px;}
.y85{bottom:141.765000px;}
.y8e{bottom:143.386500px;}
.yb2{bottom:145.837500px;}
.y2a{bottom:149.139000px;}
.yc7{bottom:151.948500px;}
.yf8{bottom:158.092500px;}
.ya4{bottom:160.392000px;}
.y84{bottom:162.030000px;}
.y8d{bottom:163.650000px;}
.yb1{bottom:166.101000px;}
.yc6{bottom:167.146500px;}
.ybc{bottom:169.359000px;}
.y29{bottom:169.404000px;}
.yf7{bottom:177.460500px;}
.ya3{bottom:180.657000px;}
.y83{bottom:182.293500px;}
.yc5{bottom:182.344500px;}
.y8c{bottom:183.913500px;}
.yb0{bottom:186.364500px;}
.y28{bottom:189.667500px;}
.yf6{bottom:196.828500px;}
.ya2{bottom:200.920500px;}
.y82{bottom:202.558500px;}
.y8b{bottom:204.178500px;}
.yc4{bottom:206.509500px;}
.yaf{bottom:206.629500px;}
.y27{bottom:209.932500px;}
.yf5{bottom:216.195000px;}
.ya1{bottom:221.184000px;}
.yc3{bottom:221.707500px;}
.y81{bottom:222.822000px;}
.y8a{bottom:224.442000px;}
.yae{bottom:226.893000px;}
.y26{bottom:230.196000px;}
.yf4{bottom:235.563000px;}
.yc2{bottom:236.905500px;}
.ya0{bottom:241.449000px;}
.y80{bottom:243.085500px;}
.y89{bottom:244.707000px;}
.yad{bottom:247.158000px;}
.y25{bottom:250.459500px;}
.yc1{bottom:252.103500px;}
.yf3{bottom:254.931000px;}
.y9f{bottom:261.712500px;}
.y7f{bottom:263.350500px;}
.y88{bottom:264.970500px;}
.yc0{bottom:267.301500px;}
.yac{bottom:267.421500px;}
.y24{bottom:270.724500px;}
.yf2{bottom:274.297500px;}
.y9e{bottom:281.977500px;}
.ybf{bottom:282.499500px;}
.y7e{bottom:283.614000px;}
.y87{bottom:285.234000px;}
.yab{bottom:287.685000px;}
.y23{bottom:290.988000px;}
.yf1{bottom:293.665500px;}
.ybe{bottom:297.697500px;}
.y9d{bottom:302.241000px;}
.y7d{bottom:303.879000px;}
.y57{bottom:305.499000px;}
.yaa{bottom:307.950000px;}
.y22{bottom:311.253000px;}
.ybd{bottom:312.895500px;}
.yf0{bottom:313.032000px;}
.y9c{bottom:322.504500px;}
.y7c{bottom:324.142500px;}
.y56{bottom:325.762500px;}
.ya9{bottom:328.213500px;}
.y21{bottom:331.516500px;}
.yef{bottom:332.400000px;}
.y9b{bottom:342.769500px;}
.y7b{bottom:344.406000px;}
.y55{bottom:346.027500px;}
.yee{bottom:351.768000px;}
.y20{bottom:351.780000px;}
.ya8{bottom:357.444000px;}
.y9a{bottom:363.033000px;}
.y7a{bottom:364.671000px;}
.y54{bottom:366.291000px;}
.yed{bottom:371.134500px;}
.y1f{bottom:372.045000px;}
.y99{bottom:383.298000px;}
.y79{bottom:384.934500px;}
.y53{bottom:386.554500px;}
.yec{bottom:390.502500px;}
.ya7{bottom:392.263500px;}
.y1e{bottom:392.308500px;}
.y98{bottom:403.561500px;}
.y78{bottom:405.199500px;}
.y52{bottom:406.819500px;}
.yeb{bottom:409.869000px;}
.y1d{bottom:412.573500px;}
.y97{bottom:423.825000px;}
.y77{bottom:425.463000px;}
.y51{bottom:427.083000px;}
.yea{bottom:429.237000px;}
.y1c{bottom:432.837000px;}
.y96{bottom:444.090000px;}
.y76{bottom:445.726500px;}
.y50{bottom:447.348000px;}
.ye9{bottom:448.605000px;}
.y1b{bottom:453.100500px;}
.y95{bottom:464.353500px;}
.y75{bottom:465.991500px;}
.y4f{bottom:467.611500px;}
.ye8{bottom:467.971500px;}
.y1a{bottom:473.365500px;}
.y94{bottom:484.618500px;}
.y74{bottom:486.255000px;}
.ye7{bottom:487.339500px;}
.y4e{bottom:487.875000px;}
.y19{bottom:493.629000px;}
.y93{bottom:504.882000px;}
.y73{bottom:506.520000px;}
.ye6{bottom:506.706000px;}
.y4d{bottom:508.140000px;}
.y18{bottom:513.894000px;}
.y116{bottom:521.457000px;}
.y92{bottom:525.145500px;}
.ye5{bottom:526.074000px;}
.y72{bottom:526.783500px;}
.y4c{bottom:528.403500px;}
.y17{bottom:534.157500px;}
.y115{bottom:540.825000px;}
.y91{bottom:545.410500px;}
.ye4{bottom:545.442000px;}
.y71{bottom:547.047000px;}
.y4b{bottom:548.667000px;}
.y16{bottom:554.421000px;}
.y114{bottom:560.191500px;}
.ye3{bottom:564.808500px;}
.yb9{bottom:565.674000px;}
.y4a{bottom:568.932000px;}
.y90{bottom:574.641000px;}
.y70{bottom:576.277500px;}
.y15{bottom:583.651500px;}
.ye2{bottom:584.176500px;}
.yb8{bottom:585.939000px;}
.y49{bottom:589.195500px;}
.y113{bottom:593.142000px;}
.ye1{bottom:603.543000px;}
.yb7{bottom:606.202500px;}
.y48{bottom:609.460500px;}
.y6f{bottom:611.097000px;}
.y112{bottom:612.510000px;}
.ye0{bottom:622.911000px;}
.yb6{bottom:626.466000px;}
.y47{bottom:629.724000px;}
.y6e{bottom:631.362000px;}
.y111{bottom:631.878000px;}
.ydf{bottom:642.279000px;}
.yb5{bottom:646.731000px;}
.y46{bottom:649.987500px;}
.y110{bottom:651.244500px;}
.y6d{bottom:651.625500px;}
.y14{bottom:660.060000px;}
.yde{bottom:661.645500px;}
.y45{bottom:670.252500px;}
.y10f{bottom:670.612500px;}
.y6c{bottom:671.889000px;}
.yb4{bottom:675.961500px;}
.y13{bottom:680.325000px;}
.ydd{bottom:681.013500px;}
.y10e{bottom:689.979000px;}
.y44{bottom:690.516000px;}
.ydc{bottom:700.380000px;}
.y10d{bottom:709.347000px;}
.y43{bottom:710.781000px;}
.y12{bottom:718.521000px;}
.y6b{bottom:718.786500px;}
.ydb{bottom:719.748000px;}
.y6a{bottom:727.005000px;}
.y10c{bottom:728.715000px;}
.y42{bottom:731.044500px;}
.y11{bottom:738.786000px;}
.yda{bottom:739.116000px;}
.y10b{bottom:748.081500px;}
.y41{bottom:751.308000px;}
.yd9{bottom:758.482500px;}
.y69{bottom:758.940000px;}
.y10{bottom:759.049500px;}
.y10a{bottom:767.449500px;}
.y40{bottom:771.573000px;}
.yd8{bottom:777.850500px;}
.yf{bottom:779.313000px;}
.y68{bottom:782.581500px;}
.y109{bottom:786.816000px;}
.y3f{bottom:791.836500px;}
.yd7{bottom:797.217000px;}
.y67{bottom:799.020000px;}
.ye{bottom:799.578000px;}
.y108{bottom:806.184000px;}
.y3e{bottom:812.101500px;}
.yd6{bottom:816.585000px;}
.yd{bottom:819.841500px;}
.y66{bottom:822.660000px;}
.y107{bottom:825.552000px;}
.y65{bottom:830.878500px;}
.y3d{bottom:832.365000px;}
.yd5{bottom:835.953000px;}
.yc{bottom:840.106500px;}
.y106{bottom:844.918500px;}
.y3c{bottom:852.628500px;}
.yd4{bottom:855.319500px;}
.y64{bottom:862.738500px;}
.y105{bottom:864.286500px;}
.yb{bottom:870.633000px;}
.y63{bottom:870.958500px;}
.y3b{bottom:872.893500px;}
.yd3{bottom:874.687500px;}
.y104{bottom:883.653000px;}
.y3a{bottom:893.157000px;}
.yd2{bottom:894.054000px;}
.ya{bottom:897.757500px;}
.y62{bottom:902.818500px;}
.y103{bottom:903.021000px;}
.y61{bottom:911.037000px;}
.y39{bottom:913.422000px;}
.y9{bottom:920.796000px;}
.y102{bottom:922.389000px;}
.yd1{bottom:932.790000px;}
.y38{bottom:933.685500px;}
.y8{bottom:938.953500px;}
.y101{bottom:941.755500px;}
.y60{bottom:942.897000px;}
.yd0{bottom:952.156500px;}
.y37{bottom:953.949000px;}
.y7{bottom:957.109500px;}
.y5e{bottom:959.335500px;}
.y100{bottom:961.123500px;}
.y6{bottom:970.384500px;}
.ycf{bottom:971.524500px;}
.y36{bottom:974.214000px;}
.y5{bottom:975.267000px;}
.y5f{bottom:975.774000px;}
.yff{bottom:980.490000px;}
.yce{bottom:990.891000px;}
.y35{bottom:994.477500px;}
.y4{bottom:997.012500px;}
.y5d{bottom:999.414000px;}
.yfe{bottom:999.858000px;}
.y5c{bottom:1007.634000px;}
.ycd{bottom:1010.259000px;}
.y34{bottom:1014.742500px;}
.yfd{bottom:1019.226000px;}
.ycc{bottom:1029.627000px;}
.y33{bottom:1035.006000px;}
.yfc{bottom:1038.592500px;}
.y5b{bottom:1039.494000px;}
.y3{bottom:1040.848500px;}
.y5a{bottom:1047.712500px;}
.ycb{bottom:1048.993500px;}
.y32{bottom:1055.269500px;}
.yfb{bottom:1057.960500px;}
.yca{bottom:1068.361500px;}
.y2{bottom:1071.244500px;}
.y31{bottom:1075.534500px;}
.yfa{bottom:1077.327000px;}
.y59{bottom:1079.946000px;}
.yc9{bottom:1087.728000px;}
.y30{bottom:1095.798000px;}
.yf9{bottom:1096.695000px;}
.y1{bottom:1100.145000px;}
.y2f{bottom:1116.063000px;}
.y58{bottom:1117.543500px;}
.y2e{bottom:1168.366500px;}
.h5{height:30.461558px;}
.h9{height:35.052500px;}
.ha{height:38.734848px;}
.h6{height:39.165235px;}
.hd{height:39.434227px;}
.h7{height:43.038432px;}
.h8{height:43.516637px;}
.h2{height:43.815515px;}
.h4{height:54.405312px;}
.hc{height:72.039235px;}
.hb{height:72.045235px;}
.h3{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:112.561500px;}
.x1{left:114.339000px;}
.x4{left:122.110500px;}
.x2{left:123.306000px;}
.x28{left:124.333500px;}
.x26{left:141.091500px;}
.x3{left:146.094000px;}
.x27{left:155.704500px;}
.x32{left:156.880500px;}
.x33{left:164.352000px;}
.x23{left:168.259500px;}
.x24{left:169.476000px;}
.x25{left:170.512500px;}
.xd{left:171.886500px;}
.xe{left:179.359500px;}
.x34{left:183.106500px;}
.x54{left:187.246500px;}
.x5{left:192.112500px;}
.x29{left:194.485500px;}
.x3a{left:200.614500px;}
.x6{left:201.814500px;}
.x55{left:205.851000px;}
.x3b{left:208.086000px;}
.x57{left:211.291500px;}
.x49{left:214.132500px;}
.x56{left:220.795500px;}
.x58{left:226.234500px;}
.x59{left:229.953000px;}
.x1a{left:235.062000px;}
.x4c{left:239.679000px;}
.x79{left:241.861500px;}
.x5a{left:244.896000px;}
.x4d{left:247.150500px;}
.x11{left:249.019500px;}
.x7b{left:250.134000px;}
.x73{left:251.305500px;}
.x8d{left:252.858000px;}
.x4e{left:254.533500px;}
.x12{left:256.492500px;}
.x1b{left:264.156000px;}
.x74{left:266.248500px;}
.x4f{left:269.478000px;}
.x1c{left:279.099000px;}
.x7c{left:281.722500px;}
.x6d{left:289.392000px;}
.x35{left:293.799000px;}
.x13{left:295.521000px;}
.x7d{left:296.667000px;}
.x14{left:302.992500px;}
.x6e{left:304.336500px;}
.x7{left:305.454000px;}
.x15{left:310.614000px;}
.x8{left:312.925500px;}
.x9{left:320.547000px;}
.x16{left:325.557000px;}
.xa{left:328.018500px;}
.x68{left:335.013000px;}
.x38{left:337.608000px;}
.x67{left:339.793500px;}
.x21{left:341.464500px;}
.x39{left:345.079500px;}
.x22{left:347.422500px;}
.x1d{left:355.509000px;}
.x80{left:359.260500px;}
.x75{left:361.800000px;}
.x1e{left:370.453500px;}
.x81{left:374.203500px;}
.x50{left:376.350000px;}
.x36{left:391.497000px;}
.x37{left:398.968500px;}
.x76{left:407.103000px;}
.x6f{left:425.335500px;}
.x47{left:433.311000px;}
.x1f{left:434.721000px;}
.x70{left:440.278500px;}
.x48{left:448.255500px;}
.x20{left:449.665500px;}
.x6a{left:451.837500px;}
.x17{left:455.856000px;}
.x5b{left:465.585000px;}
.x6b{left:466.782000px;}
.x18{left:470.800500px;}
.xb{left:474.078000px;}
.xc{left:481.551000px;}
.x77{left:488.083500px;}
.x19{left:489.405000px;}
.x8c{left:492.837000px;}
.x5c{left:496.119000px;}
.x41{left:497.422500px;}
.x69{left:500.116500px;}
.x5d{left:503.590500px;}
.x5e{left:507.384000px;}
.x45{left:510.744000px;}
.x42{left:512.367000px;}
.x51{left:515.808000px;}
.x46{left:518.215500px;}
.x7e{left:519.474000px;}
.x52{left:523.279500px;}
.x5f{left:526.119000px;}
.x7f{left:534.418500px;}
.x60{left:541.063500px;}
.x2a{left:544.489500px;}
.x2b{left:559.432500px;}
.x6c{left:573.868500px;}
.xf{left:589.857000px;}
.x10{left:597.328500px;}
.x43{left:616.221000px;}
.x64{left:624.106500px;}
.x3c{left:628.027500px;}
.x44{left:631.164000px;}
.x3d{left:635.499000px;}
.x53{left:651.000000px;}
.x65{left:652.390500px;}
.x66{left:667.335000px;}
.x61{left:669.793500px;}
.x87{left:671.821500px;}
.x78{left:674.700000px;}
.x4a{left:676.875000px;}
.x7a{left:682.426500px;}
.x4b{left:684.348000px;}
.x62{left:688.530000px;}
.x85{left:694.281000px;}
.x89{left:697.377000px;}
.x88{left:698.719500px;}
.x63{left:703.474500px;}
.x2c{left:711.031500px;}
.x71{left:716.545500px;}
.x2d{left:725.976000px;}
.x82{left:729.667500px;}
.x72{left:731.488500px;}
.x2e{left:733.291500px;}
.x83{left:735.822000px;}
.x2f{left:748.234500px;}
.x8a{left:749.590500px;}
.x30{left:751.996500px;}
.x3f{left:756.148500px;}
.x86{left:760.210500px;}
.x84{left:762.721500px;}
.x31{left:766.941000px;}
.x40{left:771.091500px;}
.x8b{left:776.490000px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.226667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000441pt;}
.lsc{letter-spacing:0.000711pt;}
.ls12{letter-spacing:0.002525pt;}
.lsd{letter-spacing:0.004267pt;}
.ls0{letter-spacing:2.657067pt;}
.ls4{letter-spacing:10.626533pt;}
.ls11{letter-spacing:10.803984pt;}
.lsb{letter-spacing:11.684016pt;}
.ls9{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.959467pt;}
.ls13{letter-spacing:12.171784pt;}
.lsa{letter-spacing:12.185721pt;}
.lsf{letter-spacing:12.724539pt;}
.ls7{letter-spacing:13.070931pt;}
.ls8{letter-spacing:13.283467pt;}
.ls6{letter-spacing:14.505546pt;}
.ls1{letter-spacing:15.937067pt;}
.ls15{letter-spacing:17.168983pt;}
.ls10{letter-spacing:20.436957pt;}
.ls3{letter-spacing:59.775565pt;}
.ls2{letter-spacing:62.432533pt;}
.ws9c{word-spacing:-11.955200pt;}
.ws20{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws67{word-spacing:-2.656693pt;}
.ws88{word-spacing:-2.550426pt;}
.ws40{word-spacing:-2.072221pt;}
.ws3f{word-spacing:-1.965953pt;}
.ws45{word-spacing:-1.912819pt;}
.ws5e{word-spacing:-1.806551pt;}
.wsa3{word-spacing:-1.769370pt;}
.ws84{word-spacing:-1.700284pt;}
.ws18{word-spacing:-1.594016pt;}
.ws5b{word-spacing:-1.487748pt;}
.wsb1{word-spacing:-1.482445pt;}
.wsbf{word-spacing:-1.434624pt;}
.ws82{word-spacing:-1.434614pt;}
.wsd{word-spacing:-1.275213pt;}
.ws8c{word-spacing:-1.168945pt;}
.wsb2{word-spacing:-1.147699pt;}
.ws66{word-spacing:-1.115811pt;}
.ws4c{word-spacing:-1.062677pt;}
.ws6c{word-spacing:-1.009543pt;}
.wsb4{word-spacing:-1.004237pt;}
.ws8d{word-spacing:-0.956410pt;}
.ws50{word-spacing:-0.903276pt;}
.ws6e{word-spacing:-0.797008pt;}
.ws85{word-spacing:-0.743874pt;}
.ws23{word-spacing:-0.637606pt;}
.wsa6{word-spacing:-0.621670pt;}
.ws33{word-spacing:-0.584473pt;}
.wsb{word-spacing:-0.531339pt;}
.ws51{word-spacing:-0.478205pt;}
.ws8{word-spacing:-0.425071pt;}
.ws54{word-spacing:-0.371937pt;}
.ws15{word-spacing:-0.318803pt;}
.wsa9{word-spacing:-0.286925pt;}
.ws21{word-spacing:-0.265669pt;}
.ws97{word-spacing:-0.239104pt;}
.ws14{word-spacing:-0.212535pt;}
.ws96{word-spacing:-0.191283pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws98{word-spacing:-0.143462pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws9a{word-spacing:-0.095642pt;}
.ws2c{word-spacing:-0.053134pt;}
.ws99{word-spacing:-0.047821pt;}
.wsb6{word-spacing:-0.023219pt;}
.wsaa{word-spacing:-0.006050pt;}
.wsac{word-spacing:-0.000717pt;}
.ws0{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.001695pt;}
.ws39{word-spacing:0.047821pt;}
.ws1d{word-spacing:0.053134pt;}
.wsa4{word-spacing:0.095642pt;}
.wsf{word-spacing:0.106268pt;}
.ws2{word-spacing:0.143462pt;}
.ws10{word-spacing:0.159402pt;}
.ws3a{word-spacing:0.191283pt;}
.wsc{word-spacing:0.212535pt;}
.wsa5{word-spacing:0.239104pt;}
.ws22{word-spacing:0.265669pt;}
.ws41{word-spacing:0.318803pt;}
.ws7a{word-spacing:0.371937pt;}
.ws9{word-spacing:0.425071pt;}
.ws73{word-spacing:0.531339pt;}
.wsad{word-spacing:0.573850pt;}
.ws7f{word-spacing:0.637606pt;}
.ws12{word-spacing:0.690740pt;}
.ws11{word-spacing:0.743874pt;}
.wsae{word-spacing:0.765133pt;}
.ws34{word-spacing:0.797008pt;}
.ws5d{word-spacing:0.850142pt;}
.ws1c{word-spacing:0.903276pt;}
.ws9d{word-spacing:0.908595pt;}
.ws29{word-spacing:0.956410pt;}
.wsa1{word-spacing:0.956416pt;}
.ws71{word-spacing:1.062677pt;}
.ws6b{word-spacing:1.115811pt;}
.ws4a{word-spacing:1.168945pt;}
.wsab{word-spacing:1.195520pt;}
.ws3b{word-spacing:1.222079pt;}
.ws63{word-spacing:1.275213pt;}
.ws4b{word-spacing:1.328347pt;}
.ws6d{word-spacing:1.381481pt;}
.wsbe{word-spacing:1.386803pt;}
.wsbd{word-spacing:1.434624pt;}
.wsc2{word-spacing:1.482445pt;}
.ws61{word-spacing:1.487748pt;}
.ws4f{word-spacing:1.594016pt;}
.ws24{word-spacing:1.647150pt;}
.ws3c{word-spacing:1.700284pt;}
.ws62{word-spacing:1.753418pt;}
.ws56{word-spacing:1.806551pt;}
.ws46{word-spacing:1.912819pt;}
.ws44{word-spacing:2.072221pt;}
.ws9e{word-spacing:2.104115pt;}
.ws80{word-spacing:2.231622pt;}
.ws2b{word-spacing:2.284756pt;}
.ws7{word-spacing:2.391024pt;}
.ws65{word-spacing:2.444158pt;}
.ws75{word-spacing:2.497292pt;}
.ws4{word-spacing:2.550426pt;}
.ws83{word-spacing:2.603559pt;}
.ws47{word-spacing:2.709827pt;}
.ws81{word-spacing:2.762961pt;}
.wsb5{word-spacing:2.773606pt;}
.ws9f{word-spacing:2.821427pt;}
.ws32{word-spacing:2.869229pt;}
.ws9b{word-spacing:2.869248pt;}
.wsb0{word-spacing:2.964890pt;}
.ws76{word-spacing:2.975497pt;}
.ws8e{word-spacing:3.028630pt;}
.ws5f{word-spacing:3.081764pt;}
.ws95{word-spacing:3.108352pt;}
.ws60{word-spacing:3.134898pt;}
.ws64{word-spacing:3.188032pt;}
.wsa8{word-spacing:3.203994pt;}
.wsbb{word-spacing:3.251814pt;}
.ws69{word-spacing:3.294300pt;}
.ws4e{word-spacing:3.400567pt;}
.ws87{word-spacing:3.453701pt;}
.ws1a{word-spacing:3.506835pt;}
.ws1b{word-spacing:3.559969pt;}
.ws49{word-spacing:3.613103pt;}
.ws42{word-spacing:3.666237pt;}
.wsba{word-spacing:3.682202pt;}
.wse{word-spacing:3.719371pt;}
.ws55{word-spacing:3.878772pt;}
.wsb3{word-spacing:3.969126pt;}
.ws4d{word-spacing:3.985040pt;}
.ws6f{word-spacing:4.038174pt;}
.ws58{word-spacing:4.091308pt;}
.wsc1{word-spacing:4.112589pt;}
.ws91{word-spacing:4.144442pt;}
.ws16{word-spacing:4.197575pt;}
.ws13{word-spacing:4.356977pt;}
.ws72{word-spacing:4.410111pt;}
.ws7d{word-spacing:4.463245pt;}
.ws94{word-spacing:4.495155pt;}
.ws27{word-spacing:4.516379pt;}
.ws25{word-spacing:4.569513pt;}
.ws5c{word-spacing:4.675780pt;}
.ws57{word-spacing:4.782048pt;}
.ws89{word-spacing:4.835182pt;}
.ws48{word-spacing:4.888316pt;}
.ws8f{word-spacing:4.941450pt;}
.ws17{word-spacing:4.994583pt;}
.wsa0{word-spacing:5.212467pt;}
.ws7c{word-spacing:5.260253pt;}
.wsa7{word-spacing:5.308109pt;}
.ws3e{word-spacing:5.313387pt;}
.ws35{word-spacing:5.366521pt;}
.ws36{word-spacing:5.419654pt;}
.ws28{word-spacing:5.472788pt;}
.ws79{word-spacing:5.525922pt;}
.ws30{word-spacing:5.632190pt;}
.ws52{word-spacing:5.685324pt;}
.wsa2{word-spacing:5.690675pt;}
.wsb9{word-spacing:5.834138pt;}
.ws68{word-spacing:5.844725pt;}
.ws19{word-spacing:5.950993pt;}
.ws93{word-spacing:6.004127pt;}
.ws90{word-spacing:6.057261pt;}
.ws74{word-spacing:6.163529pt;}
.ws3{word-spacing:6.269796pt;}
.ws43{word-spacing:6.322930pt;}
.ws86{word-spacing:6.376064pt;}
.ws92{word-spacing:6.482332pt;}
.wsaf{word-spacing:6.742733pt;}
.ws77{word-spacing:6.748001pt;}
.ws7b{word-spacing:6.801135pt;}
.ws3d{word-spacing:6.854269pt;}
.ws7e{word-spacing:6.907403pt;}
.ws6a{word-spacing:7.013670pt;}
.wsb8{word-spacing:7.603507pt;}
.wsb7{word-spacing:7.651328pt;}
.ws6{word-spacing:7.810678pt;}
.wsc0{word-spacing:7.938253pt;}
.ws8b{word-spacing:8.129482pt;}
.wsbc{word-spacing:8.129536pt;}
.ws2a{word-spacing:8.288883pt;}
.ws78{word-spacing:8.342017pt;}
.ws2e{word-spacing:8.395151pt;}
.ws2d{word-spacing:8.448285pt;}
.ws37{word-spacing:8.660820pt;}
.ws53{word-spacing:8.713954pt;}
.ws8a{word-spacing:8.979623pt;}
.ws70{word-spacing:9.032757pt;}
.ws31{word-spacing:9.085891pt;}
.ws26{word-spacing:9.192159pt;}
.ws5{word-spacing:9.617230pt;}
.ws5a{word-spacing:9.776631pt;}
.ws59{word-spacing:10.573639pt;}
.wsa{word-spacing:19.659531pt;}
.ws38{word-spacing:1027.812454pt;}
._2{margin-left:-6.216704pt;}
._16{margin-left:-5.308109pt;}
._5{margin-left:-4.399514pt;}
._3{margin-left:-3.294335pt;}
._0{margin-left:-1.965953pt;}
._7{margin-left:-0.903276pt;}
._1{width:2.667949pt;}
._c{width:11.104978pt;}
._1f{width:12.635129pt;}
._4{width:13.963674pt;}
._6{width:15.685222pt;}
._b{width:16.684076pt;}
._24{width:17.587345pt;}
._d{width:19.075058pt;}
._f{width:20.031468pt;}
._10{width:21.041011pt;}
._1e{width:21.944287pt;}
._25{width:23.113232pt;}
._9{width:24.567698pt;}
._23{width:25.557390pt;}
._21{width:26.460666pt;}
._11{width:27.576477pt;}
._8{width:29.277886pt;}
._e{width:30.180078pt;}
._20{width:31.561517pt;}
._14{width:33.676274pt;}
._26{width:35.280887pt;}
._1d{width:36.821770pt;}
._a{width:40.700583pt;}
._15{width:42.932164pt;}
._22{width:48.617488pt;}
._29{width:54.993920pt;}
._1b{width:64.892826pt;}
._28{width:78.904320pt;}
._1a{width:125.340757pt;}
._18{width:221.939456pt;}
._19{width:230.193162pt;}
._17{width:236.192094pt;}
._1c{width:315.192576pt;}
._12{width:979.534583pt;}
._27{width:1870.016470pt;}
._13{width:1891.269804pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:56.693333pt;}
.y2c{bottom:96.544000pt;}
.ybb{bottom:103.650667pt;}
.ya6{bottom:106.545333pt;}
.y86{bottom:108.001333pt;}
.y8f{bottom:109.441333pt;}
.yb3{bottom:111.620000pt;}
.yc8{bottom:113.586667pt;}
.y2b{bottom:114.556000pt;}
.yba{bottom:121.662667pt;}
.ya5{bottom:124.558667pt;}
.y85{bottom:126.013333pt;}
.y8e{bottom:127.454667pt;}
.yb2{bottom:129.633333pt;}
.y2a{bottom:132.568000pt;}
.yc7{bottom:135.065333pt;}
.yf8{bottom:140.526667pt;}
.ya4{bottom:142.570667pt;}
.y84{bottom:144.026667pt;}
.y8d{bottom:145.466667pt;}
.yb1{bottom:147.645333pt;}
.yc6{bottom:148.574667pt;}
.ybc{bottom:150.541333pt;}
.y29{bottom:150.581333pt;}
.yf7{bottom:157.742667pt;}
.ya3{bottom:160.584000pt;}
.y83{bottom:162.038667pt;}
.yc5{bottom:162.084000pt;}
.y8c{bottom:163.478667pt;}
.yb0{bottom:165.657333pt;}
.y28{bottom:168.593333pt;}
.yf6{bottom:174.958667pt;}
.ya2{bottom:178.596000pt;}
.y82{bottom:180.052000pt;}
.y8b{bottom:181.492000pt;}
.yc4{bottom:183.564000pt;}
.yaf{bottom:183.670667pt;}
.y27{bottom:186.606667pt;}
.yf5{bottom:192.173333pt;}
.ya1{bottom:196.608000pt;}
.yc3{bottom:197.073333pt;}
.y81{bottom:198.064000pt;}
.y8a{bottom:199.504000pt;}
.yae{bottom:201.682667pt;}
.y26{bottom:204.618667pt;}
.yf4{bottom:209.389333pt;}
.yc2{bottom:210.582667pt;}
.ya0{bottom:214.621333pt;}
.y80{bottom:216.076000pt;}
.y89{bottom:217.517333pt;}
.yad{bottom:219.696000pt;}
.y25{bottom:222.630667pt;}
.yc1{bottom:224.092000pt;}
.yf3{bottom:226.605333pt;}
.y9f{bottom:232.633333pt;}
.y7f{bottom:234.089333pt;}
.y88{bottom:235.529333pt;}
.yc0{bottom:237.601333pt;}
.yac{bottom:237.708000pt;}
.y24{bottom:240.644000pt;}
.yf2{bottom:243.820000pt;}
.y9e{bottom:250.646667pt;}
.ybf{bottom:251.110667pt;}
.y7e{bottom:252.101333pt;}
.y87{bottom:253.541333pt;}
.yab{bottom:255.720000pt;}
.y23{bottom:258.656000pt;}
.yf1{bottom:261.036000pt;}
.ybe{bottom:264.620000pt;}
.y9d{bottom:268.658667pt;}
.y7d{bottom:270.114667pt;}
.y57{bottom:271.554667pt;}
.yaa{bottom:273.733333pt;}
.y22{bottom:276.669333pt;}
.ybd{bottom:278.129333pt;}
.yf0{bottom:278.250667pt;}
.y9c{bottom:286.670667pt;}
.y7c{bottom:288.126667pt;}
.y56{bottom:289.566667pt;}
.ya9{bottom:291.745333pt;}
.y21{bottom:294.681333pt;}
.yef{bottom:295.466667pt;}
.y9b{bottom:304.684000pt;}
.y7b{bottom:306.138667pt;}
.y55{bottom:307.580000pt;}
.yee{bottom:312.682667pt;}
.y20{bottom:312.693333pt;}
.ya8{bottom:317.728000pt;}
.y9a{bottom:322.696000pt;}
.y7a{bottom:324.152000pt;}
.y54{bottom:325.592000pt;}
.yed{bottom:329.897333pt;}
.y1f{bottom:330.706667pt;}
.y99{bottom:340.709333pt;}
.y79{bottom:342.164000pt;}
.y53{bottom:343.604000pt;}
.yec{bottom:347.113333pt;}
.ya7{bottom:348.678667pt;}
.y1e{bottom:348.718667pt;}
.y98{bottom:358.721333pt;}
.y78{bottom:360.177333pt;}
.y52{bottom:361.617333pt;}
.yeb{bottom:364.328000pt;}
.y1d{bottom:366.732000pt;}
.y97{bottom:376.733333pt;}
.y77{bottom:378.189333pt;}
.y51{bottom:379.629333pt;}
.yea{bottom:381.544000pt;}
.y1c{bottom:384.744000pt;}
.y96{bottom:394.746667pt;}
.y76{bottom:396.201333pt;}
.y50{bottom:397.642667pt;}
.ye9{bottom:398.760000pt;}
.y1b{bottom:402.756000pt;}
.y95{bottom:412.758667pt;}
.y75{bottom:414.214667pt;}
.y4f{bottom:415.654667pt;}
.ye8{bottom:415.974667pt;}
.y1a{bottom:420.769333pt;}
.y94{bottom:430.772000pt;}
.y74{bottom:432.226667pt;}
.ye7{bottom:433.190667pt;}
.y4e{bottom:433.666667pt;}
.y19{bottom:438.781333pt;}
.y93{bottom:448.784000pt;}
.y73{bottom:450.240000pt;}
.ye6{bottom:450.405333pt;}
.y4d{bottom:451.680000pt;}
.y18{bottom:456.794667pt;}
.y116{bottom:463.517333pt;}
.y92{bottom:466.796000pt;}
.ye5{bottom:467.621333pt;}
.y72{bottom:468.252000pt;}
.y4c{bottom:469.692000pt;}
.y17{bottom:474.806667pt;}
.y115{bottom:480.733333pt;}
.y91{bottom:484.809333pt;}
.ye4{bottom:484.837333pt;}
.y71{bottom:486.264000pt;}
.y4b{bottom:487.704000pt;}
.y16{bottom:492.818667pt;}
.y114{bottom:497.948000pt;}
.ye3{bottom:502.052000pt;}
.yb9{bottom:502.821333pt;}
.y4a{bottom:505.717333pt;}
.y90{bottom:510.792000pt;}
.y70{bottom:512.246667pt;}
.y15{bottom:518.801333pt;}
.ye2{bottom:519.268000pt;}
.yb8{bottom:520.834667pt;}
.y49{bottom:523.729333pt;}
.y113{bottom:527.237333pt;}
.ye1{bottom:536.482667pt;}
.yb7{bottom:538.846667pt;}
.y48{bottom:541.742667pt;}
.y6f{bottom:543.197333pt;}
.y112{bottom:544.453333pt;}
.ye0{bottom:553.698667pt;}
.yb6{bottom:556.858667pt;}
.y47{bottom:559.754667pt;}
.y6e{bottom:561.210667pt;}
.y111{bottom:561.669333pt;}
.ydf{bottom:570.914667pt;}
.yb5{bottom:574.872000pt;}
.y46{bottom:577.766667pt;}
.y110{bottom:578.884000pt;}
.y6d{bottom:579.222667pt;}
.y14{bottom:586.720000pt;}
.yde{bottom:588.129333pt;}
.y45{bottom:595.780000pt;}
.y10f{bottom:596.100000pt;}
.y6c{bottom:597.234667pt;}
.yb4{bottom:600.854667pt;}
.y13{bottom:604.733333pt;}
.ydd{bottom:605.345333pt;}
.y10e{bottom:613.314667pt;}
.y44{bottom:613.792000pt;}
.ydc{bottom:622.560000pt;}
.y10d{bottom:630.530667pt;}
.y43{bottom:631.805333pt;}
.y12{bottom:638.685333pt;}
.y6b{bottom:638.921333pt;}
.ydb{bottom:639.776000pt;}
.y6a{bottom:646.226667pt;}
.y10c{bottom:647.746667pt;}
.y42{bottom:649.817333pt;}
.y11{bottom:656.698667pt;}
.yda{bottom:656.992000pt;}
.y10b{bottom:664.961333pt;}
.y41{bottom:667.829333pt;}
.yd9{bottom:674.206667pt;}
.y69{bottom:674.613333pt;}
.y10{bottom:674.710667pt;}
.y10a{bottom:682.177333pt;}
.y40{bottom:685.842667pt;}
.yd8{bottom:691.422667pt;}
.yf{bottom:692.722667pt;}
.y68{bottom:695.628000pt;}
.y109{bottom:699.392000pt;}
.y3f{bottom:703.854667pt;}
.yd7{bottom:708.637333pt;}
.y67{bottom:710.240000pt;}
.ye{bottom:710.736000pt;}
.y108{bottom:716.608000pt;}
.y3e{bottom:721.868000pt;}
.yd6{bottom:725.853333pt;}
.yd{bottom:728.748000pt;}
.y66{bottom:731.253333pt;}
.y107{bottom:733.824000pt;}
.y65{bottom:738.558667pt;}
.y3d{bottom:739.880000pt;}
.yd5{bottom:743.069333pt;}
.yc{bottom:746.761333pt;}
.y106{bottom:751.038667pt;}
.y3c{bottom:757.892000pt;}
.yd4{bottom:760.284000pt;}
.y64{bottom:766.878667pt;}
.y105{bottom:768.254667pt;}
.yb{bottom:773.896000pt;}
.y63{bottom:774.185333pt;}
.y3b{bottom:775.905333pt;}
.yd3{bottom:777.500000pt;}
.y104{bottom:785.469333pt;}
.y3a{bottom:793.917333pt;}
.yd2{bottom:794.714667pt;}
.ya{bottom:798.006667pt;}
.y62{bottom:802.505333pt;}
.y103{bottom:802.685333pt;}
.y61{bottom:809.810667pt;}
.y39{bottom:811.930667pt;}
.y9{bottom:818.485333pt;}
.y102{bottom:819.901333pt;}
.yd1{bottom:829.146667pt;}
.y38{bottom:829.942667pt;}
.y8{bottom:834.625333pt;}
.y101{bottom:837.116000pt;}
.y60{bottom:838.130667pt;}
.yd0{bottom:846.361333pt;}
.y37{bottom:847.954667pt;}
.y7{bottom:850.764000pt;}
.y5e{bottom:852.742667pt;}
.y100{bottom:854.332000pt;}
.y6{bottom:862.564000pt;}
.ycf{bottom:863.577333pt;}
.y36{bottom:865.968000pt;}
.y5{bottom:866.904000pt;}
.y5f{bottom:867.354667pt;}
.yff{bottom:871.546667pt;}
.yce{bottom:880.792000pt;}
.y35{bottom:883.980000pt;}
.y4{bottom:886.233333pt;}
.y5d{bottom:888.368000pt;}
.yfe{bottom:888.762667pt;}
.y5c{bottom:895.674667pt;}
.ycd{bottom:898.008000pt;}
.y34{bottom:901.993333pt;}
.yfd{bottom:905.978667pt;}
.ycc{bottom:915.224000pt;}
.y33{bottom:920.005333pt;}
.yfc{bottom:923.193333pt;}
.y5b{bottom:923.994667pt;}
.y3{bottom:925.198667pt;}
.y5a{bottom:931.300000pt;}
.ycb{bottom:932.438667pt;}
.y32{bottom:938.017333pt;}
.yfb{bottom:940.409333pt;}
.yca{bottom:949.654667pt;}
.y2{bottom:952.217333pt;}
.y31{bottom:956.030667pt;}
.yfa{bottom:957.624000pt;}
.y59{bottom:959.952000pt;}
.yc9{bottom:966.869333pt;}
.y30{bottom:974.042667pt;}
.yf9{bottom:974.840000pt;}
.y1{bottom:977.906667pt;}
.y2f{bottom:992.056000pt;}
.y58{bottom:993.372000pt;}
.y2e{bottom:1038.548000pt;}
.h5{height:27.076941pt;}
.h9{height:31.157778pt;}
.ha{height:34.430976pt;}
.h6{height:34.813542pt;}
.hd{height:35.052646pt;}
.h7{height:38.256384pt;}
.h8{height:38.681455pt;}
.h2{height:38.947124pt;}
.h4{height:48.360277pt;}
.hc{height:64.034876pt;}
.hb{height:64.040209pt;}
.h3{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:100.054667pt;}
.x1{left:101.634667pt;}
.x4{left:108.542667pt;}
.x2{left:109.605333pt;}
.x28{left:110.518667pt;}
.x26{left:125.414667pt;}
.x3{left:129.861333pt;}
.x27{left:138.404000pt;}
.x32{left:139.449333pt;}
.x33{left:146.090667pt;}
.x23{left:149.564000pt;}
.x24{left:150.645333pt;}
.x25{left:151.566667pt;}
.xd{left:152.788000pt;}
.xe{left:159.430667pt;}
.x34{left:162.761333pt;}
.x54{left:166.441333pt;}
.x5{left:170.766667pt;}
.x29{left:172.876000pt;}
.x3a{left:178.324000pt;}
.x6{left:179.390667pt;}
.x55{left:182.978667pt;}
.x3b{left:184.965333pt;}
.x57{left:187.814667pt;}
.x49{left:190.340000pt;}
.x56{left:196.262667pt;}
.x58{left:201.097333pt;}
.x59{left:204.402667pt;}
.x1a{left:208.944000pt;}
.x4c{left:213.048000pt;}
.x79{left:214.988000pt;}
.x5a{left:217.685333pt;}
.x4d{left:219.689333pt;}
.x11{left:221.350667pt;}
.x7b{left:222.341333pt;}
.x73{left:223.382667pt;}
.x8d{left:224.762667pt;}
.x4e{left:226.252000pt;}
.x12{left:227.993333pt;}
.x1b{left:234.805333pt;}
.x74{left:236.665333pt;}
.x4f{left:239.536000pt;}
.x1c{left:248.088000pt;}
.x7c{left:250.420000pt;}
.x6d{left:257.237333pt;}
.x35{left:261.154667pt;}
.x13{left:262.685333pt;}
.x7d{left:263.704000pt;}
.x14{left:269.326667pt;}
.x6e{left:270.521333pt;}
.x7{left:271.514667pt;}
.x15{left:276.101333pt;}
.x8{left:278.156000pt;}
.x9{left:284.930667pt;}
.x16{left:289.384000pt;}
.xa{left:291.572000pt;}
.x68{left:297.789333pt;}
.x38{left:300.096000pt;}
.x67{left:302.038667pt;}
.x21{left:303.524000pt;}
.x39{left:306.737333pt;}
.x22{left:308.820000pt;}
.x1d{left:316.008000pt;}
.x80{left:319.342667pt;}
.x75{left:321.600000pt;}
.x1e{left:329.292000pt;}
.x81{left:332.625333pt;}
.x50{left:334.533333pt;}
.x36{left:347.997333pt;}
.x37{left:354.638667pt;}
.x76{left:361.869333pt;}
.x6f{left:378.076000pt;}
.x47{left:385.165333pt;}
.x1f{left:386.418667pt;}
.x70{left:391.358667pt;}
.x48{left:398.449333pt;}
.x20{left:399.702667pt;}
.x6a{left:401.633333pt;}
.x17{left:405.205333pt;}
.x5b{left:413.853333pt;}
.x6b{left:414.917333pt;}
.x18{left:418.489333pt;}
.xb{left:421.402667pt;}
.xc{left:428.045333pt;}
.x77{left:433.852000pt;}
.x19{left:435.026667pt;}
.x8c{left:438.077333pt;}
.x5c{left:440.994667pt;}
.x41{left:442.153333pt;}
.x69{left:444.548000pt;}
.x5d{left:447.636000pt;}
.x5e{left:451.008000pt;}
.x45{left:453.994667pt;}
.x42{left:455.437333pt;}
.x51{left:458.496000pt;}
.x46{left:460.636000pt;}
.x7e{left:461.754667pt;}
.x52{left:465.137333pt;}
.x5f{left:467.661333pt;}
.x7f{left:475.038667pt;}
.x60{left:480.945333pt;}
.x2a{left:483.990667pt;}
.x2b{left:497.273333pt;}
.x6c{left:510.105333pt;}
.xf{left:524.317333pt;}
.x10{left:530.958667pt;}
.x43{left:547.752000pt;}
.x64{left:554.761333pt;}
.x3c{left:558.246667pt;}
.x44{left:561.034667pt;}
.x3d{left:564.888000pt;}
.x53{left:578.666667pt;}
.x65{left:579.902667pt;}
.x66{left:593.186667pt;}
.x61{left:595.372000pt;}
.x87{left:597.174667pt;}
.x78{left:599.733333pt;}
.x4a{left:601.666667pt;}
.x7a{left:606.601333pt;}
.x4b{left:608.309333pt;}
.x62{left:612.026667pt;}
.x85{left:617.138667pt;}
.x89{left:619.890667pt;}
.x88{left:621.084000pt;}
.x63{left:625.310667pt;}
.x2c{left:632.028000pt;}
.x71{left:636.929333pt;}
.x2d{left:645.312000pt;}
.x82{left:648.593333pt;}
.x72{left:650.212000pt;}
.x2e{left:651.814667pt;}
.x83{left:654.064000pt;}
.x2f{left:665.097333pt;}
.x8a{left:666.302667pt;}
.x30{left:668.441333pt;}
.x3f{left:672.132000pt;}
.x86{left:675.742667pt;}
.x84{left:677.974667pt;}
.x31{left:681.725333pt;}
.x40{left:685.414667pt;}
.x8b{left:690.213333pt;}
}




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