
    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_6239d626e7057ff41975a496.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014000;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_8ee6451a6b30cb0655df3999.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_9838dbabdc6ba23262f881ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_d4a325f8ceaaa2289b2b9060.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.482000;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_c8961c308067b8a3c947cf6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008301;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_880d3e225e67029e3bb24219.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_c8961c308067b8a3c947cf6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008301;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_880d3e225e67029e3bb24219.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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);}
.m19{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);}
.m26{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);}
.m22{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);}
.m25{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m18{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);}
.m12{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);}
.md{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);}
.m5{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);}
.m1{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m8{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m11{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);}
.m1c{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);}
.m21{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m1d{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);}
.m15{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);}
.mc{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);}
.m1a{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);}
.m1f{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);}
.m1e{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);}
.m9{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);}
.m20{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.v6{vertical-align:-17.358000px;}
.v8{vertical-align:-11.952000px;}
.v7{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.519712px;}
.v1{vertical-align:6.084000px;}
.v4{vertical-align:8.724000px;}
.v3{vertical-align:21.702000px;}
.v5{vertical-align:30.426000px;}
.v2{vertical-align:39.060000px;}
.ls15{letter-spacing:-0.222444px;}
.ls18{letter-spacing:-0.210420px;}
.lsa{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000048px;}
.ls17{letter-spacing:0.000800px;}
.ls13{letter-spacing:0.001701px;}
.ls11{letter-spacing:0.138276px;}
.ls16{letter-spacing:0.150300px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:5.134050px;}
.ls3{letter-spacing:8.787600px;}
.ls1{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.954850px;}
.ls19{letter-spacing:13.448400px;}
.ls1b{letter-spacing:13.454400px;}
.lse{letter-spacing:14.824349px;}
.ls4{letter-spacing:14.945108px;}
.lsf{letter-spacing:15.003676px;}
.lsc{letter-spacing:15.663483px;}
.ls8{letter-spacing:17.929200px;}
.lsd{letter-spacing:18.499200px;}
.ls1a{letter-spacing:19.238635px;}
.lsb{letter-spacing:19.249200px;}
.ls5{letter-spacing:62.761200px;}
.ls7{letter-spacing:62.917200px;}
.ls6{letter-spacing:64.321654px;}
.ls12{letter-spacing:1160.370078px;}
.ls10{letter-spacing:1175.039385px;}
.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;}
}
.ws41{word-spacing:-15.030000px;}
.ws22{word-spacing:-14.943900px;}
.ws8{word-spacing:-14.355754px;}
.ws44{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws20{word-spacing:-3.825638px;}
.ws32{word-spacing:-3.168107px;}
.ws55{word-spacing:-2.988780px;}
.ws52{word-spacing:-2.809453px;}
.ws1c{word-spacing:-2.450800px;}
.ws38{word-spacing:-2.313331px;}
.ws4c{word-spacing:-1.733492px;}
.ws1b{word-spacing:-1.494390px;}
.ws1a{word-spacing:-1.434614px;}
.ws19{word-spacing:-1.315063px;}
.ws1d{word-spacing:-1.195512px;}
.ws21{word-spacing:-1.135736px;}
.ws48{word-spacing:-1.016185px;}
.ws1e{word-spacing:-0.896634px;}
.ws6d{word-spacing:-0.753178px;}
.ws13{word-spacing:-0.717307px;}
.ws3f{word-spacing:-0.537980px;}
.ws33{word-spacing:-0.418429px;}
.ws69{word-spacing:-0.322790px;}
.ws34{word-spacing:-0.298878px;}
.ws5f{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.239102px;}
.ws67{word-spacing:-0.215194px;}
.ws17{word-spacing:-0.179327px;}
.ws50{word-spacing:-0.161395px;}
.ws31{word-spacing:-0.119551px;}
.ws4f{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.059776px;}
.ws5b{word-spacing:-0.053798px;}
.ws25{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws43{word-spacing:0.053798px;}
.wsf{word-spacing:0.059776px;}
.wsb{word-spacing:0.095641px;}
.ws45{word-spacing:0.107597px;}
.wse{word-spacing:0.119551px;}
.ws46{word-spacing:0.161395px;}
.ws10{word-spacing:0.179327px;}
.ws60{word-spacing:0.215194px;}
.ws28{word-spacing:0.239102px;}
.ws4d{word-spacing:0.268992px;}
.ws3c{word-spacing:0.298878px;}
.ws5c{word-spacing:0.537984px;}
.wsa{word-spacing:0.562186px;}
.ws16{word-spacing:0.597756px;}
.ws51{word-spacing:0.896634px;}
.ws73{word-spacing:0.968371px;}
.ws59{word-spacing:1.237363px;}
.ws27{word-spacing:1.494390px;}
.ws2f{word-spacing:1.673717px;}
.ws3e{word-spacing:1.853044px;}
.ws3d{word-spacing:1.912819px;}
.ws3b{word-spacing:2.151922px;}
.ws70{word-spacing:2.367130px;}
.ws54{word-spacing:2.391024px;}
.ws5{word-spacing:2.510252px;}
.ws18{word-spacing:2.570351px;}
.ws40{word-spacing:2.749678px;}
.wsd{word-spacing:2.809453px;}
.wsc{word-spacing:2.869236px;}
.ws36{word-spacing:2.929004px;}
.ws3a{word-spacing:2.988780px;}
.ws39{word-spacing:3.048556px;}
.ws4e{word-spacing:3.174106px;}
.ws72{word-spacing:3.223162px;}
.ws37{word-spacing:3.227882px;}
.ws6e{word-spacing:3.227904px;}
.ws42{word-spacing:3.335501px;}
.ws47{word-spacing:3.407209px;}
.ws49{word-spacing:3.466985px;}
.ws74{word-spacing:3.496896px;}
.ws11{word-spacing:3.706087px;}
.ws14{word-spacing:3.803434px;}
.ws29{word-spacing:3.885414px;}
.ws2e{word-spacing:3.945190px;}
.ws71{word-spacing:4.196275px;}
.ws15{word-spacing:4.303872px;}
.ws5a{word-spacing:4.357670px;}
.ws6a{word-spacing:4.572864px;}
.ws35{word-spacing:4.782048px;}
.ws1f{word-spacing:4.841824px;}
.ws2b{word-spacing:5.080926px;}
.ws57{word-spacing:5.164646px;}
.ws56{word-spacing:5.320028px;}
.ws6c{word-spacing:5.810227px;}
.ws2d{word-spacing:5.858009px;}
.ws58{word-spacing:6.563405px;}
.ws30{word-spacing:6.575316px;}
.ws2a{word-spacing:7.352399px;}
.ws26{word-spacing:7.770828px;}
.ws53{word-spacing:8.308808px;}
.ws5e{word-spacing:8.553946px;}
.ws3{word-spacing:10.418857px;}
.ws62{word-spacing:12.266035px;}
.ws63{word-spacing:12.696422px;}
.ws68{word-spacing:13.395802px;}
.ws23{word-spacing:14.776565px;}
.ws6{word-spacing:14.884124px;}
.ws65{word-spacing:16.621469px;}
.ws66{word-spacing:16.623706px;}
.ws64{word-spacing:16.624090px;}
.ws6f{word-spacing:17.807270px;}
.ws5d{word-spacing:20.519999px;}
.ws61{word-spacing:27.937752px;}
.ws1{word-spacing:28.455541px;}
.ws6b{word-spacing:30.826483px;}
.ws9{word-spacing:40.042186px;}
.ws4a{word-spacing:1073.833367px;}
.ws4b{word-spacing:1075.270248px;}
._4{margin-left:-11.943245px;}
._6{margin-left:-7.711052px;}
._9{margin-left:-6.635092px;}
._2{margin-left:-5.397721px;}
._19{margin-left:-4.303843px;}
._1{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._16{width:1.555439px;}
._7{width:2.997466px;}
._f{width:11.094379px;}
._0{width:12.971268px;}
._b{width:14.525458px;}
._d{width:16.097554px;}
._1a{width:17.314306px;}
._a{width:18.649987px;}
._14{width:19.905275px;}
._13{width:21.830045px;}
._12{width:23.695039px;}
._1c{width:25.476356px;}
._c{width:26.671868px;}
._5{width:27.913949px;}
._18{width:29.003117px;}
._1e{width:31.317985px;}
._17{width:33.713438px;}
._e{width:35.458838px;}
._15{width:39.153018px;}
._1b{width:43.098208px;}
._8{width:54.394483px;}
._1d{width:88.767360px;}
._10{width:1522.702083px;}
._11{width:2286.087638px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:2.880000px;}
.fs1{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs7{font-size:47.820600px;}
.fsb{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs8{font-size:71.731200px;}
.fs4{font-size:81.772800px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y9c{bottom:7.110666px;}
.y80{bottom:8.803300px;}
.y7f{bottom:28.872859px;}
.y46{bottom:45.921000px;}
.y93{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.yd2{bottom:101.517000px;}
.y6f{bottom:108.120000px;}
.yab{bottom:111.111000px;}
.y14{bottom:118.147500px;}
.y92{bottom:120.610500px;}
.yd1{bottom:120.667500px;}
.y45{bottom:124.584000px;}
.y6e{bottom:126.282000px;}
.y6d{bottom:129.012000px;}
.yaa{bottom:132.001500px;}
.y13{bottom:136.035000px;}
.yd0{bottom:139.818000px;}
.y91{bottom:141.502500px;}
.y44{bottom:145.476000px;}
.y6c{bottom:149.904000px;}
.ya9{bottom:152.893500px;}
.y12{bottom:153.924000px;}
.ycf{bottom:158.968500px;}
.y90{bottom:162.394500px;}
.y43{bottom:166.366500px;}
.y9b{bottom:167.579964px;}
.y11{bottom:171.811500px;}
.y7e{bottom:172.962458px;}
.ya8{bottom:173.785500px;}
.y6b{bottom:175.278000px;}
.yce{bottom:178.119000px;}
.y8f{bottom:183.285000px;}
.y42{bottom:187.258500px;}
.y7d{bottom:188.712595px;}
.y10{bottom:189.699000px;}
.ya7{bottom:194.676000px;}
.ycd{bottom:197.269500px;}
.y6a{bottom:199.710000px;}
.y8e{bottom:204.177000px;}
.yf{bottom:207.588000px;}
.y41{bottom:208.150500px;}
.ya6{bottom:212.838000px;}
.ya5{bottom:215.568000px;}
.ycc{bottom:216.420000px;}
.y8d{bottom:225.069000px;}
.ye{bottom:225.475500px;}
.y40{bottom:229.041000px;}
.y69{bottom:235.338000px;}
.ycb{bottom:235.570500px;}
.ya4{bottom:236.460000px;}
.y8c{bottom:245.961000px;}
.y3f{bottom:249.933000px;}
.yd{bottom:252.330000px;}
.y68{bottom:254.571000px;}
.ya3{bottom:254.622000px;}
.ya2{bottom:257.352000px;}
.yca{bottom:259.204500px;}
.y8b{bottom:266.851500px;}
.yc{bottom:270.217500px;}
.y3e{bottom:270.825000px;}
.y8a{bottom:285.013500px;}
.y89{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y3d{bottom:288.985500px;}
.y3c{bottom:291.715500px;}
.ya1{bottom:292.978500px;}
.yc9{bottom:298.029000px;}
.y88{bottom:305.905500px;}
.ya{bottom:305.994000px;}
.y87{bottom:308.635500px;}
.ya0{bottom:312.211500px;}
.y3b{bottom:312.607500px;}
.y9{bottom:323.881500px;}
.yc8{bottom:326.494500px;}
.y9a{bottom:328.049262px;}
.y9f{bottom:328.822500px;}
.y86{bottom:329.526000px;}
.y9e{bottom:331.444500px;}
.y3a{bottom:333.499500px;}
.y8{bottom:341.769000px;}
.yc7{bottom:345.993000px;}
.y9d{bottom:350.677500px;}
.y39{bottom:351.661500px;}
.y38{bottom:354.390000px;}
.y7{bottom:358.137000px;}
.y6{bottom:359.658000px;}
.y85{bottom:364.368000px;}
.yc6{bottom:365.491500px;}
.y98{bottom:373.107000px;}
.y37{bottom:375.282000px;}
.y5{bottom:377.545500px;}
.y84{bottom:383.599500px;}
.y36{bottom:393.444000px;}
.yc5{bottom:393.957000px;}
.y35{bottom:396.174000px;}
.y83{bottom:400.210500px;}
.y4{bottom:401.367000px;}
.y82{bottom:402.832500px;}
.yc4{bottom:413.455500px;}
.y34{bottom:417.064500px;}
.y81{bottom:422.065500px;}
.y3{bottom:425.232000px;}
.y33{bottom:437.956500px;}
.yc3{bottom:441.919500px;}
.y2{bottom:443.119500px;}
.y7c{bottom:444.495000px;}
.y32{bottom:458.848500px;}
.y1{bottom:461.008500px;}
.yc2{bottom:470.385000px;}
.y31{bottom:484.222500px;}
.y99{bottom:488.608740px;}
.y67{bottom:489.348000px;}
.yc1{bottom:498.850500px;}
.y66{bottom:510.238500px;}
.yc0{bottom:518.349000px;}
.y65{bottom:528.400500px;}
.y64{bottom:531.130500px;}
.ybf{bottom:537.847500px;}
.y63{bottom:552.022500px;}
.ybe{bottom:557.347500px;}
.y30{bottom:563.434500px;}
.y62{bottom:572.913000px;}
.ybd{bottom:585.811500px;}
.y61{bottom:593.805000px;}
.y2f{bottom:602.259000px;}
.ybc{bottom:605.310000px;}
.y60{bottom:614.697000px;}
.y2e{bottom:623.151000px;}
.ybb{bottom:624.810000px;}
.y5f{bottom:635.589000px;}
.y2d{bottom:641.311500px;}
.y2c{bottom:644.041500px;}
.yba{bottom:644.308500px;}
.y5e{bottom:656.479500px;}
.ye9{bottom:656.598000px;}
.y2b{bottom:662.203500px;}
.yb9{bottom:663.807000px;}
.y2a{bottom:664.933500px;}
.ye8{bottom:675.748500px;}
.y5d{bottom:677.371500px;}
.yb8{bottom:683.305500px;}
.y29{bottom:685.825500px;}
.ye7{bottom:694.899000px;}
.y5c{bottom:698.263500px;}
.y28{bottom:706.716000px;}
.y5b{bottom:719.154000px;}
.yb7{bottom:720.736500px;}
.y27{bottom:727.608000px;}
.ye6{bottom:737.929500px;}
.yb6{bottom:741.628500px;}
.y5a{bottom:744.529500px;}
.y26{bottom:748.500000px;}
.ye5{bottom:757.081500px;}
.yb5{bottom:762.520500px;}
.ye4{bottom:776.232000px;}
.y25{bottom:778.357500px;}
.y59{bottom:779.871000px;}
.yb4{bottom:783.411000px;}
.y7b{bottom:784.936500px;}
.ye3{bottom:795.382500px;}
.y58{bottom:800.763000px;}
.yb3{bottom:804.303000px;}
.y7a{bottom:805.827000px;}
.ye2{bottom:814.533000px;}
.y24{bottom:818.377500px;}
.y57{bottom:821.655000px;}
.yb2{bottom:822.465000px;}
.yb1{bottom:825.195000px;}
.y79{bottom:826.719000px;}
.ye1{bottom:833.683500px;}
.y23{bottom:838.857000px;}
.y55{bottom:842.545500px;}
.y78{bottom:844.881000px;}
.yb0{bottom:846.087000px;}
.y77{bottom:847.611000px;}
.y56{bottom:847.971000px;}
.y22{bottom:850.656000px;}
.ye0{bottom:852.834000px;}
.y54{bottom:863.437500px;}
.y76{bottom:868.503000px;}
.y21{bottom:871.135500px;}
.yaf{bottom:871.461000px;}
.ydf{bottom:871.984500px;}
.y20{bottom:882.936000px;}
.y53{bottom:884.329500px;}
.y75{bottom:886.663500px;}
.y1f{bottom:887.275500px;}
.y74{bottom:889.393500px;}
.yde{bottom:891.135000px;}
.y1e{bottom:899.076000px;}
.y52{bottom:905.220000px;}
.y73{bottom:910.285500px;}
.y1d{bottom:915.214500px;}
.yae{bottom:928.447500px;}
.ydd{bottom:929.436000px;}
.y51{bottom:930.595500px;}
.y72{bottom:931.177500px;}
.y1c{bottom:935.694000px;}
.ydc{bottom:948.586500px;}
.yad{bottom:949.338000px;}
.y71{bottom:952.068000px;}
.y50{bottom:955.027500px;}
.ydb{bottom:967.737000px;}
.yac{bottom:970.230000px;}
.y70{bottom:972.960000px;}
.y1b{bottom:978.189000px;}
.y1a{bottom:980.370000px;}
.yda{bottom:986.887500px;}
.y4f{bottom:993.852000px;}
.y19{bottom:1001.262000px;}
.yd9{bottom:1006.038000px;}
.y4e{bottom:1014.742500px;}
.yd8{bottom:1025.188500px;}
.y4d{bottom:1035.634500px;}
.y18{bottom:1040.086500px;}
.yd7{bottom:1044.339000px;}
.y97{bottom:1052.043000px;}
.y4c{bottom:1056.526500px;}
.yd6{bottom:1063.489500px;}
.y17{bottom:1071.424500px;}
.y96{bottom:1072.935000px;}
.y4b{bottom:1077.417000px;}
.yd5{bottom:1082.640000px;}
.y95{bottom:1093.825500px;}
.y4a{bottom:1098.309000px;}
.yd4{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.y94{bottom:1114.717500px;}
.y49{bottom:1119.201000px;}
.yd3{bottom:1120.941000px;}
.y48{bottom:1140.091500px;}
.y47{bottom:1200.196500px;}
.h16{height:4.613618px;}
.h11{height:23.242762px;}
.hb{height:26.217754px;}
.h12{height:30.582721px;}
.h2{height:30.587087px;}
.h4{height:30.670772px;}
.he{height:33.209038px;}
.hc{height:34.956859px;}
.h10{height:35.052500px;}
.h3{height:36.671087px;}
.h14{height:39.326630px;}
.h1a{height:39.434227px;}
.h9{height:43.038432px;}
.hd{height:43.695964px;}
.h18{height:43.710293px;}
.h5{height:43.815515px;}
.h17{height:44.268047px;}
.h13{height:44.944762px;}
.hf{height:51.646464px;}
.h8{height:54.411312px;}
.ha{height:63.135312px;}
.h6{height:77.469696px;}
.h7{height:97.936416px;}
.h15{height:325.963500px;}
.h19{height:659.779500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:575.998500px;}
.w3{width:590.398500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x50{left:85.848000px;}
.x34{left:131.556022px;}
.x3{left:154.549500px;}
.x2{left:215.869500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x1e{left:257.353500px;}
.x38{left:261.453000px;}
.x5{left:269.544000px;}
.x39{left:271.621500px;}
.x35{left:276.455734px;}
.x33{left:277.535987px;}
.xa{left:281.479500px;}
.x42{left:286.713316px;}
.x4e{left:290.533500px;}
.x4f{left:300.709500px;}
.x2b{left:311.982000px;}
.x2c{left:326.926500px;}
.x1f{left:340.651500px;}
.x1c{left:347.301000px;}
.x1d{left:354.772500px;}
.x20{left:358.438500px;}
.x21{left:366.201000px;}
.x22{left:378.504000px;}
.x40{left:397.842000px;}
.x3a{left:401.229000px;}
.x3b{left:411.397500px;}
.x41{left:412.786500px;}
.x18{left:432.177000px;}
.x19{left:439.650000px;}
.x31{left:443.767500px;}
.x13{left:451.776000px;}
.x32{left:453.934500px;}
.x14{left:459.247500px;}
.x15{left:463.059000px;}
.x16{left:470.530500px;}
.x29{left:479.707500px;}
.x2a{left:492.000000px;}
.xc{left:500.059500px;}
.xd{left:506.485500px;}
.x25{left:535.356000px;}
.x26{left:541.782000px;}
.x11{left:548.754000px;}
.x12{left:556.002000px;}
.x4c{left:570.231000px;}
.x3c{left:575.520000px;}
.x4d{left:580.378500px;}
.x4a{left:583.930500px;}
.x3d{left:590.464500px;}
.x1a{left:616.089000px;}
.x1b{left:623.560500px;}
.x27{left:635.302500px;}
.x28{left:642.774000px;}
.x4b{left:654.105000px;}
.x2f{left:668.923500px;}
.x7{left:673.636500px;}
.x8{left:680.062500px;}
.x30{left:683.868000px;}
.x46{left:686.049000px;}
.xe{left:689.881500px;}
.x47{left:696.216000px;}
.x36{left:705.793500px;}
.x37{left:711.771000px;}
.x44{left:721.344000px;}
.x45{left:731.521500px;}
.x23{left:742.309500px;}
.xf{left:746.002500px;}
.x24{left:753.366000px;}
.x10{left:758.562000px;}
.x17{left:765.975000px;}
.x2d{left:770.985000px;}
.x2e{left:778.456500px;}
.x3e{left:796.693500px;}
.x3f{left:811.636500px;}
.x48{left:818.004000px;}
.xb{left:825.817500px;}
.x49{left:828.175500px;}
.x9{left:832.488000px;}
.x43{left:837.837000px;}
@media print{
.v6{vertical-align:-15.429333pt;}
.v8{vertical-align:-10.624000pt;}
.v7{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.239744pt;}
.v1{vertical-align:5.408000pt;}
.v4{vertical-align:7.754667pt;}
.v3{vertical-align:19.290667pt;}
.v5{vertical-align:27.045333pt;}
.v2{vertical-align:34.720000pt;}
.ls15{letter-spacing:-0.197728pt;}
.ls18{letter-spacing:-0.187040pt;}
.lsa{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000043pt;}
.ls17{letter-spacing:0.000711pt;}
.ls13{letter-spacing:0.001512pt;}
.ls11{letter-spacing:0.122912pt;}
.ls16{letter-spacing:0.133600pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:4.563600pt;}
.ls3{letter-spacing:7.811200pt;}
.ls1{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.626533pt;}
.ls19{letter-spacing:11.954133pt;}
.ls1b{letter-spacing:11.959467pt;}
.lse{letter-spacing:13.177199pt;}
.ls4{letter-spacing:13.284541pt;}
.lsf{letter-spacing:13.336601pt;}
.lsc{letter-spacing:13.923096pt;}
.ls8{letter-spacing:15.937067pt;}
.lsd{letter-spacing:16.443733pt;}
.ls1a{letter-spacing:17.101009pt;}
.lsb{letter-spacing:17.110400pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:55.926400pt;}
.ls6{letter-spacing:57.174803pt;}
.ls12{letter-spacing:1031.440070pt;}
.ls10{letter-spacing:1044.479453pt;}
.ws41{word-spacing:-13.360000pt;}
.ws22{word-spacing:-13.283467pt;}
.ws8{word-spacing:-12.760670pt;}
.ws44{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws20{word-spacing:-3.400567pt;}
.ws32{word-spacing:-2.816095pt;}
.ws55{word-spacing:-2.656693pt;}
.ws52{word-spacing:-2.497292pt;}
.ws1c{word-spacing:-2.178489pt;}
.ws38{word-spacing:-2.056294pt;}
.ws4c{word-spacing:-1.540882pt;}
.ws1b{word-spacing:-1.328347pt;}
.ws1a{word-spacing:-1.275213pt;}
.ws19{word-spacing:-1.168945pt;}
.ws1d{word-spacing:-1.062677pt;}
.ws21{word-spacing:-1.009543pt;}
.ws48{word-spacing:-0.903276pt;}
.ws1e{word-spacing:-0.797008pt;}
.ws6d{word-spacing:-0.669491pt;}
.ws13{word-spacing:-0.637606pt;}
.ws3f{word-spacing:-0.478205pt;}
.ws33{word-spacing:-0.371937pt;}
.ws69{word-spacing:-0.286925pt;}
.ws34{word-spacing:-0.265669pt;}
.ws5f{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws67{word-spacing:-0.191283pt;}
.ws17{word-spacing:-0.159402pt;}
.ws50{word-spacing:-0.143462pt;}
.ws31{word-spacing:-0.106268pt;}
.ws4f{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.053134pt;}
.ws5b{word-spacing:-0.047821pt;}
.ws25{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws43{word-spacing:0.047821pt;}
.wsf{word-spacing:0.053134pt;}
.wsb{word-spacing:0.085014pt;}
.ws45{word-spacing:0.095642pt;}
.wse{word-spacing:0.106268pt;}
.ws46{word-spacing:0.143462pt;}
.ws10{word-spacing:0.159402pt;}
.ws60{word-spacing:0.191283pt;}
.ws28{word-spacing:0.212535pt;}
.ws4d{word-spacing:0.239104pt;}
.ws3c{word-spacing:0.265669pt;}
.ws5c{word-spacing:0.478208pt;}
.wsa{word-spacing:0.499721pt;}
.ws16{word-spacing:0.531339pt;}
.ws51{word-spacing:0.797008pt;}
.ws73{word-spacing:0.860774pt;}
.ws59{word-spacing:1.099878pt;}
.ws27{word-spacing:1.328347pt;}
.ws2f{word-spacing:1.487748pt;}
.ws3e{word-spacing:1.647150pt;}
.ws3d{word-spacing:1.700284pt;}
.ws3b{word-spacing:1.912819pt;}
.ws70{word-spacing:2.104115pt;}
.ws54{word-spacing:2.125355pt;}
.ws5{word-spacing:2.231335pt;}
.ws18{word-spacing:2.284756pt;}
.ws40{word-spacing:2.444158pt;}
.wsd{word-spacing:2.497292pt;}
.wsc{word-spacing:2.550432pt;}
.ws36{word-spacing:2.603559pt;}
.ws3a{word-spacing:2.656693pt;}
.ws39{word-spacing:2.709827pt;}
.ws4e{word-spacing:2.821427pt;}
.ws72{word-spacing:2.865033pt;}
.ws37{word-spacing:2.869229pt;}
.ws6e{word-spacing:2.869248pt;}
.ws42{word-spacing:2.964890pt;}
.ws47{word-spacing:3.028630pt;}
.ws49{word-spacing:3.081764pt;}
.ws74{word-spacing:3.108352pt;}
.ws11{word-spacing:3.294300pt;}
.ws14{word-spacing:3.380830pt;}
.ws29{word-spacing:3.453701pt;}
.ws2e{word-spacing:3.506835pt;}
.ws71{word-spacing:3.730022pt;}
.ws15{word-spacing:3.825664pt;}
.ws5a{word-spacing:3.873485pt;}
.ws6a{word-spacing:4.064768pt;}
.ws35{word-spacing:4.250709pt;}
.ws1f{word-spacing:4.303843pt;}
.ws2b{word-spacing:4.516379pt;}
.ws57{word-spacing:4.590797pt;}
.ws56{word-spacing:4.728914pt;}
.ws6c{word-spacing:5.164646pt;}
.ws2d{word-spacing:5.207119pt;}
.ws58{word-spacing:5.834138pt;}
.ws30{word-spacing:5.844725pt;}
.ws2a{word-spacing:6.535466pt;}
.ws26{word-spacing:6.907403pt;}
.ws53{word-spacing:7.385607pt;}
.ws5e{word-spacing:7.603507pt;}
.ws3{word-spacing:9.261206pt;}
.ws62{word-spacing:10.903142pt;}
.ws63{word-spacing:11.285709pt;}
.ws68{word-spacing:11.907379pt;}
.ws23{word-spacing:13.134725pt;}
.ws6{word-spacing:13.230333pt;}
.ws65{word-spacing:14.774639pt;}
.ws66{word-spacing:14.776627pt;}
.ws64{word-spacing:14.776969pt;}
.ws6f{word-spacing:15.828685pt;}
.ws5d{word-spacing:18.239999pt;}
.ws61{word-spacing:24.833558pt;}
.ws1{word-spacing:25.293814pt;}
.ws6b{word-spacing:27.401318pt;}
.ws9{word-spacing:35.593054pt;}
.ws4a{word-spacing:954.518549pt;}
.ws4b{word-spacing:955.795776pt;}
._4{margin-left:-10.616218pt;}
._6{margin-left:-6.854269pt;}
._9{margin-left:-5.897859pt;}
._2{margin-left:-4.797974pt;}
._19{margin-left:-3.825638pt;}
._1{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._16{width:1.382612pt;}
._7{width:2.664414pt;}
._f{width:9.861670pt;}
._0{width:11.530016pt;}
._b{width:12.911518pt;}
._d{width:14.308937pt;}
._1a{width:15.390494pt;}
._a{width:16.577766pt;}
._14{width:17.693578pt;}
._13{width:19.404484pt;}
._12{width:21.062257pt;}
._1c{width:22.645650pt;}
._c{width:23.708327pt;}
._5{width:24.812399pt;}
._18{width:25.780548pt;}
._1e{width:27.838209pt;}
._17{width:29.967501pt;}
._e{width:31.518967pt;}
._15{width:34.802683pt;}
._1b{width:38.309518pt;}
._8{width:48.350652pt;}
._1d{width:78.904320pt;}
._10{width:1353.512963pt;}
._11{width:2032.077900pt;}
.fsc{font-size:2.560000pt;}
.fs1{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs7{font-size:42.507200pt;}
.fsb{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs8{font-size:63.761067pt;}
.fs4{font-size:72.686933pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:6.320592pt;}
.y80{bottom:7.825156pt;}
.y7f{bottom:25.664764pt;}
.y46{bottom:40.818667pt;}
.y93{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.yd2{bottom:90.237333pt;}
.y6f{bottom:96.106667pt;}
.yab{bottom:98.765333pt;}
.y14{bottom:105.020000pt;}
.y92{bottom:107.209333pt;}
.yd1{bottom:107.260000pt;}
.y45{bottom:110.741333pt;}
.y6e{bottom:112.250667pt;}
.y6d{bottom:114.677333pt;}
.yaa{bottom:117.334667pt;}
.y13{bottom:120.920000pt;}
.yd0{bottom:124.282667pt;}
.y91{bottom:125.780000pt;}
.y44{bottom:129.312000pt;}
.y6c{bottom:133.248000pt;}
.ya9{bottom:135.905333pt;}
.y12{bottom:136.821333pt;}
.ycf{bottom:141.305333pt;}
.y90{bottom:144.350667pt;}
.y43{bottom:147.881333pt;}
.y9b{bottom:148.959968pt;}
.y11{bottom:152.721333pt;}
.y7e{bottom:153.744407pt;}
.ya8{bottom:154.476000pt;}
.y6b{bottom:155.802667pt;}
.yce{bottom:158.328000pt;}
.y8f{bottom:162.920000pt;}
.y42{bottom:166.452000pt;}
.y7d{bottom:167.744529pt;}
.y10{bottom:168.621333pt;}
.ya7{bottom:173.045333pt;}
.ycd{bottom:175.350667pt;}
.y6a{bottom:177.520000pt;}
.y8e{bottom:181.490667pt;}
.yf{bottom:184.522667pt;}
.y41{bottom:185.022667pt;}
.ya6{bottom:189.189333pt;}
.ya5{bottom:191.616000pt;}
.ycc{bottom:192.373333pt;}
.y8d{bottom:200.061333pt;}
.ye{bottom:200.422667pt;}
.y40{bottom:203.592000pt;}
.y69{bottom:209.189333pt;}
.ycb{bottom:209.396000pt;}
.ya4{bottom:210.186667pt;}
.y8c{bottom:218.632000pt;}
.y3f{bottom:222.162667pt;}
.yd{bottom:224.293333pt;}
.y68{bottom:226.285333pt;}
.ya3{bottom:226.330667pt;}
.ya2{bottom:228.757333pt;}
.yca{bottom:230.404000pt;}
.y8b{bottom:237.201333pt;}
.yc{bottom:240.193333pt;}
.y3e{bottom:240.733333pt;}
.y8a{bottom:253.345333pt;}
.y89{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y3d{bottom:256.876000pt;}
.y3c{bottom:259.302667pt;}
.ya1{bottom:260.425333pt;}
.yc9{bottom:264.914667pt;}
.y88{bottom:271.916000pt;}
.ya{bottom:271.994667pt;}
.y87{bottom:274.342667pt;}
.ya0{bottom:277.521333pt;}
.y3b{bottom:277.873333pt;}
.y9{bottom:287.894667pt;}
.yc8{bottom:290.217333pt;}
.y9a{bottom:291.599344pt;}
.y9f{bottom:292.286667pt;}
.y86{bottom:292.912000pt;}
.y9e{bottom:294.617333pt;}
.y3a{bottom:296.444000pt;}
.y8{bottom:303.794667pt;}
.yc7{bottom:307.549333pt;}
.y9d{bottom:311.713333pt;}
.y39{bottom:312.588000pt;}
.y38{bottom:315.013333pt;}
.y7{bottom:318.344000pt;}
.y6{bottom:319.696000pt;}
.y85{bottom:323.882667pt;}
.yc6{bottom:324.881333pt;}
.y98{bottom:331.650667pt;}
.y37{bottom:333.584000pt;}
.y5{bottom:335.596000pt;}
.y84{bottom:340.977333pt;}
.y36{bottom:349.728000pt;}
.yc5{bottom:350.184000pt;}
.y35{bottom:352.154667pt;}
.y83{bottom:355.742667pt;}
.y4{bottom:356.770667pt;}
.y82{bottom:358.073333pt;}
.yc4{bottom:367.516000pt;}
.y34{bottom:370.724000pt;}
.y81{bottom:375.169333pt;}
.y3{bottom:377.984000pt;}
.y33{bottom:389.294667pt;}
.yc3{bottom:392.817333pt;}
.y2{bottom:393.884000pt;}
.y7c{bottom:395.106667pt;}
.y32{bottom:407.865333pt;}
.y1{bottom:409.785333pt;}
.yc2{bottom:418.120000pt;}
.y31{bottom:430.420000pt;}
.y99{bottom:434.318880pt;}
.y67{bottom:434.976000pt;}
.yc1{bottom:443.422667pt;}
.y66{bottom:453.545333pt;}
.yc0{bottom:460.754667pt;}
.y65{bottom:469.689333pt;}
.y64{bottom:472.116000pt;}
.ybf{bottom:478.086667pt;}
.y63{bottom:490.686667pt;}
.ybe{bottom:495.420000pt;}
.y30{bottom:500.830667pt;}
.y62{bottom:509.256000pt;}
.ybd{bottom:520.721333pt;}
.y61{bottom:527.826667pt;}
.y2f{bottom:535.341333pt;}
.ybc{bottom:538.053333pt;}
.y60{bottom:546.397333pt;}
.y2e{bottom:553.912000pt;}
.ybb{bottom:555.386667pt;}
.y5f{bottom:564.968000pt;}
.y2d{bottom:570.054667pt;}
.y2c{bottom:572.481333pt;}
.yba{bottom:572.718667pt;}
.y5e{bottom:583.537333pt;}
.ye9{bottom:583.642667pt;}
.y2b{bottom:588.625333pt;}
.yb9{bottom:590.050667pt;}
.y2a{bottom:591.052000pt;}
.ye8{bottom:600.665333pt;}
.y5d{bottom:602.108000pt;}
.yb8{bottom:607.382667pt;}
.y29{bottom:609.622667pt;}
.ye7{bottom:617.688000pt;}
.y5c{bottom:620.678667pt;}
.y28{bottom:628.192000pt;}
.y5b{bottom:639.248000pt;}
.yb7{bottom:640.654667pt;}
.y27{bottom:646.762667pt;}
.ye6{bottom:655.937333pt;}
.yb6{bottom:659.225333pt;}
.y5a{bottom:661.804000pt;}
.y26{bottom:665.333333pt;}
.ye5{bottom:672.961333pt;}
.yb5{bottom:677.796000pt;}
.ye4{bottom:689.984000pt;}
.y25{bottom:691.873333pt;}
.y59{bottom:693.218667pt;}
.yb4{bottom:696.365333pt;}
.y7b{bottom:697.721333pt;}
.ye3{bottom:707.006667pt;}
.y58{bottom:711.789333pt;}
.yb3{bottom:714.936000pt;}
.y7a{bottom:716.290667pt;}
.ye2{bottom:724.029333pt;}
.y24{bottom:727.446667pt;}
.y57{bottom:730.360000pt;}
.yb2{bottom:731.080000pt;}
.yb1{bottom:733.506667pt;}
.y79{bottom:734.861333pt;}
.ye1{bottom:741.052000pt;}
.y23{bottom:745.650667pt;}
.y55{bottom:748.929333pt;}
.y78{bottom:751.005333pt;}
.yb0{bottom:752.077333pt;}
.y77{bottom:753.432000pt;}
.y56{bottom:753.752000pt;}
.y22{bottom:756.138667pt;}
.ye0{bottom:758.074667pt;}
.y54{bottom:767.500000pt;}
.y76{bottom:772.002667pt;}
.y21{bottom:774.342667pt;}
.yaf{bottom:774.632000pt;}
.ydf{bottom:775.097333pt;}
.y20{bottom:784.832000pt;}
.y53{bottom:786.070667pt;}
.y75{bottom:788.145333pt;}
.y1f{bottom:788.689333pt;}
.y74{bottom:790.572000pt;}
.yde{bottom:792.120000pt;}
.y1e{bottom:799.178667pt;}
.y52{bottom:804.640000pt;}
.y73{bottom:809.142667pt;}
.y1d{bottom:813.524000pt;}
.yae{bottom:825.286667pt;}
.ydd{bottom:826.165333pt;}
.y51{bottom:827.196000pt;}
.y72{bottom:827.713333pt;}
.y1c{bottom:831.728000pt;}
.ydc{bottom:843.188000pt;}
.yad{bottom:843.856000pt;}
.y71{bottom:846.282667pt;}
.y50{bottom:848.913333pt;}
.ydb{bottom:860.210667pt;}
.yac{bottom:862.426667pt;}
.y70{bottom:864.853333pt;}
.y1b{bottom:869.501333pt;}
.y1a{bottom:871.440000pt;}
.yda{bottom:877.233333pt;}
.y4f{bottom:883.424000pt;}
.y19{bottom:890.010667pt;}
.yd9{bottom:894.256000pt;}
.y4e{bottom:901.993333pt;}
.yd8{bottom:911.278667pt;}
.y4d{bottom:920.564000pt;}
.y18{bottom:924.521333pt;}
.yd7{bottom:928.301333pt;}
.y97{bottom:935.149333pt;}
.y4c{bottom:939.134667pt;}
.yd6{bottom:945.324000pt;}
.y17{bottom:952.377333pt;}
.y96{bottom:953.720000pt;}
.y4b{bottom:957.704000pt;}
.yd5{bottom:962.346667pt;}
.y95{bottom:972.289333pt;}
.y4a{bottom:976.274667pt;}
.yd4{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.y94{bottom:990.860000pt;}
.y49{bottom:994.845333pt;}
.yd3{bottom:996.392000pt;}
.y48{bottom:1013.414667pt;}
.y47{bottom:1066.841333pt;}
.h16{height:4.100994pt;}
.h11{height:20.660233pt;}
.hb{height:23.304670pt;}
.h12{height:27.184641pt;}
.h2{height:27.188522pt;}
.h4{height:27.262909pt;}
.he{height:29.519145pt;}
.hc{height:31.072763pt;}
.h10{height:31.157778pt;}
.h3{height:32.596522pt;}
.h14{height:34.957005pt;}
.h1a{height:35.052646pt;}
.h9{height:38.256384pt;}
.hd{height:38.840857pt;}
.h18{height:38.853594pt;}
.h5{height:38.947124pt;}
.h17{height:39.349375pt;}
.h13{height:39.950899pt;}
.hf{height:45.907968pt;}
.h8{height:48.365611pt;}
.ha{height:56.120277pt;}
.h6{height:68.861952pt;}
.h7{height:87.054592pt;}
.h15{height:289.745333pt;}
.h19{height:586.470667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:511.998667pt;}
.w3{width:524.798667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x50{left:76.309333pt;}
.x34{left:116.938686pt;}
.x3{left:137.377333pt;}
.x2{left:191.884000pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x1e{left:228.758667pt;}
.x38{left:232.402667pt;}
.x5{left:239.594667pt;}
.x39{left:241.441333pt;}
.x35{left:245.738430pt;}
.x33{left:246.698655pt;}
.xa{left:250.204000pt;}
.x42{left:254.856281pt;}
.x4e{left:258.252000pt;}
.x4f{left:267.297333pt;}
.x2b{left:277.317333pt;}
.x2c{left:290.601333pt;}
.x1f{left:302.801333pt;}
.x1c{left:308.712000pt;}
.x1d{left:315.353333pt;}
.x20{left:318.612000pt;}
.x21{left:325.512000pt;}
.x22{left:336.448000pt;}
.x40{left:353.637333pt;}
.x3a{left:356.648000pt;}
.x3b{left:365.686667pt;}
.x41{left:366.921333pt;}
.x18{left:384.157333pt;}
.x19{left:390.800000pt;}
.x31{left:394.460000pt;}
.x13{left:401.578667pt;}
.x32{left:403.497333pt;}
.x14{left:408.220000pt;}
.x15{left:411.608000pt;}
.x16{left:418.249333pt;}
.x29{left:426.406667pt;}
.x2a{left:437.333333pt;}
.xc{left:444.497333pt;}
.xd{left:450.209333pt;}
.x25{left:475.872000pt;}
.x26{left:481.584000pt;}
.x11{left:487.781333pt;}
.x12{left:494.224000pt;}
.x4c{left:506.872000pt;}
.x3c{left:511.573333pt;}
.x4d{left:515.892000pt;}
.x4a{left:519.049333pt;}
.x3d{left:524.857333pt;}
.x1a{left:547.634667pt;}
.x1b{left:554.276000pt;}
.x27{left:564.713333pt;}
.x28{left:571.354667pt;}
.x4b{left:581.426667pt;}
.x2f{left:594.598667pt;}
.x7{left:598.788000pt;}
.x8{left:604.500000pt;}
.x30{left:607.882667pt;}
.x46{left:609.821333pt;}
.xe{left:613.228000pt;}
.x47{left:618.858667pt;}
.x36{left:627.372000pt;}
.x37{left:632.685333pt;}
.x44{left:641.194667pt;}
.x45{left:650.241333pt;}
.x23{left:659.830667pt;}
.xf{left:663.113333pt;}
.x24{left:669.658667pt;}
.x10{left:674.277333pt;}
.x17{left:680.866667pt;}
.x2d{left:685.320000pt;}
.x2e{left:691.961333pt;}
.x3e{left:708.172000pt;}
.x3f{left:721.454667pt;}
.x48{left:727.114667pt;}
.xb{left:734.060000pt;}
.x49{left:736.156000pt;}
.x9{left:739.989333pt;}
.x43{left:744.744000pt;}
}




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