
    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_f2ad3f850cab36466d28fdc1.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_10518db369dc850b83a62b61.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_3f68d51d5eb17d58f66b3802.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_7f7dd362ea5b87bb7ee7b878.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_d5effcf1a3b7f72864123917.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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;}
.m2{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);}
.m18{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);}
.m27{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.ma{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);}
.m10{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);}
.m28{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);}
.mf{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m22{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m15{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);}
.m5{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);}
.m25{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);}
.m1a{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);}
.m1d{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);}
.m6{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);}
.mc{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);}
.m16{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);}
.m23{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);}
.m29{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);}
.m17{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);}
.m1e{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);}
.m24{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);}
.m1c{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);}
.m11{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);}
.m12{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);}
.m21{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);}
.m20{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);}
.mb{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);}
.m26{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);}
.m1b{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);}
.m9{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);}
.m13{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);}
.m7{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.286924px;}
.ls2{letter-spacing:1.649813px;}
.ls4{letter-spacing:1.793276px;}
.ls1{letter-spacing:27.853868px;}
.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;}
}
.ws97{word-spacing:-73.524296px;}
.ws86{word-spacing:-73.380833px;}
.ws8a{word-spacing:-72.017944px;}
.ws1c{word-spacing:-71.731020px;}
.ws88{word-spacing:-55.519809px;}
.ws14{word-spacing:-55.017692px;}
.ws78{word-spacing:-54.874230px;}
.ws4e{word-spacing:-54.587306px;}
.ws40{word-spacing:-54.300382px;}
.ws89{word-spacing:-54.228651px;}
.ws48{word-spacing:-54.013458px;}
.ws49{word-spacing:-53.869996px;}
.ws3{word-spacing:-53.798250px;}
.ws73{word-spacing:-53.726534px;}
.ws56{word-spacing:-53.511341px;}
.ws4{word-spacing:-53.367864px;}
.ws24{word-spacing:-53.296148px;}
.ws72{word-spacing:-53.224417px;}
.ws15{word-spacing:-53.152686px;}
.ws52{word-spacing:-52.865762px;}
.ws9a{word-spacing:-52.578838px;}
.ws50{word-spacing:-52.507107px;}
.ws4f{word-spacing:-52.076721px;}
.ws5e{word-spacing:-51.933258px;}
.ws2f{word-spacing:-51.789796px;}
.ws2a{word-spacing:-51.646334px;}
.ws81{word-spacing:-51.574603px;}
.ws7{word-spacing:-51.502872px;}
.ws21{word-spacing:-51.359410px;}
.ws63{word-spacing:-51.287679px;}
.ws99{word-spacing:-51.215948px;}
.ws37{word-spacing:-51.144217px;}
.ws29{word-spacing:-51.072486px;}
.wsa{word-spacing:-51.000755px;}
.ws55{word-spacing:-50.929024px;}
.ws10{word-spacing:-50.785562px;}
.ws3f{word-spacing:-50.713831px;}
.ws3c{word-spacing:-50.498638px;}
.ws79{word-spacing:-50.426907px;}
.ws4a{word-spacing:-50.283445px;}
.ws7e{word-spacing:-50.211714px;}
.ws4c{word-spacing:-50.139983px;}
.ws75{word-spacing:-50.068252px;}
.ws7a{word-spacing:-49.924790px;}
.ws7c{word-spacing:-49.781328px;}
.ws6e{word-spacing:-49.709597px;}
.ws16{word-spacing:-49.637866px;}
.ws36{word-spacing:-49.566135px;}
.ws19{word-spacing:-49.494404px;}
.ws6{word-spacing:-49.422673px;}
.ws30{word-spacing:-49.350942px;}
.wsc{word-spacing:-49.279211px;}
.ws3e{word-spacing:-49.207480px;}
.ws5b{word-spacing:-49.135749px;}
.ws2c{word-spacing:-49.064018px;}
.ws23{word-spacing:-48.992287px;}
.ws25{word-spacing:-48.920556px;}
.ws9{word-spacing:-48.848825px;}
.ws1b{word-spacing:-48.777094px;}
.ws1e{word-spacing:-48.705363px;}
.ws1a{word-spacing:-48.695434px;}
.ws18{word-spacing:-48.633632px;}
.ws9b{word-spacing:-48.587668px;}
.ws27{word-spacing:-48.561901px;}
.ws20{word-spacing:-48.490170px;}
.ws2b{word-spacing:-48.418439px;}
.ws5{word-spacing:-48.346707px;}
.ws8c{word-spacing:-48.342457px;}
.ws8{word-spacing:-48.274976px;}
.ws2e{word-spacing:-48.203245px;}
.wsd{word-spacing:-48.131514px;}
.ws13{word-spacing:-48.059783px;}
.ws12{word-spacing:-47.988052px;}
.ws35{word-spacing:-47.916321px;}
.ws26{word-spacing:-47.844590px;}
.ws22{word-spacing:-47.820660px;}
.ws17{word-spacing:-47.772859px;}
.ws34{word-spacing:-47.701128px;}
.ws62{word-spacing:-47.629397px;}
.ws45{word-spacing:-47.557666px;}
.ws65{word-spacing:-47.485935px;}
.ws80{word-spacing:-47.414204px;}
.ws5f{word-spacing:-47.127280px;}
.ws58{word-spacing:-47.055549px;}
.wsb{word-spacing:-46.983818px;}
.ws7f{word-spacing:-46.912087px;}
.ws43{word-spacing:-46.840356px;}
.ws53{word-spacing:-46.768625px;}
.ws51{word-spacing:-46.696894px;}
.ws39{word-spacing:-46.625163px;}
.ws44{word-spacing:-46.553432px;}
.ws31{word-spacing:-46.409970px;}
.ws46{word-spacing:-46.338239px;}
.ws96{word-spacing:-46.266508px;}
.ws98{word-spacing:-46.194777px;}
.ws6f{word-spacing:-46.051315px;}
.ws8e{word-spacing:-45.979584px;}
.ws76{word-spacing:-45.907853px;}
.ws69{word-spacing:-45.692660px;}
.ws7d{word-spacing:-45.620929px;}
.ws3d{word-spacing:-45.549198px;}
.ws11{word-spacing:-45.405736px;}
.ws4b{word-spacing:-45.334005px;}
.ws64{word-spacing:-45.262274px;}
.ws33{word-spacing:-45.118812px;}
.ws66{word-spacing:-44.975350px;}
.ws4d{word-spacing:-44.831887px;}
.wse{word-spacing:-44.760156px;}
.ws54{word-spacing:-44.688425px;}
.ws92{word-spacing:-44.616694px;}
.ws6d{word-spacing:-44.401501px;}
.ws67{word-spacing:-44.329770px;}
.ws7b{word-spacing:-44.114577px;}
.ws70{word-spacing:-44.042846px;}
.ws6b{word-spacing:-43.971115px;}
.ws6a{word-spacing:-43.899384px;}
.ws41{word-spacing:-43.827653px;}
.ws59{word-spacing:-43.755922px;}
.ws84{word-spacing:-43.684191px;}
.ws47{word-spacing:-43.612460px;}
.ws82{word-spacing:-43.397267px;}
.ws71{word-spacing:-43.325536px;}
.ws42{word-spacing:-43.253805px;}
.ws60{word-spacing:-43.110343px;}
.ws77{word-spacing:-42.895150px;}
.ws8b{word-spacing:-42.823419px;}
.ws83{word-spacing:-42.751688px;}
.ws1f{word-spacing:-42.608226px;}
.ws1d{word-spacing:-42.536495px;}
.ws5c{word-spacing:-42.393033px;}
.ws2d{word-spacing:-42.249571px;}
.ws38{word-spacing:-42.034378px;}
.ws28{word-spacing:-41.962647px;}
.ws5d{word-spacing:-41.890916px;}
.ws85{word-spacing:-41.819185px;}
.ws3a{word-spacing:-41.603992px;}
.ws68{word-spacing:-41.532261px;}
.ws8d{word-spacing:-41.317068px;}
.ws61{word-spacing:-41.173605px;}
.ws57{word-spacing:-40.958412px;}
.ws93{word-spacing:-40.671488px;}
.ws32{word-spacing:-40.528026px;}
.ws6c{word-spacing:-40.312833px;}
.ws74{word-spacing:-40.097640px;}
.ws87{word-spacing:-38.949944px;}
.ws3b{word-spacing:-38.734751px;}
.ws90{word-spacing:-38.447827px;}
.ws5a{word-spacing:-38.232634px;}
.ws94{word-spacing:-37.371861px;}
.ws91{word-spacing:-36.080703px;}
.ws8f{word-spacing:-35.578586px;}
.ws95{word-spacing:-34.861276px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.wsf{word-spacing:0.000000px;}
._10{margin-left:-9.310687px;}
._16{margin-left:-8.215085px;}
._6{margin-left:-7.125282px;}
._5{margin-left:-5.881944px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._7{width:1.563737px;}
._4{width:2.668393px;}
._8{width:3.921294px;}
._e{width:5.045079px;}
._c{width:6.369712px;}
._11{width:12.371206px;}
._a{width:17.564534px;}
._12{width:21.117611px;}
._2{width:22.523531px;}
._9{width:24.484178px;}
._f{width:25.971408px;}
._13{width:28.816739px;}
._b{width:30.127026px;}
._d{width:31.131259px;}
._15{width:33.870914px;}
._14{width:35.862282px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y22{bottom:43.525500px;}
.y21{bottom:57.723000px;}
.y20{bottom:71.919000px;}
.yc6{bottom:105.934500px;}
.y1f{bottom:107.355000px;}
.y8d{bottom:107.647500px;}
.y84{bottom:109.141500px;}
.ycb{bottom:113.625000px;}
.yb3{bottom:116.613000px;}
.y123{bottom:119.229000px;}
.y3d{bottom:122.217000px;}
.y58{bottom:122.592000px;}
.ye4{bottom:127.821000px;}
.yfb{bottom:129.690000px;}
.y9c{bottom:132.678000px;}
.y113{bottom:134.173500px;}
.yb7{bottom:137.161500px;}
.yc5{bottom:138.438000px;}
.y8c{bottom:140.151000px;}
.y83{bottom:141.645000px;}
.y68{bottom:146.128500px;}
.y1e{bottom:148.824000px;}
.yb2{bottom:149.116500px;}
.y122{bottom:151.732500px;}
.y57{bottom:155.094000px;}
.yfa{bottom:162.192000px;}
.ye3{bottom:163.314000px;}
.y3c{bottom:163.687500px;}
.y112{bottom:166.675500px;}
.yb6{bottom:169.665000px;}
.yc4{bottom:170.941500px;}
.y8b{bottom:172.653000px;}
.y82{bottom:174.148500px;}
.y67{bottom:178.630500px;}
.y1d{bottom:181.327500px;}
.yb1{bottom:181.620000px;}
.y121{bottom:184.234500px;}
.y56{bottom:187.597500px;}
.yf9{bottom:194.695500px;}
.y3b{bottom:196.191000px;}
.y111{bottom:199.179000px;}
.yfd{bottom:202.168500px;}
.yc3{bottom:203.445000px;}
.ye2{bottom:204.783000px;}
.y81{bottom:206.650500px;}
.y8a{bottom:208.146000px;}
.y66{bottom:211.134000px;}
.y1c{bottom:213.831000px;}
.yb0{bottom:214.123500px;}
.y120{bottom:216.738000px;}
.y55{bottom:220.101000px;}
.yf8{bottom:227.199000px;}
.y3a{bottom:228.693000px;}
.yca{bottom:229.066500px;}
.y110{bottom:234.670500px;}
.yc2{bottom:235.947000px;}
.ye1{bottom:237.286500px;}
.y9b{bottom:239.154000px;}
.y89{bottom:240.648000px;}
.y65{bottom:243.637500px;}
.y1b{bottom:246.334500px;}
.yaf{bottom:246.625500px;}
.y80{bottom:248.121000px;}
.y54{bottom:252.603000px;}
.y11f{bottom:258.207000px;}
.yf7{bottom:259.702500px;}
.y39{bottom:261.196500px;}
.yc9{bottom:261.570000px;}
.y126{bottom:267.174000px;}
.y102{bottom:268.450500px;}
.ye0{bottom:269.790000px;}
.yc1{bottom:269.944500px;}
.y9a{bottom:271.657500px;}
.y88{bottom:273.151500px;}
.y64{bottom:276.141000px;}
.y1a{bottom:278.836500px;}
.yae{bottom:279.129000px;}
.y7f{bottom:280.623000px;}
.y11e{bottom:290.710500px;}
.y38{bottom:293.700000px;}
.y53{bottom:294.073500px;}
.y125{bottom:299.677500px;}
.yf6{bottom:301.171500px;}
.ydf{bottom:302.292000px;}
.yc0{bottom:302.448000px;}
.y99{bottom:304.161000px;}
.y63{bottom:308.643000px;}
.y19{bottom:311.340000px;}
.y10f{bottom:311.632500px;}
.y7e{bottom:313.126500px;}
.yad{bottom:320.598000px;}
.y11d{bottom:323.214000px;}
.y37{bottom:326.202000px;}
.y52{bottom:326.577000px;}
.yf5{bottom:333.675000px;}
.y98{bottom:336.663000px;}
.y101{bottom:339.799500px;}
.y62{bottom:341.146500px;}
.yde{bottom:343.762500px;}
.y18{bottom:343.843500px;}
.y10e{bottom:344.136000px;}
.y7d{bottom:345.630000px;}
.ybf{bottom:346.906500px;}
.yfc{bottom:350.113500px;}
.yac{bottom:353.101500px;}
.y36{bottom:358.705500px;}
.y51{bottom:359.079000px;}
.y11c{bottom:364.683000px;}
.yf4{bottom:366.178500px;}
.y61{bottom:373.650000px;}
.y100{bottom:375.661500px;}
.ydd{bottom:376.264500px;}
.y17{bottom:376.345500px;}
.y10d{bottom:376.638000px;}
.y7c{bottom:378.133500px;}
.ybe{bottom:379.410000px;}
.yb5{bottom:382.615500px;}
.yab{bottom:385.605000px;}
.y50{bottom:391.582500px;}
.y11b{bottom:397.186500px;}
.yf3{bottom:398.680500px;}
.y35{bottom:400.176000px;}
.y60{bottom:406.153500px;}
.ydc{bottom:408.768000px;}
.y16{bottom:408.849000px;}
.y10c{bottom:409.141500px;}
.y97{bottom:410.635500px;}
.ybd{bottom:411.913500px;}
.yb4{bottom:415.119000px;}
.yaa{bottom:418.108500px;}
.y7b{bottom:419.602500px;}
.y4f{bottom:424.086000px;}
.y11a{bottom:429.690000px;}
.yf2{bottom:431.184000px;}
.y34{bottom:432.678000px;}
.y124{bottom:438.655500px;}
.y15{bottom:441.352500px;}
.y10b{bottom:441.645000px;}
.y96{bottom:443.139000px;}
.ybc{bottom:444.415500px;}
.y5f{bottom:447.622500px;}
.ydb{bottom:450.237000px;}
.ya9{bottom:450.610500px;}
.y7a{bottom:452.106000px;}
.y4e{bottom:456.589500px;}
.y33{bottom:465.181500px;}
.y119{bottom:471.159000px;}
.yf1{bottom:472.653000px;}
.y14{bottom:473.856000px;}
.y10a{bottom:474.148500px;}
.y95{bottom:475.642500px;}
.ybb{bottom:476.919000px;}
.y5e{bottom:480.126000px;}
.yda{bottom:482.740500px;}
.ya8{bottom:483.114000px;}
.y79{bottom:484.608000px;}
.y4d{bottom:489.091500px;}
.y32{bottom:497.685000px;}
.y118{bottom:503.662500px;}
.yf0{bottom:505.156500px;}
.y13{bottom:506.358000px;}
.y94{bottom:508.146000px;}
.yba{bottom:509.422500px;}
.y5d{bottom:512.628000px;}
.ya7{bottom:515.617500px;}
.y78{bottom:517.111500px;}
.y4c{bottom:521.595000px;}
.yd9{bottom:524.209500px;}
.y31{bottom:533.176500px;}
.y117{bottom:536.166000px;}
.yef{bottom:537.660000px;}
.y93{bottom:542.143500px;}
.y5c{bottom:545.131500px;}
.y12{bottom:547.828500px;}
.ya6{bottom:548.121000px;}
.y87{bottom:554.098500px;}
.yd8{bottom:556.713000px;}
.y77{bottom:558.582000px;}
.y4b{bottom:563.064000px;}
.y116{bottom:568.668000px;}
.yee{bottom:570.163500px;}
.y92{bottom:574.645500px;}
.y30{bottom:577.635000px;}
.ya5{bottom:580.623000px;}
.yb9{bottom:580.690500px;}
.y86{bottom:586.600500px;}
.yd7{bottom:589.216500px;}
.y11{bottom:589.297500px;}
.y76{bottom:591.084000px;}
.y4a{bottom:595.567500px;}
.yed{bottom:602.665500px;}
.y2f{bottom:610.138500px;}
.ya4{bottom:613.126500px;}
.yb8{bottom:616.552500px;}
.y85{bottom:619.104000px;}
.y10{bottom:620.470500px;}
.yd6{bottom:621.720000px;}
.y75{bottom:623.587500px;}
.y49{bottom:628.071000px;}
.yec{bottom:635.169000px;}
.y115{bottom:642.640500px;}
.y109{bottom:645.630000px;}
.y2e{bottom:651.607500px;}
.ya3{bottom:654.595500px;}
.y74{bottom:656.091000px;}
.yf{bottom:656.160000px;}
.y48{bottom:660.574500px;}
.yd5{bottom:663.189000px;}
.yeb{bottom:669.166500px;}
.y114{bottom:675.144000px;}
.y108{bottom:678.133500px;}
.y2d{bottom:684.111000px;}
.ya2{bottom:687.099000px;}
.y73{bottom:688.593000px;}
.ye{bottom:688.746000px;}
.y47{bottom:693.076500px;}
.yd4{bottom:695.692500px;}
.yea{bottom:713.625000px;}
.yd{bottom:716.314500px;}
.y2c{bottom:716.613000px;}
.ya1{bottom:719.602500px;}
.y46{bottom:725.580000px;}
.yd3{bottom:728.194500px;}
.y72{bottom:730.063500px;}
.ye9{bottom:746.128500px;}
.y2b{bottom:749.116500px;}
.ya0{bottom:752.106000px;}
.yc{bottom:752.184000px;}
.y45{bottom:758.083500px;}
.yd2{bottom:760.698000px;}
.yc8{bottom:761.071500px;}
.y71{bottom:762.567000px;}
.ye8{bottom:778.630500px;}
.y2a{bottom:781.620000px;}
.y107{bottom:784.608000px;}
.yb{bottom:788.052000px;}
.y44{bottom:790.587000px;}
.y9f{bottom:793.575000px;}
.y70{bottom:795.069000px;}
.yd1{bottom:802.168500px;}
.y29{bottom:814.123500px;}
.ya{bottom:815.494500px;}
.y106{bottom:817.111500px;}
.ye7{bottom:820.101000px;}
.y43{bottom:823.089000px;}
.y9e{bottom:826.078500px;}
.y6f{bottom:827.572500px;}
.yd0{bottom:834.670500px;}
.y28{bottom:846.625500px;}
.y105{bottom:849.615000px;}
.y9{bottom:851.362500px;}
.y42{bottom:855.592500px;}
.y91{bottom:858.582000px;}
.y6e{bottom:860.076000px;}
.yc7{bottom:861.570000px;}
.yff{bottom:864.559500px;}
.ycf{bottom:876.141000px;}
.y27{bottom:879.129000px;}
.y104{bottom:882.118500px;}
.y8{bottom:887.232000px;}
.y41{bottom:888.096000px;}
.y90{bottom:891.084000px;}
.y6d{bottom:892.579500px;}
.y9d{bottom:894.073500px;}
.yfe{bottom:897.061500px;}
.yce{bottom:908.643000px;}
.y26{bottom:911.632500px;}
.y103{bottom:914.620500px;}
.y5b{bottom:920.598000px;}
.ye6{bottom:923.587500px;}
.y6c{bottom:925.081500px;}
.y8f{bottom:926.577000px;}
.y7{bottom:929.565000px;}
.y25{bottom:944.136000px;}
.ycd{bottom:950.113500px;}
.y5a{bottom:953.101500px;}
.ye5{bottom:956.091000px;}
.y6b{bottom:957.585000px;}
.y8e{bottom:959.079000px;}
.y40{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y24{bottom:976.638000px;}
.ycc{bottom:982.615500px;}
.y59{bottom:985.605000px;}
.y6a{bottom:991.582500px;}
.y3f{bottom:994.572000px;}
.y23{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y69{bottom:1024.086000px;}
.y3e{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h4{height:50.498638px;}
.h5{height:51.215948px;}
.h2{height:60.598349px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:103.806000px;}
.x13{left:104.955000px;}
.x6{left:106.299000px;}
.x4{left:110.592000px;}
.x15{left:126.546000px;}
.x12{left:128.500500px;}
.x11{left:151.131000px;}
.x17{left:158.542500px;}
.x16{left:160.299000px;}
.x5{left:330.498000px;}
.xf{left:357.177000px;}
.x7{left:388.212000px;}
.xa{left:515.505000px;}
.x3{left:616.269000px;}
.x8{left:619.873500px;}
.xb{left:632.589000px;}
.x2{left:648.775500px;}
.xd{left:658.197000px;}
.x9{left:659.899500px;}
.xc{left:668.185500px;}
.xe{left:669.637500px;}
.x1{left:692.794500px;}
.x10{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.255044pt;}
.ls2{letter-spacing:1.466501pt;}
.ls4{letter-spacing:1.594023pt;}
.ls1{letter-spacing:24.758994pt;}
.ws97{word-spacing:-65.354929pt;}
.ws86{word-spacing:-65.227408pt;}
.ws8a{word-spacing:-64.015950pt;}
.ws1c{word-spacing:-63.760907pt;}
.ws88{word-spacing:-49.350942pt;}
.ws14{word-spacing:-48.904615pt;}
.ws78{word-spacing:-48.777094pt;}
.ws4e{word-spacing:-48.522050pt;}
.ws40{word-spacing:-48.267006pt;}
.ws89{word-spacing:-48.203245pt;}
.ws48{word-spacing:-48.011963pt;}
.ws49{word-spacing:-47.884441pt;}
.ws3{word-spacing:-47.820667pt;}
.ws73{word-spacing:-47.756919pt;}
.ws56{word-spacing:-47.565636pt;}
.ws4{word-spacing:-47.438101pt;}
.ws24{word-spacing:-47.374354pt;}
.ws72{word-spacing:-47.310593pt;}
.ws15{word-spacing:-47.246832pt;}
.ws52{word-spacing:-46.991788pt;}
.ws9a{word-spacing:-46.736745pt;}
.ws50{word-spacing:-46.672984pt;}
.ws4f{word-spacing:-46.290418pt;}
.ws5e{word-spacing:-46.162896pt;}
.ws2f{word-spacing:-46.035375pt;}
.ws2a{word-spacing:-45.907853pt;}
.ws81{word-spacing:-45.844092pt;}
.ws7{word-spacing:-45.780331pt;}
.ws21{word-spacing:-45.652809pt;}
.ws63{word-spacing:-45.589048pt;}
.ws99{word-spacing:-45.525287pt;}
.ws37{word-spacing:-45.461526pt;}
.ws29{word-spacing:-45.397766pt;}
.wsa{word-spacing:-45.334005pt;}
.ws55{word-spacing:-45.270244pt;}
.ws10{word-spacing:-45.142722pt;}
.ws3f{word-spacing:-45.078961pt;}
.ws3c{word-spacing:-44.887678pt;}
.ws79{word-spacing:-44.823917pt;}
.ws4a{word-spacing:-44.696396pt;}
.ws7e{word-spacing:-44.632635pt;}
.ws4c{word-spacing:-44.568874pt;}
.ws75{word-spacing:-44.505113pt;}
.ws7a{word-spacing:-44.377591pt;}
.ws7c{word-spacing:-44.250069pt;}
.ws6e{word-spacing:-44.186308pt;}
.ws16{word-spacing:-44.122547pt;}
.ws36{word-spacing:-44.058787pt;}
.ws19{word-spacing:-43.995026pt;}
.ws6{word-spacing:-43.931265pt;}
.ws30{word-spacing:-43.867504pt;}
.wsc{word-spacing:-43.803743pt;}
.ws3e{word-spacing:-43.739982pt;}
.ws5b{word-spacing:-43.676221pt;}
.ws2c{word-spacing:-43.612460pt;}
.ws23{word-spacing:-43.548699pt;}
.ws25{word-spacing:-43.484938pt;}
.ws9{word-spacing:-43.421177pt;}
.ws1b{word-spacing:-43.357417pt;}
.ws1e{word-spacing:-43.293656pt;}
.ws1a{word-spacing:-43.284830pt;}
.ws18{word-spacing:-43.229895pt;}
.ws9b{word-spacing:-43.189038pt;}
.ws27{word-spacing:-43.166134pt;}
.ws20{word-spacing:-43.102373pt;}
.ws2b{word-spacing:-43.038612pt;}
.ws5{word-spacing:-42.974851pt;}
.ws8c{word-spacing:-42.971073pt;}
.ws8{word-spacing:-42.911090pt;}
.ws2e{word-spacing:-42.847329pt;}
.wsd{word-spacing:-42.783568pt;}
.ws13{word-spacing:-42.719807pt;}
.ws12{word-spacing:-42.656047pt;}
.ws35{word-spacing:-42.592286pt;}
.ws26{word-spacing:-42.528525pt;}
.ws22{word-spacing:-42.507253pt;}
.ws17{word-spacing:-42.464764pt;}
.ws34{word-spacing:-42.401003pt;}
.ws62{word-spacing:-42.337242pt;}
.ws45{word-spacing:-42.273481pt;}
.ws65{word-spacing:-42.209720pt;}
.ws80{word-spacing:-42.145959pt;}
.ws5f{word-spacing:-41.890916pt;}
.ws58{word-spacing:-41.827155pt;}
.wsb{word-spacing:-41.763394pt;}
.ws7f{word-spacing:-41.699633pt;}
.ws43{word-spacing:-41.635872pt;}
.ws53{word-spacing:-41.572111pt;}
.ws51{word-spacing:-41.508350pt;}
.ws39{word-spacing:-41.444589pt;}
.ws44{word-spacing:-41.380828pt;}
.ws31{word-spacing:-41.253307pt;}
.ws46{word-spacing:-41.189546pt;}
.ws96{word-spacing:-41.125785pt;}
.ws98{word-spacing:-41.062024pt;}
.ws6f{word-spacing:-40.934502pt;}
.ws8e{word-spacing:-40.870741pt;}
.ws76{word-spacing:-40.806980pt;}
.ws69{word-spacing:-40.615698pt;}
.ws7d{word-spacing:-40.551937pt;}
.ws3d{word-spacing:-40.488176pt;}
.ws11{word-spacing:-40.360654pt;}
.ws4b{word-spacing:-40.296893pt;}
.ws64{word-spacing:-40.233132pt;}
.ws33{word-spacing:-40.105610pt;}
.ws66{word-spacing:-39.978088pt;}
.ws4d{word-spacing:-39.850567pt;}
.wse{word-spacing:-39.786806pt;}
.ws54{word-spacing:-39.723045pt;}
.ws92{word-spacing:-39.659284pt;}
.ws6d{word-spacing:-39.468001pt;}
.ws67{word-spacing:-39.404240pt;}
.ws7b{word-spacing:-39.212958pt;}
.ws70{word-spacing:-39.149197pt;}
.ws6b{word-spacing:-39.085436pt;}
.ws6a{word-spacing:-39.021675pt;}
.ws41{word-spacing:-38.957914pt;}
.ws59{word-spacing:-38.894153pt;}
.ws84{word-spacing:-38.830392pt;}
.ws47{word-spacing:-38.766631pt;}
.ws82{word-spacing:-38.575349pt;}
.ws71{word-spacing:-38.511588pt;}
.ws42{word-spacing:-38.447827pt;}
.ws60{word-spacing:-38.320305pt;}
.ws77{word-spacing:-38.129022pt;}
.ws8b{word-spacing:-38.065261pt;}
.ws83{word-spacing:-38.001500pt;}
.ws1f{word-spacing:-37.873979pt;}
.ws1d{word-spacing:-37.810218pt;}
.ws5c{word-spacing:-37.682696pt;}
.ws2d{word-spacing:-37.555174pt;}
.ws38{word-spacing:-37.363891pt;}
.ws28{word-spacing:-37.300130pt;}
.ws5d{word-spacing:-37.236369pt;}
.ws85{word-spacing:-37.172609pt;}
.ws3a{word-spacing:-36.981326pt;}
.ws68{word-spacing:-36.917565pt;}
.ws8d{word-spacing:-36.726282pt;}
.ws61{word-spacing:-36.598760pt;}
.ws57{word-spacing:-36.407478pt;}
.ws93{word-spacing:-36.152434pt;}
.ws32{word-spacing:-36.024912pt;}
.ws6c{word-spacing:-35.833630pt;}
.ws74{word-spacing:-35.642347pt;}
.ws87{word-spacing:-34.622172pt;}
.ws3b{word-spacing:-34.430890pt;}
.ws90{word-spacing:-34.175846pt;}
.ws5a{word-spacing:-33.984563pt;}
.ws94{word-spacing:-33.219432pt;}
.ws91{word-spacing:-32.071736pt;}
.ws8f{word-spacing:-31.625410pt;}
.ws95{word-spacing:-30.987801pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.wsf{word-spacing:0.000000pt;}
._10{margin-left:-8.276166pt;}
._16{margin-left:-7.302298pt;}
._6{margin-left:-6.333584pt;}
._5{margin-left:-5.228394pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._7{width:1.389988pt;}
._4{width:2.371905pt;}
._8{width:3.485595pt;}
._e{width:4.484515pt;}
._c{width:5.661966pt;}
._11{width:10.996628pt;}
._a{width:15.612919pt;}
._12{width:18.771210pt;}
._2{width:20.020916pt;}
._9{width:21.763714pt;}
._f{width:23.085696pt;}
._13{width:25.614879pt;}
._b{width:26.779578pt;}
._d{width:27.672230pt;}
._15{width:30.107479pt;}
._14{width:31.877584pt;}
.fs0{font-size:42.507253pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:38.689333pt;}
.y21{bottom:51.309333pt;}
.y20{bottom:63.928000pt;}
.yc6{bottom:94.164000pt;}
.y1f{bottom:95.426667pt;}
.y8d{bottom:95.686667pt;}
.y84{bottom:97.014667pt;}
.ycb{bottom:101.000000pt;}
.yb3{bottom:103.656000pt;}
.y123{bottom:105.981333pt;}
.y3d{bottom:108.637333pt;}
.y58{bottom:108.970667pt;}
.ye4{bottom:113.618667pt;}
.yfb{bottom:115.280000pt;}
.y9c{bottom:117.936000pt;}
.y113{bottom:119.265333pt;}
.yb7{bottom:121.921333pt;}
.yc5{bottom:123.056000pt;}
.y8c{bottom:124.578667pt;}
.y83{bottom:125.906667pt;}
.y68{bottom:129.892000pt;}
.y1e{bottom:132.288000pt;}
.yb2{bottom:132.548000pt;}
.y122{bottom:134.873333pt;}
.y57{bottom:137.861333pt;}
.yfa{bottom:144.170667pt;}
.ye3{bottom:145.168000pt;}
.y3c{bottom:145.500000pt;}
.y112{bottom:148.156000pt;}
.yb6{bottom:150.813333pt;}
.yc4{bottom:151.948000pt;}
.y8b{bottom:153.469333pt;}
.y82{bottom:154.798667pt;}
.y67{bottom:158.782667pt;}
.y1d{bottom:161.180000pt;}
.yb1{bottom:161.440000pt;}
.y121{bottom:163.764000pt;}
.y56{bottom:166.753333pt;}
.yf9{bottom:173.062667pt;}
.y3b{bottom:174.392000pt;}
.y111{bottom:177.048000pt;}
.yfd{bottom:179.705333pt;}
.yc3{bottom:180.840000pt;}
.ye2{bottom:182.029333pt;}
.y81{bottom:183.689333pt;}
.y8a{bottom:185.018667pt;}
.y66{bottom:187.674667pt;}
.y1c{bottom:190.072000pt;}
.yb0{bottom:190.332000pt;}
.y120{bottom:192.656000pt;}
.y55{bottom:195.645333pt;}
.yf8{bottom:201.954667pt;}
.y3a{bottom:203.282667pt;}
.yca{bottom:203.614667pt;}
.y110{bottom:208.596000pt;}
.yc2{bottom:209.730667pt;}
.ye1{bottom:210.921333pt;}
.y9b{bottom:212.581333pt;}
.y89{bottom:213.909333pt;}
.y65{bottom:216.566667pt;}
.y1b{bottom:218.964000pt;}
.yaf{bottom:219.222667pt;}
.y80{bottom:220.552000pt;}
.y54{bottom:224.536000pt;}
.y11f{bottom:229.517333pt;}
.yf7{bottom:230.846667pt;}
.y39{bottom:232.174667pt;}
.yc9{bottom:232.506667pt;}
.y126{bottom:237.488000pt;}
.y102{bottom:238.622667pt;}
.ye0{bottom:239.813333pt;}
.yc1{bottom:239.950667pt;}
.y9a{bottom:241.473333pt;}
.y88{bottom:242.801333pt;}
.y64{bottom:245.458667pt;}
.y1a{bottom:247.854667pt;}
.yae{bottom:248.114667pt;}
.y7f{bottom:249.442667pt;}
.y11e{bottom:258.409333pt;}
.y38{bottom:261.066667pt;}
.y53{bottom:261.398667pt;}
.y125{bottom:266.380000pt;}
.yf6{bottom:267.708000pt;}
.ydf{bottom:268.704000pt;}
.yc0{bottom:268.842667pt;}
.y99{bottom:270.365333pt;}
.y63{bottom:274.349333pt;}
.y19{bottom:276.746667pt;}
.y10f{bottom:277.006667pt;}
.y7e{bottom:278.334667pt;}
.yad{bottom:284.976000pt;}
.y11d{bottom:287.301333pt;}
.y37{bottom:289.957333pt;}
.y52{bottom:290.290667pt;}
.yf5{bottom:296.600000pt;}
.y98{bottom:299.256000pt;}
.y101{bottom:302.044000pt;}
.y62{bottom:303.241333pt;}
.yde{bottom:305.566667pt;}
.y18{bottom:305.638667pt;}
.y10e{bottom:305.898667pt;}
.y7d{bottom:307.226667pt;}
.ybf{bottom:308.361333pt;}
.yfc{bottom:311.212000pt;}
.yac{bottom:313.868000pt;}
.y36{bottom:318.849333pt;}
.y51{bottom:319.181333pt;}
.y11c{bottom:324.162667pt;}
.yf4{bottom:325.492000pt;}
.y61{bottom:332.133333pt;}
.y100{bottom:333.921333pt;}
.ydd{bottom:334.457333pt;}
.y17{bottom:334.529333pt;}
.y10d{bottom:334.789333pt;}
.y7c{bottom:336.118667pt;}
.ybe{bottom:337.253333pt;}
.yb5{bottom:340.102667pt;}
.yab{bottom:342.760000pt;}
.y50{bottom:348.073333pt;}
.y11b{bottom:353.054667pt;}
.yf3{bottom:354.382667pt;}
.y35{bottom:355.712000pt;}
.y60{bottom:361.025333pt;}
.ydc{bottom:363.349333pt;}
.y16{bottom:363.421333pt;}
.y10c{bottom:363.681333pt;}
.y97{bottom:365.009333pt;}
.ybd{bottom:366.145333pt;}
.yb4{bottom:368.994667pt;}
.yaa{bottom:371.652000pt;}
.y7b{bottom:372.980000pt;}
.y4f{bottom:376.965333pt;}
.y11a{bottom:381.946667pt;}
.yf2{bottom:383.274667pt;}
.y34{bottom:384.602667pt;}
.y124{bottom:389.916000pt;}
.y15{bottom:392.313333pt;}
.y10b{bottom:392.573333pt;}
.y96{bottom:393.901333pt;}
.ybc{bottom:395.036000pt;}
.y5f{bottom:397.886667pt;}
.ydb{bottom:400.210667pt;}
.ya9{bottom:400.542667pt;}
.y7a{bottom:401.872000pt;}
.y4e{bottom:405.857333pt;}
.y33{bottom:413.494667pt;}
.y119{bottom:418.808000pt;}
.yf1{bottom:420.136000pt;}
.y14{bottom:421.205333pt;}
.y10a{bottom:421.465333pt;}
.y95{bottom:422.793333pt;}
.ybb{bottom:423.928000pt;}
.y5e{bottom:426.778667pt;}
.yda{bottom:429.102667pt;}
.ya8{bottom:429.434667pt;}
.y79{bottom:430.762667pt;}
.y4d{bottom:434.748000pt;}
.y32{bottom:442.386667pt;}
.y118{bottom:447.700000pt;}
.yf0{bottom:449.028000pt;}
.y13{bottom:450.096000pt;}
.y94{bottom:451.685333pt;}
.yba{bottom:452.820000pt;}
.y5d{bottom:455.669333pt;}
.ya7{bottom:458.326667pt;}
.y78{bottom:459.654667pt;}
.y4c{bottom:463.640000pt;}
.yd9{bottom:465.964000pt;}
.y31{bottom:473.934667pt;}
.y117{bottom:476.592000pt;}
.yef{bottom:477.920000pt;}
.y93{bottom:481.905333pt;}
.y5c{bottom:484.561333pt;}
.y12{bottom:486.958667pt;}
.ya6{bottom:487.218667pt;}
.y87{bottom:492.532000pt;}
.yd8{bottom:494.856000pt;}
.y77{bottom:496.517333pt;}
.y4b{bottom:500.501333pt;}
.y116{bottom:505.482667pt;}
.yee{bottom:506.812000pt;}
.y92{bottom:510.796000pt;}
.y30{bottom:513.453333pt;}
.ya5{bottom:516.109333pt;}
.yb9{bottom:516.169333pt;}
.y86{bottom:521.422667pt;}
.yd7{bottom:523.748000pt;}
.y11{bottom:523.820000pt;}
.y76{bottom:525.408000pt;}
.y4a{bottom:529.393333pt;}
.yed{bottom:535.702667pt;}
.y2f{bottom:542.345333pt;}
.ya4{bottom:545.001333pt;}
.yb8{bottom:548.046667pt;}
.y85{bottom:550.314667pt;}
.y10{bottom:551.529333pt;}
.yd6{bottom:552.640000pt;}
.y75{bottom:554.300000pt;}
.y49{bottom:558.285333pt;}
.yec{bottom:564.594667pt;}
.y115{bottom:571.236000pt;}
.y109{bottom:573.893333pt;}
.y2e{bottom:579.206667pt;}
.ya3{bottom:581.862667pt;}
.y74{bottom:583.192000pt;}
.yf{bottom:583.253333pt;}
.y48{bottom:587.177333pt;}
.yd5{bottom:589.501333pt;}
.yeb{bottom:594.814667pt;}
.y114{bottom:600.128000pt;}
.y108{bottom:602.785333pt;}
.y2d{bottom:608.098667pt;}
.ya2{bottom:610.754667pt;}
.y73{bottom:612.082667pt;}
.ye{bottom:612.218667pt;}
.y47{bottom:616.068000pt;}
.yd4{bottom:618.393333pt;}
.yea{bottom:634.333333pt;}
.yd{bottom:636.724000pt;}
.y2c{bottom:636.989333pt;}
.ya1{bottom:639.646667pt;}
.y46{bottom:644.960000pt;}
.yd3{bottom:647.284000pt;}
.y72{bottom:648.945333pt;}
.ye9{bottom:663.225333pt;}
.y2b{bottom:665.881333pt;}
.ya0{bottom:668.538667pt;}
.yc{bottom:668.608000pt;}
.y45{bottom:673.852000pt;}
.yd2{bottom:676.176000pt;}
.yc8{bottom:676.508000pt;}
.y71{bottom:677.837333pt;}
.ye8{bottom:692.116000pt;}
.y2a{bottom:694.773333pt;}
.y107{bottom:697.429333pt;}
.yb{bottom:700.490667pt;}
.y44{bottom:702.744000pt;}
.y9f{bottom:705.400000pt;}
.y70{bottom:706.728000pt;}
.yd1{bottom:713.038667pt;}
.y29{bottom:723.665333pt;}
.ya{bottom:724.884000pt;}
.y106{bottom:726.321333pt;}
.ye7{bottom:728.978667pt;}
.y43{bottom:731.634667pt;}
.y9e{bottom:734.292000pt;}
.y6f{bottom:735.620000pt;}
.yd0{bottom:741.929333pt;}
.y28{bottom:752.556000pt;}
.y105{bottom:755.213333pt;}
.y9{bottom:756.766667pt;}
.y42{bottom:760.526667pt;}
.y91{bottom:763.184000pt;}
.y6e{bottom:764.512000pt;}
.yc7{bottom:765.840000pt;}
.yff{bottom:768.497333pt;}
.ycf{bottom:778.792000pt;}
.y27{bottom:781.448000pt;}
.y104{bottom:784.105333pt;}
.y8{bottom:788.650667pt;}
.y41{bottom:789.418667pt;}
.y90{bottom:792.074667pt;}
.y6d{bottom:793.404000pt;}
.y9d{bottom:794.732000pt;}
.yfe{bottom:797.388000pt;}
.yce{bottom:807.682667pt;}
.y26{bottom:810.340000pt;}
.y103{bottom:812.996000pt;}
.y5b{bottom:818.309333pt;}
.ye6{bottom:820.966667pt;}
.y6c{bottom:822.294667pt;}
.y8f{bottom:823.624000pt;}
.y7{bottom:826.280000pt;}
.y25{bottom:839.232000pt;}
.ycd{bottom:844.545333pt;}
.y5a{bottom:847.201333pt;}
.ye5{bottom:849.858667pt;}
.y6b{bottom:851.186667pt;}
.y8e{bottom:852.514667pt;}
.y40{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y24{bottom:868.122667pt;}
.ycc{bottom:873.436000pt;}
.y59{bottom:876.093333pt;}
.y6a{bottom:881.406667pt;}
.y3f{bottom:884.064000pt;}
.y23{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y69{bottom:910.298667pt;}
.y3e{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h4{height:44.887678pt;}
.h5{height:45.525287pt;}
.h2{height:53.865199pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:92.272000pt;}
.x13{left:93.293333pt;}
.x6{left:94.488000pt;}
.x4{left:98.304000pt;}
.x15{left:112.485333pt;}
.x12{left:114.222667pt;}
.x11{left:134.338667pt;}
.x17{left:140.926667pt;}
.x16{left:142.488000pt;}
.x5{left:293.776000pt;}
.xf{left:317.490667pt;}
.x7{left:345.077333pt;}
.xa{left:458.226667pt;}
.x3{left:547.794667pt;}
.x8{left:550.998667pt;}
.xb{left:562.301333pt;}
.x2{left:576.689333pt;}
.xd{left:585.064000pt;}
.x9{left:586.577333pt;}
.xc{left:593.942667pt;}
.xe{left:595.233333pt;}
.x1{left:615.817333pt;}
.x10{left:698.080000pt;}
}




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