
    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_957131c3f9fcd3538965156b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_df8c9afec7acff89ad21a5e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_8b88838a04f3c2d87b04c0e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_b8dbb9ee73eca58bd939ab44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_6c97f8d9e9841934698bea0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_a9c50f4cd9b3666552b55307.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_f6370c564069618b9cf153aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_54f48b597d993607aaa566d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_3c56b0376fe635740f89743f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.mf{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.238890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238890,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.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);}
.m7{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls69{letter-spacing:-2.862000px;}
.ls4b{letter-spacing:-2.160000px;}
.ls24{letter-spacing:-1.716000px;}
.ls62{letter-spacing:-1.500000px;}
.ls19{letter-spacing:-1.440000px;}
.ls48{letter-spacing:-1.158000px;}
.ls47{letter-spacing:-1.110000px;}
.ls2c{letter-spacing:-1.026000px;}
.ls25{letter-spacing:-0.816000px;}
.ls4a{letter-spacing:-0.720000px;}
.ls5e{letter-spacing:-0.576000px;}
.ls28{letter-spacing:-0.425400px;}
.ls1e{letter-spacing:-0.342600px;}
.ls1c{letter-spacing:-0.288000px;}
.ls61{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.130200px;}
.ls6a{letter-spacing:-0.106200px;}
.ls18{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.001143px;}
.ls66{letter-spacing:0.008400px;}
.ls23{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.068571px;}
.ls5b{letter-spacing:0.072000px;}
.ls46{letter-spacing:0.106200px;}
.ls65{letter-spacing:0.106286px;}
.ls1a{letter-spacing:0.144000px;}
.ls5f{letter-spacing:0.160800px;}
.ls2a{letter-spacing:0.212400px;}
.ls20{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.260400px;}
.ls68{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.342600px;}
.ls12{letter-spacing:0.342857px;}
.ls3{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.514286px;}
.ls14{letter-spacing:0.555429px;}
.ls44{letter-spacing:0.555600px;}
.ls60{letter-spacing:0.556200px;}
.ls2b{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.754286px;}
.ls26{letter-spacing:0.792000px;}
.ls1f{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.900000px;}
.ls52{letter-spacing:1.200000px;}
.ls3b{letter-spacing:2.160000px;}
.lse{letter-spacing:3.060000px;}
.ls5d{letter-spacing:3.084000px;}
.ls42{letter-spacing:3.234286px;}
.ls35{letter-spacing:3.428571px;}
.ls4d{letter-spacing:3.600000px;}
.ls58{letter-spacing:3.942857px;}
.ls40{letter-spacing:4.320000px;}
.ls17{letter-spacing:4.628571px;}
.ls64{letter-spacing:5.040000px;}
.ls29{letter-spacing:5.142000px;}
.ls41{letter-spacing:5.314286px;}
.ls4c{letter-spacing:5.472000px;}
.ls45{letter-spacing:5.748000px;}
.ls1d{letter-spacing:5.760000px;}
.ls32{letter-spacing:6.114286px;}
.ls67{letter-spacing:6.180000px;}
.ls5c{letter-spacing:6.540000px;}
.ls4e{letter-spacing:7.371429px;}
.ls2{letter-spacing:8.056909px;}
.ls4f{letter-spacing:8.057143px;}
.ls9{letter-spacing:9.360000px;}
.ls33{letter-spacing:10.114286px;}
.ls3a{letter-spacing:10.800000px;}
.ls43{letter-spacing:10.914286px;}
.ls2d{letter-spacing:12.857143px;}
.lsf{letter-spacing:12.960000px;}
.ls53{letter-spacing:13.542857px;}
.ls39{letter-spacing:15.120000px;}
.lsd{letter-spacing:16.560000px;}
.ls30{letter-spacing:18.342857px;}
.ls63{letter-spacing:21.600000px;}
.ls50{letter-spacing:21.771429px;}
.ls3d{letter-spacing:22.320000px;}
.ls57{letter-spacing:22.457143px;}
.ls7{letter-spacing:23.040000px;}
.ls13{letter-spacing:23.142857px;}
.ls4{letter-spacing:23.736000px;}
.ls2e{letter-spacing:23.828571px;}
.lsc{letter-spacing:25.200000px;}
.ls15{letter-spacing:25.885714px;}
.ls8{letter-spacing:25.920000px;}
.ls6{letter-spacing:26.640000px;}
.ls55{letter-spacing:27.257143px;}
.ls34{letter-spacing:27.942857px;}
.ls56{letter-spacing:29.485714px;}
.ls5a{letter-spacing:29.520000px;}
.ls11{letter-spacing:30.685714px;}
.ls54{letter-spacing:32.057143px;}
.ls59{letter-spacing:32.400000px;}
.ls38{letter-spacing:33.840000px;}
.ls5{letter-spacing:34.536000px;}
.ls3e{letter-spacing:34.560000px;}
.lsb{letter-spacing:35.280000px;}
.ls3c{letter-spacing:37.440000px;}
.ls10{letter-spacing:38.228571px;}
.ls36{letter-spacing:44.640000px;}
.ls1{letter-spacing:59.309760px;}
.ls3f{letter-spacing:64.260000px;}
.ls37{letter-spacing:66.240000px;}
.ls0{letter-spacing:93.029760px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws23{word-spacing:-24.540000px;}
.ws29{word-spacing:-24.180000px;}
.ws1{word-spacing:-23.940000px;}
.ws6{word-spacing:-23.760000px;}
.ws19{word-spacing:-23.748000px;}
.ws21{word-spacing:-23.472000px;}
.ws13{word-spacing:-23.142000px;}
.ws22{word-spacing:-21.600000px;}
.ws24{word-spacing:-21.084000px;}
.ws26{word-spacing:-20.977440px;}
.wsc{word-spacing:-18.900000px;}
.ws9{word-spacing:-18.864000px;}
.ws10{word-spacing:-18.792000px;}
.ws4{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.660000px;}
.ws18{word-spacing:-18.555600px;}
.wsb{word-spacing:-18.342600px;}
.ws2a{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.260400px;}
.wsa{word-spacing:-18.216000px;}
.ws14{word-spacing:-18.212400px;}
.ws3{word-spacing:-18.144000px;}
.ws1a{word-spacing:-18.106200px;}
.wsd{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.ws2c{word-spacing:-17.893800px;}
.ws1d{word-spacing:-17.869800px;}
.ws27{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.657400px;}
.ws12{word-spacing:-17.574600px;}
.ws25{word-spacing:-17.424000px;}
.ws1e{word-spacing:-17.280000px;}
.wsf{word-spacing:-17.184000px;}
.ws16{word-spacing:-16.974000px;}
.ws1b{word-spacing:-16.890000px;}
.ws1c{word-spacing:-16.842000px;}
.ws1f{word-spacing:-16.560000px;}
.ws28{word-spacing:-16.500000px;}
.wse{word-spacing:-16.284000px;}
.ws20{word-spacing:-15.840000px;}
.ws2b{word-spacing:-15.138000px;}
.ws2{word-spacing:-12.060000px;}
.ws17{word-spacing:0.000000px;}
._35{margin-left:-16.722955px;}
._38{margin-left:-14.904478px;}
._25{margin-left:-13.140846px;}
._27{margin-left:-11.869593px;}
._26{margin-left:-10.602168px;}
._8{margin-left:-9.351404px;}
._9{margin-left:-8.208000px;}
._1c{margin-left:-7.093154px;}
._5{margin-left:-5.525236px;}
._1b{margin-left:-3.588025px;}
._6{margin-left:-2.436000px;}
._0{margin-left:-1.188000px;}
._1{width:1.340640px;}
._4{width:2.386007px;}
._b{width:3.760400px;}
._22{width:4.940338px;}
._a{width:6.579360px;}
._1e{width:7.627760px;}
._17{width:9.039774px;}
._2{width:11.011600px;}
._19{width:12.720720px;}
._3{width:13.855440px;}
._c{width:15.803586px;}
._1a{width:16.945440px;}
._1d{width:19.056000px;}
._7{width:20.199360px;}
._f{width:21.580400px;}
._e{width:22.680000px;}
._23{width:24.306000px;}
._10{width:25.327920px;}
._d{width:26.580000px;}
._15{width:28.623360px;}
._18{width:29.982720px;}
._16{width:31.496640px;}
._39{width:32.530560px;}
._24{width:34.215429px;}
._14{width:35.280000px;}
._12{width:36.324000px;}
._3a{width:37.343417px;}
._21{width:38.376000px;}
._13{width:39.864000px;}
._2d{width:41.796000px;}
._11{width:42.876000px;}
._34{width:43.912491px;}
._1f{width:45.576000px;}
._20{width:46.806720px;}
._31{width:48.564000px;}
._28{width:49.908000px;}
._2e{width:50.940000px;}
._30{width:52.608000px;}
._37{width:53.622286px;}
._2c{width:54.912000px;}
._36{width:56.111360px;}
._2f{width:57.272640px;}
._33{width:61.536000px;}
._29{width:62.760000px;}
._32{width:65.520000px;}
._2a{width:67.392000px;}
._2b{width:68.508000px;}
.fc15{color:rgb(26,26,26);}
.fc13{color:rgb(56,56,56);}
.fc12{color:rgb(47,47,47);}
.fcf{color:rgb(3,3,3);}
.fcd{color:rgb(70,70,70);}
.fc14{color:rgb(87,87,87);}
.fce{color:rgb(116,116,116);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(1,1,1);}
.fc6{color:rgb(17,17,17);}
.fc2{color:rgb(255,255,255);}
.fc7{color:rgb(52,52,52);}
.fc10{color:rgb(22,22,22);}
.fc8{color:rgb(51,51,51);}
.fc9{color:rgb(35,35,35);}
.fca{color:rgb(68,68,68);}
.fcb{color:rgb(54,54,54);}
.fc11{color:rgb(65,65,65);}
.fcc{color:rgb(36,36,36);}
.fc3{color:rgb(112,48,160);}
.fc0{color:rgb(31,56,100);}
.fc5{color:rgb(192,0,0);}
.fs3{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:74.880000px;}
.fs7{font-size:81.360000px;}
.fs4{font-size:95.760000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:10.260000px;}
.y6{bottom:11.340000px;}
.y7{bottom:55.440000px;}
.y4{bottom:57.600000px;}
.y32{bottom:124.056000px;}
.y5d{bottom:131.436000px;}
.y87{bottom:146.196000px;}
.y31{bottom:147.816000px;}
.y5c{bottom:155.370000px;}
.y86{bottom:169.950000px;}
.y30{bottom:171.570000px;}
.y5b{bottom:179.130000px;}
.y85{bottom:193.710000px;}
.y2f{bottom:195.510000px;}
.y5a{bottom:205.050000px;}
.y84{bottom:217.470000px;}
.y2e{bottom:219.270000px;}
.y59{bottom:228.810000px;}
.y83{bottom:241.410000px;}
.y2d{bottom:243.030000px;}
.y58{bottom:254.730000px;}
.y82{bottom:265.170000px;}
.y2c{bottom:266.790000px;}
.y57{bottom:278.490000px;}
.y81{bottom:288.930000px;}
.y2b{bottom:290.730000px;}
.y56{bottom:304.410000px;}
.y80{bottom:312.690000px;}
.y2a{bottom:314.490000px;}
.y55{bottom:328.170000px;}
.y7f{bottom:336.675000px;}
.y29{bottom:338.295000px;}
.y54{bottom:354.135000px;}
.y7e{bottom:360.435000px;}
.y28{bottom:362.055000px;}
.y53{bottom:378.075000px;}
.y7d{bottom:384.195000px;}
.y27{bottom:385.995000px;}
.y52{bottom:401.835000px;}
.y7c{bottom:407.955000px;}
.y26{bottom:409.755000px;}
.y51{bottom:425.595000px;}
.y7b{bottom:431.715000px;}
.y25{bottom:433.515000px;}
.y50{bottom:449.355000px;}
.y24{bottom:457.275000px;}
.y7a{bottom:457.635000px;}
.y4f{bottom:473.115000px;}
.y23{bottom:481.215000px;}
.y79{bottom:483.555000px;}
.y4e{bottom:497.055000px;}
.y22{bottom:504.975000px;}
.y78{bottom:509.475000px;}
.y4d{bottom:520.815000px;}
.y21{bottom:528.735000px;}
.y77{bottom:535.395000px;}
.y4c{bottom:544.575000px;}
.y20{bottom:552.495000px;}
.y76{bottom:561.315000px;}
.y4b{bottom:568.335000px;}
.y1f{bottom:576.435000px;}
.y75{bottom:587.055000px;}
.y4a{bottom:592.275000px;}
.y1e{bottom:600.195000px;}
.y74{bottom:611.925000px;}
.y49{bottom:616.065000px;}
.y1d{bottom:623.985000px;}
.y73{bottom:635.685000px;}
.y48{bottom:639.825000px;}
.y1c{bottom:647.745000px;}
.y72{bottom:659.445000px;}
.y47{bottom:663.585000px;}
.y1b{bottom:671.505000px;}
.y71{bottom:683.205000px;}
.y46{bottom:687.525000px;}
.y1a{bottom:695.445000px;}
.y70{bottom:707.145000px;}
.y45{bottom:711.285000px;}
.y19{bottom:719.205000px;}
.y6f{bottom:730.905000px;}
.y44{bottom:735.045000px;}
.y18{bottom:742.965000px;}
.y6e{bottom:754.665000px;}
.y43{bottom:758.805000px;}
.y17{bottom:766.725000px;}
.y6d{bottom:778.425000px;}
.y42{bottom:782.745000px;}
.y16{bottom:790.665000px;}
.y6c{bottom:802.185000px;}
.y41{bottom:806.505000px;}
.y15{bottom:814.425000px;}
.y6b{bottom:826.125000px;}
.y40{bottom:830.265000px;}
.y14{bottom:838.185000px;}
.y8e{bottom:848.985000px;}
.y6a{bottom:849.885000px;}
.y3f{bottom:854.025000px;}
.y13{bottom:861.945000px;}
.y8d{bottom:871.710000px;}
.y69{bottom:873.690000px;}
.y3e{bottom:878.010000px;}
.y12{bottom:885.930000px;}
.y8c{bottom:895.470000px;}
.y68{bottom:897.450000px;}
.y3d{bottom:901.770000px;}
.y11{bottom:909.690000px;}
.y8b{bottom:919.230000px;}
.y67{bottom:921.390000px;}
.y3c{bottom:925.530000px;}
.y10{bottom:933.450000px;}
.y8a{bottom:942.990000px;}
.y66{bottom:945.150000px;}
.y3b{bottom:949.290000px;}
.yf{bottom:957.210000px;}
.y65{bottom:968.910000px;}
.y3a{bottom:973.050000px;}
.ye{bottom:981.150000px;}
.y64{bottom:992.670000px;}
.y39{bottom:996.990000px;}
.yd{bottom:1004.910000px;}
.y63{bottom:1016.610000px;}
.y89{bottom:1018.590000px;}
.y38{bottom:1020.750000px;}
.yc{bottom:1035.510000px;}
.y62{bottom:1040.370000px;}
.y88{bottom:1042.350000px;}
.y37{bottom:1044.510000px;}
.yb{bottom:1059.270000px;}
.y61{bottom:1066.290000px;}
.y36{bottom:1068.270000px;}
.ya{bottom:1076.370000px;}
.y60{bottom:1090.050000px;}
.y35{bottom:1092.210000px;}
.y9{bottom:1102.470000px;}
.y5f{bottom:1113.810000px;}
.y34{bottom:1115.970000px;}
.y8{bottom:1134.150000px;}
.y5e{bottom:1137.570000px;}
.y33{bottom:1139.760000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1200.780000px;}
.y1{bottom:1216.260000px;}
.h6{height:4.021875px;}
.h3{height:27.036000px;}
.ha{height:33.683203px;}
.h2{height:38.100586px;}
.h10{height:46.251562px;}
.h4{height:50.273438px;}
.h8{height:50.800781px;}
.hc{height:51.996094px;}
.hb{height:52.628906px;}
.hf{height:54.514687px;}
.hd{height:56.808984px;}
.he{height:59.232305px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h9{height:73.186875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x4{left:87.660000px;}
.x9{left:95.795987px;}
.x1{left:99.395987px;}
.x82{left:110.555987px;}
.xe{left:118.115987px;}
.x2{left:122.615987px;}
.x83{left:127.835987px;}
.x81{left:138.275987px;}
.xa{left:140.255987px;}
.x75{left:142.955987px;}
.x13{left:148.895987px;}
.x3c{left:150.149987px;}
.x3d{left:156.989987px;}
.x29{left:159.689987px;}
.x73{left:163.829987px;}
.x2a{left:166.349987px;}
.x4f{left:172.649987px;}
.xd{left:187.409987px;}
.x3a{left:191.189987px;}
.x5a{left:195.869987px;}
.x55{left:196.949987px;}
.x58{left:200.189987px;}
.x3b{left:202.529987px;}
.x16{left:223.589987px;}
.xb{left:257.069987px;}
.x38{left:266.429987px;}
.x39{left:277.049987px;}
.xf{left:280.874987px;}
.x4b{left:287.534987px;}
.x27{left:293.294987px;}
.x12{left:295.094987px;}
.x5{left:297.795000px;}
.x28{left:301.754987px;}
.x4e{left:308.774987px;}
.x7e{left:311.654987px;}
.x7f{left:317.954987px;}
.x59{left:321.014987px;}
.x1c{left:346.034987px;}
.x36{left:347.474987px;}
.x37{left:354.494987px;}
.x1d{left:355.574987px;}
.x25{left:361.874987px;}
.x45{left:364.214987px;}
.x46{left:368.894987px;}
.x26{left:370.874987px;}
.x3{left:378.434987px;}
.x7c{left:380.594987px;}
.x7d{left:392.294987px;}
.x6{left:393.915000px;}
.x6d{left:403.454987px;}
.x1a{left:408.134987px;}
.x47{left:412.454987px;}
.x1b{left:414.434987px;}
.x54{left:416.054987px;}
.x86{left:437.474987px;}
.x68{left:444.674987px;}
.xc{left:445.754987px;}
.x34{left:450.434987px;}
.x43{left:458.894987px;}
.x35{left:460.874987px;}
.x5e{left:463.034987px;}
.x4a{left:464.654987px;}
.x44{left:465.734987px;}
.x14{left:469.364987px;}
.x15{left:477.464987px;}
.x23{left:480.344987px;}
.x64{left:484.484987px;}
.x24{left:493.844987px;}
.x8{left:500.145000px;}
.x65{left:503.924987px;}
.x6a{left:507.884987px;}
.x84{left:510.944987px;}
.x85{left:517.964987px;}
.x32{left:519.764987px;}
.x62{left:525.884987px;}
.x7a{left:528.764987px;}
.x33{left:530.204987px;}
.x18{left:534.524987px;}
.x19{left:539.204987px;}
.x7b{left:542.264987px;}
.x70{left:548.384987px;}
.x89{left:559.184987px;}
.x79{left:562.424987px;}
.x41{left:566.564987px;}
.x8a{left:570.524987px;}
.x21{left:572.144987px;}
.x42{left:575.384987px;}
.x22{left:582.764987px;}
.x8b{left:584.744987px;}
.x2f{left:601.664987px;}
.x10{left:610.664987px;}
.x11{left:617.324987px;}
.x8c{left:624.524987px;}
.x87{left:627.224987px;}
.x66{left:630.104987px;}
.x78{left:631.904987px;}
.x88{left:637.664987px;}
.x67{left:641.804987px;}
.x74{left:649.364987px;}
.x30{left:655.349987px;}
.x61{left:657.869987px;}
.x52{left:660.569987px;}
.x1f{left:663.629987px;}
.x31{left:665.609987px;}
.x53{left:667.589987px;}
.x5d{left:669.389987px;}
.x3f{left:670.469987px;}
.x20{left:674.249987px;}
.x40{left:677.309987px;}
.x51{left:680.909987px;}
.x2d{left:683.969987px;}
.x63{left:691.169987px;}
.x2e{left:692.969987px;}
.x69{left:697.469987px;}
.x17{left:706.469987px;}
.x71{left:715.649987px;}
.x1e{left:718.169987px;}
.x76{left:722.489987px;}
.x72{left:723.929987px;}
.x77{left:728.249987px;}
.x48{left:732.209987px;}
.x5f{left:736.889987px;}
.x56{left:740.669987px;}
.x60{left:745.529987px;}
.x57{left:747.869987px;}
.x49{left:749.129987px;}
.x5b{left:756.869987px;}
.x6e{left:758.309987px;}
.x3e{left:760.649987px;}
.x5c{left:764.429987px;}
.x2b{left:765.869987px;}
.x4c{left:767.849987px;}
.x6b{left:769.829987px;}
.x2c{left:772.709987px;}
.x6f{left:774.689987px;}
.x4d{left:775.949987px;}
.x6c{left:777.929987px;}
.x80{left:779.729987px;}
.x50{left:795.929987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls69{letter-spacing:-2.544000pt;}
.ls4b{letter-spacing:-1.920000pt;}
.ls24{letter-spacing:-1.525333pt;}
.ls62{letter-spacing:-1.333333pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls48{letter-spacing:-1.029333pt;}
.ls47{letter-spacing:-0.986667pt;}
.ls2c{letter-spacing:-0.912000pt;}
.ls25{letter-spacing:-0.725333pt;}
.ls4a{letter-spacing:-0.640000pt;}
.ls5e{letter-spacing:-0.512000pt;}
.ls28{letter-spacing:-0.378133pt;}
.ls1e{letter-spacing:-0.304533pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls61{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.115733pt;}
.ls6a{letter-spacing:-0.094400pt;}
.ls18{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.001016pt;}
.ls66{letter-spacing:0.007467pt;}
.ls23{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.060952pt;}
.ls5b{letter-spacing:0.064000pt;}
.ls46{letter-spacing:0.094400pt;}
.ls65{letter-spacing:0.094476pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls5f{letter-spacing:0.142933pt;}
.ls2a{letter-spacing:0.188800pt;}
.ls20{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.231467pt;}
.ls68{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.304533pt;}
.ls12{letter-spacing:0.304762pt;}
.ls3{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.457143pt;}
.ls14{letter-spacing:0.493714pt;}
.ls44{letter-spacing:0.493867pt;}
.ls60{letter-spacing:0.494400pt;}
.ls2b{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.670476pt;}
.ls26{letter-spacing:0.704000pt;}
.ls1f{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls52{letter-spacing:1.066667pt;}
.ls3b{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.720000pt;}
.ls5d{letter-spacing:2.741333pt;}
.ls42{letter-spacing:2.874921pt;}
.ls35{letter-spacing:3.047619pt;}
.ls4d{letter-spacing:3.200000pt;}
.ls58{letter-spacing:3.504762pt;}
.ls40{letter-spacing:3.840000pt;}
.ls17{letter-spacing:4.114286pt;}
.ls64{letter-spacing:4.480000pt;}
.ls29{letter-spacing:4.570667pt;}
.ls41{letter-spacing:4.723810pt;}
.ls4c{letter-spacing:4.864000pt;}
.ls45{letter-spacing:5.109333pt;}
.ls1d{letter-spacing:5.120000pt;}
.ls32{letter-spacing:5.434921pt;}
.ls67{letter-spacing:5.493333pt;}
.ls5c{letter-spacing:5.813333pt;}
.ls4e{letter-spacing:6.552381pt;}
.ls2{letter-spacing:7.161696pt;}
.ls4f{letter-spacing:7.161905pt;}
.ls9{letter-spacing:8.320000pt;}
.ls33{letter-spacing:8.990476pt;}
.ls3a{letter-spacing:9.600000pt;}
.ls43{letter-spacing:9.701587pt;}
.ls2d{letter-spacing:11.428571pt;}
.lsf{letter-spacing:11.520000pt;}
.ls53{letter-spacing:12.038095pt;}
.ls39{letter-spacing:13.440000pt;}
.lsd{letter-spacing:14.720000pt;}
.ls30{letter-spacing:16.304762pt;}
.ls63{letter-spacing:19.200000pt;}
.ls50{letter-spacing:19.352381pt;}
.ls3d{letter-spacing:19.840000pt;}
.ls57{letter-spacing:19.961905pt;}
.ls7{letter-spacing:20.480000pt;}
.ls13{letter-spacing:20.571429pt;}
.ls4{letter-spacing:21.098667pt;}
.ls2e{letter-spacing:21.180952pt;}
.lsc{letter-spacing:22.400000pt;}
.ls15{letter-spacing:23.009524pt;}
.ls8{letter-spacing:23.040000pt;}
.ls6{letter-spacing:23.680000pt;}
.ls55{letter-spacing:24.228571pt;}
.ls34{letter-spacing:24.838095pt;}
.ls56{letter-spacing:26.209524pt;}
.ls5a{letter-spacing:26.240000pt;}
.ls11{letter-spacing:27.276190pt;}
.ls54{letter-spacing:28.495238pt;}
.ls59{letter-spacing:28.800000pt;}
.ls38{letter-spacing:30.080000pt;}
.ls5{letter-spacing:30.698667pt;}
.ls3e{letter-spacing:30.720000pt;}
.lsb{letter-spacing:31.360000pt;}
.ls3c{letter-spacing:33.280000pt;}
.ls10{letter-spacing:33.980952pt;}
.ls36{letter-spacing:39.680000pt;}
.ls1{letter-spacing:52.719787pt;}
.ls3f{letter-spacing:57.120000pt;}
.ls37{letter-spacing:58.880000pt;}
.ls0{letter-spacing:82.693120pt;}
.ws7{word-spacing:-64.000000pt;}
.ws23{word-spacing:-21.813333pt;}
.ws29{word-spacing:-21.493333pt;}
.ws1{word-spacing:-21.280000pt;}
.ws6{word-spacing:-21.120000pt;}
.ws19{word-spacing:-21.109333pt;}
.ws21{word-spacing:-20.864000pt;}
.ws13{word-spacing:-20.570667pt;}
.ws22{word-spacing:-19.200000pt;}
.ws24{word-spacing:-18.741333pt;}
.ws26{word-spacing:-18.646613pt;}
.wsc{word-spacing:-16.800000pt;}
.ws9{word-spacing:-16.768000pt;}
.ws10{word-spacing:-16.704000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.586667pt;}
.ws18{word-spacing:-16.493867pt;}
.wsb{word-spacing:-16.304533pt;}
.ws2a{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.231467pt;}
.wsa{word-spacing:-16.192000pt;}
.ws14{word-spacing:-16.188800pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1a{word-spacing:-16.094400pt;}
.wsd{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-15.905600pt;}
.ws1d{word-spacing:-15.884267pt;}
.ws27{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.695467pt;}
.ws12{word-spacing:-15.621867pt;}
.ws25{word-spacing:-15.488000pt;}
.ws1e{word-spacing:-15.360000pt;}
.wsf{word-spacing:-15.274667pt;}
.ws16{word-spacing:-15.088000pt;}
.ws1b{word-spacing:-15.013333pt;}
.ws1c{word-spacing:-14.970667pt;}
.ws1f{word-spacing:-14.720000pt;}
.ws28{word-spacing:-14.666667pt;}
.wse{word-spacing:-14.474667pt;}
.ws20{word-spacing:-14.080000pt;}
.ws2b{word-spacing:-13.456000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws17{word-spacing:0.000000pt;}
._35{margin-left:-14.864849pt;}
._38{margin-left:-13.248425pt;}
._25{margin-left:-11.680752pt;}
._27{margin-left:-10.550750pt;}
._26{margin-left:-9.424149pt;}
._8{margin-left:-8.312359pt;}
._9{margin-left:-7.296000pt;}
._1c{margin-left:-6.305026pt;}
._5{margin-left:-4.911321pt;}
._1b{margin-left:-3.189355pt;}
._6{margin-left:-2.165333pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.191680pt;}
._4{width:2.120895pt;}
._b{width:3.342578pt;}
._22{width:4.391412pt;}
._a{width:5.848320pt;}
._1e{width:6.780231pt;}
._17{width:8.035355pt;}
._2{width:9.788089pt;}
._19{width:11.307306pt;}
._3{width:12.315946pt;}
._c{width:14.047632pt;}
._1a{width:15.062613pt;}
._1d{width:16.938667pt;}
._7{width:17.954987pt;}
._f{width:19.182578pt;}
._e{width:20.160000pt;}
._23{width:21.605333pt;}
._10{width:22.513707pt;}
._d{width:23.626667pt;}
._15{width:25.442987pt;}
._18{width:26.651307pt;}
._16{width:27.997013pt;}
._39{width:28.916053pt;}
._24{width:30.413714pt;}
._14{width:31.360000pt;}
._12{width:32.288000pt;}
._3a{width:33.194149pt;}
._21{width:34.112000pt;}
._13{width:35.434667pt;}
._2d{width:37.152000pt;}
._11{width:38.112000pt;}
._34{width:39.033326pt;}
._1f{width:40.512000pt;}
._20{width:41.605973pt;}
._31{width:43.168000pt;}
._28{width:44.362667pt;}
._2e{width:45.280000pt;}
._30{width:46.762667pt;}
._37{width:47.664254pt;}
._2c{width:48.810667pt;}
._36{width:49.876764pt;}
._2f{width:50.909013pt;}
._33{width:54.698667pt;}
._29{width:55.786667pt;}
._32{width:58.240000pt;}
._2a{width:59.904000pt;}
._2b{width:60.896000pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:66.560000pt;}
.fs7{font-size:72.320000pt;}
.fs4{font-size:85.120000pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:9.120000pt;}
.y6{bottom:10.080000pt;}
.y7{bottom:49.280000pt;}
.y4{bottom:51.200000pt;}
.y32{bottom:110.272000pt;}
.y5d{bottom:116.832000pt;}
.y87{bottom:129.952000pt;}
.y31{bottom:131.392000pt;}
.y5c{bottom:138.106667pt;}
.y86{bottom:151.066667pt;}
.y30{bottom:152.506667pt;}
.y5b{bottom:159.226667pt;}
.y85{bottom:172.186667pt;}
.y2f{bottom:173.786667pt;}
.y5a{bottom:182.266667pt;}
.y84{bottom:193.306667pt;}
.y2e{bottom:194.906667pt;}
.y59{bottom:203.386667pt;}
.y83{bottom:214.586667pt;}
.y2d{bottom:216.026667pt;}
.y58{bottom:226.426667pt;}
.y82{bottom:235.706667pt;}
.y2c{bottom:237.146667pt;}
.y57{bottom:247.546667pt;}
.y81{bottom:256.826667pt;}
.y2b{bottom:258.426667pt;}
.y56{bottom:270.586667pt;}
.y80{bottom:277.946667pt;}
.y2a{bottom:279.546667pt;}
.y55{bottom:291.706667pt;}
.y7f{bottom:299.266667pt;}
.y29{bottom:300.706667pt;}
.y54{bottom:314.786667pt;}
.y7e{bottom:320.386667pt;}
.y28{bottom:321.826667pt;}
.y53{bottom:336.066667pt;}
.y7d{bottom:341.506667pt;}
.y27{bottom:343.106667pt;}
.y52{bottom:357.186667pt;}
.y7c{bottom:362.626667pt;}
.y26{bottom:364.226667pt;}
.y51{bottom:378.306667pt;}
.y7b{bottom:383.746667pt;}
.y25{bottom:385.346667pt;}
.y50{bottom:399.426667pt;}
.y24{bottom:406.466667pt;}
.y7a{bottom:406.786667pt;}
.y4f{bottom:420.546667pt;}
.y23{bottom:427.746667pt;}
.y79{bottom:429.826667pt;}
.y4e{bottom:441.826667pt;}
.y22{bottom:448.866667pt;}
.y78{bottom:452.866667pt;}
.y4d{bottom:462.946667pt;}
.y21{bottom:469.986667pt;}
.y77{bottom:475.906667pt;}
.y4c{bottom:484.066667pt;}
.y20{bottom:491.106667pt;}
.y76{bottom:498.946667pt;}
.y4b{bottom:505.186667pt;}
.y1f{bottom:512.386667pt;}
.y75{bottom:521.826667pt;}
.y4a{bottom:526.466667pt;}
.y1e{bottom:533.506667pt;}
.y74{bottom:543.933333pt;}
.y49{bottom:547.613333pt;}
.y1d{bottom:554.653333pt;}
.y73{bottom:565.053333pt;}
.y48{bottom:568.733333pt;}
.y1c{bottom:575.773333pt;}
.y72{bottom:586.173333pt;}
.y47{bottom:589.853333pt;}
.y1b{bottom:596.893333pt;}
.y71{bottom:607.293333pt;}
.y46{bottom:611.133333pt;}
.y1a{bottom:618.173333pt;}
.y70{bottom:628.573333pt;}
.y45{bottom:632.253333pt;}
.y19{bottom:639.293333pt;}
.y6f{bottom:649.693333pt;}
.y44{bottom:653.373333pt;}
.y18{bottom:660.413333pt;}
.y6e{bottom:670.813333pt;}
.y43{bottom:674.493333pt;}
.y17{bottom:681.533333pt;}
.y6d{bottom:691.933333pt;}
.y42{bottom:695.773333pt;}
.y16{bottom:702.813333pt;}
.y6c{bottom:713.053333pt;}
.y41{bottom:716.893333pt;}
.y15{bottom:723.933333pt;}
.y6b{bottom:734.333333pt;}
.y40{bottom:738.013333pt;}
.y14{bottom:745.053333pt;}
.y8e{bottom:754.653333pt;}
.y6a{bottom:755.453333pt;}
.y3f{bottom:759.133333pt;}
.y13{bottom:766.173333pt;}
.y8d{bottom:774.853333pt;}
.y69{bottom:776.613333pt;}
.y3e{bottom:780.453333pt;}
.y12{bottom:787.493333pt;}
.y8c{bottom:795.973333pt;}
.y68{bottom:797.733333pt;}
.y3d{bottom:801.573333pt;}
.y11{bottom:808.613333pt;}
.y8b{bottom:817.093333pt;}
.y67{bottom:819.013333pt;}
.y3c{bottom:822.693333pt;}
.y10{bottom:829.733333pt;}
.y8a{bottom:838.213333pt;}
.y66{bottom:840.133333pt;}
.y3b{bottom:843.813333pt;}
.yf{bottom:850.853333pt;}
.y65{bottom:861.253333pt;}
.y3a{bottom:864.933333pt;}
.ye{bottom:872.133333pt;}
.y64{bottom:882.373333pt;}
.y39{bottom:886.213333pt;}
.yd{bottom:893.253333pt;}
.y63{bottom:903.653333pt;}
.y89{bottom:905.413333pt;}
.y38{bottom:907.333333pt;}
.yc{bottom:920.453333pt;}
.y62{bottom:924.773333pt;}
.y88{bottom:926.533333pt;}
.y37{bottom:928.453333pt;}
.yb{bottom:941.573333pt;}
.y61{bottom:947.813333pt;}
.y36{bottom:949.573333pt;}
.ya{bottom:956.773333pt;}
.y60{bottom:968.933333pt;}
.y35{bottom:970.853333pt;}
.y9{bottom:979.973333pt;}
.y5f{bottom:990.053333pt;}
.y34{bottom:991.973333pt;}
.y8{bottom:1008.133333pt;}
.y5e{bottom:1011.173333pt;}
.y33{bottom:1013.120000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1067.360000pt;}
.y1{bottom:1081.120000pt;}
.h6{height:3.575000pt;}
.h3{height:24.032000pt;}
.ha{height:29.940625pt;}
.h2{height:33.867188pt;}
.h10{height:41.112500pt;}
.h4{height:44.687500pt;}
.h8{height:45.156250pt;}
.hc{height:46.218750pt;}
.hb{height:46.781250pt;}
.hf{height:48.457500pt;}
.hd{height:50.496875pt;}
.he{height:52.650937pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h9{height:65.055000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x4{left:77.920000pt;}
.x9{left:85.151988pt;}
.x1{left:88.351988pt;}
.x82{left:98.271988pt;}
.xe{left:104.991988pt;}
.x2{left:108.991988pt;}
.x83{left:113.631988pt;}
.x81{left:122.911988pt;}
.xa{left:124.671988pt;}
.x75{left:127.071988pt;}
.x13{left:132.351988pt;}
.x3c{left:133.466655pt;}
.x3d{left:139.546655pt;}
.x29{left:141.946655pt;}
.x73{left:145.626655pt;}
.x2a{left:147.866655pt;}
.x4f{left:153.466655pt;}
.xd{left:166.586655pt;}
.x3a{left:169.946655pt;}
.x5a{left:174.106655pt;}
.x55{left:175.066655pt;}
.x58{left:177.946655pt;}
.x3b{left:180.026655pt;}
.x16{left:198.746655pt;}
.xb{left:228.506655pt;}
.x38{left:236.826655pt;}
.x39{left:246.266655pt;}
.xf{left:249.666655pt;}
.x4b{left:255.586655pt;}
.x27{left:260.706655pt;}
.x12{left:262.306655pt;}
.x5{left:264.706667pt;}
.x28{left:268.226655pt;}
.x4e{left:274.466655pt;}
.x7e{left:277.026655pt;}
.x7f{left:282.626655pt;}
.x59{left:285.346655pt;}
.x1c{left:307.586655pt;}
.x36{left:308.866655pt;}
.x37{left:315.106655pt;}
.x1d{left:316.066655pt;}
.x25{left:321.666655pt;}
.x45{left:323.746655pt;}
.x46{left:327.906655pt;}
.x26{left:329.666655pt;}
.x3{left:336.386655pt;}
.x7c{left:338.306655pt;}
.x7d{left:348.706655pt;}
.x6{left:350.146667pt;}
.x6d{left:358.626655pt;}
.x1a{left:362.786655pt;}
.x47{left:366.626655pt;}
.x1b{left:368.386655pt;}
.x54{left:369.826655pt;}
.x86{left:388.866655pt;}
.x68{left:395.266655pt;}
.xc{left:396.226655pt;}
.x34{left:400.386655pt;}
.x43{left:407.906655pt;}
.x35{left:409.666655pt;}
.x5e{left:411.586655pt;}
.x4a{left:413.026655pt;}
.x44{left:413.986655pt;}
.x14{left:417.213322pt;}
.x15{left:424.413322pt;}
.x23{left:426.973322pt;}
.x64{left:430.653322pt;}
.x24{left:438.973322pt;}
.x8{left:444.573333pt;}
.x65{left:447.933322pt;}
.x6a{left:451.453322pt;}
.x84{left:454.173322pt;}
.x85{left:460.413322pt;}
.x32{left:462.013322pt;}
.x62{left:467.453322pt;}
.x7a{left:470.013322pt;}
.x33{left:471.293322pt;}
.x18{left:475.133322pt;}
.x19{left:479.293322pt;}
.x7b{left:482.013322pt;}
.x70{left:487.453322pt;}
.x89{left:497.053322pt;}
.x79{left:499.933322pt;}
.x41{left:503.613322pt;}
.x8a{left:507.133322pt;}
.x21{left:508.573322pt;}
.x42{left:511.453322pt;}
.x22{left:518.013322pt;}
.x8b{left:519.773322pt;}
.x2f{left:534.813322pt;}
.x10{left:542.813322pt;}
.x11{left:548.733322pt;}
.x8c{left:555.133322pt;}
.x87{left:557.533322pt;}
.x66{left:560.093322pt;}
.x78{left:561.693322pt;}
.x88{left:566.813322pt;}
.x67{left:570.493322pt;}
.x74{left:577.213322pt;}
.x30{left:582.533322pt;}
.x61{left:584.773322pt;}
.x52{left:587.173322pt;}
.x1f{left:589.893322pt;}
.x31{left:591.653322pt;}
.x53{left:593.413322pt;}
.x5d{left:595.013322pt;}
.x3f{left:595.973322pt;}
.x20{left:599.333322pt;}
.x40{left:602.053322pt;}
.x51{left:605.253322pt;}
.x2d{left:607.973322pt;}
.x63{left:614.373322pt;}
.x2e{left:615.973322pt;}
.x69{left:619.973322pt;}
.x17{left:627.973322pt;}
.x71{left:636.133322pt;}
.x1e{left:638.373322pt;}
.x76{left:642.213322pt;}
.x72{left:643.493322pt;}
.x77{left:647.333322pt;}
.x48{left:650.853322pt;}
.x5f{left:655.013322pt;}
.x56{left:658.373322pt;}
.x60{left:662.693322pt;}
.x57{left:664.773322pt;}
.x49{left:665.893322pt;}
.x5b{left:672.773322pt;}
.x6e{left:674.053322pt;}
.x3e{left:676.133322pt;}
.x5c{left:679.493322pt;}
.x2b{left:680.773322pt;}
.x4c{left:682.533322pt;}
.x6b{left:684.293322pt;}
.x2c{left:686.853322pt;}
.x6f{left:688.613322pt;}
.x4d{left:689.733322pt;}
.x6c{left:691.493322pt;}
.x80{left:693.093322pt;}
.x50{left:707.493322pt;}
}




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