
    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_bc58a3a73712cebe2a73351c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a37e87b11983e1b195dd8baa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c38476d5e9010f636e217737.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4d9770eeb82180f63f0a1298.woff')format("woff");}.ff4{font-family:ff4;line-height:0.431000;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_44158738854c2fbe9687b0a8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_27289de8467e5e059f231993.woff')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_46134ca5de4b4ff596dfa244.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_d49fd165066cf80745b61e3c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.974000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_96abb82a68bc5002630663af.woff')format("woff");}.ff9{font-family:ff9;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_22f1ff857c9b0f0186ee47f1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1190943beb8681e08068acf2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.964000;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);}
.m3{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);}
.m13{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);}
.m24{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m10{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);}
.mf{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);}
.ma{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);}
.m14{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);}
.m1b{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);}
.m20{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);}
.m16{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);}
.mb{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);}
.m6{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);}
.m11{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);}
.m8{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);}
.m9{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m4{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);}
.me{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);}
.m1f{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);}
.m15{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);}
.m5{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);}
.m17{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);}
.m22{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);}
.m26{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);}
.m19{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m23{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);}
.m1c{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);}
.md{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);}
.m28{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);}
.m21{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);}
.m25{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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls7{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.327273px;}
.ls0{letter-spacing:2.984037px;}
.ls4{letter-spacing:2.987468px;}
.ls3{letter-spacing:2.987674px;}
.lsc{letter-spacing:2.990496px;}
.ls6{letter-spacing:8.966400px;}
.ls5{letter-spacing:13.449600px;}
.ls9{letter-spacing:14.465467px;}
.lse{letter-spacing:15.381831px;}
.ls16{letter-spacing:16.036377px;}
.lsd{letter-spacing:16.101832px;}
.ls10{letter-spacing:16.167286px;}
.lsf{letter-spacing:16.232741px;}
.ls12{letter-spacing:16.298195px;}
.ls8{letter-spacing:16.363650px;}
.lsa{letter-spacing:16.429105px;}
.lsb{letter-spacing:16.560014px;}
.ls13{letter-spacing:16.690923px;}
.ls14{letter-spacing:17.476378px;}
.ls15{letter-spacing:18.850925px;}
.ls11{letter-spacing:19.309107px;}
.ls2{letter-spacing:20.923654px;}
.ls1{letter-spacing:35.865600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-17.932800px;}
.ws35{word-spacing:-16.363650px;}
.ws2c{word-spacing:-13.449600px;}
.ws79{word-spacing:-4.778186px;}
.ws2d{word-spacing:-4.516367px;}
.ws75{word-spacing:-4.450913px;}
.ws55{word-spacing:-4.320004px;}
.ws57{word-spacing:-4.254549px;}
.ws63{word-spacing:-3.992731px;}
.ws18{word-spacing:-3.796367px;}
.ws15{word-spacing:-3.272730px;}
.ws36{word-spacing:-3.076366px;}
.ws37{word-spacing:-3.010912px;}
.ws3f{word-spacing:-2.749093px;}
.ws56{word-spacing:-2.683639px;}
.ws3e{word-spacing:-2.421820px;}
.ws32{word-spacing:-2.290911px;}
.ws71{word-spacing:-2.225456px;}
.ws42{word-spacing:-2.094547px;}
.ws5e{word-spacing:-1.963638px;}
.ws1a{word-spacing:-1.898183px;}
.ws21{word-spacing:-1.832729px;}
.ws6f{word-spacing:-1.636365px;}
.ws70{word-spacing:-1.374547px;}
.ws4{word-spacing:-1.344960px;}
.ws19{word-spacing:-1.309092px;}
.ws64{word-spacing:-1.178183px;}
.ws28{word-spacing:-1.047274px;}
.ws48{word-spacing:-0.981819px;}
.ws41{word-spacing:-0.916364px;}
.ws60{word-spacing:-0.850910px;}
.ws16{word-spacing:-0.785455px;}
.ws26{word-spacing:-0.654546px;}
.ws50{word-spacing:-0.589091px;}
.ws67{word-spacing:-0.523637px;}
.ws3b{word-spacing:-0.458182px;}
.ws3d{word-spacing:-0.392728px;}
.ws22{word-spacing:-0.327273px;}
.ws29{word-spacing:-0.261818px;}
.ws1b{word-spacing:-0.196364px;}
.wsa{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.130909px;}
.ws72{word-spacing:-0.086077px;}
.wsd{word-spacing:-0.065455px;}
.ws54{word-spacing:-0.059776px;}
.ws74{word-spacing:-0.055637px;}
.ws7{word-spacing:-0.053798px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.065455px;}
.wsb{word-spacing:0.107597px;}
.ws17{word-spacing:0.130909px;}
.ws1c{word-spacing:0.196364px;}
.ws6{word-spacing:0.215194px;}
.wsf{word-spacing:0.261818px;}
.ws20{word-spacing:0.327273px;}
.ws2b{word-spacing:0.392728px;}
.ws5{word-spacing:0.484186px;}
.ws7a{word-spacing:0.523637px;}
.ws2a{word-spacing:0.654546px;}
.ws46{word-spacing:0.785455px;}
.wsc{word-spacing:0.806976px;}
.ws6d{word-spacing:0.850910px;}
.ws6b{word-spacing:0.916364px;}
.ws39{word-spacing:0.981819px;}
.ws3a{word-spacing:1.047274px;}
.ws61{word-spacing:1.178183px;}
.ws24{word-spacing:1.243637px;}
.ws4c{word-spacing:1.309092px;}
.ws4d{word-spacing:1.374547px;}
.ws27{word-spacing:1.440001px;}
.ws4b{word-spacing:1.505456px;}
.ws5a{word-spacing:1.570910px;}
.ws31{word-spacing:1.636365px;}
.ws4e{word-spacing:1.701820px;}
.ws30{word-spacing:1.767274px;}
.ws4f{word-spacing:1.832729px;}
.ws62{word-spacing:1.898183px;}
.ws9{word-spacing:1.936742px;}
.ws73{word-spacing:2.029093px;}
.ws40{word-spacing:2.094547px;}
.ws2f{word-spacing:2.160002px;}
.ws47{word-spacing:2.356366px;}
.ws7c{word-spacing:2.552729px;}
.ws34{word-spacing:2.683639px;}
.ws44{word-spacing:2.749093px;}
.ws6e{word-spacing:2.880002px;}
.ws58{word-spacing:2.945457px;}
.ws5c{word-spacing:3.076366px;}
.ws13{word-spacing:3.141821px;}
.ws66{word-spacing:3.207275px;}
.ws1f{word-spacing:3.272730px;}
.ws4a{word-spacing:3.534548px;}
.ws6a{word-spacing:3.796367px;}
.ws10{word-spacing:3.927276px;}
.ws12{word-spacing:3.992731px;}
.ws49{word-spacing:4.123640px;}
.ws8{word-spacing:4.142477px;}
.ws7e{word-spacing:4.254549px;}
.ws5d{word-spacing:4.450913px;}
.ws1e{word-spacing:4.465267px;}
.ws6c{word-spacing:4.516367px;}
.ws1d{word-spacing:4.519066px;}
.ws3c{word-spacing:4.581822px;}
.ws38{word-spacing:4.712731px;}
.ws2e{word-spacing:4.778186px;}
.ws7d{word-spacing:5.170913px;}
.ws5f{word-spacing:5.432732px;}
.ws7b{word-spacing:5.563641px;}
.ws78{word-spacing:6.021823px;}
.ws51{word-spacing:6.218187px;}
.ws76{word-spacing:6.283642px;}
.ws68{word-spacing:6.414551px;}
.ws69{word-spacing:6.480005px;}
.ws11{word-spacing:6.610915px;}
.ws77{word-spacing:6.676369px;}
.ws33{word-spacing:7.134551px;}
.ws5b{word-spacing:10.341827px;}
.ws45{word-spacing:14.884124px;}
.ws53{word-spacing:15.840534px;}
.ws43{word-spacing:17.861069px;}
.ws3{word-spacing:17.932800px;}
.ws23{word-spacing:21.433223px;}
.ws0{word-spacing:25.719808px;}
.ws52{word-spacing:32.467462px;}
.wse{word-spacing:42.952523px;}
.ws59{word-spacing:97.504006px;}
.ws65{word-spacing:162.540550px;}
._1c{margin-left:-8.222201px;}
._1{margin-left:-6.197544px;}
._10{margin-left:-4.843640px;}
._2{margin-left:-3.819686px;}
._3{margin-left:-2.797517px;}
._4{margin-left:-1.075968px;}
._0{width:1.549386px;}
._c{width:3.389299px;}
._19{width:4.577347px;}
._d{width:10.472755px;}
._11{width:12.293780px;}
._18{width:13.352738px;}
._12{width:14.650149px;}
._6{width:15.655334px;}
._5{width:17.538278px;}
._8{width:18.775642px;}
._b{width:20.212031px;}
._a{width:21.403654px;}
._9{width:22.649126px;}
._f{width:23.979703px;}
._1e{width:25.336305px;}
._1f{width:26.661547px;}
._7{width:27.813773px;}
._15{width:29.061842px;}
._20{width:30.848824px;}
._17{width:32.161528px;}
._1d{width:34.284770px;}
._13{width:35.865600px;}
._e{width:43.038600px;}
._21{width:44.234668px;}
._1a{width:65.036544px;}
._14{width:97.554816px;}
._16{width:162.591360px;}
._1b{width:227.627904px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs8{font-size:50.809800px;}
.fs4{font-size:53.798400px;}
.fs9{font-size:55.636800px;}
.fs7{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yb0{bottom:112.324500px;}
.y2f{bottom:112.770000px;}
.y6b{bottom:117.237000px;}
.y61{bottom:117.244500px;}
.y10d{bottom:117.295500px;}
.yf8{bottom:119.542500px;}
.yc5{bottom:125.322000px;}
.y85{bottom:126.901500px;}
.y13b{bottom:129.066000px;}
.y2e{bottom:129.811500px;}
.yaf{bottom:132.648000px;}
.y60{bottom:133.683000px;}
.yf7{bottom:139.866000px;}
.yc4{bottom:145.645500px;}
.y2d{bottom:146.250000px;}
.y84{bottom:147.225000px;}
.y13a{bottom:149.389500px;}
.yae{bottom:152.971500px;}
.yf6{bottom:160.189500px;}
.y2c{bottom:162.688500px;}
.y6a{bottom:165.610500px;}
.yc3{bottom:165.969000px;}
.y83{bottom:167.550000px;}
.y139{bottom:169.713000px;}
.yad{bottom:173.296500px;}
.yf5{bottom:180.514500px;}
.y2b{bottom:185.101500px;}
.y5f{bottom:185.934000px;}
.yc2{bottom:186.292500px;}
.y82{bottom:187.873500px;}
.y138{bottom:190.036500px;}
.y10c{bottom:192.591000px;}
.yac{bottom:193.620000px;}
.y2a{bottom:195.826500px;}
.yf4{bottom:200.838000px;}
.y5e{bottom:206.257500px;}
.yc1{bottom:206.616000px;}
.y81{bottom:208.197000px;}
.y137{bottom:210.361500px;}
.y29{bottom:212.265000px;}
.y10b{bottom:212.914500px;}
.yab{bottom:213.943500px;}
.yf3{bottom:221.161500px;}
.y5d{bottom:226.582500px;}
.yc0{bottom:226.941000px;}
.y80{bottom:228.520500px;}
.y136{bottom:230.685000px;}
.yaa{bottom:234.267000px;}
.yf2{bottom:241.485000px;}
.y5c{bottom:246.906000px;}
.ybf{bottom:247.264500px;}
.y7f{bottom:248.844000px;}
.y10a{bottom:249.460500px;}
.y135{bottom:251.008500px;}
.y28{bottom:253.083000px;}
.yf1{bottom:261.808500px;}
.y5b{bottom:267.229500px;}
.ybe{bottom:267.588000px;}
.y7e{bottom:269.169000px;}
.y134{bottom:271.332000px;}
.y27{bottom:273.406500px;}
.ya9{bottom:281.178000px;}
.yf0{bottom:282.133500px;}
.y5a{bottom:287.553000px;}
.ybd{bottom:287.911500px;}
.y7d{bottom:289.492500px;}
.y133{bottom:291.655500px;}
.y26{bottom:293.730000px;}
.y109{bottom:301.044000px;}
.y59{bottom:307.876500px;}
.ybc{bottom:308.235000px;}
.y7c{bottom:309.816000px;}
.y132{bottom:311.979000px;}
.y25{bottom:314.055000px;}
.y108{bottom:321.367500px;}
.ya8{bottom:327.814500px;}
.y58{bottom:328.201500px;}
.ybb{bottom:328.560000px;}
.y7b{bottom:330.139500px;}
.y131{bottom:332.304000px;}
.y24{bottom:334.378500px;}
.yef{bottom:340.929000px;}
.y107{bottom:341.691000px;}
.ya7{bottom:345.747000px;}
.y57{bottom:348.525000px;}
.y7a{bottom:350.463000px;}
.y130{bottom:352.627500px;}
.y23{bottom:354.702000px;}
.y106{bottom:362.014500px;}
.ya6{bottom:363.679500px;}
.y56{bottom:368.848500px;}
.y79{bottom:370.788000px;}
.y12f{bottom:372.951000px;}
.y22{bottom:375.025500px;}
.yba{bottom:375.495000px;}
.ya5{bottom:381.612000px;}
.y105{bottom:382.339500px;}
.yee{bottom:387.588000px;}
.y55{bottom:389.172000px;}
.y12e{bottom:393.274500px;}
.y21{bottom:395.349000px;}
.ya4{bottom:399.544500px;}
.y104{bottom:402.663000px;}
.yed{bottom:405.520500px;}
.y54{bottom:409.495500px;}
.y12d{bottom:413.598000px;}
.y20{bottom:415.674000px;}
.ya3{bottom:417.477000px;}
.y78{bottom:417.723000px;}
.y103{bottom:422.986500px;}
.yec{bottom:423.454500px;}
.y53{bottom:429.820500px;}
.y12c{bottom:433.923000px;}
.ya2{bottom:435.411000px;}
.y1f{bottom:435.997500px;}
.yeb{bottom:441.387000px;}
.y102{bottom:443.310000px;}
.y52{bottom:450.144000px;}
.ya1{bottom:453.343500px;}
.y12b{bottom:454.246500px;}
.y1e{bottom:456.321000px;}
.yea{bottom:459.319500px;}
.y101{bottom:463.633500px;}
.y51{bottom:470.467500px;}
.ya0{bottom:471.276000px;}
.y12a{bottom:474.570000px;}
.y69{bottom:476.406000px;}
.y1d{bottom:476.644500px;}
.ye9{bottom:477.252000px;}
.y100{bottom:483.958500px;}
.y9f{bottom:489.208500px;}
.y50{bottom:490.791000px;}
.y129{bottom:494.893500px;}
.ye8{bottom:495.184500px;}
.y1c{bottom:496.968000px;}
.yff{bottom:504.282000px;}
.y9e{bottom:507.141000px;}
.y4f{bottom:511.114500px;}
.ye7{bottom:513.117000px;}
.y128{bottom:515.217000px;}
.y1b{bottom:517.293000px;}
.yfe{bottom:524.605500px;}
.y9d{bottom:525.075000px;}
.ye6{bottom:531.051000px;}
.y4e{bottom:531.439500px;}
.y127{bottom:535.542000px;}
.y1a{bottom:537.616500px;}
.y9c{bottom:543.007500px;}
.ye5{bottom:548.983500px;}
.y4c{bottom:551.763000px;}
.y126{bottom:555.865500px;}
.y4d{bottom:557.701500px;}
.y19{bottom:557.940000px;}
.y9b{bottom:560.940000px;}
.yfd{bottom:561.150000px;}
.ye4{bottom:566.916000px;}
.y4b{bottom:572.086500px;}
.y125{bottom:576.189000px;}
.y18{bottom:578.263500px;}
.y9a{bottom:578.872500px;}
.ye3{bottom:584.848500px;}
.y4a{bottom:592.410000px;}
.y124{bottom:596.512500px;}
.y17{bottom:598.587000px;}
.ye2{bottom:602.781000px;}
.y99{bottom:609.609000px;}
.y49{bottom:612.733500px;}
.y123{bottom:616.836000px;}
.y16{bottom:618.912000px;}
.ye1{bottom:620.715000px;}
.y98{bottom:629.934000px;}
.y48{bottom:633.058500px;}
.y122{bottom:637.161000px;}
.ye0{bottom:638.647500px;}
.y15{bottom:639.235500px;}
.y97{bottom:650.257500px;}
.y47{bottom:653.382000px;}
.ydf{bottom:656.580000px;}
.y121{bottom:657.484500px;}
.y14{bottom:659.559000px;}
.y96{bottom:670.581000px;}
.y45{bottom:673.705500px;}
.yde{bottom:674.512500px;}
.y120{bottom:677.808000px;}
.y46{bottom:679.644000px;}
.ydd{bottom:692.445000px;}
.y44{bottom:694.029000px;}
.y13{bottom:696.103500px;}
.y11f{bottom:698.131500px;}
.ydc{bottom:710.377500px;}
.y43{bottom:714.352500px;}
.y95{bottom:717.516000px;}
.y11e{bottom:718.455000px;}
.ydb{bottom:728.311500px;}
.y42{bottom:734.677500px;}
.y11d{bottom:738.780000px;}
.yda{bottom:746.244000px;}
.y41{bottom:755.001000px;}
.y11c{bottom:759.103500px;}
.yfc{bottom:760.939500px;}
.y94{bottom:764.152500px;}
.yd9{bottom:764.176500px;}
.y12{bottom:770.257500px;}
.y68{bottom:771.222000px;}
.y40{bottom:775.324500px;}
.y11b{bottom:779.427000px;}
.y77{bottom:781.873500px;}
.y93{bottom:782.085000px;}
.y11{bottom:786.696000px;}
.y3f{bottom:795.648000px;}
.y11a{bottom:799.750500px;}
.y92{bottom:800.017500px;}
.y76{bottom:802.197000px;}
.yd8{bottom:803.523000px;}
.yb9{bottom:809.031000px;}
.y10{bottom:814.474500px;}
.y3e{bottom:815.971500px;}
.y91{bottom:817.950000px;}
.y119{bottom:820.074000px;}
.y75{bottom:822.522000px;}
.y67{bottom:822.805500px;}
.yb8{bottom:829.354500px;}
.yf{bottom:830.913000px;}
.y90{bottom:835.882500px;}
.y3d{bottom:836.296500px;}
.y118{bottom:840.399000px;}
.y74{bottom:842.845500px;}
.y66{bottom:843.129000px;}
.ye{bottom:847.351500px;}
.yb7{bottom:849.679500px;}
.yd7{bottom:850.180500px;}
.y8f{bottom:853.816500px;}
.y3c{bottom:856.620000px;}
.y117{bottom:860.722500px;}
.y65{bottom:863.452500px;}
.yd{bottom:863.790000px;}
.yd6{bottom:868.114500px;}
.yb6{bottom:870.003000px;}
.y8e{bottom:871.749000px;}
.y73{bottom:873.748500px;}
.yfb{bottom:876.943500px;}
.yc{bottom:880.227000px;}
.y116{bottom:881.046000px;}
.y64{bottom:883.777500px;}
.yd5{bottom:886.047000px;}
.y8d{bottom:889.681500px;}
.yb5{bottom:890.326500px;}
.y3b{bottom:893.164500px;}
.yb{bottom:896.665500px;}
.yfa{bottom:897.267000px;}
.y115{bottom:901.369500px;}
.yd4{bottom:903.979500px;}
.y63{bottom:904.101000px;}
.y8c{bottom:907.614000px;}
.yb4{bottom:910.650000px;}
.ya{bottom:913.104000px;}
.y72{bottom:917.590500px;}
.y114{bottom:921.693000px;}
.yd3{bottom:921.912000px;}
.y62{bottom:924.424500px;}
.y8b{bottom:925.546500px;}
.y9{bottom:929.542500px;}
.yb3{bottom:930.973500px;}
.y71{bottom:937.915500px;}
.yd2{bottom:939.844500px;}
.y113{bottom:942.018000px;}
.y8a{bottom:943.479000px;}
.y3a{bottom:944.748000px;}
.y8{bottom:945.981000px;}
.yb2{bottom:951.297000px;}
.yf9{bottom:954.136500px;}
.yd1{bottom:957.777000px;}
.y70{bottom:958.239000px;}
.y89{bottom:961.413000px;}
.y112{bottom:962.341500px;}
.y7{bottom:962.419500px;}
.y39{bottom:965.071500px;}
.yd0{bottom:975.711000px;}
.y6f{bottom:978.562500px;}
.y6{bottom:978.858000px;}
.y88{bottom:979.345500px;}
.yb1{bottom:982.200000px;}
.y111{bottom:982.665000px;}
.y38{bottom:985.396500px;}
.ycf{bottom:993.643500px;}
.y5{bottom:995.296500px;}
.y87{bottom:997.278000px;}
.y6e{bottom:998.886000px;}
.y37{bottom:1005.720000px;}
.yce{bottom:1011.576000px;}
.y86{bottom:1015.210500px;}
.y6d{bottom:1019.209500px;}
.y36{bottom:1026.043500px;}
.ycd{bottom:1029.508500px;}
.y4{bottom:1046.140500px;}
.y35{bottom:1046.367000px;}
.ycc{bottom:1047.441000px;}
.y6c{bottom:1055.755500px;}
.ycb{bottom:1065.375000px;}
.y34{bottom:1066.690500px;}
.y110{bottom:1070.793000px;}
.y3{bottom:1074.798000px;}
.yca{bottom:1083.307500px;}
.y33{bottom:1087.015500px;}
.y10f{bottom:1091.118000px;}
.yc9{bottom:1101.240000px;}
.y32{bottom:1107.339000px;}
.y10e{bottom:1111.441500px;}
.y2{bottom:1113.652500px;}
.yc8{bottom:1119.172500px;}
.y31{bottom:1127.662500px;}
.yc7{bottom:1137.105000px;}
.y1{bottom:1146.529500px;}
.y30{bottom:1147.986000px;}
.yc6{bottom:1155.037500px;}
.ha{height:16.741622px;}
.h4{height:25.392845px;}
.hd{height:26.397082px;}
.he{height:35.195962px;}
.h11{height:36.938725px;}
.h9{height:38.089267px;}
.h6{height:39.595622px;}
.h12{height:40.447954px;}
.h10{height:42.321125px;}
.h5{height:45.687311px;}
.hc{height:46.212826px;}
.hb{height:47.073600px;}
.h8{height:48.174586px;}
.hf{height:50.068378px;}
.h7{height:60.081886px;}
.h3{height:61.229962px;}
.h2{height:72.098095px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:106.183500px;}
.x1{left:108.000000px;}
.x2c{left:113.779500px;}
.x31{left:115.609500px;}
.x2d{left:121.387500px;}
.xb{left:124.363500px;}
.x32{left:143.050500px;}
.xe{left:172.126500px;}
.x12{left:174.015000px;}
.x2{left:175.122000px;}
.x28{left:176.497500px;}
.x29{left:184.107000px;}
.x13{left:189.232500px;}
.x1c{left:203.673000px;}
.x16{left:211.516500px;}
.x1d{left:213.114000px;}
.x11{left:219.405000px;}
.x17{left:221.919000px;}
.x1e{left:228.333000px;}
.x9{left:234.235500px;}
.x14{left:239.512500px;}
.xa{left:241.843500px;}
.x15{left:249.910500px;}
.x1a{left:326.713500px;}
.x1b{left:341.932500px;}
.x3{left:370.240500px;}
.x4{left:377.848500px;}
.x22{left:402.591000px;}
.x23{left:410.200500px;}
.x2a{left:465.817500px;}
.x7{left:467.779500px;}
.x2b{left:473.425500px;}
.x8{left:475.389000px;}
.x2e{left:483.925500px;}
.x2f{left:490.233000px;}
.x26{left:525.342000px;}
.x1f{left:526.837500px;}
.x5{left:534.351000px;}
.x27{left:535.734000px;}
.x6{left:541.959000px;}
.x20{left:603.309000px;}
.x21{left:618.526500px;}
.xc{left:631.363500px;}
.x24{left:632.509500px;}
.xd{left:638.973000px;}
.x25{left:647.728500px;}
.x34{left:657.616500px;}
.x18{left:670.777500px;}
.x19{left:685.996500px;}
.x33{left:715.479000px;}
.xf{left:763.933500px;}
.x10{left:779.152500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.290909pt;}
.ls0{letter-spacing:2.652477pt;}
.ls4{letter-spacing:2.655527pt;}
.ls3{letter-spacing:2.655710pt;}
.lsc{letter-spacing:2.658219pt;}
.ls6{letter-spacing:7.970133pt;}
.ls5{letter-spacing:11.955200pt;}
.ls9{letter-spacing:12.858193pt;}
.lse{letter-spacing:13.672739pt;}
.ls16{letter-spacing:14.254557pt;}
.lsd{letter-spacing:14.312739pt;}
.ls10{letter-spacing:14.370921pt;}
.lsf{letter-spacing:14.429103pt;}
.ls12{letter-spacing:14.487285pt;}
.ls8{letter-spacing:14.545467pt;}
.lsa{letter-spacing:14.603649pt;}
.lsb{letter-spacing:14.720012pt;}
.ls13{letter-spacing:14.836376pt;}
.ls14{letter-spacing:15.534558pt;}
.ls15{letter-spacing:16.756378pt;}
.ls11{letter-spacing:17.163651pt;}
.ls2{letter-spacing:18.598803pt;}
.ls1{letter-spacing:31.880533pt;}
.ws2{word-spacing:-15.940267pt;}
.ws35{word-spacing:-14.545467pt;}
.ws2c{word-spacing:-11.955200pt;}
.ws79{word-spacing:-4.247276pt;}
.ws2d{word-spacing:-4.014549pt;}
.ws75{word-spacing:-3.956367pt;}
.ws55{word-spacing:-3.840003pt;}
.ws57{word-spacing:-3.781821pt;}
.ws63{word-spacing:-3.549094pt;}
.ws18{word-spacing:-3.374548pt;}
.ws15{word-spacing:-2.909093pt;}
.ws36{word-spacing:-2.734548pt;}
.ws37{word-spacing:-2.676366pt;}
.ws3f{word-spacing:-2.443638pt;}
.ws56{word-spacing:-2.385457pt;}
.ws3e{word-spacing:-2.152729pt;}
.ws32{word-spacing:-2.036365pt;}
.ws71{word-spacing:-1.978183pt;}
.ws42{word-spacing:-1.861820pt;}
.ws5e{word-spacing:-1.745456pt;}
.ws1a{word-spacing:-1.687274pt;}
.ws21{word-spacing:-1.629092pt;}
.ws6f{word-spacing:-1.454547pt;}
.ws70{word-spacing:-1.221819pt;}
.ws4{word-spacing:-1.195520pt;}
.ws19{word-spacing:-1.163637pt;}
.ws64{word-spacing:-1.047274pt;}
.ws28{word-spacing:-0.930910pt;}
.ws48{word-spacing:-0.872728pt;}
.ws41{word-spacing:-0.814546pt;}
.ws60{word-spacing:-0.756364pt;}
.ws16{word-spacing:-0.698182pt;}
.ws26{word-spacing:-0.581819pt;}
.ws50{word-spacing:-0.523637pt;}
.ws67{word-spacing:-0.465455pt;}
.ws3b{word-spacing:-0.407273pt;}
.ws3d{word-spacing:-0.349091pt;}
.ws22{word-spacing:-0.290909pt;}
.ws29{word-spacing:-0.232727pt;}
.ws1b{word-spacing:-0.174546pt;}
.wsa{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.116364pt;}
.ws72{word-spacing:-0.076513pt;}
.wsd{word-spacing:-0.058182pt;}
.ws54{word-spacing:-0.053134pt;}
.ws74{word-spacing:-0.049455pt;}
.ws7{word-spacing:-0.047821pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.058182pt;}
.wsb{word-spacing:0.095642pt;}
.ws17{word-spacing:0.116364pt;}
.ws1c{word-spacing:0.174546pt;}
.ws6{word-spacing:0.191283pt;}
.wsf{word-spacing:0.232727pt;}
.ws20{word-spacing:0.290909pt;}
.ws2b{word-spacing:0.349091pt;}
.ws5{word-spacing:0.430387pt;}
.ws7a{word-spacing:0.465455pt;}
.ws2a{word-spacing:0.581819pt;}
.ws46{word-spacing:0.698182pt;}
.wsc{word-spacing:0.717312pt;}
.ws6d{word-spacing:0.756364pt;}
.ws6b{word-spacing:0.814546pt;}
.ws39{word-spacing:0.872728pt;}
.ws3a{word-spacing:0.930910pt;}
.ws61{word-spacing:1.047274pt;}
.ws24{word-spacing:1.105455pt;}
.ws4c{word-spacing:1.163637pt;}
.ws4d{word-spacing:1.221819pt;}
.ws27{word-spacing:1.280001pt;}
.ws4b{word-spacing:1.338183pt;}
.ws5a{word-spacing:1.396365pt;}
.ws31{word-spacing:1.454547pt;}
.ws4e{word-spacing:1.512729pt;}
.ws30{word-spacing:1.570910pt;}
.ws4f{word-spacing:1.629092pt;}
.ws62{word-spacing:1.687274pt;}
.ws9{word-spacing:1.721549pt;}
.ws73{word-spacing:1.803638pt;}
.ws40{word-spacing:1.861820pt;}
.ws2f{word-spacing:1.920002pt;}
.ws47{word-spacing:2.094547pt;}
.ws7c{word-spacing:2.269093pt;}
.ws34{word-spacing:2.385457pt;}
.ws44{word-spacing:2.443638pt;}
.ws6e{word-spacing:2.560002pt;}
.ws58{word-spacing:2.618184pt;}
.ws5c{word-spacing:2.734548pt;}
.ws13{word-spacing:2.792730pt;}
.ws66{word-spacing:2.850911pt;}
.ws1f{word-spacing:2.909093pt;}
.ws4a{word-spacing:3.141821pt;}
.ws6a{word-spacing:3.374548pt;}
.ws10{word-spacing:3.490912pt;}
.ws12{word-spacing:3.549094pt;}
.ws49{word-spacing:3.665458pt;}
.ws8{word-spacing:3.682202pt;}
.ws7e{word-spacing:3.781821pt;}
.ws5d{word-spacing:3.956367pt;}
.ws1e{word-spacing:3.969126pt;}
.ws6c{word-spacing:4.014549pt;}
.ws1d{word-spacing:4.016947pt;}
.ws3c{word-spacing:4.072731pt;}
.ws38{word-spacing:4.189094pt;}
.ws2e{word-spacing:4.247276pt;}
.ws7d{word-spacing:4.596367pt;}
.ws5f{word-spacing:4.829095pt;}
.ws7b{word-spacing:4.945459pt;}
.ws78{word-spacing:5.352732pt;}
.ws51{word-spacing:5.527277pt;}
.ws76{word-spacing:5.585459pt;}
.ws68{word-spacing:5.701823pt;}
.ws69{word-spacing:5.760005pt;}
.ws11{word-spacing:5.876369pt;}
.ws77{word-spacing:5.934550pt;}
.ws33{word-spacing:6.341823pt;}
.ws5b{word-spacing:9.192735pt;}
.ws45{word-spacing:13.230333pt;}
.ws53{word-spacing:14.080475pt;}
.ws43{word-spacing:15.876506pt;}
.ws3{word-spacing:15.940267pt;}
.ws23{word-spacing:19.051754pt;}
.ws0{word-spacing:22.862051pt;}
.ws52{word-spacing:28.859966pt;}
.wse{word-spacing:38.180020pt;}
.ws59{word-spacing:86.670228pt;}
.ws65{word-spacing:144.480489pt;}
._1c{margin-left:-7.308623pt;}
._1{margin-left:-5.508928pt;}
._10{margin-left:-4.305458pt;}
._2{margin-left:-3.395277pt;}
._3{margin-left:-2.486682pt;}
._4{margin-left:-0.956416pt;}
._0{width:1.377232pt;}
._c{width:3.012710pt;}
._19{width:4.068753pt;}
._d{width:9.309116pt;}
._11{width:10.927804pt;}
._18{width:11.869101pt;}
._12{width:13.022355pt;}
._6{width:13.915853pt;}
._5{width:15.589581pt;}
._8{width:16.689459pt;}
._b{width:17.966250pt;}
._a{width:19.025470pt;}
._9{width:20.132557pt;}
._f{width:21.315292pt;}
._1e{width:22.521160pt;}
._1f{width:23.699153pt;}
._7{width:24.723354pt;}
._15{width:25.832749pt;}
._20{width:27.421177pt;}
._17{width:28.588025pt;}
._1d{width:30.475351pt;}
._13{width:31.880533pt;}
._e{width:38.256533pt;}
._21{width:39.319705pt;}
._1a{width:57.810261pt;}
._14{width:86.715392pt;}
._16{width:144.525653pt;}
._1b{width:202.335915pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs8{font-size:45.164267pt;}
.fs4{font-size:47.820800pt;}
.fs9{font-size:49.454933pt;}
.fs7{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:99.844000pt;}
.y2f{bottom:100.240000pt;}
.y6b{bottom:104.210667pt;}
.y61{bottom:104.217333pt;}
.y10d{bottom:104.262667pt;}
.yf8{bottom:106.260000pt;}
.yc5{bottom:111.397333pt;}
.y85{bottom:112.801333pt;}
.y13b{bottom:114.725333pt;}
.y2e{bottom:115.388000pt;}
.yaf{bottom:117.909333pt;}
.y60{bottom:118.829333pt;}
.yf7{bottom:124.325333pt;}
.yc4{bottom:129.462667pt;}
.y2d{bottom:130.000000pt;}
.y84{bottom:130.866667pt;}
.y13a{bottom:132.790667pt;}
.yae{bottom:135.974667pt;}
.yf6{bottom:142.390667pt;}
.y2c{bottom:144.612000pt;}
.y6a{bottom:147.209333pt;}
.yc3{bottom:147.528000pt;}
.y83{bottom:148.933333pt;}
.y139{bottom:150.856000pt;}
.yad{bottom:154.041333pt;}
.yf5{bottom:160.457333pt;}
.y2b{bottom:164.534667pt;}
.y5f{bottom:165.274667pt;}
.yc2{bottom:165.593333pt;}
.y82{bottom:166.998667pt;}
.y138{bottom:168.921333pt;}
.y10c{bottom:171.192000pt;}
.yac{bottom:172.106667pt;}
.y2a{bottom:174.068000pt;}
.yf4{bottom:178.522667pt;}
.y5e{bottom:183.340000pt;}
.yc1{bottom:183.658667pt;}
.y81{bottom:185.064000pt;}
.y137{bottom:186.988000pt;}
.y29{bottom:188.680000pt;}
.y10b{bottom:189.257333pt;}
.yab{bottom:190.172000pt;}
.yf3{bottom:196.588000pt;}
.y5d{bottom:201.406667pt;}
.yc0{bottom:201.725333pt;}
.y80{bottom:203.129333pt;}
.y136{bottom:205.053333pt;}
.yaa{bottom:208.237333pt;}
.yf2{bottom:214.653333pt;}
.y5c{bottom:219.472000pt;}
.ybf{bottom:219.790667pt;}
.y7f{bottom:221.194667pt;}
.y10a{bottom:221.742667pt;}
.y135{bottom:223.118667pt;}
.y28{bottom:224.962667pt;}
.yf1{bottom:232.718667pt;}
.y5b{bottom:237.537333pt;}
.ybe{bottom:237.856000pt;}
.y7e{bottom:239.261333pt;}
.y134{bottom:241.184000pt;}
.y27{bottom:243.028000pt;}
.ya9{bottom:249.936000pt;}
.yf0{bottom:250.785333pt;}
.y5a{bottom:255.602667pt;}
.ybd{bottom:255.921333pt;}
.y7d{bottom:257.326667pt;}
.y133{bottom:259.249333pt;}
.y26{bottom:261.093333pt;}
.y109{bottom:267.594667pt;}
.y59{bottom:273.668000pt;}
.ybc{bottom:273.986667pt;}
.y7c{bottom:275.392000pt;}
.y132{bottom:277.314667pt;}
.y25{bottom:279.160000pt;}
.y108{bottom:285.660000pt;}
.ya8{bottom:291.390667pt;}
.y58{bottom:291.734667pt;}
.ybb{bottom:292.053333pt;}
.y7b{bottom:293.457333pt;}
.y131{bottom:295.381333pt;}
.y24{bottom:297.225333pt;}
.yef{bottom:303.048000pt;}
.y107{bottom:303.725333pt;}
.ya7{bottom:307.330667pt;}
.y57{bottom:309.800000pt;}
.y7a{bottom:311.522667pt;}
.y130{bottom:313.446667pt;}
.y23{bottom:315.290667pt;}
.y106{bottom:321.790667pt;}
.ya6{bottom:323.270667pt;}
.y56{bottom:327.865333pt;}
.y79{bottom:329.589333pt;}
.y12f{bottom:331.512000pt;}
.y22{bottom:333.356000pt;}
.yba{bottom:333.773333pt;}
.ya5{bottom:339.210667pt;}
.y105{bottom:339.857333pt;}
.yee{bottom:344.522667pt;}
.y55{bottom:345.930667pt;}
.y12e{bottom:349.577333pt;}
.y21{bottom:351.421333pt;}
.ya4{bottom:355.150667pt;}
.y104{bottom:357.922667pt;}
.yed{bottom:360.462667pt;}
.y54{bottom:363.996000pt;}
.y12d{bottom:367.642667pt;}
.y20{bottom:369.488000pt;}
.ya3{bottom:371.090667pt;}
.y78{bottom:371.309333pt;}
.y103{bottom:375.988000pt;}
.yec{bottom:376.404000pt;}
.y53{bottom:382.062667pt;}
.y12c{bottom:385.709333pt;}
.ya2{bottom:387.032000pt;}
.y1f{bottom:387.553333pt;}
.yeb{bottom:392.344000pt;}
.y102{bottom:394.053333pt;}
.y52{bottom:400.128000pt;}
.ya1{bottom:402.972000pt;}
.y12b{bottom:403.774667pt;}
.y1e{bottom:405.618667pt;}
.yea{bottom:408.284000pt;}
.y101{bottom:412.118667pt;}
.y51{bottom:418.193333pt;}
.ya0{bottom:418.912000pt;}
.y12a{bottom:421.840000pt;}
.y69{bottom:423.472000pt;}
.y1d{bottom:423.684000pt;}
.ye9{bottom:424.224000pt;}
.y100{bottom:430.185333pt;}
.y9f{bottom:434.852000pt;}
.y50{bottom:436.258667pt;}
.y129{bottom:439.905333pt;}
.ye8{bottom:440.164000pt;}
.y1c{bottom:441.749333pt;}
.yff{bottom:448.250667pt;}
.y9e{bottom:450.792000pt;}
.y4f{bottom:454.324000pt;}
.ye7{bottom:456.104000pt;}
.y128{bottom:457.970667pt;}
.y1b{bottom:459.816000pt;}
.yfe{bottom:466.316000pt;}
.y9d{bottom:466.733333pt;}
.ye6{bottom:472.045333pt;}
.y4e{bottom:472.390667pt;}
.y127{bottom:476.037333pt;}
.y1a{bottom:477.881333pt;}
.y9c{bottom:482.673333pt;}
.ye5{bottom:487.985333pt;}
.y4c{bottom:490.456000pt;}
.y126{bottom:494.102667pt;}
.y4d{bottom:495.734667pt;}
.y19{bottom:495.946667pt;}
.y9b{bottom:498.613333pt;}
.yfd{bottom:498.800000pt;}
.ye4{bottom:503.925333pt;}
.y4b{bottom:508.521333pt;}
.y125{bottom:512.168000pt;}
.y18{bottom:514.012000pt;}
.y9a{bottom:514.553333pt;}
.ye3{bottom:519.865333pt;}
.y4a{bottom:526.586667pt;}
.y124{bottom:530.233333pt;}
.y17{bottom:532.077333pt;}
.ye2{bottom:535.805333pt;}
.y99{bottom:541.874667pt;}
.y49{bottom:544.652000pt;}
.y123{bottom:548.298667pt;}
.y16{bottom:550.144000pt;}
.ye1{bottom:551.746667pt;}
.y98{bottom:559.941333pt;}
.y48{bottom:562.718667pt;}
.y122{bottom:566.365333pt;}
.ye0{bottom:567.686667pt;}
.y15{bottom:568.209333pt;}
.y97{bottom:578.006667pt;}
.y47{bottom:580.784000pt;}
.ydf{bottom:583.626667pt;}
.y121{bottom:584.430667pt;}
.y14{bottom:586.274667pt;}
.y96{bottom:596.072000pt;}
.y45{bottom:598.849333pt;}
.yde{bottom:599.566667pt;}
.y120{bottom:602.496000pt;}
.y46{bottom:604.128000pt;}
.ydd{bottom:615.506667pt;}
.y44{bottom:616.914667pt;}
.y13{bottom:618.758667pt;}
.y11f{bottom:620.561333pt;}
.ydc{bottom:631.446667pt;}
.y43{bottom:634.980000pt;}
.y95{bottom:637.792000pt;}
.y11e{bottom:638.626667pt;}
.ydb{bottom:647.388000pt;}
.y42{bottom:653.046667pt;}
.y11d{bottom:656.693333pt;}
.yda{bottom:663.328000pt;}
.y41{bottom:671.112000pt;}
.y11c{bottom:674.758667pt;}
.yfc{bottom:676.390667pt;}
.y94{bottom:679.246667pt;}
.yd9{bottom:679.268000pt;}
.y12{bottom:684.673333pt;}
.y68{bottom:685.530667pt;}
.y40{bottom:689.177333pt;}
.y11b{bottom:692.824000pt;}
.y77{bottom:694.998667pt;}
.y93{bottom:695.186667pt;}
.y11{bottom:699.285333pt;}
.y3f{bottom:707.242667pt;}
.y11a{bottom:710.889333pt;}
.y92{bottom:711.126667pt;}
.y76{bottom:713.064000pt;}
.yd8{bottom:714.242667pt;}
.yb9{bottom:719.138667pt;}
.y10{bottom:723.977333pt;}
.y3e{bottom:725.308000pt;}
.y91{bottom:727.066667pt;}
.y119{bottom:728.954667pt;}
.y75{bottom:731.130667pt;}
.y67{bottom:731.382667pt;}
.yb8{bottom:737.204000pt;}
.yf{bottom:738.589333pt;}
.y90{bottom:743.006667pt;}
.y3d{bottom:743.374667pt;}
.y118{bottom:747.021333pt;}
.y74{bottom:749.196000pt;}
.y66{bottom:749.448000pt;}
.ye{bottom:753.201333pt;}
.yb7{bottom:755.270667pt;}
.yd7{bottom:755.716000pt;}
.y8f{bottom:758.948000pt;}
.y3c{bottom:761.440000pt;}
.y117{bottom:765.086667pt;}
.y65{bottom:767.513333pt;}
.yd{bottom:767.813333pt;}
.yd6{bottom:771.657333pt;}
.yb6{bottom:773.336000pt;}
.y8e{bottom:774.888000pt;}
.y73{bottom:776.665333pt;}
.yfb{bottom:779.505333pt;}
.yc{bottom:782.424000pt;}
.y116{bottom:783.152000pt;}
.y64{bottom:785.580000pt;}
.yd5{bottom:787.597333pt;}
.y8d{bottom:790.828000pt;}
.yb5{bottom:791.401333pt;}
.y3b{bottom:793.924000pt;}
.yb{bottom:797.036000pt;}
.yfa{bottom:797.570667pt;}
.y115{bottom:801.217333pt;}
.yd4{bottom:803.537333pt;}
.y63{bottom:803.645333pt;}
.y8c{bottom:806.768000pt;}
.yb4{bottom:809.466667pt;}
.ya{bottom:811.648000pt;}
.y72{bottom:815.636000pt;}
.y114{bottom:819.282667pt;}
.yd3{bottom:819.477333pt;}
.y62{bottom:821.710667pt;}
.y8b{bottom:822.708000pt;}
.y9{bottom:826.260000pt;}
.yb3{bottom:827.532000pt;}
.y71{bottom:833.702667pt;}
.yd2{bottom:835.417333pt;}
.y113{bottom:837.349333pt;}
.y8a{bottom:838.648000pt;}
.y3a{bottom:839.776000pt;}
.y8{bottom:840.872000pt;}
.yb2{bottom:845.597333pt;}
.yf9{bottom:848.121333pt;}
.yd1{bottom:851.357333pt;}
.y70{bottom:851.768000pt;}
.y89{bottom:854.589333pt;}
.y112{bottom:855.414667pt;}
.y7{bottom:855.484000pt;}
.y39{bottom:857.841333pt;}
.yd0{bottom:867.298667pt;}
.y6f{bottom:869.833333pt;}
.y6{bottom:870.096000pt;}
.y88{bottom:870.529333pt;}
.yb1{bottom:873.066667pt;}
.y111{bottom:873.480000pt;}
.y38{bottom:875.908000pt;}
.ycf{bottom:883.238667pt;}
.y5{bottom:884.708000pt;}
.y87{bottom:886.469333pt;}
.y6e{bottom:887.898667pt;}
.y37{bottom:893.973333pt;}
.yce{bottom:899.178667pt;}
.y86{bottom:902.409333pt;}
.y6d{bottom:905.964000pt;}
.y36{bottom:912.038667pt;}
.ycd{bottom:915.118667pt;}
.y4{bottom:929.902667pt;}
.y35{bottom:930.104000pt;}
.ycc{bottom:931.058667pt;}
.y6c{bottom:938.449333pt;}
.ycb{bottom:947.000000pt;}
.y34{bottom:948.169333pt;}
.y110{bottom:951.816000pt;}
.y3{bottom:955.376000pt;}
.yca{bottom:962.940000pt;}
.y33{bottom:966.236000pt;}
.y10f{bottom:969.882667pt;}
.yc9{bottom:978.880000pt;}
.y32{bottom:984.301333pt;}
.y10e{bottom:987.948000pt;}
.y2{bottom:989.913333pt;}
.yc8{bottom:994.820000pt;}
.y31{bottom:1002.366667pt;}
.yc7{bottom:1010.760000pt;}
.y1{bottom:1019.137333pt;}
.y30{bottom:1020.432000pt;}
.yc6{bottom:1026.700000pt;}
.ha{height:14.881442pt;}
.h4{height:22.571418pt;}
.hd{height:23.464073pt;}
.he{height:31.285299pt;}
.h11{height:32.834422pt;}
.h9{height:33.857126pt;}
.h6{height:35.196109pt;}
.h12{height:35.953737pt;}
.h10{height:37.618778pt;}
.h5{height:40.610943pt;}
.hc{height:41.078067pt;}
.hb{height:41.843200pt;}
.h8{height:42.821854pt;}
.hf{height:44.505225pt;}
.h7{height:53.406121pt;}
.h3{height:54.426633pt;}
.h2{height:64.087196pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:94.385333pt;}
.x1{left:96.000000pt;}
.x2c{left:101.137333pt;}
.x31{left:102.764000pt;}
.x2d{left:107.900000pt;}
.xb{left:110.545333pt;}
.x32{left:127.156000pt;}
.xe{left:153.001333pt;}
.x12{left:154.680000pt;}
.x2{left:155.664000pt;}
.x28{left:156.886667pt;}
.x29{left:163.650667pt;}
.x13{left:168.206667pt;}
.x1c{left:181.042667pt;}
.x16{left:188.014667pt;}
.x1d{left:189.434667pt;}
.x11{left:195.026667pt;}
.x17{left:197.261333pt;}
.x1e{left:202.962667pt;}
.x9{left:208.209333pt;}
.x14{left:212.900000pt;}
.xa{left:214.972000pt;}
.x15{left:222.142667pt;}
.x1a{left:290.412000pt;}
.x1b{left:303.940000pt;}
.x3{left:329.102667pt;}
.x4{left:335.865333pt;}
.x22{left:357.858667pt;}
.x23{left:364.622667pt;}
.x2a{left:414.060000pt;}
.x7{left:415.804000pt;}
.x2b{left:420.822667pt;}
.x8{left:422.568000pt;}
.x2e{left:430.156000pt;}
.x2f{left:435.762667pt;}
.x26{left:466.970667pt;}
.x1f{left:468.300000pt;}
.x5{left:474.978667pt;}
.x27{left:476.208000pt;}
.x6{left:481.741333pt;}
.x20{left:536.274667pt;}
.x21{left:549.801333pt;}
.xc{left:561.212000pt;}
.x24{left:562.230667pt;}
.xd{left:567.976000pt;}
.x25{left:575.758667pt;}
.x34{left:584.548000pt;}
.x18{left:596.246667pt;}
.x19{left:609.774667pt;}
.x33{left:635.981333pt;}
.xf{left:679.052000pt;}
.x10{left:692.580000pt;}
}




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