
    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_5a99cfd26e587c62671e16f7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.985000;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_2ad982e951fc3a049103e24f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.116000;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_1e42221ce75dd1066a0f918f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739000;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_e97a7436b202c1d676d4db2d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.116000;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);}
.m24{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);}
.m16{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);}
.mf{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);}
.ma{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);}
.m21{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);}
.m3{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);}
.m26{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);}
.m5{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);}
.mb{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);}
.m2{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);}
.m1b{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);}
.m12{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);}
.m23{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);}
.me{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);}
.m28{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);}
.m17{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);}
.m13{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1e{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);}
.m19{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);}
.m1d{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);}
.m27{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);}
.m14{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);}
.mc{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);}
.md{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);}
.m6{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);}
.m1a{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);}
.m18{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m1c{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);}
.m10{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);}
.m22{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);}
.m29{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);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-2.988000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.902000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.993422px;}
.ls0{letter-spacing:10.759560px;}
.ls4{letter-spacing:46.622412px;}
.ls3{letter-spacing:46.628412px;}
.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;}
}
.wse{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.050809px;}
.ws3{word-spacing:-0.044832px;}
.wsa{word-spacing:-0.038854px;}
.ws31{word-spacing:0.000000px;}
.ws4{word-spacing:5.003195px;}
.ws5{word-spacing:5.218387px;}
.ws51{word-spacing:7.711104px;}
.ws54{word-spacing:7.845600px;}
.wsaf{word-spacing:8.114592px;}
.wsa3{word-spacing:8.293920px;}
.wsa1{word-spacing:8.428416px;}
.ws90{word-spacing:8.473248px;}
.ws2a{word-spacing:8.607744px;}
.ws98{word-spacing:8.652576px;}
.ws92{word-spacing:8.697408px;}
.wsa9{word-spacing:8.742240px;}
.ws7a{word-spacing:8.787072px;}
.ws89{word-spacing:8.876736px;}
.wsac{word-spacing:8.921568px;}
.ws4c{word-spacing:8.966400px;}
.ws85{word-spacing:9.011232px;}
.ws4d{word-spacing:9.056064px;}
.ws7b{word-spacing:9.145728px;}
.ws64{word-spacing:9.190560px;}
.wsa8{word-spacing:9.235392px;}
.ws99{word-spacing:9.280224px;}
.wsae{word-spacing:9.325056px;}
.ws7f{word-spacing:9.369888px;}
.ws46{word-spacing:9.414720px;}
.ws86{word-spacing:9.459552px;}
.ws42{word-spacing:9.549216px;}
.ws2d{word-spacing:9.594048px;}
.ws30{word-spacing:9.596987px;}
.ws95{word-spacing:9.638880px;}
.ws13{word-spacing:9.653748px;}
.ws2f{word-spacing:9.674696px;}
.ws35{word-spacing:9.683712px;}
.ws55{word-spacing:9.728544px;}
.ws2b{word-spacing:9.818208px;}
.ws29{word-spacing:9.907872px;}
.ws9c{word-spacing:9.952704px;}
.wsa0{word-spacing:10.087200px;}
.ws39{word-spacing:10.132032px;}
.ws3a{word-spacing:10.176864px;}
.ws26{word-spacing:10.221696px;}
.ws49{word-spacing:10.266528px;}
.ws28{word-spacing:10.311360px;}
.ws40{word-spacing:10.356192px;}
.ws36{word-spacing:10.401024px;}
.ws7c{word-spacing:10.445856px;}
.ws87{word-spacing:10.490688px;}
.ws82{word-spacing:10.535520px;}
.ws23{word-spacing:10.625184px;}
.ws93{word-spacing:10.670016px;}
.ws6c{word-spacing:10.714848px;}
.ws80{word-spacing:10.759680px;}
.ws22{word-spacing:10.804512px;}
.ws37{word-spacing:10.849344px;}
.ws20{word-spacing:10.894176px;}
.ws1e{word-spacing:10.939008px;}
.ws24{word-spacing:10.983840px;}
.ws2c{word-spacing:11.028672px;}
.ws2{word-spacing:11.073504px;}
.ws1b{word-spacing:11.118336px;}
.ws25{word-spacing:11.163168px;}
.ws44{word-spacing:11.208000px;}
.ws21{word-spacing:11.252832px;}
.ws50{word-spacing:11.297664px;}
.ws4b{word-spacing:11.342496px;}
.ws27{word-spacing:11.387328px;}
.ws48{word-spacing:11.432160px;}
.ws33{word-spacing:11.516474px;}
.ws4f{word-spacing:11.521824px;}
.ws1c{word-spacing:11.611488px;}
.ws96{word-spacing:11.656320px;}
.ws0{word-spacing:11.668226px;}
.ws4e{word-spacing:11.701152px;}
.ws3c{word-spacing:11.790816px;}
.ws1{word-spacing:11.811688px;}
.ws91{word-spacing:11.835648px;}
.ws3f{word-spacing:11.880480px;}
.ws8c{word-spacing:11.925312px;}
.ws38{word-spacing:11.970144px;}
.ws9e{word-spacing:12.014976px;}
.ws11{word-spacing:12.041780px;}
.ws8d{word-spacing:12.059808px;}
.ws3e{word-spacing:12.149472px;}
.wsf{word-spacing:12.194208px;}
.ws9b{word-spacing:12.328800px;}
.ws8e{word-spacing:12.373632px;}
.ws18{word-spacing:12.397445px;}
.ws83{word-spacing:12.418464px;}
.ws52{word-spacing:12.508128px;}
.ws19{word-spacing:12.549872px;}
.ws94{word-spacing:12.552960px;}
.ws1f{word-spacing:12.597792px;}
.ws63{word-spacing:12.642624px;}
.ws10{word-spacing:12.651491px;}
.ws12{word-spacing:12.702300px;}
.ws1d{word-spacing:12.732288px;}
.ws14{word-spacing:12.753109px;}
.wsd{word-spacing:12.762288px;}
.wsc{word-spacing:12.765168px;}
.wsb{word-spacing:12.769344px;}
.ws79{word-spacing:12.777120px;}
.ws17{word-spacing:12.803918px;}
.ws9f{word-spacing:12.866784px;}
.ws58{word-spacing:12.911616px;}
.ws4a{word-spacing:12.956448px;}
.ws8a{word-spacing:13.001280px;}
.ws41{word-spacing:13.046112px;}
.ws8f{word-spacing:13.090944px;}
.ws5d{word-spacing:13.180608px;}
.ws78{word-spacing:13.225440px;}
.ws9a{word-spacing:13.270272px;}
.ws9{word-spacing:13.288205px;}
.ws53{word-spacing:13.315104px;}
.ws6a{word-spacing:13.449600px;}
.ws81{word-spacing:13.539264px;}
.ws7d{word-spacing:13.584096px;}
.ws3b{word-spacing:13.718592px;}
.ws77{word-spacing:13.763424px;}
.ws15{word-spacing:13.769293px;}
.ws43{word-spacing:13.853088px;}
.ws2e{word-spacing:13.897920px;}
.ws5c{word-spacing:14.077248px;}
.ws84{word-spacing:14.122080px;}
.ws57{word-spacing:14.166912px;}
.ws75{word-spacing:14.256576px;}
.ws3d{word-spacing:14.301408px;}
.ws8b{word-spacing:14.346240px;}
.ws47{word-spacing:14.435904px;}
.ws76{word-spacing:14.525568px;}
.ws56{word-spacing:14.585246px;}
.ws6d{word-spacing:14.839392px;}
.ws7e{word-spacing:14.884224px;}
.ws97{word-spacing:14.973888px;}
.ws16{word-spacing:15.090332px;}
.ws34{word-spacing:15.108384px;}
.ws9d{word-spacing:15.153216px;}
.ws45{word-spacing:15.198048px;}
.ws72{word-spacing:15.242880px;}
.wsab{word-spacing:15.467040px;}
.ws69{word-spacing:15.511872px;}
.ws62{word-spacing:15.646368px;}
.wsa2{word-spacing:15.691200px;}
.wsb0{word-spacing:16.139520px;}
.ws6f{word-spacing:16.318848px;}
.ws6e{word-spacing:16.363680px;}
.ws74{word-spacing:16.543008px;}
.ws61{word-spacing:16.812000px;}
.ws70{word-spacing:17.798304px;}
.ws73{word-spacing:18.112007px;}
.ws6b{word-spacing:18.739776px;}
.ws7{word-spacing:19.193975px;}
.ws65{word-spacing:19.277760px;}
.ws60{word-spacing:19.412256px;}
.ws66{word-spacing:19.457088px;}
.wsad{word-spacing:19.501920px;}
.ws71{word-spacing:20.174400px;}
.ws5b{word-spacing:21.519360px;}
.ws68{word-spacing:23.716128px;}
.wsaa{word-spacing:23.850624px;}
.ws67{word-spacing:25.374912px;}
.ws5e{word-spacing:25.957728px;}
.ws6{word-spacing:26.253619px;}
.wsa4{word-spacing:26.764704px;}
.ws5a{word-spacing:27.885504px;}
.ws5f{word-spacing:28.199328px;}
.ws8{word-spacing:30.404064px;}
.ws59{word-spacing:34.789632px;}
.ws32{word-spacing:46.575610px;}
.ws88{word-spacing:46.580495px;}
.wsa5{word-spacing:50.884320px;}
.wsa7{word-spacing:63.213120px;}
.wsa6{word-spacing:90.560640px;}
._3{margin-left:-11.512729px;}
._1a{margin-left:-6.993792px;}
._19{margin-left:-4.841856px;}
._8{margin-left:-3.759881px;}
._2{margin-left:-2.734752px;}
._0{margin-left:-1.386797px;}
._d{width:1.034236px;}
._1d{width:2.555424px;}
._22{width:3.945216px;}
._18{width:5.200512px;}
._15{width:8.825915px;}
._11{width:10.266528px;}
._9{width:11.802683px;}
._1{width:12.956448px;}
._a{width:14.074148px;}
._6{width:15.221849px;}
._f{width:16.405517px;}
._b{width:17.753472px;}
._10{width:19.367424px;}
._17{width:20.936544px;}
._7{width:22.209625px;}
._c{width:23.417346px;}
._12{width:24.968429px;}
._e{width:26.137056px;}
._21{width:27.437184px;}
._16{width:29.140800px;}
._4{width:31.203072px;}
._13{width:32.455373px;}
._1f{width:35.862605px;}
._14{width:37.614048px;}
._23{width:41.365074px;}
._1b{width:43.666368px;}
._5{width:45.780579px;}
._20{width:46.957141px;}
._1c{width:61.868160px;}
._1e{width:73.658976px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(20,86,169);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:22.416000px;}
.fs9{font-size:38.854200px;}
.fs7{font-size:41.842800px;}
.fs1{font-size:44.832000px;}
.fsc{font-size:46.625400px;}
.fs0{font-size:47.820600px;}
.fsb{font-size:50.809200px;}
.fs2{font-size:53.797800px;}
.fs8{font-size:53.798400px;}
.fsa{font-size:59.775600px;}
.fs6{font-size:64.754400px;}
.fs4{font-size:77.708400px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y40{bottom:50.809500px;}
.y82{bottom:95.641500px;}
.y3f{bottom:97.714500px;}
.ybd{bottom:97.953000px;}
.y81{bottom:111.333000px;}
.y3e{bottom:111.912000px;}
.ybc{bottom:113.644500px;}
.y80{bottom:127.023000px;}
.ybb{bottom:129.336000px;}
.y7f{bottom:142.714500px;}
.yba{bottom:145.026000px;}
.y9e{bottom:158.406000px;}
.yb9{bottom:160.717500px;}
.y7e{bottom:168.043500px;}
.y2c{bottom:168.469500px;}
.y9d{bottom:174.097500px;}
.y3d{bottom:174.166500px;}
.yb8{bottom:176.409000px;}
.y2b{bottom:184.161000px;}
.y9c{bottom:189.789000px;}
.y3c{bottom:189.856500px;}
.yb7{bottom:192.100500px;}
.y7d{bottom:193.074000px;}
.y2a{bottom:199.852500px;}
.y9b{bottom:205.479000px;}
.y3b{bottom:205.548000px;}
.yb6{bottom:207.790500px;}
.y29{bottom:215.544000px;}
.y7c{bottom:220.644000px;}
.y9a{bottom:221.170500px;}
.y3a{bottom:221.239500px;}
.yb5{bottom:223.482000px;}
.y28{bottom:231.234000px;}
.y7b{bottom:236.335500px;}
.y99{bottom:236.862000px;}
.y39{bottom:236.931000px;}
.yb4{bottom:239.173500px;}
.y27{bottom:246.925500px;}
.y7a{bottom:252.027000px;}
.y98{bottom:252.553500px;}
.y38{bottom:252.622500px;}
.yb3{bottom:254.865000px;}
.y26{bottom:262.617000px;}
.y79{bottom:267.718500px;}
.y97{bottom:268.243500px;}
.y37{bottom:268.312500px;}
.yb2{bottom:270.555000px;}
.y25{bottom:278.308500px;}
.y78{bottom:283.410000px;}
.y96{bottom:283.935000px;}
.y36{bottom:284.004000px;}
.yb1{bottom:286.246500px;}
.y24{bottom:293.998500px;}
.y77{bottom:299.100000px;}
.y95{bottom:299.626500px;}
.y35{bottom:299.695500px;}
.yb0{bottom:301.938000px;}
.y23{bottom:309.690000px;}
.y76{bottom:314.791500px;}
.y94{bottom:315.318000px;}
.y34{bottom:315.387000px;}
.yaf{bottom:317.629500px;}
.y22{bottom:325.381500px;}
.y75{bottom:330.483000px;}
.y93{bottom:331.008000px;}
.y33{bottom:331.077000px;}
.yae{bottom:333.321000px;}
.y21{bottom:341.073000px;}
.y74{bottom:346.174500px;}
.y92{bottom:346.699500px;}
.y32{bottom:346.768500px;}
.yad{bottom:349.011000px;}
.y20{bottom:356.763000px;}
.y73{bottom:361.864500px;}
.y91{bottom:362.391000px;}
.y31{bottom:362.460000px;}
.yac{bottom:364.702500px;}
.y1f{bottom:372.454500px;}
.y72{bottom:377.556000px;}
.y90{bottom:378.082500px;}
.y30{bottom:378.151500px;}
.yab{bottom:380.394000px;}
.y1e{bottom:388.146000px;}
.y71{bottom:393.247500px;}
.ya3{bottom:393.774000px;}
.y2f{bottom:393.843000px;}
.yaa{bottom:396.085500px;}
.y108{bottom:399.582000px;}
.y1d{bottom:403.837500px;}
.y8f{bottom:404.356500px;}
.y70{bottom:408.939000px;}
.ya2{bottom:409.464000px;}
.y2e{bottom:409.533000px;}
.ya9{bottom:411.775500px;}
.y1c{bottom:419.529000px;}
.y6f{bottom:424.630500px;}
.ya1{bottom:425.155500px;}
.y2d{bottom:425.224500px;}
.y107{bottom:426.312000px;}
.ya8{bottom:427.467000px;}
.y8e{bottom:430.333500px;}
.y6e{bottom:440.320500px;}
.ye4{bottom:440.847000px;}
.y1b{bottom:440.916000px;}
.y106{bottom:442.002000px;}
.ya7{bottom:443.158500px;}
.ya0{bottom:446.112000px;}
.y6d{bottom:456.012000px;}
.ye3{bottom:456.538500px;}
.y105{bottom:457.693500px;}
.y8d{bottom:458.850000px;}
.y9f{bottom:464.044500px;}
.y6c{bottom:471.703500px;}
.ye2{bottom:472.228500px;}
.y104{bottom:473.385000px;}
.y8c{bottom:474.540000px;}
.y6b{bottom:487.395000px;}
.ye1{bottom:487.920000px;}
.y103{bottom:489.076500px;}
.y8b{bottom:490.231500px;}
.y1a{bottom:502.933500px;}
.y6a{bottom:503.085000px;}
.ye0{bottom:503.611500px;}
.y102{bottom:504.768000px;}
.y8a{bottom:505.923000px;}
.y69{bottom:518.776500px;}
.ydf{bottom:519.303000px;}
.y101{bottom:520.458000px;}
.y89{bottom:521.614500px;}
.y19{bottom:530.580000px;}
.y68{bottom:534.468000px;}
.yde{bottom:534.994500px;}
.y100{bottom:536.149500px;}
.y88{bottom:537.306000px;}
.y18{bottom:547.018500px;}
.y67{bottom:550.159500px;}
.ydd{bottom:550.684500px;}
.yff{bottom:551.841000px;}
.y87{bottom:552.996000px;}
.y17{bottom:563.457000px;}
.y66{bottom:565.849500px;}
.ydc{bottom:566.376000px;}
.yfe{bottom:567.532500px;}
.y86{bottom:568.687500px;}
.y16{bottom:579.895500px;}
.y65{bottom:581.541000px;}
.ydb{bottom:582.067500px;}
.yfd{bottom:583.222500px;}
.y85{bottom:584.379000px;}
.y15{bottom:596.334000px;}
.yda{bottom:597.759000px;}
.yfc{bottom:598.914000px;}
.y84{bottom:600.070500px;}
.y64{bottom:603.882000px;}
.y14{bottom:612.772500px;}
.yd9{bottom:613.449000px;}
.yfb{bottom:614.605500px;}
.y83{bottom:615.760500px;}
.yd8{bottom:629.140500px;}
.y13{bottom:629.209500px;}
.yfa{bottom:630.297000px;}
.y63{bottom:631.452000px;}
.yd7{bottom:644.832000px;}
.y12{bottom:645.648000px;}
.yf9{bottom:645.987000px;}
.y62{bottom:647.143500px;}
.yd6{bottom:660.523500px;}
.yf8{bottom:661.678500px;}
.y11{bottom:662.086500px;}
.y61{bottom:662.835000px;}
.yd5{bottom:676.213500px;}
.yf7{bottom:677.370000px;}
.y10{bottom:678.525000px;}
.y60{bottom:678.526500px;}
.yd4{bottom:691.905000px;}
.yf6{bottom:693.061500px;}
.y5f{bottom:694.216500px;}
.yf{bottom:694.963500px;}
.yd3{bottom:707.596500px;}
.yf5{bottom:708.753000px;}
.y5e{bottom:709.908000px;}
.ye{bottom:711.402000px;}
.yd2{bottom:723.288000px;}
.yf4{bottom:724.443000px;}
.y5d{bottom:725.599500px;}
.yd{bottom:727.840500px;}
.yd1{bottom:738.979500px;}
.yf3{bottom:740.134500px;}
.y5c{bottom:741.291000px;}
.yc{bottom:751.003500px;}
.yd0{bottom:754.669500px;}
.yf2{bottom:755.826000px;}
.y5b{bottom:756.981000px;}
.ycf{bottom:770.361000px;}
.yf1{bottom:771.517500px;}
.y5a{bottom:772.672500px;}
.yce{bottom:786.052500px;}
.yf0{bottom:787.207500px;}
.y59{bottom:788.364000px;}
.ycd{bottom:801.744000px;}
.yb{bottom:801.813000px;}
.yef{bottom:802.899000px;}
.y58{bottom:804.055500px;}
.ycc{bottom:817.434000px;}
.yee{bottom:818.590500px;}
.y57{bottom:819.745500px;}
.ycb{bottom:833.125500px;}
.yed{bottom:834.282000px;}
.y56{bottom:835.437000px;}
.ya{bottom:842.910000px;}
.yca{bottom:848.817000px;}
.yec{bottom:849.972000px;}
.y55{bottom:851.128500px;}
.ya6{bottom:851.184000px;}
.yc9{bottom:864.508500px;}
.yeb{bottom:865.663500px;}
.y54{bottom:866.820000px;}
.y9{bottom:872.533500px;}
.yc8{bottom:880.200000px;}
.yea{bottom:881.355000px;}
.y53{bottom:882.511500px;}
.ya5{bottom:882.567000px;}
.yc7{bottom:895.890000px;}
.ye9{bottom:897.046500px;}
.y52{bottom:898.201500px;}
.ya4{bottom:898.258500px;}
.y8{bottom:904.179000px;}
.yc6{bottom:911.581500px;}
.ye8{bottom:912.738000px;}
.y51{bottom:913.893000px;}
.yc5{bottom:927.273000px;}
.ye7{bottom:928.428000px;}
.y50{bottom:929.584500px;}
.yc4{bottom:942.964500px;}
.ye6{bottom:944.119500px;}
.y4f{bottom:945.276000px;}
.y7{bottom:950.506500px;}
.yc3{bottom:958.654500px;}
.y4e{bottom:960.966000px;}
.ye5{bottom:965.619000px;}
.yc2{bottom:974.346000px;}
.y4d{bottom:976.657500px;}
.yc1{bottom:990.037500px;}
.y6{bottom:990.855000px;}
.y4c{bottom:992.349000px;}
.yc0{bottom:1005.729000px;}
.y4b{bottom:1008.040500px;}
.ybf{bottom:1021.419000px;}
.y4a{bottom:1023.732000px;}
.y49{bottom:1039.422000px;}
.y5{bottom:1043.158500px;}
.ybe{bottom:1045.738500px;}
.y48{bottom:1055.113500px;}
.y47{bottom:1070.805000px;}
.y4{bottom:1081.096500px;}
.y46{bottom:1086.496500px;}
.y45{bottom:1102.186500px;}
.y44{bottom:1117.878000px;}
.y3{bottom:1126.402500px;}
.y43{bottom:1133.569500px;}
.y2{bottom:1148.955000px;}
.y42{bottom:1149.261000px;}
.y1{bottom:1172.866500px;}
.y41{bottom:1215.760500px;}
.ha{height:34.580238px;}
.hd{height:35.994809px;}
.h2{height:36.917503px;}
.h9{height:37.240092px;}
.hf{height:39.224702px;}
.h4{height:39.900480px;}
.h10{height:40.122480px;}
.he{height:41.496606px;}
.h5{height:41.531902px;}
.h3{height:42.560334px;}
.hc{height:45.220188px;}
.hb{height:46.146763px;}
.h6{height:47.880042px;}
.h7{height:83.064730px;}
.h8{height:83.665416px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:81.237000px;}
.x35{left:82.864500px;}
.x34{left:84.231000px;}
.x32{left:86.238000px;}
.xa{left:99.586500px;}
.x33{left:102.867000px;}
.x36{left:104.917500px;}
.x14{left:112.473000px;}
.x15{left:118.939500px;}
.x16{left:121.198500px;}
.x1c{left:124.284000px;}
.x17{left:126.802500px;}
.x6{left:139.252500px;}
.xb{left:141.732000px;}
.xc{left:148.020000px;}
.x1a{left:161.590500px;}
.x1b{left:168.057000px;}
.x1f{left:181.978500px;}
.x7{left:186.570000px;}
.x20{left:192.502500px;}
.x8{left:196.527000px;}
.x18{left:199.411500px;}
.x19{left:206.170500px;}
.x3{left:218.850000px;}
.x4{left:223.086000px;}
.x1d{left:375.559500px;}
.x1e{left:384.033000px;}
.xd{left:398.065500px;}
.xe{left:404.587500px;}
.x1{left:458.241000px;}
.x5{left:459.906000px;}
.x30{left:464.670000px;}
.x2e{left:466.720500px;}
.x27{left:470.812500px;}
.x2f{left:481.119000px;}
.x37{left:483.058500px;}
.x29{left:490.402500px;}
.x26{left:564.270000px;}
.x2c{left:573.427500px;}
.x2d{left:584.130000px;}
.x2a{left:604.099500px;}
.x2b{left:614.791500px;}
.x31{left:645.432000px;}
.x13{left:647.460000px;}
.x21{left:661.665000px;}
.x22{left:672.424500px;}
.x25{left:677.458500px;}
.x28{left:688.197000px;}
.x11{left:691.915500px;}
.x12{left:698.370000px;}
.x23{left:704.709000px;}
.x24{left:715.411500px;}
.x9{left:786.718500px;}
.xf{left:800.856000px;}
.x10{left:807.324000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-2.656000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.024000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.660819pt;}
.ls0{letter-spacing:9.564053pt;}
.ls4{letter-spacing:41.442144pt;}
.ls3{letter-spacing:41.447477pt;}
.wse{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.045164pt;}
.ws3{word-spacing:-0.039851pt;}
.wsa{word-spacing:-0.034537pt;}
.ws31{word-spacing:0.000000pt;}
.ws4{word-spacing:4.447285pt;}
.ws5{word-spacing:4.638566pt;}
.ws51{word-spacing:6.854315pt;}
.ws54{word-spacing:6.973867pt;}
.wsaf{word-spacing:7.212971pt;}
.wsa3{word-spacing:7.372373pt;}
.wsa1{word-spacing:7.491925pt;}
.ws90{word-spacing:7.531776pt;}
.ws2a{word-spacing:7.651328pt;}
.ws98{word-spacing:7.691179pt;}
.ws92{word-spacing:7.731029pt;}
.wsa9{word-spacing:7.770880pt;}
.ws7a{word-spacing:7.810731pt;}
.ws89{word-spacing:7.890432pt;}
.wsac{word-spacing:7.930283pt;}
.ws4c{word-spacing:7.970133pt;}
.ws85{word-spacing:8.009984pt;}
.ws4d{word-spacing:8.049835pt;}
.ws7b{word-spacing:8.129536pt;}
.ws64{word-spacing:8.169387pt;}
.wsa8{word-spacing:8.209237pt;}
.ws99{word-spacing:8.249088pt;}
.wsae{word-spacing:8.288939pt;}
.ws7f{word-spacing:8.328789pt;}
.ws46{word-spacing:8.368640pt;}
.ws86{word-spacing:8.408491pt;}
.ws42{word-spacing:8.488192pt;}
.ws2d{word-spacing:8.528043pt;}
.ws30{word-spacing:8.530655pt;}
.ws95{word-spacing:8.567893pt;}
.ws13{word-spacing:8.581109pt;}
.ws2f{word-spacing:8.599730pt;}
.ws35{word-spacing:8.607744pt;}
.ws55{word-spacing:8.647595pt;}
.ws2b{word-spacing:8.727296pt;}
.ws29{word-spacing:8.806997pt;}
.ws9c{word-spacing:8.846848pt;}
.wsa0{word-spacing:8.966400pt;}
.ws39{word-spacing:9.006251pt;}
.ws3a{word-spacing:9.046101pt;}
.ws26{word-spacing:9.085952pt;}
.ws49{word-spacing:9.125803pt;}
.ws28{word-spacing:9.165653pt;}
.ws40{word-spacing:9.205504pt;}
.ws36{word-spacing:9.245355pt;}
.ws7c{word-spacing:9.285205pt;}
.ws87{word-spacing:9.325056pt;}
.ws82{word-spacing:9.364907pt;}
.ws23{word-spacing:9.444608pt;}
.ws93{word-spacing:9.484459pt;}
.ws6c{word-spacing:9.524309pt;}
.ws80{word-spacing:9.564160pt;}
.ws22{word-spacing:9.604011pt;}
.ws37{word-spacing:9.643861pt;}
.ws20{word-spacing:9.683712pt;}
.ws1e{word-spacing:9.723563pt;}
.ws24{word-spacing:9.763413pt;}
.ws2c{word-spacing:9.803264pt;}
.ws2{word-spacing:9.843115pt;}
.ws1b{word-spacing:9.882965pt;}
.ws25{word-spacing:9.922816pt;}
.ws44{word-spacing:9.962667pt;}
.ws21{word-spacing:10.002517pt;}
.ws50{word-spacing:10.042368pt;}
.ws4b{word-spacing:10.082219pt;}
.ws27{word-spacing:10.122069pt;}
.ws48{word-spacing:10.161920pt;}
.ws33{word-spacing:10.236866pt;}
.ws4f{word-spacing:10.241621pt;}
.ws1c{word-spacing:10.321323pt;}
.ws96{word-spacing:10.361173pt;}
.ws0{word-spacing:10.371757pt;}
.ws4e{word-spacing:10.401024pt;}
.ws3c{word-spacing:10.480725pt;}
.ws1{word-spacing:10.499278pt;}
.ws91{word-spacing:10.520576pt;}
.ws3f{word-spacing:10.560427pt;}
.ws8c{word-spacing:10.600277pt;}
.ws38{word-spacing:10.640128pt;}
.ws9e{word-spacing:10.679979pt;}
.ws11{word-spacing:10.703805pt;}
.ws8d{word-spacing:10.719829pt;}
.ws3e{word-spacing:10.799531pt;}
.wsf{word-spacing:10.839296pt;}
.ws9b{word-spacing:10.958933pt;}
.ws8e{word-spacing:10.998784pt;}
.ws18{word-spacing:11.019951pt;}
.ws83{word-spacing:11.038635pt;}
.ws52{word-spacing:11.118336pt;}
.ws19{word-spacing:11.155442pt;}
.ws94{word-spacing:11.158187pt;}
.ws1f{word-spacing:11.198037pt;}
.ws63{word-spacing:11.237888pt;}
.ws10{word-spacing:11.245770pt;}
.ws12{word-spacing:11.290933pt;}
.ws1d{word-spacing:11.317589pt;}
.ws14{word-spacing:11.336097pt;}
.wsd{word-spacing:11.344256pt;}
.wsc{word-spacing:11.346816pt;}
.wsb{word-spacing:11.350528pt;}
.ws79{word-spacing:11.357440pt;}
.ws17{word-spacing:11.381261pt;}
.ws9f{word-spacing:11.437141pt;}
.ws58{word-spacing:11.476992pt;}
.ws4a{word-spacing:11.516843pt;}
.ws8a{word-spacing:11.556693pt;}
.ws41{word-spacing:11.596544pt;}
.ws8f{word-spacing:11.636395pt;}
.ws5d{word-spacing:11.716096pt;}
.ws78{word-spacing:11.755947pt;}
.ws9a{word-spacing:11.795797pt;}
.ws9{word-spacing:11.811738pt;}
.ws53{word-spacing:11.835648pt;}
.ws6a{word-spacing:11.955200pt;}
.ws81{word-spacing:12.034901pt;}
.ws7d{word-spacing:12.074752pt;}
.ws3b{word-spacing:12.194304pt;}
.ws77{word-spacing:12.234155pt;}
.ws15{word-spacing:12.239372pt;}
.ws43{word-spacing:12.313856pt;}
.ws2e{word-spacing:12.353707pt;}
.ws5c{word-spacing:12.513109pt;}
.ws84{word-spacing:12.552960pt;}
.ws57{word-spacing:12.592811pt;}
.ws75{word-spacing:12.672512pt;}
.ws3d{word-spacing:12.712363pt;}
.ws8b{word-spacing:12.752213pt;}
.ws47{word-spacing:12.831915pt;}
.ws76{word-spacing:12.911616pt;}
.ws56{word-spacing:12.964663pt;}
.ws6d{word-spacing:13.190571pt;}
.ws7e{word-spacing:13.230421pt;}
.ws97{word-spacing:13.310123pt;}
.ws16{word-spacing:13.413629pt;}
.ws34{word-spacing:13.429675pt;}
.ws9d{word-spacing:13.469525pt;}
.ws45{word-spacing:13.509376pt;}
.ws72{word-spacing:13.549227pt;}
.wsab{word-spacing:13.748480pt;}
.ws69{word-spacing:13.788331pt;}
.ws62{word-spacing:13.907883pt;}
.wsa2{word-spacing:13.947733pt;}
.wsb0{word-spacing:14.346240pt;}
.ws6f{word-spacing:14.505643pt;}
.ws6e{word-spacing:14.545493pt;}
.ws74{word-spacing:14.704896pt;}
.ws61{word-spacing:14.944000pt;}
.ws70{word-spacing:15.820715pt;}
.ws73{word-spacing:16.099562pt;}
.ws6b{word-spacing:16.657579pt;}
.ws7{word-spacing:17.061311pt;}
.ws65{word-spacing:17.135787pt;}
.ws60{word-spacing:17.255339pt;}
.ws66{word-spacing:17.295189pt;}
.wsad{word-spacing:17.335040pt;}
.ws71{word-spacing:17.932800pt;}
.ws5b{word-spacing:19.128320pt;}
.ws68{word-spacing:21.081003pt;}
.wsaa{word-spacing:21.200555pt;}
.ws67{word-spacing:22.555477pt;}
.ws5e{word-spacing:23.073536pt;}
.ws6{word-spacing:23.336550pt;}
.wsa4{word-spacing:23.790848pt;}
.ws5a{word-spacing:24.787115pt;}
.ws5f{word-spacing:25.066069pt;}
.ws8{word-spacing:27.025835pt;}
.ws59{word-spacing:30.924117pt;}
.ws32{word-spacing:41.400542pt;}
.ws88{word-spacing:41.404885pt;}
.wsa5{word-spacing:45.230507pt;}
.wsa7{word-spacing:56.189440pt;}
.wsa6{word-spacing:80.498347pt;}
._3{margin-left:-10.233537pt;}
._1a{margin-left:-6.216704pt;}
._19{margin-left:-4.303872pt;}
._8{margin-left:-3.342116pt;}
._2{margin-left:-2.430891pt;}
._0{margin-left:-1.232709pt;}
._d{width:0.919321pt;}
._1d{width:2.271488pt;}
._22{width:3.506859pt;}
._18{width:4.622677pt;}
._15{width:7.845258pt;}
._11{width:9.125803pt;}
._9{width:10.491274pt;}
._1{width:11.516843pt;}
._a{width:12.510354pt;}
._6{width:13.530532pt;}
._f{width:14.582682pt;}
._b{width:15.780864pt;}
._10{width:17.215488pt;}
._17{width:18.610261pt;}
._7{width:19.741889pt;}
._c{width:20.815419pt;}
._12{width:22.194159pt;}
._e{width:23.232939pt;}
._21{width:24.388608pt;}
._16{width:25.902933pt;}
._4{width:27.736064pt;}
._13{width:28.849221pt;}
._1f{width:31.877871pt;}
._14{width:33.434709pt;}
._23{width:36.768955pt;}
._1b{width:38.814549pt;}
._5{width:40.693848pt;}
._20{width:41.739681pt;}
._1c{width:54.993920pt;}
._1e{width:65.474645pt;}
.fs5{font-size:19.925333pt;}
.fs9{font-size:34.537067pt;}
.fs7{font-size:37.193600pt;}
.fs1{font-size:39.850667pt;}
.fsc{font-size:41.444800pt;}
.fs0{font-size:42.507200pt;}
.fsb{font-size:45.163733pt;}
.fs2{font-size:47.820267pt;}
.fs8{font-size:47.820800pt;}
.fsa{font-size:53.133867pt;}
.fs6{font-size:57.559467pt;}
.fs4{font-size:69.074133pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:45.164000pt;}
.y82{bottom:85.014667pt;}
.y3f{bottom:86.857333pt;}
.ybd{bottom:87.069333pt;}
.y81{bottom:98.962667pt;}
.y3e{bottom:99.477333pt;}
.ybc{bottom:101.017333pt;}
.y80{bottom:112.909333pt;}
.ybb{bottom:114.965333pt;}
.y7f{bottom:126.857333pt;}
.yba{bottom:128.912000pt;}
.y9e{bottom:140.805333pt;}
.yb9{bottom:142.860000pt;}
.y7e{bottom:149.372000pt;}
.y2c{bottom:149.750667pt;}
.y9d{bottom:154.753333pt;}
.y3d{bottom:154.814667pt;}
.yb8{bottom:156.808000pt;}
.y2b{bottom:163.698667pt;}
.y9c{bottom:168.701333pt;}
.y3c{bottom:168.761333pt;}
.yb7{bottom:170.756000pt;}
.y7d{bottom:171.621333pt;}
.y2a{bottom:177.646667pt;}
.y9b{bottom:182.648000pt;}
.y3b{bottom:182.709333pt;}
.yb6{bottom:184.702667pt;}
.y29{bottom:191.594667pt;}
.y7c{bottom:196.128000pt;}
.y9a{bottom:196.596000pt;}
.y3a{bottom:196.657333pt;}
.yb5{bottom:198.650667pt;}
.y28{bottom:205.541333pt;}
.y7b{bottom:210.076000pt;}
.y99{bottom:210.544000pt;}
.y39{bottom:210.605333pt;}
.yb4{bottom:212.598667pt;}
.y27{bottom:219.489333pt;}
.y7a{bottom:224.024000pt;}
.y98{bottom:224.492000pt;}
.y38{bottom:224.553333pt;}
.yb3{bottom:226.546667pt;}
.y26{bottom:233.437333pt;}
.y79{bottom:237.972000pt;}
.y97{bottom:238.438667pt;}
.y37{bottom:238.500000pt;}
.yb2{bottom:240.493333pt;}
.y25{bottom:247.385333pt;}
.y78{bottom:251.920000pt;}
.y96{bottom:252.386667pt;}
.y36{bottom:252.448000pt;}
.yb1{bottom:254.441333pt;}
.y24{bottom:261.332000pt;}
.y77{bottom:265.866667pt;}
.y95{bottom:266.334667pt;}
.y35{bottom:266.396000pt;}
.yb0{bottom:268.389333pt;}
.y23{bottom:275.280000pt;}
.y76{bottom:279.814667pt;}
.y94{bottom:280.282667pt;}
.y34{bottom:280.344000pt;}
.yaf{bottom:282.337333pt;}
.y22{bottom:289.228000pt;}
.y75{bottom:293.762667pt;}
.y93{bottom:294.229333pt;}
.y33{bottom:294.290667pt;}
.yae{bottom:296.285333pt;}
.y21{bottom:303.176000pt;}
.y74{bottom:307.710667pt;}
.y92{bottom:308.177333pt;}
.y32{bottom:308.238667pt;}
.yad{bottom:310.232000pt;}
.y20{bottom:317.122667pt;}
.y73{bottom:321.657333pt;}
.y91{bottom:322.125333pt;}
.y31{bottom:322.186667pt;}
.yac{bottom:324.180000pt;}
.y1f{bottom:331.070667pt;}
.y72{bottom:335.605333pt;}
.y90{bottom:336.073333pt;}
.y30{bottom:336.134667pt;}
.yab{bottom:338.128000pt;}
.y1e{bottom:345.018667pt;}
.y71{bottom:349.553333pt;}
.ya3{bottom:350.021333pt;}
.y2f{bottom:350.082667pt;}
.yaa{bottom:352.076000pt;}
.y108{bottom:355.184000pt;}
.y1d{bottom:358.966667pt;}
.y8f{bottom:359.428000pt;}
.y70{bottom:363.501333pt;}
.ya2{bottom:363.968000pt;}
.y2e{bottom:364.029333pt;}
.ya9{bottom:366.022667pt;}
.y1c{bottom:372.914667pt;}
.y6f{bottom:377.449333pt;}
.ya1{bottom:377.916000pt;}
.y2d{bottom:377.977333pt;}
.y107{bottom:378.944000pt;}
.ya8{bottom:379.970667pt;}
.y8e{bottom:382.518667pt;}
.y6e{bottom:391.396000pt;}
.ye4{bottom:391.864000pt;}
.y1b{bottom:391.925333pt;}
.y106{bottom:392.890667pt;}
.ya7{bottom:393.918667pt;}
.ya0{bottom:396.544000pt;}
.y6d{bottom:405.344000pt;}
.ye3{bottom:405.812000pt;}
.y105{bottom:406.838667pt;}
.y8d{bottom:407.866667pt;}
.y9f{bottom:412.484000pt;}
.y6c{bottom:419.292000pt;}
.ye2{bottom:419.758667pt;}
.y104{bottom:420.786667pt;}
.y8c{bottom:421.813333pt;}
.y6b{bottom:433.240000pt;}
.ye1{bottom:433.706667pt;}
.y103{bottom:434.734667pt;}
.y8b{bottom:435.761333pt;}
.y1a{bottom:447.052000pt;}
.y6a{bottom:447.186667pt;}
.ye0{bottom:447.654667pt;}
.y102{bottom:448.682667pt;}
.y8a{bottom:449.709333pt;}
.y69{bottom:461.134667pt;}
.ydf{bottom:461.602667pt;}
.y101{bottom:462.629333pt;}
.y89{bottom:463.657333pt;}
.y19{bottom:471.626667pt;}
.y68{bottom:475.082667pt;}
.yde{bottom:475.550667pt;}
.y100{bottom:476.577333pt;}
.y88{bottom:477.605333pt;}
.y18{bottom:486.238667pt;}
.y67{bottom:489.030667pt;}
.ydd{bottom:489.497333pt;}
.yff{bottom:490.525333pt;}
.y87{bottom:491.552000pt;}
.y17{bottom:500.850667pt;}
.y66{bottom:502.977333pt;}
.ydc{bottom:503.445333pt;}
.yfe{bottom:504.473333pt;}
.y86{bottom:505.500000pt;}
.y16{bottom:515.462667pt;}
.y65{bottom:516.925333pt;}
.ydb{bottom:517.393333pt;}
.yfd{bottom:518.420000pt;}
.y85{bottom:519.448000pt;}
.y15{bottom:530.074667pt;}
.yda{bottom:531.341333pt;}
.yfc{bottom:532.368000pt;}
.y84{bottom:533.396000pt;}
.y64{bottom:536.784000pt;}
.y14{bottom:544.686667pt;}
.yd9{bottom:545.288000pt;}
.yfb{bottom:546.316000pt;}
.y83{bottom:547.342667pt;}
.yd8{bottom:559.236000pt;}
.y13{bottom:559.297333pt;}
.yfa{bottom:560.264000pt;}
.y63{bottom:561.290667pt;}
.yd7{bottom:573.184000pt;}
.y12{bottom:573.909333pt;}
.yf9{bottom:574.210667pt;}
.y62{bottom:575.238667pt;}
.yd6{bottom:587.132000pt;}
.yf8{bottom:588.158667pt;}
.y11{bottom:588.521333pt;}
.y61{bottom:589.186667pt;}
.yd5{bottom:601.078667pt;}
.yf7{bottom:602.106667pt;}
.y10{bottom:603.133333pt;}
.y60{bottom:603.134667pt;}
.yd4{bottom:615.026667pt;}
.yf6{bottom:616.054667pt;}
.y5f{bottom:617.081333pt;}
.yf{bottom:617.745333pt;}
.yd3{bottom:628.974667pt;}
.yf5{bottom:630.002667pt;}
.y5e{bottom:631.029333pt;}
.ye{bottom:632.357333pt;}
.yd2{bottom:642.922667pt;}
.yf4{bottom:643.949333pt;}
.y5d{bottom:644.977333pt;}
.yd{bottom:646.969333pt;}
.yd1{bottom:656.870667pt;}
.yf3{bottom:657.897333pt;}
.y5c{bottom:658.925333pt;}
.yc{bottom:667.558667pt;}
.yd0{bottom:670.817333pt;}
.yf2{bottom:671.845333pt;}
.y5b{bottom:672.872000pt;}
.ycf{bottom:684.765333pt;}
.yf1{bottom:685.793333pt;}
.y5a{bottom:686.820000pt;}
.yce{bottom:698.713333pt;}
.yf0{bottom:699.740000pt;}
.y59{bottom:700.768000pt;}
.ycd{bottom:712.661333pt;}
.yb{bottom:712.722667pt;}
.yef{bottom:713.688000pt;}
.y58{bottom:714.716000pt;}
.ycc{bottom:726.608000pt;}
.yee{bottom:727.636000pt;}
.y57{bottom:728.662667pt;}
.ycb{bottom:740.556000pt;}
.yed{bottom:741.584000pt;}
.y56{bottom:742.610667pt;}
.ya{bottom:749.253333pt;}
.yca{bottom:754.504000pt;}
.yec{bottom:755.530667pt;}
.y55{bottom:756.558667pt;}
.ya6{bottom:756.608000pt;}
.yc9{bottom:768.452000pt;}
.yeb{bottom:769.478667pt;}
.y54{bottom:770.506667pt;}
.y9{bottom:775.585333pt;}
.yc8{bottom:782.400000pt;}
.yea{bottom:783.426667pt;}
.y53{bottom:784.454667pt;}
.ya5{bottom:784.504000pt;}
.yc7{bottom:796.346667pt;}
.ye9{bottom:797.374667pt;}
.y52{bottom:798.401333pt;}
.ya4{bottom:798.452000pt;}
.y8{bottom:803.714667pt;}
.yc6{bottom:810.294667pt;}
.ye8{bottom:811.322667pt;}
.y51{bottom:812.349333pt;}
.yc5{bottom:824.242667pt;}
.ye7{bottom:825.269333pt;}
.y50{bottom:826.297333pt;}
.yc4{bottom:838.190667pt;}
.ye6{bottom:839.217333pt;}
.y4f{bottom:840.245333pt;}
.y7{bottom:844.894667pt;}
.yc3{bottom:852.137333pt;}
.y4e{bottom:854.192000pt;}
.ye5{bottom:858.328000pt;}
.yc2{bottom:866.085333pt;}
.y4d{bottom:868.140000pt;}
.yc1{bottom:880.033333pt;}
.y6{bottom:880.760000pt;}
.y4c{bottom:882.088000pt;}
.yc0{bottom:893.981333pt;}
.y4b{bottom:896.036000pt;}
.ybf{bottom:907.928000pt;}
.y4a{bottom:909.984000pt;}
.y49{bottom:923.930667pt;}
.y5{bottom:927.252000pt;}
.ybe{bottom:929.545333pt;}
.y48{bottom:937.878667pt;}
.y47{bottom:951.826667pt;}
.y4{bottom:960.974667pt;}
.y46{bottom:965.774667pt;}
.y45{bottom:979.721333pt;}
.y44{bottom:993.669333pt;}
.y3{bottom:1001.246667pt;}
.y43{bottom:1007.617333pt;}
.y2{bottom:1021.293333pt;}
.y42{bottom:1021.565333pt;}
.y1{bottom:1042.548000pt;}
.y41{bottom:1080.676000pt;}
.ha{height:30.737989pt;}
.hd{height:31.995386pt;}
.h2{height:32.815558pt;}
.h9{height:33.102304pt;}
.hf{height:34.866402pt;}
.h4{height:35.467093pt;}
.h10{height:35.664427pt;}
.he{height:36.885872pt;}
.h5{height:36.917246pt;}
.h3{height:37.831408pt;}
.hc{height:40.195723pt;}
.hb{height:41.019345pt;}
.h6{height:42.560037pt;}
.h7{height:73.835315pt;}
.h8{height:74.369259pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.210667pt;}
.x35{left:73.657333pt;}
.x34{left:74.872000pt;}
.x32{left:76.656000pt;}
.xa{left:88.521333pt;}
.x33{left:91.437333pt;}
.x36{left:93.260000pt;}
.x14{left:99.976000pt;}
.x15{left:105.724000pt;}
.x16{left:107.732000pt;}
.x1c{left:110.474667pt;}
.x17{left:112.713333pt;}
.x6{left:123.780000pt;}
.xb{left:125.984000pt;}
.xc{left:131.573333pt;}
.x1a{left:143.636000pt;}
.x1b{left:149.384000pt;}
.x1f{left:161.758667pt;}
.x7{left:165.840000pt;}
.x20{left:171.113333pt;}
.x8{left:174.690667pt;}
.x18{left:177.254667pt;}
.x19{left:183.262667pt;}
.x3{left:194.533333pt;}
.x4{left:198.298667pt;}
.x1d{left:333.830667pt;}
.x1e{left:341.362667pt;}
.xd{left:353.836000pt;}
.xe{left:359.633333pt;}
.x1{left:407.325333pt;}
.x5{left:408.805333pt;}
.x30{left:413.040000pt;}
.x2e{left:414.862667pt;}
.x27{left:418.500000pt;}
.x2f{left:427.661333pt;}
.x37{left:429.385333pt;}
.x29{left:435.913333pt;}
.x26{left:501.573333pt;}
.x2c{left:509.713333pt;}
.x2d{left:519.226667pt;}
.x2a{left:536.977333pt;}
.x2b{left:546.481333pt;}
.x31{left:573.717333pt;}
.x13{left:575.520000pt;}
.x21{left:588.146667pt;}
.x22{left:597.710667pt;}
.x25{left:602.185333pt;}
.x28{left:611.730667pt;}
.x11{left:615.036000pt;}
.x12{left:620.773333pt;}
.x23{left:626.408000pt;}
.x24{left:635.921333pt;}
.x9{left:699.305333pt;}
.xf{left:711.872000pt;}
.x10{left:717.621333pt;}
}




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