
    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_70356b09d302264535e810e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bf53f8d0d5c66b616dd51df3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7eead50e82b3666d1b96c737.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_a575c05853ed554f9a949fea.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_f4d8d3d8abe21126029e5d35.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_f35161a4dbe3d85d1d0dc823.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_16a6e1da05e9415116975e76.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_422d31214a38d0575fdafe9f.woff2')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_0aa497eb16b5e4f912f22144.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_20d9319cfdccf8f62360bfcd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0541bdb2bf0bd86305c8e32e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.860000;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_e1031ad93287f524c4c828df.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b46be81d466ce4ec6610cc9b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.628000;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_7032dc4c0ecbeec39f23b20a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.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);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m13{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);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.mf{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.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);}
.m2{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);}
.mb{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m16{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);}
.md{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);}
.m9{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);}
.m3{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);}
.m14{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);}
.me{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);}
.m12{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);}
.m17{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);}
.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);}
.v5{vertical-align:-13.974000px;}
.v1{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:23.754000px;}
.v9{vertical-align:27.024000px;}
.v3{vertical-align:44.232000px;}
.v4{vertical-align:58.206000px;}
.v8{vertical-align:67.770000px;}
.v7{vertical-align:79.362000px;}
.v6{vertical-align:89.178000px;}
.v2{vertical-align:121.572000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000937px;}
.ls50{letter-spacing:0.000939px;}
.ls2c{letter-spacing:0.001050px;}
.ls20{letter-spacing:0.001520px;}
.lse{letter-spacing:0.001526px;}
.ls19{letter-spacing:0.001597px;}
.ls3d{letter-spacing:0.002012px;}
.ls34{letter-spacing:0.002147px;}
.ls31{letter-spacing:0.002393px;}
.ls2b{letter-spacing:0.002605px;}
.lsd{letter-spacing:0.003162px;}
.ls16{letter-spacing:0.003710px;}
.lsf{letter-spacing:0.004249px;}
.ls39{letter-spacing:0.004259px;}
.ls15{letter-spacing:0.006298px;}
.ls46{letter-spacing:0.008470px;}
.ls36{letter-spacing:0.014490px;}
.ls40{letter-spacing:0.015389px;}
.lsb{letter-spacing:0.018369px;}
.ls5{letter-spacing:0.024352px;}
.ls8{letter-spacing:0.024873px;}
.ls37{letter-spacing:0.025440px;}
.ls1b{letter-spacing:0.026354px;}
.ls45{letter-spacing:0.026502px;}
.ls48{letter-spacing:0.027084px;}
.ls2e{letter-spacing:0.027108px;}
.ls38{letter-spacing:0.029825px;}
.ls7{letter-spacing:0.031894px;}
.ls4b{letter-spacing:0.047821px;}
.ls4f{letter-spacing:0.065455px;}
.ls43{letter-spacing:0.242692px;}
.ls4a{letter-spacing:0.244804px;}
.ls30{letter-spacing:0.327273px;}
.ls25{letter-spacing:1.721542px;}
.ls2f{letter-spacing:1.767274px;}
.ls42{letter-spacing:1.815231px;}
.ls33{letter-spacing:1.832729px;}
.ls3e{letter-spacing:2.290911px;}
.ls2{letter-spacing:2.356366px;}
.ls1{letter-spacing:2.984915px;}
.ls2d{letter-spacing:2.986059px;}
.ls9{letter-spacing:2.990915px;}
.ls1d{letter-spacing:3.796367px;}
.ls1f{letter-spacing:7.003642px;}
.ls14{letter-spacing:7.069097px;}
.ls28{letter-spacing:9.098189px;}
.ls1a{letter-spacing:10.865464px;}
.ls32{letter-spacing:10.930918px;}
.lsa{letter-spacing:14.530921px;}
.ls26{letter-spacing:14.532370px;}
.ls3f{letter-spacing:14.596376px;}
.ls29{letter-spacing:17.534915px;}
.ls4{letter-spacing:18.130924px;}
.ls27{letter-spacing:18.184350px;}
.ls3{letter-spacing:18.196379px;}
.ls24{letter-spacing:18.208671px;}
.ls17{letter-spacing:20.749108px;}
.ls49{letter-spacing:21.010927px;}
.ls35{letter-spacing:21.163682px;}
.ls2a{letter-spacing:21.164915px;}
.ls10{letter-spacing:21.207290px;}
.ls18{letter-spacing:21.730927px;}
.ls6{letter-spacing:21.796382px;}
.ls11{letter-spacing:21.861836px;}
.ls1e{letter-spacing:21.992746px;}
.ls13{letter-spacing:22.058200px;}
.ls3a{letter-spacing:24.799682px;}
.ls22{letter-spacing:24.800915px;}
.ls23{letter-spacing:24.806915px;}
.ls21{letter-spacing:25.592749px;}
.ls12{letter-spacing:26.967295px;}
.ls3b{letter-spacing:28.930933px;}
.ls4e{letter-spacing:29.781843px;}
.ls4c{letter-spacing:32.203663px;}
.ls4d{letter-spacing:32.269118px;}
.lsc{letter-spacing:32.727300px;}
.ls41{letter-spacing:40.004012px;}
.ls47{letter-spacing:81.596012px;}
.ls3c{letter-spacing:83.520445px;}
.ls44{letter-spacing:295.352012px;}
.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;}
}
.ws38{word-spacing:-79.985521px;}
.ws41{word-spacing:-50.923679px;}
.ws3d{word-spacing:-47.324343px;}
.ws34{word-spacing:-47.323676px;}
.ws42{word-spacing:-47.258221px;}
.ws28{word-spacing:-42.637126px;}
.ws47{word-spacing:-36.379667px;}
.ws40{word-spacing:-33.538937px;}
.ws4f{word-spacing:-33.211407px;}
.wsf{word-spacing:-32.727300px;}
.ws26{word-spacing:-31.771663px;}
.ws2d{word-spacing:-31.706208px;}
.ws4e{word-spacing:-26.133958px;}
.ws3e{word-spacing:-18.183288px;}
.ws24{word-spacing:-17.869106px;}
.ws1b{word-spacing:-16.429105px;}
.ws4b{word-spacing:-15.316376px;}
.ws45{word-spacing:-14.661830px;}
.ws14{word-spacing:-14.269103px;}
.ws1f{word-spacing:-13.614557px;}
.ws21{word-spacing:-13.483648px;}
.ws2c{word-spacing:-13.156375px;}
.ws18{word-spacing:-12.894556px;}
.ws19{word-spacing:-12.305465px;}
.ws31{word-spacing:-12.174556px;}
.ws35{word-spacing:-12.043646px;}
.wse{word-spacing:-11.978192px;}
.ws4d{word-spacing:-11.716373px;}
.ws2b{word-spacing:-11.585464px;}
.ws2f{word-spacing:-11.454555px;}
.ws36{word-spacing:-11.323646px;}
.ws11{word-spacing:-11.258191px;}
.ws9{word-spacing:-11.192737px;}
.ws17{word-spacing:-11.127282px;}
.ws15{word-spacing:-11.061827px;}
.ws7{word-spacing:-10.996373px;}
.ws12{word-spacing:-10.930918px;}
.ws8{word-spacing:-10.865464px;}
.ws32{word-spacing:-10.800009px;}
.wsb{word-spacing:-10.734554px;}
.wsc{word-spacing:-10.669100px;}
.ws1a{word-spacing:-10.603645px;}
.ws1e{word-spacing:-10.538191px;}
.ws33{word-spacing:-10.472736px;}
.ws4c{word-spacing:-9.949099px;}
.ws1d{word-spacing:-9.621826px;}
.ws20{word-spacing:-9.556372px;}
.ws3f{word-spacing:-9.294553px;}
.ws3a{word-spacing:-9.163644px;}
.ws4a{word-spacing:-9.098189px;}
.ws10{word-spacing:-8.901826px;}
.ws6{word-spacing:-8.640007px;}
.wsa{word-spacing:-7.592734px;}
.ws43{word-spacing:-7.527279px;}
.ws46{word-spacing:-6.938188px;}
.ws1c{word-spacing:-6.676369px;}
.wsd{word-spacing:-6.414551px;}
.ws4{word-spacing:-6.152732px;}
.ws30{word-spacing:-5.760005px;}
.ws23{word-spacing:-5.629096px;}
.ws3{word-spacing:-5.563641px;}
.ws22{word-spacing:-5.498186px;}
.ws5{word-spacing:-4.647277px;}
.ws3b{word-spacing:-3.665458px;}
.ws39{word-spacing:-3.600003px;}
.ws52{word-spacing:-3.076366px;}
.ws53{word-spacing:-2.945457px;}
.ws54{word-spacing:-0.850910px;}
.ws27{word-spacing:-0.052364px;}
.ws16{word-spacing:0.000000px;}
.ws2e{word-spacing:0.013091px;}
.ws29{word-spacing:3.613094px;}
.ws50{word-spacing:3.744003px;}
.ws55{word-spacing:4.005822px;}
.ws56{word-spacing:4.922186px;}
.ws51{word-spacing:11.467646px;}
.ws2{word-spacing:23.312640px;}
.ws1{word-spacing:23.384371px;}
.ws44{word-spacing:25.003657px;}
.ws25{word-spacing:25.069112px;}
.ws13{word-spacing:26.827469px;}
.ws2a{word-spacing:29.061842px;}
.ws48{word-spacing:31.315878px;}
.ws49{word-spacing:31.555878px;}
.ws37{word-spacing:32.727300px;}
.ws3c{word-spacing:33.748392px;}
.ws0{word-spacing:38.631358px;}
._19{margin-left:-17.639511px;}
._14{margin-left:-14.530921px;}
._2{margin-left:-9.709486px;}
._10{margin-left:-6.283642px;}
._9{margin-left:-5.224705px;}
._0{margin-left:-3.202064px;}
._3{margin-left:-1.936742px;}
._4{width:1.936742px;}
._12{width:3.730912px;}
._13{width:4.976641px;}
._11{width:7.225897px;}
._1d{width:9.091045px;}
._1a{width:10.903129px;}
._18{width:14.530921px;}
._17{width:18.114408px;}
._c{width:19.374562px;}
._b{width:20.421835px;}
._e{width:22.870551px;}
._16{width:24.688048px;}
._f{width:27.202218px;}
._6{width:28.249492px;}
._7{width:29.558584px;}
._15{width:35.214575px;}
._8{width:36.654576px;}
._a{width:40.242916px;}
._5{width:44.116400px;}
._d{width:46.725805px;}
._1{width:51.646200px;}
._1b{width:133.265566px;}
._1c{width:134.406083px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.168000px;}
.y45{bottom:108.000000px;}
.ybd{bottom:126.369000px;}
.y85{bottom:140.521500px;}
.y44{bottom:141.148500px;}
.ybc{bottom:146.692500px;}
.ye0{bottom:148.194000px;}
.y64{bottom:151.813500px;}
.ybb{bottom:167.017500px;}
.ydf{bottom:168.517500px;}
.y63{bottom:172.138500px;}
.y84{bottom:173.043000px;}
.y43{bottom:182.013000px;}
.yba{bottom:187.341000px;}
.y1f{bottom:189.418500px;}
.yde{bottom:202.290000px;}
.y42{bottom:202.336500px;}
.y83{bottom:205.564500px;}
.y62{bottom:205.911000px;}
.yb9{bottom:207.664500px;}
.y1e{bottom:209.743500px;}
.ydd{bottom:222.615000px;}
.y61{bottom:226.234500px;}
.yb8{bottom:227.988000px;}
.y1d{bottom:230.067000px;}
.y41{bottom:231.313500px;}
.y82{bottom:238.086000px;}
.y1c{bottom:250.390500px;}
.y40{bottom:251.638500px;}
.y9f{bottom:256.008000px;}
.ydc{bottom:256.387500px;}
.y60{bottom:260.008500px;}
.yb7{bottom:262.617000px;}
.y81{bottom:270.607500px;}
.y1b{bottom:270.714000px;}
.yb6{bottom:284.911500px;}
.ydb{bottom:290.161500px;}
.y3f{bottom:291.183000px;}
.y5f{bottom:293.781000px;}
.y80{bottom:303.129000px;}
.y9e{bottom:303.231000px;}
.yda{bottom:310.485000px;}
.y1a{bottom:310.572000px;}
.yb5{bottom:311.574000px;}
.y7f{bottom:335.650500px;}
.y5e{bottom:336.522000px;}
.y3e{bottom:336.963000px;}
.y9d{bottom:337.005000px;}
.yd9{bottom:344.259000px;}
.yb4{bottom:361.188000px;}
.y19{bottom:363.358500px;}
.y7e{bottom:368.172000px;}
.y9c{bottom:370.777500px;}
.y5d{bottom:373.284000px;}
.yd8{bottom:378.031500px;}
.yb3{bottom:381.511500px;}
.y18{bottom:383.682000px;}
.y3d{bottom:396.880500px;}
.yb2{bottom:401.836500px;}
.y5c{bottom:402.573000px;}
.y17{bottom:404.005500px;}
.y7d{bottom:410.554500px;}
.yd7{bottom:411.805500px;}
.y3c{bottom:417.204000px;}
.y9b{bottom:418.000500px;}
.yb1{bottom:422.160000px;}
.y5b{bottom:422.898000px;}
.y16{bottom:424.329000px;}
.yd6{bottom:432.129000px;}
.y7c{bottom:435.361500px;}
.y9a{bottom:438.324000px;}
.yb0{bottom:442.483500px;}
.y5a{bottom:443.221500px;}
.y3b{bottom:456.750000px;}
.y7b{bottom:460.168500px;}
.yaf{bottom:462.807000px;}
.y59{bottom:463.545000px;}
.y99{bottom:467.614500px;}
.y15{bottom:469.824000px;}
.yd5{bottom:473.542500px;}
.y7a{bottom:484.975500px;}
.yd4{bottom:484.999500px;}
.yae{bottom:502.665000px;}
.y58{bottom:503.403000px;}
.y98{bottom:504.376500px;}
.y3a{bottom:508.927500px;}
.y79{bottom:509.782500px;}
.yd3{bottom:521.761500px;}
.y39{bottom:529.251000px;}
.y14{bottom:530.347500px;}
.y78{bottom:534.589500px;}
.y97{bottom:541.138500px;}
.yd2{bottom:542.085000px;}
.yad{bottom:548.757000px;}
.y38{bottom:549.574500px;}
.y13{bottom:550.671000px;}
.y57{bottom:556.188000px;}
.y77{bottom:559.396500px;}
.y37{bottom:569.899500px;}
.y96{bottom:570.429000px;}
.y12{bottom:570.996000px;}
.y56{bottom:576.513000px;}
.yd1{bottom:583.498500px;}
.y36{bottom:590.223000px;}
.y95{bottom:590.752500px;}
.y11{bottom:591.319500px;}
.y76{bottom:591.891000px;}
.yd0{bottom:594.955500px;}
.yac{bottom:609.282000px;}
.y55{bottom:610.285500px;}
.y35{bottom:610.546500px;}
.y10{bottom:611.643000px;}
.y94{bottom:620.043000px;}
.y75{bottom:620.554500px;}
.yab{bottom:629.605500px;}
.y54{bottom:630.609000px;}
.ycf{bottom:631.717500px;}
.yf{bottom:631.966500px;}
.y74{bottom:640.878000px;}
.yaa{bottom:649.929000px;}
.y34{bottom:650.092500px;}
.yce{bottom:652.041000px;}
.ye{bottom:652.290000px;}
.y93{bottom:659.901000px;}
.y73{bottom:661.203000px;}
.y53{bottom:664.383000px;}
.ya9{bottom:670.252500px;}
.yd{bottom:672.615000px;}
.ycd{bottom:685.815000px;}
.yc{bottom:692.938500px;}
.y52{bottom:698.155500px;}
.y72{bottom:700.435500px;}
.y33{bottom:702.270000px;}
.ya8{bottom:710.112000px;}
.y92{bottom:712.089000px;}
.yb{bottom:713.262000px;}
.ycc{bottom:719.589000px;}
.y32{bottom:722.593500px;}
.y51{bottom:731.929500px;}
.ya{bottom:733.585500px;}
.y31{bottom:742.917000px;}
.y91{bottom:745.863000px;}
.y71{bottom:752.004000px;}
.y50{bottom:752.253000px;}
.ycb{bottom:753.361500px;}
.y9{bottom:753.909000px;}
.ya7{bottom:762.897000px;}
.y30{bottom:763.242000px;}
.y8{bottom:774.234000px;}
.y2f{bottom:783.565500px;}
.y70{bottom:784.525500px;}
.y4f{bottom:786.027000px;}
.yca{bottom:787.135500px;}
.y90{bottom:788.602500px;}
.ya6{bottom:796.669500px;}
.y2e{bottom:803.889000px;}
.yc9{bottom:807.459000px;}
.y6f{bottom:817.047000px;}
.y7{bottom:819.727500px;}
.y4e{bottom:819.799500px;}
.y2d{bottom:824.212500px;}
.ya5{bottom:830.443500px;}
.y8f{bottom:838.216500px;}
.yc8{bottom:841.233000px;}
.y2c{bottom:844.536000px;}
.y6e{bottom:849.568500px;}
.y8e{bottom:858.540000px;}
.y4d{bottom:862.540500px;}
.ya4{bottom:864.216000px;}
.y2b{bottom:864.861000px;}
.y6d{bottom:882.090000px;}
.y2a{bottom:885.184500px;}
.y8d{bottom:887.830500px;}
.yc7{bottom:891.534000px;}
.yc5{bottom:895.408500px;}
.ya3{bottom:897.990000px;}
.y6{bottom:898.185000px;}
.y4c{bottom:899.302500px;}
.yc4{bottom:899.892000px;}
.y29{bottom:905.508000px;}
.y6c{bottom:914.611500px;}
.y28{bottom:925.831500px;}
.yc3{bottom:926.791500px;}
.yc6{bottom:926.967000px;}
.y8c{bottom:927.688500px;}
.y4b{bottom:928.591500px;}
.yc2{bottom:931.275000px;}
.ya2{bottom:931.764000px;}
.y5{bottom:943.639500px;}
.yc1{bottom:944.724000px;}
.y4a{bottom:948.916500px;}
.y6b{bottom:953.136000px;}
.y4{bottom:964.560000px;}
.y27{bottom:965.377500px;}
.ya1{bottom:965.536500px;}
.yc0{bottom:967.629000px;}
.y6a{bottom:977.943000px;}
.y8b{bottom:979.029000px;}
.y3{bottom:985.482000px;}
.y49{bottom:988.774500px;}
.y89{bottom:996.115500px;}
.y8a{bottom:999.609000px;}
.ya0{bottom:1008.276000px;}
.y69{bottom:1009.528500px;}
.ybf{bottom:1017.243000px;}
.y26{bottom:1017.555000px;}
.ybe{bottom:1037.566500px;}
.y25{bottom:1037.880000px;}
.y68{bottom:1038.192000px;}
.y2{bottom:1039.915500px;}
.y48{bottom:1041.559500px;}
.y88{bottom:1057.890000px;}
.y24{bottom:1058.203500px;}
.y67{bottom:1058.517000px;}
.y47{bottom:1061.883000px;}
.y1{bottom:1072.792500px;}
.y87{bottom:1078.215000px;}
.y23{bottom:1078.527000px;}
.y66{bottom:1078.840500px;}
.y86{bottom:1098.538500px;}
.y22{bottom:1098.850500px;}
.y65{bottom:1099.164000px;}
.y46{bottom:1104.622500px;}
.y21{bottom:1138.396500px;}
.h12{height:2.988780px;}
.hc{height:33.187496px;}
.he{height:35.116950px;}
.h15{height:35.865450px;}
.h4{height:44.258150px;}
.h8{height:45.687311px;}
.h9{height:46.865494px;}
.hb{height:47.220780px;}
.h6{height:49.090950px;}
.h7{height:50.211840px;}
.h14{height:50.724818px;}
.h3{height:51.216077px;}
.h5{height:60.254040px;}
.hd{height:61.194780px;}
.h11{height:70.758780px;}
.h13{height:70.764780px;}
.h2{height:72.304680px;}
.h10{height:93.988950px;}
.ha{height:124.560780px;}
.hf{height:136.043494px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.086000px;}
.x7{left:108.000000px;}
.x1{left:125.868000px;}
.xb{left:127.999500px;}
.x1b{left:146.994000px;}
.xf{left:148.909500px;}
.x33{left:153.994500px;}
.x45{left:162.817500px;}
.x34{left:167.278500px;}
.x15{left:169.555500px;}
.x16{left:175.792500px;}
.x4b{left:180.273000px;}
.x54{left:182.170500px;}
.x38{left:183.340500px;}
.x17{left:184.401000px;}
.x4c{left:186.763500px;}
.x39{left:189.660000px;}
.x32{left:190.845000px;}
.x4d{left:194.997000px;}
.x1c{left:199.023000px;}
.x1f{left:201.415500px;}
.x13{left:205.131000px;}
.x14{left:211.368000px;}
.x35{left:213.135000px;}
.x36{left:219.370500px;}
.x18{left:223.068000px;}
.x10{left:225.231000px;}
.x50{left:227.188500px;}
.x19{left:229.425000px;}
.x11{left:231.721500px;}
.x51{left:233.475000px;}
.xc{left:234.858000px;}
.xd{left:241.095000px;}
.x37{left:244.605000px;}
.xe{left:248.766000px;}
.x3a{left:251.878500px;}
.x1a{left:252.978000px;}
.x12{left:255.315000px;}
.x3b{left:258.198000px;}
.xa{left:264.930000px;}
.x2a{left:266.395500px;}
.x46{left:268.359000px;}
.x47{left:274.851000px;}
.x1d{left:276.780000px;}
.x55{left:277.849500px;}
.x3c{left:283.434000px;}
.x3d{left:289.752000px;}
.x52{left:295.981500px;}
.x20{left:298.264500px;}
.x2{left:300.420000px;}
.x2b{left:304.039500px;}
.x3e{left:305.257500px;}
.x30{left:310.186500px;}
.x21{left:311.608500px;}
.x5{left:312.652500px;}
.x26{left:316.861500px;}
.x22{left:335.653500px;}
.x41{left:337.699500px;}
.x53{left:340.318500px;}
.x42{left:344.005500px;}
.x56{left:347.050500px;}
.x27{left:351.547500px;}
.x4{left:353.494500px;}
.x57{left:355.282500px;}
.x6{left:381.073500px;}
.x3{left:393.538500px;}
.x4e{left:406.144500px;}
.x4f{left:414.378000px;}
.x43{left:418.399500px;}
.x1e{left:432.348000px;}
.x8{left:442.366500px;}
.x3f{left:445.120500px;}
.x2e{left:447.987000px;}
.x31{left:471.628500px;}
.x23{left:493.572000px;}
.x44{left:512.920500px;}
.x24{left:517.617000px;}
.x40{left:539.641500px;}
.x2f{left:542.668500px;}
.x58{left:553.350000px;}
.x28{left:559.507500px;}
.x59{left:567.477000px;}
.x29{left:572.464500px;}
.x48{left:589.231500px;}
.x2c{left:647.199000px;}
.x25{left:648.421500px;}
.x49{left:739.933500px;}
.x2d{left:741.763500px;}
.x4a{left:758.023500px;}
@media print{
.v5{vertical-align:-12.421333pt;}
.v1{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:21.114667pt;}
.v9{vertical-align:24.021333pt;}
.v3{vertical-align:39.317333pt;}
.v4{vertical-align:51.738667pt;}
.v8{vertical-align:60.240000pt;}
.v7{vertical-align:70.544000pt;}
.v6{vertical-align:79.269333pt;}
.v2{vertical-align:108.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000833pt;}
.ls50{letter-spacing:0.000834pt;}
.ls2c{letter-spacing:0.000933pt;}
.ls20{letter-spacing:0.001351pt;}
.lse{letter-spacing:0.001357pt;}
.ls19{letter-spacing:0.001420pt;}
.ls3d{letter-spacing:0.001788pt;}
.ls34{letter-spacing:0.001908pt;}
.ls31{letter-spacing:0.002127pt;}
.ls2b{letter-spacing:0.002315pt;}
.lsd{letter-spacing:0.002811pt;}
.ls16{letter-spacing:0.003297pt;}
.lsf{letter-spacing:0.003777pt;}
.ls39{letter-spacing:0.003786pt;}
.ls15{letter-spacing:0.005598pt;}
.ls46{letter-spacing:0.007529pt;}
.ls36{letter-spacing:0.012880pt;}
.ls40{letter-spacing:0.013679pt;}
.lsb{letter-spacing:0.016328pt;}
.ls5{letter-spacing:0.021647pt;}
.ls8{letter-spacing:0.022110pt;}
.ls37{letter-spacing:0.022614pt;}
.ls1b{letter-spacing:0.023426pt;}
.ls45{letter-spacing:0.023557pt;}
.ls48{letter-spacing:0.024075pt;}
.ls2e{letter-spacing:0.024096pt;}
.ls38{letter-spacing:0.026511pt;}
.ls7{letter-spacing:0.028350pt;}
.ls4b{letter-spacing:0.042507pt;}
.ls4f{letter-spacing:0.058182pt;}
.ls43{letter-spacing:0.215727pt;}
.ls4a{letter-spacing:0.217604pt;}
.ls30{letter-spacing:0.290909pt;}
.ls25{letter-spacing:1.530259pt;}
.ls2f{letter-spacing:1.570910pt;}
.ls42{letter-spacing:1.613539pt;}
.ls33{letter-spacing:1.629092pt;}
.ls3e{letter-spacing:2.036365pt;}
.ls2{letter-spacing:2.094547pt;}
.ls1{letter-spacing:2.653258pt;}
.ls2d{letter-spacing:2.654275pt;}
.ls9{letter-spacing:2.658591pt;}
.ls1d{letter-spacing:3.374548pt;}
.ls1f{letter-spacing:6.225460pt;}
.ls14{letter-spacing:6.283642pt;}
.ls28{letter-spacing:8.087279pt;}
.ls1a{letter-spacing:9.658190pt;}
.ls32{letter-spacing:9.716372pt;}
.lsa{letter-spacing:12.916374pt;}
.ls26{letter-spacing:12.917662pt;}
.ls3f{letter-spacing:12.974556pt;}
.ls29{letter-spacing:15.586591pt;}
.ls4{letter-spacing:16.116377pt;}
.ls27{letter-spacing:16.163867pt;}
.ls3{letter-spacing:16.174559pt;}
.ls24{letter-spacing:16.185486pt;}
.ls17{letter-spacing:18.443652pt;}
.ls49{letter-spacing:18.676379pt;}
.ls35{letter-spacing:18.812162pt;}
.ls2a{letter-spacing:18.813258pt;}
.ls10{letter-spacing:18.850925pt;}
.ls18{letter-spacing:19.316380pt;}
.ls6{letter-spacing:19.374562pt;}
.ls11{letter-spacing:19.432743pt;}
.ls1e{letter-spacing:19.549107pt;}
.ls13{letter-spacing:19.607289pt;}
.ls3a{letter-spacing:22.044162pt;}
.ls22{letter-spacing:22.045258pt;}
.ls23{letter-spacing:22.050591pt;}
.ls21{letter-spacing:22.749110pt;}
.ls12{letter-spacing:23.970929pt;}
.ls3b{letter-spacing:25.716385pt;}
.ls4e{letter-spacing:26.472749pt;}
.ls4c{letter-spacing:28.625478pt;}
.ls4d{letter-spacing:28.683660pt;}
.lsc{letter-spacing:29.090933pt;}
.ls41{letter-spacing:35.559121pt;}
.ls47{letter-spacing:72.529788pt;}
.ls3c{letter-spacing:74.240396pt;}
.ls44{letter-spacing:262.535121pt;}
.ws38{word-spacing:-71.098241pt;}
.ws41{word-spacing:-45.265492pt;}
.ws3d{word-spacing:-42.066082pt;}
.ws34{word-spacing:-42.065490pt;}
.ws42{word-spacing:-42.007308pt;}
.ws28{word-spacing:-37.899668pt;}
.ws47{word-spacing:-32.337481pt;}
.ws40{word-spacing:-29.812388pt;}
.ws4f{word-spacing:-29.521250pt;}
.wsf{word-spacing:-29.090933pt;}
.ws26{word-spacing:-28.241478pt;}
.ws2d{word-spacing:-28.183296pt;}
.ws4e{word-spacing:-23.230185pt;}
.ws3e{word-spacing:-16.162923pt;}
.ws24{word-spacing:-15.883650pt;}
.ws1b{word-spacing:-14.603649pt;}
.ws4b{word-spacing:-13.614557pt;}
.ws45{word-spacing:-13.032738pt;}
.ws14{word-spacing:-12.683647pt;}
.ws1f{word-spacing:-12.101828pt;}
.ws21{word-spacing:-11.985465pt;}
.ws2c{word-spacing:-11.694555pt;}
.ws18{word-spacing:-11.461828pt;}
.ws19{word-spacing:-10.938191pt;}
.ws31{word-spacing:-10.821827pt;}
.ws35{word-spacing:-10.705463pt;}
.wse{word-spacing:-10.647282pt;}
.ws4d{word-spacing:-10.414554pt;}
.ws2b{word-spacing:-10.298190pt;}
.ws2f{word-spacing:-10.181827pt;}
.ws36{word-spacing:-10.065463pt;}
.ws11{word-spacing:-10.007281pt;}
.ws9{word-spacing:-9.949099pt;}
.ws17{word-spacing:-9.890917pt;}
.ws15{word-spacing:-9.832735pt;}
.ws7{word-spacing:-9.774554pt;}
.ws12{word-spacing:-9.716372pt;}
.ws8{word-spacing:-9.658190pt;}
.ws32{word-spacing:-9.600008pt;}
.wsb{word-spacing:-9.541826pt;}
.wsc{word-spacing:-9.483644pt;}
.ws1a{word-spacing:-9.425462pt;}
.ws1e{word-spacing:-9.367281pt;}
.ws33{word-spacing:-9.309099pt;}
.ws4c{word-spacing:-8.843644pt;}
.ws1d{word-spacing:-8.552734pt;}
.ws20{word-spacing:-8.494553pt;}
.ws3f{word-spacing:-8.261825pt;}
.ws3a{word-spacing:-8.145461pt;}
.ws4a{word-spacing:-8.087279pt;}
.ws10{word-spacing:-7.912734pt;}
.ws6{word-spacing:-7.680006pt;}
.wsa{word-spacing:-6.749097pt;}
.ws43{word-spacing:-6.690915pt;}
.ws46{word-spacing:-6.167278pt;}
.ws1c{word-spacing:-5.934550pt;}
.wsd{word-spacing:-5.701823pt;}
.ws4{word-spacing:-5.469095pt;}
.ws30{word-spacing:-5.120004pt;}
.ws23{word-spacing:-5.003641pt;}
.ws3{word-spacing:-4.945459pt;}
.ws22{word-spacing:-4.887277pt;}
.ws5{word-spacing:-4.130913pt;}
.ws3b{word-spacing:-3.258185pt;}
.ws39{word-spacing:-3.200003pt;}
.ws52{word-spacing:-2.734548pt;}
.ws53{word-spacing:-2.618184pt;}
.ws54{word-spacing:-0.756364pt;}
.ws27{word-spacing:-0.046545pt;}
.ws16{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.011636pt;}
.ws29{word-spacing:3.211639pt;}
.ws50{word-spacing:3.328003pt;}
.ws55{word-spacing:3.560730pt;}
.ws56{word-spacing:4.375276pt;}
.ws51{word-spacing:10.193463pt;}
.ws2{word-spacing:20.722347pt;}
.ws1{word-spacing:20.786108pt;}
.ws44{word-spacing:22.225473pt;}
.ws25{word-spacing:22.283655pt;}
.ws13{word-spacing:23.846639pt;}
.ws2a{word-spacing:25.832749pt;}
.ws48{word-spacing:27.836336pt;}
.ws49{word-spacing:28.049669pt;}
.ws37{word-spacing:29.090933pt;}
.ws3c{word-spacing:29.998570pt;}
.ws0{word-spacing:34.338985pt;}
._19{margin-left:-15.679565pt;}
._14{margin-left:-12.916374pt;}
._2{margin-left:-8.630654pt;}
._10{margin-left:-5.585459pt;}
._9{margin-left:-4.644182pt;}
._0{margin-left:-2.846279pt;}
._3{margin-left:-1.721549pt;}
._4{width:1.721549pt;}
._12{width:3.316366pt;}
._13{width:4.423681pt;}
._11{width:6.423020pt;}
._1d{width:8.080929pt;}
._1a{width:9.691670pt;}
._18{width:12.916374pt;}
._17{width:16.101696pt;}
._c{width:17.221833pt;}
._b{width:18.152742pt;}
._e{width:20.329379pt;}
._16{width:21.944931pt;}
._f{width:24.179749pt;}
._6{width:25.110659pt;}
._7{width:26.274297pt;}
._15{width:31.301844pt;}
._8{width:32.581845pt;}
._a{width:35.771481pt;}
._5{width:39.214578pt;}
._d{width:41.534049pt;}
._1{width:45.907733pt;}
._1b{width:118.458281pt;}
._1c{width:119.472074pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.149333pt;}
.y45{bottom:96.000000pt;}
.ybd{bottom:112.328000pt;}
.y85{bottom:124.908000pt;}
.y44{bottom:125.465333pt;}
.ybc{bottom:130.393333pt;}
.ye0{bottom:131.728000pt;}
.y64{bottom:134.945333pt;}
.ybb{bottom:148.460000pt;}
.ydf{bottom:149.793333pt;}
.y63{bottom:153.012000pt;}
.y84{bottom:153.816000pt;}
.y43{bottom:161.789333pt;}
.yba{bottom:166.525333pt;}
.y1f{bottom:168.372000pt;}
.yde{bottom:179.813333pt;}
.y42{bottom:179.854667pt;}
.y83{bottom:182.724000pt;}
.y62{bottom:183.032000pt;}
.yb9{bottom:184.590667pt;}
.y1e{bottom:186.438667pt;}
.ydd{bottom:197.880000pt;}
.y61{bottom:201.097333pt;}
.yb8{bottom:202.656000pt;}
.y1d{bottom:204.504000pt;}
.y41{bottom:205.612000pt;}
.y82{bottom:211.632000pt;}
.y1c{bottom:222.569333pt;}
.y40{bottom:223.678667pt;}
.y9f{bottom:227.562667pt;}
.ydc{bottom:227.900000pt;}
.y60{bottom:231.118667pt;}
.yb7{bottom:233.437333pt;}
.y81{bottom:240.540000pt;}
.y1b{bottom:240.634667pt;}
.yb6{bottom:253.254667pt;}
.ydb{bottom:257.921333pt;}
.y3f{bottom:258.829333pt;}
.y5f{bottom:261.138667pt;}
.y80{bottom:269.448000pt;}
.y9e{bottom:269.538667pt;}
.yda{bottom:275.986667pt;}
.y1a{bottom:276.064000pt;}
.yb5{bottom:276.954667pt;}
.y7f{bottom:298.356000pt;}
.y5e{bottom:299.130667pt;}
.y3e{bottom:299.522667pt;}
.y9d{bottom:299.560000pt;}
.yd9{bottom:306.008000pt;}
.yb4{bottom:321.056000pt;}
.y19{bottom:322.985333pt;}
.y7e{bottom:327.264000pt;}
.y9c{bottom:329.580000pt;}
.y5d{bottom:331.808000pt;}
.yd8{bottom:336.028000pt;}
.yb3{bottom:339.121333pt;}
.y18{bottom:341.050667pt;}
.y3d{bottom:352.782667pt;}
.yb2{bottom:357.188000pt;}
.y5c{bottom:357.842667pt;}
.y17{bottom:359.116000pt;}
.y7d{bottom:364.937333pt;}
.yd7{bottom:366.049333pt;}
.y3c{bottom:370.848000pt;}
.y9b{bottom:371.556000pt;}
.yb1{bottom:375.253333pt;}
.y5b{bottom:375.909333pt;}
.y16{bottom:377.181333pt;}
.yd6{bottom:384.114667pt;}
.y7c{bottom:386.988000pt;}
.y9a{bottom:389.621333pt;}
.yb0{bottom:393.318667pt;}
.y5a{bottom:393.974667pt;}
.y3b{bottom:406.000000pt;}
.y7b{bottom:409.038667pt;}
.yaf{bottom:411.384000pt;}
.y59{bottom:412.040000pt;}
.y99{bottom:415.657333pt;}
.y15{bottom:417.621333pt;}
.yd5{bottom:420.926667pt;}
.y7a{bottom:431.089333pt;}
.yd4{bottom:431.110667pt;}
.yae{bottom:446.813333pt;}
.y58{bottom:447.469333pt;}
.y98{bottom:448.334667pt;}
.y3a{bottom:452.380000pt;}
.y79{bottom:453.140000pt;}
.yd3{bottom:463.788000pt;}
.y39{bottom:470.445333pt;}
.y14{bottom:471.420000pt;}
.y78{bottom:475.190667pt;}
.y97{bottom:481.012000pt;}
.yd2{bottom:481.853333pt;}
.yad{bottom:487.784000pt;}
.y38{bottom:488.510667pt;}
.y13{bottom:489.485333pt;}
.y57{bottom:494.389333pt;}
.y77{bottom:497.241333pt;}
.y37{bottom:506.577333pt;}
.y96{bottom:507.048000pt;}
.y12{bottom:507.552000pt;}
.y56{bottom:512.456000pt;}
.yd1{bottom:518.665333pt;}
.y36{bottom:524.642667pt;}
.y95{bottom:525.113333pt;}
.y11{bottom:525.617333pt;}
.y76{bottom:526.125333pt;}
.yd0{bottom:528.849333pt;}
.yac{bottom:541.584000pt;}
.y55{bottom:542.476000pt;}
.y35{bottom:542.708000pt;}
.y10{bottom:543.682667pt;}
.y94{bottom:551.149333pt;}
.y75{bottom:551.604000pt;}
.yab{bottom:559.649333pt;}
.y54{bottom:560.541333pt;}
.ycf{bottom:561.526667pt;}
.yf{bottom:561.748000pt;}
.y74{bottom:569.669333pt;}
.yaa{bottom:577.714667pt;}
.y34{bottom:577.860000pt;}
.yce{bottom:579.592000pt;}
.ye{bottom:579.813333pt;}
.y93{bottom:586.578667pt;}
.y73{bottom:587.736000pt;}
.y53{bottom:590.562667pt;}
.ya9{bottom:595.780000pt;}
.yd{bottom:597.880000pt;}
.ycd{bottom:609.613333pt;}
.yc{bottom:615.945333pt;}
.y52{bottom:620.582667pt;}
.y72{bottom:622.609333pt;}
.y33{bottom:624.240000pt;}
.ya8{bottom:631.210667pt;}
.y92{bottom:632.968000pt;}
.yb{bottom:634.010667pt;}
.ycc{bottom:639.634667pt;}
.y32{bottom:642.305333pt;}
.y51{bottom:650.604000pt;}
.ya{bottom:652.076000pt;}
.y31{bottom:660.370667pt;}
.y91{bottom:662.989333pt;}
.y71{bottom:668.448000pt;}
.y50{bottom:668.669333pt;}
.ycb{bottom:669.654667pt;}
.y9{bottom:670.141333pt;}
.ya7{bottom:678.130667pt;}
.y30{bottom:678.437333pt;}
.y8{bottom:688.208000pt;}
.y2f{bottom:696.502667pt;}
.y70{bottom:697.356000pt;}
.y4f{bottom:698.690667pt;}
.yca{bottom:699.676000pt;}
.y90{bottom:700.980000pt;}
.ya6{bottom:708.150667pt;}
.y2e{bottom:714.568000pt;}
.yc9{bottom:717.741333pt;}
.y6f{bottom:726.264000pt;}
.y7{bottom:728.646667pt;}
.y4e{bottom:728.710667pt;}
.y2d{bottom:732.633333pt;}
.ya5{bottom:738.172000pt;}
.y8f{bottom:745.081333pt;}
.yc8{bottom:747.762667pt;}
.y2c{bottom:750.698667pt;}
.y6e{bottom:755.172000pt;}
.y8e{bottom:763.146667pt;}
.y4d{bottom:766.702667pt;}
.ya4{bottom:768.192000pt;}
.y2b{bottom:768.765333pt;}
.y6d{bottom:784.080000pt;}
.y2a{bottom:786.830667pt;}
.y8d{bottom:789.182667pt;}
.yc7{bottom:792.474667pt;}
.yc5{bottom:795.918667pt;}
.ya3{bottom:798.213333pt;}
.y6{bottom:798.386667pt;}
.y4c{bottom:799.380000pt;}
.yc4{bottom:799.904000pt;}
.y29{bottom:804.896000pt;}
.y6c{bottom:812.988000pt;}
.y28{bottom:822.961333pt;}
.yc3{bottom:823.814667pt;}
.yc6{bottom:823.970667pt;}
.y8c{bottom:824.612000pt;}
.y4b{bottom:825.414667pt;}
.yc2{bottom:827.800000pt;}
.ya2{bottom:828.234667pt;}
.y5{bottom:838.790667pt;}
.yc1{bottom:839.754667pt;}
.y4a{bottom:843.481333pt;}
.y6b{bottom:847.232000pt;}
.y4{bottom:857.386667pt;}
.y27{bottom:858.113333pt;}
.ya1{bottom:858.254667pt;}
.yc0{bottom:860.114667pt;}
.y6a{bottom:869.282667pt;}
.y8b{bottom:870.248000pt;}
.y3{bottom:875.984000pt;}
.y49{bottom:878.910667pt;}
.y89{bottom:885.436000pt;}
.y8a{bottom:888.541333pt;}
.ya0{bottom:896.245333pt;}
.y69{bottom:897.358667pt;}
.ybf{bottom:904.216000pt;}
.y26{bottom:904.493333pt;}
.ybe{bottom:922.281333pt;}
.y25{bottom:922.560000pt;}
.y68{bottom:922.837333pt;}
.y2{bottom:924.369333pt;}
.y48{bottom:925.830667pt;}
.y88{bottom:940.346667pt;}
.y24{bottom:940.625333pt;}
.y67{bottom:940.904000pt;}
.y47{bottom:943.896000pt;}
.y1{bottom:953.593333pt;}
.y87{bottom:958.413333pt;}
.y23{bottom:958.690667pt;}
.y66{bottom:958.969333pt;}
.y86{bottom:976.478667pt;}
.y22{bottom:976.756000pt;}
.y65{bottom:977.034667pt;}
.y46{bottom:981.886667pt;}
.y21{bottom:1011.908000pt;}
.h12{height:2.656693pt;}
.hc{height:29.499997pt;}
.he{height:31.215067pt;}
.h15{height:31.880400pt;}
.h4{height:39.340578pt;}
.h8{height:40.610943pt;}
.h9{height:41.658217pt;}
.hb{height:41.974027pt;}
.h6{height:43.636400pt;}
.h7{height:44.632747pt;}
.h14{height:45.088727pt;}
.h3{height:45.525402pt;}
.h5{height:53.559147pt;}
.hd{height:54.395360pt;}
.h11{height:62.896693pt;}
.h13{height:62.902027pt;}
.h2{height:64.270827pt;}
.h10{height:83.545733pt;}
.ha{height:110.720693pt;}
.hf{height:120.927550pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.298667pt;}
.x7{left:96.000000pt;}
.x1{left:111.882667pt;}
.xb{left:113.777333pt;}
.x1b{left:130.661333pt;}
.xf{left:132.364000pt;}
.x33{left:136.884000pt;}
.x45{left:144.726667pt;}
.x34{left:148.692000pt;}
.x15{left:150.716000pt;}
.x16{left:156.260000pt;}
.x4b{left:160.242667pt;}
.x54{left:161.929333pt;}
.x38{left:162.969333pt;}
.x17{left:163.912000pt;}
.x4c{left:166.012000pt;}
.x39{left:168.586667pt;}
.x32{left:169.640000pt;}
.x4d{left:173.330667pt;}
.x1c{left:176.909333pt;}
.x1f{left:179.036000pt;}
.x13{left:182.338667pt;}
.x14{left:187.882667pt;}
.x35{left:189.453333pt;}
.x36{left:194.996000pt;}
.x18{left:198.282667pt;}
.x10{left:200.205333pt;}
.x50{left:201.945333pt;}
.x19{left:203.933333pt;}
.x11{left:205.974667pt;}
.x51{left:207.533333pt;}
.xc{left:208.762667pt;}
.xd{left:214.306667pt;}
.x37{left:217.426667pt;}
.xe{left:221.125333pt;}
.x3a{left:223.892000pt;}
.x1a{left:224.869333pt;}
.x12{left:226.946667pt;}
.x3b{left:229.509333pt;}
.xa{left:235.493333pt;}
.x2a{left:236.796000pt;}
.x46{left:238.541333pt;}
.x47{left:244.312000pt;}
.x1d{left:246.026667pt;}
.x55{left:246.977333pt;}
.x3c{left:251.941333pt;}
.x3d{left:257.557333pt;}
.x52{left:263.094667pt;}
.x20{left:265.124000pt;}
.x2{left:267.040000pt;}
.x2b{left:270.257333pt;}
.x3e{left:271.340000pt;}
.x30{left:275.721333pt;}
.x21{left:276.985333pt;}
.x5{left:277.913333pt;}
.x26{left:281.654667pt;}
.x22{left:298.358667pt;}
.x41{left:300.177333pt;}
.x53{left:302.505333pt;}
.x42{left:305.782667pt;}
.x56{left:308.489333pt;}
.x27{left:312.486667pt;}
.x4{left:314.217333pt;}
.x57{left:315.806667pt;}
.x6{left:338.732000pt;}
.x3{left:349.812000pt;}
.x4e{left:361.017333pt;}
.x4f{left:368.336000pt;}
.x43{left:371.910667pt;}
.x1e{left:384.309333pt;}
.x8{left:393.214667pt;}
.x3f{left:395.662667pt;}
.x2e{left:398.210667pt;}
.x31{left:419.225333pt;}
.x23{left:438.730667pt;}
.x44{left:455.929333pt;}
.x24{left:460.104000pt;}
.x40{left:479.681333pt;}
.x2f{left:482.372000pt;}
.x58{left:491.866667pt;}
.x28{left:497.340000pt;}
.x59{left:504.424000pt;}
.x29{left:508.857333pt;}
.x48{left:523.761333pt;}
.x2c{left:575.288000pt;}
.x25{left:576.374667pt;}
.x49{left:657.718667pt;}
.x2d{left:659.345333pt;}
.x4a{left:673.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; }
  