
    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_9de8d387adc532936286fb6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_5175cbb35a7a8c8671128218.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_31505f901447911c26d2677a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.058000;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_0918f90d865b63a8d682342e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dee3b76a29ca20d9f4343a71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_12a9cb4f63935d6849811a9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.845000;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_7c21a3f5a8a24930c148bec6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_b8a6911b75aaba1dfc600644.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936000;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:ff9;src:url('chunks/assets/font_9c30972bbd472a81896ba863.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m17{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);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.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);}
.m1a{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);}
.m16{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);}
.mc{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);}
.me{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);}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m20{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);}
.m6{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);}
.m2{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m10{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);}
.m1f{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);}
.m5{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);}
.m12{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);}
.mb{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);}
.mf{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);}
.m4{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);}
.m8{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);}
.m1d{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);}
.m14{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);}
.m1b{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.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m7{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);}
.m1{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);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003800px;}
.ls5{letter-spacing:9.160749px;}
.ls8{letter-spacing:9.166871px;}
.ls7{letter-spacing:10.703606px;}
.ls6{letter-spacing:13.349744px;}
.ls9{letter-spacing:13.445606px;}
.lsb{letter-spacing:13.451606px;}
.ls3{letter-spacing:13.619288px;}
.ls4{letter-spacing:13.658803px;}
.lsa{letter-spacing:15.484278px;}
.lsd{letter-spacing:17.260255px;}
.lsc{letter-spacing:29.884255px;}
.lse{letter-spacing:29.889408px;}
.ls0{letter-spacing:29.890255px;}
.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;}
}
.ws25{word-spacing:-59.775840px;}
.ws32{word-spacing:-56.112840px;}
.ws57{word-spacing:-53.798280px;}
.ws8a{word-spacing:-49.610506px;}
.ws40{word-spacing:-45.968246px;}
.ws48{word-spacing:-45.907845px;}
.ws27{word-spacing:-45.250311px;}
.ws26{word-spacing:-45.070983px;}
.ws79{word-spacing:-45.059739px;}
.ws28{word-spacing:-44.891656px;}
.ws37{word-spacing:-44.890260px;}
.ws2a{word-spacing:-44.855396px;}
.ws29{word-spacing:-44.853312px;}
.ws78{word-spacing:-44.833222px;}
.ws2c{word-spacing:-44.833089px;}
.ws8b{word-spacing:-44.832115px;}
.ws2b{word-spacing:-44.831880px;}
.ws73{word-spacing:-44.828387px;}
.ws87{word-spacing:-44.652552px;}
.ws1c{word-spacing:-44.649494px;}
.ws61{word-spacing:-43.109185px;}
.ws8c{word-spacing:-42.141967px;}
.ws8e{word-spacing:-41.170200px;}
.ws34{word-spacing:-41.167560px;}
.ws6c{word-spacing:-40.351183px;}
.ws6e{word-spacing:-40.350644px;}
.ws54{word-spacing:-40.350498px;}
.ws56{word-spacing:-40.350409px;}
.ws68{word-spacing:-40.349434px;}
.ws63{word-spacing:-40.346530px;}
.ws5d{word-spacing:-40.346313px;}
.ws66{word-spacing:-40.345183px;}
.ws5b{word-spacing:-40.223842px;}
.ws0{word-spacing:-35.865495px;}
.ws2f{word-spacing:-28.056420px;}
.ws38{word-spacing:-26.002490px;}
.ws7a{word-spacing:-25.250760px;}
.ws5a{word-spacing:-23.402252px;}
.ws44{word-spacing:-22.448520px;}
.ws36{word-spacing:-22.446780px;}
.ws47{word-spacing:-22.445130px;}
.ws35{word-spacing:-22.445040px;}
.ws43{word-spacing:-22.444170px;}
.ws83{word-spacing:-22.442520px;}
.ws42{word-spacing:-22.442430px;}
.ws39{word-spacing:-15.840598px;}
.ws76{word-spacing:-15.721046px;}
.ws85{word-spacing:-15.481943px;}
.ws8{word-spacing:-14.824408px;}
.ws4d{word-spacing:-14.764632px;}
.ws3e{word-spacing:-14.585305px;}
.ws5e{word-spacing:-14.310342px;}
.ws3c{word-spacing:-14.286426px;}
.ws70{word-spacing:-14.262720px;}
.ws1d{word-spacing:-14.256544px;}
.ws6f{word-spacing:-14.254211px;}
.ws17{word-spacing:-13.987553px;}
.ws45{word-spacing:-13.927771px;}
.ws84{word-spacing:-13.628892px;}
.ws80{word-spacing:-13.389788px;}
.ws3d{word-spacing:-12.971357px;}
.ws1{word-spacing:-12.911584px;}
.ws60{word-spacing:-12.803991px;}
.ws11{word-spacing:-12.792030px;}
.ws5{word-spacing:-12.672478px;}
.ws24{word-spacing:-12.612702px;}
.ws7d{word-spacing:-12.493151px;}
.ws41{word-spacing:-12.194271px;}
.ws49{word-spacing:-12.074720px;}
.ws7b{word-spacing:-12.050815px;}
.ws7e{word-spacing:-11.955168px;}
.ws3f{word-spacing:-11.656289px;}
.wse{word-spacing:-11.536737px;}
.ws10{word-spacing:-11.417185px;}
.ws21{word-spacing:-11.297634px;}
.ws52{word-spacing:-11.243841px;}
.wsd{word-spacing:-11.237858px;}
.ws7{word-spacing:-11.178082px;}
.wsb{word-spacing:-11.118306px;}
.wsa{word-spacing:-11.058530px;}
.ws31{word-spacing:-11.055951px;}
.ws4{word-spacing:-10.998755px;}
.ws4e{word-spacing:-10.938979px;}
.wsf{word-spacing:-10.879203px;}
.ws77{word-spacing:-10.819427px;}
.ws12{word-spacing:-10.759651px;}
.ws20{word-spacing:-10.699875px;}
.ws46{word-spacing:-10.640100px;}
.ws22{word-spacing:-10.580324px;}
.ws1f{word-spacing:-10.520548px;}
.ws3a{word-spacing:-10.460772px;}
.ws23{word-spacing:-10.281444px;}
.ws50{word-spacing:-10.221673px;}
.ws74{word-spacing:-10.221669px;}
.ws75{word-spacing:-10.161893px;}
.ws4f{word-spacing:-10.114077px;}
.ws5f{word-spacing:-10.060278px;}
.ws64{word-spacing:-10.006480px;}
.ws2d{word-spacing:-9.982565px;}
.ws55{word-spacing:-9.956646px;}
.ws59{word-spacing:-9.955023px;}
.ws67{word-spacing:-9.955000px;}
.ws6d{word-spacing:-9.953006px;}
.ws14{word-spacing:-9.952682px;}
.ws53{word-spacing:-9.950646px;}
.ws51{word-spacing:-9.898884px;}
.ws16{word-spacing:-9.845085px;}
.ws58{word-spacing:-9.791287px;}
.ws1e{word-spacing:-9.683690px;}
.ws6{word-spacing:-9.623910px;}
.ws15{word-spacing:-9.576094px;}
.ws7c{word-spacing:-9.414699px;}
.ws3{word-spacing:-9.384807px;}
.ws5c{word-spacing:-9.091909px;}
.ws9{word-spacing:-9.085928px;}
.ws2e{word-spacing:-8.966376px;}
.ws86{word-spacing:-8.787048px;}
.ws1a{word-spacing:-8.769120px;}
.wsc{word-spacing:-8.727273px;}
.ws4c{word-spacing:-8.547945px;}
.ws30{word-spacing:-8.488169px;}
.ws8d{word-spacing:-8.368618px;}
.ws4b{word-spacing:-8.189290px;}
.ws3b{word-spacing:-8.009963px;}
.ws18{word-spacing:-7.908347px;}
.ws33{word-spacing:-7.830635px;}
.ws71{word-spacing:-7.770859px;}
.ws72{word-spacing:-7.711083px;}
.ws82{word-spacing:-7.412204px;}
.ws62{word-spacing:-6.348197px;}
.ws88{word-spacing:-5.977584px;}
.ws7f{word-spacing:-5.379826px;}
.ws89{word-spacing:-5.200498px;}
.ws81{word-spacing:-5.021171px;}
.ws6a{word-spacing:-0.053798px;}
.ws4a{word-spacing:0.000000px;}
.ws13{word-spacing:3.762858px;}
.ws1b{word-spacing:3.765002px;}
.ws19{word-spacing:3.766611px;}
.ws6b{word-spacing:12.427403px;}
.ws69{word-spacing:15.424424px;}
.ws65{word-spacing:29.836457px;}
.ws2{word-spacing:34.072229px;}
._6{margin-left:-4.782067px;}
._1{margin-left:-3.777832px;}
._d{margin-left:-2.199750px;}
._4{margin-left:-1.075965px;}
._5{width:1.075965px;}
._2{width:2.151930px;}
._e{width:3.229858px;}
._11{width:10.329270px;}
._12{width:14.047322px;}
._0{width:15.922099px;}
._9{width:17.523233px;}
._c{width:19.988400px;}
._b{width:21.111259px;}
._8{width:26.764266px;}
._f{width:30.430255px;}
._14{width:44.890260px;}
._10{width:58.580323px;}
._7{width:59.775840px;}
._a{width:60.911581px;}
._3{width:71.731020px;}
._13{width:89.780520px;}
.fc4{color:rgb(25,23,125);}
.fc3{color:rgb(0,128,0);}
.fc2{color:rgb(114,23,122);}
.fc1{color:rgb(21,81,150);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:44.890260px;}
.fs0{font-size:47.820660px;}
.fs6{font-size:50.501520px;}
.fs3{font-size:53.798280px;}
.fs4{font-size:56.112840px;}
.fs2{font-size:59.775840px;}
.fs1{font-size:71.731020px;}
.y0{bottom:0.000000px;}
.y62{bottom:96.687000px;}
.y33{bottom:114.619500px;}
.yec{bottom:129.564000px;}
.y98{bottom:131.058000px;}
.y32{bottom:132.553500px;}
.y61{bottom:135.585000px;}
.y97{bottom:147.496500px;}
.y31{bottom:150.486000px;}
.yeb{bottom:150.510000px;}
.y60{bottom:159.538500px;}
.y96{bottom:163.935000px;}
.y30{bottom:168.418500px;}
.yea{bottom:168.442500px;}
.y95{bottom:180.373500px;}
.y5f{bottom:180.502500px;}
.y2f{bottom:186.351000px;}
.ye9{bottom:186.375000px;}
.y94{bottom:196.812000px;}
.y2e{bottom:204.283500px;}
.ye8{bottom:204.307500px;}
.y5e{bottom:210.147000px;}
.y93{bottom:213.250500px;}
.y2d{bottom:222.216000px;}
.ye7{bottom:222.240000px;}
.y5d{bottom:225.091500px;}
.y92{bottom:229.689000px;}
.y5c{bottom:240.034500px;}
.y2c{bottom:240.150000px;}
.ye6{bottom:240.172500px;}
.y91{bottom:246.127500px;}
.y2b{bottom:258.082500px;}
.ye5{bottom:258.106500px;}
.y5b{bottom:261.000000px;}
.y90{bottom:262.566000px;}
.y2a{bottom:276.015000px;}
.ye4{bottom:276.039000px;}
.y5a{bottom:278.932500px;}
.y8f{bottom:279.003000px;}
.ybe{bottom:293.947500px;}
.ye3{bottom:293.971500px;}
.y8e{bottom:295.441500px;}
.y59{bottom:302.886000px;}
.y29{bottom:307.215000px;}
.y8d{bottom:311.880000px;}
.ye2{bottom:311.904000px;}
.y58{bottom:317.829000px;}
.y8c{bottom:328.318500px;}
.ye1{bottom:329.836500px;}
.y28{bottom:332.802000px;}
.ybd{bottom:334.098000px;}
.y57{bottom:338.794500px;}
.y8b{bottom:344.757000px;}
.y27{bottom:350.734500px;}
.ybc{bottom:352.030500px;}
.y56{bottom:356.727000px;}
.ye0{bottom:359.463000px;}
.y8a{bottom:361.195500px;}
.y26{bottom:368.667000px;}
.ybb{bottom:374.248500px;}
.y55{bottom:374.659500px;}
.ydf{bottom:377.395500px;}
.y89{bottom:377.634000px;}
.yba{bottom:392.181000px;}
.y54{bottom:392.592000px;}
.y88{bottom:394.072500px;}
.y25{bottom:394.254000px;}
.yde{bottom:395.328000px;}
.yb9{bottom:410.113500px;}
.y87{bottom:410.511000px;}
.y53{bottom:410.524500px;}
.ydd{bottom:413.260500px;}
.y24{bottom:419.841000px;}
.y86{bottom:426.949500px;}
.yb8{bottom:428.046000px;}
.y52{bottom:428.457000px;}
.ydc{bottom:431.194500px;}
.y23{bottom:437.773500px;}
.y85{bottom:443.388000px;}
.y51{bottom:446.391000px;}
.ydb{bottom:449.127000px;}
.y22{bottom:455.707500px;}
.yb7{bottom:456.037500px;}
.y84{bottom:459.825000px;}
.yda{bottom:467.059500px;}
.y50{bottom:470.343000px;}
.yb6{bottom:475.266000px;}
.y83{bottom:476.263500px;}
.y21{bottom:478.123500px;}
.yd9{bottom:484.992000px;}
.y4f{bottom:491.308500px;}
.y82{bottom:492.702000px;}
.yb5{bottom:493.198500px;}
.yd8{bottom:502.924500px;}
.y81{bottom:509.140500px;}
.y20{bottom:513.805500px;}
.y4e{bottom:515.262000px;}
.yb4{bottom:515.416500px;}
.yd7{bottom:520.858500px;}
.y80{bottom:525.579000px;}
.y1f{bottom:530.244000px;}
.yb3{bottom:531.855000px;}
.y4d{bottom:536.226000px;}
.yd6{bottom:538.791000px;}
.y7f{bottom:542.017500px;}
.y1e{bottom:546.682500px;}
.yb2{bottom:548.293500px;}
.y4c{bottom:554.158500px;}
.yd5{bottom:556.723500px;}
.y7e{bottom:558.456000px;}
.y1d{bottom:563.121000px;}
.yb1{bottom:564.730500px;}
.y7d{bottom:574.894500px;}
.y4b{bottom:576.574500px;}
.y1c{bottom:579.559500px;}
.yd4{bottom:580.657500px;}
.yb0{bottom:581.169000px;}
.y7c{bottom:591.333000px;}
.y1b{bottom:595.998000px;}
.yaf{bottom:597.607500px;}
.yd3{bottom:601.603500px;}
.y7b{bottom:607.771500px;}
.y4a{bottom:610.702500px;}
.y1a{bottom:612.436500px;}
.yae{bottom:614.046000px;}
.y7a{bottom:624.208500px;}
.yd2{bottom:625.537500px;}
.y19{bottom:628.875000px;}
.y49{bottom:631.666500px;}
.yad{bottom:634.768500px;}
.y79{bottom:640.647000px;}
.y18{bottom:645.313500px;}
.yd1{bottom:646.482000px;}
.yac{bottom:652.702500px;}
.y48{bottom:655.620000px;}
.y78{bottom:657.085500px;}
.y17{bottom:661.752000px;}
.yd0{bottom:664.414500px;}
.y47{bottom:670.564500px;}
.yab{bottom:670.635000px;}
.y77{bottom:673.524000px;}
.y16{bottom:678.189000px;}
.ycf{bottom:682.348500px;}
.yaa{bottom:688.567500px;}
.y76{bottom:689.962500px;}
.y46{bottom:691.528500px;}
.y15{bottom:694.627500px;}
.yce{bottom:706.282500px;}
.y75{bottom:706.401000px;}
.ya9{bottom:706.500000px;}
.y45{bottom:715.482000px;}
.y14{bottom:715.549500px;}
.y74{bottom:722.839500px;}
.ya8{bottom:724.432500px;}
.ycd{bottom:727.227000px;}
.y44{bottom:733.414500px;}
.y73{bottom:739.278000px;}
.ya7{bottom:742.366500px;}
.ycc{bottom:745.159500px;}
.y13{bottom:751.233000px;}
.y43{bottom:751.347000px;}
.y72{bottom:755.716500px;}
.ycb{bottom:763.093500px;}
.ya6{bottom:764.583000px;}
.y12{bottom:769.165500px;}
.y42{bottom:775.300500px;}
.y71{bottom:777.135000px;}
.ya5{bottom:779.527500px;}
.yca{bottom:781.026000px;}
.y11{bottom:787.098000px;}
.y41{bottom:793.233000px;}
.ya4{bottom:794.470500px;}
.y70{bottom:800.050500px;}
.yf1{bottom:804.732000px;}
.yc9{bottom:804.960000px;}
.y10{bottom:805.030500px;}
.ya3{bottom:809.415000px;}
.y40{bottom:811.167000px;}
.y6f{bottom:816.487500px;}
.yf0{bottom:822.664500px;}
.yf{bottom:822.964500px;}
.ya2{bottom:824.359500px;}
.yc8{bottom:825.904500px;}
.y3f{bottom:829.099500px;}
.y6e{bottom:832.926000px;}
.yef{bottom:840.598500px;}
.ye{bottom:840.897000px;}
.ya1{bottom:843.588000px;}
.y3e{bottom:847.032000px;}
.y6d{bottom:849.364500px;}
.yc7{bottom:849.838500px;}
.yd{bottom:858.829500px;}
.ya0{bottom:861.520500px;}
.yee{bottom:861.669000px;}
.yc6{bottom:864.783000px;}
.y3d{bottom:864.964500px;}
.y6c{bottom:865.803000px;}
.yed{bottom:876.612000px;}
.yc{bottom:876.762000px;}
.y9f{bottom:879.453000px;}
.y6b{bottom:882.241500px;}
.y3c{bottom:882.897000px;}
.yc5{bottom:885.729000px;}
.yb{bottom:894.694500px;}
.y6a{bottom:898.680000px;}
.y3b{bottom:900.829500px;}
.yc4{bottom:903.661500px;}
.y9e{bottom:907.444500px;}
.ya{bottom:912.627000px;}
.y69{bottom:915.118500px;}
.y3a{bottom:918.763500px;}
.yc3{bottom:921.594000px;}
.y9d{bottom:929.661000px;}
.y9{bottom:930.561000px;}
.y68{bottom:931.557000px;}
.y39{bottom:936.696000px;}
.yc2{bottom:939.526500px;}
.y8{bottom:948.493500px;}
.y9c{bottom:948.889500px;}
.y67{bottom:952.977000px;}
.y38{bottom:954.628500px;}
.yc1{bottom:957.459000px;}
.y7{bottom:966.426000px;}
.y9b{bottom:966.823500px;}
.y66{bottom:970.909500px;}
.yc0{bottom:975.393000px;}
.y37{bottom:984.273000px;}
.y6{bottom:984.358500px;}
.y65{bottom:988.842000px;}
.y9a{bottom:989.040000px;}
.ybf{bottom:993.325500px;}
.y5{bottom:1002.291000px;}
.y64{bottom:1006.774500px;}
.y36{bottom:1008.226500px;}
.y99{bottom:1011.258000px;}
.y4{bottom:1020.223500px;}
.y63{bottom:1024.707000px;}
.y35{bottom:1029.190500px;}
.y3{bottom:1042.639500px;}
.y34{bottom:1047.123000px;}
.y2{bottom:1065.055500px;}
.y1{bottom:1106.301000px;}
.hb{height:30.121364px;}
.h1{height:33.378821px;}
.he{height:33.886520px;}
.hf{height:37.551199px;}
.ha{height:37.651716px;}
.h7{height:38.734762px;}
.hd{height:39.212941px;}
.h6{height:40.725298px;}
.h8{height:41.723536px;}
.h9{height:42.321295px;}
.h3{height:43.038605px;}
.h5{height:44.114590px;}
.hc{height:45.250311px;}
.h4{height:49.016189px;}
.h2{height:51.646334px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:81.000000px;}
.x2{left:95.944500px;}
.x3{left:106.444500px;}
.x4{left:120.601500px;}
.x7{left:140.367000px;}
.x6{left:147.171000px;}
.x5{left:149.133000px;}
.x20{left:171.103500px;}
.x21{left:177.415500px;}
.x8{left:186.801000px;}
.x36{left:204.783000px;}
.x26{left:218.163000px;}
.x9{left:225.204000px;}
.x27{left:237.100500px;}
.x3c{left:250.443000px;}
.xa{left:257.610000px;}
.x23{left:259.480500px;}
.x3f{left:274.090500px;}
.x28{left:277.375500px;}
.x22{left:278.419500px;}
.xb{left:284.899500px;}
.x37{left:288.952500px;}
.x38{left:294.666000px;}
.x24{left:296.614500px;}
.x29{left:314.293500px;}
.x1f{left:318.576000px;}
.x2a{left:322.719000px;}
.xc{left:324.321000px;}
.x41{left:326.260500px;}
.xf{left:327.630000px;}
.x25{left:340.803000px;}
.x40{left:361.705500px;}
.xd{left:362.722500px;}
.x39{left:385.849500px;}
.x3a{left:391.564500px;}
.x3d{left:393.721500px;}
.xe{left:397.792500px;}
.x10{left:401.041500px;}
.x42{left:410.430000px;}
.x1e{left:453.303000px;}
.x14{left:476.932500px;}
.x2c{left:488.155500px;}
.x11{left:491.877000px;}
.x3b{left:496.776000px;}
.x2d{left:498.037500px;}
.x2b{left:499.045500px;}
.x1b{left:501.634500px;}
.x3e{left:512.961000px;}
.x1c{left:516.534000px;}
.x43{left:523.977000px;}
.x2e{left:549.627000px;}
.x15{left:554.253000px;}
.x45{left:560.487000px;}
.x19{left:562.581000px;}
.x33{left:585.973500px;}
.x35{left:589.129500px;}
.x12{left:598.020000px;}
.x1a{left:601.387500px;}
.x46{left:613.521000px;}
.x34{left:627.006000px;}
.x16{left:633.898500px;}
.x13{left:637.734000px;}
.x44{left:691.773000px;}
.x2f{left:710.409000px;}
.x17{left:716.568000px;}
.x30{left:738.466500px;}
.x31{left:744.417000px;}
.x1d{left:794.916000px;}
.x32{left:842.614500px;}
.x18{left:870.877500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003378pt;}
.ls5{letter-spacing:8.142888pt;}
.ls8{letter-spacing:8.148330pt;}
.ls7{letter-spacing:9.514316pt;}
.ls6{letter-spacing:11.866439pt;}
.ls9{letter-spacing:11.951650pt;}
.lsb{letter-spacing:11.956983pt;}
.ls3{letter-spacing:12.106034pt;}
.ls4{letter-spacing:12.141158pt;}
.lsa{letter-spacing:13.763803pt;}
.lsd{letter-spacing:15.342449pt;}
.lsc{letter-spacing:26.563782pt;}
.lse{letter-spacing:26.568362pt;}
.ls0{letter-spacing:26.569115pt;}
.ws25{word-spacing:-53.134080pt;}
.ws32{word-spacing:-49.878080pt;}
.ws57{word-spacing:-47.820693pt;}
.ws8a{word-spacing:-44.098228pt;}
.ws40{word-spacing:-40.860663pt;}
.ws48{word-spacing:-40.806973pt;}
.ws27{word-spacing:-40.222499pt;}
.ws26{word-spacing:-40.063096pt;}
.ws79{word-spacing:-40.053101pt;}
.ws28{word-spacing:-39.903694pt;}
.ws37{word-spacing:-39.902453pt;}
.ws2a{word-spacing:-39.871464pt;}
.ws29{word-spacing:-39.869611pt;}
.ws78{word-spacing:-39.851753pt;}
.ws2c{word-spacing:-39.851635pt;}
.ws8b{word-spacing:-39.850769pt;}
.ws2b{word-spacing:-39.850560pt;}
.ws73{word-spacing:-39.847455pt;}
.ws87{word-spacing:-39.691158pt;}
.ws1c{word-spacing:-39.688439pt;}
.ws61{word-spacing:-38.319275pt;}
.ws8c{word-spacing:-37.459526pt;}
.ws8e{word-spacing:-36.595733pt;}
.ws34{word-spacing:-36.593387pt;}
.ws6c{word-spacing:-35.867719pt;}
.ws6e{word-spacing:-35.867239pt;}
.ws54{word-spacing:-35.867110pt;}
.ws56{word-spacing:-35.867031pt;}
.ws68{word-spacing:-35.866163pt;}
.ws63{word-spacing:-35.863582pt;}
.ws5d{word-spacing:-35.863389pt;}
.ws66{word-spacing:-35.862385pt;}
.ws5b{word-spacing:-35.754527pt;}
.ws0{word-spacing:-31.880440pt;}
.ws2f{word-spacing:-24.939040pt;}
.ws38{word-spacing:-23.113325pt;}
.ws7a{word-spacing:-22.445120pt;}
.ws5a{word-spacing:-20.802002pt;}
.ws44{word-spacing:-19.954240pt;}
.ws36{word-spacing:-19.952693pt;}
.ws47{word-spacing:-19.951227pt;}
.ws35{word-spacing:-19.951147pt;}
.ws43{word-spacing:-19.950373pt;}
.ws83{word-spacing:-19.948907pt;}
.ws42{word-spacing:-19.948827pt;}
.ws39{word-spacing:-14.080531pt;}
.ws76{word-spacing:-13.974263pt;}
.ws85{word-spacing:-13.761727pt;}
.ws8{word-spacing:-13.177252pt;}
.ws4d{word-spacing:-13.124118pt;}
.ws3e{word-spacing:-12.964716pt;}
.ws5e{word-spacing:-12.720304pt;}
.ws3c{word-spacing:-12.699045pt;}
.ws70{word-spacing:-12.677974pt;}
.ws1d{word-spacing:-12.672484pt;}
.ws6f{word-spacing:-12.670410pt;}
.ws17{word-spacing:-12.433380pt;}
.ws45{word-spacing:-12.380241pt;}
.ws84{word-spacing:-12.114570pt;}
.ws80{word-spacing:-11.902034pt;}
.ws3d{word-spacing:-11.530095pt;}
.ws1{word-spacing:-11.476963pt;}
.ws60{word-spacing:-11.381325pt;}
.ws11{word-spacing:-11.370693pt;}
.ws5{word-spacing:-11.264425pt;}
.ws24{word-spacing:-11.211291pt;}
.ws7d{word-spacing:-11.105023pt;}
.ws41{word-spacing:-10.839352pt;}
.ws49{word-spacing:-10.733084pt;}
.ws7b{word-spacing:-10.711835pt;}
.ws7e{word-spacing:-10.626816pt;}
.ws3f{word-spacing:-10.361146pt;}
.wse{word-spacing:-10.254877pt;}
.ws10{word-spacing:-10.148609pt;}
.ws21{word-spacing:-10.042341pt;}
.ws52{word-spacing:-9.994525pt;}
.wsd{word-spacing:-9.989207pt;}
.ws7{word-spacing:-9.936073pt;}
.wsb{word-spacing:-9.882939pt;}
.wsa{word-spacing:-9.829805pt;}
.ws31{word-spacing:-9.827512pt;}
.ws4{word-spacing:-9.776671pt;}
.ws4e{word-spacing:-9.723537pt;}
.wsf{word-spacing:-9.670403pt;}
.ws77{word-spacing:-9.617268pt;}
.ws12{word-spacing:-9.564134pt;}
.ws20{word-spacing:-9.511000pt;}
.ws46{word-spacing:-9.457866pt;}
.ws22{word-spacing:-9.404732pt;}
.ws1f{word-spacing:-9.351598pt;}
.ws3a{word-spacing:-9.298464pt;}
.ws23{word-spacing:-9.139062pt;}
.ws50{word-spacing:-9.085932pt;}
.ws74{word-spacing:-9.085928pt;}
.ws75{word-spacing:-9.032794pt;}
.ws4f{word-spacing:-8.990290pt;}
.ws5f{word-spacing:-8.942470pt;}
.ws64{word-spacing:-8.894649pt;}
.ws2d{word-spacing:-8.873391pt;}
.ws55{word-spacing:-8.850352pt;}
.ws59{word-spacing:-8.848909pt;}
.ws67{word-spacing:-8.848889pt;}
.ws6d{word-spacing:-8.847116pt;}
.ws14{word-spacing:-8.846828pt;}
.ws53{word-spacing:-8.845019pt;}
.ws51{word-spacing:-8.799008pt;}
.ws16{word-spacing:-8.751187pt;}
.ws58{word-spacing:-8.703366pt;}
.ws1e{word-spacing:-8.607725pt;}
.ws6{word-spacing:-8.554587pt;}
.ws15{word-spacing:-8.512083pt;}
.ws7c{word-spacing:-8.368621pt;}
.ws3{word-spacing:-8.342051pt;}
.ws5c{word-spacing:-8.081697pt;}
.ws9{word-spacing:-8.076380pt;}
.ws2e{word-spacing:-7.970112pt;}
.ws86{word-spacing:-7.810710pt;}
.ws1a{word-spacing:-7.794773pt;}
.wsc{word-spacing:-7.757576pt;}
.ws4c{word-spacing:-7.598173pt;}
.ws30{word-spacing:-7.545039pt;}
.ws8d{word-spacing:-7.438771pt;}
.ws4b{word-spacing:-7.279369pt;}
.ws3b{word-spacing:-7.119967pt;}
.ws18{word-spacing:-7.029642pt;}
.ws33{word-spacing:-6.960564pt;}
.ws71{word-spacing:-6.907430pt;}
.ws72{word-spacing:-6.854296pt;}
.ws82{word-spacing:-6.588626pt;}
.ws62{word-spacing:-5.642842pt;}
.ws88{word-spacing:-5.313408pt;}
.ws7f{word-spacing:-4.782067pt;}
.ws89{word-spacing:-4.622665pt;}
.ws81{word-spacing:-4.463263pt;}
.ws6a{word-spacing:-0.047821pt;}
.ws4a{word-spacing:0.000000pt;}
.ws13{word-spacing:3.344763pt;}
.ws1b{word-spacing:3.346668pt;}
.ws19{word-spacing:3.348098pt;}
.ws6b{word-spacing:11.046580pt;}
.ws69{word-spacing:13.710599pt;}
.ws65{word-spacing:26.521295pt;}
.ws2{word-spacing:30.286426pt;}
._6{margin-left:-4.250726pt;}
._1{margin-left:-3.358073pt;}
._d{margin-left:-1.955334pt;}
._4{margin-left:-0.956413pt;}
._5{width:0.956413pt;}
._2{width:1.912826pt;}
._e{width:2.870985pt;}
._11{width:9.181573pt;}
._12{width:12.486509pt;}
._0{width:14.152977pt;}
._9{width:15.576207pt;}
._c{width:17.767466pt;}
._b{width:18.765564pt;}
._8{width:23.790458pt;}
._f{width:27.049115pt;}
._14{width:39.902453pt;}
._10{width:52.071398pt;}
._7{width:53.134080pt;}
._a{width:54.143628pt;}
._3{width:63.760907pt;}
._13{width:79.804907pt;}
.fs5{font-size:39.902453pt;}
.fs0{font-size:42.507253pt;}
.fs6{font-size:44.890240pt;}
.fs3{font-size:47.820693pt;}
.fs4{font-size:49.878080pt;}
.fs2{font-size:53.134080pt;}
.fs1{font-size:63.760907pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:85.944000pt;}
.y33{bottom:101.884000pt;}
.yec{bottom:115.168000pt;}
.y98{bottom:116.496000pt;}
.y32{bottom:117.825333pt;}
.y61{bottom:120.520000pt;}
.y97{bottom:131.108000pt;}
.y31{bottom:133.765333pt;}
.yeb{bottom:133.786667pt;}
.y60{bottom:141.812000pt;}
.y96{bottom:145.720000pt;}
.y30{bottom:149.705333pt;}
.yea{bottom:149.726667pt;}
.y95{bottom:160.332000pt;}
.y5f{bottom:160.446667pt;}
.y2f{bottom:165.645333pt;}
.ye9{bottom:165.666667pt;}
.y94{bottom:174.944000pt;}
.y2e{bottom:181.585333pt;}
.ye8{bottom:181.606667pt;}
.y5e{bottom:186.797333pt;}
.y93{bottom:189.556000pt;}
.y2d{bottom:197.525333pt;}
.ye7{bottom:197.546667pt;}
.y5d{bottom:200.081333pt;}
.y92{bottom:204.168000pt;}
.y5c{bottom:213.364000pt;}
.y2c{bottom:213.466667pt;}
.ye6{bottom:213.486667pt;}
.y91{bottom:218.780000pt;}
.y2b{bottom:229.406667pt;}
.ye5{bottom:229.428000pt;}
.y5b{bottom:232.000000pt;}
.y90{bottom:233.392000pt;}
.y2a{bottom:245.346667pt;}
.ye4{bottom:245.368000pt;}
.y5a{bottom:247.940000pt;}
.y8f{bottom:248.002667pt;}
.ybe{bottom:261.286667pt;}
.ye3{bottom:261.308000pt;}
.y8e{bottom:262.614667pt;}
.y59{bottom:269.232000pt;}
.y29{bottom:273.080000pt;}
.y8d{bottom:277.226667pt;}
.ye2{bottom:277.248000pt;}
.y58{bottom:282.514667pt;}
.y8c{bottom:291.838667pt;}
.ye1{bottom:293.188000pt;}
.y28{bottom:295.824000pt;}
.ybd{bottom:296.976000pt;}
.y57{bottom:301.150667pt;}
.y8b{bottom:306.450667pt;}
.y27{bottom:311.764000pt;}
.ybc{bottom:312.916000pt;}
.y56{bottom:317.090667pt;}
.ye0{bottom:319.522667pt;}
.y8a{bottom:321.062667pt;}
.y26{bottom:327.704000pt;}
.ybb{bottom:332.665333pt;}
.y55{bottom:333.030667pt;}
.ydf{bottom:335.462667pt;}
.y89{bottom:335.674667pt;}
.yba{bottom:348.605333pt;}
.y54{bottom:348.970667pt;}
.y88{bottom:350.286667pt;}
.y25{bottom:350.448000pt;}
.yde{bottom:351.402667pt;}
.yb9{bottom:364.545333pt;}
.y87{bottom:364.898667pt;}
.y53{bottom:364.910667pt;}
.ydd{bottom:367.342667pt;}
.y24{bottom:373.192000pt;}
.y86{bottom:379.510667pt;}
.yb8{bottom:380.485333pt;}
.y52{bottom:380.850667pt;}
.ydc{bottom:383.284000pt;}
.y23{bottom:389.132000pt;}
.y85{bottom:394.122667pt;}
.y51{bottom:396.792000pt;}
.ydb{bottom:399.224000pt;}
.y22{bottom:405.073333pt;}
.yb7{bottom:405.366667pt;}
.y84{bottom:408.733333pt;}
.yda{bottom:415.164000pt;}
.y50{bottom:418.082667pt;}
.yb6{bottom:422.458667pt;}
.y83{bottom:423.345333pt;}
.y21{bottom:424.998667pt;}
.yd9{bottom:431.104000pt;}
.y4f{bottom:436.718667pt;}
.y82{bottom:437.957333pt;}
.yb5{bottom:438.398667pt;}
.yd8{bottom:447.044000pt;}
.y81{bottom:452.569333pt;}
.y20{bottom:456.716000pt;}
.y4e{bottom:458.010667pt;}
.yb4{bottom:458.148000pt;}
.yd7{bottom:462.985333pt;}
.y80{bottom:467.181333pt;}
.y1f{bottom:471.328000pt;}
.yb3{bottom:472.760000pt;}
.y4d{bottom:476.645333pt;}
.yd6{bottom:478.925333pt;}
.y7f{bottom:481.793333pt;}
.y1e{bottom:485.940000pt;}
.yb2{bottom:487.372000pt;}
.y4c{bottom:492.585333pt;}
.yd5{bottom:494.865333pt;}
.y7e{bottom:496.405333pt;}
.y1d{bottom:500.552000pt;}
.yb1{bottom:501.982667pt;}
.y7d{bottom:511.017333pt;}
.y4b{bottom:512.510667pt;}
.y1c{bottom:515.164000pt;}
.yd4{bottom:516.140000pt;}
.yb0{bottom:516.594667pt;}
.y7c{bottom:525.629333pt;}
.y1b{bottom:529.776000pt;}
.yaf{bottom:531.206667pt;}
.yd3{bottom:534.758667pt;}
.y7b{bottom:540.241333pt;}
.y4a{bottom:542.846667pt;}
.y1a{bottom:544.388000pt;}
.yae{bottom:545.818667pt;}
.y7a{bottom:554.852000pt;}
.yd2{bottom:556.033333pt;}
.y19{bottom:559.000000pt;}
.y49{bottom:561.481333pt;}
.yad{bottom:564.238667pt;}
.y79{bottom:569.464000pt;}
.y18{bottom:573.612000pt;}
.yd1{bottom:574.650667pt;}
.yac{bottom:580.180000pt;}
.y48{bottom:582.773333pt;}
.y78{bottom:584.076000pt;}
.y17{bottom:588.224000pt;}
.yd0{bottom:590.590667pt;}
.y47{bottom:596.057333pt;}
.yab{bottom:596.120000pt;}
.y77{bottom:598.688000pt;}
.y16{bottom:602.834667pt;}
.ycf{bottom:606.532000pt;}
.yaa{bottom:612.060000pt;}
.y76{bottom:613.300000pt;}
.y46{bottom:614.692000pt;}
.y15{bottom:617.446667pt;}
.yce{bottom:627.806667pt;}
.y75{bottom:627.912000pt;}
.ya9{bottom:628.000000pt;}
.y45{bottom:635.984000pt;}
.y14{bottom:636.044000pt;}
.y74{bottom:642.524000pt;}
.ya8{bottom:643.940000pt;}
.ycd{bottom:646.424000pt;}
.y44{bottom:651.924000pt;}
.y73{bottom:657.136000pt;}
.ya7{bottom:659.881333pt;}
.ycc{bottom:662.364000pt;}
.y13{bottom:667.762667pt;}
.y43{bottom:667.864000pt;}
.y72{bottom:671.748000pt;}
.ycb{bottom:678.305333pt;}
.ya6{bottom:679.629333pt;}
.y12{bottom:683.702667pt;}
.y42{bottom:689.156000pt;}
.y71{bottom:690.786667pt;}
.ya5{bottom:692.913333pt;}
.yca{bottom:694.245333pt;}
.y11{bottom:699.642667pt;}
.y41{bottom:705.096000pt;}
.ya4{bottom:706.196000pt;}
.y70{bottom:711.156000pt;}
.yf1{bottom:715.317333pt;}
.yc9{bottom:715.520000pt;}
.y10{bottom:715.582667pt;}
.ya3{bottom:719.480000pt;}
.y40{bottom:721.037333pt;}
.y6f{bottom:725.766667pt;}
.yf0{bottom:731.257333pt;}
.yf{bottom:731.524000pt;}
.ya2{bottom:732.764000pt;}
.yc8{bottom:734.137333pt;}
.y3f{bottom:736.977333pt;}
.y6e{bottom:740.378667pt;}
.yef{bottom:747.198667pt;}
.ye{bottom:747.464000pt;}
.ya1{bottom:749.856000pt;}
.y3e{bottom:752.917333pt;}
.y6d{bottom:754.990667pt;}
.yc7{bottom:755.412000pt;}
.yd{bottom:763.404000pt;}
.ya0{bottom:765.796000pt;}
.yee{bottom:765.928000pt;}
.yc6{bottom:768.696000pt;}
.y3d{bottom:768.857333pt;}
.y6c{bottom:769.602667pt;}
.yed{bottom:779.210667pt;}
.yc{bottom:779.344000pt;}
.y9f{bottom:781.736000pt;}
.y6b{bottom:784.214667pt;}
.y3c{bottom:784.797333pt;}
.yc5{bottom:787.314667pt;}
.yb{bottom:795.284000pt;}
.y6a{bottom:798.826667pt;}
.y3b{bottom:800.737333pt;}
.yc4{bottom:803.254667pt;}
.y9e{bottom:806.617333pt;}
.ya{bottom:811.224000pt;}
.y69{bottom:813.438667pt;}
.y3a{bottom:816.678667pt;}
.yc3{bottom:819.194667pt;}
.y9d{bottom:826.365333pt;}
.y9{bottom:827.165333pt;}
.y68{bottom:828.050667pt;}
.y39{bottom:832.618667pt;}
.yc2{bottom:835.134667pt;}
.y8{bottom:843.105333pt;}
.y9c{bottom:843.457333pt;}
.y67{bottom:847.090667pt;}
.y38{bottom:848.558667pt;}
.yc1{bottom:851.074667pt;}
.y7{bottom:859.045333pt;}
.y9b{bottom:859.398667pt;}
.y66{bottom:863.030667pt;}
.yc0{bottom:867.016000pt;}
.y37{bottom:874.909333pt;}
.y6{bottom:874.985333pt;}
.y65{bottom:878.970667pt;}
.y9a{bottom:879.146667pt;}
.ybf{bottom:882.956000pt;}
.y5{bottom:890.925333pt;}
.y64{bottom:894.910667pt;}
.y36{bottom:896.201333pt;}
.y99{bottom:898.896000pt;}
.y4{bottom:906.865333pt;}
.y63{bottom:910.850667pt;}
.y35{bottom:914.836000pt;}
.y3{bottom:926.790667pt;}
.y34{bottom:930.776000pt;}
.y2{bottom:946.716000pt;}
.y1{bottom:983.378667pt;}
.hb{height:26.774546pt;}
.h1{height:29.670063pt;}
.he{height:30.121351pt;}
.hf{height:33.378844pt;}
.ha{height:33.468192pt;}
.h7{height:34.430899pt;}
.hd{height:34.855948pt;}
.h6{height:36.200265pt;}
.h8{height:37.087588pt;}
.h9{height:37.618929pt;}
.h3{height:38.256538pt;}
.h5{height:39.212969pt;}
.hc{height:40.222499pt;}
.h4{height:43.569946pt;}
.h2{height:45.907853pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:72.000000pt;}
.x2{left:85.284000pt;}
.x3{left:94.617333pt;}
.x4{left:107.201333pt;}
.x7{left:124.770667pt;}
.x6{left:130.818667pt;}
.x5{left:132.562667pt;}
.x20{left:152.092000pt;}
.x21{left:157.702667pt;}
.x8{left:166.045333pt;}
.x36{left:182.029333pt;}
.x26{left:193.922667pt;}
.x9{left:200.181333pt;}
.x27{left:210.756000pt;}
.x3c{left:222.616000pt;}
.xa{left:228.986667pt;}
.x23{left:230.649333pt;}
.x3f{left:243.636000pt;}
.x28{left:246.556000pt;}
.x22{left:247.484000pt;}
.xb{left:253.244000pt;}
.x37{left:256.846667pt;}
.x38{left:261.925333pt;}
.x24{left:263.657333pt;}
.x29{left:279.372000pt;}
.x1f{left:283.178667pt;}
.x2a{left:286.861333pt;}
.xc{left:288.285333pt;}
.x41{left:290.009333pt;}
.xf{left:291.226667pt;}
.x25{left:302.936000pt;}
.x40{left:321.516000pt;}
.xd{left:322.420000pt;}
.x39{left:342.977333pt;}
.x3a{left:348.057333pt;}
.x3d{left:349.974667pt;}
.xe{left:353.593333pt;}
.x10{left:356.481333pt;}
.x42{left:364.826667pt;}
.x1e{left:402.936000pt;}
.x14{left:423.940000pt;}
.x2c{left:433.916000pt;}
.x11{left:437.224000pt;}
.x3b{left:441.578667pt;}
.x2d{left:442.700000pt;}
.x2b{left:443.596000pt;}
.x1b{left:445.897333pt;}
.x3e{left:455.965333pt;}
.x1c{left:459.141333pt;}
.x43{left:465.757333pt;}
.x2e{left:488.557333pt;}
.x15{left:492.669333pt;}
.x45{left:498.210667pt;}
.x19{left:500.072000pt;}
.x33{left:520.865333pt;}
.x35{left:523.670667pt;}
.x12{left:531.573333pt;}
.x1a{left:534.566667pt;}
.x46{left:545.352000pt;}
.x34{left:557.338667pt;}
.x16{left:563.465333pt;}
.x13{left:566.874667pt;}
.x44{left:614.909333pt;}
.x2f{left:631.474667pt;}
.x17{left:636.949333pt;}
.x30{left:656.414667pt;}
.x31{left:661.704000pt;}
.x1d{left:706.592000pt;}
.x32{left:748.990667pt;}
.x18{left:774.113333pt;}
}




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