
    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_fab4934ca5670b5f434ba3df.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_55191d2642903c3d9b758144.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_0d3884f1d1c29fc169ba20a5.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_c54f20bcebe889f83e21ccec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_ebcc12c87847591c7b2390c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m11{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);}
.m10{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);}
.m19{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);}
.m15{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);}
.m9{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);}
.m20{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);}
.m13{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);}
.m25{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);}
.m17{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);}
.m22{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);}
.m2{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);}
.m1b{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);}
.mc{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);}
.m18{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);}
.m23{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);}
.m8{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);}
.m26{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);}
.m1e{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);}
.m1a{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{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);}
.m1d{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);}
.md{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);}
.mf{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m27{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);}
.m14{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);}
.m7{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);}
.m12{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);}
.mb{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);}
.m16{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);}
.m21{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);}
.m3{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;}
.ls0{letter-spacing:4.021609px;}
.ls5{letter-spacing:9.536490px;}
.ls2{letter-spacing:23.307374px;}
.ls4{letter-spacing:23.389163px;}
.ls3{letter-spacing:23.717126px;}
.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;}
}
.ws5{word-spacing:-71.731020px;}
.ws5b{word-spacing:-54.802499px;}
.ws7{word-spacing:-54.730768px;}
.ws5a{word-spacing:-54.372113px;}
.ws12{word-spacing:-54.013458px;}
.ws3{word-spacing:-53.798250px;}
.ws28{word-spacing:-53.511341px;}
.ws71{word-spacing:-53.367879px;}
.ws5c{word-spacing:-53.296148px;}
.ws36{word-spacing:-53.224417px;}
.ws2d{word-spacing:-53.080955px;}
.ws45{word-spacing:-52.578838px;}
.ws30{word-spacing:-52.291914px;}
.ws48{word-spacing:-52.076721px;}
.ws20{word-spacing:-51.933258px;}
.ws2a{word-spacing:-51.789796px;}
.ws19{word-spacing:-51.574603px;}
.ws6a{word-spacing:-51.502872px;}
.ws57{word-spacing:-51.072486px;}
.ws1f{word-spacing:-50.929024px;}
.ws53{word-spacing:-50.857293px;}
.ws5d{word-spacing:-50.713831px;}
.ws31{word-spacing:-50.642100px;}
.ws3b{word-spacing:-50.426907px;}
.ws49{word-spacing:-50.283445px;}
.ws56{word-spacing:-50.211714px;}
.ws4d{word-spacing:-49.853059px;}
.ws39{word-spacing:-49.781328px;}
.ws50{word-spacing:-49.637866px;}
.ws46{word-spacing:-49.566135px;}
.ws78{word-spacing:-48.920556px;}
.ws42{word-spacing:-48.848825px;}
.ws8{word-spacing:-48.777094px;}
.ws13{word-spacing:-48.705363px;}
.ws24{word-spacing:-48.633632px;}
.wsb{word-spacing:-48.561901px;}
.wse{word-spacing:-48.490170px;}
.ws2f{word-spacing:-48.418439px;}
.ws79{word-spacing:-48.348042px;}
.ws2e{word-spacing:-48.347299px;}
.ws4{word-spacing:-48.346707px;}
.ws1b{word-spacing:-48.343048px;}
.ws1a{word-spacing:-48.274976px;}
.ws3f{word-spacing:-48.203245px;}
.ws1e{word-spacing:-48.131514px;}
.ws9{word-spacing:-48.059783px;}
.wsf{word-spacing:-47.988052px;}
.ws2b{word-spacing:-47.916321px;}
.ws27{word-spacing:-47.844590px;}
.ws23{word-spacing:-47.820660px;}
.ws15{word-spacing:-47.772859px;}
.ws4c{word-spacing:-47.629397px;}
.ws73{word-spacing:-47.557666px;}
.ws3a{word-spacing:-47.485935px;}
.ws4f{word-spacing:-47.414204px;}
.ws6f{word-spacing:-47.270742px;}
.ws41{word-spacing:-47.199011px;}
.ws68{word-spacing:-47.127280px;}
.ws18{word-spacing:-47.055549px;}
.ws26{word-spacing:-46.983818px;}
.ws14{word-spacing:-46.912087px;}
.ws44{word-spacing:-46.768625px;}
.ws51{word-spacing:-46.696894px;}
.wsd{word-spacing:-46.625163px;}
.ws17{word-spacing:-46.553432px;}
.ws6b{word-spacing:-46.481701px;}
.ws5f{word-spacing:-46.409970px;}
.ws74{word-spacing:-46.338239px;}
.ws59{word-spacing:-46.194777px;}
.ws3e{word-spacing:-46.123046px;}
.ws61{word-spacing:-45.979584px;}
.ws3d{word-spacing:-45.907853px;}
.ws70{word-spacing:-45.836122px;}
.ws4a{word-spacing:-45.620929px;}
.ws65{word-spacing:-45.477467px;}
.ws34{word-spacing:-45.334005px;}
.ws5e{word-spacing:-45.262274px;}
.ws43{word-spacing:-45.190543px;}
.ws32{word-spacing:-45.118812px;}
.ws63{word-spacing:-45.047081px;}
.ws64{word-spacing:-44.975350px;}
.ws10{word-spacing:-44.831887px;}
.ws2c{word-spacing:-44.473232px;}
.wsc{word-spacing:-44.329770px;}
.ws52{word-spacing:-43.971115px;}
.ws4b{word-spacing:-43.827653px;}
.wsa{word-spacing:-43.540729px;}
.ws47{word-spacing:-43.468998px;}
.ws4e{word-spacing:-43.397267px;}
.ws16{word-spacing:-43.253805px;}
.ws72{word-spacing:-43.182074px;}
.ws55{word-spacing:-43.110343px;}
.ws6d{word-spacing:-43.038612px;}
.ws69{word-spacing:-42.966881px;}
.ws6c{word-spacing:-42.895150px;}
.ws40{word-spacing:-42.751688px;}
.ws25{word-spacing:-42.679957px;}
.ws22{word-spacing:-42.536495px;}
.ws1c{word-spacing:-42.249571px;}
.ws35{word-spacing:-42.177840px;}
.ws6e{word-spacing:-41.890916px;}
.ws60{word-spacing:-41.675723px;}
.ws21{word-spacing:-41.532261px;}
.ws3c{word-spacing:-41.173605px;}
.ws66{word-spacing:-40.814950px;}
.ws37{word-spacing:-40.743219px;}
.ws33{word-spacing:-40.599757px;}
.ws1d{word-spacing:-40.528026px;}
.ws54{word-spacing:-40.384564px;}
.ws58{word-spacing:-39.954178px;}
.ws38{word-spacing:-39.667254px;}
.ws62{word-spacing:-39.308599px;}
.ws29{word-spacing:-38.949944px;}
.ws77{word-spacing:-38.519558px;}
.ws67{word-spacing:-38.447827px;}
.ws76{word-spacing:-37.873979px;}
.ws75{word-spacing:-35.363393px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws6{word-spacing:-26.662391px;}
.ws2{word-spacing:-8.464257px;}
.ws11{word-spacing:0.000000px;}
._4{margin-left:-8.091257px;}
._11{margin-left:-6.570552px;}
._6{margin-left:-5.499377px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._8{width:1.166825px;}
._5{width:2.668393px;}
._7{width:4.017217px;}
._16{width:5.116802px;}
._c{width:6.369712px;}
._13{width:12.371206px;}
._e{width:17.148494px;}
._d{width:19.276512px;}
._10{width:20.711136px;}
._2{width:22.523531px;}
._9{width:24.484178px;}
._a{width:25.823164px;}
._14{width:27.119106px;}
._b{width:28.123340px;}
._f{width:30.107900px;}
._12{width:32.790639px;}
._15{width:35.862963px;}
.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;}
.y3d{bottom:43.525500px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.y10e{bottom:107.077500px;}
.y139{bottom:107.274000px;}
.y3c{bottom:107.647500px;}
.y6c{bottom:110.262000px;}
.ya3{bottom:113.625000px;}
.yf6{bottom:118.426500px;}
.yc9{bottom:119.229000px;}
.yac{bottom:122.592000px;}
.y125{bottom:127.074000px;}
.y51{bottom:128.194500px;}
.y99{bottom:128.569500px;}
.y1e{bottom:134.979000px;}
.y138{bottom:139.777500px;}
.y3b{bottom:140.151000px;}
.ydd{bottom:141.645000px;}
.ya2{bottom:146.128500px;}
.y10d{bottom:148.548000px;}
.yf5{bottom:150.928500px;}
.y6b{bottom:151.732500px;}
.yab{bottom:155.094000px;}
.y124{bottom:159.577500px;}
.y50{bottom:160.698000px;}
.y98{bottom:161.071500px;}
.y137{bottom:172.279500px;}
.y3a{bottom:172.653000px;}
.ydc{bottom:174.148500px;}
.y1d{bottom:176.449500px;}
.ya1{bottom:178.630500px;}
.y10c{bottom:181.050000px;}
.yf4{bottom:183.432000px;}
.y6a{bottom:184.234500px;}
.y7f{bottom:184.608000px;}
.yaa{bottom:187.597500px;}
.y4f{bottom:193.201500px;}
.y97{bottom:193.575000px;}
.y123{bottom:201.046500px;}
.yb9{bottom:202.168500px;}
.y39{bottom:205.156500px;}
.ydb{bottom:206.650500px;}
.y1c{bottom:208.953000px;}
.ya0{bottom:211.134000px;}
.y10b{bottom:213.553500px;}
.y136{bottom:213.750000px;}
.ye9{bottom:214.123500px;}
.yf3{bottom:215.935500px;}
.y69{bottom:216.738000px;}
.y7e{bottom:217.111500px;}
.ya9{bottom:220.101000px;}
.y96{bottom:226.078500px;}
.y4e{bottom:234.670500px;}
.y38{bottom:237.660000px;}
.yda{bottom:239.154000px;}
.y1b{bottom:241.455000px;}
.y122{bottom:242.517000px;}
.y9f{bottom:243.637500px;}
.y135{bottom:246.252000px;}
.ye8{bottom:246.625500px;}
.yf2{bottom:248.439000px;}
.yc8{bottom:249.241500px;}
.y7d{bottom:249.615000px;}
.y68{bottom:252.229500px;}
.ya8{bottom:252.603000px;}
.y10a{bottom:255.022500px;}
.y95{bottom:258.582000px;}
.yb8{bottom:267.174000px;}
.y37{bottom:270.163500px;}
.y1a{bottom:273.958500px;}
.yd9{bottom:274.645500px;}
.y4d{bottom:276.141000px;}
.y134{bottom:278.755500px;}
.ye7{bottom:279.129000px;}
.yf1{bottom:280.941000px;}
.yc7{bottom:281.745000px;}
.y7c{bottom:282.118500px;}
.y121{bottom:283.986000px;}
.y67{bottom:284.733000px;}
.ya7{bottom:285.106500px;}
.y94{bottom:291.084000px;}
.y109{bottom:296.493000px;}
.yb7{bottom:299.677500px;}
.y36{bottom:302.665500px;}
.y19{bottom:306.462000px;}
.yd8{bottom:307.149000px;}
.y4c{bottom:308.643000px;}
.y133{bottom:311.259000px;}
.ye6{bottom:311.632500px;}
.yf0{bottom:313.444500px;}
.y66{bottom:317.236500px;}
.y7b{bottom:317.610000px;}
.y93{bottom:323.587500px;}
.y120{bottom:325.455000px;}
.yb6{bottom:332.181000px;}
.y35{bottom:335.169000px;}
.y108{bottom:337.962000px;}
.y18{bottom:338.965500px;}
.yd7{bottom:339.652500px;}
.y4b{bottom:341.146500px;}
.ye5{bottom:344.136000px;}
.y65{bottom:349.740000px;}
.y7a{bottom:350.113500px;}
.y132{bottom:352.728000px;}
.yef{bottom:354.960000px;}
.y92{bottom:356.091000px;}
.y11f{bottom:357.958500px;}
.y34{bottom:367.672500px;}
.y17{bottom:371.467500px;}
.yd6{bottom:372.156000px;}
.yb5{bottom:373.650000px;}
.ye4{bottom:376.638000px;}
.y107{bottom:379.431000px;}
.y64{bottom:382.242000px;}
.y4a{bottom:382.615500px;}
.yc6{bottom:385.231500px;}
.y91{bottom:388.593000px;}
.ya6{bottom:391.582500px;}
.y11e{bottom:399.427500px;}
.y33{bottom:400.176000px;}
.y16{bottom:403.971000px;}
.yee{bottom:405.780000px;}
.yb4{bottom:406.153500px;}
.yd5{bottom:407.647500px;}
.ye3{bottom:409.141500px;}
.y49{bottom:415.119000px;}
.yc5{bottom:417.735000px;}
.y106{bottom:420.901500px;}
.y90{bottom:421.096500px;}
.y63{bottom:423.712500px;}
.ya5{bottom:424.086000px;}
.y131{bottom:426.700500px;}
.y15{bottom:436.474500px;}
.yed{bottom:438.282000px;}
.yb3{bottom:438.655500px;}
.yd4{bottom:440.151000px;}
.y11d{bottom:440.898000px;}
.y32{bottom:441.645000px;}
.y48{bottom:447.622500px;}
.y79{bottom:450.610500px;}
.yc4{bottom:453.226500px;}
.y8f{bottom:453.600000px;}
.y62{bottom:456.214500px;}
.ya4{bottom:456.589500px;}
.y130{bottom:459.204000px;}
.y105{bottom:462.370500px;}
.y14{bottom:468.978000px;}
.yb2{bottom:471.159000px;}
.yd3{bottom:472.653000px;}
.y31{bottom:474.148500px;}
.ye2{bottom:477.136500px;}
.yec{bottom:479.752500px;}
.y47{bottom:480.126000px;}
.y11c{bottom:482.367000px;}
.y78{bottom:483.114000px;}
.yc3{bottom:485.730000px;}
.y8e{bottom:486.103500px;}
.y61{bottom:488.718000px;}
.y9e{bottom:489.091500px;}
.y12f{bottom:500.673000px;}
.yb1{bottom:503.662500px;}
.y104{bottom:503.839500px;}
.yd2{bottom:505.156500px;}
.y30{bottom:506.650500px;}
.ye1{bottom:509.640000px;}
.y13{bottom:510.447000px;}
.yeb{bottom:512.254500px;}
.y46{bottom:512.628000px;}
.y77{bottom:515.617500px;}
.y8d{bottom:518.605500px;}
.y60{bottom:521.221500px;}
.y9d{bottom:521.595000px;}
.y11b{bottom:523.836000px;}
.y12e{bottom:533.176500px;}
.yb0{bottom:536.166000px;}
.y2f{bottom:539.154000px;}
.yd1{bottom:540.648000px;}
.ye0{bottom:542.143500px;}
.y45{bottom:545.131500px;}
.y103{bottom:545.310000px;}
.y76{bottom:551.109000px;}
.y5f{bottom:553.725000px;}
.y9c{bottom:554.098500px;}
.yc2{bottom:556.713000px;}
.y12{bottom:558.426000px;}
.y8c{bottom:560.076000px;}
.y11a{bottom:565.306500px;}
.y12d{bottom:565.680000px;}
.yaf{bottom:568.668000px;}
.y2e{bottom:571.657500px;}
.yd0{bottom:573.151500px;}
.ydf{bottom:574.645500px;}
.y44{bottom:577.635000px;}
.y75{bottom:583.612500px;}
.y9b{bottom:586.600500px;}
.y102{bottom:586.779000px;}
.y11{bottom:588.792000px;}
.y8b{bottom:592.579500px;}
.y5e{bottom:595.194000px;}
.y119{bottom:597.808500px;}
.yc1{bottom:598.183500px;}
.ycf{bottom:605.655000px;}
.y2d{bottom:607.149000px;}
.yae{bottom:610.138500px;}
.y10{bottom:613.455000px;}
.y74{bottom:616.116000px;}
.y43{bottom:619.104000px;}
.y8a{bottom:625.081500px;}
.y101{bottom:628.248000px;}
.y118{bottom:630.312000px;}
.y12c{bottom:633.675000px;}
.y5d{bottom:636.663000px;}
.yce{bottom:638.158500px;}
.yc0{bottom:639.652500px;}
.yad{bottom:642.640500px;}
.y73{bottom:648.618000px;}
.yf{bottom:649.341000px;}
.y2c{bottom:651.607500px;}
.y89{bottom:657.585000px;}
.y100{bottom:660.751500px;}
.y5c{bottom:669.166500px;}
.y117{bottom:671.782500px;}
.ybf{bottom:672.156000px;}
.yde{bottom:675.144000px;}
.y12b{bottom:678.133500px;}
.ycd{bottom:679.627500px;}
.y42{bottom:684.111000px;}
.ye{bottom:685.228500px;}
.y88{bottom:690.088500px;}
.y2b{bottom:693.076500px;}
.y5b{bottom:701.670000px;}
.yff{bottom:702.220500px;}
.y116{bottom:704.284500px;}
.ybe{bottom:707.647500px;}
.y12a{bottom:710.635500px;}
.ycc{bottom:712.131000px;}
.yd{bottom:716.097000px;}
.y41{bottom:716.613000px;}
.y87{bottom:722.592000px;}
.y2a{bottom:725.580000px;}
.yea{bottom:734.173500px;}
.yfe{bottom:734.724000px;}
.ybd{bottom:740.151000px;}
.y5a{bottom:743.139000px;}
.ycb{bottom:744.633000px;}
.y115{bottom:745.755000px;}
.y40{bottom:749.116500px;}
.yc{bottom:751.983000px;}
.y72{bottom:752.106000px;}
.y86{bottom:755.094000px;}
.y29{bottom:758.083500px;}
.y59{bottom:775.642500px;}
.yfd{bottom:776.193000px;}
.yca{bottom:777.136500px;}
.y3f{bottom:781.620000px;}
.yb{bottom:784.569000px;}
.y71{bottom:784.608000px;}
.y114{bottom:787.224000px;}
.y28{bottom:790.587000px;}
.y85{bottom:796.564500px;}
.ybc{bottom:808.146000px;}
.y58{bottom:811.134000px;}
.y3e{bottom:814.123500px;}
.ya{bottom:815.437500px;}
.y70{bottom:817.111500px;}
.yfc{bottom:817.663500px;}
.y27{bottom:823.089000px;}
.y113{bottom:828.693000px;}
.y84{bottom:829.066500px;}
.y129{bottom:840.648000px;}
.y57{bottom:843.637500px;}
.y13a{bottom:846.625500px;}
.y9{bottom:851.323500px;}
.y6f{bottom:852.603000px;}
.y26{bottom:855.592500px;}
.yfb{bottom:859.132500px;}
.y83{bottom:861.570000px;}
.y112{bottom:870.163500px;}
.y128{bottom:873.151500px;}
.y56{bottom:876.141000px;}
.ybb{bottom:879.129000px;}
.y8{bottom:883.911000px;}
.y6e{bottom:885.106500px;}
.y25{bottom:888.096000px;}
.y82{bottom:894.073500px;}
.yfa{bottom:900.601500px;}
.y111{bottom:902.665500px;}
.y127{bottom:905.655000px;}
.yba{bottom:911.632500px;}
.y55{bottom:917.610000px;}
.y24{bottom:920.598000px;}
.y81{bottom:926.577000px;}
.y7{bottom:929.565000px;}
.y110{bottom:935.169000px;}
.y126{bottom:941.146500px;}
.y23{bottom:953.101500px;}
.y54{bottom:959.079000px;}
.y9a{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.yf9{bottom:974.281500px;}
.y10f{bottom:976.638000px;}
.y22{bottom:985.605000px;}
.y53{bottom:991.582500px;}
.y6d{bottom:994.572000px;}
.yf8{bottom:1006.785000px;}
.y21{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y80{bottom:1024.086000px;}
.y52{bottom:1027.074000px;}
.yf7{bottom:1048.300500px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h4{height:38.876573px;}
.h5{height:50.498638px;}
.h2{height:60.598349px;}
.h6{height:64.629649px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:104.254500px;}
.x10{left:106.299000px;}
.x6{left:107.665500px;}
.x4{left:112.701000px;}
.x15{left:117.328500px;}
.x14{left:124.143000px;}
.x17{left:126.546000px;}
.x12{left:128.500500px;}
.x5{left:142.591500px;}
.x13{left:151.131000px;}
.x1a{left:157.806000px;}
.x19{left:158.955000px;}
.x18{left:160.299000px;}
.x7{left:206.245500px;}
.xf{left:342.841500px;}
.xe{left:358.473000px;}
.xc{left:488.571000px;}
.xa{left:515.344500px;}
.x8{left:531.166500px;}
.x9{left:610.567500px;}
.x3{left:616.269000px;}
.xd{left:625.893000px;}
.xb{left:646.975500px;}
.x2{left:648.775500px;}
.x1{left:692.794500px;}
.x11{left:794.127000px;}
@media print{
.v2{vertical-align:-23.146667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.146667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.574763pt;}
.ls5{letter-spacing:8.476880pt;}
.ls2{letter-spacing:20.717666pt;}
.ls4{letter-spacing:20.790367pt;}
.ls3{letter-spacing:21.081890pt;}
.ws5{word-spacing:-63.760907pt;}
.ws5b{word-spacing:-48.713333pt;}
.ws7{word-spacing:-48.649572pt;}
.ws5a{word-spacing:-48.330767pt;}
.ws12{word-spacing:-48.011963pt;}
.ws3{word-spacing:-47.820667pt;}
.ws28{word-spacing:-47.565636pt;}
.ws71{word-spacing:-47.438115pt;}
.ws5c{word-spacing:-47.374354pt;}
.ws36{word-spacing:-47.310593pt;}
.ws2d{word-spacing:-47.183071pt;}
.ws45{word-spacing:-46.736745pt;}
.ws30{word-spacing:-46.481701pt;}
.ws48{word-spacing:-46.290418pt;}
.ws20{word-spacing:-46.162896pt;}
.ws2a{word-spacing:-46.035375pt;}
.ws19{word-spacing:-45.844092pt;}
.ws6a{word-spacing:-45.780331pt;}
.ws57{word-spacing:-45.397766pt;}
.ws1f{word-spacing:-45.270244pt;}
.ws53{word-spacing:-45.206483pt;}
.ws5d{word-spacing:-45.078961pt;}
.ws31{word-spacing:-45.015200pt;}
.ws3b{word-spacing:-44.823917pt;}
.ws49{word-spacing:-44.696396pt;}
.ws56{word-spacing:-44.632635pt;}
.ws4d{word-spacing:-44.313830pt;}
.ws39{word-spacing:-44.250069pt;}
.ws50{word-spacing:-44.122547pt;}
.ws46{word-spacing:-44.058787pt;}
.ws78{word-spacing:-43.484938pt;}
.ws42{word-spacing:-43.421177pt;}
.ws8{word-spacing:-43.357417pt;}
.ws13{word-spacing:-43.293656pt;}
.ws24{word-spacing:-43.229895pt;}
.wsb{word-spacing:-43.166134pt;}
.wse{word-spacing:-43.102373pt;}
.ws2f{word-spacing:-43.038612pt;}
.ws79{word-spacing:-42.976037pt;}
.ws2e{word-spacing:-42.975377pt;}
.ws4{word-spacing:-42.974851pt;}
.ws1b{word-spacing:-42.971599pt;}
.ws1a{word-spacing:-42.911090pt;}
.ws3f{word-spacing:-42.847329pt;}
.ws1e{word-spacing:-42.783568pt;}
.ws9{word-spacing:-42.719807pt;}
.wsf{word-spacing:-42.656047pt;}
.ws2b{word-spacing:-42.592286pt;}
.ws27{word-spacing:-42.528525pt;}
.ws23{word-spacing:-42.507253pt;}
.ws15{word-spacing:-42.464764pt;}
.ws4c{word-spacing:-42.337242pt;}
.ws73{word-spacing:-42.273481pt;}
.ws3a{word-spacing:-42.209720pt;}
.ws4f{word-spacing:-42.145959pt;}
.ws6f{word-spacing:-42.018437pt;}
.ws41{word-spacing:-41.954677pt;}
.ws68{word-spacing:-41.890916pt;}
.ws18{word-spacing:-41.827155pt;}
.ws26{word-spacing:-41.763394pt;}
.ws14{word-spacing:-41.699633pt;}
.ws44{word-spacing:-41.572111pt;}
.ws51{word-spacing:-41.508350pt;}
.wsd{word-spacing:-41.444589pt;}
.ws17{word-spacing:-41.380828pt;}
.ws6b{word-spacing:-41.317068pt;}
.ws5f{word-spacing:-41.253307pt;}
.ws74{word-spacing:-41.189546pt;}
.ws59{word-spacing:-41.062024pt;}
.ws3e{word-spacing:-40.998263pt;}
.ws61{word-spacing:-40.870741pt;}
.ws3d{word-spacing:-40.806980pt;}
.ws70{word-spacing:-40.743219pt;}
.ws4a{word-spacing:-40.551937pt;}
.ws65{word-spacing:-40.424415pt;}
.ws34{word-spacing:-40.296893pt;}
.ws5e{word-spacing:-40.233132pt;}
.ws43{word-spacing:-40.169371pt;}
.ws32{word-spacing:-40.105610pt;}
.ws63{word-spacing:-40.041849pt;}
.ws64{word-spacing:-39.978088pt;}
.ws10{word-spacing:-39.850567pt;}
.ws2c{word-spacing:-39.531762pt;}
.wsc{word-spacing:-39.404240pt;}
.ws52{word-spacing:-39.085436pt;}
.ws4b{word-spacing:-38.957914pt;}
.wsa{word-spacing:-38.702870pt;}
.ws47{word-spacing:-38.639109pt;}
.ws4e{word-spacing:-38.575349pt;}
.ws16{word-spacing:-38.447827pt;}
.ws72{word-spacing:-38.384066pt;}
.ws55{word-spacing:-38.320305pt;}
.ws6d{word-spacing:-38.256544pt;}
.ws69{word-spacing:-38.192783pt;}
.ws6c{word-spacing:-38.129022pt;}
.ws40{word-spacing:-38.001500pt;}
.ws25{word-spacing:-37.937739pt;}
.ws22{word-spacing:-37.810218pt;}
.ws1c{word-spacing:-37.555174pt;}
.ws35{word-spacing:-37.491413pt;}
.ws6e{word-spacing:-37.236369pt;}
.ws60{word-spacing:-37.045087pt;}
.ws21{word-spacing:-36.917565pt;}
.ws3c{word-spacing:-36.598760pt;}
.ws66{word-spacing:-36.279956pt;}
.ws37{word-spacing:-36.216195pt;}
.ws33{word-spacing:-36.088673pt;}
.ws1d{word-spacing:-36.024912pt;}
.ws54{word-spacing:-35.897390pt;}
.ws58{word-spacing:-35.514825pt;}
.ws38{word-spacing:-35.259781pt;}
.ws62{word-spacing:-34.940977pt;}
.ws29{word-spacing:-34.622172pt;}
.ws77{word-spacing:-34.239607pt;}
.ws67{word-spacing:-34.175846pt;}
.ws76{word-spacing:-33.665759pt;}
.ws75{word-spacing:-31.434127pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws6{word-spacing:-23.699904pt;}
.ws2{word-spacing:-7.523784pt;}
.ws11{word-spacing:0.000000pt;}
._4{margin-left:-7.192228pt;}
._11{margin-left:-5.840490pt;}
._6{margin-left:-4.888335pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._8{width:1.037178pt;}
._5{width:2.371905pt;}
._7{width:3.570860pt;}
._16{width:4.548268pt;}
._c{width:5.661966pt;}
._13{width:10.996628pt;}
._e{width:15.243106pt;}
._d{width:17.134678pt;}
._10{width:18.409899pt;}
._2{width:20.020916pt;}
._9{width:21.763714pt;}
._a{width:22.953924pt;}
._14{width:24.105872pt;}
._b{width:24.998524pt;}
._f{width:26.762578pt;}
._12{width:29.147235pt;}
._15{width:31.878189pt;}
.fs0{font-size:42.507253pt;}
.fs3{font-size:44.632587pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:38.689333pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.y10e{bottom:95.180000pt;}
.y139{bottom:95.354667pt;}
.y3c{bottom:95.686667pt;}
.y6c{bottom:98.010667pt;}
.ya3{bottom:101.000000pt;}
.yf6{bottom:105.268000pt;}
.yc9{bottom:105.981333pt;}
.yac{bottom:108.970667pt;}
.y125{bottom:112.954667pt;}
.y51{bottom:113.950667pt;}
.y99{bottom:114.284000pt;}
.y1e{bottom:119.981333pt;}
.y138{bottom:124.246667pt;}
.y3b{bottom:124.578667pt;}
.ydd{bottom:125.906667pt;}
.ya2{bottom:129.892000pt;}
.y10d{bottom:132.042667pt;}
.yf5{bottom:134.158667pt;}
.y6b{bottom:134.873333pt;}
.yab{bottom:137.861333pt;}
.y124{bottom:141.846667pt;}
.y50{bottom:142.842667pt;}
.y98{bottom:143.174667pt;}
.y137{bottom:153.137333pt;}
.y3a{bottom:153.469333pt;}
.ydc{bottom:154.798667pt;}
.y1d{bottom:156.844000pt;}
.ya1{bottom:158.782667pt;}
.y10c{bottom:160.933333pt;}
.yf4{bottom:163.050667pt;}
.y6a{bottom:163.764000pt;}
.y7f{bottom:164.096000pt;}
.yaa{bottom:166.753333pt;}
.y4f{bottom:171.734667pt;}
.y97{bottom:172.066667pt;}
.y123{bottom:178.708000pt;}
.yb9{bottom:179.705333pt;}
.y39{bottom:182.361333pt;}
.ydb{bottom:183.689333pt;}
.y1c{bottom:185.736000pt;}
.ya0{bottom:187.674667pt;}
.y10b{bottom:189.825333pt;}
.y136{bottom:190.000000pt;}
.ye9{bottom:190.332000pt;}
.yf3{bottom:191.942667pt;}
.y69{bottom:192.656000pt;}
.y7e{bottom:192.988000pt;}
.ya9{bottom:195.645333pt;}
.y96{bottom:200.958667pt;}
.y4e{bottom:208.596000pt;}
.y38{bottom:211.253333pt;}
.yda{bottom:212.581333pt;}
.y1b{bottom:214.626667pt;}
.y122{bottom:215.570667pt;}
.y9f{bottom:216.566667pt;}
.y135{bottom:218.890667pt;}
.ye8{bottom:219.222667pt;}
.yf2{bottom:220.834667pt;}
.yc8{bottom:221.548000pt;}
.y7d{bottom:221.880000pt;}
.y68{bottom:224.204000pt;}
.ya8{bottom:224.536000pt;}
.y10a{bottom:226.686667pt;}
.y95{bottom:229.850667pt;}
.yb8{bottom:237.488000pt;}
.y37{bottom:240.145333pt;}
.y1a{bottom:243.518667pt;}
.yd9{bottom:244.129333pt;}
.y4d{bottom:245.458667pt;}
.y134{bottom:247.782667pt;}
.ye7{bottom:248.114667pt;}
.yf1{bottom:249.725333pt;}
.yc7{bottom:250.440000pt;}
.y7c{bottom:250.772000pt;}
.y121{bottom:252.432000pt;}
.y67{bottom:253.096000pt;}
.ya7{bottom:253.428000pt;}
.y94{bottom:258.741333pt;}
.y109{bottom:263.549333pt;}
.yb7{bottom:266.380000pt;}
.y36{bottom:269.036000pt;}
.y19{bottom:272.410667pt;}
.yd8{bottom:273.021333pt;}
.y4c{bottom:274.349333pt;}
.y133{bottom:276.674667pt;}
.ye6{bottom:277.006667pt;}
.yf0{bottom:278.617333pt;}
.y66{bottom:281.988000pt;}
.y7b{bottom:282.320000pt;}
.y93{bottom:287.633333pt;}
.y120{bottom:289.293333pt;}
.yb6{bottom:295.272000pt;}
.y35{bottom:297.928000pt;}
.y108{bottom:300.410667pt;}
.y18{bottom:301.302667pt;}
.yd7{bottom:301.913333pt;}
.y4b{bottom:303.241333pt;}
.ye5{bottom:305.898667pt;}
.y65{bottom:310.880000pt;}
.y7a{bottom:311.212000pt;}
.y132{bottom:313.536000pt;}
.yef{bottom:315.520000pt;}
.y92{bottom:316.525333pt;}
.y11f{bottom:318.185333pt;}
.y34{bottom:326.820000pt;}
.y17{bottom:330.193333pt;}
.yd6{bottom:330.805333pt;}
.yb5{bottom:332.133333pt;}
.ye4{bottom:334.789333pt;}
.y107{bottom:337.272000pt;}
.y64{bottom:339.770667pt;}
.y4a{bottom:340.102667pt;}
.yc6{bottom:342.428000pt;}
.y91{bottom:345.416000pt;}
.ya6{bottom:348.073333pt;}
.y11e{bottom:355.046667pt;}
.y33{bottom:355.712000pt;}
.y16{bottom:359.085333pt;}
.yee{bottom:360.693333pt;}
.yb4{bottom:361.025333pt;}
.yd5{bottom:362.353333pt;}
.ye3{bottom:363.681333pt;}
.y49{bottom:368.994667pt;}
.yc5{bottom:371.320000pt;}
.y106{bottom:374.134667pt;}
.y90{bottom:374.308000pt;}
.y63{bottom:376.633333pt;}
.ya5{bottom:376.965333pt;}
.y131{bottom:379.289333pt;}
.y15{bottom:387.977333pt;}
.yed{bottom:389.584000pt;}
.yb3{bottom:389.916000pt;}
.yd4{bottom:391.245333pt;}
.y11d{bottom:391.909333pt;}
.y32{bottom:392.573333pt;}
.y48{bottom:397.886667pt;}
.y79{bottom:400.542667pt;}
.yc4{bottom:402.868000pt;}
.y8f{bottom:403.200000pt;}
.y62{bottom:405.524000pt;}
.ya4{bottom:405.857333pt;}
.y130{bottom:408.181333pt;}
.y105{bottom:410.996000pt;}
.y14{bottom:416.869333pt;}
.yb2{bottom:418.808000pt;}
.yd3{bottom:420.136000pt;}
.y31{bottom:421.465333pt;}
.ye2{bottom:424.121333pt;}
.yec{bottom:426.446667pt;}
.y47{bottom:426.778667pt;}
.y11c{bottom:428.770667pt;}
.y78{bottom:429.434667pt;}
.yc3{bottom:431.760000pt;}
.y8e{bottom:432.092000pt;}
.y61{bottom:434.416000pt;}
.y9e{bottom:434.748000pt;}
.y12f{bottom:445.042667pt;}
.yb1{bottom:447.700000pt;}
.y104{bottom:447.857333pt;}
.yd2{bottom:449.028000pt;}
.y30{bottom:450.356000pt;}
.ye1{bottom:453.013333pt;}
.y13{bottom:453.730667pt;}
.yeb{bottom:455.337333pt;}
.y46{bottom:455.669333pt;}
.y77{bottom:458.326667pt;}
.y8d{bottom:460.982667pt;}
.y60{bottom:463.308000pt;}
.y9d{bottom:463.640000pt;}
.y11b{bottom:465.632000pt;}
.y12e{bottom:473.934667pt;}
.yb0{bottom:476.592000pt;}
.y2f{bottom:479.248000pt;}
.yd1{bottom:480.576000pt;}
.ye0{bottom:481.905333pt;}
.y45{bottom:484.561333pt;}
.y103{bottom:484.720000pt;}
.y76{bottom:489.874667pt;}
.y5f{bottom:492.200000pt;}
.y9c{bottom:492.532000pt;}
.yc2{bottom:494.856000pt;}
.y12{bottom:496.378667pt;}
.y8c{bottom:497.845333pt;}
.y11a{bottom:502.494667pt;}
.y12d{bottom:502.826667pt;}
.yaf{bottom:505.482667pt;}
.y2e{bottom:508.140000pt;}
.yd0{bottom:509.468000pt;}
.ydf{bottom:510.796000pt;}
.y44{bottom:513.453333pt;}
.y75{bottom:518.766667pt;}
.y9b{bottom:521.422667pt;}
.y102{bottom:521.581333pt;}
.y11{bottom:523.370667pt;}
.y8b{bottom:526.737333pt;}
.y5e{bottom:529.061333pt;}
.y119{bottom:531.385333pt;}
.yc1{bottom:531.718667pt;}
.ycf{bottom:538.360000pt;}
.y2d{bottom:539.688000pt;}
.yae{bottom:542.345333pt;}
.y10{bottom:545.293333pt;}
.y74{bottom:547.658667pt;}
.y43{bottom:550.314667pt;}
.y8a{bottom:555.628000pt;}
.y101{bottom:558.442667pt;}
.y118{bottom:560.277333pt;}
.y12c{bottom:563.266667pt;}
.y5d{bottom:565.922667pt;}
.yce{bottom:567.252000pt;}
.yc0{bottom:568.580000pt;}
.yad{bottom:571.236000pt;}
.y73{bottom:576.549333pt;}
.yf{bottom:577.192000pt;}
.y2c{bottom:579.206667pt;}
.y89{bottom:584.520000pt;}
.y100{bottom:587.334667pt;}
.y5c{bottom:594.814667pt;}
.y117{bottom:597.140000pt;}
.ybf{bottom:597.472000pt;}
.yde{bottom:600.128000pt;}
.y12b{bottom:602.785333pt;}
.ycd{bottom:604.113333pt;}
.y42{bottom:608.098667pt;}
.ye{bottom:609.092000pt;}
.y88{bottom:613.412000pt;}
.y2b{bottom:616.068000pt;}
.y5b{bottom:623.706667pt;}
.yff{bottom:624.196000pt;}
.y116{bottom:626.030667pt;}
.ybe{bottom:629.020000pt;}
.y12a{bottom:631.676000pt;}
.ycc{bottom:633.005333pt;}
.yd{bottom:636.530667pt;}
.y41{bottom:636.989333pt;}
.y87{bottom:642.304000pt;}
.y2a{bottom:644.960000pt;}
.yea{bottom:652.598667pt;}
.yfe{bottom:653.088000pt;}
.ybd{bottom:657.912000pt;}
.y5a{bottom:660.568000pt;}
.ycb{bottom:661.896000pt;}
.y115{bottom:662.893333pt;}
.y40{bottom:665.881333pt;}
.yc{bottom:668.429333pt;}
.y72{bottom:668.538667pt;}
.y86{bottom:671.194667pt;}
.y29{bottom:673.852000pt;}
.y59{bottom:689.460000pt;}
.yfd{bottom:689.949333pt;}
.yca{bottom:690.788000pt;}
.y3f{bottom:694.773333pt;}
.yb{bottom:697.394667pt;}
.y71{bottom:697.429333pt;}
.y114{bottom:699.754667pt;}
.y28{bottom:702.744000pt;}
.y85{bottom:708.057333pt;}
.ybc{bottom:718.352000pt;}
.y58{bottom:721.008000pt;}
.y3e{bottom:723.665333pt;}
.ya{bottom:724.833333pt;}
.y70{bottom:726.321333pt;}
.yfc{bottom:726.812000pt;}
.y27{bottom:731.634667pt;}
.y113{bottom:736.616000pt;}
.y84{bottom:736.948000pt;}
.y129{bottom:747.242667pt;}
.y57{bottom:749.900000pt;}
.y13a{bottom:752.556000pt;}
.y9{bottom:756.732000pt;}
.y6f{bottom:757.869333pt;}
.y26{bottom:760.526667pt;}
.yfb{bottom:763.673333pt;}
.y83{bottom:765.840000pt;}
.y112{bottom:773.478667pt;}
.y128{bottom:776.134667pt;}
.y56{bottom:778.792000pt;}
.ybb{bottom:781.448000pt;}
.y8{bottom:785.698667pt;}
.y6e{bottom:786.761333pt;}
.y25{bottom:789.418667pt;}
.y82{bottom:794.732000pt;}
.yfa{bottom:800.534667pt;}
.y111{bottom:802.369333pt;}
.y127{bottom:805.026667pt;}
.yba{bottom:810.340000pt;}
.y55{bottom:815.653333pt;}
.y24{bottom:818.309333pt;}
.y81{bottom:823.624000pt;}
.y7{bottom:826.280000pt;}
.y110{bottom:831.261333pt;}
.y126{bottom:836.574667pt;}
.y23{bottom:847.201333pt;}
.y54{bottom:852.514667pt;}
.y9a{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.yf9{bottom:866.028000pt;}
.y10f{bottom:868.122667pt;}
.y22{bottom:876.093333pt;}
.y53{bottom:881.406667pt;}
.y6d{bottom:884.064000pt;}
.yf8{bottom:894.920000pt;}
.y21{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y80{bottom:910.298667pt;}
.y52{bottom:912.954667pt;}
.yf7{bottom:931.822667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h4{height:34.556954pt;}
.h5{height:44.887678pt;}
.h2{height:53.865199pt;}
.h6{height:57.448577pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:92.670667pt;}
.x10{left:94.488000pt;}
.x6{left:95.702667pt;}
.x4{left:100.178667pt;}
.x15{left:104.292000pt;}
.x14{left:110.349333pt;}
.x17{left:112.485333pt;}
.x12{left:114.222667pt;}
.x5{left:126.748000pt;}
.x13{left:134.338667pt;}
.x1a{left:140.272000pt;}
.x19{left:141.293333pt;}
.x18{left:142.488000pt;}
.x7{left:183.329333pt;}
.xf{left:304.748000pt;}
.xe{left:318.642667pt;}
.xc{left:434.285333pt;}
.xa{left:458.084000pt;}
.x8{left:472.148000pt;}
.x9{left:542.726667pt;}
.x3{left:547.794667pt;}
.xd{left:556.349333pt;}
.xb{left:575.089333pt;}
.x2{left:576.689333pt;}
.x1{left:615.817333pt;}
.x11{left:705.890667pt;}
}




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