
    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_f2a98719b6478e19a749eba7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a21e4654d2c94f445818a146.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_5af11f062181708abc4a9b3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_e317ee5a3f7ebb50547423b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_a3b36cfb841115fea8477d48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.372000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_86a238b897256f86b1fe1127.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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;}
.m1{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);}
.m2{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);}
.m1f{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);}
.m1c{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);}
.m1d{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);}
.m25{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);}
.m17{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m29{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);}
.m3{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);}
.m10{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m7{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);}
.m1b{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);}
.m13{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);}
.m28{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);}
.m6{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m15{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);}
.mb{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);}
.m14{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);}
.m18{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);}
.m24{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);}
.me{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);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16{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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-14.943900px;}
.ws62{word-spacing:-13.449600px;}
.ws99{word-spacing:-8.966400px;}
.ws7b{word-spacing:-4.196275px;}
.ws4d{word-spacing:-3.981082px;}
.ws59{word-spacing:-3.873485px;}
.ws79{word-spacing:-3.658291px;}
.ws7f{word-spacing:-3.550694px;}
.ws61{word-spacing:-3.496896px;}
.ws51{word-spacing:-3.443098px;}
.ws6b{word-spacing:-3.389299px;}
.ws1f{word-spacing:-3.281702px;}
.ws70{word-spacing:-3.120307px;}
.wsbe{word-spacing:-2.689920px;}
.ws7a{word-spacing:-2.582323px;}
.ws4c{word-spacing:-2.528525px;}
.ws84{word-spacing:-2.474726px;}
.ws5f{word-spacing:-2.420928px;}
.wsdf{word-spacing:-2.367130px;}
.wsaf{word-spacing:-2.331264px;}
.ws76{word-spacing:-2.313331px;}
.ws85{word-spacing:-2.259533px;}
.ws44{word-spacing:-2.151936px;}
.ws72{word-spacing:-2.044339px;}
.wsd1{word-spacing:-2.008474px;}
.ws23{word-spacing:-1.990541px;}
.ws1b{word-spacing:-1.936742px;}
.ws93{word-spacing:-1.865011px;}
.ws82{word-spacing:-1.829146px;}
.wsc4{word-spacing:-1.793280px;}
.ws66{word-spacing:-1.775347px;}
.ws49{word-spacing:-1.721549px;}
.ws4a{word-spacing:-1.667750px;}
.wsa6{word-spacing:-1.649818px;}
.ws17{word-spacing:-1.560154px;}
.ws2c{word-spacing:-1.506355px;}
.ws38{word-spacing:-1.452557px;}
.wsd0{word-spacing:-1.434624px;}
.ws6c{word-spacing:-1.398758px;}
.ws7e{word-spacing:-1.344960px;}
.wsda{word-spacing:-1.327027px;}
.ws7{word-spacing:-1.291162px;}
.ws77{word-spacing:-1.237363px;}
.ws69{word-spacing:-1.183565px;}
.wsae{word-spacing:-1.147699px;}
.ws39{word-spacing:-1.075968px;}
.wsc5{word-spacing:-1.040102px;}
.ws7c{word-spacing:-1.022170px;}
.ws73{word-spacing:-0.968371px;}
.ws3{word-spacing:-0.914573px;}
.ws83{word-spacing:-0.860774px;}
.wse2{word-spacing:-0.824909px;}
.ws5a{word-spacing:-0.753178px;}
.ws2a{word-spacing:-0.699379px;}
.wsb7{word-spacing:-0.681446px;}
.ws45{word-spacing:-0.645581px;}
.ws75{word-spacing:-0.591782px;}
.wsd4{word-spacing:-0.573850px;}
.ws19{word-spacing:-0.430387px;}
.wsd6{word-spacing:-0.394522px;}
.ws91{word-spacing:-0.358656px;}
.ws1a{word-spacing:-0.322790px;}
.wsa{word-spacing:-0.268992px;}
.wsd7{word-spacing:-0.251059px;}
.ws6{word-spacing:-0.215194px;}
.wsb5{word-spacing:-0.179328px;}
.ws21{word-spacing:-0.161395px;}
.wsa1{word-spacing:-0.143462px;}
.ws11{word-spacing:-0.107597px;}
.wsa2{word-spacing:-0.071731px;}
.ws63{word-spacing:-0.065455px;}
.wsd{word-spacing:-0.053798px;}
.ws8b{word-spacing:-0.035866px;}
.ws1{word-spacing:0.000000px;}
.ws9c{word-spacing:0.035866px;}
.ws5{word-spacing:0.053798px;}
.ws9e{word-spacing:0.071731px;}
.ws13{word-spacing:0.107597px;}
.ws8a{word-spacing:0.143462px;}
.ws20{word-spacing:0.161395px;}
.ws9a{word-spacing:0.179328px;}
.ws40{word-spacing:0.215194px;}
.ws12{word-spacing:0.268992px;}
.ws4{word-spacing:0.322790px;}
.wsde{word-spacing:0.358656px;}
.ws71{word-spacing:0.376589px;}
.ws4b{word-spacing:0.430387px;}
.wsc6{word-spacing:0.466253px;}
.ws3d{word-spacing:0.484186px;}
.wsdd{word-spacing:0.537984px;}
.ws1c{word-spacing:0.591782px;}
.ws2d{word-spacing:0.699379px;}
.wse5{word-spacing:0.717312px;}
.wsac{word-spacing:0.753178px;}
.ws55{word-spacing:0.806976px;}
.wsbf{word-spacing:0.824909px;}
.wsf{word-spacing:0.860774px;}
.wsdb{word-spacing:0.896640px;}
.ws86{word-spacing:0.914573px;}
.wsc3{word-spacing:0.932506px;}
.ws54{word-spacing:0.968371px;}
.ws6d{word-spacing:1.022170px;}
.ws27{word-spacing:1.075968px;}
.wscf{word-spacing:1.111834px;}
.wsb{word-spacing:1.129766px;}
.ws34{word-spacing:1.183565px;}
.ws1e{word-spacing:1.237363px;}
.ws6e{word-spacing:1.344960px;}
.wsa7{word-spacing:1.362893px;}
.ws78{word-spacing:1.398758px;}
.ws80{word-spacing:1.452557px;}
.ws30{word-spacing:1.506355px;}
.ws35{word-spacing:1.560154px;}
.ws89{word-spacing:1.578086px;}
.ws6f{word-spacing:1.613952px;}
.wsb0{word-spacing:1.649818px;}
.ws48{word-spacing:1.721549px;}
.ws97{word-spacing:1.757414px;}
.ws2e{word-spacing:1.829146px;}
.ws32{word-spacing:1.882944px;}
.ws58{word-spacing:1.936742px;}
.ws37{word-spacing:1.990541px;}
.ws4f{word-spacing:2.044339px;}
.wsc{word-spacing:2.098138px;}
.wse1{word-spacing:2.116070px;}
.ws24{word-spacing:2.151936px;}
.wsa5{word-spacing:2.223667px;}
.ws47{word-spacing:2.259533px;}
.ws22{word-spacing:2.313331px;}
.ws64{word-spacing:2.367130px;}
.ws3c{word-spacing:2.474726px;}
.ws18{word-spacing:2.528525px;}
.ws15{word-spacing:2.582323px;}
.ws8d{word-spacing:2.618189px;}
.ws31{word-spacing:2.636122px;}
.wse4{word-spacing:2.654054px;}
.ws42{word-spacing:2.689920px;}
.ws65{word-spacing:2.743718px;}
.ws8e{word-spacing:2.761651px;}
.ws10{word-spacing:2.797517px;}
.ws2b{word-spacing:2.851315px;}
.ws43{word-spacing:2.905114px;}
.ws28{word-spacing:2.958912px;}
.ws3e{word-spacing:3.012710px;}
.ws41{word-spacing:3.066509px;}
.wsd9{word-spacing:3.120307px;}
.wsb3{word-spacing:3.156173px;}
.wsce{word-spacing:3.227904px;}
.ws16{word-spacing:3.281702px;}
.ws74{word-spacing:3.335501px;}
.ws3b{word-spacing:3.389299px;}
.ws9{word-spacing:3.443098px;}
.ws57{word-spacing:3.496896px;}
.ws56{word-spacing:3.550694px;}
.wsd5{word-spacing:3.586560px;}
.ws36{word-spacing:3.658291px;}
.ws96{word-spacing:3.694157px;}
.ws1d{word-spacing:3.712090px;}
.wsba{word-spacing:3.801754px;}
.ws9f{word-spacing:3.945216px;}
.wse6{word-spacing:3.981082px;}
.ws8f{word-spacing:4.016947px;}
.ws46{word-spacing:4.088678px;}
.ws8{word-spacing:4.250074px;}
.ws50{word-spacing:4.357670px;}
.ws29{word-spacing:4.626662px;}
.wscc{word-spacing:4.770125px;}
.ws4e{word-spacing:5.110848px;}
.wsbc{word-spacing:5.200512px;}
.ws5b{word-spacing:5.218445px;}
.ws7d{word-spacing:5.326042px;}
.ws60{word-spacing:5.379840px;}
.ws87{word-spacing:5.487437px;}
.ws88{word-spacing:6.025421px;}
.ws67{word-spacing:6.079219px;}
.wse{word-spacing:6.133018px;}
.ws6a{word-spacing:6.186816px;}
.ws2f{word-spacing:6.240614px;}
.wse0{word-spacing:6.563405px;}
.ws5e{word-spacing:6.617203px;}
.ws26{word-spacing:7.047590px;}
.ws92{word-spacing:7.065523px;}
.wsad{word-spacing:7.746970px;}
.wsca{word-spacing:7.926298px;}
.wscb{word-spacing:8.069760px;}
.wse3{word-spacing:8.105626px;}
.wsb4{word-spacing:8.607744px;}
.wsd8{word-spacing:8.679475px;}
.wsc9{word-spacing:8.751206px;}
.wsb8{word-spacing:8.787072px;}
.wsb1{word-spacing:8.822938px;}
.wsc0{word-spacing:8.858803px;}
.wsbd{word-spacing:8.894669px;}
.ws8c{word-spacing:8.930534px;}
.ws9d{word-spacing:8.966400px;}
.wsa9{word-spacing:9.002266px;}
.ws94{word-spacing:9.038131px;}
.ws9b{word-spacing:9.073997px;}
.wsbb{word-spacing:9.109862px;}
.wsb6{word-spacing:9.145728px;}
.wsc7{word-spacing:9.396787px;}
.wsdc{word-spacing:9.468518px;}
.ws95{word-spacing:9.683712px;}
.wsc8{word-spacing:9.755443px;}
.wsa0{word-spacing:9.791309px;}
.wsc2{word-spacing:9.863040px;}
.wsaa{word-spacing:9.898906px;}
.wsab{word-spacing:9.934771px;}
.wsc1{word-spacing:10.006502px;}
.ws81{word-spacing:10.060301px;}
.ws3f{word-spacing:10.114099px;}
.wsa8{word-spacing:10.293427px;}
.wsb2{word-spacing:10.329293px;}
.ws33{word-spacing:10.418857px;}
.wsb9{word-spacing:10.544486px;}
.ws98{word-spacing:10.759680px;}
.wsa3{word-spacing:10.974874px;}
.wsa4{word-spacing:11.154202px;}
.wsd2{word-spacing:11.369395px;}
.wsd3{word-spacing:12.911616px;}
.ws52{word-spacing:12.965414px;}
.ws90{word-spacing:12.983347px;}
.ws53{word-spacing:13.395802px;}
.wscd{word-spacing:14.561434px;}
.ws68{word-spacing:15.512740px;}
.ws25{word-spacing:16.298195px;}
.ws3a{word-spacing:16.429105px;}
.ws5d{word-spacing:17.376883px;}
.ws0{word-spacing:25.719808px;}
.ws5c{word-spacing:41.263373px;}
.ws14{word-spacing:65.389145px;}
._8{margin-left:-6.222682px;}
._3{margin-left:-5.092915px;}
._2{margin-left:-3.514829px;}
._1{margin-left:-1.549386px;}
._0{width:1.549386px;}
._10{width:2.976845px;}
._16{width:8.177357px;}
._c{width:9.181594px;}
._9{width:10.813478px;}
._5{width:12.696422px;}
._6{width:14.686963px;}
._f{width:16.318848px;}
._7{width:17.807270px;}
._e{width:19.589783px;}
._17{width:20.701616px;}
._d{width:21.878016px;}
._a{width:23.240909px;}
._11{width:25.443041px;}
._15{width:26.985262px;}
._b{width:28.262093px;}
._14{width:30.521626px;}
._12{width:33.032218px;}
._13{width:42.536602px;}
._4{width:65.454600px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y34{bottom:126.979500px;}
.y187{bottom:137.439000px;}
.y33{bottom:143.416500px;}
.y186{bottom:147.900000px;}
.y185{bottom:158.361000px;}
.y32{bottom:159.855000px;}
.y184{bottom:168.822000px;}
.y31{bottom:176.293500px;}
.y183{bottom:179.283000px;}
.y182{bottom:189.744000px;}
.y30{bottom:192.732000px;}
.y181{bottom:200.203500px;}
.y2f{bottom:209.170500px;}
.y180{bottom:210.664500px;}
.y17f{bottom:221.125500px;}
.y2e{bottom:225.609000px;}
.y17e{bottom:231.586500px;}
.y2d{bottom:242.047500px;}
.y82{bottom:246.157500px;}
.y17d{bottom:252.508500px;}
.y2c{bottom:258.486000px;}
.y137{bottom:262.596000px;}
.y17c{bottom:262.969500px;}
.y81{bottom:265.584000px;}
.y17b{bottom:273.429000px;}
.y2b{bottom:274.924500px;}
.y53{bottom:279.033000px;}
.y136{bottom:282.022500px;}
.y17a{bottom:283.890000px;}
.y2a{bottom:291.363000px;}
.y179{bottom:294.351000px;}
.y52{bottom:298.461000px;}
.y178{bottom:304.812000px;}
.y29{bottom:307.800000px;}
.y80{bottom:309.295500px;}
.ya8{bottom:311.910000px;}
.y177{bottom:315.273000px;}
.y135{bottom:322.185000px;}
.y28{bottom:324.238500px;}
.y7f{bottom:325.734000px;}
.y51{bottom:332.230500px;}
.y176{bottom:336.195000px;}
.y134{bottom:338.622000px;}
.y27{bottom:340.677000px;}
.y7e{bottom:342.172500px;}
.ybe{bottom:343.674000px;}
.ya7{bottom:345.160500px;}
.y175{bottom:346.654500px;}
.y50{bottom:348.669000px;}
.y133{bottom:355.060500px;}
.y26{bottom:357.115500px;}
.y7d{bottom:358.609500px;}
.ybd{bottom:360.111000px;}
.ya6{bottom:361.599000px;}
.y4f{bottom:365.107500px;}
.y174{bottom:367.576500px;}
.y132{bottom:371.499000px;}
.y25{bottom:373.554000px;}
.y7c{bottom:375.048000px;}
.ybc{bottom:376.549500px;}
.y158{bottom:377.664000px;}
.ya5{bottom:378.037500px;}
.y4e{bottom:381.546000px;}
.y131{bottom:387.937500px;}
.y173{bottom:388.498500px;}
.y24{bottom:389.992500px;}
.y7b{bottom:391.486500px;}
.ybb{bottom:392.988000px;}
.ydc{bottom:394.102500px;}
.ya4{bottom:394.476000px;}
.y4d{bottom:397.984500px;}
.y172{bottom:398.959500px;}
.y130{bottom:404.376000px;}
.y23{bottom:406.431000px;}
.y7a{bottom:407.925000px;}
.y171{bottom:409.419000px;}
.yba{bottom:409.426500px;}
.ya3{bottom:410.914500px;}
.ydb{bottom:413.529000px;}
.y4c{bottom:414.423000px;}
.y157{bottom:415.023000px;}
.y170{bottom:419.880000px;}
.y12f{bottom:420.814500px;}
.y22{bottom:422.869500px;}
.y79{bottom:424.363500px;}
.yb9{bottom:425.865000px;}
.ya2{bottom:427.353000px;}
.y16f{bottom:430.341000px;}
.y4b{bottom:430.861500px;}
.y156{bottom:431.461500px;}
.y12e{bottom:437.253000px;}
.y21{bottom:439.308000px;}
.y78{bottom:440.802000px;}
.yb8{bottom:442.303500px;}
.ya1{bottom:443.791500px;}
.y4a{bottom:447.300000px;}
.y155{bottom:447.900000px;}
.yda{bottom:449.020500px;}
.y16e{bottom:451.263000px;}
.y12d{bottom:453.691500px;}
.y20{bottom:455.746500px;}
.y77{bottom:457.240500px;}
.yb7{bottom:458.742000px;}
.ya0{bottom:460.228500px;}
.y16d{bottom:461.724000px;}
.y49{bottom:463.738500px;}
.y154{bottom:464.338500px;}
.yd9{bottom:465.459000px;}
.y12c{bottom:470.130000px;}
.yf0{bottom:472.185000px;}
.y76{bottom:473.679000px;}
.yb6{bottom:475.180500px;}
.y1f{bottom:476.293500px;}
.y9f{bottom:476.667000px;}
.y48{bottom:480.175500px;}
.y153{bottom:480.777000px;}
.yd8{bottom:481.897500px;}
.y16c{bottom:482.644500px;}
.y12b{bottom:486.568500px;}
.yef{bottom:488.622000px;}
.y75{bottom:490.117500px;}
.yb5{bottom:491.619000px;}
.y9e{bottom:493.105500px;}
.y10b{bottom:495.721500px;}
.y47{bottom:496.614000px;}
.y152{bottom:497.215500px;}
.yd7{bottom:498.336000px;}
.y12a{bottom:503.005500px;}
.y16b{bottom:503.566500px;}
.y74{bottom:506.556000px;}
.yb4{bottom:508.057500px;}
.yee{bottom:509.170500px;}
.y9d{bottom:509.544000px;}
.y46{bottom:513.052500px;}
.y151{bottom:513.654000px;}
.y16a{bottom:514.027500px;}
.yd6{bottom:514.774500px;}
.y129{bottom:519.444000px;}
.y1e{bottom:521.044500px;}
.y73{bottom:522.994500px;}
.y169{bottom:524.488500px;}
.yb3{bottom:524.496000px;}
.y9c{bottom:525.982500px;}
.y45{bottom:529.491000px;}
.y150{bottom:530.092500px;}
.yd5{bottom:531.213000px;}
.y168{bottom:534.949500px;}
.y128{bottom:535.882500px;}
.y1d{bottom:537.483000px;}
.y72{bottom:539.431500px;}
.yb2{bottom:540.933000px;}
.y9b{bottom:542.421000px;}
.y167{bottom:545.409000px;}
.y44{bottom:545.929500px;}
.y14f{bottom:546.531000px;}
.yd4{bottom:547.651500px;}
.y127{bottom:552.321000px;}
.y1c{bottom:553.921500px;}
.y71{bottom:555.870000px;}
.y9a{bottom:558.859500px;}
.y10a{bottom:559.045500px;}
.y43{bottom:562.368000px;}
.yd3{bottom:564.090000px;}
.yed{bottom:565.681500px;}
.y166{bottom:566.331000px;}
.y14e{bottom:567.078000px;}
.y126{bottom:568.759500px;}
.y1b{bottom:570.360000px;}
.y70{bottom:572.308500px;}
.y99{bottom:575.298000px;}
.y109{bottom:575.484000px;}
.y165{bottom:576.792000px;}
.yb1{bottom:577.158000px;}
.y42{bottom:578.806500px;}
.yd2{bottom:580.528500px;}
.yec{bottom:582.120000px;}
.y125{bottom:585.198000px;}
.y1a{bottom:586.798500px;}
.y164{bottom:587.253000px;}
.y6f{bottom:588.747000px;}
.y98{bottom:591.736500px;}
.y108{bottom:591.922500px;}
.yb0{bottom:593.596500px;}
.y41{bottom:595.245000px;}
.yd1{bottom:596.967000px;}
.y163{bottom:597.714000px;}
.yeb{bottom:598.558500px;}
.y19{bottom:603.237000px;}
.y14d{bottom:604.438500px;}
.y6e{bottom:605.185500px;}
.y124{bottom:605.746500px;}
.y97{bottom:608.175000px;}
.y107{bottom:608.361000px;}
.y40{bottom:611.683500px;}
.yd0{bottom:613.404000px;}
.yea{bottom:614.997000px;}
.y162{bottom:618.634500px;}
.y18{bottom:619.675500px;}
.y14c{bottom:620.877000px;}
.y6d{bottom:621.624000px;}
.y96{bottom:624.612000px;}
.y106{bottom:624.799500px;}
.y123{bottom:625.173000px;}
.y3f{bottom:628.122000px;}
.y161{bottom:629.095500px;}
.ycf{bottom:629.842500px;}
.ye9{bottom:631.435500px;}
.y17{bottom:636.114000px;}
.y14b{bottom:637.315500px;}
.y6c{bottom:638.062500px;}
.y160{bottom:639.556500px;}
.y95{bottom:641.050500px;}
.y105{bottom:641.238000px;}
.y3e{bottom:644.559000px;}
.yce{bottom:646.281000px;}
.ye8{bottom:647.874000px;}
.y15f{bottom:650.017500px;}
.y16{bottom:652.551000px;}
.y14a{bottom:653.754000px;}
.y6b{bottom:654.501000px;}
.y94{bottom:657.489000px;}
.y104{bottom:657.676500px;}
.y15e{bottom:660.478500px;}
.y3d{bottom:660.997500px;}
.ycd{bottom:662.719500px;}
.ye7{bottom:664.312500px;}
.y122{bottom:665.335500px;}
.y15{bottom:668.989500px;}
.y149{bottom:670.192500px;}
.y6a{bottom:670.939500px;}
.y93{bottom:673.927500px;}
.y3c{bottom:677.436000px;}
.y103{bottom:678.223500px;}
.ycc{bottom:679.158000px;}
.ye6{bottom:680.751000px;}
.y15d{bottom:681.399000px;}
.y121{bottom:681.774000px;}
.y14{bottom:685.428000px;}
.y148{bottom:686.629500px;}
.y69{bottom:687.378000px;}
.y15c{bottom:691.860000px;}
.y92{bottom:694.476000px;}
.ycb{bottom:695.596500px;}
.ye5{bottom:697.188000px;}
.y102{bottom:697.651500px;}
.y3b{bottom:697.984500px;}
.y120{bottom:698.211000px;}
.y13{bottom:701.866500px;}
.y15b{bottom:702.321000px;}
.y147{bottom:703.068000px;}
.y68{bottom:703.815000px;}
.yca{bottom:712.035000px;}
.y1a3{bottom:712.782000px;}
.ye4{bottom:713.626500px;}
.y91{bottom:713.902500px;}
.y11f{bottom:714.649500px;}
.y15a{bottom:716.892000px;}
.y12{bottom:718.305000px;}
.y146{bottom:719.506500px;}
.y3a{bottom:721.521000px;}
.y1a2{bottom:723.243000px;}
.y67{bottom:724.363500px;}
.yc9{bottom:728.473500px;}
.ye3{bottom:730.065000px;}
.y11e{bottom:731.088000px;}
.y1a1{bottom:733.704000px;}
.y11{bottom:734.743500px;}
.y145{bottom:735.945000px;}
.y1a0{bottom:744.165000px;}
.yc8{bottom:744.912000px;}
.ye2{bottom:746.503500px;}
.y90{bottom:747.153000px;}
.y11d{bottom:747.526500px;}
.y10{bottom:751.182000px;}
.y159{bottom:751.636500px;}
.y144{bottom:752.383500px;}
.y19f{bottom:754.624500px;}
.y39{bottom:755.292000px;}
.y101{bottom:760.977000px;}
.yc7{bottom:761.350500px;}
.y8f{bottom:763.591500px;}
.y11c{bottom:763.965000px;}
.y19e{bottom:765.085500px;}
.yf{bottom:767.620500px;}
.y66{bottom:768.075000px;}
.y143{bottom:768.822000px;}
.y38{bottom:771.729000px;}
.y19d{bottom:775.546500px;}
.y100{bottom:777.414000px;}
.yc6{bottom:777.789000px;}
.y8e{bottom:780.030000px;}
.y11b{bottom:780.403500px;}
.ye{bottom:784.059000px;}
.y65{bottom:784.513500px;}
.y142{bottom:785.260500px;}
.y19c{bottom:786.007500px;}
.y37{bottom:788.167500px;}
.ye1{bottom:789.645000px;}
.yff{bottom:793.852500px;}
.yc5{bottom:794.226000px;}
.y8d{bottom:796.468500px;}
.y11a{bottom:796.842000px;}
.yd{bottom:800.497500px;}
.y64{bottom:800.952000px;}
.y141{bottom:801.699000px;}
.y36{bottom:804.606000px;}
.ye0{bottom:806.083500px;}
.y19b{bottom:806.929500px;}
.yfe{bottom:810.291000px;}
.yc4{bottom:810.664500px;}
.y8c{bottom:812.907000px;}
.y119{bottom:813.280500px;}
.yaf{bottom:814.393500px;}
.yc{bottom:816.934500px;}
.y63{bottom:817.390500px;}
.y140{bottom:818.137500px;}
.y35{bottom:821.044500px;}
.ydf{bottom:822.522000px;}
.yfd{bottom:826.729500px;}
.yc3{bottom:827.103000px;}
.y19a{bottom:827.850000px;}
.y8b{bottom:829.345500px;}
.y118{bottom:829.719000px;}
.yae{bottom:830.832000px;}
.y62{bottom:833.827500px;}
.y13f{bottom:834.576000px;}
.yb{bottom:837.483000px;}
.y199{bottom:838.311000px;}
.yde{bottom:838.960500px;}
.yfc{bottom:843.168000px;}
.yc2{bottom:843.541500px;}
.y8a{bottom:845.784000px;}
.y117{bottom:846.157500px;}
.yad{bottom:847.270500px;}
.y198{bottom:848.772000px;}
.y61{bottom:850.266000px;}
.y13e{bottom:851.013000px;}
.y197{bottom:859.233000px;}
.ydd{bottom:859.509000px;}
.yfb{bottom:859.606500px;}
.yc1{bottom:859.980000px;}
.y89{bottom:862.221000px;}
.y116{bottom:862.594500px;}
.yac{bottom:863.709000px;}
.y60{bottom:866.704500px;}
.y13d{bottom:867.451500px;}
.ya{bottom:867.460500px;}
.y196{bottom:869.694000px;}
.yfa{bottom:876.045000px;}
.yc0{bottom:876.418500px;}
.y88{bottom:878.659500px;}
.y115{bottom:879.033000px;}
.yab{bottom:880.147500px;}
.y195{bottom:880.155000px;}
.y5f{bottom:883.143000px;}
.y13c{bottom:883.890000px;}
.y9{bottom:885.393000px;}
.y194{bottom:890.614500px;}
.yf9{bottom:892.483500px;}
.y87{bottom:895.098000px;}
.y114{bottom:895.471500px;}
.yaa{bottom:896.586000px;}
.ybf{bottom:896.967000px;}
.y5e{bottom:899.581500px;}
.y13b{bottom:900.328500px;}
.y193{bottom:901.075500px;}
.y8{bottom:903.325500px;}
.yf8{bottom:908.922000px;}
.y86{bottom:911.536500px;}
.y113{bottom:911.910000px;}
.y5d{bottom:916.020000px;}
.y13a{bottom:916.767000px;}
.ya9{bottom:917.133000px;}
.y7{bottom:921.259500px;}
.y192{bottom:921.997500px;}
.yf7{bottom:925.360500px;}
.y85{bottom:927.975000px;}
.y112{bottom:928.348500px;}
.y5c{bottom:932.458500px;}
.y139{bottom:937.315500px;}
.yf6{bottom:941.797500px;}
.y191{bottom:942.919500px;}
.y84{bottom:944.413500px;}
.y111{bottom:944.787000px;}
.y5b{bottom:948.897000px;}
.y190{bottom:953.380500px;}
.y5{bottom:955.038000px;}
.yf5{bottom:958.236000px;}
.y138{bottom:960.852000px;}
.y110{bottom:961.225500px;}
.y18f{bottom:963.840000px;}
.y83{bottom:964.962000px;}
.y5a{bottom:965.335500px;}
.y4{bottom:972.970500px;}
.y18e{bottom:974.301000px;}
.yf4{bottom:974.674500px;}
.y10f{bottom:977.664000px;}
.y59{bottom:981.774000px;}
.y18d{bottom:984.762000px;}
.y6{bottom:990.903000px;}
.y3{bottom:990.904500px;}
.yf3{bottom:991.113000px;}
.y10e{bottom:994.102500px;}
.y18c{bottom:995.223000px;}
.y58{bottom:998.211000px;}
.y18b{bottom:1005.684000px;}
.yf2{bottom:1007.551500px;}
.y2{bottom:1008.837000px;}
.y10d{bottom:1010.541000px;}
.y57{bottom:1014.649500px;}
.y18a{bottom:1016.145000px;}
.y189{bottom:1026.604500px;}
.y10c{bottom:1026.979500px;}
.yf1{bottom:1028.100000px;}
.y56{bottom:1031.088000px;}
.y188{bottom:1037.065500px;}
.y1{bottom:1044.562500px;}
.y55{bottom:1047.526500px;}
.y54{bottom:1088.323500px;}
.h8{height:23.832691px;}
.h9{height:26.397082px;}
.h6{height:29.206274px;}
.h7{height:38.734848px;}
.h5{height:39.595622px;}
.h3{height:43.994842px;}
.h4{height:47.127312px;}
.h2{height:52.794163px;}
.h1{height:72.098095px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:80.697000px;}
.x66{left:85.389000px;}
.x17{left:95.641500px;}
.x67{left:97.897500px;}
.x6a{left:101.197500px;}
.x75{left:102.892500px;}
.x34{left:105.472500px;}
.x4e{left:109.480500px;}
.x6b{left:113.706000px;}
.x30{left:117.876000px;}
.x68{left:119.602500px;}
.x4f{left:123.637500px;}
.x2d{left:128.887500px;}
.x5{left:130.569000px;}
.x69{left:132.111000px;}
.x6e{left:138.918000px;}
.x2e{left:141.396000px;}
.x4{left:143.032500px;}
.x31{left:146.298000px;}
.x3{left:147.822000px;}
.x73{left:149.575500px;}
.x2{left:152.031000px;}
.x32{left:158.806500px;}
.x2f{left:159.841500px;}
.x56{left:160.998000px;}
.x74{left:162.082500px;}
.x54{left:166.720500px;}
.x57{left:173.506500px;}
.x55{left:179.229000px;}
.x58{left:192.295500px;}
.x59{left:198.577500px;}
.x1{left:205.120500px;}
.x5a{left:211.084500px;}
.x4c{left:216.877500px;}
.x4d{left:229.386000px;}
.x6f{left:233.922000px;}
.x28{left:239.335500px;}
.x5b{left:243.844500px;}
.x70{left:246.429000px;}
.x29{left:251.844000px;}
.x11{left:252.934500px;}
.x5c{left:256.353000px;}
.x33{left:259.098000px;}
.x52{left:262.021500px;}
.x10{left:265.398000px;}
.xf{left:270.964500px;}
.x53{left:274.528500px;}
.xe{left:288.537000px;}
.x5d{left:324.160500px;}
.x5e{left:330.414000px;}
.x71{left:341.188500px;}
.x72{left:353.695500px;}
.x6c{left:362.601000px;}
.x6d{left:375.109500px;}
.x9{left:376.794000px;}
.x2a{left:386.065500px;}
.x8{left:389.256000px;}
.x2b{left:392.319000px;}
.x7{left:398.739000px;}
.x6{left:404.836500px;}
.x2c{left:410.658000px;}
.x42{left:416.749500px;}
.x40{left:422.728500px;}
.x50{left:423.867000px;}
.x41{left:435.237000px;}
.x51{left:436.375500px;}
.x19{left:476.932500px;}
.x47{left:481.654500px;}
.x18{left:491.877000px;}
.x48{left:494.161500px;}
.x15{left:499.158000px;}
.x5f{left:501.102000px;}
.x27{left:504.327000px;}
.x25{left:506.236500px;}
.x14{left:511.621500px;}
.x24{left:514.111500px;}
.x26{left:518.745000px;}
.x13{left:527.821500px;}
.x3d{left:532.020000px;}
.x12{left:538.293000px;}
.x43{left:550.156500px;}
.x44{left:583.377000px;}
.x45{left:595.885500px;}
.x1e{left:597.694500px;}
.x1f{left:610.203000px;}
.xd{left:623.017500px;}
.xc{left:635.481000px;}
.xb{left:641.749500px;}
.x20{left:657.604500px;}
.xa{left:661.032000px;}
.x3e{left:665.014500px;}
.x21{left:670.113000px;}
.x3f{left:671.269500px;}
.x22{left:676.444500px;}
.x1c{left:679.281000px;}
.x23{left:688.953000px;}
.x1d{left:691.788000px;}
.x46{left:692.890500px;}
.x1a{left:704.775000px;}
.x39{left:708.468000px;}
.x1b{left:711.028500px;}
.x3a{left:720.976500px;}
.x64{left:726.321000px;}
.x60{left:735.156000px;}
.x62{left:736.752000px;}
.x65{left:738.829500px;}
.x63{left:743.005500px;}
.x61{left:747.664500px;}
.x49{left:763.665000px;}
.x3b{left:766.696500px;}
.x4a{left:776.173500px;}
.x3c{left:779.205000px;}
.x4b{left:800.515500px;}
.x35{left:806.259000px;}
.x36{left:812.512500px;}
.x37{left:818.964000px;}
.x38{left:831.472500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.283467pt;}
.ws62{word-spacing:-11.955200pt;}
.ws99{word-spacing:-7.970133pt;}
.ws7b{word-spacing:-3.730022pt;}
.ws4d{word-spacing:-3.538739pt;}
.ws59{word-spacing:-3.443098pt;}
.ws79{word-spacing:-3.251814pt;}
.ws7f{word-spacing:-3.156173pt;}
.ws61{word-spacing:-3.108352pt;}
.ws51{word-spacing:-3.060531pt;}
.ws6b{word-spacing:-3.012710pt;}
.ws1f{word-spacing:-2.917069pt;}
.ws70{word-spacing:-2.773606pt;}
.wsbe{word-spacing:-2.391040pt;}
.ws7a{word-spacing:-2.295398pt;}
.ws4c{word-spacing:-2.247578pt;}
.ws84{word-spacing:-2.199757pt;}
.ws5f{word-spacing:-2.151936pt;}
.wsdf{word-spacing:-2.104115pt;}
.wsaf{word-spacing:-2.072235pt;}
.ws76{word-spacing:-2.056294pt;}
.ws85{word-spacing:-2.008474pt;}
.ws44{word-spacing:-1.912832pt;}
.ws72{word-spacing:-1.817190pt;}
.wsd1{word-spacing:-1.785310pt;}
.ws23{word-spacing:-1.769370pt;}
.ws1b{word-spacing:-1.721549pt;}
.ws93{word-spacing:-1.657788pt;}
.ws82{word-spacing:-1.625907pt;}
.wsc4{word-spacing:-1.594027pt;}
.ws66{word-spacing:-1.578086pt;}
.ws49{word-spacing:-1.530266pt;}
.ws4a{word-spacing:-1.482445pt;}
.wsa6{word-spacing:-1.466505pt;}
.ws17{word-spacing:-1.386803pt;}
.ws2c{word-spacing:-1.338982pt;}
.ws38{word-spacing:-1.291162pt;}
.wsd0{word-spacing:-1.275221pt;}
.ws6c{word-spacing:-1.243341pt;}
.ws7e{word-spacing:-1.195520pt;}
.wsda{word-spacing:-1.179580pt;}
.ws7{word-spacing:-1.147699pt;}
.ws77{word-spacing:-1.099878pt;}
.ws69{word-spacing:-1.052058pt;}
.wsae{word-spacing:-1.020177pt;}
.ws39{word-spacing:-0.956416pt;}
.wsc5{word-spacing:-0.924535pt;}
.ws7c{word-spacing:-0.908595pt;}
.ws73{word-spacing:-0.860774pt;}
.ws3{word-spacing:-0.812954pt;}
.ws83{word-spacing:-0.765133pt;}
.wse2{word-spacing:-0.733252pt;}
.ws5a{word-spacing:-0.669491pt;}
.ws2a{word-spacing:-0.621670pt;}
.wsb7{word-spacing:-0.605730pt;}
.ws45{word-spacing:-0.573850pt;}
.ws75{word-spacing:-0.526029pt;}
.wsd4{word-spacing:-0.510089pt;}
.ws19{word-spacing:-0.382566pt;}
.wsd6{word-spacing:-0.350686pt;}
.ws91{word-spacing:-0.318805pt;}
.ws1a{word-spacing:-0.286925pt;}
.wsa{word-spacing:-0.239104pt;}
.wsd7{word-spacing:-0.223164pt;}
.ws6{word-spacing:-0.191283pt;}
.wsb5{word-spacing:-0.159403pt;}
.ws21{word-spacing:-0.143462pt;}
.wsa1{word-spacing:-0.127522pt;}
.ws11{word-spacing:-0.095642pt;}
.wsa2{word-spacing:-0.063761pt;}
.ws63{word-spacing:-0.058182pt;}
.wsd{word-spacing:-0.047821pt;}
.ws8b{word-spacing:-0.031881pt;}
.ws1{word-spacing:0.000000pt;}
.ws9c{word-spacing:0.031881pt;}
.ws5{word-spacing:0.047821pt;}
.ws9e{word-spacing:0.063761pt;}
.ws13{word-spacing:0.095642pt;}
.ws8a{word-spacing:0.127522pt;}
.ws20{word-spacing:0.143462pt;}
.ws9a{word-spacing:0.159403pt;}
.ws40{word-spacing:0.191283pt;}
.ws12{word-spacing:0.239104pt;}
.ws4{word-spacing:0.286925pt;}
.wsde{word-spacing:0.318805pt;}
.ws71{word-spacing:0.334746pt;}
.ws4b{word-spacing:0.382566pt;}
.wsc6{word-spacing:0.414447pt;}
.ws3d{word-spacing:0.430387pt;}
.wsdd{word-spacing:0.478208pt;}
.ws1c{word-spacing:0.526029pt;}
.ws2d{word-spacing:0.621670pt;}
.wse5{word-spacing:0.637611pt;}
.wsac{word-spacing:0.669491pt;}
.ws55{word-spacing:0.717312pt;}
.wsbf{word-spacing:0.733252pt;}
.wsf{word-spacing:0.765133pt;}
.wsdb{word-spacing:0.797013pt;}
.ws86{word-spacing:0.812954pt;}
.wsc3{word-spacing:0.828894pt;}
.ws54{word-spacing:0.860774pt;}
.ws6d{word-spacing:0.908595pt;}
.ws27{word-spacing:0.956416pt;}
.wscf{word-spacing:0.988297pt;}
.wsb{word-spacing:1.004237pt;}
.ws34{word-spacing:1.052058pt;}
.ws1e{word-spacing:1.099878pt;}
.ws6e{word-spacing:1.195520pt;}
.wsa7{word-spacing:1.211460pt;}
.ws78{word-spacing:1.243341pt;}
.ws80{word-spacing:1.291162pt;}
.ws30{word-spacing:1.338982pt;}
.ws35{word-spacing:1.386803pt;}
.ws89{word-spacing:1.402743pt;}
.ws6f{word-spacing:1.434624pt;}
.wsb0{word-spacing:1.466505pt;}
.ws48{word-spacing:1.530266pt;}
.ws97{word-spacing:1.562146pt;}
.ws2e{word-spacing:1.625907pt;}
.ws32{word-spacing:1.673728pt;}
.ws58{word-spacing:1.721549pt;}
.ws37{word-spacing:1.769370pt;}
.ws4f{word-spacing:1.817190pt;}
.wsc{word-spacing:1.865011pt;}
.wse1{word-spacing:1.880951pt;}
.ws24{word-spacing:1.912832pt;}
.wsa5{word-spacing:1.976593pt;}
.ws47{word-spacing:2.008474pt;}
.ws22{word-spacing:2.056294pt;}
.ws64{word-spacing:2.104115pt;}
.ws3c{word-spacing:2.199757pt;}
.ws18{word-spacing:2.247578pt;}
.ws15{word-spacing:2.295398pt;}
.ws8d{word-spacing:2.327279pt;}
.ws31{word-spacing:2.343219pt;}
.wse4{word-spacing:2.359159pt;}
.ws42{word-spacing:2.391040pt;}
.ws65{word-spacing:2.438861pt;}
.ws8e{word-spacing:2.454801pt;}
.ws10{word-spacing:2.486682pt;}
.ws2b{word-spacing:2.534502pt;}
.ws43{word-spacing:2.582323pt;}
.ws28{word-spacing:2.630144pt;}
.ws3e{word-spacing:2.677965pt;}
.ws41{word-spacing:2.725786pt;}
.wsd9{word-spacing:2.773606pt;}
.wsb3{word-spacing:2.805487pt;}
.wsce{word-spacing:2.869248pt;}
.ws16{word-spacing:2.917069pt;}
.ws74{word-spacing:2.964890pt;}
.ws3b{word-spacing:3.012710pt;}
.ws9{word-spacing:3.060531pt;}
.ws57{word-spacing:3.108352pt;}
.ws56{word-spacing:3.156173pt;}
.wsd5{word-spacing:3.188053pt;}
.ws36{word-spacing:3.251814pt;}
.ws96{word-spacing:3.283695pt;}
.ws1d{word-spacing:3.299635pt;}
.wsba{word-spacing:3.379337pt;}
.ws9f{word-spacing:3.506859pt;}
.wse6{word-spacing:3.538739pt;}
.ws8f{word-spacing:3.570620pt;}
.ws46{word-spacing:3.634381pt;}
.ws8{word-spacing:3.777843pt;}
.ws50{word-spacing:3.873485pt;}
.ws29{word-spacing:4.112589pt;}
.wscc{word-spacing:4.240111pt;}
.ws4e{word-spacing:4.542976pt;}
.wsbc{word-spacing:4.622677pt;}
.ws5b{word-spacing:4.638618pt;}
.ws7d{word-spacing:4.734259pt;}
.ws60{word-spacing:4.782080pt;}
.ws87{word-spacing:4.877722pt;}
.ws88{word-spacing:5.355930pt;}
.ws67{word-spacing:5.403750pt;}
.wse{word-spacing:5.451571pt;}
.ws6a{word-spacing:5.499392pt;}
.ws2f{word-spacing:5.547213pt;}
.wse0{word-spacing:5.834138pt;}
.ws5e{word-spacing:5.881958pt;}
.ws26{word-spacing:6.264525pt;}
.ws92{word-spacing:6.280465pt;}
.wsad{word-spacing:6.886195pt;}
.wsca{word-spacing:7.045598pt;}
.wscb{word-spacing:7.173120pt;}
.wse3{word-spacing:7.205001pt;}
.wsb4{word-spacing:7.651328pt;}
.wsd8{word-spacing:7.715089pt;}
.wsc9{word-spacing:7.778850pt;}
.wsb8{word-spacing:7.810731pt;}
.wsb1{word-spacing:7.842611pt;}
.wsc0{word-spacing:7.874492pt;}
.wsbd{word-spacing:7.906372pt;}
.ws8c{word-spacing:7.938253pt;}
.ws9d{word-spacing:7.970133pt;}
.wsa9{word-spacing:8.002014pt;}
.ws94{word-spacing:8.033894pt;}
.ws9b{word-spacing:8.065775pt;}
.wsbb{word-spacing:8.097655pt;}
.wsb6{word-spacing:8.129536pt;}
.wsc7{word-spacing:8.352700pt;}
.wsdc{word-spacing:8.416461pt;}
.ws95{word-spacing:8.607744pt;}
.wsc8{word-spacing:8.671505pt;}
.wsa0{word-spacing:8.703386pt;}
.wsc2{word-spacing:8.767147pt;}
.wsaa{word-spacing:8.799027pt;}
.wsab{word-spacing:8.830908pt;}
.wsc1{word-spacing:8.894669pt;}
.ws81{word-spacing:8.942490pt;}
.ws3f{word-spacing:8.990310pt;}
.wsa8{word-spacing:9.149713pt;}
.wsb2{word-spacing:9.181594pt;}
.ws33{word-spacing:9.261206pt;}
.wsb9{word-spacing:9.372877pt;}
.ws98{word-spacing:9.564160pt;}
.wsa3{word-spacing:9.755443pt;}
.wsa4{word-spacing:9.914846pt;}
.wsd2{word-spacing:10.106129pt;}
.wsd3{word-spacing:11.476992pt;}
.ws52{word-spacing:11.524813pt;}
.ws90{word-spacing:11.540753pt;}
.ws53{word-spacing:11.907379pt;}
.wscd{word-spacing:12.943497pt;}
.ws68{word-spacing:13.789102pt;}
.ws25{word-spacing:14.487285pt;}
.ws3a{word-spacing:14.603649pt;}
.ws5d{word-spacing:15.446118pt;}
.ws0{word-spacing:22.862051pt;}
.ws5c{word-spacing:36.678554pt;}
.ws14{word-spacing:58.123685pt;}
._8{margin-left:-5.531273pt;}
._3{margin-left:-4.527036pt;}
._2{margin-left:-3.124292pt;}
._1{margin-left:-1.377232pt;}
._0{width:1.377232pt;}
._10{width:2.646084pt;}
._16{width:7.268762pt;}
._c{width:8.161417pt;}
._9{width:9.611981pt;}
._5{width:11.285709pt;}
._6{width:13.055078pt;}
._f{width:14.505643pt;}
._7{width:15.828685pt;}
._e{width:17.413140pt;}
._17{width:18.401437pt;}
._d{width:19.447125pt;}
._a{width:20.658586pt;}
._11{width:22.616036pt;}
._15{width:23.986899pt;}
._b{width:25.121860pt;}
._14{width:27.130334pt;}
._12{width:29.361971pt;}
._13{width:37.810313pt;}
._4{width:58.181867pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:112.870667pt;}
.y187{bottom:122.168000pt;}
.y33{bottom:127.481333pt;}
.y186{bottom:131.466667pt;}
.y185{bottom:140.765333pt;}
.y32{bottom:142.093333pt;}
.y184{bottom:150.064000pt;}
.y31{bottom:156.705333pt;}
.y183{bottom:159.362667pt;}
.y182{bottom:168.661333pt;}
.y30{bottom:171.317333pt;}
.y181{bottom:177.958667pt;}
.y2f{bottom:185.929333pt;}
.y180{bottom:187.257333pt;}
.y17f{bottom:196.556000pt;}
.y2e{bottom:200.541333pt;}
.y17e{bottom:205.854667pt;}
.y2d{bottom:215.153333pt;}
.y82{bottom:218.806667pt;}
.y17d{bottom:224.452000pt;}
.y2c{bottom:229.765333pt;}
.y137{bottom:233.418667pt;}
.y17c{bottom:233.750667pt;}
.y81{bottom:236.074667pt;}
.y17b{bottom:243.048000pt;}
.y2b{bottom:244.377333pt;}
.y53{bottom:248.029333pt;}
.y136{bottom:250.686667pt;}
.y17a{bottom:252.346667pt;}
.y2a{bottom:258.989333pt;}
.y179{bottom:261.645333pt;}
.y52{bottom:265.298667pt;}
.y178{bottom:270.944000pt;}
.y29{bottom:273.600000pt;}
.y80{bottom:274.929333pt;}
.ya8{bottom:277.253333pt;}
.y177{bottom:280.242667pt;}
.y135{bottom:286.386667pt;}
.y28{bottom:288.212000pt;}
.y7f{bottom:289.541333pt;}
.y51{bottom:295.316000pt;}
.y176{bottom:298.840000pt;}
.y134{bottom:300.997333pt;}
.y27{bottom:302.824000pt;}
.y7e{bottom:304.153333pt;}
.ybe{bottom:305.488000pt;}
.ya7{bottom:306.809333pt;}
.y175{bottom:308.137333pt;}
.y50{bottom:309.928000pt;}
.y133{bottom:315.609333pt;}
.y26{bottom:317.436000pt;}
.y7d{bottom:318.764000pt;}
.ybd{bottom:320.098667pt;}
.ya6{bottom:321.421333pt;}
.y4f{bottom:324.540000pt;}
.y174{bottom:326.734667pt;}
.y132{bottom:330.221333pt;}
.y25{bottom:332.048000pt;}
.y7c{bottom:333.376000pt;}
.ybc{bottom:334.710667pt;}
.y158{bottom:335.701333pt;}
.ya5{bottom:336.033333pt;}
.y4e{bottom:339.152000pt;}
.y131{bottom:344.833333pt;}
.y173{bottom:345.332000pt;}
.y24{bottom:346.660000pt;}
.y7b{bottom:347.988000pt;}
.ybb{bottom:349.322667pt;}
.ydc{bottom:350.313333pt;}
.ya4{bottom:350.645333pt;}
.y4d{bottom:353.764000pt;}
.y172{bottom:354.630667pt;}
.y130{bottom:359.445333pt;}
.y23{bottom:361.272000pt;}
.y7a{bottom:362.600000pt;}
.y171{bottom:363.928000pt;}
.yba{bottom:363.934667pt;}
.ya3{bottom:365.257333pt;}
.ydb{bottom:367.581333pt;}
.y4c{bottom:368.376000pt;}
.y157{bottom:368.909333pt;}
.y170{bottom:373.226667pt;}
.y12f{bottom:374.057333pt;}
.y22{bottom:375.884000pt;}
.y79{bottom:377.212000pt;}
.yb9{bottom:378.546667pt;}
.ya2{bottom:379.869333pt;}
.y16f{bottom:382.525333pt;}
.y4b{bottom:382.988000pt;}
.y156{bottom:383.521333pt;}
.y12e{bottom:388.669333pt;}
.y21{bottom:390.496000pt;}
.y78{bottom:391.824000pt;}
.yb8{bottom:393.158667pt;}
.ya1{bottom:394.481333pt;}
.y4a{bottom:397.600000pt;}
.y155{bottom:398.133333pt;}
.yda{bottom:399.129333pt;}
.y16e{bottom:401.122667pt;}
.y12d{bottom:403.281333pt;}
.y20{bottom:405.108000pt;}
.y77{bottom:406.436000pt;}
.yb7{bottom:407.770667pt;}
.ya0{bottom:409.092000pt;}
.y16d{bottom:410.421333pt;}
.y49{bottom:412.212000pt;}
.y154{bottom:412.745333pt;}
.yd9{bottom:413.741333pt;}
.y12c{bottom:417.893333pt;}
.yf0{bottom:419.720000pt;}
.y76{bottom:421.048000pt;}
.yb6{bottom:422.382667pt;}
.y1f{bottom:423.372000pt;}
.y9f{bottom:423.704000pt;}
.y48{bottom:426.822667pt;}
.y153{bottom:427.357333pt;}
.yd8{bottom:428.353333pt;}
.y16c{bottom:429.017333pt;}
.y12b{bottom:432.505333pt;}
.yef{bottom:434.330667pt;}
.y75{bottom:435.660000pt;}
.yb5{bottom:436.994667pt;}
.y9e{bottom:438.316000pt;}
.y10b{bottom:440.641333pt;}
.y47{bottom:441.434667pt;}
.y152{bottom:441.969333pt;}
.yd7{bottom:442.965333pt;}
.y12a{bottom:447.116000pt;}
.y16b{bottom:447.614667pt;}
.y74{bottom:450.272000pt;}
.yb4{bottom:451.606667pt;}
.yee{bottom:452.596000pt;}
.y9d{bottom:452.928000pt;}
.y46{bottom:456.046667pt;}
.y151{bottom:456.581333pt;}
.y16a{bottom:456.913333pt;}
.yd6{bottom:457.577333pt;}
.y129{bottom:461.728000pt;}
.y1e{bottom:463.150667pt;}
.y73{bottom:464.884000pt;}
.y169{bottom:466.212000pt;}
.yb3{bottom:466.218667pt;}
.y9c{bottom:467.540000pt;}
.y45{bottom:470.658667pt;}
.y150{bottom:471.193333pt;}
.yd5{bottom:472.189333pt;}
.y168{bottom:475.510667pt;}
.y128{bottom:476.340000pt;}
.y1d{bottom:477.762667pt;}
.y72{bottom:479.494667pt;}
.yb2{bottom:480.829333pt;}
.y9b{bottom:482.152000pt;}
.y167{bottom:484.808000pt;}
.y44{bottom:485.270667pt;}
.y14f{bottom:485.805333pt;}
.yd4{bottom:486.801333pt;}
.y127{bottom:490.952000pt;}
.y1c{bottom:492.374667pt;}
.y71{bottom:494.106667pt;}
.y9a{bottom:496.764000pt;}
.y10a{bottom:496.929333pt;}
.y43{bottom:499.882667pt;}
.yd3{bottom:501.413333pt;}
.yed{bottom:502.828000pt;}
.y166{bottom:503.405333pt;}
.y14e{bottom:504.069333pt;}
.y126{bottom:505.564000pt;}
.y1b{bottom:506.986667pt;}
.y70{bottom:508.718667pt;}
.y99{bottom:511.376000pt;}
.y109{bottom:511.541333pt;}
.y165{bottom:512.704000pt;}
.yb1{bottom:513.029333pt;}
.y42{bottom:514.494667pt;}
.yd2{bottom:516.025333pt;}
.yec{bottom:517.440000pt;}
.y125{bottom:520.176000pt;}
.y1a{bottom:521.598667pt;}
.y164{bottom:522.002667pt;}
.y6f{bottom:523.330667pt;}
.y98{bottom:525.988000pt;}
.y108{bottom:526.153333pt;}
.yb0{bottom:527.641333pt;}
.y41{bottom:529.106667pt;}
.yd1{bottom:530.637333pt;}
.y163{bottom:531.301333pt;}
.yeb{bottom:532.052000pt;}
.y19{bottom:536.210667pt;}
.y14d{bottom:537.278667pt;}
.y6e{bottom:537.942667pt;}
.y124{bottom:538.441333pt;}
.y97{bottom:540.600000pt;}
.y107{bottom:540.765333pt;}
.y40{bottom:543.718667pt;}
.yd0{bottom:545.248000pt;}
.yea{bottom:546.664000pt;}
.y162{bottom:549.897333pt;}
.y18{bottom:550.822667pt;}
.y14c{bottom:551.890667pt;}
.y6d{bottom:552.554667pt;}
.y96{bottom:555.210667pt;}
.y106{bottom:555.377333pt;}
.y123{bottom:555.709333pt;}
.y3f{bottom:558.330667pt;}
.y161{bottom:559.196000pt;}
.ycf{bottom:559.860000pt;}
.ye9{bottom:561.276000pt;}
.y17{bottom:565.434667pt;}
.y14b{bottom:566.502667pt;}
.y6c{bottom:567.166667pt;}
.y160{bottom:568.494667pt;}
.y95{bottom:569.822667pt;}
.y105{bottom:569.989333pt;}
.y3e{bottom:572.941333pt;}
.yce{bottom:574.472000pt;}
.ye8{bottom:575.888000pt;}
.y15f{bottom:577.793333pt;}
.y16{bottom:580.045333pt;}
.y14a{bottom:581.114667pt;}
.y6b{bottom:581.778667pt;}
.y94{bottom:584.434667pt;}
.y104{bottom:584.601333pt;}
.y15e{bottom:587.092000pt;}
.y3d{bottom:587.553333pt;}
.ycd{bottom:589.084000pt;}
.ye7{bottom:590.500000pt;}
.y122{bottom:591.409333pt;}
.y15{bottom:594.657333pt;}
.y149{bottom:595.726667pt;}
.y6a{bottom:596.390667pt;}
.y93{bottom:599.046667pt;}
.y3c{bottom:602.165333pt;}
.y103{bottom:602.865333pt;}
.ycc{bottom:603.696000pt;}
.ye6{bottom:605.112000pt;}
.y15d{bottom:605.688000pt;}
.y121{bottom:606.021333pt;}
.y14{bottom:609.269333pt;}
.y148{bottom:610.337333pt;}
.y69{bottom:611.002667pt;}
.y15c{bottom:614.986667pt;}
.y92{bottom:617.312000pt;}
.ycb{bottom:618.308000pt;}
.ye5{bottom:619.722667pt;}
.y102{bottom:620.134667pt;}
.y3b{bottom:620.430667pt;}
.y120{bottom:620.632000pt;}
.y13{bottom:623.881333pt;}
.y15b{bottom:624.285333pt;}
.y147{bottom:624.949333pt;}
.y68{bottom:625.613333pt;}
.yca{bottom:632.920000pt;}
.y1a3{bottom:633.584000pt;}
.ye4{bottom:634.334667pt;}
.y91{bottom:634.580000pt;}
.y11f{bottom:635.244000pt;}
.y15a{bottom:637.237333pt;}
.y12{bottom:638.493333pt;}
.y146{bottom:639.561333pt;}
.y3a{bottom:641.352000pt;}
.y1a2{bottom:642.882667pt;}
.y67{bottom:643.878667pt;}
.yc9{bottom:647.532000pt;}
.ye3{bottom:648.946667pt;}
.y11e{bottom:649.856000pt;}
.y1a1{bottom:652.181333pt;}
.y11{bottom:653.105333pt;}
.y145{bottom:654.173333pt;}
.y1a0{bottom:661.480000pt;}
.yc8{bottom:662.144000pt;}
.ye2{bottom:663.558667pt;}
.y90{bottom:664.136000pt;}
.y11d{bottom:664.468000pt;}
.y10{bottom:667.717333pt;}
.y159{bottom:668.121333pt;}
.y144{bottom:668.785333pt;}
.y19f{bottom:670.777333pt;}
.y39{bottom:671.370667pt;}
.y101{bottom:676.424000pt;}
.yc7{bottom:676.756000pt;}
.y8f{bottom:678.748000pt;}
.y11c{bottom:679.080000pt;}
.y19e{bottom:680.076000pt;}
.yf{bottom:682.329333pt;}
.y66{bottom:682.733333pt;}
.y143{bottom:683.397333pt;}
.y38{bottom:685.981333pt;}
.y19d{bottom:689.374667pt;}
.y100{bottom:691.034667pt;}
.yc6{bottom:691.368000pt;}
.y8e{bottom:693.360000pt;}
.y11b{bottom:693.692000pt;}
.ye{bottom:696.941333pt;}
.y65{bottom:697.345333pt;}
.y142{bottom:698.009333pt;}
.y19c{bottom:698.673333pt;}
.y37{bottom:700.593333pt;}
.ye1{bottom:701.906667pt;}
.yff{bottom:705.646667pt;}
.yc5{bottom:705.978667pt;}
.y8d{bottom:707.972000pt;}
.y11a{bottom:708.304000pt;}
.yd{bottom:711.553333pt;}
.y64{bottom:711.957333pt;}
.y141{bottom:712.621333pt;}
.y36{bottom:715.205333pt;}
.ye0{bottom:716.518667pt;}
.y19b{bottom:717.270667pt;}
.yfe{bottom:720.258667pt;}
.yc4{bottom:720.590667pt;}
.y8c{bottom:722.584000pt;}
.y119{bottom:722.916000pt;}
.yaf{bottom:723.905333pt;}
.yc{bottom:726.164000pt;}
.y63{bottom:726.569333pt;}
.y140{bottom:727.233333pt;}
.y35{bottom:729.817333pt;}
.ydf{bottom:731.130667pt;}
.yfd{bottom:734.870667pt;}
.yc3{bottom:735.202667pt;}
.y19a{bottom:735.866667pt;}
.y8b{bottom:737.196000pt;}
.y118{bottom:737.528000pt;}
.yae{bottom:738.517333pt;}
.y62{bottom:741.180000pt;}
.y13f{bottom:741.845333pt;}
.yb{bottom:744.429333pt;}
.y199{bottom:745.165333pt;}
.yde{bottom:745.742667pt;}
.yfc{bottom:749.482667pt;}
.yc2{bottom:749.814667pt;}
.y8a{bottom:751.808000pt;}
.y117{bottom:752.140000pt;}
.yad{bottom:753.129333pt;}
.y198{bottom:754.464000pt;}
.y61{bottom:755.792000pt;}
.y13e{bottom:756.456000pt;}
.y197{bottom:763.762667pt;}
.ydd{bottom:764.008000pt;}
.yfb{bottom:764.094667pt;}
.yc1{bottom:764.426667pt;}
.y89{bottom:766.418667pt;}
.y116{bottom:766.750667pt;}
.yac{bottom:767.741333pt;}
.y60{bottom:770.404000pt;}
.y13d{bottom:771.068000pt;}
.ya{bottom:771.076000pt;}
.y196{bottom:773.061333pt;}
.yfa{bottom:778.706667pt;}
.yc0{bottom:779.038667pt;}
.y88{bottom:781.030667pt;}
.y115{bottom:781.362667pt;}
.yab{bottom:782.353333pt;}
.y195{bottom:782.360000pt;}
.y5f{bottom:785.016000pt;}
.y13c{bottom:785.680000pt;}
.y9{bottom:787.016000pt;}
.y194{bottom:791.657333pt;}
.yf9{bottom:793.318667pt;}
.y87{bottom:795.642667pt;}
.y114{bottom:795.974667pt;}
.yaa{bottom:796.965333pt;}
.ybf{bottom:797.304000pt;}
.y5e{bottom:799.628000pt;}
.y13b{bottom:800.292000pt;}
.y193{bottom:800.956000pt;}
.y8{bottom:802.956000pt;}
.yf8{bottom:807.930667pt;}
.y86{bottom:810.254667pt;}
.y113{bottom:810.586667pt;}
.y5d{bottom:814.240000pt;}
.y13a{bottom:814.904000pt;}
.ya9{bottom:815.229333pt;}
.y7{bottom:818.897333pt;}
.y192{bottom:819.553333pt;}
.yf7{bottom:822.542667pt;}
.y85{bottom:824.866667pt;}
.y112{bottom:825.198667pt;}
.y5c{bottom:828.852000pt;}
.y139{bottom:833.169333pt;}
.yf6{bottom:837.153333pt;}
.y191{bottom:838.150667pt;}
.y84{bottom:839.478667pt;}
.y111{bottom:839.810667pt;}
.y5b{bottom:843.464000pt;}
.y190{bottom:847.449333pt;}
.y5{bottom:848.922667pt;}
.yf5{bottom:851.765333pt;}
.y138{bottom:854.090667pt;}
.y110{bottom:854.422667pt;}
.y18f{bottom:856.746667pt;}
.y83{bottom:857.744000pt;}
.y5a{bottom:858.076000pt;}
.y4{bottom:864.862667pt;}
.y18e{bottom:866.045333pt;}
.yf4{bottom:866.377333pt;}
.y10f{bottom:869.034667pt;}
.y59{bottom:872.688000pt;}
.y18d{bottom:875.344000pt;}
.y6{bottom:880.802667pt;}
.y3{bottom:880.804000pt;}
.yf3{bottom:880.989333pt;}
.y10e{bottom:883.646667pt;}
.y18c{bottom:884.642667pt;}
.y58{bottom:887.298667pt;}
.y18b{bottom:893.941333pt;}
.yf2{bottom:895.601333pt;}
.y2{bottom:896.744000pt;}
.y10d{bottom:898.258667pt;}
.y57{bottom:901.910667pt;}
.y18a{bottom:903.240000pt;}
.y189{bottom:912.537333pt;}
.y10c{bottom:912.870667pt;}
.yf1{bottom:913.866667pt;}
.y56{bottom:916.522667pt;}
.y188{bottom:921.836000pt;}
.y1{bottom:928.500000pt;}
.y55{bottom:931.134667pt;}
.y54{bottom:967.398667pt;}
.h8{height:21.184614pt;}
.h9{height:23.464073pt;}
.h6{height:25.961133pt;}
.h7{height:34.430976pt;}
.h5{height:35.196109pt;}
.h3{height:39.106526pt;}
.h4{height:41.890944pt;}
.h2{height:46.928145pt;}
.h1{height:64.087196pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:71.730667pt;}
.x66{left:75.901333pt;}
.x17{left:85.014667pt;}
.x67{left:87.020000pt;}
.x6a{left:89.953333pt;}
.x75{left:91.460000pt;}
.x34{left:93.753333pt;}
.x4e{left:97.316000pt;}
.x6b{left:101.072000pt;}
.x30{left:104.778667pt;}
.x68{left:106.313333pt;}
.x4f{left:109.900000pt;}
.x2d{left:114.566667pt;}
.x5{left:116.061333pt;}
.x69{left:117.432000pt;}
.x6e{left:123.482667pt;}
.x2e{left:125.685333pt;}
.x4{left:127.140000pt;}
.x31{left:130.042667pt;}
.x3{left:131.397333pt;}
.x73{left:132.956000pt;}
.x2{left:135.138667pt;}
.x32{left:141.161333pt;}
.x2f{left:142.081333pt;}
.x56{left:143.109333pt;}
.x74{left:144.073333pt;}
.x54{left:148.196000pt;}
.x57{left:154.228000pt;}
.x55{left:159.314667pt;}
.x58{left:170.929333pt;}
.x59{left:176.513333pt;}
.x1{left:182.329333pt;}
.x5a{left:187.630667pt;}
.x4c{left:192.780000pt;}
.x4d{left:203.898667pt;}
.x6f{left:207.930667pt;}
.x28{left:212.742667pt;}
.x5b{left:216.750667pt;}
.x70{left:219.048000pt;}
.x29{left:223.861333pt;}
.x11{left:224.830667pt;}
.x5c{left:227.869333pt;}
.x33{left:230.309333pt;}
.x52{left:232.908000pt;}
.x10{left:235.909333pt;}
.xf{left:240.857333pt;}
.x53{left:244.025333pt;}
.xe{left:256.477333pt;}
.x5d{left:288.142667pt;}
.x5e{left:293.701333pt;}
.x71{left:303.278667pt;}
.x72{left:314.396000pt;}
.x6c{left:322.312000pt;}
.x6d{left:333.430667pt;}
.x9{left:334.928000pt;}
.x2a{left:343.169333pt;}
.x8{left:346.005333pt;}
.x2b{left:348.728000pt;}
.x7{left:354.434667pt;}
.x6{left:359.854667pt;}
.x2c{left:365.029333pt;}
.x42{left:370.444000pt;}
.x40{left:375.758667pt;}
.x50{left:376.770667pt;}
.x41{left:386.877333pt;}
.x51{left:387.889333pt;}
.x19{left:423.940000pt;}
.x47{left:428.137333pt;}
.x18{left:437.224000pt;}
.x48{left:439.254667pt;}
.x15{left:443.696000pt;}
.x5f{left:445.424000pt;}
.x27{left:448.290667pt;}
.x25{left:449.988000pt;}
.x14{left:454.774667pt;}
.x24{left:456.988000pt;}
.x26{left:461.106667pt;}
.x13{left:469.174667pt;}
.x3d{left:472.906667pt;}
.x12{left:478.482667pt;}
.x43{left:489.028000pt;}
.x44{left:518.557333pt;}
.x45{left:529.676000pt;}
.x1e{left:531.284000pt;}
.x1f{left:542.402667pt;}
.xd{left:553.793333pt;}
.xc{left:564.872000pt;}
.xb{left:570.444000pt;}
.x20{left:584.537333pt;}
.xa{left:587.584000pt;}
.x3e{left:591.124000pt;}
.x21{left:595.656000pt;}
.x3f{left:596.684000pt;}
.x22{left:601.284000pt;}
.x1c{left:603.805333pt;}
.x23{left:612.402667pt;}
.x1d{left:614.922667pt;}
.x46{left:615.902667pt;}
.x1a{left:626.466667pt;}
.x39{left:629.749333pt;}
.x1b{left:632.025333pt;}
.x3a{left:640.868000pt;}
.x64{left:645.618667pt;}
.x60{left:653.472000pt;}
.x62{left:654.890667pt;}
.x65{left:656.737333pt;}
.x63{left:660.449333pt;}
.x61{left:664.590667pt;}
.x49{left:678.813333pt;}
.x3b{left:681.508000pt;}
.x4a{left:689.932000pt;}
.x3c{left:692.626667pt;}
.x4b{left:711.569333pt;}
.x35{left:716.674667pt;}
.x36{left:722.233333pt;}
.x37{left:727.968000pt;}
.x38{left:739.086667pt;}
}




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