
    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_6db9e6d1565b9f311fd9bf8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_650cfc5a7ea7432c074d2f53.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.742000;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_d9ff10b29c36e0ba23c535b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_421235450a28f159343fc569.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.882000;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_c7e8941954b71b8caa2e2d41.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_9977c585419ffd6f4d1d6555.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_6c6e9abdd151830a899d34b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.825000;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_6fa0dcc69d32a53c56946bf2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_8cfef26f6bd881d9fa96be32.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710000;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_43bb73ff3088f82bf1633dc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.716000;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_3fad78f1fb16e169931f01fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.848000;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;}
.m14{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);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-24.318000px;}
.v5{vertical-align:-16.212000px;}
.v4{vertical-align:-13.272000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.268000px;}
.v2{vertical-align:24.318000px;}
.v1{vertical-align:29.184000px;}
.ls22{letter-spacing:-5.376000px;}
.ls23{letter-spacing:-4.572000px;}
.ls24{letter-spacing:-4.560000px;}
.ls7{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.001110px;}
.ls27{letter-spacing:0.002076px;}
.ls19{letter-spacing:0.002366px;}
.ls20{letter-spacing:0.003000px;}
.ls6{letter-spacing:0.003288px;}
.ls14{letter-spacing:0.003642px;}
.ls16{letter-spacing:0.003830px;}
.ls1b{letter-spacing:0.003932px;}
.lsb{letter-spacing:0.005122px;}
.ls18{letter-spacing:0.005567px;}
.ls1a{letter-spacing:0.005786px;}
.lsf{letter-spacing:0.005856px;}
.ls8{letter-spacing:0.006012px;}
.lsa{letter-spacing:0.006129px;}
.lsd{letter-spacing:0.006546px;}
.ls1c{letter-spacing:0.007214px;}
.lsc{letter-spacing:0.008794px;}
.lse{letter-spacing:0.009198px;}
.ls9{letter-spacing:0.013824px;}
.ls17{letter-spacing:0.017290px;}
.ls15{letter-spacing:0.029216px;}
.ls13{letter-spacing:0.105603px;}
.ls11{letter-spacing:0.174000px;}
.ls10{letter-spacing:0.234000px;}
.ls12{letter-spacing:0.294000px;}
.ls28{letter-spacing:2.387376px;}
.ls0{letter-spacing:2.867670px;}
.ls2{letter-spacing:2.873670px;}
.ls1{letter-spacing:5.975670px;}
.ls4{letter-spacing:14.896219px;}
.ls5{letter-spacing:17.935260px;}
.ls3{letter-spacing:18.994563px;}
.ls1e{letter-spacing:18.996144px;}
.ls1f{letter-spacing:19.248144px;}
.ls29{letter-spacing:19.601760px;}
.ls21{letter-spacing:22.800144px;}
.ls26{letter-spacing:29.789760px;}
.ls25{letter-spacing:105.695376px;}
.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;}
}
.ws2{word-spacing:-71.731020px;}
.ws3c{word-spacing:-71.730000px;}
.ws0{word-spacing:-64.557897px;}
.ws3d{word-spacing:-59.778000px;}
.ws16{word-spacing:-59.775840px;}
.ws40{word-spacing:-55.218000px;}
.ws3f{word-spacing:-55.206000px;}
.ws95{word-spacing:-53.798280px;}
.ws1{word-spacing:-53.798263px;}
.ws4a{word-spacing:-49.854851px;}
.ws26{word-spacing:-49.853049px;}
.ws4f{word-spacing:-49.822370px;}
.ws7e{word-spacing:-49.820108px;}
.ws7d{word-spacing:-49.809587px;}
.ws82{word-spacing:-49.799866px;}
.ws52{word-spacing:-49.797333px;}
.ws4d{word-spacing:-49.788341px;}
.ws46{word-spacing:-49.771411px;}
.ws17{word-spacing:-49.762377px;}
.ws2d{word-spacing:-49.374843px;}
.ws3e{word-spacing:-48.320396px;}
.ws37{word-spacing:-48.300803px;}
.ws15{word-spacing:-48.119550px;}
.ws1f{word-spacing:-47.820660px;}
.ws7a{word-spacing:-47.762561px;}
.ws2c{word-spacing:-47.760895px;}
.ws87{word-spacing:-47.403773px;}
.ws8c{word-spacing:-47.343758px;}
.ws31{word-spacing:-47.284336px;}
.ws55{word-spacing:-47.224381px;}
.ws88{word-spacing:-46.686736px;}
.ws29{word-spacing:-46.684930px;}
.ws4{word-spacing:-46.505602px;}
.ws35{word-spacing:-46.447325px;}
.ws8f{word-spacing:-46.387907px;}
.ws47{word-spacing:-46.327949px;}
.ws9{word-spacing:-46.326275px;}
.ws45{word-spacing:-46.268529px;}
.ws43{word-spacing:-46.208514px;}
.ws48{word-spacing:-45.909683px;}
.ws14{word-spacing:-45.728516px;}
.ws49{word-spacing:-45.550895px;}
.ws36{word-spacing:-45.311483px;}
.ws80{word-spacing:-45.192706px;}
.wsc{word-spacing:-45.190535px;}
.ws7b{word-spacing:-45.132689px;}
.wsa{word-spacing:-45.130760px;}
.ws33{word-spacing:-45.072671px;}
.ws23{word-spacing:-45.070983px;}
.ws50{word-spacing:-45.012652px;}
.wse{word-spacing:-45.011208px;}
.ws39{word-spacing:-44.953295px;}
.wsf{word-spacing:-44.951430px;}
.ws8a{word-spacing:-44.893875px;}
.ws2f{word-spacing:-44.893276px;}
.ws12{word-spacing:-44.891655px;}
.ws3b{word-spacing:-44.833857px;}
.ws30{word-spacing:-44.833261px;}
.wsb{word-spacing:-44.831880px;}
.ws3a{word-spacing:-44.773840px;}
.ws6{word-spacing:-44.772103px;}
.ws34{word-spacing:-44.713883px;}
.ws27{word-spacing:-44.712328px;}
.ws4e{word-spacing:-44.654466px;}
.ws4c{word-spacing:-44.653867px;}
.ws28{word-spacing:-44.652553px;}
.ws32{word-spacing:-44.594448px;}
.ws10{word-spacing:-44.592775px;}
.ws5{word-spacing:-44.473225px;}
.wsd{word-spacing:-44.353671px;}
.ws8e{word-spacing:-44.295677px;}
.ws42{word-spacing:-44.235660px;}
.ws4b{word-spacing:-43.876810px;}
.ws11{word-spacing:-43.696137px;}
.ws44{word-spacing:-43.578042px;}
.ws53{word-spacing:-43.458604px;}
.wsb5{word-spacing:-43.415212px;}
.ws56{word-spacing:-43.159834px;}
.ws41{word-spacing:-42.980380px;}
.wsb2{word-spacing:-42.931027px;}
.wsb3{word-spacing:-42.877228px;}
.ws3{word-spacing:-42.859275px;}
.ws7{word-spacing:-42.739726px;}
.ws38{word-spacing:-42.203386px;}
.ws94{word-spacing:-41.962658px;}
.ws93{word-spacing:-41.908860px;}
.ws85{word-spacing:-41.844537px;}
.ws18{word-spacing:-41.843088px;}
.ws83{word-spacing:-41.725164px;}
.ws24{word-spacing:-41.723532px;}
.ws8b{word-spacing:-41.246938px;}
.ws92{word-spacing:-41.101886px;}
.ws91{word-spacing:-41.056514px;}
.ws89{word-spacing:-40.948109px;}
.ws8d{word-spacing:-40.768714px;}
.wsaf{word-spacing:-40.563904px;}
.wsa0{word-spacing:-40.510104px;}
.ws7f{word-spacing:-40.469882px;}
.ws19{word-spacing:-40.468244px;}
.wsab{word-spacing:-40.456305px;}
.ws54{word-spacing:-40.409926px;}
.wsa7{word-spacing:-40.402507px;}
.wsa8{word-spacing:-40.350090px;}
.wsa4{word-spacing:-40.349954px;}
.ws7c{word-spacing:-40.349911px;}
.ws96{word-spacing:-40.348710px;}
.wsa3{word-spacing:-40.241113px;}
.wsa1{word-spacing:-40.187316px;}
.ws98{word-spacing:-40.133516px;}
.ws90{word-spacing:-39.931702px;}
.ws9a{word-spacing:-39.918320px;}
.ws2a{word-spacing:-39.631382px;}
.ws84{word-spacing:-39.513497px;}
.ws13{word-spacing:-39.452052px;}
.ws51{word-spacing:-39.214069px;}
.wsae{word-spacing:-39.165148px;}
.ws8{word-spacing:-38.674968px;}
.ws2b{word-spacing:-38.555414px;}
.ws20{word-spacing:-38.316311px;}
.ws97{word-spacing:-38.196777px;}
.ws25{word-spacing:-37.838104px;}
.ws21{word-spacing:-37.658777px;}
.wsb7{word-spacing:-36.959416px;}
.wsb6{word-spacing:-36.954170px;}
.ws9c{word-spacing:-36.744225px;}
.ws9b{word-spacing:-36.691025px;}
.ws9d{word-spacing:-36.690425px;}
.wsa9{word-spacing:-36.598564px;}
.wsaa{word-spacing:-36.582828px;}
.ws1a{word-spacing:-35.865494px;}
.ws22{word-spacing:-35.805726px;}
.ws1b{word-spacing:-35.578571px;}
.ws99{word-spacing:-35.345470px;}
.wsa5{word-spacing:-35.184073px;}
.wsa6{word-spacing:-35.130275px;}
.wsac{word-spacing:-34.915084px;}
.wsad{word-spacing:-34.861285px;}
.wsb4{word-spacing:-34.807487px;}
.ws1d{word-spacing:-34.143951px;}
.ws1e{word-spacing:-34.000489px;}
.ws1c{word-spacing:-33.809207px;}
.ws9e{word-spacing:-32.816949px;}
.wsb1{word-spacing:-32.763150px;}
.wsb0{word-spacing:-32.709352px;}
.wsa2{word-spacing:-30.127037px;}
.ws86{word-spacing:-25.236336px;}
.ws81{word-spacing:-25.230336px;}
.ws68{word-spacing:-3.648000px;}
.ws66{word-spacing:-3.594000px;}
.ws6e{word-spacing:-3.564000px;}
.ws5d{word-spacing:-2.580000px;}
.ws5f{word-spacing:-2.520000px;}
.ws60{word-spacing:-1.698000px;}
.ws5c{word-spacing:-0.294000px;}
.ws5a{word-spacing:-0.234000px;}
.ws5b{word-spacing:-0.174000px;}
.ws9f{word-spacing:-0.053798px;}
.ws2e{word-spacing:0.000000px;}
.ws73{word-spacing:1.218000px;}
.ws6f{word-spacing:1.374000px;}
.ws58{word-spacing:1.422000px;}
.ws6b{word-spacing:1.428000px;}
.ws59{word-spacing:1.482000px;}
.ws6a{word-spacing:1.488000px;}
.ws57{word-spacing:1.650000px;}
.ws61{word-spacing:2.682000px;}
.ws62{word-spacing:2.742000px;}
.ws63{word-spacing:2.760000px;}
.ws67{word-spacing:3.000000px;}
.ws6d{word-spacing:3.048000px;}
.ws72{word-spacing:3.414000px;}
.ws70{word-spacing:3.474000px;}
.ws71{word-spacing:3.534000px;}
.ws5e{word-spacing:5.214000px;}
.ws69{word-spacing:6.486000px;}
.ws65{word-spacing:6.636000px;}
.ws6c{word-spacing:9.006000px;}
.ws64{word-spacing:12.564000px;}
.ws79{word-spacing:17.753773px;}
.ws78{word-spacing:22.058333px;}
.ws77{word-spacing:23.552353px;}
.ws75{word-spacing:29.891664px;}
.ws74{word-spacing:49.323865px;}
.ws76{word-spacing:61.465056px;}
._0{margin-left:-6.886178px;}
._2{margin-left:-5.164634px;}
._7{margin-left:-3.945206px;}
._3{margin-left:-2.796019px;}
._1{margin-left:-1.721541px;}
._6{width:1.147693px;}
._4{width:2.295393px;}
._15{width:10.268892px;}
._c{width:15.422166px;}
._b{width:16.556869px;}
._36{width:17.754009px;}
._f{width:18.877208px;}
._a{width:20.059288px;}
._8{width:21.147202px;}
._d{width:22.496648px;}
._5{width:23.886430px;}
._9{width:27.030641px;}
._38{width:30.236418px;}
._37{width:32.639383px;}
._1c{width:33.748992px;}
._e{width:42.774109px;}
._35{width:70.837295px;}
._16{width:71.961234px;}
._30{width:77.532365px;}
._21{width:78.596294px;}
._22{width:80.424265px;}
._2f{width:82.063244px;}
._32{width:83.270342px;}
._26{width:84.406189px;}
._25{width:87.694924px;}
._23{width:91.400628px;}
._29{width:92.476524px;}
._31{width:96.362202px;}
._24{width:98.274500px;}
._1f{width:101.622600px;}
._2a{width:111.306941px;}
._2c{width:115.909721px;}
._1d{width:121.528931px;}
._1e{width:124.816404px;}
._2b{width:126.489889px;}
._18{width:131.750409px;}
._1b{width:138.266531px;}
._27{width:155.649783px;}
._34{width:171.562884px;}
._2d{width:182.143703px;}
._33{width:189.901236px;}
._28{width:194.922905px;}
._20{width:200.375934px;}
._17{width:223.019577px;}
._1a{width:257.271024px;}
._19{width:267.685705px;}
._2e{width:275.158409px;}
._12{width:446.235000px;}
._10{width:462.635940px;}
._11{width:801.009000px;}
._14{width:2113.368000px;}
._13{width:2134.410000px;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865480px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:44.232000px;}
.fs4{font-size:44.234100px;}
.fs3{font-size:47.820660px;}
.fsa{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs7{font-size:59.778000px;}
.fs8{font-size:71.730000px;}
.fs2{font-size:71.731020px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y4f{bottom:6.600001px;}
.y51{bottom:22.500000px;}
.y52{bottom:42.000000px;}
.y91{bottom:89.232000px;}
.y78{bottom:89.233500px;}
.y33{bottom:93.285000px;}
.y4d{bottom:98.769000px;}
.y32{bottom:103.605000px;}
.y90{bottom:107.164500px;}
.y77{bottom:107.166000px;}
.y4c{bottom:116.701500px;}
.y31{bottom:117.802500px;}
.y8f{bottom:125.098500px;}
.y76{bottom:125.100000px;}
.y53{bottom:130.500000px;}
.y30{bottom:131.998500px;}
.y4b{bottom:134.634000px;}
.y8e{bottom:143.031000px;}
.y75{bottom:143.032500px;}
.y2f{bottom:146.196000px;}
.y4a{bottom:152.566500px;}
.y2e{bottom:160.392000px;}
.y8d{bottom:160.963500px;}
.y74{bottom:160.965000px;}
.y49{bottom:170.499000px;}
.y2d{bottom:174.589500px;}
.yb3{bottom:178.896000px;}
.y73{bottom:178.897500px;}
.y8c{bottom:180.826500px;}
.y48{bottom:188.431500px;}
.y2c{bottom:192.838500px;}
.yb2{bottom:196.828500px;}
.y72{bottom:196.830000px;}
.y8b{bottom:198.759000px;}
.y47{bottom:214.380000px;}
.y71{bottom:214.762500px;}
.y8a{bottom:216.691500px;}
.y2b{bottom:223.221000px;}
.yb1{bottom:232.695000px;}
.y89{bottom:234.624000px;}
.y70{bottom:239.419500px;}
.y2a{bottom:241.153500px;}
.yb0{bottom:250.627500px;}
.y88{bottom:252.556500px;}
.y29{bottom:259.087500px;}
.yaf{bottom:268.560000px;}
.y87{bottom:270.489000px;}
.y46{bottom:272.626500px;}
.y28{bottom:277.020000px;}
.yae{bottom:286.492500px;}
.y86{bottom:288.423000px;}
.y45{bottom:290.559000px;}
.y27{bottom:294.952500px;}
.y6f{bottom:296.184000px;}
.yad{bottom:304.425000px;}
.y85{bottom:306.355500px;}
.y6e{bottom:314.116500px;}
.y26{bottom:314.832000px;}
.yac{bottom:322.359000px;}
.y84{bottom:324.288000px;}
.yb8{bottom:330.193500px;}
.y6d{bottom:332.049000px;}
.y25{bottom:332.766000px;}
.yab{bottom:340.291500px;}
.y83{bottom:342.220500px;}
.y6c{bottom:349.983000px;}
.y24{bottom:350.698500px;}
.yaa{bottom:358.224000px;}
.y82{bottom:360.153000px;}
.yb7{bottom:367.251000px;}
.y6b{bottom:367.915500px;}
.y23{bottom:368.631000px;}
.ya9{bottom:376.156500px;}
.y81{bottom:378.085500px;}
.yb6{bottom:385.183500px;}
.y6a{bottom:385.848000px;}
.y22{bottom:386.563500px;}
.ya8{bottom:394.089000px;}
.y80{bottom:396.019500px;}
.y69{bottom:403.780500px;}
.y21{bottom:404.496000px;}
.ya7{bottom:412.021500px;}
.y7f{bottom:413.952000px;}
.y68{bottom:421.713000px;}
.y20{bottom:422.428500px;}
.ya6{bottom:430.395000px;}
.y7e{bottom:431.884500px;}
.yb5{bottom:436.564500px;}
.y67{bottom:439.645500px;}
.y1f{bottom:440.362500px;}
.ya5{bottom:448.327500px;}
.yb4{bottom:454.497000px;}
.y66{bottom:457.579500px;}
.y1e{bottom:458.295000px;}
.ya4{bottom:466.260000px;}
.y1d{bottom:476.227500px;}
.y65{bottom:483.022500px;}
.y7d{bottom:485.955000px;}
.y1c{bottom:494.160000px;}
.y7c{bottom:503.887500px;}
.y64{bottom:509.556000px;}
.y1b{bottom:512.092500px;}
.ya3{bottom:517.351500px;}
.y7b{bottom:521.821500px;}
.y1a{bottom:530.025000px;}
.y44{bottom:533.217000px;}
.ya2{bottom:535.284000px;}
.y7a{bottom:539.754000px;}
.y63{bottom:542.103000px;}
.y19{bottom:547.959000px;}
.y43{bottom:551.149500px;}
.ya1{bottom:553.216500px;}
.y79{bottom:557.686500px;}
.y62{bottom:560.035500px;}
.y18{bottom:565.891500px;}
.y42{bottom:569.082000px;}
.ya0{bottom:571.149000px;}
.y61{bottom:577.968000px;}
.y17{bottom:583.824000px;}
.y41{bottom:587.016000px;}
.y9f{bottom:589.081500px;}
.y60{bottom:595.902000px;}
.y16{bottom:601.756500px;}
.y40{bottom:604.948500px;}
.yd3{bottom:613.251000px;}
.y5f{bottom:613.834500px;}
.y3f{bottom:622.881000px;}
.yd2{bottom:629.689500px;}
.y15{bottom:630.114000px;}
.y5e{bottom:631.767000px;}
.y3e{bottom:640.813500px;}
.yed{bottom:646.128000px;}
.y5d{bottom:649.699500px;}
.yd1{bottom:653.577000px;}
.y3d{bottom:659.425500px;}
.yec{bottom:662.566500px;}
.y5c{bottom:667.632000px;}
.yd0{bottom:670.015500px;}
.y14{bottom:673.444500px;}
.y3c{bottom:677.358000px;}
.yeb{bottom:679.005000px;}
.y5b{bottom:685.564500px;}
.ycf{bottom:686.454000px;}
.y13{bottom:691.377000px;}
.y3b{bottom:695.292000px;}
.yea{bottom:700.453500px;}
.yce{bottom:702.892500px;}
.y5a{bottom:703.498500px;}
.y12{bottom:709.309500px;}
.y3a{bottom:713.224500px;}
.ye9{bottom:716.892000px;}
.y59{bottom:721.431000px;}
.ycd{bottom:726.780000px;}
.y11{bottom:727.242000px;}
.y39{bottom:731.157000px;}
.ye8{bottom:733.330500px;}
.y58{bottom:739.363500px;}
.ycc{bottom:743.218500px;}
.y10{bottom:745.174500px;}
.y38{bottom:749.089500px;}
.ye7{bottom:754.779000px;}
.y57{bottom:757.296000px;}
.ycb{bottom:759.657000px;}
.yf{bottom:763.108500px;}
.y37{bottom:767.022000px;}
.ye6{bottom:771.217500px;}
.y56{bottom:775.228500px;}
.yca{bottom:776.095500px;}
.ye{bottom:781.041000px;}
.y36{bottom:784.954500px;}
.ye5{bottom:787.656000px;}
.yd{bottom:798.973500px;}
.yc9{bottom:799.983000px;}
.y35{bottom:802.888500px;}
.ye4{bottom:804.094500px;}
.yc8{bottom:816.421500px;}
.yc{bottom:816.906000px;}
.y55{bottom:825.441000px;}
.ye3{bottom:825.543000px;}
.y34{bottom:828.837000px;}
.yc7{bottom:832.858500px;}
.ye2{bottom:841.981500px;}
.y54{bottom:843.373500px;}
.yb{bottom:843.655500px;}
.yc6{bottom:849.297000px;}
.ye1{bottom:858.420000px;}
.y9e{bottom:864.337500px;}
.yc5{bottom:873.184500px;}
.ye0{bottom:874.858500px;}
.ya{bottom:879.820500px;}
.y9d{bottom:882.270000px;}
.yc4{bottom:889.623000px;}
.ydf{bottom:896.307000px;}
.y9c{bottom:900.202500px;}
.y9{bottom:900.742500px;}
.yc3{bottom:906.061500px;}
.yde{bottom:912.745500px;}
.y9b{bottom:918.135000px;}
.y8{bottom:921.663000px;}
.yc2{bottom:922.500000px;}
.ydd{bottom:929.184000px;}
.y9a{bottom:936.067500px;}
.y7{bottom:942.585000px;}
.ydc{bottom:945.622500px;}
.yc1{bottom:946.387500px;}
.y99{bottom:954.000000px;}
.yc0{bottom:962.826000px;}
.y6{bottom:963.507000px;}
.ydb{bottom:967.071000px;}
.y98{bottom:971.934000px;}
.ybf{bottom:979.264500px;}
.yda{bottom:983.509500px;}
.y5{bottom:984.429000px;}
.y97{bottom:989.866500px;}
.ybe{bottom:995.703000px;}
.yd9{bottom:999.948000px;}
.y96{bottom:1007.799000px;}
.y4{bottom:1011.429000px;}
.yd8{bottom:1016.386500px;}
.ybd{bottom:1019.590500px;}
.y95{bottom:1025.731500px;}
.y3{bottom:1026.271500px;}
.yd7{bottom:1032.825000px;}
.ybc{bottom:1036.029000px;}
.y94{bottom:1051.174500px;}
.ybb{bottom:1052.467500px;}
.yd6{bottom:1054.273500px;}
.y2{bottom:1062.136500px;}
.yba{bottom:1068.906000px;}
.y93{bottom:1069.323000px;}
.yd5{bottom:1070.712000px;}
.yd4{bottom:1087.150500px;}
.y1{bottom:1089.036000px;}
.yb9{bottom:1093.467000px;}
.y92{bottom:1095.858000px;}
.y50{bottom:1131.000000px;}
.y4e{bottom:1150.500000px;}
.ha{height:15.000000px;}
.h9{height:24.245064px;}
.h4{height:32.900614px;}
.h14{height:36.098646px;}
.h13{height:37.013217px;}
.h7{height:41.125778px;}
.hd{height:41.127264px;}
.hf{height:42.442380px;}
.h10{height:42.801048px;}
.hb{height:43.804688px;}
.h6{height:48.992287px;}
.h5{height:49.350942px;}
.h12{height:49.637160px;}
.h8{height:49.637866px;}
.h11{height:50.699616px;}
.he{height:50.928300px;}
.h3{height:57.218614px;}
.h1{height:59.565422px;}
.h2{height:70.309778px;}
.hc{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1c{left:8.399999px;}
.x3c{left:44.250000px;}
.xb{left:84.483000px;}
.x19{left:85.500000px;}
.x50{left:91.764000px;}
.x13{left:93.634500px;}
.x3{left:95.124000px;}
.x9{left:100.866000px;}
.x1d{left:104.908500px;}
.x4{left:110.220000px;}
.x1e{left:111.456000px;}
.x22{left:113.728500px;}
.x51{left:114.918000px;}
.x1{left:126.970500px;}
.x40{left:143.971500px;}
.xa{left:167.701500px;}
.x41{left:186.201000px;}
.xc{left:188.971500px;}
.x4f{left:200.331000px;}
.x1a{left:202.599015px;}
.x3d{left:205.446000px;}
.x1f{left:214.092000px;}
.x5{left:225.946500px;}
.x44{left:235.701000px;}
.x4d{left:243.658500px;}
.xf{left:245.410500px;}
.x10{left:252.882000px;}
.x6{left:262.404000px;}
.x2{left:269.253000px;}
.x8{left:270.402000px;}
.x4b{left:275.602500px;}
.x45{left:278.811000px;}
.x46{left:291.835500px;}
.x7{left:298.915500px;}
.x47{left:316.563000px;}
.x11{left:332.194500px;}
.x48{left:334.750500px;}
.x43{left:337.929000px;}
.x3e{left:346.999500px;}
.x20{left:354.763500px;}
.x49{left:360.577500px;}
.x23{left:372.550500px;}
.x4a{left:377.416500px;}
.x42{left:378.463500px;}
.x12{left:395.542500px;}
.xd{left:414.574500px;}
.xe{left:422.047500px;}
.x21{left:423.972000px;}
.x4c{left:429.607500px;}
.x3f{left:434.631000px;}
.x16{left:456.549000px;}
.x52{left:463.812000px;}
.x15{left:472.030500px;}
.x30{left:482.071500px;}
.x18{left:487.305000px;}
.x31{left:500.484000px;}
.x24{left:528.672000px;}
.x3b{left:537.894000px;}
.x34{left:539.881500px;}
.x14{left:545.865000px;}
.x4e{left:572.289000px;}
.x2d{left:575.749500px;}
.x17{left:599.329500px;}
.x25{left:615.109500px;}
.x26{left:623.610000px;}
.x27{left:642.951000px;}
.x35{left:649.879500px;}
.x39{left:658.632000px;}
.x32{left:663.354000px;}
.x28{left:667.408500px;}
.x36{left:669.507000px;}
.x2e{left:675.463500px;}
.x29{left:685.401000px;}
.x37{left:696.771000px;}
.x3a{left:701.788500px;}
.x38{left:715.050000px;}
.x33{left:738.444000px;}
.x2a{left:752.541000px;}
.x2b{left:770.308500px;}
.x2f{left:791.842500px;}
.x2c{left:794.850000px;}
.x1b{left:836.250000px;}
@media print{
.v3{vertical-align:-21.616000pt;}
.v5{vertical-align:-14.410667pt;}
.v4{vertical-align:-11.797333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.016000pt;}
.v2{vertical-align:21.616000pt;}
.v1{vertical-align:25.941333pt;}
.ls22{letter-spacing:-4.778667pt;}
.ls23{letter-spacing:-4.064000pt;}
.ls24{letter-spacing:-4.053333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000987pt;}
.ls27{letter-spacing:0.001845pt;}
.ls19{letter-spacing:0.002103pt;}
.ls20{letter-spacing:0.002667pt;}
.ls6{letter-spacing:0.002923pt;}
.ls14{letter-spacing:0.003237pt;}
.ls16{letter-spacing:0.003404pt;}
.ls1b{letter-spacing:0.003495pt;}
.lsb{letter-spacing:0.004553pt;}
.ls18{letter-spacing:0.004948pt;}
.ls1a{letter-spacing:0.005143pt;}
.lsf{letter-spacing:0.005206pt;}
.ls8{letter-spacing:0.005344pt;}
.lsa{letter-spacing:0.005448pt;}
.lsd{letter-spacing:0.005819pt;}
.ls1c{letter-spacing:0.006413pt;}
.lsc{letter-spacing:0.007817pt;}
.lse{letter-spacing:0.008176pt;}
.ls9{letter-spacing:0.012288pt;}
.ls17{letter-spacing:0.015369pt;}
.ls15{letter-spacing:0.025970pt;}
.ls13{letter-spacing:0.093869pt;}
.ls11{letter-spacing:0.154667pt;}
.ls10{letter-spacing:0.208000pt;}
.ls12{letter-spacing:0.261333pt;}
.ls28{letter-spacing:2.122112pt;}
.ls0{letter-spacing:2.549040pt;}
.ls2{letter-spacing:2.554373pt;}
.ls1{letter-spacing:5.311707pt;}
.ls4{letter-spacing:13.241084pt;}
.ls5{letter-spacing:15.942453pt;}
.ls3{letter-spacing:16.884056pt;}
.ls1e{letter-spacing:16.885461pt;}
.ls1f{letter-spacing:17.109461pt;}
.ls29{letter-spacing:17.423787pt;}
.ls21{letter-spacing:20.266795pt;}
.ls26{letter-spacing:26.479787pt;}
.ls25{letter-spacing:93.951445pt;}
.ws2{word-spacing:-63.760907pt;}
.ws3c{word-spacing:-63.760000pt;}
.ws0{word-spacing:-57.384798pt;}
.ws3d{word-spacing:-53.136000pt;}
.ws16{word-spacing:-53.134080pt;}
.ws40{word-spacing:-49.082667pt;}
.ws3f{word-spacing:-49.072000pt;}
.ws95{word-spacing:-47.820693pt;}
.ws1{word-spacing:-47.820678pt;}
.ws4a{word-spacing:-44.315423pt;}
.ws26{word-spacing:-44.313822pt;}
.ws4f{word-spacing:-44.286551pt;}
.ws7e{word-spacing:-44.284541pt;}
.ws7d{word-spacing:-44.275189pt;}
.ws82{word-spacing:-44.266548pt;}
.ws52{word-spacing:-44.264296pt;}
.ws4d{word-spacing:-44.256303pt;}
.ws46{word-spacing:-44.241254pt;}
.ws17{word-spacing:-44.233224pt;}
.ws2d{word-spacing:-43.888749pt;}
.ws3e{word-spacing:-42.951463pt;}
.ws37{word-spacing:-42.934047pt;}
.ws15{word-spacing:-42.772933pt;}
.ws1f{word-spacing:-42.507253pt;}
.ws7a{word-spacing:-42.455610pt;}
.ws2c{word-spacing:-42.454129pt;}
.ws87{word-spacing:-42.136688pt;}
.ws8c{word-spacing:-42.083340pt;}
.ws31{word-spacing:-42.030521pt;}
.ws55{word-spacing:-41.977227pt;}
.ws88{word-spacing:-41.499321pt;}
.ws29{word-spacing:-41.497715pt;}
.ws4{word-spacing:-41.338313pt;}
.ws35{word-spacing:-41.286512pt;}
.ws8f{word-spacing:-41.233695pt;}
.ws47{word-spacing:-41.180399pt;}
.ws9{word-spacing:-41.178911pt;}
.ws45{word-spacing:-41.127582pt;}
.ws43{word-spacing:-41.074234pt;}
.ws48{word-spacing:-40.808607pt;}
.ws14{word-spacing:-40.647570pt;}
.ws49{word-spacing:-40.489685pt;}
.ws36{word-spacing:-40.276874pt;}
.ws80{word-spacing:-40.171294pt;}
.wsc{word-spacing:-40.169364pt;}
.ws7b{word-spacing:-40.117946pt;}
.wsa{word-spacing:-40.116231pt;}
.ws33{word-spacing:-40.064597pt;}
.ws23{word-spacing:-40.063096pt;}
.ws50{word-spacing:-40.011246pt;}
.wse{word-spacing:-40.009962pt;}
.ws39{word-spacing:-39.958485pt;}
.wsf{word-spacing:-39.956827pt;}
.ws8a{word-spacing:-39.905666pt;}
.ws2f{word-spacing:-39.905134pt;}
.ws12{word-spacing:-39.903693pt;}
.ws3b{word-spacing:-39.852318pt;}
.ws30{word-spacing:-39.851787pt;}
.wsb{word-spacing:-39.850560pt;}
.ws3a{word-spacing:-39.798969pt;}
.ws6{word-spacing:-39.797425pt;}
.ws34{word-spacing:-39.745674pt;}
.ws27{word-spacing:-39.744292pt;}
.ws4e{word-spacing:-39.692859pt;}
.ws4c{word-spacing:-39.692326pt;}
.ws28{word-spacing:-39.691158pt;}
.ws32{word-spacing:-39.639509pt;}
.ws10{word-spacing:-39.638023pt;}
.ws5{word-spacing:-39.531756pt;}
.wsd{word-spacing:-39.425485pt;}
.ws8e{word-spacing:-39.373935pt;}
.ws42{word-spacing:-39.320587pt;}
.ws4b{word-spacing:-39.001609pt;}
.ws11{word-spacing:-38.841010pt;}
.ws44{word-spacing:-38.736038pt;}
.ws53{word-spacing:-38.629870pt;}
.wsb5{word-spacing:-38.591300pt;}
.ws56{word-spacing:-38.364297pt;}
.ws41{word-spacing:-38.204782pt;}
.wsb2{word-spacing:-38.160913pt;}
.wsb3{word-spacing:-38.113092pt;}
.ws3{word-spacing:-38.097133pt;}
.ws7{word-spacing:-37.990867pt;}
.ws38{word-spacing:-37.514121pt;}
.ws94{word-spacing:-37.300141pt;}
.ws93{word-spacing:-37.252320pt;}
.ws85{word-spacing:-37.195144pt;}
.ws18{word-spacing:-37.193856pt;}
.ws83{word-spacing:-37.089034pt;}
.ws24{word-spacing:-37.087584pt;}
.ws8b{word-spacing:-36.663945pt;}
.ws92{word-spacing:-36.535010pt;}
.ws91{word-spacing:-36.494679pt;}
.ws89{word-spacing:-36.398319pt;}
.ws8d{word-spacing:-36.238857pt;}
.wsaf{word-spacing:-36.056803pt;}
.wsa0{word-spacing:-36.008981pt;}
.ws7f{word-spacing:-35.973229pt;}
.ws19{word-spacing:-35.971772pt;}
.wsab{word-spacing:-35.961160pt;}
.ws54{word-spacing:-35.919934pt;}
.wsa7{word-spacing:-35.913340pt;}
.wsa8{word-spacing:-35.866746pt;}
.wsa4{word-spacing:-35.866625pt;}
.ws7c{word-spacing:-35.866587pt;}
.ws96{word-spacing:-35.865520pt;}
.wsa3{word-spacing:-35.769879pt;}
.wsa1{word-spacing:-35.722058pt;}
.ws98{word-spacing:-35.674236pt;}
.ws90{word-spacing:-35.494846pt;}
.ws9a{word-spacing:-35.482951pt;}
.ws2a{word-spacing:-35.227895pt;}
.ws84{word-spacing:-35.123109pt;}
.ws13{word-spacing:-35.068491pt;}
.ws51{word-spacing:-34.856950pt;}
.wsae{word-spacing:-34.813465pt;}
.ws8{word-spacing:-34.377750pt;}
.ws2b{word-spacing:-34.271479pt;}
.ws20{word-spacing:-34.058943pt;}
.ws97{word-spacing:-33.952690pt;}
.ws25{word-spacing:-33.633871pt;}
.ws21{word-spacing:-33.474468pt;}
.wsb7{word-spacing:-32.852814pt;}
.wsb6{word-spacing:-32.848151pt;}
.ws9c{word-spacing:-32.661534pt;}
.ws9b{word-spacing:-32.614245pt;}
.ws9d{word-spacing:-32.613711pt;}
.wsa9{word-spacing:-32.532057pt;}
.wsaa{word-spacing:-32.518070pt;}
.ws1a{word-spacing:-31.880439pt;}
.ws22{word-spacing:-31.827312pt;}
.ws1b{word-spacing:-31.625396pt;}
.ws99{word-spacing:-31.418196pt;}
.wsa5{word-spacing:-31.274732pt;}
.wsa6{word-spacing:-31.226911pt;}
.wsac{word-spacing:-31.035630pt;}
.wsad{word-spacing:-30.987809pt;}
.wsb4{word-spacing:-30.939989pt;}
.ws1d{word-spacing:-30.350179pt;}
.ws1e{word-spacing:-30.222657pt;}
.ws1c{word-spacing:-30.052628pt;}
.ws9e{word-spacing:-29.170621pt;}
.wsb1{word-spacing:-29.122800pt;}
.wsb0{word-spacing:-29.074980pt;}
.wsa2{word-spacing:-26.779588pt;}
.ws86{word-spacing:-22.432299pt;}
.ws81{word-spacing:-22.426965pt;}
.ws68{word-spacing:-3.242667pt;}
.ws66{word-spacing:-3.194667pt;}
.ws6e{word-spacing:-3.168000pt;}
.ws5d{word-spacing:-2.293333pt;}
.ws5f{word-spacing:-2.240000pt;}
.ws60{word-spacing:-1.509333pt;}
.ws5c{word-spacing:-0.261333pt;}
.ws5a{word-spacing:-0.208000pt;}
.ws5b{word-spacing:-0.154667pt;}
.ws9f{word-spacing:-0.047821pt;}
.ws2e{word-spacing:0.000000pt;}
.ws73{word-spacing:1.082667pt;}
.ws6f{word-spacing:1.221333pt;}
.ws58{word-spacing:1.264000pt;}
.ws6b{word-spacing:1.269333pt;}
.ws59{word-spacing:1.317333pt;}
.ws6a{word-spacing:1.322667pt;}
.ws57{word-spacing:1.466667pt;}
.ws61{word-spacing:2.384000pt;}
.ws62{word-spacing:2.437333pt;}
.ws63{word-spacing:2.453333pt;}
.ws67{word-spacing:2.666667pt;}
.ws6d{word-spacing:2.709333pt;}
.ws72{word-spacing:3.034667pt;}
.ws70{word-spacing:3.088000pt;}
.ws71{word-spacing:3.141333pt;}
.ws5e{word-spacing:4.634667pt;}
.ws69{word-spacing:5.765333pt;}
.ws65{word-spacing:5.898667pt;}
.ws6c{word-spacing:8.005333pt;}
.ws64{word-spacing:11.168000pt;}
.ws79{word-spacing:15.781132pt;}
.ws78{word-spacing:19.607407pt;}
.ws77{word-spacing:20.935425pt;}
.ws75{word-spacing:26.570368pt;}
.ws74{word-spacing:43.843435pt;}
.ws76{word-spacing:54.635605pt;}
._0{margin-left:-6.121047pt;}
._2{margin-left:-4.590786pt;}
._7{margin-left:-3.506850pt;}
._3{margin-left:-2.485350pt;}
._1{margin-left:-1.530259pt;}
._6{width:1.020172pt;}
._4{width:2.040349pt;}
._15{width:9.127904pt;}
._c{width:13.708592pt;}
._b{width:14.717217pt;}
._36{width:15.781341pt;}
._f{width:16.779740pt;}
._a{width:17.830478pt;}
._8{width:18.797513pt;}
._d{width:19.997021pt;}
._5{width:21.232382pt;}
._9{width:24.027236pt;}
._38{width:26.876816pt;}
._37{width:29.012785pt;}
._1c{width:29.999104pt;}
._e{width:38.021430pt;}
._35{width:62.966484pt;}
._16{width:63.965541pt;}
._30{width:68.917658pt;}
._21{width:69.863372pt;}
._22{width:71.488236pt;}
._2f{width:72.945106pt;}
._32{width:74.018081pt;}
._26{width:75.027724pt;}
._25{width:77.951043pt;}
._23{width:81.245002pt;}
._29{width:82.201355pt;}
._31{width:85.655290pt;}
._24{width:87.355111pt;}
._1f{width:90.331200pt;}
._2a{width:98.939503pt;}
._2c{width:103.030863pt;}
._1d{width:108.025716pt;}
._1e{width:110.947915pt;}
._2b{width:112.435457pt;}
._18{width:117.111474pt;}
._1b{width:122.903583pt;}
._27{width:138.355363pt;}
._34{width:152.500341pt;}
._2d{width:161.905514pt;}
._33{width:168.801099pt;}
._28{width:173.264805pt;}
._20{width:178.111941pt;}
._17{width:198.239624pt;}
._1a{width:228.685355pt;}
._19{width:237.942849pt;}
._2e{width:244.585252pt;}
._12{width:396.653333pt;}
._10{width:411.231947pt;}
._11{width:712.008000pt;}
._14{width:1878.549333pt;}
._13{width:1897.253333pt;}
.fs5{font-size:31.880427pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:39.317333pt;}
.fs4{font-size:39.319200pt;}
.fs3{font-size:42.507253pt;}
.fsa{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs7{font-size:53.136000pt;}
.fs8{font-size:63.760000pt;}
.fs2{font-size:63.760907pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:5.866668pt;}
.y51{bottom:20.000000pt;}
.y52{bottom:37.333333pt;}
.y91{bottom:79.317333pt;}
.y78{bottom:79.318667pt;}
.y33{bottom:82.920000pt;}
.y4d{bottom:87.794667pt;}
.y32{bottom:92.093333pt;}
.y90{bottom:95.257333pt;}
.y77{bottom:95.258667pt;}
.y4c{bottom:103.734667pt;}
.y31{bottom:104.713333pt;}
.y8f{bottom:111.198667pt;}
.y76{bottom:111.200000pt;}
.y53{bottom:116.000000pt;}
.y30{bottom:117.332000pt;}
.y4b{bottom:119.674667pt;}
.y8e{bottom:127.138667pt;}
.y75{bottom:127.140000pt;}
.y2f{bottom:129.952000pt;}
.y4a{bottom:135.614667pt;}
.y2e{bottom:142.570667pt;}
.y8d{bottom:143.078667pt;}
.y74{bottom:143.080000pt;}
.y49{bottom:151.554667pt;}
.y2d{bottom:155.190667pt;}
.yb3{bottom:159.018667pt;}
.y73{bottom:159.020000pt;}
.y8c{bottom:160.734667pt;}
.y48{bottom:167.494667pt;}
.y2c{bottom:171.412000pt;}
.yb2{bottom:174.958667pt;}
.y72{bottom:174.960000pt;}
.y8b{bottom:176.674667pt;}
.y47{bottom:190.560000pt;}
.y71{bottom:190.900000pt;}
.y8a{bottom:192.614667pt;}
.y2b{bottom:198.418667pt;}
.yb1{bottom:206.840000pt;}
.y89{bottom:208.554667pt;}
.y70{bottom:212.817333pt;}
.y2a{bottom:214.358667pt;}
.yb0{bottom:222.780000pt;}
.y88{bottom:224.494667pt;}
.y29{bottom:230.300000pt;}
.yaf{bottom:238.720000pt;}
.y87{bottom:240.434667pt;}
.y46{bottom:242.334667pt;}
.y28{bottom:246.240000pt;}
.yae{bottom:254.660000pt;}
.y86{bottom:256.376000pt;}
.y45{bottom:258.274667pt;}
.y27{bottom:262.180000pt;}
.y6f{bottom:263.274667pt;}
.yad{bottom:270.600000pt;}
.y85{bottom:272.316000pt;}
.y6e{bottom:279.214667pt;}
.y26{bottom:279.850667pt;}
.yac{bottom:286.541333pt;}
.y84{bottom:288.256000pt;}
.yb8{bottom:293.505333pt;}
.y6d{bottom:295.154667pt;}
.y25{bottom:295.792000pt;}
.yab{bottom:302.481333pt;}
.y83{bottom:304.196000pt;}
.y6c{bottom:311.096000pt;}
.y24{bottom:311.732000pt;}
.yaa{bottom:318.421333pt;}
.y82{bottom:320.136000pt;}
.yb7{bottom:326.445333pt;}
.y6b{bottom:327.036000pt;}
.y23{bottom:327.672000pt;}
.ya9{bottom:334.361333pt;}
.y81{bottom:336.076000pt;}
.yb6{bottom:342.385333pt;}
.y6a{bottom:342.976000pt;}
.y22{bottom:343.612000pt;}
.ya8{bottom:350.301333pt;}
.y80{bottom:352.017333pt;}
.y69{bottom:358.916000pt;}
.y21{bottom:359.552000pt;}
.ya7{bottom:366.241333pt;}
.y7f{bottom:367.957333pt;}
.y68{bottom:374.856000pt;}
.y20{bottom:375.492000pt;}
.ya6{bottom:382.573333pt;}
.y7e{bottom:383.897333pt;}
.yb5{bottom:388.057333pt;}
.y67{bottom:390.796000pt;}
.y1f{bottom:391.433333pt;}
.ya5{bottom:398.513333pt;}
.yb4{bottom:403.997333pt;}
.y66{bottom:406.737333pt;}
.y1e{bottom:407.373333pt;}
.ya4{bottom:414.453333pt;}
.y1d{bottom:423.313333pt;}
.y65{bottom:429.353333pt;}
.y7d{bottom:431.960000pt;}
.y1c{bottom:439.253333pt;}
.y7c{bottom:447.900000pt;}
.y64{bottom:452.938667pt;}
.y1b{bottom:455.193333pt;}
.ya3{bottom:459.868000pt;}
.y7b{bottom:463.841333pt;}
.y1a{bottom:471.133333pt;}
.y44{bottom:473.970667pt;}
.ya2{bottom:475.808000pt;}
.y7a{bottom:479.781333pt;}
.y63{bottom:481.869333pt;}
.y19{bottom:487.074667pt;}
.y43{bottom:489.910667pt;}
.ya1{bottom:491.748000pt;}
.y79{bottom:495.721333pt;}
.y62{bottom:497.809333pt;}
.y18{bottom:503.014667pt;}
.y42{bottom:505.850667pt;}
.ya0{bottom:507.688000pt;}
.y61{bottom:513.749333pt;}
.y17{bottom:518.954667pt;}
.y41{bottom:521.792000pt;}
.y9f{bottom:523.628000pt;}
.y60{bottom:529.690667pt;}
.y16{bottom:534.894667pt;}
.y40{bottom:537.732000pt;}
.yd3{bottom:545.112000pt;}
.y5f{bottom:545.630667pt;}
.y3f{bottom:553.672000pt;}
.yd2{bottom:559.724000pt;}
.y15{bottom:560.101333pt;}
.y5e{bottom:561.570667pt;}
.y3e{bottom:569.612000pt;}
.yed{bottom:574.336000pt;}
.y5d{bottom:577.510667pt;}
.yd1{bottom:580.957333pt;}
.y3d{bottom:586.156000pt;}
.yec{bottom:588.948000pt;}
.y5c{bottom:593.450667pt;}
.yd0{bottom:595.569333pt;}
.y14{bottom:598.617333pt;}
.y3c{bottom:602.096000pt;}
.yeb{bottom:603.560000pt;}
.y5b{bottom:609.390667pt;}
.ycf{bottom:610.181333pt;}
.y13{bottom:614.557333pt;}
.y3b{bottom:618.037333pt;}
.yea{bottom:622.625333pt;}
.yce{bottom:624.793333pt;}
.y5a{bottom:625.332000pt;}
.y12{bottom:630.497333pt;}
.y3a{bottom:633.977333pt;}
.ye9{bottom:637.237333pt;}
.y59{bottom:641.272000pt;}
.ycd{bottom:646.026667pt;}
.y11{bottom:646.437333pt;}
.y39{bottom:649.917333pt;}
.ye8{bottom:651.849333pt;}
.y58{bottom:657.212000pt;}
.ycc{bottom:660.638667pt;}
.y10{bottom:662.377333pt;}
.y38{bottom:665.857333pt;}
.ye7{bottom:670.914667pt;}
.y57{bottom:673.152000pt;}
.ycb{bottom:675.250667pt;}
.yf{bottom:678.318667pt;}
.y37{bottom:681.797333pt;}
.ye6{bottom:685.526667pt;}
.y56{bottom:689.092000pt;}
.yca{bottom:689.862667pt;}
.ye{bottom:694.258667pt;}
.y36{bottom:697.737333pt;}
.ye5{bottom:700.138667pt;}
.yd{bottom:710.198667pt;}
.yc9{bottom:711.096000pt;}
.y35{bottom:713.678667pt;}
.ye4{bottom:714.750667pt;}
.yc8{bottom:725.708000pt;}
.yc{bottom:726.138667pt;}
.y55{bottom:733.725333pt;}
.ye3{bottom:733.816000pt;}
.y34{bottom:736.744000pt;}
.yc7{bottom:740.318667pt;}
.ye2{bottom:748.428000pt;}
.y54{bottom:749.665333pt;}
.yb{bottom:749.916000pt;}
.yc6{bottom:754.930667pt;}
.ye1{bottom:763.040000pt;}
.y9e{bottom:768.300000pt;}
.yc5{bottom:776.164000pt;}
.ye0{bottom:777.652000pt;}
.ya{bottom:782.062667pt;}
.y9d{bottom:784.240000pt;}
.yc4{bottom:790.776000pt;}
.ydf{bottom:796.717333pt;}
.y9c{bottom:800.180000pt;}
.y9{bottom:800.660000pt;}
.yc3{bottom:805.388000pt;}
.yde{bottom:811.329333pt;}
.y9b{bottom:816.120000pt;}
.y8{bottom:819.256000pt;}
.yc2{bottom:820.000000pt;}
.ydd{bottom:825.941333pt;}
.y9a{bottom:832.060000pt;}
.y7{bottom:837.853333pt;}
.ydc{bottom:840.553333pt;}
.yc1{bottom:841.233333pt;}
.y99{bottom:848.000000pt;}
.yc0{bottom:855.845333pt;}
.y6{bottom:856.450667pt;}
.ydb{bottom:859.618667pt;}
.y98{bottom:863.941333pt;}
.ybf{bottom:870.457333pt;}
.yda{bottom:874.230667pt;}
.y5{bottom:875.048000pt;}
.y97{bottom:879.881333pt;}
.ybe{bottom:885.069333pt;}
.yd9{bottom:888.842667pt;}
.y96{bottom:895.821333pt;}
.y4{bottom:899.048000pt;}
.yd8{bottom:903.454667pt;}
.ybd{bottom:906.302667pt;}
.y95{bottom:911.761333pt;}
.y3{bottom:912.241333pt;}
.yd7{bottom:918.066667pt;}
.ybc{bottom:920.914667pt;}
.y94{bottom:934.377333pt;}
.ybb{bottom:935.526667pt;}
.yd6{bottom:937.132000pt;}
.y2{bottom:944.121333pt;}
.yba{bottom:950.138667pt;}
.y93{bottom:950.509333pt;}
.yd5{bottom:951.744000pt;}
.yd4{bottom:966.356000pt;}
.y1{bottom:968.032000pt;}
.yb9{bottom:971.970667pt;}
.y92{bottom:974.096000pt;}
.y50{bottom:1005.333333pt;}
.y4e{bottom:1022.666667pt;}
.ha{height:13.333333pt;}
.h9{height:21.551168pt;}
.h4{height:29.244990pt;}
.h14{height:32.087685pt;}
.h13{height:32.900637pt;}
.h7{height:36.556247pt;}
.hd{height:36.557568pt;}
.hf{height:37.726560pt;}
.h10{height:38.045376pt;}
.hb{height:38.937500pt;}
.h6{height:43.548699pt;}
.h5{height:43.867504pt;}
.h12{height:44.121920pt;}
.h8{height:44.122547pt;}
.h11{height:45.066325pt;}
.he{height:45.269600pt;}
.h3{height:50.860990pt;}
.h1{height:52.947042pt;}
.h2{height:62.497580pt;}
.hc{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1c{left:7.466666pt;}
.x3c{left:39.333333pt;}
.xb{left:75.096000pt;}
.x19{left:76.000000pt;}
.x50{left:81.568000pt;}
.x13{left:83.230667pt;}
.x3{left:84.554667pt;}
.x9{left:89.658667pt;}
.x1d{left:93.252000pt;}
.x4{left:97.973333pt;}
.x1e{left:99.072000pt;}
.x22{left:101.092000pt;}
.x51{left:102.149333pt;}
.x1{left:112.862667pt;}
.x40{left:127.974667pt;}
.xa{left:149.068000pt;}
.x41{left:165.512000pt;}
.xc{left:167.974667pt;}
.x4f{left:178.072000pt;}
.x1a{left:180.088013pt;}
.x3d{left:182.618667pt;}
.x1f{left:190.304000pt;}
.x5{left:200.841333pt;}
.x44{left:209.512000pt;}
.x4d{left:216.585333pt;}
.xf{left:218.142667pt;}
.x10{left:224.784000pt;}
.x6{left:233.248000pt;}
.x2{left:239.336000pt;}
.x8{left:240.357333pt;}
.x4b{left:244.980000pt;}
.x45{left:247.832000pt;}
.x46{left:259.409333pt;}
.x7{left:265.702667pt;}
.x47{left:281.389333pt;}
.x11{left:295.284000pt;}
.x48{left:297.556000pt;}
.x43{left:300.381333pt;}
.x3e{left:308.444000pt;}
.x20{left:315.345333pt;}
.x49{left:320.513333pt;}
.x23{left:331.156000pt;}
.x4a{left:335.481333pt;}
.x42{left:336.412000pt;}
.x12{left:351.593333pt;}
.xd{left:368.510667pt;}
.xe{left:375.153333pt;}
.x21{left:376.864000pt;}
.x4c{left:381.873333pt;}
.x3f{left:386.338667pt;}
.x16{left:405.821333pt;}
.x52{left:412.277333pt;}
.x15{left:419.582667pt;}
.x30{left:428.508000pt;}
.x18{left:433.160000pt;}
.x31{left:444.874667pt;}
.x24{left:469.930667pt;}
.x3b{left:478.128000pt;}
.x34{left:479.894667pt;}
.x14{left:485.213333pt;}
.x4e{left:508.701333pt;}
.x2d{left:511.777333pt;}
.x17{left:532.737333pt;}
.x25{left:546.764000pt;}
.x26{left:554.320000pt;}
.x27{left:571.512000pt;}
.x35{left:577.670667pt;}
.x39{left:585.450667pt;}
.x32{left:589.648000pt;}
.x28{left:593.252000pt;}
.x36{left:595.117333pt;}
.x2e{left:600.412000pt;}
.x29{left:609.245333pt;}
.x37{left:619.352000pt;}
.x3a{left:623.812000pt;}
.x38{left:635.600000pt;}
.x33{left:656.394667pt;}
.x2a{left:668.925333pt;}
.x2b{left:684.718667pt;}
.x2f{left:703.860000pt;}
.x2c{left:706.533333pt;}
.x1b{left:743.333333pt;}
}




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