
    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_77bb6d7bed303c701e6cf2f9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a698b5e6397afb073ca47a8b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.891000;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_d0d802eb197032b8d5de0c52.woff')format("woff");}.ff3{font-family:ff3;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3149dc988812edaf3a88fc38.woff')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_5177af5ffa93de772386283b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4e072a90a4e423a8c5eda8b3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_d74d84397df2a0c3bdd33ccd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.727000;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_15d81b01c90e354687a7c02e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6237430a0aea4c6900d8c0e3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_32521f7dcaaeb789401f9055.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6cca80f046b3ba16f9bfdff1.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4c1acb9f230fbcd002ea1e09.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_60b1a3bbf05d109a1fd1d83a.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b455ed8db7f8c85ba6d34dc3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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_5a4bb1e1c282ee1ec419ca21.woff')format("woff");}.fff{font-family:fff;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_deced1ebc40bf83187d3e3be.woff')format("woff");}.ff10{font-family:ff10;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ded3d484869308837aef3f29.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_74cfc9d42f994a310b87bee0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.046000;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:ff13;src:url('chunks/assets/font_b71d72a81e5da712c5c1f501.woff')format("woff");}.ff13{font-family:ff13;line-height:1.850000;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:ff14;src:url('chunks/assets/font_ce9a8a34b9a171ff7f840b6d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.923000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m10{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.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);}
.mc{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);}
.m12{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);}
.m4{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);}
.md{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m5{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.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);}
.m13{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);}
.ma{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);}
.m6{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);}
.m8{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);}
.m11{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);}
.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);}
.mb{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);}
.v8{vertical-align:-69.342000px;}
.v7{vertical-align:-26.034000px;}
.v9{vertical-align:-18.054000px;}
.v2{vertical-align:-10.764000px;}
.va{vertical-align:-8.436000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.112000px;}
.v5{vertical-align:26.664000px;}
.v3{vertical-align:28.242000px;}
.v1{vertical-align:29.616000px;}
.v6{vertical-align:69.336000px;}
.lsc{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000002px;}
.ls43{letter-spacing:0.000445px;}
.ls42{letter-spacing:0.001227px;}
.ls1d{letter-spacing:0.001288px;}
.ls22{letter-spacing:0.002012px;}
.ls4d{letter-spacing:0.002759px;}
.ls40{letter-spacing:0.003543px;}
.ls50{letter-spacing:0.003965px;}
.ls4{letter-spacing:0.004506px;}
.ls2a{letter-spacing:0.007288px;}
.ls49{letter-spacing:0.007419px;}
.ls2e{letter-spacing:0.008970px;}
.ls2f{letter-spacing:0.011551px;}
.ls4b{letter-spacing:0.014604px;}
.ls4c{letter-spacing:0.016587px;}
.ls24{letter-spacing:0.017551px;}
.ls34{letter-spacing:0.021026px;}
.ls27{letter-spacing:0.022598px;}
.ls52{letter-spacing:0.023067px;}
.ls3d{letter-spacing:0.023683px;}
.ls55{letter-spacing:0.026029px;}
.ls29{letter-spacing:0.036029px;}
.ls46{letter-spacing:1.291156px;}
.ls1{letter-spacing:1.936742px;}
.ls38{letter-spacing:2.008474px;}
.ls44{letter-spacing:2.438861px;}
.ls12{letter-spacing:2.761651px;}
.ls45{letter-spacing:2.985537px;}
.ls48{letter-spacing:2.986528px;}
.ls47{letter-spacing:2.988411px;}
.ls5{letter-spacing:2.991056px;}
.ls3e{letter-spacing:2.991537px;}
.ls13{letter-spacing:2.999651px;}
.ls19{letter-spacing:3.730007px;}
.ls0{letter-spacing:4.160410px;}
.ls28{letter-spacing:4.259644px;}
.ls15{letter-spacing:4.265644px;}
.ls11{letter-spacing:5.595034px;}
.ls16{letter-spacing:5.666765px;}
.ls3f{letter-spacing:5.743488px;}
.ls37{letter-spacing:7.460045px;}
.ls20{letter-spacing:7.531776px;}
.ls3b{letter-spacing:8.057159px;}
.ls7{letter-spacing:11.979110px;}
.ls2b{letter-spacing:14.158487px;}
.ls32{letter-spacing:15.508487px;}
.lsa{letter-spacing:15.924326px;}
.lsb{letter-spacing:17.789338px;}
.ls8{letter-spacing:17.932800px;}
.ls41{letter-spacing:18.721843px;}
.ls23{letter-spacing:18.928487px;}
.ls1a{letter-spacing:18.934487px;}
.ls9{letter-spacing:19.869542px;}
.ls3{letter-spacing:19.941274px;}
.ls51{letter-spacing:20.296528px;}
.ls36{letter-spacing:20.586854px;}
.lse{letter-spacing:21.017242px;}
.ls17{letter-spacing:21.591091px;}
.ls2{letter-spacing:21.878016px;}
.ls31{letter-spacing:22.308403px;}
.ls35{letter-spacing:22.523597px;}
.lsd{letter-spacing:23.169178px;}
.ls54{letter-spacing:23.240909px;}
.ls21{letter-spacing:23.384371px;}
.ls4e{letter-spacing:23.414012px;}
.ls1c{letter-spacing:23.456102px;}
.lsf{letter-spacing:23.599565px;}
.ls6{letter-spacing:23.814758px;}
.ls39{letter-spacing:25.392845px;}
.ls1e{letter-spacing:25.669488px;}
.ls33{letter-spacing:25.705488px;}
.ls10{letter-spacing:25.823232px;}
.ls53{letter-spacing:26.403537px;}
.ls4f{letter-spacing:29.095488px;}
.ls1f{letter-spacing:29.122867px;}
.ls4a{letter-spacing:29.161488px;}
.ls14{letter-spacing:30.582505px;}
.ls2c{letter-spacing:43.334012px;}
.ls2d{letter-spacing:48.992410px;}
.ls3c{letter-spacing:70.224845px;}
.ls18{letter-spacing:75.995644px;}
.ls25{letter-spacing:90.158012px;}
.ls26{letter-spacing:90.166118px;}
.ls30{letter-spacing:348.326707px;}
.ls1b{letter-spacing:718.459699px;}
.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;}
}
.ws26{word-spacing:-57.643192px;}
.ws25{word-spacing:-51.789926px;}
.ws51{word-spacing:-47.324343px;}
.ws2e{word-spacing:-45.664082px;}
.ws41{word-spacing:-35.119596px;}
.ws48{word-spacing:-33.756703px;}
.ws1a{word-spacing:-33.684972px;}
.ws40{word-spacing:-28.405555px;}
.ws3f{word-spacing:-28.333824px;}
.ws38{word-spacing:-25.794540px;}
.ws49{word-spacing:-25.722808px;}
.ws2c{word-spacing:-24.646840px;}
.ws0{word-spacing:-23.245312px;}
.ws58{word-spacing:-23.140485px;}
.ws52{word-spacing:-21.777592px;}
.ws34{word-spacing:-19.367325px;}
.ws27{word-spacing:-17.330258px;}
.ws4a{word-spacing:-16.397752px;}
.ws23{word-spacing:-15.823903px;}
.ws3b{word-spacing:-15.099418px;}
.ws5c{word-spacing:-15.034860px;}
.ws21{word-spacing:-14.955955px;}
.ws2{word-spacing:-14.082230px;}
.ws29{word-spacing:-13.736525px;}
.ws3d{word-spacing:-13.600236px;}
.ws22{word-spacing:-13.026386px;}
.ws43{word-spacing:-12.954655px;}
.ws24{word-spacing:-12.595999px;}
.ws55{word-spacing:-12.524268px;}
.ws44{word-spacing:-12.309074px;}
.ws1c{word-spacing:-12.093880px;}
.ws1b{word-spacing:-12.022149px;}
.ws1f{word-spacing:-11.950418px;}
.ws5e{word-spacing:-11.878687px;}
.ws46{word-spacing:-11.806956px;}
.ws18{word-spacing:-11.735224px;}
.ws50{word-spacing:-11.680356px;}
.ws35{word-spacing:-11.663493px;}
.ws3{word-spacing:-11.650919px;}
.ws2b{word-spacing:-11.591762px;}
.ws2a{word-spacing:-11.520031px;}
.ws2d{word-spacing:-11.376568px;}
.ws1d{word-spacing:-11.304837px;}
.ws32{word-spacing:-11.233106px;}
.ws11{word-spacing:-11.192737px;}
.ws45{word-spacing:-11.161375px;}
.wsf{word-spacing:-10.996373px;}
.ws9{word-spacing:-10.930918px;}
.ws14{word-spacing:-10.800009px;}
.ws7{word-spacing:-10.538191px;}
.ws3e{word-spacing:-10.300600px;}
.ws53{word-spacing:-10.157138px;}
.ws3c{word-spacing:-9.289190px;}
.ws37{word-spacing:-9.145728px;}
.ws5a{word-spacing:-8.722514px;}
.ws57{word-spacing:-8.507320px;}
.ws4{word-spacing:-8.247280px;}
.wse{word-spacing:-7.920007px;}
.ws10{word-spacing:-6.872733px;}
.ws13{word-spacing:-6.807278px;}
.wsd{word-spacing:-6.610915px;}
.ws12{word-spacing:-6.087278px;}
.ws4d{word-spacing:-4.920760px;}
.ws56{word-spacing:-4.131717px;}
.ws36{word-spacing:-3.773061px;}
.ws4b{word-spacing:-3.342674px;}
.ws30{word-spacing:-0.071731px;}
.ws2f{word-spacing:-0.047821px;}
.ws28{word-spacing:0.000000px;}
.wsc{word-spacing:10.865464px;}
.wsb{word-spacing:18.130924px;}
.ws4e{word-spacing:19.797811px;}
.ws19{word-spacing:19.869542px;}
.ws47{word-spacing:20.084736px;}
.ws5d{word-spacing:22.021478px;}
.ws42{word-spacing:22.093210px;}
.ws4f{word-spacing:23.312640px;}
.wsa{word-spacing:23.367292px;}
.ws33{word-spacing:23.384371px;}
.ws59{word-spacing:23.456102px;}
.ws8{word-spacing:23.694565px;}
.ws6{word-spacing:23.760020px;}
.ws31{word-spacing:23.814758px;}
.ws54{word-spacing:24.388608px;}
.ws5f{word-spacing:24.818995px;}
.ws1e{word-spacing:25.464576px;}
.ws5{word-spacing:25.723658px;}
.ws20{word-spacing:25.894963px;}
.ws5b{word-spacing:27.759974px;}
.ws15{word-spacing:28.996388px;}
.ws16{word-spacing:29.061842px;}
.ws4c{word-spacing:30.127104px;}
.ws1{word-spacing:31.091012px;}
.ws3a{word-spacing:31.848653px;}
.ws17{word-spacing:58.101975px;}
.ws39{word-spacing:614.162534px;}
._14{margin-left:-12.523733px;}
._13{margin-left:-11.433068px;}
._19{margin-left:-7.818701px;}
._4{margin-left:-5.760005px;}
._0{margin-left:-3.843225px;}
._5{margin-left:-2.749093px;}
._3{margin-left:-1.701820px;}
._8{width:1.145009px;}
._2{width:2.324084px;}
._1{width:3.843225px;}
._16{width:5.708236px;}
._a{width:11.907379px;}
._e{width:19.749388px;}
._12{width:22.638353px;}
._b{width:23.958221px;}
._17{width:25.464576px;}
._6{width:26.574568px;}
._9{width:28.930933px;}
._d{width:31.022841px;}
._f{width:32.469126px;}
._18{width:33.984438px;}
._7{width:41.825489px;}
._15{width:71.729186px;}
._11{width:116.203950px;}
._c{width:142.314701px;}
._10{width:155.692627px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y24{bottom:61.467000px;}
.y23{bottom:106.299000px;}
.y76{bottom:118.626000px;}
.y22{bottom:127.968000px;}
.y75{bottom:140.295000px;}
.y52{bottom:145.519500px;}
.y21{bottom:149.637000px;}
.y51{bottom:167.187000px;}
.y20{bottom:171.306000px;}
.y74{bottom:174.261000px;}
.y50{bottom:188.856000px;}
.y1f{bottom:192.973500px;}
.y73{bottom:195.930000px;}
.y1e{bottom:214.642500px;}
.y4f{bottom:229.152000px;}
.y72{bottom:229.894500px;}
.y1d{bottom:236.311500px;}
.y4c{bottom:237.708000px;}
.y4b{bottom:242.190000px;}
.y4a{bottom:246.673500px;}
.y49{bottom:251.157000px;}
.y71{bottom:251.563500px;}
.y43{bottom:260.124000px;}
.y4e{bottom:263.658000px;}
.y1c{bottom:266.721000px;}
.y48{bottom:278.056500px;}
.y47{bottom:282.540000px;}
.y70{bottom:285.529500px;}
.y46{bottom:287.023500px;}
.y1b{bottom:288.390000px;}
.y4d{bottom:289.660500px;}
.y45{bottom:291.505500px;}
.y44{bottom:304.956000px;}
.y6f{bottom:307.198500px;}
.y1a{bottom:310.059000px;}
.y42{bottom:326.907000px;}
.y19{bottom:331.726500px;}
.y6e{bottom:341.164500px;}
.y41{bottom:348.576000px;}
.y6d{bottom:362.833500px;}
.y18{bottom:370.537500px;}
.y40{bottom:379.102500px;}
.y6c{bottom:396.799500px;}
.y3f{bottom:400.771500px;}
.y17{bottom:409.348500px;}
.y6b{bottom:418.467000px;}
.y3e{bottom:422.440500px;}
.y3d{bottom:444.108000px;}
.y16{bottom:448.776000px;}
.y6a{bottom:457.894500px;}
.y3c{bottom:483.535500px;}
.y15{bottom:508.560000px;}
.y69{bottom:516.427500px;}
.y14{bottom:528.883500px;}
.y68{bottom:538.096500px;}
.y3b{bottom:543.379500px;}
.y13{bottom:557.710500px;}
.y67{bottom:559.765500px;}
.y3a{bottom:565.048500px;}
.y12{bottom:578.035500px;}
.y66{bottom:581.434500px;}
.y39{bottom:586.717500px;}
.y11{bottom:598.359000px;}
.y65{bottom:603.102000px;}
.y37{bottom:617.244000px;}
.y10{bottom:618.682500px;}
.y38{bottom:623.751000px;}
.y64{bottom:624.771000px;}
.y36{bottom:638.911500px;}
.yf{bottom:639.006000px;}
.ye{bottom:659.329500px;}
.y63{bottom:664.198500px;}
.yd{bottom:679.654500px;}
.y35{bottom:697.708500px;}
.yc{bottom:699.978000px;}
.yb{bottom:720.301500px;}
.y33{bottom:722.365500px;}
.y62{bottom:722.731500px;}
.y34{bottom:728.874000px;}
.ya{bottom:740.625000px;}
.y61{bottom:744.400500px;}
.y31{bottom:752.892000px;}
.y32{bottom:759.400500px;}
.y9{bottom:760.948500px;}
.y60{bottom:766.069500px;}
.y8{bottom:781.273500px;}
.y5f{bottom:787.738500px;}
.y30{bottom:796.378500px;}
.y7{bottom:801.597000px;}
.y5e{bottom:809.406000px;}
.y6{bottom:831.034500px;}
.y2f{bottom:837.840000px;}
.y5d{bottom:839.914500px;}
.y5b{bottom:861.583500px;}
.y5c{bottom:868.092000px;}
.y2e{bottom:868.365000px;}
.y5{bottom:896.220000px;}
.y5a{bottom:899.815500px;}
.y2d{bottom:907.792500px;}
.y59{bottom:925.498500px;}
.y4{bottom:938.167500px;}
.y58{bottom:959.464500px;}
.y2c{bottom:967.636500px;}
.y57{bottom:981.133500px;}
.y2b{bottom:989.305500px;}
.y3{bottom:991.405500px;}
.y56{bottom:1002.802500px;}
.y2a{bottom:1028.524500px;}
.y2{bottom:1028.764500px;}
.y55{bottom:1036.768500px;}
.y1{bottom:1066.125000px;}
.y29{bottom:1066.930500px;}
.y54{bottom:1067.277000px;}
.y28{bottom:1073.596500px;}
.y53{bottom:1088.946000px;}
.y27{bottom:1095.265500px;}
.y26{bottom:1116.934500px;}
.y25{bottom:1138.602000px;}
.h12{height:2.391024px;}
.h11{height:35.865450px;}
.h5{height:45.687311px;}
.h7{height:46.145493px;}
.h6{height:49.090950px;}
.hb{height:50.498765px;}
.h9{height:53.798400px;}
.hf{height:61.899450px;}
.hc{height:64.107450px;}
.h4{height:64.557900px;}
.ha{height:65.481450px;}
.he{height:65.487450px;}
.h10{height:71.733024px;}
.h3{height:71.891510px;}
.h8{height:77.469300px;}
.hd{height:80.462400px;}
.h2{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x54{left:103.939500px;}
.xe{left:106.299000px;}
.x1{left:113.103000px;}
.x85{left:114.495000px;}
.x97{left:118.005000px;}
.x96{left:122.883000px;}
.x12{left:130.830000px;}
.x3a{left:132.637500px;}
.x4e{left:137.640000px;}
.x13{left:139.609500px;}
.xa6{left:142.393500px;}
.xd{left:148.282500px;}
.x7{left:150.196500px;}
.x2{left:157.611000px;}
.x4f{left:158.865000px;}
.x9d{left:168.486000px;}
.x56{left:182.812500px;}
.x88{left:187.657500px;}
.x79{left:197.542500px;}
.x9e{left:200.529000px;}
.x94{left:203.766000px;}
.x6d{left:213.754500px;}
.x86{left:216.246000px;}
.x89{left:222.189000px;}
.x9f{left:225.403500px;}
.x72{left:229.468500px;}
.x57{left:234.978000px;}
.xa5{left:236.305500px;}
.xa3{left:241.257000px;}
.x50{left:245.356500px;}
.x73{left:250.444500px;}
.x28{left:253.170000px;}
.x87{left:255.868500px;}
.xa4{left:261.079500px;}
.x6e{left:263.550000px;}
.x58{left:269.092500px;}
.x76{left:278.859000px;}
.x55{left:280.248000px;}
.x4c{left:282.312000px;}
.x29{left:291.520500px;}
.x6f{left:293.880000px;}
.x2a{left:300.124500px;}
.x7a{left:302.077500px;}
.x3{left:303.154500px;}
.x14{left:304.593000px;}
.x4d{left:306.297000px;}
.x2b{left:307.990500px;}
.x26{left:309.703500px;}
.x63{left:311.856000px;}
.x7b{left:313.920000px;}
.x2c{left:316.594500px;}
.x27{left:318.517500px;}
.x7c{left:320.884500px;}
.x15{left:323.454000px;}
.xf{left:325.341000px;}
.x16{left:330.159000px;}
.x2e{left:334.788000px;}
.x8c{left:336.420000px;}
.x17{left:338.559000px;}
.x2f{left:341.698500px;}
.x8d{left:348.264000px;}
.x30{left:350.098500px;}
.x8e{left:354.955500px;}
.x93{left:356.641500px;}
.x8f{left:363.355500px;}
.x70{left:365.182500px;}
.x10{left:367.192500px;}
.x77{left:368.514000px;}
.x59{left:372.900000px;}
.x4{left:374.599500px;}
.x22{left:376.806000px;}
.x2d{left:378.808500px;}
.x11{left:381.430500px;}
.x64{left:382.485000px;}
.x5{left:384.970500px;}
.x98{left:386.470500px;}
.x7f{left:390.636000px;}
.x9b{left:393.033000px;}
.x7d{left:399.291000px;}
.xa0{left:402.711000px;}
.xa2{left:406.269000px;}
.x6{left:410.710500px;}
.x71{left:419.070000px;}
.x9c{left:425.919000px;}
.x51{left:430.701000px;}
.x7e{left:434.280000px;}
.x65{left:435.306000px;}
.x3e{left:442.066500px;}
.x52{left:461.029500px;}
.x5a{left:463.710000px;}
.x66{left:465.634500px;}
.x90{left:476.613000px;}
.x48{left:489.667500px;}
.x3f{left:491.292000px;}
.x49{left:505.413000px;}
.x40{left:513.129000px;}
.x80{left:519.750000px;}
.x1e{left:529.921500px;}
.x81{left:535.246500px;}
.x67{left:536.263500px;}
.x1f{left:537.787500px;}
.x8a{left:544.290000px;}
.x20{left:546.646500px;}
.x5b{left:558.277500px;}
.x4a{left:560.452500px;}
.x53{left:565.447500px;}
.x5c{left:579.322500px;}
.x5d{left:586.143000px;}
.x78{left:587.490000px;}
.x21{left:600.225000px;}
.x5e{left:602.125500px;}
.x31{left:608.181000px;}
.x5f{left:613.929000px;}
.x41{left:614.986500px;}
.x95{left:619.272000px;}
.x3b{left:620.536500px;}
.x3c{left:627.228000px;}
.x32{left:629.745000px;}
.x8{left:632.529000px;}
.x42{left:633.846000px;}
.x3d{left:635.628000px;}
.x33{left:638.629500px;}
.x43{left:640.743000px;}
.x9{left:643.506000px;}
.x82{left:647.703000px;}
.xa{left:649.857000px;}
.x34{left:651.792000px;}
.x83{left:654.394500px;}
.x60{left:656.421000px;}
.xb{left:657.694500px;}
.x35{left:660.676500px;}
.x91{left:663.897000px;}
.x84{left:670.377000px;}
.x36{left:673.839000px;}
.x92{left:679.284000px;}
.x37{left:682.725000px;}
.x18{left:685.011000px;}
.x44{left:692.382000px;}
.x19{left:696.855000px;}
.x45{left:699.750000px;}
.x1a{left:703.560000px;}
.x46{left:706.647000px;}
.x1b{left:711.960000px;}
.xc{left:713.061000px;}
.x47{left:722.629500px;}
.x68{left:724.498500px;}
.x99{left:731.254500px;}
.x38{left:735.637500px;}
.xa1{left:738.355500px;}
.x74{left:740.382000px;}
.x39{left:742.548000px;}
.x69{left:743.629500px;}
.x23{left:748.024500px;}
.x75{left:749.161500px;}
.x9a{left:752.925000px;}
.x4b{left:757.618500px;}
.x6a{left:762.490500px;}
.x1c{left:763.990500px;}
.x8b{left:765.861000px;}
.x24{left:766.884000px;}
.x6b{left:769.182000px;}
.x1d{left:772.770000px;}
.x61{left:775.288500px;}
.x6c{left:777.583500px;}
.x25{left:781.977000px;}
.x62{left:785.023500px;}
@media print{
.v8{vertical-align:-61.637333pt;}
.v7{vertical-align:-23.141333pt;}
.v9{vertical-align:-16.048000pt;}
.v2{vertical-align:-9.568000pt;}
.va{vertical-align:-7.498667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.544000pt;}
.v5{vertical-align:23.701333pt;}
.v3{vertical-align:25.104000pt;}
.v1{vertical-align:26.325333pt;}
.v6{vertical-align:61.632000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000002pt;}
.ls43{letter-spacing:0.000396pt;}
.ls42{letter-spacing:0.001091pt;}
.ls1d{letter-spacing:0.001145pt;}
.ls22{letter-spacing:0.001788pt;}
.ls4d{letter-spacing:0.002452pt;}
.ls40{letter-spacing:0.003149pt;}
.ls50{letter-spacing:0.003525pt;}
.ls4{letter-spacing:0.004006pt;}
.ls2a{letter-spacing:0.006479pt;}
.ls49{letter-spacing:0.006595pt;}
.ls2e{letter-spacing:0.007974pt;}
.ls2f{letter-spacing:0.010267pt;}
.ls4b{letter-spacing:0.012981pt;}
.ls4c{letter-spacing:0.014744pt;}
.ls24{letter-spacing:0.015601pt;}
.ls34{letter-spacing:0.018690pt;}
.ls27{letter-spacing:0.020087pt;}
.ls52{letter-spacing:0.020504pt;}
.ls3d{letter-spacing:0.021052pt;}
.ls55{letter-spacing:0.023137pt;}
.ls29{letter-spacing:0.032026pt;}
.ls46{letter-spacing:1.147694pt;}
.ls1{letter-spacing:1.721549pt;}
.ls38{letter-spacing:1.785310pt;}
.ls44{letter-spacing:2.167876pt;}
.ls12{letter-spacing:2.454801pt;}
.ls45{letter-spacing:2.653811pt;}
.ls48{letter-spacing:2.654692pt;}
.ls47{letter-spacing:2.656365pt;}
.ls5{letter-spacing:2.658717pt;}
.ls3e{letter-spacing:2.659144pt;}
.ls13{letter-spacing:2.666356pt;}
.ls19{letter-spacing:3.315562pt;}
.ls0{letter-spacing:3.698142pt;}
.ls28{letter-spacing:3.786350pt;}
.ls15{letter-spacing:3.791684pt;}
.ls11{letter-spacing:4.973363pt;}
.ls16{letter-spacing:5.037124pt;}
.ls3f{letter-spacing:5.105323pt;}
.ls37{letter-spacing:6.631151pt;}
.ls20{letter-spacing:6.694912pt;}
.ls3b{letter-spacing:7.161919pt;}
.ls7{letter-spacing:10.648098pt;}
.ls2b{letter-spacing:12.585321pt;}
.ls32{letter-spacing:13.785321pt;}
.lsa{letter-spacing:14.154957pt;}
.lsb{letter-spacing:15.812745pt;}
.ls8{letter-spacing:15.940267pt;}
.ls41{letter-spacing:16.641638pt;}
.ls23{letter-spacing:16.825321pt;}
.ls1a{letter-spacing:16.830655pt;}
.ls9{letter-spacing:17.661815pt;}
.ls3{letter-spacing:17.725577pt;}
.ls51{letter-spacing:18.041358pt;}
.ls36{letter-spacing:18.299426pt;}
.lse{letter-spacing:18.681993pt;}
.ls17{letter-spacing:19.192081pt;}
.ls2{letter-spacing:19.447125pt;}
.ls31{letter-spacing:19.829692pt;}
.ls35{letter-spacing:20.020975pt;}
.lsd{letter-spacing:20.594825pt;}
.ls54{letter-spacing:20.658586pt;}
.ls21{letter-spacing:20.786108pt;}
.ls4e{letter-spacing:20.812455pt;}
.ls1c{letter-spacing:20.849869pt;}
.lsf{letter-spacing:20.977391pt;}
.ls6{letter-spacing:21.168674pt;}
.ls39{letter-spacing:22.571418pt;}
.ls1e{letter-spacing:22.817323pt;}
.ls33{letter-spacing:22.849323pt;}
.ls10{letter-spacing:22.953984pt;}
.ls53{letter-spacing:23.469811pt;}
.ls4f{letter-spacing:25.862656pt;}
.ls1f{letter-spacing:25.886993pt;}
.ls4a{letter-spacing:25.921323pt;}
.ls14{letter-spacing:27.184449pt;}
.ls2c{letter-spacing:38.519121pt;}
.ls2d{letter-spacing:43.548809pt;}
.ls3c{letter-spacing:62.422084pt;}
.ls18{letter-spacing:67.551684pt;}
.ls25{letter-spacing:80.140455pt;}
.ls26{letter-spacing:80.147661pt;}
.ls30{letter-spacing:309.623740pt;}
.ls1b{letter-spacing:638.630844pt;}
.ws26{word-spacing:-51.238393pt;}
.ws25{word-spacing:-46.035490pt;}
.ws51{word-spacing:-42.066082pt;}
.ws2e{word-spacing:-40.590295pt;}
.ws41{word-spacing:-31.217418pt;}
.ws48{word-spacing:-30.005958pt;}
.ws1a{word-spacing:-29.942197pt;}
.ws40{word-spacing:-25.249382pt;}
.ws3f{word-spacing:-25.185621pt;}
.ws38{word-spacing:-22.928480pt;}
.ws49{word-spacing:-22.864719pt;}
.ws2c{word-spacing:-21.908303pt;}
.ws0{word-spacing:-20.662500pt;}
.ws58{word-spacing:-20.569320pt;}
.ws52{word-spacing:-19.357860pt;}
.ws34{word-spacing:-17.215400pt;}
.ws27{word-spacing:-15.404674pt;}
.ws4a{word-spacing:-14.575780pt;}
.ws23{word-spacing:-14.065691pt;}
.ws3b{word-spacing:-13.421705pt;}
.ws5c{word-spacing:-13.364320pt;}
.ws21{word-spacing:-13.294182pt;}
.ws2{word-spacing:-12.517538pt;}
.ws29{word-spacing:-12.210244pt;}
.ws3d{word-spacing:-12.089098pt;}
.ws22{word-spacing:-11.579010pt;}
.ws43{word-spacing:-11.515249pt;}
.ws24{word-spacing:-11.196443pt;}
.ws55{word-spacing:-11.132682pt;}
.ws44{word-spacing:-10.941399pt;}
.ws1c{word-spacing:-10.750116pt;}
.ws1b{word-spacing:-10.686355pt;}
.ws1f{word-spacing:-10.622594pt;}
.ws5e{word-spacing:-10.558833pt;}
.ws46{word-spacing:-10.495072pt;}
.ws18{word-spacing:-10.431311pt;}
.ws50{word-spacing:-10.382539pt;}
.ws35{word-spacing:-10.367549pt;}
.ws3{word-spacing:-10.356372pt;}
.ws2b{word-spacing:-10.303788pt;}
.ws2a{word-spacing:-10.240027pt;}
.ws2d{word-spacing:-10.112505pt;}
.ws1d{word-spacing:-10.048744pt;}
.ws32{word-spacing:-9.984983pt;}
.ws11{word-spacing:-9.949099pt;}
.ws45{word-spacing:-9.921222pt;}
.wsf{word-spacing:-9.774554pt;}
.ws9{word-spacing:-9.716372pt;}
.ws14{word-spacing:-9.600008pt;}
.ws7{word-spacing:-9.367281pt;}
.ws3e{word-spacing:-9.156089pt;}
.ws53{word-spacing:-9.028567pt;}
.ws3c{word-spacing:-8.257058pt;}
.ws37{word-spacing:-8.129536pt;}
.ws5a{word-spacing:-7.753346pt;}
.ws57{word-spacing:-7.562063pt;}
.ws4{word-spacing:-7.330915pt;}
.wse{word-spacing:-7.040006pt;}
.ws10{word-spacing:-6.109096pt;}
.ws13{word-spacing:-6.050914pt;}
.wsd{word-spacing:-5.876369pt;}
.ws12{word-spacing:-5.410914pt;}
.ws4d{word-spacing:-4.374009pt;}
.ws56{word-spacing:-3.672637pt;}
.ws36{word-spacing:-3.353832pt;}
.ws4b{word-spacing:-2.971266pt;}
.ws30{word-spacing:-0.063761pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws28{word-spacing:0.000000pt;}
.wsc{word-spacing:9.658190pt;}
.wsb{word-spacing:16.116377pt;}
.ws4e{word-spacing:17.598054pt;}
.ws19{word-spacing:17.661815pt;}
.ws47{word-spacing:17.853099pt;}
.ws5d{word-spacing:19.574647pt;}
.ws42{word-spacing:19.638409pt;}
.ws4f{word-spacing:20.722347pt;}
.wsa{word-spacing:20.770926pt;}
.ws33{word-spacing:20.786108pt;}
.ws59{word-spacing:20.849869pt;}
.ws8{word-spacing:21.061836pt;}
.ws6{word-spacing:21.120018pt;}
.ws31{word-spacing:21.168674pt;}
.ws54{word-spacing:21.678763pt;}
.ws5f{word-spacing:22.061329pt;}
.ws1e{word-spacing:22.635179pt;}
.ws5{word-spacing:22.865474pt;}
.ws20{word-spacing:23.017745pt;}
.ws5b{word-spacing:24.675533pt;}
.ws15{word-spacing:25.774567pt;}
.ws16{word-spacing:25.832749pt;}
.ws4c{word-spacing:26.779648pt;}
.ws1{word-spacing:27.636455pt;}
.ws3a{word-spacing:28.309914pt;}
.ws17{word-spacing:51.646200pt;}
.ws39{word-spacing:545.922253pt;}
._14{margin-left:-11.132207pt;}
._13{margin-left:-10.162727pt;}
._19{margin-left:-6.949956pt;}
._4{margin-left:-5.120004pt;}
._0{margin-left:-3.416200pt;}
._5{margin-left:-2.443638pt;}
._3{margin-left:-1.512729pt;}
._8{width:1.017786pt;}
._2{width:2.065853pt;}
._1{width:3.416200pt;}
._16{width:5.073988pt;}
._a{width:10.584337pt;}
._e{width:17.555011pt;}
._12{width:20.122980pt;}
._b{width:21.296196pt;}
._17{width:22.635179pt;}
._6{width:23.621838pt;}
._9{width:25.716385pt;}
._d{width:27.575859pt;}
._f{width:28.861445pt;}
._18{width:30.208389pt;}
._7{width:37.178213pt;}
._15{width:63.759276pt;}
._11{width:103.292400pt;}
._c{width:126.501956pt;}
._10{width:138.393446pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:54.637333pt;}
.y23{bottom:94.488000pt;}
.y76{bottom:105.445333pt;}
.y22{bottom:113.749333pt;}
.y75{bottom:124.706667pt;}
.y52{bottom:129.350667pt;}
.y21{bottom:133.010667pt;}
.y51{bottom:148.610667pt;}
.y20{bottom:152.272000pt;}
.y74{bottom:154.898667pt;}
.y50{bottom:167.872000pt;}
.y1f{bottom:171.532000pt;}
.y73{bottom:174.160000pt;}
.y1e{bottom:190.793333pt;}
.y4f{bottom:203.690667pt;}
.y72{bottom:204.350667pt;}
.y1d{bottom:210.054667pt;}
.y4c{bottom:211.296000pt;}
.y4b{bottom:215.280000pt;}
.y4a{bottom:219.265333pt;}
.y49{bottom:223.250667pt;}
.y71{bottom:223.612000pt;}
.y43{bottom:231.221333pt;}
.y4e{bottom:234.362667pt;}
.y1c{bottom:237.085333pt;}
.y48{bottom:247.161333pt;}
.y47{bottom:251.146667pt;}
.y70{bottom:253.804000pt;}
.y46{bottom:255.132000pt;}
.y1b{bottom:256.346667pt;}
.y4d{bottom:257.476000pt;}
.y45{bottom:259.116000pt;}
.y44{bottom:271.072000pt;}
.y6f{bottom:273.065333pt;}
.y1a{bottom:275.608000pt;}
.y42{bottom:290.584000pt;}
.y19{bottom:294.868000pt;}
.y6e{bottom:303.257333pt;}
.y41{bottom:309.845333pt;}
.y6d{bottom:322.518667pt;}
.y18{bottom:329.366667pt;}
.y40{bottom:336.980000pt;}
.y6c{bottom:352.710667pt;}
.y3f{bottom:356.241333pt;}
.y17{bottom:363.865333pt;}
.y6b{bottom:371.970667pt;}
.y3e{bottom:375.502667pt;}
.y3d{bottom:394.762667pt;}
.y16{bottom:398.912000pt;}
.y6a{bottom:407.017333pt;}
.y3c{bottom:429.809333pt;}
.y15{bottom:452.053333pt;}
.y69{bottom:459.046667pt;}
.y14{bottom:470.118667pt;}
.y68{bottom:478.308000pt;}
.y3b{bottom:483.004000pt;}
.y13{bottom:495.742667pt;}
.y67{bottom:497.569333pt;}
.y3a{bottom:502.265333pt;}
.y12{bottom:513.809333pt;}
.y66{bottom:516.830667pt;}
.y39{bottom:521.526667pt;}
.y11{bottom:531.874667pt;}
.y65{bottom:536.090667pt;}
.y37{bottom:548.661333pt;}
.y10{bottom:549.940000pt;}
.y38{bottom:554.445333pt;}
.y64{bottom:555.352000pt;}
.y36{bottom:567.921333pt;}
.yf{bottom:568.005333pt;}
.ye{bottom:586.070667pt;}
.y63{bottom:590.398667pt;}
.yd{bottom:604.137333pt;}
.y35{bottom:620.185333pt;}
.yc{bottom:622.202667pt;}
.yb{bottom:640.268000pt;}
.y33{bottom:642.102667pt;}
.y62{bottom:642.428000pt;}
.y34{bottom:647.888000pt;}
.ya{bottom:658.333333pt;}
.y61{bottom:661.689333pt;}
.y31{bottom:669.237333pt;}
.y32{bottom:675.022667pt;}
.y9{bottom:676.398667pt;}
.y60{bottom:680.950667pt;}
.y8{bottom:694.465333pt;}
.y5f{bottom:700.212000pt;}
.y30{bottom:707.892000pt;}
.y7{bottom:712.530667pt;}
.y5e{bottom:719.472000pt;}
.y6{bottom:738.697333pt;}
.y2f{bottom:744.746667pt;}
.y5d{bottom:746.590667pt;}
.y5b{bottom:765.852000pt;}
.y5c{bottom:771.637333pt;}
.y2e{bottom:771.880000pt;}
.y5{bottom:796.640000pt;}
.y5a{bottom:799.836000pt;}
.y2d{bottom:806.926667pt;}
.y59{bottom:822.665333pt;}
.y4{bottom:833.926667pt;}
.y58{bottom:852.857333pt;}
.y2c{bottom:860.121333pt;}
.y57{bottom:872.118667pt;}
.y2b{bottom:879.382667pt;}
.y3{bottom:881.249333pt;}
.y56{bottom:891.380000pt;}
.y2a{bottom:914.244000pt;}
.y2{bottom:914.457333pt;}
.y55{bottom:921.572000pt;}
.y1{bottom:947.666667pt;}
.y29{bottom:948.382667pt;}
.y54{bottom:948.690667pt;}
.y28{bottom:954.308000pt;}
.y53{bottom:967.952000pt;}
.y27{bottom:973.569333pt;}
.y26{bottom:992.830667pt;}
.y25{bottom:1012.090667pt;}
.h12{height:2.125355pt;}
.h11{height:31.880400pt;}
.h5{height:40.610943pt;}
.h7{height:41.018216pt;}
.h6{height:43.636400pt;}
.hb{height:44.887791pt;}
.h9{height:47.820800pt;}
.hf{height:55.021733pt;}
.hc{height:56.984400pt;}
.h4{height:57.384800pt;}
.ha{height:58.205733pt;}
.he{height:58.211067pt;}
.h10{height:63.762688pt;}
.h3{height:63.903565pt;}
.h8{height:68.861600pt;}
.hd{height:71.522133pt;}
.h2{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x54{left:92.390667pt;}
.xe{left:94.488000pt;}
.x1{left:100.536000pt;}
.x85{left:101.773333pt;}
.x97{left:104.893333pt;}
.x96{left:109.229333pt;}
.x12{left:116.293333pt;}
.x3a{left:117.900000pt;}
.x4e{left:122.346667pt;}
.x13{left:124.097333pt;}
.xa6{left:126.572000pt;}
.xd{left:131.806667pt;}
.x7{left:133.508000pt;}
.x2{left:140.098667pt;}
.x4f{left:141.213333pt;}
.x9d{left:149.765333pt;}
.x56{left:162.500000pt;}
.x88{left:166.806667pt;}
.x79{left:175.593333pt;}
.x9e{left:178.248000pt;}
.x94{left:181.125333pt;}
.x6d{left:190.004000pt;}
.x86{left:192.218667pt;}
.x89{left:197.501333pt;}
.x9f{left:200.358667pt;}
.x72{left:203.972000pt;}
.x57{left:208.869333pt;}
.xa5{left:210.049333pt;}
.xa3{left:214.450667pt;}
.x50{left:218.094667pt;}
.x73{left:222.617333pt;}
.x28{left:225.040000pt;}
.x87{left:227.438667pt;}
.xa4{left:232.070667pt;}
.x6e{left:234.266667pt;}
.x58{left:239.193333pt;}
.x76{left:247.874667pt;}
.x55{left:249.109333pt;}
.x4c{left:250.944000pt;}
.x29{left:259.129333pt;}
.x6f{left:261.226667pt;}
.x2a{left:266.777333pt;}
.x7a{left:268.513333pt;}
.x3{left:269.470667pt;}
.x14{left:270.749333pt;}
.x4d{left:272.264000pt;}
.x2b{left:273.769333pt;}
.x26{left:275.292000pt;}
.x63{left:277.205333pt;}
.x7b{left:279.040000pt;}
.x2c{left:281.417333pt;}
.x27{left:283.126667pt;}
.x7c{left:285.230667pt;}
.x15{left:287.514667pt;}
.xf{left:289.192000pt;}
.x16{left:293.474667pt;}
.x2e{left:297.589333pt;}
.x8c{left:299.040000pt;}
.x17{left:300.941333pt;}
.x2f{left:303.732000pt;}
.x8d{left:309.568000pt;}
.x30{left:311.198667pt;}
.x8e{left:315.516000pt;}
.x93{left:317.014667pt;}
.x8f{left:322.982667pt;}
.x70{left:324.606667pt;}
.x10{left:326.393333pt;}
.x77{left:327.568000pt;}
.x59{left:331.466667pt;}
.x4{left:332.977333pt;}
.x22{left:334.938667pt;}
.x2d{left:336.718667pt;}
.x11{left:339.049333pt;}
.x64{left:339.986667pt;}
.x5{left:342.196000pt;}
.x98{left:343.529333pt;}
.x7f{left:347.232000pt;}
.x9b{left:349.362667pt;}
.x7d{left:354.925333pt;}
.xa0{left:357.965333pt;}
.xa2{left:361.128000pt;}
.x6{left:365.076000pt;}
.x71{left:372.506667pt;}
.x9c{left:378.594667pt;}
.x51{left:382.845333pt;}
.x7e{left:386.026667pt;}
.x65{left:386.938667pt;}
.x3e{left:392.948000pt;}
.x52{left:409.804000pt;}
.x5a{left:412.186667pt;}
.x66{left:413.897333pt;}
.x90{left:423.656000pt;}
.x48{left:435.260000pt;}
.x3f{left:436.704000pt;}
.x49{left:449.256000pt;}
.x40{left:456.114667pt;}
.x80{left:462.000000pt;}
.x1e{left:471.041333pt;}
.x81{left:475.774667pt;}
.x67{left:476.678667pt;}
.x1f{left:478.033333pt;}
.x8a{left:483.813333pt;}
.x20{left:485.908000pt;}
.x5b{left:496.246667pt;}
.x4a{left:498.180000pt;}
.x53{left:502.620000pt;}
.x5c{left:514.953333pt;}
.x5d{left:521.016000pt;}
.x78{left:522.213333pt;}
.x21{left:533.533333pt;}
.x5e{left:535.222667pt;}
.x31{left:540.605333pt;}
.x5f{left:545.714667pt;}
.x41{left:546.654667pt;}
.x95{left:550.464000pt;}
.x3b{left:551.588000pt;}
.x3c{left:557.536000pt;}
.x32{left:559.773333pt;}
.x8{left:562.248000pt;}
.x42{left:563.418667pt;}
.x3d{left:565.002667pt;}
.x33{left:567.670667pt;}
.x43{left:569.549333pt;}
.x9{left:572.005333pt;}
.x82{left:575.736000pt;}
.xa{left:577.650667pt;}
.x34{left:579.370667pt;}
.x83{left:581.684000pt;}
.x60{left:583.485333pt;}
.xb{left:584.617333pt;}
.x35{left:587.268000pt;}
.x91{left:590.130667pt;}
.x84{left:595.890667pt;}
.x36{left:598.968000pt;}
.x92{left:603.808000pt;}
.x37{left:606.866667pt;}
.x18{left:608.898667pt;}
.x44{left:615.450667pt;}
.x19{left:619.426667pt;}
.x45{left:622.000000pt;}
.x1a{left:625.386667pt;}
.x46{left:628.130667pt;}
.x1b{left:632.853333pt;}
.xc{left:633.832000pt;}
.x47{left:642.337333pt;}
.x68{left:643.998667pt;}
.x99{left:650.004000pt;}
.x38{left:653.900000pt;}
.xa1{left:656.316000pt;}
.x74{left:658.117333pt;}
.x39{left:660.042667pt;}
.x69{left:661.004000pt;}
.x23{left:664.910667pt;}
.x75{left:665.921333pt;}
.x9a{left:669.266667pt;}
.x4b{left:673.438667pt;}
.x6a{left:677.769333pt;}
.x1c{left:679.102667pt;}
.x8b{left:680.765333pt;}
.x24{left:681.674667pt;}
.x6b{left:683.717333pt;}
.x1d{left:686.906667pt;}
.x61{left:689.145333pt;}
.x6c{left:691.185333pt;}
.x25{left:695.090667pt;}
.x62{left:697.798667pt;}
}




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