
    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_81f502e46d2444d2e1aa1017.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_43ff7d967309d5af329b3779.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_80a65f2efb7beea99fe761a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_5969cf20b1968913905d6b92.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_3223fc04d008c09194c5e26f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_8ed258a662f08b99514249ea.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a0f8389634dd3537adab0264.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686000;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_932720bb38a5218cf60b178f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m5{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);}
.m28{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);}
.m11{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);}
.me{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);}
.m25{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1e{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);}
.mc{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);}
.mb{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);}
.mf{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);}
.m16{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);}
.m7{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);}
.m10{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);}
.m22{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);}
.m1f{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);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m1c{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);}
.m6{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);}
.m19{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);}
.m27{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);}
.m4{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);}
.m21{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);}
.md{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);}
.ma{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);}
.m2{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);}
.m20{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);}
.m14{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);}
.m1a{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);}
.m15{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m24{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);}
.m3{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);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.040000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001094px;}
.ls6{letter-spacing:4.401552px;}
.ls9{letter-spacing:4.592490px;}
.ls4{letter-spacing:23.107597px;}
.ls5{letter-spacing:23.153851px;}
.ls7{letter-spacing:23.180324px;}
.ls8{letter-spacing:23.383163px;}
.lsa{letter-spacing:23.964673px;}
.ls3{letter-spacing:24.824457px;}
.ls2{letter-spacing:27.403609px;}
.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;}
}
.ws18{word-spacing:-71.731020px;}
.ws5{word-spacing:-54.515575px;}
.ws59{word-spacing:-54.156920px;}
.ws3e{word-spacing:-54.085189px;}
.ws77{word-spacing:-53.869996px;}
.ws9f{word-spacing:-53.798265px;}
.ws3{word-spacing:-53.798250px;}
.ws33{word-spacing:-53.726534px;}
.ws2d{word-spacing:-53.654803px;}
.ws91{word-spacing:-53.511341px;}
.ws6b{word-spacing:-53.152686px;}
.ws5b{word-spacing:-53.080955px;}
.ws20{word-spacing:-52.937493px;}
.ws90{word-spacing:-52.650569px;}
.ws3d{word-spacing:-52.578838px;}
.ws35{word-spacing:-52.507107px;}
.wsf{word-spacing:-52.435376px;}
.ws8c{word-spacing:-52.291914px;}
.ws3b{word-spacing:-52.148452px;}
.ws55{word-spacing:-52.076721px;}
.ws44{word-spacing:-51.933258px;}
.ws4a{word-spacing:-51.861527px;}
.ws68{word-spacing:-51.789796px;}
.ws5a{word-spacing:-51.646334px;}
.ws43{word-spacing:-51.502872px;}
.ws1e{word-spacing:-51.359410px;}
.ws79{word-spacing:-51.287679px;}
.ws60{word-spacing:-51.215948px;}
.ws57{word-spacing:-51.144217px;}
.ws1b{word-spacing:-51.072486px;}
.ws6c{word-spacing:-51.000755px;}
.ws82{word-spacing:-50.929024px;}
.ws80{word-spacing:-50.857293px;}
.ws8b{word-spacing:-50.785562px;}
.ws4f{word-spacing:-50.713831px;}
.ws56{word-spacing:-50.642100px;}
.ws45{word-spacing:-50.498638px;}
.ws34{word-spacing:-50.426907px;}
.ws9c{word-spacing:-50.283445px;}
.ws4d{word-spacing:-50.139983px;}
.ws8d{word-spacing:-50.068252px;}
.ws3c{word-spacing:-49.996521px;}
.ws7e{word-spacing:-49.924790px;}
.ws21{word-spacing:-49.853059px;}
.ws5f{word-spacing:-49.709597px;}
.ws75{word-spacing:-49.637866px;}
.ws2e{word-spacing:-49.566135px;}
.ws26{word-spacing:-49.422673px;}
.ws76{word-spacing:-49.350942px;}
.ws5e{word-spacing:-49.279211px;}
.ws6a{word-spacing:-49.207480px;}
.ws14{word-spacing:-49.064018px;}
.ws8{word-spacing:-48.992287px;}
.ws63{word-spacing:-48.920556px;}
.ws23{word-spacing:-48.848825px;}
.ws39{word-spacing:-48.777094px;}
.ws2b{word-spacing:-48.705363px;}
.ws98{word-spacing:-48.639262px;}
.ws6{word-spacing:-48.633632px;}
.ws22{word-spacing:-48.561901px;}
.ws9{word-spacing:-48.490170px;}
.ws15{word-spacing:-48.418438px;}
.ws97{word-spacing:-48.352155px;}
.ws4{word-spacing:-48.346707px;}
.ws9b{word-spacing:-48.344969px;}
.wse{word-spacing:-48.343700px;}
.ws17{word-spacing:-48.343048px;}
.ws96{word-spacing:-48.332356px;}
.wsd{word-spacing:-48.274976px;}
.ws9d{word-spacing:-48.261266px;}
.ws32{word-spacing:-48.203245px;}
.ws9e{word-spacing:-48.200243px;}
.ws1d{word-spacing:-48.131514px;}
.ws25{word-spacing:-48.059783px;}
.wsa{word-spacing:-47.988052px;}
.ws28{word-spacing:-47.980701px;}
.ws29{word-spacing:-47.916321px;}
.ws11{word-spacing:-47.844590px;}
.ws27{word-spacing:-47.820660px;}
.ws7a{word-spacing:-47.772859px;}
.ws99{word-spacing:-47.744780px;}
.ws16{word-spacing:-47.701128px;}
.ws47{word-spacing:-47.629397px;}
.ws7{word-spacing:-47.557666px;}
.ws12{word-spacing:-47.485935px;}
.ws2f{word-spacing:-47.342473px;}
.ws36{word-spacing:-47.270742px;}
.ws6d{word-spacing:-47.199011px;}
.ws7f{word-spacing:-47.127280px;}
.ws94{word-spacing:-46.983818px;}
.ws51{word-spacing:-46.912087px;}
.ws4e{word-spacing:-46.840356px;}
.ws58{word-spacing:-46.768625px;}
.ws69{word-spacing:-46.696894px;}
.wsc{word-spacing:-46.625163px;}
.ws1c{word-spacing:-46.553432px;}
.wsb{word-spacing:-46.481701px;}
.ws41{word-spacing:-46.409970px;}
.ws37{word-spacing:-46.338239px;}
.ws2a{word-spacing:-46.194777px;}
.ws84{word-spacing:-46.123046px;}
.wsa0{word-spacing:-46.051315px;}
.ws1f{word-spacing:-45.979584px;}
.ws83{word-spacing:-45.836122px;}
.ws49{word-spacing:-45.620929px;}
.ws8e{word-spacing:-45.549198px;}
.ws38{word-spacing:-45.477467px;}
.ws31{word-spacing:-45.405736px;}
.ws6e{word-spacing:-45.262274px;}
.ws40{word-spacing:-45.190543px;}
.ws8a{word-spacing:-45.118812px;}
.ws87{word-spacing:-45.047081px;}
.ws7c{word-spacing:-44.975350px;}
.ws50{word-spacing:-44.831887px;}
.ws78{word-spacing:-44.760156px;}
.ws85{word-spacing:-44.616694px;}
.ws3a{word-spacing:-44.544963px;}
.ws54{word-spacing:-44.401501px;}
.ws95{word-spacing:-44.329770px;}
.ws42{word-spacing:-44.258039px;}
.ws7d{word-spacing:-44.186308px;}
.ws89{word-spacing:-44.114577px;}
.ws24{word-spacing:-44.042846px;}
.ws13{word-spacing:-43.971115px;}
.ws4b{word-spacing:-43.827653px;}
.ws1a{word-spacing:-43.755922px;}
.ws74{word-spacing:-43.612460px;}
.ws3f{word-spacing:-43.468998px;}
.ws61{word-spacing:-43.397267px;}
.ws7b{word-spacing:-43.038612px;}
.ws8f{word-spacing:-42.966881px;}
.ws30{word-spacing:-42.679957px;}
.ws4c{word-spacing:-42.608226px;}
.ws81{word-spacing:-42.464764px;}
.ws88{word-spacing:-42.249571px;}
.ws67{word-spacing:-41.819185px;}
.ws48{word-spacing:-41.747454px;}
.ws86{word-spacing:-41.675723px;}
.ws2c{word-spacing:-41.603992px;}
.ws62{word-spacing:-41.532261px;}
.ws6f{word-spacing:-40.886681px;}
.wsa1{word-spacing:-40.743219px;}
.ws9a{word-spacing:-40.528026px;}
.ws73{word-spacing:-40.348692px;}
.ws72{word-spacing:-40.229140px;}
.ws5c{word-spacing:-40.169364px;}
.ws5d{word-spacing:-40.049813px;}
.ws71{word-spacing:-39.930261px;}
.ws52{word-spacing:-39.870485px;}
.ws53{word-spacing:-39.750934px;}
.ws92{word-spacing:-39.595523px;}
.ws93{word-spacing:-39.380330px;}
.ws19{word-spacing:-38.304365px;}
.ws46{word-spacing:-37.658786px;}
.ws64{word-spacing:-36.881693px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws10{word-spacing:0.000000px;}
.ws66{word-spacing:465.175587px;}
.ws65{word-spacing:495.063507px;}
.ws70{word-spacing:560.278948px;}
._e{margin-left:-6.742716px;}
._5{margin-left:-5.422864px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._6{width:1.477658px;}
._4{width:2.668393px;}
._a{width:4.447321px;}
._9{width:6.372963px;}
._19{width:9.245352px;}
._c{width:20.213804px;}
._2{width:22.523531px;}
._8{width:24.484178px;}
._d{width:26.181819px;}
._7{width:27.305607px;}
._f{width:28.749796px;}
._18{width:33.168423px;}
._b{width:35.864806px;}
._17{width:231.255987px;}
._11{width:368.936484px;}
._16{width:629.320044px;}
._15{width:699.453842px;}
._10{width:1517.648802px;}
._14{width:1776.836844px;}
._12{width:1823.282672px;}
._13{width:1895.551662px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs5{font-size:41.843100px;}
.fs0{font-size:47.820660px;}
.fs4{font-size:50.211660px;}
.fs3{font-size:59.775840px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.yfc{bottom:105.936000px;}
.yb5{bottom:105.943500px;}
.y118{bottom:105.957000px;}
.y12d{bottom:105.958500px;}
.y3b{bottom:107.647500px;}
.y153{bottom:110.262000px;}
.y13b{bottom:116.239500px;}
.y7e{bottom:122.592000px;}
.ya2{bottom:123.585000px;}
.yfb{bottom:123.870000px;}
.yb4{bottom:123.876000px;}
.y12c{bottom:123.891000px;}
.y145{bottom:131.184000px;}
.y1e{bottom:131.716500px;}
.yca{bottom:132.678000px;}
.y15f{bottom:133.798500px;}
.y69{bottom:134.173500px;}
.y117{bottom:138.460500px;}
.y51{bottom:139.777500px;}
.y3a{bottom:140.151000px;}
.yfa{bottom:141.802500px;}
.yb3{bottom:141.808500px;}
.y12b{bottom:141.825000px;}
.y152{bottom:142.765500px;}
.y146{bottom:143.139000px;}
.yb2{bottom:147.232500px;}
.y12a{bottom:147.249000px;}
.y13a{bottom:148.743000px;}
.ya1{bottom:150.484500px;}
.y87{bottom:155.094000px;}
.yf9{bottom:159.735000px;}
.y144{bottom:163.687500px;}
.y7d{bottom:164.061000px;}
.y1d{bottom:164.218500px;}
.yf8{bottom:165.159000px;}
.yc9{bottom:165.181500px;}
.y15e{bottom:166.302000px;}
.y68{bottom:166.675500px;}
.y116{bottom:170.962500px;}
.y39{bottom:172.653000px;}
.y151{bottom:175.269000px;}
.yd2{bottom:176.424000px;}
.ya0{bottom:177.384000px;}
.yb0{bottom:178.630500px;}
.y50{bottom:181.246500px;}
.yb1{bottom:185.140500px;}
.y129{bottom:186.103500px;}
.y86{bottom:187.597500px;}
.y143{bottom:196.191000px;}
.y7c{bottom:196.564500px;}
.y67{bottom:199.179000px;}
.y115{bottom:203.466000px;}
.y9f{bottom:204.283500px;}
.y38{bottom:205.156500px;}
.y1c{bottom:205.689000px;}
.yc8{bottom:206.650500px;}
.y150{bottom:207.772500px;}
.yf7{bottom:209.734500px;}
.yaf{bottom:211.134000px;}
.yd1{bottom:212.286000px;}
.y139{bottom:213.750000px;}
.y128{bottom:218.605500px;}
.y85{bottom:220.101000px;}
.y4f{bottom:222.715500px;}
.y7b{bottom:229.066500px;}
.y9e{bottom:231.181500px;}
.y66{bottom:231.682500px;}
.y114{bottom:235.969500px;}
.yf6{bottom:236.634000px;}
.y37{bottom:237.660000px;}
.yc7{bottom:239.154000px;}
.y15d{bottom:240.274500px;}
.yae{bottom:245.131500px;}
.y138{bottom:246.252000px;}
.y1b{bottom:247.158000px;}
.y14f{bottom:249.241500px;}
.y127{bottom:251.109000px;}
.y84{bottom:252.603000px;}
.y4e{bottom:255.219000px;}
.y9d{bottom:258.081000px;}
.y7a{bottom:261.570000px;}
.yf5{bottom:263.533500px;}
.y113{bottom:268.473000px;}
.ye8{bottom:270.163500px;}
.yc6{bottom:271.657500px;}
.y15c{bottom:272.778000px;}
.y65{bottom:273.151500px;}
.y142{bottom:276.141000px;}
.y137{bottom:278.755500px;}
.y36{bottom:279.129000px;}
.y14e{bottom:281.745000px;}
.y126{bottom:283.612500px;}
.y9c{bottom:284.980500px;}
.y83{bottom:285.106500px;}
.y1a{bottom:288.627000px;}
.yad{bottom:289.590000px;}
.yf4{bottom:290.431500px;}
.y4d{bottom:290.710500px;}
.y79{bottom:294.073500px;}
.y112{bottom:300.975000px;}
.ye7{bottom:302.665500px;}
.yc5{bottom:304.161000px;}
.y15b{bottom:305.281500px;}
.y64{bottom:305.655000px;}
.y141{bottom:308.643000px;}
.y35{bottom:311.632500px;}
.y9b{bottom:311.880000px;}
.y125{bottom:316.116000px;}
.yf3{bottom:317.331000px;}
.y11a{bottom:317.610000px;}
.y136{bottom:320.224500px;}
.y19{bottom:321.130500px;}
.yac{bottom:322.093500px;}
.y14d{bottom:323.214000px;}
.y4c{bottom:326.202000px;}
.y78{bottom:326.577000px;}
.y111{bottom:333.478500px;}
.ye6{bottom:335.169000px;}
.yc4{bottom:336.663000px;}
.y63{bottom:338.158500px;}
.y9a{bottom:338.778000px;}
.y140{bottom:341.146500px;}
.y34{bottom:344.136000px;}
.yf2{bottom:344.230500px;}
.y15a{bottom:346.750500px;}
.y119{bottom:350.113500px;}
.y135{bottom:352.728000px;}
.y18{bottom:353.634000px;}
.yab{bottom:354.595500px;}
.y14c{bottom:355.717500px;}
.y124{bottom:357.585000px;}
.y4b{bottom:358.705500px;}
.y77{bottom:359.079000px;}
.y99{bottom:365.677500px;}
.y110{bottom:365.982000px;}
.yc3{bottom:369.166500px;}
.y62{bottom:370.660500px;}
.yf1{bottom:371.130000px;}
.y33{bottom:376.638000px;}
.y159{bottom:379.254000px;}
.y13f{bottom:382.615500px;}
.y134{bottom:385.231500px;}
.y17{bottom:386.136000px;}
.yaa{bottom:387.099000px;}
.y14b{bottom:388.219500px;}
.y123{bottom:390.088500px;}
.y76{bottom:391.582500px;}
.y4a{bottom:394.197000px;}
.yf0{bottom:398.028000px;}
.y10f{bottom:398.485500px;}
.y98{bottom:401.589000px;}
.yc2{bottom:401.670000px;}
.y61{bottom:403.164000px;}
.y158{bottom:411.757500px;}
.ye5{bottom:413.625000px;}
.y13e{bottom:415.119000px;}
.y133{bottom:417.735000px;}
.y32{bottom:418.108500px;}
.y16{bottom:418.639500px;}
.ya9{bottom:419.602500px;}
.y14a{bottom:420.723000px;}
.y122{bottom:422.592000px;}
.y75{bottom:424.086000px;}
.yef{bottom:424.927500px;}
.y97{bottom:428.488500px;}
.y49{bottom:429.690000px;}
.yc1{bottom:434.173500px;}
.y60{bottom:435.667500px;}
.y10e{bottom:439.954500px;}
.ye4{bottom:446.128500px;}
.y13d{bottom:447.622500px;}
.y132{bottom:450.237000px;}
.y31{bottom:450.610500px;}
.y15{bottom:451.143000px;}
.ya8{bottom:452.106000px;}
.y157{bottom:453.226500px;}
.y121{bottom:455.094000px;}
.y96{bottom:456.240000px;}
.y74{bottom:456.589500px;}
.yee{bottom:460.839000px;}
.y48{bottom:462.192000px;}
.yc0{bottom:466.675500px;}
.y5f{bottom:468.171000px;}
.y10d{bottom:472.458000px;}
.ye3{bottom:478.630500px;}
.y13c{bottom:480.126000px;}
.y131{bottom:482.740500px;}
.y30{bottom:483.114000px;}
.y14{bottom:483.646500px;}
.ya7{bottom:484.608000px;}
.y156{bottom:485.730000px;}
.y120{bottom:487.597500px;}
.y73{bottom:489.091500px;}
.y95{bottom:492.102000px;}
.y149{bottom:494.695500px;}
.yed{bottom:496.885500px;}
.y47{bottom:497.685000px;}
.ybf{bottom:499.179000px;}
.y5e{bottom:500.673000px;}
.y10c{bottom:504.960000px;}
.ye2{bottom:511.134000px;}
.y130{bottom:515.244000px;}
.y2f{bottom:515.617500px;}
.y13{bottom:516.148500px;}
.ya6{bottom:518.605500px;}
.y11f{bottom:520.101000px;}
.y72{bottom:521.595000px;}
.y148{bottom:527.199000px;}
.y94{bottom:527.964000px;}
.ybe{bottom:531.682500px;}
.yec{bottom:532.747500px;}
.y5d{bottom:533.176500px;}
.y10b{bottom:537.463500px;}
.y46{bottom:539.154000px;}
.ye1{bottom:543.637500px;}
.y2e{bottom:548.121000px;}
.y12{bottom:548.652000px;}
.y12f{bottom:549.241500px;}
.y11e{bottom:552.603000px;}
.y71{bottom:554.098500px;}
.y155{bottom:559.702500px;}
.y82{bottom:563.064000px;}
.ybd{bottom:564.186000px;}
.y5c{bottom:565.680000px;}
.yeb{bottom:568.608000px;}
.y93{bottom:568.668000px;}
.y10a{bottom:569.967000px;}
.y45{bottom:571.657500px;}
.y2d{bottom:580.623000px;}
.y11{bottom:581.155500px;}
.ye0{bottom:585.106500px;}
.y70{bottom:586.600500px;}
.y81{bottom:595.567500px;}
.y5b{bottom:601.171500px;}
.y109{bottom:602.470500px;}
.y44{bottom:604.161000px;}
.ybc{bottom:605.655000px;}
.yea{bottom:610.138500px;}
.y2c{bottom:613.126500px;}
.y10{bottom:613.659000px;}
.ydf{bottom:617.610000px;}
.y6f{bottom:619.104000px;}
.y80{bottom:628.071000px;}
.y147{bottom:633.675000px;}
.y108{bottom:634.972500px;}
.y43{bottom:636.663000px;}
.ybb{bottom:638.158500px;}
.y92{bottom:642.640500px;}
.y2b{bottom:645.630000px;}
.yde{bottom:650.113500px;}
.y6e{bottom:651.607500px;}
.yf{bottom:655.128000px;}
.y7f{bottom:660.574500px;}
.y154{bottom:666.178500px;}
.y107{bottom:667.476000px;}
.y42{bottom:669.166500px;}
.yba{bottom:670.660500px;}
.y91{bottom:675.144000px;}
.y2a{bottom:678.133500px;}
.ydd{bottom:682.615500px;}
.y12e{bottom:684.111000px;}
.y11d{bottom:691.582500px;}
.y6d{bottom:693.076500px;}
.ye{bottom:696.597000px;}
.yb9{bottom:704.658000px;}
.y90{bottom:707.647500px;}
.y106{bottom:708.946500px;}
.y29{bottom:710.635500px;}
.ydc{bottom:715.119000px;}
.y11c{bottom:724.086000px;}
.yd{bottom:724.165500px;}
.y6c{bottom:725.580000px;}
.ya5{bottom:734.547000px;}
.y8f{bottom:740.151000px;}
.y105{bottom:741.448500px;}
.y5a{bottom:743.139000px;}
.y28{bottom:746.128500px;}
.yb8{bottom:749.116500px;}
.yc{bottom:756.555000px;}
.ydb{bottom:756.589500px;}
.y6b{bottom:758.083500px;}
.ya4{bottom:767.049000px;}
.y8e{bottom:772.653000px;}
.y104{bottom:773.952000px;}
.y41{bottom:781.620000px;}
.yd0{bottom:783.283500px;}
.y59{bottom:784.608000px;}
.yda{bottom:789.091500px;}
.y27{bottom:790.587000px;}
.yb{bottom:792.244500px;}
.ya3{bottom:799.552500px;}
.y103{bottom:806.455500px;}
.ycf{bottom:810.181500px;}
.y40{bottom:814.123500px;}
.y58{bottom:817.111500px;}
.ya{bottom:819.813000px;}
.yd9{bottom:821.595000px;}
.y6a{bottom:823.089000px;}
.y26{bottom:832.056000px;}
.yce{bottom:837.081000px;}
.y102{bottom:840.453000px;}
.y8d{bottom:846.625500px;}
.y57{bottom:849.615000px;}
.yb7{bottom:852.603000px;}
.ye9{bottom:853.135500px;}
.yd8{bottom:854.098500px;}
.y3f{bottom:855.592500px;}
.y9{bottom:855.699000px;}
.y25{bottom:864.559500px;}
.ycd{bottom:872.992500px;}
.y101{bottom:877.812000px;}
.y8c{bottom:879.129000px;}
.y56{bottom:882.118500px;}
.yb6{bottom:885.106500px;}
.y11b{bottom:886.600500px;}
.y3e{bottom:888.096000px;}
.y8{bottom:891.586500px;}
.yd7{bottom:895.567500px;}
.y24{bottom:897.061500px;}
.ycc{bottom:909.039000px;}
.y100{bottom:910.315500px;}
.y8b{bottom:911.632500px;}
.y55{bottom:914.620500px;}
.y3d{bottom:920.598000px;}
.yd6{bottom:928.071000px;}
.y7{bottom:929.565000px;}
.y8a{bottom:944.136000px;}
.yff{bottom:944.313000px;}
.ycb{bottom:944.901000px;}
.y3c{bottom:953.101500px;}
.y54{bottom:956.091000px;}
.yd5{bottom:960.574500px;}
.y23{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y89{bottom:985.605000px;}
.y53{bottom:988.593000px;}
.yd4{bottom:993.076500px;}
.y22{bottom:994.572000px;}
.yfe{bottom:1016.311500px;}
.y88{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y52{bottom:1024.086000px;}
.yd3{bottom:1025.580000px;}
.y21{bottom:1027.074000px;}
.yfd{bottom:1052.223000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h7{height:27.867505px;}
.h1{height:35.865495px;}
.h6{height:37.658745px;}
.h8{height:42.082191px;}
.h5{height:44.831880px;}
.h4{height:50.498638px;}
.h3{height:53.798265px;}
.h2{height:60.598349px;}
.h9{height:63.698745px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:103.806000px;}
.x11{left:105.241500px;}
.xf{left:106.299000px;}
.x4{left:110.107500px;}
.x18{left:114.454500px;}
.x19{left:121.243500px;}
.x12{left:126.546000px;}
.x14{left:128.500500px;}
.x6{left:136.135500px;}
.x13{left:151.131000px;}
.x1e{left:156.910500px;}
.x1d{left:159.133500px;}
.x1c{left:160.299000px;}
.x1b{left:340.828500px;}
.x5{left:357.891000px;}
.x7{left:407.902500px;}
.xe{left:437.515500px;}
.xd{left:515.344500px;}
.xa{left:516.652500px;}
.x1a{left:575.356500px;}
.x9{left:605.545500px;}
.x3{left:616.269000px;}
.x8{left:618.636000px;}
.x2{left:648.775500px;}
.xb{left:652.834500px;}
.xc{left:663.684000px;}
.x1{left:692.794500px;}
.x16{left:732.501000px;}
.x17{left:740.170500px;}
.x10{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.146667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000972pt;}
.ls6{letter-spacing:3.912491pt;}
.ls9{letter-spacing:4.082213pt;}
.ls4{letter-spacing:20.540086pt;}
.ls5{letter-spacing:20.581201pt;}
.ls7{letter-spacing:20.604733pt;}
.ls8{letter-spacing:20.785033pt;}
.lsa{letter-spacing:21.301931pt;}
.ls3{letter-spacing:22.066184pt;}
.ls2{letter-spacing:24.358763pt;}
.ws18{word-spacing:-63.760907pt;}
.ws5{word-spacing:-48.458289pt;}
.ws59{word-spacing:-48.139485pt;}
.ws3e{word-spacing:-48.075724pt;}
.ws77{word-spacing:-47.884441pt;}
.ws9f{word-spacing:-47.820680pt;}
.ws3{word-spacing:-47.820667pt;}
.ws33{word-spacing:-47.756919pt;}
.ws2d{word-spacing:-47.693158pt;}
.ws91{word-spacing:-47.565636pt;}
.ws6b{word-spacing:-47.246832pt;}
.ws5b{word-spacing:-47.183071pt;}
.ws20{word-spacing:-47.055549pt;}
.ws90{word-spacing:-46.800505pt;}
.ws3d{word-spacing:-46.736745pt;}
.ws35{word-spacing:-46.672984pt;}
.wsf{word-spacing:-46.609223pt;}
.ws8c{word-spacing:-46.481701pt;}
.ws3b{word-spacing:-46.354179pt;}
.ws55{word-spacing:-46.290418pt;}
.ws44{word-spacing:-46.162896pt;}
.ws4a{word-spacing:-46.099136pt;}
.ws68{word-spacing:-46.035375pt;}
.ws5a{word-spacing:-45.907853pt;}
.ws43{word-spacing:-45.780331pt;}
.ws1e{word-spacing:-45.652809pt;}
.ws79{word-spacing:-45.589048pt;}
.ws60{word-spacing:-45.525287pt;}
.ws57{word-spacing:-45.461526pt;}
.ws1b{word-spacing:-45.397766pt;}
.ws6c{word-spacing:-45.334005pt;}
.ws82{word-spacing:-45.270244pt;}
.ws80{word-spacing:-45.206483pt;}
.ws8b{word-spacing:-45.142722pt;}
.ws4f{word-spacing:-45.078961pt;}
.ws56{word-spacing:-45.015200pt;}
.ws45{word-spacing:-44.887678pt;}
.ws34{word-spacing:-44.823917pt;}
.ws9c{word-spacing:-44.696396pt;}
.ws4d{word-spacing:-44.568874pt;}
.ws8d{word-spacing:-44.505113pt;}
.ws3c{word-spacing:-44.441352pt;}
.ws7e{word-spacing:-44.377591pt;}
.ws21{word-spacing:-44.313830pt;}
.ws5f{word-spacing:-44.186308pt;}
.ws75{word-spacing:-44.122547pt;}
.ws2e{word-spacing:-44.058787pt;}
.ws26{word-spacing:-43.931265pt;}
.ws76{word-spacing:-43.867504pt;}
.ws5e{word-spacing:-43.803743pt;}
.ws6a{word-spacing:-43.739982pt;}
.ws14{word-spacing:-43.612460pt;}
.ws8{word-spacing:-43.548699pt;}
.ws63{word-spacing:-43.484938pt;}
.ws23{word-spacing:-43.421177pt;}
.ws39{word-spacing:-43.357417pt;}
.ws2b{word-spacing:-43.293656pt;}
.ws98{word-spacing:-43.234899pt;}
.ws6{word-spacing:-43.229895pt;}
.ws22{word-spacing:-43.166134pt;}
.ws9{word-spacing:-43.102373pt;}
.ws15{word-spacing:-43.038612pt;}
.ws97{word-spacing:-42.979694pt;}
.ws4{word-spacing:-42.974851pt;}
.ws9b{word-spacing:-42.973306pt;}
.wse{word-spacing:-42.972178pt;}
.ws17{word-spacing:-42.971599pt;}
.ws96{word-spacing:-42.962094pt;}
.wsd{word-spacing:-42.911090pt;}
.ws9d{word-spacing:-42.898903pt;}
.ws32{word-spacing:-42.847329pt;}
.ws9e{word-spacing:-42.844660pt;}
.ws1d{word-spacing:-42.783568pt;}
.ws25{word-spacing:-42.719807pt;}
.wsa{word-spacing:-42.656047pt;}
.ws28{word-spacing:-42.649512pt;}
.ws29{word-spacing:-42.592286pt;}
.ws11{word-spacing:-42.528525pt;}
.ws27{word-spacing:-42.507253pt;}
.ws7a{word-spacing:-42.464764pt;}
.ws99{word-spacing:-42.439804pt;}
.ws16{word-spacing:-42.401003pt;}
.ws47{word-spacing:-42.337242pt;}
.ws7{word-spacing:-42.273481pt;}
.ws12{word-spacing:-42.209720pt;}
.ws2f{word-spacing:-42.082198pt;}
.ws36{word-spacing:-42.018437pt;}
.ws6d{word-spacing:-41.954677pt;}
.ws7f{word-spacing:-41.890916pt;}
.ws94{word-spacing:-41.763394pt;}
.ws51{word-spacing:-41.699633pt;}
.ws4e{word-spacing:-41.635872pt;}
.ws58{word-spacing:-41.572111pt;}
.ws69{word-spacing:-41.508350pt;}
.wsc{word-spacing:-41.444589pt;}
.ws1c{word-spacing:-41.380828pt;}
.wsb{word-spacing:-41.317068pt;}
.ws41{word-spacing:-41.253307pt;}
.ws37{word-spacing:-41.189546pt;}
.ws2a{word-spacing:-41.062024pt;}
.ws84{word-spacing:-40.998263pt;}
.wsa0{word-spacing:-40.934502pt;}
.ws1f{word-spacing:-40.870741pt;}
.ws83{word-spacing:-40.743219pt;}
.ws49{word-spacing:-40.551937pt;}
.ws8e{word-spacing:-40.488176pt;}
.ws38{word-spacing:-40.424415pt;}
.ws31{word-spacing:-40.360654pt;}
.ws6e{word-spacing:-40.233132pt;}
.ws40{word-spacing:-40.169371pt;}
.ws8a{word-spacing:-40.105610pt;}
.ws87{word-spacing:-40.041849pt;}
.ws7c{word-spacing:-39.978088pt;}
.ws50{word-spacing:-39.850567pt;}
.ws78{word-spacing:-39.786806pt;}
.ws85{word-spacing:-39.659284pt;}
.ws3a{word-spacing:-39.595523pt;}
.ws54{word-spacing:-39.468001pt;}
.ws95{word-spacing:-39.404240pt;}
.ws42{word-spacing:-39.340479pt;}
.ws7d{word-spacing:-39.276719pt;}
.ws89{word-spacing:-39.212958pt;}
.ws24{word-spacing:-39.149197pt;}
.ws13{word-spacing:-39.085436pt;}
.ws4b{word-spacing:-38.957914pt;}
.ws1a{word-spacing:-38.894153pt;}
.ws74{word-spacing:-38.766631pt;}
.ws3f{word-spacing:-38.639109pt;}
.ws61{word-spacing:-38.575349pt;}
.ws7b{word-spacing:-38.256544pt;}
.ws8f{word-spacing:-38.192783pt;}
.ws30{word-spacing:-37.937739pt;}
.ws4c{word-spacing:-37.873979pt;}
.ws81{word-spacing:-37.746457pt;}
.ws88{word-spacing:-37.555174pt;}
.ws67{word-spacing:-37.172609pt;}
.ws48{word-spacing:-37.108848pt;}
.ws86{word-spacing:-37.045087pt;}
.ws2c{word-spacing:-36.981326pt;}
.ws62{word-spacing:-36.917565pt;}
.ws6f{word-spacing:-36.343717pt;}
.wsa1{word-spacing:-36.216195pt;}
.ws9a{word-spacing:-36.024912pt;}
.ws73{word-spacing:-35.865504pt;}
.ws72{word-spacing:-35.759236pt;}
.ws5c{word-spacing:-35.706102pt;}
.ws5d{word-spacing:-35.599834pt;}
.ws71{word-spacing:-35.493565pt;}
.ws52{word-spacing:-35.440431pt;}
.ws53{word-spacing:-35.334163pt;}
.ws92{word-spacing:-35.196020pt;}
.ws93{word-spacing:-35.004738pt;}
.ws19{word-spacing:-34.048324pt;}
.ws46{word-spacing:-33.474476pt;}
.ws64{word-spacing:-32.783727pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws10{word-spacing:0.000000pt;}
.ws66{word-spacing:413.489411pt;}
.ws65{word-spacing:440.056451pt;}
.ws70{word-spacing:498.025732pt;}
._e{margin-left:-5.993525pt;}
._5{margin-left:-4.820323pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._6{width:1.313473pt;}
._4{width:2.371905pt;}
._a{width:3.953175pt;}
._9{width:5.664856pt;}
._19{width:8.218091pt;}
._c{width:17.967826pt;}
._2{width:20.020916pt;}
._8{width:21.763714pt;}
._d{width:23.272728pt;}
._7{width:24.271651pt;}
._f{width:25.555374pt;}
._18{width:29.483043pt;}
._b{width:31.879828pt;}
._17{width:205.560877pt;}
._11{width:327.943541pt;}
._16{width:559.395594pt;}
._15{width:621.736749pt;}
._10{width:1349.021157pt;}
._14{width:1579.410528pt;}
._12{width:1620.695708pt;}
._13{width:1684.934811pt;}
.fs5{font-size:37.193867pt;}
.fs0{font-size:42.507253pt;}
.fs4{font-size:44.632587pt;}
.fs3{font-size:53.134080pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.yfc{bottom:94.165333pt;}
.yb5{bottom:94.172000pt;}
.y118{bottom:94.184000pt;}
.y12d{bottom:94.185333pt;}
.y3b{bottom:95.686667pt;}
.y153{bottom:98.010667pt;}
.y13b{bottom:103.324000pt;}
.y7e{bottom:108.970667pt;}
.ya2{bottom:109.853333pt;}
.yfb{bottom:110.106667pt;}
.yb4{bottom:110.112000pt;}
.y12c{bottom:110.125333pt;}
.y145{bottom:116.608000pt;}
.y1e{bottom:117.081333pt;}
.yca{bottom:117.936000pt;}
.y15f{bottom:118.932000pt;}
.y69{bottom:119.265333pt;}
.y117{bottom:123.076000pt;}
.y51{bottom:124.246667pt;}
.y3a{bottom:124.578667pt;}
.yfa{bottom:126.046667pt;}
.yb3{bottom:126.052000pt;}
.y12b{bottom:126.066667pt;}
.y152{bottom:126.902667pt;}
.y146{bottom:127.234667pt;}
.yb2{bottom:130.873333pt;}
.y12a{bottom:130.888000pt;}
.y13a{bottom:132.216000pt;}
.ya1{bottom:133.764000pt;}
.y87{bottom:137.861333pt;}
.yf9{bottom:141.986667pt;}
.y144{bottom:145.500000pt;}
.y7d{bottom:145.832000pt;}
.y1d{bottom:145.972000pt;}
.yf8{bottom:146.808000pt;}
.yc9{bottom:146.828000pt;}
.y15e{bottom:147.824000pt;}
.y68{bottom:148.156000pt;}
.y116{bottom:151.966667pt;}
.y39{bottom:153.469333pt;}
.y151{bottom:155.794667pt;}
.yd2{bottom:156.821333pt;}
.ya0{bottom:157.674667pt;}
.yb0{bottom:158.782667pt;}
.y50{bottom:161.108000pt;}
.yb1{bottom:164.569333pt;}
.y129{bottom:165.425333pt;}
.y86{bottom:166.753333pt;}
.y143{bottom:174.392000pt;}
.y7c{bottom:174.724000pt;}
.y67{bottom:177.048000pt;}
.y115{bottom:180.858667pt;}
.y9f{bottom:181.585333pt;}
.y38{bottom:182.361333pt;}
.y1c{bottom:182.834667pt;}
.yc8{bottom:183.689333pt;}
.y150{bottom:184.686667pt;}
.yf7{bottom:186.430667pt;}
.yaf{bottom:187.674667pt;}
.yd1{bottom:188.698667pt;}
.y139{bottom:190.000000pt;}
.y128{bottom:194.316000pt;}
.y85{bottom:195.645333pt;}
.y4f{bottom:197.969333pt;}
.y7b{bottom:203.614667pt;}
.y9e{bottom:205.494667pt;}
.y66{bottom:205.940000pt;}
.y114{bottom:209.750667pt;}
.yf6{bottom:210.341333pt;}
.y37{bottom:211.253333pt;}
.yc7{bottom:212.581333pt;}
.y15d{bottom:213.577333pt;}
.yae{bottom:217.894667pt;}
.y138{bottom:218.890667pt;}
.y1b{bottom:219.696000pt;}
.y14f{bottom:221.548000pt;}
.y127{bottom:223.208000pt;}
.y84{bottom:224.536000pt;}
.y4e{bottom:226.861333pt;}
.y9d{bottom:229.405333pt;}
.y7a{bottom:232.506667pt;}
.yf5{bottom:234.252000pt;}
.y113{bottom:238.642667pt;}
.ye8{bottom:240.145333pt;}
.yc6{bottom:241.473333pt;}
.y15c{bottom:242.469333pt;}
.y65{bottom:242.801333pt;}
.y142{bottom:245.458667pt;}
.y137{bottom:247.782667pt;}
.y36{bottom:248.114667pt;}
.y14e{bottom:250.440000pt;}
.y126{bottom:252.100000pt;}
.y9c{bottom:253.316000pt;}
.y83{bottom:253.428000pt;}
.y1a{bottom:256.557333pt;}
.yad{bottom:257.413333pt;}
.yf4{bottom:258.161333pt;}
.y4d{bottom:258.409333pt;}
.y79{bottom:261.398667pt;}
.y112{bottom:267.533333pt;}
.ye7{bottom:269.036000pt;}
.yc5{bottom:270.365333pt;}
.y15b{bottom:271.361333pt;}
.y64{bottom:271.693333pt;}
.y141{bottom:274.349333pt;}
.y35{bottom:277.006667pt;}
.y9b{bottom:277.226667pt;}
.y125{bottom:280.992000pt;}
.yf3{bottom:282.072000pt;}
.y11a{bottom:282.320000pt;}
.y136{bottom:284.644000pt;}
.y19{bottom:285.449333pt;}
.yac{bottom:286.305333pt;}
.y14d{bottom:287.301333pt;}
.y4c{bottom:289.957333pt;}
.y78{bottom:290.290667pt;}
.y111{bottom:296.425333pt;}
.ye6{bottom:297.928000pt;}
.yc4{bottom:299.256000pt;}
.y63{bottom:300.585333pt;}
.y9a{bottom:301.136000pt;}
.y140{bottom:303.241333pt;}
.y34{bottom:305.898667pt;}
.yf2{bottom:305.982667pt;}
.y15a{bottom:308.222667pt;}
.y119{bottom:311.212000pt;}
.y135{bottom:313.536000pt;}
.y18{bottom:314.341333pt;}
.yab{bottom:315.196000pt;}
.y14c{bottom:316.193333pt;}
.y124{bottom:317.853333pt;}
.y4b{bottom:318.849333pt;}
.y77{bottom:319.181333pt;}
.y99{bottom:325.046667pt;}
.y110{bottom:325.317333pt;}
.yc3{bottom:328.148000pt;}
.y62{bottom:329.476000pt;}
.yf1{bottom:329.893333pt;}
.y33{bottom:334.789333pt;}
.y159{bottom:337.114667pt;}
.y13f{bottom:340.102667pt;}
.y134{bottom:342.428000pt;}
.y17{bottom:343.232000pt;}
.yaa{bottom:344.088000pt;}
.y14b{bottom:345.084000pt;}
.y123{bottom:346.745333pt;}
.y76{bottom:348.073333pt;}
.y4a{bottom:350.397333pt;}
.yf0{bottom:353.802667pt;}
.y10f{bottom:354.209333pt;}
.y98{bottom:356.968000pt;}
.yc2{bottom:357.040000pt;}
.y61{bottom:358.368000pt;}
.y158{bottom:366.006667pt;}
.ye5{bottom:367.666667pt;}
.y13e{bottom:368.994667pt;}
.y133{bottom:371.320000pt;}
.y32{bottom:371.652000pt;}
.y16{bottom:372.124000pt;}
.ya9{bottom:372.980000pt;}
.y14a{bottom:373.976000pt;}
.y122{bottom:375.637333pt;}
.y75{bottom:376.965333pt;}
.yef{bottom:377.713333pt;}
.y97{bottom:380.878667pt;}
.y49{bottom:381.946667pt;}
.yc1{bottom:385.932000pt;}
.y60{bottom:387.260000pt;}
.y10e{bottom:391.070667pt;}
.ye4{bottom:396.558667pt;}
.y13d{bottom:397.886667pt;}
.y132{bottom:400.210667pt;}
.y31{bottom:400.542667pt;}
.y15{bottom:401.016000pt;}
.ya8{bottom:401.872000pt;}
.y157{bottom:402.868000pt;}
.y121{bottom:404.528000pt;}
.y96{bottom:405.546667pt;}
.y74{bottom:405.857333pt;}
.yee{bottom:409.634667pt;}
.y48{bottom:410.837333pt;}
.yc0{bottom:414.822667pt;}
.y5f{bottom:416.152000pt;}
.y10d{bottom:419.962667pt;}
.ye3{bottom:425.449333pt;}
.y13c{bottom:426.778667pt;}
.y131{bottom:429.102667pt;}
.y30{bottom:429.434667pt;}
.y14{bottom:429.908000pt;}
.ya7{bottom:430.762667pt;}
.y156{bottom:431.760000pt;}
.y120{bottom:433.420000pt;}
.y73{bottom:434.748000pt;}
.y95{bottom:437.424000pt;}
.y149{bottom:439.729333pt;}
.yed{bottom:441.676000pt;}
.y47{bottom:442.386667pt;}
.ybf{bottom:443.714667pt;}
.y5e{bottom:445.042667pt;}
.y10c{bottom:448.853333pt;}
.ye2{bottom:454.341333pt;}
.y130{bottom:457.994667pt;}
.y2f{bottom:458.326667pt;}
.y13{bottom:458.798667pt;}
.ya6{bottom:460.982667pt;}
.y11f{bottom:462.312000pt;}
.y72{bottom:463.640000pt;}
.y148{bottom:468.621333pt;}
.y94{bottom:469.301333pt;}
.ybe{bottom:472.606667pt;}
.yec{bottom:473.553333pt;}
.y5d{bottom:473.934667pt;}
.y10b{bottom:477.745333pt;}
.y46{bottom:479.248000pt;}
.ye1{bottom:483.233333pt;}
.y2e{bottom:487.218667pt;}
.y12{bottom:487.690667pt;}
.y12f{bottom:488.214667pt;}
.y11e{bottom:491.202667pt;}
.y71{bottom:492.532000pt;}
.y155{bottom:497.513333pt;}
.y82{bottom:500.501333pt;}
.ybd{bottom:501.498667pt;}
.y5c{bottom:502.826667pt;}
.yeb{bottom:505.429333pt;}
.y93{bottom:505.482667pt;}
.y10a{bottom:506.637333pt;}
.y45{bottom:508.140000pt;}
.y2d{bottom:516.109333pt;}
.y11{bottom:516.582667pt;}
.ye0{bottom:520.094667pt;}
.y70{bottom:521.422667pt;}
.y81{bottom:529.393333pt;}
.y5b{bottom:534.374667pt;}
.y109{bottom:535.529333pt;}
.y44{bottom:537.032000pt;}
.ybc{bottom:538.360000pt;}
.yea{bottom:542.345333pt;}
.y2c{bottom:545.001333pt;}
.y10{bottom:545.474667pt;}
.ydf{bottom:548.986667pt;}
.y6f{bottom:550.314667pt;}
.y80{bottom:558.285333pt;}
.y147{bottom:563.266667pt;}
.y108{bottom:564.420000pt;}
.y43{bottom:565.922667pt;}
.ybb{bottom:567.252000pt;}
.y92{bottom:571.236000pt;}
.y2b{bottom:573.893333pt;}
.yde{bottom:577.878667pt;}
.y6e{bottom:579.206667pt;}
.yf{bottom:582.336000pt;}
.y7f{bottom:587.177333pt;}
.y154{bottom:592.158667pt;}
.y107{bottom:593.312000pt;}
.y42{bottom:594.814667pt;}
.yba{bottom:596.142667pt;}
.y91{bottom:600.128000pt;}
.y2a{bottom:602.785333pt;}
.ydd{bottom:606.769333pt;}
.y12e{bottom:608.098667pt;}
.y11d{bottom:614.740000pt;}
.y6d{bottom:616.068000pt;}
.ye{bottom:619.197333pt;}
.yb9{bottom:626.362667pt;}
.y90{bottom:629.020000pt;}
.y106{bottom:630.174667pt;}
.y29{bottom:631.676000pt;}
.ydc{bottom:635.661333pt;}
.y11c{bottom:643.632000pt;}
.yd{bottom:643.702667pt;}
.y6c{bottom:644.960000pt;}
.ya5{bottom:652.930667pt;}
.y8f{bottom:657.912000pt;}
.y105{bottom:659.065333pt;}
.y5a{bottom:660.568000pt;}
.y28{bottom:663.225333pt;}
.yb8{bottom:665.881333pt;}
.yc{bottom:672.493333pt;}
.ydb{bottom:672.524000pt;}
.y6b{bottom:673.852000pt;}
.ya4{bottom:681.821333pt;}
.y8e{bottom:686.802667pt;}
.y104{bottom:687.957333pt;}
.y41{bottom:694.773333pt;}
.yd0{bottom:696.252000pt;}
.y59{bottom:697.429333pt;}
.yda{bottom:701.414667pt;}
.y27{bottom:702.744000pt;}
.yb{bottom:704.217333pt;}
.ya3{bottom:710.713333pt;}
.y103{bottom:716.849333pt;}
.ycf{bottom:720.161333pt;}
.y40{bottom:723.665333pt;}
.y58{bottom:726.321333pt;}
.ya{bottom:728.722667pt;}
.yd9{bottom:730.306667pt;}
.y6a{bottom:731.634667pt;}
.y26{bottom:739.605333pt;}
.yce{bottom:744.072000pt;}
.y102{bottom:747.069333pt;}
.y8d{bottom:752.556000pt;}
.y57{bottom:755.213333pt;}
.yb7{bottom:757.869333pt;}
.ye9{bottom:758.342667pt;}
.yd8{bottom:759.198667pt;}
.y3f{bottom:760.526667pt;}
.y9{bottom:760.621333pt;}
.y25{bottom:768.497333pt;}
.ycd{bottom:775.993333pt;}
.y101{bottom:780.277333pt;}
.y8c{bottom:781.448000pt;}
.y56{bottom:784.105333pt;}
.yb6{bottom:786.761333pt;}
.y11b{bottom:788.089333pt;}
.y3e{bottom:789.418667pt;}
.y8{bottom:792.521333pt;}
.yd7{bottom:796.060000pt;}
.y24{bottom:797.388000pt;}
.ycc{bottom:808.034667pt;}
.y100{bottom:809.169333pt;}
.y8b{bottom:810.340000pt;}
.y55{bottom:812.996000pt;}
.y3d{bottom:818.309333pt;}
.yd6{bottom:824.952000pt;}
.y7{bottom:826.280000pt;}
.y8a{bottom:839.232000pt;}
.yff{bottom:839.389333pt;}
.ycb{bottom:839.912000pt;}
.y3c{bottom:847.201333pt;}
.y54{bottom:849.858667pt;}
.yd5{bottom:853.844000pt;}
.y23{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y89{bottom:876.093333pt;}
.y53{bottom:878.749333pt;}
.yd4{bottom:882.734667pt;}
.y22{bottom:884.064000pt;}
.yfe{bottom:903.388000pt;}
.y88{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y52{bottom:910.298667pt;}
.yd3{bottom:911.626667pt;}
.y21{bottom:912.954667pt;}
.yfd{bottom:935.309333pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h7{height:24.771115pt;}
.h1{height:31.880440pt;}
.h6{height:33.474440pt;}
.h8{height:37.406392pt;}
.h5{height:39.850560pt;}
.h4{height:44.887678pt;}
.h3{height:47.820680pt;}
.h2{height:53.865199pt;}
.h9{height:56.621107pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:92.272000pt;}
.x11{left:93.548000pt;}
.xf{left:94.488000pt;}
.x4{left:97.873333pt;}
.x18{left:101.737333pt;}
.x19{left:107.772000pt;}
.x12{left:112.485333pt;}
.x14{left:114.222667pt;}
.x6{left:121.009333pt;}
.x13{left:134.338667pt;}
.x1e{left:139.476000pt;}
.x1d{left:141.452000pt;}
.x1c{left:142.488000pt;}
.x1b{left:302.958667pt;}
.x5{left:318.125333pt;}
.x7{left:362.580000pt;}
.xe{left:388.902667pt;}
.xd{left:458.084000pt;}
.xa{left:459.246667pt;}
.x1a{left:511.428000pt;}
.x9{left:538.262667pt;}
.x3{left:547.794667pt;}
.x8{left:549.898667pt;}
.x2{left:576.689333pt;}
.xb{left:580.297333pt;}
.xc{left:589.941333pt;}
.x1{left:615.817333pt;}
.x16{left:651.112000pt;}
.x17{left:657.929333pt;}
.x10{left:698.080000pt;}
}




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