
    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_158035d96f8e101e68a8c15e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_f1e81e841447d389929ab35a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.170000;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_fcaaff64c17d689172bb2a3c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_c575cc39cf1758a889c0788a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.928000;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_fa6f8d4347dac591a7ba35f3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_3030b3114c330406e5b2b908.woff')format("woff");}.ff6{font-family:ff6;line-height:1.143000;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_291fd8b98b17bf01f4edb955.woff')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_bdbc61751e64a0e860b98b17.woff')format("woff");}.ff8{font-family:ff8;line-height:1.170000;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_1ced6782f7cd234d9ddd3a51.woff')format("woff");}.ff9{font-family:ff9;line-height:1.155000;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_1f5fd7838875a12d2f78954a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.122000;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_97b9eb1c435d945679302765.woff')format("woff");}.ffb{font-family:ffb;line-height:1.090000;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_291fd8b98b17bf01f4edb955.woff')format("woff");}.ffc{font-family:ffc;line-height:0.930000;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_8d8d76908f9866b3b386f1f7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.170000;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_1f5fd7838875a12d2f78954a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.122000;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_250209dd93f735efb3ece1d8.woff')format("woff");}.fff{font-family:fff;line-height:0.928000;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_f7b5439dc8449481c6d3c641.woff')format("woff");}.ff10{font-family:ff10;line-height:1.155000;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_291fd8b98b17bf01f4edb955.woff')format("woff");}.ff11{font-family:ff11;line-height:0.930000;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_1f5fd7838875a12d2f78954a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.122000;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_cc628920300686cea64d71d7.woff')format("woff");}.ff13{font-family:ff13;line-height:1.155000;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_eb768893770d4a20ce854015.woff')format("woff");}.ff14{font-family:ff14;line-height:0.700000;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;}
.m15{transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248013,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-9.888000px;}
.ls1a{letter-spacing:-8.640000px;}
.ls18{letter-spacing:-4.680000px;}
.ls7{letter-spacing:-3.600000px;}
.ls12{letter-spacing:-3.456000px;}
.ls4{letter-spacing:-3.325106px;}
.ls19{letter-spacing:-2.880000px;}
.ls2{letter-spacing:-1.900061px;}
.ls1{letter-spacing:-1.824000px;}
.ls9{letter-spacing:-1.800000px;}
.ls13{letter-spacing:-1.632000px;}
.lsb{letter-spacing:-1.440000px;}
.ls2b{letter-spacing:-1.326000px;}
.lsc{letter-spacing:-1.260000px;}
.ls17{letter-spacing:-1.248000px;}
.lsf{letter-spacing:-1.152000px;}
.lsa{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-1.056000px;}
.ls8{letter-spacing:-0.900000px;}
.ls11{letter-spacing:-0.864000px;}
.ls31{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.510000px;}
.ls16{letter-spacing:-0.480000px;}
.ls30{letter-spacing:-0.420000px;}
.ls14{letter-spacing:-0.384000px;}
.ls2f{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.240000px;}
.ls2e{letter-spacing:-0.180000px;}
.ls33{letter-spacing:-0.120000px;}
.lse{letter-spacing:-0.096000px;}
.ls2d{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.060000px;}
.ls25{letter-spacing:0.090000px;}
.ls1d{letter-spacing:0.120000px;}
.ls2a{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.300000px;}
.ls29{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.712523px;}
.ls24{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.960000px;}
.ls22{letter-spacing:1.020000px;}
.ls23{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.320000px;}
.ls28{letter-spacing:1.440000px;}
.ls35{letter-spacing:1.500000px;}
.ls6{letter-spacing:1.900063px;}
.ls5{letter-spacing:2.714376px;}
.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;}
}
.ws0{word-spacing:-55.576778px;}
.ws1{word-spacing:-53.676718px;}
.ws2{word-spacing:-52.251672px;}
.wsf{word-spacing:-41.040000px;}
.wse{word-spacing:-40.860000px;}
.wsd{word-spacing:-40.320000px;}
.wsc{word-spacing:-38.520000px;}
.ws3{word-spacing:-33.658262px;}
.ws17{word-spacing:-22.848000px;}
.ws1f{word-spacing:-22.560000px;}
.ws16{word-spacing:-22.464000px;}
.ws12{word-spacing:-21.984000px;}
.ws14{word-spacing:-21.792000px;}
.ws4f{word-spacing:-21.696000px;}
.ws11{word-spacing:-21.408000px;}
.ws15{word-spacing:-21.216000px;}
.ws32{word-spacing:-19.968000px;}
.ws13{word-spacing:-19.392000px;}
.ws4e{word-spacing:-14.760000px;}
.ws33{word-spacing:-14.208000px;}
.ws10{word-spacing:-12.960000px;}
.ws7{word-spacing:-2.714376px;}
.ws2b{word-spacing:-2.112000px;}
.ws23{word-spacing:-1.980000px;}
.ws21{word-spacing:-1.914000px;}
.ws8{word-spacing:-1.900063px;}
.ws25{word-spacing:-1.848000px;}
.ws27{word-spacing:-1.650000px;}
.ws24{word-spacing:-1.584000px;}
.ws51{word-spacing:-1.500000px;}
.ws48{word-spacing:-1.440000px;}
.ws2f{word-spacing:-1.320000px;}
.wsb{word-spacing:-1.260000px;}
.ws43{word-spacing:-1.200000px;}
.ws31{word-spacing:-1.188000px;}
.ws35{word-spacing:-1.056000px;}
.ws42{word-spacing:-1.020000px;}
.ws50{word-spacing:-0.960000px;}
.wsa{word-spacing:-0.924000px;}
.ws44{word-spacing:-0.720000px;}
.ws6{word-spacing:-0.712523px;}
.ws3d{word-spacing:-0.600000px;}
.ws45{word-spacing:-0.540000px;}
.ws46{word-spacing:-0.480000px;}
.ws49{word-spacing:-0.360000px;}
.ws41{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.294000px;}
.ws39{word-spacing:-0.240000px;}
.ws4a{word-spacing:-0.180000px;}
.ws3a{word-spacing:-0.120000px;}
.ws40{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws3b{word-spacing:0.060000px;}
.ws1c{word-spacing:0.096000px;}
.ws4c{word-spacing:0.120000px;}
.ws3c{word-spacing:0.180000px;}
.ws4d{word-spacing:0.240000px;}
.ws28{word-spacing:0.288000px;}
.ws3e{word-spacing:0.360000px;}
.ws3f{word-spacing:0.420000px;}
.ws38{word-spacing:0.510000px;}
.ws4b{word-spacing:0.540000px;}
.ws47{word-spacing:0.600000px;}
.ws18{word-spacing:0.900000px;}
.ws1b{word-spacing:1.056000px;}
.ws19{word-spacing:1.080000px;}
.ws1d{word-spacing:1.152000px;}
.ws2c{word-spacing:1.248000px;}
.ws37{word-spacing:1.326000px;}
.ws1a{word-spacing:1.440000px;}
.ws5{word-spacing:1.824000px;}
.ws34{word-spacing:4.680000px;}
.ws30{word-spacing:29.700000px;}
.ws26{word-spacing:35.046000px;}
.ws22{word-spacing:74.646000px;}
.ws36{word-spacing:4056.627000px;}
.ws29{word-spacing:4132.800000px;}
.ws2a{word-spacing:4132.831800px;}
.ws1e{word-spacing:4136.064000px;}
.ws20{word-spacing:4136.095800px;}
.ws2d{word-spacing:4136.928000px;}
.ws2e{word-spacing:4136.959800px;}
._1e{margin-left:-4428.192000px;}
._1c{margin-left:-4410.342000px;}
._1d{margin-left:-4408.512000px;}
._13{margin-left:-4345.440000px;}
._a{margin-left:-4312.032000px;}
._17{margin-left:-3113.093502px;}
._16{margin-left:-35.706000px;}
._6{margin-left:-17.928000px;}
._8{margin-left:-11.369502px;}
._4{margin-left:-9.310298px;}
._f{margin-left:-7.841005px;}
._14{margin-left:-6.270000px;}
._d{margin-left:-4.457502px;}
._1{margin-left:-3.360000px;}
._5{margin-left:-2.076498px;}
._0{margin-left:-1.050000px;}
._2{width:1.830000px;}
._3{width:3.547623px;}
._1a{width:5.346000px;}
._9{width:8.649600px;}
._19{width:29.700000px;}
._1b{width:30.756000px;}
._11{width:35.046000px;}
._10{width:36.630000px;}
._18{width:38.214000px;}
._15{width:40.656000px;}
._c{width:74.646000px;}
._e{width:76.626000px;}
._b{width:80.784000px;}
._12{width:153.846000px;}
._7{width:3143.533991px;}
.fc3{color:transparent;}
.fc2{color:rgb(60,60,59);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(62,60,59);}
.fsc{font-size:26.104800px;}
.fs0{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs9{font-size:102.000000px;}
.fs1{font-size:114.000000px;}
.fs3{font-size:135.718800px;}
.fs4{font-size:180.000000px;}
.fs2{font-size:237.507600px;}
.fs8{font-size:360.000000px;}
.y102{bottom:-391.429650px;}
.ye9{bottom:-197.998950px;}
.y103{bottom:-184.429650px;}
.y119{bottom:-153.424500px;}
.yd0{bottom:-34.618950px;}
.y0{bottom:0.000000px;}
.yea{bottom:9.001050px;}
.y1a{bottom:33.413400px;}
.y92{bottom:33.413550px;}
.y100{bottom:40.006200px;}
.ye{bottom:46.907400px;}
.y3{bottom:46.907550px;}
.yb6{bottom:46.913550px;}
.yd{bottom:60.410400px;}
.y2{bottom:60.410550px;}
.ycf{bottom:68.032500px;}
.yc{bottom:73.913400px;}
.y1{bottom:73.913550px;}
.y7b{bottom:82.379400px;}
.y63{bottom:82.511400px;}
.y4b{bottom:82.643400px;}
.y33{bottom:82.775400px;}
.yb1{bottom:82.913400px;}
.yb0{bottom:100.913400px;}
.y7a{bottom:104.885400px;}
.y62{bottom:105.017400px;}
.y4a{bottom:105.149400px;}
.y32{bottom:105.281400px;}
.yaf{bottom:118.913400px;}
.y79{bottom:127.391400px;}
.y61{bottom:127.523400px;}
.y49{bottom:127.655400px;}
.y31{bottom:127.787400px;}
.yae{bottom:136.913400px;}
.y78{bottom:149.897400px;}
.y60{bottom:150.029400px;}
.y48{bottom:150.161400px;}
.y90{bottom:150.177900px;}
.y30{bottom:150.293400px;}
.yad{bottom:154.913400px;}
.y77{bottom:172.403400px;}
.y5f{bottom:172.535400px;}
.y47{bottom:172.667400px;}
.y8f{bottom:172.683900px;}
.y2f{bottom:172.799400px;}
.yac{bottom:172.913400px;}
.yab{bottom:190.913400px;}
.y76{bottom:194.909400px;}
.y5e{bottom:195.041400px;}
.y46{bottom:195.173400px;}
.y8e{bottom:195.189900px;}
.y2e{bottom:195.305400px;}
.ye7{bottom:203.386200px;}
.yaa{bottom:208.913400px;}
.y75{bottom:217.415400px;}
.y5d{bottom:217.547400px;}
.y45{bottom:217.679400px;}
.y8d{bottom:217.695900px;}
.y2d{bottom:217.811400px;}
.ya9{bottom:226.913550px;}
.ye8{bottom:231.412500px;}
.y19{bottom:231.413400px;}
.y74{bottom:239.921400px;}
.y5c{bottom:240.053400px;}
.y44{bottom:240.185400px;}
.y8c{bottom:240.201900px;}
.y2c{bottom:240.317400px;}
.yd1{bottom:240.413550px;}
.ya8{bottom:244.913550px;}
.yff{bottom:261.001050px;}
.y73{bottom:262.427400px;}
.y5b{bottom:262.559400px;}
.y43{bottom:262.691400px;}
.y8b{bottom:262.707900px;}
.y2b{bottom:262.823400px;}
.ya7{bottom:262.913550px;}
.yfe{bottom:279.001050px;}
.ya6{bottom:280.913550px;}
.y72{bottom:284.933400px;}
.y5a{bottom:285.065400px;}
.y42{bottom:285.197400px;}
.y8a{bottom:285.213900px;}
.y2a{bottom:285.329400px;}
.y18{bottom:294.413400px;}
.yfd{bottom:297.001050px;}
.ya5{bottom:298.913550px;}
.y71{bottom:307.439400px;}
.y59{bottom:307.571400px;}
.y41{bottom:307.703400px;}
.y89{bottom:307.719900px;}
.y29{bottom:307.835400px;}
.yfc{bottom:315.001050px;}
.ya4{bottom:316.913550px;}
.y70{bottom:329.945400px;}
.y58{bottom:330.077400px;}
.y40{bottom:330.209400px;}
.y88{bottom:330.225900px;}
.y28{bottom:330.341400px;}
.yfb{bottom:333.001050px;}
.ya3{bottom:334.913550px;}
.yce{bottom:343.913550px;}
.yfa{bottom:351.001050px;}
.y6f{bottom:352.451400px;}
.y57{bottom:352.583400px;}
.y3f{bottom:352.715400px;}
.y87{bottom:352.731900px;}
.y27{bottom:352.847400px;}
.ya2{bottom:352.913550px;}
.y17{bottom:357.413400px;}
.ycd{bottom:361.913550px;}
.yf9{bottom:369.001050px;}
.ya1{bottom:370.913550px;}
.y6e{bottom:374.957400px;}
.y56{bottom:375.089400px;}
.y3e{bottom:375.221400px;}
.y86{bottom:375.237900px;}
.y26{bottom:375.353400px;}
.ycc{bottom:379.913550px;}
.yf8{bottom:387.001050px;}
.ya0{bottom:388.913550px;}
.y6d{bottom:397.463400px;}
.y55{bottom:397.595400px;}
.y3d{bottom:397.727400px;}
.y85{bottom:397.743900px;}
.y25{bottom:397.859400px;}
.ycb{bottom:397.913550px;}
.yf7{bottom:405.001050px;}
.y9f{bottom:406.913550px;}
.yca{bottom:415.913550px;}
.y6c{bottom:419.969400px;}
.y54{bottom:420.101400px;}
.y3c{bottom:420.233400px;}
.y84{bottom:420.249900px;}
.y24{bottom:420.365400px;}
.y16{bottom:420.413400px;}
.yf6{bottom:423.001050px;}
.ye6{bottom:424.381050px;}
.y9e{bottom:424.913550px;}
.y101{bottom:424.914000px;}
.yc3{bottom:429.413550px;}
.yf5{bottom:441.001050px;}
.ye5{bottom:442.381050px;}
.y6b{bottom:442.475400px;}
.y53{bottom:442.607400px;}
.y3b{bottom:442.739400px;}
.y83{bottom:442.755900px;}
.y23{bottom:442.871400px;}
.y9d{bottom:442.913550px;}
.yc2{bottom:447.413550px;}
.yc9{bottom:451.913550px;}
.yf4{bottom:459.001050px;}
.ye4{bottom:460.381050px;}
.y9c{bottom:460.913550px;}
.y6a{bottom:464.981400px;}
.y52{bottom:465.113400px;}
.y3a{bottom:465.245400px;}
.y82{bottom:465.261900px;}
.y22{bottom:465.377400px;}
.yc8{bottom:469.913550px;}
.y11a{bottom:474.413400px;}
.yf3{bottom:477.001050px;}
.ye3{bottom:478.381050px;}
.yb5{bottom:478.913400px;}
.y9b{bottom:478.913550px;}
.y15{bottom:483.413400px;}
.yc1{bottom:483.413550px;}
.y69{bottom:487.487400px;}
.y51{bottom:487.619400px;}
.y39{bottom:487.751400px;}
.y81{bottom:487.767900px;}
.y21{bottom:487.883400px;}
.yc7{bottom:487.913550px;}
.y118{bottom:492.484350px;}
.yf2{bottom:495.001050px;}
.ye2{bottom:496.381050px;}
.yb4{bottom:496.913400px;}
.y9a{bottom:496.913550px;}
.yc0{bottom:501.413550px;}
.yc6{bottom:505.913550px;}
.y68{bottom:509.993400px;}
.y50{bottom:510.125400px;}
.y38{bottom:510.257400px;}
.y80{bottom:510.273900px;}
.y20{bottom:510.389400px;}
.y117{bottom:510.484350px;}
.yf1{bottom:513.001050px;}
.ye1{bottom:514.381050px;}
.yb3{bottom:514.913400px;}
.y99{bottom:514.913550px;}
.y6{bottom:514.928550px;}
.ybf{bottom:519.413550px;}
.y116{bottom:528.484350px;}
.yf0{bottom:531.001050px;}
.ye0{bottom:532.381050px;}
.y67{bottom:532.499400px;}
.y4f{bottom:532.631400px;}
.y37{bottom:532.763400px;}
.y7f{bottom:532.779900px;}
.y1f{bottom:532.895400px;}
.yb2{bottom:532.913400px;}
.y98{bottom:532.913550px;}
.ybe{bottom:537.413550px;}
.y14{bottom:546.413400px;}
.y5{bottom:546.421050px;}
.y115{bottom:546.484350px;}
.yef{bottom:549.001050px;}
.ydf{bottom:550.381050px;}
.y97{bottom:550.913400px;}
.y66{bottom:555.005400px;}
.y4e{bottom:555.137400px;}
.y36{bottom:555.269400px;}
.y7e{bottom:555.285900px;}
.y1e{bottom:555.401400px;}
.ybd{bottom:555.413550px;}
.y114{bottom:564.484350px;}
.yee{bottom:567.001050px;}
.yde{bottom:568.381050px;}
.y96{bottom:568.913400px;}
.ybc{bottom:573.413550px;}
.y65{bottom:577.511400px;}
.y4d{bottom:577.643400px;}
.y35{bottom:577.775400px;}
.y7d{bottom:577.791900px;}
.y1d{bottom:577.907400px;}
.y4{bottom:577.913550px;}
.yc5{bottom:582.413550px;}
.y113{bottom:582.484350px;}
.yed{bottom:585.001050px;}
.ydd{bottom:586.381050px;}
.y95{bottom:586.913400px;}
.ybb{bottom:591.413550px;}
.y64{bottom:600.017400px;}
.y4c{bottom:600.149400px;}
.y34{bottom:600.281400px;}
.y7c{bottom:600.297900px;}
.y1c{bottom:600.413400px;}
.yc4{bottom:600.413550px;}
.y112{bottom:600.484350px;}
.yec{bottom:603.001050px;}
.ydc{bottom:604.381050px;}
.y13{bottom:609.413400px;}
.y111{bottom:618.484350px;}
.yeb{bottom:621.001050px;}
.ydb{bottom:622.381050px;}
.yba{bottom:627.413550px;}
.y1b{bottom:636.413400px;}
.y110{bottom:636.484350px;}
.yda{bottom:640.381050px;}
.yb9{bottom:645.413550px;}
.y10f{bottom:654.484350px;}
.yd9{bottom:658.381050px;}
.y12{bottom:672.413400px;}
.yb8{bottom:672.413550px;}
.y10e{bottom:672.484350px;}
.yd8{bottom:676.381050px;}
.yb7{bottom:690.413550px;}
.y10d{bottom:690.484350px;}
.yd7{bottom:694.381050px;}
.y10c{bottom:708.484350px;}
.yd6{bottom:712.381050px;}
.y10b{bottom:726.484350px;}
.yd5{bottom:730.381050px;}
.y11{bottom:735.413400px;}
.y10a{bottom:744.484350px;}
.yd4{bottom:748.381050px;}
.y109{bottom:762.484350px;}
.yd3{bottom:766.381050px;}
.y108{bottom:780.484350px;}
.yd2{bottom:784.381050px;}
.y8{bottom:787.258940px;}
.yb{bottom:787.267342px;}
.y10{bottom:798.413400px;}
.y107{bottom:798.484350px;}
.y106{bottom:816.484350px;}
.ya{bottom:827.541896px;}
.y91{bottom:829.913400px;}
.y105{bottom:834.484350px;}
.y94{bottom:843.420900px;}
.y7{bottom:850.851600px;}
.y104{bottom:852.484350px;}
.yf{bottom:861.413400px;}
.y9{bottom:867.816450px;}
.y93{bottom:874.913400px;}
.h12{height:18.273360px;}
.h2{height:29.820000px;}
.he{height:45.600000px;}
.h13{height:49.500000px;}
.h14{height:53.400000px;}
.hd{height:55.380000px;}
.h10{height:57.000000px;}
.h9{height:60.918000px;}
.h8{height:63.900000px;}
.h7{height:68.160000px;}
.hc{height:94.146000px;}
.hb{height:96.900000px;}
.h3{height:108.300000px;}
.h6{height:127.800000px;}
.h5{height:128.932860px;}
.hf{height:171.000000px;}
.h11{height:212.881500px;}
.h4{height:225.632220px;}
.ha{height:255.600000px;}
.h15{height:510.519000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w2{width:892.912500px;}
.w3{width:933.307500px;}
.w1{width:2040.750000px;}
.w0{width:2040.945000px;}
.x22{left:-586.072200px;}
.x28{left:-582.883050px;}
.x1c{left:-575.442300px;}
.x1d{left:-1.062600px;}
.x0{left:0.000000px;}
.x23{left:2.126550px;}
.x17{left:9.567300px;}
.x1f{left:11.687400px;}
.x19{left:22.317300px;}
.x10{left:36.141750px;}
.x9{left:39.330600px;}
.x7{left:42.519750px;}
.x24{left:44.645550px;}
.x1{left:46.324200px;}
.x18{left:52.086300px;}
.x25{left:57.395550px;}
.x11{left:68.034750px;}
.xf{left:85.040100px;}
.x1e{left:192.729750px;}
.x6{left:223.802400px;}
.x12{left:456.411600px;}
.x20{left:466.652400px;}
.x1a{left:477.282300px;}
.x21{left:479.402400px;}
.x13{left:481.926600px;}
.x1b{left:490.032300px;}
.xa{left:495.362100px;}
.x26{left:512.360550px;}
.x27{left:525.110550px;}
.xb{left:537.882600px;}
.x4{left:1105.511700px;}
.xc{left:1148.036100px;}
.x8{left:1196.139750px;}
.x16{left:1520.147550px;}
.xd{left:1558.358100px;}
.x14{left:1599.454500px;}
.xe{left:1600.878600px;}
.x15{left:1622.158500px;}
.x2{left:1726.501050px;}
.x3{left:1802.140050px;}
.x5{left:1833.092174px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-8.789333pt;}
.ls1a{letter-spacing:-7.680000pt;}
.ls18{letter-spacing:-4.160000pt;}
.ls7{letter-spacing:-3.200000pt;}
.ls12{letter-spacing:-3.072000pt;}
.ls4{letter-spacing:-2.955650pt;}
.ls19{letter-spacing:-2.560000pt;}
.ls2{letter-spacing:-1.688943pt;}
.ls1{letter-spacing:-1.621333pt;}
.ls9{letter-spacing:-1.600000pt;}
.ls13{letter-spacing:-1.450667pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls2b{letter-spacing:-1.178667pt;}
.lsc{letter-spacing:-1.120000pt;}
.ls17{letter-spacing:-1.109333pt;}
.lsf{letter-spacing:-1.024000pt;}
.lsa{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.938667pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls31{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.453333pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls30{letter-spacing:-0.373333pt;}
.ls14{letter-spacing:-0.341333pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.213333pt;}
.ls2e{letter-spacing:-0.160000pt;}
.ls33{letter-spacing:-0.106667pt;}
.lse{letter-spacing:-0.085333pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.053333pt;}
.ls25{letter-spacing:0.080000pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.266667pt;}
.ls29{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.633354pt;}
.ls24{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.853333pt;}
.ls22{letter-spacing:0.906667pt;}
.ls23{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls28{letter-spacing:1.280000pt;}
.ls35{letter-spacing:1.333333pt;}
.ls6{letter-spacing:1.688945pt;}
.ls5{letter-spacing:2.412779pt;}
.ws0{word-spacing:-49.401581pt;}
.ws1{word-spacing:-47.712638pt;}
.ws2{word-spacing:-46.445931pt;}
.wsf{word-spacing:-36.480000pt;}
.wse{word-spacing:-36.320000pt;}
.wsd{word-spacing:-35.840000pt;}
.wsc{word-spacing:-34.240000pt;}
.ws3{word-spacing:-29.918455pt;}
.ws17{word-spacing:-20.309333pt;}
.ws1f{word-spacing:-20.053333pt;}
.ws16{word-spacing:-19.968000pt;}
.ws12{word-spacing:-19.541333pt;}
.ws14{word-spacing:-19.370667pt;}
.ws4f{word-spacing:-19.285333pt;}
.ws11{word-spacing:-19.029333pt;}
.ws15{word-spacing:-18.858667pt;}
.ws32{word-spacing:-17.749333pt;}
.ws13{word-spacing:-17.237333pt;}
.ws4e{word-spacing:-13.120000pt;}
.ws33{word-spacing:-12.629333pt;}
.ws10{word-spacing:-11.520000pt;}
.ws7{word-spacing:-2.412779pt;}
.ws2b{word-spacing:-1.877333pt;}
.ws23{word-spacing:-1.760000pt;}
.ws21{word-spacing:-1.701333pt;}
.ws8{word-spacing:-1.688945pt;}
.ws25{word-spacing:-1.642667pt;}
.ws27{word-spacing:-1.466667pt;}
.ws24{word-spacing:-1.408000pt;}
.ws51{word-spacing:-1.333333pt;}
.ws48{word-spacing:-1.280000pt;}
.ws2f{word-spacing:-1.173333pt;}
.wsb{word-spacing:-1.120000pt;}
.ws43{word-spacing:-1.066667pt;}
.ws31{word-spacing:-1.056000pt;}
.ws35{word-spacing:-0.938667pt;}
.ws42{word-spacing:-0.906667pt;}
.ws50{word-spacing:-0.853333pt;}
.wsa{word-spacing:-0.821333pt;}
.ws44{word-spacing:-0.640000pt;}
.ws6{word-spacing:-0.633354pt;}
.ws3d{word-spacing:-0.533333pt;}
.ws45{word-spacing:-0.480000pt;}
.ws46{word-spacing:-0.426667pt;}
.ws49{word-spacing:-0.320000pt;}
.ws41{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.261333pt;}
.ws39{word-spacing:-0.213333pt;}
.ws4a{word-spacing:-0.160000pt;}
.ws3a{word-spacing:-0.106667pt;}
.ws40{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.053333pt;}
.ws1c{word-spacing:0.085333pt;}
.ws4c{word-spacing:0.106667pt;}
.ws3c{word-spacing:0.160000pt;}
.ws4d{word-spacing:0.213333pt;}
.ws28{word-spacing:0.256000pt;}
.ws3e{word-spacing:0.320000pt;}
.ws3f{word-spacing:0.373333pt;}
.ws38{word-spacing:0.453333pt;}
.ws4b{word-spacing:0.480000pt;}
.ws47{word-spacing:0.533333pt;}
.ws18{word-spacing:0.800000pt;}
.ws1b{word-spacing:0.938667pt;}
.ws19{word-spacing:0.960000pt;}
.ws1d{word-spacing:1.024000pt;}
.ws2c{word-spacing:1.109333pt;}
.ws37{word-spacing:1.178667pt;}
.ws1a{word-spacing:1.280000pt;}
.ws5{word-spacing:1.621333pt;}
.ws34{word-spacing:4.160000pt;}
.ws30{word-spacing:26.400000pt;}
.ws26{word-spacing:31.152000pt;}
.ws22{word-spacing:66.352000pt;}
.ws36{word-spacing:3605.890667pt;}
.ws29{word-spacing:3673.600000pt;}
.ws2a{word-spacing:3673.628267pt;}
.ws1e{word-spacing:3676.501333pt;}
.ws20{word-spacing:3676.529600pt;}
.ws2d{word-spacing:3677.269333pt;}
.ws2e{word-spacing:3677.297600pt;}
._1e{margin-left:-3936.170667pt;}
._1c{margin-left:-3920.304000pt;}
._1d{margin-left:-3918.677333pt;}
._13{margin-left:-3862.613333pt;}
._a{margin-left:-3832.917333pt;}
._17{margin-left:-2767.194224pt;}
._16{margin-left:-31.738667pt;}
._6{margin-left:-15.936000pt;}
._8{margin-left:-10.106224pt;}
._4{margin-left:-8.275820pt;}
._f{margin-left:-6.969782pt;}
._14{margin-left:-5.573333pt;}
._d{margin-left:-3.962224pt;}
._1{margin-left:-2.986667pt;}
._5{margin-left:-1.845776pt;}
._0{margin-left:-0.933333pt;}
._2{width:1.626667pt;}
._3{width:3.153443pt;}
._1a{width:4.752000pt;}
._9{width:7.688533pt;}
._19{width:26.400000pt;}
._1b{width:27.338667pt;}
._11{width:31.152000pt;}
._10{width:32.560000pt;}
._18{width:33.968000pt;}
._15{width:36.138667pt;}
._c{width:66.352000pt;}
._e{width:68.112000pt;}
._b{width:71.808000pt;}
._12{width:136.752000pt;}
._7{width:2794.252436pt;}
.fsc{font-size:23.204267pt;}
.fs0{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs9{font-size:90.666667pt;}
.fs1{font-size:101.333333pt;}
.fs3{font-size:120.638933pt;}
.fs4{font-size:160.000000pt;}
.fs2{font-size:211.117867pt;}
.fs8{font-size:320.000000pt;}
.y102{bottom:-347.937467pt;}
.ye9{bottom:-175.999067pt;}
.y103{bottom:-163.937467pt;}
.y119{bottom:-136.377333pt;}
.yd0{bottom:-30.772400pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:8.000933pt;}
.y1a{bottom:29.700800pt;}
.y92{bottom:29.700933pt;}
.y100{bottom:35.561067pt;}
.ye{bottom:41.695467pt;}
.y3{bottom:41.695600pt;}
.yb6{bottom:41.700933pt;}
.yd{bottom:53.698133pt;}
.y2{bottom:53.698267pt;}
.ycf{bottom:60.473333pt;}
.yc{bottom:65.700800pt;}
.y1{bottom:65.700933pt;}
.y7b{bottom:73.226133pt;}
.y63{bottom:73.343467pt;}
.y4b{bottom:73.460800pt;}
.y33{bottom:73.578133pt;}
.yb1{bottom:73.700800pt;}
.yb0{bottom:89.700800pt;}
.y7a{bottom:93.231467pt;}
.y62{bottom:93.348800pt;}
.y4a{bottom:93.466133pt;}
.y32{bottom:93.583467pt;}
.yaf{bottom:105.700800pt;}
.y79{bottom:113.236800pt;}
.y61{bottom:113.354133pt;}
.y49{bottom:113.471467pt;}
.y31{bottom:113.588800pt;}
.yae{bottom:121.700800pt;}
.y78{bottom:133.242133pt;}
.y60{bottom:133.359467pt;}
.y48{bottom:133.476800pt;}
.y90{bottom:133.491467pt;}
.y30{bottom:133.594133pt;}
.yad{bottom:137.700800pt;}
.y77{bottom:153.247467pt;}
.y5f{bottom:153.364800pt;}
.y47{bottom:153.482133pt;}
.y8f{bottom:153.496800pt;}
.y2f{bottom:153.599467pt;}
.yac{bottom:153.700800pt;}
.yab{bottom:169.700800pt;}
.y76{bottom:173.252800pt;}
.y5e{bottom:173.370133pt;}
.y46{bottom:173.487467pt;}
.y8e{bottom:173.502133pt;}
.y2e{bottom:173.604800pt;}
.ye7{bottom:180.787733pt;}
.yaa{bottom:185.700800pt;}
.y75{bottom:193.258133pt;}
.y5d{bottom:193.375467pt;}
.y45{bottom:193.492800pt;}
.y8d{bottom:193.507467pt;}
.y2d{bottom:193.610133pt;}
.ya9{bottom:201.700933pt;}
.ye8{bottom:205.700000pt;}
.y19{bottom:205.700800pt;}
.y74{bottom:213.263467pt;}
.y5c{bottom:213.380800pt;}
.y44{bottom:213.498133pt;}
.y8c{bottom:213.512800pt;}
.y2c{bottom:213.615467pt;}
.yd1{bottom:213.700933pt;}
.ya8{bottom:217.700933pt;}
.yff{bottom:232.000933pt;}
.y73{bottom:233.268800pt;}
.y5b{bottom:233.386133pt;}
.y43{bottom:233.503467pt;}
.y8b{bottom:233.518133pt;}
.y2b{bottom:233.620800pt;}
.ya7{bottom:233.700933pt;}
.yfe{bottom:248.000933pt;}
.ya6{bottom:249.700933pt;}
.y72{bottom:253.274133pt;}
.y5a{bottom:253.391467pt;}
.y42{bottom:253.508800pt;}
.y8a{bottom:253.523467pt;}
.y2a{bottom:253.626133pt;}
.y18{bottom:261.700800pt;}
.yfd{bottom:264.000933pt;}
.ya5{bottom:265.700933pt;}
.y71{bottom:273.279467pt;}
.y59{bottom:273.396800pt;}
.y41{bottom:273.514133pt;}
.y89{bottom:273.528800pt;}
.y29{bottom:273.631467pt;}
.yfc{bottom:280.000933pt;}
.ya4{bottom:281.700933pt;}
.y70{bottom:293.284800pt;}
.y58{bottom:293.402133pt;}
.y40{bottom:293.519467pt;}
.y88{bottom:293.534133pt;}
.y28{bottom:293.636800pt;}
.yfb{bottom:296.000933pt;}
.ya3{bottom:297.700933pt;}
.yce{bottom:305.700933pt;}
.yfa{bottom:312.000933pt;}
.y6f{bottom:313.290133pt;}
.y57{bottom:313.407467pt;}
.y3f{bottom:313.524800pt;}
.y87{bottom:313.539467pt;}
.y27{bottom:313.642133pt;}
.ya2{bottom:313.700933pt;}
.y17{bottom:317.700800pt;}
.ycd{bottom:321.700933pt;}
.yf9{bottom:328.000933pt;}
.ya1{bottom:329.700933pt;}
.y6e{bottom:333.295467pt;}
.y56{bottom:333.412800pt;}
.y3e{bottom:333.530133pt;}
.y86{bottom:333.544800pt;}
.y26{bottom:333.647467pt;}
.ycc{bottom:337.700933pt;}
.yf8{bottom:344.000933pt;}
.ya0{bottom:345.700933pt;}
.y6d{bottom:353.300800pt;}
.y55{bottom:353.418133pt;}
.y3d{bottom:353.535467pt;}
.y85{bottom:353.550133pt;}
.y25{bottom:353.652800pt;}
.ycb{bottom:353.700933pt;}
.yf7{bottom:360.000933pt;}
.y9f{bottom:361.700933pt;}
.yca{bottom:369.700933pt;}
.y6c{bottom:373.306133pt;}
.y54{bottom:373.423467pt;}
.y3c{bottom:373.540800pt;}
.y84{bottom:373.555467pt;}
.y24{bottom:373.658133pt;}
.y16{bottom:373.700800pt;}
.yf6{bottom:376.000933pt;}
.ye6{bottom:377.227600pt;}
.y9e{bottom:377.700933pt;}
.y101{bottom:377.701333pt;}
.yc3{bottom:381.700933pt;}
.yf5{bottom:392.000933pt;}
.ye5{bottom:393.227600pt;}
.y6b{bottom:393.311467pt;}
.y53{bottom:393.428800pt;}
.y3b{bottom:393.546133pt;}
.y83{bottom:393.560800pt;}
.y23{bottom:393.663467pt;}
.y9d{bottom:393.700933pt;}
.yc2{bottom:397.700933pt;}
.yc9{bottom:401.700933pt;}
.yf4{bottom:408.000933pt;}
.ye4{bottom:409.227600pt;}
.y9c{bottom:409.700933pt;}
.y6a{bottom:413.316800pt;}
.y52{bottom:413.434133pt;}
.y3a{bottom:413.551467pt;}
.y82{bottom:413.566133pt;}
.y22{bottom:413.668800pt;}
.yc8{bottom:417.700933pt;}
.y11a{bottom:421.700800pt;}
.yf3{bottom:424.000933pt;}
.ye3{bottom:425.227600pt;}
.yb5{bottom:425.700800pt;}
.y9b{bottom:425.700933pt;}
.y15{bottom:429.700800pt;}
.yc1{bottom:429.700933pt;}
.y69{bottom:433.322133pt;}
.y51{bottom:433.439467pt;}
.y39{bottom:433.556800pt;}
.y81{bottom:433.571467pt;}
.y21{bottom:433.674133pt;}
.yc7{bottom:433.700933pt;}
.y118{bottom:437.763867pt;}
.yf2{bottom:440.000933pt;}
.ye2{bottom:441.227600pt;}
.yb4{bottom:441.700800pt;}
.y9a{bottom:441.700933pt;}
.yc0{bottom:445.700933pt;}
.yc6{bottom:449.700933pt;}
.y68{bottom:453.327467pt;}
.y50{bottom:453.444800pt;}
.y38{bottom:453.562133pt;}
.y80{bottom:453.576800pt;}
.y20{bottom:453.679467pt;}
.y117{bottom:453.763867pt;}
.yf1{bottom:456.000933pt;}
.ye1{bottom:457.227600pt;}
.yb3{bottom:457.700800pt;}
.y99{bottom:457.700933pt;}
.y6{bottom:457.714267pt;}
.ybf{bottom:461.700933pt;}
.y116{bottom:469.763867pt;}
.yf0{bottom:472.000933pt;}
.ye0{bottom:473.227600pt;}
.y67{bottom:473.332800pt;}
.y4f{bottom:473.450133pt;}
.y37{bottom:473.567467pt;}
.y7f{bottom:473.582133pt;}
.y1f{bottom:473.684800pt;}
.yb2{bottom:473.700800pt;}
.y98{bottom:473.700933pt;}
.ybe{bottom:477.700933pt;}
.y14{bottom:485.700800pt;}
.y5{bottom:485.707600pt;}
.y115{bottom:485.763867pt;}
.yef{bottom:488.000933pt;}
.ydf{bottom:489.227600pt;}
.y97{bottom:489.700800pt;}
.y66{bottom:493.338133pt;}
.y4e{bottom:493.455467pt;}
.y36{bottom:493.572800pt;}
.y7e{bottom:493.587467pt;}
.y1e{bottom:493.690133pt;}
.ybd{bottom:493.700933pt;}
.y114{bottom:501.763867pt;}
.yee{bottom:504.000933pt;}
.yde{bottom:505.227600pt;}
.y96{bottom:505.700800pt;}
.ybc{bottom:509.700933pt;}
.y65{bottom:513.343467pt;}
.y4d{bottom:513.460800pt;}
.y35{bottom:513.578133pt;}
.y7d{bottom:513.592800pt;}
.y1d{bottom:513.695467pt;}
.y4{bottom:513.700933pt;}
.yc5{bottom:517.700933pt;}
.y113{bottom:517.763867pt;}
.yed{bottom:520.000933pt;}
.ydd{bottom:521.227600pt;}
.y95{bottom:521.700800pt;}
.ybb{bottom:525.700933pt;}
.y64{bottom:533.348800pt;}
.y4c{bottom:533.466133pt;}
.y34{bottom:533.583467pt;}
.y7c{bottom:533.598133pt;}
.y1c{bottom:533.700800pt;}
.yc4{bottom:533.700933pt;}
.y112{bottom:533.763867pt;}
.yec{bottom:536.000933pt;}
.ydc{bottom:537.227600pt;}
.y13{bottom:541.700800pt;}
.y111{bottom:549.763867pt;}
.yeb{bottom:552.000933pt;}
.ydb{bottom:553.227600pt;}
.yba{bottom:557.700933pt;}
.y1b{bottom:565.700800pt;}
.y110{bottom:565.763867pt;}
.yda{bottom:569.227600pt;}
.yb9{bottom:573.700933pt;}
.y10f{bottom:581.763867pt;}
.yd9{bottom:585.227600pt;}
.y12{bottom:597.700800pt;}
.yb8{bottom:597.700933pt;}
.y10e{bottom:597.763867pt;}
.yd8{bottom:601.227600pt;}
.yb7{bottom:613.700933pt;}
.y10d{bottom:613.763867pt;}
.yd7{bottom:617.227600pt;}
.y10c{bottom:629.763867pt;}
.yd6{bottom:633.227600pt;}
.y10b{bottom:645.763867pt;}
.yd5{bottom:649.227600pt;}
.y11{bottom:653.700800pt;}
.y10a{bottom:661.763867pt;}
.yd4{bottom:665.227600pt;}
.y109{bottom:677.763867pt;}
.yd3{bottom:681.227600pt;}
.y108{bottom:693.763867pt;}
.yd2{bottom:697.227600pt;}
.y8{bottom:699.785725pt;}
.yb{bottom:699.793193pt;}
.y10{bottom:709.700800pt;}
.y107{bottom:709.763867pt;}
.y106{bottom:725.763867pt;}
.ya{bottom:735.592797pt;}
.y91{bottom:737.700800pt;}
.y105{bottom:741.763867pt;}
.y94{bottom:749.707467pt;}
.y7{bottom:756.312533pt;}
.y104{bottom:757.763867pt;}
.yf{bottom:765.700800pt;}
.y9{bottom:771.392400pt;}
.y93{bottom:777.700800pt;}
.h12{height:16.242987pt;}
.h2{height:26.506667pt;}
.he{height:40.533333pt;}
.h13{height:44.000000pt;}
.h14{height:47.466667pt;}
.hd{height:49.226667pt;}
.h10{height:50.666667pt;}
.h9{height:54.149333pt;}
.h8{height:56.800000pt;}
.h7{height:60.586667pt;}
.hc{height:83.685333pt;}
.hb{height:86.133333pt;}
.h3{height:96.266667pt;}
.h6{height:113.600000pt;}
.h5{height:114.606987pt;}
.hf{height:152.000000pt;}
.h11{height:189.228000pt;}
.h4{height:200.561973pt;}
.ha{height:227.200000pt;}
.h15{height:453.794667pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w2{width:793.700000pt;}
.w3{width:829.606667pt;}
.w1{width:1814.000000pt;}
.w0{width:1814.173333pt;}
.x22{left:-520.953067pt;}
.x28{left:-518.118267pt;}
.x1c{left:-511.504267pt;}
.x1d{left:-0.944533pt;}
.x0{left:0.000000pt;}
.x23{left:1.890267pt;}
.x17{left:8.504267pt;}
.x1f{left:10.388800pt;}
.x19{left:19.837600pt;}
.x10{left:32.126000pt;}
.x9{left:34.960533pt;}
.x7{left:37.795333pt;}
.x24{left:39.684933pt;}
.x1{left:41.177067pt;}
.x18{left:46.298933pt;}
.x25{left:51.018267pt;}
.x11{left:60.475333pt;}
.xf{left:75.591200pt;}
.x1e{left:171.315333pt;}
.x6{left:198.935467pt;}
.x12{left:405.699200pt;}
.x20{left:414.802133pt;}
.x1a{left:424.250933pt;}
.x21{left:426.135467pt;}
.x13{left:428.379200pt;}
.x1b{left:435.584267pt;}
.xa{left:440.321867pt;}
.x26{left:455.431600pt;}
.x27{left:466.764933pt;}
.xb{left:478.117867pt;}
.x4{left:982.677067pt;}
.xc{left:1020.476533pt;}
.x8{left:1063.235333pt;}
.x16{left:1351.242267pt;}
.xd{left:1385.207200pt;}
.x14{left:1421.737333pt;}
.xe{left:1423.003200pt;}
.x15{left:1441.918667pt;}
.x2{left:1534.667600pt;}
.x3{left:1601.902267pt;}
.x5{left:1629.415266pt;}
}




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