
    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_bc3d6cc1e2e0975e28256be6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_39ff301fa8bc033691ac7dd4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_89e869865234ba06e5f0315b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a2577b3d6d0ae25ac9aba88b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_e26d919efb4f8746ab6d50cd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.555000;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_c97799ad73912799792e85d1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.580000;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;}
.m4{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);}
.m19{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);}
.ma{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);}
.mb{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);}
.m10{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);}
.m7{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);}
.m26{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);}
.m1f{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);}
.m8{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m28{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);}
.m1c{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m5{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m22{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);}
.md{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);}
.m1e{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);}
.m12{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);}
.m13{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);}
.m11{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);}
.m1{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);}
.mc{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);}
.m23{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);}
.m1b{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);}
.m25{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);}
.m1a{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);}
.mf{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);}
.m24{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);}
.me{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);}
.m1d{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);}
.m6{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);}
.m21{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);}
.m29{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-11.046000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:1.443582px;}
.ls10{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.lsb{letter-spacing:15.879402px;}
.ls6{letter-spacing:17.185500px;}
.ls7{letter-spacing:17.391726px;}
.ls8{letter-spacing:17.460468px;}
.lsd{letter-spacing:17.529210px;}
.lse{letter-spacing:17.666694px;}
.ls5{letter-spacing:20.177100px;}
.lsa{letter-spacing:20.691342px;}
.lsf{letter-spacing:21.722472px;}
.ls9{letter-spacing:23.715990px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6e{word-spacing:-17.185500px;}
.ws101{word-spacing:-3.780810px;}
.wscd{word-spacing:-3.712068px;}
.wsa3{word-spacing:-3.643326px;}
.wsd0{word-spacing:-3.505842px;}
.wsa7{word-spacing:-3.437100px;}
.wsb4{word-spacing:-3.299616px;}
.ws5c{word-spacing:-3.230874px;}
.wse0{word-spacing:-3.162132px;}
.ws14{word-spacing:-2.988780px;}
.ws1f{word-spacing:-2.887164px;}
.wsa2{word-spacing:-2.818422px;}
.ws99{word-spacing:-2.749680px;}
.wsf6{word-spacing:-2.680938px;}
.wsd1{word-spacing:-2.543454px;}
.ws65{word-spacing:-2.474712px;}
.wsb0{word-spacing:-2.405970px;}
.ws8d{word-spacing:-2.337228px;}
.ws60{word-spacing:-2.199744px;}
.ws63{word-spacing:-2.131002px;}
.ws6d{word-spacing:-2.062260px;}
.wse1{word-spacing:-1.993518px;}
.ws100{word-spacing:-1.856034px;}
.ws11{word-spacing:-1.793268px;}
.ws41{word-spacing:-1.787292px;}
.wsd8{word-spacing:-1.718550px;}
.wsbc{word-spacing:-1.649808px;}
.ws9f{word-spacing:-1.581066px;}
.ws90{word-spacing:-1.512324px;}
.ws7{word-spacing:-1.494390px;}
.wsb2{word-spacing:-1.443582px;}
.ws35{word-spacing:-1.374840px;}
.ws70{word-spacing:-1.306098px;}
.ws2b{word-spacing:-1.237356px;}
.wse{word-spacing:-1.195512px;}
.ws61{word-spacing:-1.168614px;}
.ws39{word-spacing:-1.099872px;}
.ws102{word-spacing:-1.031130px;}
.wsf7{word-spacing:-0.962388px;}
.ws51{word-spacing:-0.893646px;}
.wsa9{word-spacing:-0.756162px;}
.ws62{word-spacing:-0.687420px;}
.wsb8{word-spacing:-0.618678px;}
.ws9a{word-spacing:-0.549936px;}
.ws67{word-spacing:-0.481194px;}
.ws21{word-spacing:-0.412452px;}
.ws9{word-spacing:-0.358654px;}
.ws2d{word-spacing:-0.343710px;}
.ws29{word-spacing:-0.274968px;}
.ws23{word-spacing:-0.206226px;}
.ws4{word-spacing:-0.179327px;}
.ws30{word-spacing:-0.137484px;}
.wsb{word-spacing:-0.119551px;}
.ws25{word-spacing:-0.068742px;}
.ws10{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.059776px;}
.ws1e{word-spacing:0.068742px;}
.ws15{word-spacing:0.107597px;}
.ws1a{word-spacing:0.137484px;}
.ws1b{word-spacing:0.206226px;}
.wsc{word-spacing:0.239102px;}
.ws1d{word-spacing:0.274968px;}
.ws2f{word-spacing:0.343710px;}
.wsd{word-spacing:0.358654px;}
.ws44{word-spacing:0.412452px;}
.ws54{word-spacing:0.481194px;}
.ws9d{word-spacing:0.549936px;}
.ws8c{word-spacing:0.618678px;}
.ws34{word-spacing:0.687420px;}
.ws82{word-spacing:0.756162px;}
.ws5d{word-spacing:0.824904px;}
.ws47{word-spacing:0.893646px;}
.ws18{word-spacing:0.962388px;}
.ws26{word-spacing:1.031130px;}
.ws40{word-spacing:1.099872px;}
.ws43{word-spacing:1.168614px;}
.ws3f{word-spacing:1.237356px;}
.ws6f{word-spacing:1.306098px;}
.wsa1{word-spacing:1.374840px;}
.ws20{word-spacing:1.443582px;}
.ws9c{word-spacing:1.512324px;}
.ws3d{word-spacing:1.581066px;}
.ws9e{word-spacing:1.649808px;}
.ws73{word-spacing:1.718550px;}
.ws32{word-spacing:1.787292px;}
.ws5e{word-spacing:1.856034px;}
.ws69{word-spacing:1.924776px;}
.wsec{word-spacing:1.993518px;}
.ws4a{word-spacing:2.062260px;}
.ws45{word-spacing:2.131002px;}
.ws84{word-spacing:2.199744px;}
.ws66{word-spacing:2.268486px;}
.ws4c{word-spacing:2.337228px;}
.ws93{word-spacing:2.405970px;}
.ws2a{word-spacing:2.474712px;}
.ws50{word-spacing:2.543454px;}
.ws91{word-spacing:2.680938px;}
.ws12{word-spacing:2.749678px;}
.ws4e{word-spacing:2.749680px;}
.ws79{word-spacing:2.818422px;}
.wsdb{word-spacing:2.869236px;}
.wsdd{word-spacing:2.887164px;}
.wsfe{word-spacing:2.955906px;}
.wscc{word-spacing:3.024648px;}
.ws95{word-spacing:3.093390px;}
.ws64{word-spacing:3.162132px;}
.wsf1{word-spacing:3.230874px;}
.ws76{word-spacing:3.299616px;}
.ws78{word-spacing:3.437100px;}
.ws33{word-spacing:3.505842px;}
.ws48{word-spacing:3.574584px;}
.ws59{word-spacing:3.643326px;}
.ws13{word-spacing:3.646312px;}
.ws103{word-spacing:3.712068px;}
.ws8e{word-spacing:3.780810px;}
.ws8{word-spacing:3.825638px;}
.wscf{word-spacing:3.849552px;}
.wsca{word-spacing:3.918294px;}
.ws98{word-spacing:3.987036px;}
.ws46{word-spacing:4.055778px;}
.wsbe{word-spacing:4.124520px;}
.wsf{word-spacing:4.184292px;}
.ws19{word-spacing:4.193262px;}
.wsfa{word-spacing:4.262004px;}
.ws24{word-spacing:4.330746px;}
.ws68{word-spacing:4.399488px;}
.wsd5{word-spacing:4.468230px;}
.ws4f{word-spacing:4.536972px;}
.wsf4{word-spacing:4.605714px;}
.wsf8{word-spacing:4.674456px;}
.ws7a{word-spacing:4.743198px;}
.ws89{word-spacing:4.811940px;}
.ws8f{word-spacing:4.880682px;}
.ws87{word-spacing:4.949424px;}
.ws2e{word-spacing:5.018166px;}
.wsbd{word-spacing:5.086908px;}
.wsa{word-spacing:5.140702px;}
.ws36{word-spacing:5.155650px;}
.ws7e{word-spacing:5.224392px;}
.ws8a{word-spacing:5.293134px;}
.wsa8{word-spacing:5.430618px;}
.ws83{word-spacing:5.499360px;}
.ws92{word-spacing:5.568102px;}
.ws42{word-spacing:5.636844px;}
.ws38{word-spacing:5.705586px;}
.ws75{word-spacing:5.774328px;}
.ws6c{word-spacing:5.843070px;}
.ws53{word-spacing:5.911812px;}
.wsff{word-spacing:5.980554px;}
.ws5{word-spacing:6.037336px;}
.ws1c{word-spacing:6.049296px;}
.wsdc{word-spacing:6.118038px;}
.wsbf{word-spacing:6.186780px;}
.ws5b{word-spacing:6.255522px;}
.wsaf{word-spacing:6.324264px;}
.wsd6{word-spacing:6.393006px;}
.ws2c{word-spacing:6.461748px;}
.wsaa{word-spacing:6.530490px;}
.wsba{word-spacing:6.599232px;}
.wsd2{word-spacing:6.667974px;}
.wsa4{word-spacing:6.736716px;}
.ws86{word-spacing:6.805458px;}
.ws57{word-spacing:6.874200px;}
.ws3e{word-spacing:6.942942px;}
.wsf3{word-spacing:7.011684px;}
.ws52{word-spacing:7.080426px;}
.wsee{word-spacing:7.149168px;}
.ws3b{word-spacing:7.217910px;}
.wsf5{word-spacing:7.286652px;}
.ws3c{word-spacing:7.355394px;}
.wsc3{word-spacing:7.424136px;}
.wsb3{word-spacing:7.492878px;}
.wse5{word-spacing:7.558224px;}
.wse4{word-spacing:7.560672px;}
.wse7{word-spacing:7.561224px;}
.ws85{word-spacing:7.561620px;}
.wse6{word-spacing:7.563396px;}
.wseb{word-spacing:7.563690px;}
.ws22{word-spacing:7.630362px;}
.ws94{word-spacing:7.699104px;}
.wsef{word-spacing:7.836588px;}
.ws4d{word-spacing:7.905330px;}
.ws88{word-spacing:7.974072px;}
.wsce{word-spacing:8.042814px;}
.wsac{word-spacing:8.111556px;}
.ws3a{word-spacing:8.180298px;}
.wsfb{word-spacing:8.249040px;}
.wse8{word-spacing:8.386524px;}
.wsed{word-spacing:8.455266px;}
.wsa0{word-spacing:8.524008px;}
.wsf0{word-spacing:8.592750px;}
.wsd4{word-spacing:8.661492px;}
.wsdf{word-spacing:8.730234px;}
.ws5f{word-spacing:8.798976px;}
.wsc7{word-spacing:8.867718px;}
.ws31{word-spacing:8.936460px;}
.ws5a{word-spacing:9.073944px;}
.ws37{word-spacing:9.142686px;}
.ws58{word-spacing:9.211428px;}
.wsa5{word-spacing:9.280170px;}
.wsde{word-spacing:9.417654px;}
.wsb5{word-spacing:9.486396px;}
.ws4b{word-spacing:9.555138px;}
.ws97{word-spacing:9.623880px;}
.ws56{word-spacing:9.692622px;}
.ws7c{word-spacing:9.761364px;}
.ws7d{word-spacing:9.830106px;}
.ws96{word-spacing:9.898848px;}
.wsd3{word-spacing:10.036332px;}
.wsd7{word-spacing:10.173816px;}
.wsfd{word-spacing:10.311300px;}
.ws7b{word-spacing:10.448784px;}
.ws28{word-spacing:10.586268px;}
.ws8b{word-spacing:10.723752px;}
.ws17{word-spacing:10.861236px;}
.ws55{word-spacing:10.929978px;}
.wsa6{word-spacing:11.067462px;}
.ws49{word-spacing:11.136204px;}
.wsb6{word-spacing:11.411172px;}
.wsbb{word-spacing:11.892366px;}
.wscb{word-spacing:11.961108px;}
.wsb1{word-spacing:12.098592px;}
.ws80{word-spacing:12.304818px;}
.ws74{word-spacing:12.373560px;}
.wsc0{word-spacing:12.442302px;}
.ws9b{word-spacing:13.129722px;}
.ws6a{word-spacing:13.198464px;}
.wsb9{word-spacing:13.335948px;}
.wsc1{word-spacing:13.748400px;}
.ws77{word-spacing:13.817142px;}
.ws27{word-spacing:14.023368px;}
.ws72{word-spacing:14.504562px;}
.wsc8{word-spacing:14.573304px;}
.ws81{word-spacing:14.985756px;}
.ws6b{word-spacing:15.535692px;}
.wse3{word-spacing:16.635564px;}
.ws0{word-spacing:16.880672px;}
.ws7f{word-spacing:17.116758px;}
.wsc9{word-spacing:17.322984px;}
.ws3{word-spacing:18.351109px;}
.wsb7{word-spacing:19.349392px;}
.wsf9{word-spacing:20.003922px;}
.wsc2{word-spacing:20.897568px;}
.wsad{word-spacing:29.215350px;}
.wsae{word-spacing:42.207588px;}
.wsfc{word-spacing:42.620040px;}
.ws71{word-spacing:50.181660px;}
.wse9{word-spacing:54.512406px;}
.wsf2{word-spacing:66.267288px;}
.wsd9{word-spacing:71.629164px;}
.ws16{word-spacing:77.630692px;}
.wsc4{word-spacing:78.365880px;}
.wsc5{word-spacing:78.434622px;}
.wsda{word-spacing:85.033854px;}
.wsc6{word-spacing:95.482638px;}
.wsea{word-spacing:204.369966px;}
.wsab{word-spacing:360.345564px;}
.wse2{word-spacing:943.119258px;}
._3d{margin-left:-9.280170px;}
._26{margin-left:-7.492878px;}
._39{margin-left:-6.324264px;}
._5{margin-left:-4.722272px;}
._b{margin-left:-3.586536px;}
._1{margin-left:-2.582310px;}
._2{margin-left:-1.549386px;}
._0{width:1.386797px;}
._52{width:2.818422px;}
._51{width:3.994212px;}
._54{width:5.146079px;}
._53{width:6.174823px;}
._f{width:14.568599px;}
._d{width:16.236349px;}
._7{width:17.454475px;}
._8{width:18.805416px;}
._9{width:20.383480px;}
._13{width:21.417618px;}
._6{width:22.654952px;}
._14{width:24.128442px;}
._22{width:25.314986px;}
._17{width:26.396928px;}
._a{width:27.496776px;}
._1a{width:29.352834px;}
._18{width:30.422820px;}
._3{width:31.504182px;}
._e{width:32.787250px;}
._10{width:34.096032px;}
._2b{width:35.372244px;}
._4{width:37.060872px;}
._15{width:39.114198px;}
._11{width:40.913442px;}
._19{width:42.079074px;}
._24{width:43.376202px;}
._50{width:45.232236px;}
._16{width:46.332108px;}
._1e{width:47.569464px;}
._1b{width:49.256334px;}
._23{width:51.054380px;}
._12{width:53.618760px;}
._c{width:59.177844px;}
._1d{width:60.531816px;}
._20{width:63.173898px;}
._1c{width:67.367160px;}
._21{width:68.879484px;}
._25{width:70.116840px;}
._49{width:71.766648px;}
._33{width:73.416456px;}
._3b{width:76.166136px;}
._2a{width:77.708400px;}
._4d{width:81.184302px;}
._47{width:88.952148px;}
._2f{width:95.620122px;}
._4b{width:99.332190px;}
._40{width:100.363320px;}
._2d{width:104.212872px;}
._4a{width:106.068906px;}
._4f{width:108.818586px;}
._45{width:131.915898px;}
._3f{width:144.220716px;}
._46{width:149.032656px;}
._1f{width:156.633132px;}
._41{width:182.510010px;}
._43{width:199.558026px;}
._27{width:249.295554px;}
._42{width:256.957596px;}
._30{width:294.009534px;}
._3a{width:305.695674px;}
._2e{width:309.064032px;}
._37{width:331.077608px;}
._2c{width:363.856788px;}
._3c{width:369.075798px;}
._31{width:375.574608px;}
._29{width:377.531064px;}
._28{width:429.225048px;}
._35{width:431.118144px;}
._34{width:462.014982px;}
._3e{width:486.418392px;}
._32{width:500.098050px;}
._44{width:525.324726px;}
._36{width:635.932242px;}
._4e{width:662.878986px;}
._38{width:670.165758px;}
._48{width:678.142434px;}
._4c{width:692.850618px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:47.820600px;}
.fs7{font-size:50.869800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y7d{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y14c{bottom:89.026500px;}
.y7c{bottom:89.269500px;}
.y5e{bottom:90.213000px;}
.y52{bottom:90.733500px;}
.ya4{bottom:91.032000px;}
.y62{bottom:91.227000px;}
.yaf{bottom:92.046000px;}
.y127{bottom:93.810000px;}
.yd6{bottom:95.515500px;}
.y25{bottom:95.682000px;}
.ye3{bottom:96.529500px;}
.y178{bottom:103.497000px;}
.y1c0{bottom:103.662000px;}
.y19c{bottom:106.497000px;}
.y1a4{bottom:107.511000px;}
.y14b{bottom:111.823500px;}
.y7b{bottom:112.068000px;}
.y5d{bottom:113.010000px;}
.y51{bottom:113.530500px;}
.ya3{bottom:113.830500px;}
.y61{bottom:114.024000px;}
.yae{bottom:114.843000px;}
.y126{bottom:116.607000px;}
.yd5{bottom:118.312500px;}
.y24{bottom:118.480500px;}
.ye2{bottom:119.326500px;}
.y177{bottom:126.294000px;}
.y1bf{bottom:126.459000px;}
.y19b{bottom:129.294000px;}
.y1a3{bottom:130.308000px;}
.y14a{bottom:134.620500px;}
.y7a{bottom:134.865000px;}
.y5c{bottom:135.807000px;}
.y50{bottom:136.327500px;}
.ya2{bottom:136.627500px;}
.y60{bottom:136.821000px;}
.yad{bottom:137.641500px;}
.y125{bottom:139.404000px;}
.yd4{bottom:141.109500px;}
.y23{bottom:141.277500px;}
.ye1{bottom:142.123500px;}
.y176{bottom:149.091000px;}
.y1be{bottom:149.256000px;}
.y19a{bottom:152.091000px;}
.y1a2{bottom:153.105000px;}
.y79{bottom:157.662000px;}
.y5b{bottom:158.604000px;}
.y4f{bottom:159.124500px;}
.ya1{bottom:159.424500px;}
.y5f{bottom:159.618000px;}
.yac{bottom:160.438500px;}
.y193{bottom:161.932500px;}
.y124{bottom:162.201000px;}
.yd3{bottom:163.906500px;}
.y22{bottom:164.074500px;}
.ye0{bottom:164.920500px;}
.y175{bottom:171.888000px;}
.y1bd{bottom:172.053000px;}
.y199{bottom:174.888000px;}
.y1a1{bottom:175.902000px;}
.y78{bottom:180.459000px;}
.y4e{bottom:181.921500px;}
.ya0{bottom:182.221500px;}
.yab{bottom:183.235500px;}
.y192{bottom:184.729500px;}
.yd2{bottom:186.705000px;}
.y21{bottom:186.871500px;}
.ydf{bottom:187.717500px;}
.y149{bottom:193.284000px;}
.y174{bottom:194.685000px;}
.y1bc{bottom:194.851500px;}
.y198{bottom:197.685000px;}
.y1a0{bottom:198.699000px;}
.y5a{bottom:200.347500px;}
.y77{bottom:203.256000px;}
.y4d{bottom:204.718500px;}
.y9f{bottom:205.018500px;}
.yaa{bottom:206.032500px;}
.y191{bottom:207.526500px;}
.yd1{bottom:209.502000px;}
.y20{bottom:209.668500px;}
.yde{bottom:210.516000px;}
.y148{bottom:216.081000px;}
.y173{bottom:217.482000px;}
.y1bb{bottom:217.648500px;}
.y197{bottom:220.482000px;}
.y123{bottom:221.496000px;}
.y59{bottom:223.144500px;}
.y76{bottom:226.053000px;}
.y4c{bottom:227.515500px;}
.y9e{bottom:227.815500px;}
.ya9{bottom:228.829500px;}
.y190{bottom:230.323500px;}
.yd0{bottom:232.299000px;}
.y1f{bottom:232.465500px;}
.ydd{bottom:233.313000px;}
.y147{bottom:238.878000px;}
.y172{bottom:240.279000px;}
.y1ba{bottom:240.445500px;}
.y107{bottom:243.280500px;}
.y122{bottom:244.294500px;}
.y58{bottom:245.941500px;}
.y75{bottom:248.850000px;}
.y4b{bottom:250.312500px;}
.y9d{bottom:250.612500px;}
.ya8{bottom:251.626500px;}
.y18f{bottom:253.120500px;}
.ycf{bottom:255.096000px;}
.y1e{bottom:255.262500px;}
.ydc{bottom:256.110000px;}
.y146{bottom:261.675000px;}
.y171{bottom:263.076000px;}
.y1b9{bottom:263.242500px;}
.y106{bottom:266.077500px;}
.y121{bottom:267.091500px;}
.y57{bottom:268.740000px;}
.y74{bottom:271.647000px;}
.y4a{bottom:273.109500px;}
.y9c{bottom:273.409500px;}
.ya7{bottom:274.423500px;}
.y18e{bottom:275.917500px;}
.yce{bottom:277.893000px;}
.ydb{bottom:278.907000px;}
.y145{bottom:284.472000px;}
.y170{bottom:285.873000px;}
.y1b8{bottom:286.039500px;}
.y105{bottom:288.874500px;}
.y120{bottom:289.888500px;}
.y56{bottom:291.537000px;}
.y73{bottom:294.444000px;}
.y49{bottom:295.908000px;}
.y9b{bottom:296.206500px;}
.ya6{bottom:297.220500px;}
.y18d{bottom:298.714500px;}
.ycd{bottom:300.690000px;}
.yda{bottom:301.704000px;}
.y1d{bottom:306.453000px;}
.y144{bottom:307.269000px;}
.y16f{bottom:308.671500px;}
.y1b7{bottom:308.836500px;}
.y104{bottom:311.671500px;}
.y11f{bottom:312.685500px;}
.y72{bottom:317.241000px;}
.y48{bottom:318.705000px;}
.y9a{bottom:319.003500px;}
.ya5{bottom:320.017500px;}
.y18c{bottom:321.511500px;}
.ycc{bottom:323.487000px;}
.yd9{bottom:324.501000px;}
.y55{bottom:324.795000px;}
.y143{bottom:330.066000px;}
.y16e{bottom:331.468500px;}
.y1b6{bottom:331.633500px;}
.y103{bottom:334.468500px;}
.y11e{bottom:335.482500px;}
.y71{bottom:340.038000px;}
.y47{bottom:341.502000px;}
.y18b{bottom:344.308500px;}
.ycb{bottom:346.284000px;}
.yd8{bottom:347.298000px;}
.y1c{bottom:347.626500px;}
.y142{bottom:352.863000px;}
.y16d{bottom:354.265500px;}
.y1b5{bottom:354.430500px;}
.y102{bottom:357.265500px;}
.y11d{bottom:358.279500px;}
.y70{bottom:362.835000px;}
.y46{bottom:364.299000px;}
.y1b{bottom:366.202500px;}
.y18a{bottom:367.107000px;}
.yca{bottom:369.081000px;}
.yd7{bottom:370.095000px;}
.y141{bottom:375.660000px;}
.y1b4{bottom:377.227500px;}
.y101{bottom:380.062500px;}
.y11c{bottom:381.076500px;}
.y6f{bottom:385.632000px;}
.y45{bottom:387.096000px;}
.y1a{bottom:388.024500px;}
.y189{bottom:389.904000px;}
.y99{bottom:397.141500px;}
.y140{bottom:398.457000px;}
.y1b3{bottom:400.024500px;}
.y100{bottom:402.859500px;}
.y11b{bottom:403.873500px;}
.y6e{bottom:408.429000px;}
.y44{bottom:409.893000px;}
.y16c{bottom:412.527000px;}
.y188{bottom:412.701000px;}
.y98{bottom:419.938500px;}
.y13f{bottom:421.254000px;}
.y19{bottom:421.674000px;}
.y1b2{bottom:422.821500px;}
.yff{bottom:425.656500px;}
.y11a{bottom:426.670500px;}
.yc9{bottom:428.757000px;}
.y6d{bottom:431.227500px;}
.y43{bottom:432.690000px;}
.y187{bottom:435.498000px;}
.y13e{bottom:444.052500px;}
.y97{bottom:445.725000px;}
.y16b{bottom:447.739500px;}
.yfe{bottom:448.453500px;}
.y119{bottom:449.467500px;}
.yc8{bottom:451.555500px;}
.y6c{bottom:454.024500px;}
.y42{bottom:455.487000px;}
.y1b1{bottom:456.079500px;}
.y18{bottom:457.077000px;}
.y186{bottom:458.295000px;}
.y13d{bottom:466.849500px;}
.y96{bottom:468.522000px;}
.yfd{bottom:471.250500px;}
.y118{bottom:472.264500px;}
.yc7{bottom:474.352500px;}
.y6b{bottom:476.821500px;}
.y41{bottom:478.284000px;}
.y17{bottom:479.029500px;}
.y16a{bottom:481.027500px;}
.y185{bottom:481.092000px;}
.y13c{bottom:489.646500px;}
.yfc{bottom:494.047500px;}
.y95{bottom:494.308500px;}
.y117{bottom:495.061500px;}
.yc6{bottom:497.149500px;}
.y6a{bottom:499.618500px;}
.y16{bottom:500.982000px;}
.y40{bottom:501.081000px;}
.y184{bottom:503.889000px;}
.y13b{bottom:512.443500px;}
.yfb{bottom:516.844500px;}
.y94{bottom:517.105500px;}
.y116{bottom:517.858500px;}
.yc5{bottom:519.946500px;}
.y69{bottom:522.415500px;}
.y1b0{bottom:522.864000px;}
.y15{bottom:522.934500px;}
.y3f{bottom:523.878000px;}
.y183{bottom:526.686000px;}
.y169{bottom:527.136000px;}
.y13a{bottom:535.240500px;}
.yfa{bottom:539.643000px;}
.y93{bottom:539.902500px;}
.y115{bottom:540.655500px;}
.yc4{bottom:542.743500px;}
.y14{bottom:544.887000px;}
.y68{bottom:545.212500px;}
.y1af{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.y182{bottom:549.483000px;}
.y139{bottom:558.037500px;}
.y15b{bottom:561.025500px;}
.yf9{bottom:562.440000px;}
.y114{bottom:563.454000px;}
.yc3{bottom:565.540500px;}
.y92{bottom:565.687500px;}
.y13{bottom:566.841000px;}
.y67{bottom:568.009500px;}
.y1ae{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y181{bottom:572.280000px;}
.y138{bottom:580.834500px;}
.y168{bottom:582.810000px;}
.y15a{bottom:583.822500px;}
.yf8{bottom:585.237000px;}
.y113{bottom:586.251000px;}
.yc2{bottom:588.337500px;}
.y91{bottom:588.484500px;}
.y12{bottom:588.793500px;}
.y66{bottom:590.806500px;}
.y1ad{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y137{bottom:603.631500px;}
.y167{bottom:605.607000px;}
.y159{bottom:606.621000px;}
.yf7{bottom:608.034000px;}
.y112{bottom:609.048000px;}
.y11{bottom:610.746000px;}
.yc1{bottom:611.134500px;}
.y90{bottom:611.281500px;}
.y65{bottom:613.603500px;}
.y1ac{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y180{bottom:623.619000px;}
.y136{bottom:626.428500px;}
.y166{bottom:628.404000px;}
.y158{bottom:629.418000px;}
.yf6{bottom:630.831000px;}
.y111{bottom:631.845000px;}
.y10{bottom:632.698500px;}
.yc0{bottom:633.931500px;}
.y64{bottom:636.400500px;}
.y1ab{bottom:636.850500px;}
.y8f{bottom:637.068000px;}
.y3a{bottom:637.864500px;}
.y135{bottom:649.225500px;}
.y17f{bottom:649.404000px;}
.y165{bottom:651.201000px;}
.y157{bottom:652.215000px;}
.yf5{bottom:653.628000px;}
.y110{bottom:654.642000px;}
.yf{bottom:654.651000px;}
.ybf{bottom:656.728500px;}
.y63{bottom:658.183500px;}
.y1aa{bottom:659.647500px;}
.y8e{bottom:659.865000px;}
.y39{bottom:660.661500px;}
.y134{bottom:672.022500px;}
.y164{bottom:673.998000px;}
.y156{bottom:675.012000px;}
.y17e{bottom:675.190500px;}
.yf4{bottom:676.425000px;}
.ye{bottom:676.603500px;}
.y10f{bottom:677.439000px;}
.ybe{bottom:679.525500px;}
.y1a9{bottom:682.444500px;}
.y8d{bottom:682.662000px;}
.y38{bottom:683.458500px;}
.y133{bottom:694.819500px;}
.y163{bottom:696.795000px;}
.y155{bottom:697.809000px;}
.yd{bottom:698.557500px;}
.yf3{bottom:699.222000px;}
.y10e{bottom:700.236000px;}
.y17d{bottom:700.975500px;}
.ybd{bottom:702.322500px;}
.y1a8{bottom:705.241500px;}
.y37{bottom:706.255500px;}
.y1c2{bottom:706.341000px;}
.y8c{bottom:715.951500px;}
.y132{bottom:717.616500px;}
.y162{bottom:719.592000px;}
.yc{bottom:720.510000px;}
.y154{bottom:720.606000px;}
.yf2{bottom:722.019000px;}
.y10d{bottom:723.033000px;}
.ybc{bottom:725.119500px;}
.y17c{bottom:726.762000px;}
.y1a7{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.y131{bottom:740.413500px;}
.y161{bottom:742.389000px;}
.yb{bottom:742.462500px;}
.y153{bottom:743.403000px;}
.yf1{bottom:744.816000px;}
.y10c{bottom:745.830000px;}
.ybb{bottom:750.672000px;}
.y1a6{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y17b{bottom:752.548500px;}
.y8b{bottom:762.058500px;}
.y130{bottom:763.212000px;}
.ya{bottom:764.415000px;}
.y160{bottom:765.186000px;}
.y152{bottom:766.200000px;}
.yf0{bottom:767.613000px;}
.y10b{bottom:768.627000px;}
.yba{bottom:773.469000px;}
.y1a5{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y17a{bottom:785.836500px;}
.y12f{bottom:786.009000px;}
.y9{bottom:786.367500px;}
.y15f{bottom:787.983000px;}
.y151{bottom:788.997000px;}
.yef{bottom:790.410000px;}
.y10a{bottom:791.424000px;}
.y8a{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.yb9{bottom:799.255500px;}
.y8{bottom:808.321500px;}
.y12e{bottom:808.806000px;}
.y15e{bottom:810.780000px;}
.y150{bottom:811.794000px;}
.yee{bottom:813.207000px;}
.y109{bottom:814.221000px;}
.y89{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.yb8{bottom:822.052500px;}
.y7{bottom:830.274000px;}
.y179{bottom:831.945000px;}
.y15d{bottom:833.577000px;}
.y12d{bottom:834.358500px;}
.y14f{bottom:834.591000px;}
.yed{bottom:836.004000px;}
.y108{bottom:837.018000px;}
.y88{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.yb7{bottom:847.839000px;}
.y6{bottom:852.226500px;}
.y15c{bottom:856.374000px;}
.y14e{bottom:857.388000px;}
.y196{bottom:858.802500px;}
.y19f{bottom:859.815000px;}
.y87{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.y1c1{bottom:865.921500px;}
.y12c{bottom:867.646500px;}
.yb6{bottom:870.636000px;}
.yec{bottom:877.749000px;}
.y195{bottom:881.599500px;}
.y19e{bottom:882.613500px;}
.y14d{bottom:882.940500px;}
.y86{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.y12b{bottom:890.443500px;}
.yb5{bottom:896.421000px;}
.yeb{bottom:900.546000px;}
.y194{bottom:904.396500px;}
.y19d{bottom:905.410500px;}
.y85{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y12a{bottom:916.230000px;}
.y5{bottom:917.967000px;}
.yb4{bottom:919.218000px;}
.yea{bottom:923.343000px;}
.y84{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.y129{bottom:942.015000px;}
.yb3{bottom:945.004500px;}
.ye9{bottom:946.140000px;}
.y83{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.yb2{bottom:967.801500px;}
.ye8{bottom:968.937000px;}
.y82{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.yb1{bottom:990.598500px;}
.ye7{bottom:991.734000px;}
.y3{bottom:996.498000px;}
.y128{bottom:1001.091000px;}
.y81{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y1c4{bottom:1002.703500px;}
.ye6{bottom:1014.531000px;}
.yb0{bottom:1023.888000px;}
.y80{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.ye5{bottom:1037.328000px;}
.y7f{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y7e{bottom:1069.995000px;}
.ye4{bottom:1070.586000px;}
.y27{bottom:1071.009000px;}
.y1c3{bottom:1071.094500px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.he{height:32.900573px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.hd{height:37.802342px;}
.h5{height:41.125613px;}
.h4{height:41.364715px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.hc{height:47.569464px;}
.h3{height:53.463379px;}
.h7{height:53.774213px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:127.558500px;}
.x23{left:131.856000px;}
.x2f{left:140.289000px;}
.x13{left:141.303000px;}
.x2c{left:143.077500px;}
.xc{left:153.070500px;}
.x3{left:156.850500px;}
.x35{left:161.079000px;}
.x21{left:166.066500px;}
.x6{left:178.044000px;}
.x32{left:181.129500px;}
.x9{left:182.308500px;}
.x1d{left:183.486000px;}
.x29{left:185.851500px;}
.x19{left:204.747000px;}
.x8{left:232.231500px;}
.x25{left:234.628500px;}
.x16{left:242.727000px;}
.x15{left:244.275000px;}
.x26{left:255.621000px;}
.x38{left:267.490500px;}
.x12{left:294.592500px;}
.x28{left:305.602500px;}
.x37{left:307.497000px;}
.x36{left:308.931000px;}
.x4{left:314.344500px;}
.x22{left:318.070500px;}
.x33{left:322.594500px;}
.x1c{left:324.882000px;}
.x34{left:328.317000px;}
.x18{left:332.118000px;}
.x27{left:334.929000px;}
.x39{left:380.989500px;}
.x3a{left:386.713500px;}
.x14{left:389.767500px;}
.x5{left:397.524000px;}
.xe{left:404.373000px;}
.x7{left:410.130000px;}
.xa{left:432.832500px;}
.x1b{left:435.277500px;}
.x24{left:447.636000px;}
.xf{left:452.577000px;}
.x17{left:462.060000px;}
.xd{left:464.346000px;}
.x11{left:489.858000px;}
.x2a{left:495.898500px;}
.x1a{left:538.923000px;}
.x30{left:554.388000px;}
.x1e{left:560.182500px;}
.x2b{left:565.636500px;}
.x31{left:568.045500px;}
.x2{left:573.774000px;}
.x10{left:578.070000px;}
.x2d{left:602.082000px;}
.x2e{left:615.738000px;}
.x1{left:696.322500px;}
.x1f{left:739.621500px;}
.x20{left:753.279000px;}
@media print{
.v3{vertical-align:-9.818667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:1.283184pt;}
.ls10{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.lsb{letter-spacing:14.115024pt;}
.ls6{letter-spacing:15.276000pt;}
.ls7{letter-spacing:15.459312pt;}
.ls8{letter-spacing:15.520416pt;}
.lsd{letter-spacing:15.581520pt;}
.lse{letter-spacing:15.703728pt;}
.ls5{letter-spacing:17.935200pt;}
.lsa{letter-spacing:18.392304pt;}
.lsf{letter-spacing:19.308864pt;}
.ls9{letter-spacing:21.080880pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws6e{word-spacing:-15.276000pt;}
.ws101{word-spacing:-3.360720pt;}
.wscd{word-spacing:-3.299616pt;}
.wsa3{word-spacing:-3.238512pt;}
.wsd0{word-spacing:-3.116304pt;}
.wsa7{word-spacing:-3.055200pt;}
.wsb4{word-spacing:-2.932992pt;}
.ws5c{word-spacing:-2.871888pt;}
.wse0{word-spacing:-2.810784pt;}
.ws14{word-spacing:-2.656693pt;}
.ws1f{word-spacing:-2.566368pt;}
.wsa2{word-spacing:-2.505264pt;}
.ws99{word-spacing:-2.444160pt;}
.wsf6{word-spacing:-2.383056pt;}
.wsd1{word-spacing:-2.260848pt;}
.ws65{word-spacing:-2.199744pt;}
.wsb0{word-spacing:-2.138640pt;}
.ws8d{word-spacing:-2.077536pt;}
.ws60{word-spacing:-1.955328pt;}
.ws63{word-spacing:-1.894224pt;}
.ws6d{word-spacing:-1.833120pt;}
.wse1{word-spacing:-1.772016pt;}
.ws100{word-spacing:-1.649808pt;}
.ws11{word-spacing:-1.594016pt;}
.ws41{word-spacing:-1.588704pt;}
.wsd8{word-spacing:-1.527600pt;}
.wsbc{word-spacing:-1.466496pt;}
.ws9f{word-spacing:-1.405392pt;}
.ws90{word-spacing:-1.344288pt;}
.ws7{word-spacing:-1.328347pt;}
.wsb2{word-spacing:-1.283184pt;}
.ws35{word-spacing:-1.222080pt;}
.ws70{word-spacing:-1.160976pt;}
.ws2b{word-spacing:-1.099872pt;}
.wse{word-spacing:-1.062677pt;}
.ws61{word-spacing:-1.038768pt;}
.ws39{word-spacing:-0.977664pt;}
.ws102{word-spacing:-0.916560pt;}
.wsf7{word-spacing:-0.855456pt;}
.ws51{word-spacing:-0.794352pt;}
.wsa9{word-spacing:-0.672144pt;}
.ws62{word-spacing:-0.611040pt;}
.wsb8{word-spacing:-0.549936pt;}
.ws9a{word-spacing:-0.488832pt;}
.ws67{word-spacing:-0.427728pt;}
.ws21{word-spacing:-0.366624pt;}
.ws9{word-spacing:-0.318803pt;}
.ws2d{word-spacing:-0.305520pt;}
.ws29{word-spacing:-0.244416pt;}
.ws23{word-spacing:-0.183312pt;}
.ws4{word-spacing:-0.159402pt;}
.ws30{word-spacing:-0.122208pt;}
.wsb{word-spacing:-0.106268pt;}
.ws25{word-spacing:-0.061104pt;}
.ws10{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.053134pt;}
.ws1e{word-spacing:0.061104pt;}
.ws15{word-spacing:0.095642pt;}
.ws1a{word-spacing:0.122208pt;}
.ws1b{word-spacing:0.183312pt;}
.wsc{word-spacing:0.212535pt;}
.ws1d{word-spacing:0.244416pt;}
.ws2f{word-spacing:0.305520pt;}
.wsd{word-spacing:0.318803pt;}
.ws44{word-spacing:0.366624pt;}
.ws54{word-spacing:0.427728pt;}
.ws9d{word-spacing:0.488832pt;}
.ws8c{word-spacing:0.549936pt;}
.ws34{word-spacing:0.611040pt;}
.ws82{word-spacing:0.672144pt;}
.ws5d{word-spacing:0.733248pt;}
.ws47{word-spacing:0.794352pt;}
.ws18{word-spacing:0.855456pt;}
.ws26{word-spacing:0.916560pt;}
.ws40{word-spacing:0.977664pt;}
.ws43{word-spacing:1.038768pt;}
.ws3f{word-spacing:1.099872pt;}
.ws6f{word-spacing:1.160976pt;}
.wsa1{word-spacing:1.222080pt;}
.ws20{word-spacing:1.283184pt;}
.ws9c{word-spacing:1.344288pt;}
.ws3d{word-spacing:1.405392pt;}
.ws9e{word-spacing:1.466496pt;}
.ws73{word-spacing:1.527600pt;}
.ws32{word-spacing:1.588704pt;}
.ws5e{word-spacing:1.649808pt;}
.ws69{word-spacing:1.710912pt;}
.wsec{word-spacing:1.772016pt;}
.ws4a{word-spacing:1.833120pt;}
.ws45{word-spacing:1.894224pt;}
.ws84{word-spacing:1.955328pt;}
.ws66{word-spacing:2.016432pt;}
.ws4c{word-spacing:2.077536pt;}
.ws93{word-spacing:2.138640pt;}
.ws2a{word-spacing:2.199744pt;}
.ws50{word-spacing:2.260848pt;}
.ws91{word-spacing:2.383056pt;}
.ws12{word-spacing:2.444158pt;}
.ws4e{word-spacing:2.444160pt;}
.ws79{word-spacing:2.505264pt;}
.wsdb{word-spacing:2.550432pt;}
.wsdd{word-spacing:2.566368pt;}
.wsfe{word-spacing:2.627472pt;}
.wscc{word-spacing:2.688576pt;}
.ws95{word-spacing:2.749680pt;}
.ws64{word-spacing:2.810784pt;}
.wsf1{word-spacing:2.871888pt;}
.ws76{word-spacing:2.932992pt;}
.ws78{word-spacing:3.055200pt;}
.ws33{word-spacing:3.116304pt;}
.ws48{word-spacing:3.177408pt;}
.ws59{word-spacing:3.238512pt;}
.ws13{word-spacing:3.241166pt;}
.ws103{word-spacing:3.299616pt;}
.ws8e{word-spacing:3.360720pt;}
.ws8{word-spacing:3.400567pt;}
.wscf{word-spacing:3.421824pt;}
.wsca{word-spacing:3.482928pt;}
.ws98{word-spacing:3.544032pt;}
.ws46{word-spacing:3.605136pt;}
.wsbe{word-spacing:3.666240pt;}
.wsf{word-spacing:3.719371pt;}
.ws19{word-spacing:3.727344pt;}
.wsfa{word-spacing:3.788448pt;}
.ws24{word-spacing:3.849552pt;}
.ws68{word-spacing:3.910656pt;}
.wsd5{word-spacing:3.971760pt;}
.ws4f{word-spacing:4.032864pt;}
.wsf4{word-spacing:4.093968pt;}
.wsf8{word-spacing:4.155072pt;}
.ws7a{word-spacing:4.216176pt;}
.ws89{word-spacing:4.277280pt;}
.ws8f{word-spacing:4.338384pt;}
.ws87{word-spacing:4.399488pt;}
.ws2e{word-spacing:4.460592pt;}
.wsbd{word-spacing:4.521696pt;}
.wsa{word-spacing:4.569513pt;}
.ws36{word-spacing:4.582800pt;}
.ws7e{word-spacing:4.643904pt;}
.ws8a{word-spacing:4.705008pt;}
.wsa8{word-spacing:4.827216pt;}
.ws83{word-spacing:4.888320pt;}
.ws92{word-spacing:4.949424pt;}
.ws42{word-spacing:5.010528pt;}
.ws38{word-spacing:5.071632pt;}
.ws75{word-spacing:5.132736pt;}
.ws6c{word-spacing:5.193840pt;}
.ws53{word-spacing:5.254944pt;}
.wsff{word-spacing:5.316048pt;}
.ws5{word-spacing:5.366521pt;}
.ws1c{word-spacing:5.377152pt;}
.wsdc{word-spacing:5.438256pt;}
.wsbf{word-spacing:5.499360pt;}
.ws5b{word-spacing:5.560464pt;}
.wsaf{word-spacing:5.621568pt;}
.wsd6{word-spacing:5.682672pt;}
.ws2c{word-spacing:5.743776pt;}
.wsaa{word-spacing:5.804880pt;}
.wsba{word-spacing:5.865984pt;}
.wsd2{word-spacing:5.927088pt;}
.wsa4{word-spacing:5.988192pt;}
.ws86{word-spacing:6.049296pt;}
.ws57{word-spacing:6.110400pt;}
.ws3e{word-spacing:6.171504pt;}
.wsf3{word-spacing:6.232608pt;}
.ws52{word-spacing:6.293712pt;}
.wsee{word-spacing:6.354816pt;}
.ws3b{word-spacing:6.415920pt;}
.wsf5{word-spacing:6.477024pt;}
.ws3c{word-spacing:6.538128pt;}
.wsc3{word-spacing:6.599232pt;}
.wsb3{word-spacing:6.660336pt;}
.wse5{word-spacing:6.718421pt;}
.wse4{word-spacing:6.720597pt;}
.wse7{word-spacing:6.721088pt;}
.ws85{word-spacing:6.721440pt;}
.wse6{word-spacing:6.723019pt;}
.wseb{word-spacing:6.723280pt;}
.ws22{word-spacing:6.782544pt;}
.ws94{word-spacing:6.843648pt;}
.wsef{word-spacing:6.965856pt;}
.ws4d{word-spacing:7.026960pt;}
.ws88{word-spacing:7.088064pt;}
.wsce{word-spacing:7.149168pt;}
.wsac{word-spacing:7.210272pt;}
.ws3a{word-spacing:7.271376pt;}
.wsfb{word-spacing:7.332480pt;}
.wse8{word-spacing:7.454688pt;}
.wsed{word-spacing:7.515792pt;}
.wsa0{word-spacing:7.576896pt;}
.wsf0{word-spacing:7.638000pt;}
.wsd4{word-spacing:7.699104pt;}
.wsdf{word-spacing:7.760208pt;}
.ws5f{word-spacing:7.821312pt;}
.wsc7{word-spacing:7.882416pt;}
.ws31{word-spacing:7.943520pt;}
.ws5a{word-spacing:8.065728pt;}
.ws37{word-spacing:8.126832pt;}
.ws58{word-spacing:8.187936pt;}
.wsa5{word-spacing:8.249040pt;}
.wsde{word-spacing:8.371248pt;}
.wsb5{word-spacing:8.432352pt;}
.ws4b{word-spacing:8.493456pt;}
.ws97{word-spacing:8.554560pt;}
.ws56{word-spacing:8.615664pt;}
.ws7c{word-spacing:8.676768pt;}
.ws7d{word-spacing:8.737872pt;}
.ws96{word-spacing:8.798976pt;}
.wsd3{word-spacing:8.921184pt;}
.wsd7{word-spacing:9.043392pt;}
.wsfd{word-spacing:9.165600pt;}
.ws7b{word-spacing:9.287808pt;}
.ws28{word-spacing:9.410016pt;}
.ws8b{word-spacing:9.532224pt;}
.ws17{word-spacing:9.654432pt;}
.ws55{word-spacing:9.715536pt;}
.wsa6{word-spacing:9.837744pt;}
.ws49{word-spacing:9.898848pt;}
.wsb6{word-spacing:10.143264pt;}
.wsbb{word-spacing:10.570992pt;}
.wscb{word-spacing:10.632096pt;}
.wsb1{word-spacing:10.754304pt;}
.ws80{word-spacing:10.937616pt;}
.ws74{word-spacing:10.998720pt;}
.wsc0{word-spacing:11.059824pt;}
.ws9b{word-spacing:11.670864pt;}
.ws6a{word-spacing:11.731968pt;}
.wsb9{word-spacing:11.854176pt;}
.wsc1{word-spacing:12.220800pt;}
.ws77{word-spacing:12.281904pt;}
.ws27{word-spacing:12.465216pt;}
.ws72{word-spacing:12.892944pt;}
.wsc8{word-spacing:12.954048pt;}
.ws81{word-spacing:13.320672pt;}
.ws6b{word-spacing:13.809504pt;}
.wse3{word-spacing:14.787168pt;}
.ws0{word-spacing:15.005042pt;}
.ws7f{word-spacing:15.214896pt;}
.wsc9{word-spacing:15.398208pt;}
.ws3{word-spacing:16.312097pt;}
.wsb7{word-spacing:17.199459pt;}
.wsf9{word-spacing:17.781264pt;}
.wsc2{word-spacing:18.575616pt;}
.wsad{word-spacing:25.969200pt;}
.wsae{word-spacing:37.517856pt;}
.wsfc{word-spacing:37.884480pt;}
.ws71{word-spacing:44.605920pt;}
.wse9{word-spacing:48.455472pt;}
.wsf2{word-spacing:58.904256pt;}
.wsd9{word-spacing:63.670368pt;}
.ws16{word-spacing:69.005059pt;}
.wsc4{word-spacing:69.658560pt;}
.wsc5{word-spacing:69.719664pt;}
.wsda{word-spacing:75.585648pt;}
.wsc6{word-spacing:84.873456pt;}
.wsea{word-spacing:181.662192pt;}
.wsab{word-spacing:320.307168pt;}
.wse2{word-spacing:838.328229pt;}
._3d{margin-left:-8.249040pt;}
._26{margin-left:-6.660336pt;}
._39{margin-left:-5.621568pt;}
._5{margin-left:-4.197575pt;}
._b{margin-left:-3.188032pt;}
._1{margin-left:-2.295387pt;}
._2{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._52{width:2.505264pt;}
._51{width:3.550411pt;}
._54{width:4.574293pt;}
._53{width:5.488731pt;}
._f{width:12.949866pt;}
._d{width:14.432310pt;}
._7{width:15.515089pt;}
._8{width:16.715925pt;}
._9{width:18.118649pt;}
._13{width:19.037883pt;}
._6{width:20.137735pt;}
._14{width:21.447504pt;}
._22{width:22.502210pt;}
._17{width:23.463936pt;}
._a{width:24.441579pt;}
._1a{width:26.091408pt;}
._18{width:27.042507pt;}
._3{width:28.003717pt;}
._e{width:29.144222pt;}
._10{width:30.307584pt;}
._2b{width:31.441995pt;}
._4{width:32.942997pt;}
._15{width:34.768176pt;}
._11{width:36.367504pt;}
._19{width:37.403621pt;}
._24{width:38.556624pt;}
._50{width:40.206432pt;}
._16{width:41.184096pt;}
._1e{width:42.283968pt;}
._1b{width:43.783408pt;}
._23{width:45.381671pt;}
._12{width:47.661120pt;}
._c{width:52.602528pt;}
._1d{width:53.806059pt;}
._20{width:56.154576pt;}
._1c{width:59.881920pt;}
._21{width:61.226208pt;}
._25{width:62.326080pt;}
._49{width:63.792576pt;}
._33{width:65.259072pt;}
._3b{width:67.703232pt;}
._2a{width:69.074133pt;}
._4d{width:72.163824pt;}
._47{width:79.068576pt;}
._2f{width:84.995664pt;}
._4b{width:88.295280pt;}
._40{width:89.211840pt;}
._2d{width:92.633664pt;}
._4a{width:94.283472pt;}
._4f{width:96.727632pt;}
._45{width:117.258576pt;}
._3f{width:128.196192pt;}
._46{width:132.473472pt;}
._1f{width:139.229451pt;}
._41{width:162.231120pt;}
._43{width:177.384912pt;}
._27{width:221.596048pt;}
._42{width:228.406752pt;}
._30{width:261.341808pt;}
._3a{width:271.729488pt;}
._2e{width:274.723584pt;}
._37{width:294.291207pt;}
._2c{width:323.428256pt;}
._3c{width:328.067376pt;}
._31{width:333.844096pt;}
._29{width:335.583168pt;}
._28{width:381.533376pt;}
._35{width:383.216128pt;}
._34{width:410.679984pt;}
._3e{width:432.371904pt;}
._32{width:444.531600pt;}
._44{width:466.955312pt;}
._36{width:565.273104pt;}
._4e{width:589.225765pt;}
._38{width:595.702896pt;}
._48{width:602.793275pt;}
._4c{width:615.867216pt;}
.fs0{font-size:42.507200pt;}
.fs7{font-size:45.217600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y7d{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y14c{bottom:79.134667pt;}
.y7c{bottom:79.350667pt;}
.y5e{bottom:80.189333pt;}
.y52{bottom:80.652000pt;}
.ya4{bottom:80.917333pt;}
.y62{bottom:81.090667pt;}
.yaf{bottom:81.818667pt;}
.y127{bottom:83.386667pt;}
.yd6{bottom:84.902667pt;}
.y25{bottom:85.050667pt;}
.ye3{bottom:85.804000pt;}
.y178{bottom:91.997333pt;}
.y1c0{bottom:92.144000pt;}
.y19c{bottom:94.664000pt;}
.y1a4{bottom:95.565333pt;}
.y14b{bottom:99.398667pt;}
.y7b{bottom:99.616000pt;}
.y5d{bottom:100.453333pt;}
.y51{bottom:100.916000pt;}
.ya3{bottom:101.182667pt;}
.y61{bottom:101.354667pt;}
.yae{bottom:102.082667pt;}
.y126{bottom:103.650667pt;}
.yd5{bottom:105.166667pt;}
.y24{bottom:105.316000pt;}
.ye2{bottom:106.068000pt;}
.y177{bottom:112.261333pt;}
.y1bf{bottom:112.408000pt;}
.y19b{bottom:114.928000pt;}
.y1a3{bottom:115.829333pt;}
.y14a{bottom:119.662667pt;}
.y7a{bottom:119.880000pt;}
.y5c{bottom:120.717333pt;}
.y50{bottom:121.180000pt;}
.ya2{bottom:121.446667pt;}
.y60{bottom:121.618667pt;}
.yad{bottom:122.348000pt;}
.y125{bottom:123.914667pt;}
.yd4{bottom:125.430667pt;}
.y23{bottom:125.580000pt;}
.ye1{bottom:126.332000pt;}
.y176{bottom:132.525333pt;}
.y1be{bottom:132.672000pt;}
.y19a{bottom:135.192000pt;}
.y1a2{bottom:136.093333pt;}
.y79{bottom:140.144000pt;}
.y5b{bottom:140.981333pt;}
.y4f{bottom:141.444000pt;}
.ya1{bottom:141.710667pt;}
.y5f{bottom:141.882667pt;}
.yac{bottom:142.612000pt;}
.y193{bottom:143.940000pt;}
.y124{bottom:144.178667pt;}
.yd3{bottom:145.694667pt;}
.y22{bottom:145.844000pt;}
.ye0{bottom:146.596000pt;}
.y175{bottom:152.789333pt;}
.y1bd{bottom:152.936000pt;}
.y199{bottom:155.456000pt;}
.y1a1{bottom:156.357333pt;}
.y78{bottom:160.408000pt;}
.y4e{bottom:161.708000pt;}
.ya0{bottom:161.974667pt;}
.yab{bottom:162.876000pt;}
.y192{bottom:164.204000pt;}
.yd2{bottom:165.960000pt;}
.y21{bottom:166.108000pt;}
.ydf{bottom:166.860000pt;}
.y149{bottom:171.808000pt;}
.y174{bottom:173.053333pt;}
.y1bc{bottom:173.201333pt;}
.y198{bottom:175.720000pt;}
.y1a0{bottom:176.621333pt;}
.y5a{bottom:178.086667pt;}
.y77{bottom:180.672000pt;}
.y4d{bottom:181.972000pt;}
.y9f{bottom:182.238667pt;}
.yaa{bottom:183.140000pt;}
.y191{bottom:184.468000pt;}
.yd1{bottom:186.224000pt;}
.y20{bottom:186.372000pt;}
.yde{bottom:187.125333pt;}
.y148{bottom:192.072000pt;}
.y173{bottom:193.317333pt;}
.y1bb{bottom:193.465333pt;}
.y197{bottom:195.984000pt;}
.y123{bottom:196.885333pt;}
.y59{bottom:198.350667pt;}
.y76{bottom:200.936000pt;}
.y4c{bottom:202.236000pt;}
.y9e{bottom:202.502667pt;}
.ya9{bottom:203.404000pt;}
.y190{bottom:204.732000pt;}
.yd0{bottom:206.488000pt;}
.y1f{bottom:206.636000pt;}
.ydd{bottom:207.389333pt;}
.y147{bottom:212.336000pt;}
.y172{bottom:213.581333pt;}
.y1ba{bottom:213.729333pt;}
.y107{bottom:216.249333pt;}
.y122{bottom:217.150667pt;}
.y58{bottom:218.614667pt;}
.y75{bottom:221.200000pt;}
.y4b{bottom:222.500000pt;}
.y9d{bottom:222.766667pt;}
.ya8{bottom:223.668000pt;}
.y18f{bottom:224.996000pt;}
.ycf{bottom:226.752000pt;}
.y1e{bottom:226.900000pt;}
.ydc{bottom:227.653333pt;}
.y146{bottom:232.600000pt;}
.y171{bottom:233.845333pt;}
.y1b9{bottom:233.993333pt;}
.y106{bottom:236.513333pt;}
.y121{bottom:237.414667pt;}
.y57{bottom:238.880000pt;}
.y74{bottom:241.464000pt;}
.y4a{bottom:242.764000pt;}
.y9c{bottom:243.030667pt;}
.ya7{bottom:243.932000pt;}
.y18e{bottom:245.260000pt;}
.yce{bottom:247.016000pt;}
.ydb{bottom:247.917333pt;}
.y145{bottom:252.864000pt;}
.y170{bottom:254.109333pt;}
.y1b8{bottom:254.257333pt;}
.y105{bottom:256.777333pt;}
.y120{bottom:257.678667pt;}
.y56{bottom:259.144000pt;}
.y73{bottom:261.728000pt;}
.y49{bottom:263.029333pt;}
.y9b{bottom:263.294667pt;}
.ya6{bottom:264.196000pt;}
.y18d{bottom:265.524000pt;}
.ycd{bottom:267.280000pt;}
.yda{bottom:268.181333pt;}
.y1d{bottom:272.402667pt;}
.y144{bottom:273.128000pt;}
.y16f{bottom:274.374667pt;}
.y1b7{bottom:274.521333pt;}
.y104{bottom:277.041333pt;}
.y11f{bottom:277.942667pt;}
.y72{bottom:281.992000pt;}
.y48{bottom:283.293333pt;}
.y9a{bottom:283.558667pt;}
.ya5{bottom:284.460000pt;}
.y18c{bottom:285.788000pt;}
.ycc{bottom:287.544000pt;}
.yd9{bottom:288.445333pt;}
.y55{bottom:288.706667pt;}
.y143{bottom:293.392000pt;}
.y16e{bottom:294.638667pt;}
.y1b6{bottom:294.785333pt;}
.y103{bottom:297.305333pt;}
.y11e{bottom:298.206667pt;}
.y71{bottom:302.256000pt;}
.y47{bottom:303.557333pt;}
.y18b{bottom:306.052000pt;}
.ycb{bottom:307.808000pt;}
.yd8{bottom:308.709333pt;}
.y1c{bottom:309.001333pt;}
.y142{bottom:313.656000pt;}
.y16d{bottom:314.902667pt;}
.y1b5{bottom:315.049333pt;}
.y102{bottom:317.569333pt;}
.y11d{bottom:318.470667pt;}
.y70{bottom:322.520000pt;}
.y46{bottom:323.821333pt;}
.y1b{bottom:325.513333pt;}
.y18a{bottom:326.317333pt;}
.yca{bottom:328.072000pt;}
.yd7{bottom:328.973333pt;}
.y141{bottom:333.920000pt;}
.y1b4{bottom:335.313333pt;}
.y101{bottom:337.833333pt;}
.y11c{bottom:338.734667pt;}
.y6f{bottom:342.784000pt;}
.y45{bottom:344.085333pt;}
.y1a{bottom:344.910667pt;}
.y189{bottom:346.581333pt;}
.y99{bottom:353.014667pt;}
.y140{bottom:354.184000pt;}
.y1b3{bottom:355.577333pt;}
.y100{bottom:358.097333pt;}
.y11b{bottom:358.998667pt;}
.y6e{bottom:363.048000pt;}
.y44{bottom:364.349333pt;}
.y16c{bottom:366.690667pt;}
.y188{bottom:366.845333pt;}
.y98{bottom:373.278667pt;}
.y13f{bottom:374.448000pt;}
.y19{bottom:374.821333pt;}
.y1b2{bottom:375.841333pt;}
.yff{bottom:378.361333pt;}
.y11a{bottom:379.262667pt;}
.yc9{bottom:381.117333pt;}
.y6d{bottom:383.313333pt;}
.y43{bottom:384.613333pt;}
.y187{bottom:387.109333pt;}
.y13e{bottom:394.713333pt;}
.y97{bottom:396.200000pt;}
.y16b{bottom:397.990667pt;}
.yfe{bottom:398.625333pt;}
.y119{bottom:399.526667pt;}
.yc8{bottom:401.382667pt;}
.y6c{bottom:403.577333pt;}
.y42{bottom:404.877333pt;}
.y1b1{bottom:405.404000pt;}
.y18{bottom:406.290667pt;}
.y186{bottom:407.373333pt;}
.y13d{bottom:414.977333pt;}
.y96{bottom:416.464000pt;}
.yfd{bottom:418.889333pt;}
.y118{bottom:419.790667pt;}
.yc7{bottom:421.646667pt;}
.y6b{bottom:423.841333pt;}
.y41{bottom:425.141333pt;}
.y17{bottom:425.804000pt;}
.y16a{bottom:427.580000pt;}
.y185{bottom:427.637333pt;}
.y13c{bottom:435.241333pt;}
.yfc{bottom:439.153333pt;}
.y95{bottom:439.385333pt;}
.y117{bottom:440.054667pt;}
.yc6{bottom:441.910667pt;}
.y6a{bottom:444.105333pt;}
.y16{bottom:445.317333pt;}
.y40{bottom:445.405333pt;}
.y184{bottom:447.901333pt;}
.y13b{bottom:455.505333pt;}
.yfb{bottom:459.417333pt;}
.y94{bottom:459.649333pt;}
.y116{bottom:460.318667pt;}
.yc5{bottom:462.174667pt;}
.y69{bottom:464.369333pt;}
.y1b0{bottom:464.768000pt;}
.y15{bottom:464.830667pt;}
.y3f{bottom:465.669333pt;}
.y183{bottom:468.165333pt;}
.y169{bottom:468.565333pt;}
.y13a{bottom:475.769333pt;}
.yfa{bottom:479.682667pt;}
.y93{bottom:479.913333pt;}
.y115{bottom:480.582667pt;}
.yc4{bottom:482.438667pt;}
.y14{bottom:484.344000pt;}
.y68{bottom:484.633333pt;}
.y1af{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.y182{bottom:488.429333pt;}
.y139{bottom:496.033333pt;}
.y15b{bottom:498.689333pt;}
.yf9{bottom:499.946667pt;}
.y114{bottom:500.848000pt;}
.yc3{bottom:502.702667pt;}
.y92{bottom:502.833333pt;}
.y13{bottom:503.858667pt;}
.y67{bottom:504.897333pt;}
.y1ae{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y181{bottom:508.693333pt;}
.y138{bottom:516.297333pt;}
.y168{bottom:518.053333pt;}
.y15a{bottom:518.953333pt;}
.yf8{bottom:520.210667pt;}
.y113{bottom:521.112000pt;}
.yc2{bottom:522.966667pt;}
.y91{bottom:523.097333pt;}
.y12{bottom:523.372000pt;}
.y66{bottom:525.161333pt;}
.y1ad{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y137{bottom:536.561333pt;}
.y167{bottom:538.317333pt;}
.y159{bottom:539.218667pt;}
.yf7{bottom:540.474667pt;}
.y112{bottom:541.376000pt;}
.y11{bottom:542.885333pt;}
.yc1{bottom:543.230667pt;}
.y90{bottom:543.361333pt;}
.y65{bottom:545.425333pt;}
.y1ac{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y180{bottom:554.328000pt;}
.y136{bottom:556.825333pt;}
.y166{bottom:558.581333pt;}
.y158{bottom:559.482667pt;}
.yf6{bottom:560.738667pt;}
.y111{bottom:561.640000pt;}
.y10{bottom:562.398667pt;}
.yc0{bottom:563.494667pt;}
.y64{bottom:565.689333pt;}
.y1ab{bottom:566.089333pt;}
.y8f{bottom:566.282667pt;}
.y3a{bottom:566.990667pt;}
.y135{bottom:577.089333pt;}
.y17f{bottom:577.248000pt;}
.y165{bottom:578.845333pt;}
.y157{bottom:579.746667pt;}
.yf5{bottom:581.002667pt;}
.y110{bottom:581.904000pt;}
.yf{bottom:581.912000pt;}
.ybf{bottom:583.758667pt;}
.y63{bottom:585.052000pt;}
.y1aa{bottom:586.353333pt;}
.y8e{bottom:586.546667pt;}
.y39{bottom:587.254667pt;}
.y134{bottom:597.353333pt;}
.y164{bottom:599.109333pt;}
.y156{bottom:600.010667pt;}
.y17e{bottom:600.169333pt;}
.yf4{bottom:601.266667pt;}
.ye{bottom:601.425333pt;}
.y10f{bottom:602.168000pt;}
.ybe{bottom:604.022667pt;}
.y1a9{bottom:606.617333pt;}
.y8d{bottom:606.810667pt;}
.y38{bottom:607.518667pt;}
.y133{bottom:617.617333pt;}
.y163{bottom:619.373333pt;}
.y155{bottom:620.274667pt;}
.yd{bottom:620.940000pt;}
.yf3{bottom:621.530667pt;}
.y10e{bottom:622.432000pt;}
.y17d{bottom:623.089333pt;}
.ybd{bottom:624.286667pt;}
.y1a8{bottom:626.881333pt;}
.y37{bottom:627.782667pt;}
.y1c2{bottom:627.858667pt;}
.y8c{bottom:636.401333pt;}
.y132{bottom:637.881333pt;}
.y162{bottom:639.637333pt;}
.yc{bottom:640.453333pt;}
.y154{bottom:640.538667pt;}
.yf2{bottom:641.794667pt;}
.y10d{bottom:642.696000pt;}
.ybc{bottom:644.550667pt;}
.y17c{bottom:646.010667pt;}
.y1a7{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.y131{bottom:658.145333pt;}
.y161{bottom:659.901333pt;}
.yb{bottom:659.966667pt;}
.y153{bottom:660.802667pt;}
.yf1{bottom:662.058667pt;}
.y10c{bottom:662.960000pt;}
.ybb{bottom:667.264000pt;}
.y1a6{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y17b{bottom:668.932000pt;}
.y8b{bottom:677.385333pt;}
.y130{bottom:678.410667pt;}
.ya{bottom:679.480000pt;}
.y160{bottom:680.165333pt;}
.y152{bottom:681.066667pt;}
.yf0{bottom:682.322667pt;}
.y10b{bottom:683.224000pt;}
.yba{bottom:687.528000pt;}
.y1a5{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y17a{bottom:698.521333pt;}
.y12f{bottom:698.674667pt;}
.y9{bottom:698.993333pt;}
.y15f{bottom:700.429333pt;}
.y151{bottom:701.330667pt;}
.yef{bottom:702.586667pt;}
.y10a{bottom:703.488000pt;}
.y8a{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.yb9{bottom:710.449333pt;}
.y8{bottom:718.508000pt;}
.y12e{bottom:718.938667pt;}
.y15e{bottom:720.693333pt;}
.y150{bottom:721.594667pt;}
.yee{bottom:722.850667pt;}
.y109{bottom:723.752000pt;}
.y89{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.yb8{bottom:730.713333pt;}
.y7{bottom:738.021333pt;}
.y179{bottom:739.506667pt;}
.y15d{bottom:740.957333pt;}
.y12d{bottom:741.652000pt;}
.y14f{bottom:741.858667pt;}
.yed{bottom:743.114667pt;}
.y108{bottom:744.016000pt;}
.y88{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.yb7{bottom:753.634667pt;}
.y6{bottom:757.534667pt;}
.y15c{bottom:761.221333pt;}
.y14e{bottom:762.122667pt;}
.y196{bottom:763.380000pt;}
.y19f{bottom:764.280000pt;}
.y87{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.y1c1{bottom:769.708000pt;}
.y12c{bottom:771.241333pt;}
.yb6{bottom:773.898667pt;}
.yec{bottom:780.221333pt;}
.y195{bottom:783.644000pt;}
.y19e{bottom:784.545333pt;}
.y14d{bottom:784.836000pt;}
.y86{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.y12b{bottom:791.505333pt;}
.yb5{bottom:796.818667pt;}
.yeb{bottom:800.485333pt;}
.y194{bottom:803.908000pt;}
.y19d{bottom:804.809333pt;}
.y85{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y12a{bottom:814.426667pt;}
.y5{bottom:815.970667pt;}
.yb4{bottom:817.082667pt;}
.yea{bottom:820.749333pt;}
.y84{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.y129{bottom:837.346667pt;}
.yb3{bottom:840.004000pt;}
.ye9{bottom:841.013333pt;}
.y83{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.yb2{bottom:860.268000pt;}
.ye8{bottom:861.277333pt;}
.y82{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.yb1{bottom:880.532000pt;}
.ye7{bottom:881.541333pt;}
.y3{bottom:885.776000pt;}
.y128{bottom:889.858667pt;}
.y81{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y1c4{bottom:891.292000pt;}
.ye6{bottom:901.805333pt;}
.yb0{bottom:910.122667pt;}
.y80{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.ye5{bottom:922.069333pt;}
.y7f{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y7e{bottom:951.106667pt;}
.ye4{bottom:951.632000pt;}
.y27{bottom:952.008000pt;}
.y1c3{bottom:952.084000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.he{height:29.244954pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.hd{height:33.602082pt;}
.h5{height:36.556100pt;}
.h4{height:36.768636pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.hc{height:42.283968pt;}
.h3{height:47.523004pt;}
.h7{height:47.799300pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:113.385333pt;}
.x23{left:117.205333pt;}
.x2f{left:124.701333pt;}
.x13{left:125.602667pt;}
.x2c{left:127.180000pt;}
.xc{left:136.062667pt;}
.x3{left:139.422667pt;}
.x35{left:143.181333pt;}
.x21{left:147.614667pt;}
.x6{left:158.261333pt;}
.x32{left:161.004000pt;}
.x9{left:162.052000pt;}
.x1d{left:163.098667pt;}
.x29{left:165.201333pt;}
.x19{left:181.997333pt;}
.x8{left:206.428000pt;}
.x25{left:208.558667pt;}
.x16{left:215.757333pt;}
.x15{left:217.133333pt;}
.x26{left:227.218667pt;}
.x38{left:237.769333pt;}
.x12{left:261.860000pt;}
.x28{left:271.646667pt;}
.x37{left:273.330667pt;}
.x36{left:274.605333pt;}
.x4{left:279.417333pt;}
.x22{left:282.729333pt;}
.x33{left:286.750667pt;}
.x1c{left:288.784000pt;}
.x34{left:291.837333pt;}
.x18{left:295.216000pt;}
.x27{left:297.714667pt;}
.x39{left:338.657333pt;}
.x3a{left:343.745333pt;}
.x14{left:346.460000pt;}
.x5{left:353.354667pt;}
.xe{left:359.442667pt;}
.x7{left:364.560000pt;}
.xa{left:384.740000pt;}
.x1b{left:386.913333pt;}
.x24{left:397.898667pt;}
.xf{left:402.290667pt;}
.x17{left:410.720000pt;}
.xd{left:412.752000pt;}
.x11{left:435.429333pt;}
.x2a{left:440.798667pt;}
.x1a{left:479.042667pt;}
.x30{left:492.789333pt;}
.x1e{left:497.940000pt;}
.x2b{left:502.788000pt;}
.x31{left:504.929333pt;}
.x2{left:510.021333pt;}
.x10{left:513.840000pt;}
.x2d{left:535.184000pt;}
.x2e{left:547.322667pt;}
.x1{left:618.953333pt;}
.x1f{left:657.441333pt;}
.x20{left:669.581333pt;}
}




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