
    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_38409dc9cb1d8512be5ab506.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_911a5290e1e9faef8e9857bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.159000;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_ccf2cde9929ba52debbcaf72.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_94fdc20c7c39b2a8b078203a.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_430c6b85e2e98b9d35ff2b0e.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_99d537de84342dc7dd9c65f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.md{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m9{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);}
.mb{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);}
.m1{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);}
.m26{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);}
.m16{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1b{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);}
.m12{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);}
.m21{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);}
.mf{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);}
.m10{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);}
.m6{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);}
.m20{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);}
.m24{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m13{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);}
.m19{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);}
.m1c{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);}
.m15{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);}
.ma{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.me{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);}
.m22{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);}
.m29{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);}
.m11{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);}
.m23{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1e{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);}
.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);}
.m4{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);}
.m7{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;}
.ls3{letter-spacing:4.536531px;}
.ls2{letter-spacing:22.752428px;}
.ls1{letter-spacing:23.383163px;}
.ls4{letter-spacing:32.740035px;}
.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;}
}
.ws1b{word-spacing:-71.731020px;}
.ws26{word-spacing:-54.874230px;}
.ws2a{word-spacing:-54.730768px;}
.ws5a{word-spacing:-54.587306px;}
.ws81{word-spacing:-54.443844px;}
.ws57{word-spacing:-54.085189px;}
.wsb{word-spacing:-54.013458px;}
.ws38{word-spacing:-53.798265px;}
.ws4{word-spacing:-53.798250px;}
.ws3{word-spacing:-53.453941px;}
.ws72{word-spacing:-53.367879px;}
.ws79{word-spacing:-53.224417px;}
.ws35{word-spacing:-53.152686px;}
.ws78{word-spacing:-53.080955px;}
.ws20{word-spacing:-52.937493px;}
.ws52{word-spacing:-52.865762px;}
.ws33{word-spacing:-52.507107px;}
.wsa{word-spacing:-51.861527px;}
.ws1f{word-spacing:-51.718065px;}
.ws75{word-spacing:-51.502872px;}
.ws7{word-spacing:-51.431141px;}
.ws3a{word-spacing:-51.359410px;}
.ws7e{word-spacing:-51.215948px;}
.ws53{word-spacing:-51.144217px;}
.ws7c{word-spacing:-50.929024px;}
.ws56{word-spacing:-50.785562px;}
.ws51{word-spacing:-50.713831px;}
.ws8d{word-spacing:-50.355176px;}
.ws39{word-spacing:-50.283445px;}
.ws47{word-spacing:-50.211714px;}
.ws71{word-spacing:-50.068252px;}
.ws73{word-spacing:-49.996521px;}
.ws55{word-spacing:-49.853059px;}
.ws7f{word-spacing:-49.709597px;}
.ws18{word-spacing:-49.637866px;}
.ws8{word-spacing:-49.566135px;}
.ws7d{word-spacing:-49.422673px;}
.ws7a{word-spacing:-49.350942px;}
.ws16{word-spacing:-49.135749px;}
.ws48{word-spacing:-48.992287px;}
.ws3f{word-spacing:-48.920556px;}
.ws46{word-spacing:-48.848825px;}
.ws37{word-spacing:-48.777094px;}
.ws13{word-spacing:-48.705363px;}
.ws6{word-spacing:-48.633632px;}
.ws28{word-spacing:-48.561901px;}
.ws14{word-spacing:-48.490170px;}
.wsf{word-spacing:-48.418438px;}
.ws10{word-spacing:-48.359652px;}
.ws5{word-spacing:-48.346707px;}
.ws80{word-spacing:-48.344969px;}
.ws85{word-spacing:-48.343934px;}
.ws7b{word-spacing:-48.343607px;}
.ws21{word-spacing:-48.274976px;}
.ws22{word-spacing:-48.203245px;}
.ws34{word-spacing:-48.131514px;}
.ws27{word-spacing:-48.059783px;}
.wsd{word-spacing:-47.988052px;}
.ws36{word-spacing:-47.916321px;}
.ws1c{word-spacing:-47.844590px;}
.ws25{word-spacing:-47.820660px;}
.ws5f{word-spacing:-47.772859px;}
.ws4d{word-spacing:-47.701128px;}
.ws15{word-spacing:-47.629397px;}
.ws70{word-spacing:-47.557666px;}
.ws58{word-spacing:-47.485935px;}
.ws64{word-spacing:-47.414204px;}
.ws88{word-spacing:-47.342473px;}
.ws77{word-spacing:-47.127280px;}
.ws44{word-spacing:-47.055549px;}
.ws3d{word-spacing:-46.983818px;}
.ws6e{word-spacing:-46.912087px;}
.ws59{word-spacing:-46.840356px;}
.ws91{word-spacing:-46.768625px;}
.ws1a{word-spacing:-46.696894px;}
.ws19{word-spacing:-46.656696px;}
.ws4a{word-spacing:-46.625163px;}
.ws12{word-spacing:-46.553432px;}
.ws2c{word-spacing:-46.481701px;}
.ws32{word-spacing:-46.409970px;}
.ws3b{word-spacing:-46.338239px;}
.ws41{word-spacing:-46.266508px;}
.ws82{word-spacing:-46.194777px;}
.ws1d{word-spacing:-46.123046px;}
.ws60{word-spacing:-46.051315px;}
.ws3c{word-spacing:-45.979584px;}
.ws29{word-spacing:-45.907853px;}
.wse{word-spacing:-45.836122px;}
.ws2e{word-spacing:-45.620929px;}
.ws2f{word-spacing:-45.334005px;}
.ws84{word-spacing:-45.262274px;}
.ws4f{word-spacing:-45.190543px;}
.ws30{word-spacing:-45.118812px;}
.ws65{word-spacing:-45.047081px;}
.ws50{word-spacing:-44.975350px;}
.ws40{word-spacing:-44.903619px;}
.ws49{word-spacing:-44.831887px;}
.ws8a{word-spacing:-44.760156px;}
.ws86{word-spacing:-44.688425px;}
.ws2b{word-spacing:-44.473232px;}
.ws24{word-spacing:-44.329770px;}
.ws83{word-spacing:-44.258039px;}
.ws61{word-spacing:-44.186308px;}
.ws54{word-spacing:-44.042846px;}
.ws17{word-spacing:-43.971115px;}
.ws62{word-spacing:-43.899384px;}
.ws3e{word-spacing:-43.755922px;}
.ws45{word-spacing:-43.684191px;}
.ws8c{word-spacing:-43.540729px;}
.ws89{word-spacing:-43.468998px;}
.ws5b{word-spacing:-43.325536px;}
.ws23{word-spacing:-43.253805px;}
.wsc{word-spacing:-42.966881px;}
.ws8b{word-spacing:-42.751688px;}
.ws74{word-spacing:-42.679957px;}
.ws87{word-spacing:-42.608226px;}
.ws6f{word-spacing:-42.464764px;}
.ws42{word-spacing:-42.321302px;}
.ws63{word-spacing:-42.106109px;}
.ws4e{word-spacing:-42.034378px;}
.ws9{word-spacing:-41.890916px;}
.ws4b{word-spacing:-41.675723px;}
.ws2d{word-spacing:-41.460530px;}
.ws1e{word-spacing:-41.388799px;}
.ws76{word-spacing:-41.173605px;}
.ws8e{word-spacing:-40.671488px;}
.ws4c{word-spacing:-40.241102px;}
.ws43{word-spacing:-40.169371px;}
.ws5c{word-spacing:-39.452061px;}
.ws90{word-spacing:-39.021675px;}
.ws66{word-spacing:-38.232634px;}
.ws31{word-spacing:-37.802248px;}
.ws8f{word-spacing:-36.582820px;}
.ws6c{word-spacing:-31.561636px;}
.ws6b{word-spacing:-31.226891px;}
.ws67{word-spacing:-30.939967px;}
.ws2{word-spacing:-30.892146px;}
.ws6a{word-spacing:-30.844326px;}
.ws68{word-spacing:-30.748684px;}
.ws6d{word-spacing:-30.653043px;}
.ws69{word-spacing:-30.557402px;}
.ws0{word-spacing:-29.461138px;}
.ws1{word-spacing:-29.457527px;}
.ws5d{word-spacing:-28.309831px;}
.ws11{word-spacing:0.000000px;}
.ws5e{word-spacing:183.631334px;}
._e{margin-left:-9.315470px;}
._5{margin-left:-5.920201px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._6{width:1.382018px;}
._4{width:2.668393px;}
._d{width:4.447321px;}
._c{width:6.371089px;}
._1c{width:12.462069px;}
._10{width:16.584211px;}
._f{width:19.558654px;}
._b{width:21.045879px;}
._2{width:22.523531px;}
._7{width:24.106403px;}
._9{width:25.239728px;}
._8{width:26.908695px;}
._a{width:28.764136px;}
._21{width:32.068546px;}
._1d{width:83.351410px;}
._1f{width:106.353148px;}
._20{width:109.318029px;}
._1e{width:167.568374px;}
._18{width:235.947136px;}
._13{width:245.319986px;}
._15{width:246.515502px;}
._17{width:255.888352px;}
._11{width:386.773498px;}
._19{width:398.059174px;}
._14{width:420.056677px;}
._1b{width:430.625043px;}
._16{width:581.642688px;}
._1a{width:592.928363px;}
._12{width:604.214039px;}
.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;}
.y1f{bottom:57.723000px;}
.y1e{bottom:71.919000px;}
.y8d{bottom:105.934500px;}
.y3b{bottom:107.647500px;}
.y109{bottom:115.845000px;}
.y4e{bottom:116.613000px;}
.y5f{bottom:118.108500px;}
.y93{bottom:122.592000px;}
.y14a{bottom:124.833000px;}
.y156{bottom:133.798500px;}
.y6f{bottom:137.161500px;}
.yff{bottom:137.968500px;}
.y8c{bottom:138.438000px;}
.y135{bottom:139.777500px;}
.y3a{bottom:140.151000px;}
.y108{bottom:148.348500px;}
.y4d{bottom:149.116500px;}
.y5e{bottom:150.610500px;}
.y92{bottom:155.094000px;}
.yfe{bottom:159.264000px;}
.y149{bottom:166.302000px;}
.y6e{bottom:169.665000px;}
.y8b{bottom:170.941500px;}
.y134{bottom:172.279500px;}
.y39{bottom:172.653000px;}
.yab{bottom:173.772000px;}
.y1d{bottom:174.157500px;}
.yfd{bottom:180.558000px;}
.y107{bottom:180.852000px;}
.y4c{bottom:181.620000px;}
.y5d{bottom:183.114000px;}
.y91{bottom:187.597500px;}
.yaa{bottom:195.066000px;}
.y113{bottom:196.564500px;}
.y148{bottom:198.805500px;}
.yfc{bottom:201.853500px;}
.y6d{bottom:202.168500px;}
.y8a{bottom:203.445000px;}
.y133{bottom:204.783000px;}
.y38{bottom:205.156500px;}
.y1c{bottom:206.661000px;}
.y11b{bottom:208.146000px;}
.y106{bottom:213.354000px;}
.yd3{bottom:213.738000px;}
.y4b{bottom:214.123500px;}
.y5c{bottom:215.617500px;}
.ya9{bottom:216.361500px;}
.y90{bottom:220.101000px;}
.yfb{bottom:223.149000px;}
.y112{bottom:229.066500px;}
.y147{bottom:231.309000px;}
.yd2{bottom:235.032000px;}
.y89{bottom:237.442500px;}
.ya8{bottom:237.657000px;}
.y37{bottom:237.660000px;}
.y155{bottom:240.274500px;}
.y6c{bottom:243.637500px;}
.yfa{bottom:244.444500px;}
.y105{bottom:245.857500px;}
.y132{bottom:246.252000px;}
.y5b{bottom:248.121000px;}
.y1b{bottom:248.130000px;}
.y11a{bottom:252.603000px;}
.y4a{bottom:255.592500px;}
.yd1{bottom:256.327500px;}
.ya7{bottom:258.952500px;}
.y8f{bottom:261.570000px;}
.yf9{bottom:265.738500px;}
.y36{bottom:270.163500px;}
.y146{bottom:272.778000px;}
.y6b{bottom:276.141000px;}
.yd0{bottom:277.623000px;}
.y104{bottom:278.361000px;}
.y131{bottom:278.755500px;}
.ya6{bottom:280.246500px;}
.yc0{bottom:280.623000px;}
.y1a{bottom:280.633500px;}
.y88{bottom:281.901000px;}
.y5a{bottom:282.118500px;}
.y119{bottom:285.106500px;}
.yf8{bottom:287.034000px;}
.y49{bottom:288.096000px;}
.y8e{bottom:294.073500px;}
.ycf{bottom:298.918500px;}
.ya5{bottom:301.542000px;}
.y154{bottom:305.281500px;}
.yf7{bottom:308.329500px;}
.y6a{bottom:308.643000px;}
.y103{bottom:310.864500px;}
.y130{bottom:311.259000px;}
.y35{bottom:311.632500px;}
.ybf{bottom:313.126500px;}
.y19{bottom:313.135500px;}
.y145{bottom:314.247000px;}
.y87{bottom:314.403000px;}
.y118{bottom:317.610000px;}
.yce{bottom:320.212500px;}
.y48{bottom:320.598000px;}
.ya4{bottom:322.837500px;}
.y59{bottom:326.577000px;}
.yf6{bottom:329.625000px;}
.y69{bottom:341.146500px;}
.ycd{bottom:341.508000px;}
.y102{bottom:343.366500px;}
.ya3{bottom:344.133000px;}
.y34{bottom:344.136000px;}
.ybe{bottom:345.630000px;}
.y18{bottom:345.639000px;}
.y144{bottom:346.750500px;}
.y86{bottom:346.906500px;}
.y117{bottom:350.113500px;}
.yf5{bottom:350.919000px;}
.y12f{bottom:352.728000px;}
.y47{bottom:353.101500px;}
.y58{bottom:359.079000px;}
.ycc{bottom:362.803500px;}
.ya2{bottom:365.427000px;}
.yf4{bottom:372.214500px;}
.y68{bottom:373.650000px;}
.y101{bottom:375.870000px;}
.y33{bottom:376.638000px;}
.ybd{bottom:378.133500px;}
.y17{bottom:378.142500px;}
.y143{bottom:379.254000px;}
.y85{bottom:379.410000px;}
.y116{bottom:382.615500px;}
.ycb{bottom:384.099000px;}
.y12e{bottom:385.231500px;}
.y46{bottom:385.605000px;}
.ya1{bottom:386.722500px;}
.y57{bottom:391.582500px;}
.yf3{bottom:393.510000px;}
.yca{bottom:405.393000px;}
.y67{bottom:406.153500px;}
.ya0{bottom:408.018000px;}
.y100{bottom:408.373500px;}
.y32{bottom:409.141500px;}
.ybc{bottom:410.635500px;}
.y16{bottom:410.646000px;}
.y153{bottom:411.757500px;}
.y84{bottom:411.913500px;}
.yf2{bottom:414.805500px;}
.y115{bottom:415.119000px;}
.y12d{bottom:417.735000px;}
.y45{bottom:418.108500px;}
.y142{bottom:420.723000px;}
.y56{bottom:424.086000px;}
.yc9{bottom:426.688500px;}
.y9f{bottom:429.313500px;}
.yf1{bottom:436.099500px;}
.y66{bottom:438.655500px;}
.y31{bottom:441.645000px;}
.ybb{bottom:443.139000px;}
.y15{bottom:443.148000px;}
.y83{bottom:444.415500px;}
.y114{bottom:447.622500px;}
.yc8{bottom:447.984000px;}
.y9e{bottom:450.607500px;}
.y44{bottom:450.610500px;}
.y141{bottom:453.226500px;}
.y55{bottom:456.589500px;}
.yf0{bottom:457.395000px;}
.y12c{bottom:459.204000px;}
.y111{bottom:465.555000px;}
.yc7{bottom:469.279500px;}
.y65{bottom:471.159000px;}
.y9d{bottom:471.903000px;}
.y30{bottom:474.148500px;}
.yba{bottom:475.642500px;}
.y14{bottom:475.651500px;}
.y82{bottom:476.919000px;}
.yef{bottom:478.690500px;}
.y43{bottom:483.114000px;}
.y140{bottom:485.730000px;}
.y54{bottom:489.091500px;}
.y12b{bottom:491.707500px;}
.y9c{bottom:493.198500px;}
.y110{bottom:498.058500px;}
.yc6{bottom:499.585500px;}
.yee{bottom:499.986000px;}
.y2f{bottom:506.650500px;}
.yb9{bottom:508.146000px;}
.y13{bottom:508.155000px;}
.y64{bottom:512.628000px;}
.y9b{bottom:514.494000px;}
.y42{bottom:515.617500px;}
.y152{bottom:518.232000px;}
.y81{bottom:518.388000px;}
.yc5{bottom:520.881000px;}
.yed{bottom:521.280000px;}
.y53{bottom:521.595000px;}
.y12a{bottom:524.209500px;}
.y13f{bottom:527.199000px;}
.y10f{bottom:530.562000px;}
.y9a{bottom:535.788000px;}
.y2e{bottom:539.154000px;}
.y12{bottom:540.658500px;}
.yec{bottom:542.575500px;}
.y63{bottom:545.131500px;}
.yc4{bottom:546.478500px;}
.y41{bottom:548.121000px;}
.yb8{bottom:549.615000px;}
.y80{bottom:550.891500px;}
.y52{bottom:554.098500px;}
.y13e{bottom:559.702500px;}
.y10e{bottom:563.064000px;}
.yeb{bottom:563.871000px;}
.y129{bottom:565.680000px;}
.y97{bottom:566.095500px;}
.y158{bottom:568.668000px;}
.y11{bottom:573.160500px;}
.y2d{bottom:574.645500px;}
.y62{bottom:577.635000px;}
.y40{bottom:580.623000px;}
.yb7{bottom:582.118500px;}
.yc3{bottom:582.340500px;}
.y7f{bottom:583.395000px;}
.yea{bottom:585.166500px;}
.y51{bottom:586.600500px;}
.y96{bottom:587.391000px;}
.y13d{bottom:592.204500px;}
.y10d{bottom:595.567500px;}
.y128{bottom:598.183500px;}
.y157{bottom:601.171500px;}
.y10{bottom:605.664000px;}
.ye9{bottom:606.462000px;}
.y98{bottom:608.686500px;}
.y61{bottom:610.138500px;}
.y3f{bottom:613.126500px;}
.yb6{bottom:614.620500px;}
.y7e{bottom:615.898500px;}
.y2c{bottom:619.104000px;}
.y151{bottom:624.708000px;}
.ye8{bottom:627.756000px;}
.y10c{bottom:628.071000px;}
.y99{bottom:629.982000px;}
.y13c{bottom:633.675000px;}
.y127{bottom:639.652500px;}
.yb5{bottom:647.124000px;}
.yf{bottom:647.133000px;}
.y7d{bottom:648.400500px;}
.y3e{bottom:648.618000px;}
.ye7{bottom:649.051500px;}
.y2b{bottom:651.607500px;}
.y95{bottom:655.615500px;}
.y50{bottom:660.574500px;}
.y150{bottom:666.178500px;}
.ye6{bottom:670.347000px;}
.y126{bottom:672.156000px;}
.y13b{bottom:675.144000px;}
.yb4{bottom:679.627500px;}
.y7c{bottom:680.904000px;}
.y60{bottom:684.111000px;}
.ye{bottom:688.603500px;}
.y94{bottom:691.476000px;}
.ye5{bottom:691.642500px;}
.y2a{bottom:693.076500px;}
.y14f{bottom:698.680500px;}
.y125{bottom:704.658000px;}
.y13a{bottom:707.647500px;}
.yb3{bottom:712.131000px;}
.ye4{bottom:712.936500px;}
.y7b{bottom:713.407500px;}
.yd{bottom:716.172000px;}
.yc2{bottom:716.613000px;}
.y29{bottom:725.580000px;}
.ye3{bottom:734.232000px;}
.y139{bottom:740.151000px;}
.y124{bottom:746.128500px;}
.yc1{bottom:749.116500px;}
.yc{bottom:752.040000px;}
.yb2{bottom:753.600000px;}
.ye2{bottom:755.527500px;}
.y28{bottom:758.083500px;}
.y14e{bottom:772.653000px;}
.ye1{bottom:776.823000px;}
.y123{bottom:778.630500px;}
.y7a{bottom:779.679000px;}
.y138{bottom:781.620000px;}
.yb1{bottom:786.103500px;}
.yb{bottom:787.908000px;}
.y27{bottom:790.587000px;}
.ye0{bottom:798.117000px;}
.y79{bottom:800.974500px;}
.y14d{bottom:805.156500px;}
.y122{bottom:811.134000px;}
.y137{bottom:814.123500px;}
.ya{bottom:815.656500px;}
.yb0{bottom:818.605500px;}
.ydf{bottom:819.412500px;}
.y78{bottom:822.270000px;}
.y26{bottom:823.089000px;}
.yde{bottom:840.708000px;}
.y77{bottom:843.565500px;}
.y136{bottom:846.625500px;}
.yaf{bottom:851.109000px;}
.y9{bottom:851.346000px;}
.y121{bottom:852.603000px;}
.y25{bottom:855.592500px;}
.ydd{bottom:862.003500px;}
.y10b{bottom:864.559500px;}
.y76{bottom:864.859500px;}
.y14c{bottom:879.129000px;}
.ydc{bottom:883.297500px;}
.yae{bottom:883.612500px;}
.y120{bottom:885.106500px;}
.y75{bottom:886.155000px;}
.y8{bottom:887.232000px;}
.y24{bottom:888.096000px;}
.y10a{bottom:897.061500px;}
.ydb{bottom:904.593000px;}
.y74{bottom:907.450500px;}
.y14b{bottom:911.632500px;}
.yad{bottom:916.116000px;}
.y23{bottom:920.598000px;}
.yda{bottom:925.888500px;}
.y11f{bottom:926.577000px;}
.y73{bottom:928.746000px;}
.y7{bottom:929.565000px;}
.yd9{bottom:947.184000px;}
.yac{bottom:950.113500px;}
.y22{bottom:953.101500px;}
.y72{bottom:959.052000px;}
.y11e{bottom:959.079000px;}
.y4f{bottom:962.068500px;}
.yd8{bottom:968.478000px;}
.y6{bottom:969.913500px;}
.y21{bottom:985.605000px;}
.yd7{bottom:989.773500px;}
.y71{bottom:991.176000px;}
.y11d{bottom:991.582500px;}
.y3d{bottom:994.572000px;}
.yd6{bottom:1011.069000px;}
.y20{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y11c{bottom:1024.086000px;}
.y70{bottom:1027.038000px;}
.y3c{bottom:1027.074000px;}
.yd5{bottom:1041.376500px;}
.y4{bottom:1059.577500px;}
.yd4{bottom:1062.672000px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h2{height:43.468980px;}
.h5{height:50.498638px;}
.h6{height:53.798265px;}
.h3{height:60.598349px;}
.h4{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:104.254500px;}
.x4{left:106.299000px;}
.x10{left:108.561000px;}
.x6{left:125.053500px;}
.xf{left:145.548000px;}
.x1c{left:150.345000px;}
.x24{left:156.910500px;}
.x23{left:159.223500px;}
.x22{left:160.299000px;}
.xc{left:173.886000px;}
.x1e{left:202.231500px;}
.x12{left:226.882500px;}
.x11{left:237.934500px;}
.x5{left:242.881500px;}
.x13{left:252.090000px;}
.x7{left:287.502000px;}
.x20{left:307.930500px;}
.x14{left:330.792000px;}
.x15{left:404.197500px;}
.x16{left:446.046000px;}
.x21{left:447.723000px;}
.x17{left:481.576500px;}
.x9{left:515.344500px;}
.xb{left:554.043000px;}
.xa{left:565.053000px;}
.x18{left:567.117000px;}
.x1a{left:569.716500px;}
.x19{left:583.597500px;}
.x8{left:589.389000px;}
.x1b{left:600.531000px;}
.x3{left:616.269000px;}
.x1f{left:636.237000px;}
.x2{left:648.775500px;}
.x1d{left:676.491000px;}
.x1{left:692.101500px;}
.xd{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:4.032472pt;}
.ls2{letter-spacing:20.224380pt;}
.ls1{letter-spacing:20.785033pt;}
.ls4{letter-spacing:29.102254pt;}
.ws1b{word-spacing:-63.760907pt;}
.ws26{word-spacing:-48.777094pt;}
.ws2a{word-spacing:-48.649572pt;}
.ws5a{word-spacing:-48.522050pt;}
.ws81{word-spacing:-48.394528pt;}
.ws57{word-spacing:-48.075724pt;}
.wsb{word-spacing:-48.011963pt;}
.ws38{word-spacing:-47.820680pt;}
.ws4{word-spacing:-47.820667pt;}
.ws3{word-spacing:-47.514614pt;}
.ws72{word-spacing:-47.438115pt;}
.ws79{word-spacing:-47.310593pt;}
.ws35{word-spacing:-47.246832pt;}
.ws78{word-spacing:-47.183071pt;}
.ws20{word-spacing:-47.055549pt;}
.ws52{word-spacing:-46.991788pt;}
.ws33{word-spacing:-46.672984pt;}
.wsa{word-spacing:-46.099136pt;}
.ws1f{word-spacing:-45.971614pt;}
.ws75{word-spacing:-45.780331pt;}
.ws7{word-spacing:-45.716570pt;}
.ws3a{word-spacing:-45.652809pt;}
.ws7e{word-spacing:-45.525287pt;}
.ws53{word-spacing:-45.461526pt;}
.ws7c{word-spacing:-45.270244pt;}
.ws56{word-spacing:-45.142722pt;}
.ws51{word-spacing:-45.078961pt;}
.ws8d{word-spacing:-44.760156pt;}
.ws39{word-spacing:-44.696396pt;}
.ws47{word-spacing:-44.632635pt;}
.ws71{word-spacing:-44.505113pt;}
.ws73{word-spacing:-44.441352pt;}
.ws55{word-spacing:-44.313830pt;}
.ws7f{word-spacing:-44.186308pt;}
.ws18{word-spacing:-44.122547pt;}
.ws8{word-spacing:-44.058787pt;}
.ws7d{word-spacing:-43.931265pt;}
.ws7a{word-spacing:-43.867504pt;}
.ws16{word-spacing:-43.676221pt;}
.ws48{word-spacing:-43.548699pt;}
.ws3f{word-spacing:-43.484938pt;}
.ws46{word-spacing:-43.421177pt;}
.ws37{word-spacing:-43.357417pt;}
.ws13{word-spacing:-43.293656pt;}
.ws6{word-spacing:-43.229895pt;}
.ws28{word-spacing:-43.166134pt;}
.ws14{word-spacing:-43.102373pt;}
.wsf{word-spacing:-43.038612pt;}
.ws10{word-spacing:-42.986357pt;}
.ws5{word-spacing:-42.974851pt;}
.ws80{word-spacing:-42.973306pt;}
.ws85{word-spacing:-42.972386pt;}
.ws7b{word-spacing:-42.972095pt;}
.ws21{word-spacing:-42.911090pt;}
.ws22{word-spacing:-42.847329pt;}
.ws34{word-spacing:-42.783568pt;}
.ws27{word-spacing:-42.719807pt;}
.wsd{word-spacing:-42.656047pt;}
.ws36{word-spacing:-42.592286pt;}
.ws1c{word-spacing:-42.528525pt;}
.ws25{word-spacing:-42.507253pt;}
.ws5f{word-spacing:-42.464764pt;}
.ws4d{word-spacing:-42.401003pt;}
.ws15{word-spacing:-42.337242pt;}
.ws70{word-spacing:-42.273481pt;}
.ws58{word-spacing:-42.209720pt;}
.ws64{word-spacing:-42.145959pt;}
.ws88{word-spacing:-42.082198pt;}
.ws77{word-spacing:-41.890916pt;}
.ws44{word-spacing:-41.827155pt;}
.ws3d{word-spacing:-41.763394pt;}
.ws6e{word-spacing:-41.699633pt;}
.ws59{word-spacing:-41.635872pt;}
.ws91{word-spacing:-41.572111pt;}
.ws1a{word-spacing:-41.508350pt;}
.ws19{word-spacing:-41.472618pt;}
.ws4a{word-spacing:-41.444589pt;}
.ws12{word-spacing:-41.380828pt;}
.ws2c{word-spacing:-41.317068pt;}
.ws32{word-spacing:-41.253307pt;}
.ws3b{word-spacing:-41.189546pt;}
.ws41{word-spacing:-41.125785pt;}
.ws82{word-spacing:-41.062024pt;}
.ws1d{word-spacing:-40.998263pt;}
.ws60{word-spacing:-40.934502pt;}
.ws3c{word-spacing:-40.870741pt;}
.ws29{word-spacing:-40.806980pt;}
.wse{word-spacing:-40.743219pt;}
.ws2e{word-spacing:-40.551937pt;}
.ws2f{word-spacing:-40.296893pt;}
.ws84{word-spacing:-40.233132pt;}
.ws4f{word-spacing:-40.169371pt;}
.ws30{word-spacing:-40.105610pt;}
.ws65{word-spacing:-40.041849pt;}
.ws50{word-spacing:-39.978088pt;}
.ws40{word-spacing:-39.914328pt;}
.ws49{word-spacing:-39.850567pt;}
.ws8a{word-spacing:-39.786806pt;}
.ws86{word-spacing:-39.723045pt;}
.ws2b{word-spacing:-39.531762pt;}
.ws24{word-spacing:-39.404240pt;}
.ws83{word-spacing:-39.340479pt;}
.ws61{word-spacing:-39.276719pt;}
.ws54{word-spacing:-39.149197pt;}
.ws17{word-spacing:-39.085436pt;}
.ws62{word-spacing:-39.021675pt;}
.ws3e{word-spacing:-38.894153pt;}
.ws45{word-spacing:-38.830392pt;}
.ws8c{word-spacing:-38.702870pt;}
.ws89{word-spacing:-38.639109pt;}
.ws5b{word-spacing:-38.511588pt;}
.ws23{word-spacing:-38.447827pt;}
.wsc{word-spacing:-38.192783pt;}
.ws8b{word-spacing:-38.001500pt;}
.ws74{word-spacing:-37.937739pt;}
.ws87{word-spacing:-37.873979pt;}
.ws6f{word-spacing:-37.746457pt;}
.ws42{word-spacing:-37.618935pt;}
.ws63{word-spacing:-37.427652pt;}
.ws4e{word-spacing:-37.363891pt;}
.ws9{word-spacing:-37.236369pt;}
.ws4b{word-spacing:-37.045087pt;}
.ws2d{word-spacing:-36.853804pt;}
.ws1e{word-spacing:-36.790043pt;}
.ws76{word-spacing:-36.598760pt;}
.ws8e{word-spacing:-36.152434pt;}
.ws4c{word-spacing:-35.769869pt;}
.ws43{word-spacing:-35.706108pt;}
.ws5c{word-spacing:-35.068499pt;}
.ws90{word-spacing:-34.685933pt;}
.ws66{word-spacing:-33.984563pt;}
.ws31{word-spacing:-33.601998pt;}
.ws8f{word-spacing:-32.518062pt;}
.ws6c{word-spacing:-28.054787pt;}
.ws6b{word-spacing:-27.757236pt;}
.ws67{word-spacing:-27.502193pt;}
.ws2{word-spacing:-27.459686pt;}
.ws6a{word-spacing:-27.417178pt;}
.ws68{word-spacing:-27.332164pt;}
.ws6d{word-spacing:-27.247149pt;}
.ws69{word-spacing:-27.162135pt;}
.ws0{word-spacing:-26.187678pt;}
.ws1{word-spacing:-26.184468pt;}
.ws5d{word-spacing:-25.164294pt;}
.ws11{word-spacing:0.000000pt;}
.ws5e{word-spacing:163.227853pt;}
._e{margin-left:-8.280418pt;}
._5{margin-left:-5.262400pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._6{width:1.228460pt;}
._4{width:2.371905pt;}
._d{width:3.953175pt;}
._c{width:5.663190pt;}
._1c{width:11.077395pt;}
._10{width:14.741521pt;}
._f{width:17.385470pt;}
._b{width:18.707448pt;}
._2{width:20.020916pt;}
._7{width:21.427914pt;}
._9{width:22.435314pt;}
._8{width:23.918840pt;}
._a{width:25.568121pt;}
._21{width:28.505374pt;}
._1d{width:74.090143pt;}
._1f{width:94.536131pt;}
._20{width:97.171581pt;}
._1e{width:148.949666pt;}
._18{width:209.730788pt;}
._13{width:218.062210pt;}
._15{width:219.124891pt;}
._17{width:227.456313pt;}
._11{width:343.798665pt;}
._19{width:353.830377pt;}
._14{width:373.383713pt;}
._1b{width:382.777816pt;}
._16{width:517.015722pt;}
._1a{width:527.047434pt;}
._12{width:537.079146pt;}
.fs0{font-size:42.507253pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:51.309333pt;}
.y1e{bottom:63.928000pt;}
.y8d{bottom:94.164000pt;}
.y3b{bottom:95.686667pt;}
.y109{bottom:102.973333pt;}
.y4e{bottom:103.656000pt;}
.y5f{bottom:104.985333pt;}
.y93{bottom:108.970667pt;}
.y14a{bottom:110.962667pt;}
.y156{bottom:118.932000pt;}
.y6f{bottom:121.921333pt;}
.yff{bottom:122.638667pt;}
.y8c{bottom:123.056000pt;}
.y135{bottom:124.246667pt;}
.y3a{bottom:124.578667pt;}
.y108{bottom:131.865333pt;}
.y4d{bottom:132.548000pt;}
.y5e{bottom:133.876000pt;}
.y92{bottom:137.861333pt;}
.yfe{bottom:141.568000pt;}
.y149{bottom:147.824000pt;}
.y6e{bottom:150.813333pt;}
.y8b{bottom:151.948000pt;}
.y134{bottom:153.137333pt;}
.y39{bottom:153.469333pt;}
.yab{bottom:154.464000pt;}
.y1d{bottom:154.806667pt;}
.yfd{bottom:160.496000pt;}
.y107{bottom:160.757333pt;}
.y4c{bottom:161.440000pt;}
.y5d{bottom:162.768000pt;}
.y91{bottom:166.753333pt;}
.yaa{bottom:173.392000pt;}
.y113{bottom:174.724000pt;}
.y148{bottom:176.716000pt;}
.yfc{bottom:179.425333pt;}
.y6d{bottom:179.705333pt;}
.y8a{bottom:180.840000pt;}
.y133{bottom:182.029333pt;}
.y38{bottom:182.361333pt;}
.y1c{bottom:183.698667pt;}
.y11b{bottom:185.018667pt;}
.y106{bottom:189.648000pt;}
.yd3{bottom:189.989333pt;}
.y4b{bottom:190.332000pt;}
.y5c{bottom:191.660000pt;}
.ya9{bottom:192.321333pt;}
.y90{bottom:195.645333pt;}
.yfb{bottom:198.354667pt;}
.y112{bottom:203.614667pt;}
.y147{bottom:205.608000pt;}
.yd2{bottom:208.917333pt;}
.y89{bottom:211.060000pt;}
.ya8{bottom:211.250667pt;}
.y37{bottom:211.253333pt;}
.y155{bottom:213.577333pt;}
.y6c{bottom:216.566667pt;}
.yfa{bottom:217.284000pt;}
.y105{bottom:218.540000pt;}
.y132{bottom:218.890667pt;}
.y5b{bottom:220.552000pt;}
.y1b{bottom:220.560000pt;}
.y11a{bottom:224.536000pt;}
.y4a{bottom:227.193333pt;}
.yd1{bottom:227.846667pt;}
.ya7{bottom:230.180000pt;}
.y8f{bottom:232.506667pt;}
.yf9{bottom:236.212000pt;}
.y36{bottom:240.145333pt;}
.y146{bottom:242.469333pt;}
.y6b{bottom:245.458667pt;}
.yd0{bottom:246.776000pt;}
.y104{bottom:247.432000pt;}
.y131{bottom:247.782667pt;}
.ya6{bottom:249.108000pt;}
.yc0{bottom:249.442667pt;}
.y1a{bottom:249.452000pt;}
.y88{bottom:250.578667pt;}
.y5a{bottom:250.772000pt;}
.y119{bottom:253.428000pt;}
.yf8{bottom:255.141333pt;}
.y49{bottom:256.085333pt;}
.y8e{bottom:261.398667pt;}
.ycf{bottom:265.705333pt;}
.ya5{bottom:268.037333pt;}
.y154{bottom:271.361333pt;}
.yf7{bottom:274.070667pt;}
.y6a{bottom:274.349333pt;}
.y103{bottom:276.324000pt;}
.y130{bottom:276.674667pt;}
.y35{bottom:277.006667pt;}
.ybf{bottom:278.334667pt;}
.y19{bottom:278.342667pt;}
.y145{bottom:279.330667pt;}
.y87{bottom:279.469333pt;}
.y118{bottom:282.320000pt;}
.yce{bottom:284.633333pt;}
.y48{bottom:284.976000pt;}
.ya4{bottom:286.966667pt;}
.y59{bottom:290.290667pt;}
.yf6{bottom:293.000000pt;}
.y69{bottom:303.241333pt;}
.ycd{bottom:303.562667pt;}
.y102{bottom:305.214667pt;}
.ya3{bottom:305.896000pt;}
.y34{bottom:305.898667pt;}
.ybe{bottom:307.226667pt;}
.y18{bottom:307.234667pt;}
.y144{bottom:308.222667pt;}
.y86{bottom:308.361333pt;}
.y117{bottom:311.212000pt;}
.yf5{bottom:311.928000pt;}
.y12f{bottom:313.536000pt;}
.y47{bottom:313.868000pt;}
.y58{bottom:319.181333pt;}
.ycc{bottom:322.492000pt;}
.ya2{bottom:324.824000pt;}
.yf4{bottom:330.857333pt;}
.y68{bottom:332.133333pt;}
.y101{bottom:334.106667pt;}
.y33{bottom:334.789333pt;}
.ybd{bottom:336.118667pt;}
.y17{bottom:336.126667pt;}
.y143{bottom:337.114667pt;}
.y85{bottom:337.253333pt;}
.y116{bottom:340.102667pt;}
.ycb{bottom:341.421333pt;}
.y12e{bottom:342.428000pt;}
.y46{bottom:342.760000pt;}
.ya1{bottom:343.753333pt;}
.y57{bottom:348.073333pt;}
.yf3{bottom:349.786667pt;}
.yca{bottom:360.349333pt;}
.y67{bottom:361.025333pt;}
.ya0{bottom:362.682667pt;}
.y100{bottom:362.998667pt;}
.y32{bottom:363.681333pt;}
.ybc{bottom:365.009333pt;}
.y16{bottom:365.018667pt;}
.y153{bottom:366.006667pt;}
.y84{bottom:366.145333pt;}
.yf2{bottom:368.716000pt;}
.y115{bottom:368.994667pt;}
.y12d{bottom:371.320000pt;}
.y45{bottom:371.652000pt;}
.y142{bottom:373.976000pt;}
.y56{bottom:376.965333pt;}
.yc9{bottom:379.278667pt;}
.y9f{bottom:381.612000pt;}
.yf1{bottom:387.644000pt;}
.y66{bottom:389.916000pt;}
.y31{bottom:392.573333pt;}
.ybb{bottom:393.901333pt;}
.y15{bottom:393.909333pt;}
.y83{bottom:395.036000pt;}
.y114{bottom:397.886667pt;}
.yc8{bottom:398.208000pt;}
.y9e{bottom:400.540000pt;}
.y44{bottom:400.542667pt;}
.y141{bottom:402.868000pt;}
.y55{bottom:405.857333pt;}
.yf0{bottom:406.573333pt;}
.y12c{bottom:408.181333pt;}
.y111{bottom:413.826667pt;}
.yc7{bottom:417.137333pt;}
.y65{bottom:418.808000pt;}
.y9d{bottom:419.469333pt;}
.y30{bottom:421.465333pt;}
.yba{bottom:422.793333pt;}
.y14{bottom:422.801333pt;}
.y82{bottom:423.928000pt;}
.yef{bottom:425.502667pt;}
.y43{bottom:429.434667pt;}
.y140{bottom:431.760000pt;}
.y54{bottom:434.748000pt;}
.y12b{bottom:437.073333pt;}
.y9c{bottom:438.398667pt;}
.y110{bottom:442.718667pt;}
.yc6{bottom:444.076000pt;}
.yee{bottom:444.432000pt;}
.y2f{bottom:450.356000pt;}
.yb9{bottom:451.685333pt;}
.y13{bottom:451.693333pt;}
.y64{bottom:455.669333pt;}
.y9b{bottom:457.328000pt;}
.y42{bottom:458.326667pt;}
.y152{bottom:460.650667pt;}
.y81{bottom:460.789333pt;}
.yc5{bottom:463.005333pt;}
.yed{bottom:463.360000pt;}
.y53{bottom:463.640000pt;}
.y12a{bottom:465.964000pt;}
.y13f{bottom:468.621333pt;}
.y10f{bottom:471.610667pt;}
.y9a{bottom:476.256000pt;}
.y2e{bottom:479.248000pt;}
.y12{bottom:480.585333pt;}
.yec{bottom:482.289333pt;}
.y63{bottom:484.561333pt;}
.yc4{bottom:485.758667pt;}
.y41{bottom:487.218667pt;}
.yb8{bottom:488.546667pt;}
.y80{bottom:489.681333pt;}
.y52{bottom:492.532000pt;}
.y13e{bottom:497.513333pt;}
.y10e{bottom:500.501333pt;}
.yeb{bottom:501.218667pt;}
.y129{bottom:502.826667pt;}
.y97{bottom:503.196000pt;}
.y158{bottom:505.482667pt;}
.y11{bottom:509.476000pt;}
.y2d{bottom:510.796000pt;}
.y62{bottom:513.453333pt;}
.y40{bottom:516.109333pt;}
.yb7{bottom:517.438667pt;}
.yc3{bottom:517.636000pt;}
.y7f{bottom:518.573333pt;}
.yea{bottom:520.148000pt;}
.y51{bottom:521.422667pt;}
.y96{bottom:522.125333pt;}
.y13d{bottom:526.404000pt;}
.y10d{bottom:529.393333pt;}
.y128{bottom:531.718667pt;}
.y157{bottom:534.374667pt;}
.y10{bottom:538.368000pt;}
.ye9{bottom:539.077333pt;}
.y98{bottom:541.054667pt;}
.y61{bottom:542.345333pt;}
.y3f{bottom:545.001333pt;}
.yb6{bottom:546.329333pt;}
.y7e{bottom:547.465333pt;}
.y2c{bottom:550.314667pt;}
.y151{bottom:555.296000pt;}
.ye8{bottom:558.005333pt;}
.y10c{bottom:558.285333pt;}
.y99{bottom:559.984000pt;}
.y13c{bottom:563.266667pt;}
.y127{bottom:568.580000pt;}
.yb5{bottom:575.221333pt;}
.yf{bottom:575.229333pt;}
.y7d{bottom:576.356000pt;}
.y3e{bottom:576.549333pt;}
.ye7{bottom:576.934667pt;}
.y2b{bottom:579.206667pt;}
.y95{bottom:582.769333pt;}
.y50{bottom:587.177333pt;}
.y150{bottom:592.158667pt;}
.ye6{bottom:595.864000pt;}
.y126{bottom:597.472000pt;}
.y13b{bottom:600.128000pt;}
.yb4{bottom:604.113333pt;}
.y7c{bottom:605.248000pt;}
.y60{bottom:608.098667pt;}
.ye{bottom:612.092000pt;}
.y94{bottom:614.645333pt;}
.ye5{bottom:614.793333pt;}
.y2a{bottom:616.068000pt;}
.y14f{bottom:621.049333pt;}
.y125{bottom:626.362667pt;}
.y13a{bottom:629.020000pt;}
.yb3{bottom:633.005333pt;}
.ye4{bottom:633.721333pt;}
.y7b{bottom:634.140000pt;}
.yd{bottom:636.597333pt;}
.yc2{bottom:636.989333pt;}
.y29{bottom:644.960000pt;}
.ye3{bottom:652.650667pt;}
.y139{bottom:657.912000pt;}
.y124{bottom:663.225333pt;}
.yc1{bottom:665.881333pt;}
.yc{bottom:668.480000pt;}
.yb2{bottom:669.866667pt;}
.ye2{bottom:671.580000pt;}
.y28{bottom:673.852000pt;}
.y14e{bottom:686.802667pt;}
.ye1{bottom:690.509333pt;}
.y123{bottom:692.116000pt;}
.y7a{bottom:693.048000pt;}
.y138{bottom:694.773333pt;}
.yb1{bottom:698.758667pt;}
.yb{bottom:700.362667pt;}
.y27{bottom:702.744000pt;}
.ye0{bottom:709.437333pt;}
.y79{bottom:711.977333pt;}
.y14d{bottom:715.694667pt;}
.y122{bottom:721.008000pt;}
.y137{bottom:723.665333pt;}
.ya{bottom:725.028000pt;}
.yb0{bottom:727.649333pt;}
.ydf{bottom:728.366667pt;}
.y78{bottom:730.906667pt;}
.y26{bottom:731.634667pt;}
.yde{bottom:747.296000pt;}
.y77{bottom:749.836000pt;}
.y136{bottom:752.556000pt;}
.yaf{bottom:756.541333pt;}
.y9{bottom:756.752000pt;}
.y121{bottom:757.869333pt;}
.y25{bottom:760.526667pt;}
.ydd{bottom:766.225333pt;}
.y10b{bottom:768.497333pt;}
.y76{bottom:768.764000pt;}
.y14c{bottom:781.448000pt;}
.ydc{bottom:785.153333pt;}
.yae{bottom:785.433333pt;}
.y120{bottom:786.761333pt;}
.y75{bottom:787.693333pt;}
.y8{bottom:788.650667pt;}
.y24{bottom:789.418667pt;}
.y10a{bottom:797.388000pt;}
.ydb{bottom:804.082667pt;}
.y74{bottom:806.622667pt;}
.y14b{bottom:810.340000pt;}
.yad{bottom:814.325333pt;}
.y23{bottom:818.309333pt;}
.yda{bottom:823.012000pt;}
.y11f{bottom:823.624000pt;}
.y73{bottom:825.552000pt;}
.y7{bottom:826.280000pt;}
.yd9{bottom:841.941333pt;}
.yac{bottom:844.545333pt;}
.y22{bottom:847.201333pt;}
.y72{bottom:852.490667pt;}
.y11e{bottom:852.514667pt;}
.y4f{bottom:855.172000pt;}
.yd8{bottom:860.869333pt;}
.y6{bottom:862.145333pt;}
.y21{bottom:876.093333pt;}
.yd7{bottom:879.798667pt;}
.y71{bottom:881.045333pt;}
.y11d{bottom:881.406667pt;}
.y3d{bottom:884.064000pt;}
.yd6{bottom:898.728000pt;}
.y20{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y11c{bottom:910.298667pt;}
.y70{bottom:912.922667pt;}
.y3c{bottom:912.954667pt;}
.yd5{bottom:925.668000pt;}
.y4{bottom:941.846667pt;}
.yd4{bottom:944.597333pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h2{height:38.639093pt;}
.h5{height:44.887678pt;}
.h6{height:47.820680pt;}
.h3{height:53.865199pt;}
.h4{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:92.670667pt;}
.x4{left:94.488000pt;}
.x10{left:96.498667pt;}
.x6{left:111.158667pt;}
.xf{left:129.376000pt;}
.x1c{left:133.640000pt;}
.x24{left:139.476000pt;}
.x23{left:141.532000pt;}
.x22{left:142.488000pt;}
.xc{left:154.565333pt;}
.x1e{left:179.761333pt;}
.x12{left:201.673333pt;}
.x11{left:211.497333pt;}
.x5{left:215.894667pt;}
.x13{left:224.080000pt;}
.x7{left:255.557333pt;}
.x20{left:273.716000pt;}
.x14{left:294.037333pt;}
.x15{left:359.286667pt;}
.x16{left:396.485333pt;}
.x21{left:397.976000pt;}
.x17{left:428.068000pt;}
.x9{left:458.084000pt;}
.xb{left:492.482667pt;}
.xa{left:502.269333pt;}
.x18{left:504.104000pt;}
.x1a{left:506.414667pt;}
.x19{left:518.753333pt;}
.x8{left:523.901333pt;}
.x1b{left:533.805333pt;}
.x3{left:547.794667pt;}
.x1f{left:565.544000pt;}
.x2{left:576.689333pt;}
.x1d{left:601.325333pt;}
.x1{left:615.201333pt;}
.xd{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; }
  