
    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_a1194ed03e5d3fa93f5ffc0e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e29bcfb4833fbab3e8c0dceb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_76deccdcdf243dc0e6e1e1fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_7902e863ae161e7d3876ae8c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0218275862f92b51bf6bdd5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.443000;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_12d093167baf5e5be43c4015.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_73fbb39c04ab5f1352488c3a.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_c48a46bf88fbd71235fe59bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_fb9f041d0506a2db91200464.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2679dfce97bb268e57acf886.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.222000;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:ffb;src:url('chunks/assets/font_d94ec83d2d16e5e6bbd649a5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.705000;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:ffc;src:url('chunks/assets/font_046889b5d93f6b828c6cc746.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.868000;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:ffd;src:url('chunks/assets/font_00b045f55362a999edca5c37.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.686000;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:ffe;src:url('chunks/assets/font_5b331aae914cb53af1d1c89b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8c501cbf41afb7b5578899da.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e10ba5f8fb4ec24851075be3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.854000;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:ff11;src:url('chunks/assets/font_6c2fee8622807518d73c0362.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.887091;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.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);}
.m11{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m18{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);}
.m7{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);}
.mf{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);}
.mb{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);}
.m19{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);}
.m8{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);}
.m17{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);}
.mc{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);}
.m6{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);}
.m5{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);}
.m15{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.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);}
.m1{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);}
.ma{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);}
.ve{vertical-align:-74.718000px;}
.v7{vertical-align:-64.560000px;}
.v6{vertical-align:-53.796000px;}
.v9{vertical-align:-48.288000px;}
.v16{vertical-align:-20.922000px;}
.v14{vertical-align:-15.528000px;}
.v1{vertical-align:-10.758000px;}
.v12{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:6.972000px;}
.v13{vertical-align:10.764000px;}
.vd{vertical-align:18.384000px;}
.vc{vertical-align:24.708000px;}
.vf{vertical-align:26.028000px;}
.v2{vertical-align:29.616000px;}
.vb{vertical-align:31.998000px;}
.v17{vertical-align:34.002000px;}
.v5{vertical-align:37.770000px;}
.v11{vertical-align:47.346000px;}
.v4{vertical-align:48.528000px;}
.v15{vertical-align:53.802000px;}
.va{vertical-align:68.142000px;}
.v8{vertical-align:97.632000px;}
.v3{vertical-align:102.324000px;}
.ls1{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000301px;}
.ls13{letter-spacing:0.001165px;}
.ls2{letter-spacing:0.001505px;}
.ls29{letter-spacing:0.001571px;}
.ls33{letter-spacing:0.001695px;}
.ls10{letter-spacing:0.001739px;}
.ls27{letter-spacing:0.002227px;}
.ls8{letter-spacing:0.002675px;}
.ls43{letter-spacing:0.003055px;}
.ls23{letter-spacing:0.005226px;}
.ls3a{letter-spacing:0.006081px;}
.ls1c{letter-spacing:0.012419px;}
.ls1b{letter-spacing:0.013000px;}
.ls2e{letter-spacing:0.014652px;}
.ls40{letter-spacing:0.016211px;}
.ls16{letter-spacing:0.017787px;}
.ls1d{letter-spacing:0.018419px;}
.ls1f{letter-spacing:0.018697px;}
.ls3{letter-spacing:0.018701px;}
.ls22{letter-spacing:0.036278px;}
.lsf{letter-spacing:0.457809px;}
.ls44{letter-spacing:1.291156px;}
.ls36{letter-spacing:2.553387px;}
.ls5{letter-spacing:2.569918px;}
.ls2a{letter-spacing:2.575918px;}
.ls48{letter-spacing:2.582323px;}
.ls34{letter-spacing:2.654054px;}
.ls39{letter-spacing:2.677954px;}
.ls17{letter-spacing:2.984915px;}
.ls26{letter-spacing:2.985072px;}
.ls14{letter-spacing:2.986059px;}
.ls3b{letter-spacing:2.986669px;}
.ls37{letter-spacing:2.989289px;}
.ls11{letter-spacing:2.990289px;}
.ls2f{letter-spacing:2.990915px;}
.ls3d{letter-spacing:3.682180px;}
.ls30{letter-spacing:3.898902px;}
.ls15{letter-spacing:4.265644px;}
.ls2c{letter-spacing:5.670029px;}
.ls0{letter-spacing:7.396370px;}
.ls49{letter-spacing:7.675238px;}
.lsb{letter-spacing:7.962163px;}
.lsa{letter-spacing:8.033894px;}
.ls3e{letter-spacing:8.057159px;}
.ls42{letter-spacing:11.933053px;}
.ls4b{letter-spacing:11.952545px;}
.ls7{letter-spacing:11.955055px;}
.ls6{letter-spacing:11.961055px;}
.ls2b{letter-spacing:11.979110px;}
.ls3c{letter-spacing:14.947289px;}
.lsd{letter-spacing:15.924326px;}
.ls45{letter-spacing:18.613337px;}
.ls21{letter-spacing:18.920915px;}
.ls1a{letter-spacing:18.926915px;}
.ls38{letter-spacing:19.925518px;}
.ls19{letter-spacing:19.941274px;}
.lsc{letter-spacing:21.591091px;}
.ls31{letter-spacing:21.918532px;}
.ls46{letter-spacing:21.953644px;}
.ls18{letter-spacing:22.910915px;}
.ls25{letter-spacing:22.911072px;}
.ls47{letter-spacing:23.456102px;}
.lse{letter-spacing:23.884374px;}
.ls28{letter-spacing:24.185644px;}
.ls4c{letter-spacing:24.191644px;}
.ls2d{letter-spacing:24.566915px;}
.ls4{letter-spacing:26.401289px;}
.ls41{letter-spacing:26.596180px;}
.ls12{letter-spacing:105.493289px;}
.ls3f{letter-spacing:725.345894px;}
.ls32{letter-spacing:754.540493px;}
.ls4a{letter-spacing:876.196608px;}
.ls1e{letter-spacing:883.226266px;}
.ls35{letter-spacing:889.897267px;}
.ls9{letter-spacing:958.113638px;}
.ls20{letter-spacing:1060.330598px;}
.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;}
}
.ws2e{word-spacing:-71.731200px;}
.ws40{word-spacing:-59.823821px;}
.ws3b{word-spacing:-57.643192px;}
.ws34{word-spacing:-51.789926px;}
.ws21{word-spacing:-45.664082px;}
.ws44{word-spacing:-33.756703px;}
.ws10{word-spacing:-33.684972px;}
.ws3f{word-spacing:-33.211407px;}
.ws1d{word-spacing:-19.510886px;}
.ws27{word-spacing:-14.111859px;}
.ws26{word-spacing:-4.048630px;}
.ws43{word-spacing:-3.586560px;}
.ws32{word-spacing:-2.008474px;}
.ws45{word-spacing:-1.936742px;}
.ws39{word-spacing:-1.147699px;}
.ws38{word-spacing:-1.075968px;}
.ws6{word-spacing:-0.968728px;}
.ws3a{word-spacing:-0.860774px;}
.ws23{word-spacing:-0.789043px;}
.ws24{word-spacing:-0.717312px;}
.ws4c{word-spacing:-0.086077px;}
.ws29{word-spacing:-0.071731px;}
.ws2a{word-spacing:-0.047821px;}
.ws17{word-spacing:0.000000px;}
.ws1b{word-spacing:0.358656px;}
.ws28{word-spacing:0.388193px;}
.ws3{word-spacing:0.405819px;}
.ws1a{word-spacing:0.430387px;}
.ws25{word-spacing:0.789043px;}
.ws50{word-spacing:0.809381px;}
.ws48{word-spacing:1.291162px;}
.ws49{word-spacing:1.506355px;}
.wsa{word-spacing:1.584001px;}
.ws33{word-spacing:2.438861px;}
.ws53{word-spacing:2.654054px;}
.ws52{word-spacing:2.725786px;}
.ws35{word-spacing:2.797517px;}
.ws7{word-spacing:3.220366px;}
.ws9{word-spacing:3.285821px;}
.wsf{word-spacing:3.371366px;}
.ws11{word-spacing:3.443098px;}
.ws15{word-spacing:3.514829px;}
.ws12{word-spacing:3.586560px;}
.wsb{word-spacing:3.613094px;}
.ws1c{word-spacing:3.658291px;}
.ws4{word-spacing:3.678549px;}
.ws20{word-spacing:3.730022px;}
.wsd{word-spacing:3.801754px;}
.ws14{word-spacing:3.873485px;}
.ws1e{word-spacing:3.945216px;}
.ws2f{word-spacing:4.016947px;}
.ws5{word-spacing:4.136731px;}
.ws22{word-spacing:4.160410px;}
.ws36{word-spacing:4.232141px;}
.ws4e{word-spacing:4.303872px;}
.ws30{word-spacing:4.375603px;}
.ws56{word-spacing:4.447334px;}
.ws41{word-spacing:4.590797px;}
.ws1{word-spacing:4.648169px;}
.ws4f{word-spacing:4.949453px;}
.ws16{word-spacing:5.523302px;}
.ws4a{word-spacing:6.742733px;}
.ws2c{word-spacing:7.244851px;}
.ws8{word-spacing:7.344006px;}
.ws3e{word-spacing:7.531776px;}
.ws51{word-spacing:7.603507px;}
.ws37{word-spacing:7.675238px;}
.ws47{word-spacing:8.799084px;}
.ws42{word-spacing:8.818353px;}
.ws55{word-spacing:8.822938px;}
.ws18{word-spacing:8.966400px;}
.wse{word-spacing:9.038131px;}
.ws19{word-spacing:9.468518px;}
.ws2{word-spacing:10.551282px;}
.ws13{word-spacing:10.616218px;}
.ws4d{word-spacing:11.333530px;}
.ws46{word-spacing:12.285084px;}
.ws3c{word-spacing:14.202778px;}
.ws54{word-spacing:23.384371px;}
.ws31{word-spacing:32.192873px;}
.ws0{word-spacing:37.316475px;}
.ws1f{word-spacing:38.631358px;}
.ws4b{word-spacing:39.509435px;}
.ws3d{word-spacing:43.325645px;}
.ws2d{word-spacing:96.750773px;}
.wsc{word-spacing:116.100658px;}
.ws2b{word-spacing:555.515105px;}
._12{margin-left:-38.734848px;}
._1{margin-left:-9.794025px;}
._6{margin-left:-5.563641px;}
._18{margin-left:-4.258147px;}
._2{margin-left:-3.223350px;}
._3{margin-left:-1.767274px;}
._4{width:1.767274px;}
._0{width:3.223350px;}
._19{width:4.564791px;}
._10{width:15.287538px;}
._14{width:18.793574px;}
._f{width:19.797811px;}
._d{width:20.873779px;}
._16{width:21.905250px;}
._a{width:24.071123px;}
._11{width:27.109279px;}
._5{width:28.276387px;}
._8{width:29.788168px;}
._9{width:31.099948px;}
._1a{width:32.283432px;}
._15{width:34.144051px;}
._7{width:40.974580px;}
._17{width:43.038600px;}
._b{width:47.466335px;}
._c{width:48.679479px;}
._13{width:96.836850px;}
._e{width:116.203950px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:63.168000px;}
.y1b{bottom:108.000000px;}
.y55{bottom:116.968500px;}
.y1a{bottom:134.890500px;}
.y54{bottom:143.859000px;}
.y95{bottom:144.685500px;}
.y19{bottom:161.781000px;}
.y53{bottom:170.749500px;}
.y94{bottom:171.576000px;}
.y18{bottom:188.673000px;}
.y92{bottom:193.471500px;}
.y93{bottom:195.777000px;}
.y52{bottom:197.640000px;}
.y90{bottom:198.466500px;}
.y91{bottom:206.968500px;}
.y39{bottom:215.035500px;}
.y17{bottom:215.563500px;}
.y6e{bottom:218.221500px;}
.y8f{bottom:220.363500px;}
.y51{bottom:224.532000px;}
.y8e{bottom:225.357000px;}
.y38{bottom:241.927500px;}
.y16{bottom:242.454000px;}
.y6d{bottom:245.112000px;}
.y8d{bottom:252.249000px;}
.ya2{bottom:252.559500px;}
.y50{bottom:263.004000px;}
.y6c{bottom:267.339000px;}
.y15{bottom:269.344500px;}
.y6b{bottom:272.002500px;}
.y8c{bottom:279.139500px;}
.ya1{bottom:279.451500px;}
.y37{bottom:286.576500px;}
.y14{bottom:296.236500px;}
.y8b{bottom:301.035000px;}
.y89{bottom:301.366500px;}
.y88{bottom:306.030000px;}
.y68{bottom:314.281500px;}
.y69{bottom:314.547000px;}
.y8a{bottom:319.479000px;}
.ya0{bottom:321.286500px;}
.y4f{bottom:321.478500px;}
.y13{bottom:323.127000px;}
.y6a{bottom:327.445500px;}
.y87{bottom:332.920500px;}
.y67{bottom:335.302500px;}
.y9f{bottom:348.177000px;}
.y4e{bottom:348.370500px;}
.y36{bottom:354.399000px;}
.y86{bottom:354.817500px;}
.y85{bottom:359.811000px;}
.y12{bottom:367.776000px;}
.y35{bottom:381.291000px;}
.y66{bottom:384.447000px;}
.y84{bottom:386.703000px;}
.y9e{bottom:392.826000px;}
.y4d{bottom:393.019500px;}
.y83{bottom:413.593500px;}
.y33{bottom:419.286000px;}
.y32{bottom:420.039000px;}
.y65{bottom:422.920500px;}
.y11{bottom:434.971500px;}
.y34{bottom:435.445500px;}
.y31{bottom:440.041500px;}
.y82{bottom:440.484000px;}
.y10{bottom:460.192500px;}
.y9d{bottom:460.650000px;}
.y4c{bottom:460.842000px;}
.y81{bottom:467.374500px;}
.y64{bottom:481.395000px;}
.yf{bottom:485.415000px;}
.y9c{bottom:487.540500px;}
.y4b{bottom:487.734000px;}
.y30{bottom:491.685000px;}
.y80{bottom:505.848000px;}
.y63{bottom:508.285500px;}
.ye{bottom:510.636000px;}
.y9b{bottom:514.431000px;}
.y4a{bottom:514.624500px;}
.y2e{bottom:518.577000px;}
.y2f{bottom:532.026000px;}
.y62{bottom:535.177500px;}
.yd{bottom:535.858500px;}
.y7f{bottom:539.229000px;}
.y9a{bottom:541.321500px;}
.y49{bottom:541.515000px;}
.yc{bottom:561.079500px;}
.y48{bottom:568.405500px;}
.y2c{bottom:572.559000px;}
.y2d{bottom:573.708000px;}
.y61{bottom:579.826500px;}
.y99{bottom:585.972000px;}
.yb{bottom:586.302000px;}
.y7e{bottom:597.705000px;}
.y47{bottom:606.879000px;}
.ya{bottom:611.524500px;}
.y7d{bottom:619.600500px;}
.y7b{bottom:621.906000px;}
.y7a{bottom:624.595500px;}
.y2b{bottom:626.904000px;}
.y9{bottom:636.745500px;}
.y7c{bottom:638.044500px;}
.y79{bottom:646.491000px;}
.y60{bottom:647.649000px;}
.y77{bottom:651.486000px;}
.y2a{bottom:653.794500px;}
.y78{bottom:659.988000px;}
.y8{bottom:661.968000px;}
.y46{bottom:665.353500px;}
.y5f{bottom:674.541000px;}
.y76{bottom:678.376500px;}
.y29{bottom:680.686500px;}
.y7{bottom:687.189000px;}
.y45{bottom:692.244000px;}
.y75{bottom:705.268500px;}
.y28{bottom:707.577000px;}
.y5e{bottom:715.857000px;}
.y6{bottom:717.565500px;}
.y44{bottom:719.136000px;}
.y27{bottom:734.467500px;}
.y5d{bottom:737.011500px;}
.y43{bottom:746.026500px;}
.y74{bottom:754.413000px;}
.y26{bottom:761.358000px;}
.y42{bottom:772.917000px;}
.y5{bottom:783.688500px;}
.y5c{bottom:786.156000px;}
.y25{bottom:788.250000px;}
.y73{bottom:803.559000px;}
.y5b{bottom:813.048000px;}
.y98{bottom:815.140500px;}
.y41{bottom:822.063000px;}
.y4{bottom:828.138000px;}
.y24{bottom:832.899000px;}
.y5a{bottom:839.938500px;}
.y97{bottom:842.031000px;}
.y72{bottom:848.208000px;}
.y40{bottom:853.437000px;}
.y59{bottom:884.650500px;}
.y3f{bottom:884.811000px;}
.y96{bottom:886.680000px;}
.y3{bottom:887.859000px;}
.y58{bottom:889.083000px;}
.y23{bottom:900.721500px;}
.y71{bottom:916.032000px;}
.y3e{bottom:916.185000px;}
.y22{bottom:927.613500px;}
.y2{bottom:934.222500px;}
.y57{bottom:938.229000px;}
.y70{bottom:942.922500px;}
.y3d{bottom:947.559000px;}
.y21{bottom:954.504000px;}
.y6f{bottom:969.813000px;}
.y56{bottom:976.701000px;}
.y1{bottom:980.586000px;}
.y20{bottom:981.394500px;}
.y3c{bottom:996.703500px;}
.y1f{bottom:1008.285000px;}
.y3a{bottom:1023.595500px;}
.y1e{bottom:1035.177000px;}
.y3b{bottom:1037.044500px;}
.y1d{bottom:1062.067500px;}
.h9{height:0.002400px;}
.hb{height:23.850624px;}
.h5{height:28.210933px;}
.hd{height:33.665702px;}
.h17{height:35.865450px;}
.h16{height:44.832000px;}
.h3{height:45.687311px;}
.h4{height:49.090950px;}
.h7{height:53.798400px;}
.h12{height:59.693702px;}
.h1a{height:59.699702px;}
.h10{height:60.254040px;}
.h11{height:61.893450px;}
.h18{height:61.899450px;}
.h2{height:64.557900px;}
.h13{height:65.487450px;}
.he{height:67.863450px;}
.hc{height:68.142000px;}
.h1c{height:69.867450px;}
.h1d{height:69.873450px;}
.h15{height:71.528400px;}
.h6{height:72.304680px;}
.h1b{height:72.452400px;}
.hf{height:81.665702px;}
.h14{height:83.211450px;}
.h19{height:85.226400px;}
.h1{height:92.857275px;}
.ha{height:97.632000px;}
.h8{height:102.326400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa9{left:105.945000px;}
.xf{left:108.000000px;}
.xaa{left:112.975500px;}
.xae{left:116.779500px;}
.x7e{left:119.190000px;}
.xab{left:121.755000px;}
.x2{left:126.723000px;}
.x53{left:128.055000px;}
.x7f{left:131.436000px;}
.x18{left:134.338500px;}
.x1{left:137.850000px;}
.x10{left:143.614500px;}
.x73{left:148.281000px;}
.x80{left:149.931000px;}
.xa{left:151.897500px;}
.x11{left:153.243000px;}
.x26{left:160.369500px;}
.x85{left:163.143000px;}
.x28{left:167.742000px;}
.x27{left:169.998000px;}
.x7{left:176.443500px;}
.x92{left:182.505000px;}
.x29{left:183.981000px;}
.x4c{left:187.899000px;}
.x81{left:191.764500px;}
.x82{left:200.035500px;}
.x93{left:209.136000px;}
.x4d{left:212.784000px;}
.x2e{left:215.134500px;}
.xa1{left:218.170500px;}
.x2f{left:223.914000px;}
.x94{left:226.111500px;}
.x83{left:231.388500px;}
.x84{left:254.892000px;}
.xb{left:257.835000px;}
.xa2{left:260.343000px;}
.x5f{left:264.603000px;}
.xc{left:266.017500px;}
.x24{left:272.385000px;}
.x3d{left:275.931000px;}
.xa3{left:280.042500px;}
.x25{left:281.164500px;}
.x87{left:283.120500px;}
.x78{left:287.104500px;}
.x64{left:291.945000px;}
.x3f{left:293.233500px;}
.xa5{left:294.243000px;}
.x30{left:299.145000px;}
.x60{left:300.336000px;}
.x67{left:301.990500px;}
.x5c{left:304.815000px;}
.x65{left:310.617000px;}
.x99{left:312.447000px;}
.x5d{left:313.594500px;}
.x68{left:316.075500px;}
.x31{left:317.593500px;}
.x9a{left:320.718000px;}
.x3e{left:322.795500px;}
.x9b{left:329.436000px;}
.x4e{left:330.526500px;}
.x62{left:333.255000px;}
.x46{left:335.797500px;}
.x50{left:339.141000px;}
.x4f{left:340.155000px;}
.x3{left:344.263500px;}
.x51{left:345.928500px;}
.x95{left:350.758500px;}
.x63{left:352.416000px;}
.x32{left:355.651500px;}
.x96{left:357.451500px;}
.x52{left:359.235000px;}
.x7c{left:361.087500px;}
.x4b{left:362.850000px;}
.x6c{left:364.513500px;}
.x47{left:366.568500px;}
.x9c{left:369.382500px;}
.x33{left:370.732500px;}
.x4{left:375.103500px;}
.x5{left:380.541000px;}
.x20{left:382.333500px;}
.x40{left:383.938500px;}
.x48{left:385.221000px;}
.x21{left:390.550500px;}
.x12{left:392.268000px;}
.x66{left:394.251000px;}
.x97{left:396.802500px;}
.x13{left:401.047500px;}
.x41{left:402.535500px;}
.x74{left:404.059500px;}
.x2a{left:409.501500px;}
.x9d{left:415.246500px;}
.x5e{left:421.290000px;}
.x6{left:423.253500px;}
.x98{left:425.286000px;}
.x2b{left:430.587000px;}
.x2c{left:436.513500px;}
.x49{left:441.418500px;}
.x2d{left:445.293000px;}
.x9e{left:447.906000px;}
.x1b{left:454.611000px;}
.x1c{left:455.724000px;}
.x6d{left:461.346000px;}
.x1d{left:464.503500px;}
.x4a{left:468.858000px;}
.x69{left:471.421500px;}
.x9f{left:478.101000px;}
.x61{left:483.022500px;}
.x34{left:484.099500px;}
.xa6{left:488.029500px;}
.x3b{left:489.483000px;}
.x6e{left:492.987000px;}
.x8a{left:509.487000px;}
.x79{left:514.722000px;}
.x8b{left:518.203500px;}
.x8c{left:524.922000px;}
.x8e{left:528.292500px;}
.x3c{left:531.556500px;}
.x42{left:533.466000px;}
.xa0{left:540.012000px;}
.x75{left:541.978500px;}
.xac{left:543.411000px;}
.xd{left:545.023500px;}
.x88{left:546.045000px;}
.x8f{left:548.208000px;}
.x43{left:550.074000px;}
.xad{left:552.190500px;}
.xe{left:553.206000px;}
.x89{left:554.824500px;}
.x90{left:556.479000px;}
.x76{left:559.338000px;}
.x44{left:561.243000px;}
.x8{left:566.526000px;}
.xa4{left:568.698000px;}
.x9{left:575.532000px;}
.x71{left:579.229500px;}
.x91{left:580.867500px;}
.x77{left:583.137000px;}
.x6a{left:586.077000px;}
.x72{left:588.009000px;}
.x6f{left:617.169000px;}
.x6b{left:619.911000px;}
.x70{left:625.948500px;}
.x56{left:643.587000px;}
.x1e{left:651.721500px;}
.x1f{left:661.350000px;}
.x19{left:669.579000px;}
.x35{left:677.250000px;}
.x1a{left:678.358500px;}
.xa7{left:681.367500px;}
.x8d{left:687.312000px;}
.xa8{left:694.531500px;}
.x36{left:696.876000px;}
.x37{left:703.567500px;}
.x57{left:708.469500px;}
.x7a{left:713.182500px;}
.x58{left:715.161000px;}
.x38{left:720.973500px;}
.x7b{left:722.811000px;}
.x86{left:729.694500px;}
.x59{left:731.112000px;}
.x39{left:735.780000px;}
.x5a{left:737.803500px;}
.x54{left:741.576000px;}
.x22{left:750.817500px;}
.x23{left:760.446000px;}
.x14{left:764.857500px;}
.x5b{left:766.288500px;}
.x3a{left:769.018500px;}
.x15{left:774.486000px;}
.x16{left:781.177500px;}
.x45{left:783.517500px;}
.x7d{left:796.615500px;}
.x17{left:805.362000px;}
.x55{left:808.626000px;}
@media print{
.ve{vertical-align:-66.416000pt;}
.v7{vertical-align:-57.386667pt;}
.v6{vertical-align:-47.818667pt;}
.v9{vertical-align:-42.922667pt;}
.v16{vertical-align:-18.597333pt;}
.v14{vertical-align:-13.802667pt;}
.v1{vertical-align:-9.562667pt;}
.v12{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:6.197333pt;}
.v13{vertical-align:9.568000pt;}
.vd{vertical-align:16.341333pt;}
.vc{vertical-align:21.962667pt;}
.vf{vertical-align:23.136000pt;}
.v2{vertical-align:26.325333pt;}
.vb{vertical-align:28.442667pt;}
.v17{vertical-align:30.224000pt;}
.v5{vertical-align:33.573333pt;}
.v11{vertical-align:42.085333pt;}
.v4{vertical-align:43.136000pt;}
.v15{vertical-align:47.824000pt;}
.va{vertical-align:60.570667pt;}
.v8{vertical-align:86.784000pt;}
.v3{vertical-align:90.954667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000268pt;}
.ls13{letter-spacing:0.001036pt;}
.ls2{letter-spacing:0.001338pt;}
.ls29{letter-spacing:0.001396pt;}
.ls33{letter-spacing:0.001507pt;}
.ls10{letter-spacing:0.001546pt;}
.ls27{letter-spacing:0.001980pt;}
.ls8{letter-spacing:0.002377pt;}
.ls43{letter-spacing:0.002715pt;}
.ls23{letter-spacing:0.004646pt;}
.ls3a{letter-spacing:0.005406pt;}
.ls1c{letter-spacing:0.011039pt;}
.ls1b{letter-spacing:0.011556pt;}
.ls2e{letter-spacing:0.013024pt;}
.ls40{letter-spacing:0.014409pt;}
.ls16{letter-spacing:0.015811pt;}
.ls1d{letter-spacing:0.016372pt;}
.ls1f{letter-spacing:0.016620pt;}
.ls3{letter-spacing:0.016623pt;}
.ls22{letter-spacing:0.032247pt;}
.lsf{letter-spacing:0.406941pt;}
.ls44{letter-spacing:1.147694pt;}
.ls36{letter-spacing:2.269677pt;}
.ls5{letter-spacing:2.284372pt;}
.ls2a{letter-spacing:2.289705pt;}
.ls48{letter-spacing:2.295398pt;}
.ls34{letter-spacing:2.359159pt;}
.ls39{letter-spacing:2.380403pt;}
.ls17{letter-spacing:2.653258pt;}
.ls26{letter-spacing:2.653398pt;}
.ls14{letter-spacing:2.654275pt;}
.ls3b{letter-spacing:2.654817pt;}
.ls37{letter-spacing:2.657146pt;}
.ls11{letter-spacing:2.658034pt;}
.ls2f{letter-spacing:2.658591pt;}
.ls3d{letter-spacing:3.273049pt;}
.ls30{letter-spacing:3.465690pt;}
.ls15{letter-spacing:3.791684pt;}
.ls2c{letter-spacing:5.040026pt;}
.ls0{letter-spacing:6.574551pt;}
.ls49{letter-spacing:6.822434pt;}
.lsb{letter-spacing:7.077478pt;}
.lsa{letter-spacing:7.141239pt;}
.ls3e{letter-spacing:7.161919pt;}
.ls42{letter-spacing:10.607159pt;}
.ls4b{letter-spacing:10.624485pt;}
.ls7{letter-spacing:10.626715pt;}
.ls6{letter-spacing:10.632049pt;}
.ls2b{letter-spacing:10.648098pt;}
.ls3c{letter-spacing:13.286479pt;}
.lsd{letter-spacing:14.154957pt;}
.ls45{letter-spacing:16.545189pt;}
.ls21{letter-spacing:16.818591pt;}
.ls1a{letter-spacing:16.823925pt;}
.ls38{letter-spacing:17.711572pt;}
.ls19{letter-spacing:17.725577pt;}
.lsc{letter-spacing:19.192081pt;}
.ls31{letter-spacing:19.483139pt;}
.ls46{letter-spacing:19.514350pt;}
.ls18{letter-spacing:20.365258pt;}
.ls25{letter-spacing:20.365398pt;}
.ls47{letter-spacing:20.849869pt;}
.lse{letter-spacing:21.230554pt;}
.ls28{letter-spacing:21.498350pt;}
.ls4c{letter-spacing:21.503684pt;}
.ls2d{letter-spacing:21.837258pt;}
.ls4{letter-spacing:23.467812pt;}
.ls41{letter-spacing:23.641049pt;}
.ls12{letter-spacing:93.771812pt;}
.ls3f{letter-spacing:644.751906pt;}
.ls32{letter-spacing:670.702660pt;}
.ls4a{letter-spacing:778.841429pt;}
.ls1e{letter-spacing:785.090014pt;}
.ls35{letter-spacing:791.019793pt;}
.ls9{letter-spacing:851.656567pt;}
.ls20{letter-spacing:942.516087pt;}
.ws2e{word-spacing:-63.761067pt;}
.ws40{word-spacing:-53.176730pt;}
.ws3b{word-spacing:-51.238393pt;}
.ws34{word-spacing:-46.035490pt;}
.ws21{word-spacing:-40.590295pt;}
.ws44{word-spacing:-30.005958pt;}
.ws10{word-spacing:-29.942197pt;}
.ws3f{word-spacing:-29.521250pt;}
.ws1d{word-spacing:-17.343010pt;}
.ws27{word-spacing:-12.543875pt;}
.ws26{word-spacing:-3.598782pt;}
.ws43{word-spacing:-3.188053pt;}
.ws32{word-spacing:-1.785310pt;}
.ws45{word-spacing:-1.721549pt;}
.ws39{word-spacing:-1.020177pt;}
.ws38{word-spacing:-0.956416pt;}
.ws6{word-spacing:-0.861092pt;}
.ws3a{word-spacing:-0.765133pt;}
.ws23{word-spacing:-0.701372pt;}
.ws24{word-spacing:-0.637611pt;}
.ws4c{word-spacing:-0.076513pt;}
.ws29{word-spacing:-0.063761pt;}
.ws2a{word-spacing:-0.042507pt;}
.ws17{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.318805pt;}
.ws28{word-spacing:0.345061pt;}
.ws3{word-spacing:0.360728pt;}
.ws1a{word-spacing:0.382566pt;}
.ws25{word-spacing:0.701372pt;}
.ws50{word-spacing:0.719449pt;}
.ws48{word-spacing:1.147699pt;}
.ws49{word-spacing:1.338982pt;}
.wsa{word-spacing:1.408001pt;}
.ws33{word-spacing:2.167876pt;}
.ws53{word-spacing:2.359159pt;}
.ws52{word-spacing:2.422921pt;}
.ws35{word-spacing:2.486682pt;}
.ws7{word-spacing:2.862548pt;}
.ws9{word-spacing:2.920730pt;}
.wsf{word-spacing:2.996770pt;}
.ws11{word-spacing:3.060531pt;}
.ws15{word-spacing:3.124292pt;}
.ws12{word-spacing:3.188053pt;}
.wsb{word-spacing:3.211639pt;}
.ws1c{word-spacing:3.251814pt;}
.ws4{word-spacing:3.269821pt;}
.ws20{word-spacing:3.315575pt;}
.wsd{word-spacing:3.379337pt;}
.ws14{word-spacing:3.443098pt;}
.ws1e{word-spacing:3.506859pt;}
.ws2f{word-spacing:3.570620pt;}
.ws5{word-spacing:3.677094pt;}
.ws22{word-spacing:3.698142pt;}
.ws36{word-spacing:3.761903pt;}
.ws4e{word-spacing:3.825664pt;}
.ws30{word-spacing:3.889425pt;}
.ws56{word-spacing:3.953186pt;}
.ws41{word-spacing:4.080708pt;}
.ws1{word-spacing:4.131706pt;}
.ws4f{word-spacing:4.399514pt;}
.ws16{word-spacing:4.909602pt;}
.ws4a{word-spacing:5.993540pt;}
.ws2c{word-spacing:6.439868pt;}
.ws8{word-spacing:6.528005pt;}
.ws3e{word-spacing:6.694912pt;}
.ws51{word-spacing:6.758673pt;}
.ws37{word-spacing:6.822434pt;}
.ws47{word-spacing:7.821408pt;}
.ws42{word-spacing:7.838536pt;}
.ws55{word-spacing:7.842611pt;}
.ws18{word-spacing:7.970133pt;}
.wse{word-spacing:8.033894pt;}
.ws19{word-spacing:8.416461pt;}
.ws2{word-spacing:9.378917pt;}
.ws13{word-spacing:9.436638pt;}
.ws4d{word-spacing:10.074249pt;}
.ws46{word-spacing:10.920075pt;}
.ws3c{word-spacing:12.624691pt;}
.ws54{word-spacing:20.786108pt;}
.ws31{word-spacing:28.615887pt;}
.ws0{word-spacing:33.170200pt;}
.ws1f{word-spacing:34.338985pt;}
.ws4b{word-spacing:35.119498pt;}
.ws3d{word-spacing:38.511684pt;}
.ws2d{word-spacing:86.000687pt;}
.wsc{word-spacing:103.200585pt;}
.ws2b{word-spacing:493.791205pt;}
._12{margin-left:-34.430976pt;}
._1{margin-left:-8.705800pt;}
._6{margin-left:-4.945459pt;}
._18{margin-left:-3.785019pt;}
._2{margin-left:-2.865200pt;}
._3{margin-left:-1.570910pt;}
._4{width:1.570910pt;}
._0{width:2.865200pt;}
._19{width:4.057592pt;}
._10{width:13.588923pt;}
._14{width:16.705399pt;}
._f{width:17.598054pt;}
._d{width:18.554470pt;}
._16{width:19.471333pt;}
._a{width:21.396554pt;}
._11{width:24.097137pt;}
._5{width:25.134566pt;}
._8{width:26.478371pt;}
._9{width:27.644398pt;}
._1a{width:28.696384pt;}
._15{width:30.350268pt;}
._7{width:36.421849pt;}
._17{width:38.256533pt;}
._b{width:42.192298pt;}
._c{width:43.270648pt;}
._13{width:86.077200pt;}
._e{width:103.292400pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:56.149333pt;}
.y1b{bottom:96.000000pt;}
.y55{bottom:103.972000pt;}
.y1a{bottom:119.902667pt;}
.y54{bottom:127.874667pt;}
.y95{bottom:128.609333pt;}
.y19{bottom:143.805333pt;}
.y53{bottom:151.777333pt;}
.y94{bottom:152.512000pt;}
.y18{bottom:167.709333pt;}
.y92{bottom:171.974667pt;}
.y93{bottom:174.024000pt;}
.y52{bottom:175.680000pt;}
.y90{bottom:176.414667pt;}
.y91{bottom:183.972000pt;}
.y39{bottom:191.142667pt;}
.y17{bottom:191.612000pt;}
.y6e{bottom:193.974667pt;}
.y8f{bottom:195.878667pt;}
.y51{bottom:199.584000pt;}
.y8e{bottom:200.317333pt;}
.y38{bottom:215.046667pt;}
.y16{bottom:215.514667pt;}
.y6d{bottom:217.877333pt;}
.y8d{bottom:224.221333pt;}
.ya2{bottom:224.497333pt;}
.y50{bottom:233.781333pt;}
.y6c{bottom:237.634667pt;}
.y15{bottom:239.417333pt;}
.y6b{bottom:241.780000pt;}
.y8c{bottom:248.124000pt;}
.ya1{bottom:248.401333pt;}
.y37{bottom:254.734667pt;}
.y14{bottom:263.321333pt;}
.y8b{bottom:267.586667pt;}
.y89{bottom:267.881333pt;}
.y88{bottom:272.026667pt;}
.y68{bottom:279.361333pt;}
.y69{bottom:279.597333pt;}
.y8a{bottom:283.981333pt;}
.ya0{bottom:285.588000pt;}
.y4f{bottom:285.758667pt;}
.y13{bottom:287.224000pt;}
.y6a{bottom:291.062667pt;}
.y87{bottom:295.929333pt;}
.y67{bottom:298.046667pt;}
.y9f{bottom:309.490667pt;}
.y4e{bottom:309.662667pt;}
.y36{bottom:315.021333pt;}
.y86{bottom:315.393333pt;}
.y85{bottom:319.832000pt;}
.y12{bottom:326.912000pt;}
.y35{bottom:338.925333pt;}
.y66{bottom:341.730667pt;}
.y84{bottom:343.736000pt;}
.y9e{bottom:349.178667pt;}
.y4d{bottom:349.350667pt;}
.y83{bottom:367.638667pt;}
.y33{bottom:372.698667pt;}
.y32{bottom:373.368000pt;}
.y65{bottom:375.929333pt;}
.y11{bottom:386.641333pt;}
.y34{bottom:387.062667pt;}
.y31{bottom:391.148000pt;}
.y82{bottom:391.541333pt;}
.y10{bottom:409.060000pt;}
.y9d{bottom:409.466667pt;}
.y4c{bottom:409.637333pt;}
.y81{bottom:415.444000pt;}
.y64{bottom:427.906667pt;}
.yf{bottom:431.480000pt;}
.y9c{bottom:433.369333pt;}
.y4b{bottom:433.541333pt;}
.y30{bottom:437.053333pt;}
.y80{bottom:449.642667pt;}
.y63{bottom:451.809333pt;}
.ye{bottom:453.898667pt;}
.y9b{bottom:457.272000pt;}
.y4a{bottom:457.444000pt;}
.y2e{bottom:460.957333pt;}
.y2f{bottom:472.912000pt;}
.y62{bottom:475.713333pt;}
.yd{bottom:476.318667pt;}
.y7f{bottom:479.314667pt;}
.y9a{bottom:481.174667pt;}
.y49{bottom:481.346667pt;}
.yc{bottom:498.737333pt;}
.y48{bottom:505.249333pt;}
.y2c{bottom:508.941333pt;}
.y2d{bottom:509.962667pt;}
.y61{bottom:515.401333pt;}
.y99{bottom:520.864000pt;}
.yb{bottom:521.157333pt;}
.y7e{bottom:531.293333pt;}
.y47{bottom:539.448000pt;}
.ya{bottom:543.577333pt;}
.y7d{bottom:550.756000pt;}
.y7b{bottom:552.805333pt;}
.y7a{bottom:555.196000pt;}
.y2b{bottom:557.248000pt;}
.y9{bottom:565.996000pt;}
.y7c{bottom:567.150667pt;}
.y79{bottom:574.658667pt;}
.y60{bottom:575.688000pt;}
.y77{bottom:579.098667pt;}
.y2a{bottom:581.150667pt;}
.y78{bottom:586.656000pt;}
.y8{bottom:588.416000pt;}
.y46{bottom:591.425333pt;}
.y5f{bottom:599.592000pt;}
.y76{bottom:603.001333pt;}
.y29{bottom:605.054667pt;}
.y7{bottom:610.834667pt;}
.y45{bottom:615.328000pt;}
.y75{bottom:626.905333pt;}
.y28{bottom:628.957333pt;}
.y5e{bottom:636.317333pt;}
.y6{bottom:637.836000pt;}
.y44{bottom:639.232000pt;}
.y27{bottom:652.860000pt;}
.y5d{bottom:655.121333pt;}
.y43{bottom:663.134667pt;}
.y74{bottom:670.589333pt;}
.y26{bottom:676.762667pt;}
.y42{bottom:687.037333pt;}
.y5{bottom:696.612000pt;}
.y5c{bottom:698.805333pt;}
.y25{bottom:700.666667pt;}
.y73{bottom:714.274667pt;}
.y5b{bottom:722.709333pt;}
.y98{bottom:724.569333pt;}
.y41{bottom:730.722667pt;}
.y4{bottom:736.122667pt;}
.y24{bottom:740.354667pt;}
.y5a{bottom:746.612000pt;}
.y97{bottom:748.472000pt;}
.y72{bottom:753.962667pt;}
.y40{bottom:758.610667pt;}
.y59{bottom:786.356000pt;}
.y3f{bottom:786.498667pt;}
.y96{bottom:788.160000pt;}
.y3{bottom:789.208000pt;}
.y58{bottom:790.296000pt;}
.y23{bottom:800.641333pt;}
.y71{bottom:814.250667pt;}
.y3e{bottom:814.386667pt;}
.y22{bottom:824.545333pt;}
.y2{bottom:830.420000pt;}
.y57{bottom:833.981333pt;}
.y70{bottom:838.153333pt;}
.y3d{bottom:842.274667pt;}
.y21{bottom:848.448000pt;}
.y6f{bottom:862.056000pt;}
.y56{bottom:868.178667pt;}
.y1{bottom:871.632000pt;}
.y20{bottom:872.350667pt;}
.y3c{bottom:885.958667pt;}
.y1f{bottom:896.253333pt;}
.y3a{bottom:909.862667pt;}
.y1e{bottom:920.157333pt;}
.y3b{bottom:921.817333pt;}
.y1d{bottom:944.060000pt;}
.h9{height:0.002133pt;}
.hb{height:21.200555pt;}
.h5{height:25.076385pt;}
.hd{height:29.925069pt;}
.h17{height:31.880400pt;}
.h16{height:39.850667pt;}
.h3{height:40.610943pt;}
.h4{height:43.636400pt;}
.h7{height:47.820800pt;}
.h12{height:53.061069pt;}
.h1a{height:53.066402pt;}
.h10{height:53.559147pt;}
.h11{height:55.016400pt;}
.h18{height:55.021733pt;}
.h2{height:57.384800pt;}
.h13{height:58.211067pt;}
.he{height:60.323067pt;}
.hc{height:60.570667pt;}
.h1c{height:62.104400pt;}
.h1d{height:62.109733pt;}
.h15{height:63.580800pt;}
.h6{height:64.270827pt;}
.h1b{height:64.402133pt;}
.hf{height:72.591735pt;}
.h14{height:73.965733pt;}
.h19{height:75.756800pt;}
.h1{height:82.539800pt;}
.ha{height:86.784000pt;}
.h8{height:90.956800pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa9{left:94.173333pt;}
.xf{left:96.000000pt;}
.xaa{left:100.422667pt;}
.xae{left:103.804000pt;}
.x7e{left:105.946667pt;}
.xab{left:108.226667pt;}
.x2{left:112.642667pt;}
.x53{left:113.826667pt;}
.x7f{left:116.832000pt;}
.x18{left:119.412000pt;}
.x1{left:122.533333pt;}
.x10{left:127.657333pt;}
.x73{left:131.805333pt;}
.x80{left:133.272000pt;}
.xa{left:135.020000pt;}
.x11{left:136.216000pt;}
.x26{left:142.550667pt;}
.x85{left:145.016000pt;}
.x28{left:149.104000pt;}
.x27{left:151.109333pt;}
.x7{left:156.838667pt;}
.x92{left:162.226667pt;}
.x29{left:163.538667pt;}
.x4c{left:167.021333pt;}
.x81{left:170.457333pt;}
.x82{left:177.809333pt;}
.x93{left:185.898667pt;}
.x4d{left:189.141333pt;}
.x2e{left:191.230667pt;}
.xa1{left:193.929333pt;}
.x2f{left:199.034667pt;}
.x94{left:200.988000pt;}
.x83{left:205.678667pt;}
.x84{left:226.570667pt;}
.xb{left:229.186667pt;}
.xa2{left:231.416000pt;}
.x5f{left:235.202667pt;}
.xc{left:236.460000pt;}
.x24{left:242.120000pt;}
.x3d{left:245.272000pt;}
.xa3{left:248.926667pt;}
.x25{left:249.924000pt;}
.x87{left:251.662667pt;}
.x78{left:255.204000pt;}
.x64{left:259.506667pt;}
.x3f{left:260.652000pt;}
.xa5{left:261.549333pt;}
.x30{left:265.906667pt;}
.x60{left:266.965333pt;}
.x67{left:268.436000pt;}
.x5c{left:270.946667pt;}
.x65{left:276.104000pt;}
.x99{left:277.730667pt;}
.x5d{left:278.750667pt;}
.x68{left:280.956000pt;}
.x31{left:282.305333pt;}
.x9a{left:285.082667pt;}
.x3e{left:286.929333pt;}
.x9b{left:292.832000pt;}
.x4e{left:293.801333pt;}
.x62{left:296.226667pt;}
.x46{left:298.486667pt;}
.x50{left:301.458667pt;}
.x4f{left:302.360000pt;}
.x3{left:306.012000pt;}
.x51{left:307.492000pt;}
.x95{left:311.785333pt;}
.x63{left:313.258667pt;}
.x32{left:316.134667pt;}
.x96{left:317.734667pt;}
.x52{left:319.320000pt;}
.x7c{left:320.966667pt;}
.x4b{left:322.533333pt;}
.x6c{left:324.012000pt;}
.x47{left:325.838667pt;}
.x9c{left:328.340000pt;}
.x33{left:329.540000pt;}
.x4{left:333.425333pt;}
.x5{left:338.258667pt;}
.x20{left:339.852000pt;}
.x40{left:341.278667pt;}
.x48{left:342.418667pt;}
.x21{left:347.156000pt;}
.x12{left:348.682667pt;}
.x66{left:350.445333pt;}
.x97{left:352.713333pt;}
.x13{left:356.486667pt;}
.x41{left:357.809333pt;}
.x74{left:359.164000pt;}
.x2a{left:364.001333pt;}
.x9d{left:369.108000pt;}
.x5e{left:374.480000pt;}
.x6{left:376.225333pt;}
.x98{left:378.032000pt;}
.x2b{left:382.744000pt;}
.x2c{left:388.012000pt;}
.x49{left:392.372000pt;}
.x2d{left:395.816000pt;}
.x9e{left:398.138667pt;}
.x1b{left:404.098667pt;}
.x1c{left:405.088000pt;}
.x6d{left:410.085333pt;}
.x1d{left:412.892000pt;}
.x4a{left:416.762667pt;}
.x69{left:419.041333pt;}
.x9f{left:424.978667pt;}
.x61{left:429.353333pt;}
.x34{left:430.310667pt;}
.xa6{left:433.804000pt;}
.x3b{left:435.096000pt;}
.x6e{left:438.210667pt;}
.x8a{left:452.877333pt;}
.x79{left:457.530667pt;}
.x8b{left:460.625333pt;}
.x8c{left:466.597333pt;}
.x8e{left:469.593333pt;}
.x3c{left:472.494667pt;}
.x42{left:474.192000pt;}
.xa0{left:480.010667pt;}
.x75{left:481.758667pt;}
.xac{left:483.032000pt;}
.xd{left:484.465333pt;}
.x88{left:485.373333pt;}
.x8f{left:487.296000pt;}
.x43{left:488.954667pt;}
.xad{left:490.836000pt;}
.xe{left:491.738667pt;}
.x89{left:493.177333pt;}
.x90{left:494.648000pt;}
.x76{left:497.189333pt;}
.x44{left:498.882667pt;}
.x8{left:503.578667pt;}
.xa4{left:505.509333pt;}
.x9{left:511.584000pt;}
.x71{left:514.870667pt;}
.x91{left:516.326667pt;}
.x77{left:518.344000pt;}
.x6a{left:520.957333pt;}
.x72{left:522.674667pt;}
.x6f{left:548.594667pt;}
.x6b{left:551.032000pt;}
.x70{left:556.398667pt;}
.x56{left:572.077333pt;}
.x1e{left:579.308000pt;}
.x1f{left:587.866667pt;}
.x19{left:595.181333pt;}
.x35{left:602.000000pt;}
.x1a{left:602.985333pt;}
.xa7{left:605.660000pt;}
.x8d{left:610.944000pt;}
.xa8{left:617.361333pt;}
.x36{left:619.445333pt;}
.x37{left:625.393333pt;}
.x57{left:629.750667pt;}
.x7a{left:633.940000pt;}
.x58{left:635.698667pt;}
.x38{left:640.865333pt;}
.x7b{left:642.498667pt;}
.x86{left:648.617333pt;}
.x59{left:649.877333pt;}
.x39{left:654.026667pt;}
.x5a{left:655.825333pt;}
.x54{left:659.178667pt;}
.x22{left:667.393333pt;}
.x23{left:675.952000pt;}
.x14{left:679.873333pt;}
.x5b{left:681.145333pt;}
.x3a{left:683.572000pt;}
.x15{left:688.432000pt;}
.x16{left:694.380000pt;}
.x45{left:696.460000pt;}
.x7d{left:708.102667pt;}
.x17{left:715.877333pt;}
.x55{left:718.778667pt;}
}




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