
    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_d98dbaaa309403b86f843acb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_74c2ccbcb00f05f8c4d5fbda.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d669fb561f91da514595f319.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4f4e0d748f52ab64388ddf1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1365cbc1de4edfc548c3fa8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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;}
.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);}
.mc{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);}
.m15{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);}
.m19{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);}
.m28{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);}
.m20{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);}
.m25{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m12{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);}
.m1c{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.mf{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m29{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);}
.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);}
.m27{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);}
.m26{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);}
.m3{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m1e{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);}
.m17{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);}
.m1b{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);}
.m23{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);}
.m1d{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);}
.m5{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);}
.m16{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);}
.m18{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);}
.m8{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);}
.ma{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);}
.m2{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);}
.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);}
.m6{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);}
.v2{vertical-align:-26.040000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.040000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.286924px;}
.ls4{letter-spacing:3.873475px;}
.ls0{letter-spacing:4.015609px;}
.ls3{letter-spacing:34.324457px;}
.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;}
}
.ws4{word-spacing:-86.077200px;}
.ws9e{word-spacing:-75.604495px;}
.ws9b{word-spacing:-72.017944px;}
.ws19{word-spacing:-71.731020px;}
.ws7b{word-spacing:-55.663272px;}
.ws61{word-spacing:-55.017692px;}
.ws62{word-spacing:-54.802499px;}
.ws68{word-spacing:-54.730768px;}
.ws56{word-spacing:-54.659037px;}
.ws3f{word-spacing:-54.372113px;}
.ws63{word-spacing:-54.300382px;}
.ws86{word-spacing:-54.228651px;}
.ws8b{word-spacing:-54.013458px;}
.ws3{word-spacing:-53.798250px;}
.wsc{word-spacing:-53.726534px;}
.ws34{word-spacing:-53.511341px;}
.ws74{word-spacing:-53.439610px;}
.ws8d{word-spacing:-53.367879px;}
.ws17{word-spacing:-53.080955px;}
.ws5b{word-spacing:-52.363645px;}
.ws67{word-spacing:-52.220183px;}
.ws20{word-spacing:-51.861527px;}
.ws2d{word-spacing:-51.789796px;}
.ws3b{word-spacing:-51.646334px;}
.ws42{word-spacing:-51.574603px;}
.ws1c{word-spacing:-51.431141px;}
.ws7c{word-spacing:-51.359410px;}
.ws92{word-spacing:-51.287679px;}
.ws1f{word-spacing:-51.215948px;}
.ws5a{word-spacing:-51.144217px;}
.ws7f{word-spacing:-51.000755px;}
.ws4f{word-spacing:-50.929024px;}
.ws5c{word-spacing:-50.857293px;}
.ws1e{word-spacing:-50.785562px;}
.ws79{word-spacing:-50.713831px;}
.ws54{word-spacing:-50.642100px;}
.wsd{word-spacing:-50.570369px;}
.ws8c{word-spacing:-50.355176px;}
.ws46{word-spacing:-50.211714px;}
.ws7d{word-spacing:-50.139983px;}
.ws50{word-spacing:-49.996521px;}
.ws25{word-spacing:-49.924790px;}
.ws16{word-spacing:-49.853059px;}
.ws47{word-spacing:-49.781328px;}
.ws48{word-spacing:-49.637866px;}
.ws65{word-spacing:-49.566135px;}
.ws40{word-spacing:-49.494404px;}
.ws64{word-spacing:-49.422673px;}
.ws32{word-spacing:-49.350942px;}
.ws24{word-spacing:-49.279211px;}
.ws82{word-spacing:-49.207480px;}
.wsb{word-spacing:-49.135749px;}
.ws30{word-spacing:-49.064018px;}
.ws87{word-spacing:-48.992287px;}
.ws7{word-spacing:-48.848825px;}
.ws9{word-spacing:-48.777094px;}
.ws10{word-spacing:-48.705363px;}
.ws2c{word-spacing:-48.633632px;}
.ws12{word-spacing:-48.561901px;}
.wsa{word-spacing:-48.490170px;}
.ws2e{word-spacing:-48.418438px;}
.ws5{word-spacing:-48.346707px;}
.ws91{word-spacing:-48.343656px;}
.ws2a{word-spacing:-48.274976px;}
.ws2b{word-spacing:-48.203245px;}
.ws22{word-spacing:-48.131514px;}
.ws49{word-spacing:-48.059783px;}
.ws94{word-spacing:-47.993492px;}
.ws26{word-spacing:-47.988052px;}
.ws96{word-spacing:-47.949404px;}
.ws21{word-spacing:-47.916321px;}
.ws1d{word-spacing:-47.844590px;}
.ws28{word-spacing:-47.820660px;}
.ws13{word-spacing:-47.772859px;}
.ws75{word-spacing:-47.701128px;}
.ws15{word-spacing:-47.557666px;}
.ws51{word-spacing:-47.485935px;}
.wsa0{word-spacing:-47.342473px;}
.ws31{word-spacing:-47.270742px;}
.ws69{word-spacing:-47.199011px;}
.ws2f{word-spacing:-47.055549px;}
.ws41{word-spacing:-46.983818px;}
.ws23{word-spacing:-46.912087px;}
.ws4d{word-spacing:-46.840356px;}
.ws93{word-spacing:-46.768625px;}
.ws29{word-spacing:-46.696894px;}
.ws35{word-spacing:-46.625163px;}
.ws78{word-spacing:-46.553432px;}
.ws9a{word-spacing:-46.409970px;}
.ws3e{word-spacing:-46.338239px;}
.ws59{word-spacing:-46.266508px;}
.ws9f{word-spacing:-46.194777px;}
.ws76{word-spacing:-46.123046px;}
.ws8{word-spacing:-45.836122px;}
.ws3d{word-spacing:-45.620929px;}
.ws73{word-spacing:-45.477467px;}
.wsf{word-spacing:-45.334005px;}
.ws1b{word-spacing:-45.262274px;}
.ws1a{word-spacing:-45.239049px;}
.ws53{word-spacing:-45.190543px;}
.ws3c{word-spacing:-45.047081px;}
.ws6c{word-spacing:-44.975350px;}
.ws4b{word-spacing:-44.903619px;}
.ws83{word-spacing:-44.831887px;}
.ws4c{word-spacing:-44.688425px;}
.wsa1{word-spacing:-44.616694px;}
.ws84{word-spacing:-44.473232px;}
.ws5d{word-spacing:-44.401501px;}
.ws70{word-spacing:-44.329770px;}
.ws38{word-spacing:-44.258039px;}
.ws60{word-spacing:-44.186308px;}
.ws5f{word-spacing:-44.114577px;}
.ws55{word-spacing:-43.899384px;}
.ws6e{word-spacing:-43.755922px;}
.ws88{word-spacing:-43.612460px;}
.ws8e{word-spacing:-43.540729px;}
.ws39{word-spacing:-43.397267px;}
.ws81{word-spacing:-43.325536px;}
.ws66{word-spacing:-43.253805px;}
.ws45{word-spacing:-43.110343px;}
.ws52{word-spacing:-43.038612px;}
.ws6a{word-spacing:-42.679957px;}
.ws6d{word-spacing:-42.608226px;}
.ws8a{word-spacing:-42.536495px;}
.ws33{word-spacing:-42.464764px;}
.ws4a{word-spacing:-42.321302px;}
.ws5e{word-spacing:-42.249571px;}
.ws57{word-spacing:-42.106109px;}
.ws3a{word-spacing:-42.034378px;}
.ws77{word-spacing:-41.819185px;}
.ws72{word-spacing:-41.603992px;}
.ws36{word-spacing:-41.388799px;}
.ws89{word-spacing:-41.317068px;}
.ws44{word-spacing:-41.101874px;}
.ws7e{word-spacing:-41.030143px;}
.ws6f{word-spacing:-40.743219px;}
.ws95{word-spacing:-40.599757px;}
.wse{word-spacing:-40.528026px;}
.ws18{word-spacing:-40.456295px;}
.ws80{word-spacing:-40.025909px;}
.ws4e{word-spacing:-39.810716px;}
.ws8f{word-spacing:-39.667254px;}
.ws14{word-spacing:-39.595523px;}
.ws71{word-spacing:-39.523792px;}
.ws85{word-spacing:-39.165137px;}
.ws37{word-spacing:-39.093406px;}
.ws58{word-spacing:-38.949944px;}
.ws7a{word-spacing:-38.591289px;}
.ws43{word-spacing:-38.447827px;}
.ws97{word-spacing:-38.304365px;}
.ws99{word-spacing:-38.232634px;}
.ws6b{word-spacing:-38.089172px;}
.ws9c{word-spacing:-37.443592px;}
.ws90{word-spacing:-37.300130px;}
.ws98{word-spacing:-35.865510px;}
.ws9d{word-spacing:-35.004738px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws27{word-spacing:-29.409706px;}
.ws6{word-spacing:-26.662391px;}
.ws2{word-spacing:-8.464257px;}
.ws11{word-spacing:0.000000px;}
._f{margin-left:-6.790535px;}
._6{margin-left:-5.690663px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._7{width:1.243339px;}
._4{width:2.630136px;}
._5{width:4.017217px;}
._11{width:5.054727px;}
._a{width:6.437885px;}
._12{width:9.631543px;}
._b{width:12.792029px;}
._e{width:17.119802px;}
._10{width:18.554423px;}
._2{width:22.571352px;}
._8{width:24.484178px;}
._9{width:25.847075px;}
._c{width:28.668497px;}
._d{width:30.892158px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs3{font-size:50.211660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1f{bottom:57.723000px;}
.y1e{bottom:71.919000px;}
.y64{bottom:106.153500px;}
.y3b{bottom:107.647500px;}
.y84{bottom:109.141500px;}
.yc0{bottom:110.262000px;}
.y4e{bottom:113.625000px;}
.yb3{bottom:121.096500px;}
.ye5{bottom:122.023500px;}
.y96{bottom:122.592000px;}
.yf7{bottom:133.798500px;}
.y63{bottom:138.655500px;}
.y3a{bottom:140.151000px;}
.y83{bottom:141.645000px;}
.y4d{bottom:146.128500px;}
.ybf{bottom:151.732500px;}
.yb2{bottom:153.600000px;}
.ye4{bottom:154.527000px;}
.y95{bottom:155.094000px;}
.y62{bottom:171.159000px;}
.y1d{bottom:172.093500px;}
.y39{bottom:172.653000px;}
.y82{bottom:174.148500px;}
.yf6{bottom:175.269000px;}
.y4c{bottom:178.630500px;}
.ybe{bottom:184.234500px;}
.yb1{bottom:186.103500px;}
.y94{bottom:187.597500px;}
.ye3{bottom:195.996000px;}
.y61{bottom:203.662500px;}
.y1c{bottom:204.597000px;}
.y38{bottom:205.156500px;}
.y81{bottom:206.650500px;}
.yf5{bottom:207.772500px;}
.y4b{bottom:211.134000px;}
.ybd{bottom:216.738000px;}
.yb0{bottom:218.605500px;}
.y93{bottom:220.101000px;}
.ye2{bottom:228.499500px;}
.y60{bottom:236.166000px;}
.y37{bottom:237.660000px;}
.y80{bottom:239.154000px;}
.yf4{bottom:240.274500px;}
.y88{bottom:240.648000px;}
.y4a{bottom:243.637500px;}
.y1b{bottom:246.066000px;}
.yaf{bottom:251.109000px;}
.y97{bottom:252.603000px;}
.ybc{bottom:258.207000px;}
.ye1{bottom:261.001500px;}
.y92{bottom:261.570000px;}
.yd3{bottom:263.811000px;}
.y5f{bottom:268.668000px;}
.y36{bottom:270.163500px;}
.y7f{bottom:271.657500px;}
.y49{bottom:276.141000px;}
.y1a{bottom:278.569500px;}
.yf3{bottom:281.745000px;}
.yae{bottom:283.612500px;}
.y68{bottom:285.106500px;}
.ye0{bottom:293.505000px;}
.y91{bottom:294.073500px;}
.yd2{bottom:296.314500px;}
.ybb{bottom:299.677500px;}
.y7e{bottom:304.161000px;}
.y5e{bottom:310.138500px;}
.y19{bottom:311.073000px;}
.y35{bottom:311.632500px;}
.yf2{bottom:314.247000px;}
.yad{bottom:316.116000px;}
.y48{bottom:317.610000px;}
.ydf{bottom:326.008500px;}
.y90{bottom:326.577000px;}
.yd1{bottom:328.818000px;}
.yba{bottom:332.181000px;}
.y101{bottom:337.785000px;}
.y5d{bottom:342.640500px;}
.y18{bottom:343.576500px;}
.y34{bottom:344.136000px;}
.y7d{bottom:345.630000px;}
.yf1{bottom:346.750500px;}
.yac{bottom:348.618000px;}
.y47{bottom:350.113500px;}
.y8f{bottom:359.079000px;}
.yd0{bottom:361.321500px;}
.yde{bottom:361.500000px;}
.yb9{bottom:364.683000px;}
.y100{bottom:370.287000px;}
.y5c{bottom:375.144000px;}
.y17{bottom:376.078500px;}
.y33{bottom:376.638000px;}
.y7c{bottom:378.133500px;}
.y46{bottom:382.615500px;}
.yf0{bottom:388.219500px;}
.yab{bottom:390.088500px;}
.y8e{bottom:391.582500px;}
.ycf{bottom:402.790500px;}
.ydd{bottom:405.958500px;}
.yb8{bottom:406.153500px;}
.y5b{bottom:407.647500px;}
.y16{bottom:408.582000px;}
.y32{bottom:409.141500px;}
.y7b{bottom:410.635500px;}
.y45{bottom:415.119000px;}
.yef{bottom:420.723000px;}
.yaa{bottom:422.592000px;}
.y8d{bottom:424.086000px;}
.yce{bottom:435.294000px;}
.ydc{bottom:438.462000px;}
.y5a{bottom:440.151000px;}
.y15{bottom:441.085500px;}
.y31{bottom:441.645000px;}
.y7a{bottom:443.139000px;}
.yff{bottom:444.259500px;}
.y44{bottom:447.622500px;}
.yee{bottom:453.226500px;}
.ya9{bottom:455.094000px;}
.y8c{bottom:456.589500px;}
.ycd{bottom:467.796000px;}
.ydb{bottom:470.964000px;}
.y59{bottom:472.653000px;}
.y14{bottom:473.589000px;}
.y30{bottom:474.148500px;}
.y79{bottom:475.642500px;}
.yfe{bottom:476.763000px;}
.y43{bottom:480.126000px;}
.ya8{bottom:487.597500px;}
.y87{bottom:489.091500px;}
.yed{bottom:494.695500px;}
.yda{bottom:503.467500px;}
.y58{bottom:505.156500px;}
.y13{bottom:506.091000px;}
.y2f{bottom:506.650500px;}
.ycc{bottom:509.266500px;}
.y42{bottom:512.628000px;}
.y78{bottom:517.111500px;}
.yfd{bottom:518.232000px;}
.ya7{bottom:520.101000px;}
.y67{bottom:521.595000px;}
.yec{bottom:527.199000px;}
.yd9{bottom:535.971000px;}
.y57{bottom:537.660000px;}
.y12{bottom:538.594500px;}
.y2e{bottom:539.154000px;}
.y41{bottom:545.131500px;}
.y77{bottom:549.615000px;}
.ycb{bottom:550.735500px;}
.ya6{bottom:552.603000px;}
.y66{bottom:554.098500px;}
.yeb{bottom:559.702500px;}
.yd8{bottom:568.474500px;}
.y56{bottom:570.163500px;}
.y11{bottom:571.098000px;}
.y2d{bottom:574.645500px;}
.y40{bottom:577.635000px;}
.y76{bottom:582.118500px;}
.yca{bottom:583.239000px;}
.y65{bottom:586.600500px;}
.yfc{bottom:592.204500px;}
.ya5{bottom:594.073500px;}
.y8b{bottom:595.567500px;}
.yd7{bottom:600.976500px;}
.yea{bottom:601.171500px;}
.y55{bottom:602.665500px;}
.y10{bottom:612.567000px;}
.y75{bottom:614.620500px;}
.yc9{bottom:615.742500px;}
.y2c{bottom:619.104000px;}
.yfb{bottom:624.708000px;}
.ya4{bottom:626.577000px;}
.y8a{bottom:628.071000px;}
.ye9{bottom:633.675000px;}
.y54{bottom:636.663000px;}
.y74{bottom:647.124000px;}
.y2b{bottom:651.607500px;}
.yc8{bottom:657.211500px;}
.ya3{bottom:659.079000px;}
.yf{bottom:660.546000px;}
.y89{bottom:660.574500px;}
.yfa{bottom:666.178500px;}
.y53{bottom:672.156000px;}
.yd6{bottom:674.127000px;}
.ye8{bottom:675.144000px;}
.y73{bottom:679.627500px;}
.y3f{bottom:684.111000px;}
.ye{bottom:690.607500px;}
.ya2{bottom:691.582500px;}
.y2a{bottom:693.076500px;}
.yc7{bottom:698.680500px;}
.ye7{bottom:707.647500px;}
.yd5{bottom:709.989000px;}
.y72{bottom:712.131000px;}
.yd{bottom:714.966000px;}
.y3e{bottom:716.613000px;}
.ya1{bottom:724.086000px;}
.y29{bottom:725.580000px;}
.yc6{bottom:731.184000px;}
.yb7{bottom:734.547000px;}
.ye6{bottom:740.151000px;}
.y71{bottom:744.633000px;}
.yd4{bottom:745.849500px;}
.y3d{bottom:749.116500px;}
.yc{bottom:750.364500px;}
.ya0{bottom:756.589500px;}
.y28{bottom:758.083500px;}
.yc5{bottom:763.687500px;}
.yb6{bottom:767.049000px;}
.yf9{bottom:772.653000px;}
.y3c{bottom:781.620000px;}
.yb{bottom:785.565000px;}
.y70{bottom:786.103500px;}
.y9f{bottom:789.091500px;}
.y27{bottom:790.587000px;}
.yb5{bottom:799.552500px;}
.yc4{bottom:805.156500px;}
.y52{bottom:814.123500px;}
.ya{bottom:816.433500px;}
.y6f{bottom:818.605500px;}
.y26{bottom:823.089000px;}
.y9e{bottom:830.562000px;}
.yb4{bottom:832.056000px;}
.yf8{bottom:837.660000px;}
.yc3{bottom:846.625500px;}
.y6e{bottom:851.109000px;}
.y9{bottom:851.812500px;}
.y25{bottom:855.592500px;}
.y9d{bottom:863.064000px;}
.y86{bottom:864.559500px;}
.yc2{bottom:879.129000px;}
.y6d{bottom:883.612500px;}
.y8{bottom:883.911000px;}
.y24{bottom:888.096000px;}
.y9c{bottom:895.567500px;}
.y85{bottom:897.061500px;}
.yc1{bottom:911.632500px;}
.y6c{bottom:916.116000px;}
.y23{bottom:920.598000px;}
.y9b{bottom:928.071000px;}
.y7{bottom:929.565000px;}
.y6b{bottom:948.618000px;}
.y22{bottom:953.101500px;}
.y9a{bottom:960.574500px;}
.y51{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y6a{bottom:981.121500px;}
.y21{bottom:985.605000px;}
.y99{bottom:993.076500px;}
.y50{bottom:994.572000px;}
.y69{bottom:1015.119000px;}
.y20{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y98{bottom:1025.580000px;}
.y4f{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h6{height:37.658745px;}
.h7{height:50.498638px;}
.h8{height:51.287679px;}
.h4{height:53.798265px;}
.h2{height:60.598349px;}
.h5{height:63.692745px;}
.h3{height:63.698745px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:105.223500px;}
.xf{left:106.299000px;}
.x6{left:122.955000px;}
.x4{left:131.863500px;}
.x13{left:157.537500px;}
.x12{left:159.349500px;}
.x5{left:247.842000px;}
.xe{left:296.790000px;}
.x7{left:414.961500px;}
.xd{left:511.183500px;}
.xa{left:515.344500px;}
.x9{left:557.844000px;}
.xb{left:563.379000px;}
.x3{left:567.934500px;}
.x8{left:591.115500px;}
.xc{left:608.271000px;}
.x2{left:648.775500px;}
.x1{left:692.794500px;}
.x10{left:785.340000px;}
@media print{
.v2{vertical-align:-23.146667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.146667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.255044pt;}
.ls4{letter-spacing:3.443089pt;}
.ls0{letter-spacing:3.569430pt;}
.ls3{letter-spacing:30.510628pt;}
.ws4{word-spacing:-76.513067pt;}
.ws9e{word-spacing:-67.203996pt;}
.ws9b{word-spacing:-64.015950pt;}
.ws19{word-spacing:-63.760907pt;}
.ws7b{word-spacing:-49.478464pt;}
.ws61{word-spacing:-48.904615pt;}
.ws62{word-spacing:-48.713333pt;}
.ws68{word-spacing:-48.649572pt;}
.ws56{word-spacing:-48.585811pt;}
.ws3f{word-spacing:-48.330767pt;}
.ws63{word-spacing:-48.267006pt;}
.ws86{word-spacing:-48.203245pt;}
.ws8b{word-spacing:-48.011963pt;}
.ws3{word-spacing:-47.820667pt;}
.wsc{word-spacing:-47.756919pt;}
.ws34{word-spacing:-47.565636pt;}
.ws74{word-spacing:-47.501875pt;}
.ws8d{word-spacing:-47.438115pt;}
.ws17{word-spacing:-47.183071pt;}
.ws5b{word-spacing:-46.545462pt;}
.ws67{word-spacing:-46.417940pt;}
.ws20{word-spacing:-46.099136pt;}
.ws2d{word-spacing:-46.035375pt;}
.ws3b{word-spacing:-45.907853pt;}
.ws42{word-spacing:-45.844092pt;}
.ws1c{word-spacing:-45.716570pt;}
.ws7c{word-spacing:-45.652809pt;}
.ws92{word-spacing:-45.589048pt;}
.ws1f{word-spacing:-45.525287pt;}
.ws5a{word-spacing:-45.461526pt;}
.ws7f{word-spacing:-45.334005pt;}
.ws4f{word-spacing:-45.270244pt;}
.ws5c{word-spacing:-45.206483pt;}
.ws1e{word-spacing:-45.142722pt;}
.ws79{word-spacing:-45.078961pt;}
.ws54{word-spacing:-45.015200pt;}
.wsd{word-spacing:-44.951439pt;}
.ws8c{word-spacing:-44.760156pt;}
.ws46{word-spacing:-44.632635pt;}
.ws7d{word-spacing:-44.568874pt;}
.ws50{word-spacing:-44.441352pt;}
.ws25{word-spacing:-44.377591pt;}
.ws16{word-spacing:-44.313830pt;}
.ws47{word-spacing:-44.250069pt;}
.ws48{word-spacing:-44.122547pt;}
.ws65{word-spacing:-44.058787pt;}
.ws40{word-spacing:-43.995026pt;}
.ws64{word-spacing:-43.931265pt;}
.ws32{word-spacing:-43.867504pt;}
.ws24{word-spacing:-43.803743pt;}
.ws82{word-spacing:-43.739982pt;}
.wsb{word-spacing:-43.676221pt;}
.ws30{word-spacing:-43.612460pt;}
.ws87{word-spacing:-43.548699pt;}
.ws7{word-spacing:-43.421177pt;}
.ws9{word-spacing:-43.357417pt;}
.ws10{word-spacing:-43.293656pt;}
.ws2c{word-spacing:-43.229895pt;}
.ws12{word-spacing:-43.166134pt;}
.wsa{word-spacing:-43.102373pt;}
.ws2e{word-spacing:-43.038612pt;}
.ws5{word-spacing:-42.974851pt;}
.ws91{word-spacing:-42.972138pt;}
.ws2a{word-spacing:-42.911090pt;}
.ws2b{word-spacing:-42.847329pt;}
.ws22{word-spacing:-42.783568pt;}
.ws49{word-spacing:-42.719807pt;}
.ws94{word-spacing:-42.660882pt;}
.ws26{word-spacing:-42.656047pt;}
.ws96{word-spacing:-42.621692pt;}
.ws21{word-spacing:-42.592286pt;}
.ws1d{word-spacing:-42.528525pt;}
.ws28{word-spacing:-42.507253pt;}
.ws13{word-spacing:-42.464764pt;}
.ws75{word-spacing:-42.401003pt;}
.ws15{word-spacing:-42.273481pt;}
.ws51{word-spacing:-42.209720pt;}
.wsa0{word-spacing:-42.082198pt;}
.ws31{word-spacing:-42.018437pt;}
.ws69{word-spacing:-41.954677pt;}
.ws2f{word-spacing:-41.827155pt;}
.ws41{word-spacing:-41.763394pt;}
.ws23{word-spacing:-41.699633pt;}
.ws4d{word-spacing:-41.635872pt;}
.ws93{word-spacing:-41.572111pt;}
.ws29{word-spacing:-41.508350pt;}
.ws35{word-spacing:-41.444589pt;}
.ws78{word-spacing:-41.380828pt;}
.ws9a{word-spacing:-41.253307pt;}
.ws3e{word-spacing:-41.189546pt;}
.ws59{word-spacing:-41.125785pt;}
.ws9f{word-spacing:-41.062024pt;}
.ws76{word-spacing:-40.998263pt;}
.ws8{word-spacing:-40.743219pt;}
.ws3d{word-spacing:-40.551937pt;}
.ws73{word-spacing:-40.424415pt;}
.wsf{word-spacing:-40.296893pt;}
.ws1b{word-spacing:-40.233132pt;}
.ws1a{word-spacing:-40.212488pt;}
.ws53{word-spacing:-40.169371pt;}
.ws3c{word-spacing:-40.041849pt;}
.ws6c{word-spacing:-39.978088pt;}
.ws4b{word-spacing:-39.914328pt;}
.ws83{word-spacing:-39.850567pt;}
.ws4c{word-spacing:-39.723045pt;}
.wsa1{word-spacing:-39.659284pt;}
.ws84{word-spacing:-39.531762pt;}
.ws5d{word-spacing:-39.468001pt;}
.ws70{word-spacing:-39.404240pt;}
.ws38{word-spacing:-39.340479pt;}
.ws60{word-spacing:-39.276719pt;}
.ws5f{word-spacing:-39.212958pt;}
.ws55{word-spacing:-39.021675pt;}
.ws6e{word-spacing:-38.894153pt;}
.ws88{word-spacing:-38.766631pt;}
.ws8e{word-spacing:-38.702870pt;}
.ws39{word-spacing:-38.575349pt;}
.ws81{word-spacing:-38.511588pt;}
.ws66{word-spacing:-38.447827pt;}
.ws45{word-spacing:-38.320305pt;}
.ws52{word-spacing:-38.256544pt;}
.ws6a{word-spacing:-37.937739pt;}
.ws6d{word-spacing:-37.873979pt;}
.ws8a{word-spacing:-37.810218pt;}
.ws33{word-spacing:-37.746457pt;}
.ws4a{word-spacing:-37.618935pt;}
.ws5e{word-spacing:-37.555174pt;}
.ws57{word-spacing:-37.427652pt;}
.ws3a{word-spacing:-37.363891pt;}
.ws77{word-spacing:-37.172609pt;}
.ws72{word-spacing:-36.981326pt;}
.ws36{word-spacing:-36.790043pt;}
.ws89{word-spacing:-36.726282pt;}
.ws44{word-spacing:-36.535000pt;}
.ws7e{word-spacing:-36.471239pt;}
.ws6f{word-spacing:-36.216195pt;}
.ws95{word-spacing:-36.088673pt;}
.wse{word-spacing:-36.024912pt;}
.ws18{word-spacing:-35.961151pt;}
.ws80{word-spacing:-35.578586pt;}
.ws4e{word-spacing:-35.387303pt;}
.ws8f{word-spacing:-35.259781pt;}
.ws14{word-spacing:-35.196020pt;}
.ws71{word-spacing:-35.132260pt;}
.ws85{word-spacing:-34.813455pt;}
.ws37{word-spacing:-34.749694pt;}
.ws58{word-spacing:-34.622172pt;}
.ws7a{word-spacing:-34.303368pt;}
.ws43{word-spacing:-34.175846pt;}
.ws97{word-spacing:-34.048324pt;}
.ws99{word-spacing:-33.984563pt;}
.ws6b{word-spacing:-33.857041pt;}
.ws9c{word-spacing:-33.283193pt;}
.ws90{word-spacing:-33.155671pt;}
.ws98{word-spacing:-31.880453pt;}
.ws9d{word-spacing:-31.115322pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws27{word-spacing:-26.141961pt;}
.ws6{word-spacing:-23.699904pt;}
.ws2{word-spacing:-7.523784pt;}
.ws11{word-spacing:0.000000pt;}
._f{margin-left:-6.036032pt;}
._6{margin-left:-5.058367pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._7{width:1.105190pt;}
._4{width:2.337899pt;}
._5{width:3.570860pt;}
._11{width:4.493091pt;}
._a{width:5.722564pt;}
._12{width:8.561371pt;}
._b{width:11.370693pt;}
._e{width:15.217602pt;}
._10{width:16.492820pt;}
._2{width:20.063424pt;}
._8{width:21.763714pt;}
._9{width:22.975178pt;}
._c{width:25.483108pt;}
._d{width:27.459696pt;}
.fs0{font-size:42.507253pt;}
.fs3{font-size:44.632587pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:51.309333pt;}
.y1e{bottom:63.928000pt;}
.y64{bottom:94.358667pt;}
.y3b{bottom:95.686667pt;}
.y84{bottom:97.014667pt;}
.yc0{bottom:98.010667pt;}
.y4e{bottom:101.000000pt;}
.yb3{bottom:107.641333pt;}
.ye5{bottom:108.465333pt;}
.y96{bottom:108.970667pt;}
.yf7{bottom:118.932000pt;}
.y63{bottom:123.249333pt;}
.y3a{bottom:124.578667pt;}
.y83{bottom:125.906667pt;}
.y4d{bottom:129.892000pt;}
.ybf{bottom:134.873333pt;}
.yb2{bottom:136.533333pt;}
.ye4{bottom:137.357333pt;}
.y95{bottom:137.861333pt;}
.y62{bottom:152.141333pt;}
.y1d{bottom:152.972000pt;}
.y39{bottom:153.469333pt;}
.y82{bottom:154.798667pt;}
.yf6{bottom:155.794667pt;}
.y4c{bottom:158.782667pt;}
.ybe{bottom:163.764000pt;}
.yb1{bottom:165.425333pt;}
.y94{bottom:166.753333pt;}
.ye3{bottom:174.218667pt;}
.y61{bottom:181.033333pt;}
.y1c{bottom:181.864000pt;}
.y38{bottom:182.361333pt;}
.y81{bottom:183.689333pt;}
.yf5{bottom:184.686667pt;}
.y4b{bottom:187.674667pt;}
.ybd{bottom:192.656000pt;}
.yb0{bottom:194.316000pt;}
.y93{bottom:195.645333pt;}
.ye2{bottom:203.110667pt;}
.y60{bottom:209.925333pt;}
.y37{bottom:211.253333pt;}
.y80{bottom:212.581333pt;}
.yf4{bottom:213.577333pt;}
.y88{bottom:213.909333pt;}
.y4a{bottom:216.566667pt;}
.y1b{bottom:218.725333pt;}
.yaf{bottom:223.208000pt;}
.y97{bottom:224.536000pt;}
.ybc{bottom:229.517333pt;}
.ye1{bottom:232.001333pt;}
.y92{bottom:232.506667pt;}
.yd3{bottom:234.498667pt;}
.y5f{bottom:238.816000pt;}
.y36{bottom:240.145333pt;}
.y7f{bottom:241.473333pt;}
.y49{bottom:245.458667pt;}
.y1a{bottom:247.617333pt;}
.yf3{bottom:250.440000pt;}
.yae{bottom:252.100000pt;}
.y68{bottom:253.428000pt;}
.ye0{bottom:260.893333pt;}
.y91{bottom:261.398667pt;}
.yd2{bottom:263.390667pt;}
.ybb{bottom:266.380000pt;}
.y7e{bottom:270.365333pt;}
.y5e{bottom:275.678667pt;}
.y19{bottom:276.509333pt;}
.y35{bottom:277.006667pt;}
.yf2{bottom:279.330667pt;}
.yad{bottom:280.992000pt;}
.y48{bottom:282.320000pt;}
.ydf{bottom:289.785333pt;}
.y90{bottom:290.290667pt;}
.yd1{bottom:292.282667pt;}
.yba{bottom:295.272000pt;}
.y101{bottom:300.253333pt;}
.y5d{bottom:304.569333pt;}
.y18{bottom:305.401333pt;}
.y34{bottom:305.898667pt;}
.y7d{bottom:307.226667pt;}
.yf1{bottom:308.222667pt;}
.yac{bottom:309.882667pt;}
.y47{bottom:311.212000pt;}
.y8f{bottom:319.181333pt;}
.yd0{bottom:321.174667pt;}
.yde{bottom:321.333333pt;}
.yb9{bottom:324.162667pt;}
.y100{bottom:329.144000pt;}
.y5c{bottom:333.461333pt;}
.y17{bottom:334.292000pt;}
.y33{bottom:334.789333pt;}
.y7c{bottom:336.118667pt;}
.y46{bottom:340.102667pt;}
.yf0{bottom:345.084000pt;}
.yab{bottom:346.745333pt;}
.y8e{bottom:348.073333pt;}
.ycf{bottom:358.036000pt;}
.ydd{bottom:360.852000pt;}
.yb8{bottom:361.025333pt;}
.y5b{bottom:362.353333pt;}
.y16{bottom:363.184000pt;}
.y32{bottom:363.681333pt;}
.y7b{bottom:365.009333pt;}
.y45{bottom:368.994667pt;}
.yef{bottom:373.976000pt;}
.yaa{bottom:375.637333pt;}
.y8d{bottom:376.965333pt;}
.yce{bottom:386.928000pt;}
.ydc{bottom:389.744000pt;}
.y5a{bottom:391.245333pt;}
.y15{bottom:392.076000pt;}
.y31{bottom:392.573333pt;}
.y7a{bottom:393.901333pt;}
.yff{bottom:394.897333pt;}
.y44{bottom:397.886667pt;}
.yee{bottom:402.868000pt;}
.ya9{bottom:404.528000pt;}
.y8c{bottom:405.857333pt;}
.ycd{bottom:415.818667pt;}
.ydb{bottom:418.634667pt;}
.y59{bottom:420.136000pt;}
.y14{bottom:420.968000pt;}
.y30{bottom:421.465333pt;}
.y79{bottom:422.793333pt;}
.yfe{bottom:423.789333pt;}
.y43{bottom:426.778667pt;}
.ya8{bottom:433.420000pt;}
.y87{bottom:434.748000pt;}
.yed{bottom:439.729333pt;}
.yda{bottom:447.526667pt;}
.y58{bottom:449.028000pt;}
.y13{bottom:449.858667pt;}
.y2f{bottom:450.356000pt;}
.ycc{bottom:452.681333pt;}
.y42{bottom:455.669333pt;}
.y78{bottom:459.654667pt;}
.yfd{bottom:460.650667pt;}
.ya7{bottom:462.312000pt;}
.y67{bottom:463.640000pt;}
.yec{bottom:468.621333pt;}
.yd9{bottom:476.418667pt;}
.y57{bottom:477.920000pt;}
.y12{bottom:478.750667pt;}
.y2e{bottom:479.248000pt;}
.y41{bottom:484.561333pt;}
.y77{bottom:488.546667pt;}
.ycb{bottom:489.542667pt;}
.ya6{bottom:491.202667pt;}
.y66{bottom:492.532000pt;}
.yeb{bottom:497.513333pt;}
.yd8{bottom:505.310667pt;}
.y56{bottom:506.812000pt;}
.y11{bottom:507.642667pt;}
.y2d{bottom:510.796000pt;}
.y40{bottom:513.453333pt;}
.y76{bottom:517.438667pt;}
.yca{bottom:518.434667pt;}
.y65{bottom:521.422667pt;}
.yfc{bottom:526.404000pt;}
.ya5{bottom:528.065333pt;}
.y8b{bottom:529.393333pt;}
.yd7{bottom:534.201333pt;}
.yea{bottom:534.374667pt;}
.y55{bottom:535.702667pt;}
.y10{bottom:544.504000pt;}
.y75{bottom:546.329333pt;}
.yc9{bottom:547.326667pt;}
.y2c{bottom:550.314667pt;}
.yfb{bottom:555.296000pt;}
.ya4{bottom:556.957333pt;}
.y8a{bottom:558.285333pt;}
.ye9{bottom:563.266667pt;}
.y54{bottom:565.922667pt;}
.y74{bottom:575.221333pt;}
.y2b{bottom:579.206667pt;}
.yc8{bottom:584.188000pt;}
.ya3{bottom:585.848000pt;}
.yf{bottom:587.152000pt;}
.y89{bottom:587.177333pt;}
.yfa{bottom:592.158667pt;}
.y53{bottom:597.472000pt;}
.yd6{bottom:599.224000pt;}
.ye8{bottom:600.128000pt;}
.y73{bottom:604.113333pt;}
.y3f{bottom:608.098667pt;}
.ye{bottom:613.873333pt;}
.ya2{bottom:614.740000pt;}
.y2a{bottom:616.068000pt;}
.yc7{bottom:621.049333pt;}
.ye7{bottom:629.020000pt;}
.yd5{bottom:631.101333pt;}
.y72{bottom:633.005333pt;}
.yd{bottom:635.525333pt;}
.y3e{bottom:636.989333pt;}
.ya1{bottom:643.632000pt;}
.y29{bottom:644.960000pt;}
.yc6{bottom:649.941333pt;}
.yb7{bottom:652.930667pt;}
.ye6{bottom:657.912000pt;}
.y71{bottom:661.896000pt;}
.yd4{bottom:662.977333pt;}
.y3d{bottom:665.881333pt;}
.yc{bottom:666.990667pt;}
.ya0{bottom:672.524000pt;}
.y28{bottom:673.852000pt;}
.yc5{bottom:678.833333pt;}
.yb6{bottom:681.821333pt;}
.yf9{bottom:686.802667pt;}
.y3c{bottom:694.773333pt;}
.yb{bottom:698.280000pt;}
.y70{bottom:698.758667pt;}
.y9f{bottom:701.414667pt;}
.y27{bottom:702.744000pt;}
.yb5{bottom:710.713333pt;}
.yc4{bottom:715.694667pt;}
.y52{bottom:723.665333pt;}
.ya{bottom:725.718667pt;}
.y6f{bottom:727.649333pt;}
.y26{bottom:731.634667pt;}
.y9e{bottom:738.277333pt;}
.yb4{bottom:739.605333pt;}
.yf8{bottom:744.586667pt;}
.yc3{bottom:752.556000pt;}
.y6e{bottom:756.541333pt;}
.y9{bottom:757.166667pt;}
.y25{bottom:760.526667pt;}
.y9d{bottom:767.168000pt;}
.y86{bottom:768.497333pt;}
.yc2{bottom:781.448000pt;}
.y6d{bottom:785.433333pt;}
.y8{bottom:785.698667pt;}
.y24{bottom:789.418667pt;}
.y9c{bottom:796.060000pt;}
.y85{bottom:797.388000pt;}
.yc1{bottom:810.340000pt;}
.y6c{bottom:814.325333pt;}
.y23{bottom:818.309333pt;}
.y9b{bottom:824.952000pt;}
.y7{bottom:826.280000pt;}
.y6b{bottom:843.216000pt;}
.y22{bottom:847.201333pt;}
.y9a{bottom:853.844000pt;}
.y51{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y6a{bottom:872.108000pt;}
.y21{bottom:876.093333pt;}
.y99{bottom:882.734667pt;}
.y50{bottom:884.064000pt;}
.y69{bottom:902.328000pt;}
.y20{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y98{bottom:911.626667pt;}
.y4f{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h6{height:33.474440pt;}
.h7{height:44.887678pt;}
.h8{height:45.589048pt;}
.h4{height:47.820680pt;}
.h2{height:53.865199pt;}
.h5{height:56.615773pt;}
.h3{height:56.621107pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:93.532000pt;}
.xf{left:94.488000pt;}
.x6{left:109.293333pt;}
.x4{left:117.212000pt;}
.x13{left:140.033333pt;}
.x12{left:141.644000pt;}
.x5{left:220.304000pt;}
.xe{left:263.813333pt;}
.x7{left:368.854667pt;}
.xd{left:454.385333pt;}
.xa{left:458.084000pt;}
.x9{left:495.861333pt;}
.xb{left:500.781333pt;}
.x3{left:504.830667pt;}
.x8{left:525.436000pt;}
.xc{left:540.685333pt;}
.x2{left:576.689333pt;}
.x1{left:615.817333pt;}
.x10{left:698.080000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  