
    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_008f3eaa5d08cfba39ecddc4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.263000;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_b1730bcd2f60e623de42df19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.264000;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_8d1454c668c815570e42717e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.267000;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_e12219c2a1ae4f3718a14e64.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.267000;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_21d21d2994a23287129ed304.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.264000;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_415cfc21bac20e69de480ad1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.263000;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_3acff9059742a9727ef143d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.144000;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_6430687887883d1911d77da7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.138000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.239359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239359,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.239678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239678,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.239828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239828,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.239863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239863,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.240106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240106,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.241191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241191,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.241372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241372,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.242113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242113,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.243038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243038,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.243113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243113,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244631,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245163,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246553,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247831,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249381,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.251077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.257472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257472,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.261422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261422,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-51.000000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-35.910000px;}
.ls1e{letter-spacing:-1.200000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.480000px;}
.ls18{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.240000px;}
.ls3{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.240000px;}
.ls20{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.394800px;}
.ls1{letter-spacing:0.450000px;}
.lsc{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.543600px;}
.ls7{letter-spacing:0.899400px;}
.ls2{letter-spacing:0.900000px;}
.ls10{letter-spacing:0.959422px;}
.ls14{letter-spacing:0.960000px;}
.ls5{letter-spacing:1.050000px;}
.ls0{letter-spacing:1.125000px;}
.ls8{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.350000px;}
.ls6{letter-spacing:1.800000px;}
.lse{letter-spacing:1.950000px;}
.ls17{letter-spacing:2.100000px;}
.ls1b{letter-spacing:2.158200px;}
.lsf{letter-spacing:2.250000px;}
.ls1a{letter-spacing:2.550000px;}
.lsd{letter-spacing:2.700000px;}
.lsb{letter-spacing:3.360000px;}
.ls1f{letter-spacing:4.200000px;}
.lsa{letter-spacing:7.200000px;}
.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;}
}
.ws10{word-spacing:-18.306000px;}
.wsf{word-spacing:-15.255000px;}
.wse4{word-spacing:-15.024000px;}
.wsbb{word-spacing:-14.784000px;}
.wsba{word-spacing:-14.064000px;}
.wsb7{word-spacing:-13.860000px;}
.wsbc{word-spacing:-13.584000px;}
.wsb9{word-spacing:-13.221000px;}
.ws62{word-spacing:-12.516000px;}
.ws5{word-spacing:-12.204000px;}
.ws4{word-spacing:-11.988000px;}
.wse8{word-spacing:-11.448000px;}
.ws34{word-spacing:-10.944000px;}
.wsa{word-spacing:-10.404000px;}
.ws59{word-spacing:-4.047000px;}
.ws8c{word-spacing:-3.933000px;}
.ws88{word-spacing:-3.876000px;}
.wsf2{word-spacing:-3.816000px;}
.wsd{word-spacing:-3.696000px;}
.ws8b{word-spacing:-3.477000px;}
.wscc{word-spacing:-3.072000px;}
.wscd{word-spacing:-3.024000px;}
.wscb{word-spacing:-2.976000px;}
.wsa2{word-spacing:-2.736000px;}
.ws8a{word-spacing:-2.622000px;}
.wsda{word-spacing:-2.592000px;}
.wse6{word-spacing:-2.550000px;}
.wsab{word-spacing:-2.394000px;}
.wsf1{word-spacing:-2.232000px;}
.ws4f{word-spacing:-2.166000px;}
.wsf4{word-spacing:-2.160000px;}
.wsae{word-spacing:-2.052000px;}
.wsb{word-spacing:-1.950000px;}
.ws1f{word-spacing:-1.920000px;}
.ws89{word-spacing:-1.881000px;}
.wsa4{word-spacing:-1.824000px;}
.ws6{word-spacing:-1.800000px;}
.ws9e{word-spacing:-1.767000px;}
.wse1{word-spacing:-1.728000px;}
.ws55{word-spacing:-1.710000px;}
.ws99{word-spacing:-1.653000px;}
.wse{word-spacing:-1.620000px;}
.ws6d{word-spacing:-1.539000px;}
.wsce{word-spacing:-1.488000px;}
.ws6e{word-spacing:-1.482000px;}
.wsac{word-spacing:-1.425000px;}
.ws6a{word-spacing:-1.350000px;}
.wse7{word-spacing:-1.344000px;}
.ws48{word-spacing:-1.311000px;}
.ws31{word-spacing:-1.254000px;}
.wsdb{word-spacing:-1.248000px;}
.wsa5{word-spacing:-1.197000px;}
.ws30{word-spacing:-1.140000px;}
.ws0{word-spacing:-1.125000px;}
.wsa8{word-spacing:-1.083000px;}
.ws3{word-spacing:-1.050000px;}
.wsa7{word-spacing:-1.026000px;}
.ws13{word-spacing:-0.960000px;}
.ws12{word-spacing:-0.912000px;}
.ws8{word-spacing:-0.900000px;}
.wscf{word-spacing:-0.864000px;}
.ws3a{word-spacing:-0.855000px;}
.ws5f{word-spacing:-0.798000px;}
.ws49{word-spacing:-0.741000px;}
.wsa1{word-spacing:-0.684000px;}
.wsc4{word-spacing:-0.672000px;}
.ws40{word-spacing:-0.627000px;}
.ws3d{word-spacing:-0.570000px;}
.ws9c{word-spacing:-0.513000px;}
.ws39{word-spacing:-0.456000px;}
.ws46{word-spacing:-0.399000px;}
.wsf6{word-spacing:-0.360000px;}
.ws7f{word-spacing:-0.285000px;}
.wse5{word-spacing:-0.240000px;}
.ws6c{word-spacing:-0.228000px;}
.wsb8{word-spacing:-0.180000px;}
.ws6f{word-spacing:-0.171000px;}
.ws3f{word-spacing:-0.114000px;}
.wsaf{word-spacing:-0.057000px;}
.wsca{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws47{word-spacing:0.057000px;}
.wsa6{word-spacing:0.114000px;}
.ws27{word-spacing:0.228000px;}
.ws11{word-spacing:0.240000px;}
.ws58{word-spacing:0.285000px;}
.ws26{word-spacing:0.342000px;}
.ws22{word-spacing:0.384000px;}
.ws9d{word-spacing:0.399000px;}
.ws84{word-spacing:0.420000px;}
.ws85{word-spacing:0.456000px;}
.wsdc{word-spacing:0.480000px;}
.ws8d{word-spacing:0.513000px;}
.wsd8{word-spacing:0.528000px;}
.ws21{word-spacing:0.540000px;}
.ws2b{word-spacing:0.570000px;}
.wsc6{word-spacing:0.624000px;}
.ws65{word-spacing:0.627000px;}
.ws1c{word-spacing:0.672000px;}
.ws64{word-spacing:0.684000px;}
.ws14{word-spacing:0.720000px;}
.ws9b{word-spacing:0.741000px;}
.ws96{word-spacing:0.798000px;}
.ws41{word-spacing:0.855000px;}
.ws9{word-spacing:0.900000px;}
.wsa9{word-spacing:0.912000px;}
.wsb5{word-spacing:0.969000px;}
.ws23{word-spacing:1.026000px;}
.wse0{word-spacing:1.056000px;}
.ws73{word-spacing:1.083000px;}
.wsc3{word-spacing:1.104000px;}
.ws32{word-spacing:1.140000px;}
.ws86{word-spacing:1.197000px;}
.wsd7{word-spacing:1.200000px;}
.ws4a{word-spacing:1.311000px;}
.ws51{word-spacing:1.368000px;}
.ws15{word-spacing:1.392000px;}
.ws7e{word-spacing:1.425000px;}
.wsd2{word-spacing:1.440000px;}
.wsb4{word-spacing:1.482000px;}
.wsde{word-spacing:1.488000px;}
.ws75{word-spacing:1.539000px;}
.ws54{word-spacing:1.596000px;}
.ws37{word-spacing:1.653000px;}
.ws68{word-spacing:1.710000px;}
.wsd4{word-spacing:1.728000px;}
.ws80{word-spacing:1.824000px;}
.wsc9{word-spacing:1.872000px;}
.wsa0{word-spacing:1.881000px;}
.ws76{word-spacing:1.938000px;}
.ws24{word-spacing:2.052000px;}
.ws77{word-spacing:2.109000px;}
.ws56{word-spacing:2.166000px;}
.ws98{word-spacing:2.280000px;}
.ws2a{word-spacing:2.337000px;}
.ws35{word-spacing:2.394000px;}
.ws94{word-spacing:2.451000px;}
.ws7b{word-spacing:2.508000px;}
.ws60{word-spacing:2.565000px;}
.wsf3{word-spacing:2.592000px;}
.ws63{word-spacing:2.622000px;}
.ws5b{word-spacing:2.679000px;}
.ws25{word-spacing:2.793000px;}
.ws78{word-spacing:2.850000px;}
.wsc7{word-spacing:2.880000px;}
.ws90{word-spacing:2.907000px;}
.ws74{word-spacing:2.964000px;}
.ws6b{word-spacing:3.021000px;}
.ws67{word-spacing:3.078000px;}
.wsee{word-spacing:3.096000px;}
.ws3b{word-spacing:3.135000px;}
.wsd9{word-spacing:3.168000px;}
.ws9a{word-spacing:3.192000px;}
.ws81{word-spacing:3.249000px;}
.ws66{word-spacing:3.306000px;}
.wsef{word-spacing:3.312000px;}
.ws83{word-spacing:3.420000px;}
.ws7d{word-spacing:3.591000px;}
.ws36{word-spacing:3.648000px;}
.ws1a{word-spacing:3.744000px;}
.ws3e{word-spacing:3.762000px;}
.ws8e{word-spacing:3.819000px;}
.ws82{word-spacing:3.876000px;}
.ws95{word-spacing:3.933000px;}
.wse2{word-spacing:3.936000px;}
.ws45{word-spacing:4.104000px;}
.ws9f{word-spacing:4.161000px;}
.wsb1{word-spacing:4.218000px;}
.ws70{word-spacing:4.275000px;}
.wsc{word-spacing:4.284000px;}
.wsc5{word-spacing:4.368000px;}
.wse3{word-spacing:4.416000px;}
.ws71{word-spacing:4.446000px;}
.ws79{word-spacing:4.503000px;}
.ws28{word-spacing:4.560000px;}
.ws2c{word-spacing:4.617000px;}
.wsd6{word-spacing:4.656000px;}
.ws97{word-spacing:4.674000px;}
.wsd0{word-spacing:4.704000px;}
.wsd5{word-spacing:4.752000px;}
.ws57{word-spacing:4.788000px;}
.wsd1{word-spacing:4.800000px;}
.wsd3{word-spacing:4.848000px;}
.wsb2{word-spacing:4.959000px;}
.ws42{word-spacing:5.016000px;}
.ws50{word-spacing:5.073000px;}
.ws61{word-spacing:5.244000px;}
.ws4b{word-spacing:5.358000px;}
.ws33{word-spacing:5.415000px;}
.ws20{word-spacing:5.424000px;}
.ws52{word-spacing:5.472000px;}
.ws4d{word-spacing:5.586000px;}
.ws1b{word-spacing:5.712000px;}
.ws5c{word-spacing:5.757000px;}
.wsc0{word-spacing:5.760000px;}
.ws69{word-spacing:5.814000px;}
.ws38{word-spacing:5.871000px;}
.wsc8{word-spacing:5.904000px;}
.wsb6{word-spacing:5.928000px;}
.wsb3{word-spacing:5.985000px;}
.ws44{word-spacing:6.042000px;}
.wsdf{word-spacing:6.048000px;}
.ws92{word-spacing:6.099000px;}
.ws5a{word-spacing:6.213000px;}
.wsea{word-spacing:6.264000px;}
.ws87{word-spacing:6.327000px;}
.ws3c{word-spacing:6.384000px;}
.wsa3{word-spacing:6.441000px;}
.ws53{word-spacing:6.498000px;}
.wsec{word-spacing:6.552000px;}
.ws2d{word-spacing:6.555000px;}
.ws18{word-spacing:6.624000px;}
.ws8f{word-spacing:6.783000px;}
.wsaa{word-spacing:6.954000px;}
.ws7c{word-spacing:7.011000px;}
.ws2e{word-spacing:7.296000px;}
.ws5e{word-spacing:7.410000px;}
.ws4e{word-spacing:7.581000px;}
.ws29{word-spacing:7.638000px;}
.ws5d{word-spacing:7.695000px;}
.ws1d{word-spacing:7.776000px;}
.wsbd{word-spacing:8.016000px;}
.wse9{word-spacing:8.208000px;}
.ws43{word-spacing:8.436000px;}
.ws1e{word-spacing:8.736000px;}
.ws4c{word-spacing:8.835000px;}
.ws93{word-spacing:8.892000px;}
.ws91{word-spacing:9.120000px;}
.ws19{word-spacing:9.600000px;}
.wsf5{word-spacing:9.648000px;}
.ws2f{word-spacing:9.747000px;}
.ws7a{word-spacing:10.317000px;}
.wsbf{word-spacing:10.512000px;}
.wsb0{word-spacing:11.286000px;}
.wsad{word-spacing:11.343000px;}
.wseb{word-spacing:11.448000px;}
.wsdd{word-spacing:11.664000px;}
.wsf0{word-spacing:12.096000px;}
.wsed{word-spacing:12.168000px;}
.wsc1{word-spacing:13.200000px;}
.ws72{word-spacing:13.509000px;}
.ws16{word-spacing:14.592000px;}
.wsbe{word-spacing:15.072000px;}
.wsc2{word-spacing:15.504000px;}
.ws17{word-spacing:19.488000px;}
.ws2{word-spacing:35.910000px;}
.ws7{word-spacing:73.044000px;}
._14{margin-left:-1950.428400px;}
._4{margin-left:-73.037400px;}
._f{margin-left:-8.331000px;}
._b{margin-left:-6.480000px;}
._7{margin-left:-4.506000px;}
._1{margin-left:-3.360000px;}
._5{margin-left:-2.274600px;}
._2{margin-left:-1.056000px;}
._0{width:1.122600px;}
._6{width:2.160000px;}
._d{width:3.240000px;}
._e{width:5.760000px;}
._11{width:7.761000px;}
._12{width:11.460000px;}
._13{width:15.042600px;}
._10{width:16.104000px;}
._3{width:73.044000px;}
._9{width:1347.246000px;}
._c{width:1453.098000px;}
._a{width:1593.270000px;}
._8{width:1615.110000px;}
.fc4{color:transparent;}
.fc3{color:rgb(79,76,77);}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:36.000000px;}
.fs7{font-size:39.000000px;}
.fs2{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs8{font-size:144.000000px;}
.fs1{font-size:179.550000px;}
.y0{bottom:0.000000px;}
.y68{bottom:82.913400px;}
.y12f{bottom:94.818900px;}
.ya0{bottom:94.913400px;}
.y67{bottom:100.913400px;}
.y12e{bottom:106.818900px;}
.yb1{bottom:109.913400px;}
.y9f{bottom:115.913400px;}
.y66{bottom:118.913400px;}
.y109{bottom:120.393900px;}
.yb0{bottom:124.913400px;}
.y108{bottom:136.893900px;}
.y65{bottom:136.913400px;}
.yaf{bottom:139.913400px;}
.ye3{bottom:148.632150px;}
.y107{bottom:153.393900px;}
.y64{bottom:154.913400px;}
.y9e{bottom:157.913400px;}
.ye2{bottom:163.632150px;}
.y106{bottom:169.893900px;}
.yae{bottom:169.913400px;}
.y63{bottom:172.913400px;}
.ye1{bottom:178.632150px;}
.y9d{bottom:178.913400px;}
.yad{bottom:184.913400px;}
.y105{bottom:186.393900px;}
.y62{bottom:190.913400px;}
.y45{bottom:192.413400px;}
.ye0{bottom:193.632150px;}
.y9c{bottom:199.913400px;}
.y104{bottom:202.893900px;}
.ydf{bottom:208.632150px;}
.yb3{bottom:214.913400px;}
.y103{bottom:219.393900px;}
.y9b{bottom:220.913400px;}
.yde{bottom:223.632150px;}
.y61{bottom:226.913400px;}
.yb2{bottom:229.913400px;}
.y102{bottom:235.893900px;}
.ydd{bottom:238.632150px;}
.y9a{bottom:241.913400px;}
.y60{bottom:244.913400px;}
.y3c{bottom:248.968650px;}
.y101{bottom:252.393900px;}
.ydc{bottom:253.632150px;}
.y34{bottom:262.468650px;}
.y5f{bottom:262.913400px;}
.ydb{bottom:268.632150px;}
.yff{bottom:268.893900px;}
.y33{bottom:275.968650px;}
.y79{bottom:280.013400px;}
.y5e{bottom:280.913400px;}
.yda{bottom:283.632150px;}
.y99{bottom:283.913400px;}
.yfe{bottom:285.393900px;}
.y32{bottom:289.468650px;}
.y78{bottom:293.513400px;}
.yd9{bottom:298.632150px;}
.y5d{bottom:298.913400px;}
.yfd{bottom:301.893900px;}
.y31{bottom:302.968650px;}
.y98{bottom:304.913400px;}
.y77{bottom:307.013400px;}
.yd8{bottom:313.632150px;}
.y76{bottom:314.513400px;}
.y30{bottom:316.468650px;}
.y5c{bottom:316.913400px;}
.yfc{bottom:318.393900px;}
.y44{bottom:318.413400px;}
.ya1{bottom:325.041150px;}
.y97{bottom:325.913400px;}
.yd7{bottom:328.632150px;}
.y7c{bottom:329.494800px;}
.y2f{bottom:329.968650px;}
.y7d{bottom:333.868650px;}
.yfb{bottom:334.893900px;}
.y2e{bottom:343.468650px;}
.yd6{bottom:343.632150px;}
.y75{bottom:344.513400px;}
.yac{bottom:345.649500px;}
.y96{bottom:346.913400px;}
.yab{bottom:347.719500px;}
.yfa{bottom:351.393900px;}
.y5b{bottom:352.913400px;}
.y7e{bottom:355.058550px;}
.y3b{bottom:356.968650px;}
.y74{bottom:358.013400px;}
.yd5{bottom:358.632150px;}
.yf9{bottom:367.893900px;}
.y95{bottom:367.913400px;}
.y2d{bottom:370.468650px;}
.y5a{bottom:370.913400px;}
.y73{bottom:371.513400px;}
.y43{bottom:372.413400px;}
.yd4{bottom:373.632150px;}
.y72{bottom:379.013400px;}
.y3a{bottom:383.968650px;}
.yf8{bottom:384.393900px;}
.yd3{bottom:388.632150px;}
.y94{bottom:388.913400px;}
.y39{bottom:397.468650px;}
.yf7{bottom:400.893900px;}
.yd2{bottom:403.632150px;}
.y59{bottom:406.913400px;}
.y93{bottom:409.913400px;}
.y38{bottom:410.968650px;}
.yf6{bottom:417.393900px;}
.yd1{bottom:418.632150px;}
.y11b{bottom:419.313600px;}
.y37{bottom:424.468650px;}
.y58{bottom:424.913400px;}
.y7b{bottom:430.913400px;}
.y10a{bottom:432.574950px;}
.yd0{bottom:433.632150px;}
.yf5{bottom:433.893900px;}
.y2c{bottom:437.968650px;}
.y57{bottom:442.913400px;}
.ycf{bottom:448.632150px;}
.yf4{bottom:450.393900px;}
.y2b{bottom:451.468650px;}
.y92{bottom:451.913400px;}
.y56{bottom:460.913400px;}
.y42{bottom:462.413400px;}
.yce{bottom:463.632150px;}
.y2a{bottom:464.968650px;}
.yf3{bottom:466.893900px;}
.y7a{bottom:472.913400px;}
.y29{bottom:478.468650px;}
.ycd{bottom:478.632150px;}
.yf2{bottom:483.393900px;}
.y28{bottom:491.968650px;}
.ycc{bottom:493.632150px;}
.y91{bottom:493.913400px;}
.y11a{bottom:494.363400px;}
.y12d{bottom:495.563550px;}
.y55{bottom:496.913400px;}
.y100{bottom:499.893900px;}
.y27{bottom:505.468650px;}
.ycb{bottom:508.632150px;}
.y119{bottom:510.863400px;}
.y54{bottom:514.913400px;}
.yf1{bottom:516.393900px;}
.y12c{bottom:518.063550px;}
.y26{bottom:518.968650px;}
.yca{bottom:523.632150px;}
.y118{bottom:527.363400px;}
.y25{bottom:532.468650px;}
.yf0{bottom:532.893900px;}
.y53{bottom:532.913400px;}
.y90{bottom:535.913400px;}
.yc9{bottom:538.632150px;}
.y12b{bottom:540.563550px;}
.y71{bottom:543.413400px;}
.y117{bottom:543.863400px;}
.y24{bottom:545.968650px;}
.yef{bottom:549.393900px;}
.y52{bottom:550.913400px;}
.yc8{bottom:553.632150px;}
.yaa{bottom:556.913400px;}
.y23{bottom:559.468650px;}
.y116{bottom:560.363400px;}
.y12a{bottom:563.063550px;}
.yee{bottom:565.893900px;}
.yc7{bottom:568.632150px;}
.y51{bottom:568.913400px;}
.y22{bottom:572.968650px;}
.y115{bottom:576.863400px;}
.ya9{bottom:577.913400px;}
.yed{bottom:582.393900px;}
.yc6{bottom:583.632150px;}
.y129{bottom:585.563550px;}
.y21{bottom:586.468650px;}
.y50{bottom:586.913400px;}
.y41{bottom:588.413400px;}
.y10f{bottom:594.394650px;}
.y70{bottom:594.413400px;}
.yc5{bottom:598.632150px;}
.yec{bottom:598.893900px;}
.ya8{bottom:598.913400px;}
.y20{bottom:599.968650px;}
.y128{bottom:608.063550px;}
.y10e{bottom:610.894650px;}
.y114{bottom:611.513400px;}
.y1f{bottom:613.468650px;}
.yc4{bottom:613.632150px;}
.yeb{bottom:615.393900px;}
.y8f{bottom:619.632150px;}
.ya7{bottom:619.913400px;}
.y4f{bottom:622.913400px;}
.y1e{bottom:626.968650px;}
.yc3{bottom:628.632150px;}
.y127{bottom:630.563550px;}
.yea{bottom:631.893900px;}
.y8e{bottom:636.132150px;}
.y1d{bottom:640.468650px;}
.y4e{bottom:640.913400px;}
.yc2{bottom:643.632150px;}
.y10d{bottom:643.894650px;}
.y113{bottom:644.513400px;}
.ye9{bottom:648.393900px;}
.y8d{bottom:652.632150px;}
.y126{bottom:653.063550px;}
.y1c{bottom:653.968650px;}
.yc1{bottom:658.632150px;}
.y4d{bottom:658.913400px;}
.y10c{bottom:660.394650px;}
.y112{bottom:661.013400px;}
.y6f{bottom:661.913400px;}
.ye8{bottom:664.893900px;}
.y1b{bottom:667.468650px;}
.y8c{bottom:669.132150px;}
.yc0{bottom:673.632150px;}
.y125{bottom:675.563550px;}
.y4c{bottom:676.913400px;}
.y111{bottom:677.513400px;}
.y1a{bottom:680.968650px;}
.ye7{bottom:681.393900px;}
.ya6{bottom:682.913400px;}
.y8b{bottom:685.632150px;}
.ybf{bottom:688.632150px;}
.y10b{bottom:693.394650px;}
.y110{bottom:694.013400px;}
.y19{bottom:694.468650px;}
.y4b{bottom:694.913400px;}
.y40{bottom:696.413400px;}
.ye6{bottom:697.893900px;}
.y124{bottom:698.063550px;}
.y8a{bottom:702.132150px;}
.ybe{bottom:703.632150px;}
.y6e{bottom:703.913400px;}
.y36{bottom:707.968650px;}
.y6{bottom:709.263750px;}
.ye5{bottom:714.393900px;}
.y89{bottom:718.632150px;}
.y123{bottom:720.563550px;}
.y18{bottom:721.468650px;}
.ya5{bottom:724.913400px;}
.y5{bottom:725.013750px;}
.y4a{bottom:730.913400px;}
.y3f{bottom:732.413400px;}
.ybd{bottom:733.632150px;}
.y17{bottom:734.968650px;}
.y88{bottom:735.132150px;}
.y4{bottom:740.763750px;}
.y122{bottom:743.063550px;}
.y6d{bottom:745.913400px;}
.y16{bottom:748.468650px;}
.ybc{bottom:748.632150px;}
.yf{bottom:749.250900px;}
.y87{bottom:751.632150px;}
.y15{bottom:761.968650px;}
.ybb{bottom:763.632150px;}
.ye{bottom:764.250900px;}
.y121{bottom:765.563550px;}
.y49{bottom:766.913400px;}
.y86{bottom:768.132150px;}
.y3{bottom:772.263750px;}
.y14{bottom:775.468650px;}
.yba{bottom:778.632150px;}
.yd{bottom:779.250900px;}
.y85{bottom:784.632150px;}
.y69{bottom:784.913400px;}
.y3e{bottom:786.413400px;}
.y6c{bottom:787.913400px;}
.y2{bottom:788.013750px;}
.y120{bottom:788.063550px;}
.y13{bottom:788.968650px;}
.y48{bottom:789.413400px;}
.yb9{bottom:793.632150px;}
.y84{bottom:801.132150px;}
.y12{bottom:802.468650px;}
.y1{bottom:803.763750px;}
.yb8{bottom:808.632150px;}
.ya4{bottom:808.913400px;}
.yc{bottom:809.250900px;}
.y11f{bottom:810.563550px;}
.y35{bottom:815.968650px;}
.y83{bottom:817.632150px;}
.y47{bottom:820.913400px;}
.y3d{bottom:822.413400px;}
.yb7{bottom:823.632150px;}
.yb{bottom:824.250900px;}
.y11{bottom:829.468650px;}
.y6b{bottom:829.913400px;}
.ye4{bottom:833.032350px;}
.y11e{bottom:833.063550px;}
.y82{bottom:834.132150px;}
.yb6{bottom:838.632150px;}
.y6a{bottom:839.155200px;}
.y10{bottom:842.968650px;}
.y81{bottom:850.632150px;}
.ya3{bottom:850.913400px;}
.yb5{bottom:853.632150px;}
.ya{bottom:854.250900px;}
.y11d{bottom:855.563550px;}
.y7{bottom:855.881250px;}
.y46{bottom:856.913400px;}
.y80{bottom:867.132150px;}
.yb4{bottom:868.632150px;}
.y9{bottom:869.250900px;}
.ya2{bottom:871.913400px;}
.y11c{bottom:878.063550px;}
.y7f{bottom:883.632150px;}
.y8{bottom:884.250900px;}
.he{height:35.820000px;}
.h5{height:36.072000px;}
.h6{height:36.108000px;}
.ha{height:38.805000px;}
.h9{height:41.790000px;}
.h10{height:42.000000px;}
.h11{height:42.096000px;}
.h4{height:42.126000px;}
.h2{height:44.775000px;}
.hf{height:45.090000px;}
.h13{height:45.135000px;}
.hd{height:47.760000px;}
.h15{height:48.144000px;}
.h12{height:49.989000px;}
.h14{height:51.102000px;}
.h8{height:54.108000px;}
.h7{height:72.144000px;}
.h16{height:72.216000px;}
.hc{height:83.580000px;}
.hb{height:144.288000px;}
.h3{height:179.909100px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x19{left:29.980200px;}
.x20{left:35.980200px;}
.xe{left:41.943450px;}
.x21{left:47.980200px;}
.x1a{left:53.980200px;}
.xc{left:63.779550px;}
.x3{left:72.283500px;}
.x7{left:76.535400px;}
.x1f{left:93.543300px;}
.xf{left:94.624500px;}
.x8{left:97.795350px;}
.x11{left:107.351100px;}
.x10{left:111.184350px;}
.x14{left:113.525700px;}
.x23{left:114.803100px;}
.x9{left:119.055150px;}
.x15{left:121.526850px;}
.x22{left:136.063050px;}
.x18{left:140.057700px;}
.x13{left:152.655000px;}
.x27{left:154.167300px;}
.x12{left:160.719150px;}
.x25{left:193.096200px;}
.x16{left:220.981350px;}
.x28{left:228.383400px;}
.x26{left:254.307750px;}
.x17{left:261.696600px;}
.xd{left:297.523200px;}
.x1{left:325.844100px;}
.x1c{left:327.401550px;}
.x4{left:331.653450px;}
.x24{left:348.661350px;}
.x5{left:352.913400px;}
.x6{left:374.173200px;}
.x1d{left:378.051300px;}
.x1e{left:381.700800px;}
.x29{left:413.716500px;}
.x2{left:456.634200px;}
.xb{left:535.764300px;}
.xa{left:542.266650px;}
.x1b{left:603.203400px;}
@media print{
.v1{vertical-align:-45.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-31.920000pt;}
.ls1e{letter-spacing:-1.066667pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls18{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.213333pt;}
.ls20{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.350933pt;}
.ls1{letter-spacing:0.400000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.483200pt;}
.ls7{letter-spacing:0.799467pt;}
.ls2{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.852820pt;}
.ls14{letter-spacing:0.853333pt;}
.ls5{letter-spacing:0.933333pt;}
.ls0{letter-spacing:1.000000pt;}
.ls8{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.200000pt;}
.ls6{letter-spacing:1.600000pt;}
.lse{letter-spacing:1.733333pt;}
.ls17{letter-spacing:1.866667pt;}
.ls1b{letter-spacing:1.918400pt;}
.lsf{letter-spacing:2.000000pt;}
.ls1a{letter-spacing:2.266667pt;}
.lsd{letter-spacing:2.400000pt;}
.lsb{letter-spacing:2.986667pt;}
.ls1f{letter-spacing:3.733333pt;}
.lsa{letter-spacing:6.400000pt;}
.ws10{word-spacing:-16.272000pt;}
.wsf{word-spacing:-13.560000pt;}
.wse4{word-spacing:-13.354667pt;}
.wsbb{word-spacing:-13.141333pt;}
.wsba{word-spacing:-12.501333pt;}
.wsb7{word-spacing:-12.320000pt;}
.wsbc{word-spacing:-12.074667pt;}
.wsb9{word-spacing:-11.752000pt;}
.ws62{word-spacing:-11.125333pt;}
.ws5{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.656000pt;}
.wse8{word-spacing:-10.176000pt;}
.ws34{word-spacing:-9.728000pt;}
.wsa{word-spacing:-9.248000pt;}
.ws59{word-spacing:-3.597333pt;}
.ws8c{word-spacing:-3.496000pt;}
.ws88{word-spacing:-3.445333pt;}
.wsf2{word-spacing:-3.392000pt;}
.wsd{word-spacing:-3.285333pt;}
.ws8b{word-spacing:-3.090667pt;}
.wscc{word-spacing:-2.730667pt;}
.wscd{word-spacing:-2.688000pt;}
.wscb{word-spacing:-2.645333pt;}
.wsa2{word-spacing:-2.432000pt;}
.ws8a{word-spacing:-2.330667pt;}
.wsda{word-spacing:-2.304000pt;}
.wse6{word-spacing:-2.266667pt;}
.wsab{word-spacing:-2.128000pt;}
.wsf1{word-spacing:-1.984000pt;}
.ws4f{word-spacing:-1.925333pt;}
.wsf4{word-spacing:-1.920000pt;}
.wsae{word-spacing:-1.824000pt;}
.wsb{word-spacing:-1.733333pt;}
.ws1f{word-spacing:-1.706667pt;}
.ws89{word-spacing:-1.672000pt;}
.wsa4{word-spacing:-1.621333pt;}
.ws6{word-spacing:-1.600000pt;}
.ws9e{word-spacing:-1.570667pt;}
.wse1{word-spacing:-1.536000pt;}
.ws55{word-spacing:-1.520000pt;}
.ws99{word-spacing:-1.469333pt;}
.wse{word-spacing:-1.440000pt;}
.ws6d{word-spacing:-1.368000pt;}
.wsce{word-spacing:-1.322667pt;}
.ws6e{word-spacing:-1.317333pt;}
.wsac{word-spacing:-1.266667pt;}
.ws6a{word-spacing:-1.200000pt;}
.wse7{word-spacing:-1.194667pt;}
.ws48{word-spacing:-1.165333pt;}
.ws31{word-spacing:-1.114667pt;}
.wsdb{word-spacing:-1.109333pt;}
.wsa5{word-spacing:-1.064000pt;}
.ws30{word-spacing:-1.013333pt;}
.ws0{word-spacing:-1.000000pt;}
.wsa8{word-spacing:-0.962667pt;}
.ws3{word-spacing:-0.933333pt;}
.wsa7{word-spacing:-0.912000pt;}
.ws13{word-spacing:-0.853333pt;}
.ws12{word-spacing:-0.810667pt;}
.ws8{word-spacing:-0.800000pt;}
.wscf{word-spacing:-0.768000pt;}
.ws3a{word-spacing:-0.760000pt;}
.ws5f{word-spacing:-0.709333pt;}
.ws49{word-spacing:-0.658667pt;}
.wsa1{word-spacing:-0.608000pt;}
.wsc4{word-spacing:-0.597333pt;}
.ws40{word-spacing:-0.557333pt;}
.ws3d{word-spacing:-0.506667pt;}
.ws9c{word-spacing:-0.456000pt;}
.ws39{word-spacing:-0.405333pt;}
.ws46{word-spacing:-0.354667pt;}
.wsf6{word-spacing:-0.320000pt;}
.ws7f{word-spacing:-0.253333pt;}
.wse5{word-spacing:-0.213333pt;}
.ws6c{word-spacing:-0.202667pt;}
.wsb8{word-spacing:-0.160000pt;}
.ws6f{word-spacing:-0.152000pt;}
.ws3f{word-spacing:-0.101333pt;}
.wsaf{word-spacing:-0.050667pt;}
.wsca{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws47{word-spacing:0.050667pt;}
.wsa6{word-spacing:0.101333pt;}
.ws27{word-spacing:0.202667pt;}
.ws11{word-spacing:0.213333pt;}
.ws58{word-spacing:0.253333pt;}
.ws26{word-spacing:0.304000pt;}
.ws22{word-spacing:0.341333pt;}
.ws9d{word-spacing:0.354667pt;}
.ws84{word-spacing:0.373333pt;}
.ws85{word-spacing:0.405333pt;}
.wsdc{word-spacing:0.426667pt;}
.ws8d{word-spacing:0.456000pt;}
.wsd8{word-spacing:0.469333pt;}
.ws21{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.506667pt;}
.wsc6{word-spacing:0.554667pt;}
.ws65{word-spacing:0.557333pt;}
.ws1c{word-spacing:0.597333pt;}
.ws64{word-spacing:0.608000pt;}
.ws14{word-spacing:0.640000pt;}
.ws9b{word-spacing:0.658667pt;}
.ws96{word-spacing:0.709333pt;}
.ws41{word-spacing:0.760000pt;}
.ws9{word-spacing:0.800000pt;}
.wsa9{word-spacing:0.810667pt;}
.wsb5{word-spacing:0.861333pt;}
.ws23{word-spacing:0.912000pt;}
.wse0{word-spacing:0.938667pt;}
.ws73{word-spacing:0.962667pt;}
.wsc3{word-spacing:0.981333pt;}
.ws32{word-spacing:1.013333pt;}
.ws86{word-spacing:1.064000pt;}
.wsd7{word-spacing:1.066667pt;}
.ws4a{word-spacing:1.165333pt;}
.ws51{word-spacing:1.216000pt;}
.ws15{word-spacing:1.237333pt;}
.ws7e{word-spacing:1.266667pt;}
.wsd2{word-spacing:1.280000pt;}
.wsb4{word-spacing:1.317333pt;}
.wsde{word-spacing:1.322667pt;}
.ws75{word-spacing:1.368000pt;}
.ws54{word-spacing:1.418667pt;}
.ws37{word-spacing:1.469333pt;}
.ws68{word-spacing:1.520000pt;}
.wsd4{word-spacing:1.536000pt;}
.ws80{word-spacing:1.621333pt;}
.wsc9{word-spacing:1.664000pt;}
.wsa0{word-spacing:1.672000pt;}
.ws76{word-spacing:1.722667pt;}
.ws24{word-spacing:1.824000pt;}
.ws77{word-spacing:1.874667pt;}
.ws56{word-spacing:1.925333pt;}
.ws98{word-spacing:2.026667pt;}
.ws2a{word-spacing:2.077333pt;}
.ws35{word-spacing:2.128000pt;}
.ws94{word-spacing:2.178667pt;}
.ws7b{word-spacing:2.229333pt;}
.ws60{word-spacing:2.280000pt;}
.wsf3{word-spacing:2.304000pt;}
.ws63{word-spacing:2.330667pt;}
.ws5b{word-spacing:2.381333pt;}
.ws25{word-spacing:2.482667pt;}
.ws78{word-spacing:2.533333pt;}
.wsc7{word-spacing:2.560000pt;}
.ws90{word-spacing:2.584000pt;}
.ws74{word-spacing:2.634667pt;}
.ws6b{word-spacing:2.685333pt;}
.ws67{word-spacing:2.736000pt;}
.wsee{word-spacing:2.752000pt;}
.ws3b{word-spacing:2.786667pt;}
.wsd9{word-spacing:2.816000pt;}
.ws9a{word-spacing:2.837333pt;}
.ws81{word-spacing:2.888000pt;}
.ws66{word-spacing:2.938667pt;}
.wsef{word-spacing:2.944000pt;}
.ws83{word-spacing:3.040000pt;}
.ws7d{word-spacing:3.192000pt;}
.ws36{word-spacing:3.242667pt;}
.ws1a{word-spacing:3.328000pt;}
.ws3e{word-spacing:3.344000pt;}
.ws8e{word-spacing:3.394667pt;}
.ws82{word-spacing:3.445333pt;}
.ws95{word-spacing:3.496000pt;}
.wse2{word-spacing:3.498667pt;}
.ws45{word-spacing:3.648000pt;}
.ws9f{word-spacing:3.698667pt;}
.wsb1{word-spacing:3.749333pt;}
.ws70{word-spacing:3.800000pt;}
.wsc{word-spacing:3.808000pt;}
.wsc5{word-spacing:3.882667pt;}
.wse3{word-spacing:3.925333pt;}
.ws71{word-spacing:3.952000pt;}
.ws79{word-spacing:4.002667pt;}
.ws28{word-spacing:4.053333pt;}
.ws2c{word-spacing:4.104000pt;}
.wsd6{word-spacing:4.138667pt;}
.ws97{word-spacing:4.154667pt;}
.wsd0{word-spacing:4.181333pt;}
.wsd5{word-spacing:4.224000pt;}
.ws57{word-spacing:4.256000pt;}
.wsd1{word-spacing:4.266667pt;}
.wsd3{word-spacing:4.309333pt;}
.wsb2{word-spacing:4.408000pt;}
.ws42{word-spacing:4.458667pt;}
.ws50{word-spacing:4.509333pt;}
.ws61{word-spacing:4.661333pt;}
.ws4b{word-spacing:4.762667pt;}
.ws33{word-spacing:4.813333pt;}
.ws20{word-spacing:4.821333pt;}
.ws52{word-spacing:4.864000pt;}
.ws4d{word-spacing:4.965333pt;}
.ws1b{word-spacing:5.077333pt;}
.ws5c{word-spacing:5.117333pt;}
.wsc0{word-spacing:5.120000pt;}
.ws69{word-spacing:5.168000pt;}
.ws38{word-spacing:5.218667pt;}
.wsc8{word-spacing:5.248000pt;}
.wsb6{word-spacing:5.269333pt;}
.wsb3{word-spacing:5.320000pt;}
.ws44{word-spacing:5.370667pt;}
.wsdf{word-spacing:5.376000pt;}
.ws92{word-spacing:5.421333pt;}
.ws5a{word-spacing:5.522667pt;}
.wsea{word-spacing:5.568000pt;}
.ws87{word-spacing:5.624000pt;}
.ws3c{word-spacing:5.674667pt;}
.wsa3{word-spacing:5.725333pt;}
.ws53{word-spacing:5.776000pt;}
.wsec{word-spacing:5.824000pt;}
.ws2d{word-spacing:5.826667pt;}
.ws18{word-spacing:5.888000pt;}
.ws8f{word-spacing:6.029333pt;}
.wsaa{word-spacing:6.181333pt;}
.ws7c{word-spacing:6.232000pt;}
.ws2e{word-spacing:6.485333pt;}
.ws5e{word-spacing:6.586667pt;}
.ws4e{word-spacing:6.738667pt;}
.ws29{word-spacing:6.789333pt;}
.ws5d{word-spacing:6.840000pt;}
.ws1d{word-spacing:6.912000pt;}
.wsbd{word-spacing:7.125333pt;}
.wse9{word-spacing:7.296000pt;}
.ws43{word-spacing:7.498667pt;}
.ws1e{word-spacing:7.765333pt;}
.ws4c{word-spacing:7.853333pt;}
.ws93{word-spacing:7.904000pt;}
.ws91{word-spacing:8.106667pt;}
.ws19{word-spacing:8.533333pt;}
.wsf5{word-spacing:8.576000pt;}
.ws2f{word-spacing:8.664000pt;}
.ws7a{word-spacing:9.170667pt;}
.wsbf{word-spacing:9.344000pt;}
.wsb0{word-spacing:10.032000pt;}
.wsad{word-spacing:10.082667pt;}
.wseb{word-spacing:10.176000pt;}
.wsdd{word-spacing:10.368000pt;}
.wsf0{word-spacing:10.752000pt;}
.wsed{word-spacing:10.816000pt;}
.wsc1{word-spacing:11.733333pt;}
.ws72{word-spacing:12.008000pt;}
.ws16{word-spacing:12.970667pt;}
.wsbe{word-spacing:13.397333pt;}
.wsc2{word-spacing:13.781333pt;}
.ws17{word-spacing:17.322667pt;}
.ws2{word-spacing:31.920000pt;}
.ws7{word-spacing:64.928000pt;}
._14{margin-left:-1733.714133pt;}
._4{margin-left:-64.922133pt;}
._f{margin-left:-7.405333pt;}
._b{margin-left:-5.760000pt;}
._7{margin-left:-4.005333pt;}
._1{margin-left:-2.986667pt;}
._5{margin-left:-2.021867pt;}
._2{margin-left:-0.938667pt;}
._0{width:0.997867pt;}
._6{width:1.920000pt;}
._d{width:2.880000pt;}
._e{width:5.120000pt;}
._11{width:6.898667pt;}
._12{width:10.186667pt;}
._13{width:13.371200pt;}
._10{width:14.314667pt;}
._3{width:64.928000pt;}
._9{width:1197.552000pt;}
._c{width:1291.642667pt;}
._a{width:1416.240000pt;}
._8{width:1435.653333pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.666667pt;}
.fs2{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs8{font-size:128.000000pt;}
.fs1{font-size:159.600000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:73.700800pt;}
.y12f{bottom:84.283467pt;}
.ya0{bottom:84.367467pt;}
.y67{bottom:89.700800pt;}
.y12e{bottom:94.950133pt;}
.yb1{bottom:97.700800pt;}
.y9f{bottom:103.034133pt;}
.y66{bottom:105.700800pt;}
.y109{bottom:107.016800pt;}
.yb0{bottom:111.034133pt;}
.y108{bottom:121.683467pt;}
.y65{bottom:121.700800pt;}
.yaf{bottom:124.367467pt;}
.ye3{bottom:132.117467pt;}
.y107{bottom:136.350133pt;}
.y64{bottom:137.700800pt;}
.y9e{bottom:140.367467pt;}
.ye2{bottom:145.450800pt;}
.y106{bottom:151.016800pt;}
.yae{bottom:151.034133pt;}
.y63{bottom:153.700800pt;}
.ye1{bottom:158.784133pt;}
.y9d{bottom:159.034133pt;}
.yad{bottom:164.367467pt;}
.y105{bottom:165.683467pt;}
.y62{bottom:169.700800pt;}
.y45{bottom:171.034133pt;}
.ye0{bottom:172.117467pt;}
.y9c{bottom:177.700800pt;}
.y104{bottom:180.350133pt;}
.ydf{bottom:185.450800pt;}
.yb3{bottom:191.034133pt;}
.y103{bottom:195.016800pt;}
.y9b{bottom:196.367467pt;}
.yde{bottom:198.784133pt;}
.y61{bottom:201.700800pt;}
.yb2{bottom:204.367467pt;}
.y102{bottom:209.683467pt;}
.ydd{bottom:212.117467pt;}
.y9a{bottom:215.034133pt;}
.y60{bottom:217.700800pt;}
.y3c{bottom:221.305467pt;}
.y101{bottom:224.350133pt;}
.ydc{bottom:225.450800pt;}
.y34{bottom:233.305467pt;}
.y5f{bottom:233.700800pt;}
.ydb{bottom:238.784133pt;}
.yff{bottom:239.016800pt;}
.y33{bottom:245.305467pt;}
.y79{bottom:248.900800pt;}
.y5e{bottom:249.700800pt;}
.yda{bottom:252.117467pt;}
.y99{bottom:252.367467pt;}
.yfe{bottom:253.683467pt;}
.y32{bottom:257.305467pt;}
.y78{bottom:260.900800pt;}
.yd9{bottom:265.450800pt;}
.y5d{bottom:265.700800pt;}
.yfd{bottom:268.350133pt;}
.y31{bottom:269.305467pt;}
.y98{bottom:271.034133pt;}
.y77{bottom:272.900800pt;}
.yd8{bottom:278.784133pt;}
.y76{bottom:279.567467pt;}
.y30{bottom:281.305467pt;}
.y5c{bottom:281.700800pt;}
.yfc{bottom:283.016800pt;}
.y44{bottom:283.034133pt;}
.ya1{bottom:288.925467pt;}
.y97{bottom:289.700800pt;}
.yd7{bottom:292.117467pt;}
.y7c{bottom:292.884267pt;}
.y2f{bottom:293.305467pt;}
.y7d{bottom:296.772133pt;}
.yfb{bottom:297.683467pt;}
.y2e{bottom:305.305467pt;}
.yd6{bottom:305.450800pt;}
.y75{bottom:306.234133pt;}
.yac{bottom:307.244000pt;}
.y96{bottom:308.367467pt;}
.yab{bottom:309.084000pt;}
.yfa{bottom:312.350133pt;}
.y5b{bottom:313.700800pt;}
.y7e{bottom:315.607600pt;}
.y3b{bottom:317.305467pt;}
.y74{bottom:318.234133pt;}
.yd5{bottom:318.784133pt;}
.yf9{bottom:327.016800pt;}
.y95{bottom:327.034133pt;}
.y2d{bottom:329.305467pt;}
.y5a{bottom:329.700800pt;}
.y73{bottom:330.234133pt;}
.y43{bottom:331.034133pt;}
.yd4{bottom:332.117467pt;}
.y72{bottom:336.900800pt;}
.y3a{bottom:341.305467pt;}
.yf8{bottom:341.683467pt;}
.yd3{bottom:345.450800pt;}
.y94{bottom:345.700800pt;}
.y39{bottom:353.305467pt;}
.yf7{bottom:356.350133pt;}
.yd2{bottom:358.784133pt;}
.y59{bottom:361.700800pt;}
.y93{bottom:364.367467pt;}
.y38{bottom:365.305467pt;}
.yf6{bottom:371.016800pt;}
.yd1{bottom:372.117467pt;}
.y11b{bottom:372.723200pt;}
.y37{bottom:377.305467pt;}
.y58{bottom:377.700800pt;}
.y7b{bottom:383.034133pt;}
.y10a{bottom:384.511067pt;}
.yd0{bottom:385.450800pt;}
.yf5{bottom:385.683467pt;}
.y2c{bottom:389.305467pt;}
.y57{bottom:393.700800pt;}
.ycf{bottom:398.784133pt;}
.yf4{bottom:400.350133pt;}
.y2b{bottom:401.305467pt;}
.y92{bottom:401.700800pt;}
.y56{bottom:409.700800pt;}
.y42{bottom:411.034133pt;}
.yce{bottom:412.117467pt;}
.y2a{bottom:413.305467pt;}
.yf3{bottom:415.016800pt;}
.y7a{bottom:420.367467pt;}
.y29{bottom:425.305467pt;}
.ycd{bottom:425.450800pt;}
.yf2{bottom:429.683467pt;}
.y28{bottom:437.305467pt;}
.ycc{bottom:438.784133pt;}
.y91{bottom:439.034133pt;}
.y11a{bottom:439.434133pt;}
.y12d{bottom:440.500933pt;}
.y55{bottom:441.700800pt;}
.y100{bottom:444.350133pt;}
.y27{bottom:449.305467pt;}
.ycb{bottom:452.117467pt;}
.y119{bottom:454.100800pt;}
.y54{bottom:457.700800pt;}
.yf1{bottom:459.016800pt;}
.y12c{bottom:460.500933pt;}
.y26{bottom:461.305467pt;}
.yca{bottom:465.450800pt;}
.y118{bottom:468.767467pt;}
.y25{bottom:473.305467pt;}
.yf0{bottom:473.683467pt;}
.y53{bottom:473.700800pt;}
.y90{bottom:476.367467pt;}
.yc9{bottom:478.784133pt;}
.y12b{bottom:480.500933pt;}
.y71{bottom:483.034133pt;}
.y117{bottom:483.434133pt;}
.y24{bottom:485.305467pt;}
.yef{bottom:488.350133pt;}
.y52{bottom:489.700800pt;}
.yc8{bottom:492.117467pt;}
.yaa{bottom:495.034133pt;}
.y23{bottom:497.305467pt;}
.y116{bottom:498.100800pt;}
.y12a{bottom:500.500933pt;}
.yee{bottom:503.016800pt;}
.yc7{bottom:505.450800pt;}
.y51{bottom:505.700800pt;}
.y22{bottom:509.305467pt;}
.y115{bottom:512.767467pt;}
.ya9{bottom:513.700800pt;}
.yed{bottom:517.683467pt;}
.yc6{bottom:518.784133pt;}
.y129{bottom:520.500933pt;}
.y21{bottom:521.305467pt;}
.y50{bottom:521.700800pt;}
.y41{bottom:523.034133pt;}
.y10f{bottom:528.350800pt;}
.y70{bottom:528.367467pt;}
.yc5{bottom:532.117467pt;}
.yec{bottom:532.350133pt;}
.ya8{bottom:532.367467pt;}
.y20{bottom:533.305467pt;}
.y128{bottom:540.500933pt;}
.y10e{bottom:543.017467pt;}
.y114{bottom:543.567467pt;}
.y1f{bottom:545.305467pt;}
.yc4{bottom:545.450800pt;}
.yeb{bottom:547.016800pt;}
.y8f{bottom:550.784133pt;}
.ya7{bottom:551.034133pt;}
.y4f{bottom:553.700800pt;}
.y1e{bottom:557.305467pt;}
.yc3{bottom:558.784133pt;}
.y127{bottom:560.500933pt;}
.yea{bottom:561.683467pt;}
.y8e{bottom:565.450800pt;}
.y1d{bottom:569.305467pt;}
.y4e{bottom:569.700800pt;}
.yc2{bottom:572.117467pt;}
.y10d{bottom:572.350800pt;}
.y113{bottom:572.900800pt;}
.ye9{bottom:576.350133pt;}
.y8d{bottom:580.117467pt;}
.y126{bottom:580.500933pt;}
.y1c{bottom:581.305467pt;}
.yc1{bottom:585.450800pt;}
.y4d{bottom:585.700800pt;}
.y10c{bottom:587.017467pt;}
.y112{bottom:587.567467pt;}
.y6f{bottom:588.367467pt;}
.ye8{bottom:591.016800pt;}
.y1b{bottom:593.305467pt;}
.y8c{bottom:594.784133pt;}
.yc0{bottom:598.784133pt;}
.y125{bottom:600.500933pt;}
.y4c{bottom:601.700800pt;}
.y111{bottom:602.234133pt;}
.y1a{bottom:605.305467pt;}
.ye7{bottom:605.683467pt;}
.ya6{bottom:607.034133pt;}
.y8b{bottom:609.450800pt;}
.ybf{bottom:612.117467pt;}
.y10b{bottom:616.350800pt;}
.y110{bottom:616.900800pt;}
.y19{bottom:617.305467pt;}
.y4b{bottom:617.700800pt;}
.y40{bottom:619.034133pt;}
.ye6{bottom:620.350133pt;}
.y124{bottom:620.500933pt;}
.y8a{bottom:624.117467pt;}
.ybe{bottom:625.450800pt;}
.y6e{bottom:625.700800pt;}
.y36{bottom:629.305467pt;}
.y6{bottom:630.456667pt;}
.ye5{bottom:635.016800pt;}
.y89{bottom:638.784133pt;}
.y123{bottom:640.500933pt;}
.y18{bottom:641.305467pt;}
.ya5{bottom:644.367467pt;}
.y5{bottom:644.456667pt;}
.y4a{bottom:649.700800pt;}
.y3f{bottom:651.034133pt;}
.ybd{bottom:652.117467pt;}
.y17{bottom:653.305467pt;}
.y88{bottom:653.450800pt;}
.y4{bottom:658.456667pt;}
.y122{bottom:660.500933pt;}
.y6d{bottom:663.034133pt;}
.y16{bottom:665.305467pt;}
.ybc{bottom:665.450800pt;}
.yf{bottom:666.000800pt;}
.y87{bottom:668.117467pt;}
.y15{bottom:677.305467pt;}
.ybb{bottom:678.784133pt;}
.ye{bottom:679.334133pt;}
.y121{bottom:680.500933pt;}
.y49{bottom:681.700800pt;}
.y86{bottom:682.784133pt;}
.y3{bottom:686.456667pt;}
.y14{bottom:689.305467pt;}
.yba{bottom:692.117467pt;}
.yd{bottom:692.667467pt;}
.y85{bottom:697.450800pt;}
.y69{bottom:697.700800pt;}
.y3e{bottom:699.034133pt;}
.y6c{bottom:700.367467pt;}
.y2{bottom:700.456667pt;}
.y120{bottom:700.500933pt;}
.y13{bottom:701.305467pt;}
.y48{bottom:701.700800pt;}
.yb9{bottom:705.450800pt;}
.y84{bottom:712.117467pt;}
.y12{bottom:713.305467pt;}
.y1{bottom:714.456667pt;}
.yb8{bottom:718.784133pt;}
.ya4{bottom:719.034133pt;}
.yc{bottom:719.334133pt;}
.y11f{bottom:720.500933pt;}
.y35{bottom:725.305467pt;}
.y83{bottom:726.784133pt;}
.y47{bottom:729.700800pt;}
.y3d{bottom:731.034133pt;}
.yb7{bottom:732.117467pt;}
.yb{bottom:732.667467pt;}
.y11{bottom:737.305467pt;}
.y6b{bottom:737.700800pt;}
.ye4{bottom:740.473200pt;}
.y11e{bottom:740.500933pt;}
.y82{bottom:741.450800pt;}
.yb6{bottom:745.450800pt;}
.y6a{bottom:745.915733pt;}
.y10{bottom:749.305467pt;}
.y81{bottom:756.117467pt;}
.ya3{bottom:756.367467pt;}
.yb5{bottom:758.784133pt;}
.ya{bottom:759.334133pt;}
.y11d{bottom:760.500933pt;}
.y7{bottom:760.783333pt;}
.y46{bottom:761.700800pt;}
.y80{bottom:770.784133pt;}
.yb4{bottom:772.117467pt;}
.y9{bottom:772.667467pt;}
.ya2{bottom:775.034133pt;}
.y11c{bottom:780.500933pt;}
.y7f{bottom:785.450800pt;}
.y8{bottom:786.000800pt;}
.he{height:31.840000pt;}
.h5{height:32.064000pt;}
.h6{height:32.096000pt;}
.ha{height:34.493333pt;}
.h9{height:37.146667pt;}
.h10{height:37.333333pt;}
.h11{height:37.418667pt;}
.h4{height:37.445333pt;}
.h2{height:39.800000pt;}
.hf{height:40.080000pt;}
.h13{height:40.120000pt;}
.hd{height:42.453333pt;}
.h15{height:42.794667pt;}
.h12{height:44.434667pt;}
.h14{height:45.424000pt;}
.h8{height:48.096000pt;}
.h7{height:64.128000pt;}
.h16{height:64.192000pt;}
.hc{height:74.293333pt;}
.hb{height:128.256000pt;}
.h3{height:159.919200pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x19{left:26.649067pt;}
.x20{left:31.982400pt;}
.xe{left:37.283067pt;}
.x21{left:42.649067pt;}
.x1a{left:47.982400pt;}
.xc{left:56.692933pt;}
.x3{left:64.252000pt;}
.x7{left:68.031467pt;}
.x1f{left:83.149600pt;}
.xf{left:84.110667pt;}
.x8{left:86.929200pt;}
.x11{left:95.423200pt;}
.x10{left:98.830533pt;}
.x14{left:100.911733pt;}
.x23{left:102.047200pt;}
.x9{left:105.826800pt;}
.x15{left:108.023867pt;}
.x22{left:120.944933pt;}
.x18{left:124.495733pt;}
.x13{left:135.693333pt;}
.x27{left:137.037600pt;}
.x12{left:142.861467pt;}
.x25{left:171.641067pt;}
.x16{left:196.427867pt;}
.x28{left:203.007467pt;}
.x26{left:226.051333pt;}
.x17{left:232.619200pt;}
.xd{left:264.465067pt;}
.x1{left:289.639200pt;}
.x1c{left:291.023600pt;}
.x4{left:294.803067pt;}
.x24{left:309.921200pt;}
.x5{left:313.700800pt;}
.x6{left:332.598400pt;}
.x1d{left:336.045600pt;}
.x1e{left:339.289600pt;}
.x29{left:367.748000pt;}
.x2{left:405.897067pt;}
.xb{left:476.234933pt;}
.xa{left:482.014800pt;}
.x1b{left:536.180800pt;}
}




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