
    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_3fb703ba6f9699dd6eb787e4.woff2')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_f910e995b5bc08f51ea62991.woff2')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_d0fda60e46150a49995c1701.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_1565b839b82219c4fb0ca0b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c54fa951d28da4e6257c38df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.628000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m1d{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);}
.m3{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);}
.m27{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);}
.m9{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);}
.mb{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);}
.m23{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);}
.m21{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);}
.mc{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);}
.m15{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);}
.m6{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);}
.m28{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);}
.m7{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);}
.ma{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);}
.m11{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);}
.m26{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);}
.m1b{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);}
.me{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);}
.m1c{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);}
.m1a{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);}
.mf{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);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m20{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);}
.m8{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);}
.m2{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);}
.m19{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);}
.m10{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);}
.m25{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);}
.m1e{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);}
.m24{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m22{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);}
.m17{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);}
.m14{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);}
.m12{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:1.374840px;}
.ls6{letter-spacing:1.443582px;}
.lsa{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls7{letter-spacing:16.841790px;}
.ls5{letter-spacing:17.185500px;}
.ls9{letter-spacing:17.322984px;}
.lsb{letter-spacing:17.391726px;}
.lsc{letter-spacing:17.460468px;}
.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;}
}
.ws7d{word-spacing:-17.185500px;}
.wsda{word-spacing:-3.780810px;}
.ws1d{word-spacing:-3.574584px;}
.wsd7{word-spacing:-3.505842px;}
.ws4c{word-spacing:-3.437100px;}
.wse2{word-spacing:-3.368358px;}
.ws93{word-spacing:-3.299616px;}
.wse3{word-spacing:-3.230874px;}
.wsdb{word-spacing:-3.162132px;}
.ws30{word-spacing:-3.093390px;}
.ws10{word-spacing:-2.988780px;}
.wsd0{word-spacing:-2.955906px;}
.ws9a{word-spacing:-2.887164px;}
.wscb{word-spacing:-2.749680px;}
.ws70{word-spacing:-2.680938px;}
.ws2f{word-spacing:-2.612196px;}
.ws43{word-spacing:-2.543454px;}
.ws3e{word-spacing:-2.474712px;}
.wse4{word-spacing:-2.337228px;}
.wsa{word-spacing:-2.211697px;}
.wse0{word-spacing:-2.199744px;}
.ws1b{word-spacing:-2.131002px;}
.ws48{word-spacing:-2.062260px;}
.ws67{word-spacing:-1.993518px;}
.wsc1{word-spacing:-1.924776px;}
.ws45{word-spacing:-1.787292px;}
.wsc6{word-spacing:-1.718550px;}
.wse5{word-spacing:-1.649808px;}
.ws8e{word-spacing:-1.581066px;}
.wsb1{word-spacing:-1.512324px;}
.wsaa{word-spacing:-1.443582px;}
.wsce{word-spacing:-1.374840px;}
.ws71{word-spacing:-1.306098px;}
.ws98{word-spacing:-1.237356px;}
.ws6a{word-spacing:-1.168614px;}
.ws82{word-spacing:-1.099872px;}
.ws6b{word-spacing:-1.031130px;}
.ws17{word-spacing:-0.962388px;}
.ws8a{word-spacing:-0.893646px;}
.wsd6{word-spacing:-0.756162px;}
.ws22{word-spacing:-0.687420px;}
.ws89{word-spacing:-0.618678px;}
.wscd{word-spacing:-0.549936px;}
.wsdc{word-spacing:-0.481194px;}
.ws44{word-spacing:-0.412452px;}
.ws32{word-spacing:-0.343710px;}
.ws16{word-spacing:-0.274968px;}
.wsd{word-spacing:-0.239102px;}
.ws2a{word-spacing:-0.206226px;}
.ws5{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.137484px;}
.wsc8{word-spacing:-0.107597px;}
.ws24{word-spacing:-0.068742px;}
.wse{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.ws18{word-spacing:0.068742px;}
.ws11{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.ws14{word-spacing:0.137484px;}
.ws2d{word-spacing:0.206226px;}
.ws2e{word-spacing:0.274968px;}
.ws8{word-spacing:0.298878px;}
.ws26{word-spacing:0.343710px;}
.wsf{word-spacing:0.358654px;}
.ws4d{word-spacing:0.412452px;}
.ws3a{word-spacing:0.481194px;}
.wse7{word-spacing:0.549936px;}
.ws1e{word-spacing:0.618678px;}
.ws86{word-spacing:0.687420px;}
.wsa5{word-spacing:0.756162px;}
.ws41{word-spacing:0.824904px;}
.wse1{word-spacing:0.893646px;}
.ws74{word-spacing:0.962388px;}
.ws1c{word-spacing:1.031130px;}
.ws9{word-spacing:1.075961px;}
.ws31{word-spacing:1.099872px;}
.ws62{word-spacing:1.168614px;}
.ws4{word-spacing:1.195512px;}
.wscf{word-spacing:1.237356px;}
.wsbf{word-spacing:1.306098px;}
.ws97{word-spacing:1.374840px;}
.ws51{word-spacing:1.443582px;}
.wsa9{word-spacing:1.581066px;}
.ws2c{word-spacing:1.649808px;}
.wsab{word-spacing:1.718550px;}
.ws8b{word-spacing:1.787292px;}
.ws99{word-spacing:1.924776px;}
.ws5f{word-spacing:1.993518px;}
.ws1a{word-spacing:2.062260px;}
.ws52{word-spacing:2.131002px;}
.wsaf{word-spacing:2.199744px;}
.ws4a{word-spacing:2.268486px;}
.ws8d{word-spacing:2.337228px;}
.ws46{word-spacing:2.405970px;}
.ws28{word-spacing:2.474712px;}
.ws55{word-spacing:2.543454px;}
.ws29{word-spacing:2.612196px;}
.ws66{word-spacing:2.749680px;}
.ws6c{word-spacing:2.818422px;}
.wsd8{word-spacing:2.887164px;}
.ws37{word-spacing:2.955906px;}
.wsac{word-spacing:3.024648px;}
.wsb9{word-spacing:3.093390px;}
.ws72{word-spacing:3.162132px;}
.ws5a{word-spacing:3.230874px;}
.ws5d{word-spacing:3.299616px;}
.ws85{word-spacing:3.368358px;}
.ws40{word-spacing:3.437100px;}
.ws56{word-spacing:3.505842px;}
.ws6f{word-spacing:3.712068px;}
.wsb6{word-spacing:3.780810px;}
.ws7{word-spacing:3.825638px;}
.ws42{word-spacing:3.849552px;}
.ws87{word-spacing:4.055778px;}
.ws5c{word-spacing:4.124520px;}
.wsa8{word-spacing:4.193262px;}
.ws4e{word-spacing:4.262004px;}
.ws25{word-spacing:4.330746px;}
.ws73{word-spacing:4.399488px;}
.wsc{word-spacing:4.423394px;}
.ws54{word-spacing:4.468230px;}
.ws20{word-spacing:4.536972px;}
.wsae{word-spacing:4.605714px;}
.wse6{word-spacing:4.674456px;}
.ws6{word-spacing:4.722272px;}
.ws9f{word-spacing:4.743198px;}
.ws13{word-spacing:4.811940px;}
.ws50{word-spacing:4.949424px;}
.ws5e{word-spacing:5.018166px;}
.ws69{word-spacing:5.086908px;}
.ws47{word-spacing:5.155650px;}
.ws6e{word-spacing:5.224392px;}
.wsc2{word-spacing:5.293134px;}
.wsdd{word-spacing:5.361876px;}
.wsbb{word-spacing:5.430618px;}
.ws4b{word-spacing:5.499360px;}
.wsa0{word-spacing:5.568102px;}
.ws53{word-spacing:5.636844px;}
.ws3c{word-spacing:5.705586px;}
.ws88{word-spacing:5.774328px;}
.wsa3{word-spacing:5.843070px;}
.ws27{word-spacing:5.911812px;}
.wsd9{word-spacing:5.980554px;}
.ws34{word-spacing:6.049296px;}
.ws49{word-spacing:6.118038px;}
.ws38{word-spacing:6.186780px;}
.ws1f{word-spacing:6.255522px;}
.wsa1{word-spacing:6.324264px;}
.ws57{word-spacing:6.393006px;}
.ws21{word-spacing:6.461748px;}
.ws84{word-spacing:6.530490px;}
.ws81{word-spacing:6.599232px;}
.ws19{word-spacing:6.667974px;}
.ws65{word-spacing:6.736716px;}
.wse9{word-spacing:6.805458px;}
.wsc5{word-spacing:6.874200px;}
.ws6d{word-spacing:6.942942px;}
.wsd1{word-spacing:7.011684px;}
.ws80{word-spacing:7.080426px;}
.wsc7{word-spacing:7.149168px;}
.ws3b{word-spacing:7.217910px;}
.ws83{word-spacing:7.286652px;}
.wse8{word-spacing:7.355394px;}
.wsa2{word-spacing:7.492878px;}
.ws3f{word-spacing:7.561620px;}
.ws3d{word-spacing:7.630362px;}
.ws78{word-spacing:7.699104px;}
.ws64{word-spacing:7.767846px;}
.ws60{word-spacing:7.836588px;}
.wsb3{word-spacing:7.905330px;}
.ws36{word-spacing:7.974072px;}
.wsc4{word-spacing:8.042814px;}
.ws39{word-spacing:8.180298px;}
.ws7a{word-spacing:8.249040px;}
.wsea{word-spacing:8.317782px;}
.ws59{word-spacing:8.386524px;}
.ws9b{word-spacing:8.524008px;}
.ws8c{word-spacing:8.592750px;}
.wsbc{word-spacing:8.730234px;}
.ws5b{word-spacing:8.798976px;}
.ws9c{word-spacing:8.867718px;}
.ws23{word-spacing:8.936460px;}
.ws33{word-spacing:9.005202px;}
.ws9e{word-spacing:9.073944px;}
.ws9d{word-spacing:9.142686px;}
.wsc0{word-spacing:9.211428px;}
.ws58{word-spacing:9.280170px;}
.ws2b{word-spacing:9.348912px;}
.ws35{word-spacing:9.417654px;}
.ws7b{word-spacing:9.555138px;}
.wsd3{word-spacing:9.623880px;}
.ws63{word-spacing:9.761364px;}
.wsa7{word-spacing:9.967590px;}
.wsb0{word-spacing:10.036332px;}
.ws79{word-spacing:10.173816px;}
.ws94{word-spacing:10.242558px;}
.ws95{word-spacing:10.380042px;}
.wsbe{word-spacing:10.448784px;}
.ws7f{word-spacing:10.586268px;}
.ws7e{word-spacing:10.655010px;}
.ws7c{word-spacing:11.067462px;}
.wsd2{word-spacing:11.204946px;}
.ws61{word-spacing:11.273688px;}
.ws68{word-spacing:11.411172px;}
.wsb7{word-spacing:11.479914px;}
.wsd5{word-spacing:11.548656px;}
.ws96{word-spacing:11.617398px;}
.wsa6{word-spacing:11.754882px;}
.wsb2{word-spacing:11.961108px;}
.ws4f{word-spacing:12.029850px;}
.wsb8{word-spacing:12.992238px;}
.wsb5{word-spacing:13.267206px;}
.wsa4{word-spacing:13.473432px;}
.ws91{word-spacing:14.642046px;}
.wsba{word-spacing:14.985756px;}
.wscc{word-spacing:16.085628px;}
.ws90{word-spacing:16.841790px;}
.ws0{word-spacing:16.880672px;}
.ws8f{word-spacing:17.116758px;}
.wsb4{word-spacing:17.460468px;}
.wsad{word-spacing:19.349392px;}
.ws3{word-spacing:22.535401px;}
.ws92{word-spacing:26.809380px;}
.wsc3{word-spacing:27.771768px;}
.ws77{word-spacing:31.346352px;}
.wsdf{word-spacing:35.677098px;}
.ws75{word-spacing:50.181660px;}
.wsca{word-spacing:50.250402px;}
.wsd4{word-spacing:52.931340px;}
.ws76{word-spacing:66.542256px;}
.ws12{word-spacing:77.630692px;}
.wsc9{word-spacing:109.712232px;}
.wsbd{word-spacing:461.602530px;}
.wsde{word-spacing:943.119258px;}
._1c{margin-left:-8.730234px;}
._4{margin-left:-6.998538px;}
._6{margin-left:-5.444359px;}
._2{margin-left:-4.131696px;}
._3{margin-left:-2.582310px;}
._1{margin-left:-1.549386px;}
._0{width:1.386797px;}
._3a{width:3.061710px;}
._39{width:12.962352px;}
._10{width:14.023368px;}
._5{width:15.123227px;}
._c{width:16.236349px;}
._d{width:17.413060px;}
._7{width:19.125812px;}
._8{width:20.672798px;}
._11{width:22.079923px;}
._15{width:24.218101px;}
._f{width:25.852374px;}
._19{width:27.485458px;}
._16{width:28.633734px;}
._9{width:30.425780px;}
._a{width:31.731284px;}
._e{width:34.371000px;}
._14{width:35.525873px;}
._27{width:37.189422px;}
._17{width:38.495520px;}
._13{width:39.878719px;}
._1e{width:41.795136px;}
._30{width:43.857396px;}
._1a{width:45.369720px;}
._12{width:46.882044px;}
._35{width:48.845676px;}
._22{width:49.945548px;}
._25{width:52.106436px;}
._23{width:54.031212px;}
._b{width:59.424126px;}
._26{width:61.799058px;}
._18{width:67.367160px;}
._1b{width:70.116840px;}
._24{width:77.708400px;}
._1d{width:83.727756px;}
._20{width:84.901752px;}
._36{width:119.443710px;}
._37{width:121.641660px;}
._31{width:168.869208px;}
._34{width:172.061226px;}
._29{width:175.292100px;}
._1f{width:193.508730px;}
._32{width:230.309616px;}
._21{width:357.664626px;}
._2a{width:376.406688px;}
._2e{width:408.739932px;}
._2d{width:424.862622px;}
._2b{width:461.671272px;}
._38{width:513.227772px;}
._2c{width:621.466536px;}
._33{width:678.046584px;}
._28{width:987.341346px;}
._2f{width:1040.822622px;}
.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;}
.y53{bottom:41.308500px;}
.y9d{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y96{bottom:87.576000px;}
.y9c{bottom:88.590000px;}
.ybf{bottom:90.213000px;}
.y52{bottom:90.733500px;}
.y6f{bottom:92.838000px;}
.y84{bottom:93.852000px;}
.y134{bottom:94.315500px;}
.y140{bottom:95.329500px;}
.y15c{bottom:100.539000px;}
.y16a{bottom:101.553000px;}
.y109{bottom:103.680000px;}
.y10e{bottom:104.694000px;}
.y25{bottom:108.325500px;}
.y95{bottom:110.373000px;}
.y9b{bottom:111.387000px;}
.ybe{bottom:113.010000px;}
.y51{bottom:113.530500px;}
.y6e{bottom:115.635000px;}
.y83{bottom:116.649000px;}
.y133{bottom:117.112500px;}
.y13f{bottom:118.126500px;}
.y15b{bottom:123.336000px;}
.y169{bottom:124.350000px;}
.y108{bottom:126.477000px;}
.y18e{bottom:127.092000px;}
.y10d{bottom:127.491000px;}
.y24{bottom:131.122500px;}
.y94{bottom:133.170000px;}
.y9a{bottom:134.184000px;}
.ybd{bottom:135.807000px;}
.y50{bottom:136.327500px;}
.y6d{bottom:138.432000px;}
.y82{bottom:139.446000px;}
.y132{bottom:139.909500px;}
.y13e{bottom:140.923500px;}
.y15a{bottom:146.133000px;}
.y168{bottom:147.147000px;}
.y107{bottom:149.274000px;}
.y18d{bottom:149.889000px;}
.y10c{bottom:150.288000px;}
.y23{bottom:153.919500px;}
.y93{bottom:155.967000px;}
.y99{bottom:156.981000px;}
.y4f{bottom:159.124500px;}
.y6c{bottom:161.229000px;}
.y81{bottom:162.243000px;}
.y131{bottom:162.706500px;}
.y13d{bottom:163.720500px;}
.y159{bottom:168.931500px;}
.ybc{bottom:169.065000px;}
.y167{bottom:169.945500px;}
.y106{bottom:172.071000px;}
.y18c{bottom:172.686000px;}
.y10b{bottom:173.085000px;}
.y22{bottom:176.716500px;}
.y92{bottom:178.764000px;}
.y98{bottom:179.778000px;}
.y4e{bottom:181.921500px;}
.y6b{bottom:184.026000px;}
.y80{bottom:185.040000px;}
.y130{bottom:185.503500px;}
.y13c{bottom:186.517500px;}
.y158{bottom:191.728500px;}
.y166{bottom:192.742500px;}
.y105{bottom:194.868000px;}
.y18b{bottom:195.483000px;}
.y10a{bottom:195.882000px;}
.y21{bottom:199.513500px;}
.y91{bottom:201.561000px;}
.y97{bottom:202.575000px;}
.y4d{bottom:204.718500px;}
.y6a{bottom:206.823000px;}
.y7f{bottom:207.837000px;}
.y12f{bottom:208.300500px;}
.y13b{bottom:209.314500px;}
.yac{bottom:213.433500px;}
.ybb{bottom:214.447500px;}
.y157{bottom:214.525500px;}
.y165{bottom:215.539500px;}
.y18a{bottom:218.280000px;}
.y20{bottom:222.310500px;}
.y4c{bottom:227.515500px;}
.y69{bottom:229.620000px;}
.y7e{bottom:230.634000px;}
.y12e{bottom:231.097500px;}
.y13a{bottom:232.111500px;}
.yab{bottom:236.230500px;}
.yba{bottom:237.244500px;}
.y156{bottom:237.322500px;}
.y164{bottom:238.336500px;}
.y189{bottom:241.078500px;}
.y1f{bottom:245.107500px;}
.y4b{bottom:250.312500px;}
.y90{bottom:250.741500px;}
.y68{bottom:252.417000px;}
.y7d{bottom:253.431000px;}
.y12d{bottom:253.896000px;}
.y139{bottom:254.910000px;}
.y104{bottom:255.177000px;}
.yaa{bottom:259.027500px;}
.yb9{bottom:260.041500px;}
.y155{bottom:260.119500px;}
.y163{bottom:261.133500px;}
.y188{bottom:263.875500px;}
.y1e{bottom:267.904500px;}
.y4a{bottom:273.109500px;}
.y8f{bottom:273.538500px;}
.y67{bottom:275.215500px;}
.y7c{bottom:276.229500px;}
.y12c{bottom:276.693000px;}
.ye1{bottom:276.960000px;}
.y138{bottom:277.707000px;}
.y103{bottom:277.974000px;}
.ya9{bottom:281.824500px;}
.yb8{bottom:282.838500px;}
.y154{bottom:282.916500px;}
.y162{bottom:283.930500px;}
.y187{bottom:286.672500px;}
.y1d{bottom:290.701500px;}
.y49{bottom:295.908000px;}
.y66{bottom:298.012500px;}
.y7b{bottom:299.026500px;}
.y8e{bottom:299.325000px;}
.y12b{bottom:299.490000px;}
.ye0{bottom:299.757000px;}
.y137{bottom:300.504000px;}
.y102{bottom:300.771000px;}
.ya8{bottom:304.621500px;}
.yb7{bottom:305.635500px;}
.y153{bottom:305.713500px;}
.y161{bottom:306.727500px;}
.y186{bottom:309.469500px;}
.y48{bottom:318.705000px;}
.y65{bottom:320.809500px;}
.y7a{bottom:321.823500px;}
.y8d{bottom:322.122000px;}
.y12a{bottom:322.287000px;}
.ydf{bottom:322.555500px;}
.y136{bottom:323.301000px;}
.y101{bottom:323.569500px;}
.ya7{bottom:327.418500px;}
.yb6{bottom:328.432500px;}
.y152{bottom:328.510500px;}
.y160{bottom:329.524500px;}
.y185{bottom:332.266500px;}
.y47{bottom:341.502000px;}
.y1c{bottom:341.892000px;}
.y64{bottom:343.606500px;}
.y79{bottom:344.620500px;}
.y129{bottom:345.084000px;}
.yde{bottom:345.352500px;}
.y135{bottom:346.098000px;}
.y100{bottom:346.366500px;}
.y8c{bottom:347.907000px;}
.ya6{bottom:350.217000px;}
.yb5{bottom:351.229500px;}
.y151{bottom:351.307500px;}
.y15f{bottom:352.321500px;}
.y184{bottom:355.063500px;}
.y46{bottom:364.299000px;}
.y63{bottom:366.403500px;}
.y78{bottom:367.417500px;}
.ydd{bottom:368.149500px;}
.yff{bottom:369.163500px;}
.y8b{bottom:370.705500px;}
.ya5{bottom:373.014000px;}
.yb4{bottom:374.028000px;}
.y150{bottom:374.104500px;}
.y15e{bottom:375.118500px;}
.y183{bottom:377.860500px;}
.y1b{bottom:383.065500px;}
.y45{bottom:387.096000px;}
.y62{bottom:389.200500px;}
.y77{bottom:390.214500px;}
.ydc{bottom:390.946500px;}
.yfe{bottom:391.960500px;}
.y128{bottom:394.264500px;}
.ya4{bottom:395.811000px;}
.y8a{bottom:396.490500px;}
.yb3{bottom:396.825000px;}
.y14f{bottom:396.901500px;}
.y15d{bottom:397.915500px;}
.y182{bottom:400.657500px;}
.y1a{bottom:401.641500px;}
.y44{bottom:409.893000px;}
.y61{bottom:411.997500px;}
.y76{bottom:413.011500px;}
.ydb{bottom:413.743500px;}
.yfd{bottom:414.757500px;}
.y19{bottom:415.506000px;}
.ya3{bottom:418.608000px;}
.y89{bottom:419.287500px;}
.yb2{bottom:419.622000px;}
.y127{bottom:420.648000px;}
.y181{bottom:423.454500px;}
.y43{bottom:432.690000px;}
.y60{bottom:434.794500px;}
.y75{bottom:435.808500px;}
.yda{bottom:436.540500px;}
.y18{bottom:437.458500px;}
.yfc{bottom:437.554500px;}
.y14e{bottom:438.645000px;}
.ya2{bottom:441.405000px;}
.yb1{bottom:442.419000px;}
.y88{bottom:445.074000px;}
.y180{bottom:446.251500px;}
.y126{bottom:446.434500px;}
.y42{bottom:455.487000px;}
.y5f{bottom:457.591500px;}
.y74{bottom:458.605500px;}
.yd9{bottom:459.337500px;}
.yfb{bottom:460.351500px;}
.y14d{bottom:461.443500px;}
.y17{bottom:461.646000px;}
.ya1{bottom:464.202000px;}
.yb0{bottom:465.216000px;}
.y87{bottom:467.871000px;}
.y17f{bottom:469.048500px;}
.y125{bottom:472.219500px;}
.y41{bottom:478.284000px;}
.y5e{bottom:480.388500px;}
.y73{bottom:481.402500px;}
.yd8{bottom:482.134500px;}
.yfa{bottom:483.148500px;}
.y14c{bottom:484.240500px;}
.ya0{bottom:486.999000px;}
.yaf{bottom:488.013000px;}
.y17e{bottom:491.845500px;}
.y86{bottom:494.254500px;}
.y16{bottom:497.047500px;}
.y124{bottom:498.006000px;}
.y40{bottom:501.081000px;}
.y5d{bottom:503.185500px;}
.y72{bottom:504.199500px;}
.yd7{bottom:504.931500px;}
.yf9{bottom:505.945500px;}
.y9f{bottom:509.796000px;}
.yae{bottom:510.810000px;}
.y17d{bottom:514.642500px;}
.y14b{bottom:517.498500px;}
.y15{bottom:519.000000px;}
.y3f{bottom:523.878000px;}
.y123{bottom:524.389500px;}
.y5c{bottom:525.982500px;}
.y71{bottom:526.996500px;}
.yd6{bottom:527.728500px;}
.yf8{bottom:528.742500px;}
.y9e{bottom:532.593000px;}
.yad{bottom:533.607000px;}
.y85{bottom:535.582500px;}
.y17c{bottom:537.439500px;}
.y14{bottom:540.954000px;}
.y3e{bottom:546.675000px;}
.y5b{bottom:548.779500px;}
.y70{bottom:549.793500px;}
.yd5{bottom:550.525500px;}
.yf7{bottom:551.539500px;}
.y17b{bottom:560.238000px;}
.y13{bottom:562.906500px;}
.y122{bottom:565.717500px;}
.y14a{bottom:569.304000px;}
.y3d{bottom:569.472000px;}
.yd4{bottom:573.322500px;}
.yf6{bottom:574.336500px;}
.y17a{bottom:583.035000px;}
.y12{bottom:584.859000px;}
.y5a{bottom:590.524500px;}
.y3c{bottom:592.269000px;}
.y149{bottom:595.687500px;}
.yd3{bottom:596.119500px;}
.yf5{bottom:597.133500px;}
.y121{bottom:599.607000px;}
.y179{bottom:605.832000px;}
.y11{bottom:606.811500px;}
.y59{bottom:613.321500px;}
.y3b{bottom:615.067500px;}
.yd2{bottom:618.918000px;}
.yf4{bottom:619.930500px;}
.y148{bottom:621.472500px;}
.y120{bottom:622.404000px;}
.y178{bottom:628.629000px;}
.y10{bottom:628.764000px;}
.y58{bottom:636.118500px;}
.y3a{bottom:637.864500px;}
.yd1{bottom:641.715000px;}
.yf3{bottom:642.729000px;}
.y147{bottom:644.269500px;}
.y11f{bottom:645.202500px;}
.yf{bottom:650.718000px;}
.y177{bottom:651.426000px;}
.y57{bottom:658.915500px;}
.y39{bottom:660.661500px;}
.yd0{bottom:664.512000px;}
.yf2{bottom:665.526000px;}
.y11e{bottom:667.999500px;}
.y146{bottom:670.056000px;}
.ye{bottom:672.670500px;}
.y176{bottom:674.223000px;}
.y38{bottom:683.458500px;}
.ycf{bottom:687.309000px;}
.yf1{bottom:688.323000px;}
.y11d{bottom:690.796500px;}
.y56{bottom:692.173500px;}
.yd{bottom:694.623000px;}
.y145{bottom:695.842500px;}
.y175{bottom:697.020000px;}
.y37{bottom:706.255500px;}
.yce{bottom:710.106000px;}
.yf0{bottom:711.120000px;}
.y11c{bottom:713.593500px;}
.y55{bottom:714.379500px;}
.yc{bottom:716.575500px;}
.y174{bottom:719.817000px;}
.y144{bottom:722.226000px;}
.y36{bottom:729.052500px;}
.ycd{bottom:732.903000px;}
.yef{bottom:733.917000px;}
.y11b{bottom:736.390500px;}
.yb{bottom:738.528000px;}
.y173{bottom:742.614000px;}
.y143{bottom:745.023000px;}
.y35{bottom:751.849500px;}
.ycc{bottom:755.700000px;}
.yee{bottom:756.714000px;}
.y11a{bottom:759.187500px;}
.ya{bottom:760.480500px;}
.y172{bottom:765.411000px;}
.y34{bottom:774.646500px;}
.ycb{bottom:778.497000px;}
.yed{bottom:779.511000px;}
.y119{bottom:781.984500px;}
.y9{bottom:782.434500px;}
.y142{bottom:786.349500px;}
.y171{bottom:788.208000px;}
.y33{bottom:797.443500px;}
.yca{bottom:801.294000px;}
.yec{bottom:802.308000px;}
.y8{bottom:804.387000px;}
.y118{bottom:804.781500px;}
.y141{bottom:809.148000px;}
.y170{bottom:811.005000px;}
.y32{bottom:820.240500px;}
.yc9{bottom:824.091000px;}
.yeb{bottom:825.105000px;}
.y7{bottom:826.339500px;}
.y117{bottom:827.578500px;}
.y16f{bottom:833.802000px;}
.y31{bottom:843.037500px;}
.yc8{bottom:846.888000px;}
.yea{bottom:847.902000px;}
.y6{bottom:848.292000px;}
.y116{bottom:850.375500px;}
.y16e{bottom:856.600500px;}
.y30{bottom:865.834500px;}
.yc7{bottom:869.685000px;}
.ye9{bottom:870.699000px;}
.y16d{bottom:879.397500px;}
.y2f{bottom:888.631500px;}
.yc6{bottom:892.482000px;}
.ye8{bottom:893.496000px;}
.y115{bottom:898.542000px;}
.y16c{bottom:902.194500px;}
.y2e{bottom:911.430000px;}
.yc5{bottom:915.279000px;}
.ye7{bottom:916.293000px;}
.y5{bottom:917.967000px;}
.y114{bottom:924.925500px;}
.y2d{bottom:934.227000px;}
.y16b{bottom:935.452500px;}
.yc4{bottom:938.077500px;}
.ye6{bottom:939.090000px;}
.y113{bottom:950.712000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.yc3{bottom:960.874500px;}
.ye5{bottom:961.888500px;}
.y112{bottom:976.498500px;}
.y2b{bottom:979.821000px;}
.yc2{bottom:983.671500px;}
.ye4{bottom:984.685500px;}
.y3{bottom:996.498000px;}
.y111{bottom:1002.283500px;}
.y2a{bottom:1002.618000px;}
.yc1{bottom:1006.468500px;}
.ye3{bottom:1007.482500px;}
.y29{bottom:1025.415000px;}
.y110{bottom:1028.667000px;}
.yc0{bottom:1029.265500px;}
.ye2{bottom:1030.279500px;}
.y28{bottom:1048.212000px;}
.y10f{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.hd{height:32.900573px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.364715px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.hb{height:47.569464px;}
.h3{height:53.463379px;}
.h7{height:53.774213px;}
.h2{height:71.065171px;}
.hc{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:124.705500px;}
.xc{left:127.558500px;}
.x15{left:141.303000px;}
.x19{left:144.630000px;}
.xd{left:153.070500px;}
.x6{left:178.044000px;}
.x1d{left:181.026000px;}
.xa{left:182.308500px;}
.x3{left:207.721500px;}
.x14{left:211.243500px;}
.x4{left:236.113500px;}
.x8{left:252.061500px;}
.x18{left:270.988500px;}
.x12{left:315.294000px;}
.x5{left:371.064000px;}
.x1a{left:375.162000px;}
.x9{left:379.651500px;}
.xf{left:404.373000px;}
.x7{left:410.130000px;}
.xb{left:432.832500px;}
.x1c{left:447.636000px;}
.x10{left:452.577000px;}
.xe{left:464.346000px;}
.x13{left:489.858000px;}
.x16{left:496.066500px;}
.x1b{left:520.653000px;}
.x2{left:573.774000px;}
.x11{left:578.070000px;}
.x1{left:696.322500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.222080pt;}
.ls6{letter-spacing:1.283184pt;}
.lsa{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls7{letter-spacing:14.970480pt;}
.ls5{letter-spacing:15.276000pt;}
.ls9{letter-spacing:15.398208pt;}
.lsb{letter-spacing:15.459312pt;}
.lsc{letter-spacing:15.520416pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws7d{word-spacing:-15.276000pt;}
.wsda{word-spacing:-3.360720pt;}
.ws1d{word-spacing:-3.177408pt;}
.wsd7{word-spacing:-3.116304pt;}
.ws4c{word-spacing:-3.055200pt;}
.wse2{word-spacing:-2.994096pt;}
.ws93{word-spacing:-2.932992pt;}
.wse3{word-spacing:-2.871888pt;}
.wsdb{word-spacing:-2.810784pt;}
.ws30{word-spacing:-2.749680pt;}
.ws10{word-spacing:-2.656693pt;}
.wsd0{word-spacing:-2.627472pt;}
.ws9a{word-spacing:-2.566368pt;}
.wscb{word-spacing:-2.444160pt;}
.ws70{word-spacing:-2.383056pt;}
.ws2f{word-spacing:-2.321952pt;}
.ws43{word-spacing:-2.260848pt;}
.ws3e{word-spacing:-2.199744pt;}
.wse4{word-spacing:-2.077536pt;}
.wsa{word-spacing:-1.965953pt;}
.wse0{word-spacing:-1.955328pt;}
.ws1b{word-spacing:-1.894224pt;}
.ws48{word-spacing:-1.833120pt;}
.ws67{word-spacing:-1.772016pt;}
.wsc1{word-spacing:-1.710912pt;}
.ws45{word-spacing:-1.588704pt;}
.wsc6{word-spacing:-1.527600pt;}
.wse5{word-spacing:-1.466496pt;}
.ws8e{word-spacing:-1.405392pt;}
.wsb1{word-spacing:-1.344288pt;}
.wsaa{word-spacing:-1.283184pt;}
.wsce{word-spacing:-1.222080pt;}
.ws71{word-spacing:-1.160976pt;}
.ws98{word-spacing:-1.099872pt;}
.ws6a{word-spacing:-1.038768pt;}
.ws82{word-spacing:-0.977664pt;}
.ws6b{word-spacing:-0.916560pt;}
.ws17{word-spacing:-0.855456pt;}
.ws8a{word-spacing:-0.794352pt;}
.wsd6{word-spacing:-0.672144pt;}
.ws22{word-spacing:-0.611040pt;}
.ws89{word-spacing:-0.549936pt;}
.wscd{word-spacing:-0.488832pt;}
.wsdc{word-spacing:-0.427728pt;}
.ws44{word-spacing:-0.366624pt;}
.ws32{word-spacing:-0.305520pt;}
.ws16{word-spacing:-0.244416pt;}
.wsd{word-spacing:-0.212535pt;}
.ws2a{word-spacing:-0.183312pt;}
.ws5{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.122208pt;}
.wsc8{word-spacing:-0.095642pt;}
.ws24{word-spacing:-0.061104pt;}
.wse{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.ws18{word-spacing:0.061104pt;}
.ws11{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.ws14{word-spacing:0.122208pt;}
.ws2d{word-spacing:0.183312pt;}
.ws2e{word-spacing:0.244416pt;}
.ws8{word-spacing:0.265669pt;}
.ws26{word-spacing:0.305520pt;}
.wsf{word-spacing:0.318803pt;}
.ws4d{word-spacing:0.366624pt;}
.ws3a{word-spacing:0.427728pt;}
.wse7{word-spacing:0.488832pt;}
.ws1e{word-spacing:0.549936pt;}
.ws86{word-spacing:0.611040pt;}
.wsa5{word-spacing:0.672144pt;}
.ws41{word-spacing:0.733248pt;}
.wse1{word-spacing:0.794352pt;}
.ws74{word-spacing:0.855456pt;}
.ws1c{word-spacing:0.916560pt;}
.ws9{word-spacing:0.956410pt;}
.ws31{word-spacing:0.977664pt;}
.ws62{word-spacing:1.038768pt;}
.ws4{word-spacing:1.062677pt;}
.wscf{word-spacing:1.099872pt;}
.wsbf{word-spacing:1.160976pt;}
.ws97{word-spacing:1.222080pt;}
.ws51{word-spacing:1.283184pt;}
.wsa9{word-spacing:1.405392pt;}
.ws2c{word-spacing:1.466496pt;}
.wsab{word-spacing:1.527600pt;}
.ws8b{word-spacing:1.588704pt;}
.ws99{word-spacing:1.710912pt;}
.ws5f{word-spacing:1.772016pt;}
.ws1a{word-spacing:1.833120pt;}
.ws52{word-spacing:1.894224pt;}
.wsaf{word-spacing:1.955328pt;}
.ws4a{word-spacing:2.016432pt;}
.ws8d{word-spacing:2.077536pt;}
.ws46{word-spacing:2.138640pt;}
.ws28{word-spacing:2.199744pt;}
.ws55{word-spacing:2.260848pt;}
.ws29{word-spacing:2.321952pt;}
.ws66{word-spacing:2.444160pt;}
.ws6c{word-spacing:2.505264pt;}
.wsd8{word-spacing:2.566368pt;}
.ws37{word-spacing:2.627472pt;}
.wsac{word-spacing:2.688576pt;}
.wsb9{word-spacing:2.749680pt;}
.ws72{word-spacing:2.810784pt;}
.ws5a{word-spacing:2.871888pt;}
.ws5d{word-spacing:2.932992pt;}
.ws85{word-spacing:2.994096pt;}
.ws40{word-spacing:3.055200pt;}
.ws56{word-spacing:3.116304pt;}
.ws6f{word-spacing:3.299616pt;}
.wsb6{word-spacing:3.360720pt;}
.ws7{word-spacing:3.400567pt;}
.ws42{word-spacing:3.421824pt;}
.ws87{word-spacing:3.605136pt;}
.ws5c{word-spacing:3.666240pt;}
.wsa8{word-spacing:3.727344pt;}
.ws4e{word-spacing:3.788448pt;}
.ws25{word-spacing:3.849552pt;}
.ws73{word-spacing:3.910656pt;}
.wsc{word-spacing:3.931906pt;}
.ws54{word-spacing:3.971760pt;}
.ws20{word-spacing:4.032864pt;}
.wsae{word-spacing:4.093968pt;}
.wse6{word-spacing:4.155072pt;}
.ws6{word-spacing:4.197575pt;}
.ws9f{word-spacing:4.216176pt;}
.ws13{word-spacing:4.277280pt;}
.ws50{word-spacing:4.399488pt;}
.ws5e{word-spacing:4.460592pt;}
.ws69{word-spacing:4.521696pt;}
.ws47{word-spacing:4.582800pt;}
.ws6e{word-spacing:4.643904pt;}
.wsc2{word-spacing:4.705008pt;}
.wsdd{word-spacing:4.766112pt;}
.wsbb{word-spacing:4.827216pt;}
.ws4b{word-spacing:4.888320pt;}
.wsa0{word-spacing:4.949424pt;}
.ws53{word-spacing:5.010528pt;}
.ws3c{word-spacing:5.071632pt;}
.ws88{word-spacing:5.132736pt;}
.wsa3{word-spacing:5.193840pt;}
.ws27{word-spacing:5.254944pt;}
.wsd9{word-spacing:5.316048pt;}
.ws34{word-spacing:5.377152pt;}
.ws49{word-spacing:5.438256pt;}
.ws38{word-spacing:5.499360pt;}
.ws1f{word-spacing:5.560464pt;}
.wsa1{word-spacing:5.621568pt;}
.ws57{word-spacing:5.682672pt;}
.ws21{word-spacing:5.743776pt;}
.ws84{word-spacing:5.804880pt;}
.ws81{word-spacing:5.865984pt;}
.ws19{word-spacing:5.927088pt;}
.ws65{word-spacing:5.988192pt;}
.wse9{word-spacing:6.049296pt;}
.wsc5{word-spacing:6.110400pt;}
.ws6d{word-spacing:6.171504pt;}
.wsd1{word-spacing:6.232608pt;}
.ws80{word-spacing:6.293712pt;}
.wsc7{word-spacing:6.354816pt;}
.ws3b{word-spacing:6.415920pt;}
.ws83{word-spacing:6.477024pt;}
.wse8{word-spacing:6.538128pt;}
.wsa2{word-spacing:6.660336pt;}
.ws3f{word-spacing:6.721440pt;}
.ws3d{word-spacing:6.782544pt;}
.ws78{word-spacing:6.843648pt;}
.ws64{word-spacing:6.904752pt;}
.ws60{word-spacing:6.965856pt;}
.wsb3{word-spacing:7.026960pt;}
.ws36{word-spacing:7.088064pt;}
.wsc4{word-spacing:7.149168pt;}
.ws39{word-spacing:7.271376pt;}
.ws7a{word-spacing:7.332480pt;}
.wsea{word-spacing:7.393584pt;}
.ws59{word-spacing:7.454688pt;}
.ws9b{word-spacing:7.576896pt;}
.ws8c{word-spacing:7.638000pt;}
.wsbc{word-spacing:7.760208pt;}
.ws5b{word-spacing:7.821312pt;}
.ws9c{word-spacing:7.882416pt;}
.ws23{word-spacing:7.943520pt;}
.ws33{word-spacing:8.004624pt;}
.ws9e{word-spacing:8.065728pt;}
.ws9d{word-spacing:8.126832pt;}
.wsc0{word-spacing:8.187936pt;}
.ws58{word-spacing:8.249040pt;}
.ws2b{word-spacing:8.310144pt;}
.ws35{word-spacing:8.371248pt;}
.ws7b{word-spacing:8.493456pt;}
.wsd3{word-spacing:8.554560pt;}
.ws63{word-spacing:8.676768pt;}
.wsa7{word-spacing:8.860080pt;}
.wsb0{word-spacing:8.921184pt;}
.ws79{word-spacing:9.043392pt;}
.ws94{word-spacing:9.104496pt;}
.ws95{word-spacing:9.226704pt;}
.wsbe{word-spacing:9.287808pt;}
.ws7f{word-spacing:9.410016pt;}
.ws7e{word-spacing:9.471120pt;}
.ws7c{word-spacing:9.837744pt;}
.wsd2{word-spacing:9.959952pt;}
.ws61{word-spacing:10.021056pt;}
.ws68{word-spacing:10.143264pt;}
.wsb7{word-spacing:10.204368pt;}
.wsd5{word-spacing:10.265472pt;}
.ws96{word-spacing:10.326576pt;}
.wsa6{word-spacing:10.448784pt;}
.wsb2{word-spacing:10.632096pt;}
.ws4f{word-spacing:10.693200pt;}
.wsb8{word-spacing:11.548656pt;}
.wsb5{word-spacing:11.793072pt;}
.wsa4{word-spacing:11.976384pt;}
.ws91{word-spacing:13.015152pt;}
.wsba{word-spacing:13.320672pt;}
.wscc{word-spacing:14.298336pt;}
.ws90{word-spacing:14.970480pt;}
.ws0{word-spacing:15.005042pt;}
.ws8f{word-spacing:15.214896pt;}
.wsb4{word-spacing:15.520416pt;}
.wsad{word-spacing:17.199459pt;}
.ws3{word-spacing:20.031468pt;}
.ws92{word-spacing:23.830560pt;}
.wsc3{word-spacing:24.686016pt;}
.ws77{word-spacing:27.863424pt;}
.wsdf{word-spacing:31.712976pt;}
.ws75{word-spacing:44.605920pt;}
.wsca{word-spacing:44.667024pt;}
.wsd4{word-spacing:47.050080pt;}
.ws76{word-spacing:59.148672pt;}
.ws12{word-spacing:69.005059pt;}
.wsc9{word-spacing:97.521984pt;}
.wsbd{word-spacing:410.313360pt;}
.wsde{word-spacing:838.328229pt;}
._1c{margin-left:-7.760208pt;}
._4{margin-left:-6.220923pt;}
._6{margin-left:-4.839430pt;}
._2{margin-left:-3.672619pt;}
._3{margin-left:-2.295387pt;}
._1{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._3a{width:2.721520pt;}
._39{width:11.522091pt;}
._10{width:12.465216pt;}
._5{width:13.442868pt;}
._c{width:14.432310pt;}
._d{width:15.478275pt;}
._7{width:17.000722pt;}
._8{width:18.375821pt;}
._11{width:19.626598pt;}
._15{width:21.527201pt;}
._f{width:22.979888pt;}
._19{width:24.431518pt;}
._16{width:25.452208pt;}
._9{width:27.045138pt;}
._a{width:28.205586pt;}
._e{width:30.552000pt;}
._14{width:31.578554pt;}
._27{width:33.057264pt;}
._17{width:34.218240pt;}
._13{width:35.447750pt;}
._1e{width:37.151232pt;}
._30{width:38.984352pt;}
._1a{width:40.328640pt;}
._12{width:41.672928pt;}
._35{width:43.418379pt;}
._22{width:44.396043pt;}
._25{width:46.316832pt;}
._23{width:48.027744pt;}
._b{width:52.821445pt;}
._26{width:54.932496pt;}
._18{width:59.881920pt;}
._1b{width:62.326080pt;}
._24{width:69.074133pt;}
._1d{width:74.424672pt;}
._20{width:75.468224pt;}
._36{width:106.172187pt;}
._37{width:108.125920pt;}
._31{width:150.105963pt;}
._34{width:152.943312pt;}
._29{width:155.815200pt;}
._1f{width:172.007760pt;}
._32{width:204.719659pt;}
._21{width:317.924112pt;}
._2a{width:334.583723pt;}
._2e{width:363.324384pt;}
._2d{width:377.655664pt;}
._2b{width:410.374464pt;}
._38{width:456.202464pt;}
._2c{width:552.414699pt;}
._33{width:602.708075pt;}
._28{width:877.636752pt;}
._2f{width:925.175664pt;}
.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;}
.y53{bottom:36.718667pt;}
.y9d{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y96{bottom:77.845333pt;}
.y9c{bottom:78.746667pt;}
.ybf{bottom:80.189333pt;}
.y52{bottom:80.652000pt;}
.y6f{bottom:82.522667pt;}
.y84{bottom:83.424000pt;}
.y134{bottom:83.836000pt;}
.y140{bottom:84.737333pt;}
.y15c{bottom:89.368000pt;}
.y16a{bottom:90.269333pt;}
.y109{bottom:92.160000pt;}
.y10e{bottom:93.061333pt;}
.y25{bottom:96.289333pt;}
.y95{bottom:98.109333pt;}
.y9b{bottom:99.010667pt;}
.ybe{bottom:100.453333pt;}
.y51{bottom:100.916000pt;}
.y6e{bottom:102.786667pt;}
.y83{bottom:103.688000pt;}
.y133{bottom:104.100000pt;}
.y13f{bottom:105.001333pt;}
.y15b{bottom:109.632000pt;}
.y169{bottom:110.533333pt;}
.y108{bottom:112.424000pt;}
.y18e{bottom:112.970667pt;}
.y10d{bottom:113.325333pt;}
.y24{bottom:116.553333pt;}
.y94{bottom:118.373333pt;}
.y9a{bottom:119.274667pt;}
.ybd{bottom:120.717333pt;}
.y50{bottom:121.180000pt;}
.y6d{bottom:123.050667pt;}
.y82{bottom:123.952000pt;}
.y132{bottom:124.364000pt;}
.y13e{bottom:125.265333pt;}
.y15a{bottom:129.896000pt;}
.y168{bottom:130.797333pt;}
.y107{bottom:132.688000pt;}
.y18d{bottom:133.234667pt;}
.y10c{bottom:133.589333pt;}
.y23{bottom:136.817333pt;}
.y93{bottom:138.637333pt;}
.y99{bottom:139.538667pt;}
.y4f{bottom:141.444000pt;}
.y6c{bottom:143.314667pt;}
.y81{bottom:144.216000pt;}
.y131{bottom:144.628000pt;}
.y13d{bottom:145.529333pt;}
.y159{bottom:150.161333pt;}
.ybc{bottom:150.280000pt;}
.y167{bottom:151.062667pt;}
.y106{bottom:152.952000pt;}
.y18c{bottom:153.498667pt;}
.y10b{bottom:153.853333pt;}
.y22{bottom:157.081333pt;}
.y92{bottom:158.901333pt;}
.y98{bottom:159.802667pt;}
.y4e{bottom:161.708000pt;}
.y6b{bottom:163.578667pt;}
.y80{bottom:164.480000pt;}
.y130{bottom:164.892000pt;}
.y13c{bottom:165.793333pt;}
.y158{bottom:170.425333pt;}
.y166{bottom:171.326667pt;}
.y105{bottom:173.216000pt;}
.y18b{bottom:173.762667pt;}
.y10a{bottom:174.117333pt;}
.y21{bottom:177.345333pt;}
.y91{bottom:179.165333pt;}
.y97{bottom:180.066667pt;}
.y4d{bottom:181.972000pt;}
.y6a{bottom:183.842667pt;}
.y7f{bottom:184.744000pt;}
.y12f{bottom:185.156000pt;}
.y13b{bottom:186.057333pt;}
.yac{bottom:189.718667pt;}
.ybb{bottom:190.620000pt;}
.y157{bottom:190.689333pt;}
.y165{bottom:191.590667pt;}
.y18a{bottom:194.026667pt;}
.y20{bottom:197.609333pt;}
.y4c{bottom:202.236000pt;}
.y69{bottom:204.106667pt;}
.y7e{bottom:205.008000pt;}
.y12e{bottom:205.420000pt;}
.y13a{bottom:206.321333pt;}
.yab{bottom:209.982667pt;}
.yba{bottom:210.884000pt;}
.y156{bottom:210.953333pt;}
.y164{bottom:211.854667pt;}
.y189{bottom:214.292000pt;}
.y1f{bottom:217.873333pt;}
.y4b{bottom:222.500000pt;}
.y90{bottom:222.881333pt;}
.y68{bottom:224.370667pt;}
.y7d{bottom:225.272000pt;}
.y12d{bottom:225.685333pt;}
.y139{bottom:226.586667pt;}
.y104{bottom:226.824000pt;}
.yaa{bottom:230.246667pt;}
.yb9{bottom:231.148000pt;}
.y155{bottom:231.217333pt;}
.y163{bottom:232.118667pt;}
.y188{bottom:234.556000pt;}
.y1e{bottom:238.137333pt;}
.y4a{bottom:242.764000pt;}
.y8f{bottom:243.145333pt;}
.y67{bottom:244.636000pt;}
.y7c{bottom:245.537333pt;}
.y12c{bottom:245.949333pt;}
.ye1{bottom:246.186667pt;}
.y138{bottom:246.850667pt;}
.y103{bottom:247.088000pt;}
.ya9{bottom:250.510667pt;}
.yb8{bottom:251.412000pt;}
.y154{bottom:251.481333pt;}
.y162{bottom:252.382667pt;}
.y187{bottom:254.820000pt;}
.y1d{bottom:258.401333pt;}
.y49{bottom:263.029333pt;}
.y66{bottom:264.900000pt;}
.y7b{bottom:265.801333pt;}
.y8e{bottom:266.066667pt;}
.y12b{bottom:266.213333pt;}
.ye0{bottom:266.450667pt;}
.y137{bottom:267.114667pt;}
.y102{bottom:267.352000pt;}
.ya8{bottom:270.774667pt;}
.yb7{bottom:271.676000pt;}
.y153{bottom:271.745333pt;}
.y161{bottom:272.646667pt;}
.y186{bottom:275.084000pt;}
.y48{bottom:283.293333pt;}
.y65{bottom:285.164000pt;}
.y7a{bottom:286.065333pt;}
.y8d{bottom:286.330667pt;}
.y12a{bottom:286.477333pt;}
.ydf{bottom:286.716000pt;}
.y136{bottom:287.378667pt;}
.y101{bottom:287.617333pt;}
.ya7{bottom:291.038667pt;}
.yb6{bottom:291.940000pt;}
.y152{bottom:292.009333pt;}
.y160{bottom:292.910667pt;}
.y185{bottom:295.348000pt;}
.y47{bottom:303.557333pt;}
.y1c{bottom:303.904000pt;}
.y64{bottom:305.428000pt;}
.y79{bottom:306.329333pt;}
.y129{bottom:306.741333pt;}
.yde{bottom:306.980000pt;}
.y135{bottom:307.642667pt;}
.y100{bottom:307.881333pt;}
.y8c{bottom:309.250667pt;}
.ya6{bottom:311.304000pt;}
.yb5{bottom:312.204000pt;}
.y151{bottom:312.273333pt;}
.y15f{bottom:313.174667pt;}
.y184{bottom:315.612000pt;}
.y46{bottom:323.821333pt;}
.y63{bottom:325.692000pt;}
.y78{bottom:326.593333pt;}
.ydd{bottom:327.244000pt;}
.yff{bottom:328.145333pt;}
.y8b{bottom:329.516000pt;}
.ya5{bottom:331.568000pt;}
.yb4{bottom:332.469333pt;}
.y150{bottom:332.537333pt;}
.y15e{bottom:333.438667pt;}
.y183{bottom:335.876000pt;}
.y1b{bottom:340.502667pt;}
.y45{bottom:344.085333pt;}
.y62{bottom:345.956000pt;}
.y77{bottom:346.857333pt;}
.ydc{bottom:347.508000pt;}
.yfe{bottom:348.409333pt;}
.y128{bottom:350.457333pt;}
.ya4{bottom:351.832000pt;}
.y8a{bottom:352.436000pt;}
.yb3{bottom:352.733333pt;}
.y14f{bottom:352.801333pt;}
.y15d{bottom:353.702667pt;}
.y182{bottom:356.140000pt;}
.y1a{bottom:357.014667pt;}
.y44{bottom:364.349333pt;}
.y61{bottom:366.220000pt;}
.y76{bottom:367.121333pt;}
.ydb{bottom:367.772000pt;}
.yfd{bottom:368.673333pt;}
.y19{bottom:369.338667pt;}
.ya3{bottom:372.096000pt;}
.y89{bottom:372.700000pt;}
.yb2{bottom:372.997333pt;}
.y127{bottom:373.909333pt;}
.y181{bottom:376.404000pt;}
.y43{bottom:384.613333pt;}
.y60{bottom:386.484000pt;}
.y75{bottom:387.385333pt;}
.yda{bottom:388.036000pt;}
.y18{bottom:388.852000pt;}
.yfc{bottom:388.937333pt;}
.y14e{bottom:389.906667pt;}
.ya2{bottom:392.360000pt;}
.yb1{bottom:393.261333pt;}
.y88{bottom:395.621333pt;}
.y180{bottom:396.668000pt;}
.y126{bottom:396.830667pt;}
.y42{bottom:404.877333pt;}
.y5f{bottom:406.748000pt;}
.y74{bottom:407.649333pt;}
.yd9{bottom:408.300000pt;}
.yfb{bottom:409.201333pt;}
.y14d{bottom:410.172000pt;}
.y17{bottom:410.352000pt;}
.ya1{bottom:412.624000pt;}
.yb0{bottom:413.525333pt;}
.y87{bottom:415.885333pt;}
.y17f{bottom:416.932000pt;}
.y125{bottom:419.750667pt;}
.y41{bottom:425.141333pt;}
.y5e{bottom:427.012000pt;}
.y73{bottom:427.913333pt;}
.yd8{bottom:428.564000pt;}
.yfa{bottom:429.465333pt;}
.y14c{bottom:430.436000pt;}
.ya0{bottom:432.888000pt;}
.yaf{bottom:433.789333pt;}
.y17e{bottom:437.196000pt;}
.y86{bottom:439.337333pt;}
.y16{bottom:441.820000pt;}
.y124{bottom:442.672000pt;}
.y40{bottom:445.405333pt;}
.y5d{bottom:447.276000pt;}
.y72{bottom:448.177333pt;}
.yd7{bottom:448.828000pt;}
.yf9{bottom:449.729333pt;}
.y9f{bottom:453.152000pt;}
.yae{bottom:454.053333pt;}
.y17d{bottom:457.460000pt;}
.y14b{bottom:459.998667pt;}
.y15{bottom:461.333333pt;}
.y3f{bottom:465.669333pt;}
.y123{bottom:466.124000pt;}
.y5c{bottom:467.540000pt;}
.y71{bottom:468.441333pt;}
.yd6{bottom:469.092000pt;}
.yf8{bottom:469.993333pt;}
.y9e{bottom:473.416000pt;}
.yad{bottom:474.317333pt;}
.y85{bottom:476.073333pt;}
.y17c{bottom:477.724000pt;}
.y14{bottom:480.848000pt;}
.y3e{bottom:485.933333pt;}
.y5b{bottom:487.804000pt;}
.y70{bottom:488.705333pt;}
.yd5{bottom:489.356000pt;}
.yf7{bottom:490.257333pt;}
.y17b{bottom:497.989333pt;}
.y13{bottom:500.361333pt;}
.y122{bottom:502.860000pt;}
.y14a{bottom:506.048000pt;}
.y3d{bottom:506.197333pt;}
.yd4{bottom:509.620000pt;}
.yf6{bottom:510.521333pt;}
.y17a{bottom:518.253333pt;}
.y12{bottom:519.874667pt;}
.y5a{bottom:524.910667pt;}
.y3c{bottom:526.461333pt;}
.y149{bottom:529.500000pt;}
.yd3{bottom:529.884000pt;}
.yf5{bottom:530.785333pt;}
.y121{bottom:532.984000pt;}
.y179{bottom:538.517333pt;}
.y11{bottom:539.388000pt;}
.y59{bottom:545.174667pt;}
.y3b{bottom:546.726667pt;}
.yd2{bottom:550.149333pt;}
.yf4{bottom:551.049333pt;}
.y148{bottom:552.420000pt;}
.y120{bottom:553.248000pt;}
.y178{bottom:558.781333pt;}
.y10{bottom:558.901333pt;}
.y58{bottom:565.438667pt;}
.y3a{bottom:566.990667pt;}
.yd1{bottom:570.413333pt;}
.yf3{bottom:571.314667pt;}
.y147{bottom:572.684000pt;}
.y11f{bottom:573.513333pt;}
.yf{bottom:578.416000pt;}
.y177{bottom:579.045333pt;}
.y57{bottom:585.702667pt;}
.y39{bottom:587.254667pt;}
.yd0{bottom:590.677333pt;}
.yf2{bottom:591.578667pt;}
.y11e{bottom:593.777333pt;}
.y146{bottom:595.605333pt;}
.ye{bottom:597.929333pt;}
.y176{bottom:599.309333pt;}
.y38{bottom:607.518667pt;}
.ycf{bottom:610.941333pt;}
.yf1{bottom:611.842667pt;}
.y11d{bottom:614.041333pt;}
.y56{bottom:615.265333pt;}
.yd{bottom:617.442667pt;}
.y145{bottom:618.526667pt;}
.y175{bottom:619.573333pt;}
.y37{bottom:627.782667pt;}
.yce{bottom:631.205333pt;}
.yf0{bottom:632.106667pt;}
.y11c{bottom:634.305333pt;}
.y55{bottom:635.004000pt;}
.yc{bottom:636.956000pt;}
.y174{bottom:639.837333pt;}
.y144{bottom:641.978667pt;}
.y36{bottom:648.046667pt;}
.ycd{bottom:651.469333pt;}
.yef{bottom:652.370667pt;}
.y11b{bottom:654.569333pt;}
.yb{bottom:656.469333pt;}
.y173{bottom:660.101333pt;}
.y143{bottom:662.242667pt;}
.y35{bottom:668.310667pt;}
.ycc{bottom:671.733333pt;}
.yee{bottom:672.634667pt;}
.y11a{bottom:674.833333pt;}
.ya{bottom:675.982667pt;}
.y172{bottom:680.365333pt;}
.y34{bottom:688.574667pt;}
.ycb{bottom:691.997333pt;}
.yed{bottom:692.898667pt;}
.y119{bottom:695.097333pt;}
.y9{bottom:695.497333pt;}
.y142{bottom:698.977333pt;}
.y171{bottom:700.629333pt;}
.y33{bottom:708.838667pt;}
.yca{bottom:712.261333pt;}
.yec{bottom:713.162667pt;}
.y8{bottom:715.010667pt;}
.y118{bottom:715.361333pt;}
.y141{bottom:719.242667pt;}
.y170{bottom:720.893333pt;}
.y32{bottom:729.102667pt;}
.yc9{bottom:732.525333pt;}
.yeb{bottom:733.426667pt;}
.y7{bottom:734.524000pt;}
.y117{bottom:735.625333pt;}
.y16f{bottom:741.157333pt;}
.y31{bottom:749.366667pt;}
.yc8{bottom:752.789333pt;}
.yea{bottom:753.690667pt;}
.y6{bottom:754.037333pt;}
.y116{bottom:755.889333pt;}
.y16e{bottom:761.422667pt;}
.y30{bottom:769.630667pt;}
.yc7{bottom:773.053333pt;}
.ye9{bottom:773.954667pt;}
.y16d{bottom:781.686667pt;}
.y2f{bottom:789.894667pt;}
.yc6{bottom:793.317333pt;}
.ye8{bottom:794.218667pt;}
.y115{bottom:798.704000pt;}
.y16c{bottom:801.950667pt;}
.y2e{bottom:810.160000pt;}
.yc5{bottom:813.581333pt;}
.ye7{bottom:814.482667pt;}
.y5{bottom:815.970667pt;}
.y114{bottom:822.156000pt;}
.y2d{bottom:830.424000pt;}
.y16b{bottom:831.513333pt;}
.yc4{bottom:833.846667pt;}
.ye6{bottom:834.746667pt;}
.y113{bottom:845.077333pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.yc3{bottom:854.110667pt;}
.ye5{bottom:855.012000pt;}
.y112{bottom:867.998667pt;}
.y2b{bottom:870.952000pt;}
.yc2{bottom:874.374667pt;}
.ye4{bottom:875.276000pt;}
.y3{bottom:885.776000pt;}
.y111{bottom:890.918667pt;}
.y2a{bottom:891.216000pt;}
.yc1{bottom:894.638667pt;}
.ye3{bottom:895.540000pt;}
.y29{bottom:911.480000pt;}
.y110{bottom:914.370667pt;}
.yc0{bottom:914.902667pt;}
.ye2{bottom:915.804000pt;}
.y28{bottom:931.744000pt;}
.y10f{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.hd{height:29.244954pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.768636pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.hb{height:42.283968pt;}
.h3{height:47.523004pt;}
.h7{height:47.799300pt;}
.h2{height:63.169041pt;}
.hc{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:110.849333pt;}
.xc{left:113.385333pt;}
.x15{left:125.602667pt;}
.x19{left:128.560000pt;}
.xd{left:136.062667pt;}
.x6{left:158.261333pt;}
.x1d{left:160.912000pt;}
.xa{left:162.052000pt;}
.x3{left:184.641333pt;}
.x14{left:187.772000pt;}
.x4{left:209.878667pt;}
.x8{left:224.054667pt;}
.x18{left:240.878667pt;}
.x12{left:280.261333pt;}
.x5{left:329.834667pt;}
.x1a{left:333.477333pt;}
.x9{left:337.468000pt;}
.xf{left:359.442667pt;}
.x7{left:364.560000pt;}
.xb{left:384.740000pt;}
.x1c{left:397.898667pt;}
.x10{left:402.290667pt;}
.xe{left:412.752000pt;}
.x13{left:435.429333pt;}
.x16{left:440.948000pt;}
.x1b{left:462.802667pt;}
.x2{left:510.021333pt;}
.x11{left:513.840000pt;}
.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; }
  