
    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_7e0b07d2c319d7db5c8bfdc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061000;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_2ad7324391fbb2c582d9e5bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_0fb0c323ff92025e47328f80.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_2d4ce5a45aa6477f126c8ce3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_a7d22d3cd82603fe36aa5858.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081000;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_4db968bcf4934a1be596cd82.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.082000;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:ff7;src:url('chunks/assets/font_c767c81cf19f780f74e6c2da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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:ff8;src:url('chunks/assets/font_91e6682b7a42e8e1946f8d75.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.081000;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:ff9;src:url('chunks/assets/font_107ba3326cc5acab57c7c742.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932000;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:ffa;src:url('chunks/assets/font_5871ac296323059263d1ed07.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.635000;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;}
.ma{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);}
.m13{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);}
.m24{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);}
.m6{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);}
.m14{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);}
.m21{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);}
.m9{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);}
.m16{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m8{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);}
.m1a{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);}
.m12{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m1f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m3{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);}
.mb{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);}
.m1d{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);}
.m5{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);}
.m17{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m18{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);}
.m22{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);}
.md{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);}
.m1c{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);}
.m10{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);}
.m15{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);}
.m1b{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);}
.m23{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);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:2.987236px;}
.ls4{letter-spacing:5.170913px;}
.lsd{letter-spacing:5.301823px;}
.ls5{letter-spacing:9.098189px;}
.ls7{letter-spacing:18.130924px;}
.ls6{letter-spacing:18.196379px;}
.lsa{letter-spacing:25.330930px;}
.ls3{letter-spacing:26.509113px;}
.lsc{letter-spacing:27.163659px;}
.ls9{letter-spacing:28.930933px;}
.ls8{letter-spacing:29.389115px;}
.ls2{letter-spacing:30.305480px;}
.ls1{letter-spacing:32.727300px;}
.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;}
}
.ws25{word-spacing:-51.970952px;}
.ws23{word-spacing:-48.418425px;}
.ws18{word-spacing:-40.348800px;}
.ws28{word-spacing:-38.683669px;}
.ws27{word-spacing:-35.476393px;}
.ws6e{word-spacing:-33.453846px;}
.ws1a{word-spacing:-32.727300px;}
.ws4c{word-spacing:-31.706208px;}
.ws9b{word-spacing:-22.385473px;}
.ws0{word-spacing:-19.367325px;}
.ws8c{word-spacing:-19.259827px;}
.ws4d{word-spacing:-18.183288px;}
.ws55{word-spacing:-17.869106px;}
.ws92{word-spacing:-17.738197px;}
.ws9d{word-spacing:-17.607287px;}
.ws9c{word-spacing:-17.476378px;}
.ws8a{word-spacing:-17.280014px;}
.ws79{word-spacing:-16.429105px;}
.ws5d{word-spacing:-16.363650px;}
.ws9a{word-spacing:-16.167286px;}
.ws12{word-spacing:-16.139475px;}
.ws8b{word-spacing:-15.846559px;}
.ws88{word-spacing:-15.840013px;}
.ws16{word-spacing:-15.774559px;}
.ws54{word-spacing:-15.536935px;}
.ws78{word-spacing:-15.512740px;}
.ws67{word-spacing:-15.250922px;}
.ws45{word-spacing:-15.185467px;}
.ws41{word-spacing:-15.120013px;}
.ws9f{word-spacing:-14.923649px;}
.wsa4{word-spacing:-14.858194px;}
.ws46{word-spacing:-14.792740px;}
.ws7f{word-spacing:-14.661830px;}
.ws1c{word-spacing:-14.465467px;}
.ws47{word-spacing:-14.269103px;}
.ws80{word-spacing:-14.203648px;}
.ws69{word-spacing:-14.072739px;}
.ws8f{word-spacing:-14.007284px;}
.ws44{word-spacing:-13.941830px;}
.ws96{word-spacing:-13.810921px;}
.ws50{word-spacing:-13.680011px;}
.ws13{word-spacing:-13.449600px;}
.ws38{word-spacing:-13.418193px;}
.ws5a{word-spacing:-13.287284px;}
.ws49{word-spacing:-13.221829px;}
.ws2e{word-spacing:-13.156375px;}
.ws15{word-spacing:-13.090920px;}
.ws7c{word-spacing:-13.032011px;}
.ws86{word-spacing:-13.025465px;}
.ws5e{word-spacing:-12.894556px;}
.ws93{word-spacing:-12.829102px;}
.ws9e{word-spacing:-12.763647px;}
.ws60{word-spacing:-12.698192px;}
.ws24{word-spacing:-12.567283px;}
.ws26{word-spacing:-12.501829px;}
.ws32{word-spacing:-12.436374px;}
.ws56{word-spacing:-12.370919px;}
.ws61{word-spacing:-12.240010px;}
.ws7b{word-spacing:-12.174556px;}
.ws33{word-spacing:-11.978192px;}
.ws8d{word-spacing:-11.781828px;}
.ws1{word-spacing:-11.735224px;}
.ws5b{word-spacing:-11.650919px;}
.ws94{word-spacing:-11.585464px;}
.ws7a{word-spacing:-11.520010px;}
.ws11{word-spacing:-11.476915px;}
.ws89{word-spacing:-11.461100px;}
.ws51{word-spacing:-11.454555px;}
.ws42{word-spacing:-11.389100px;}
.ws3e{word-spacing:-11.323646px;}
.ws22{word-spacing:-11.258191px;}
.ws62{word-spacing:-11.199282px;}
.ws31{word-spacing:-11.192737px;}
.ws1d{word-spacing:-11.127282px;}
.ws2a{word-spacing:-11.061827px;}
.ws21{word-spacing:-10.996373px;}
.ws6a{word-spacing:-10.937464px;}
.ws17{word-spacing:-10.930918px;}
.ws19{word-spacing:-10.865464px;}
.ws2b{word-spacing:-10.800009px;}
.ws43{word-spacing:-10.734554px;}
.ws14{word-spacing:-10.669100px;}
.ws95{word-spacing:-10.610191px;}
.ws29{word-spacing:-10.603645px;}
.ws3b{word-spacing:-10.538191px;}
.ws2f{word-spacing:-10.472736px;}
.ws3d{word-spacing:-10.407281px;}
.ws68{word-spacing:-10.341827px;}
.ws36{word-spacing:-10.276372px;}
.ws7d{word-spacing:-10.217463px;}
.ws5{word-spacing:-10.161852px;}
.ws63{word-spacing:-10.086554px;}
.wsa{word-spacing:-10.042301px;}
.ws66{word-spacing:-10.021099px;}
.ws3{word-spacing:-9.982525px;}
.ws84{word-spacing:-9.955645px;}
.ws6{word-spacing:-9.922750px;}
.ws85{word-spacing:-9.890190px;}
.ws7{word-spacing:-9.862974px;}
.ws99{word-spacing:-9.824735px;}
.ws9{word-spacing:-9.743423px;}
.ws8{word-spacing:-9.683647px;}
.wsd{word-spacing:-9.623872px;}
.wsf{word-spacing:-9.564096px;}
.wsa1{word-spacing:-9.556372px;}
.ws82{word-spacing:-9.490917px;}
.ws57{word-spacing:-9.425462px;}
.ws81{word-spacing:-9.294553px;}
.ws34{word-spacing:-9.170189px;}
.ws97{word-spacing:-8.967280px;}
.ws1e{word-spacing:-8.836371px;}
.ws83{word-spacing:-8.777462px;}
.ws35{word-spacing:-8.253825px;}
.ws4{word-spacing:-8.249033px;}
.ws91{word-spacing:-8.181825px;}
.ws87{word-spacing:-8.116370px;}
.ws4e{word-spacing:-7.985461px;}
.ws1f{word-spacing:-7.920007px;}
.ws6f{word-spacing:-7.723643px;}
.ws71{word-spacing:-7.658188px;}
.ws3f{word-spacing:-7.592734px;}
.ws8e{word-spacing:-7.527279px;}
.ws65{word-spacing:-7.461824px;}
.ws20{word-spacing:-7.330915px;}
.ws7e{word-spacing:-7.134551px;}
.ws64{word-spacing:-6.944733px;}
.ws2d{word-spacing:-6.872733px;}
.ws3c{word-spacing:-6.676369px;}
.wsa0{word-spacing:-6.545460px;}
.wsa2{word-spacing:-6.480005px;}
.ws5c{word-spacing:-6.349096px;}
.ws73{word-spacing:-6.224732px;}
.ws58{word-spacing:-6.087278px;}
.ws98{word-spacing:-5.956369px;}
.ws4f{word-spacing:-5.760005px;}
.ws59{word-spacing:-5.301823px;}
.wse{word-spacing:-5.080926px;}
.ws10{word-spacing:-5.021150px;}
.ws53{word-spacing:-4.974550px;}
.ws2c{word-spacing:-4.909095px;}
.ws6d{word-spacing:-4.778186px;}
.ws6b{word-spacing:-4.653822px;}
.ws52{word-spacing:-4.581822px;}
.ws6c{word-spacing:-4.457458px;}
.ws37{word-spacing:-4.385458px;}
.ws39{word-spacing:-4.320004px;}
.ws48{word-spacing:-3.927276px;}
.ws40{word-spacing:-3.861821px;}
.ws1b{word-spacing:-3.665458px;}
.ws76{word-spacing:-3.469094px;}
.ws30{word-spacing:-3.338185px;}
.ws77{word-spacing:-3.279275px;}
.wsb{word-spacing:-3.108331px;}
.ws74{word-spacing:-3.017457px;}
.ws72{word-spacing:-3.010912px;}
.ws70{word-spacing:-2.814548px;}
.ws5f{word-spacing:-2.683639px;}
.ws90{word-spacing:-2.356366px;}
.wsc{word-spacing:-1.912819px;}
.ws4a{word-spacing:-1.767274px;}
.ws2{word-spacing:0.000000px;}
.ws4b{word-spacing:0.013091px;}
.ws75{word-spacing:0.058909px;}
.ws3a{word-spacing:0.850910px;}
.wsa3{word-spacing:40.348800px;}
._28{margin-left:-34.558895px;}
._15{margin-left:-32.727300px;}
._18{margin-left:-30.829117px;}
._17{margin-left:-10.930918px;}
._1{margin-left:-9.709486px;}
._2a{margin-left:-8.091257px;}
._2d{margin-left:-6.976168px;}
._4{margin-left:-5.810227px;}
._5{margin-left:-4.213900px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.936742px;}
._32{width:1.008029px;}
._3{width:2.008474px;}
._2c{width:3.202064px;}
._31{width:5.447115px;}
._33{width:10.111951px;}
._20{width:17.963274px;}
._10{width:21.172300px;}
._9{width:22.173877px;}
._2e{width:24.345542px;}
._22{width:26.206408px;}
._2f{width:27.510526px;}
._1b{width:29.126407px;}
._30{width:30.688362px;}
._16{width:31.745481px;}
._24{width:32.795021px;}
._12{width:34.166168px;}
._1f{width:36.945108px;}
._1a{width:42.402232px;}
._d{width:47.997199px;}
._11{width:49.926628px;}
._a{width:51.685807px;}
._1d{width:54.219736px;}
._1e{width:55.244639px;}
._6{width:56.618229px;}
._13{width:57.665503px;}
._25{width:59.205949px;}
._e{width:60.545505px;}
._23{width:61.578788px;}
._8{width:64.538236px;}
._c{width:66.894601px;}
._19{width:75.730972px;}
._2b{width:80.697600px;}
._29{width:96.836850px;}
._26{width:105.077960px;}
._b{width:108.523727px;}
._27{width:583.796030px;}
._1c{width:963.196721px;}
._14{width:1030.561168px;}
._21{width:1126.907836px;}
._7{width:1305.375635px;}
._f{width:1501.418234px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1c{bottom:61.467000px;}
.y3f{bottom:106.299000px;}
.y174{bottom:107.922000px;}
.y12a{bottom:112.116000px;}
.ye4{bottom:124.168500px;}
.y3e{bottom:126.622500px;}
.y173{bottom:128.245500px;}
.y129{bottom:132.439500px;}
.y93{bottom:146.947500px;}
.y6e{bottom:151.629000px;}
.y3d{bottom:158.977500px;}
.y172{bottom:159.138000px;}
.ye3{bottom:160.332000px;}
.y128{bottom:163.330500px;}
.y92{bottom:167.271000px;}
.y146{bottom:171.465000px;}
.y6d{bottom:171.952500px;}
.ye2{bottom:180.655500px;}
.y91{bottom:187.594500px;}
.y3c{bottom:191.331000px;}
.y6c{bottom:192.276000px;}
.y145{bottom:202.357500px;}
.y171{bottom:202.956000px;}
.y127{bottom:206.553000px;}
.y90{bottom:207.918000px;}
.y6b{bottom:212.599500px;}
.ye1{bottom:214.365000px;}
.y3b{bottom:221.557500px;}
.y170{bottom:223.281000px;}
.y126{bottom:226.876500px;}
.y8f{bottom:228.241500px;}
.y6a{bottom:232.924500px;}
.ye0{bottom:234.688500px;}
.y16f{bottom:243.604500px;}
.y144{bottom:246.177000px;}
.y125{bottom:247.200000px;}
.y8e{bottom:248.566500px;}
.y3a{bottom:252.448500px;}
.y69{bottom:253.248000px;}
.y110{bottom:259.134000px;}
.y16e{bottom:263.928000px;}
.y143{bottom:266.500500px;}
.y124{bottom:267.523500px;}
.ydf{bottom:268.398000px;}
.y68{bottom:273.571500px;}
.yc8{bottom:280.086000px;}
.y8d{bottom:284.251500px;}
.y142{bottom:286.824000px;}
.y123{bottom:287.847000px;}
.yde{bottom:288.721500px;}
.y39{bottom:295.599000px;}
.yc7{bottom:300.409500px;}
.y10f{bottom:302.644500px;}
.y8c{bottom:304.575000px;}
.y122{bottom:308.170500px;}
.y67{bottom:310.258500px;}
.y38{bottom:315.922500px;}
.y141{bottom:320.598000px;}
.ydd{bottom:322.335000px;}
.y10e{bottom:322.968000px;}
.y8b{bottom:324.898500px;}
.y16d{bottom:324.900000px;}
.y121{bottom:328.495500px;}
.y66{bottom:330.582000px;}
.yc6{bottom:334.183500px;}
.y18c{bottom:341.509500px;}
.ydc{bottom:342.658500px;}
.y37{bottom:348.276000px;}
.y120{bottom:348.819000px;}
.y65{bottom:350.907000px;}
.y140{bottom:354.370500px;}
.y10d{bottom:355.105500px;}
.y16c{bottom:355.791000px;}
.y8a{bottom:360.583500px;}
.y18b{bottom:361.833000px;}
.yc5{bottom:367.956000px;}
.y36{bottom:368.599500px;}
.y35{bottom:368.601000px;}
.y11f{bottom:369.142500px;}
.y64{bottom:371.230500px;}
.ydb{bottom:373.551000px;}
.y89{bottom:380.908500px;}
.y18a{bottom:382.158000px;}
.y13f{bottom:388.144500px;}
.y10c{bottom:388.224000px;}
.y63{bottom:391.554000px;}
.y16b{bottom:399.610500px;}
.y11e{bottom:400.035000px;}
.y34{bottom:400.954500px;}
.yc4{bottom:401.730000px;}
.y189{bottom:402.481500px;}
.y88{bottom:411.799500px;}
.y62{bottom:411.877500px;}
.yda{bottom:417.339000px;}
.y16a{bottom:419.934000px;}
.y33{bottom:421.278000px;}
.y10b{bottom:421.342500px;}
.y13e{bottom:421.917000px;}
.y188{bottom:422.805000px;}
.y61{bottom:432.201000px;}
.yc3{bottom:435.502500px;}
.yd9{bottom:437.662500px;}
.y13d{bottom:442.242000px;}
.y187{bottom:443.128500px;}
.y11d{bottom:443.256000px;}
.y60{bottom:452.526000px;}
.y10a{bottom:453.478500px;}
.y32{bottom:453.633000px;}
.y87{bottom:455.214000px;}
.yd8{bottom:457.987500px;}
.y169{bottom:458.190000px;}
.y186{bottom:463.452000px;}
.y11c{bottom:463.579500px;}
.yc2{bottom:466.395000px;}
.y5f{bottom:472.849500px;}
.y13c{bottom:473.133000px;}
.y109{bottom:473.803500px;}
.y86{bottom:475.537500px;}
.y168{bottom:478.513500px;}
.y11b{bottom:483.903000px;}
.y31{bottom:484.524000px;}
.yd7{bottom:491.599500px;}
.y5e{bottom:493.173000px;}
.y108{bottom:494.127000px;}
.y185{bottom:494.344500px;}
.y85{bottom:495.862500px;}
.y167{bottom:498.838500px;}
.y11a{bottom:504.226500px;}
.yc1{bottom:510.213000px;}
.yd6{bottom:511.924500px;}
.y5d{bottom:513.496500px;}
.y107{bottom:514.450500px;}
.yae{bottom:516.181500px;}
.y84{bottom:516.186000px;}
.y13b{bottom:516.952500px;}
.y166{bottom:519.162000px;}
.y119{bottom:524.551500px;}
.y30{bottom:527.674500px;}
.yc0{bottom:530.538000px;}
.y106{bottom:534.774000px;}
.yad{bottom:536.506500px;}
.y83{bottom:536.509500px;}
.y13a{bottom:537.276000px;}
.y184{bottom:538.164000px;}
.y118{bottom:544.875000px;}
.yd5{bottom:545.632500px;}
.y2f{bottom:547.998000px;}
.y5c{bottom:550.183500px;}
.ybf{bottom:550.861500px;}
.y165{bottom:552.934500px;}
.yac{bottom:556.830000px;}
.y82{bottom:556.833000px;}
.y183{bottom:558.487500px;}
.y105{bottom:565.666500px;}
.yd4{bottom:565.957500px;}
.y5b{bottom:570.508500px;}
.y139{bottom:571.048500px;}
.ybe{bottom:571.185000px;}
.y164{bottom:573.259500px;}
.yab{bottom:577.153500px;}
.y81{bottom:577.156500px;}
.y2e{bottom:578.223000px;}
.y117{bottom:581.637000px;}
.yd3{bottom:583.825500px;}
.yd2{bottom:586.281000px;}
.y5a{bottom:590.832000px;}
.y138{bottom:591.373500px;}
.ybd{bottom:591.508500px;}
.y182{bottom:592.260000px;}
.y163{bottom:593.583000px;}
.yaa{bottom:597.477000px;}
.y80{bottom:597.481500px;}
.y104{bottom:609.177000px;}
.y2d{bottom:610.578000px;}
.y59{bottom:611.155500px;}
.ya9{bottom:617.800500px;}
.y116{bottom:618.399000px;}
.yd1{bottom:619.990500px;}
.ybc{bottom:622.401000px;}
.y137{bottom:625.146000px;}
.y181{bottom:626.034000px;}
.y162{bottom:627.355500px;}
.y7f{bottom:629.112000px;}
.y103{bottom:629.500500px;}
.y58{bottom:631.479000px;}
.ya8{bottom:638.125500px;}
.y115{bottom:638.722500px;}
.yd0{bottom:640.314000px;}
.y2c{bottom:642.931500px;}
.y161{bottom:647.680500px;}
.y7e{bottom:649.435500px;}
.y102{bottom:649.824000px;}
.y57{bottom:651.802500px;}
.y136{bottom:658.920000px;}
.y114{bottom:659.046000px;}
.y180{bottom:659.806500px;}
.ybb{bottom:666.219000px;}
.y160{bottom:668.004000px;}
.ya7{bottom:669.016500px;}
.y7d{bottom:669.759000px;}
.ycf{bottom:674.023500px;}
.y2b{bottom:675.286500px;}
.y156{bottom:678.636000px;}
.y101{bottom:681.961500px;}
.yba{bottom:686.544000px;}
.y56{bottom:688.491000px;}
.y113{bottom:689.938500px;}
.y135{bottom:692.692500px;}
.y17f{bottom:693.580500px;}
.yce{bottom:694.347000px;}
.y155{bottom:698.961000px;}
.y15f{bottom:701.776500px;}
.y100{bottom:702.285000px;}
.y7c{bottom:702.675000px;}
.y2a{bottom:705.511500px;}
.yb9{bottom:706.867500px;}
.y55{bottom:708.814500px;}
.ya6{bottom:712.836000px;}
.y154{bottom:719.284500px;}
.y15e{bottom:722.101500px;}
.y7b{bottom:723.000000px;}
.y134{bottom:726.466500px;}
.yb8{bottom:727.191000px;}
.y17e{bottom:727.354500px;}
.ycd{bottom:728.056500px;}
.y54{bottom:729.138000px;}
.ya5{bottom:733.159500px;}
.yff{bottom:735.403500px;}
.y1b{bottom:736.236000px;}
.y29{bottom:736.402500px;}
.y153{bottom:739.608000px;}
.y15d{bottom:742.425000px;}
.y7a{bottom:743.323500px;}
.y133{bottom:746.790000px;}
.yb7{bottom:747.514500px;}
.y53{bottom:749.461500px;}
.ya4{bottom:753.483000px;}
.y1a{bottom:754.170000px;}
.yfe{bottom:755.727000px;}
.y152{bottom:759.931500px;}
.y17d{bottom:761.127000px;}
.ycc{bottom:761.668500px;}
.y52{bottom:769.785000px;}
.y19{bottom:772.102500px;}
.ya3{bottom:773.806500px;}
.y15c{bottom:776.197500px;}
.y79{bottom:776.239500px;}
.y132{bottom:777.682500px;}
.yb6{bottom:778.407000px;}
.y28{bottom:779.553000px;}
.yfd{bottom:787.864500px;}
.y18{bottom:790.035000px;}
.y151{bottom:790.824000px;}
.ya2{bottom:794.131500px;}
.yef{bottom:794.901000px;}
.y15b{bottom:796.522500px;}
.y78{bottom:796.563000px;}
.ycb{bottom:798.238500px;}
.y51{bottom:806.473500px;}
.y17{bottom:807.967500px;}
.yfc{bottom:808.188000px;}
.y27{bottom:809.778000px;}
.y150{bottom:811.744500px;}
.ya1{bottom:814.455000px;}
.yee{bottom:815.224500px;}
.y15a{bottom:816.846000px;}
.y131{bottom:821.500500px;}
.yb5{bottom:822.225000px;}
.y16{bottom:825.900000px;}
.y50{bottom:826.797000px;}
.y77{bottom:828.193500px;}
.y17c{bottom:828.673500px;}
.ya0{bottom:834.778500px;}
.yca{bottom:834.808500px;}
.yed{bottom:835.548000px;}
.y159{bottom:837.169500px;}
.yfb{bottom:839.079000px;}
.y130{bottom:841.824000px;}
.y26{bottom:842.133000px;}
.yb4{bottom:842.550000px;}
.y15{bottom:843.832500px;}
.y112{bottom:845.346000px;}
.y4f{bottom:847.120500px;}
.y76{bottom:848.517000px;}
.y17b{bottom:848.998500px;}
.y9f{bottom:855.102000px;}
.y14f{bottom:855.564000px;}
.y14{bottom:861.766500px;}
.y12f{bottom:862.149000px;}
.yb3{bottom:862.873500px;}
.yc9{bottom:865.701000px;}
.y4e{bottom:867.444000px;}
.y75{bottom:868.842000px;}
.yec{bottom:869.322000px;}
.y25{bottom:874.486500px;}
.y158{bottom:875.425500px;}
.y14e{bottom:875.887500px;}
.y13{bottom:879.699000px;}
.y17a{bottom:879.889500px;}
.y12e{bottom:882.472500px;}
.yfa{bottom:882.589500px;}
.y9e{bottom:885.994500px;}
.y4d{bottom:887.769000px;}
.y74{bottom:889.165500px;}
.yeb{bottom:889.645500px;}
.y14d{bottom:896.211000px;}
.y12{bottom:897.631500px;}
.yb2{bottom:899.635500px;}
.y9d{bottom:902.796000px;}
.yf9{bottom:902.913000px;}
.y157{bottom:906.318000px;}
.y24{bottom:906.841500px;}
.y4c{bottom:908.092500px;}
.y73{bottom:909.489000px;}
.y11{bottom:915.564000px;}
.y14c{bottom:916.536000px;}
.y9c{bottom:923.119500px;}
.yf8{bottom:923.238000px;}
.yea{bottom:923.418000px;}
.y179{bottom:923.709000px;}
.y72{bottom:929.812500px;}
.y10{bottom:933.496500px;}
.yb1{bottom:936.397500px;}
.y14b{bottom:936.859500px;}
.y23{bottom:937.066500px;}
.y9b{bottom:943.443000px;}
.yf7{bottom:943.561500px;}
.y4b{bottom:944.779500px;}
.y71{bottom:950.136000px;}
.yf{bottom:951.429000px;}
.yb0{bottom:956.721000px;}
.y14a{bottom:957.183000px;}
.ye9{bottom:957.192000px;}
.y178{bottom:957.481500px;}
.y9a{bottom:963.768000px;}
.yf6{bottom:963.885000px;}
.y4a{bottom:965.103000px;}
.y22{bottom:967.957500px;}
.ye{bottom:969.363000px;}
.y70{bottom:970.461000px;}
.y4{bottom:971.416500px;}
.y149{bottom:977.506500px;}
.y177{bottom:977.805000px;}
.y99{bottom:984.091500px;}
.yf5{bottom:984.208500px;}
.y49{bottom:985.426500px;}
.yd{bottom:987.295500px;}
.yaf{bottom:987.613500px;}
.y6f{bottom:990.784500px;}
.ye8{bottom:990.966000px;}
.y12d{bottom:994.659000px;}
.y148{bottom:997.830000px;}
.y98{bottom:1004.415000px;}
.yf4{bottom:1004.532000px;}
.yc{bottom:1005.228000px;}
.y48{bottom:1005.751500px;}
.y3{bottom:1008.105000px;}
.y21{bottom:1011.108000px;}
.y176{bottom:1011.579000px;}
.y147{bottom:1018.155000px;}
.ye7{bottom:1021.857000px;}
.yb{bottom:1023.160500px;}
.yf3{bottom:1024.857000px;}
.y111{bottom:1027.909500px;}
.y20{bottom:1031.431500px;}
.y175{bottom:1031.902500px;}
.y97{bottom:1035.307500px;}
.y12c{bottom:1038.478500px;}
.ya{bottom:1041.093000px;}
.y47{bottom:1042.438500px;}
.yf2{bottom:1045.180500px;}
.y43{bottom:1048.234500px;}
.y1f{bottom:1051.755000px;}
.y2{bottom:1053.571500px;}
.y12b{bottom:1058.802000px;}
.y9{bottom:1059.025500px;}
.y46{bottom:1062.762000px;}
.ye6{bottom:1065.676500px;}
.y42{bottom:1068.558000px;}
.y1e{bottom:1072.080000px;}
.y1{bottom:1074.493500px;}
.yf1{bottom:1076.071500px;}
.y8{bottom:1076.959500px;}
.y96{bottom:1079.125500px;}
.y45{bottom:1083.085500px;}
.ye5{bottom:1086.000000px;}
.y41{bottom:1088.881500px;}
.y7{bottom:1094.892000px;}
.y95{bottom:1099.449000px;}
.y1d{bottom:1102.971000px;}
.y44{bottom:1103.409000px;}
.y40{bottom:1109.205000px;}
.y6{bottom:1112.824500px;}
.yf0{bottom:1113.198000px;}
.y94{bottom:1119.774000px;}
.y5{bottom:1140.097500px;}
.hc{height:29.887875px;}
.h4{height:44.831700px;}
.hb{height:46.865494px;}
.h9{height:49.090950px;}
.h5{height:49.673524px;}
.h3{height:50.498765px;}
.h6{height:54.392773px;}
.ha{height:54.458227px;}
.h8{height:61.688832px;}
.h7{height:74.026392px;}
.h2{height:88.831464px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:103.026000px;}
.x24{left:105.228000px;}
.xa{left:106.299000px;}
.xb{left:109.935000px;}
.x2{left:129.468000px;}
.xc{left:130.845000px;}
.x16{left:142.438500px;}
.x8{left:145.459500px;}
.x7{left:146.820000px;}
.x18{left:148.539000px;}
.x15{left:150.096000px;}
.x17{left:153.219000px;}
.xe{left:168.481500px;}
.x6{left:169.624500px;}
.x1{left:205.431000px;}
.x1d{left:211.657500px;}
.x1e{left:230.035500px;}
.x1f{left:243.594000px;}
.x20{left:254.367000px;}
.x1b{left:262.333500px;}
.x19{left:266.391000px;}
.x1c{left:276.234000px;}
.x22{left:281.119500px;}
.xf{left:284.083500px;}
.x1a{left:286.264500px;}
.x23{left:299.584500px;}
.x10{left:302.466000px;}
.x3{left:342.568500px;}
.x11{left:366.642000px;}
.x12{left:368.466000px;}
.x5{left:378.406500px;}
.x4{left:405.486000px;}
.x21{left:438.274500px;}
.x9{left:442.366500px;}
.x13{left:463.116000px;}
.x14{left:478.048500px;}
.xd{left:767.796000px;}
@media print{
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:2.655321pt;}
.ls4{letter-spacing:4.596367pt;}
.lsd{letter-spacing:4.712731pt;}
.ls5{letter-spacing:8.087279pt;}
.ls7{letter-spacing:16.116377pt;}
.ls6{letter-spacing:16.174559pt;}
.lsa{letter-spacing:22.516382pt;}
.ls3{letter-spacing:23.563656pt;}
.lsc{letter-spacing:24.145475pt;}
.ls9{letter-spacing:25.716385pt;}
.ls8{letter-spacing:26.123658pt;}
.ls2{letter-spacing:26.938204pt;}
.ls1{letter-spacing:29.090933pt;}
.ws25{word-spacing:-46.196402pt;}
.ws23{word-spacing:-43.038600pt;}
.ws18{word-spacing:-35.865600pt;}
.ws28{word-spacing:-34.385483pt;}
.ws27{word-spacing:-31.534572pt;}
.ws6e{word-spacing:-29.736752pt;}
.ws1a{word-spacing:-29.090933pt;}
.ws4c{word-spacing:-28.183296pt;}
.ws9b{word-spacing:-19.898198pt;}
.ws0{word-spacing:-17.215400pt;}
.ws8c{word-spacing:-17.119846pt;}
.ws4d{word-spacing:-16.162923pt;}
.ws55{word-spacing:-15.883650pt;}
.ws92{word-spacing:-15.767286pt;}
.ws9d{word-spacing:-15.650922pt;}
.ws9c{word-spacing:-15.534558pt;}
.ws8a{word-spacing:-15.360013pt;}
.ws79{word-spacing:-14.603649pt;}
.ws5d{word-spacing:-14.545467pt;}
.ws9a{word-spacing:-14.370921pt;}
.ws12{word-spacing:-14.346200pt;}
.ws8b{word-spacing:-14.085830pt;}
.ws88{word-spacing:-14.080012pt;}
.ws16{word-spacing:-14.021830pt;}
.ws54{word-spacing:-13.810609pt;}
.ws78{word-spacing:-13.789102pt;}
.ws67{word-spacing:-13.556375pt;}
.ws45{word-spacing:-13.498193pt;}
.ws41{word-spacing:-13.440011pt;}
.ws9f{word-spacing:-13.265466pt;}
.wsa4{word-spacing:-13.207284pt;}
.ws46{word-spacing:-13.149102pt;}
.ws7f{word-spacing:-13.032738pt;}
.ws1c{word-spacing:-12.858193pt;}
.ws47{word-spacing:-12.683647pt;}
.ws80{word-spacing:-12.625465pt;}
.ws69{word-spacing:-12.509101pt;}
.ws8f{word-spacing:-12.450919pt;}
.ws44{word-spacing:-12.392738pt;}
.ws96{word-spacing:-12.276374pt;}
.ws50{word-spacing:-12.160010pt;}
.ws13{word-spacing:-11.955200pt;}
.ws38{word-spacing:-11.927283pt;}
.ws5a{word-spacing:-11.810919pt;}
.ws49{word-spacing:-11.752737pt;}
.ws2e{word-spacing:-11.694555pt;}
.ws15{word-spacing:-11.636373pt;}
.ws7c{word-spacing:-11.584010pt;}
.ws86{word-spacing:-11.578191pt;}
.ws5e{word-spacing:-11.461828pt;}
.ws93{word-spacing:-11.403646pt;}
.ws9e{word-spacing:-11.345464pt;}
.ws60{word-spacing:-11.287282pt;}
.ws24{word-spacing:-11.170918pt;}
.ws26{word-spacing:-11.112737pt;}
.ws32{word-spacing:-11.054555pt;}
.ws56{word-spacing:-10.996373pt;}
.ws61{word-spacing:-10.880009pt;}
.ws7b{word-spacing:-10.821827pt;}
.ws33{word-spacing:-10.647282pt;}
.ws8d{word-spacing:-10.472736pt;}
.ws1{word-spacing:-10.431311pt;}
.ws5b{word-spacing:-10.356372pt;}
.ws94{word-spacing:-10.298190pt;}
.ws7a{word-spacing:-10.240009pt;}
.ws11{word-spacing:-10.201702pt;}
.ws89{word-spacing:-10.187645pt;}
.ws51{word-spacing:-10.181827pt;}
.ws42{word-spacing:-10.123645pt;}
.ws3e{word-spacing:-10.065463pt;}
.ws22{word-spacing:-10.007281pt;}
.ws62{word-spacing:-9.954917pt;}
.ws31{word-spacing:-9.949099pt;}
.ws1d{word-spacing:-9.890917pt;}
.ws2a{word-spacing:-9.832735pt;}
.ws21{word-spacing:-9.774554pt;}
.ws6a{word-spacing:-9.722190pt;}
.ws17{word-spacing:-9.716372pt;}
.ws19{word-spacing:-9.658190pt;}
.ws2b{word-spacing:-9.600008pt;}
.ws43{word-spacing:-9.541826pt;}
.ws14{word-spacing:-9.483644pt;}
.ws95{word-spacing:-9.431281pt;}
.ws29{word-spacing:-9.425462pt;}
.ws3b{word-spacing:-9.367281pt;}
.ws2f{word-spacing:-9.309099pt;}
.ws3d{word-spacing:-9.250917pt;}
.ws68{word-spacing:-9.192735pt;}
.ws36{word-spacing:-9.134553pt;}
.ws7d{word-spacing:-9.082189pt;}
.ws5{word-spacing:-9.032757pt;}
.ws63{word-spacing:-8.965826pt;}
.wsa{word-spacing:-8.926490pt;}
.ws66{word-spacing:-8.907644pt;}
.ws3{word-spacing:-8.873356pt;}
.ws84{word-spacing:-8.849462pt;}
.ws6{word-spacing:-8.820222pt;}
.ws85{word-spacing:-8.791280pt;}
.ws7{word-spacing:-8.767088pt;}
.ws99{word-spacing:-8.733098pt;}
.ws9{word-spacing:-8.660820pt;}
.ws8{word-spacing:-8.607686pt;}
.wsd{word-spacing:-8.554553pt;}
.wsf{word-spacing:-8.501419pt;}
.wsa1{word-spacing:-8.494553pt;}
.ws82{word-spacing:-8.436371pt;}
.ws57{word-spacing:-8.378189pt;}
.ws81{word-spacing:-8.261825pt;}
.ws34{word-spacing:-8.151280pt;}
.ws97{word-spacing:-7.970916pt;}
.ws1e{word-spacing:-7.854552pt;}
.ws83{word-spacing:-7.802188pt;}
.ws35{word-spacing:-7.336733pt;}
.ws4{word-spacing:-7.332474pt;}
.ws91{word-spacing:-7.272733pt;}
.ws87{word-spacing:-7.214551pt;}
.ws4e{word-spacing:-7.098188pt;}
.ws1f{word-spacing:-7.040006pt;}
.ws6f{word-spacing:-6.865460pt;}
.ws71{word-spacing:-6.807278pt;}
.ws3f{word-spacing:-6.749097pt;}
.ws8e{word-spacing:-6.690915pt;}
.ws65{word-spacing:-6.632733pt;}
.ws20{word-spacing:-6.516369pt;}
.ws7e{word-spacing:-6.341823pt;}
.ws64{word-spacing:-6.173096pt;}
.ws2d{word-spacing:-6.109096pt;}
.ws3c{word-spacing:-5.934550pt;}
.wsa0{word-spacing:-5.818187pt;}
.wsa2{word-spacing:-5.760005pt;}
.ws5c{word-spacing:-5.643641pt;}
.ws73{word-spacing:-5.533096pt;}
.ws58{word-spacing:-5.410914pt;}
.ws98{word-spacing:-5.294550pt;}
.ws4f{word-spacing:-5.120004pt;}
.ws59{word-spacing:-4.712731pt;}
.wse{word-spacing:-4.516379pt;}
.ws10{word-spacing:-4.463245pt;}
.ws53{word-spacing:-4.421822pt;}
.ws2c{word-spacing:-4.363640pt;}
.ws6d{word-spacing:-4.247276pt;}
.ws6b{word-spacing:-4.136731pt;}
.ws52{word-spacing:-4.072731pt;}
.ws6c{word-spacing:-3.962185pt;}
.ws37{word-spacing:-3.898185pt;}
.ws39{word-spacing:-3.840003pt;}
.ws48{word-spacing:-3.490912pt;}
.ws40{word-spacing:-3.432730pt;}
.ws1b{word-spacing:-3.258185pt;}
.ws76{word-spacing:-3.083639pt;}
.ws30{word-spacing:-2.967275pt;}
.ws77{word-spacing:-2.914912pt;}
.wsb{word-spacing:-2.762961pt;}
.ws74{word-spacing:-2.682184pt;}
.ws72{word-spacing:-2.676366pt;}
.ws70{word-spacing:-2.501820pt;}
.ws5f{word-spacing:-2.385457pt;}
.ws90{word-spacing:-2.094547pt;}
.wsc{word-spacing:-1.700284pt;}
.ws4a{word-spacing:-1.570910pt;}
.ws2{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.011636pt;}
.ws75{word-spacing:0.052364pt;}
.ws3a{word-spacing:0.756364pt;}
.wsa3{word-spacing:35.865600pt;}
._28{margin-left:-30.719018pt;}
._15{margin-left:-29.090933pt;}
._18{margin-left:-27.403659pt;}
._17{margin-left:-9.716372pt;}
._1{margin-left:-8.630654pt;}
._2a{margin-left:-7.192228pt;}
._2d{margin-left:-6.201038pt;}
._4{margin-left:-5.164646pt;}
._5{margin-left:-3.745689pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.721549pt;}
._32{width:0.896026pt;}
._3{width:1.785310pt;}
._2c{width:2.846279pt;}
._31{width:4.841880pt;}
._33{width:8.988401pt;}
._20{width:15.967355pt;}
._10{width:18.819822pt;}
._9{width:19.710113pt;}
._2e{width:21.640482pt;}
._22{width:23.294585pt;}
._2f{width:24.453801pt;}
._1b{width:25.890140pt;}
._30{width:27.278544pt;}
._16{width:28.218205pt;}
._24{width:29.151130pt;}
._12{width:30.369927pt;}
._1f{width:32.840096pt;}
._1a{width:37.690873pt;}
._d{width:42.664177pt;}
._11{width:44.379225pt;}
._a{width:45.942940pt;}
._1d{width:48.195321pt;}
._1e{width:49.106346pt;}
._6{width:50.327315pt;}
._13{width:51.258225pt;}
._25{width:52.627510pt;}
._e{width:53.818227pt;}
._23{width:54.736700pt;}
._8{width:57.367321pt;}
._c{width:59.461868pt;}
._19{width:67.316420pt;}
._2b{width:71.731200pt;}
._29{width:86.077200pt;}
._26{width:93.402631pt;}
._b{width:96.465535pt;}
._27{width:518.929804pt;}
._1c{width:856.174863pt;}
._14{width:916.054372pt;}
._21{width:1001.695854pt;}
._7{width:1160.333898pt;}
._f{width:1334.593986pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:54.637333pt;}
.y3f{bottom:94.488000pt;}
.y174{bottom:95.930667pt;}
.y12a{bottom:99.658667pt;}
.ye4{bottom:110.372000pt;}
.y3e{bottom:112.553333pt;}
.y173{bottom:113.996000pt;}
.y129{bottom:117.724000pt;}
.y93{bottom:130.620000pt;}
.y6e{bottom:134.781333pt;}
.y3d{bottom:141.313333pt;}
.y172{bottom:141.456000pt;}
.ye3{bottom:142.517333pt;}
.y128{bottom:145.182667pt;}
.y92{bottom:148.685333pt;}
.y146{bottom:152.413333pt;}
.y6d{bottom:152.846667pt;}
.ye2{bottom:160.582667pt;}
.y91{bottom:166.750667pt;}
.y3c{bottom:170.072000pt;}
.y6c{bottom:170.912000pt;}
.y145{bottom:179.873333pt;}
.y171{bottom:180.405333pt;}
.y127{bottom:183.602667pt;}
.y90{bottom:184.816000pt;}
.y6b{bottom:188.977333pt;}
.ye1{bottom:190.546667pt;}
.y3b{bottom:196.940000pt;}
.y170{bottom:198.472000pt;}
.y126{bottom:201.668000pt;}
.y8f{bottom:202.881333pt;}
.y6a{bottom:207.044000pt;}
.ye0{bottom:208.612000pt;}
.y16f{bottom:216.537333pt;}
.y144{bottom:218.824000pt;}
.y125{bottom:219.733333pt;}
.y8e{bottom:220.948000pt;}
.y3a{bottom:224.398667pt;}
.y69{bottom:225.109333pt;}
.y110{bottom:230.341333pt;}
.y16e{bottom:234.602667pt;}
.y143{bottom:236.889333pt;}
.y124{bottom:237.798667pt;}
.ydf{bottom:238.576000pt;}
.y68{bottom:243.174667pt;}
.yc8{bottom:248.965333pt;}
.y8d{bottom:252.668000pt;}
.y142{bottom:254.954667pt;}
.y123{bottom:255.864000pt;}
.yde{bottom:256.641333pt;}
.y39{bottom:262.754667pt;}
.yc7{bottom:267.030667pt;}
.y10f{bottom:269.017333pt;}
.y8c{bottom:270.733333pt;}
.y122{bottom:273.929333pt;}
.y67{bottom:275.785333pt;}
.y38{bottom:280.820000pt;}
.y141{bottom:284.976000pt;}
.ydd{bottom:286.520000pt;}
.y10e{bottom:287.082667pt;}
.y8b{bottom:288.798667pt;}
.y16d{bottom:288.800000pt;}
.y121{bottom:291.996000pt;}
.y66{bottom:293.850667pt;}
.yc6{bottom:297.052000pt;}
.y18c{bottom:303.564000pt;}
.ydc{bottom:304.585333pt;}
.y37{bottom:309.578667pt;}
.y120{bottom:310.061333pt;}
.y65{bottom:311.917333pt;}
.y140{bottom:314.996000pt;}
.y10d{bottom:315.649333pt;}
.y16c{bottom:316.258667pt;}
.y8a{bottom:320.518667pt;}
.y18b{bottom:321.629333pt;}
.yc5{bottom:327.072000pt;}
.y36{bottom:327.644000pt;}
.y35{bottom:327.645333pt;}
.y11f{bottom:328.126667pt;}
.y64{bottom:329.982667pt;}
.ydb{bottom:332.045333pt;}
.y89{bottom:338.585333pt;}
.y18a{bottom:339.696000pt;}
.y13f{bottom:345.017333pt;}
.y10c{bottom:345.088000pt;}
.y63{bottom:348.048000pt;}
.y16b{bottom:355.209333pt;}
.y11e{bottom:355.586667pt;}
.y34{bottom:356.404000pt;}
.yc4{bottom:357.093333pt;}
.y189{bottom:357.761333pt;}
.y88{bottom:366.044000pt;}
.y62{bottom:366.113333pt;}
.yda{bottom:370.968000pt;}
.y16a{bottom:373.274667pt;}
.y33{bottom:374.469333pt;}
.y10b{bottom:374.526667pt;}
.y13e{bottom:375.037333pt;}
.y188{bottom:375.826667pt;}
.y61{bottom:384.178667pt;}
.yc3{bottom:387.113333pt;}
.yd9{bottom:389.033333pt;}
.y13d{bottom:393.104000pt;}
.y187{bottom:393.892000pt;}
.y11d{bottom:394.005333pt;}
.y60{bottom:402.245333pt;}
.y10a{bottom:403.092000pt;}
.y32{bottom:403.229333pt;}
.y87{bottom:404.634667pt;}
.yd8{bottom:407.100000pt;}
.y169{bottom:407.280000pt;}
.y186{bottom:411.957333pt;}
.y11c{bottom:412.070667pt;}
.yc2{bottom:414.573333pt;}
.y5f{bottom:420.310667pt;}
.y13c{bottom:420.562667pt;}
.y109{bottom:421.158667pt;}
.y86{bottom:422.700000pt;}
.y168{bottom:425.345333pt;}
.y11b{bottom:430.136000pt;}
.y31{bottom:430.688000pt;}
.yd7{bottom:436.977333pt;}
.y5e{bottom:438.376000pt;}
.y108{bottom:439.224000pt;}
.y185{bottom:439.417333pt;}
.y85{bottom:440.766667pt;}
.y167{bottom:443.412000pt;}
.y11a{bottom:448.201333pt;}
.yc1{bottom:453.522667pt;}
.yd6{bottom:455.044000pt;}
.y5d{bottom:456.441333pt;}
.y107{bottom:457.289333pt;}
.yae{bottom:458.828000pt;}
.y84{bottom:458.832000pt;}
.y13b{bottom:459.513333pt;}
.y166{bottom:461.477333pt;}
.y119{bottom:466.268000pt;}
.y30{bottom:469.044000pt;}
.yc0{bottom:471.589333pt;}
.y106{bottom:475.354667pt;}
.yad{bottom:476.894667pt;}
.y83{bottom:476.897333pt;}
.y13a{bottom:477.578667pt;}
.y184{bottom:478.368000pt;}
.y118{bottom:484.333333pt;}
.yd5{bottom:485.006667pt;}
.y2f{bottom:487.109333pt;}
.y5c{bottom:489.052000pt;}
.ybf{bottom:489.654667pt;}
.y165{bottom:491.497333pt;}
.yac{bottom:494.960000pt;}
.y82{bottom:494.962667pt;}
.y183{bottom:496.433333pt;}
.y105{bottom:502.814667pt;}
.yd4{bottom:503.073333pt;}
.y5b{bottom:507.118667pt;}
.y139{bottom:507.598667pt;}
.ybe{bottom:507.720000pt;}
.y164{bottom:509.564000pt;}
.yab{bottom:513.025333pt;}
.y81{bottom:513.028000pt;}
.y2e{bottom:513.976000pt;}
.y117{bottom:517.010667pt;}
.yd3{bottom:518.956000pt;}
.yd2{bottom:521.138667pt;}
.y5a{bottom:525.184000pt;}
.y138{bottom:525.665333pt;}
.ybd{bottom:525.785333pt;}
.y182{bottom:526.453333pt;}
.y163{bottom:527.629333pt;}
.yaa{bottom:531.090667pt;}
.y80{bottom:531.094667pt;}
.y104{bottom:541.490667pt;}
.y2d{bottom:542.736000pt;}
.y59{bottom:543.249333pt;}
.ya9{bottom:549.156000pt;}
.y116{bottom:549.688000pt;}
.yd1{bottom:551.102667pt;}
.ybc{bottom:553.245333pt;}
.y137{bottom:555.685333pt;}
.y181{bottom:556.474667pt;}
.y162{bottom:557.649333pt;}
.y7f{bottom:559.210667pt;}
.y103{bottom:559.556000pt;}
.y58{bottom:561.314667pt;}
.ya8{bottom:567.222667pt;}
.y115{bottom:567.753333pt;}
.yd0{bottom:569.168000pt;}
.y2c{bottom:571.494667pt;}
.y161{bottom:575.716000pt;}
.y7e{bottom:577.276000pt;}
.y102{bottom:577.621333pt;}
.y57{bottom:579.380000pt;}
.y136{bottom:585.706667pt;}
.y114{bottom:585.818667pt;}
.y180{bottom:586.494667pt;}
.ybb{bottom:592.194667pt;}
.y160{bottom:593.781333pt;}
.ya7{bottom:594.681333pt;}
.y7d{bottom:595.341333pt;}
.ycf{bottom:599.132000pt;}
.y2b{bottom:600.254667pt;}
.y156{bottom:603.232000pt;}
.y101{bottom:606.188000pt;}
.yba{bottom:610.261333pt;}
.y56{bottom:611.992000pt;}
.y113{bottom:613.278667pt;}
.y135{bottom:615.726667pt;}
.y17f{bottom:616.516000pt;}
.yce{bottom:617.197333pt;}
.y155{bottom:621.298667pt;}
.y15f{bottom:623.801333pt;}
.y100{bottom:624.253333pt;}
.y7c{bottom:624.600000pt;}
.y2a{bottom:627.121333pt;}
.yb9{bottom:628.326667pt;}
.y55{bottom:630.057333pt;}
.ya6{bottom:633.632000pt;}
.y154{bottom:639.364000pt;}
.y15e{bottom:641.868000pt;}
.y7b{bottom:642.666667pt;}
.y134{bottom:645.748000pt;}
.yb8{bottom:646.392000pt;}
.y17e{bottom:646.537333pt;}
.ycd{bottom:647.161333pt;}
.y54{bottom:648.122667pt;}
.ya5{bottom:651.697333pt;}
.yff{bottom:653.692000pt;}
.y1b{bottom:654.432000pt;}
.y29{bottom:654.580000pt;}
.y153{bottom:657.429333pt;}
.y15d{bottom:659.933333pt;}
.y7a{bottom:660.732000pt;}
.y133{bottom:663.813333pt;}
.yb7{bottom:664.457333pt;}
.y53{bottom:666.188000pt;}
.ya4{bottom:669.762667pt;}
.y1a{bottom:670.373333pt;}
.yfe{bottom:671.757333pt;}
.y152{bottom:675.494667pt;}
.y17d{bottom:676.557333pt;}
.ycc{bottom:677.038667pt;}
.y52{bottom:684.253333pt;}
.y19{bottom:686.313333pt;}
.ya3{bottom:687.828000pt;}
.y15c{bottom:689.953333pt;}
.y79{bottom:689.990667pt;}
.y132{bottom:691.273333pt;}
.yb6{bottom:691.917333pt;}
.y28{bottom:692.936000pt;}
.yfd{bottom:700.324000pt;}
.y18{bottom:702.253333pt;}
.y151{bottom:702.954667pt;}
.ya2{bottom:705.894667pt;}
.yef{bottom:706.578667pt;}
.y15b{bottom:708.020000pt;}
.y78{bottom:708.056000pt;}
.ycb{bottom:709.545333pt;}
.y51{bottom:716.865333pt;}
.y17{bottom:718.193333pt;}
.yfc{bottom:718.389333pt;}
.y27{bottom:719.802667pt;}
.y150{bottom:721.550667pt;}
.ya1{bottom:723.960000pt;}
.yee{bottom:724.644000pt;}
.y15a{bottom:726.085333pt;}
.y131{bottom:730.222667pt;}
.yb5{bottom:730.866667pt;}
.y16{bottom:734.133333pt;}
.y50{bottom:734.930667pt;}
.y77{bottom:736.172000pt;}
.y17c{bottom:736.598667pt;}
.ya0{bottom:742.025333pt;}
.yca{bottom:742.052000pt;}
.yed{bottom:742.709333pt;}
.y159{bottom:744.150667pt;}
.yfb{bottom:745.848000pt;}
.y130{bottom:748.288000pt;}
.y26{bottom:748.562667pt;}
.yb4{bottom:748.933333pt;}
.y15{bottom:750.073333pt;}
.y112{bottom:751.418667pt;}
.y4f{bottom:752.996000pt;}
.y76{bottom:754.237333pt;}
.y17b{bottom:754.665333pt;}
.y9f{bottom:760.090667pt;}
.y14f{bottom:760.501333pt;}
.y14{bottom:766.014667pt;}
.y12f{bottom:766.354667pt;}
.yb3{bottom:766.998667pt;}
.yc9{bottom:769.512000pt;}
.y4e{bottom:771.061333pt;}
.y75{bottom:772.304000pt;}
.yec{bottom:772.730667pt;}
.y25{bottom:777.321333pt;}
.y158{bottom:778.156000pt;}
.y14e{bottom:778.566667pt;}
.y13{bottom:781.954667pt;}
.y17a{bottom:782.124000pt;}
.y12e{bottom:784.420000pt;}
.yfa{bottom:784.524000pt;}
.y9e{bottom:787.550667pt;}
.y4d{bottom:789.128000pt;}
.y74{bottom:790.369333pt;}
.yeb{bottom:790.796000pt;}
.y14d{bottom:796.632000pt;}
.y12{bottom:797.894667pt;}
.yb2{bottom:799.676000pt;}
.y9d{bottom:802.485333pt;}
.yf9{bottom:802.589333pt;}
.y157{bottom:805.616000pt;}
.y24{bottom:806.081333pt;}
.y4c{bottom:807.193333pt;}
.y73{bottom:808.434667pt;}
.y11{bottom:813.834667pt;}
.y14c{bottom:814.698667pt;}
.y9c{bottom:820.550667pt;}
.yf8{bottom:820.656000pt;}
.yea{bottom:820.816000pt;}
.y179{bottom:821.074667pt;}
.y72{bottom:826.500000pt;}
.y10{bottom:829.774667pt;}
.yb1{bottom:832.353333pt;}
.y14b{bottom:832.764000pt;}
.y23{bottom:832.948000pt;}
.y9b{bottom:838.616000pt;}
.yf7{bottom:838.721333pt;}
.y4b{bottom:839.804000pt;}
.y71{bottom:844.565333pt;}
.yf{bottom:845.714667pt;}
.yb0{bottom:850.418667pt;}
.y14a{bottom:850.829333pt;}
.ye9{bottom:850.837333pt;}
.y178{bottom:851.094667pt;}
.y9a{bottom:856.682667pt;}
.yf6{bottom:856.786667pt;}
.y4a{bottom:857.869333pt;}
.y22{bottom:860.406667pt;}
.ye{bottom:861.656000pt;}
.y70{bottom:862.632000pt;}
.y4{bottom:863.481333pt;}
.y149{bottom:868.894667pt;}
.y177{bottom:869.160000pt;}
.y99{bottom:874.748000pt;}
.yf5{bottom:874.852000pt;}
.y49{bottom:875.934667pt;}
.yd{bottom:877.596000pt;}
.yaf{bottom:877.878667pt;}
.y6f{bottom:880.697333pt;}
.ye8{bottom:880.858667pt;}
.y12d{bottom:884.141333pt;}
.y148{bottom:886.960000pt;}
.y98{bottom:892.813333pt;}
.yf4{bottom:892.917333pt;}
.yc{bottom:893.536000pt;}
.y48{bottom:894.001333pt;}
.y3{bottom:896.093333pt;}
.y21{bottom:898.762667pt;}
.y176{bottom:899.181333pt;}
.y147{bottom:905.026667pt;}
.ye7{bottom:908.317333pt;}
.yb{bottom:909.476000pt;}
.yf3{bottom:910.984000pt;}
.y111{bottom:913.697333pt;}
.y20{bottom:916.828000pt;}
.y175{bottom:917.246667pt;}
.y97{bottom:920.273333pt;}
.y12c{bottom:923.092000pt;}
.ya{bottom:925.416000pt;}
.y47{bottom:926.612000pt;}
.yf2{bottom:929.049333pt;}
.y43{bottom:931.764000pt;}
.y1f{bottom:934.893333pt;}
.y2{bottom:936.508000pt;}
.y12b{bottom:941.157333pt;}
.y9{bottom:941.356000pt;}
.y46{bottom:944.677333pt;}
.ye6{bottom:947.268000pt;}
.y42{bottom:949.829333pt;}
.y1e{bottom:952.960000pt;}
.y1{bottom:955.105333pt;}
.yf1{bottom:956.508000pt;}
.y8{bottom:957.297333pt;}
.y96{bottom:959.222667pt;}
.y45{bottom:962.742667pt;}
.ye5{bottom:965.333333pt;}
.y41{bottom:967.894667pt;}
.y7{bottom:973.237333pt;}
.y95{bottom:977.288000pt;}
.y1d{bottom:980.418667pt;}
.y44{bottom:980.808000pt;}
.y40{bottom:985.960000pt;}
.y6{bottom:989.177333pt;}
.yf0{bottom:989.509333pt;}
.y94{bottom:995.354667pt;}
.y5{bottom:1013.420000pt;}
.hc{height:26.567000pt;}
.h4{height:39.850400pt;}
.hb{height:41.658217pt;}
.h9{height:43.636400pt;}
.h5{height:44.154243pt;}
.h3{height:44.887791pt;}
.h6{height:48.349131pt;}
.ha{height:48.407313pt;}
.h8{height:54.834517pt;}
.h7{height:65.801237pt;}
.h2{height:78.961301pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:91.578667pt;}
.x24{left:93.536000pt;}
.xa{left:94.488000pt;}
.xb{left:97.720000pt;}
.x2{left:115.082667pt;}
.xc{left:116.306667pt;}
.x16{left:126.612000pt;}
.x8{left:129.297333pt;}
.x7{left:130.506667pt;}
.x18{left:132.034667pt;}
.x15{left:133.418667pt;}
.x17{left:136.194667pt;}
.xe{left:149.761333pt;}
.x6{left:150.777333pt;}
.x1{left:182.605333pt;}
.x1d{left:188.140000pt;}
.x1e{left:204.476000pt;}
.x1f{left:216.528000pt;}
.x20{left:226.104000pt;}
.x1b{left:233.185333pt;}
.x19{left:236.792000pt;}
.x1c{left:245.541333pt;}
.x22{left:249.884000pt;}
.xf{left:252.518667pt;}
.x1a{left:254.457333pt;}
.x23{left:266.297333pt;}
.x10{left:268.858667pt;}
.x3{left:304.505333pt;}
.x11{left:325.904000pt;}
.x12{left:327.525333pt;}
.x5{left:336.361333pt;}
.x4{left:360.432000pt;}
.x21{left:389.577333pt;}
.x9{left:393.214667pt;}
.x13{left:411.658667pt;}
.x14{left:424.932000pt;}
.xd{left:682.485333pt;}
}




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