
    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_cc174adecba59de75d28cf59.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.868000;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_d2b3dc4009604e9e5cc60a4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d1443d575acef49b1502af9b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_30193fbfc413d0e74acddbd8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.837000;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_cf2acbb6bd1955a4f839ad59.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_bd0a0196797c18d4651cc4d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_6dd9dd0d6ebbad780eff1e77.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.825000;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_f208d9f3fd807a92794a9072.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_e2f6b6b3d4cd16c74d6be4ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.806000;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;}
.m19{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.mc{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);}
.m21{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);}
.m16{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);}
.m18{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);}
.m17{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);}
.m23{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);}
.m1d{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);}
.m7{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m9{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m5{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);}
.m14{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);}
.m10{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);}
.m6{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);}
.mb{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);}
.m3{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);}
.me{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);}
.m12{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);}
.m20{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);}
.m24{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);}
.m1b{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);}
.m13{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);}
.m1a{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);}
.mf{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);}
.m1f{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1e{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);}
.m15{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);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-24.312000px;}
.v5{vertical-align:-16.212000px;}
.v4{vertical-align:-13.272000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:13.272000px;}
.v6{vertical-align:20.262000px;}
.v2{vertical-align:24.318000px;}
.v1{vertical-align:29.178000px;}
.lsb{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.002645px;}
.ls11{letter-spacing:0.003946px;}
.ls9{letter-spacing:0.004633px;}
.ls5{letter-spacing:0.004962px;}
.ls4{letter-spacing:0.298879px;}
.lsd{letter-spacing:2.386563px;}
.ls16{letter-spacing:2.392060px;}
.ls10{letter-spacing:2.392563px;}
.ls2{letter-spacing:2.867670px;}
.ls1{letter-spacing:2.873670px;}
.ls0{letter-spacing:5.975670px;}
.lsf{letter-spacing:6.274633px;}
.ls14{letter-spacing:16.674935px;}
.ls19{letter-spacing:17.308060px;}
.ls18{letter-spacing:17.332060px;}
.lsc{letter-spacing:17.338060px;}
.ls12{letter-spacing:17.338563px;}
.ls6{letter-spacing:17.935260px;}
.lse{letter-spacing:18.994060px;}
.ls13{letter-spacing:18.994563px;}
.ls8{letter-spacing:18.996935px;}
.lsa{letter-spacing:20.344060px;}
.ls3{letter-spacing:20.801670px;}
.ls17{letter-spacing:31.254935px;}
.ls15{letter-spacing:31.590935px;}
.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;}
}
.ws3{word-spacing:-71.731020px;}
.ws0{word-spacing:-64.557897px;}
.wse{word-spacing:-60.074719px;}
.wsc{word-spacing:-59.775840px;}
.ws42{word-spacing:-53.799117px;}
.ws85{word-spacing:-53.798280px;}
.ws1{word-spacing:-53.798263px;}
.ws3e{word-spacing:-49.793274px;}
.ws4d{word-spacing:-49.766665px;}
.ws6c{word-spacing:-49.764850px;}
.ws2b{word-spacing:-49.764521px;}
.ws69{word-spacing:-49.764297px;}
.ws45{word-spacing:-49.613946px;}
.ws2c{word-spacing:-49.554171px;}
.ws1b{word-spacing:-49.075965px;}
.ws56{word-spacing:-48.777084px;}
.ws43{word-spacing:-48.298878px;}
.ws5d{word-spacing:-48.239103px;}
.ws3f{word-spacing:-47.999998px;}
.ws2{word-spacing:-47.820660px;}
.ws1e{word-spacing:-47.701120px;}
.ws17{word-spacing:-47.462017px;}
.ws1f{word-spacing:-47.222912px;}
.ws23{word-spacing:-47.103362px;}
.ws44{word-spacing:-46.924034px;}
.ws57{word-spacing:-46.864257px;}
.ws28{word-spacing:-46.625155px;}
.ws4e{word-spacing:-46.565378px;}
.ws41{word-spacing:-46.505602px;}
.ws27{word-spacing:-46.266499px;}
.ws60{word-spacing:-46.206723px;}
.ws51{word-spacing:-46.146947px;}
.ws7a{word-spacing:-46.027396px;}
.ws34{word-spacing:-45.967621px;}
.ws3a{word-spacing:-45.728516px;}
.ws3b{word-spacing:-45.668741px;}
.ws3d{word-spacing:-45.608964px;}
.ws1d{word-spacing:-45.549190px;}
.ws14{word-spacing:-45.489414px;}
.ws7{word-spacing:-45.310087px;}
.wsd{word-spacing:-45.250310px;}
.wsf{word-spacing:-45.190535px;}
.ws5{word-spacing:-45.130760px;}
.ws9{word-spacing:-45.070983px;}
.ws24{word-spacing:-45.011208px;}
.ws6{word-spacing:-44.951430px;}
.ws11{word-spacing:-44.891655px;}
.ws6e{word-spacing:-44.881045px;}
.ws9d{word-spacing:-44.867764px;}
.ws81{word-spacing:-44.854153px;}
.ws6f{word-spacing:-44.833641px;}
.ws12{word-spacing:-44.831880px;}
.ws76{word-spacing:-44.830153px;}
.ws9c{word-spacing:-44.813966px;}
.ws1a{word-spacing:-44.772103px;}
.ws8{word-spacing:-44.712328px;}
.ws8c{word-spacing:-44.652571px;}
.ws18{word-spacing:-44.652553px;}
.ws15{word-spacing:-44.592775px;}
.ws29{word-spacing:-44.533001px;}
.ws80{word-spacing:-44.473225px;}
.ws19{word-spacing:-44.413447px;}
.ws74{word-spacing:-44.353671px;}
.ws65{word-spacing:-44.293895px;}
.ws4f{word-spacing:-44.234119px;}
.ws6a{word-spacing:-44.234100px;}
.ws10{word-spacing:-44.174346px;}
.ws5c{word-spacing:-44.054794px;}
.ws9a{word-spacing:-44.006991px;}
.ws7f{word-spacing:-43.995016px;}
.ws9b{word-spacing:-43.953195px;}
.ws1c{word-spacing:-43.935240px;}
.wsa{word-spacing:-43.755915px;}
.ws96{word-spacing:-43.522809px;}
.ws68{word-spacing:-43.516812px;}
.wsb{word-spacing:-43.457033px;}
.ws61{word-spacing:-43.397257px;}
.ws39{word-spacing:-43.277708px;}
.ws2a{word-spacing:-43.217932px;}
.ws4b{word-spacing:-43.158156px;}
.ws92{word-spacing:-43.146221px;}
.ws4c{word-spacing:-43.098381px;}
.ws32{word-spacing:-42.978827px;}
.ws35{word-spacing:-42.919053px;}
.ws3c{word-spacing:-42.799501px;}
.ws66{word-spacing:-42.739726px;}
.ws87{word-spacing:-42.715833px;}
.ws64{word-spacing:-42.679950px;}
.ws86{word-spacing:-42.662036px;}
.ws7b{word-spacing:-42.560398px;}
.ws97{word-spacing:-42.554439px;}
.ws98{word-spacing:-42.500640px;}
.ws7e{word-spacing:-42.440844px;}
.ws94{word-spacing:-42.124053px;}
.ws95{word-spacing:-42.070253px;}
.ws58{word-spacing:-41.902864px;}
.ws48{word-spacing:-41.843088px;}
.ws53{word-spacing:-41.783310px;}
.ws52{word-spacing:-41.723532px;}
.ws8b{word-spacing:-41.693666px;}
.ws4a{word-spacing:-41.663758px;}
.ws16{word-spacing:-41.603982px;}
.ws67{word-spacing:-41.544206px;}
.ws5f{word-spacing:-41.484431px;}
.ws99{word-spacing:-41.424675px;}
.ws38{word-spacing:-41.424657px;}
.ws13{word-spacing:-41.305105px;}
.ws33{word-spacing:-41.245327px;}
.ws31{word-spacing:-41.185551px;}
.ws7d{word-spacing:-40.886675px;}
.ws79{word-spacing:-40.826899px;}
.ws90{word-spacing:-40.725298px;}
.ws6b{word-spacing:-40.587795px;}
.ws49{word-spacing:-40.528017px;}
.ws8a{word-spacing:-40.510104px;}
.ws89{word-spacing:-40.497270px;}
.ws20{word-spacing:-40.468244px;}
.ws9e{word-spacing:-40.456305px;}
.ws88{word-spacing:-40.402507px;}
.ws84{word-spacing:-40.348710px;}
.ws8f{word-spacing:-40.294909px;}
.ws77{word-spacing:-40.288916px;}
.ws91{word-spacing:-40.241113px;}
.ws8d{word-spacing:-40.187316px;}
.ws8e{word-spacing:-40.133516px;}
.ws25{word-spacing:-40.049813px;}
.ws26{word-spacing:-39.990037px;}
.ws9f{word-spacing:-39.864525px;}
.ws62{word-spacing:-39.750931px;}
.ws7c{word-spacing:-39.571604px;}
.ws78{word-spacing:-39.452052px;}
.ws93{word-spacing:-39.434137px;}
.ws63{word-spacing:-39.392276px;}
.ws83{word-spacing:-39.326543px;}
.ws82{word-spacing:-38.615193px;}
.ws47{word-spacing:-38.495641px;}
.ws46{word-spacing:-38.435863px;}
.ws4{word-spacing:-38.136984px;}
.ws2f{word-spacing:-37.539228px;}
.ws30{word-spacing:-37.479449px;}
.ws37{word-spacing:-36.523036px;}
.ws22{word-spacing:-35.865494px;}
.ws5a{word-spacing:-35.805726px;}
.ws55{word-spacing:-35.566625px;}
.ws5b{word-spacing:-34.968864px;}
.ws5e{word-spacing:-34.610209px;}
.ws21{word-spacing:-34.526515px;}
.ws70{word-spacing:-32.876710px;}
.ws71{word-spacing:-30.963885px;}
.ws72{word-spacing:-30.904107px;}
.ws6d{word-spacing:-26.925105px;}
.ws75{word-spacing:-26.901105px;}
.ws2e{word-spacing:-25.882933px;}
.ws40{word-spacing:-25.236140px;}
.ws50{word-spacing:-23.220140px;}
.ws59{word-spacing:-17.862140px;}
.ws54{word-spacing:-17.610140px;}
.ws73{word-spacing:-12.984140px;}
.ws2d{word-spacing:-7.914140px;}
.ws36{word-spacing:0.000000px;}
._2{margin-left:-10.759652px;}
._0{margin-left:-6.455790px;}
._5{margin-left:-5.163176px;}
._7{margin-left:-3.800861px;}
._1{margin-left:-2.582316px;}
._4{margin-left:-1.003787px;}
._6{width:1.434621px;}
._3{width:2.866885px;}
._1e{width:7.231185px;}
._23{width:9.171020px;}
._c{width:10.221218px;}
._f{width:11.237859px;}
._22{width:12.280632px;}
._d{width:13.317174px;}
._9{width:15.505853px;}
._18{width:16.557908px;}
._11{width:17.932752px;}
._8{width:19.905357px;}
._1b{width:21.877960px;}
._a{width:23.359955px;}
._1d{width:24.627646px;}
._1c{width:26.420932px;}
._1a{width:28.692406px;}
._20{width:29.708595px;}
._b{width:30.736742px;}
._21{width:32.386102px;}
._e{width:34.729763px;}
._1f{width:37.431183px;}
._19{width:39.571606px;}
._10{width:42.273484px;}
._17{width:46.290416px;}
._14{width:483.573240px;}
._12{width:500.015880px;}
._13{width:801.009000px;}
._16{width:1905.636000px;}
._15{width:2225.382000px;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865480px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:44.234100px;}
.fs3{font-size:47.820660px;}
.fs7{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs2{font-size:71.731020px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y57{bottom:6.600001px;}
.y59{bottom:22.500000px;}
.y5a{bottom:42.000000px;}
.y55{bottom:90.508500px;}
.y35{bottom:94.561500px;}
.y8e{bottom:95.887500px;}
.yd6{bottom:100.969500px;}
.y34{bottom:104.881500px;}
.y78{bottom:105.123000px;}
.y54{bottom:108.441000px;}
.y8d{bottom:113.820000px;}
.yd5{bottom:118.902000px;}
.y33{bottom:119.077500px;}
.ya3{bottom:121.771500px;}
.y53{bottom:123.055500px;}
.y52{bottom:126.373500px;}
.y5b{bottom:130.500000px;}
.y32{bottom:133.275000px;}
.yd4{bottom:136.834500px;}
.y31{bottom:137.328000px;}
.ya2{bottom:139.704000px;}
.y51{bottom:144.306000px;}
.y77{bottom:144.616500px;}
.yd3{bottom:154.767000px;}
.ya1{bottom:157.636500px;}
.y30{bottom:159.048000px;}
.y50{bottom:162.238500px;}
.yd2{bottom:172.699500px;}
.ya0{bottom:175.570500px;}
.y4f{bottom:176.854500px;}
.y2f{bottom:176.980500px;}
.y4e{bottom:180.172500px;}
.y2e{bottom:194.913000px;}
.yd1{bottom:197.358000px;}
.y4d{bottom:198.544500px;}
.y9f{bottom:211.435500px;}
.y2d{bottom:212.845500px;}
.y4c{bottom:216.477000px;}
.y9e{bottom:226.050000px;}
.y9d{bottom:229.368000px;}
.y2c{bottom:230.778000px;}
.yd0{bottom:231.729000px;}
.y4b{bottom:234.411000px;}
.y2b{bottom:248.710500px;}
.ycf{bottom:249.661500px;}
.y4a{bottom:252.343500px;}
.y2a{bottom:266.644500px;}
.yce{bottom:267.594000px;}
.y49{bottom:270.276000px;}
.y29{bottom:284.577000px;}
.ycd{bottom:285.526500px;}
.y48{bottom:288.208500px;}
.y28{bottom:302.509500px;}
.ycc{bottom:303.459000px;}
.y47{bottom:306.141000px;}
.y27{bottom:320.442000px;}
.ycb{bottom:321.393000px;}
.y46{bottom:324.073500px;}
.y26{bottom:338.374500px;}
.yca{bottom:339.325500px;}
.y45{bottom:342.007500px;}
.y25{bottom:356.307000px;}
.yc9{bottom:357.258000px;}
.y44{bottom:359.940000px;}
.y76{bottom:361.843500px;}
.y24{bottom:374.241000px;}
.yc8{bottom:375.190500px;}
.y43{bottom:377.872500px;}
.y75{bottom:379.776000px;}
.y23{bottom:392.173500px;}
.yc7{bottom:393.123000px;}
.y42{bottom:395.805000px;}
.y74{bottom:397.708500px;}
.y22{bottom:410.106000px;}
.yc6{bottom:411.055500px;}
.y41{bottom:413.737500px;}
.y73{bottom:415.642500px;}
.y21{bottom:428.038500px;}
.yc5{bottom:428.989500px;}
.y72{bottom:433.575000px;}
.y8c{bottom:433.630500px;}
.y20{bottom:445.971000px;}
.yc4{bottom:446.922000px;}
.y71{bottom:451.507500px;}
.y8b{bottom:451.564500px;}
.y40{bottom:452.605500px;}
.y1f{bottom:463.903500px;}
.yc3{bottom:464.854500px;}
.y70{bottom:469.440000px;}
.y8a{bottom:469.497000px;}
.y6f{bottom:487.372500px;}
.y89{bottom:487.429500px;}
.y1e{bottom:488.562000px;}
.yc2{bottom:489.511500px;}
.y6e{bottom:505.305000px;}
.y88{bottom:505.362000px;}
.y9c{bottom:509.928000px;}
.y1d{bottom:522.739500px;}
.y6d{bottom:523.239000px;}
.y87{bottom:523.294500px;}
.yc1{bottom:523.882500px;}
.y1c{bottom:540.672000px;}
.y86{bottom:541.228500px;}
.yc0{bottom:541.815000px;}
.y6c{bottom:547.123500px;}
.y1b{bottom:558.606000px;}
.y85{bottom:559.161000px;}
.ybf{bottom:559.749000px;}
.y1a{bottom:576.538500px;}
.y84{bottom:577.093500px;}
.ybe{bottom:577.681500px;}
.y6b{bottom:578.950500px;}
.y19{bottom:594.471000px;}
.ybd{bottom:595.614000px;}
.y6a{bottom:596.883000px;}
.y83{bottom:601.408500px;}
.y18{bottom:612.403500px;}
.ybc{bottom:613.546500px;}
.y69{bottom:614.815500px;}
.y17{bottom:630.336000px;}
.ybb{bottom:631.479000px;}
.y68{bottom:632.748000px;}
.y16{bottom:648.268500px;}
.yba{bottom:649.411500px;}
.y67{bottom:650.680500px;}
.y82{bottom:658.029000px;}
.y15{bottom:666.202500px;}
.yb9{bottom:667.345500px;}
.y66{bottom:668.614500px;}
.y3f{bottom:672.276000px;}
.y81{bottom:675.961500px;}
.y14{bottom:684.135000px;}
.yb8{bottom:685.278000px;}
.y65{bottom:686.547000px;}
.y3e{bottom:690.210000px;}
.y13{bottom:702.067500px;}
.yec{bottom:702.090000px;}
.yb7{bottom:703.210500px;}
.y3d{bottom:708.142500px;}
.yeb{bottom:718.528500px;}
.y12{bottom:720.000000px;}
.yb6{bottom:721.143000px;}
.y64{bottom:721.879500px;}
.y63{bottom:725.197500px;}
.y3c{bottom:726.075000px;}
.y100{bottom:734.967000px;}
.y11{bottom:737.932500px;}
.yb5{bottom:739.075500px;}
.yea{bottom:739.783500px;}
.y3b{bottom:744.007500px;}
.yff{bottom:751.404000px;}
.y10{bottom:755.865000px;}
.ye9{bottom:756.222000px;}
.yb4{bottom:757.008000px;}
.y3a{bottom:761.940000px;}
.y9b{bottom:770.131500px;}
.ye8{bottom:772.660500px;}
.yf{bottom:773.799000px;}
.yfe{bottom:774.045000px;}
.yb3{bottom:774.942000px;}
.y39{bottom:779.872500px;}
.y9a{bottom:788.065500px;}
.ye7{bottom:789.097500px;}
.yfd{bottom:790.483500px;}
.ye{bottom:791.731500px;}
.yb2{bottom:792.874500px;}
.y99{bottom:802.680000px;}
.y38{bottom:803.962500px;}
.ye6{bottom:805.536000px;}
.y98{bottom:805.998000px;}
.yfc{bottom:806.922000px;}
.yd{bottom:809.664000px;}
.yb1{bottom:810.807000px;}
.yfb{bottom:823.360500px;}
.y97{bottom:825.751500px;}
.ye5{bottom:826.791000px;}
.yc{bottom:827.596500px;}
.yb0{bottom:828.739500px;}
.y37{bottom:832.446000px;}
.ye4{bottom:843.229500px;}
.y96{bottom:843.684000px;}
.yb{bottom:845.529000px;}
.yfa{bottom:846.000000px;}
.yaf{bottom:846.672000px;}
.ye3{bottom:859.668000px;}
.y95{bottom:861.616500px;}
.yf9{bottom:862.438500px;}
.ya{bottom:863.461500px;}
.yae{bottom:864.604500px;}
.y36{bottom:868.842000px;}
.ye2{bottom:876.106500px;}
.yf8{bottom:878.877000px;}
.y94{bottom:879.549000px;}
.yad{bottom:882.538500px;}
.y9{bottom:886.774500px;}
.yf7{bottom:895.315500px;}
.ye1{bottom:897.361500px;}
.y93{bottom:897.481500px;}
.yac{bottom:907.195500px;}
.yf6{bottom:911.754000px;}
.ye0{bottom:913.800000px;}
.y92{bottom:915.414000px;}
.y8{bottom:929.019000px;}
.ydf{bottom:930.238500px;}
.y91{bottom:933.348000px;}
.yf5{bottom:934.393500px;}
.yab{bottom:941.566500px;}
.yde{bottom:946.677000px;}
.y80{bottom:949.459500px;}
.y7{bottom:949.939500px;}
.yf4{bottom:950.832000px;}
.y90{bottom:951.280500px;}
.yaa{bottom:959.499000px;}
.y6{bottom:964.782000px;}
.yf3{bottom:967.270500px;}
.y7f{bottom:967.392000px;}
.ydd{bottom:967.932000px;}
.y8f{bottom:969.213000px;}
.ya9{bottom:977.431500px;}
.yf2{bottom:983.709000px;}
.ydc{bottom:984.370500px;}
.y7e{bottom:985.324500px;}
.y5{bottom:985.704000px;}
.y62{bottom:987.145500px;}
.ya8{bottom:995.365500px;}
.ydb{bottom:1000.809000px;}
.y7d{bottom:1003.258500px;}
.y61{bottom:1005.078000px;}
.yf1{bottom:1006.348500px;}
.y4{bottom:1006.626000px;}
.ya7{bottom:1013.298000px;}
.y7c{bottom:1021.191000px;}
.yda{bottom:1022.064000px;}
.yf0{bottom:1022.787000px;}
.y60{bottom:1023.010500px;}
.y3{bottom:1027.546500px;}
.ya6{bottom:1031.230500px;}
.y7b{bottom:1035.805500px;}
.yd9{bottom:1038.502500px;}
.y7a{bottom:1039.123500px;}
.yef{bottom:1039.225500px;}
.y5f{bottom:1040.944500px;}
.ya5{bottom:1049.163000px;}
.yd8{bottom:1054.941000px;}
.yee{bottom:1055.664000px;}
.y5e{bottom:1058.877000px;}
.y2{bottom:1063.413000px;}
.yd7{bottom:1071.379500px;}
.y79{bottom:1072.020000px;}
.ya4{bottom:1073.820000px;}
.y5d{bottom:1076.809500px;}
.yed{bottom:1078.303500px;}
.y1{bottom:1090.311000px;}
.y5c{bottom:1094.742000px;}
.y58{bottom:1131.000000px;}
.y56{bottom:1150.500000px;}
.hb{height:15.000000px;}
.h9{height:24.245064px;}
.hf{height:30.211890px;}
.ha{height:30.433061px;}
.h5{height:32.900614px;}
.h12{height:36.636629px;}
.h11{height:37.013217px;}
.h7{height:41.125778px;}
.hc{height:43.804688px;}
.h6{height:49.207480px;}
.h4{height:49.350942px;}
.h8{height:49.637866px;}
.he{height:50.695061px;}
.h10{height:54.397778px;}
.h3{height:57.218614px;}
.h1{height:59.565422px;}
.h2{height:70.303778px;}
.hd{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x36{left:8.399999px;}
.x66{left:44.250000px;}
.x9{left:84.483000px;}
.x33{left:85.500000px;}
.x15{left:93.634500px;}
.xa{left:99.984000px;}
.x13{left:109.882500px;}
.x7{left:112.348500px;}
.x3f{left:116.052000px;}
.x8f{left:117.408000px;}
.x43{left:125.565000px;}
.x14{left:127.393500px;}
.x4d{left:135.718500px;}
.x5{left:136.957500px;}
.x3d{left:142.746000px;}
.x7a{left:143.788500px;}
.x6{left:160.339500px;}
.x3{left:162.103500px;}
.x50{left:163.153500px;}
.x78{left:177.375000px;}
.x48{left:178.465500px;}
.x42{left:181.887000px;}
.x4{left:184.558500px;}
.x1{left:189.279000px;}
.x6b{left:191.100000px;}
.x8{left:194.499000px;}
.x79{left:196.570500px;}
.x8e{left:200.331000px;}
.xd{left:202.923000px;}
.x67{left:204.082500px;}
.x44{left:207.307500px;}
.x34{left:211.944030px;}
.x40{left:214.540500px;}
.x68{left:215.623500px;}
.x45{left:219.114000px;}
.x46{left:222.796500px;}
.x2{left:224.536500px;}
.x51{left:226.933500px;}
.xe{left:230.464500px;}
.x71{left:236.380500px;}
.x6e{left:238.396500px;}
.x6c{left:244.867500px;}
.x41{left:247.872000px;}
.x49{left:253.243500px;}
.x52{left:254.659500px;}
.x7c{left:260.251500px;}
.x75{left:262.834500px;}
.x7d{left:269.517000px;}
.x53{left:272.440500px;}
.xf{left:279.081000px;}
.x39{left:284.827500px;}
.x6d{left:291.193500px;}
.x3b{left:292.860000px;}
.x47{left:294.462000px;}
.x10{left:296.629500px;}
.x69{left:298.960500px;}
.x4a{left:305.172000px;}
.x7b{left:306.921000px;}
.x3c{left:309.796500px;}
.x6a{left:314.992500px;}
.x76{left:321.418500px;}
.x3a{left:323.452500px;}
.x77{left:335.235000px;}
.x72{left:341.487000px;}
.x4e{left:351.385500px;}
.xb{left:356.722500px;}
.x4f{left:358.287000px;}
.x4b{left:367.488000px;}
.xc{left:370.539000px;}
.x6f{left:373.225500px;}
.x73{left:374.683500px;}
.x70{left:386.434500px;}
.x74{left:392.061000px;}
.x3e{left:395.677500px;}
.x37{left:406.605000px;}
.x11{left:412.945500px;}
.x4c{left:415.782000px;}
.x38{left:419.814000px;}
.x12{left:431.886000px;}
.x16{left:457.086000px;}
.x1d{left:458.617500px;}
.x91{left:466.300500px;}
.x18{left:472.030500px;}
.x57{left:474.382500px;}
.x8c{left:475.746000px;}
.x28{left:478.359000px;}
.x1e{left:481.066500px;}
.x90{left:489.454500px;}
.x58{left:492.190500px;}
.x1f{left:497.545500px;}
.x60{left:514.788000px;}
.x82{left:518.743500px;}
.x8d{left:527.842500px;}
.x7e{left:529.143000px;}
.x29{left:536.692500px;}
.x54{left:538.404000px;}
.x84{left:544.656000px;}
.x7f{left:545.668500px;}
.x17{left:554.956500px;}
.x61{left:557.272500px;}
.x24{left:558.600000px;}
.x20{left:561.088500px;}
.x85{left:562.224000px;}
.x88{left:567.303000px;}
.x30{left:568.890000px;}
.x62{left:573.444000px;}
.x25{left:574.929000px;}
.x5b{left:577.072500px;}
.x19{left:580.333500px;}
.x21{left:582.631500px;}
.x5c{left:585.381000px;}
.x83{left:587.994000px;}
.x63{left:590.109000px;}
.x1a{left:594.150000px;}
.x55{left:604.009500px;}
.x80{left:611.776500px;}
.x81{left:629.331000px;}
.x56{left:637.038000px;}
.x2c{left:657.010500px;}
.x31{left:664.252500px;}
.x89{left:674.742000px;}
.x26{left:686.512500px;}
.x22{left:689.436000px;}
.x8a{left:692.275500px;}
.x27{left:693.414000px;}
.x23{left:701.397000px;}
.x59{left:705.460500px;}
.x5d{left:709.246500px;}
.x2a{left:714.109500px;}
.x65{left:718.875000px;}
.x2b{left:733.611000px;}
.x5a{left:735.756000px;}
.x2d{left:737.668500px;}
.x64{left:757.678500px;}
.x86{left:758.941500px;}
.x8b{left:763.477500px;}
.x5e{left:768.990000px;}
.x87{left:772.900500px;}
.x1b{left:774.409500px;}
.x32{left:776.071500px;}
.x2e{left:786.318000px;}
.x5f{left:788.065500px;}
.x2f{left:793.218000px;}
.x1c{left:801.951000px;}
.x35{left:836.250000px;}
@media print{
.v3{vertical-align:-21.610667pt;}
.v5{vertical-align:-14.410667pt;}
.v4{vertical-align:-11.797333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:11.797333pt;}
.v6{vertical-align:18.010667pt;}
.v2{vertical-align:21.616000pt;}
.v1{vertical-align:25.936000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.002351pt;}
.ls11{letter-spacing:0.003507pt;}
.ls9{letter-spacing:0.004118pt;}
.ls5{letter-spacing:0.004410pt;}
.ls4{letter-spacing:0.265670pt;}
.lsd{letter-spacing:2.121389pt;}
.ls16{letter-spacing:2.126275pt;}
.ls10{letter-spacing:2.126723pt;}
.ls2{letter-spacing:2.549040pt;}
.ls1{letter-spacing:2.554373pt;}
.ls0{letter-spacing:5.311707pt;}
.lsf{letter-spacing:5.577452pt;}
.ls14{letter-spacing:14.822165pt;}
.ls19{letter-spacing:15.384942pt;}
.ls18{letter-spacing:15.406275pt;}
.lsc{letter-spacing:15.411609pt;}
.ls12{letter-spacing:15.412056pt;}
.ls6{letter-spacing:15.942453pt;}
.lse{letter-spacing:16.883609pt;}
.ls13{letter-spacing:16.884056pt;}
.ls8{letter-spacing:16.886165pt;}
.lsa{letter-spacing:18.083609pt;}
.ls3{letter-spacing:18.490373pt;}
.ls17{letter-spacing:27.782165pt;}
.ls15{letter-spacing:28.080831pt;}
.ws3{word-spacing:-63.760907pt;}
.ws0{word-spacing:-57.384798pt;}
.wse{word-spacing:-53.399750pt;}
.wsc{word-spacing:-53.134080pt;}
.ws42{word-spacing:-47.821437pt;}
.ws85{word-spacing:-47.820693pt;}
.ws1{word-spacing:-47.820678pt;}
.ws3e{word-spacing:-44.260688pt;}
.ws4d{word-spacing:-44.237036pt;}
.ws6c{word-spacing:-44.235422pt;}
.ws2b{word-spacing:-44.235130pt;}
.ws69{word-spacing:-44.234931pt;}
.ws45{word-spacing:-44.101285pt;}
.ws2c{word-spacing:-44.048152pt;}
.ws1b{word-spacing:-43.623080pt;}
.ws56{word-spacing:-43.357408pt;}
.ws43{word-spacing:-42.932336pt;}
.ws5d{word-spacing:-42.879203pt;}
.ws3f{word-spacing:-42.666665pt;}
.ws2{word-spacing:-42.507253pt;}
.ws1e{word-spacing:-42.400996pt;}
.ws17{word-spacing:-42.188460pt;}
.ws1f{word-spacing:-41.975922pt;}
.ws23{word-spacing:-41.869655pt;}
.ws44{word-spacing:-41.710253pt;}
.ws57{word-spacing:-41.657118pt;}
.ws28{word-spacing:-41.444582pt;}
.ws4e{word-spacing:-41.391447pt;}
.ws41{word-spacing:-41.338313pt;}
.ws27{word-spacing:-41.125777pt;}
.ws60{word-spacing:-41.072643pt;}
.ws51{word-spacing:-41.019509pt;}
.ws7a{word-spacing:-40.913241pt;}
.ws34{word-spacing:-40.860108pt;}
.ws3a{word-spacing:-40.647570pt;}
.ws3b{word-spacing:-40.594436pt;}
.ws3d{word-spacing:-40.541301pt;}
.ws1d{word-spacing:-40.488169pt;}
.ws14{word-spacing:-40.435035pt;}
.ws7{word-spacing:-40.275633pt;}
.wsd{word-spacing:-40.222497pt;}
.wsf{word-spacing:-40.169364pt;}
.ws5{word-spacing:-40.116231pt;}
.ws9{word-spacing:-40.063096pt;}
.ws24{word-spacing:-40.009962pt;}
.ws6{word-spacing:-39.956827pt;}
.ws11{word-spacing:-39.903693pt;}
.ws6e{word-spacing:-39.894262pt;}
.ws9d{word-spacing:-39.882457pt;}
.ws81{word-spacing:-39.870358pt;}
.ws6f{word-spacing:-39.852125pt;}
.ws12{word-spacing:-39.850560pt;}
.ws76{word-spacing:-39.849025pt;}
.ws9c{word-spacing:-39.834637pt;}
.ws1a{word-spacing:-39.797425pt;}
.ws8{word-spacing:-39.744292pt;}
.ws8c{word-spacing:-39.691175pt;}
.ws18{word-spacing:-39.691158pt;}
.ws15{word-spacing:-39.638023pt;}
.ws29{word-spacing:-39.584890pt;}
.ws80{word-spacing:-39.531756pt;}
.ws19{word-spacing:-39.478619pt;}
.ws74{word-spacing:-39.425485pt;}
.ws65{word-spacing:-39.372351pt;}
.ws4f{word-spacing:-39.319217pt;}
.ws6a{word-spacing:-39.319200pt;}
.ws10{word-spacing:-39.266085pt;}
.ws5c{word-spacing:-39.159817pt;}
.ws9a{word-spacing:-39.117326pt;}
.ws7f{word-spacing:-39.106681pt;}
.ws9b{word-spacing:-39.069506pt;}
.ws1c{word-spacing:-39.053547pt;}
.wsa{word-spacing:-38.894147pt;}
.ws96{word-spacing:-38.686941pt;}
.ws68{word-spacing:-38.681610pt;}
.wsb{word-spacing:-38.628474pt;}
.ws61{word-spacing:-38.575340pt;}
.ws39{word-spacing:-38.469074pt;}
.ws2a{word-spacing:-38.415940pt;}
.ws4b{word-spacing:-38.362806pt;}
.ws92{word-spacing:-38.352196pt;}
.ws4c{word-spacing:-38.309672pt;}
.ws32{word-spacing:-38.203401pt;}
.ws35{word-spacing:-38.150269pt;}
.ws3c{word-spacing:-38.044001pt;}
.ws66{word-spacing:-37.990867pt;}
.ws87{word-spacing:-37.969630pt;}
.ws64{word-spacing:-37.937733pt;}
.ws86{word-spacing:-37.921810pt;}
.ws7b{word-spacing:-37.831465pt;}
.ws97{word-spacing:-37.826168pt;}
.ws98{word-spacing:-37.778347pt;}
.ws7e{word-spacing:-37.725195pt;}
.ws94{word-spacing:-37.443603pt;}
.ws95{word-spacing:-37.395781pt;}
.ws58{word-spacing:-37.246990pt;}
.ws48{word-spacing:-37.193856pt;}
.ws53{word-spacing:-37.140720pt;}
.ws52{word-spacing:-37.087584pt;}
.ws8b{word-spacing:-37.061036pt;}
.ws4a{word-spacing:-37.034452pt;}
.ws16{word-spacing:-36.981318pt;}
.ws67{word-spacing:-36.928183pt;}
.ws5f{word-spacing:-36.875049pt;}
.ws99{word-spacing:-36.821933pt;}
.ws38{word-spacing:-36.821917pt;}
.ws13{word-spacing:-36.715649pt;}
.ws33{word-spacing:-36.662513pt;}
.ws31{word-spacing:-36.609379pt;}
.ws7d{word-spacing:-36.343711pt;}
.ws79{word-spacing:-36.290577pt;}
.ws90{word-spacing:-36.200265pt;}
.ws6b{word-spacing:-36.078040pt;}
.ws49{word-spacing:-36.024904pt;}
.ws8a{word-spacing:-36.008981pt;}
.ws89{word-spacing:-35.997573pt;}
.ws20{word-spacing:-35.971772pt;}
.ws9e{word-spacing:-35.961160pt;}
.ws88{word-spacing:-35.913340pt;}
.ws84{word-spacing:-35.865520pt;}
.ws8f{word-spacing:-35.817697pt;}
.ws77{word-spacing:-35.812370pt;}
.ws91{word-spacing:-35.769879pt;}
.ws8d{word-spacing:-35.722058pt;}
.ws8e{word-spacing:-35.674236pt;}
.ws25{word-spacing:-35.599834pt;}
.ws26{word-spacing:-35.546700pt;}
.ws9f{word-spacing:-35.435134pt;}
.ws62{word-spacing:-35.334161pt;}
.ws7c{word-spacing:-35.174759pt;}
.ws78{word-spacing:-35.068491pt;}
.ws93{word-spacing:-35.052566pt;}
.ws63{word-spacing:-35.015357pt;}
.ws83{word-spacing:-34.956927pt;}
.ws82{word-spacing:-34.324616pt;}
.ws47{word-spacing:-34.218348pt;}
.ws46{word-spacing:-34.165211pt;}
.ws4{word-spacing:-33.899541pt;}
.ws2f{word-spacing:-33.368202pt;}
.ws30{word-spacing:-33.315066pt;}
.ws37{word-spacing:-32.464921pt;}
.ws22{word-spacing:-31.880439pt;}
.ws5a{word-spacing:-31.827312pt;}
.ws55{word-spacing:-31.614778pt;}
.ws5b{word-spacing:-31.083435pt;}
.ws5e{word-spacing:-30.764630pt;}
.ws21{word-spacing:-30.690235pt;}
.ws70{word-spacing:-29.223742pt;}
.ws71{word-spacing:-27.523453pt;}
.ws72{word-spacing:-27.470317pt;}
.ws6d{word-spacing:-23.933427pt;}
.ws75{word-spacing:-23.912094pt;}
.ws2e{word-spacing:-23.007052pt;}
.ws40{word-spacing:-22.432125pt;}
.ws50{word-spacing:-20.640125pt;}
.ws59{word-spacing:-15.877458pt;}
.ws54{word-spacing:-15.653458pt;}
.ws73{word-spacing:-11.541458pt;}
.ws2d{word-spacing:-7.034791pt;}
.ws36{word-spacing:0.000000pt;}
._2{margin-left:-9.564135pt;}
._0{margin-left:-5.738480pt;}
._5{margin-left:-4.589489pt;}
._7{margin-left:-3.378543pt;}
._1{margin-left:-2.295392pt;}
._4{margin-left:-0.892255pt;}
._6{width:1.275218pt;}
._3{width:2.548342pt;}
._1e{width:6.427720pt;}
._23{width:8.152018pt;}
._c{width:9.085527pt;}
._f{width:9.989208pt;}
._22{width:10.916117pt;}
._d{width:11.837488pt;}
._9{width:13.782980pt;}
._18{width:14.718140pt;}
._11{width:15.940224pt;}
._8{width:17.693651pt;}
._1b{width:19.447075pt;}
._a{width:20.764405pt;}
._1d{width:21.891241pt;}
._1c{width:23.485273pt;}
._1a{width:25.504361pt;}
._20{width:26.407640pt;}
._b{width:27.321549pt;}
._21{width:28.787647pt;}
._e{width:30.870900pt;}
._1f{width:33.272163pt;}
._19{width:35.174761pt;}
._10{width:37.576430pt;}
._17{width:41.147036pt;}
._14{width:429.842880pt;}
._12{width:444.458560pt;}
._13{width:712.008000pt;}
._16{width:1693.898667pt;}
._15{width:1978.117333pt;}
.fs5{font-size:31.880427pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:39.319200pt;}
.fs3{font-size:42.507253pt;}
.fs7{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs2{font-size:63.760907pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:5.866668pt;}
.y59{bottom:20.000000pt;}
.y5a{bottom:37.333333pt;}
.y55{bottom:80.452000pt;}
.y35{bottom:84.054667pt;}
.y8e{bottom:85.233333pt;}
.yd6{bottom:89.750667pt;}
.y34{bottom:93.228000pt;}
.y78{bottom:93.442667pt;}
.y54{bottom:96.392000pt;}
.y8d{bottom:101.173333pt;}
.yd5{bottom:105.690667pt;}
.y33{bottom:105.846667pt;}
.ya3{bottom:108.241333pt;}
.y53{bottom:109.382667pt;}
.y52{bottom:112.332000pt;}
.y5b{bottom:116.000000pt;}
.y32{bottom:118.466667pt;}
.yd4{bottom:121.630667pt;}
.y31{bottom:122.069333pt;}
.ya2{bottom:124.181333pt;}
.y51{bottom:128.272000pt;}
.y77{bottom:128.548000pt;}
.yd3{bottom:137.570667pt;}
.ya1{bottom:140.121333pt;}
.y30{bottom:141.376000pt;}
.y50{bottom:144.212000pt;}
.yd2{bottom:153.510667pt;}
.ya0{bottom:156.062667pt;}
.y4f{bottom:157.204000pt;}
.y2f{bottom:157.316000pt;}
.y4e{bottom:160.153333pt;}
.y2e{bottom:173.256000pt;}
.yd1{bottom:175.429333pt;}
.y4d{bottom:176.484000pt;}
.y9f{bottom:187.942667pt;}
.y2d{bottom:189.196000pt;}
.y4c{bottom:192.424000pt;}
.y9e{bottom:200.933333pt;}
.y9d{bottom:203.882667pt;}
.y2c{bottom:205.136000pt;}
.yd0{bottom:205.981333pt;}
.y4b{bottom:208.365333pt;}
.y2b{bottom:221.076000pt;}
.ycf{bottom:221.921333pt;}
.y4a{bottom:224.305333pt;}
.y2a{bottom:237.017333pt;}
.yce{bottom:237.861333pt;}
.y49{bottom:240.245333pt;}
.y29{bottom:252.957333pt;}
.ycd{bottom:253.801333pt;}
.y48{bottom:256.185333pt;}
.y28{bottom:268.897333pt;}
.ycc{bottom:269.741333pt;}
.y47{bottom:272.125333pt;}
.y27{bottom:284.837333pt;}
.ycb{bottom:285.682667pt;}
.y46{bottom:288.065333pt;}
.y26{bottom:300.777333pt;}
.yca{bottom:301.622667pt;}
.y45{bottom:304.006667pt;}
.y25{bottom:316.717333pt;}
.yc9{bottom:317.562667pt;}
.y44{bottom:319.946667pt;}
.y76{bottom:321.638667pt;}
.y24{bottom:332.658667pt;}
.yc8{bottom:333.502667pt;}
.y43{bottom:335.886667pt;}
.y75{bottom:337.578667pt;}
.y23{bottom:348.598667pt;}
.yc7{bottom:349.442667pt;}
.y42{bottom:351.826667pt;}
.y74{bottom:353.518667pt;}
.y22{bottom:364.538667pt;}
.yc6{bottom:365.382667pt;}
.y41{bottom:367.766667pt;}
.y73{bottom:369.460000pt;}
.y21{bottom:380.478667pt;}
.yc5{bottom:381.324000pt;}
.y72{bottom:385.400000pt;}
.y8c{bottom:385.449333pt;}
.y20{bottom:396.418667pt;}
.yc4{bottom:397.264000pt;}
.y71{bottom:401.340000pt;}
.y8b{bottom:401.390667pt;}
.y40{bottom:402.316000pt;}
.y1f{bottom:412.358667pt;}
.yc3{bottom:413.204000pt;}
.y70{bottom:417.280000pt;}
.y8a{bottom:417.330667pt;}
.y6f{bottom:433.220000pt;}
.y89{bottom:433.270667pt;}
.y1e{bottom:434.277333pt;}
.yc2{bottom:435.121333pt;}
.y6e{bottom:449.160000pt;}
.y88{bottom:449.210667pt;}
.y9c{bottom:453.269333pt;}
.y1d{bottom:464.657333pt;}
.y6d{bottom:465.101333pt;}
.y87{bottom:465.150667pt;}
.yc1{bottom:465.673333pt;}
.y1c{bottom:480.597333pt;}
.y86{bottom:481.092000pt;}
.yc0{bottom:481.613333pt;}
.y6c{bottom:486.332000pt;}
.y1b{bottom:496.538667pt;}
.y85{bottom:497.032000pt;}
.ybf{bottom:497.554667pt;}
.y1a{bottom:512.478667pt;}
.y84{bottom:512.972000pt;}
.ybe{bottom:513.494667pt;}
.y6b{bottom:514.622667pt;}
.y19{bottom:528.418667pt;}
.ybd{bottom:529.434667pt;}
.y6a{bottom:530.562667pt;}
.y83{bottom:534.585333pt;}
.y18{bottom:544.358667pt;}
.ybc{bottom:545.374667pt;}
.y69{bottom:546.502667pt;}
.y17{bottom:560.298667pt;}
.ybb{bottom:561.314667pt;}
.y68{bottom:562.442667pt;}
.y16{bottom:576.238667pt;}
.yba{bottom:577.254667pt;}
.y67{bottom:578.382667pt;}
.y82{bottom:584.914667pt;}
.y15{bottom:592.180000pt;}
.yb9{bottom:593.196000pt;}
.y66{bottom:594.324000pt;}
.y3f{bottom:597.578667pt;}
.y81{bottom:600.854667pt;}
.y14{bottom:608.120000pt;}
.yb8{bottom:609.136000pt;}
.y65{bottom:610.264000pt;}
.y3e{bottom:613.520000pt;}
.y13{bottom:624.060000pt;}
.yec{bottom:624.080000pt;}
.yb7{bottom:625.076000pt;}
.y3d{bottom:629.460000pt;}
.yeb{bottom:638.692000pt;}
.y12{bottom:640.000000pt;}
.yb6{bottom:641.016000pt;}
.y64{bottom:641.670667pt;}
.y63{bottom:644.620000pt;}
.y3c{bottom:645.400000pt;}
.y100{bottom:653.304000pt;}
.y11{bottom:655.940000pt;}
.yb5{bottom:656.956000pt;}
.yea{bottom:657.585333pt;}
.y3b{bottom:661.340000pt;}
.yff{bottom:667.914667pt;}
.y10{bottom:671.880000pt;}
.ye9{bottom:672.197333pt;}
.yb4{bottom:672.896000pt;}
.y3a{bottom:677.280000pt;}
.y9b{bottom:684.561333pt;}
.ye8{bottom:686.809333pt;}
.yf{bottom:687.821333pt;}
.yfe{bottom:688.040000pt;}
.yb3{bottom:688.837333pt;}
.y39{bottom:693.220000pt;}
.y9a{bottom:700.502667pt;}
.ye7{bottom:701.420000pt;}
.yfd{bottom:702.652000pt;}
.ye{bottom:703.761333pt;}
.yb2{bottom:704.777333pt;}
.y99{bottom:713.493333pt;}
.y38{bottom:714.633333pt;}
.ye6{bottom:716.032000pt;}
.y98{bottom:716.442667pt;}
.yfc{bottom:717.264000pt;}
.yd{bottom:719.701333pt;}
.yb1{bottom:720.717333pt;}
.yfb{bottom:731.876000pt;}
.y97{bottom:734.001333pt;}
.ye5{bottom:734.925333pt;}
.yc{bottom:735.641333pt;}
.yb0{bottom:736.657333pt;}
.y37{bottom:739.952000pt;}
.ye4{bottom:749.537333pt;}
.y96{bottom:749.941333pt;}
.yb{bottom:751.581333pt;}
.yfa{bottom:752.000000pt;}
.yaf{bottom:752.597333pt;}
.ye3{bottom:764.149333pt;}
.y95{bottom:765.881333pt;}
.yf9{bottom:766.612000pt;}
.ya{bottom:767.521333pt;}
.yae{bottom:768.537333pt;}
.y36{bottom:772.304000pt;}
.ye2{bottom:778.761333pt;}
.yf8{bottom:781.224000pt;}
.y94{bottom:781.821333pt;}
.yad{bottom:784.478667pt;}
.y9{bottom:788.244000pt;}
.yf7{bottom:795.836000pt;}
.ye1{bottom:797.654667pt;}
.y93{bottom:797.761333pt;}
.yac{bottom:806.396000pt;}
.yf6{bottom:810.448000pt;}
.ye0{bottom:812.266667pt;}
.y92{bottom:813.701333pt;}
.y8{bottom:825.794667pt;}
.ydf{bottom:826.878667pt;}
.y91{bottom:829.642667pt;}
.yf5{bottom:830.572000pt;}
.yab{bottom:836.948000pt;}
.yde{bottom:841.490667pt;}
.y80{bottom:843.964000pt;}
.y7{bottom:844.390667pt;}
.yf4{bottom:845.184000pt;}
.y90{bottom:845.582667pt;}
.yaa{bottom:852.888000pt;}
.y6{bottom:857.584000pt;}
.yf3{bottom:859.796000pt;}
.y7f{bottom:859.904000pt;}
.ydd{bottom:860.384000pt;}
.y8f{bottom:861.522667pt;}
.ya9{bottom:868.828000pt;}
.yf2{bottom:874.408000pt;}
.ydc{bottom:874.996000pt;}
.y7e{bottom:875.844000pt;}
.y5{bottom:876.181333pt;}
.y62{bottom:877.462667pt;}
.ya8{bottom:884.769333pt;}
.ydb{bottom:889.608000pt;}
.y7d{bottom:891.785333pt;}
.y61{bottom:893.402667pt;}
.yf1{bottom:894.532000pt;}
.y4{bottom:894.778667pt;}
.ya7{bottom:900.709333pt;}
.y7c{bottom:907.725333pt;}
.yda{bottom:908.501333pt;}
.yf0{bottom:909.144000pt;}
.y60{bottom:909.342667pt;}
.y3{bottom:913.374667pt;}
.ya6{bottom:916.649333pt;}
.y7b{bottom:920.716000pt;}
.yd9{bottom:923.113333pt;}
.y7a{bottom:923.665333pt;}
.yef{bottom:923.756000pt;}
.y5f{bottom:925.284000pt;}
.ya5{bottom:932.589333pt;}
.yd8{bottom:937.725333pt;}
.yee{bottom:938.368000pt;}
.y5e{bottom:941.224000pt;}
.y2{bottom:945.256000pt;}
.yd7{bottom:952.337333pt;}
.y79{bottom:952.906667pt;}
.ya4{bottom:954.506667pt;}
.y5d{bottom:957.164000pt;}
.yed{bottom:958.492000pt;}
.y1{bottom:969.165333pt;}
.y5c{bottom:973.104000pt;}
.y58{bottom:1005.333333pt;}
.y56{bottom:1022.666667pt;}
.hb{height:13.333333pt;}
.h9{height:21.551168pt;}
.hf{height:26.855014pt;}
.ha{height:27.051610pt;}
.h5{height:29.244990pt;}
.h12{height:32.565892pt;}
.h11{height:32.900637pt;}
.h7{height:36.556247pt;}
.hc{height:38.937500pt;}
.h6{height:43.739982pt;}
.h4{height:43.867504pt;}
.h8{height:44.122547pt;}
.he{height:45.062276pt;}
.h10{height:48.353580pt;}
.h3{height:50.860990pt;}
.h1{height:52.947042pt;}
.h2{height:62.492247pt;}
.hd{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x36{left:7.466666pt;}
.x66{left:39.333333pt;}
.x9{left:75.096000pt;}
.x33{left:76.000000pt;}
.x15{left:83.230667pt;}
.xa{left:88.874667pt;}
.x13{left:97.673333pt;}
.x7{left:99.865333pt;}
.x3f{left:103.157333pt;}
.x8f{left:104.362667pt;}
.x43{left:111.613333pt;}
.x14{left:113.238667pt;}
.x4d{left:120.638667pt;}
.x5{left:121.740000pt;}
.x3d{left:126.885333pt;}
.x7a{left:127.812000pt;}
.x6{left:142.524000pt;}
.x3{left:144.092000pt;}
.x50{left:145.025333pt;}
.x78{left:157.666667pt;}
.x48{left:158.636000pt;}
.x42{left:161.677333pt;}
.x4{left:164.052000pt;}
.x1{left:168.248000pt;}
.x6b{left:169.866667pt;}
.x8{left:172.888000pt;}
.x79{left:174.729333pt;}
.x8e{left:178.072000pt;}
.xd{left:180.376000pt;}
.x67{left:181.406667pt;}
.x44{left:184.273333pt;}
.x34{left:188.394693pt;}
.x40{left:190.702667pt;}
.x68{left:191.665333pt;}
.x45{left:194.768000pt;}
.x46{left:198.041333pt;}
.x2{left:199.588000pt;}
.x51{left:201.718667pt;}
.xe{left:204.857333pt;}
.x71{left:210.116000pt;}
.x6e{left:211.908000pt;}
.x6c{left:217.660000pt;}
.x41{left:220.330667pt;}
.x49{left:225.105333pt;}
.x52{left:226.364000pt;}
.x7c{left:231.334667pt;}
.x75{left:233.630667pt;}
.x7d{left:239.570667pt;}
.x53{left:242.169333pt;}
.xf{left:248.072000pt;}
.x39{left:253.180000pt;}
.x6d{left:258.838667pt;}
.x3b{left:260.320000pt;}
.x47{left:261.744000pt;}
.x10{left:263.670667pt;}
.x69{left:265.742667pt;}
.x4a{left:271.264000pt;}
.x7b{left:272.818667pt;}
.x3c{left:275.374667pt;}
.x6a{left:279.993333pt;}
.x76{left:285.705333pt;}
.x3a{left:287.513333pt;}
.x77{left:297.986667pt;}
.x72{left:303.544000pt;}
.x4e{left:312.342667pt;}
.xb{left:317.086667pt;}
.x4f{left:318.477333pt;}
.x4b{left:326.656000pt;}
.xc{left:329.368000pt;}
.x6f{left:331.756000pt;}
.x73{left:333.052000pt;}
.x70{left:343.497333pt;}
.x74{left:348.498667pt;}
.x3e{left:351.713333pt;}
.x37{left:361.426667pt;}
.x11{left:367.062667pt;}
.x4c{left:369.584000pt;}
.x38{left:373.168000pt;}
.x12{left:383.898667pt;}
.x16{left:406.298667pt;}
.x1d{left:407.660000pt;}
.x91{left:414.489333pt;}
.x18{left:419.582667pt;}
.x57{left:421.673333pt;}
.x8c{left:422.885333pt;}
.x28{left:425.208000pt;}
.x1e{left:427.614667pt;}
.x90{left:435.070667pt;}
.x58{left:437.502667pt;}
.x1f{left:442.262667pt;}
.x60{left:457.589333pt;}
.x82{left:461.105333pt;}
.x8d{left:469.193333pt;}
.x7e{left:470.349333pt;}
.x29{left:477.060000pt;}
.x54{left:478.581333pt;}
.x84{left:484.138667pt;}
.x7f{left:485.038667pt;}
.x17{left:493.294667pt;}
.x61{left:495.353333pt;}
.x24{left:496.533333pt;}
.x20{left:498.745333pt;}
.x85{left:499.754667pt;}
.x88{left:504.269333pt;}
.x30{left:505.680000pt;}
.x62{left:509.728000pt;}
.x25{left:511.048000pt;}
.x5b{left:512.953333pt;}
.x19{left:515.852000pt;}
.x21{left:517.894667pt;}
.x5c{left:520.338667pt;}
.x83{left:522.661333pt;}
.x63{left:524.541333pt;}
.x1a{left:528.133333pt;}
.x55{left:536.897333pt;}
.x80{left:543.801333pt;}
.x81{left:559.405333pt;}
.x56{left:566.256000pt;}
.x2c{left:584.009333pt;}
.x31{left:590.446667pt;}
.x89{left:599.770667pt;}
.x26{left:610.233333pt;}
.x22{left:612.832000pt;}
.x8a{left:615.356000pt;}
.x27{left:616.368000pt;}
.x23{left:623.464000pt;}
.x59{left:627.076000pt;}
.x5d{left:630.441333pt;}
.x2a{left:634.764000pt;}
.x65{left:639.000000pt;}
.x2b{left:652.098667pt;}
.x5a{left:654.005333pt;}
.x2d{left:655.705333pt;}
.x64{left:673.492000pt;}
.x86{left:674.614667pt;}
.x8b{left:678.646667pt;}
.x5e{left:683.546667pt;}
.x87{left:687.022667pt;}
.x1b{left:688.364000pt;}
.x32{left:689.841333pt;}
.x2e{left:698.949333pt;}
.x5f{left:700.502667pt;}
.x2f{left:705.082667pt;}
.x1c{left:712.845333pt;}
.x35{left:743.333333pt;}
}




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