
    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_b0c17ae78ae7d7287e4703a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_c1a50fda4e354c6f3a2cd7b6.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_95d0c71c78290bff93a75c7b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_f980e4503721f7c35d1fbb2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_678303f292f8c219c21b400a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_7eafcb8bbcc863fb339ffef7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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:ff7;src:url('chunks/assets/font_93899b995ebf873404a9678f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cb2ceaf287b532e1c77734e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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:ff9;src:url('chunks/assets/font_aea22b452ee16b56aa3a25df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.696000;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:ffa;src:url('chunks/assets/font_597736e1543a4af57109ecea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.697000;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;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m23{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m17{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);}
.m8{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);}
.m4{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);}
.m25{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);}
.m1a{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);}
.m20{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);}
.m1f{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);}
.m1c{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m2{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);}
.m15{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);}
.mb{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);}
.m16{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);}
.m21{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);}
.m26{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);}
.m13{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);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m7{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);}
.mf{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);}
.me{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);}
.m1b{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);}
.m1e{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);}
.m19{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);}
.m11{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:21.420532px;}
.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;}
}
.ws2{word-spacing:-19.092327px;}
.ws49{word-spacing:-16.605662px;}
.ws63{word-spacing:-15.278643px;}
.ws4b{word-spacing:-3.036600px;}
.ws8c{word-spacing:-2.017440px;}
.ws36{word-spacing:-1.781313px;}
.ws81{word-spacing:-1.422659px;}
.ws1d{word-spacing:-0.824903px;}
.ws30{word-spacing:-0.585801px;}
.ws80{word-spacing:-0.107596px;}
.ws86{word-spacing:-0.080698px;}
.ws56{word-spacing:-0.053798px;}
.ws84{word-spacing:-0.026899px;}
.ws1a{word-spacing:0.000000px;}
.ws24{word-spacing:0.071731px;}
.ws25{word-spacing:0.310833px;}
.ws5a{word-spacing:0.430384px;}
.ws6a{word-spacing:0.609711px;}
.ws8f{word-spacing:0.726278px;}
.ws8{word-spacing:1.049069px;}
.ws15{word-spacing:1.087916px;}
.ws22{word-spacing:1.327018px;}
.ws54{word-spacing:1.446570px;}
.ws32{word-spacing:1.625896px;}
.ws33{word-spacing:1.745448px;}
.ws77{word-spacing:1.924774px;}
.ws83{word-spacing:1.963642px;}
.ws7f{word-spacing:1.984550px;}
.ws5d{word-spacing:2.044326px;}
.ws78{word-spacing:2.163877px;}
.ws52{word-spacing:2.223652px;}
.ws68{word-spacing:2.642082px;}
.ws87{word-spacing:2.663021px;}
.ws28{word-spacing:2.701857px;}
.ws90{word-spacing:2.770618px;}
.wsf{word-spacing:2.821408px;}
.ws1b{word-spacing:2.881184px;}
.ws8a{word-spacing:2.932013px;}
.ws35{word-spacing:2.940960px;}
.ws9{word-spacing:2.985811px;}
.ws37{word-spacing:3.000735px;}
.ws85{word-spacing:3.039610px;}
.ws55{word-spacing:3.043686px;}
.ws73{word-spacing:3.055252px;}
.ws14{word-spacing:3.060511px;}
.ws72{word-spacing:3.064255px;}
.ws74{word-spacing:3.064522px;}
.ws71{word-spacing:3.067271px;}
.ws8d{word-spacing:3.068559px;}
.ws6f{word-spacing:3.075542px;}
.ws70{word-spacing:3.088702px;}
.wsc{word-spacing:3.093408px;}
.ws18{word-spacing:3.120286px;}
.ws4{word-spacing:3.147206px;}
.ws26{word-spacing:3.180062px;}
.ws7{word-spacing:3.201005px;}
.ws3d{word-spacing:3.239838px;}
.ws91{word-spacing:3.254803px;}
.ws1{word-spacing:3.299613px;}
.ws65{word-spacing:3.305914px;}
.ws6{word-spacing:3.308602px;}
.ws10{word-spacing:3.359389px;}
.ws3{word-spacing:3.362400px;}
.ws12{word-spacing:3.419164px;}
.ws88{word-spacing:3.469997px;}
.ws48{word-spacing:3.478940px;}
.ws2b{word-spacing:3.538716px;}
.ws19{word-spacing:3.598491px;}
.ws21{word-spacing:3.658267px;}
.ws1e{word-spacing:3.718042px;}
.ws3c{word-spacing:3.777818px;}
.ws39{word-spacing:3.801728px;}
.ws45{word-spacing:3.837594px;}
.ws5b{word-spacing:3.861504px;}
.ws38{word-spacing:3.957145px;}
.ws46{word-spacing:4.016920px;}
.ws76{word-spacing:4.196247px;}
.ws2e{word-spacing:4.315798px;}
.ws43{word-spacing:4.375574px;}
.ws5f{word-spacing:4.435350px;}
.ws34{word-spacing:4.483200px;}
.wsa{word-spacing:4.492166px;}
.ws5c{word-spacing:4.495125px;}
.ws47{word-spacing:4.614676px;}
.ws13{word-spacing:4.674452px;}
.ws3e{word-spacing:4.794003px;}
.ws7b{word-spacing:5.033106px;}
.ws16{word-spacing:5.092881px;}
.ws75{word-spacing:5.152657px;}
.ws20{word-spacing:5.212432px;}
.ws0{word-spacing:5.379825px;}
.ws3b{word-spacing:5.630862px;}
.ws61{word-spacing:5.690637px;}
.ws4c{word-spacing:5.750413px;}
.ws69{word-spacing:5.810188px;}
.ws2f{word-spacing:5.929740px;}
.ws51{word-spacing:6.049291px;}
.ws4e{word-spacing:6.121021px;}
.ws62{word-spacing:6.168842px;}
.ws3a{word-spacing:6.228618px;}
.ws6b{word-spacing:6.348169px;}
.ws50{word-spacing:6.467720px;}
.ws23{word-spacing:6.527496px;}
.ws40{word-spacing:6.647047px;}
.ws2a{word-spacing:6.766598px;}
.wsb{word-spacing:6.805498px;}
.ws31{word-spacing:6.886149px;}
.ws7d{word-spacing:6.945925px;}
.ws60{word-spacing:7.065476px;}
.ws89{word-spacing:7.074490px;}
.ws17{word-spacing:7.185027px;}
.ws6d{word-spacing:7.364354px;}
.ws53{word-spacing:7.483905px;}
.ws6c{word-spacing:7.603456px;}
.ws2d{word-spacing:7.663232px;}
.ws1c{word-spacing:7.723008px;}
.ws8e{word-spacing:7.773869px;}
.ws5{word-spacing:7.881466px;}
.ws1f{word-spacing:7.962110px;}
.ws4f{word-spacing:8.260988px;}
.ws7e{word-spacing:8.440315px;}
.ws3f{word-spacing:8.559866px;}
.ws29{word-spacing:8.679417px;}
.ws2c{word-spacing:8.978295px;}
.ws41{word-spacing:9.097846px;}
.ws44{word-spacing:9.157622px;}
.ws58{word-spacing:9.217398px;}
.ws6e{word-spacing:9.396724px;}
.ws4d{word-spacing:9.576051px;}
.ws42{word-spacing:9.635827px;}
.ws5e{word-spacing:9.815154px;}
.ws8b{word-spacing:10.248595px;}
.ws27{word-spacing:10.353134px;}
.ws57{word-spacing:10.472685px;}
.ws7a{word-spacing:10.532461px;}
.ws59{word-spacing:10.711788px;}
.ws64{word-spacing:10.776345px;}
.ws66{word-spacing:10.793839px;}
.ws11{word-spacing:11.010666px;}
.ws4a{word-spacing:11.130217px;}
.ws67{word-spacing:11.144687px;}
.ws79{word-spacing:11.249768px;}
.ws82{word-spacing:11.847524px;}
.ws7c{word-spacing:12.265953px;}
.wsd{word-spacing:18.376038px;}
.wse{word-spacing:58.281600px;}
._4{margin-left:-29.887800px;}
._7{margin-left:-28.136563px;}
._17{margin-left:-26.627812px;}
._0{margin-left:-8.091257px;}
._c{margin-left:-5.999069px;}
._3{margin-left:-4.960786px;}
._f{margin-left:-3.868656px;}
._1{margin-left:-2.668393px;}
._5{margin-left:-1.613941px;}
._2{width:1.912819px;}
._6{width:3.120307px;}
._11{width:4.342110px;}
._a{width:16.835210px;}
._b{width:18.927356px;}
._9{width:21.019502px;}
._8{width:23.189496px;}
._13{width:24.585869px;}
._18{width:25.664233px;}
._12{width:27.833921px;}
._e{width:30.148068px;}
._14{width:36.714432px;}
._16{width:39.111437px;}
._15{width:47.246318px;}
._10{width:68.741940px;}
._d{width:80.697600px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y27{bottom:193.617000px;}
.y91{bottom:199.330500px;}
.y115{bottom:210.231000px;}
.y26{bottom:211.549500px;}
.yd1{bottom:215.769000px;}
.y90{bottom:222.669000px;}
.y114{bottom:226.669500px;}
.y25{bottom:229.482000px;}
.yed{bottom:229.603500px;}
.yd0{bottom:232.206000px;}
.y8f{bottom:240.601500px;}
.y113{bottom:243.108000px;}
.y24{bottom:247.414500px;}
.yec{bottom:247.536000px;}
.ycf{bottom:248.644500px;}
.y8e{bottom:258.535500px;}
.y112{bottom:259.209000px;}
.yce{bottom:265.083000px;}
.y23{bottom:265.347000px;}
.yeb{bottom:265.468500px;}
.y4e{bottom:268.944000px;}
.y111{bottom:275.646000px;}
.y8d{bottom:276.468000px;}
.ycd{bottom:281.521500px;}
.y22{bottom:283.281000px;}
.yea{bottom:283.524000px;}
.y110{bottom:292.084500px;}
.y8c{bottom:294.400500px;}
.ycc{bottom:297.960000px;}
.y21{bottom:301.213500px;}
.ye9{bottom:301.456500px;}
.y10f{bottom:308.185500px;}
.y8b{bottom:312.333000px;}
.y4d{bottom:317.371500px;}
.y20{bottom:319.146000px;}
.ye8{bottom:319.389000px;}
.ycb{bottom:320.682000px;}
.y10e{bottom:324.624000px;}
.y8a{bottom:330.594000px;}
.y4c{bottom:335.305500px;}
.y1f{bottom:337.078500px;}
.ye7{bottom:337.321500px;}
.yca{bottom:338.614500px;}
.y10d{bottom:341.062500px;}
.y4b{bottom:353.238000px;}
.y1e{bottom:355.011000px;}
.ye6{bottom:355.254000px;}
.y89{bottom:356.022000px;}
.yc9{bottom:356.548500px;}
.y10c{bottom:357.162000px;}
.y4a{bottom:371.292000px;}
.y6d{bottom:372.943500px;}
.y1d{bottom:373.045500px;}
.ye5{bottom:373.308000px;}
.y10b{bottom:373.600500px;}
.y87{bottom:373.954500px;}
.yc8{bottom:374.481000px;}
.y88{bottom:379.377000px;}
.y49{bottom:389.224500px;}
.y10a{bottom:390.039000px;}
.y6c{bottom:390.877500px;}
.ya9{bottom:390.927000px;}
.y1c{bottom:390.978000px;}
.ye4{bottom:391.242000px;}
.y86{bottom:391.887000px;}
.yc7{bottom:392.413500px;}
.y109{bottom:406.477500px;}
.y48{bottom:407.157000px;}
.y6b{bottom:408.810000px;}
.ya8{bottom:408.861000px;}
.y1b{bottom:408.912000px;}
.ye3{bottom:409.174500px;}
.y85{bottom:409.819500px;}
.yc6{bottom:410.490000px;}
.y108{bottom:422.577000px;}
.y47{bottom:425.089500px;}
.y6a{bottom:426.742500px;}
.ya7{bottom:426.793500px;}
.y1a{bottom:426.844500px;}
.ye2{bottom:427.107000px;}
.y84{bottom:427.753500px;}
.yc5{bottom:428.422500px;}
.y107{bottom:439.015500px;}
.y46{bottom:443.023500px;}
.y69{bottom:444.675000px;}
.ya6{bottom:444.726000px;}
.y19{bottom:444.777000px;}
.ye1{bottom:445.039500px;}
.y83{bottom:445.686000px;}
.yc4{bottom:446.355000px;}
.y106{bottom:455.454000px;}
.y45{bottom:460.956000px;}
.y68{bottom:462.607500px;}
.ya5{bottom:462.658500px;}
.y18{bottom:462.709500px;}
.ye0{bottom:462.972000px;}
.y82{bottom:463.618500px;}
.yc3{bottom:464.287500px;}
.y105{bottom:471.892500px;}
.y44{bottom:479.010000px;}
.y67{bottom:480.540000px;}
.ya4{bottom:480.591000px;}
.y17{bottom:480.642000px;}
.ydf{bottom:480.904500px;}
.y81{bottom:481.551000px;}
.yc2{bottom:482.220000px;}
.y104{bottom:487.992000px;}
.y43{bottom:496.942500px;}
.y66{bottom:498.474000px;}
.ya3{bottom:498.523500px;}
.yde{bottom:498.838500px;}
.y80{bottom:499.483500px;}
.yc0{bottom:500.154000px;}
.y16{bottom:502.074000px;}
.y103{bottom:504.430500px;}
.yc1{bottom:505.576500px;}
.y42{bottom:514.875000px;}
.y65{bottom:516.406500px;}
.ya2{bottom:516.457500px;}
.ydd{bottom:516.771000px;}
.y7f{bottom:517.416000px;}
.ybf{bottom:518.086500px;}
.y102{bottom:520.869000px;}
.y41{bottom:532.807500px;}
.y64{bottom:534.339000px;}
.ydc{bottom:534.703500px;}
.y7e{bottom:535.677000px;}
.ybe{bottom:536.019000px;}
.y101{bottom:536.968500px;}
.ya1{bottom:539.127000px;}
.y40{bottom:550.741500px;}
.y63{bottom:552.271500px;}
.ydb{bottom:552.636000px;}
.y15{bottom:553.228500px;}
.y100{bottom:553.407000px;}
.ybd{bottom:559.152000px;}
.y7d{bottom:561.105000px;}
.y3f{bottom:568.674000px;}
.yff{bottom:569.508000px;}
.y62{bottom:570.204000px;}
.yda{bottom:570.568500px;}
.ya0{bottom:576.741000px;}
.y14{bottom:578.938500px;}
.y7c{bottom:579.037500px;}
.yfe{bottom:585.946500px;}
.y3e{bottom:586.606500px;}
.y61{bottom:588.136500px;}
.yd9{bottom:588.501000px;}
.y13{bottom:595.377000px;}
.y7b{bottom:596.971500px;}
.ybc{bottom:597.228000px;}
.y9f{bottom:597.916500px;}
.yfd{bottom:602.383500px;}
.y3d{bottom:604.539000px;}
.y60{bottom:606.070500px;}
.yd8{bottom:606.435000px;}
.y12{bottom:611.815500px;}
.y7a{bottom:614.904000px;}
.ybb{bottom:615.160500px;}
.yfc{bottom:618.484500px;}
.y3c{bottom:622.471500px;}
.y5f{bottom:624.003000px;}
.yd7{bottom:624.367500px;}
.y11{bottom:628.254000px;}
.y79{bottom:632.836500px;}
.yba{bottom:633.093000px;}
.yfb{bottom:634.584000px;}
.y3b{bottom:640.525500px;}
.y5e{bottom:641.935500px;}
.yd6{bottom:642.300000px;}
.y10{bottom:644.692500px;}
.y9e{bottom:645.996000px;}
.y78{bottom:650.769000px;}
.yfa{bottom:651.022500px;}
.yb9{bottom:651.025500px;}
.y3a{bottom:658.459500px;}
.y5d{bottom:659.868000px;}
.yd5{bottom:660.232500px;}
.yf{bottom:661.131000px;}
.y9d{bottom:663.928500px;}
.yf9{bottom:667.461000px;}
.y77{bottom:668.701500px;}
.yb8{bottom:668.959500px;}
.y39{bottom:676.392000px;}
.ye{bottom:677.569500px;}
.y5c{bottom:677.800500px;}
.yd4{bottom:681.762000px;}
.y9c{bottom:681.861000px;}
.yf8{bottom:683.560500px;}
.y76{bottom:686.634000px;}
.yb7{bottom:687.034500px;}
.yd{bottom:694.008000px;}
.y38{bottom:694.324500px;}
.y5b{bottom:695.733000px;}
.y9b{bottom:699.793500px;}
.yf7{bottom:699.999000px;}
.y75{bottom:704.568000px;}
.yb6{bottom:704.967000px;}
.yc{bottom:710.446500px;}
.y37{bottom:712.257000px;}
.y5a{bottom:713.667000px;}
.yf6{bottom:716.437500px;}
.y9a{bottom:717.726000px;}
.y74{bottom:722.500500px;}
.yb5{bottom:722.901000px;}
.yb{bottom:726.885000px;}
.y36{bottom:730.189500px;}
.y59{bottom:731.599500px;}
.yf5{bottom:732.538500px;}
.y99{bottom:735.660000px;}
.y73{bottom:740.433000px;}
.yb4{bottom:740.833500px;}
.ya{bottom:743.322000px;}
.y35{bottom:748.122000px;}
.yf4{bottom:748.977000px;}
.y58{bottom:749.532000px;}
.y98{bottom:753.648000px;}
.y72{bottom:758.692500px;}
.yb3{bottom:758.766000px;}
.y9{bottom:759.760500px;}
.yf3{bottom:765.414000px;}
.y34{bottom:766.056000px;}
.y57{bottom:767.464500px;}
.y8{bottom:776.199000px;}
.yb1{bottom:776.698500px;}
.y97{bottom:777.817500px;}
.yf2{bottom:781.515000px;}
.yb2{bottom:782.122500px;}
.y33{bottom:783.988500px;}
.y71{bottom:784.092000px;}
.y56{bottom:785.397000px;}
.y7{bottom:792.637500px;}
.yb0{bottom:794.631000px;}
.y96{bottom:795.750000px;}
.yf1{bottom:797.953500px;}
.y32{bottom:801.921000px;}
.y70{bottom:802.024500px;}
.y55{bottom:803.329500px;}
.yae{bottom:812.563500px;}
.y95{bottom:813.682500px;}
.yf0{bottom:814.053000px;}
.yaf{bottom:817.987500px;}
.y31{bottom:819.853500px;}
.y54{bottom:821.263500px;}
.y6f{bottom:824.434500px;}
.yef{bottom:830.491500px;}
.yac{bottom:830.497500px;}
.y94{bottom:831.615000px;}
.yad{bottom:835.920000px;}
.y30{bottom:837.786000px;}
.yd3{bottom:837.907500px;}
.y53{bottom:839.196000px;}
.yab{bottom:848.430000px;}
.y93{bottom:849.547500px;}
.y6{bottom:854.661000px;}
.y2f{bottom:855.718500px;}
.yd2{bottom:855.840000px;}
.y52{bottom:857.128500px;}
.yee{bottom:863.172000px;}
.y92{bottom:867.537000px;}
.y5{bottom:871.099500px;}
.yaa{bottom:871.563000px;}
.y2e{bottom:873.652500px;}
.y6e{bottom:873.774000px;}
.y51{bottom:875.061000px;}
.y2d{bottom:891.706500px;}
.y50{bottom:892.993500px;}
.y4{bottom:902.419500px;}
.y2c{bottom:909.639000px;}
.y4f{bottom:910.926000px;}
.y3{bottom:920.353500px;}
.y2b{bottom:927.571500px;}
.y2a{bottom:945.504000px;}
.y29{bottom:963.436500px;}
.y2{bottom:972.403500px;}
.y28{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.ha{height:24.245146px;}
.h8{height:26.540366px;}
.h9{height:28.285733px;}
.h4{height:37.336090px;}
.h5{height:37.658880px;}
.h3{height:40.348800px;}
.h7{height:41.842920px;}
.h2{height:44.831700px;}
.h6{height:50.211840px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x27{left:201.001500px;}
.x5{left:202.147500px;}
.x16{left:206.256000px;}
.x1{left:209.029500px;}
.x10{left:222.814500px;}
.xb{left:224.563500px;}
.x39{left:225.664500px;}
.x38{left:227.281500px;}
.x17{left:237.060000px;}
.x22{left:239.292000px;}
.x7{left:244.666500px;}
.x23{left:246.763500px;}
.x32{left:254.734500px;}
.x37{left:258.606000px;}
.x24{left:265.278000px;}
.x33{left:266.563500px;}
.x2e{left:268.660500px;}
.x25{left:272.749500px;}
.x2f{left:280.423500px;}
.x14{left:284.826000px;}
.x4{left:286.209000px;}
.x18{left:289.950000px;}
.x15{left:291.531000px;}
.x19{left:297.421500px;}
.x1e{left:315.864000px;}
.x8{left:317.440500px;}
.x1f{left:323.335500px;}
.x2{left:326.700000px;}
.x26{left:332.344500px;}
.x30{left:371.011500px;}
.x31{left:382.776000px;}
.x6{left:405.030000px;}
.x3{left:416.262000px;}
.x20{left:438.778500px;}
.x21{left:446.250000px;}
.x13{left:476.961000px;}
.x34{left:484.479000px;}
.x35{left:491.182500px;}
.x12{left:517.768500px;}
.xe{left:541.003500px;}
.xf{left:558.130500px;}
.x28{left:566.212500px;}
.x11{left:578.370000px;}
.x29{left:581.155500px;}
.x36{left:587.472000px;}
.xc{left:599.352000px;}
.x1a{left:604.788000px;}
.xd{left:606.825000px;}
.x1b{left:612.259500px;}
.x9{left:624.430500px;}
.xa{left:631.902000px;}
.x2a{left:635.341500px;}
.x2b{left:642.046500px;}
.x1c{left:707.107500px;}
.x2c{left:712.176000px;}
.x1d{left:714.579000px;}
.x2d{left:718.879500px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:19.040473pt;}
.ws2{word-spacing:-16.970957pt;}
.ws49{word-spacing:-14.760588pt;}
.ws63{word-spacing:-13.581016pt;}
.ws4b{word-spacing:-2.699200pt;}
.ws8c{word-spacing:-1.793280pt;}
.ws36{word-spacing:-1.583389pt;}
.ws81{word-spacing:-1.264586pt;}
.ws1d{word-spacing:-0.733247pt;}
.ws30{word-spacing:-0.520712pt;}
.ws80{word-spacing:-0.095641pt;}
.ws86{word-spacing:-0.071731pt;}
.ws56{word-spacing:-0.047821pt;}
.ws84{word-spacing:-0.023910pt;}
.ws1a{word-spacing:0.000000pt;}
.ws24{word-spacing:0.063761pt;}
.ws25{word-spacing:0.276296pt;}
.ws5a{word-spacing:0.382564pt;}
.ws6a{word-spacing:0.541965pt;}
.ws8f{word-spacing:0.645581pt;}
.ws8{word-spacing:0.932506pt;}
.ws15{word-spacing:0.967036pt;}
.ws22{word-spacing:1.179572pt;}
.ws54{word-spacing:1.285840pt;}
.ws32{word-spacing:1.445241pt;}
.ws33{word-spacing:1.551509pt;}
.ws77{word-spacing:1.710911pt;}
.ws83{word-spacing:1.745459pt;}
.ws7f{word-spacing:1.764044pt;}
.ws5d{word-spacing:1.817178pt;}
.ws78{word-spacing:1.923446pt;}
.ws52{word-spacing:1.976580pt;}
.ws68{word-spacing:2.348517pt;}
.ws87{word-spacing:2.367130pt;}
.ws28{word-spacing:2.401651pt;}
.ws90{word-spacing:2.462771pt;}
.wsf{word-spacing:2.507919pt;}
.ws1b{word-spacing:2.561052pt;}
.ws8a{word-spacing:2.606234pt;}
.ws35{word-spacing:2.614186pt;}
.ws9{word-spacing:2.654054pt;}
.ws37{word-spacing:2.667320pt;}
.ws85{word-spacing:2.701875pt;}
.ws55{word-spacing:2.705498pt;}
.ws73{word-spacing:2.715779pt;}
.ws14{word-spacing:2.720454pt;}
.ws72{word-spacing:2.723782pt;}
.ws74{word-spacing:2.724019pt;}
.ws71{word-spacing:2.726463pt;}
.ws8d{word-spacing:2.727608pt;}
.ws6f{word-spacing:2.733815pt;}
.ws70{word-spacing:2.745513pt;}
.wsc{word-spacing:2.749696pt;}
.ws18{word-spacing:2.773588pt;}
.ws4{word-spacing:2.797517pt;}
.ws26{word-spacing:2.826722pt;}
.ws7{word-spacing:2.845338pt;}
.ws3d{word-spacing:2.879856pt;}
.ws91{word-spacing:2.893158pt;}
.ws1{word-spacing:2.932989pt;}
.ws65{word-spacing:2.938590pt;}
.ws6{word-spacing:2.940979pt;}
.ws10{word-spacing:2.986123pt;}
.ws3{word-spacing:2.988800pt;}
.ws12{word-spacing:3.039257pt;}
.ws88{word-spacing:3.084442pt;}
.ws48{word-spacing:3.092391pt;}
.ws2b{word-spacing:3.145525pt;}
.ws19{word-spacing:3.198659pt;}
.ws21{word-spacing:3.251793pt;}
.ws1e{word-spacing:3.304927pt;}
.ws3c{word-spacing:3.358060pt;}
.ws39{word-spacing:3.379314pt;}
.ws45{word-spacing:3.411194pt;}
.ws5b{word-spacing:3.432448pt;}
.ws38{word-spacing:3.517462pt;}
.ws46{word-spacing:3.570596pt;}
.ws76{word-spacing:3.729997pt;}
.ws2e{word-spacing:3.836265pt;}
.ws43{word-spacing:3.889399pt;}
.ws5f{word-spacing:3.942533pt;}
.ws34{word-spacing:3.985067pt;}
.wsa{word-spacing:3.993037pt;}
.ws5c{word-spacing:3.995667pt;}
.ws47{word-spacing:4.101935pt;}
.ws13{word-spacing:4.155068pt;}
.ws3e{word-spacing:4.261336pt;}
.ws7b{word-spacing:4.473872pt;}
.ws16{word-spacing:4.527005pt;}
.ws75{word-spacing:4.580139pt;}
.ws20{word-spacing:4.633273pt;}
.ws0{word-spacing:4.782067pt;}
.ws3b{word-spacing:5.005210pt;}
.ws61{word-spacing:5.058344pt;}
.ws4c{word-spacing:5.111478pt;}
.ws69{word-spacing:5.164612pt;}
.ws2f{word-spacing:5.270880pt;}
.ws51{word-spacing:5.377147pt;}
.ws4e{word-spacing:5.440908pt;}
.ws62{word-spacing:5.483415pt;}
.ws3a{word-spacing:5.536549pt;}
.ws6b{word-spacing:5.642817pt;}
.ws50{word-spacing:5.749084pt;}
.ws23{word-spacing:5.802218pt;}
.ws40{word-spacing:5.908486pt;}
.ws2a{word-spacing:6.014754pt;}
.wsb{word-spacing:6.049331pt;}
.ws31{word-spacing:6.121021pt;}
.ws7d{word-spacing:6.174155pt;}
.ws60{word-spacing:6.280423pt;}
.ws89{word-spacing:6.288435pt;}
.ws17{word-spacing:6.386691pt;}
.ws6d{word-spacing:6.546092pt;}
.ws53{word-spacing:6.652360pt;}
.ws6c{word-spacing:6.758628pt;}
.ws2d{word-spacing:6.811762pt;}
.ws1c{word-spacing:6.864896pt;}
.ws8e{word-spacing:6.910106pt;}
.ws5{word-spacing:7.005747pt;}
.ws1f{word-spacing:7.077431pt;}
.ws4f{word-spacing:7.343100pt;}
.ws7e{word-spacing:7.502502pt;}
.ws3f{word-spacing:7.608770pt;}
.ws29{word-spacing:7.715037pt;}
.ws2c{word-spacing:7.980707pt;}
.ws41{word-spacing:8.086975pt;}
.ws44{word-spacing:8.140108pt;}
.ws58{word-spacing:8.193242pt;}
.ws6e{word-spacing:8.352644pt;}
.ws4d{word-spacing:8.512045pt;}
.ws42{word-spacing:8.565179pt;}
.ws5e{word-spacing:8.724581pt;}
.ws8b{word-spacing:9.109862pt;}
.ws27{word-spacing:9.202786pt;}
.ws57{word-spacing:9.309053pt;}
.ws7a{word-spacing:9.362187pt;}
.ws59{word-spacing:9.521589pt;}
.ws64{word-spacing:9.578974pt;}
.ws66{word-spacing:9.594523pt;}
.ws11{word-spacing:9.787258pt;}
.ws4a{word-spacing:9.893526pt;}
.ws67{word-spacing:9.906389pt;}
.ws79{word-spacing:9.999794pt;}
.ws82{word-spacing:10.531132pt;}
.ws7c{word-spacing:10.903069pt;}
.wsd{word-spacing:16.334256pt;}
.wse{word-spacing:51.805867pt;}
._4{margin-left:-26.566933pt;}
._7{margin-left:-25.010278pt;}
._17{margin-left:-23.669166pt;}
._0{margin-left:-7.192228pt;}
._c{margin-left:-5.332506pt;}
._3{margin-left:-4.409588pt;}
._f{margin-left:-3.438805pt;}
._1{margin-left:-2.371905pt;}
._5{margin-left:-1.434614pt;}
._2{width:1.700284pt;}
._6{width:2.773606pt;}
._11{width:3.859653pt;}
._a{width:14.964631pt;}
._b{width:16.824317pt;}
._9{width:18.684002pt;}
._8{width:20.612885pt;}
._13{width:21.854106pt;}
._18{width:22.812652pt;}
._12{width:24.741263pt;}
._e{width:26.798283pt;}
._14{width:32.635051pt;}
._16{width:34.765722pt;}
._15{width:41.996727pt;}
._10{width:61.103947pt;}
._d{width:71.731200pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:172.104000pt;}
.y91{bottom:177.182667pt;}
.y115{bottom:186.872000pt;}
.y26{bottom:188.044000pt;}
.yd1{bottom:191.794667pt;}
.y90{bottom:197.928000pt;}
.y114{bottom:201.484000pt;}
.y25{bottom:203.984000pt;}
.yed{bottom:204.092000pt;}
.yd0{bottom:206.405333pt;}
.y8f{bottom:213.868000pt;}
.y113{bottom:216.096000pt;}
.y24{bottom:219.924000pt;}
.yec{bottom:220.032000pt;}
.ycf{bottom:221.017333pt;}
.y8e{bottom:229.809333pt;}
.y112{bottom:230.408000pt;}
.yce{bottom:235.629333pt;}
.y23{bottom:235.864000pt;}
.yeb{bottom:235.972000pt;}
.y4e{bottom:239.061333pt;}
.y111{bottom:245.018667pt;}
.y8d{bottom:245.749333pt;}
.ycd{bottom:250.241333pt;}
.y22{bottom:251.805333pt;}
.yea{bottom:252.021333pt;}
.y110{bottom:259.630667pt;}
.y8c{bottom:261.689333pt;}
.ycc{bottom:264.853333pt;}
.y21{bottom:267.745333pt;}
.ye9{bottom:267.961333pt;}
.y10f{bottom:273.942667pt;}
.y8b{bottom:277.629333pt;}
.y4d{bottom:282.108000pt;}
.y20{bottom:283.685333pt;}
.ye8{bottom:283.901333pt;}
.ycb{bottom:285.050667pt;}
.y10e{bottom:288.554667pt;}
.y8a{bottom:293.861333pt;}
.y4c{bottom:298.049333pt;}
.y1f{bottom:299.625333pt;}
.ye7{bottom:299.841333pt;}
.yca{bottom:300.990667pt;}
.y10d{bottom:303.166667pt;}
.y4b{bottom:313.989333pt;}
.y1e{bottom:315.565333pt;}
.ye6{bottom:315.781333pt;}
.y89{bottom:316.464000pt;}
.yc9{bottom:316.932000pt;}
.y10c{bottom:317.477333pt;}
.y4a{bottom:330.037333pt;}
.y6d{bottom:331.505333pt;}
.y1d{bottom:331.596000pt;}
.ye5{bottom:331.829333pt;}
.y10b{bottom:332.089333pt;}
.y87{bottom:332.404000pt;}
.yc8{bottom:332.872000pt;}
.y88{bottom:337.224000pt;}
.y49{bottom:345.977333pt;}
.y10a{bottom:346.701333pt;}
.y6c{bottom:347.446667pt;}
.ya9{bottom:347.490667pt;}
.y1c{bottom:347.536000pt;}
.ye4{bottom:347.770667pt;}
.y86{bottom:348.344000pt;}
.yc7{bottom:348.812000pt;}
.y109{bottom:361.313333pt;}
.y48{bottom:361.917333pt;}
.y6b{bottom:363.386667pt;}
.ya8{bottom:363.432000pt;}
.y1b{bottom:363.477333pt;}
.ye3{bottom:363.710667pt;}
.y85{bottom:364.284000pt;}
.yc6{bottom:364.880000pt;}
.y108{bottom:375.624000pt;}
.y47{bottom:377.857333pt;}
.y6a{bottom:379.326667pt;}
.ya7{bottom:379.372000pt;}
.y1a{bottom:379.417333pt;}
.ye2{bottom:379.650667pt;}
.y84{bottom:380.225333pt;}
.yc5{bottom:380.820000pt;}
.y107{bottom:390.236000pt;}
.y46{bottom:393.798667pt;}
.y69{bottom:395.266667pt;}
.ya6{bottom:395.312000pt;}
.y19{bottom:395.357333pt;}
.ye1{bottom:395.590667pt;}
.y83{bottom:396.165333pt;}
.yc4{bottom:396.760000pt;}
.y106{bottom:404.848000pt;}
.y45{bottom:409.738667pt;}
.y68{bottom:411.206667pt;}
.ya5{bottom:411.252000pt;}
.y18{bottom:411.297333pt;}
.ye0{bottom:411.530667pt;}
.y82{bottom:412.105333pt;}
.yc3{bottom:412.700000pt;}
.y105{bottom:419.460000pt;}
.y44{bottom:425.786667pt;}
.y67{bottom:427.146667pt;}
.ya4{bottom:427.192000pt;}
.y17{bottom:427.237333pt;}
.ydf{bottom:427.470667pt;}
.y81{bottom:428.045333pt;}
.yc2{bottom:428.640000pt;}
.y104{bottom:433.770667pt;}
.y43{bottom:441.726667pt;}
.y66{bottom:443.088000pt;}
.ya3{bottom:443.132000pt;}
.yde{bottom:443.412000pt;}
.y80{bottom:443.985333pt;}
.yc0{bottom:444.581333pt;}
.y16{bottom:446.288000pt;}
.y103{bottom:448.382667pt;}
.yc1{bottom:449.401333pt;}
.y42{bottom:457.666667pt;}
.y65{bottom:459.028000pt;}
.ya2{bottom:459.073333pt;}
.ydd{bottom:459.352000pt;}
.y7f{bottom:459.925333pt;}
.ybf{bottom:460.521333pt;}
.y102{bottom:462.994667pt;}
.y41{bottom:473.606667pt;}
.y64{bottom:474.968000pt;}
.ydc{bottom:475.292000pt;}
.y7e{bottom:476.157333pt;}
.ybe{bottom:476.461333pt;}
.y101{bottom:477.305333pt;}
.ya1{bottom:479.224000pt;}
.y40{bottom:489.548000pt;}
.y63{bottom:490.908000pt;}
.ydb{bottom:491.232000pt;}
.y15{bottom:491.758667pt;}
.y100{bottom:491.917333pt;}
.ybd{bottom:497.024000pt;}
.y7d{bottom:498.760000pt;}
.y3f{bottom:505.488000pt;}
.yff{bottom:506.229333pt;}
.y62{bottom:506.848000pt;}
.yda{bottom:507.172000pt;}
.ya0{bottom:512.658667pt;}
.y14{bottom:514.612000pt;}
.y7c{bottom:514.700000pt;}
.yfe{bottom:520.841333pt;}
.y3e{bottom:521.428000pt;}
.y61{bottom:522.788000pt;}
.yd9{bottom:523.112000pt;}
.y13{bottom:529.224000pt;}
.y7b{bottom:530.641333pt;}
.ybc{bottom:530.869333pt;}
.y9f{bottom:531.481333pt;}
.yfd{bottom:535.452000pt;}
.y3d{bottom:537.368000pt;}
.y60{bottom:538.729333pt;}
.yd8{bottom:539.053333pt;}
.y12{bottom:543.836000pt;}
.y7a{bottom:546.581333pt;}
.ybb{bottom:546.809333pt;}
.yfc{bottom:549.764000pt;}
.y3c{bottom:553.308000pt;}
.y5f{bottom:554.669333pt;}
.yd7{bottom:554.993333pt;}
.y11{bottom:558.448000pt;}
.y79{bottom:562.521333pt;}
.yba{bottom:562.749333pt;}
.yfb{bottom:564.074667pt;}
.y3b{bottom:569.356000pt;}
.y5e{bottom:570.609333pt;}
.yd6{bottom:570.933333pt;}
.y10{bottom:573.060000pt;}
.y9e{bottom:574.218667pt;}
.y78{bottom:578.461333pt;}
.yfa{bottom:578.686667pt;}
.yb9{bottom:578.689333pt;}
.y3a{bottom:585.297333pt;}
.y5d{bottom:586.549333pt;}
.yd5{bottom:586.873333pt;}
.yf{bottom:587.672000pt;}
.y9d{bottom:590.158667pt;}
.yf9{bottom:593.298667pt;}
.y77{bottom:594.401333pt;}
.yb8{bottom:594.630667pt;}
.y39{bottom:601.237333pt;}
.ye{bottom:602.284000pt;}
.y5c{bottom:602.489333pt;}
.yd4{bottom:606.010667pt;}
.y9c{bottom:606.098667pt;}
.yf8{bottom:607.609333pt;}
.y76{bottom:610.341333pt;}
.yb7{bottom:610.697333pt;}
.yd{bottom:616.896000pt;}
.y38{bottom:617.177333pt;}
.y5b{bottom:618.429333pt;}
.y9b{bottom:622.038667pt;}
.yf7{bottom:622.221333pt;}
.y75{bottom:626.282667pt;}
.yb6{bottom:626.637333pt;}
.yc{bottom:631.508000pt;}
.y37{bottom:633.117333pt;}
.y5a{bottom:634.370667pt;}
.yf6{bottom:636.833333pt;}
.y9a{bottom:637.978667pt;}
.y74{bottom:642.222667pt;}
.yb5{bottom:642.578667pt;}
.yb{bottom:646.120000pt;}
.y36{bottom:649.057333pt;}
.y59{bottom:650.310667pt;}
.yf5{bottom:651.145333pt;}
.y99{bottom:653.920000pt;}
.y73{bottom:658.162667pt;}
.yb4{bottom:658.518667pt;}
.ya{bottom:660.730667pt;}
.y35{bottom:664.997333pt;}
.yf4{bottom:665.757333pt;}
.y58{bottom:666.250667pt;}
.y98{bottom:669.909333pt;}
.y72{bottom:674.393333pt;}
.yb3{bottom:674.458667pt;}
.y9{bottom:675.342667pt;}
.yf3{bottom:680.368000pt;}
.y34{bottom:680.938667pt;}
.y57{bottom:682.190667pt;}
.y8{bottom:689.954667pt;}
.yb1{bottom:690.398667pt;}
.y97{bottom:691.393333pt;}
.yf2{bottom:694.680000pt;}
.yb2{bottom:695.220000pt;}
.y33{bottom:696.878667pt;}
.y71{bottom:696.970667pt;}
.y56{bottom:698.130667pt;}
.y7{bottom:704.566667pt;}
.yb0{bottom:706.338667pt;}
.y96{bottom:707.333333pt;}
.yf1{bottom:709.292000pt;}
.y32{bottom:712.818667pt;}
.y70{bottom:712.910667pt;}
.y55{bottom:714.070667pt;}
.yae{bottom:722.278667pt;}
.y95{bottom:723.273333pt;}
.yf0{bottom:723.602667pt;}
.yaf{bottom:727.100000pt;}
.y31{bottom:728.758667pt;}
.y54{bottom:730.012000pt;}
.y6f{bottom:732.830667pt;}
.yef{bottom:738.214667pt;}
.yac{bottom:738.220000pt;}
.y94{bottom:739.213333pt;}
.yad{bottom:743.040000pt;}
.y30{bottom:744.698667pt;}
.yd3{bottom:744.806667pt;}
.y53{bottom:745.952000pt;}
.yab{bottom:754.160000pt;}
.y93{bottom:755.153333pt;}
.y6{bottom:759.698667pt;}
.y2f{bottom:760.638667pt;}
.yd2{bottom:760.746667pt;}
.y52{bottom:761.892000pt;}
.yee{bottom:767.264000pt;}
.y92{bottom:771.144000pt;}
.y5{bottom:774.310667pt;}
.yaa{bottom:774.722667pt;}
.y2e{bottom:776.580000pt;}
.y6e{bottom:776.688000pt;}
.y51{bottom:777.832000pt;}
.y2d{bottom:792.628000pt;}
.y50{bottom:793.772000pt;}
.y4{bottom:802.150667pt;}
.y2c{bottom:808.568000pt;}
.y4f{bottom:809.712000pt;}
.y3{bottom:818.092000pt;}
.y2b{bottom:824.508000pt;}
.y2a{bottom:840.448000pt;}
.y29{bottom:856.388000pt;}
.y2{bottom:864.358667pt;}
.y28{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.ha{height:21.551241pt;}
.h8{height:23.591437pt;}
.h9{height:25.142874pt;}
.h4{height:33.187635pt;}
.h5{height:33.474560pt;}
.h3{height:35.865600pt;}
.h7{height:37.193707pt;}
.h2{height:39.850400pt;}
.h6{height:44.632747pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x27{left:178.668000pt;}
.x5{left:179.686667pt;}
.x16{left:183.338667pt;}
.x1{left:185.804000pt;}
.x10{left:198.057333pt;}
.xb{left:199.612000pt;}
.x39{left:200.590667pt;}
.x38{left:202.028000pt;}
.x17{left:210.720000pt;}
.x22{left:212.704000pt;}
.x7{left:217.481333pt;}
.x23{left:219.345333pt;}
.x32{left:226.430667pt;}
.x37{left:229.872000pt;}
.x24{left:235.802667pt;}
.x33{left:236.945333pt;}
.x2e{left:238.809333pt;}
.x25{left:242.444000pt;}
.x2f{left:249.265333pt;}
.x14{left:253.178667pt;}
.x4{left:254.408000pt;}
.x18{left:257.733333pt;}
.x15{left:259.138667pt;}
.x19{left:264.374667pt;}
.x1e{left:280.768000pt;}
.x8{left:282.169333pt;}
.x1f{left:287.409333pt;}
.x2{left:290.400000pt;}
.x26{left:295.417333pt;}
.x30{left:329.788000pt;}
.x31{left:340.245333pt;}
.x6{left:360.026667pt;}
.x3{left:370.010667pt;}
.x20{left:390.025333pt;}
.x21{left:396.666667pt;}
.x13{left:423.965333pt;}
.x34{left:430.648000pt;}
.x35{left:436.606667pt;}
.x12{left:460.238667pt;}
.xe{left:480.892000pt;}
.xf{left:496.116000pt;}
.x28{left:503.300000pt;}
.x11{left:514.106667pt;}
.x29{left:516.582667pt;}
.x36{left:522.197333pt;}
.xc{left:532.757333pt;}
.x1a{left:537.589333pt;}
.xd{left:539.400000pt;}
.x1b{left:544.230667pt;}
.x9{left:555.049333pt;}
.xa{left:561.690667pt;}
.x2a{left:564.748000pt;}
.x2b{left:570.708000pt;}
.x1c{left:628.540000pt;}
.x2c{left:633.045333pt;}
.x1d{left:635.181333pt;}
.x2d{left:639.004000pt;}
}




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