
    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_0ee10ad387f7ac7f97b66162.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_70ffc86c046529f6f37c47ba.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_e8ef6df88bac1175fbab5a63.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_291069504db6bfbf151ffcf3.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_23d62ede1dbf6d9803fe4800.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m23{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);}
.m5{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);}
.m24{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);}
.m7{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);}
.m11{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);}
.m17{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);}
.ma{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);}
.m10{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);}
.m15{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);}
.m20{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);}
.m26{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);}
.m1b{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);}
.m27{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);}
.me{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);}
.m4{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);}
.m9{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);}
.m1c{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);}
.mb{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);}
.m1a{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);}
.md{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);}
.m1{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);}
.mc{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);}
.m1f{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);}
.m6{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);}
.m14{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);}
.m28{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);}
.m12{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);}
.m21{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);}
.m25{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);}
.m19{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);}
.m16{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);}
.m13{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);}
.mf{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);}
.m1d{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);}
.m18{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);}
.m1e{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);}
.m2{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);}
.m8{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;}
.ls2{letter-spacing:0.717310px;}
.ls1{letter-spacing:23.225510px;}
.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;}
}
.ws7c{word-spacing:-72.448330px;}
.ws19{word-spacing:-71.731020px;}
.ws44{word-spacing:-55.519809px;}
.ws64{word-spacing:-54.945961px;}
.ws37{word-spacing:-54.730768px;}
.ws60{word-spacing:-54.013458px;}
.ws5c{word-spacing:-53.869996px;}
.ws3{word-spacing:-53.798250px;}
.ws22{word-spacing:-53.726534px;}
.ws59{word-spacing:-53.654803px;}
.ws3f{word-spacing:-53.224417px;}
.ws39{word-spacing:-52.794031px;}
.ws4f{word-spacing:-52.435376px;}
.ws1f{word-spacing:-52.291914px;}
.ws6b{word-spacing:-52.220183px;}
.ws6e{word-spacing:-52.076721px;}
.ws69{word-spacing:-52.004989px;}
.ws6a{word-spacing:-51.933258px;}
.ws68{word-spacing:-51.789796px;}
.ws8{word-spacing:-51.502872px;}
.ws40{word-spacing:-51.359410px;}
.ws45{word-spacing:-51.287679px;}
.wsb{word-spacing:-51.144217px;}
.ws5f{word-spacing:-51.072486px;}
.ws7d{word-spacing:-50.713831px;}
.ws4e{word-spacing:-50.642100px;}
.ws6f{word-spacing:-50.570369px;}
.ws63{word-spacing:-50.426907px;}
.ws47{word-spacing:-50.355176px;}
.ws1d{word-spacing:-50.211714px;}
.ws5e{word-spacing:-50.139983px;}
.ws3d{word-spacing:-50.068252px;}
.ws62{word-spacing:-49.924790px;}
.wsa{word-spacing:-49.709597px;}
.ws55{word-spacing:-49.494404px;}
.ws2e{word-spacing:-49.422673px;}
.ws66{word-spacing:-49.350942px;}
.ws4b{word-spacing:-49.279211px;}
.ws1e{word-spacing:-49.207480px;}
.ws38{word-spacing:-49.135749px;}
.ws35{word-spacing:-49.064018px;}
.ws28{word-spacing:-48.992287px;}
.ws27{word-spacing:-48.920556px;}
.ws33{word-spacing:-48.848825px;}
.ws29{word-spacing:-48.777094px;}
.ws2d{word-spacing:-48.705363px;}
.ws71{word-spacing:-48.674261px;}
.ws31{word-spacing:-48.633632px;}
.ws3c{word-spacing:-48.561901px;}
.ws1a{word-spacing:-48.490170px;}
.ws11{word-spacing:-48.418439px;}
.ws7e{word-spacing:-48.347356px;}
.ws4{word-spacing:-48.346707px;}
.ws78{word-spacing:-48.342657px;}
.ws15{word-spacing:-48.274976px;}
.ws17{word-spacing:-48.218328px;}
.ws18{word-spacing:-48.203245px;}
.wsc{word-spacing:-48.131514px;}
.wsd{word-spacing:-48.059783px;}
.ws1c{word-spacing:-47.988052px;}
.ws13{word-spacing:-47.916321px;}
.ws21{word-spacing:-47.844590px;}
.ws25{word-spacing:-47.820660px;}
.ws9{word-spacing:-47.772859px;}
.ws10{word-spacing:-47.701128px;}
.ws5d{word-spacing:-47.629397px;}
.ws57{word-spacing:-47.557666px;}
.ws4a{word-spacing:-47.485935px;}
.wsf{word-spacing:-47.342473px;}
.ws61{word-spacing:-47.270742px;}
.ws26{word-spacing:-47.199011px;}
.ws6{word-spacing:-47.127280px;}
.ws51{word-spacing:-46.983818px;}
.ws3e{word-spacing:-46.912087px;}
.ws54{word-spacing:-46.840356px;}
.ws79{word-spacing:-46.696894px;}
.ws73{word-spacing:-46.625163px;}
.ws77{word-spacing:-46.553432px;}
.ws16{word-spacing:-46.481701px;}
.ws53{word-spacing:-46.338239px;}
.ws49{word-spacing:-46.266508px;}
.ws5{word-spacing:-46.123046px;}
.ws50{word-spacing:-46.051315px;}
.ws36{word-spacing:-45.907853px;}
.ws23{word-spacing:-45.836122px;}
.ws70{word-spacing:-45.620929px;}
.ws1b{word-spacing:-45.549198px;}
.ws42{word-spacing:-45.477467px;}
.ws76{word-spacing:-45.262274px;}
.ws7a{word-spacing:-45.047081px;}
.ws58{word-spacing:-44.975350px;}
.ws4d{word-spacing:-44.831888px;}
.ws20{word-spacing:-44.760156px;}
.ws2c{word-spacing:-44.688425px;}
.ws12{word-spacing:-44.616694px;}
.ws32{word-spacing:-44.544963px;}
.ws2b{word-spacing:-44.473232px;}
.ws34{word-spacing:-44.329770px;}
.ws30{word-spacing:-44.114577px;}
.ws24{word-spacing:-44.042846px;}
.ws2a{word-spacing:-43.971115px;}
.ws41{word-spacing:-43.827653px;}
.wse{word-spacing:-43.755922px;}
.ws75{word-spacing:-43.612460px;}
.ws7{word-spacing:-43.540729px;}
.ws67{word-spacing:-43.397267px;}
.ws2f{word-spacing:-43.325536px;}
.ws56{word-spacing:-43.253805px;}
.ws7b{word-spacing:-43.110343px;}
.ws52{word-spacing:-43.038612px;}
.ws65{word-spacing:-42.464764px;}
.ws3a{word-spacing:-41.890916px;}
.ws72{word-spacing:-41.460530px;}
.ws4c{word-spacing:-41.388799px;}
.ws5a{word-spacing:-41.173605px;}
.ws46{word-spacing:-40.886681px;}
.ws43{word-spacing:-40.312833px;}
.ws5b{word-spacing:-39.810716px;}
.ws6d{word-spacing:-39.308599px;}
.ws48{word-spacing:-38.447827px;}
.ws3b{word-spacing:-38.304365px;}
.ws7f{word-spacing:-37.945710px;}
.ws6c{word-spacing:-37.873979px;}
.ws74{word-spacing:-37.730517px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws14{word-spacing:0.000000px;}
._e{margin-left:-9.062020px;}
._5{margin-left:-5.881944px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._6{width:1.243339px;}
._4{width:2.630136px;}
._a{width:4.016928px;}
._14{width:5.127330px;}
._b{width:6.169498px;}
._13{width:10.222060px;}
._c{width:12.672479px;}
._11{width:17.789290px;}
._f{width:19.128271px;}
._9{width:20.491167px;}
._12{width:21.519303px;}
._2{width:22.523531px;}
._7{width:24.675468px;}
._8{width:26.253551px;}
._d{width:28.405481px;}
._10{width:35.862963px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.y76{bottom:107.647500px;}
.y6a{bottom:113.625000px;}
.yc7{bottom:116.239500px;}
.y52{bottom:116.613000px;}
.yde{bottom:124.833000px;}
.y8a{bottom:125.206500px;}
.yff{bottom:127.821000px;}
.y3a{bottom:128.194500px;}
.y1e{bottom:128.902500px;}
.yf3{bottom:130.437000px;}
.ya9{bottom:131.184000px;}
.y11f{bottom:133.798500px;}
.y138{bottom:136.788000px;}
.y9c{bottom:137.161500px;}
.y75{bottom:140.151000px;}
.y69{bottom:146.128500px;}
.yc6{bottom:148.743000px;}
.y51{bottom:149.116500px;}
.ydd{bottom:160.324500px;}
.y39{bottom:160.698000px;}
.y1d{bottom:161.406000px;}
.yfe{bottom:163.314000px;}
.ya8{bottom:163.687500px;}
.yf2{bottom:165.928500px;}
.y11e{bottom:166.302000px;}
.y137{bottom:169.291500px;}
.y9b{bottom:169.665000px;}
.y74{bottom:172.653000px;}
.y68{bottom:178.630500px;}
.yc5{bottom:181.246500px;}
.y50{bottom:181.620000px;}
.ydc{bottom:192.828000px;}
.y89{bottom:193.201500px;}
.y1c{bottom:193.909500px;}
.yfd{bottom:195.816000px;}
.y38{bottom:196.191000px;}
.y11d{bottom:198.805500px;}
.y9a{bottom:202.168500px;}
.y73{bottom:205.156500px;}
.yf1{bottom:207.397500px;}
.y136{bottom:210.760500px;}
.y67{bottom:211.134000px;}
.y4f{bottom:214.123500px;}
.y10c{bottom:216.738000px;}
.yc4{bottom:222.715500px;}
.ydb{bottom:225.331500px;}
.y1b{bottom:226.413000px;}
.y37{bottom:228.693000px;}
.y11c{bottom:231.309000px;}
.yb1{bottom:234.670500px;}
.yfc{bottom:237.286500px;}
.y72{bottom:237.660000px;}
.y135{bottom:243.264000px;}
.y66{bottom:243.637500px;}
.y4e{bottom:246.625500px;}
.yf0{bottom:248.868000px;}
.y10b{bottom:249.241500px;}
.yb8{bottom:252.603000px;}
.yc3{bottom:255.219000px;}
.yda{bottom:260.823000px;}
.y88{bottom:261.196500px;}
.y11b{bottom:263.811000px;}
.yb0{bottom:267.174000px;}
.y1a{bottom:267.882000px;}
.y36{bottom:270.163500px;}
.y134{bottom:275.767500px;}
.y65{bottom:276.141000px;}
.yfb{bottom:278.755500px;}
.y4d{bottom:279.129000px;}
.yef{bottom:281.371500px;}
.y10a{bottom:284.733000px;}
.yb7{bottom:285.106500px;}
.yc2{bottom:287.722500px;}
.y87{bottom:293.700000px;}
.yd9{bottom:296.314500px;}
.yaf{bottom:299.677500px;}
.ya7{bottom:302.665500px;}
.y144{bottom:305.281500px;}
.y99{bottom:305.655000px;}
.y19{bottom:309.351000px;}
.yfa{bottom:311.259000px;}
.y35{bottom:311.632500px;}
.y109{bottom:317.236500px;}
.y64{bottom:317.610000px;}
.y4c{bottom:320.598000px;}
.yee{bottom:322.840500px;}
.yd8{bottom:328.818000px;}
.y86{bottom:329.191500px;}
.yae{bottom:332.181000px;}
.ya6{bottom:335.169000px;}
.y98{bottom:338.158500px;}
.y18{bottom:341.854500px;}
.y34{bottom:344.136000px;}
.yf9{bottom:346.750500px;}
.y133{bottom:349.740000px;}
.yb6{bottom:350.113500px;}
.y108{bottom:352.728000px;}
.y4b{bottom:353.101500px;}
.y63{bottom:359.079000px;}
.y11a{bottom:361.321500px;}
.y85{bottom:361.695000px;}
.yd7{bottom:364.309500px;}
.yad{bottom:364.683000px;}
.ya5{bottom:367.672500px;}
.y97{bottom:370.660500px;}
.y33{bottom:376.638000px;}
.y143{bottom:379.254000px;}
.y132{bottom:382.242000px;}
.yb5{bottom:382.615500px;}
.y17{bottom:383.323500px;}
.y107{bottom:385.231500px;}
.y4a{bottom:385.605000px;}
.yf8{bottom:388.219500px;}
.y62{bottom:391.582500px;}
.yc1{bottom:394.197000px;}
.yd6{bottom:396.813000px;}
.y84{bottom:397.186500px;}
.ya4{bottom:400.176000px;}
.y96{bottom:406.153500px;}
.y32{bottom:409.141500px;}
.y131{bottom:414.745500px;}
.yb4{bottom:415.119000px;}
.y16{bottom:415.827000px;}
.y49{bottom:418.108500px;}
.y142{bottom:420.723000px;}
.y61{bottom:424.086000px;}
.yc0{bottom:426.700500px;}
.y83{bottom:429.690000px;}
.yd5{bottom:432.304500px;}
.y95{bottom:438.655500px;}
.y119{bottom:441.271500px;}
.y31{bottom:441.645000px;}
.yb3{bottom:447.622500px;}
.y15{bottom:448.330500px;}
.y48{bottom:450.610500px;}
.y141{bottom:453.226500px;}
.y130{bottom:456.214500px;}
.y60{bottom:456.589500px;}
.yf7{bottom:462.192000px;}
.yd4{bottom:464.808000px;}
.yed{bottom:467.796000px;}
.ybf{bottom:468.171000px;}
.y82{bottom:471.159000px;}
.y30{bottom:474.148500px;}
.y118{bottom:476.763000px;}
.yb2{bottom:480.126000px;}
.y14{bottom:480.834000px;}
.y47{bottom:483.114000px;}
.y140{bottom:485.730000px;}
.y12f{bottom:488.718000px;}
.y5f{bottom:489.091500px;}
.yd3{bottom:500.299500px;}
.ybe{bottom:500.673000px;}
.yec{bottom:503.289000px;}
.y81{bottom:503.662500px;}
.y2f{bottom:506.650500px;}
.y106{bottom:509.640000px;}
.y117{bottom:512.254500px;}
.y94{bottom:512.628000px;}
.y13{bottom:513.336000px;}
.y46{bottom:515.617500px;}
.y12e{bottom:521.221500px;}
.y5e{bottom:521.595000px;}
.y13f{bottom:527.199000px;}
.yd2{bottom:532.803000px;}
.ybd{bottom:533.176500px;}
.yeb{bottom:535.792500px;}
.y80{bottom:536.166000px;}
.ya3{bottom:539.154000px;}
.y105{bottom:542.143500px;}
.yac{bottom:545.131500px;}
.y12{bottom:545.839500px;}
.y116{bottom:547.747500px;}
.y2e{bottom:548.121000px;}
.y5d{bottom:554.098500px;}
.y13e{bottom:559.702500px;}
.y12d{bottom:562.690500px;}
.ybc{bottom:565.680000px;}
.yd1{bottom:568.294500px;}
.y7f{bottom:568.668000px;}
.yea{bottom:571.284000px;}
.ya2{bottom:571.657500px;}
.yab{bottom:577.635000px;}
.y11{bottom:578.343000px;}
.y2d{bottom:580.623000px;}
.y104{bottom:583.612500px;}
.y93{bottom:586.600500px;}
.y115{bottom:589.216500px;}
.y12c{bottom:595.194000px;}
.y5c{bottom:595.567500px;}
.yd0{bottom:600.798000px;}
.y13d{bottom:601.171500px;}
.ye9{bottom:603.787500px;}
.ya1{bottom:604.161000px;}
.ybb{bottom:607.149000px;}
.y7e{bottom:610.138500px;}
.y10{bottom:610.846500px;}
.y2c{bottom:613.126500px;}
.y103{bottom:616.116000px;}
.y92{bottom:619.104000px;}
.y114{bottom:621.720000px;}
.y45{bottom:622.093500px;}
.y12b{bottom:627.697500px;}
.y5b{bottom:628.071000px;}
.y13c{bottom:633.675000px;}
.ycf{bottom:636.289500px;}
.ye8{bottom:639.279000px;}
.yba{bottom:639.652500px;}
.y7d{bottom:642.640500px;}
.yf{bottom:643.348500px;}
.y2b{bottom:645.630000px;}
.y91{bottom:651.607500px;}
.y44{bottom:654.595500px;}
.y113{bottom:657.211500px;}
.y12a{bottom:660.199500px;}
.y5a{bottom:660.574500px;}
.y13b{bottom:666.178500px;}
.yce{bottom:668.793000px;}
.ye7{bottom:671.782500px;}
.y7c{bottom:675.144000px;}
.ye{bottom:675.852000px;}
.y2a{bottom:678.133500px;}
.y71{bottom:681.121500px;}
.y90{bottom:684.111000px;}
.y43{bottom:687.099000px;}
.y112{bottom:692.703000px;}
.y59{bottom:693.076500px;}
.y13a{bottom:698.680500px;}
.y129{bottom:701.670000px;}
.ye6{bottom:707.274000px;}
.y7b{bottom:707.647500px;}
.yd{bottom:708.355500px;}
.ycd{bottom:710.262000px;}
.y29{bottom:710.635500px;}
.yf6{bottom:713.625000px;}
.y8f{bottom:716.613000px;}
.y42{bottom:719.602500px;}
.y111{bottom:725.206500px;}
.y58{bottom:725.580000px;}
.y128{bottom:734.173500px;}
.y7a{bottom:740.151000px;}
.y28{bottom:743.139000px;}
.ye5{bottom:748.743000px;}
.y8e{bottom:749.116500px;}
.yc{bottom:749.824500px;}
.ycc{bottom:751.732500px;}
.y41{bottom:752.106000px;}
.y57{bottom:758.083500px;}
.y110{bottom:760.698000px;}
.y127{bottom:766.675500px;}
.y79{bottom:772.653000px;}
.y27{bottom:775.642500px;}
.yb9{bottom:778.630500px;}
.y8d{bottom:781.620000px;}
.y40{bottom:784.608000px;}
.ycb{bottom:787.224000px;}
.y102{bottom:787.597500px;}
.ye4{bottom:790.212000px;}
.y70{bottom:790.587000px;}
.yb{bottom:791.293500px;}
.ya0{bottom:793.575000px;}
.y56{bottom:799.552500px;}
.y10f{bottom:802.168500px;}
.y78{bottom:805.156500px;}
.y126{bottom:808.146000px;}
.y26{bottom:811.134000px;}
.yaa{bottom:814.123500px;}
.y3f{bottom:817.111500px;}
.ya{bottom:818.737500px;}
.y101{bottom:820.101000px;}
.y6f{bottom:823.089000px;}
.ye3{bottom:825.705000px;}
.y9f{bottom:826.078500px;}
.yca{bottom:828.693000px;}
.y55{bottom:832.056000px;}
.y125{bottom:840.648000px;}
.y10e{bottom:843.637500px;}
.y77{bottom:846.625500px;}
.y3e{bottom:849.615000px;}
.y9{bottom:854.623500px;}
.y25{bottom:855.592500px;}
.y9e{bottom:858.582000px;}
.y54{bottom:864.559500px;}
.ye2{bottom:867.174000px;}
.yc9{bottom:870.163500px;}
.y124{bottom:873.151500px;}
.y10d{bottom:876.141000px;}
.y139{bottom:879.129000px;}
.yf5{bottom:885.106500px;}
.y8{bottom:887.211000px;}
.y24{bottom:888.096000px;}
.y3d{bottom:891.084000px;}
.y9d{bottom:894.073500px;}
.y53{bottom:897.061500px;}
.ye1{bottom:908.643000px;}
.yc8{bottom:911.632500px;}
.y123{bottom:914.620500px;}
.yf4{bottom:917.610000px;}
.y6e{bottom:920.598000px;}
.y8c{bottom:923.587500px;}
.y3c{bottom:926.577000px;}
.y7{bottom:929.565000px;}
.y122{bottom:947.124000px;}
.ye0{bottom:950.113500px;}
.y6d{bottom:953.101500px;}
.y100{bottom:956.091000px;}
.y3b{bottom:959.079000px;}
.y23{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y121{bottom:979.627500px;}
.y6c{bottom:985.605000px;}
.y8b{bottom:991.582500px;}
.y22{bottom:994.572000px;}
.y120{bottom:1015.119000px;}
.y6b{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.ydf{bottom:1024.086000px;}
.y21{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;}
.h2{height:60.598349px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:104.254500px;}
.xc{left:106.299000px;}
.x6{left:116.499000px;}
.xe{left:128.500500px;}
.x10{left:147.616500px;}
.xf{left:151.131000px;}
.x4{left:157.192500px;}
.x13{left:158.542500px;}
.x12{left:159.636000px;}
.x5{left:252.715500px;}
.x7{left:353.899500px;}
.xb{left:489.412500px;}
.xa{left:516.652500px;}
.x8{left:589.603500px;}
.x3{left:616.269000px;}
.x9{left:645.733500px;}
.x2{left:648.775500px;}
.x1{left:692.794500px;}
.xd{left:794.127000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.637609pt;}
.ls1{letter-spacing:20.644898pt;}
.ws7c{word-spacing:-64.398516pt;}
.ws19{word-spacing:-63.760907pt;}
.ws44{word-spacing:-49.350942pt;}
.ws64{word-spacing:-48.840855pt;}
.ws37{word-spacing:-48.649572pt;}
.ws60{word-spacing:-48.011963pt;}
.ws5c{word-spacing:-47.884441pt;}
.ws3{word-spacing:-47.820667pt;}
.ws22{word-spacing:-47.756919pt;}
.ws59{word-spacing:-47.693158pt;}
.ws3f{word-spacing:-47.310593pt;}
.ws39{word-spacing:-46.928027pt;}
.ws4f{word-spacing:-46.609223pt;}
.ws1f{word-spacing:-46.481701pt;}
.ws6b{word-spacing:-46.417940pt;}
.ws6e{word-spacing:-46.290418pt;}
.ws69{word-spacing:-46.226657pt;}
.ws6a{word-spacing:-46.162896pt;}
.ws68{word-spacing:-46.035375pt;}
.ws8{word-spacing:-45.780331pt;}
.ws40{word-spacing:-45.652809pt;}
.ws45{word-spacing:-45.589048pt;}
.wsb{word-spacing:-45.461526pt;}
.ws5f{word-spacing:-45.397766pt;}
.ws7d{word-spacing:-45.078961pt;}
.ws4e{word-spacing:-45.015200pt;}
.ws6f{word-spacing:-44.951439pt;}
.ws63{word-spacing:-44.823917pt;}
.ws47{word-spacing:-44.760156pt;}
.ws1d{word-spacing:-44.632635pt;}
.ws5e{word-spacing:-44.568874pt;}
.ws3d{word-spacing:-44.505113pt;}
.ws62{word-spacing:-44.377591pt;}
.wsa{word-spacing:-44.186308pt;}
.ws55{word-spacing:-43.995026pt;}
.ws2e{word-spacing:-43.931265pt;}
.ws66{word-spacing:-43.867504pt;}
.ws4b{word-spacing:-43.803743pt;}
.ws1e{word-spacing:-43.739982pt;}
.ws38{word-spacing:-43.676221pt;}
.ws35{word-spacing:-43.612460pt;}
.ws28{word-spacing:-43.548699pt;}
.ws27{word-spacing:-43.484938pt;}
.ws33{word-spacing:-43.421177pt;}
.ws29{word-spacing:-43.357417pt;}
.ws2d{word-spacing:-43.293656pt;}
.ws71{word-spacing:-43.266010pt;}
.ws31{word-spacing:-43.229895pt;}
.ws3c{word-spacing:-43.166134pt;}
.ws1a{word-spacing:-43.102373pt;}
.ws11{word-spacing:-43.038612pt;}
.ws7e{word-spacing:-42.975428pt;}
.ws4{word-spacing:-42.974851pt;}
.ws78{word-spacing:-42.971250pt;}
.ws15{word-spacing:-42.911090pt;}
.ws17{word-spacing:-42.860736pt;}
.ws18{word-spacing:-42.847329pt;}
.wsc{word-spacing:-42.783568pt;}
.wsd{word-spacing:-42.719807pt;}
.ws1c{word-spacing:-42.656047pt;}
.ws13{word-spacing:-42.592286pt;}
.ws21{word-spacing:-42.528525pt;}
.ws25{word-spacing:-42.507253pt;}
.ws9{word-spacing:-42.464764pt;}
.ws10{word-spacing:-42.401003pt;}
.ws5d{word-spacing:-42.337242pt;}
.ws57{word-spacing:-42.273481pt;}
.ws4a{word-spacing:-42.209720pt;}
.wsf{word-spacing:-42.082198pt;}
.ws61{word-spacing:-42.018437pt;}
.ws26{word-spacing:-41.954677pt;}
.ws6{word-spacing:-41.890916pt;}
.ws51{word-spacing:-41.763394pt;}
.ws3e{word-spacing:-41.699633pt;}
.ws54{word-spacing:-41.635872pt;}
.ws79{word-spacing:-41.508350pt;}
.ws73{word-spacing:-41.444589pt;}
.ws77{word-spacing:-41.380828pt;}
.ws16{word-spacing:-41.317068pt;}
.ws53{word-spacing:-41.189546pt;}
.ws49{word-spacing:-41.125785pt;}
.ws5{word-spacing:-40.998263pt;}
.ws50{word-spacing:-40.934502pt;}
.ws36{word-spacing:-40.806980pt;}
.ws23{word-spacing:-40.743219pt;}
.ws70{word-spacing:-40.551937pt;}
.ws1b{word-spacing:-40.488176pt;}
.ws42{word-spacing:-40.424415pt;}
.ws76{word-spacing:-40.233132pt;}
.ws7a{word-spacing:-40.041849pt;}
.ws58{word-spacing:-39.978088pt;}
.ws4d{word-spacing:-39.850567pt;}
.ws20{word-spacing:-39.786806pt;}
.ws2c{word-spacing:-39.723045pt;}
.ws12{word-spacing:-39.659284pt;}
.ws32{word-spacing:-39.595523pt;}
.ws2b{word-spacing:-39.531762pt;}
.ws34{word-spacing:-39.404240pt;}
.ws30{word-spacing:-39.212958pt;}
.ws24{word-spacing:-39.149197pt;}
.ws2a{word-spacing:-39.085436pt;}
.ws41{word-spacing:-38.957914pt;}
.wse{word-spacing:-38.894153pt;}
.ws75{word-spacing:-38.766631pt;}
.ws7{word-spacing:-38.702870pt;}
.ws67{word-spacing:-38.575349pt;}
.ws2f{word-spacing:-38.511588pt;}
.ws56{word-spacing:-38.447827pt;}
.ws7b{word-spacing:-38.320305pt;}
.ws52{word-spacing:-38.256544pt;}
.ws65{word-spacing:-37.746457pt;}
.ws3a{word-spacing:-37.236369pt;}
.ws72{word-spacing:-36.853804pt;}
.ws4c{word-spacing:-36.790043pt;}
.ws5a{word-spacing:-36.598760pt;}
.ws46{word-spacing:-36.343717pt;}
.ws43{word-spacing:-35.833630pt;}
.ws5b{word-spacing:-35.387303pt;}
.ws6d{word-spacing:-34.940977pt;}
.ws48{word-spacing:-34.175846pt;}
.ws3b{word-spacing:-34.048324pt;}
.ws7f{word-spacing:-33.729520pt;}
.ws6c{word-spacing:-33.665759pt;}
.ws74{word-spacing:-33.538237pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws14{word-spacing:0.000000pt;}
._e{margin-left:-8.055129pt;}
._5{margin-left:-5.228394pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._6{width:1.105190pt;}
._4{width:2.337899pt;}
._a{width:3.570603pt;}
._14{width:4.557627pt;}
._b{width:5.483998pt;}
._13{width:9.086276pt;}
._c{width:11.264426pt;}
._11{width:15.812702pt;}
._f{width:17.002907pt;}
._9{width:18.214371pt;}
._12{width:19.128270pt;}
._2{width:20.020916pt;}
._7{width:21.933749pt;}
._8{width:23.336489pt;}
._d{width:25.249317pt;}
._10{width:31.878189pt;}
.fs0{font-size:42.507253pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.y76{bottom:95.686667pt;}
.y6a{bottom:101.000000pt;}
.yc7{bottom:103.324000pt;}
.y52{bottom:103.656000pt;}
.yde{bottom:110.962667pt;}
.y8a{bottom:111.294667pt;}
.yff{bottom:113.618667pt;}
.y3a{bottom:113.950667pt;}
.y1e{bottom:114.580000pt;}
.yf3{bottom:115.944000pt;}
.ya9{bottom:116.608000pt;}
.y11f{bottom:118.932000pt;}
.y138{bottom:121.589333pt;}
.y9c{bottom:121.921333pt;}
.y75{bottom:124.578667pt;}
.y69{bottom:129.892000pt;}
.yc6{bottom:132.216000pt;}
.y51{bottom:132.548000pt;}
.ydd{bottom:142.510667pt;}
.y39{bottom:142.842667pt;}
.y1d{bottom:143.472000pt;}
.yfe{bottom:145.168000pt;}
.ya8{bottom:145.500000pt;}
.yf2{bottom:147.492000pt;}
.y11e{bottom:147.824000pt;}
.y137{bottom:150.481333pt;}
.y9b{bottom:150.813333pt;}
.y74{bottom:153.469333pt;}
.y68{bottom:158.782667pt;}
.yc5{bottom:161.108000pt;}
.y50{bottom:161.440000pt;}
.ydc{bottom:171.402667pt;}
.y89{bottom:171.734667pt;}
.y1c{bottom:172.364000pt;}
.yfd{bottom:174.058667pt;}
.y38{bottom:174.392000pt;}
.y11d{bottom:176.716000pt;}
.y9a{bottom:179.705333pt;}
.y73{bottom:182.361333pt;}
.yf1{bottom:184.353333pt;}
.y136{bottom:187.342667pt;}
.y67{bottom:187.674667pt;}
.y4f{bottom:190.332000pt;}
.y10c{bottom:192.656000pt;}
.yc4{bottom:197.969333pt;}
.ydb{bottom:200.294667pt;}
.y1b{bottom:201.256000pt;}
.y37{bottom:203.282667pt;}
.y11c{bottom:205.608000pt;}
.yb1{bottom:208.596000pt;}
.yfc{bottom:210.921333pt;}
.y72{bottom:211.253333pt;}
.y135{bottom:216.234667pt;}
.y66{bottom:216.566667pt;}
.y4e{bottom:219.222667pt;}
.yf0{bottom:221.216000pt;}
.y10b{bottom:221.548000pt;}
.yb8{bottom:224.536000pt;}
.yc3{bottom:226.861333pt;}
.yda{bottom:231.842667pt;}
.y88{bottom:232.174667pt;}
.y11b{bottom:234.498667pt;}
.yb0{bottom:237.488000pt;}
.y1a{bottom:238.117333pt;}
.y36{bottom:240.145333pt;}
.y134{bottom:245.126667pt;}
.y65{bottom:245.458667pt;}
.yfb{bottom:247.782667pt;}
.y4d{bottom:248.114667pt;}
.yef{bottom:250.108000pt;}
.y10a{bottom:253.096000pt;}
.yb7{bottom:253.428000pt;}
.yc2{bottom:255.753333pt;}
.y87{bottom:261.066667pt;}
.yd9{bottom:263.390667pt;}
.yaf{bottom:266.380000pt;}
.ya7{bottom:269.036000pt;}
.y144{bottom:271.361333pt;}
.y99{bottom:271.693333pt;}
.y19{bottom:274.978667pt;}
.yfa{bottom:276.674667pt;}
.y35{bottom:277.006667pt;}
.y109{bottom:281.988000pt;}
.y64{bottom:282.320000pt;}
.y4c{bottom:284.976000pt;}
.yee{bottom:286.969333pt;}
.yd8{bottom:292.282667pt;}
.y86{bottom:292.614667pt;}
.yae{bottom:295.272000pt;}
.ya6{bottom:297.928000pt;}
.y98{bottom:300.585333pt;}
.y18{bottom:303.870667pt;}
.y34{bottom:305.898667pt;}
.yf9{bottom:308.222667pt;}
.y133{bottom:310.880000pt;}
.yb6{bottom:311.212000pt;}
.y108{bottom:313.536000pt;}
.y4b{bottom:313.868000pt;}
.y63{bottom:319.181333pt;}
.y11a{bottom:321.174667pt;}
.y85{bottom:321.506667pt;}
.yd7{bottom:323.830667pt;}
.yad{bottom:324.162667pt;}
.ya5{bottom:326.820000pt;}
.y97{bottom:329.476000pt;}
.y33{bottom:334.789333pt;}
.y143{bottom:337.114667pt;}
.y132{bottom:339.770667pt;}
.yb5{bottom:340.102667pt;}
.y17{bottom:340.732000pt;}
.y107{bottom:342.428000pt;}
.y4a{bottom:342.760000pt;}
.yf8{bottom:345.084000pt;}
.y62{bottom:348.073333pt;}
.yc1{bottom:350.397333pt;}
.yd6{bottom:352.722667pt;}
.y84{bottom:353.054667pt;}
.ya4{bottom:355.712000pt;}
.y96{bottom:361.025333pt;}
.y32{bottom:363.681333pt;}
.y131{bottom:368.662667pt;}
.yb4{bottom:368.994667pt;}
.y16{bottom:369.624000pt;}
.y49{bottom:371.652000pt;}
.y142{bottom:373.976000pt;}
.y61{bottom:376.965333pt;}
.yc0{bottom:379.289333pt;}
.y83{bottom:381.946667pt;}
.yd5{bottom:384.270667pt;}
.y95{bottom:389.916000pt;}
.y119{bottom:392.241333pt;}
.y31{bottom:392.573333pt;}
.yb3{bottom:397.886667pt;}
.y15{bottom:398.516000pt;}
.y48{bottom:400.542667pt;}
.y141{bottom:402.868000pt;}
.y130{bottom:405.524000pt;}
.y60{bottom:405.857333pt;}
.yf7{bottom:410.837333pt;}
.yd4{bottom:413.162667pt;}
.yed{bottom:415.818667pt;}
.ybf{bottom:416.152000pt;}
.y82{bottom:418.808000pt;}
.y30{bottom:421.465333pt;}
.y118{bottom:423.789333pt;}
.yb2{bottom:426.778667pt;}
.y14{bottom:427.408000pt;}
.y47{bottom:429.434667pt;}
.y140{bottom:431.760000pt;}
.y12f{bottom:434.416000pt;}
.y5f{bottom:434.748000pt;}
.yd3{bottom:444.710667pt;}
.ybe{bottom:445.042667pt;}
.yec{bottom:447.368000pt;}
.y81{bottom:447.700000pt;}
.y2f{bottom:450.356000pt;}
.y106{bottom:453.013333pt;}
.y117{bottom:455.337333pt;}
.y94{bottom:455.669333pt;}
.y13{bottom:456.298667pt;}
.y46{bottom:458.326667pt;}
.y12e{bottom:463.308000pt;}
.y5e{bottom:463.640000pt;}
.y13f{bottom:468.621333pt;}
.yd2{bottom:473.602667pt;}
.ybd{bottom:473.934667pt;}
.yeb{bottom:476.260000pt;}
.y80{bottom:476.592000pt;}
.ya3{bottom:479.248000pt;}
.y105{bottom:481.905333pt;}
.yac{bottom:484.561333pt;}
.y12{bottom:485.190667pt;}
.y116{bottom:486.886667pt;}
.y2e{bottom:487.218667pt;}
.y5d{bottom:492.532000pt;}
.y13e{bottom:497.513333pt;}
.y12d{bottom:500.169333pt;}
.ybc{bottom:502.826667pt;}
.yd1{bottom:505.150667pt;}
.y7f{bottom:505.482667pt;}
.yea{bottom:507.808000pt;}
.ya2{bottom:508.140000pt;}
.yab{bottom:513.453333pt;}
.y11{bottom:514.082667pt;}
.y2d{bottom:516.109333pt;}
.y104{bottom:518.766667pt;}
.y93{bottom:521.422667pt;}
.y115{bottom:523.748000pt;}
.y12c{bottom:529.061333pt;}
.y5c{bottom:529.393333pt;}
.yd0{bottom:534.042667pt;}
.y13d{bottom:534.374667pt;}
.ye9{bottom:536.700000pt;}
.ya1{bottom:537.032000pt;}
.ybb{bottom:539.688000pt;}
.y7e{bottom:542.345333pt;}
.y10{bottom:542.974667pt;}
.y2c{bottom:545.001333pt;}
.y103{bottom:547.658667pt;}
.y92{bottom:550.314667pt;}
.y114{bottom:552.640000pt;}
.y45{bottom:552.972000pt;}
.y12b{bottom:557.953333pt;}
.y5b{bottom:558.285333pt;}
.y13c{bottom:563.266667pt;}
.ycf{bottom:565.590667pt;}
.ye8{bottom:568.248000pt;}
.yba{bottom:568.580000pt;}
.y7d{bottom:571.236000pt;}
.yf{bottom:571.865333pt;}
.y2b{bottom:573.893333pt;}
.y91{bottom:579.206667pt;}
.y44{bottom:581.862667pt;}
.y113{bottom:584.188000pt;}
.y12a{bottom:586.844000pt;}
.y5a{bottom:587.177333pt;}
.y13b{bottom:592.158667pt;}
.yce{bottom:594.482667pt;}
.ye7{bottom:597.140000pt;}
.y7c{bottom:600.128000pt;}
.ye{bottom:600.757333pt;}
.y2a{bottom:602.785333pt;}
.y71{bottom:605.441333pt;}
.y90{bottom:608.098667pt;}
.y43{bottom:610.754667pt;}
.y112{bottom:615.736000pt;}
.y59{bottom:616.068000pt;}
.y13a{bottom:621.049333pt;}
.y129{bottom:623.706667pt;}
.ye6{bottom:628.688000pt;}
.y7b{bottom:629.020000pt;}
.yd{bottom:629.649333pt;}
.ycd{bottom:631.344000pt;}
.y29{bottom:631.676000pt;}
.yf6{bottom:634.333333pt;}
.y8f{bottom:636.989333pt;}
.y42{bottom:639.646667pt;}
.y111{bottom:644.628000pt;}
.y58{bottom:644.960000pt;}
.y128{bottom:652.598667pt;}
.y7a{bottom:657.912000pt;}
.y28{bottom:660.568000pt;}
.ye5{bottom:665.549333pt;}
.y8e{bottom:665.881333pt;}
.yc{bottom:666.510667pt;}
.ycc{bottom:668.206667pt;}
.y41{bottom:668.538667pt;}
.y57{bottom:673.852000pt;}
.y110{bottom:676.176000pt;}
.y127{bottom:681.489333pt;}
.y79{bottom:686.802667pt;}
.y27{bottom:689.460000pt;}
.yb9{bottom:692.116000pt;}
.y8d{bottom:694.773333pt;}
.y40{bottom:697.429333pt;}
.ycb{bottom:699.754667pt;}
.y102{bottom:700.086667pt;}
.ye4{bottom:702.410667pt;}
.y70{bottom:702.744000pt;}
.yb{bottom:703.372000pt;}
.ya0{bottom:705.400000pt;}
.y56{bottom:710.713333pt;}
.y10f{bottom:713.038667pt;}
.y78{bottom:715.694667pt;}
.y126{bottom:718.352000pt;}
.y26{bottom:721.008000pt;}
.yaa{bottom:723.665333pt;}
.y3f{bottom:726.321333pt;}
.ya{bottom:727.766667pt;}
.y101{bottom:728.978667pt;}
.y6f{bottom:731.634667pt;}
.ye3{bottom:733.960000pt;}
.y9f{bottom:734.292000pt;}
.yca{bottom:736.616000pt;}
.y55{bottom:739.605333pt;}
.y125{bottom:747.242667pt;}
.y10e{bottom:749.900000pt;}
.y77{bottom:752.556000pt;}
.y3e{bottom:755.213333pt;}
.y9{bottom:759.665333pt;}
.y25{bottom:760.526667pt;}
.y9e{bottom:763.184000pt;}
.y54{bottom:768.497333pt;}
.ye2{bottom:770.821333pt;}
.yc9{bottom:773.478667pt;}
.y124{bottom:776.134667pt;}
.y10d{bottom:778.792000pt;}
.y139{bottom:781.448000pt;}
.yf5{bottom:786.761333pt;}
.y8{bottom:788.632000pt;}
.y24{bottom:789.418667pt;}
.y3d{bottom:792.074667pt;}
.y9d{bottom:794.732000pt;}
.y53{bottom:797.388000pt;}
.ye1{bottom:807.682667pt;}
.yc8{bottom:810.340000pt;}
.y123{bottom:812.996000pt;}
.yf4{bottom:815.653333pt;}
.y6e{bottom:818.309333pt;}
.y8c{bottom:820.966667pt;}
.y3c{bottom:823.624000pt;}
.y7{bottom:826.280000pt;}
.y122{bottom:841.888000pt;}
.ye0{bottom:844.545333pt;}
.y6d{bottom:847.201333pt;}
.y100{bottom:849.858667pt;}
.y3b{bottom:852.514667pt;}
.y23{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y121{bottom:870.780000pt;}
.y6c{bottom:876.093333pt;}
.y8b{bottom:881.406667pt;}
.y22{bottom:884.064000pt;}
.y120{bottom:902.328000pt;}
.y6b{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.ydf{bottom:910.298667pt;}
.y21{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;}
.h2{height:53.865199pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:92.670667pt;}
.xc{left:94.488000pt;}
.x6{left:103.554667pt;}
.xe{left:114.222667pt;}
.x10{left:131.214667pt;}
.xf{left:134.338667pt;}
.x4{left:139.726667pt;}
.x13{left:140.926667pt;}
.x12{left:141.898667pt;}
.x5{left:224.636000pt;}
.x7{left:314.577333pt;}
.xb{left:435.033333pt;}
.xa{left:459.246667pt;}
.x8{left:524.092000pt;}
.x3{left:547.794667pt;}
.x9{left:573.985333pt;}
.x2{left:576.689333pt;}
.x1{left:615.817333pt;}
.xd{left:705.890667pt;}
}




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