
    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_6ab2f5ee7e298283e0819253.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_841e7487328c7f4a38ea7308.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_6ca323de15f8ca786463fdd3.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_052e2c5b16a81e68090ecaa7.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_de8781b4ad383be9c9c08804.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;}
.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);}
.m2{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);}
.m9{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);}
.m14{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);}
.ma{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);}
.m18{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);}
.m15{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);}
.m27{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);}
.m1{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);}
.md{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m4{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);}
.m22{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);}
.m11{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);}
.m29{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);}
.m1c{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);}
.m23{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);}
.m25{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);}
.m1e{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);}
.m20{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);}
.m10{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);}
.m24{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);}
.m26{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);}
.m19{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);}
.m1a{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);}
.m28{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);}
.m21{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);}
.m1f{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);}
.m5{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);}
.m12{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);}
.m13{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);}
.mb{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);}
.m16{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);}
.mf{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);}
.m7{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);}
.m8{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);}
.me{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);}
.m1d{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);}
.m6{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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000751px;}
.ls8{letter-spacing:0.645579px;}
.ls7{letter-spacing:0.789041px;}
.ls3{letter-spacing:0.860772px;}
.ls2{letter-spacing:1.075965px;}
.lsd{letter-spacing:1.721544px;}
.lsc{letter-spacing:4.452808px;}
.lse{letter-spacing:23.383163px;}
.lsb{letter-spacing:23.408081px;}
.ls9{letter-spacing:23.630863px;}
.ls6{letter-spacing:23.658550px;}
.ls4{letter-spacing:23.723205px;}
.lsa{letter-spacing:23.860591px;}
.ls1{letter-spacing:26.112692px;}
.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;}
}
.wsab{word-spacing:-73.452564px;}
.ws8f{word-spacing:-72.806985px;}
.ws92{word-spacing:-72.591792px;}
.ws99{word-spacing:-72.520061px;}
.ws9a{word-spacing:-72.376599px;}
.ws20{word-spacing:-71.731020px;}
.ws5{word-spacing:-56.294489px;}
.ws82{word-spacing:-55.806734px;}
.wsa3{word-spacing:-55.232885px;}
.ws37{word-spacing:-55.017692px;}
.ws4a{word-spacing:-54.730768px;}
.ws8b{word-spacing:-54.515575px;}
.ws46{word-spacing:-54.013458px;}
.wsa4{word-spacing:-53.941727px;}
.ws3d{word-spacing:-53.726534px;}
.ws9c{word-spacing:-53.583072px;}
.ws6{word-spacing:-53.540018px;}
.ws3{word-spacing:-53.453941px;}
.ws45{word-spacing:-53.224417px;}
.ws4{word-spacing:-53.195710px;}
.ws17{word-spacing:-53.152686px;}
.ws27{word-spacing:-53.009224px;}
.ws51{word-spacing:-52.937493px;}
.ws7d{word-spacing:-52.865762px;}
.ws3e{word-spacing:-52.794031px;}
.ws7f{word-spacing:-52.650569px;}
.ws68{word-spacing:-52.578838px;}
.ws66{word-spacing:-52.507107px;}
.ws43{word-spacing:-52.435376px;}
.ws50{word-spacing:-52.363645px;}
.ws87{word-spacing:-52.148452px;}
.ws86{word-spacing:-52.076721px;}
.ws77{word-spacing:-52.004990px;}
.ws76{word-spacing:-51.933258px;}
.wsb{word-spacing:-51.861527px;}
.ws63{word-spacing:-51.789796px;}
.ws6b{word-spacing:-51.718065px;}
.ws6c{word-spacing:-51.574603px;}
.ws6f{word-spacing:-51.502872px;}
.ws88{word-spacing:-51.431141px;}
.ws8a{word-spacing:-51.287679px;}
.ws90{word-spacing:-51.072486px;}
.ws65{word-spacing:-51.000755px;}
.ws23{word-spacing:-50.857293px;}
.ws7e{word-spacing:-50.785562px;}
.ws24{word-spacing:-50.570369px;}
.ws6a{word-spacing:-50.498638px;}
.ws21{word-spacing:-50.283445px;}
.ws1c{word-spacing:-49.996521px;}
.ws3a{word-spacing:-49.924790px;}
.wsac{word-spacing:-49.853059px;}
.ws56{word-spacing:-49.781328px;}
.wsb1{word-spacing:-49.709597px;}
.ws1b{word-spacing:-49.637866px;}
.ws4d{word-spacing:-49.566135px;}
.ws54{word-spacing:-49.494404px;}
.ws11{word-spacing:-49.422673px;}
.ws4e{word-spacing:-49.350942px;}
.wsa5{word-spacing:-49.207480px;}
.ws2e{word-spacing:-49.064018px;}
.ws59{word-spacing:-48.992287px;}
.ws2d{word-spacing:-48.920556px;}
.ws19{word-spacing:-48.848825px;}
.ws1d{word-spacing:-48.777094px;}
.wsc{word-spacing:-48.705363px;}
.ws15{word-spacing:-48.633632px;}
.ws8{word-spacing:-48.561901px;}
.ws2c{word-spacing:-48.490170px;}
.ws95{word-spacing:-48.424738px;}
.ws25{word-spacing:-48.418439px;}
.wsae{word-spacing:-48.401422px;}
.wsb2{word-spacing:-48.347868px;}
.ws89{word-spacing:-48.347754px;}
.ws7{word-spacing:-48.346707px;}
.wsad{word-spacing:-48.346094px;}
.ws1e{word-spacing:-48.334258px;}
.ws1f{word-spacing:-48.274976px;}
.ws40{word-spacing:-48.203245px;}
.ws28{word-spacing:-48.131514px;}
.ws97{word-spacing:-48.073168px;}
.ws18{word-spacing:-48.059783px;}
.ws93{word-spacing:-47.999354px;}
.ws2b{word-spacing:-47.988052px;}
.ws12{word-spacing:-47.916321px;}
.ws13{word-spacing:-47.870599px;}
.ws9f{word-spacing:-47.864978px;}
.ws14{word-spacing:-47.844590px;}
.ws2a{word-spacing:-47.820660px;}
.ws33{word-spacing:-47.772859px;}
.ws22{word-spacing:-47.701128px;}
.ws3c{word-spacing:-47.629397px;}
.wsa{word-spacing:-47.414204px;}
.wsaf{word-spacing:-47.342473px;}
.ws6e{word-spacing:-47.199011px;}
.wsf{word-spacing:-47.127280px;}
.ws39{word-spacing:-47.055549px;}
.ws94{word-spacing:-46.983818px;}
.ws57{word-spacing:-46.912087px;}
.wsd{word-spacing:-46.840356px;}
.ws5c{word-spacing:-46.696894px;}
.ws8d{word-spacing:-46.625163px;}
.wsa9{word-spacing:-46.553432px;}
.ws60{word-spacing:-46.481701px;}
.ws49{word-spacing:-46.409970px;}
.ws8c{word-spacing:-46.338239px;}
.ws64{word-spacing:-46.266508px;}
.ws9d{word-spacing:-46.194777px;}
.ws61{word-spacing:-46.123046px;}
.ws26{word-spacing:-46.051315px;}
.wsa2{word-spacing:-45.979584px;}
.ws48{word-spacing:-45.907853px;}
.ws34{word-spacing:-45.836122px;}
.ws5f{word-spacing:-45.764391px;}
.ws9{word-spacing:-45.692660px;}
.ws8e{word-spacing:-45.620929px;}
.ws3b{word-spacing:-45.549198px;}
.wsa1{word-spacing:-45.405736px;}
.ws5a{word-spacing:-45.334005px;}
.ws78{word-spacing:-45.262274px;}
.ws4b{word-spacing:-45.190543px;}
.ws1a{word-spacing:-45.118812px;}
.ws5d{word-spacing:-45.047081px;}
.ws5e{word-spacing:-44.975350px;}
.ws85{word-spacing:-44.831887px;}
.ws55{word-spacing:-44.688425px;}
.wsa6{word-spacing:-44.616694px;}
.ws71{word-spacing:-44.544963px;}
.ws91{word-spacing:-44.473232px;}
.ws67{word-spacing:-44.401501px;}
.ws10{word-spacing:-44.329770px;}
.ws52{word-spacing:-44.258039px;}
.ws32{word-spacing:-44.042846px;}
.ws29{word-spacing:-43.899384px;}
.wsaa{word-spacing:-43.844342px;}
.ws47{word-spacing:-43.755922px;}
.ws7b{word-spacing:-43.684191px;}
.ws79{word-spacing:-43.540729px;}
.wsa0{word-spacing:-43.397267px;}
.ws73{word-spacing:-43.325536px;}
.ws35{word-spacing:-43.253805px;}
.ws4c{word-spacing:-43.182074px;}
.wsa8{word-spacing:-43.100248px;}
.ws7a{word-spacing:-43.038612px;}
.ws53{word-spacing:-42.895150px;}
.ws9b{word-spacing:-42.679957px;}
.wsa7{word-spacing:-42.608226px;}
.ws44{word-spacing:-42.536495px;}
.ws69{word-spacing:-42.321302px;}
.ws74{word-spacing:-42.177840px;}
.ws62{word-spacing:-42.034378px;}
.ws36{word-spacing:-41.962647px;}
.ws75{word-spacing:-41.890916px;}
.ws84{word-spacing:-41.747454px;}
.ws58{word-spacing:-41.603992px;}
.ws31{word-spacing:-41.532261px;}
.ws5b{word-spacing:-41.460530px;}
.wse{word-spacing:-41.317068px;}
.ws70{word-spacing:-41.245336px;}
.ws7c{word-spacing:-41.101874px;}
.ws6d{word-spacing:-41.030143px;}
.ws96{word-spacing:-40.886681px;}
.wsb0{word-spacing:-40.743219px;}
.ws41{word-spacing:-40.599757px;}
.ws80{word-spacing:-40.384564px;}
.ws38{word-spacing:-39.882447px;}
.ws2f{word-spacing:-39.738985px;}
.ws81{word-spacing:-39.667254px;}
.ws98{word-spacing:-39.308599px;}
.ws72{word-spacing:-39.236868px;}
.ws83{word-spacing:-38.949944px;}
.ws3f{word-spacing:-38.878213px;}
.ws42{word-spacing:-38.591289px;}
.ws4f{word-spacing:-38.519558px;}
.ws30{word-spacing:-38.447827px;}
.ws9e{word-spacing:-36.367627px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws16{word-spacing:0.000000px;}
._10{margin-left:-6.838356px;}
._6{margin-left:-5.786304px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._f{width:1.006785px;}
._5{width:2.008469px;}
._8{width:3.921294px;}
._9{width:5.021168px;}
._a{width:6.168865px;}
._13{width:17.556701px;}
._14{width:21.357106px;}
._2{width:22.523531px;}
._7{width:24.484178px;}
._e{width:25.584063px;}
._4{width:27.090414px;}
._15{width:29.935744px;}
._11{width:31.872482px;}
._b{width:32.900627px;}
._c{width:34.335247px;}
._d{width:35.862963px;}
._12{width:53.152686px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y3c{bottom:43.525500px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.y3b{bottom:107.647500px;}
.y5d{bottom:110.262000px;}
.ye0{bottom:116.613000px;}
.yf1{bottom:119.229000px;}
.yb1{bottom:121.843500px;}
.yd2{bottom:122.592000px;}
.y83{bottom:124.833000px;}
.y9b{bottom:125.206500px;}
.y6b{bottom:128.194500px;}
.y1e{bottom:128.598000px;}
.yc3{bottom:134.173500px;}
.yc9{bottom:137.161500px;}
.y3a{bottom:140.151000px;}
.yee{bottom:142.765500px;}
.ydf{bottom:149.116500px;}
.y5c{bottom:151.732500px;}
.yd1{bottom:155.094000px;}
.y9a{bottom:157.710000px;}
.y6a{bottom:160.698000px;}
.y1d{bottom:161.101500px;}
.yb0{bottom:163.314000px;}
.y82{bottom:166.302000px;}
.yc2{bottom:166.675500px;}
.yc8{bottom:169.665000px;}
.y39{bottom:172.653000px;}
.yed{bottom:175.269000px;}
.yde{bottom:181.620000px;}
.y5b{bottom:184.234500px;}
.yd0{bottom:187.597500px;}
.y99{bottom:190.212000px;}
.y69{bottom:193.201500px;}
.yaf{bottom:195.816000px;}
.y81{bottom:198.805500px;}
.yc1{bottom:199.179000px;}
.y98{bottom:202.168500px;}
.y1c{bottom:202.570500px;}
.y38{bottom:205.156500px;}
.yec{bottom:207.772500px;}
.yf2{bottom:211.134000px;}
.ydd{bottom:214.123500px;}
.y8f{bottom:216.738000px;}
.ycf{bottom:220.101000px;}
.y5a{bottom:225.705000px;}
.yae{bottom:228.319500px;}
.y80{bottom:231.309000px;}
.y97{bottom:234.670500px;}
.y54{bottom:240.648000px;}
.yc7{bottom:243.637500px;}
.y1b{bottom:244.041000px;}
.y37{bottom:246.625500px;}
.y8e{bottom:249.241500px;}
.yce{bottom:252.603000px;}
.y96{bottom:258.207000px;}
.yad{bottom:260.823000px;}
.y59{bottom:267.174000px;}
.y7f{bottom:272.778000px;}
.yc0{bottom:273.151500px;}
.yc6{bottom:276.141000px;}
.y1a{bottom:276.543000px;}
.y36{bottom:279.129000px;}
.y8d{bottom:281.745000px;}
.ye6{bottom:282.118500px;}
.y53{bottom:285.106500px;}
.y95{bottom:290.710500px;}
.yac{bottom:293.326500px;}
.y58{bottom:299.677500px;}
.y7e{bottom:305.281500px;}
.ybf{bottom:305.655000px;}
.yc5{bottom:308.643000px;}
.y35{bottom:311.632500px;}
.y8c{bottom:314.247000px;}
.y52{bottom:317.610000px;}
.y19{bottom:318.013500px;}
.yeb{bottom:323.214000px;}
.ye5{bottom:326.577000px;}
.y57{bottom:332.181000px;}
.yab{bottom:334.795500px;}
.y7d{bottom:337.785000px;}
.ybe{bottom:338.158500px;}
.yc4{bottom:341.146500px;}
.y34{bottom:344.136000px;}
.y51{bottom:350.113500px;}
.y18{bottom:350.515500px;}
.y8b{bottom:355.717500px;}
.ye4{bottom:359.079000px;}
.y68{bottom:364.683000px;}
.yaa{bottom:367.299000px;}
.y7c{bottom:370.287000px;}
.ybd{bottom:370.660500px;}
.y56{bottom:373.650000px;}
.y33{bottom:376.638000px;}
.y50{bottom:382.615500px;}
.y17{bottom:383.019000px;}
.ydc{bottom:385.605000px;}
.y8a{bottom:388.219500px;}
.ye3{bottom:391.582500px;}
.y67{bottom:397.186500px;}
.ya9{bottom:402.790500px;}
.y94{bottom:406.153500px;}
.y32{bottom:409.141500px;}
.y7b{bottom:411.757500px;}
.ybc{bottom:412.131000px;}
.y4f{bottom:415.119000px;}
.y16{bottom:415.522500px;}
.ydb{bottom:418.108500px;}
.y89{bottom:420.723000px;}
.ycd{bottom:424.086000px;}
.yea{bottom:429.690000px;}
.ya8{bottom:435.294000px;}
.y66{bottom:438.655500px;}
.ybb{bottom:444.633000px;}
.y4e{bottom:447.622500px;}
.y15{bottom:448.026000px;}
.y31{bottom:450.610500px;}
.y7a{bottom:453.226500px;}
.ycc{bottom:456.589500px;}
.ye9{bottom:462.192000px;}
.ya7{bottom:470.785500px;}
.y93{bottom:471.159000px;}
.yba{bottom:477.136500px;}
.y4d{bottom:480.126000px;}
.y14{bottom:480.528000px;}
.y30{bottom:483.114000px;}
.y79{bottom:485.730000px;}
.ycb{bottom:489.091500px;}
.y88{bottom:494.695500px;}
.ya6{bottom:503.289000px;}
.y92{bottom:503.662500px;}
.yb9{bottom:509.640000px;}
.y4c{bottom:512.628000px;}
.y13{bottom:513.031500px;}
.y2f{bottom:515.617500px;}
.y78{bottom:518.232000px;}
.yca{bottom:521.595000px;}
.y87{bottom:527.199000px;}
.y91{bottom:536.166000px;}
.ya5{bottom:544.758000px;}
.y65{bottom:545.131500px;}
.y12{bottom:545.535000px;}
.y2e{bottom:548.121000px;}
.y77{bottom:550.735500px;}
.yb8{bottom:551.109000px;}
.y4b{bottom:554.098500px;}
.y86{bottom:559.702500px;}
.yf0{bottom:568.668000px;}
.ya4{bottom:577.261500px;}
.y64{bottom:577.635000px;}
.y11{bottom:578.038500px;}
.y2d{bottom:580.623000px;}
.yb7{bottom:583.612500px;}
.y4a{bottom:586.600500px;}
.y76{bottom:592.204500px;}
.yef{bottom:601.171500px;}
.y63{bottom:610.138500px;}
.y10{bottom:610.540500px;}
.y2c{bottom:613.126500px;}
.yb6{bottom:616.116000px;}
.ya3{bottom:618.730500px;}
.y49{bottom:619.104000px;}
.yda{bottom:622.093500px;}
.y75{bottom:624.708000px;}
.ye2{bottom:628.071000px;}
.y62{bottom:642.640500px;}
.yf{bottom:643.044000px;}
.y2b{bottom:648.618000px;}
.y48{bottom:651.607500px;}
.yd9{bottom:654.595500px;}
.y74{bottom:657.211500px;}
.ya2{bottom:660.199500px;}
.ye1{bottom:660.574500px;}
.y85{bottom:666.178500px;}
.y90{bottom:675.144000px;}
.ye{bottom:675.547500px;}
.yb5{bottom:681.121500px;}
.y47{bottom:684.111000px;}
.yd8{bottom:687.099000px;}
.ya1{bottom:692.703000px;}
.y2a{bottom:693.076500px;}
.y73{bottom:698.680500px;}
.y84{bottom:707.647500px;}
.yd{bottom:708.051000px;}
.yb4{bottom:713.625000px;}
.y46{bottom:716.613000px;}
.yd7{bottom:719.602500px;}
.ya0{bottom:725.206500px;}
.y29{bottom:725.580000px;}
.ye8{bottom:731.184000px;}
.y72{bottom:740.151000px;}
.yb3{bottom:746.128500px;}
.y45{bottom:749.116500px;}
.yc{bottom:749.520000px;}
.yd6{bottom:752.106000px;}
.y55{bottom:758.083500px;}
.ye7{bottom:763.687500px;}
.y9f{bottom:766.675500px;}
.y28{bottom:767.049000px;}
.y71{bottom:772.653000px;}
.y61{bottom:781.620000px;}
.yd5{bottom:784.608000px;}
.yb2{bottom:787.597500px;}
.y44{bottom:790.587000px;}
.yb{bottom:790.989000px;}
.y9e{bottom:799.179000px;}
.y27{bottom:799.552500px;}
.y70{bottom:805.156500px;}
.y60{bottom:814.123500px;}
.yd4{bottom:817.111500px;}
.ya{bottom:817.750500px;}
.y43{bottom:823.089000px;}
.y26{bottom:832.056000px;}
.y9d{bottom:834.670500px;}
.y6f{bottom:837.660000px;}
.y5f{bottom:846.625500px;}
.yd3{bottom:852.603000px;}
.y9{bottom:854.443500px;}
.y42{bottom:855.592500px;}
.y25{bottom:864.559500px;}
.y9c{bottom:870.163500px;}
.y5e{bottom:879.129000px;}
.y8{bottom:887.031000px;}
.y41{bottom:888.096000px;}
.y24{bottom:897.061500px;}
.y6e{bottom:911.632500px;}
.y40{bottom:920.598000px;}
.y7{bottom:929.565000px;}
.y6d{bottom:944.136000px;}
.y3f{bottom:953.101500px;}
.y23{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y6c{bottom:976.638000px;}
.y3e{bottom:985.605000px;}
.y22{bottom:994.572000px;}
.y3d{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;}
.h1{height:35.865495px;}
.h4{height:50.498638px;}
.h5{height:53.798265px;}
.h2{height:60.598349px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:104.254500px;}
.xa{left:105.402000px;}
.x4{left:106.411500px;}
.xc{left:128.500500px;}
.xd{left:151.131000px;}
.xe{left:158.254500px;}
.xf{left:160.299000px;}
.x8{left:398.601000px;}
.x6{left:515.344500px;}
.x7{left:530.461500px;}
.x5{left:567.115500px;}
.x3{left:616.269000px;}
.x2{left:648.775500px;}
.x1{left:692.794500px;}
.x9{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000668pt;}
.ls8{letter-spacing:0.573848pt;}
.ls7{letter-spacing:0.701370pt;}
.ls3{letter-spacing:0.765131pt;}
.ls2{letter-spacing:0.956414pt;}
.lsd{letter-spacing:1.530262pt;}
.lsc{letter-spacing:3.958052pt;}
.lse{letter-spacing:20.785033pt;}
.lsb{letter-spacing:20.807184pt;}
.ls9{letter-spacing:21.005212pt;}
.ls6{letter-spacing:21.029823pt;}
.ls4{letter-spacing:21.087293pt;}
.lsa{letter-spacing:21.209414pt;}
.ls1{letter-spacing:23.211282pt;}
.wsab{word-spacing:-65.291168pt;}
.ws8f{word-spacing:-64.717320pt;}
.ws92{word-spacing:-64.526038pt;}
.ws99{word-spacing:-64.462277pt;}
.ws9a{word-spacing:-64.334755pt;}
.ws20{word-spacing:-63.760907pt;}
.ws5{word-spacing:-50.039546pt;}
.ws82{word-spacing:-49.605985pt;}
.wsa3{word-spacing:-49.095898pt;}
.ws37{word-spacing:-48.904615pt;}
.ws4a{word-spacing:-48.649572pt;}
.ws8b{word-spacing:-48.458289pt;}
.ws46{word-spacing:-48.011963pt;}
.wsa4{word-spacing:-47.948202pt;}
.ws3d{word-spacing:-47.756919pt;}
.ws9c{word-spacing:-47.629397pt;}
.ws6{word-spacing:-47.591127pt;}
.ws3{word-spacing:-47.514614pt;}
.ws45{word-spacing:-47.310593pt;}
.ws4{word-spacing:-47.285075pt;}
.ws17{word-spacing:-47.246832pt;}
.ws27{word-spacing:-47.119310pt;}
.ws51{word-spacing:-47.055549pt;}
.ws7d{word-spacing:-46.991788pt;}
.ws3e{word-spacing:-46.928027pt;}
.ws7f{word-spacing:-46.800505pt;}
.ws68{word-spacing:-46.736745pt;}
.ws66{word-spacing:-46.672984pt;}
.ws43{word-spacing:-46.609223pt;}
.ws50{word-spacing:-46.545462pt;}
.ws87{word-spacing:-46.354179pt;}
.ws86{word-spacing:-46.290418pt;}
.ws77{word-spacing:-46.226657pt;}
.ws76{word-spacing:-46.162896pt;}
.wsb{word-spacing:-46.099136pt;}
.ws63{word-spacing:-46.035375pt;}
.ws6b{word-spacing:-45.971614pt;}
.ws6c{word-spacing:-45.844092pt;}
.ws6f{word-spacing:-45.780331pt;}
.ws88{word-spacing:-45.716570pt;}
.ws8a{word-spacing:-45.589048pt;}
.ws90{word-spacing:-45.397766pt;}
.ws65{word-spacing:-45.334005pt;}
.ws23{word-spacing:-45.206483pt;}
.ws7e{word-spacing:-45.142722pt;}
.ws24{word-spacing:-44.951439pt;}
.ws6a{word-spacing:-44.887678pt;}
.ws21{word-spacing:-44.696396pt;}
.ws1c{word-spacing:-44.441352pt;}
.ws3a{word-spacing:-44.377591pt;}
.wsac{word-spacing:-44.313830pt;}
.ws56{word-spacing:-44.250069pt;}
.wsb1{word-spacing:-44.186308pt;}
.ws1b{word-spacing:-44.122547pt;}
.ws4d{word-spacing:-44.058787pt;}
.ws54{word-spacing:-43.995026pt;}
.ws11{word-spacing:-43.931265pt;}
.ws4e{word-spacing:-43.867504pt;}
.wsa5{word-spacing:-43.739982pt;}
.ws2e{word-spacing:-43.612460pt;}
.ws59{word-spacing:-43.548699pt;}
.ws2d{word-spacing:-43.484938pt;}
.ws19{word-spacing:-43.421177pt;}
.ws1d{word-spacing:-43.357417pt;}
.wsc{word-spacing:-43.293656pt;}
.ws15{word-spacing:-43.229895pt;}
.ws8{word-spacing:-43.166134pt;}
.ws2c{word-spacing:-43.102373pt;}
.ws95{word-spacing:-43.044212pt;}
.ws25{word-spacing:-43.038612pt;}
.wsae{word-spacing:-43.023486pt;}
.wsb2{word-spacing:-42.975883pt;}
.ws89{word-spacing:-42.975781pt;}
.ws7{word-spacing:-42.974851pt;}
.wsad{word-spacing:-42.974306pt;}
.ws1e{word-spacing:-42.963785pt;}
.ws1f{word-spacing:-42.911090pt;}
.ws40{word-spacing:-42.847329pt;}
.ws28{word-spacing:-42.783568pt;}
.ws97{word-spacing:-42.731705pt;}
.ws18{word-spacing:-42.719807pt;}
.ws93{word-spacing:-42.666092pt;}
.ws2b{word-spacing:-42.656047pt;}
.ws12{word-spacing:-42.592286pt;}
.ws13{word-spacing:-42.551644pt;}
.ws9f{word-spacing:-42.546647pt;}
.ws14{word-spacing:-42.528525pt;}
.ws2a{word-spacing:-42.507253pt;}
.ws33{word-spacing:-42.464764pt;}
.ws22{word-spacing:-42.401003pt;}
.ws3c{word-spacing:-42.337242pt;}
.wsa{word-spacing:-42.145959pt;}
.wsaf{word-spacing:-42.082198pt;}
.ws6e{word-spacing:-41.954677pt;}
.wsf{word-spacing:-41.890916pt;}
.ws39{word-spacing:-41.827155pt;}
.ws94{word-spacing:-41.763394pt;}
.ws57{word-spacing:-41.699633pt;}
.wsd{word-spacing:-41.635872pt;}
.ws5c{word-spacing:-41.508350pt;}
.ws8d{word-spacing:-41.444589pt;}
.wsa9{word-spacing:-41.380828pt;}
.ws60{word-spacing:-41.317068pt;}
.ws49{word-spacing:-41.253307pt;}
.ws8c{word-spacing:-41.189546pt;}
.ws64{word-spacing:-41.125785pt;}
.ws9d{word-spacing:-41.062024pt;}
.ws61{word-spacing:-40.998263pt;}
.ws26{word-spacing:-40.934502pt;}
.wsa2{word-spacing:-40.870741pt;}
.ws48{word-spacing:-40.806980pt;}
.ws34{word-spacing:-40.743219pt;}
.ws5f{word-spacing:-40.679458pt;}
.ws9{word-spacing:-40.615698pt;}
.ws8e{word-spacing:-40.551937pt;}
.ws3b{word-spacing:-40.488176pt;}
.wsa1{word-spacing:-40.360654pt;}
.ws5a{word-spacing:-40.296893pt;}
.ws78{word-spacing:-40.233132pt;}
.ws4b{word-spacing:-40.169371pt;}
.ws1a{word-spacing:-40.105610pt;}
.ws5d{word-spacing:-40.041849pt;}
.ws5e{word-spacing:-39.978088pt;}
.ws85{word-spacing:-39.850567pt;}
.ws55{word-spacing:-39.723045pt;}
.wsa6{word-spacing:-39.659284pt;}
.ws71{word-spacing:-39.595523pt;}
.ws91{word-spacing:-39.531762pt;}
.ws67{word-spacing:-39.468001pt;}
.ws10{word-spacing:-39.404240pt;}
.ws52{word-spacing:-39.340479pt;}
.ws32{word-spacing:-39.149197pt;}
.ws29{word-spacing:-39.021675pt;}
.wsaa{word-spacing:-38.972749pt;}
.ws47{word-spacing:-38.894153pt;}
.ws7b{word-spacing:-38.830392pt;}
.ws79{word-spacing:-38.702870pt;}
.wsa0{word-spacing:-38.575349pt;}
.ws73{word-spacing:-38.511588pt;}
.ws35{word-spacing:-38.447827pt;}
.ws4c{word-spacing:-38.384066pt;}
.wsa8{word-spacing:-38.311332pt;}
.ws7a{word-spacing:-38.256544pt;}
.ws53{word-spacing:-38.129022pt;}
.ws9b{word-spacing:-37.937739pt;}
.wsa7{word-spacing:-37.873979pt;}
.ws44{word-spacing:-37.810218pt;}
.ws69{word-spacing:-37.618935pt;}
.ws74{word-spacing:-37.491413pt;}
.ws62{word-spacing:-37.363891pt;}
.ws36{word-spacing:-37.300130pt;}
.ws75{word-spacing:-37.236369pt;}
.ws84{word-spacing:-37.108848pt;}
.ws58{word-spacing:-36.981326pt;}
.ws31{word-spacing:-36.917565pt;}
.ws5b{word-spacing:-36.853804pt;}
.wse{word-spacing:-36.726282pt;}
.ws70{word-spacing:-36.662521pt;}
.ws7c{word-spacing:-36.535000pt;}
.ws6d{word-spacing:-36.471239pt;}
.ws96{word-spacing:-36.343717pt;}
.wsb0{word-spacing:-36.216195pt;}
.ws41{word-spacing:-36.088673pt;}
.ws80{word-spacing:-35.897390pt;}
.ws38{word-spacing:-35.451064pt;}
.ws2f{word-spacing:-35.323542pt;}
.ws81{word-spacing:-35.259781pt;}
.ws98{word-spacing:-34.940977pt;}
.ws72{word-spacing:-34.877216pt;}
.ws83{word-spacing:-34.622172pt;}
.ws3f{word-spacing:-34.558411pt;}
.ws42{word-spacing:-34.303368pt;}
.ws4f{word-spacing:-34.239607pt;}
.ws30{word-spacing:-34.175846pt;}
.ws9e{word-spacing:-32.326780pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws16{word-spacing:0.000000pt;}
._10{margin-left:-6.078538pt;}
._6{margin-left:-5.143381pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._f{width:0.894920pt;}
._5{width:1.785305pt;}
._8{width:3.485595pt;}
._9{width:4.463260pt;}
._a{width:5.483436pt;}
._13{width:15.605957pt;}
._14{width:18.984094pt;}
._2{width:20.020916pt;}
._7{width:21.763714pt;}
._e{width:22.741389pt;}
._4{width:24.080368pt;}
._15{width:26.609550pt;}
._11{width:28.331095pt;}
._b{width:29.245002pt;}
._c{width:30.520220pt;}
._d{width:31.878189pt;}
._12{width:47.246832pt;}
.fs0{font-size:42.507253pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:38.689333pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.y3b{bottom:95.686667pt;}
.y5d{bottom:98.010667pt;}
.ye0{bottom:103.656000pt;}
.yf1{bottom:105.981333pt;}
.yb1{bottom:108.305333pt;}
.yd2{bottom:108.970667pt;}
.y83{bottom:110.962667pt;}
.y9b{bottom:111.294667pt;}
.y6b{bottom:113.950667pt;}
.y1e{bottom:114.309333pt;}
.yc3{bottom:119.265333pt;}
.yc9{bottom:121.921333pt;}
.y3a{bottom:124.578667pt;}
.yee{bottom:126.902667pt;}
.ydf{bottom:132.548000pt;}
.y5c{bottom:134.873333pt;}
.yd1{bottom:137.861333pt;}
.y9a{bottom:140.186667pt;}
.y6a{bottom:142.842667pt;}
.y1d{bottom:143.201333pt;}
.yb0{bottom:145.168000pt;}
.y82{bottom:147.824000pt;}
.yc2{bottom:148.156000pt;}
.yc8{bottom:150.813333pt;}
.y39{bottom:153.469333pt;}
.yed{bottom:155.794667pt;}
.yde{bottom:161.440000pt;}
.y5b{bottom:163.764000pt;}
.yd0{bottom:166.753333pt;}
.y99{bottom:169.077333pt;}
.y69{bottom:171.734667pt;}
.yaf{bottom:174.058667pt;}
.y81{bottom:176.716000pt;}
.yc1{bottom:177.048000pt;}
.y98{bottom:179.705333pt;}
.y1c{bottom:180.062667pt;}
.y38{bottom:182.361333pt;}
.yec{bottom:184.686667pt;}
.yf2{bottom:187.674667pt;}
.ydd{bottom:190.332000pt;}
.y8f{bottom:192.656000pt;}
.ycf{bottom:195.645333pt;}
.y5a{bottom:200.626667pt;}
.yae{bottom:202.950667pt;}
.y80{bottom:205.608000pt;}
.y97{bottom:208.596000pt;}
.y54{bottom:213.909333pt;}
.yc7{bottom:216.566667pt;}
.y1b{bottom:216.925333pt;}
.y37{bottom:219.222667pt;}
.y8e{bottom:221.548000pt;}
.yce{bottom:224.536000pt;}
.y96{bottom:229.517333pt;}
.yad{bottom:231.842667pt;}
.y59{bottom:237.488000pt;}
.y7f{bottom:242.469333pt;}
.yc0{bottom:242.801333pt;}
.yc6{bottom:245.458667pt;}
.y1a{bottom:245.816000pt;}
.y36{bottom:248.114667pt;}
.y8d{bottom:250.440000pt;}
.ye6{bottom:250.772000pt;}
.y53{bottom:253.428000pt;}
.y95{bottom:258.409333pt;}
.yac{bottom:260.734667pt;}
.y58{bottom:266.380000pt;}
.y7e{bottom:271.361333pt;}
.ybf{bottom:271.693333pt;}
.yc5{bottom:274.349333pt;}
.y35{bottom:277.006667pt;}
.y8c{bottom:279.330667pt;}
.y52{bottom:282.320000pt;}
.y19{bottom:282.678667pt;}
.yeb{bottom:287.301333pt;}
.ye5{bottom:290.290667pt;}
.y57{bottom:295.272000pt;}
.yab{bottom:297.596000pt;}
.y7d{bottom:300.253333pt;}
.ybe{bottom:300.585333pt;}
.yc4{bottom:303.241333pt;}
.y34{bottom:305.898667pt;}
.y51{bottom:311.212000pt;}
.y18{bottom:311.569333pt;}
.y8b{bottom:316.193333pt;}
.ye4{bottom:319.181333pt;}
.y68{bottom:324.162667pt;}
.yaa{bottom:326.488000pt;}
.y7c{bottom:329.144000pt;}
.ybd{bottom:329.476000pt;}
.y56{bottom:332.133333pt;}
.y33{bottom:334.789333pt;}
.y50{bottom:340.102667pt;}
.y17{bottom:340.461333pt;}
.ydc{bottom:342.760000pt;}
.y8a{bottom:345.084000pt;}
.ye3{bottom:348.073333pt;}
.y67{bottom:353.054667pt;}
.ya9{bottom:358.036000pt;}
.y94{bottom:361.025333pt;}
.y32{bottom:363.681333pt;}
.y7b{bottom:366.006667pt;}
.ybc{bottom:366.338667pt;}
.y4f{bottom:368.994667pt;}
.y16{bottom:369.353333pt;}
.ydb{bottom:371.652000pt;}
.y89{bottom:373.976000pt;}
.ycd{bottom:376.965333pt;}
.yea{bottom:381.946667pt;}
.ya8{bottom:386.928000pt;}
.y66{bottom:389.916000pt;}
.ybb{bottom:395.229333pt;}
.y4e{bottom:397.886667pt;}
.y15{bottom:398.245333pt;}
.y31{bottom:400.542667pt;}
.y7a{bottom:402.868000pt;}
.ycc{bottom:405.857333pt;}
.ye9{bottom:410.837333pt;}
.ya7{bottom:418.476000pt;}
.y93{bottom:418.808000pt;}
.yba{bottom:424.121333pt;}
.y4d{bottom:426.778667pt;}
.y14{bottom:427.136000pt;}
.y30{bottom:429.434667pt;}
.y79{bottom:431.760000pt;}
.ycb{bottom:434.748000pt;}
.y88{bottom:439.729333pt;}
.ya6{bottom:447.368000pt;}
.y92{bottom:447.700000pt;}
.yb9{bottom:453.013333pt;}
.y4c{bottom:455.669333pt;}
.y13{bottom:456.028000pt;}
.y2f{bottom:458.326667pt;}
.y78{bottom:460.650667pt;}
.yca{bottom:463.640000pt;}
.y87{bottom:468.621333pt;}
.y91{bottom:476.592000pt;}
.ya5{bottom:484.229333pt;}
.y65{bottom:484.561333pt;}
.y12{bottom:484.920000pt;}
.y2e{bottom:487.218667pt;}
.y77{bottom:489.542667pt;}
.yb8{bottom:489.874667pt;}
.y4b{bottom:492.532000pt;}
.y86{bottom:497.513333pt;}
.yf0{bottom:505.482667pt;}
.ya4{bottom:513.121333pt;}
.y64{bottom:513.453333pt;}
.y11{bottom:513.812000pt;}
.y2d{bottom:516.109333pt;}
.yb7{bottom:518.766667pt;}
.y4a{bottom:521.422667pt;}
.y76{bottom:526.404000pt;}
.yef{bottom:534.374667pt;}
.y63{bottom:542.345333pt;}
.y10{bottom:542.702667pt;}
.y2c{bottom:545.001333pt;}
.yb6{bottom:547.658667pt;}
.ya3{bottom:549.982667pt;}
.y49{bottom:550.314667pt;}
.yda{bottom:552.972000pt;}
.y75{bottom:555.296000pt;}
.ye2{bottom:558.285333pt;}
.y62{bottom:571.236000pt;}
.yf{bottom:571.594667pt;}
.y2b{bottom:576.549333pt;}
.y48{bottom:579.206667pt;}
.yd9{bottom:581.862667pt;}
.y74{bottom:584.188000pt;}
.ya2{bottom:586.844000pt;}
.ye1{bottom:587.177333pt;}
.y85{bottom:592.158667pt;}
.y90{bottom:600.128000pt;}
.ye{bottom:600.486667pt;}
.yb5{bottom:605.441333pt;}
.y47{bottom:608.098667pt;}
.yd8{bottom:610.754667pt;}
.ya1{bottom:615.736000pt;}
.y2a{bottom:616.068000pt;}
.y73{bottom:621.049333pt;}
.y84{bottom:629.020000pt;}
.yd{bottom:629.378667pt;}
.yb4{bottom:634.333333pt;}
.y46{bottom:636.989333pt;}
.yd7{bottom:639.646667pt;}
.ya0{bottom:644.628000pt;}
.y29{bottom:644.960000pt;}
.ye8{bottom:649.941333pt;}
.y72{bottom:657.912000pt;}
.yb3{bottom:663.225333pt;}
.y45{bottom:665.881333pt;}
.yc{bottom:666.240000pt;}
.yd6{bottom:668.538667pt;}
.y55{bottom:673.852000pt;}
.ye7{bottom:678.833333pt;}
.y9f{bottom:681.489333pt;}
.y28{bottom:681.821333pt;}
.y71{bottom:686.802667pt;}
.y61{bottom:694.773333pt;}
.yd5{bottom:697.429333pt;}
.yb2{bottom:700.086667pt;}
.y44{bottom:702.744000pt;}
.yb{bottom:703.101333pt;}
.y9e{bottom:710.381333pt;}
.y27{bottom:710.713333pt;}
.y70{bottom:715.694667pt;}
.y60{bottom:723.665333pt;}
.yd4{bottom:726.321333pt;}
.ya{bottom:726.889333pt;}
.y43{bottom:731.634667pt;}
.y26{bottom:739.605333pt;}
.y9d{bottom:741.929333pt;}
.y6f{bottom:744.586667pt;}
.y5f{bottom:752.556000pt;}
.yd3{bottom:757.869333pt;}
.y9{bottom:759.505333pt;}
.y42{bottom:760.526667pt;}
.y25{bottom:768.497333pt;}
.y9c{bottom:773.478667pt;}
.y5e{bottom:781.448000pt;}
.y8{bottom:788.472000pt;}
.y41{bottom:789.418667pt;}
.y24{bottom:797.388000pt;}
.y6e{bottom:810.340000pt;}
.y40{bottom:818.309333pt;}
.y7{bottom:826.280000pt;}
.y6d{bottom:839.232000pt;}
.y3f{bottom:847.201333pt;}
.y23{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y6c{bottom:868.122667pt;}
.y3e{bottom:876.093333pt;}
.y22{bottom:884.064000pt;}
.y3d{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;}
.h1{height:31.880440pt;}
.h4{height:44.887678pt;}
.h5{height:47.820680pt;}
.h2{height:53.865199pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:92.670667pt;}
.xa{left:93.690667pt;}
.x4{left:94.588000pt;}
.xc{left:114.222667pt;}
.xd{left:134.338667pt;}
.xe{left:140.670667pt;}
.xf{left:142.488000pt;}
.x8{left:354.312000pt;}
.x6{left:458.084000pt;}
.x7{left:471.521333pt;}
.x5{left:504.102667pt;}
.x3{left:547.794667pt;}
.x2{left:576.689333pt;}
.x1{left:615.817333pt;}
.x9{left:698.080000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  