
    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_8c55a0fa15866293b853007a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.872000;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_e536286931c2557ccd86df07.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_d3118d9b52e9af8b990238d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_69920cb4b8526fcccbe2813d.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_99754deb489b34243407d39e.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_dd96467c2979dfbde88fabfd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.826000;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_ba3da3cbf45c51f3fe61b43d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5afc0ca2561701fcc3055c3c.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m12{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);}
.m4{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);}
.m10{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);}
.ma{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);}
.m1a{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);}
.m6{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);}
.m19{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);}
.m3{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);}
.m1c{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.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);}
.m8{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);}
.m5{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);}
.m1{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);}
.m1b{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);}
.m23{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);}
.mb{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);}
.m20{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);}
.mc{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);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.me{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);}
.m13{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);}
.m21{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.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);}
.m11{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);}
.m1f{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m15{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);}
.m9{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);}
.m17{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);}
.md{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);}
.m1e{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);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.212000px;}
.v3{vertical-align:-13.272000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.262000px;}
.v1{vertical-align:24.318000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004962px;}
.ls4{letter-spacing:2.386314px;}
.ls3{letter-spacing:2.392563px;}
.ls0{letter-spacing:4.929615px;}
.ls7{letter-spacing:14.913946px;}
.ls6{letter-spacing:14.991946px;}
.ls1{letter-spacing:17.146219px;}
.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;}
.ws1f{word-spacing:-59.775840px;}
.ws6f{word-spacing:-53.798280px;}
.ws1{word-spacing:-53.798263px;}
.ws3a{word-spacing:-49.853049px;}
.ws2a{word-spacing:-49.494396px;}
.ws2c{word-spacing:-49.315068px;}
.ws59{word-spacing:-49.016189px;}
.ws43{word-spacing:-48.657534px;}
.ws41{word-spacing:-48.478205px;}
.ws2b{word-spacing:-48.358653px;}
.ws15{word-spacing:-47.760895px;}
.ws30{word-spacing:-47.402242px;}
.ws51{word-spacing:-47.282690px;}
.ws53{word-spacing:-47.163137px;}
.ws40{word-spacing:-47.103362px;}
.ws42{word-spacing:-46.983810px;}
.ws12{word-spacing:-46.505602px;}
.ws7{word-spacing:-46.326275px;}
.ws45{word-spacing:-46.266499px;}
.ws2f{word-spacing:-46.206723px;}
.ws58{word-spacing:-45.788292px;}
.ws2e{word-spacing:-45.728516px;}
.ws13{word-spacing:-45.668741px;}
.ws10{word-spacing:-45.549190px;}
.ws52{word-spacing:-45.489414px;}
.ws1d{word-spacing:-45.429637px;}
.ws11{word-spacing:-45.190535px;}
.ws1e{word-spacing:-45.130760px;}
.ws9{word-spacing:-45.070983px;}
.wsb{word-spacing:-45.011208px;}
.ws16{word-spacing:-44.951430px;}
.ws25{word-spacing:-44.891655px;}
.wse{word-spacing:-44.831880px;}
.wsc{word-spacing:-44.772103px;}
.ws3{word-spacing:-44.712328px;}
.wsa{word-spacing:-44.652553px;}
.ws6{word-spacing:-44.592775px;}
.ws2d{word-spacing:-44.533001px;}
.ws50{word-spacing:-44.473225px;}
.wsf{word-spacing:-44.353671px;}
.ws39{word-spacing:-44.234119px;}
.ws21{word-spacing:-44.234100px;}
.ws34{word-spacing:-44.054794px;}
.ws36{word-spacing:-43.935240px;}
.ws4a{word-spacing:-43.875467px;}
.ws4{word-spacing:-43.696137px;}
.wsd{word-spacing:-43.576585px;}
.ws3e{word-spacing:-43.397257px;}
.ws19{word-spacing:-43.277708px;}
.ws1b{word-spacing:-43.217932px;}
.ws63{word-spacing:-43.200018px;}
.ws3b{word-spacing:-43.158156px;}
.ws62{word-spacing:-43.146221px;}
.ws1a{word-spacing:-43.038605px;}
.ws46{word-spacing:-42.859275px;}
.ws44{word-spacing:-42.799501px;}
.ws57{word-spacing:-42.739726px;}
.ws79{word-spacing:-42.715833px;}
.ws8{word-spacing:-42.679950px;}
.ws3c{word-spacing:-42.560398px;}
.ws72{word-spacing:-42.554439px;}
.ws4c{word-spacing:-42.440844px;}
.ws3d{word-spacing:-42.321292px;}
.ws3f{word-spacing:-42.261519px;}
.ws7a{word-spacing:-42.177850px;}
.ws5a{word-spacing:-41.962658px;}
.ws49{word-spacing:-41.962640px;}
.ws88{word-spacing:-41.908860px;}
.ws4b{word-spacing:-41.843088px;}
.ws73{word-spacing:-41.693666px;}
.ws54{word-spacing:-41.305105px;}
.ws4d{word-spacing:-41.185551px;}
.ws14{word-spacing:-41.125778px;}
.ws38{word-spacing:-41.066000px;}
.ws1c{word-spacing:-41.006226px;}
.ws8a{word-spacing:-40.671500px;}
.ws5{word-spacing:-40.528017px;}
.ws5c{word-spacing:-40.510104px;}
.ws5d{word-spacing:-40.456305px;}
.ws5b{word-spacing:-40.402507px;}
.ws60{word-spacing:-40.348710px;}
.ws31{word-spacing:-40.348690px;}
.ws83{word-spacing:-40.348410px;}
.ws87{word-spacing:-40.294909px;}
.ws6d{word-spacing:-40.241113px;}
.ws8e{word-spacing:-40.187316px;}
.ws55{word-spacing:-40.169364px;}
.ws6b{word-spacing:-40.133516px;}
.ws5f{word-spacing:-40.079719px;}
.ws5e{word-spacing:-40.025920px;}
.ws66{word-spacing:-39.918320px;}
.ws37{word-spacing:-39.870485px;}
.ws65{word-spacing:-39.864841px;}
.ws67{word-spacing:-39.864525px;}
.ws75{word-spacing:-39.649332px;}
.ws35{word-spacing:-39.631382px;}
.ws17{word-spacing:-39.511828px;}
.ws84{word-spacing:-39.487938px;}
.ws48{word-spacing:-39.452052px;}
.ws76{word-spacing:-39.380339px;}
.ws70{word-spacing:-39.272744px;}
.ws47{word-spacing:-39.272724px;}
.ws8b{word-spacing:-39.218946px;}
.ws4f{word-spacing:-39.212951px;}
.ws85{word-spacing:-39.165148px;}
.ws71{word-spacing:-38.896156px;}
.ws18{word-spacing:-38.854296px;}
.ws80{word-spacing:-38.465770px;}
.ws8d{word-spacing:-38.358174px;}
.ws4e{word-spacing:-38.316311px;}
.ws7c{word-spacing:-38.304373px;}
.ws33{word-spacing:-38.077210px;}
.ws32{word-spacing:-38.017434px;}
.ws56{word-spacing:-37.957658px;}
.ws6e{word-spacing:-37.658796px;}
.ws7d{word-spacing:-37.604998px;}
.ws74{word-spacing:-37.174609px;}
.ws29{word-spacing:-36.224157px;}
.ws7f{word-spacing:-35.775856px;}
.ws7e{word-spacing:-35.722058px;}
.ws81{word-spacing:-35.399268px;}
.ws61{word-spacing:-35.184073px;}
.ws77{word-spacing:-34.926358px;}
.ws78{word-spacing:-34.915084px;}
.ws8c{word-spacing:-34.699888px;}
.ws68{word-spacing:-34.592290px;}
.ws89{word-spacing:-34.538496px;}
.ws82{word-spacing:-34.108110px;}
.ws6c{word-spacing:-33.839114px;}
.ws86{word-spacing:-33.139740px;}
.ws69{word-spacing:-33.085940px;}
.ws22{word-spacing:-26.900590px;}
.ws64{word-spacing:-23.911074px;}
.ws7b{word-spacing:-23.906214px;}
.ws6a{word-spacing:-0.053798px;}
.ws28{word-spacing:0.000000px;}
.ws23{word-spacing:76.692421px;}
.ws26{word-spacing:181.300159px;}
.ws27{word-spacing:337.554168px;}
.ws20{word-spacing:492.612757px;}
.ws24{word-spacing:524.978890px;}
._4{margin-left:-7.890413px;}
._5{margin-left:-6.455792px;}
._0{margin-left:-5.164632px;}
._23{margin-left:-4.020439px;}
._1{margin-left:-3.012702px;}
._2{margin-left:-1.654040px;}
._3{width:2.012695px;}
._13{width:3.254280px;}
._10{width:5.822167px;}
._d{width:7.711085px;}
._28{width:10.796574px;}
._8{width:12.397510px;}
._11{width:13.628892px;}
._9{width:16.079701px;}
._27{width:17.459375px;}
._a{width:19.008717px;}
._7{width:20.602979px;}
._b{width:22.858284px;}
._6{width:23.950428px;}
._f{width:24.986304px;}
._22{width:26.229641px;}
._24{width:29.234611px;}
._c{width:30.724784px;}
._26{width:33.056039px;}
._e{width:36.463268px;}
._25{width:39.814937px;}
._21{width:41.106094px;}
._1b{width:123.305758px;}
._12{width:185.345214px;}
._15{width:187.696138px;}
._14{width:304.163384px;}
._19{width:329.185593px;}
._18{width:389.320088px;}
._1a{width:394.898882px;}
._16{width:451.068533px;}
._17{width:488.229378px;}
._1c{width:500.015880px;}
._1e{width:516.291240px;}
._1d{width:801.009000px;}
._20{width:1238.172000px;}
._1f{width:2288.424000px;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865480px;}
.fs6{font-size:42.000000px;}
.fs5{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;}
.y4e{bottom:6.600001px;}
.y50{bottom:22.500000px;}
.y51{bottom:42.000000px;}
.y7b{bottom:90.508500px;}
.y22{bottom:94.561500px;}
.y4c{bottom:99.660000px;}
.y7a{bottom:108.441000px;}
.y4b{bottom:117.592500px;}
.y21{bottom:121.519500px;}
.y79{bottom:126.373500px;}
.y52{bottom:130.500000px;}
.y4a{bottom:135.525000px;}
.y20{bottom:139.452000px;}
.y78{bottom:144.306000px;}
.y49{bottom:153.685500px;}
.y1f{bottom:157.384500px;}
.y77{bottom:162.238500px;}
.y48{bottom:171.618000px;}
.y1e{bottom:175.317000px;}
.y76{bottom:180.172500px;}
.y47{bottom:189.550500px;}
.yb0{bottom:191.133000px;}
.y1d{bottom:193.249500px;}
.y75{bottom:198.105000px;}
.y46{bottom:207.483000px;}
.y74{bottom:216.037500px;}
.y1c{bottom:219.981000px;}
.y45{bottom:225.415500px;}
.y73{bottom:233.970000px;}
.yaf{bottom:235.762500px;}
.y44{bottom:243.348000px;}
.y72{bottom:251.902500px;}
.yae{bottom:253.696500px;}
.y43{bottom:261.282000px;}
.y71{bottom:269.835000px;}
.yad{bottom:271.629000px;}
.ya0{bottom:271.927500px;}
.y42{bottom:279.214500px;}
.y1b{bottom:280.519500px;}
.y70{bottom:287.769000px;}
.yac{bottom:289.561500px;}
.y9f{bottom:289.860000px;}
.y41{bottom:297.147000px;}
.y6f{bottom:305.701500px;}
.yab{bottom:307.494000px;}
.y40{bottom:315.079500px;}
.y6e{bottom:323.634000px;}
.yaa{bottom:325.426500px;}
.y3f{bottom:333.133500px;}
.y6d{bottom:341.566500px;}
.ya9{bottom:343.359000px;}
.y3e{bottom:358.576500px;}
.y6c{bottom:359.499000px;}
.ya8{bottom:361.293000px;}
.y9b{bottom:377.431500px;}
.ya7{bottom:379.225500px;}
.y6b{bottom:386.085000px;}
.y3d{bottom:389.364000px;}
.y9a{bottom:395.365500px;}
.ya6{bottom:397.158000px;}
.y6a{bottom:407.007000px;}
.y99{bottom:413.298000px;}
.ya5{bottom:426.052500px;}
.y3c{bottom:430.984500px;}
.y98{bottom:431.230500px;}
.y69{bottom:446.046000px;}
.y3b{bottom:448.917000px;}
.y97{bottom:449.163000px;}
.y68{bottom:463.978500px;}
.y3a{bottom:466.849500px;}
.y96{bottom:467.095500px;}
.ya4{bottom:470.682000px;}
.y67{bottom:481.911000px;}
.y39{bottom:484.782000px;}
.y95{bottom:485.028000px;}
.ya3{bottom:488.614500px;}
.yd0{bottom:491.380500px;}
.y66{bottom:499.843500px;}
.y38{bottom:502.714500px;}
.y94{bottom:502.962000px;}
.ycf{bottom:507.817500px;}
.yf1{bottom:512.628000px;}
.y65{bottom:517.777500px;}
.y37{bottom:520.648500px;}
.yce{bottom:524.256000px;}
.y93{bottom:528.711000px;}
.yf0{bottom:529.066500px;}
.y64{bottom:535.710000px;}
.y36{bottom:538.581000px;}
.ycd{bottom:540.694500px;}
.ya2{bottom:543.286500px;}
.yef{bottom:545.505000px;}
.y63{bottom:553.642500px;}
.y35{bottom:556.513500px;}
.ya1{bottom:561.219000px;}
.yee{bottom:561.943500px;}
.ycc{bottom:564.801000px;}
.y92{bottom:565.726500px;}
.y1a{bottom:567.139500px;}
.y9e{bottom:572.064000px;}
.y34{bottom:574.446000px;}
.ycb{bottom:581.239500px;}
.yed{bottom:583.192500px;}
.y91{bottom:583.659000px;}
.y19{bottom:585.072000px;}
.y9d{bottom:589.996500px;}
.y33{bottom:592.378500px;}
.y62{bottom:594.586500px;}
.yca{bottom:597.676500px;}
.yec{bottom:599.629500px;}
.y90{bottom:601.591500px;}
.y18{bottom:603.004500px;}
.y32{bottom:610.311000px;}
.y61{bottom:612.519000px;}
.yeb{bottom:616.068000px;}
.y8f{bottom:619.524000px;}
.y17{bottom:620.938500px;}
.yc9{bottom:621.783000px;}
.y31{bottom:628.245000px;}
.yea{bottom:632.506500px;}
.y8e{bottom:637.456500px;}
.yc8{bottom:638.221500px;}
.y16{bottom:638.871000px;}
.y30{bottom:646.177500px;}
.ye9{bottom:653.755500px;}
.yc7{bottom:654.660000px;}
.y8d{bottom:655.390500px;}
.y15{bottom:656.803500px;}
.y2f{bottom:664.110000px;}
.ye8{bottom:670.194000px;}
.yc6{bottom:671.098500px;}
.y8c{bottom:673.323000px;}
.y14{bottom:674.736000px;}
.y2e{bottom:682.042500px;}
.ye7{bottom:686.632500px;}
.y8b{bottom:691.255500px;}
.y13{bottom:692.668500px;}
.yc5{bottom:695.203500px;}
.y2d{bottom:699.975000px;}
.ye6{bottom:703.071000px;}
.y8a{bottom:709.188000px;}
.y12{bottom:710.601000px;}
.yc4{bottom:711.642000px;}
.y2c{bottom:717.907500px;}
.ye5{bottom:719.508000px;}
.y89{bottom:727.120500px;}
.yc3{bottom:728.080500px;}
.y11{bottom:728.535000px;}
.y2b{bottom:735.841500px;}
.ye4{bottom:741.924000px;}
.yc2{bottom:744.519000px;}
.y88{bottom:745.053000px;}
.y10{bottom:746.467500px;}
.y2a{bottom:753.774000px;}
.ye3{bottom:758.362500px;}
.y87{bottom:762.987000px;}
.yf{bottom:764.400000px;}
.yc1{bottom:768.624000px;}
.y29{bottom:771.706500px;}
.ye2{bottom:774.801000px;}
.y86{bottom:780.919500px;}
.ye{bottom:782.332500px;}
.yc0{bottom:785.062500px;}
.y28{bottom:789.639000px;}
.ye1{bottom:791.239500px;}
.y85{bottom:798.852000px;}
.yd{bottom:800.265000px;}
.ybf{bottom:801.501000px;}
.y27{bottom:807.571500px;}
.ye0{bottom:807.678000px;}
.y84{bottom:816.784500px;}
.ybe{bottom:817.939500px;}
.yc{bottom:818.197500px;}
.y26{bottom:825.504000px;}
.ydf{bottom:828.927000px;}
.y83{bottom:834.717000px;}
.yb{bottom:836.131500px;}
.ybd{bottom:842.044500px;}
.y25{bottom:843.438000px;}
.yde{bottom:845.365500px;}
.y82{bottom:852.649500px;}
.ya{bottom:854.064000px;}
.y24{bottom:861.370500px;}
.y60{bottom:861.616500px;}
.ydd{bottom:861.802500px;}
.ybc{bottom:866.151000px;}
.y9c{bottom:867.124500px;}
.y81{bottom:870.583500px;}
.y9{bottom:871.996500px;}
.ydc{bottom:878.241000px;}
.y23{bottom:879.303000px;}
.y5f{bottom:879.549000px;}
.ybb{bottom:882.588000px;}
.y80{bottom:888.516000px;}
.y8{bottom:897.235500px;}
.y5e{bottom:897.481500px;}
.ydb{bottom:899.490000px;}
.y7f{bottom:906.448500px;}
.yba{bottom:906.694500px;}
.y5d{bottom:915.414000px;}
.yda{bottom:915.928500px;}
.yb9{bottom:923.133000px;}
.y7e{bottom:924.381000px;}
.yd9{bottom:932.367000px;}
.y5c{bottom:933.348000px;}
.y7{bottom:933.400500px;}
.yb8{bottom:939.571500px;}
.y7d{bottom:942.313500px;}
.yd8{bottom:948.805500px;}
.y5b{bottom:951.280500px;}
.y6{bottom:954.321000px;}
.yb7{bottom:956.010000px;}
.y7c{bottom:968.064000px;}
.y5a{bottom:969.213000px;}
.yd7{bottom:970.053000px;}
.y5{bottom:975.243000px;}
.yb6{bottom:980.115000px;}
.yd6{bottom:986.491500px;}
.y59{bottom:987.145500px;}
.y4{bottom:996.165000px;}
.yb5{bottom:996.553500px;}
.y58{bottom:1005.078000px;}
.yd5{bottom:1007.740500px;}
.yb4{bottom:1012.992000px;}
.y3{bottom:1017.085500px;}
.y57{bottom:1023.010500px;}
.yd4{bottom:1028.989500px;}
.yb3{bottom:1029.430500px;}
.y56{bottom:1040.944500px;}
.yd3{bottom:1045.426500px;}
.y2{bottom:1052.952000px;}
.yb2{bottom:1053.535500px;}
.y55{bottom:1058.877000px;}
.yd2{bottom:1061.865000px;}
.yb1{bottom:1069.974000px;}
.y54{bottom:1076.809500px;}
.yd1{bottom:1078.303500px;}
.y1{bottom:1079.851500px;}
.y53{bottom:1094.742000px;}
.y4f{bottom:1131.000000px;}
.y4d{bottom:1150.500000px;}
.hc{height:15.000000px;}
.h7{height:23.886410px;}
.h10{height:36.636629px;}
.hf{height:37.013217px;}
.h8{height:40.408468px;}
.h5{height:41.125778px;}
.h9{height:41.364881px;}
.hd{height:43.804688px;}
.h4{height:48.992287px;}
.h3{height:49.350942px;}
.h6{height:49.637866px;}
.ha{height:50.695061px;}
.hb{height:50.701061px;}
.h2{height:57.218614px;}
.h1{height:59.565422px;}
.he{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:8.399999px;}
.x25{left:44.250000px;}
.x8{left:84.483000px;}
.x11{left:85.500000px;}
.x4{left:91.405500px;}
.x9{left:99.984000px;}
.x3{left:104.473500px;}
.xa{left:107.023500px;}
.x19{left:113.797500px;}
.x2a{left:114.918000px;}
.x6{left:117.802500px;}
.x26{left:130.155000px;}
.x15{left:148.654500px;}
.x16{left:156.127500px;}
.x1{left:158.841000px;}
.xb{left:188.971500px;}
.x29{left:200.331000px;}
.x2{left:203.773500px;}
.x12{left:211.944030px;}
.x7{left:243.565500px;}
.x17{left:246.189000px;}
.x18{left:253.660500px;}
.x1a{left:259.027500px;}
.x5{left:262.126500px;}
.x1b{left:298.258500px;}
.x1c{left:393.154500px;}
.xc{left:457.086000px;}
.x1f{left:472.030500px;}
.x27{left:474.904500px;}
.x2b{left:486.966000px;}
.x22{left:490.785000px;}
.xf{left:497.242500px;}
.x1d{left:501.268500px;}
.x10{left:504.109500px;}
.x28{left:527.842500px;}
.x1e{left:547.650000px;}
.xd{left:555.354000px;}
.x23{left:563.338500px;}
.xe{left:581.236500px;}
.x24{left:604.518000px;}
.x20{left:611.821500px;}
.x2d{left:622.170000px;}
.x21{left:625.296000px;}
.x2c{left:724.554000px;}
.x13{left:836.250000px;}
@media print{
.v2{vertical-align:-14.410667pt;}
.v3{vertical-align:-11.797333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.010667pt;}
.v1{vertical-align:21.616000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004410pt;}
.ls4{letter-spacing:2.121168pt;}
.ls3{letter-spacing:2.126723pt;}
.ls0{letter-spacing:4.381880pt;}
.ls7{letter-spacing:13.256841pt;}
.ls6{letter-spacing:13.326174pt;}
.ls1{letter-spacing:15.241084pt;}
.ws2{word-spacing:-63.760907pt;}
.ws0{word-spacing:-57.384798pt;}
.ws1f{word-spacing:-53.134080pt;}
.ws6f{word-spacing:-47.820693pt;}
.ws1{word-spacing:-47.820678pt;}
.ws3a{word-spacing:-44.313822pt;}
.ws2a{word-spacing:-43.995018pt;}
.ws2c{word-spacing:-43.835616pt;}
.ws59{word-spacing:-43.569946pt;}
.ws43{word-spacing:-43.251141pt;}
.ws41{word-spacing:-43.091738pt;}
.ws2b{word-spacing:-42.985470pt;}
.ws15{word-spacing:-42.454129pt;}
.ws30{word-spacing:-42.135326pt;}
.ws51{word-spacing:-42.029058pt;}
.ws53{word-spacing:-41.922788pt;}
.ws40{word-spacing:-41.869655pt;}
.ws42{word-spacing:-41.763387pt;}
.ws12{word-spacing:-41.338313pt;}
.ws7{word-spacing:-41.178911pt;}
.ws45{word-spacing:-41.125777pt;}
.ws2f{word-spacing:-41.072643pt;}
.ws58{word-spacing:-40.700704pt;}
.ws2e{word-spacing:-40.647570pt;}
.ws13{word-spacing:-40.594436pt;}
.ws10{word-spacing:-40.488169pt;}
.ws52{word-spacing:-40.435035pt;}
.ws1d{word-spacing:-40.381900pt;}
.ws11{word-spacing:-40.169364pt;}
.ws1e{word-spacing:-40.116231pt;}
.ws9{word-spacing:-40.063096pt;}
.wsb{word-spacing:-40.009962pt;}
.ws16{word-spacing:-39.956827pt;}
.ws25{word-spacing:-39.903693pt;}
.wse{word-spacing:-39.850560pt;}
.wsc{word-spacing:-39.797425pt;}
.ws3{word-spacing:-39.744292pt;}
.wsa{word-spacing:-39.691158pt;}
.ws6{word-spacing:-39.638023pt;}
.ws2d{word-spacing:-39.584890pt;}
.ws50{word-spacing:-39.531756pt;}
.wsf{word-spacing:-39.425485pt;}
.ws39{word-spacing:-39.319217pt;}
.ws21{word-spacing:-39.319200pt;}
.ws34{word-spacing:-39.159817pt;}
.ws36{word-spacing:-39.053547pt;}
.ws4a{word-spacing:-39.000415pt;}
.ws4{word-spacing:-38.841010pt;}
.wsd{word-spacing:-38.734742pt;}
.ws3e{word-spacing:-38.575340pt;}
.ws19{word-spacing:-38.469074pt;}
.ws1b{word-spacing:-38.415940pt;}
.ws63{word-spacing:-38.400016pt;}
.ws3b{word-spacing:-38.362806pt;}
.ws62{word-spacing:-38.352196pt;}
.ws1a{word-spacing:-38.256538pt;}
.ws46{word-spacing:-38.097133pt;}
.ws44{word-spacing:-38.044001pt;}
.ws57{word-spacing:-37.990867pt;}
.ws79{word-spacing:-37.969630pt;}
.ws8{word-spacing:-37.937733pt;}
.ws3c{word-spacing:-37.831465pt;}
.ws72{word-spacing:-37.826168pt;}
.ws4c{word-spacing:-37.725195pt;}
.ws3d{word-spacing:-37.618927pt;}
.ws3f{word-spacing:-37.565795pt;}
.ws7a{word-spacing:-37.491423pt;}
.ws5a{word-spacing:-37.300141pt;}
.ws49{word-spacing:-37.300124pt;}
.ws88{word-spacing:-37.252320pt;}
.ws4b{word-spacing:-37.193856pt;}
.ws73{word-spacing:-37.061036pt;}
.ws54{word-spacing:-36.715649pt;}
.ws4d{word-spacing:-36.609379pt;}
.ws14{word-spacing:-36.556247pt;}
.ws38{word-spacing:-36.503111pt;}
.ws1c{word-spacing:-36.449979pt;}
.ws8a{word-spacing:-36.152444pt;}
.ws5{word-spacing:-36.024904pt;}
.ws5c{word-spacing:-36.008981pt;}
.ws5d{word-spacing:-35.961160pt;}
.ws5b{word-spacing:-35.913340pt;}
.ws60{word-spacing:-35.865520pt;}
.ws31{word-spacing:-35.865502pt;}
.ws83{word-spacing:-35.865253pt;}
.ws87{word-spacing:-35.817697pt;}
.ws6d{word-spacing:-35.769879pt;}
.ws8e{word-spacing:-35.722058pt;}
.ws55{word-spacing:-35.706102pt;}
.ws6b{word-spacing:-35.674236pt;}
.ws5f{word-spacing:-35.626417pt;}
.ws5e{word-spacing:-35.578596pt;}
.ws66{word-spacing:-35.482951pt;}
.ws37{word-spacing:-35.440431pt;}
.ws65{word-spacing:-35.435414pt;}
.ws67{word-spacing:-35.435134pt;}
.ws75{word-spacing:-35.243851pt;}
.ws35{word-spacing:-35.227895pt;}
.ws17{word-spacing:-35.121625pt;}
.ws84{word-spacing:-35.100389pt;}
.ws48{word-spacing:-35.068491pt;}
.ws76{word-spacing:-35.004746pt;}
.ws70{word-spacing:-34.909106pt;}
.ws47{word-spacing:-34.909088pt;}
.ws8b{word-spacing:-34.861285pt;}
.ws4f{word-spacing:-34.855956pt;}
.ws85{word-spacing:-34.813465pt;}
.ws71{word-spacing:-34.574361pt;}
.ws18{word-spacing:-34.537152pt;}
.ws80{word-spacing:-34.191796pt;}
.ws8d{word-spacing:-34.096154pt;}
.ws4e{word-spacing:-34.058943pt;}
.ws7c{word-spacing:-34.048332pt;}
.ws33{word-spacing:-33.846409pt;}
.ws32{word-spacing:-33.793275pt;}
.ws56{word-spacing:-33.740141pt;}
.ws6e{word-spacing:-33.474485pt;}
.ws7d{word-spacing:-33.426665pt;}
.ws74{word-spacing:-33.044097pt;}
.ws29{word-spacing:-32.199250pt;}
.ws7f{word-spacing:-31.800761pt;}
.ws7e{word-spacing:-31.752940pt;}
.ws81{word-spacing:-31.466016pt;}
.ws61{word-spacing:-31.274732pt;}
.ws77{word-spacing:-31.045651pt;}
.ws78{word-spacing:-31.035630pt;}
.ws8c{word-spacing:-30.844345pt;}
.ws68{word-spacing:-30.748702pt;}
.ws89{word-spacing:-30.700885pt;}
.ws82{word-spacing:-30.318320pt;}
.ws6c{word-spacing:-30.079213pt;}
.ws86{word-spacing:-29.457547pt;}
.ws69{word-spacing:-29.409724pt;}
.ws22{word-spacing:-23.911635pt;}
.ws64{word-spacing:-21.254288pt;}
.ws7b{word-spacing:-21.249968pt;}
.ws6a{word-spacing:-0.047821pt;}
.ws28{word-spacing:0.000000pt;}
.ws23{word-spacing:68.171041pt;}
.ws26{word-spacing:161.155697pt;}
.ws27{word-spacing:300.048150pt;}
.ws20{word-spacing:437.878006pt;}
.ws24{word-spacing:466.647903pt;}
._4{margin-left:-7.013700pt;}
._5{margin-left:-5.738482pt;}
._0{margin-left:-4.590784pt;}
._23{margin-left:-3.573723pt;}
._1{margin-left:-2.677958pt;}
._2{margin-left:-1.470258pt;}
._3{width:1.789062pt;}
._13{width:2.892694pt;}
._10{width:5.175260pt;}
._d{width:6.854297pt;}
._28{width:9.596954pt;}
._8{width:11.020009pt;}
._11{width:12.114571pt;}
._9{width:14.293067pt;}
._27{width:15.519445pt;}
._a{width:16.896637pt;}
._7{width:18.313759pt;}
._b{width:20.318474pt;}
._6{width:21.289270pt;}
._f{width:22.210048pt;}
._22{width:23.315236pt;}
._24{width:25.986321pt;}
._c{width:27.310919pt;}
._26{width:29.383146pt;}
._e{width:32.411794pt;}
._25{width:35.391055pt;}
._21{width:36.538751pt;}
._1b{width:109.605118pt;}
._12{width:164.751302pt;}
._15{width:166.841011pt;}
._14{width:270.367453pt;}
._19{width:292.609416pt;}
._18{width:346.062300pt;}
._1a{width:351.021229pt;}
._16{width:400.949807pt;}
._17{width:433.981669pt;}
._1c{width:444.458560pt;}
._1e{width:458.925547pt;}
._1d{width:712.008000pt;}
._20{width:1100.597333pt;}
._1f{width:2034.154667pt;}
.fs4{font-size:31.880427pt;}
.fs6{font-size:37.333333pt;}
.fs5{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;}
.y4e{bottom:5.866668pt;}
.y50{bottom:20.000000pt;}
.y51{bottom:37.333333pt;}
.y7b{bottom:80.452000pt;}
.y22{bottom:84.054667pt;}
.y4c{bottom:88.586667pt;}
.y7a{bottom:96.392000pt;}
.y4b{bottom:104.526667pt;}
.y21{bottom:108.017333pt;}
.y79{bottom:112.332000pt;}
.y52{bottom:116.000000pt;}
.y4a{bottom:120.466667pt;}
.y20{bottom:123.957333pt;}
.y78{bottom:128.272000pt;}
.y49{bottom:136.609333pt;}
.y1f{bottom:139.897333pt;}
.y77{bottom:144.212000pt;}
.y48{bottom:152.549333pt;}
.y1e{bottom:155.837333pt;}
.y76{bottom:160.153333pt;}
.y47{bottom:168.489333pt;}
.yb0{bottom:169.896000pt;}
.y1d{bottom:171.777333pt;}
.y75{bottom:176.093333pt;}
.y46{bottom:184.429333pt;}
.y74{bottom:192.033333pt;}
.y1c{bottom:195.538667pt;}
.y45{bottom:200.369333pt;}
.y73{bottom:207.973333pt;}
.yaf{bottom:209.566667pt;}
.y44{bottom:216.309333pt;}
.y72{bottom:223.913333pt;}
.yae{bottom:225.508000pt;}
.y43{bottom:232.250667pt;}
.y71{bottom:239.853333pt;}
.yad{bottom:241.448000pt;}
.ya0{bottom:241.713333pt;}
.y42{bottom:248.190667pt;}
.y1b{bottom:249.350667pt;}
.y70{bottom:255.794667pt;}
.yac{bottom:257.388000pt;}
.y9f{bottom:257.653333pt;}
.y41{bottom:264.130667pt;}
.y6f{bottom:271.734667pt;}
.yab{bottom:273.328000pt;}
.y40{bottom:280.070667pt;}
.y6e{bottom:287.674667pt;}
.yaa{bottom:289.268000pt;}
.y3f{bottom:296.118667pt;}
.y6d{bottom:303.614667pt;}
.ya9{bottom:305.208000pt;}
.y3e{bottom:318.734667pt;}
.y6c{bottom:319.554667pt;}
.ya8{bottom:321.149333pt;}
.y9b{bottom:335.494667pt;}
.ya7{bottom:337.089333pt;}
.y6b{bottom:343.186667pt;}
.y3d{bottom:346.101333pt;}
.y9a{bottom:351.436000pt;}
.ya6{bottom:353.029333pt;}
.y6a{bottom:361.784000pt;}
.y99{bottom:367.376000pt;}
.ya5{bottom:378.713333pt;}
.y3c{bottom:383.097333pt;}
.y98{bottom:383.316000pt;}
.y69{bottom:396.485333pt;}
.y3b{bottom:399.037333pt;}
.y97{bottom:399.256000pt;}
.y68{bottom:412.425333pt;}
.y3a{bottom:414.977333pt;}
.y96{bottom:415.196000pt;}
.ya4{bottom:418.384000pt;}
.y67{bottom:428.365333pt;}
.y39{bottom:430.917333pt;}
.y95{bottom:431.136000pt;}
.ya3{bottom:434.324000pt;}
.yd0{bottom:436.782667pt;}
.y66{bottom:444.305333pt;}
.y38{bottom:446.857333pt;}
.y94{bottom:447.077333pt;}
.ycf{bottom:451.393333pt;}
.yf1{bottom:455.669333pt;}
.y65{bottom:460.246667pt;}
.y37{bottom:462.798667pt;}
.yce{bottom:466.005333pt;}
.y93{bottom:469.965333pt;}
.yf0{bottom:470.281333pt;}
.y64{bottom:476.186667pt;}
.y36{bottom:478.738667pt;}
.ycd{bottom:480.617333pt;}
.ya2{bottom:482.921333pt;}
.yef{bottom:484.893333pt;}
.y63{bottom:492.126667pt;}
.y35{bottom:494.678667pt;}
.ya1{bottom:498.861333pt;}
.yee{bottom:499.505333pt;}
.ycc{bottom:502.045333pt;}
.y92{bottom:502.868000pt;}
.y1a{bottom:504.124000pt;}
.y9e{bottom:508.501333pt;}
.y34{bottom:510.618667pt;}
.ycb{bottom:516.657333pt;}
.yed{bottom:518.393333pt;}
.y91{bottom:518.808000pt;}
.y19{bottom:520.064000pt;}
.y9d{bottom:524.441333pt;}
.y33{bottom:526.558667pt;}
.y62{bottom:528.521333pt;}
.yca{bottom:531.268000pt;}
.yec{bottom:533.004000pt;}
.y90{bottom:534.748000pt;}
.y18{bottom:536.004000pt;}
.y32{bottom:542.498667pt;}
.y61{bottom:544.461333pt;}
.yeb{bottom:547.616000pt;}
.y8f{bottom:550.688000pt;}
.y17{bottom:551.945333pt;}
.yc9{bottom:552.696000pt;}
.y31{bottom:558.440000pt;}
.yea{bottom:562.228000pt;}
.y8e{bottom:566.628000pt;}
.yc8{bottom:567.308000pt;}
.y16{bottom:567.885333pt;}
.y30{bottom:574.380000pt;}
.ye9{bottom:581.116000pt;}
.yc7{bottom:581.920000pt;}
.y8d{bottom:582.569333pt;}
.y15{bottom:583.825333pt;}
.y2f{bottom:590.320000pt;}
.ye8{bottom:595.728000pt;}
.yc6{bottom:596.532000pt;}
.y8c{bottom:598.509333pt;}
.y14{bottom:599.765333pt;}
.y2e{bottom:606.260000pt;}
.ye7{bottom:610.340000pt;}
.y8b{bottom:614.449333pt;}
.y13{bottom:615.705333pt;}
.yc5{bottom:617.958667pt;}
.y2d{bottom:622.200000pt;}
.ye6{bottom:624.952000pt;}
.y8a{bottom:630.389333pt;}
.y12{bottom:631.645333pt;}
.yc4{bottom:632.570667pt;}
.y2c{bottom:638.140000pt;}
.ye5{bottom:639.562667pt;}
.y89{bottom:646.329333pt;}
.yc3{bottom:647.182667pt;}
.y11{bottom:647.586667pt;}
.y2b{bottom:654.081333pt;}
.ye4{bottom:659.488000pt;}
.yc2{bottom:661.794667pt;}
.y88{bottom:662.269333pt;}
.y10{bottom:663.526667pt;}
.y2a{bottom:670.021333pt;}
.ye3{bottom:674.100000pt;}
.y87{bottom:678.210667pt;}
.yf{bottom:679.466667pt;}
.yc1{bottom:683.221333pt;}
.y29{bottom:685.961333pt;}
.ye2{bottom:688.712000pt;}
.y86{bottom:694.150667pt;}
.ye{bottom:695.406667pt;}
.yc0{bottom:697.833333pt;}
.y28{bottom:701.901333pt;}
.ye1{bottom:703.324000pt;}
.y85{bottom:710.090667pt;}
.yd{bottom:711.346667pt;}
.ybf{bottom:712.445333pt;}
.y27{bottom:717.841333pt;}
.ye0{bottom:717.936000pt;}
.y84{bottom:726.030667pt;}
.ybe{bottom:727.057333pt;}
.yc{bottom:727.286667pt;}
.y26{bottom:733.781333pt;}
.ydf{bottom:736.824000pt;}
.y83{bottom:741.970667pt;}
.yb{bottom:743.228000pt;}
.ybd{bottom:748.484000pt;}
.y25{bottom:749.722667pt;}
.yde{bottom:751.436000pt;}
.y82{bottom:757.910667pt;}
.ya{bottom:759.168000pt;}
.y24{bottom:765.662667pt;}
.y60{bottom:765.881333pt;}
.ydd{bottom:766.046667pt;}
.ybc{bottom:769.912000pt;}
.y9c{bottom:770.777333pt;}
.y81{bottom:773.852000pt;}
.y9{bottom:775.108000pt;}
.ydc{bottom:780.658667pt;}
.y23{bottom:781.602667pt;}
.y5f{bottom:781.821333pt;}
.ybb{bottom:784.522667pt;}
.y80{bottom:789.792000pt;}
.y8{bottom:797.542667pt;}
.y5e{bottom:797.761333pt;}
.ydb{bottom:799.546667pt;}
.y7f{bottom:805.732000pt;}
.yba{bottom:805.950667pt;}
.y5d{bottom:813.701333pt;}
.yda{bottom:814.158667pt;}
.yb9{bottom:820.562667pt;}
.y7e{bottom:821.672000pt;}
.yd9{bottom:828.770667pt;}
.y5c{bottom:829.642667pt;}
.y7{bottom:829.689333pt;}
.yb8{bottom:835.174667pt;}
.y7d{bottom:837.612000pt;}
.yd8{bottom:843.382667pt;}
.y5b{bottom:845.582667pt;}
.y6{bottom:848.285333pt;}
.yb7{bottom:849.786667pt;}
.y7c{bottom:860.501333pt;}
.y5a{bottom:861.522667pt;}
.yd7{bottom:862.269333pt;}
.y5{bottom:866.882667pt;}
.yb6{bottom:871.213333pt;}
.yd6{bottom:876.881333pt;}
.y59{bottom:877.462667pt;}
.y4{bottom:885.480000pt;}
.yb5{bottom:885.825333pt;}
.y58{bottom:893.402667pt;}
.yd5{bottom:895.769333pt;}
.yb4{bottom:900.437333pt;}
.y3{bottom:904.076000pt;}
.y57{bottom:909.342667pt;}
.yd4{bottom:914.657333pt;}
.yb3{bottom:915.049333pt;}
.y56{bottom:925.284000pt;}
.yd3{bottom:929.268000pt;}
.y2{bottom:935.957333pt;}
.yb2{bottom:936.476000pt;}
.y55{bottom:941.224000pt;}
.yd2{bottom:943.880000pt;}
.yb1{bottom:951.088000pt;}
.y54{bottom:957.164000pt;}
.yd1{bottom:958.492000pt;}
.y1{bottom:959.868000pt;}
.y53{bottom:973.104000pt;}
.y4f{bottom:1005.333333pt;}
.y4d{bottom:1022.666667pt;}
.hc{height:13.333333pt;}
.h7{height:21.232364pt;}
.h10{height:32.565892pt;}
.hf{height:32.900637pt;}
.h8{height:35.918638pt;}
.h5{height:36.556247pt;}
.h9{height:36.768783pt;}
.hd{height:38.937500pt;}
.h4{height:43.548699pt;}
.h3{height:43.867504pt;}
.h6{height:44.122547pt;}
.ha{height:45.062276pt;}
.hb{height:45.067610pt;}
.h2{height:50.860990pt;}
.h1{height:52.947042pt;}
.he{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:7.466666pt;}
.x25{left:39.333333pt;}
.x8{left:75.096000pt;}
.x11{left:76.000000pt;}
.x4{left:81.249333pt;}
.x9{left:88.874667pt;}
.x3{left:92.865333pt;}
.xa{left:95.132000pt;}
.x19{left:101.153333pt;}
.x2a{left:102.149333pt;}
.x6{left:104.713333pt;}
.x26{left:115.693333pt;}
.x15{left:132.137333pt;}
.x16{left:138.780000pt;}
.x1{left:141.192000pt;}
.xb{left:167.974667pt;}
.x29{left:178.072000pt;}
.x2{left:181.132000pt;}
.x12{left:188.394693pt;}
.x7{left:216.502667pt;}
.x17{left:218.834667pt;}
.x18{left:225.476000pt;}
.x1a{left:230.246667pt;}
.x5{left:233.001333pt;}
.x1b{left:265.118667pt;}
.x1c{left:349.470667pt;}
.xc{left:406.298667pt;}
.x1f{left:419.582667pt;}
.x27{left:422.137333pt;}
.x2b{left:432.858667pt;}
.x22{left:436.253333pt;}
.xf{left:441.993333pt;}
.x1d{left:445.572000pt;}
.x10{left:448.097333pt;}
.x28{left:469.193333pt;}
.x1e{left:486.800000pt;}
.xd{left:493.648000pt;}
.x23{left:500.745333pt;}
.xe{left:516.654667pt;}
.x24{left:537.349333pt;}
.x20{left:543.841333pt;}
.x2d{left:553.040000pt;}
.x21{left:555.818667pt;}
.x2c{left:644.048000pt;}
.x13{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; }
  