
    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_21a3df1d5372aae124b4437a.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_ef64a7ca4149cf815a302b39.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_43c4523e9a8a91d95f6d77b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_de8602871a62218088a17c4d.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_4cc3b5eee9bd84181524a751.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b3b2150b83f6d23b81b61621.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.680000;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);}
.m3{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);}
.m1b{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);}
.m17{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);}
.m12{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);}
.mf{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);}
.m25{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);}
.m23{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);}
.m19{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);}
.m21{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);}
.m18{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);}
.m4{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);}
.m10{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);}
.m8{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);}
.md{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);}
.m11{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);}
.m7{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);}
.m1{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);}
.m16{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);}
.m13{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);}
.m9{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);}
.m27{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);}
.m14{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);}
.m15{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);}
.me{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);}
.m1f{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);}
.m1d{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);}
.m20{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);}
.mb{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);}
.m24{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);}
.ma{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);}
.mc{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);}
.m1e{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);}
.m1c{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);}
.m26{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);}
.m6{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);}
.m5{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);}
.v1{vertical-align:-17.718000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.291158px;}
.ls2{letter-spacing:1.649813px;}
.ls4{letter-spacing:28.900927px;}
.ls1{letter-spacing:30.912252px;}
.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;}
}
.ws18{word-spacing:-71.731020px;}
.ws3{word-spacing:-53.798250px;}
.ws41{word-spacing:-51.359410px;}
.ws7b{word-spacing:-50.139983px;}
.ws88{word-spacing:-49.279211px;}
.ws17{word-spacing:-48.343048px;}
.ws6b{word-spacing:-48.131514px;}
.ws7a{word-spacing:-47.916321px;}
.ws22{word-spacing:-47.820660px;}
.ws67{word-spacing:-47.199011px;}
.ws6c{word-spacing:-47.055549px;}
.ws71{word-spacing:-46.912087px;}
.ws6d{word-spacing:-46.768625px;}
.ws85{word-spacing:-46.696894px;}
.ws34{word-spacing:-46.625163px;}
.ws63{word-spacing:-46.553432px;}
.ws86{word-spacing:-46.481701px;}
.ws7c{word-spacing:-46.409970px;}
.ws82{word-spacing:-46.266508px;}
.ws81{word-spacing:-46.051315px;}
.ws7d{word-spacing:-45.979584px;}
.wsf{word-spacing:-44.831887px;}
.ws6a{word-spacing:-43.899384px;}
.ws78{word-spacing:-42.832628px;}
.ws62{word-spacing:-42.393033px;}
.ws64{word-spacing:-41.962647px;}
.ws77{word-spacing:-40.743219px;}
.ws42{word-spacing:-39.308599px;}
.ws65{word-spacing:-36.798013px;}
.ws73{word-spacing:-36.439358px;}
.ws2e{word-spacing:-35.148200px;}
.ws2{word-spacing:-30.892146px;}
.ws0{word-spacing:-29.461138px;}
.ws1{word-spacing:-29.457527px;}
.ws4a{word-spacing:-22.812298px;}
.ws53{word-spacing:-18.291410px;}
.ws5{word-spacing:-17.574100px;}
.ws11{word-spacing:-16.785059px;}
.ws2a{word-spacing:-16.641597px;}
.ws1a{word-spacing:-16.426404px;}
.ws40{word-spacing:-16.139480px;}
.ws66{word-spacing:-15.996017px;}
.ws5a{word-spacing:-15.924286px;}
.ws54{word-spacing:-15.709093px;}
.ws5c{word-spacing:-15.637362px;}
.ws31{word-spacing:-15.565631px;}
.ws16{word-spacing:-15.350438px;}
.ws3d{word-spacing:-15.278707px;}
.wsd{word-spacing:-15.206976px;}
.ws5d{word-spacing:-15.063514px;}
.ws6{word-spacing:-14.848321px;}
.ws6f{word-spacing:-14.561397px;}
.ws50{word-spacing:-14.489666px;}
.ws2b{word-spacing:-14.274473px;}
.ws87{word-spacing:-14.202742px;}
.wsb{word-spacing:-13.915818px;}
.ws2f{word-spacing:-13.772356px;}
.ws3e{word-spacing:-13.628894px;}
.ws19{word-spacing:-13.557163px;}
.ws7{word-spacing:-13.485432px;}
.ws51{word-spacing:-13.413701px;}
.ws8{word-spacing:-13.126777px;}
.wsc{word-spacing:-13.055046px;}
.ws79{word-spacing:-12.983315px;}
.ws59{word-spacing:-12.839853px;}
.ws48{word-spacing:-12.768122px;}
.ws5f{word-spacing:-12.624660px;}
.ws3f{word-spacing:-12.481197px;}
.ws49{word-spacing:-12.409466px;}
.ws23{word-spacing:-12.266004px;}
.ws1b{word-spacing:-12.194273px;}
.ws4b{word-spacing:-12.122542px;}
.ws14{word-spacing:-12.050811px;}
.ws70{word-spacing:-12.036301px;}
.ws1f{word-spacing:-11.979080px;}
.wsa{word-spacing:-11.907349px;}
.ws20{word-spacing:-11.835618px;}
.ws4{word-spacing:-11.763887px;}
.ws7f{word-spacing:-11.762948px;}
.ws6e{word-spacing:-11.761749px;}
.ws84{word-spacing:-11.738111px;}
.ws15{word-spacing:-11.692156px;}
.ws39{word-spacing:-11.620425px;}
.ws68{word-spacing:-11.553294px;}
.wse{word-spacing:-11.548694px;}
.ws1e{word-spacing:-11.476963px;}
.ws13{word-spacing:-11.405232px;}
.ws9{word-spacing:-11.333501px;}
.ws37{word-spacing:-11.261770px;}
.ws46{word-spacing:-11.190039px;}
.ws4f{word-spacing:-11.118308px;}
.ws2c{word-spacing:-11.046577px;}
.ws7e{word-spacing:-10.903115px;}
.ws35{word-spacing:-10.831384px;}
.ws45{word-spacing:-10.616191px;}
.ws24{word-spacing:-10.544460px;}
.ws58{word-spacing:-10.257536px;}
.ws83{word-spacing:-10.114074px;}
.ws44{word-spacing:-9.755419px;}
.ws52{word-spacing:-9.683688px;}
.ws4d{word-spacing:-9.611957px;}
.ws27{word-spacing:-9.540226px;}
.ws5b{word-spacing:-9.468495px;}
.ws55{word-spacing:-9.325033px;}
.ws38{word-spacing:-9.253302px;}
.ws69{word-spacing:-9.181571px;}
.ws75{word-spacing:-9.109840px;}
.ws56{word-spacing:-8.966378px;}
.ws4c{word-spacing:-8.679453px;}
.ws72{word-spacing:-8.464260px;}
.ws3c{word-spacing:-8.392529px;}
.ws30{word-spacing:-8.105605px;}
.ws60{word-spacing:-8.033874px;}
.ws80{word-spacing:-7.962143px;}
.ws29{word-spacing:-7.890412px;}
.ws5e{word-spacing:-7.818681px;}
.ws61{word-spacing:-7.746950px;}
.ws25{word-spacing:-7.675219px;}
.ws26{word-spacing:-7.460026px;}
.ws3a{word-spacing:-7.388295px;}
.ws2d{word-spacing:-7.316564px;}
.ws36{word-spacing:-6.814447px;}
.ws4e{word-spacing:-6.599254px;}
.ws76{word-spacing:-6.240599px;}
.ws28{word-spacing:-5.881944px;}
.ws12{word-spacing:-5.810213px;}
.ws32{word-spacing:-5.666751px;}
.ws57{word-spacing:-5.021171px;}
.ws43{word-spacing:-4.949440px;}
.ws47{word-spacing:-4.590785px;}
.ws89{word-spacing:-4.016937px;}
.ws21{word-spacing:-3.945206px;}
.ws74{word-spacing:-3.801744px;}
.ws33{word-spacing:-3.658282px;}
.ws1d{word-spacing:-3.012703px;}
.ws1c{word-spacing:-2.725779px;}
.ws3b{word-spacing:-1.434620px;}
.ws10{word-spacing:0.000000px;}
._5{margin-left:-8.091257px;}
._6{margin-left:-5.920201px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._7{width:1.554168px;}
._4{width:2.668393px;}
._a{width:4.447321px;}
._9{width:6.367940px;}
._14{width:12.289919px;}
._c{width:19.845590px;}
._12{width:20.883289px;}
._2{width:22.523531px;}
._8{width:24.484178px;}
._b{width:26.660037px;}
._15{width:28.594146px;}
._e{width:31.116922px;}
._13{width:32.565883px;}
._d{width:35.865510px;}
._f{width:248.906639px;}
._11{width:339.718111px;}
._10{width:467.781896px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs3{font-size:50.211660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y22{bottom:43.525500px;}
.y21{bottom:57.723000px;}
.y20{bottom:71.919000px;}
.yd9{bottom:105.934500px;}
.yc9{bottom:110.065500px;}
.y50{bottom:113.625000px;}
.yc8{bottom:114.495000px;}
.y105{bottom:119.229000px;}
.y1f{bottom:119.907000px;}
.y7f{bottom:120.349500px;}
.yfc{bottom:125.206500px;}
.y96{bottom:127.635000px;}
.y66{bottom:127.821000px;}
.y3d{bottom:131.184000px;}
.ye2{bottom:137.161500px;}
.yd8{bottom:138.438000px;}
.yb0{bottom:139.207500px;}
.y4f{bottom:146.128500px;}
.y104{bottom:151.732500px;}
.y7e{bottom:152.853000px;}
.yfb{bottom:157.710000px;}
.y95{bottom:160.138500px;}
.y65{bottom:160.324500px;}
.y108{bottom:160.698000px;}
.y1e{bottom:161.377500px;}
.y3c{bottom:163.687500px;}
.ye1{bottom:169.665000px;}
.yd7{bottom:170.941500px;}
.yaf{bottom:171.711000px;}
.y4e{bottom:178.630500px;}
.yc7{bottom:179.208000px;}
.yfa{bottom:190.212000px;}
.y94{bottom:192.640500px;}
.y103{bottom:193.201500px;}
.y1d{bottom:193.879500px;}
.y7d{bottom:194.322000px;}
.y64{bottom:195.816000px;}
.y3b{bottom:196.191000px;}
.ye0{bottom:202.168500px;}
.yd6{bottom:203.445000px;}
.yae{bottom:204.213000px;}
.y4d{bottom:211.134000px;}
.yc6{bottom:211.711500px;}
.y93{bottom:225.144000px;}
.yf9{bottom:225.705000px;}
.y1c{bottom:226.383000px;}
.y7c{bottom:226.825500px;}
.y63{bottom:228.319500px;}
.yf3{bottom:234.670500px;}
.yad{bottom:236.716500px;}
.y3a{bottom:237.660000px;}
.y4c{bottom:243.637500px;}
.yc5{bottom:244.213500px;}
.yd5{bottom:244.914000px;}
.y92{bottom:257.647500px;}
.y102{bottom:258.207000px;}
.y1b{bottom:258.886500px;}
.y62{bottom:263.811000px;}
.yf2{bottom:267.174000px;}
.y7b{bottom:268.294500px;}
.y39{bottom:270.163500px;}
.y4b{bottom:276.141000px;}
.yc4{bottom:276.717000px;}
.yd4{bottom:277.417500px;}
.yac{bottom:278.185500px;}
.y91{bottom:290.151000px;}
.y101{bottom:290.710500px;}
.y1a{bottom:291.388500px;}
.yf1{bottom:299.677500px;}
.y7a{bottom:300.798000px;}
.y38{bottom:302.665500px;}
.y61{bottom:305.281500px;}
.ydf{bottom:308.643000px;}
.yc3{bottom:309.220500px;}
.yd3{bottom:309.921000px;}
.yab{bottom:310.689000px;}
.y4a{bottom:317.610000px;}
.y90{bottom:322.653000px;}
.y19{bottom:323.892000px;}
.yf0{bottom:332.181000px;}
.y79{bottom:333.301500px;}
.y37{bottom:335.169000px;}
.yde{bottom:341.146500px;}
.yaa{bottom:343.192500px;}
.y60{bottom:346.750500px;}
.y49{bottom:350.113500px;}
.yc0{bottom:350.736000px;}
.y8f{bottom:355.156500px;}
.y18{bottom:356.395500px;}
.yef{bottom:364.683000px;}
.y36{bottom:367.672500px;}
.ydd{bottom:373.650000px;}
.y78{bottom:374.770500px;}
.ya9{bottom:375.696000px;}
.yd2{bottom:378.264000px;}
.y5f{bottom:379.254000px;}
.y48{bottom:382.615500px;}
.yc2{bottom:383.238000px;}
.y8e{bottom:387.660000px;}
.y17{bottom:388.899000px;}
.y100{bottom:397.186500px;}
.yf8{bottom:400.176000px;}
.yee{bottom:406.153500px;}
.y77{bottom:407.274000px;}
.y35{bottom:409.141500px;}
.y5e{bottom:411.757500px;}
.yd1{bottom:414.126000px;}
.y47{bottom:415.119000px;}
.yc1{bottom:415.741500px;}
.ya8{bottom:417.165000px;}
.y8d{bottom:420.163500px;}
.y16{bottom:421.401000px;}
.yff{bottom:429.690000px;}
.yf7{bottom:432.678000px;}
.yed{bottom:438.655500px;}
.y76{bottom:439.777500px;}
.y34{bottom:441.645000px;}
.ybf{bottom:445.512000px;}
.y46{bottom:447.622500px;}
.y8c{bottom:452.665500px;}
.y5d{bottom:453.226500px;}
.y15{bottom:453.904500px;}
.ya7{bottom:458.634000px;}
.yfe{bottom:462.192000px;}
.yf6{bottom:465.181500px;}
.yec{bottom:471.159000px;}
.y75{bottom:472.279500px;}
.y33{bottom:474.148500px;}
.y45{bottom:480.126000px;}
.ybe{bottom:481.374000px;}
.y8b{bottom:485.169000px;}
.y5c{bottom:485.730000px;}
.y14{bottom:486.408000px;}
.yfd{bottom:494.695500px;}
.ya6{bottom:500.104500px;}
.yeb{bottom:503.662500px;}
.y32{bottom:506.650500px;}
.ydc{bottom:512.628000px;}
.y74{bottom:513.750000px;}
.y8a{bottom:517.672500px;}
.y44{bottom:521.595000px;}
.ybd{bottom:526.825500px;}
.y5b{bottom:527.199000px;}
.y13{bottom:527.877000px;}
.yea{bottom:536.166000px;}
.y31{bottom:539.154000px;}
.ya5{bottom:541.573500px;}
.ydb{bottom:545.131500px;}
.y73{bottom:546.252000px;}
.y89{bottom:550.176000px;}
.y43{bottom:554.098500px;}
.ybc{bottom:559.329000px;}
.y5a{bottom:559.702500px;}
.ye9{bottom:568.668000px;}
.y12{bottom:569.347500px;}
.y30{bottom:571.657500px;}
.ya4{bottom:574.077000px;}
.yda{bottom:577.635000px;}
.y72{bottom:578.755500px;}
.y42{bottom:586.600500px;}
.y88{bottom:591.690000px;}
.y59{bottom:592.204500px;}
.y11{bottom:596.934000px;}
.ybb{bottom:600.798000px;}
.ye8{bottom:601.171500px;}
.y2f{bottom:604.161000px;}
.ya3{bottom:606.579000px;}
.y107{bottom:610.138500px;}
.y71{bottom:611.259000px;}
.y41{bottom:619.104000px;}
.y10{bottom:625.327500px;}
.y87{bottom:631.659000px;}
.y58{bottom:633.675000px;}
.yba{bottom:636.289500px;}
.yf5{bottom:636.663000px;}
.ya2{bottom:639.082500px;}
.y2e{bottom:639.652500px;}
.y106{bottom:642.640500px;}
.y70{bottom:645.256500px;}
.y40{bottom:651.607500px;}
.yf{bottom:661.195500px;}
.y57{bottom:666.178500px;}
.y86{bottom:667.521000px;}
.yb9{bottom:668.793000px;}
.ya1{bottom:671.586000px;}
.yf4{bottom:672.156000px;}
.ye7{bottom:675.144000px;}
.yd0{bottom:677.760000px;}
.y6f{bottom:680.748000px;}
.y2d{bottom:684.111000px;}
.ye{bottom:697.063500px;}
.ya0{bottom:704.089500px;}
.yb8{bottom:704.284500px;}
.y56{bottom:707.647500px;}
.y85{bottom:712.131000px;}
.y3f{bottom:716.613000px;}
.ycf{bottom:722.217000px;}
.y6e{bottom:725.206500px;}
.yd{bottom:725.457000px;}
.y2c{bottom:725.580000px;}
.y9f{bottom:738.087000px;}
.ye6{bottom:740.151000px;}
.y84{bottom:744.633000px;}
.yb7{bottom:745.755000px;}
.y55{bottom:749.116500px;}
.yce{bottom:757.710000px;}
.y2b{bottom:758.083500px;}
.yc{bottom:761.343000px;}
.y6d{bottom:766.675500px;}
.ye5{bottom:772.653000px;}
.y83{bottom:777.136500px;}
.y54{bottom:781.620000px;}
.yb6{bottom:787.224000px;}
.y2a{bottom:790.587000px;}
.ycd{bottom:793.201500px;}
.yb{bottom:793.930500px;}
.ye4{bottom:805.156500px;}
.y6c{bottom:808.146000px;}
.y82{bottom:811.134000px;}
.y9e{bottom:811.765500px;}
.y53{bottom:814.123500px;}
.ya{bottom:822.324000px;}
.y29{bottom:823.089000px;}
.ycc{bottom:825.705000px;}
.yb5{bottom:828.693000px;}
.y9d{bottom:844.269000px;}
.y52{bottom:846.625500px;}
.y6b{bottom:849.615000px;}
.y9{bottom:854.713500px;}
.y28{bottom:855.592500px;}
.yb4{bottom:861.196500px;}
.y9c{bottom:876.772500px;}
.y51{bottom:879.129000px;}
.y27{bottom:888.096000px;}
.y8{bottom:890.581500px;}
.y6a{bottom:891.084000px;}
.yb3{bottom:893.700000px;}
.ycb{bottom:902.665500px;}
.y9b{bottom:909.276000px;}
.ye3{bottom:911.632500px;}
.y26{bottom:920.598000px;}
.y69{bottom:923.587500px;}
.y7{bottom:929.565000px;}
.yb2{bottom:935.169000px;}
.y9a{bottom:941.778000px;}
.yca{bottom:944.136000px;}
.y25{bottom:953.101500px;}
.y68{bottom:959.079000px;}
.y81{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y99{bottom:974.281500px;}
.yb1{bottom:976.638000px;}
.y24{bottom:985.605000px;}
.y67{bottom:991.582500px;}
.y80{bottom:994.572000px;}
.y98{bottom:1006.785000px;}
.y23{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y3e{bottom:1027.074000px;}
.y97{bottom:1048.300500px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h5{height:37.658745px;}
.h4{height:53.798265px;}
.h2{height:64.557900px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:104.955000px;}
.x6{left:106.335000px;}
.x17{left:125.577000px;}
.x4{left:127.387500px;}
.x12{left:128.500500px;}
.x18{left:136.582500px;}
.x13{left:151.131000px;}
.x25{left:158.254500px;}
.x1c{left:159.286500px;}
.x24{left:160.299000px;}
.x19{left:186.006000px;}
.x14{left:200.026500px;}
.x5{left:314.391000px;}
.xf{left:336.231000px;}
.x10{left:380.740500px;}
.x1a{left:400.525500px;}
.x7{left:410.560500px;}
.x1d{left:466.324500px;}
.x1e{left:473.994000px;}
.x1f{left:486.556500px;}
.xa{left:515.344500px;}
.xc{left:522.786000px;}
.x15{left:527.482500px;}
.xb{left:535.500000px;}
.x20{left:541.258500px;}
.x8{left:553.863000px;}
.x9{left:576.082500px;}
.x3{left:616.269000px;}
.x1b{left:620.652000px;}
.xe{left:622.348500px;}
.xd{left:624.160500px;}
.x2{left:648.775500px;}
.x1{left:692.101500px;}
.x21{left:705.459000px;}
.x22{left:713.130000px;}
.x23{left:725.692500px;}
.x26{left:785.340000px;}
.x11{left:794.127000px;}
@media print{
.v1{vertical-align:-15.749333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.147696pt;}
.ls2{letter-spacing:1.466501pt;}
.ls4{letter-spacing:25.689713pt;}
.ls1{letter-spacing:27.477558pt;}
.ws18{word-spacing:-63.760907pt;}
.ws3{word-spacing:-47.820667pt;}
.ws41{word-spacing:-45.652809pt;}
.ws7b{word-spacing:-44.568874pt;}
.ws88{word-spacing:-43.803743pt;}
.ws17{word-spacing:-42.971599pt;}
.ws6b{word-spacing:-42.783568pt;}
.ws7a{word-spacing:-42.592286pt;}
.ws22{word-spacing:-42.507253pt;}
.ws67{word-spacing:-41.954677pt;}
.ws6c{word-spacing:-41.827155pt;}
.ws71{word-spacing:-41.699633pt;}
.ws6d{word-spacing:-41.572111pt;}
.ws85{word-spacing:-41.508350pt;}
.ws34{word-spacing:-41.444589pt;}
.ws63{word-spacing:-41.380828pt;}
.ws86{word-spacing:-41.317068pt;}
.ws7c{word-spacing:-41.253307pt;}
.ws82{word-spacing:-41.125785pt;}
.ws81{word-spacing:-40.934502pt;}
.ws7d{word-spacing:-40.870741pt;}
.wsf{word-spacing:-39.850567pt;}
.ws6a{word-spacing:-39.021675pt;}
.ws78{word-spacing:-38.073447pt;}
.ws62{word-spacing:-37.682696pt;}
.ws64{word-spacing:-37.300130pt;}
.ws77{word-spacing:-36.216195pt;}
.ws42{word-spacing:-34.940977pt;}
.ws65{word-spacing:-32.709345pt;}
.ws73{word-spacing:-32.390541pt;}
.ws2e{word-spacing:-31.242844pt;}
.ws2{word-spacing:-27.459686pt;}
.ws0{word-spacing:-26.187678pt;}
.ws1{word-spacing:-26.184468pt;}
.ws4a{word-spacing:-20.277598pt;}
.ws53{word-spacing:-16.259031pt;}
.ws5{word-spacing:-15.621422pt;}
.ws11{word-spacing:-14.920052pt;}
.ws2a{word-spacing:-14.792530pt;}
.ws1a{word-spacing:-14.601248pt;}
.ws40{word-spacing:-14.346204pt;}
.ws66{word-spacing:-14.218682pt;}
.ws5a{word-spacing:-14.154921pt;}
.ws54{word-spacing:-13.963639pt;}
.ws5c{word-spacing:-13.899878pt;}
.ws31{word-spacing:-13.836117pt;}
.ws16{word-spacing:-13.644834pt;}
.ws3d{word-spacing:-13.581073pt;}
.wsd{word-spacing:-13.517312pt;}
.ws5d{word-spacing:-13.389790pt;}
.ws6{word-spacing:-13.198508pt;}
.ws6f{word-spacing:-12.943464pt;}
.ws50{word-spacing:-12.879703pt;}
.ws2b{word-spacing:-12.688420pt;}
.ws87{word-spacing:-12.624660pt;}
.wsb{word-spacing:-12.369616pt;}
.ws2f{word-spacing:-12.242094pt;}
.ws3e{word-spacing:-12.114572pt;}
.ws19{word-spacing:-12.050811pt;}
.ws7{word-spacing:-11.987050pt;}
.ws51{word-spacing:-11.923290pt;}
.ws8{word-spacing:-11.668246pt;}
.wsc{word-spacing:-11.604485pt;}
.ws79{word-spacing:-11.540724pt;}
.ws59{word-spacing:-11.413202pt;}
.ws48{word-spacing:-11.349441pt;}
.ws5f{word-spacing:-11.221920pt;}
.ws3f{word-spacing:-11.094398pt;}
.ws49{word-spacing:-11.030637pt;}
.ws23{word-spacing:-10.903115pt;}
.ws1b{word-spacing:-10.839354pt;}
.ws4b{word-spacing:-10.775593pt;}
.ws14{word-spacing:-10.711832pt;}
.ws70{word-spacing:-10.698934pt;}
.ws1f{word-spacing:-10.648071pt;}
.wsa{word-spacing:-10.584311pt;}
.ws20{word-spacing:-10.520550pt;}
.ws4{word-spacing:-10.456789pt;}
.ws7f{word-spacing:-10.455954pt;}
.ws6e{word-spacing:-10.454888pt;}
.ws84{word-spacing:-10.433877pt;}
.ws15{word-spacing:-10.393028pt;}
.ws39{word-spacing:-10.329267pt;}
.ws68{word-spacing:-10.269595pt;}
.wse{word-spacing:-10.265506pt;}
.ws1e{word-spacing:-10.201745pt;}
.ws13{word-spacing:-10.137984pt;}
.ws9{word-spacing:-10.074223pt;}
.ws37{word-spacing:-10.010462pt;}
.ws46{word-spacing:-9.946701pt;}
.ws4f{word-spacing:-9.882941pt;}
.ws2c{word-spacing:-9.819180pt;}
.ws7e{word-spacing:-9.691658pt;}
.ws35{word-spacing:-9.627897pt;}
.ws45{word-spacing:-9.436614pt;}
.ws24{word-spacing:-9.372853pt;}
.ws58{word-spacing:-9.117810pt;}
.ws83{word-spacing:-8.990288pt;}
.ws44{word-spacing:-8.671483pt;}
.ws52{word-spacing:-8.607722pt;}
.ws4d{word-spacing:-8.543961pt;}
.ws27{word-spacing:-8.480201pt;}
.ws5b{word-spacing:-8.416440pt;}
.ws55{word-spacing:-8.288918pt;}
.ws38{word-spacing:-8.225157pt;}
.ws69{word-spacing:-8.161396pt;}
.ws75{word-spacing:-8.097635pt;}
.ws56{word-spacing:-7.970113pt;}
.ws4c{word-spacing:-7.715070pt;}
.ws72{word-spacing:-7.523787pt;}
.ws3c{word-spacing:-7.460026pt;}
.ws30{word-spacing:-7.204982pt;}
.ws60{word-spacing:-7.141222pt;}
.ws80{word-spacing:-7.077461pt;}
.ws29{word-spacing:-7.013700pt;}
.ws5e{word-spacing:-6.949939pt;}
.ws61{word-spacing:-6.886178pt;}
.ws25{word-spacing:-6.822417pt;}
.ws26{word-spacing:-6.631134pt;}
.ws3a{word-spacing:-6.567373pt;}
.ws2d{word-spacing:-6.503612pt;}
.ws36{word-spacing:-6.057286pt;}
.ws4e{word-spacing:-5.866003pt;}
.ws76{word-spacing:-5.547199pt;}
.ws28{word-spacing:-5.228394pt;}
.ws12{word-spacing:-5.164633pt;}
.ws32{word-spacing:-5.037112pt;}
.ws57{word-spacing:-4.463263pt;}
.ws43{word-spacing:-4.399503pt;}
.ws47{word-spacing:-4.080698pt;}
.ws89{word-spacing:-3.570611pt;}
.ws21{word-spacing:-3.506850pt;}
.ws74{word-spacing:-3.379328pt;}
.ws33{word-spacing:-3.251806pt;}
.ws1d{word-spacing:-2.677958pt;}
.ws1c{word-spacing:-2.422914pt;}
.ws3b{word-spacing:-1.275218pt;}
.ws10{word-spacing:0.000000pt;}
._5{margin-left:-7.192228pt;}
._6{margin-left:-5.262400pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._7{width:1.381483pt;}
._4{width:2.371905pt;}
._a{width:3.953175pt;}
._9{width:5.660391pt;}
._14{width:10.924372pt;}
._c{width:17.640524pt;}
._12{width:18.562924pt;}
._2{width:20.020916pt;}
._8{width:21.763714pt;}
._b{width:23.697811pt;}
._15{width:25.417019pt;}
._e{width:27.659486pt;}
._13{width:28.947452pt;}
._d{width:31.880453pt;}
._f{width:221.250346pt;}
._11{width:301.971654pt;}
._10{width:415.806129pt;}
.fs0{font-size:42.507253pt;}
.fs3{font-size:44.632587pt;}
.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;}
.yd9{bottom:94.164000pt;}
.yc9{bottom:97.836000pt;}
.y50{bottom:101.000000pt;}
.yc8{bottom:101.773333pt;}
.y105{bottom:105.981333pt;}
.y1f{bottom:106.584000pt;}
.y7f{bottom:106.977333pt;}
.yfc{bottom:111.294667pt;}
.y96{bottom:113.453333pt;}
.y66{bottom:113.618667pt;}
.y3d{bottom:116.608000pt;}
.ye2{bottom:121.921333pt;}
.yd8{bottom:123.056000pt;}
.yb0{bottom:123.740000pt;}
.y4f{bottom:129.892000pt;}
.y104{bottom:134.873333pt;}
.y7e{bottom:135.869333pt;}
.yfb{bottom:140.186667pt;}
.y95{bottom:142.345333pt;}
.y65{bottom:142.510667pt;}
.y108{bottom:142.842667pt;}
.y1e{bottom:143.446667pt;}
.y3c{bottom:145.500000pt;}
.ye1{bottom:150.813333pt;}
.yd7{bottom:151.948000pt;}
.yaf{bottom:152.632000pt;}
.y4e{bottom:158.782667pt;}
.yc7{bottom:159.296000pt;}
.yfa{bottom:169.077333pt;}
.y94{bottom:171.236000pt;}
.y103{bottom:171.734667pt;}
.y1d{bottom:172.337333pt;}
.y7d{bottom:172.730667pt;}
.y64{bottom:174.058667pt;}
.y3b{bottom:174.392000pt;}
.ye0{bottom:179.705333pt;}
.yd6{bottom:180.840000pt;}
.yae{bottom:181.522667pt;}
.y4d{bottom:187.674667pt;}
.yc6{bottom:188.188000pt;}
.y93{bottom:200.128000pt;}
.yf9{bottom:200.626667pt;}
.y1c{bottom:201.229333pt;}
.y7c{bottom:201.622667pt;}
.y63{bottom:202.950667pt;}
.yf3{bottom:208.596000pt;}
.yad{bottom:210.414667pt;}
.y3a{bottom:211.253333pt;}
.y4c{bottom:216.566667pt;}
.yc5{bottom:217.078667pt;}
.yd5{bottom:217.701333pt;}
.y92{bottom:229.020000pt;}
.y102{bottom:229.517333pt;}
.y1b{bottom:230.121333pt;}
.y62{bottom:234.498667pt;}
.yf2{bottom:237.488000pt;}
.y7b{bottom:238.484000pt;}
.y39{bottom:240.145333pt;}
.y4b{bottom:245.458667pt;}
.yc4{bottom:245.970667pt;}
.yd4{bottom:246.593333pt;}
.yac{bottom:247.276000pt;}
.y91{bottom:257.912000pt;}
.y101{bottom:258.409333pt;}
.y1a{bottom:259.012000pt;}
.yf1{bottom:266.380000pt;}
.y7a{bottom:267.376000pt;}
.y38{bottom:269.036000pt;}
.y61{bottom:271.361333pt;}
.ydf{bottom:274.349333pt;}
.yc3{bottom:274.862667pt;}
.yd3{bottom:275.485333pt;}
.yab{bottom:276.168000pt;}
.y4a{bottom:282.320000pt;}
.y90{bottom:286.802667pt;}
.y19{bottom:287.904000pt;}
.yf0{bottom:295.272000pt;}
.y79{bottom:296.268000pt;}
.y37{bottom:297.928000pt;}
.yde{bottom:303.241333pt;}
.yaa{bottom:305.060000pt;}
.y60{bottom:308.222667pt;}
.y49{bottom:311.212000pt;}
.yc0{bottom:311.765333pt;}
.y8f{bottom:315.694667pt;}
.y18{bottom:316.796000pt;}
.yef{bottom:324.162667pt;}
.y36{bottom:326.820000pt;}
.ydd{bottom:332.133333pt;}
.y78{bottom:333.129333pt;}
.ya9{bottom:333.952000pt;}
.yd2{bottom:336.234667pt;}
.y5f{bottom:337.114667pt;}
.y48{bottom:340.102667pt;}
.yc2{bottom:340.656000pt;}
.y8e{bottom:344.586667pt;}
.y17{bottom:345.688000pt;}
.y100{bottom:353.054667pt;}
.yf8{bottom:355.712000pt;}
.yee{bottom:361.025333pt;}
.y77{bottom:362.021333pt;}
.y35{bottom:363.681333pt;}
.y5e{bottom:366.006667pt;}
.yd1{bottom:368.112000pt;}
.y47{bottom:368.994667pt;}
.yc1{bottom:369.548000pt;}
.ya8{bottom:370.813333pt;}
.y8d{bottom:373.478667pt;}
.y16{bottom:374.578667pt;}
.yff{bottom:381.946667pt;}
.yf7{bottom:384.602667pt;}
.yed{bottom:389.916000pt;}
.y76{bottom:390.913333pt;}
.y34{bottom:392.573333pt;}
.ybf{bottom:396.010667pt;}
.y46{bottom:397.886667pt;}
.y8c{bottom:402.369333pt;}
.y5d{bottom:402.868000pt;}
.y15{bottom:403.470667pt;}
.ya7{bottom:407.674667pt;}
.yfe{bottom:410.837333pt;}
.yf6{bottom:413.494667pt;}
.yec{bottom:418.808000pt;}
.y75{bottom:419.804000pt;}
.y33{bottom:421.465333pt;}
.y45{bottom:426.778667pt;}
.ybe{bottom:427.888000pt;}
.y8b{bottom:431.261333pt;}
.y5c{bottom:431.760000pt;}
.y14{bottom:432.362667pt;}
.yfd{bottom:439.729333pt;}
.ya6{bottom:444.537333pt;}
.yeb{bottom:447.700000pt;}
.y32{bottom:450.356000pt;}
.ydc{bottom:455.669333pt;}
.y74{bottom:456.666667pt;}
.y8a{bottom:460.153333pt;}
.y44{bottom:463.640000pt;}
.ybd{bottom:468.289333pt;}
.y5b{bottom:468.621333pt;}
.y13{bottom:469.224000pt;}
.yea{bottom:476.592000pt;}
.y31{bottom:479.248000pt;}
.ya5{bottom:481.398667pt;}
.ydb{bottom:484.561333pt;}
.y73{bottom:485.557333pt;}
.y89{bottom:489.045333pt;}
.y43{bottom:492.532000pt;}
.ybc{bottom:497.181333pt;}
.y5a{bottom:497.513333pt;}
.ye9{bottom:505.482667pt;}
.y12{bottom:506.086667pt;}
.y30{bottom:508.140000pt;}
.ya4{bottom:510.290667pt;}
.yda{bottom:513.453333pt;}
.y72{bottom:514.449333pt;}
.y42{bottom:521.422667pt;}
.y88{bottom:525.946667pt;}
.y59{bottom:526.404000pt;}
.y11{bottom:530.608000pt;}
.ybb{bottom:534.042667pt;}
.ye8{bottom:534.374667pt;}
.y2f{bottom:537.032000pt;}
.ya3{bottom:539.181333pt;}
.y107{bottom:542.345333pt;}
.y71{bottom:543.341333pt;}
.y41{bottom:550.314667pt;}
.y10{bottom:555.846667pt;}
.y87{bottom:561.474667pt;}
.y58{bottom:563.266667pt;}
.yba{bottom:565.590667pt;}
.yf5{bottom:565.922667pt;}
.ya2{bottom:568.073333pt;}
.y2e{bottom:568.580000pt;}
.y106{bottom:571.236000pt;}
.y70{bottom:573.561333pt;}
.y40{bottom:579.206667pt;}
.yf{bottom:587.729333pt;}
.y57{bottom:592.158667pt;}
.y86{bottom:593.352000pt;}
.yb9{bottom:594.482667pt;}
.ya1{bottom:596.965333pt;}
.yf4{bottom:597.472000pt;}
.ye7{bottom:600.128000pt;}
.yd0{bottom:602.453333pt;}
.y6f{bottom:605.109333pt;}
.y2d{bottom:608.098667pt;}
.ye{bottom:619.612000pt;}
.ya0{bottom:625.857333pt;}
.yb8{bottom:626.030667pt;}
.y56{bottom:629.020000pt;}
.y85{bottom:633.005333pt;}
.y3f{bottom:636.989333pt;}
.ycf{bottom:641.970667pt;}
.y6e{bottom:644.628000pt;}
.yd{bottom:644.850667pt;}
.y2c{bottom:644.960000pt;}
.y9f{bottom:656.077333pt;}
.ye6{bottom:657.912000pt;}
.y84{bottom:661.896000pt;}
.yb7{bottom:662.893333pt;}
.y55{bottom:665.881333pt;}
.yce{bottom:673.520000pt;}
.y2b{bottom:673.852000pt;}
.yc{bottom:676.749333pt;}
.y6d{bottom:681.489333pt;}
.ye5{bottom:686.802667pt;}
.y83{bottom:690.788000pt;}
.y54{bottom:694.773333pt;}
.yb6{bottom:699.754667pt;}
.y2a{bottom:702.744000pt;}
.ycd{bottom:705.068000pt;}
.yb{bottom:705.716000pt;}
.ye4{bottom:715.694667pt;}
.y6c{bottom:718.352000pt;}
.y82{bottom:721.008000pt;}
.y9e{bottom:721.569333pt;}
.y53{bottom:723.665333pt;}
.ya{bottom:730.954667pt;}
.y29{bottom:731.634667pt;}
.ycc{bottom:733.960000pt;}
.yb5{bottom:736.616000pt;}
.y9d{bottom:750.461333pt;}
.y52{bottom:752.556000pt;}
.y6b{bottom:755.213333pt;}
.y9{bottom:759.745333pt;}
.y28{bottom:760.526667pt;}
.yb4{bottom:765.508000pt;}
.y9c{bottom:779.353333pt;}
.y51{bottom:781.448000pt;}
.y27{bottom:789.418667pt;}
.y8{bottom:791.628000pt;}
.y6a{bottom:792.074667pt;}
.yb3{bottom:794.400000pt;}
.ycb{bottom:802.369333pt;}
.y9b{bottom:808.245333pt;}
.ye3{bottom:810.340000pt;}
.y26{bottom:818.309333pt;}
.y69{bottom:820.966667pt;}
.y7{bottom:826.280000pt;}
.yb2{bottom:831.261333pt;}
.y9a{bottom:837.136000pt;}
.yca{bottom:839.232000pt;}
.y25{bottom:847.201333pt;}
.y68{bottom:852.514667pt;}
.y81{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y99{bottom:866.028000pt;}
.yb1{bottom:868.122667pt;}
.y24{bottom:876.093333pt;}
.y67{bottom:881.406667pt;}
.y80{bottom:884.064000pt;}
.y98{bottom:894.920000pt;}
.y23{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y3e{bottom:912.954667pt;}
.y97{bottom:931.822667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h5{height:33.474440pt;}
.h4{height:47.820680pt;}
.h2{height:57.384800pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:93.293333pt;}
.x6{left:94.520000pt;}
.x17{left:111.624000pt;}
.x4{left:113.233333pt;}
.x12{left:114.222667pt;}
.x18{left:121.406667pt;}
.x13{left:134.338667pt;}
.x25{left:140.670667pt;}
.x1c{left:141.588000pt;}
.x24{left:142.488000pt;}
.x19{left:165.338667pt;}
.x14{left:177.801333pt;}
.x5{left:279.458667pt;}
.xf{left:298.872000pt;}
.x10{left:338.436000pt;}
.x1a{left:356.022667pt;}
.x7{left:364.942667pt;}
.x1d{left:414.510667pt;}
.x1e{left:421.328000pt;}
.x1f{left:432.494667pt;}
.xa{left:458.084000pt;}
.xc{left:464.698667pt;}
.x15{left:468.873333pt;}
.xb{left:476.000000pt;}
.x20{left:481.118667pt;}
.x8{left:492.322667pt;}
.x9{left:512.073333pt;}
.x3{left:547.794667pt;}
.x1b{left:551.690667pt;}
.xe{left:553.198667pt;}
.xd{left:554.809333pt;}
.x2{left:576.689333pt;}
.x1{left:615.201333pt;}
.x21{left:627.074667pt;}
.x22{left:633.893333pt;}
.x23{left:645.060000pt;}
.x26{left:698.080000pt;}
.x11{left:705.890667pt;}
}




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