
    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_2962026870aacedb9e105eab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.788000;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_0bb3cc5f0db0d007bf876965.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_4d4ea42b66218bed5e180ded.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_142b577d04c9df07924e8185.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_9b7277ee63802049a2b04169.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0cd69e37af644e1f1c2eb877.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7c2771eba1ff05bab4e8c84c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858000;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;}
.m1c{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m12{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);}
.m17{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);}
.m14{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);}
.m24{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);}
.mb{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);}
.m18{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);}
.m3{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);}
.m1d{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);}
.m2{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);}
.m26{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);}
.m13{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);}
.me{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);}
.m27{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);}
.mc{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);}
.m11{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);}
.m28{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);}
.m6{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);}
.m25{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);}
.m16{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);}
.md{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);}
.m8{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);}
.m20{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);}
.m1e{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);}
.m7{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);}
.m5{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);}
.m15{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);}
.ma{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);}
.m21{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);}
.m1a{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);}
.m10{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);}
.m22{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);}
.m1b{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);}
.m19{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);}
.mf{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);}
.m9{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);}
.v2{vertical-align:-16.212000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.318000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:17.146219px;}
.ls0{letter-spacing:22.857615px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-71.731020px;}
.ws0{word-spacing:-64.557897px;}
.ws2b{word-spacing:-59.775840px;}
.ws5e{word-spacing:-57.958663px;}
.ws4e{word-spacing:-54.085189px;}
.ws4f{word-spacing:-54.013456px;}
.ws1{word-spacing:-53.798263px;}
.ws5d{word-spacing:-49.255292px;}
.ws1a{word-spacing:-49.135740px;}
.ws48{word-spacing:-48.836860px;}
.ws51{word-spacing:-48.717308px;}
.ws47{word-spacing:-48.597758px;}
.ws3{word-spacing:-48.537981px;}
.ws4a{word-spacing:-48.358653px;}
.ws2a{word-spacing:-48.298878px;}
.ws19{word-spacing:-48.239103px;}
.wsc{word-spacing:-47.999998px;}
.wsf{word-spacing:-47.940224px;}
.ws27{word-spacing:-47.880448px;}
.ws1e{word-spacing:-47.820660px;}
.ws37{word-spacing:-47.701120px;}
.ws50{word-spacing:-47.581567px;}
.ws30{word-spacing:-47.521792px;}
.ws3d{word-spacing:-47.342465px;}
.ws3a{word-spacing:-47.282690px;}
.ws62{word-spacing:-47.043585px;}
.ws5f{word-spacing:-46.983810px;}
.ws25{word-spacing:-46.924034px;}
.ws34{word-spacing:-46.864257px;}
.ws41{word-spacing:-46.744705px;}
.ws52{word-spacing:-46.684930px;}
.ws56{word-spacing:-46.505602px;}
.ws5b{word-spacing:-46.445828px;}
.ws68{word-spacing:-46.386051px;}
.ws3e{word-spacing:-46.146947px;}
.ws3c{word-spacing:-46.087171px;}
.ws31{word-spacing:-45.967621px;}
.ws5a{word-spacing:-45.907843px;}
.ws64{word-spacing:-45.788292px;}
.wse{word-spacing:-45.728516px;}
.ws33{word-spacing:-45.668741px;}
.ws11{word-spacing:-45.549190px;}
.ws21{word-spacing:-45.310087px;}
.ws23{word-spacing:-45.250310px;}
.ws2f{word-spacing:-45.190535px;}
.ws5{word-spacing:-45.130760px;}
.ws24{word-spacing:-45.070983px;}
.wsd{word-spacing:-45.011208px;}
.ws9{word-spacing:-44.951430px;}
.ws7{word-spacing:-44.891655px;}
.ws8{word-spacing:-44.831880px;}
.ws1b{word-spacing:-44.772103px;}
.wsa{word-spacing:-44.712328px;}
.ws4{word-spacing:-44.652553px;}
.ws12{word-spacing:-44.592775px;}
.ws20{word-spacing:-44.533001px;}
.ws10{word-spacing:-44.473225px;}
.ws53{word-spacing:-44.413447px;}
.ws2c{word-spacing:-44.174346px;}
.ws35{word-spacing:-44.114568px;}
.ws45{word-spacing:-43.935240px;}
.ws38{word-spacing:-43.755915px;}
.ws5c{word-spacing:-43.576585px;}
.ws1d{word-spacing:-43.397257px;}
.wsb{word-spacing:-43.277708px;}
.ws60{word-spacing:-43.158156px;}
.ws22{word-spacing:-43.098381px;}
.ws49{word-spacing:-43.038605px;}
.ws44{word-spacing:-42.978827px;}
.ws6{word-spacing:-42.919053px;}
.ws29{word-spacing:-42.799501px;}
.ws4b{word-spacing:-42.739726px;}
.ws3f{word-spacing:-42.679950px;}
.ws15{word-spacing:-42.560398px;}
.ws36{word-spacing:-42.440844px;}
.ws6c{word-spacing:-42.261519px;}
.ws66{word-spacing:-42.201741px;}
.ws57{word-spacing:-42.141965px;}
.ws46{word-spacing:-42.082191px;}
.ws40{word-spacing:-42.022413px;}
.ws55{word-spacing:-41.962640px;}
.ws54{word-spacing:-41.902864px;}
.ws58{word-spacing:-41.843088px;}
.ws43{word-spacing:-41.783310px;}
.ws18{word-spacing:-41.723532px;}
.ws2e{word-spacing:-41.663758px;}
.ws4d{word-spacing:-41.603982px;}
.ws2d{word-spacing:-41.544206px;}
.ws26{word-spacing:-41.364879px;}
.ws1f{word-spacing:-41.185551px;}
.ws70{word-spacing:-41.155683px;}
.ws61{word-spacing:-41.066000px;}
.ws1c{word-spacing:-41.006226px;}
.ws6a{word-spacing:-40.946450px;}
.ws67{word-spacing:-40.826899px;}
.ws28{word-spacing:-40.707347px;}
.ws6f{word-spacing:-40.671500px;}
.ws59{word-spacing:-40.647571px;}
.ws14{word-spacing:-40.587795px;}
.ws75{word-spacing:-40.563904px;}
.ws77{word-spacing:-40.510104px;}
.ws4c{word-spacing:-40.468244px;}
.ws72{word-spacing:-40.402507px;}
.ws74{word-spacing:-40.350048px;}
.ws6d{word-spacing:-40.349850px;}
.ws78{word-spacing:-40.349044px;}
.ws73{word-spacing:-40.348710px;}
.ws71{word-spacing:-40.294909px;}
.ws16{word-spacing:-40.229138px;}
.ws42{word-spacing:-40.169364px;}
.ws17{word-spacing:-39.990037px;}
.ws39{word-spacing:-39.750931px;}
.ws69{word-spacing:-39.452052px;}
.ws76{word-spacing:-38.896156px;}
.ws13{word-spacing:-38.196762px;}
.ws63{word-spacing:-37.838104px;}
.ws65{word-spacing:-36.044832px;}
.ws6b{word-spacing:-34.430884px;}
.ws3b{word-spacing:-26.540473px;}
.ws6e{word-spacing:-0.053798px;}
.ws32{word-spacing:0.000000px;}
._2{margin-left:-6.455790px;}
._e{margin-left:-5.379826px;}
._0{margin-left:-4.303860px;}
._3{margin-left:-3.012704px;}
._1{margin-left:-1.291158px;}
._4{width:1.291158px;}
._5{width:2.355170px;}
._19{width:6.898134px;}
._8{width:13.031135px;}
._17{width:14.394026px;}
._a{width:15.864513px;}
._9{width:18.626152px;}
._7{width:19.785803px;}
._6{width:20.909596px;}
._c{width:23.312580px;}
._b{width:24.603736px;}
._18{width:26.361149px;}
._d{width:27.437112px;}
._15{width:28.656534px;}
._f{width:29.947700px;}
._1a{width:32.398507px;}
._16{width:38.435868px;}
._12{width:490.587300px;}
._10{width:500.015880px;}
._11{width:801.009000px;}
._14{width:1987.368000px;}
._13{width:2015.340000px;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865480px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:44.234100px;}
.fs2{font-size:47.820660px;}
.fs7{font-size:53.798280px;}
.fs3{font-size:59.775840px;}
.fs1{font-size:71.731020px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y65{bottom:6.600001px;}
.y67{bottom:22.500000px;}
.y68{bottom:42.000000px;}
.y63{bottom:90.508500px;}
.y35{bottom:94.561500px;}
.y62{bottom:108.441000px;}
.y34{bottom:121.980000px;}
.y61{bottom:126.373500px;}
.y69{bottom:130.500000px;}
.y33{bottom:139.914000px;}
.y60{bottom:144.306000px;}
.ye8{bottom:152.871000px;}
.y9a{bottom:155.584500px;}
.y32{bottom:157.846500px;}
.y5f{bottom:162.238500px;}
.ye7{bottom:173.793000px;}
.y31{bottom:175.779000px;}
.y5e{bottom:180.172500px;}
.y99{bottom:185.133000px;}
.y30{bottom:193.711500px;}
.y5d{bottom:198.105000px;}
.y2f{bottom:211.644000px;}
.ye6{bottom:212.428500px;}
.y98{bottom:214.683000px;}
.yc5{bottom:216.037500px;}
.y5c{bottom:222.831000px;}
.y2e{bottom:229.576500px;}
.ye5{bottom:230.361000px;}
.yc4{bottom:240.925500px;}
.y5b{bottom:243.753000px;}
.y97{bottom:244.231500px;}
.y2d{bottom:247.510500px;}
.ye4{bottom:248.293500px;}
.yc3{bottom:261.846000px;}
.y2c{bottom:265.443000px;}
.ye3{bottom:266.227500px;}
.y96{bottom:273.781500px;}
.y5a{bottom:277.776000px;}
.yc2{bottom:282.768000px;}
.y2b{bottom:283.375500px;}
.ye2{bottom:284.160000px;}
.yfc{bottom:295.240500px;}
.y59{bottom:295.708500px;}
.y2a{bottom:301.308000px;}
.ye1{bottom:302.092500px;}
.y95{bottom:302.991000px;}
.yfb{bottom:313.173000px;}
.y58{bottom:313.641000px;}
.yc1{bottom:317.209500px;}
.y29{bottom:319.240500px;}
.ye0{bottom:320.025000px;}
.y94{bottom:320.923500px;}
.yfa{bottom:331.105500px;}
.y57{bottom:331.573500px;}
.yc0{bottom:335.143500px;}
.y28{bottom:337.173000px;}
.ydf{bottom:337.957500px;}
.y93{bottom:338.857500px;}
.yf9{bottom:349.038000px;}
.y56{bottom:349.506000px;}
.ybf{bottom:353.076000px;}
.y27{bottom:355.107000px;}
.yde{bottom:355.890000px;}
.y92{bottom:356.790000px;}
.yf8{bottom:366.972000px;}
.y55{bottom:367.440000px;}
.ybe{bottom:371.901000px;}
.y25{bottom:373.039500px;}
.y91{bottom:374.722500px;}
.ydd{bottom:375.628500px;}
.y26{bottom:378.105000px;}
.yf7{bottom:384.904500px;}
.y54{bottom:385.372500px;}
.ybd{bottom:389.833500px;}
.y24{bottom:390.972000px;}
.y90{bottom:392.655000px;}
.ydc{bottom:393.561000px;}
.yf6{bottom:402.837000px;}
.ybc{bottom:407.766000px;}
.y23{bottom:408.904500px;}
.y8f{bottom:410.587500px;}
.ydb{bottom:411.493500px;}
.y53{bottom:411.552000px;}
.yf5{bottom:420.769500px;}
.ybb{bottom:425.698500px;}
.y22{bottom:426.837000px;}
.y8e{bottom:428.520000px;}
.yda{bottom:429.426000px;}
.yf4{bottom:438.702000px;}
.yba{bottom:443.632500px;}
.y21{bottom:444.769500px;}
.y8d{bottom:446.454000px;}
.yd9{bottom:447.358500px;}
.y52{bottom:449.610000px;}
.yb9{bottom:461.565000px;}
.y20{bottom:462.703500px;}
.yf3{bottom:463.360500px;}
.y8c{bottom:464.386500px;}
.yd8{bottom:465.291000px;}
.y51{bottom:467.542500px;}
.yb8{bottom:479.497500px;}
.y1f{bottom:480.636000px;}
.y8b{bottom:482.319000px;}
.yd7{bottom:483.225000px;}
.y50{bottom:485.475000px;}
.yb7{bottom:497.430000px;}
.yf2{bottom:497.731500px;}
.y1e{bottom:498.568500px;}
.y8a{bottom:500.251500px;}
.yd6{bottom:501.157500px;}
.y4f{bottom:503.407500px;}
.yb6{bottom:515.362500px;}
.yf1{bottom:515.664000px;}
.y89{bottom:518.184000px;}
.yd5{bottom:519.090000px;}
.y4e{bottom:521.341500px;}
.y1d{bottom:525.519000px;}
.yb5{bottom:533.295000px;}
.yf0{bottom:533.596500px;}
.y88{bottom:536.116500px;}
.yd4{bottom:537.022500px;}
.y4d{bottom:539.274000px;}
.y1c{bottom:546.441000px;}
.yb4{bottom:551.229000px;}
.yef{bottom:551.529000px;}
.y87{bottom:554.050500px;}
.yd3{bottom:554.955000px;}
.y4c{bottom:557.206500px;}
.yb2{bottom:569.161500px;}
.yee{bottom:569.461500px;}
.y86{bottom:571.983000px;}
.yd2{bottom:572.887500px;}
.yb3{bottom:574.227000px;}
.y4b{bottom:575.139000px;}
.y1b{bottom:586.363500px;}
.yb1{bottom:587.094000px;}
.yed{bottom:587.395500px;}
.y85{bottom:589.915500px;}
.yd1{bottom:590.821500px;}
.y4a{bottom:593.071500px;}
.y1a{bottom:604.296000px;}
.yb0{bottom:605.026500px;}
.yec{bottom:605.328000px;}
.yd0{bottom:608.754000px;}
.y49{bottom:611.004000px;}
.y84{bottom:613.228500px;}
.y19{bottom:622.228500px;}
.yaf{bottom:622.959000px;}
.yeb{bottom:623.260500px;}
.ycf{bottom:626.686500px;}
.y48{bottom:628.938000px;}
.y83{bottom:634.149000px;}
.y18{bottom:640.161000px;}
.yae{bottom:640.891500px;}
.yea{bottom:641.193000px;}
.yce{bottom:644.619000px;}
.y47{bottom:646.870500px;}
.y17{bottom:658.095000px;}
.yad{bottom:658.825500px;}
.ycd{bottom:662.551500px;}
.y82{bottom:664.356000px;}
.y46{bottom:664.803000px;}
.ye9{bottom:665.850000px;}
.y16{bottom:676.027500px;}
.yac{bottom:676.758000px;}
.ycc{bottom:680.484000px;}
.y81{bottom:682.288500px;}
.y45{bottom:682.735500px;}
.y15{bottom:693.960000px;}
.yab{bottom:694.690500px;}
.ycb{bottom:698.418000px;}
.y80{bottom:700.221000px;}
.y44{bottom:700.668000px;}
.y14{bottom:711.892500px;}
.yaa{bottom:712.623000px;}
.yca{bottom:716.350500px;}
.y7f{bottom:718.155000px;}
.y43{bottom:718.600500px;}
.y13{bottom:729.825000px;}
.ya9{bottom:730.555500px;}
.yc9{bottom:734.283000px;}
.y7e{bottom:736.087500px;}
.y42{bottom:736.534500px;}
.y12{bottom:747.757500px;}
.ya8{bottom:748.488000px;}
.yc8{bottom:752.215500px;}
.y7d{bottom:754.020000px;}
.y41{bottom:755.268000px;}
.y11{bottom:765.691500px;}
.ya7{bottom:766.422000px;}
.yc7{bottom:770.148000px;}
.y7c{bottom:771.952500px;}
.y40{bottom:773.200500px;}
.yf{bottom:783.624000px;}
.ya6{bottom:784.354500px;}
.y10{bottom:788.689500px;}
.y7b{bottom:789.885000px;}
.y3f{bottom:791.133000px;}
.ye{bottom:801.556500px;}
.ya5{bottom:802.287000px;}
.y7a{bottom:807.817500px;}
.y3e{bottom:809.065500px;}
.yd{bottom:819.489000px;}
.ya4{bottom:820.219500px;}
.y79{bottom:825.751500px;}
.y3d{bottom:826.999500px;}
.yc{bottom:837.421500px;}
.ya3{bottom:838.152000px;}
.y78{bottom:843.684000px;}
.y3c{bottom:844.932000px;}
.yb{bottom:855.354000px;}
.ya2{bottom:856.084500px;}
.y109{bottom:859.000500px;}
.y77{bottom:861.616500px;}
.y3b{bottom:862.864500px;}
.ya{bottom:873.288000px;}
.ya1{bottom:874.018500px;}
.y108{bottom:875.439000px;}
.y76{bottom:879.549000px;}
.y3a{bottom:880.797000px;}
.y113{bottom:889.170000px;}
.y9{bottom:891.220500px;}
.y107{bottom:891.877500px;}
.ya0{bottom:891.951000px;}
.y75{bottom:897.481500px;}
.y39{bottom:898.729500px;}
.y112{bottom:905.607000px;}
.y8{bottom:909.153000px;}
.y9f{bottom:909.883500px;}
.y106{bottom:911.380500px;}
.y74{bottom:915.414000px;}
.y38{bottom:916.662000px;}
.y111{bottom:922.045500px;}
.y7{bottom:927.085500px;}
.y9e{bottom:927.816000px;}
.y105{bottom:927.817500px;}
.y73{bottom:933.348000px;}
.y37{bottom:934.596000px;}
.y6{bottom:945.018000px;}
.y9d{bottom:945.748500px;}
.y104{bottom:947.320500px;}
.y72{bottom:951.280500px;}
.y110{bottom:952.213500px;}
.y36{bottom:952.528500px;}
.y9c{bottom:963.681000px;}
.y103{bottom:966.822000px;}
.y10f{bottom:968.652000px;}
.y71{bottom:969.213000px;}
.y5{bottom:970.461000px;}
.y102{bottom:983.260500px;}
.y10e{bottom:985.090500px;}
.y70{bottom:987.145500px;}
.y9b{bottom:988.569000px;}
.y101{bottom:999.699000px;}
.y6f{bottom:1005.078000px;}
.y4{bottom:1006.626000px;}
.yc6{bottom:1010.145000px;}
.y10d{bottom:1015.258500px;}
.y100{bottom:1019.200500px;}
.y6e{bottom:1023.010500px;}
.y3{bottom:1027.546500px;}
.y10c{bottom:1031.697000px;}
.yff{bottom:1035.639000px;}
.y6d{bottom:1040.944500px;}
.y10b{bottom:1048.135500px;}
.yfe{bottom:1052.077500px;}
.y6c{bottom:1058.877000px;}
.y2{bottom:1063.413000px;}
.yfd{bottom:1071.579000px;}
.y6b{bottom:1076.809500px;}
.y10a{bottom:1078.303500px;}
.y1{bottom:1090.311000px;}
.y6a{bottom:1094.742000px;}
.y66{bottom:1131.000000px;}
.y64{bottom:1150.500000px;}
.h9{height:15.000000px;}
.h8{height:23.886410px;}
.h6{height:29.459911px;}
.hd{height:36.636629px;}
.hc{height:37.013217px;}
.h5{height:41.125778px;}
.ha{height:43.804688px;}
.h4{height:48.992287px;}
.h3{height:49.350942px;}
.h7{height:49.637866px;}
.h2{height:56.166560px;}
.h1{height:59.565422px;}
.hb{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x15{left:8.399999px;}
.x14{left:44.250000px;}
.x5{left:84.483000px;}
.x12{left:85.500000px;}
.x6{left:91.701000px;}
.x1{left:100.458000px;}
.x16{left:102.225000px;}
.x23{left:108.193500px;}
.x7{left:110.430000px;}
.xa{left:118.432500px;}
.x8{left:122.058000px;}
.x9{left:123.934500px;}
.x2{left:175.066500px;}
.x4{left:188.610000px;}
.x22{left:200.331000px;}
.x13{left:211.944030px;}
.xb{left:217.716000px;}
.xc{left:225.612000px;}
.xd{left:236.617500px;}
.x24{left:246.592500px;}
.xe{left:249.123000px;}
.x1c{left:265.912500px;}
.x3{left:269.760000px;}
.x1d{left:273.808500px;}
.x1e{left:284.814000px;}
.x1f{left:297.267000px;}
.x25{left:396.991500px;}
.xf{left:457.086000px;}
.x10{left:472.030500px;}
.x26{left:480.240000px;}
.x27{left:486.966000px;}
.x11{left:505.095000px;}
.x21{left:527.842500px;}
.x20{left:572.289000px;}
.x17{left:613.893000px;}
.x18{left:621.789000px;}
.x19{left:632.362500px;}
.x1a{left:643.006500px;}
.x1b{left:836.250000px;}
@media print{
.v2{vertical-align:-14.410667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.616000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.241084pt;}
.ls0{letter-spacing:20.317880pt;}
.ws2{word-spacing:-63.760907pt;}
.ws0{word-spacing:-57.384798pt;}
.ws2b{word-spacing:-53.134080pt;}
.ws5e{word-spacing:-51.518811pt;}
.ws4e{word-spacing:-48.075724pt;}
.ws4f{word-spacing:-48.011961pt;}
.ws1{word-spacing:-47.820678pt;}
.ws5d{word-spacing:-43.782482pt;}
.ws1a{word-spacing:-43.676214pt;}
.ws48{word-spacing:-43.410542pt;}
.ws51{word-spacing:-43.304274pt;}
.ws47{word-spacing:-43.198007pt;}
.ws3{word-spacing:-43.144872pt;}
.ws4a{word-spacing:-42.985470pt;}
.ws2a{word-spacing:-42.932336pt;}
.ws19{word-spacing:-42.879203pt;}
.wsc{word-spacing:-42.666665pt;}
.wsf{word-spacing:-42.613532pt;}
.ws27{word-spacing:-42.560398pt;}
.ws1e{word-spacing:-42.507253pt;}
.ws37{word-spacing:-42.400996pt;}
.ws50{word-spacing:-42.294727pt;}
.ws30{word-spacing:-42.241593pt;}
.ws3d{word-spacing:-42.082191pt;}
.ws3a{word-spacing:-42.029058pt;}
.ws62{word-spacing:-41.816520pt;}
.ws5f{word-spacing:-41.763387pt;}
.ws25{word-spacing:-41.710253pt;}
.ws34{word-spacing:-41.657118pt;}
.ws41{word-spacing:-41.550849pt;}
.ws52{word-spacing:-41.497715pt;}
.ws56{word-spacing:-41.338313pt;}
.ws5b{word-spacing:-41.285180pt;}
.ws68{word-spacing:-41.232045pt;}
.ws3e{word-spacing:-41.019509pt;}
.ws3c{word-spacing:-40.966374pt;}
.ws31{word-spacing:-40.860108pt;}
.ws5a{word-spacing:-40.806972pt;}
.ws64{word-spacing:-40.700704pt;}
.wse{word-spacing:-40.647570pt;}
.ws33{word-spacing:-40.594436pt;}
.ws11{word-spacing:-40.488169pt;}
.ws21{word-spacing:-40.275633pt;}
.ws23{word-spacing:-40.222497pt;}
.ws2f{word-spacing:-40.169364pt;}
.ws5{word-spacing:-40.116231pt;}
.ws24{word-spacing:-40.063096pt;}
.wsd{word-spacing:-40.009962pt;}
.ws9{word-spacing:-39.956827pt;}
.ws7{word-spacing:-39.903693pt;}
.ws8{word-spacing:-39.850560pt;}
.ws1b{word-spacing:-39.797425pt;}
.wsa{word-spacing:-39.744292pt;}
.ws4{word-spacing:-39.691158pt;}
.ws12{word-spacing:-39.638023pt;}
.ws20{word-spacing:-39.584890pt;}
.ws10{word-spacing:-39.531756pt;}
.ws53{word-spacing:-39.478619pt;}
.ws2c{word-spacing:-39.266085pt;}
.ws35{word-spacing:-39.212949pt;}
.ws45{word-spacing:-39.053547pt;}
.ws38{word-spacing:-38.894147pt;}
.ws5c{word-spacing:-38.734742pt;}
.ws1d{word-spacing:-38.575340pt;}
.wsb{word-spacing:-38.469074pt;}
.ws60{word-spacing:-38.362806pt;}
.ws22{word-spacing:-38.309672pt;}
.ws49{word-spacing:-38.256538pt;}
.ws44{word-spacing:-38.203401pt;}
.ws6{word-spacing:-38.150269pt;}
.ws29{word-spacing:-38.044001pt;}
.ws4b{word-spacing:-37.990867pt;}
.ws3f{word-spacing:-37.937733pt;}
.ws15{word-spacing:-37.831465pt;}
.ws36{word-spacing:-37.725195pt;}
.ws6c{word-spacing:-37.565795pt;}
.ws66{word-spacing:-37.512658pt;}
.ws57{word-spacing:-37.459524pt;}
.ws46{word-spacing:-37.406392pt;}
.ws40{word-spacing:-37.353256pt;}
.ws55{word-spacing:-37.300124pt;}
.ws54{word-spacing:-37.246990pt;}
.ws58{word-spacing:-37.193856pt;}
.ws43{word-spacing:-37.140720pt;}
.ws18{word-spacing:-37.087584pt;}
.ws2e{word-spacing:-37.034452pt;}
.ws4d{word-spacing:-36.981318pt;}
.ws2d{word-spacing:-36.928183pt;}
.ws26{word-spacing:-36.768781pt;}
.ws1f{word-spacing:-36.609379pt;}
.ws70{word-spacing:-36.582829pt;}
.ws61{word-spacing:-36.503111pt;}
.ws1c{word-spacing:-36.449979pt;}
.ws6a{word-spacing:-36.396845pt;}
.ws67{word-spacing:-36.290577pt;}
.ws28{word-spacing:-36.184308pt;}
.ws6f{word-spacing:-36.152444pt;}
.ws59{word-spacing:-36.131174pt;}
.ws14{word-spacing:-36.078040pt;}
.ws75{word-spacing:-36.056803pt;}
.ws77{word-spacing:-36.008981pt;}
.ws4c{word-spacing:-35.971772pt;}
.ws72{word-spacing:-35.913340pt;}
.ws74{word-spacing:-35.866709pt;}
.ws6d{word-spacing:-35.866534pt;}
.ws78{word-spacing:-35.865817pt;}
.ws73{word-spacing:-35.865520pt;}
.ws71{word-spacing:-35.817697pt;}
.ws16{word-spacing:-35.759234pt;}
.ws42{word-spacing:-35.706102pt;}
.ws17{word-spacing:-35.546700pt;}
.ws39{word-spacing:-35.334161pt;}
.ws69{word-spacing:-35.068491pt;}
.ws76{word-spacing:-34.574361pt;}
.ws13{word-spacing:-33.952677pt;}
.ws63{word-spacing:-33.633871pt;}
.ws65{word-spacing:-32.039850pt;}
.ws6b{word-spacing:-30.605230pt;}
.ws3b{word-spacing:-23.591532pt;}
.ws6e{word-spacing:-0.047821pt;}
.ws32{word-spacing:0.000000pt;}
._2{margin-left:-5.738480pt;}
._e{margin-left:-4.782067pt;}
._0{margin-left:-3.825653pt;}
._3{margin-left:-2.677959pt;}
._1{margin-left:-1.147696pt;}
._4{width:1.147696pt;}
._5{width:2.093484pt;}
._19{width:6.131675pt;}
._8{width:11.583231pt;}
._17{width:12.794690pt;}
._a{width:14.101789pt;}
._9{width:16.556579pt;}
._7{width:17.587380pt;}
._6{width:18.586308pt;}
._c{width:20.722293pt;}
._b{width:21.869987pt;}
._18{width:23.432133pt;}
._d{width:24.388544pt;}
._15{width:25.472475pt;}
._f{width:26.620178pt;}
._1a{width:28.798673pt;}
._16{width:34.165216pt;}
._12{width:436.077600pt;}
._10{width:444.458560pt;}
._11{width:712.008000pt;}
._14{width:1766.549333pt;}
._13{width:1791.413333pt;}
.fs5{font-size:31.880427pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:39.319200pt;}
.fs2{font-size:42.507253pt;}
.fs7{font-size:47.820693pt;}
.fs3{font-size:53.134080pt;}
.fs1{font-size:63.760907pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:5.866668pt;}
.y67{bottom:20.000000pt;}
.y68{bottom:37.333333pt;}
.y63{bottom:80.452000pt;}
.y35{bottom:84.054667pt;}
.y62{bottom:96.392000pt;}
.y34{bottom:108.426667pt;}
.y61{bottom:112.332000pt;}
.y69{bottom:116.000000pt;}
.y33{bottom:124.368000pt;}
.y60{bottom:128.272000pt;}
.ye8{bottom:135.885333pt;}
.y9a{bottom:138.297333pt;}
.y32{bottom:140.308000pt;}
.y5f{bottom:144.212000pt;}
.ye7{bottom:154.482667pt;}
.y31{bottom:156.248000pt;}
.y5e{bottom:160.153333pt;}
.y99{bottom:164.562667pt;}
.y30{bottom:172.188000pt;}
.y5d{bottom:176.093333pt;}
.y2f{bottom:188.128000pt;}
.ye6{bottom:188.825333pt;}
.y98{bottom:190.829333pt;}
.yc5{bottom:192.033333pt;}
.y5c{bottom:198.072000pt;}
.y2e{bottom:204.068000pt;}
.ye5{bottom:204.765333pt;}
.yc4{bottom:214.156000pt;}
.y5b{bottom:216.669333pt;}
.y97{bottom:217.094667pt;}
.y2d{bottom:220.009333pt;}
.ye4{bottom:220.705333pt;}
.yc3{bottom:232.752000pt;}
.y2c{bottom:235.949333pt;}
.ye3{bottom:236.646667pt;}
.y96{bottom:243.361333pt;}
.y5a{bottom:246.912000pt;}
.yc2{bottom:251.349333pt;}
.y2b{bottom:251.889333pt;}
.ye2{bottom:252.586667pt;}
.yfc{bottom:262.436000pt;}
.y59{bottom:262.852000pt;}
.y2a{bottom:267.829333pt;}
.ye1{bottom:268.526667pt;}
.y95{bottom:269.325333pt;}
.yfb{bottom:278.376000pt;}
.y58{bottom:278.792000pt;}
.yc1{bottom:281.964000pt;}
.y29{bottom:283.769333pt;}
.ye0{bottom:284.466667pt;}
.y94{bottom:285.265333pt;}
.yfa{bottom:294.316000pt;}
.y57{bottom:294.732000pt;}
.yc0{bottom:297.905333pt;}
.y28{bottom:299.709333pt;}
.ydf{bottom:300.406667pt;}
.y93{bottom:301.206667pt;}
.yf9{bottom:310.256000pt;}
.y56{bottom:310.672000pt;}
.ybf{bottom:313.845333pt;}
.y27{bottom:315.650667pt;}
.yde{bottom:316.346667pt;}
.y92{bottom:317.146667pt;}
.yf8{bottom:326.197333pt;}
.y55{bottom:326.613333pt;}
.ybe{bottom:330.578667pt;}
.y25{bottom:331.590667pt;}
.y91{bottom:333.086667pt;}
.ydd{bottom:333.892000pt;}
.y26{bottom:336.093333pt;}
.yf7{bottom:342.137333pt;}
.y54{bottom:342.553333pt;}
.ybd{bottom:346.518667pt;}
.y24{bottom:347.530667pt;}
.y90{bottom:349.026667pt;}
.ydc{bottom:349.832000pt;}
.yf6{bottom:358.077333pt;}
.ybc{bottom:362.458667pt;}
.y23{bottom:363.470667pt;}
.y8f{bottom:364.966667pt;}
.ydb{bottom:365.772000pt;}
.y53{bottom:365.824000pt;}
.yf5{bottom:374.017333pt;}
.ybb{bottom:378.398667pt;}
.y22{bottom:379.410667pt;}
.y8e{bottom:380.906667pt;}
.yda{bottom:381.712000pt;}
.yf4{bottom:389.957333pt;}
.yba{bottom:394.340000pt;}
.y21{bottom:395.350667pt;}
.y8d{bottom:396.848000pt;}
.yd9{bottom:397.652000pt;}
.y52{bottom:399.653333pt;}
.yb9{bottom:410.280000pt;}
.y20{bottom:411.292000pt;}
.yf3{bottom:411.876000pt;}
.y8c{bottom:412.788000pt;}
.yd8{bottom:413.592000pt;}
.y51{bottom:415.593333pt;}
.yb8{bottom:426.220000pt;}
.y1f{bottom:427.232000pt;}
.y8b{bottom:428.728000pt;}
.yd7{bottom:429.533333pt;}
.y50{bottom:431.533333pt;}
.yb7{bottom:442.160000pt;}
.yf2{bottom:442.428000pt;}
.y1e{bottom:443.172000pt;}
.y8a{bottom:444.668000pt;}
.yd6{bottom:445.473333pt;}
.y4f{bottom:447.473333pt;}
.yb6{bottom:458.100000pt;}
.yf1{bottom:458.368000pt;}
.y89{bottom:460.608000pt;}
.yd5{bottom:461.413333pt;}
.y4e{bottom:463.414667pt;}
.y1d{bottom:467.128000pt;}
.yb5{bottom:474.040000pt;}
.yf0{bottom:474.308000pt;}
.y88{bottom:476.548000pt;}
.yd4{bottom:477.353333pt;}
.y4d{bottom:479.354667pt;}
.y1c{bottom:485.725333pt;}
.yb4{bottom:489.981333pt;}
.yef{bottom:490.248000pt;}
.y87{bottom:492.489333pt;}
.yd3{bottom:493.293333pt;}
.y4c{bottom:495.294667pt;}
.yb2{bottom:505.921333pt;}
.yee{bottom:506.188000pt;}
.y86{bottom:508.429333pt;}
.yd2{bottom:509.233333pt;}
.yb3{bottom:510.424000pt;}
.y4b{bottom:511.234667pt;}
.y1b{bottom:521.212000pt;}
.yb1{bottom:521.861333pt;}
.yed{bottom:522.129333pt;}
.y85{bottom:524.369333pt;}
.yd1{bottom:525.174667pt;}
.y4a{bottom:527.174667pt;}
.y1a{bottom:537.152000pt;}
.yb0{bottom:537.801333pt;}
.yec{bottom:538.069333pt;}
.yd0{bottom:541.114667pt;}
.y49{bottom:543.114667pt;}
.y84{bottom:545.092000pt;}
.y19{bottom:553.092000pt;}
.yaf{bottom:553.741333pt;}
.yeb{bottom:554.009333pt;}
.ycf{bottom:557.054667pt;}
.y48{bottom:559.056000pt;}
.y83{bottom:563.688000pt;}
.y18{bottom:569.032000pt;}
.yae{bottom:569.681333pt;}
.yea{bottom:569.949333pt;}
.yce{bottom:572.994667pt;}
.y47{bottom:574.996000pt;}
.y17{bottom:584.973333pt;}
.yad{bottom:585.622667pt;}
.ycd{bottom:588.934667pt;}
.y82{bottom:590.538667pt;}
.y46{bottom:590.936000pt;}
.ye9{bottom:591.866667pt;}
.y16{bottom:600.913333pt;}
.yac{bottom:601.562667pt;}
.ycc{bottom:604.874667pt;}
.y81{bottom:606.478667pt;}
.y45{bottom:606.876000pt;}
.y15{bottom:616.853333pt;}
.yab{bottom:617.502667pt;}
.ycb{bottom:620.816000pt;}
.y80{bottom:622.418667pt;}
.y44{bottom:622.816000pt;}
.y14{bottom:632.793333pt;}
.yaa{bottom:633.442667pt;}
.yca{bottom:636.756000pt;}
.y7f{bottom:638.360000pt;}
.y43{bottom:638.756000pt;}
.y13{bottom:648.733333pt;}
.ya9{bottom:649.382667pt;}
.yc9{bottom:652.696000pt;}
.y7e{bottom:654.300000pt;}
.y42{bottom:654.697333pt;}
.y12{bottom:664.673333pt;}
.ya8{bottom:665.322667pt;}
.yc8{bottom:668.636000pt;}
.y7d{bottom:670.240000pt;}
.y41{bottom:671.349333pt;}
.y11{bottom:680.614667pt;}
.ya7{bottom:681.264000pt;}
.yc7{bottom:684.576000pt;}
.y7c{bottom:686.180000pt;}
.y40{bottom:687.289333pt;}
.yf{bottom:696.554667pt;}
.ya6{bottom:697.204000pt;}
.y10{bottom:701.057333pt;}
.y7b{bottom:702.120000pt;}
.y3f{bottom:703.229333pt;}
.ye{bottom:712.494667pt;}
.ya5{bottom:713.144000pt;}
.y7a{bottom:718.060000pt;}
.y3e{bottom:719.169333pt;}
.yd{bottom:728.434667pt;}
.ya4{bottom:729.084000pt;}
.y79{bottom:734.001333pt;}
.y3d{bottom:735.110667pt;}
.yc{bottom:744.374667pt;}
.ya3{bottom:745.024000pt;}
.y78{bottom:749.941333pt;}
.y3c{bottom:751.050667pt;}
.yb{bottom:760.314667pt;}
.ya2{bottom:760.964000pt;}
.y109{bottom:763.556000pt;}
.y77{bottom:765.881333pt;}
.y3b{bottom:766.990667pt;}
.ya{bottom:776.256000pt;}
.ya1{bottom:776.905333pt;}
.y108{bottom:778.168000pt;}
.y76{bottom:781.821333pt;}
.y3a{bottom:782.930667pt;}
.y113{bottom:790.373333pt;}
.y9{bottom:792.196000pt;}
.y107{bottom:792.780000pt;}
.ya0{bottom:792.845333pt;}
.y75{bottom:797.761333pt;}
.y39{bottom:798.870667pt;}
.y112{bottom:804.984000pt;}
.y8{bottom:808.136000pt;}
.y9f{bottom:808.785333pt;}
.y106{bottom:810.116000pt;}
.y74{bottom:813.701333pt;}
.y38{bottom:814.810667pt;}
.y111{bottom:819.596000pt;}
.y7{bottom:824.076000pt;}
.y9e{bottom:824.725333pt;}
.y105{bottom:824.726667pt;}
.y73{bottom:829.642667pt;}
.y37{bottom:830.752000pt;}
.y6{bottom:840.016000pt;}
.y9d{bottom:840.665333pt;}
.y104{bottom:842.062667pt;}
.y72{bottom:845.582667pt;}
.y110{bottom:846.412000pt;}
.y36{bottom:846.692000pt;}
.y9c{bottom:856.605333pt;}
.y103{bottom:859.397333pt;}
.y10f{bottom:861.024000pt;}
.y71{bottom:861.522667pt;}
.y5{bottom:862.632000pt;}
.y102{bottom:874.009333pt;}
.y10e{bottom:875.636000pt;}
.y70{bottom:877.462667pt;}
.y9b{bottom:878.728000pt;}
.y101{bottom:888.621333pt;}
.y6f{bottom:893.402667pt;}
.y4{bottom:894.778667pt;}
.yc6{bottom:897.906667pt;}
.y10d{bottom:902.452000pt;}
.y100{bottom:905.956000pt;}
.y6e{bottom:909.342667pt;}
.y3{bottom:913.374667pt;}
.y10c{bottom:917.064000pt;}
.yff{bottom:920.568000pt;}
.y6d{bottom:925.284000pt;}
.y10b{bottom:931.676000pt;}
.yfe{bottom:935.180000pt;}
.y6c{bottom:941.224000pt;}
.y2{bottom:945.256000pt;}
.yfd{bottom:952.514667pt;}
.y6b{bottom:957.164000pt;}
.y10a{bottom:958.492000pt;}
.y1{bottom:969.165333pt;}
.y6a{bottom:973.104000pt;}
.y66{bottom:1005.333333pt;}
.y64{bottom:1022.666667pt;}
.h9{height:13.333333pt;}
.h8{height:21.232364pt;}
.h6{height:26.186587pt;}
.hd{height:32.565892pt;}
.hc{height:32.900637pt;}
.h5{height:36.556247pt;}
.ha{height:38.937500pt;}
.h4{height:43.548699pt;}
.h3{height:43.867504pt;}
.h7{height:44.122547pt;}
.h2{height:49.925831pt;}
.h1{height:52.947042pt;}
.hb{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x15{left:7.466666pt;}
.x14{left:39.333333pt;}
.x5{left:75.096000pt;}
.x12{left:76.000000pt;}
.x6{left:81.512000pt;}
.x1{left:89.296000pt;}
.x16{left:90.866667pt;}
.x23{left:96.172000pt;}
.x7{left:98.160000pt;}
.xa{left:105.273333pt;}
.x8{left:108.496000pt;}
.x9{left:110.164000pt;}
.x2{left:155.614667pt;}
.x4{left:167.653333pt;}
.x22{left:178.072000pt;}
.x13{left:188.394693pt;}
.xb{left:193.525333pt;}
.xc{left:200.544000pt;}
.xd{left:210.326667pt;}
.x24{left:219.193333pt;}
.xe{left:221.442667pt;}
.x1c{left:236.366667pt;}
.x3{left:239.786667pt;}
.x1d{left:243.385333pt;}
.x1e{left:253.168000pt;}
.x1f{left:264.237333pt;}
.x25{left:352.881333pt;}
.xf{left:406.298667pt;}
.x10{left:419.582667pt;}
.x26{left:426.880000pt;}
.x27{left:432.858667pt;}
.x11{left:448.973333pt;}
.x21{left:469.193333pt;}
.x20{left:508.701333pt;}
.x17{left:545.682667pt;}
.x18{left:552.701333pt;}
.x19{left:562.100000pt;}
.x1a{left:571.561333pt;}
.x1b{left:743.333333pt;}
}




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