
    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_6c7587c5de0c37d41656781c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2e7058a6621a5dae2a89edf0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_55fd55936cb2faa0b38f1342.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_41cbe3db370766e96f2e2fcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_9c4186c08dae2695cb2051fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_82b790a092d6fd330a844651.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_e4817909a87434b0c99c7c52.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m3{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);}
.m1{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);}
.m7{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);}
.mf{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);}
.m1e{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m11{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);}
.m6{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);}
.m4{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);}
.m18{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);}
.mc{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);}
.m12{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);}
.m15{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);}
.m17{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);}
.m27{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m5{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);}
.me{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);}
.m14{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);}
.m21{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);}
.m1f{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);}
.m1b{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m1a{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);}
.m10{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);}
.m13{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m1d{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);}
.m1c{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);}
.m26{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);}
.m8{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);}
.m23{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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:-21.702000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.040000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.004234px;}
.ls5{letter-spacing:1.721544px;}
.ls3{letter-spacing:3.347276px;}
.ls1{letter-spacing:4.015609px;}
.ls2{letter-spacing:23.383163px;}
.ls6{letter-spacing:23.566394px;}
.ls7{letter-spacing:27.930339px;}
.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;}
}
.ws1a{word-spacing:-71.731020px;}
.ws4{word-spacing:-53.798250px;}
.ws3{word-spacing:-53.195710px;}
.ws10{word-spacing:-48.343700px;}
.ws19{word-spacing:-48.343048px;}
.ws3d{word-spacing:-47.820660px;}
.ws88{word-spacing:-44.831887px;}
.ws3c{word-spacing:-39.870485px;}
.ws3b{word-spacing:-38.376089px;}
.wsb9{word-spacing:-36.869744px;}
.wsb5{word-spacing:-36.152434px;}
.ws31{word-spacing:-35.865510px;}
.ws5e{word-spacing:-35.148200px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws62{word-spacing:-18.936989px;}
.ws8{word-spacing:-18.650065px;}
.wsab{word-spacing:-18.578334px;}
.wsb2{word-spacing:-17.932755px;}
.wsc0{word-spacing:-17.645831px;}
.ws90{word-spacing:-17.574100px;}
.ws79{word-spacing:-17.358907px;}
.ws4d{word-spacing:-17.215445px;}
.wsc1{word-spacing:-17.143714px;}
.ws58{word-spacing:-17.000252px;}
.ws38{word-spacing:-16.713328px;}
.ws65{word-spacing:-16.641597px;}
.wsb3{word-spacing:-16.569866px;}
.wsad{word-spacing:-16.426404px;}
.wsd{word-spacing:-16.282942px;}
.ws78{word-spacing:-16.139479px;}
.ws93{word-spacing:-16.067748px;}
.ws98{word-spacing:-15.709093px;}
.ws66{word-spacing:-15.637362px;}
.ws95{word-spacing:-15.565631px;}
.ws60{word-spacing:-15.493900px;}
.ws5a{word-spacing:-15.350438px;}
.ws92{word-spacing:-15.278707px;}
.ws29{word-spacing:-15.206976px;}
.ws4c{word-spacing:-14.991783px;}
.wscc{word-spacing:-14.848321px;}
.ws76{word-spacing:-14.704859px;}
.ws4b{word-spacing:-14.489666px;}
.wscf{word-spacing:-14.202742px;}
.ws4a{word-spacing:-14.131011px;}
.wscd{word-spacing:-14.059280px;}
.ws7b{word-spacing:-13.987549px;}
.ws75{word-spacing:-13.915818px;}
.ws73{word-spacing:-13.772356px;}
.ws7a{word-spacing:-13.700625px;}
.ws2b{word-spacing:-13.647358px;}
.ws61{word-spacing:-13.628894px;}
.ws96{word-spacing:-13.557163px;}
.wsce{word-spacing:-13.341970px;}
.ws39{word-spacing:-13.270239px;}
.ws77{word-spacing:-13.198508px;}
.ws5b{word-spacing:-13.126777px;}
.ws71{word-spacing:-13.055046px;}
.ws87{word-spacing:-13.004706px;}
.ws49{word-spacing:-12.983315px;}
.ws86{word-spacing:-12.911584px;}
.ws44{word-spacing:-12.839853px;}
.ws16{word-spacing:-12.768122px;}
.wsc2{word-spacing:-12.624660px;}
.wsc3{word-spacing:-12.552928px;}
.wsb6{word-spacing:-12.545083px;}
.ws82{word-spacing:-12.482862px;}
.ws23{word-spacing:-12.337735px;}
.ws20{word-spacing:-12.312160px;}
.wsd2{word-spacing:-12.282089px;}
.ws17{word-spacing:-12.266004px;}
.ws11{word-spacing:-12.194273px;}
.ws9c{word-spacing:-12.142265px;}
.ws3a{word-spacing:-12.122542px;}
.ws8b{word-spacing:-12.073574px;}
.ws54{word-spacing:-12.065588px;}
.wsb0{word-spacing:-12.057451px;}
.ws1e{word-spacing:-12.050811px;}
.wsf{word-spacing:-11.979080px;}
.ws15{word-spacing:-11.907349px;}
.ws3e{word-spacing:-11.835618px;}
.ws28{word-spacing:-11.811354px;}
.ws26{word-spacing:-11.805776px;}
.wsc7{word-spacing:-11.768173px;}
.wsca{word-spacing:-11.764934px;}
.ws5{word-spacing:-11.763887px;}
.wsd3{word-spacing:-11.759836px;}
.ws24{word-spacing:-11.742981px;}
.ws12{word-spacing:-11.692156px;}
.ws84{word-spacing:-11.663648px;}
.wscb{word-spacing:-11.632683px;}
.ws18{word-spacing:-11.620425px;}
.ws1b{word-spacing:-11.548694px;}
.ws55{word-spacing:-11.543126px;}
.wsc{word-spacing:-11.476963px;}
.ws2a{word-spacing:-11.453587px;}
.ws2e{word-spacing:-11.420136px;}
.ws13{word-spacing:-11.405232px;}
.wse{word-spacing:-11.333501px;}
.ws1d{word-spacing:-11.261770px;}
.wsb1{word-spacing:-11.190039px;}
.ws6a{word-spacing:-11.118308px;}
.wsbf{word-spacing:-11.046577px;}
.ws83{word-spacing:-10.974846px;}
.wsbb{word-spacing:-10.903115px;}
.ws45{word-spacing:-10.831384px;}
.ws46{word-spacing:-10.759653px;}
.ws7e{word-spacing:-10.690161px;}
.wsbe{word-spacing:-10.687922px;}
.ws9d{word-spacing:-10.674516px;}
.ws1c{word-spacing:-10.616191px;}
.ws6c{word-spacing:-10.544460px;}
.ws56{word-spacing:-10.472729px;}
.wsba{word-spacing:-10.329267px;}
.ws70{word-spacing:-10.185805px;}
.wsa{word-spacing:-10.114074px;}
.ws69{word-spacing:-10.042343px;}
.ws1f{word-spacing:-10.002587px;}
.ws7c{word-spacing:-9.970612px;}
.ws2f{word-spacing:-9.902433px;}
.ws6{word-spacing:-9.755419px;}
.wsa9{word-spacing:-9.611957px;}
.ws36{word-spacing:-9.577423px;}
.ws94{word-spacing:-9.540226px;}
.wsac{word-spacing:-9.468495px;}
.wsb4{word-spacing:-9.325033px;}
.ws6f{word-spacing:-9.181571px;}
.ws52{word-spacing:-9.109840px;}
.ws50{word-spacing:-9.053019px;}
.ws64{word-spacing:-9.038109px;}
.ws57{word-spacing:-8.978053px;}
.wsa4{word-spacing:-8.976844px;}
.ws5f{word-spacing:-8.966378px;}
.ws81{word-spacing:-8.894646px;}
.ws7{word-spacing:-8.751184px;}
.ws22{word-spacing:-8.710968px;}
.wsa6{word-spacing:-8.701767px;}
.ws72{word-spacing:-8.679453px;}
.wsc6{word-spacing:-8.596684px;}
.ws9f{word-spacing:-8.576442px;}
.ws9e{word-spacing:-8.575453px;}
.ws68{word-spacing:-8.464260px;}
.ws9{word-spacing:-8.320798px;}
.ws6d{word-spacing:-8.177336px;}
.ws25{word-spacing:-8.157855px;}
.ws27{word-spacing:-8.154335px;}
.wsa8{word-spacing:-8.153014px;}
.ws89{word-spacing:-8.116571px;}
.ws8e{word-spacing:-8.107638px;}
.ws9a{word-spacing:-8.105605px;}
.wsa7{word-spacing:-8.013369px;}
.ws8a{word-spacing:-7.976993px;}
.ws51{word-spacing:-7.890412px;}
.ws5c{word-spacing:-7.818681px;}
.wsa0{word-spacing:-7.815828px;}
.wsc8{word-spacing:-7.746950px;}
.ws67{word-spacing:-7.675219px;}
.ws59{word-spacing:-7.603488px;}
.ws9b{word-spacing:-7.547160px;}
.ws6b{word-spacing:-7.531757px;}
.ws74{word-spacing:-7.460026px;}
.ws91{word-spacing:-7.316564px;}
.ws80{word-spacing:-7.173102px;}
.ws43{word-spacing:-7.101371px;}
.ws30{word-spacing:-7.063163px;}
.ws2d{word-spacing:-6.993161px;}
.ws21{word-spacing:-6.811145px;}
.ws47{word-spacing:-6.742716px;}
.ws8d{word-spacing:-6.714502px;}
.ws34{word-spacing:-6.670985px;}
.ws32{word-spacing:-6.644371px;}
.ws8c{word-spacing:-6.603214px;}
.ws4e{word-spacing:-6.527523px;}
.ws37{word-spacing:-6.403310px;}
.ws7d{word-spacing:-6.393285px;}
.wsaa{word-spacing:-6.243086px;}
.ws6e{word-spacing:-6.240599px;}
.wsd0{word-spacing:-6.168868px;}
.wsa1{word-spacing:-6.097137px;}
.ws42{word-spacing:-5.953675px;}
.ws40{word-spacing:-5.881944px;}
.ws7f{word-spacing:-5.810213px;}
.ws2c{word-spacing:-5.785420px;}
.ws4f{word-spacing:-5.451558px;}
.ws5d{word-spacing:-5.379826px;}
.wsa5{word-spacing:-5.369791px;}
.wsa3{word-spacing:-5.367504px;}
.ws33{word-spacing:-5.191901px;}
.wsd1{word-spacing:-4.734247px;}
.ws41{word-spacing:-4.447323px;}
.ws35{word-spacing:-4.344551px;}
.ws97{word-spacing:-4.160399px;}
.ws48{word-spacing:-4.088668px;}
.ws53{word-spacing:-3.945206px;}
.wsbd{word-spacing:-3.730013px;}
.ws85{word-spacing:-3.514820px;}
.ws63{word-spacing:-3.227896px;}
.wsb{word-spacing:-2.869241px;}
.ws8f{word-spacing:-2.654048px;}
.wsc9{word-spacing:-2.582317px;}
.wsc4{word-spacing:-2.510586px;}
.wsbc{word-spacing:-2.295393px;}
.wsaf{word-spacing:-1.936738px;}
.ws3f{word-spacing:-1.865007px;}
.ws99{word-spacing:-1.649813px;}
.wsae{word-spacing:-1.506351px;}
.wsb7{word-spacing:-1.362889px;}
.wsc5{word-spacing:-0.789041px;}
.wsa2{word-spacing:-0.613366px;}
.ws14{word-spacing:0.000000px;}
.wsb8{word-spacing:0.358655px;}
._4{margin-left:-8.349488px;}
._b{margin-left:-6.937409px;}
._7{margin-left:-5.571111px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._6{width:1.697632px;}
._5{width:2.840548px;}
._d{width:4.447321px;}
._c{width:5.643518px;}
._e{width:12.050811px;}
._10{width:17.263264px;}
._12{width:20.112010px;}
._15{width:21.500568px;}
._2{width:22.571352px;}
._a{width:24.484178px;}
._f{width:25.764232px;}
._9{width:27.305607px;}
._11{width:29.624912px;}
._8{width:33.307100px;}
._13{width:34.693902px;}
._14{width:37.261492px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs4{font-size:41.843100px;}
.fs0{font-size:47.820660px;}
.fs3{font-size:50.211660px;}
.fs5{font-size:59.775840px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.y3c{bottom:105.951000px;}
.yad{bottom:107.647500px;}
.y96{bottom:109.141500px;}
.y55{bottom:111.375000px;}
.ya3{bottom:113.625000px;}
.yc0{bottom:119.229000px;}
.yb8{bottom:122.217000px;}
.y3b{bottom:123.883500px;}
.y6f{bottom:125.206500px;}
.y84{bottom:128.194500px;}
.y3a{bottom:129.309000px;}
.y1e{bottom:133.414500px;}
.y9f{bottom:135.081000px;}
.y89{bottom:137.161500px;}
.yac{bottom:140.151000px;}
.y95{bottom:141.645000px;}
.y54{bottom:146.128500px;}
.ybf{bottom:151.732500px;}
.yb7{bottom:154.720500px;}
.y6e{bottom:157.710000px;}
.yc3{bottom:160.698000px;}
.y39{bottom:163.687500px;}
.y1d{bottom:165.918000px;}
.y83{bottom:169.665000px;}
.y9e{bottom:170.943000px;}
.yab{bottom:172.653000px;}
.y53{bottom:178.630500px;}
.y94{bottom:183.114000px;}
.yb5{bottom:187.224000px;}
.ybe{bottom:193.201500px;}
.yb6{bottom:193.734000px;}
.y38{bottom:196.191000px;}
.y1c{bottom:198.420000px;}
.y6d{bottom:199.179000px;}
.y82{bottom:202.168500px;}
.yaa{bottom:205.156500px;}
.y52{bottom:211.134000px;}
.y93{bottom:215.617500px;}
.ybd{bottom:225.705000px;}
.yb4{bottom:228.693000px;}
.y1b{bottom:230.923500px;}
.y6c{bottom:231.682500px;}
.y81{bottom:234.670500px;}
.y37{bottom:237.660000px;}
.y9d{bottom:243.637500px;}
.y92{bottom:248.121000px;}
.y51{bottom:252.603000px;}
.yc2{bottom:258.207000px;}
.yb3{bottom:261.196500px;}
.y1a{bottom:263.427000px;}
.y6b{bottom:264.186000px;}
.y80{bottom:267.174000px;}
.y36{bottom:270.163500px;}
.y9c{bottom:276.141000px;}
.y91{bottom:280.623000px;}
.y50{bottom:285.106500px;}
.yb2{bottom:293.700000px;}
.y6a{bottom:296.688000px;}
.y7f{bottom:299.677500px;}
.y19{bottom:304.896000px;}
.y88{bottom:308.643000px;}
.y35{bottom:311.632500px;}
.y90{bottom:313.126500px;}
.y4f{bottom:317.610000px;}
.yb1{bottom:326.202000px;}
.y69{bottom:330.685500px;}
.y7e{bottom:332.181000px;}
.y87{bottom:341.146500px;}
.y34{bottom:344.136000px;}
.y8f{bottom:345.630000px;}
.y18{bottom:346.365000px;}
.y4e{bottom:350.113500px;}
.yb0{bottom:361.695000px;}
.ya1{bottom:364.683000px;}
.y7d{bottom:373.650000px;}
.y68{bottom:375.144000px;}
.y33{bottom:376.638000px;}
.y8e{bottom:378.133500px;}
.y4c{bottom:382.615500px;}
.y17{bottom:387.835500px;}
.y4d{bottom:389.125500px;}
.ybc{bottom:397.186500px;}
.y7c{bottom:406.153500px;}
.y67{bottom:407.647500px;}
.y32{bottom:409.141500px;}
.y8d{bottom:410.635500px;}
.y4b{bottom:415.119000px;}
.y16{bottom:420.339000px;}
.yce{bottom:420.723000px;}
.y7b{bottom:438.655500px;}
.y66{bottom:440.151000px;}
.y31{bottom:441.645000px;}
.y8c{bottom:444.633000px;}
.y4a{bottom:447.622500px;}
.y15{bottom:452.841000px;}
.ycd{bottom:453.226500px;}
.y9b{bottom:456.589500px;}
.y7a{bottom:471.159000px;}
.y65{bottom:472.653000px;}
.y30{bottom:474.148500px;}
.y49{bottom:480.126000px;}
.y14{bottom:485.344500px;}
.y8b{bottom:489.091500px;}
.ycc{bottom:494.695500px;}
.y86{bottom:503.662500px;}
.y64{bottom:505.156500px;}
.y2f{bottom:506.650500px;}
.y79{bottom:512.628000px;}
.ya9{bottom:515.617500px;}
.y13{bottom:517.848000px;}
.y48{bottom:521.595000px;}
.ycb{bottom:527.199000px;}
.ya0{bottom:536.166000px;}
.y63{bottom:537.660000px;}
.y2e{bottom:539.154000px;}
.y78{bottom:545.131500px;}
.ya8{bottom:548.121000px;}
.y12{bottom:550.351500px;}
.y47{bottom:554.098500px;}
.yca{bottom:559.702500px;}
.yaf{bottom:568.668000px;}
.y62{bottom:570.163500px;}
.y2d{bottom:571.657500px;}
.y77{bottom:577.635000px;}
.ya7{bottom:580.623000px;}
.y11{bottom:582.853500px;}
.y46{bottom:586.600500px;}
.ybb{bottom:601.171500px;}
.y2c{bottom:604.161000px;}
.y76{bottom:610.138500px;}
.y61{bottom:611.632500px;}
.ya6{bottom:613.126500px;}
.y10{bottom:615.357000px;}
.y45{bottom:619.104000px;}
.yba{bottom:633.675000px;}
.y75{bottom:642.640500px;}
.y60{bottom:644.136000px;}
.y2b{bottom:645.630000px;}
.yf{bottom:647.860500px;}
.y44{bottom:651.607500px;}
.yc9{bottom:666.178500px;}
.y74{bottom:675.144000px;}
.y5f{bottom:676.638000px;}
.y2a{bottom:678.133500px;}
.ye{bottom:680.362500px;}
.ya5{bottom:681.121500px;}
.y85{bottom:684.111000px;}
.y43{bottom:693.076500px;}
.yc8{bottom:698.680500px;}
.y73{bottom:707.647500px;}
.y5e{bottom:709.141500px;}
.y29{bottom:710.635500px;}
.yd{bottom:712.866000px;}
.y8a{bottom:716.613000px;}
.y42{bottom:725.580000px;}
.yc7{bottom:731.184000px;}
.yb9{bottom:740.151000px;}
.y5d{bottom:741.645000px;}
.y28{bottom:743.139000px;}
.y72{bottom:749.116500px;}
.yc{bottom:754.336500px;}
.y41{bottom:758.083500px;}
.yc6{bottom:763.687500px;}
.y5c{bottom:774.148500px;}
.y27{bottom:775.642500px;}
.y9a{bottom:781.620000px;}
.y40{bottom:790.587000px;}
.yb{bottom:795.805500px;}
.yc5{bottom:805.156500px;}
.y5b{bottom:806.650500px;}
.y26{bottom:808.146000px;}
.y99{bottom:814.123500px;}
.y3f{bottom:823.089000px;}
.ya{bottom:823.374000px;}
.y25{bottom:843.637500px;}
.y98{bottom:846.625500px;}
.y5a{bottom:848.121000px;}
.yc1{bottom:853.135500px;}
.y3e{bottom:855.592500px;}
.y9{bottom:858.886500px;}
.ya2{bottom:864.559500px;}
.y97{bottom:879.129000px;}
.y59{bottom:880.623000px;}
.y24{bottom:888.096000px;}
.y8{bottom:891.097500px;}
.y3d{bottom:897.061500px;}
.yc4{bottom:911.632500px;}
.y58{bottom:913.126500px;}
.y71{bottom:920.598000px;}
.y7{bottom:929.565000px;}
.y57{bottom:947.124000px;}
.y70{bottom:953.101500px;}
.y23{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y56{bottom:982.615500px;}
.ya4{bottom:985.605000px;}
.y22{bottom:994.572000px;}
.yae{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y21{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h5{height:27.867505px;}
.h1{height:35.865495px;}
.h7{height:37.658745px;}
.h6{height:44.831880px;}
.h4{height:50.498638px;}
.h8{height:53.798265px;}
.h2{height:60.598349px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:102.910500px;}
.xe{left:104.254500px;}
.xd{left:105.349500px;}
.x4{left:106.359000px;}
.xf{left:114.454500px;}
.x10{left:121.243500px;}
.x6{left:125.559000px;}
.x11{left:128.715000px;}
.x14{left:149.086500px;}
.x15{left:151.131000px;}
.x1a{left:158.254500px;}
.x17{left:160.299000px;}
.x5{left:385.135500px;}
.x7{left:401.415000px;}
.xb{left:511.882500px;}
.xa{left:515.505000px;}
.x18{left:529.818000px;}
.x19{left:537.487500px;}
.x3{left:567.934500px;}
.x8{left:570.936000px;}
.x2{left:648.775500px;}
.x9{left:663.361500px;}
.x12{left:678.661500px;}
.x1{left:692.794500px;}
.x13{left:693.795000px;}
.xc{left:794.127000px;}
.x1b{left:803.163000px;}
@media print{
.v2{vertical-align:-19.290667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.146667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.892653pt;}
.ls5{letter-spacing:1.530262pt;}
.ls3{letter-spacing:2.975357pt;}
.ls1{letter-spacing:3.569430pt;}
.ls2{letter-spacing:20.785033pt;}
.ls6{letter-spacing:20.947906pt;}
.ls7{letter-spacing:24.826968pt;}
.ws1a{word-spacing:-63.760907pt;}
.ws4{word-spacing:-47.820667pt;}
.ws3{word-spacing:-47.285075pt;}
.ws10{word-spacing:-42.972178pt;}
.ws19{word-spacing:-42.971599pt;}
.ws3d{word-spacing:-42.507253pt;}
.ws88{word-spacing:-39.850567pt;}
.ws3c{word-spacing:-35.440431pt;}
.ws3b{word-spacing:-34.112079pt;}
.wsb9{word-spacing:-32.773106pt;}
.wsb5{word-spacing:-32.135497pt;}
.ws31{word-spacing:-31.880453pt;}
.ws5e{word-spacing:-31.242844pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws62{word-spacing:-16.832879pt;}
.ws8{word-spacing:-16.577836pt;}
.wsab{word-spacing:-16.514075pt;}
.wsb2{word-spacing:-15.940227pt;}
.wsc0{word-spacing:-15.685183pt;}
.ws90{word-spacing:-15.621422pt;}
.ws79{word-spacing:-15.430139pt;}
.ws4d{word-spacing:-15.302618pt;}
.wsc1{word-spacing:-15.238857pt;}
.ws58{word-spacing:-15.111335pt;}
.ws38{word-spacing:-14.856291pt;}
.ws65{word-spacing:-14.792530pt;}
.wsb3{word-spacing:-14.728769pt;}
.wsad{word-spacing:-14.601248pt;}
.wsd{word-spacing:-14.473726pt;}
.ws78{word-spacing:-14.346204pt;}
.ws93{word-spacing:-14.282443pt;}
.ws98{word-spacing:-13.963639pt;}
.ws66{word-spacing:-13.899878pt;}
.ws95{word-spacing:-13.836117pt;}
.ws60{word-spacing:-13.772356pt;}
.ws5a{word-spacing:-13.644834pt;}
.ws92{word-spacing:-13.581073pt;}
.ws29{word-spacing:-13.517312pt;}
.ws4c{word-spacing:-13.326029pt;}
.wscc{word-spacing:-13.198508pt;}
.ws76{word-spacing:-13.070986pt;}
.ws4b{word-spacing:-12.879703pt;}
.wscf{word-spacing:-12.624660pt;}
.ws4a{word-spacing:-12.560899pt;}
.wscd{word-spacing:-12.497138pt;}
.ws7b{word-spacing:-12.433377pt;}
.ws75{word-spacing:-12.369616pt;}
.ws73{word-spacing:-12.242094pt;}
.ws7a{word-spacing:-12.178333pt;}
.ws2b{word-spacing:-12.130985pt;}
.ws61{word-spacing:-12.114572pt;}
.ws96{word-spacing:-12.050811pt;}
.wsce{word-spacing:-11.859529pt;}
.ws39{word-spacing:-11.795768pt;}
.ws77{word-spacing:-11.732007pt;}
.ws5b{word-spacing:-11.668246pt;}
.ws71{word-spacing:-11.604485pt;}
.ws87{word-spacing:-11.559739pt;}
.ws49{word-spacing:-11.540724pt;}
.ws86{word-spacing:-11.476963pt;}
.ws44{word-spacing:-11.413202pt;}
.ws16{word-spacing:-11.349441pt;}
.wsc2{word-spacing:-11.221920pt;}
.wsc3{word-spacing:-11.158159pt;}
.wsb6{word-spacing:-11.151185pt;}
.ws82{word-spacing:-11.095877pt;}
.ws23{word-spacing:-10.966876pt;}
.ws20{word-spacing:-10.944142pt;}
.wsd2{word-spacing:-10.917412pt;}
.ws17{word-spacing:-10.903115pt;}
.ws11{word-spacing:-10.839354pt;}
.ws9c{word-spacing:-10.793125pt;}
.ws3a{word-spacing:-10.775593pt;}
.ws8b{word-spacing:-10.732066pt;}
.ws54{word-spacing:-10.724967pt;}
.wsb0{word-spacing:-10.717735pt;}
.ws1e{word-spacing:-10.711832pt;}
.wsf{word-spacing:-10.648071pt;}
.ws15{word-spacing:-10.584311pt;}
.ws3e{word-spacing:-10.520550pt;}
.ws28{word-spacing:-10.498981pt;}
.ws26{word-spacing:-10.494023pt;}
.wsc7{word-spacing:-10.460598pt;}
.wsca{word-spacing:-10.457719pt;}
.ws5{word-spacing:-10.456789pt;}
.wsd3{word-spacing:-10.453188pt;}
.ws24{word-spacing:-10.438205pt;}
.ws12{word-spacing:-10.393028pt;}
.ws84{word-spacing:-10.367687pt;}
.wscb{word-spacing:-10.340163pt;}
.ws18{word-spacing:-10.329267pt;}
.ws1b{word-spacing:-10.265506pt;}
.ws55{word-spacing:-10.260557pt;}
.wsc{word-spacing:-10.201745pt;}
.ws2a{word-spacing:-10.180966pt;}
.ws2e{word-spacing:-10.151232pt;}
.ws13{word-spacing:-10.137984pt;}
.wse{word-spacing:-10.074223pt;}
.ws1d{word-spacing:-10.010462pt;}
.wsb1{word-spacing:-9.946701pt;}
.ws6a{word-spacing:-9.882941pt;}
.wsbf{word-spacing:-9.819180pt;}
.ws83{word-spacing:-9.755419pt;}
.wsbb{word-spacing:-9.691658pt;}
.ws45{word-spacing:-9.627897pt;}
.ws46{word-spacing:-9.564136pt;}
.ws7e{word-spacing:-9.502365pt;}
.wsbe{word-spacing:-9.500375pt;}
.ws9d{word-spacing:-9.488458pt;}
.ws1c{word-spacing:-9.436614pt;}
.ws6c{word-spacing:-9.372853pt;}
.ws56{word-spacing:-9.309092pt;}
.wsba{word-spacing:-9.181571pt;}
.ws70{word-spacing:-9.054049pt;}
.wsa{word-spacing:-8.990288pt;}
.ws69{word-spacing:-8.926527pt;}
.ws1f{word-spacing:-8.891188pt;}
.ws7c{word-spacing:-8.862766pt;}
.ws2f{word-spacing:-8.802162pt;}
.ws6{word-spacing:-8.671483pt;}
.wsa9{word-spacing:-8.543961pt;}
.ws36{word-spacing:-8.513265pt;}
.ws94{word-spacing:-8.480201pt;}
.wsac{word-spacing:-8.416440pt;}
.wsb4{word-spacing:-8.288918pt;}
.ws6f{word-spacing:-8.161396pt;}
.ws52{word-spacing:-8.097635pt;}
.ws50{word-spacing:-8.047128pt;}
.ws64{word-spacing:-8.033874pt;}
.ws57{word-spacing:-7.980492pt;}
.wsa4{word-spacing:-7.979417pt;}
.ws5f{word-spacing:-7.970113pt;}
.ws81{word-spacing:-7.906352pt;}
.ws7{word-spacing:-7.778831pt;}
.ws22{word-spacing:-7.743083pt;}
.wsa6{word-spacing:-7.734904pt;}
.ws72{word-spacing:-7.715070pt;}
.wsc6{word-spacing:-7.641497pt;}
.ws9f{word-spacing:-7.623504pt;}
.ws9e{word-spacing:-7.622625pt;}
.ws68{word-spacing:-7.523787pt;}
.ws9{word-spacing:-7.396265pt;}
.ws6d{word-spacing:-7.268743pt;}
.ws25{word-spacing:-7.251427pt;}
.ws27{word-spacing:-7.248298pt;}
.wsa8{word-spacing:-7.247123pt;}
.ws89{word-spacing:-7.214729pt;}
.ws8e{word-spacing:-7.206789pt;}
.ws9a{word-spacing:-7.204982pt;}
.wsa7{word-spacing:-7.122994pt;}
.ws8a{word-spacing:-7.090660pt;}
.ws51{word-spacing:-7.013700pt;}
.ws5c{word-spacing:-6.949939pt;}
.wsa0{word-spacing:-6.947402pt;}
.wsc8{word-spacing:-6.886178pt;}
.ws67{word-spacing:-6.822417pt;}
.ws59{word-spacing:-6.758656pt;}
.ws9b{word-spacing:-6.708587pt;}
.ws6b{word-spacing:-6.694895pt;}
.ws74{word-spacing:-6.631134pt;}
.ws91{word-spacing:-6.503612pt;}
.ws80{word-spacing:-6.376091pt;}
.ws43{word-spacing:-6.312330pt;}
.ws30{word-spacing:-6.278367pt;}
.ws2d{word-spacing:-6.216143pt;}
.ws21{word-spacing:-6.054351pt;}
.ws47{word-spacing:-5.993525pt;}
.ws8d{word-spacing:-5.968446pt;}
.ws34{word-spacing:-5.929764pt;}
.ws32{word-spacing:-5.906108pt;}
.ws8c{word-spacing:-5.869524pt;}
.ws4e{word-spacing:-5.802243pt;}
.ws37{word-spacing:-5.691831pt;}
.ws7d{word-spacing:-5.682920pt;}
.wsaa{word-spacing:-5.549410pt;}
.ws6e{word-spacing:-5.547199pt;}
.wsd0{word-spacing:-5.483438pt;}
.wsa1{word-spacing:-5.419677pt;}
.ws42{word-spacing:-5.292155pt;}
.ws40{word-spacing:-5.228394pt;}
.ws7f{word-spacing:-5.164633pt;}
.ws2c{word-spacing:-5.142596pt;}
.ws4f{word-spacing:-4.845829pt;}
.ws5d{word-spacing:-4.782068pt;}
.wsa5{word-spacing:-4.773148pt;}
.wsa3{word-spacing:-4.771115pt;}
.ws33{word-spacing:-4.615023pt;}
.wsd1{word-spacing:-4.208220pt;}
.ws41{word-spacing:-3.953176pt;}
.ws35{word-spacing:-3.861823pt;}
.ws97{word-spacing:-3.698133pt;}
.ws48{word-spacing:-3.634372pt;}
.ws53{word-spacing:-3.506850pt;}
.wsbd{word-spacing:-3.315567pt;}
.ws85{word-spacing:-3.124284pt;}
.ws63{word-spacing:-2.869241pt;}
.wsb{word-spacing:-2.550436pt;}
.ws8f{word-spacing:-2.359154pt;}
.wsc9{word-spacing:-2.295393pt;}
.wsc4{word-spacing:-2.231632pt;}
.wsbc{word-spacing:-2.040349pt;}
.wsaf{word-spacing:-1.721544pt;}
.ws3f{word-spacing:-1.657784pt;}
.ws99{word-spacing:-1.466501pt;}
.wsae{word-spacing:-1.338979pt;}
.wsb7{word-spacing:-1.211457pt;}
.wsc5{word-spacing:-0.701370pt;}
.wsa2{word-spacing:-0.545214pt;}
.ws14{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.318805pt;}
._4{margin-left:-7.421767pt;}
._b{margin-left:-6.166586pt;}
._7{margin-left:-4.952099pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._6{width:1.509006pt;}
._5{width:2.524931pt;}
._d{width:3.953175pt;}
._c{width:5.016460pt;}
._e{width:10.711832pt;}
._10{width:15.345124pt;}
._12{width:17.877342pt;}
._15{width:19.111616pt;}
._2{width:20.063424pt;}
._a{width:21.763714pt;}
._f{width:22.901540pt;}
._9{width:24.271651pt;}
._11{width:26.333256pt;}
._8{width:29.606311pt;}
._13{width:30.839024pt;}
._14{width:33.121326pt;}
.fs4{font-size:37.193867pt;}
.fs0{font-size:42.507253pt;}
.fs3{font-size:44.632587pt;}
.fs5{font-size:53.134080pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.y3c{bottom:94.178667pt;}
.yad{bottom:95.686667pt;}
.y96{bottom:97.014667pt;}
.y55{bottom:99.000000pt;}
.ya3{bottom:101.000000pt;}
.yc0{bottom:105.981333pt;}
.yb8{bottom:108.637333pt;}
.y3b{bottom:110.118667pt;}
.y6f{bottom:111.294667pt;}
.y84{bottom:113.950667pt;}
.y3a{bottom:114.941333pt;}
.y1e{bottom:118.590667pt;}
.y9f{bottom:120.072000pt;}
.y89{bottom:121.921333pt;}
.yac{bottom:124.578667pt;}
.y95{bottom:125.906667pt;}
.y54{bottom:129.892000pt;}
.ybf{bottom:134.873333pt;}
.yb7{bottom:137.529333pt;}
.y6e{bottom:140.186667pt;}
.yc3{bottom:142.842667pt;}
.y39{bottom:145.500000pt;}
.y1d{bottom:147.482667pt;}
.y83{bottom:150.813333pt;}
.y9e{bottom:151.949333pt;}
.yab{bottom:153.469333pt;}
.y53{bottom:158.782667pt;}
.y94{bottom:162.768000pt;}
.yb5{bottom:166.421333pt;}
.ybe{bottom:171.734667pt;}
.yb6{bottom:172.208000pt;}
.y38{bottom:174.392000pt;}
.y1c{bottom:176.373333pt;}
.y6d{bottom:177.048000pt;}
.y82{bottom:179.705333pt;}
.yaa{bottom:182.361333pt;}
.y52{bottom:187.674667pt;}
.y93{bottom:191.660000pt;}
.ybd{bottom:200.626667pt;}
.yb4{bottom:203.282667pt;}
.y1b{bottom:205.265333pt;}
.y6c{bottom:205.940000pt;}
.y81{bottom:208.596000pt;}
.y37{bottom:211.253333pt;}
.y9d{bottom:216.566667pt;}
.y92{bottom:220.552000pt;}
.y51{bottom:224.536000pt;}
.yc2{bottom:229.517333pt;}
.yb3{bottom:232.174667pt;}
.y1a{bottom:234.157333pt;}
.y6b{bottom:234.832000pt;}
.y80{bottom:237.488000pt;}
.y36{bottom:240.145333pt;}
.y9c{bottom:245.458667pt;}
.y91{bottom:249.442667pt;}
.y50{bottom:253.428000pt;}
.yb2{bottom:261.066667pt;}
.y6a{bottom:263.722667pt;}
.y7f{bottom:266.380000pt;}
.y19{bottom:271.018667pt;}
.y88{bottom:274.349333pt;}
.y35{bottom:277.006667pt;}
.y90{bottom:278.334667pt;}
.y4f{bottom:282.320000pt;}
.yb1{bottom:289.957333pt;}
.y69{bottom:293.942667pt;}
.y7e{bottom:295.272000pt;}
.y87{bottom:303.241333pt;}
.y34{bottom:305.898667pt;}
.y8f{bottom:307.226667pt;}
.y18{bottom:307.880000pt;}
.y4e{bottom:311.212000pt;}
.yb0{bottom:321.506667pt;}
.ya1{bottom:324.162667pt;}
.y7d{bottom:332.133333pt;}
.y68{bottom:333.461333pt;}
.y33{bottom:334.789333pt;}
.y8e{bottom:336.118667pt;}
.y4c{bottom:340.102667pt;}
.y17{bottom:344.742667pt;}
.y4d{bottom:345.889333pt;}
.ybc{bottom:353.054667pt;}
.y7c{bottom:361.025333pt;}
.y67{bottom:362.353333pt;}
.y32{bottom:363.681333pt;}
.y8d{bottom:365.009333pt;}
.y4b{bottom:368.994667pt;}
.y16{bottom:373.634667pt;}
.yce{bottom:373.976000pt;}
.y7b{bottom:389.916000pt;}
.y66{bottom:391.245333pt;}
.y31{bottom:392.573333pt;}
.y8c{bottom:395.229333pt;}
.y4a{bottom:397.886667pt;}
.y15{bottom:402.525333pt;}
.ycd{bottom:402.868000pt;}
.y9b{bottom:405.857333pt;}
.y7a{bottom:418.808000pt;}
.y65{bottom:420.136000pt;}
.y30{bottom:421.465333pt;}
.y49{bottom:426.778667pt;}
.y14{bottom:431.417333pt;}
.y8b{bottom:434.748000pt;}
.ycc{bottom:439.729333pt;}
.y86{bottom:447.700000pt;}
.y64{bottom:449.028000pt;}
.y2f{bottom:450.356000pt;}
.y79{bottom:455.669333pt;}
.ya9{bottom:458.326667pt;}
.y13{bottom:460.309333pt;}
.y48{bottom:463.640000pt;}
.ycb{bottom:468.621333pt;}
.ya0{bottom:476.592000pt;}
.y63{bottom:477.920000pt;}
.y2e{bottom:479.248000pt;}
.y78{bottom:484.561333pt;}
.ya8{bottom:487.218667pt;}
.y12{bottom:489.201333pt;}
.y47{bottom:492.532000pt;}
.yca{bottom:497.513333pt;}
.yaf{bottom:505.482667pt;}
.y62{bottom:506.812000pt;}
.y2d{bottom:508.140000pt;}
.y77{bottom:513.453333pt;}
.ya7{bottom:516.109333pt;}
.y11{bottom:518.092000pt;}
.y46{bottom:521.422667pt;}
.ybb{bottom:534.374667pt;}
.y2c{bottom:537.032000pt;}
.y76{bottom:542.345333pt;}
.y61{bottom:543.673333pt;}
.ya6{bottom:545.001333pt;}
.y10{bottom:546.984000pt;}
.y45{bottom:550.314667pt;}
.yba{bottom:563.266667pt;}
.y75{bottom:571.236000pt;}
.y60{bottom:572.565333pt;}
.y2b{bottom:573.893333pt;}
.yf{bottom:575.876000pt;}
.y44{bottom:579.206667pt;}
.yc9{bottom:592.158667pt;}
.y74{bottom:600.128000pt;}
.y5f{bottom:601.456000pt;}
.y2a{bottom:602.785333pt;}
.ye{bottom:604.766667pt;}
.ya5{bottom:605.441333pt;}
.y85{bottom:608.098667pt;}
.y43{bottom:616.068000pt;}
.yc8{bottom:621.049333pt;}
.y73{bottom:629.020000pt;}
.y5e{bottom:630.348000pt;}
.y29{bottom:631.676000pt;}
.yd{bottom:633.658667pt;}
.y8a{bottom:636.989333pt;}
.y42{bottom:644.960000pt;}
.yc7{bottom:649.941333pt;}
.yb9{bottom:657.912000pt;}
.y5d{bottom:659.240000pt;}
.y28{bottom:660.568000pt;}
.y72{bottom:665.881333pt;}
.yc{bottom:670.521333pt;}
.y41{bottom:673.852000pt;}
.yc6{bottom:678.833333pt;}
.y5c{bottom:688.132000pt;}
.y27{bottom:689.460000pt;}
.y9a{bottom:694.773333pt;}
.y40{bottom:702.744000pt;}
.yb{bottom:707.382667pt;}
.yc5{bottom:715.694667pt;}
.y5b{bottom:717.022667pt;}
.y26{bottom:718.352000pt;}
.y99{bottom:723.665333pt;}
.y3f{bottom:731.634667pt;}
.ya{bottom:731.888000pt;}
.y25{bottom:749.900000pt;}
.y98{bottom:752.556000pt;}
.y5a{bottom:753.885333pt;}
.yc1{bottom:758.342667pt;}
.y3e{bottom:760.526667pt;}
.y9{bottom:763.454667pt;}
.ya2{bottom:768.497333pt;}
.y97{bottom:781.448000pt;}
.y59{bottom:782.776000pt;}
.y24{bottom:789.418667pt;}
.y8{bottom:792.086667pt;}
.y3d{bottom:797.388000pt;}
.yc4{bottom:810.340000pt;}
.y58{bottom:811.668000pt;}
.y71{bottom:818.309333pt;}
.y7{bottom:826.280000pt;}
.y57{bottom:841.888000pt;}
.y70{bottom:847.201333pt;}
.y23{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y56{bottom:873.436000pt;}
.ya4{bottom:876.093333pt;}
.y22{bottom:884.064000pt;}
.yae{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y21{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h5{height:24.771115pt;}
.h1{height:31.880440pt;}
.h7{height:33.474440pt;}
.h6{height:39.850560pt;}
.h4{height:44.887678pt;}
.h8{height:47.820680pt;}
.h2{height:53.865199pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:91.476000pt;}
.xe{left:92.670667pt;}
.xd{left:93.644000pt;}
.x4{left:94.541333pt;}
.xf{left:101.737333pt;}
.x10{left:107.772000pt;}
.x6{left:111.608000pt;}
.x11{left:114.413333pt;}
.x14{left:132.521333pt;}
.x15{left:134.338667pt;}
.x1a{left:140.670667pt;}
.x17{left:142.488000pt;}
.x5{left:342.342667pt;}
.x7{left:356.813333pt;}
.xb{left:455.006667pt;}
.xa{left:458.226667pt;}
.x18{left:470.949333pt;}
.x19{left:477.766667pt;}
.x3{left:504.830667pt;}
.x8{left:507.498667pt;}
.x2{left:576.689333pt;}
.x9{left:589.654667pt;}
.x12{left:603.254667pt;}
.x1{left:615.817333pt;}
.x13{left:616.706667pt;}
.xc{left:705.890667pt;}
.x1b{left:713.922667pt;}
}




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