
    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_09af1dbeaa9fe221e27d9fdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_6f66889af4f6ee8cdf2bdd73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_ffdadccb182371c69b1c27b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.404000;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_9732aac5e7bfdf5830cc199c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.888000;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_3abfa0ce0aaa6d992e3e9ed1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.888000;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_f79856e733b55c683e12dd04.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967773;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_1d9b37b65215ef79f3fadb98.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_60dd93697d317f8fd811ac70.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.705000;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;}
.m8{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);}
.mb{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);}
.m1b{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);}
.m0{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);}
.m1e{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{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);}
.me{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);}
.m5{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);}
.m23{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);}
.md{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);}
.m21{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);}
.m3{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);}
.m19{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);}
.m2{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);}
.m22{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);}
.m11{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);}
.m1{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);}
.ma{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);}
.m25{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);}
.m1c{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);}
.m6{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);}
.m10{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);}
.m17{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);}
.m20{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);}
.m26{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);}
.m1d{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);}
.m12{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);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.mc{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m1f{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);}
.m14{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);}
.m9{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);}
.m15{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);}
.v3{vertical-align:-15.210000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.826000px;}
.v2{vertical-align:56.784000px;}
.lsb{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000139px;}
.ls24{letter-spacing:0.000315px;}
.ls7{letter-spacing:0.000960px;}
.ls8{letter-spacing:0.001021px;}
.ls0{letter-spacing:0.002195px;}
.ls18{letter-spacing:0.004296px;}
.ls1e{letter-spacing:3.880080px;}
.ls1{letter-spacing:4.133626px;}
.ls12{letter-spacing:4.546080px;}
.ls26{letter-spacing:6.933509px;}
.ls9{letter-spacing:15.888553px;}
.lsf{letter-spacing:16.363949px;}
.lse{letter-spacing:17.153745px;}
.ls3{letter-spacing:17.985321px;}
.ls2{letter-spacing:17.991339px;}
.ls1f{letter-spacing:18.678235px;}
.ls1a{letter-spacing:19.441198px;}
.ls15{letter-spacing:19.606505px;}
.ls25{letter-spacing:19.721602px;}
.ls5{letter-spacing:19.782715px;}
.lsd{letter-spacing:19.804765px;}
.ls10{letter-spacing:19.816410px;}
.ls17{letter-spacing:19.831418px;}
.ls16{letter-spacing:19.886316px;}
.ls6{letter-spacing:19.904316px;}
.ls1d{letter-spacing:19.910316px;}
.ls21{letter-spacing:19.927227px;}
.ls19{letter-spacing:19.985938px;}
.ls11{letter-spacing:20.152905px;}
.ls22{letter-spacing:20.941140px;}
.ls1b{letter-spacing:21.194081px;}
.ls1c{letter-spacing:21.258787px;}
.ls23{letter-spacing:23.070552px;}
.ls14{letter-spacing:26.540316px;}
.ls20{letter-spacing:26.630558px;}
.ls13{letter-spacing:27.876434px;}
.ls4{letter-spacing:29.886938px;}
.lsa{letter-spacing:1449.684553px;}
.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;}
}
.ws1{word-spacing:-68.896191px;}
.ws0{word-spacing:-68.379728px;}
.ws41{word-spacing:-61.579080px;}
.wse{word-spacing:-61.166153px;}
.ws12{word-spacing:-59.775840px;}
.ws5{word-spacing:-53.798280px;}
.ws4c{word-spacing:-50.971852px;}
.ws2c{word-spacing:-47.820660px;}
.ws3{word-spacing:-47.713380px;}
.ws73{word-spacing:-44.712328px;}
.ws56{word-spacing:-44.652552px;}
.ws48{word-spacing:-44.413449px;}
.ws47{word-spacing:-44.234122px;}
.ws70{word-spacing:-43.875467px;}
.ws4d{word-spacing:-43.576587px;}
.ws15{word-spacing:-43.516812px;}
.ws72{word-spacing:-41.962640px;}
.ws18{word-spacing:-41.843088px;}
.ws46{word-spacing:-41.723536px;}
.ws38{word-spacing:-41.484433px;}
.ws6b{word-spacing:-41.305105px;}
.ws71{word-spacing:-41.125778px;}
.ws77{word-spacing:-41.006226px;}
.ws36{word-spacing:-40.707347px;}
.ws55{word-spacing:-40.528020px;}
.ws3a{word-spacing:-40.348692px;}
.ws3c{word-spacing:-40.288916px;}
.ws1e{word-spacing:-40.229140px;}
.ws1d{word-spacing:-40.169364px;}
.ws22{word-spacing:-40.109589px;}
.ws10{word-spacing:-40.049813px;}
.ws11{word-spacing:-39.990037px;}
.wsf{word-spacing:-39.930261px;}
.ws27{word-spacing:-39.871769px;}
.ws13{word-spacing:-39.870485px;}
.ws1c{word-spacing:-39.810709px;}
.ws1b{word-spacing:-39.750934px;}
.ws21{word-spacing:-39.691158px;}
.ws16{word-spacing:-39.631382px;}
.ws14{word-spacing:-39.571606px;}
.ws1a{word-spacing:-39.511830px;}
.ws3e{word-spacing:-39.452054px;}
.ws40{word-spacing:-39.392279px;}
.ws19{word-spacing:-39.332503px;}
.ws2f{word-spacing:-39.212951px;}
.ws3d{word-spacing:-39.093399px;}
.ws24{word-spacing:-39.033624px;}
.ws51{word-spacing:-38.973848px;}
.ws68{word-spacing:-38.914072px;}
.ws6d{word-spacing:-38.854296px;}
.ws37{word-spacing:-38.794520px;}
.ws69{word-spacing:-38.615193px;}
.ws6e{word-spacing:-38.555417px;}
.ws7b{word-spacing:-38.495641px;}
.ws74{word-spacing:-38.256538px;}
.ws8{word-spacing:-38.228867px;}
.ws49{word-spacing:-38.196762px;}
.ws30{word-spacing:-37.957658px;}
.ws6a{word-spacing:-37.718555px;}
.ws20{word-spacing:-37.599003px;}
.ws1f{word-spacing:-37.539228px;}
.ws6f{word-spacing:-37.419676px;}
.ws75{word-spacing:-37.359900px;}
.ws76{word-spacing:-37.300124px;}
.ws65{word-spacing:-37.240348px;}
.ws66{word-spacing:-37.180572px;}
.ws42{word-spacing:-37.061021px;}
.ws5e{word-spacing:-36.941469px;}
.ws7d{word-spacing:-36.762142px;}
.ws4a{word-spacing:-36.642590px;}
.ws4b{word-spacing:-36.582814px;}
.ws7a{word-spacing:-36.403487px;}
.ws79{word-spacing:-36.343711px;}
.ws43{word-spacing:-36.283935px;}
.ws6{word-spacing:-35.883453px;}
.ws78{word-spacing:-35.865504px;}
.ws4{word-spacing:-35.829654px;}
.ws54{word-spacing:-35.745952px;}
.wsd{word-spacing:-35.722058px;}
.wsc{word-spacing:-35.668260px;}
.ws61{word-spacing:-35.626401px;}
.ws25{word-spacing:-35.566625px;}
.ws44{word-spacing:-35.506849px;}
.ws52{word-spacing:-35.387297px;}
.ws53{word-spacing:-35.088418px;}
.ws35{word-spacing:-34.909091px;}
.ws3f{word-spacing:-34.849315px;}
.ws57{word-spacing:-34.610211px;}
.ws59{word-spacing:-33.713574px;}
.ws5a{word-spacing:-33.594022px;}
.ws23{word-spacing:-33.534246px;}
.ws5d{word-spacing:-33.295143px;}
.ws64{word-spacing:-33.236665px;}
.ws3b{word-spacing:-33.235367px;}
.ws62{word-spacing:-33.231204px;}
.ws58{word-spacing:-33.230964px;}
.ws5c{word-spacing:-33.175591px;}
.ws4f{word-spacing:-33.115815px;}
.ws4e{word-spacing:-33.056040px;}
.ws63{word-spacing:-32.936488px;}
.ws39{word-spacing:-32.757160px;}
.ws2a{word-spacing:-32.278946px;}
.ws29{word-spacing:-32.206532px;}
.ws7c{word-spacing:-32.099626px;}
.ws5b{word-spacing:-31.920299px;}
.ws2b{word-spacing:-31.896380px;}
.ws2d{word-spacing:-31.872538px;}
.ws50{word-spacing:-31.262764px;}
.ws5f{word-spacing:-30.784558px;}
.ws26{word-spacing:-30.541353px;}
.ws60{word-spacing:-30.127023px;}
.ws31{word-spacing:-29.889444px;}
.ws67{word-spacing:-29.728157px;}
.ws6c{word-spacing:-29.576987px;}
.ws17{word-spacing:-29.220732px;}
.ws2{word-spacing:-25.451157px;}
.ws7{word-spacing:-20.309473px;}
.ws32{word-spacing:-15.934764px;}
.ws34{word-spacing:-15.877999px;}
.ws33{word-spacing:-15.818631px;}
.ws9{word-spacing:-14.394491px;}
.wsb{word-spacing:-14.341620px;}
.wsa{word-spacing:-14.338893px;}
.ws28{word-spacing:-9.344782px;}
.ws45{word-spacing:-9.338782px;}
.ws2e{word-spacing:0.000000px;}
._5{margin-left:-6.397559px;}
._a{margin-left:-5.140722px;}
._16{margin-left:-4.084563px;}
._2{margin-left:-2.995487px;}
._4{margin-left:-1.952797px;}
._6{width:1.506352px;}
._1{width:3.098779px;}
._1d{width:4.224053px;}
._1b{width:5.463713px;}
._1a{width:7.150230px;}
._15{width:16.366624px;}
._8{width:17.382814px;}
._11{width:18.816010px;}
._f{width:20.233924px;}
._e{width:21.324430px;}
._c{width:23.351548px;}
._7{width:25.596739px;}
._b{width:27.078456px;}
._9{width:28.372613px;}
._d{width:30.394141px;}
._1e{width:32.069936px;}
._12{width:33.171844px;}
._1f{width:34.315841px;}
._1c{width:35.811009px;}
._10{width:36.812962px;}
._13{width:37.925479px;}
._14{width:41.212844px;}
._20{width:44.560291px;}
._0{width:46.584981px;}
._17{width:47.984257px;}
._18{width:49.521686px;}
._19{width:51.188284px;}
._3{width:72.406220px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,128,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:43.105380px;}
.fs2{font-size:47.713380px;}
.fsa{font-size:47.820660px;}
.fs8{font-size:48.531360px;}
.fs3{font-size:49.263240px;}
.fs4{font-size:52.153980px;}
.fs5{font-size:53.798280px;}
.fs6{font-size:55.421160px;}
.fsb{font-size:57.948900px;}
.fs9{font-size:59.775840px;}
.fsc{font-size:61.579080px;}
.fs1{font-size:69.538680px;}
.fs7{font-size:83.446320px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y3b{bottom:68.530500px;}
.y3a{bottom:82.726500px;}
.y39{bottom:127.558500px;}
.ye2{bottom:130.702500px;}
.y90{bottom:135.481500px;}
.y38{bottom:145.492500px;}
.y8f{bottom:153.414000px;}
.yb9{bottom:154.458000px;}
.ye1{bottom:157.602000px;}
.y8e{bottom:171.346500px;}
.y37{bottom:172.390500px;}
.ye0{bottom:175.534500px;}
.yb8{bottom:181.357500px;}
.y8d{bottom:189.279000px;}
.ydf{bottom:193.468500px;}
.y65{bottom:196.657500px;}
.yb7{bottom:199.290000px;}
.y8c{bottom:207.211500px;}
.y36{bottom:207.469500px;}
.y64{bottom:214.590000px;}
.yde{bottom:220.366500px;}
.y8b{bottom:225.144000px;}
.yb6{bottom:226.189500px;}
.y63{bottom:232.522500px;}
.ydd{bottom:238.299000px;}
.y8a{bottom:243.078000px;}
.yb5{bottom:244.122000px;}
.y62{bottom:250.456500px;}
.ydc{bottom:256.233000px;}
.y35{bottom:256.252500px;}
.yb4{bottom:262.054500px;}
.y61{bottom:268.389000px;}
.ydb{bottom:274.165500px;}
.y34{bottom:274.185000px;}
.y89{bottom:277.990500px;}
.y60{bottom:286.321500px;}
.yb3{bottom:288.954000px;}
.y33{bottom:292.117500px;}
.yda{bottom:301.065000px;}
.y5f{bottom:304.254000px;}
.yb2{bottom:306.886500px;}
.y32{bottom:310.051500px;}
.y5e{bottom:322.186500px;}
.yb1{bottom:324.819000px;}
.y88{bottom:327.433500px;}
.yd9{bottom:327.963000px;}
.y31{bottom:327.984000px;}
.y5d{bottom:340.119000px;}
.y87{bottom:345.366000px;}
.yd8{bottom:345.895500px;}
.y30{bottom:345.916500px;}
.yb0{bottom:351.718500px;}
.y86{bottom:363.298500px;}
.yd7{bottom:363.829500px;}
.y2f{bottom:363.849000px;}
.y5c{bottom:367.713000px;}
.yaf{bottom:369.651000px;}
.y85{bottom:381.231000px;}
.y2e{bottom:381.781500px;}
.yae{bottom:387.583500px;}
.yd6{bottom:390.727500px;}
.y84{bottom:399.163500px;}
.y2d{bottom:399.714000px;}
.yd5{bottom:408.661500px;}
.y5b{bottom:409.567500px;}
.yad{bottom:414.483000px;}
.y83{bottom:417.097500px;}
.y2c{bottom:417.648000px;}
.yd4{bottom:426.594000px;}
.y5a{bottom:427.500000px;}
.yac{bottom:432.415500px;}
.y82{bottom:435.030000px;}
.y2b{bottom:435.580500px;}
.y59{bottom:445.434000px;}
.yab{bottom:450.348000px;}
.yd3{bottom:453.492000px;}
.y2a{bottom:453.513000px;}
.y81{bottom:462.624000px;}
.y58{bottom:463.366500px;}
.yaa{bottom:468.282000px;}
.yd2{bottom:471.426000px;}
.y29{bottom:471.445500px;}
.y57{bottom:481.299000px;}
.y28{bottom:489.378000px;}
.ya9{bottom:495.180000px;}
.yd1{bottom:498.324000px;}
.y56{bottom:499.231500px;}
.y80{bottom:504.478500px;}
.y27{bottom:507.310500px;}
.ya8{bottom:513.112500px;}
.yd0{bottom:516.258000px;}
.y55{bottom:517.164000px;}
.y7f{bottom:522.411000px;}
.y16{bottom:523.533000px;}
.y26{bottom:525.244500px;}
.ya7{bottom:531.046500px;}
.y15{bottom:539.971500px;}
.y7e{bottom:540.343500px;}
.ycf{bottom:543.156000px;}
.y25{bottom:543.177000px;}
.y54{bottom:544.758000px;}
.y14{bottom:556.410000px;}
.ya6{bottom:557.944500px;}
.y7d{bottom:558.276000px;}
.yce{bottom:561.088500px;}
.y24{bottom:561.109500px;}
.y13{bottom:572.848500px;}
.ya5{bottom:575.878500px;}
.y7c{bottom:576.208500px;}
.ycd{bottom:579.022500px;}
.y23{bottom:579.042000px;}
.y53{bottom:586.612500px;}
.y12{bottom:589.287000px;}
.ya4{bottom:593.811000px;}
.ycc{bottom:596.955000px;}
.y22{bottom:596.974500px;}
.y7b{bottom:603.802500px;}
.y52{bottom:604.545000px;}
.y11{bottom:614.229000px;}
.y21{bottom:614.907000px;}
.ya3{bottom:620.709000px;}
.y51{bottom:622.477500px;}
.ycb{bottom:623.854500px;}
.y10{bottom:630.667500px;}
.y20{bottom:632.841000px;}
.ya2{bottom:638.643000px;}
.y50{bottom:640.411500px;}
.yca{bottom:641.787000px;}
.y7a{bottom:645.657000px;}
.y1f{bottom:650.773500px;}
.ya1{bottom:656.575500px;}
.y4f{bottom:658.344000px;}
.yc9{bottom:659.719500px;}
.yf{bottom:661.587000px;}
.y79{bottom:663.589500px;}
.y1e{bottom:668.706000px;}
.y4e{bottom:676.276500px;}
.yc8{bottom:677.652000px;}
.ye{bottom:681.015000px;}
.y78{bottom:681.522000px;}
.ya0{bottom:683.475000px;}
.y1d{bottom:695.605500px;}
.y77{bottom:699.456000px;}
.y9f{bottom:701.407500px;}
.yd{bottom:703.431000px;}
.y4d{bottom:703.870500px;}
.yc7{bottom:704.551500px;}
.y1c{bottom:713.538000px;}
.y9e{bottom:719.340000px;}
.yc6{bottom:722.484000px;}
.yc{bottom:724.120500px;}
.y76{bottom:727.050000px;}
.y1b{bottom:731.470500px;}
.yc5{bottom:740.416500px;}
.y4c{bottom:745.725000px;}
.y9d{bottom:746.239500px;}
.y1a{bottom:749.403000px;}
.yc4{bottom:758.349000px;}
.y4b{bottom:763.657500px;}
.y9c{bottom:764.172000px;}
.y19{bottom:767.335500px;}
.y75{bottom:768.903000px;}
.yb{bottom:779.983500px;}
.y4a{bottom:781.590000px;}
.y9b{bottom:782.104500px;}
.yc3{bottom:785.248500px;}
.y18{bottom:785.268000px;}
.y74{bottom:786.837000px;}
.ya{bottom:799.410000px;}
.y49{bottom:799.522500px;}
.yc2{bottom:803.181000px;}
.y73{bottom:804.769500px;}
.y9a{bottom:809.004000px;}
.y48{bottom:817.456500px;}
.y9{bottom:818.836500px;}
.y17{bottom:820.182000px;}
.y72{bottom:822.702000px;}
.y99{bottom:826.936500px;}
.yc1{bottom:830.080500px;}
.y47{bottom:835.389000px;}
.y71{bottom:840.634500px;}
.y8{bottom:841.252500px;}
.y98{bottom:844.869000px;}
.yc0{bottom:848.013000px;}
.y70{bottom:858.567000px;}
.y97{bottom:862.801500px;}
.y7{bottom:866.196000px;}
.y46{bottom:870.301500px;}
.ybf{bottom:874.912500px;}
.y6f{bottom:876.499500px;}
.y6{bottom:886.420500px;}
.y96{bottom:889.701000px;}
.ybe{bottom:892.845000px;}
.y6e{bottom:894.433500px;}
.y5{bottom:902.859000px;}
.y95{bottom:907.633500px;}
.ybd{bottom:910.777500px;}
.y6d{bottom:912.366000px;}
.y4{bottom:919.297500px;}
.y45{bottom:919.744500px;}
.y94{bottom:925.566000px;}
.ybc{bottom:928.710000px;}
.y44{bottom:937.677000px;}
.y6c{bottom:939.960000px;}
.y93{bottom:943.500000px;}
.y3{bottom:950.679000px;}
.y43{bottom:955.609500px;}
.y42{bottom:973.542000px;}
.y92{bottom:978.577500px;}
.y6b{bottom:981.814500px;}
.y41{bottom:991.476000px;}
.y6a{bottom:999.747000px;}
.y2{bottom:1003.431000px;}
.ybb{bottom:1009.408500px;}
.y69{bottom:1017.679500px;}
.y40{bottom:1018.374000px;}
.y91{bottom:1027.341000px;}
.y68{bottom:1035.612000px;}
.y1{bottom:1036.306500px;}
.y3f{bottom:1045.273500px;}
.y67{bottom:1053.544500px;}
.yba{bottom:1054.240500px;}
.y3e{bottom:1063.206000px;}
.y66{bottom:1071.478500px;}
.y3d{bottom:1081.138500px;}
.y3c{bottom:1099.072500px;}
.h7{height:36.872459px;}
.hd{height:42.735882px;}
.he{height:42.799501px;}
.h5{height:46.804504px;}
.h4{height:49.076895px;}
.h8{height:52.004981px;}
.hb{height:54.529915px;}
.h9{height:55.061241px;}
.hc{height:65.435898px;}
.h6{height:78.522987px;}
.h3{height:81.887241px;}
.h2{height:89.864597px;}
.ha{height:108.788981px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:42.519000px;}
.x14{left:58.957500px;}
.x3{left:61.944000px;}
.x1{left:250.296000px;}
.x13{left:268.558500px;}
.x24{left:272.712000px;}
.x8{left:276.880500px;}
.x5{left:279.955500px;}
.x22{left:281.044500px;}
.x15{left:287.148000px;}
.x1e{left:299.547000px;}
.x1c{left:308.845500px;}
.x4{left:335.635500px;}
.x18{left:337.542000px;}
.x6{left:365.445000px;}
.x23{left:367.621500px;}
.xd{left:375.609000px;}
.x1f{left:384.886500px;}
.x1d{left:394.189500px;}
.xf{left:455.178000px;}
.x20{left:481.752000px;}
.x11{left:505.620000px;}
.xa{left:528.717000px;}
.xe{left:533.982000px;}
.x9{left:536.938500px;}
.x10{left:540.523500px;}
.x25{left:552.727500px;}
.x21{left:562.102500px;}
.x12{left:590.950500px;}
.xb{left:592.143000px;}
.x16{left:610.915500px;}
.x1b{left:618.627000px;}
.x19{left:638.686500px;}
.x1a{left:658.653000px;}
.xc{left:719.565000px;}
.x7{left:726.870000px;}
.x17{left:732.781500px;}
@media print{
.v3{vertical-align:-13.520000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.845333pt;}
.v2{vertical-align:50.474667pt;}
.lsb{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000124pt;}
.ls24{letter-spacing:0.000280pt;}
.ls7{letter-spacing:0.000853pt;}
.ls8{letter-spacing:0.000907pt;}
.ls0{letter-spacing:0.001951pt;}
.ls18{letter-spacing:0.003818pt;}
.ls1e{letter-spacing:3.448960pt;}
.ls1{letter-spacing:3.674334pt;}
.ls12{letter-spacing:4.040960pt;}
.ls26{letter-spacing:6.163119pt;}
.ls9{letter-spacing:14.123158pt;}
.lsf{letter-spacing:14.545733pt;}
.lse{letter-spacing:15.247773pt;}
.ls3{letter-spacing:15.986952pt;}
.ls2{letter-spacing:15.992301pt;}
.ls1f{letter-spacing:16.602875pt;}
.ls1a{letter-spacing:17.281065pt;}
.ls15{letter-spacing:17.428005pt;}
.ls25{letter-spacing:17.530313pt;}
.ls5{letter-spacing:17.584635pt;}
.lsd{letter-spacing:17.604236pt;}
.ls10{letter-spacing:17.614586pt;}
.ls17{letter-spacing:17.627927pt;}
.ls16{letter-spacing:17.676726pt;}
.ls6{letter-spacing:17.692726pt;}
.ls1d{letter-spacing:17.698059pt;}
.ls21{letter-spacing:17.713090pt;}
.ls19{letter-spacing:17.765278pt;}
.ls11{letter-spacing:17.913693pt;}
.ls22{letter-spacing:18.614347pt;}
.ls1b{letter-spacing:18.839183pt;}
.ls1c{letter-spacing:18.896700pt;}
.ls23{letter-spacing:20.507157pt;}
.ls14{letter-spacing:23.591392pt;}
.ls20{letter-spacing:23.671607pt;}
.ls13{letter-spacing:24.779053pt;}
.ls4{letter-spacing:26.566167pt;}
.lsa{letter-spacing:1288.608491pt;}
.ws1{word-spacing:-61.241059pt;}
.ws0{word-spacing:-60.781980pt;}
.ws41{word-spacing:-54.736960pt;}
.wse{word-spacing:-54.369913pt;}
.ws12{word-spacing:-53.134080pt;}
.ws5{word-spacing:-47.820693pt;}
.ws4c{word-spacing:-45.308313pt;}
.ws2c{word-spacing:-42.507253pt;}
.ws3{word-spacing:-42.411893pt;}
.ws73{word-spacing:-39.744292pt;}
.ws56{word-spacing:-39.691158pt;}
.ws48{word-spacing:-39.478621pt;}
.ws47{word-spacing:-39.319219pt;}
.ws70{word-spacing:-39.000415pt;}
.ws4d{word-spacing:-38.734744pt;}
.ws15{word-spacing:-38.681610pt;}
.ws72{word-spacing:-37.300124pt;}
.ws18{word-spacing:-37.193856pt;}
.ws46{word-spacing:-37.087588pt;}
.ws38{word-spacing:-36.875052pt;}
.ws6b{word-spacing:-36.715649pt;}
.ws71{word-spacing:-36.556247pt;}
.ws77{word-spacing:-36.449979pt;}
.ws36{word-spacing:-36.184308pt;}
.ws55{word-spacing:-36.024906pt;}
.ws3a{word-spacing:-35.865504pt;}
.ws3c{word-spacing:-35.812370pt;}
.ws1e{word-spacing:-35.759236pt;}
.ws1d{word-spacing:-35.706102pt;}
.ws22{word-spacing:-35.652968pt;}
.ws10{word-spacing:-35.599834pt;}
.ws11{word-spacing:-35.546700pt;}
.wsf{word-spacing:-35.493565pt;}
.ws27{word-spacing:-35.441573pt;}
.ws13{word-spacing:-35.440431pt;}
.ws1c{word-spacing:-35.387297pt;}
.ws1b{word-spacing:-35.334163pt;}
.ws21{word-spacing:-35.281029pt;}
.ws16{word-spacing:-35.227895pt;}
.ws14{word-spacing:-35.174761pt;}
.ws1a{word-spacing:-35.121627pt;}
.ws3e{word-spacing:-35.068493pt;}
.ws40{word-spacing:-35.015359pt;}
.ws19{word-spacing:-34.962225pt;}
.ws2f{word-spacing:-34.855956pt;}
.ws3d{word-spacing:-34.749688pt;}
.ws24{word-spacing:-34.696554pt;}
.ws51{word-spacing:-34.643420pt;}
.ws68{word-spacing:-34.590286pt;}
.ws6d{word-spacing:-34.537152pt;}
.ws37{word-spacing:-34.484018pt;}
.ws69{word-spacing:-34.324616pt;}
.ws6e{word-spacing:-34.271482pt;}
.ws7b{word-spacing:-34.218348pt;}
.ws74{word-spacing:-34.005811pt;}
.ws8{word-spacing:-33.981215pt;}
.ws49{word-spacing:-33.952677pt;}
.ws30{word-spacing:-33.740141pt;}
.ws6a{word-spacing:-33.527604pt;}
.ws20{word-spacing:-33.421336pt;}
.ws1f{word-spacing:-33.368202pt;}
.ws6f{word-spacing:-33.261934pt;}
.ws75{word-spacing:-33.208800pt;}
.ws76{word-spacing:-33.155666pt;}
.ws65{word-spacing:-33.102532pt;}
.ws66{word-spacing:-33.049398pt;}
.ws42{word-spacing:-32.943130pt;}
.ws5e{word-spacing:-32.836861pt;}
.ws7d{word-spacing:-32.677459pt;}
.ws4a{word-spacing:-32.571191pt;}
.ws4b{word-spacing:-32.518057pt;}
.ws7a{word-spacing:-32.358655pt;}
.ws79{word-spacing:-32.305521pt;}
.ws43{word-spacing:-32.252387pt;}
.ws6{word-spacing:-31.896402pt;}
.ws78{word-spacing:-31.880448pt;}
.ws4{word-spacing:-31.848582pt;}
.ws54{word-spacing:-31.774180pt;}
.wsd{word-spacing:-31.752940pt;}
.wsc{word-spacing:-31.705120pt;}
.ws61{word-spacing:-31.667912pt;}
.ws25{word-spacing:-31.614778pt;}
.ws44{word-spacing:-31.561644pt;}
.ws52{word-spacing:-31.455375pt;}
.ws53{word-spacing:-31.189705pt;}
.ws35{word-spacing:-31.030303pt;}
.ws3f{word-spacing:-30.977169pt;}
.ws57{word-spacing:-30.764632pt;}
.ws59{word-spacing:-29.967621pt;}
.ws5a{word-spacing:-29.861353pt;}
.ws23{word-spacing:-29.808219pt;}
.ws5d{word-spacing:-29.595683pt;}
.ws64{word-spacing:-29.543702pt;}
.ws3b{word-spacing:-29.542548pt;}
.ws62{word-spacing:-29.538848pt;}
.ws58{word-spacing:-29.538634pt;}
.ws5c{word-spacing:-29.489414pt;}
.ws4f{word-spacing:-29.436280pt;}
.ws4e{word-spacing:-29.383146pt;}
.ws63{word-spacing:-29.276878pt;}
.ws39{word-spacing:-29.117476pt;}
.ws2a{word-spacing:-28.692396pt;}
.ws29{word-spacing:-28.628028pt;}
.ws7c{word-spacing:-28.533001pt;}
.ws5b{word-spacing:-28.373599pt;}
.ws2b{word-spacing:-28.352338pt;}
.ws2d{word-spacing:-28.331145pt;}
.ws50{word-spacing:-27.789124pt;}
.ws5f{word-spacing:-27.364051pt;}
.ws26{word-spacing:-27.147869pt;}
.ws60{word-spacing:-26.779576pt;}
.ws31{word-spacing:-26.568394pt;}
.ws67{word-spacing:-26.425028pt;}
.ws6c{word-spacing:-26.290655pt;}
.ws17{word-spacing:-25.973984pt;}
.ws2{word-spacing:-22.623251pt;}
.ws7{word-spacing:-18.052865pt;}
.ws32{word-spacing:-14.164235pt;}
.ws34{word-spacing:-14.113777pt;}
.ws33{word-spacing:-14.061005pt;}
.ws9{word-spacing:-12.795103pt;}
.wsb{word-spacing:-12.748107pt;}
.wsa{word-spacing:-12.745683pt;}
.ws28{word-spacing:-8.306473pt;}
.ws45{word-spacing:-8.301140pt;}
.ws2e{word-spacing:0.000000pt;}
._5{margin-left:-5.686719pt;}
._a{margin-left:-4.569531pt;}
._16{margin-left:-3.630722pt;}
._2{margin-left:-2.662655pt;}
._4{margin-left:-1.735820pt;}
._6{width:1.338979pt;}
._1{width:2.754470pt;}
._1d{width:3.754713pt;}
._1b{width:4.856633pt;}
._1a{width:6.355760pt;}
._15{width:14.548111pt;}
._8{width:15.451390pt;}
._11{width:16.725342pt;}
._f{width:17.985711pt;}
._e{width:18.955048pt;}
._c{width:20.756932pt;}
._7{width:22.752657pt;}
._b{width:24.069738pt;}
._9{width:25.220100pt;}
._d{width:27.017014pt;}
._1e{width:28.506609pt;}
._12{width:29.486084pt;}
._1f{width:30.502970pt;}
._1c{width:31.832008pt;}
._10{width:32.722633pt;}
._13{width:33.711537pt;}
._14{width:36.633639pt;}
._20{width:39.609148pt;}
._0{width:41.408872pt;}
._17{width:42.652673pt;}
._18{width:44.019277pt;}
._19{width:45.500697pt;}
._3{width:64.361084pt;}
.fsd{font-size:38.315893pt;}
.fs2{font-size:42.411893pt;}
.fsa{font-size:42.507253pt;}
.fs8{font-size:43.138987pt;}
.fs3{font-size:43.789547pt;}
.fs4{font-size:46.359093pt;}
.fs5{font-size:47.820693pt;}
.fs6{font-size:49.263253pt;}
.fsb{font-size:51.510133pt;}
.fs9{font-size:53.134080pt;}
.fsc{font-size:54.736960pt;}
.fs1{font-size:61.812160pt;}
.fs7{font-size:74.174507pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:60.916000pt;}
.y3a{bottom:73.534667pt;}
.y39{bottom:113.385333pt;}
.ye2{bottom:116.180000pt;}
.y90{bottom:120.428000pt;}
.y38{bottom:129.326667pt;}
.y8f{bottom:136.368000pt;}
.yb9{bottom:137.296000pt;}
.ye1{bottom:140.090667pt;}
.y8e{bottom:152.308000pt;}
.y37{bottom:153.236000pt;}
.ye0{bottom:156.030667pt;}
.yb8{bottom:161.206667pt;}
.y8d{bottom:168.248000pt;}
.ydf{bottom:171.972000pt;}
.y65{bottom:174.806667pt;}
.yb7{bottom:177.146667pt;}
.y8c{bottom:184.188000pt;}
.y36{bottom:184.417333pt;}
.y64{bottom:190.746667pt;}
.yde{bottom:195.881333pt;}
.y8b{bottom:200.128000pt;}
.yb6{bottom:201.057333pt;}
.y63{bottom:206.686667pt;}
.ydd{bottom:211.821333pt;}
.y8a{bottom:216.069333pt;}
.yb5{bottom:216.997333pt;}
.y62{bottom:222.628000pt;}
.ydc{bottom:227.762667pt;}
.y35{bottom:227.780000pt;}
.yb4{bottom:232.937333pt;}
.y61{bottom:238.568000pt;}
.ydb{bottom:243.702667pt;}
.y34{bottom:243.720000pt;}
.y89{bottom:247.102667pt;}
.y60{bottom:254.508000pt;}
.yb3{bottom:256.848000pt;}
.y33{bottom:259.660000pt;}
.yda{bottom:267.613333pt;}
.y5f{bottom:270.448000pt;}
.yb2{bottom:272.788000pt;}
.y32{bottom:275.601333pt;}
.y5e{bottom:286.388000pt;}
.yb1{bottom:288.728000pt;}
.y88{bottom:291.052000pt;}
.yd9{bottom:291.522667pt;}
.y31{bottom:291.541333pt;}
.y5d{bottom:302.328000pt;}
.y87{bottom:306.992000pt;}
.yd8{bottom:307.462667pt;}
.y30{bottom:307.481333pt;}
.yb0{bottom:312.638667pt;}
.y86{bottom:322.932000pt;}
.yd7{bottom:323.404000pt;}
.y2f{bottom:323.421333pt;}
.y5c{bottom:326.856000pt;}
.yaf{bottom:328.578667pt;}
.y85{bottom:338.872000pt;}
.y2e{bottom:339.361333pt;}
.yae{bottom:344.518667pt;}
.yd6{bottom:347.313333pt;}
.y84{bottom:354.812000pt;}
.y2d{bottom:355.301333pt;}
.yd5{bottom:363.254667pt;}
.y5b{bottom:364.060000pt;}
.yad{bottom:368.429333pt;}
.y83{bottom:370.753333pt;}
.y2c{bottom:371.242667pt;}
.yd4{bottom:379.194667pt;}
.y5a{bottom:380.000000pt;}
.yac{bottom:384.369333pt;}
.y82{bottom:386.693333pt;}
.y2b{bottom:387.182667pt;}
.y59{bottom:395.941333pt;}
.yab{bottom:400.309333pt;}
.yd3{bottom:403.104000pt;}
.y2a{bottom:403.122667pt;}
.y81{bottom:411.221333pt;}
.y58{bottom:411.881333pt;}
.yaa{bottom:416.250667pt;}
.yd2{bottom:419.045333pt;}
.y29{bottom:419.062667pt;}
.y57{bottom:427.821333pt;}
.y28{bottom:435.002667pt;}
.ya9{bottom:440.160000pt;}
.yd1{bottom:442.954667pt;}
.y56{bottom:443.761333pt;}
.y80{bottom:448.425333pt;}
.y27{bottom:450.942667pt;}
.ya8{bottom:456.100000pt;}
.yd0{bottom:458.896000pt;}
.y55{bottom:459.701333pt;}
.y7f{bottom:464.365333pt;}
.y16{bottom:465.362667pt;}
.y26{bottom:466.884000pt;}
.ya7{bottom:472.041333pt;}
.y15{bottom:479.974667pt;}
.y7e{bottom:480.305333pt;}
.ycf{bottom:482.805333pt;}
.y25{bottom:482.824000pt;}
.y54{bottom:484.229333pt;}
.y14{bottom:494.586667pt;}
.ya6{bottom:495.950667pt;}
.y7d{bottom:496.245333pt;}
.yce{bottom:498.745333pt;}
.y24{bottom:498.764000pt;}
.y13{bottom:509.198667pt;}
.ya5{bottom:511.892000pt;}
.y7c{bottom:512.185333pt;}
.ycd{bottom:514.686667pt;}
.y23{bottom:514.704000pt;}
.y53{bottom:521.433333pt;}
.y12{bottom:523.810667pt;}
.ya4{bottom:527.832000pt;}
.ycc{bottom:530.626667pt;}
.y22{bottom:530.644000pt;}
.y7b{bottom:536.713333pt;}
.y52{bottom:537.373333pt;}
.y11{bottom:545.981333pt;}
.y21{bottom:546.584000pt;}
.ya3{bottom:551.741333pt;}
.y51{bottom:553.313333pt;}
.ycb{bottom:554.537333pt;}
.y10{bottom:560.593333pt;}
.y20{bottom:562.525333pt;}
.ya2{bottom:567.682667pt;}
.y50{bottom:569.254667pt;}
.yca{bottom:570.477333pt;}
.y7a{bottom:573.917333pt;}
.y1f{bottom:578.465333pt;}
.ya1{bottom:583.622667pt;}
.y4f{bottom:585.194667pt;}
.yc9{bottom:586.417333pt;}
.yf{bottom:588.077333pt;}
.y79{bottom:589.857333pt;}
.y1e{bottom:594.405333pt;}
.y4e{bottom:601.134667pt;}
.yc8{bottom:602.357333pt;}
.ye{bottom:605.346667pt;}
.y78{bottom:605.797333pt;}
.ya0{bottom:607.533333pt;}
.y1d{bottom:618.316000pt;}
.y77{bottom:621.738667pt;}
.y9f{bottom:623.473333pt;}
.yd{bottom:625.272000pt;}
.y4d{bottom:625.662667pt;}
.yc7{bottom:626.268000pt;}
.y1c{bottom:634.256000pt;}
.y9e{bottom:639.413333pt;}
.yc6{bottom:642.208000pt;}
.yc{bottom:643.662667pt;}
.y76{bottom:646.266667pt;}
.y1b{bottom:650.196000pt;}
.yc5{bottom:658.148000pt;}
.y4c{bottom:662.866667pt;}
.y9d{bottom:663.324000pt;}
.y1a{bottom:666.136000pt;}
.yc4{bottom:674.088000pt;}
.y4b{bottom:678.806667pt;}
.y9c{bottom:679.264000pt;}
.y19{bottom:682.076000pt;}
.y75{bottom:683.469333pt;}
.yb{bottom:693.318667pt;}
.y4a{bottom:694.746667pt;}
.y9b{bottom:695.204000pt;}
.yc3{bottom:697.998667pt;}
.y18{bottom:698.016000pt;}
.y74{bottom:699.410667pt;}
.ya{bottom:710.586667pt;}
.y49{bottom:710.686667pt;}
.yc2{bottom:713.938667pt;}
.y73{bottom:715.350667pt;}
.y9a{bottom:719.114667pt;}
.y48{bottom:726.628000pt;}
.y9{bottom:727.854667pt;}
.y17{bottom:729.050667pt;}
.y72{bottom:731.290667pt;}
.y99{bottom:735.054667pt;}
.yc1{bottom:737.849333pt;}
.y47{bottom:742.568000pt;}
.y71{bottom:747.230667pt;}
.y8{bottom:747.780000pt;}
.y98{bottom:750.994667pt;}
.yc0{bottom:753.789333pt;}
.y70{bottom:763.170667pt;}
.y97{bottom:766.934667pt;}
.y7{bottom:769.952000pt;}
.y46{bottom:773.601333pt;}
.ybf{bottom:777.700000pt;}
.y6f{bottom:779.110667pt;}
.y6{bottom:787.929333pt;}
.y96{bottom:790.845333pt;}
.ybe{bottom:793.640000pt;}
.y6e{bottom:795.052000pt;}
.y5{bottom:802.541333pt;}
.y95{bottom:806.785333pt;}
.ybd{bottom:809.580000pt;}
.y6d{bottom:810.992000pt;}
.y4{bottom:817.153333pt;}
.y45{bottom:817.550667pt;}
.y94{bottom:822.725333pt;}
.ybc{bottom:825.520000pt;}
.y44{bottom:833.490667pt;}
.y6c{bottom:835.520000pt;}
.y93{bottom:838.666667pt;}
.y3{bottom:845.048000pt;}
.y43{bottom:849.430667pt;}
.y42{bottom:865.370667pt;}
.y92{bottom:869.846667pt;}
.y6b{bottom:872.724000pt;}
.y41{bottom:881.312000pt;}
.y6a{bottom:888.664000pt;}
.y2{bottom:891.938667pt;}
.ybb{bottom:897.252000pt;}
.y69{bottom:904.604000pt;}
.y40{bottom:905.221333pt;}
.y91{bottom:913.192000pt;}
.y68{bottom:920.544000pt;}
.y1{bottom:921.161333pt;}
.y3f{bottom:929.132000pt;}
.y67{bottom:936.484000pt;}
.yba{bottom:937.102667pt;}
.y3e{bottom:945.072000pt;}
.y66{bottom:952.425333pt;}
.y3d{bottom:961.012000pt;}
.y3c{bottom:976.953333pt;}
.h7{height:32.775519pt;}
.hd{height:37.987450pt;}
.he{height:38.044001pt;}
.h5{height:41.604003pt;}
.h4{height:43.623907pt;}
.h8{height:46.226650pt;}
.hb{height:48.471035pt;}
.h9{height:48.943325pt;}
.hc{height:58.165243pt;}
.h6{height:69.798211pt;}
.h3{height:72.788658pt;}
.h2{height:79.879642pt;}
.ha{height:96.701316pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:37.794667pt;}
.x14{left:52.406667pt;}
.x3{left:55.061333pt;}
.x1{left:222.485333pt;}
.x13{left:238.718667pt;}
.x24{left:242.410667pt;}
.x8{left:246.116000pt;}
.x5{left:248.849333pt;}
.x22{left:249.817333pt;}
.x15{left:255.242667pt;}
.x1e{left:266.264000pt;}
.x1c{left:274.529333pt;}
.x4{left:298.342667pt;}
.x18{left:300.037333pt;}
.x6{left:324.840000pt;}
.x23{left:326.774667pt;}
.xd{left:333.874667pt;}
.x1f{left:342.121333pt;}
.x1d{left:350.390667pt;}
.xf{left:404.602667pt;}
.x20{left:428.224000pt;}
.x11{left:449.440000pt;}
.xa{left:469.970667pt;}
.xe{left:474.650667pt;}
.x9{left:477.278667pt;}
.x10{left:480.465333pt;}
.x25{left:491.313333pt;}
.x21{left:499.646667pt;}
.x12{left:525.289333pt;}
.xb{left:526.349333pt;}
.x16{left:543.036000pt;}
.x1b{left:549.890667pt;}
.x19{left:567.721333pt;}
.x1a{left:585.469333pt;}
.xc{left:639.613333pt;}
.x7{left:646.106667pt;}
.x17{left:651.361333pt;}
}




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