
    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_85e54414823690ab78c9baa7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_a59ba5220c25bde0e65a8b0a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_f1535c8f840adc0a3f140e63.woff')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_4799b58205ae596348620482.woff')format("woff");}.ff4{font-family:ff4;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m20{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);}
.m1b{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);}
.m12{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);}
.m1e{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m6{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);}
.ma{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);}
.m1d{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);}
.m3{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);}
.m5{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);}
.m27{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);}
.m9{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);}
.m23{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);}
.me{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);}
.m14{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);}
.m13{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);}
.m25{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);}
.m10{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);}
.m4{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);}
.m19{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);}
.mc{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);}
.m17{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);}
.m24{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);}
.m26{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);}
.m1a{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);}
.mb{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);}
.m1c{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);}
.m8{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);}
.m18{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);}
.m1f{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.md{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);}
.m15{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);}
.m16{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);}
.m11{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);}
.m1{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);}
.m29{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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.814000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:1.443582px;}
.ls17{letter-spacing:2.543454px;}
.lsd{letter-spacing:2.612196px;}
.ls0{letter-spacing:2.988780px;}
.ls18{letter-spacing:15.329466px;}
.lsb{letter-spacing:16.498080px;}
.lsc{letter-spacing:16.566822px;}
.lse{letter-spacing:16.773048px;}
.ls10{letter-spacing:16.841790px;}
.ls12{letter-spacing:16.910532px;}
.lsa{letter-spacing:16.979274px;}
.ls9{letter-spacing:17.048016px;}
.ls5{letter-spacing:17.185500px;}
.ls15{letter-spacing:17.254242px;}
.lsf{letter-spacing:17.391726px;}
.ls13{letter-spacing:17.597952px;}
.ls16{letter-spacing:18.560340px;}
.ls14{letter-spacing:20.141406px;}
.ls8{letter-spacing:22.066182px;}
.ls11{letter-spacing:22.547376px;}
.ls6{letter-spacing:23.990958px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.ws5f{word-spacing:-17.185500px;}
.ws10d{word-spacing:-3.849552px;}
.wsc6{word-spacing:-3.780810px;}
.wsef{word-spacing:-3.712068px;}
.ws126{word-spacing:-3.643326px;}
.ws6d{word-spacing:-3.574584px;}
.ws45{word-spacing:-3.505842px;}
.ws98{word-spacing:-3.437100px;}
.ws74{word-spacing:-3.368358px;}
.wsf6{word-spacing:-3.299616px;}
.ws4f{word-spacing:-3.230874px;}
.wsb6{word-spacing:-3.162132px;}
.ws99{word-spacing:-3.093390px;}
.ws10c{word-spacing:-3.024648px;}
.ws13{word-spacing:-2.988780px;}
.wsf8{word-spacing:-2.955906px;}
.ws19{word-spacing:-2.887164px;}
.wsed{word-spacing:-2.818422px;}
.ws6f{word-spacing:-2.749680px;}
.ws33{word-spacing:-2.680938px;}
.wsdc{word-spacing:-2.612196px;}
.wsd9{word-spacing:-2.543454px;}
.wsfa{word-spacing:-2.474712px;}
.wsd3{word-spacing:-2.405970px;}
.ws115{word-spacing:-2.337228px;}
.ws65{word-spacing:-2.268486px;}
.wsde{word-spacing:-2.199744px;}
.ws116{word-spacing:-2.131002px;}
.wse9{word-spacing:-2.062260px;}
.ws53{word-spacing:-1.993518px;}
.ws88{word-spacing:-1.924776px;}
.ws63{word-spacing:-1.856034px;}
.ws6e{word-spacing:-1.787292px;}
.wseb{word-spacing:-1.718550px;}
.wsc5{word-spacing:-1.649808px;}
.ws8a{word-spacing:-1.581066px;}
.ws5e{word-spacing:-1.512324px;}
.ws49{word-spacing:-1.443582px;}
.wsfe{word-spacing:-1.374840px;}
.ws11{word-spacing:-1.315063px;}
.ws2d{word-spacing:-1.306098px;}
.ws56{word-spacing:-1.237356px;}
.wsd7{word-spacing:-1.168614px;}
.wsb5{word-spacing:-1.099872px;}
.wsfd{word-spacing:-1.031130px;}
.ws9f{word-spacing:-0.962388px;}
.ws4b{word-spacing:-0.893646px;}
.wsf4{word-spacing:-0.824904px;}
.ws12c{word-spacing:-0.756162px;}
.wsdb{word-spacing:-0.687420px;}
.ws51{word-spacing:-0.618678px;}
.ws5{word-spacing:-0.597756px;}
.ws10f{word-spacing:-0.549936px;}
.wsdf{word-spacing:-0.481194px;}
.ws2e{word-spacing:-0.412452px;}
.ws1e{word-spacing:-0.343710px;}
.ws2b{word-spacing:-0.274968px;}
.ws47{word-spacing:-0.206226px;}
.ws12{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.137484px;}
.ws9{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.068742px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.ws133{word-spacing:0.053798px;}
.ws14{word-spacing:0.059776px;}
.ws31{word-spacing:0.068742px;}
.ws15{word-spacing:0.107597px;}
.wsf{word-spacing:0.119551px;}
.ws20{word-spacing:0.137484px;}
.ws41{word-spacing:0.206226px;}
.ws6{word-spacing:0.239102px;}
.ws21{word-spacing:0.274968px;}
.ws4{word-spacing:0.298878px;}
.ws24{word-spacing:0.343710px;}
.ws44{word-spacing:0.412452px;}
.ws7e{word-spacing:0.481194px;}
.wsc{word-spacing:0.537980px;}
.ws42{word-spacing:0.549936px;}
.ws71{word-spacing:0.618678px;}
.ws77{word-spacing:0.687420px;}
.ws6a{word-spacing:0.756162px;}
.ws5a{word-spacing:0.824904px;}
.wsd8{word-spacing:0.893646px;}
.ws40{word-spacing:0.962388px;}
.ws38{word-spacing:1.031130px;}
.wsc0{word-spacing:1.099872px;}
.wsfc{word-spacing:1.168614px;}
.ws1a{word-spacing:1.237356px;}
.ws83{word-spacing:1.306098px;}
.ws92{word-spacing:1.374840px;}
.wsaa{word-spacing:1.443582px;}
.wsb8{word-spacing:1.512324px;}
.ws4c{word-spacing:1.581066px;}
.ws1b{word-spacing:1.649808px;}
.wsb7{word-spacing:1.718550px;}
.ws7{word-spacing:1.733492px;}
.wse2{word-spacing:1.787292px;}
.wsa6{word-spacing:1.856034px;}
.ws7c{word-spacing:1.924776px;}
.ws57{word-spacing:1.993518px;}
.ws4a{word-spacing:2.062260px;}
.ws79{word-spacing:2.131002px;}
.ws10e{word-spacing:2.199744px;}
.ws3e{word-spacing:2.268486px;}
.wse{word-spacing:2.271473px;}
.wsac{word-spacing:2.337228px;}
.ws97{word-spacing:2.405970px;}
.ws10{word-spacing:2.450800px;}
.wse6{word-spacing:2.474712px;}
.ws117{word-spacing:2.528525px;}
.ws9a{word-spacing:2.543454px;}
.ws1f{word-spacing:2.612196px;}
.wsf7{word-spacing:2.680938px;}
.ws101{word-spacing:2.749680px;}
.wsa0{word-spacing:2.818422px;}
.wsd{word-spacing:2.869229px;}
.wsa8{word-spacing:2.887164px;}
.ws12f{word-spacing:2.905114px;}
.ws43{word-spacing:2.955906px;}
.ws9b{word-spacing:3.024648px;}
.ws4e{word-spacing:3.093390px;}
.wsea{word-spacing:3.162132px;}
.wsff{word-spacing:3.230874px;}
.ws82{word-spacing:3.299616px;}
.ws7f{word-spacing:3.368358px;}
.ws64{word-spacing:3.437100px;}
.ws52{word-spacing:3.505842px;}
.wsb3{word-spacing:3.574584px;}
.ws2a{word-spacing:3.643326px;}
.ws26{word-spacing:3.712068px;}
.wsd6{word-spacing:3.780810px;}
.ws34{word-spacing:3.849552px;}
.ws87{word-spacing:3.918294px;}
.wsbe{word-spacing:3.987036px;}
.ws75{word-spacing:4.055778px;}
.ws137{word-spacing:4.103190px;}
.wsbb{word-spacing:4.124520px;}
.wsc4{word-spacing:4.193262px;}
.wsdd{word-spacing:4.262004px;}
.ws72{word-spacing:4.330746px;}
.wsb4{word-spacing:4.399488px;}
.ws32{word-spacing:4.468230px;}
.ws22{word-spacing:4.536972px;}
.ws3f{word-spacing:4.605714px;}
.wsb1{word-spacing:4.674456px;}
.wse7{word-spacing:4.743198px;}
.ws5b{word-spacing:4.811940px;}
.wsbf{word-spacing:4.880682px;}
.ws18{word-spacing:4.949424px;}
.wsf0{word-spacing:5.018166px;}
.wsf5{word-spacing:5.086908px;}
.ws7a{word-spacing:5.155650px;}
.wsda{word-spacing:5.224392px;}
.ws8b{word-spacing:5.293134px;}
.ws61{word-spacing:5.361876px;}
.ws9e{word-spacing:5.430618px;}
.ws25{word-spacing:5.499360px;}
.ws37{word-spacing:5.568102px;}
.ws62{word-spacing:5.636844px;}
.wsc1{word-spacing:5.705586px;}
.wsa9{word-spacing:5.774328px;}
.wsf1{word-spacing:5.843070px;}
.ws113{word-spacing:5.911812px;}
.wsa{word-spacing:5.977560px;}
.wse1{word-spacing:5.980554px;}
.ws17{word-spacing:6.049296px;}
.ws23{word-spacing:6.118038px;}
.ws27{word-spacing:6.186780px;}
.ws7b{word-spacing:6.255522px;}
.ws9c{word-spacing:6.324264px;}
.ws8{word-spacing:6.336214px;}
.wsbd{word-spacing:6.393006px;}
.ws89{word-spacing:6.461748px;}
.ws66{word-spacing:6.530490px;}
.ws9d{word-spacing:6.599232px;}
.ws90{word-spacing:6.667974px;}
.ws48{word-spacing:6.736716px;}
.wsb{word-spacing:6.754643px;}
.wscb{word-spacing:6.805458px;}
.ws5c{word-spacing:6.874200px;}
.ws55{word-spacing:6.942942px;}
.ws2f{word-spacing:7.011684px;}
.ws85{word-spacing:7.080426px;}
.wsf2{word-spacing:7.149168px;}
.ws36{word-spacing:7.217910px;}
.ws84{word-spacing:7.286652px;}
.wsce{word-spacing:7.355394px;}
.wsc8{word-spacing:7.424136px;}
.wse0{word-spacing:7.492878px;}
.ws10a{word-spacing:7.561620px;}
.ws138{word-spacing:7.563834px;}
.ws39{word-spacing:7.630362px;}
.wsee{word-spacing:7.699104px;}
.ws30{word-spacing:7.767846px;}
.ws2c{word-spacing:7.836588px;}
.ws96{word-spacing:7.905330px;}
.ws86{word-spacing:7.974072px;}
.ws58{word-spacing:8.042814px;}
.ws3d{word-spacing:8.111556px;}
.ws3b{word-spacing:8.180298px;}
.ws10b{word-spacing:8.249040px;}
.wsb9{word-spacing:8.317782px;}
.ws70{word-spacing:8.386524px;}
.wsc3{word-spacing:8.455266px;}
.ws4d{word-spacing:8.524008px;}
.wsf9{word-spacing:8.592750px;}
.wsca{word-spacing:8.661492px;}
.ws7d{word-spacing:8.730234px;}
.ws50{word-spacing:8.798976px;}
.ws29{word-spacing:8.867718px;}
.ws122{word-spacing:8.936460px;}
.ws35{word-spacing:9.005202px;}
.ws54{word-spacing:9.073944px;}
.ws3a{word-spacing:9.142686px;}
.ws28{word-spacing:9.211428px;}
.ws100{word-spacing:9.280170px;}
.wsd4{word-spacing:9.348912px;}
.ws67{word-spacing:9.417654px;}
.wsc2{word-spacing:9.486396px;}
.ws59{word-spacing:9.555138px;}
.ws46{word-spacing:9.623880px;}
.wsa3{word-spacing:9.692622px;}
.wsba{word-spacing:9.761364px;}
.wsa5{word-spacing:9.830106px;}
.wsd1{word-spacing:9.898848px;}
.wsa4{word-spacing:9.967590px;}
.wsb2{word-spacing:10.036332px;}
.wsbc{word-spacing:10.105074px;}
.wsfb{word-spacing:10.173816px;}
.ws108{word-spacing:10.242558px;}
.wse4{word-spacing:10.311300px;}
.wscd{word-spacing:10.380042px;}
.wsd2{word-spacing:10.517526px;}
.ws127{word-spacing:10.586268px;}
.ws6c{word-spacing:10.655010px;}
.ws136{word-spacing:10.792494px;}
.ws5d{word-spacing:10.861236px;}
.ws131{word-spacing:10.929978px;}
.wsaf{word-spacing:10.998720px;}
.wsc9{word-spacing:11.067462px;}
.ws73{word-spacing:11.136204px;}
.wsb0{word-spacing:11.204946px;}
.ws12b{word-spacing:11.273688px;}
.ws119{word-spacing:11.342430px;}
.ws109{word-spacing:11.411172px;}
.ws8d{word-spacing:11.479914px;}
.ws60{word-spacing:11.548656px;}
.ws11c{word-spacing:11.686140px;}
.ws129{word-spacing:11.754882px;}
.ws104{word-spacing:11.823624px;}
.ws11d{word-spacing:11.892366px;}
.wsec{word-spacing:11.961108px;}
.ws125{word-spacing:12.098592px;}
.ws120{word-spacing:12.236076px;}
.ws114{word-spacing:12.304818px;}
.ws107{word-spacing:12.373560px;}
.wsa1{word-spacing:12.442302px;}
.ws132{word-spacing:12.511044px;}
.ws12a{word-spacing:12.579786px;}
.ws69{word-spacing:12.717270px;}
.ws12e{word-spacing:12.786012px;}
.ws78{word-spacing:12.854754px;}
.ws93{word-spacing:12.992238px;}
.wsd0{word-spacing:13.060980px;}
.ws102{word-spacing:13.198464px;}
.wse5{word-spacing:13.267206px;}
.wscc{word-spacing:13.335948px;}
.ws3c{word-spacing:13.473432px;}
.ws111{word-spacing:13.748400px;}
.ws128{word-spacing:13.885884px;}
.ws123{word-spacing:13.954626px;}
.ws8c{word-spacing:14.229594px;}
.ws8f{word-spacing:14.367078px;}
.ws80{word-spacing:14.573304px;}
.wsae{word-spacing:14.710788px;}
.ws121{word-spacing:14.779530px;}
.ws91{word-spacing:14.985756px;}
.ws11a{word-spacing:15.398208px;}
.ws118{word-spacing:15.604434px;}
.ws110{word-spacing:15.879402px;}
.ws11e{word-spacing:16.085628px;}
.ws103{word-spacing:16.154370px;}
.ws11b{word-spacing:16.291854px;}
.wsf3{word-spacing:16.360596px;}
.ws11f{word-spacing:16.429338px;}
.ws68{word-spacing:16.498080px;}
.ws0{word-spacing:16.880672px;}
.ws81{word-spacing:17.322984px;}
.ws124{word-spacing:17.391726px;}
.ws8e{word-spacing:17.529210px;}
.wscf{word-spacing:17.804178px;}
.ws130{word-spacing:17.872920px;}
.ws112{word-spacing:18.285372px;}
.ws105{word-spacing:19.349392px;}
.wsa7{word-spacing:19.453986px;}
.ws6b{word-spacing:19.866438px;}
.ws3{word-spacing:19.905275px;}
.ws94{word-spacing:21.035052px;}
.ws76{word-spacing:22.134924px;}
.ws12d{word-spacing:22.959828px;}
.wsa2{word-spacing:25.503282px;}
.wsab{word-spacing:29.559060px;}
.ws95{word-spacing:37.120680px;}
.wsd5{word-spacing:41.313942px;}
.wsc7{word-spacing:50.181660px;}
.ws135{word-spacing:52.175178px;}
.wse3{word-spacing:53.206308px;}
.wsad{word-spacing:72.591552px;}
.ws16{word-spacing:77.630692px;}
.ws106{word-spacing:940.539258px;}
.ws134{word-spacing:941.739258px;}
.wse8{word-spacing:943.119258px;}
._33{margin-left:-34.371000px;}
._3c{margin-left:-24.815862px;}
._4{margin-left:-11.362164px;}
._36{margin-left:-9.417654px;}
._2{margin-left:-8.263392px;}
._8{margin-left:-6.455765px;}
._1b{margin-left:-5.430618px;}
._5{margin-left:-4.278744px;}
._a{margin-left:-3.138228px;}
._1{margin-left:-1.549386px;}
._0{width:1.386797px;}
._39{width:3.024648px;}
._38{width:4.055778px;}
._3a{width:5.742948px;}
._3b{width:6.961482px;}
._37{width:8.661492px;}
._35{width:13.098042px;}
._2c{width:15.128622px;}
._e{width:16.236349px;}
._2d{width:17.340934px;}
._6{width:18.500557px;}
._2e{width:19.815646px;}
._b{width:20.916680px;}
._18{width:22.066182px;}
._9{width:23.068602px;}
._7{width:24.328669px;}
._f{width:25.572024px;}
._c{width:26.988692px;}
._16{width:28.496250px;}
._15{width:30.146058px;}
._25{width:31.383414px;}
._3{width:32.537106px;}
._14{width:34.044030px;}
._13{width:35.264646px;}
._1a{width:36.570744px;}
._19{width:38.225934px;}
._21{width:39.526650px;}
._34{width:40.626522px;}
._1e{width:41.690564px;}
._11{width:43.032492px;}
._22{width:44.275847px;}
._12{width:45.438462px;}
._26{width:46.813302px;}
._10{width:48.531852px;}
._2a{width:49.600044px;}
._17{width:50.869080px;}
._23{width:52.175178px;}
._2b{width:53.481276px;}
._30{width:54.961920px;}
._31{width:56.580048px;}
._24{width:57.743280px;}
._d{width:60.014702px;}
._20{width:63.073476px;}
._1f{width:65.167416px;}
._1c{width:67.367160px;}
._1d{width:68.742000px;}
._29{width:70.391808px;}
._28{width:74.585070px;}
._2f{width:77.708400px;}
._27{width:78.778332px;}
._32{width:139.752486px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y54{bottom:41.308500px;}
.y5e{bottom:41.592000px;}
.y55{bottom:43.522500px;}
.y10f{bottom:89.719500px;}
.y26{bottom:90.306000px;}
.y53{bottom:90.733500px;}
.yeb{bottom:91.413000px;}
.yc5{bottom:99.448500px;}
.y5d{bottom:100.462500px;}
.y14a{bottom:102.646500px;}
.yfa{bottom:108.145500px;}
.ya4{bottom:108.262500px;}
.yba{bottom:109.276500px;}
.y89{bottom:112.516500px;}
.y25{bottom:113.103000px;}
.y52{bottom:113.530500px;}
.yea{bottom:114.210000px;}
.yc4{bottom:122.245500px;}
.y5c{bottom:123.259500px;}
.y149{bottom:125.443500px;}
.yf9{bottom:130.942500px;}
.ya3{bottom:131.059500px;}
.yb9{bottom:132.073500px;}
.y88{bottom:135.313500px;}
.y24{bottom:135.900000px;}
.y51{bottom:136.327500px;}
.ye9{bottom:137.007000px;}
.yc3{bottom:145.042500px;}
.yce{bottom:146.056500px;}
.y148{bottom:148.240500px;}
.yf8{bottom:153.739500px;}
.ya2{bottom:153.856500px;}
.y11d{bottom:154.753500px;}
.yb8{bottom:154.870500px;}
.y87{bottom:158.110500px;}
.y23{bottom:158.697000px;}
.y50{bottom:159.124500px;}
.ye8{bottom:159.805500px;}
.y5b{bottom:163.989000px;}
.yc2{bottom:167.839500px;}
.ycd{bottom:168.853500px;}
.y147{bottom:171.037500px;}
.yf7{bottom:176.536500px;}
.ya1{bottom:176.653500px;}
.y11c{bottom:177.550500px;}
.yb7{bottom:177.667500px;}
.y86{bottom:180.907500px;}
.y22{bottom:181.494000px;}
.y4f{bottom:181.921500px;}
.ye7{bottom:182.602500px;}
.y5a{bottom:186.786000px;}
.yc1{bottom:190.636500px;}
.ycc{bottom:191.650500px;}
.y146{bottom:193.834500px;}
.yf6{bottom:199.333500px;}
.ya0{bottom:199.450500px;}
.y11b{bottom:200.347500px;}
.yb6{bottom:200.464500px;}
.y85{bottom:203.704500px;}
.y21{bottom:204.291000px;}
.y4e{bottom:204.718500px;}
.ye6{bottom:205.399500px;}
.y59{bottom:209.583000px;}
.yc0{bottom:213.433500px;}
.ycb{bottom:214.447500px;}
.y145{bottom:216.633000px;}
.yf5{bottom:222.130500px;}
.y9f{bottom:222.247500px;}
.y11a{bottom:223.144500px;}
.yb5{bottom:223.261500px;}
.y84{bottom:226.501500px;}
.y20{bottom:227.089500px;}
.y4d{bottom:227.515500px;}
.ye5{bottom:228.196500px;}
.y58{bottom:232.380000px;}
.ybf{bottom:236.230500px;}
.yca{bottom:237.244500px;}
.y144{bottom:239.430000px;}
.yf4{bottom:244.927500px;}
.y9e{bottom:245.044500px;}
.y119{bottom:245.941500px;}
.yb4{bottom:246.058500px;}
.y83{bottom:249.298500px;}
.y1f{bottom:249.886500px;}
.y4c{bottom:250.312500px;}
.ye4{bottom:250.993500px;}
.y57{bottom:255.177000px;}
.ybe{bottom:259.027500px;}
.yc9{bottom:260.041500px;}
.y143{bottom:262.227000px;}
.yf3{bottom:267.726000px;}
.y9d{bottom:267.841500px;}
.y118{bottom:268.740000px;}
.yb3{bottom:268.855500px;}
.y82{bottom:272.097000px;}
.y1e{bottom:272.683500px;}
.y4b{bottom:273.109500px;}
.ye3{bottom:273.790500px;}
.y56{bottom:277.974000px;}
.ybd{bottom:281.824500px;}
.yc8{bottom:282.838500px;}
.y142{bottom:285.024000px;}
.yf2{bottom:290.523000px;}
.y9c{bottom:290.638500px;}
.y117{bottom:291.537000px;}
.yb2{bottom:291.652500px;}
.y81{bottom:294.894000px;}
.y4a{bottom:295.908000px;}
.y14b{bottom:295.993500px;}
.ye2{bottom:296.587500px;}
.ybc{bottom:304.621500px;}
.yc7{bottom:305.635500px;}
.y141{bottom:307.821000px;}
.yf1{bottom:313.320000px;}
.y9b{bottom:313.435500px;}
.y116{bottom:314.334000px;}
.yb1{bottom:314.449500px;}
.y80{bottom:317.691000px;}
.y49{bottom:318.705000px;}
.ye1{bottom:319.384500px;}
.y1d{bottom:323.874000px;}
.y10e{bottom:325.461000px;}
.ybb{bottom:327.418500px;}
.yc6{bottom:328.432500px;}
.y140{bottom:330.618000px;}
.y111{bottom:331.186500px;}
.y11f{bottom:331.446000px;}
.yf0{bottom:336.117000px;}
.y9a{bottom:336.234000px;}
.y115{bottom:337.131000px;}
.yb0{bottom:337.248000px;}
.y7f{bottom:340.488000px;}
.y48{bottom:341.502000px;}
.ye0{bottom:342.181500px;}
.y10d{bottom:348.258000px;}
.y103{bottom:350.217000px;}
.y10c{bottom:351.229500px;}
.y13f{bottom:353.415000px;}
.y110{bottom:353.983500px;}
.y11e{bottom:354.243000px;}
.y99{bottom:359.031000px;}
.y114{bottom:359.928000px;}
.yaf{bottom:360.045000px;}
.y7e{bottom:363.285000px;}
.y47{bottom:364.299000px;}
.ydf{bottom:364.978500px;}
.y1c{bottom:365.047500px;}
.y102{bottom:373.014000px;}
.y10b{bottom:374.028000px;}
.y13e{bottom:376.212000px;}
.yef{bottom:377.860500px;}
.y98{bottom:381.828000px;}
.y113{bottom:382.725000px;}
.yae{bottom:382.842000px;}
.y1b{bottom:383.622000px;}
.y7d{bottom:386.082000px;}
.y46{bottom:387.096000px;}
.yde{bottom:387.775500px;}
.y101{bottom:395.811000px;}
.y10a{bottom:396.825000px;}
.y1a{bottom:397.486500px;}
.y13d{bottom:399.009000px;}
.yee{bottom:400.657500px;}
.y97{bottom:404.625000px;}
.yad{bottom:405.639000px;}
.y7c{bottom:408.879000px;}
.y45{bottom:409.893000px;}
.ydd{bottom:410.572500px;}
.y112{bottom:415.983000px;}
.y100{bottom:418.608000px;}
.y19{bottom:419.440500px;}
.y109{bottom:419.622000px;}
.y13c{bottom:421.806000px;}
.yed{bottom:423.454500px;}
.y96{bottom:427.422000px;}
.yac{bottom:428.436000px;}
.y7b{bottom:431.676000px;}
.y44{bottom:432.690000px;}
.ydc{bottom:433.369500px;}
.yff{bottom:441.405000px;}
.y108{bottom:442.419000px;}
.y18{bottom:443.626500px;}
.y13b{bottom:444.603000px;}
.y95{bottom:450.219000px;}
.yab{bottom:451.233000px;}
.y7a{bottom:454.473000px;}
.y43{bottom:455.487000px;}
.ydb{bottom:456.168000px;}
.yec{bottom:456.712500px;}
.yfe{bottom:464.202000px;}
.y107{bottom:465.216000px;}
.y13a{bottom:467.400000px;}
.y94{bottom:473.016000px;}
.yaa{bottom:474.030000px;}
.y79{bottom:477.270000px;}
.y42{bottom:478.284000px;}
.yda{bottom:478.965000px;}
.y17{bottom:479.029500px;}
.yfd{bottom:486.999000px;}
.y106{bottom:488.013000px;}
.y139{bottom:490.197000px;}
.y93{bottom:495.813000px;}
.ya9{bottom:496.827000px;}
.y78{bottom:500.067000px;}
.y16{bottom:500.982000px;}
.y41{bottom:501.081000px;}
.yd9{bottom:501.762000px;}
.yfc{bottom:509.796000px;}
.y105{bottom:510.810000px;}
.y138{bottom:512.994000px;}
.y92{bottom:518.610000px;}
.ya8{bottom:519.624000px;}
.y77{bottom:522.864000px;}
.y15{bottom:522.934500px;}
.y40{bottom:523.878000px;}
.yd8{bottom:524.559000px;}
.yfb{bottom:532.593000px;}
.y104{bottom:533.607000px;}
.y137{bottom:535.792500px;}
.y91{bottom:541.407000px;}
.ya7{bottom:542.421000px;}
.y14{bottom:544.887000px;}
.y76{bottom:545.661000px;}
.y3f{bottom:546.675000px;}
.yd7{bottom:547.356000px;}
.y136{bottom:558.589500px;}
.y90{bottom:564.204000px;}
.ya6{bottom:565.218000px;}
.y13{bottom:566.841000px;}
.y75{bottom:568.458000px;}
.y3e{bottom:569.472000px;}
.yd6{bottom:570.153000px;}
.y135{bottom:581.386500px;}
.y8f{bottom:587.001000px;}
.ya5{bottom:588.015000px;}
.y12{bottom:588.793500px;}
.y74{bottom:591.256500px;}
.y3d{bottom:592.269000px;}
.yd5{bottom:592.950000px;}
.y134{bottom:604.183500px;}
.y11{bottom:610.746000px;}
.y73{bottom:614.053500px;}
.y3c{bottom:615.067500px;}
.yd4{bottom:615.747000px;}
.y133{bottom:626.980500px;}
.y8e{bottom:628.746000px;}
.y10{bottom:632.698500px;}
.y72{bottom:636.850500px;}
.y3b{bottom:637.864500px;}
.yd3{bottom:638.544000px;}
.y132{bottom:649.777500px;}
.y8d{bottom:651.543000px;}
.yf{bottom:654.651000px;}
.y71{bottom:659.647500px;}
.y3a{bottom:660.661500px;}
.yd2{bottom:661.341000px;}
.y131{bottom:672.574500px;}
.y8c{bottom:674.340000px;}
.ye{bottom:676.603500px;}
.y70{bottom:682.444500px;}
.y39{bottom:683.458500px;}
.yd1{bottom:684.138000px;}
.y130{bottom:695.371500px;}
.yd{bottom:698.557500px;}
.y6f{bottom:705.241500px;}
.y38{bottom:706.255500px;}
.yd0{bottom:706.935000px;}
.y8b{bottom:707.598000px;}
.y12f{bottom:718.168500px;}
.yc{bottom:720.510000px;}
.y6e{bottom:728.038500px;}
.ycf{bottom:728.718000px;}
.y37{bottom:729.052500px;}
.y8a{bottom:729.804000px;}
.y12e{bottom:740.965500px;}
.yb{bottom:742.462500px;}
.y6d{bottom:750.835500px;}
.y36{bottom:751.849500px;}
.y12d{bottom:763.762500px;}
.ya{bottom:764.415000px;}
.y6c{bottom:773.632500px;}
.y35{bottom:774.646500px;}
.y9{bottom:786.367500px;}
.y12c{bottom:786.559500px;}
.y6b{bottom:796.429500px;}
.y34{bottom:797.443500px;}
.y8{bottom:808.321500px;}
.y12b{bottom:809.356500px;}
.y6a{bottom:819.226500px;}
.y33{bottom:820.240500px;}
.y7{bottom:830.274000px;}
.y12a{bottom:832.155000px;}
.y69{bottom:842.023500px;}
.y32{bottom:843.037500px;}
.y6{bottom:852.226500px;}
.y129{bottom:854.952000px;}
.y68{bottom:864.820500px;}
.y31{bottom:865.834500px;}
.y128{bottom:877.749000px;}
.y67{bottom:887.617500px;}
.y30{bottom:888.631500px;}
.y127{bottom:900.546000px;}
.y66{bottom:910.416000px;}
.y2f{bottom:911.430000px;}
.y5{bottom:917.967000px;}
.y126{bottom:923.343000px;}
.y65{bottom:933.213000px;}
.y2e{bottom:934.227000px;}
.y125{bottom:946.140000px;}
.y64{bottom:956.010000px;}
.y2d{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y124{bottom:968.937000px;}
.y63{bottom:978.807000px;}
.y2c{bottom:979.821000px;}
.y123{bottom:991.734000px;}
.y3{bottom:996.498000px;}
.y62{bottom:1001.604000px;}
.y2b{bottom:1002.618000px;}
.y122{bottom:1014.531000px;}
.y61{bottom:1024.401000px;}
.y2a{bottom:1025.415000px;}
.y121{bottom:1037.328000px;}
.y60{bottom:1047.198000px;}
.y29{bottom:1048.212000px;}
.y5f{bottom:1069.995000px;}
.y120{bottom:1070.586000px;}
.y28{bottom:1071.009000px;}
.y14c{bottom:1071.094500px;}
.y2{bottom:1101.726000px;}
.y27{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.304940px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.hc{height:47.636496px;}
.h3{height:53.463379px;}
.h7{height:53.696504px;}
.hd{height:61.971012px;}
.he{height:62.282496px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:126.510000px;}
.x13{left:127.558500px;}
.x24{left:139.021500px;}
.x3{left:144.366000px;}
.x1a{left:151.072500px;}
.x14{left:153.070500px;}
.x22{left:156.706500px;}
.x6{left:178.044000px;}
.x23{left:181.129500px;}
.x11{left:182.308500px;}
.x1c{left:190.990500px;}
.x1b{left:194.805000px;}
.x1e{left:201.474000px;}
.x25{left:204.003000px;}
.x8{left:221.137500px;}
.x9{left:236.014500px;}
.xa{left:249.300000px;}
.x26{left:256.504500px;}
.x29{left:298.986000px;}
.x4{left:331.749000px;}
.x20{left:347.508000px;}
.xb{left:351.369000px;}
.x5{left:352.920000px;}
.xc{left:356.344500px;}
.x16{left:404.373000px;}
.x7{left:410.130000px;}
.x12{left:432.832500px;}
.x1f{left:447.636000px;}
.x17{left:452.577000px;}
.x1d{left:462.060000px;}
.x15{left:464.346000px;}
.xd{left:472.431000px;}
.xe{left:480.739500px;}
.x19{left:489.858000px;}
.x2a{left:520.935000px;}
.x2b{left:549.208500px;}
.x2{left:573.774000px;}
.x18{left:578.070000px;}
.x2c{left:592.816500px;}
.xf{left:623.250000px;}
.x10{left:631.560000px;}
.x28{left:691.045500px;}
.x27{left:692.479500px;}
.x1{left:696.322500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.168000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:1.283184pt;}
.ls17{letter-spacing:2.260848pt;}
.lsd{letter-spacing:2.321952pt;}
.ls0{letter-spacing:2.656693pt;}
.ls18{letter-spacing:13.626192pt;}
.lsb{letter-spacing:14.664960pt;}
.lsc{letter-spacing:14.726064pt;}
.lse{letter-spacing:14.909376pt;}
.ls10{letter-spacing:14.970480pt;}
.ls12{letter-spacing:15.031584pt;}
.lsa{letter-spacing:15.092688pt;}
.ls9{letter-spacing:15.153792pt;}
.ls5{letter-spacing:15.276000pt;}
.ls15{letter-spacing:15.337104pt;}
.lsf{letter-spacing:15.459312pt;}
.ls13{letter-spacing:15.642624pt;}
.ls16{letter-spacing:16.498080pt;}
.ls14{letter-spacing:17.903472pt;}
.ls8{letter-spacing:19.614384pt;}
.ls11{letter-spacing:20.042112pt;}
.ls6{letter-spacing:21.325296pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws5f{word-spacing:-15.276000pt;}
.ws10d{word-spacing:-3.421824pt;}
.wsc6{word-spacing:-3.360720pt;}
.wsef{word-spacing:-3.299616pt;}
.ws126{word-spacing:-3.238512pt;}
.ws6d{word-spacing:-3.177408pt;}
.ws45{word-spacing:-3.116304pt;}
.ws98{word-spacing:-3.055200pt;}
.ws74{word-spacing:-2.994096pt;}
.wsf6{word-spacing:-2.932992pt;}
.ws4f{word-spacing:-2.871888pt;}
.wsb6{word-spacing:-2.810784pt;}
.ws99{word-spacing:-2.749680pt;}
.ws10c{word-spacing:-2.688576pt;}
.ws13{word-spacing:-2.656693pt;}
.wsf8{word-spacing:-2.627472pt;}
.ws19{word-spacing:-2.566368pt;}
.wsed{word-spacing:-2.505264pt;}
.ws6f{word-spacing:-2.444160pt;}
.ws33{word-spacing:-2.383056pt;}
.wsdc{word-spacing:-2.321952pt;}
.wsd9{word-spacing:-2.260848pt;}
.wsfa{word-spacing:-2.199744pt;}
.wsd3{word-spacing:-2.138640pt;}
.ws115{word-spacing:-2.077536pt;}
.ws65{word-spacing:-2.016432pt;}
.wsde{word-spacing:-1.955328pt;}
.ws116{word-spacing:-1.894224pt;}
.wse9{word-spacing:-1.833120pt;}
.ws53{word-spacing:-1.772016pt;}
.ws88{word-spacing:-1.710912pt;}
.ws63{word-spacing:-1.649808pt;}
.ws6e{word-spacing:-1.588704pt;}
.wseb{word-spacing:-1.527600pt;}
.wsc5{word-spacing:-1.466496pt;}
.ws8a{word-spacing:-1.405392pt;}
.ws5e{word-spacing:-1.344288pt;}
.ws49{word-spacing:-1.283184pt;}
.wsfe{word-spacing:-1.222080pt;}
.ws11{word-spacing:-1.168945pt;}
.ws2d{word-spacing:-1.160976pt;}
.ws56{word-spacing:-1.099872pt;}
.wsd7{word-spacing:-1.038768pt;}
.wsb5{word-spacing:-0.977664pt;}
.wsfd{word-spacing:-0.916560pt;}
.ws9f{word-spacing:-0.855456pt;}
.ws4b{word-spacing:-0.794352pt;}
.wsf4{word-spacing:-0.733248pt;}
.ws12c{word-spacing:-0.672144pt;}
.wsdb{word-spacing:-0.611040pt;}
.ws51{word-spacing:-0.549936pt;}
.ws5{word-spacing:-0.531339pt;}
.ws10f{word-spacing:-0.488832pt;}
.wsdf{word-spacing:-0.427728pt;}
.ws2e{word-spacing:-0.366624pt;}
.ws1e{word-spacing:-0.305520pt;}
.ws2b{word-spacing:-0.244416pt;}
.ws47{word-spacing:-0.183312pt;}
.ws12{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.122208pt;}
.ws9{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.061104pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.ws133{word-spacing:0.047821pt;}
.ws14{word-spacing:0.053134pt;}
.ws31{word-spacing:0.061104pt;}
.ws15{word-spacing:0.095642pt;}
.wsf{word-spacing:0.106268pt;}
.ws20{word-spacing:0.122208pt;}
.ws41{word-spacing:0.183312pt;}
.ws6{word-spacing:0.212535pt;}
.ws21{word-spacing:0.244416pt;}
.ws4{word-spacing:0.265669pt;}
.ws24{word-spacing:0.305520pt;}
.ws44{word-spacing:0.366624pt;}
.ws7e{word-spacing:0.427728pt;}
.wsc{word-spacing:0.478205pt;}
.ws42{word-spacing:0.488832pt;}
.ws71{word-spacing:0.549936pt;}
.ws77{word-spacing:0.611040pt;}
.ws6a{word-spacing:0.672144pt;}
.ws5a{word-spacing:0.733248pt;}
.wsd8{word-spacing:0.794352pt;}
.ws40{word-spacing:0.855456pt;}
.ws38{word-spacing:0.916560pt;}
.wsc0{word-spacing:0.977664pt;}
.wsfc{word-spacing:1.038768pt;}
.ws1a{word-spacing:1.099872pt;}
.ws83{word-spacing:1.160976pt;}
.ws92{word-spacing:1.222080pt;}
.wsaa{word-spacing:1.283184pt;}
.wsb8{word-spacing:1.344288pt;}
.ws4c{word-spacing:1.405392pt;}
.ws1b{word-spacing:1.466496pt;}
.wsb7{word-spacing:1.527600pt;}
.ws7{word-spacing:1.540882pt;}
.wse2{word-spacing:1.588704pt;}
.wsa6{word-spacing:1.649808pt;}
.ws7c{word-spacing:1.710912pt;}
.ws57{word-spacing:1.772016pt;}
.ws4a{word-spacing:1.833120pt;}
.ws79{word-spacing:1.894224pt;}
.ws10e{word-spacing:1.955328pt;}
.ws3e{word-spacing:2.016432pt;}
.wse{word-spacing:2.019087pt;}
.wsac{word-spacing:2.077536pt;}
.ws97{word-spacing:2.138640pt;}
.ws10{word-spacing:2.178489pt;}
.wse6{word-spacing:2.199744pt;}
.ws117{word-spacing:2.247578pt;}
.ws9a{word-spacing:2.260848pt;}
.ws1f{word-spacing:2.321952pt;}
.wsf7{word-spacing:2.383056pt;}
.ws101{word-spacing:2.444160pt;}
.wsa0{word-spacing:2.505264pt;}
.wsd{word-spacing:2.550426pt;}
.wsa8{word-spacing:2.566368pt;}
.ws12f{word-spacing:2.582323pt;}
.ws43{word-spacing:2.627472pt;}
.ws9b{word-spacing:2.688576pt;}
.ws4e{word-spacing:2.749680pt;}
.wsea{word-spacing:2.810784pt;}
.wsff{word-spacing:2.871888pt;}
.ws82{word-spacing:2.932992pt;}
.ws7f{word-spacing:2.994096pt;}
.ws64{word-spacing:3.055200pt;}
.ws52{word-spacing:3.116304pt;}
.wsb3{word-spacing:3.177408pt;}
.ws2a{word-spacing:3.238512pt;}
.ws26{word-spacing:3.299616pt;}
.wsd6{word-spacing:3.360720pt;}
.ws34{word-spacing:3.421824pt;}
.ws87{word-spacing:3.482928pt;}
.wsbe{word-spacing:3.544032pt;}
.ws75{word-spacing:3.605136pt;}
.ws137{word-spacing:3.647280pt;}
.wsbb{word-spacing:3.666240pt;}
.wsc4{word-spacing:3.727344pt;}
.wsdd{word-spacing:3.788448pt;}
.ws72{word-spacing:3.849552pt;}
.wsb4{word-spacing:3.910656pt;}
.ws32{word-spacing:3.971760pt;}
.ws22{word-spacing:4.032864pt;}
.ws3f{word-spacing:4.093968pt;}
.wsb1{word-spacing:4.155072pt;}
.wse7{word-spacing:4.216176pt;}
.ws5b{word-spacing:4.277280pt;}
.wsbf{word-spacing:4.338384pt;}
.ws18{word-spacing:4.399488pt;}
.wsf0{word-spacing:4.460592pt;}
.wsf5{word-spacing:4.521696pt;}
.ws7a{word-spacing:4.582800pt;}
.wsda{word-spacing:4.643904pt;}
.ws8b{word-spacing:4.705008pt;}
.ws61{word-spacing:4.766112pt;}
.ws9e{word-spacing:4.827216pt;}
.ws25{word-spacing:4.888320pt;}
.ws37{word-spacing:4.949424pt;}
.ws62{word-spacing:5.010528pt;}
.wsc1{word-spacing:5.071632pt;}
.wsa9{word-spacing:5.132736pt;}
.wsf1{word-spacing:5.193840pt;}
.ws113{word-spacing:5.254944pt;}
.wsa{word-spacing:5.313387pt;}
.wse1{word-spacing:5.316048pt;}
.ws17{word-spacing:5.377152pt;}
.ws23{word-spacing:5.438256pt;}
.ws27{word-spacing:5.499360pt;}
.ws7b{word-spacing:5.560464pt;}
.ws9c{word-spacing:5.621568pt;}
.ws8{word-spacing:5.632190pt;}
.wsbd{word-spacing:5.682672pt;}
.ws89{word-spacing:5.743776pt;}
.ws66{word-spacing:5.804880pt;}
.ws9d{word-spacing:5.865984pt;}
.ws90{word-spacing:5.927088pt;}
.ws48{word-spacing:5.988192pt;}
.wsb{word-spacing:6.004127pt;}
.wscb{word-spacing:6.049296pt;}
.ws5c{word-spacing:6.110400pt;}
.ws55{word-spacing:6.171504pt;}
.ws2f{word-spacing:6.232608pt;}
.ws85{word-spacing:6.293712pt;}
.wsf2{word-spacing:6.354816pt;}
.ws36{word-spacing:6.415920pt;}
.ws84{word-spacing:6.477024pt;}
.wsce{word-spacing:6.538128pt;}
.wsc8{word-spacing:6.599232pt;}
.wse0{word-spacing:6.660336pt;}
.ws10a{word-spacing:6.721440pt;}
.ws138{word-spacing:6.723408pt;}
.ws39{word-spacing:6.782544pt;}
.wsee{word-spacing:6.843648pt;}
.ws30{word-spacing:6.904752pt;}
.ws2c{word-spacing:6.965856pt;}
.ws96{word-spacing:7.026960pt;}
.ws86{word-spacing:7.088064pt;}
.ws58{word-spacing:7.149168pt;}
.ws3d{word-spacing:7.210272pt;}
.ws3b{word-spacing:7.271376pt;}
.ws10b{word-spacing:7.332480pt;}
.wsb9{word-spacing:7.393584pt;}
.ws70{word-spacing:7.454688pt;}
.wsc3{word-spacing:7.515792pt;}
.ws4d{word-spacing:7.576896pt;}
.wsf9{word-spacing:7.638000pt;}
.wsca{word-spacing:7.699104pt;}
.ws7d{word-spacing:7.760208pt;}
.ws50{word-spacing:7.821312pt;}
.ws29{word-spacing:7.882416pt;}
.ws122{word-spacing:7.943520pt;}
.ws35{word-spacing:8.004624pt;}
.ws54{word-spacing:8.065728pt;}
.ws3a{word-spacing:8.126832pt;}
.ws28{word-spacing:8.187936pt;}
.ws100{word-spacing:8.249040pt;}
.wsd4{word-spacing:8.310144pt;}
.ws67{word-spacing:8.371248pt;}
.wsc2{word-spacing:8.432352pt;}
.ws59{word-spacing:8.493456pt;}
.ws46{word-spacing:8.554560pt;}
.wsa3{word-spacing:8.615664pt;}
.wsba{word-spacing:8.676768pt;}
.wsa5{word-spacing:8.737872pt;}
.wsd1{word-spacing:8.798976pt;}
.wsa4{word-spacing:8.860080pt;}
.wsb2{word-spacing:8.921184pt;}
.wsbc{word-spacing:8.982288pt;}
.wsfb{word-spacing:9.043392pt;}
.ws108{word-spacing:9.104496pt;}
.wse4{word-spacing:9.165600pt;}
.wscd{word-spacing:9.226704pt;}
.wsd2{word-spacing:9.348912pt;}
.ws127{word-spacing:9.410016pt;}
.ws6c{word-spacing:9.471120pt;}
.ws136{word-spacing:9.593328pt;}
.ws5d{word-spacing:9.654432pt;}
.ws131{word-spacing:9.715536pt;}
.wsaf{word-spacing:9.776640pt;}
.wsc9{word-spacing:9.837744pt;}
.ws73{word-spacing:9.898848pt;}
.wsb0{word-spacing:9.959952pt;}
.ws12b{word-spacing:10.021056pt;}
.ws119{word-spacing:10.082160pt;}
.ws109{word-spacing:10.143264pt;}
.ws8d{word-spacing:10.204368pt;}
.ws60{word-spacing:10.265472pt;}
.ws11c{word-spacing:10.387680pt;}
.ws129{word-spacing:10.448784pt;}
.ws104{word-spacing:10.509888pt;}
.ws11d{word-spacing:10.570992pt;}
.wsec{word-spacing:10.632096pt;}
.ws125{word-spacing:10.754304pt;}
.ws120{word-spacing:10.876512pt;}
.ws114{word-spacing:10.937616pt;}
.ws107{word-spacing:10.998720pt;}
.wsa1{word-spacing:11.059824pt;}
.ws132{word-spacing:11.120928pt;}
.ws12a{word-spacing:11.182032pt;}
.ws69{word-spacing:11.304240pt;}
.ws12e{word-spacing:11.365344pt;}
.ws78{word-spacing:11.426448pt;}
.ws93{word-spacing:11.548656pt;}
.wsd0{word-spacing:11.609760pt;}
.ws102{word-spacing:11.731968pt;}
.wse5{word-spacing:11.793072pt;}
.wscc{word-spacing:11.854176pt;}
.ws3c{word-spacing:11.976384pt;}
.ws111{word-spacing:12.220800pt;}
.ws128{word-spacing:12.343008pt;}
.ws123{word-spacing:12.404112pt;}
.ws8c{word-spacing:12.648528pt;}
.ws8f{word-spacing:12.770736pt;}
.ws80{word-spacing:12.954048pt;}
.wsae{word-spacing:13.076256pt;}
.ws121{word-spacing:13.137360pt;}
.ws91{word-spacing:13.320672pt;}
.ws11a{word-spacing:13.687296pt;}
.ws118{word-spacing:13.870608pt;}
.ws110{word-spacing:14.115024pt;}
.ws11e{word-spacing:14.298336pt;}
.ws103{word-spacing:14.359440pt;}
.ws11b{word-spacing:14.481648pt;}
.wsf3{word-spacing:14.542752pt;}
.ws11f{word-spacing:14.603856pt;}
.ws68{word-spacing:14.664960pt;}
.ws0{word-spacing:15.005042pt;}
.ws81{word-spacing:15.398208pt;}
.ws124{word-spacing:15.459312pt;}
.ws8e{word-spacing:15.581520pt;}
.wscf{word-spacing:15.825936pt;}
.ws130{word-spacing:15.887040pt;}
.ws112{word-spacing:16.253664pt;}
.ws105{word-spacing:17.199459pt;}
.wsa7{word-spacing:17.292432pt;}
.ws6b{word-spacing:17.659056pt;}
.ws3{word-spacing:17.693578pt;}
.ws94{word-spacing:18.697824pt;}
.ws76{word-spacing:19.675488pt;}
.ws12d{word-spacing:20.408736pt;}
.wsa2{word-spacing:22.669584pt;}
.wsab{word-spacing:26.274720pt;}
.ws95{word-spacing:32.996160pt;}
.wsd5{word-spacing:36.723504pt;}
.wsc7{word-spacing:44.605920pt;}
.ws135{word-spacing:46.377936pt;}
.wse3{word-spacing:47.294496pt;}
.wsad{word-spacing:64.525824pt;}
.ws16{word-spacing:69.005059pt;}
.ws106{word-spacing:836.034896pt;}
.ws134{word-spacing:837.101563pt;}
.wse8{word-spacing:838.328229pt;}
._33{margin-left:-30.552000pt;}
._3c{margin-left:-22.058544pt;}
._4{margin-left:-10.099701pt;}
._36{margin-left:-8.371248pt;}
._2{margin-left:-7.345237pt;}
._8{margin-left:-5.738458pt;}
._1b{margin-left:-4.827216pt;}
._5{margin-left:-3.803328pt;}
._a{margin-left:-2.789536pt;}
._1{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._39{width:2.688576pt;}
._38{width:3.605136pt;}
._3a{width:5.104843pt;}
._3b{width:6.187984pt;}
._37{width:7.699104pt;}
._35{width:11.642704pt;}
._2c{width:13.447664pt;}
._e{width:14.432310pt;}
._2d{width:15.414163pt;}
._6{width:16.444940pt;}
._2e{width:17.613907pt;}
._b{width:18.592605pt;}
._18{width:19.614384pt;}
._9{width:20.505424pt;}
._7{width:21.625484pt;}
._f{width:22.730688pt;}
._c{width:23.989949pt;}
._16{width:25.330000pt;}
._15{width:26.796496pt;}
._25{width:27.896368pt;}
._3{width:28.921872pt;}
._14{width:30.261360pt;}
._13{width:31.346352pt;}
._1a{width:32.507328pt;}
._19{width:33.978608pt;}
._21{width:35.134800pt;}
._34{width:36.112464pt;}
._1e{width:37.058279pt;}
._11{width:38.251104pt;}
._22{width:39.356308pt;}
._12{width:40.389744pt;}
._26{width:41.611824pt;}
._10{width:43.139424pt;}
._2a{width:44.088928pt;}
._17{width:45.216960pt;}
._23{width:46.377936pt;}
._2b{width:47.538912pt;}
._30{width:48.855040pt;}
._31{width:50.293376pt;}
._24{width:51.327360pt;}
._d{width:53.346402pt;}
._20{width:56.065312pt;}
._1f{width:57.926592pt;}
._1c{width:59.881920pt;}
._1d{width:61.104000pt;}
._29{width:62.570496pt;}
._28{width:66.297840pt;}
._2f{width:69.074133pt;}
._27{width:70.025184pt;}
._32{width:124.224432pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:36.718667pt;}
.y5e{bottom:36.970667pt;}
.y55{bottom:38.686667pt;}
.y10f{bottom:79.750667pt;}
.y26{bottom:80.272000pt;}
.y53{bottom:80.652000pt;}
.yeb{bottom:81.256000pt;}
.yc5{bottom:88.398667pt;}
.y5d{bottom:89.300000pt;}
.y14a{bottom:91.241333pt;}
.yfa{bottom:96.129333pt;}
.ya4{bottom:96.233333pt;}
.yba{bottom:97.134667pt;}
.y89{bottom:100.014667pt;}
.y25{bottom:100.536000pt;}
.y52{bottom:100.916000pt;}
.yea{bottom:101.520000pt;}
.yc4{bottom:108.662667pt;}
.y5c{bottom:109.564000pt;}
.y149{bottom:111.505333pt;}
.yf9{bottom:116.393333pt;}
.ya3{bottom:116.497333pt;}
.yb9{bottom:117.398667pt;}
.y88{bottom:120.278667pt;}
.y24{bottom:120.800000pt;}
.y51{bottom:121.180000pt;}
.ye9{bottom:121.784000pt;}
.yc3{bottom:128.926667pt;}
.yce{bottom:129.828000pt;}
.y148{bottom:131.769333pt;}
.yf8{bottom:136.657333pt;}
.ya2{bottom:136.761333pt;}
.y11d{bottom:137.558667pt;}
.yb8{bottom:137.662667pt;}
.y87{bottom:140.542667pt;}
.y23{bottom:141.064000pt;}
.y50{bottom:141.444000pt;}
.ye8{bottom:142.049333pt;}
.y5b{bottom:145.768000pt;}
.yc2{bottom:149.190667pt;}
.ycd{bottom:150.092000pt;}
.y147{bottom:152.033333pt;}
.yf7{bottom:156.921333pt;}
.ya1{bottom:157.025333pt;}
.y11c{bottom:157.822667pt;}
.yb7{bottom:157.926667pt;}
.y86{bottom:160.806667pt;}
.y22{bottom:161.328000pt;}
.y4f{bottom:161.708000pt;}
.ye7{bottom:162.313333pt;}
.y5a{bottom:166.032000pt;}
.yc1{bottom:169.454667pt;}
.ycc{bottom:170.356000pt;}
.y146{bottom:172.297333pt;}
.yf6{bottom:177.185333pt;}
.ya0{bottom:177.289333pt;}
.y11b{bottom:178.086667pt;}
.yb6{bottom:178.190667pt;}
.y85{bottom:181.070667pt;}
.y21{bottom:181.592000pt;}
.y4e{bottom:181.972000pt;}
.ye6{bottom:182.577333pt;}
.y59{bottom:186.296000pt;}
.yc0{bottom:189.718667pt;}
.ycb{bottom:190.620000pt;}
.y145{bottom:192.562667pt;}
.yf5{bottom:197.449333pt;}
.y9f{bottom:197.553333pt;}
.y11a{bottom:198.350667pt;}
.yb5{bottom:198.454667pt;}
.y84{bottom:201.334667pt;}
.y20{bottom:201.857333pt;}
.y4d{bottom:202.236000pt;}
.ye5{bottom:202.841333pt;}
.y58{bottom:206.560000pt;}
.ybf{bottom:209.982667pt;}
.yca{bottom:210.884000pt;}
.y144{bottom:212.826667pt;}
.yf4{bottom:217.713333pt;}
.y9e{bottom:217.817333pt;}
.y119{bottom:218.614667pt;}
.yb4{bottom:218.718667pt;}
.y83{bottom:221.598667pt;}
.y1f{bottom:222.121333pt;}
.y4c{bottom:222.500000pt;}
.ye4{bottom:223.105333pt;}
.y57{bottom:226.824000pt;}
.ybe{bottom:230.246667pt;}
.yc9{bottom:231.148000pt;}
.y143{bottom:233.090667pt;}
.yf3{bottom:237.978667pt;}
.y9d{bottom:238.081333pt;}
.y118{bottom:238.880000pt;}
.yb3{bottom:238.982667pt;}
.y82{bottom:241.864000pt;}
.y1e{bottom:242.385333pt;}
.y4b{bottom:242.764000pt;}
.ye3{bottom:243.369333pt;}
.y56{bottom:247.088000pt;}
.ybd{bottom:250.510667pt;}
.yc8{bottom:251.412000pt;}
.y142{bottom:253.354667pt;}
.yf2{bottom:258.242667pt;}
.y9c{bottom:258.345333pt;}
.y117{bottom:259.144000pt;}
.yb2{bottom:259.246667pt;}
.y81{bottom:262.128000pt;}
.y4a{bottom:263.029333pt;}
.y14b{bottom:263.105333pt;}
.ye2{bottom:263.633333pt;}
.ybc{bottom:270.774667pt;}
.yc7{bottom:271.676000pt;}
.y141{bottom:273.618667pt;}
.yf1{bottom:278.506667pt;}
.y9b{bottom:278.609333pt;}
.y116{bottom:279.408000pt;}
.yb1{bottom:279.510667pt;}
.y80{bottom:282.392000pt;}
.y49{bottom:283.293333pt;}
.ye1{bottom:283.897333pt;}
.y1d{bottom:287.888000pt;}
.y10e{bottom:289.298667pt;}
.ybb{bottom:291.038667pt;}
.yc6{bottom:291.940000pt;}
.y140{bottom:293.882667pt;}
.y111{bottom:294.388000pt;}
.y11f{bottom:294.618667pt;}
.yf0{bottom:298.770667pt;}
.y9a{bottom:298.874667pt;}
.y115{bottom:299.672000pt;}
.yb0{bottom:299.776000pt;}
.y7f{bottom:302.656000pt;}
.y48{bottom:303.557333pt;}
.ye0{bottom:304.161333pt;}
.y10d{bottom:309.562667pt;}
.y103{bottom:311.304000pt;}
.y10c{bottom:312.204000pt;}
.y13f{bottom:314.146667pt;}
.y110{bottom:314.652000pt;}
.y11e{bottom:314.882667pt;}
.y99{bottom:319.138667pt;}
.y114{bottom:319.936000pt;}
.yaf{bottom:320.040000pt;}
.y7e{bottom:322.920000pt;}
.y47{bottom:323.821333pt;}
.ydf{bottom:324.425333pt;}
.y1c{bottom:324.486667pt;}
.y102{bottom:331.568000pt;}
.y10b{bottom:332.469333pt;}
.y13e{bottom:334.410667pt;}
.yef{bottom:335.876000pt;}
.y98{bottom:339.402667pt;}
.y113{bottom:340.200000pt;}
.yae{bottom:340.304000pt;}
.y1b{bottom:340.997333pt;}
.y7d{bottom:343.184000pt;}
.y46{bottom:344.085333pt;}
.yde{bottom:344.689333pt;}
.y101{bottom:351.832000pt;}
.y10a{bottom:352.733333pt;}
.y1a{bottom:353.321333pt;}
.y13d{bottom:354.674667pt;}
.yee{bottom:356.140000pt;}
.y97{bottom:359.666667pt;}
.yad{bottom:360.568000pt;}
.y7c{bottom:363.448000pt;}
.y45{bottom:364.349333pt;}
.ydd{bottom:364.953333pt;}
.y112{bottom:369.762667pt;}
.y100{bottom:372.096000pt;}
.y19{bottom:372.836000pt;}
.y109{bottom:372.997333pt;}
.y13c{bottom:374.938667pt;}
.yed{bottom:376.404000pt;}
.y96{bottom:379.930667pt;}
.yac{bottom:380.832000pt;}
.y7b{bottom:383.712000pt;}
.y44{bottom:384.613333pt;}
.ydc{bottom:385.217333pt;}
.yff{bottom:392.360000pt;}
.y108{bottom:393.261333pt;}
.y18{bottom:394.334667pt;}
.y13b{bottom:395.202667pt;}
.y95{bottom:400.194667pt;}
.yab{bottom:401.096000pt;}
.y7a{bottom:403.976000pt;}
.y43{bottom:404.877333pt;}
.ydb{bottom:405.482667pt;}
.yec{bottom:405.966667pt;}
.yfe{bottom:412.624000pt;}
.y107{bottom:413.525333pt;}
.y13a{bottom:415.466667pt;}
.y94{bottom:420.458667pt;}
.yaa{bottom:421.360000pt;}
.y79{bottom:424.240000pt;}
.y42{bottom:425.141333pt;}
.yda{bottom:425.746667pt;}
.y17{bottom:425.804000pt;}
.yfd{bottom:432.888000pt;}
.y106{bottom:433.789333pt;}
.y139{bottom:435.730667pt;}
.y93{bottom:440.722667pt;}
.ya9{bottom:441.624000pt;}
.y78{bottom:444.504000pt;}
.y16{bottom:445.317333pt;}
.y41{bottom:445.405333pt;}
.yd9{bottom:446.010667pt;}
.yfc{bottom:453.152000pt;}
.y105{bottom:454.053333pt;}
.y138{bottom:455.994667pt;}
.y92{bottom:460.986667pt;}
.ya8{bottom:461.888000pt;}
.y77{bottom:464.768000pt;}
.y15{bottom:464.830667pt;}
.y40{bottom:465.669333pt;}
.yd8{bottom:466.274667pt;}
.yfb{bottom:473.416000pt;}
.y104{bottom:474.317333pt;}
.y137{bottom:476.260000pt;}
.y91{bottom:481.250667pt;}
.ya7{bottom:482.152000pt;}
.y14{bottom:484.344000pt;}
.y76{bottom:485.032000pt;}
.y3f{bottom:485.933333pt;}
.yd7{bottom:486.538667pt;}
.y136{bottom:496.524000pt;}
.y90{bottom:501.514667pt;}
.ya6{bottom:502.416000pt;}
.y13{bottom:503.858667pt;}
.y75{bottom:505.296000pt;}
.y3e{bottom:506.197333pt;}
.yd6{bottom:506.802667pt;}
.y135{bottom:516.788000pt;}
.y8f{bottom:521.778667pt;}
.ya5{bottom:522.680000pt;}
.y12{bottom:523.372000pt;}
.y74{bottom:525.561333pt;}
.y3d{bottom:526.461333pt;}
.yd5{bottom:527.066667pt;}
.y134{bottom:537.052000pt;}
.y11{bottom:542.885333pt;}
.y73{bottom:545.825333pt;}
.y3c{bottom:546.726667pt;}
.yd4{bottom:547.330667pt;}
.y133{bottom:557.316000pt;}
.y8e{bottom:558.885333pt;}
.y10{bottom:562.398667pt;}
.y72{bottom:566.089333pt;}
.y3b{bottom:566.990667pt;}
.yd3{bottom:567.594667pt;}
.y132{bottom:577.580000pt;}
.y8d{bottom:579.149333pt;}
.yf{bottom:581.912000pt;}
.y71{bottom:586.353333pt;}
.y3a{bottom:587.254667pt;}
.yd2{bottom:587.858667pt;}
.y131{bottom:597.844000pt;}
.y8c{bottom:599.413333pt;}
.ye{bottom:601.425333pt;}
.y70{bottom:606.617333pt;}
.y39{bottom:607.518667pt;}
.yd1{bottom:608.122667pt;}
.y130{bottom:618.108000pt;}
.yd{bottom:620.940000pt;}
.y6f{bottom:626.881333pt;}
.y38{bottom:627.782667pt;}
.yd0{bottom:628.386667pt;}
.y8b{bottom:628.976000pt;}
.y12f{bottom:638.372000pt;}
.yc{bottom:640.453333pt;}
.y6e{bottom:647.145333pt;}
.ycf{bottom:647.749333pt;}
.y37{bottom:648.046667pt;}
.y8a{bottom:648.714667pt;}
.y12e{bottom:658.636000pt;}
.yb{bottom:659.966667pt;}
.y6d{bottom:667.409333pt;}
.y36{bottom:668.310667pt;}
.y12d{bottom:678.900000pt;}
.ya{bottom:679.480000pt;}
.y6c{bottom:687.673333pt;}
.y35{bottom:688.574667pt;}
.y9{bottom:698.993333pt;}
.y12c{bottom:699.164000pt;}
.y6b{bottom:707.937333pt;}
.y34{bottom:708.838667pt;}
.y8{bottom:718.508000pt;}
.y12b{bottom:719.428000pt;}
.y6a{bottom:728.201333pt;}
.y33{bottom:729.102667pt;}
.y7{bottom:738.021333pt;}
.y12a{bottom:739.693333pt;}
.y69{bottom:748.465333pt;}
.y32{bottom:749.366667pt;}
.y6{bottom:757.534667pt;}
.y129{bottom:759.957333pt;}
.y68{bottom:768.729333pt;}
.y31{bottom:769.630667pt;}
.y128{bottom:780.221333pt;}
.y67{bottom:788.993333pt;}
.y30{bottom:789.894667pt;}
.y127{bottom:800.485333pt;}
.y66{bottom:809.258667pt;}
.y2f{bottom:810.160000pt;}
.y5{bottom:815.970667pt;}
.y126{bottom:820.749333pt;}
.y65{bottom:829.522667pt;}
.y2e{bottom:830.424000pt;}
.y125{bottom:841.013333pt;}
.y64{bottom:849.786667pt;}
.y2d{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y124{bottom:861.277333pt;}
.y63{bottom:870.050667pt;}
.y2c{bottom:870.952000pt;}
.y123{bottom:881.541333pt;}
.y3{bottom:885.776000pt;}
.y62{bottom:890.314667pt;}
.y2b{bottom:891.216000pt;}
.y122{bottom:901.805333pt;}
.y61{bottom:910.578667pt;}
.y2a{bottom:911.480000pt;}
.y121{bottom:922.069333pt;}
.y60{bottom:930.842667pt;}
.y29{bottom:931.744000pt;}
.y5f{bottom:951.106667pt;}
.y120{bottom:951.632000pt;}
.y28{bottom:952.008000pt;}
.y14c{bottom:952.084000pt;}
.y2{bottom:979.312000pt;}
.y27{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.715502pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.hc{height:42.343552pt;}
.h3{height:47.523004pt;}
.h7{height:47.730226pt;}
.hd{height:55.085344pt;}
.he{height:55.362219pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:112.453333pt;}
.x13{left:113.385333pt;}
.x24{left:123.574667pt;}
.x3{left:128.325333pt;}
.x1a{left:134.286667pt;}
.x14{left:136.062667pt;}
.x22{left:139.294667pt;}
.x6{left:158.261333pt;}
.x23{left:161.004000pt;}
.x11{left:162.052000pt;}
.x1c{left:169.769333pt;}
.x1b{left:173.160000pt;}
.x1e{left:179.088000pt;}
.x25{left:181.336000pt;}
.x8{left:196.566667pt;}
.x9{left:209.790667pt;}
.xa{left:221.600000pt;}
.x26{left:228.004000pt;}
.x29{left:265.765333pt;}
.x4{left:294.888000pt;}
.x20{left:308.896000pt;}
.xb{left:312.328000pt;}
.x5{left:313.706667pt;}
.xc{left:316.750667pt;}
.x16{left:359.442667pt;}
.x7{left:364.560000pt;}
.x12{left:384.740000pt;}
.x1f{left:397.898667pt;}
.x17{left:402.290667pt;}
.x1d{left:410.720000pt;}
.x15{left:412.752000pt;}
.xd{left:419.938667pt;}
.xe{left:427.324000pt;}
.x19{left:435.429333pt;}
.x2a{left:463.053333pt;}
.x2b{left:488.185333pt;}
.x2{left:510.021333pt;}
.x18{left:513.840000pt;}
.x2c{left:526.948000pt;}
.xf{left:554.000000pt;}
.x10{left:561.386667pt;}
.x28{left:614.262667pt;}
.x27{left:615.537333pt;}
.x1{left:618.953333pt;}
}




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