
    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_01e47fbee1dc80ab36fb7108.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d8e4a810af4285656f4421a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_fbb3146e55d65422987615b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_12c15b39af1d1b1a5ef308ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123000;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_f0bac060d6f1b5a27c1243c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_3815abfa43e9df12aeb3e578.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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;}
.m3{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);}
.m1e{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1a{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);}
.m22{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);}
.m26{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);}
.m6{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);}
.m25{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);}
.m17{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m1f{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);}
.m5{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);}
.m20{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);}
.md{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);}
.ma{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);}
.m8{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);}
.mf{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);}
.m10{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);}
.m7{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.mb{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);}
.m29{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);}
.m1c{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);}
.m19{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m23{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);}
.m4{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);}
.m11{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m15{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);}
.m18{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);}
.m27{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);}
.m1d{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);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.994000px;}
.v1{vertical-align:21.702000px;}
.ls0{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000326px;}
.ls3b{letter-spacing:0.000566px;}
.ls3e{letter-spacing:0.000800px;}
.ls3a{letter-spacing:0.001938px;}
.ls1f{letter-spacing:0.002782px;}
.ls40{letter-spacing:0.004800px;}
.ls3d{letter-spacing:0.005047px;}
.ls4{letter-spacing:11.954850px;}
.ls41{letter-spacing:13.448074px;}
.ls3c{letter-spacing:13.549070px;}
.ls38{letter-spacing:13.748388px;}
.ls37{letter-spacing:13.987490px;}
.ls36{letter-spacing:14.047266px;}
.ls23{letter-spacing:14.226593px;}
.ls16{letter-spacing:14.346144px;}
.lsa{letter-spacing:14.405920px;}
.lsc{letter-spacing:14.465695px;}
.ls9{letter-spacing:14.585246px;}
.ls2a{letter-spacing:14.645022px;}
.lsb{letter-spacing:14.704798px;}
.ls6{letter-spacing:14.764573px;}
.ls14{letter-spacing:14.824349px;}
.lsf{letter-spacing:14.884124px;}
.ls5{letter-spacing:14.943900px;}
.ls28{letter-spacing:15.003676px;}
.ls12{letter-spacing:15.063451px;}
.ls24{letter-spacing:15.123227px;}
.ls8{letter-spacing:15.183002px;}
.ls7{letter-spacing:15.242778px;}
.ls1d{letter-spacing:15.720983px;}
.ls1e{letter-spacing:15.780758px;}
.ls33{letter-spacing:16.378514px;}
.ls3f{letter-spacing:16.608427px;}
.ls34{letter-spacing:16.737168px;}
.ls35{letter-spacing:16.796944px;}
.ls26{letter-spacing:16.856719px;}
.ls27{letter-spacing:16.916495px;}
.lsd{letter-spacing:16.976270px;}
.ls13{letter-spacing:17.693578px;}
.ls1{letter-spacing:17.935200px;}
.ls32{letter-spacing:18.231558px;}
.ls1a{letter-spacing:18.948865px;}
.ls29{letter-spacing:19.128192px;}
.ls15{letter-spacing:19.307519px;}
.ls25{letter-spacing:19.367294px;}
.ls31{letter-spacing:19.606397px;}
.ls2b{letter-spacing:19.965050px;}
.ls10{letter-spacing:20.024826px;}
.ls11{letter-spacing:20.084602px;}
.lse{letter-spacing:20.682358px;}
.ls18{letter-spacing:20.861684px;}
.ls19{letter-spacing:20.921460px;}
.ls21{letter-spacing:21.280114px;}
.ls20{letter-spacing:21.339889px;}
.ls2d{letter-spacing:21.997421px;}
.ls2e{letter-spacing:22.057196px;}
.ls22{letter-spacing:22.595177px;}
.ls17{letter-spacing:22.654952px;}
.ls1b{letter-spacing:23.133157px;}
.ls1c{letter-spacing:24.328669px;}
.ls2c{letter-spacing:26.600142px;}
.ls2f{letter-spacing:27.257674px;}
.ls30{letter-spacing:27.317449px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.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;}
}
.wsc{word-spacing:-22.718660px;}
.ws3a{word-spacing:-14.943900px;}
.wsa7{word-spacing:-13.449600px;}
.wsf{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.wsdb{word-spacing:-2.851315px;}
.wse0{word-spacing:-2.689920px;}
.ws74{word-spacing:-2.630126px;}
.ws91{word-spacing:-2.510575px;}
.ws25{word-spacing:-2.450800px;}
.ws5b{word-spacing:-2.271473px;}
.ws83{word-spacing:-2.211697px;}
.wsdf{word-spacing:-2.098138px;}
.wsd5{word-spacing:-1.990541px;}
.wsd4{word-spacing:-1.936742px;}
.ws32{word-spacing:-1.853044px;}
.ws31{word-spacing:-1.793268px;}
.ws85{word-spacing:-1.733492px;}
.ws5c{word-spacing:-1.613941px;}
.ws7d{word-spacing:-1.554166px;}
.ws90{word-spacing:-1.494390px;}
.ws51{word-spacing:-1.434614px;}
.ws8e{word-spacing:-1.374839px;}
.ws6c{word-spacing:-1.315063px;}
.wsd3{word-spacing:-1.291162px;}
.ws6e{word-spacing:-1.255288px;}
.ws6d{word-spacing:-1.195512px;}
.ws29{word-spacing:-1.016185px;}
.ws52{word-spacing:-0.956410px;}
.ws53{word-spacing:-0.896634px;}
.ws5d{word-spacing:-0.836858px;}
.ws4f{word-spacing:-0.777083px;}
.wsc7{word-spacing:-0.753178px;}
.ws7a{word-spacing:-0.717307px;}
.wscf{word-spacing:-0.699379px;}
.ws41{word-spacing:-0.657532px;}
.ws8b{word-spacing:-0.597756px;}
.ws9d{word-spacing:-0.537980px;}
.wsb5{word-spacing:-0.484186px;}
.ws3f{word-spacing:-0.418429px;}
.ws21{word-spacing:-0.358654px;}
.ws36{word-spacing:-0.298878px;}
.wsa8{word-spacing:-0.268992px;}
.ws23{word-spacing:-0.239102px;}
.wsa4{word-spacing:-0.215194px;}
.ws2a{word-spacing:-0.179327px;}
.wsac{word-spacing:-0.161395px;}
.ws30{word-spacing:-0.119551px;}
.ws12{word-spacing:-0.107597px;}
.ws96{word-spacing:-0.106250px;}
.ws97{word-spacing:-0.064697px;}
.ws3c{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.053798px;}
.wsc3{word-spacing:-0.012864px;}
.wsb0{word-spacing:-0.011846px;}
.wse6{word-spacing:-0.011222px;}
.wsd2{word-spacing:-0.011155px;}
.wsb8{word-spacing:-0.009302px;}
.wsd9{word-spacing:-0.008928px;}
.wse8{word-spacing:-0.007910px;}
.wse4{word-spacing:-0.007066px;}
.wscb{word-spacing:-0.006710px;}
.wsd0{word-spacing:-0.005971px;}
.wsbe{word-spacing:-0.005866px;}
.wsd6{word-spacing:-0.004800px;}
.wsd7{word-spacing:-0.003888px;}
.wsd{word-spacing:-0.003791px;}
.wsb1{word-spacing:-0.003302px;}
.ws3{word-spacing:-0.000779px;}
.wsca{word-spacing:-0.000221px;}
.ws0{word-spacing:0.000000px;}
.wsab{word-spacing:0.000134px;}
.ws2e{word-spacing:0.003599px;}
.wsad{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.wsae{word-spacing:0.107597px;}
.ws22{word-spacing:0.119551px;}
.ws16{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.wsa9{word-spacing:0.215194px;}
.ws2f{word-spacing:0.239102px;}
.ws1d{word-spacing:0.268992px;}
.ws9b{word-spacing:0.277802px;}
.ws4e{word-spacing:0.298878px;}
.ws1c{word-spacing:0.322790px;}
.ws47{word-spacing:0.358654px;}
.ws18{word-spacing:0.376589px;}
.ws48{word-spacing:0.418429px;}
.wsbf{word-spacing:0.430387px;}
.ws80{word-spacing:0.478205px;}
.wsdd{word-spacing:0.484186px;}
.ws9e{word-spacing:0.537980px;}
.ws9c{word-spacing:0.597756px;}
.wsb3{word-spacing:0.645581px;}
.ws8d{word-spacing:0.657532px;}
.ws4b{word-spacing:0.777083px;}
.ws4c{word-spacing:0.777125px;}
.ws60{word-spacing:0.836858px;}
.wsde{word-spacing:0.860774px;}
.ws2d{word-spacing:0.896634px;}
.ws5f{word-spacing:0.956410px;}
.ws4d{word-spacing:1.016185px;}
.ws71{word-spacing:1.075961px;}
.ws24{word-spacing:1.135736px;}
.ws44{word-spacing:1.195512px;}
.ws28{word-spacing:1.255288px;}
.ws43{word-spacing:1.315063px;}
.ws40{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws15{word-spacing:1.398758px;}
.ws8c{word-spacing:1.494390px;}
.wsc5{word-spacing:1.499922px;}
.wsc4{word-spacing:1.506355px;}
.ws88{word-spacing:1.554166px;}
.ws57{word-spacing:1.613941px;}
.ws42{word-spacing:1.673717px;}
.wsd8{word-spacing:1.721549px;}
.ws59{word-spacing:1.733492px;}
.ws35{word-spacing:1.793268px;}
.ws1b{word-spacing:1.829146px;}
.ws26{word-spacing:1.853044px;}
.wsc8{word-spacing:1.882944px;}
.ws62{word-spacing:1.972595px;}
.ws79{word-spacing:2.092146px;}
.ws45{word-spacing:2.151922px;}
.ws5a{word-spacing:2.211697px;}
.ws38{word-spacing:2.271473px;}
.wsbb{word-spacing:2.313331px;}
.ws3b{word-spacing:2.331248px;}
.ws27{word-spacing:2.391024px;}
.ws2{word-spacing:2.509901px;}
.ws63{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws69{word-spacing:2.570351px;}
.ws89{word-spacing:2.630126px;}
.wscc{word-spacing:2.636122px;}
.ws34{word-spacing:2.689902px;}
.wsdc{word-spacing:2.689920px;}
.ws39{word-spacing:2.749678px;}
.ws54{word-spacing:2.809453px;}
.wsc1{word-spacing:2.851315px;}
.ws65{word-spacing:2.869229px;}
.ws10{word-spacing:2.869236px;}
.ws94{word-spacing:2.929004px;}
.ws95{word-spacing:2.937238px;}
.ws78{word-spacing:2.988780px;}
.ws5e{word-spacing:3.048556px;}
.ws1a{word-spacing:3.066509px;}
.wsce{word-spacing:3.120307px;}
.ws98{word-spacing:3.168107px;}
.wsb6{word-spacing:3.174106px;}
.ws1e{word-spacing:3.219667px;}
.wse7{word-spacing:3.220819px;}
.wsd1{word-spacing:3.221357px;}
.wsb7{word-spacing:3.222758px;}
.wse5{word-spacing:3.223219px;}
.wscd{word-spacing:3.223402px;}
.wsa3{word-spacing:3.224822px;}
.wsda{word-spacing:3.225226px;}
.ws72{word-spacing:3.227882px;}
.wsa5{word-spacing:3.227904px;}
.wsb4{word-spacing:3.281702px;}
.ws56{word-spacing:3.287658px;}
.wsbc{word-spacing:3.335501px;}
.ws3d{word-spacing:3.347434px;}
.ws11{word-spacing:3.357576px;}
.wsbd{word-spacing:3.389299px;}
.wsa2{word-spacing:3.407209px;}
.wsc0{word-spacing:3.443098px;}
.wse9{word-spacing:3.496896px;}
.wsb2{word-spacing:3.550694px;}
.ws1f{word-spacing:3.586536px;}
.ws8f{word-spacing:3.646312px;}
.ws55{word-spacing:3.706087px;}
.ws7c{word-spacing:3.765863px;}
.wsaa{word-spacing:3.765888px;}
.ws19{word-spacing:3.819686px;}
.ws68{word-spacing:3.825638px;}
.ws67{word-spacing:3.885414px;}
.ws58{word-spacing:3.945190px;}
.wsa0{word-spacing:4.004965px;}
.ws99{word-spacing:4.064741px;}
.ws7f{word-spacing:4.124516px;}
.wsaf{word-spacing:4.196275px;}
.ws6f{word-spacing:4.244068px;}
.ws70{word-spacing:4.303843px;}
.wsc9{word-spacing:4.303872px;}
.ws86{word-spacing:4.363619px;}
.ws33{word-spacing:4.423394px;}
.ws77{word-spacing:4.602721px;}
.ws82{word-spacing:4.662497px;}
.ws87{word-spacing:4.722272px;}
.ws4a{word-spacing:4.819404px;}
.ws49{word-spacing:4.841824px;}
.ws92{word-spacing:4.901599px;}
.ws13{word-spacing:5.003251px;}
.ws66{word-spacing:5.021150px;}
.ws7e{word-spacing:5.140702px;}
.ws84{word-spacing:5.200477px;}
.wsb9{word-spacing:5.326042px;}
.ws6a{word-spacing:5.379804px;}
.ws46{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws9a{word-spacing:5.559131px;}
.ws17{word-spacing:5.648832px;}
.ws93{word-spacing:5.738458px;}
.ws76{word-spacing:5.858009px;}
.wse2{word-spacing:5.858580px;}
.wse1{word-spacing:5.864026px;}
.ws81{word-spacing:5.917784px;}
.ws75{word-spacing:5.977560px;}
.wsc2{word-spacing:6.133018px;}
.ws6b{word-spacing:6.156887px;}
.ws64{word-spacing:6.336214px;}
.ws9f{word-spacing:6.455765px;}
.wsc6{word-spacing:6.455808px;}
.ws8a{word-spacing:6.515540px;}
.ws20{word-spacing:7.053521px;}
.ws37{word-spacing:7.232848px;}
.wsa6{word-spacing:7.370381px;}
.ws61{word-spacing:7.531726px;}
.wsa1{word-spacing:7.591501px;}
.ws73{word-spacing:7.651277px;}
.ws3e{word-spacing:7.890379px;}
.ws50{word-spacing:8.129482px;}
.ws6{word-spacing:9.833058px;}
.ws7{word-spacing:11.841512px;}
.wsba{word-spacing:14.095181px;}
.wse3{word-spacing:15.171149px;}
.ws4{word-spacing:15.481836px;}
.ws7b{word-spacing:20.383480px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
._15{margin-left:-23.551586px;}
._1f{margin-left:-21.561163px;}
._5{margin-left:-7.531776px;}
._d{margin-left:-6.497665px;}
._0{margin-left:-5.397721px;}
._18{margin-left:-4.303843px;}
._2{margin-left:-3.096367px;}
._4{margin-left:-1.464498px;}
._6{width:2.825914px;}
._14{width:4.722264px;}
._16{width:7.301068px;}
._20{width:11.608513px;}
._1{width:12.971268px;}
._f{width:14.824386px;}
._b{width:16.647588px;}
._a{width:17.855215px;}
._7{width:19.797811px;}
._9{width:21.644838px;}
._1a{width:22.864163px;}
._e{width:23.868382px;}
._3{width:25.314894px;}
._17{width:27.377225px;}
._c{width:28.584745px;}
._12{width:30.575215px;}
._8{width:32.709427px;}
._1b{width:35.739738px;}
._19{width:36.881545px;}
._1d{width:38.764472px;}
._13{width:40.647408px;}
._1e{width:42.410784px;}
._10{width:905.194337px;}
._1c{width:2536.713300px;}
._11{width:2560.623300px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y34{bottom:9.233944px;}
.y33{bottom:26.903761px;}
.y62{bottom:31.890000px;}
.y4{bottom:97.125005px;}
.y31{bottom:104.646000px;}
.y61{bottom:105.384000px;}
.yec{bottom:114.664500px;}
.y135{bottom:115.068000px;}
.y16b{bottom:116.458500px;}
.y98{bottom:119.148000px;}
.y119{bottom:119.596500px;}
.y30{bottom:122.535000px;}
.y60{bottom:124.213500px;}
.y134{bottom:132.328500px;}
.yeb{bottom:133.494000px;}
.y16a{bottom:133.719000px;}
.yb8{bottom:137.080500px;}
.y97{bottom:137.977500px;}
.yf3{bottom:138.426000px;}
.y1f{bottom:139.264499px;}
.y2f{bottom:140.422500px;}
.y5f{bottom:143.041500px;}
.y133{bottom:149.589000px;}
.y169{bottom:150.978000px;}
.yea{bottom:152.323500px;}
.yb7{bottom:155.910000px;}
.y96{bottom:156.807000px;}
.yf2{bottom:157.255500px;}
.y2e{bottom:158.310000px;}
.y118{bottom:161.290500px;}
.y5e{bottom:161.871000px;}
.y132{bottom:166.849500px;}
.y168{bottom:168.238500px;}
.ye9{bottom:171.153000px;}
.yb6{bottom:174.739500px;}
.y95{bottom:175.636500px;}
.yf1{bottom:176.085000px;}
.y2d{bottom:176.199000px;}
.y5d{bottom:180.700500px;}
.y131{bottom:184.110000px;}
.y167{bottom:185.499000px;}
.ye8{bottom:189.982500px;}
.yb5{bottom:193.569000px;}
.y2c{bottom:194.086500px;}
.y94{bottom:194.466000px;}
.yf0{bottom:194.914500px;}
.y16{bottom:196.933500px;}
.y5c{bottom:199.530000px;}
.y130{bottom:201.370500px;}
.y166{bottom:202.759500px;}
.ye7{bottom:208.812000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y2b{bottom:211.974000px;}
.yb4{bottom:212.398500px;}
.y93{bottom:213.295500px;}
.yef{bottom:213.744000px;}
.y5b{bottom:218.359500px;}
.y12f{bottom:218.631000px;}
.y165{bottom:220.020000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.ye6{bottom:227.641500px;}
.y2a{bottom:229.863000px;}
.yb3{bottom:231.228000px;}
.y117{bottom:232.125000px;}
.yee{bottom:232.573500px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y12e{bottom:235.891500px;}
.y92{bottom:236.608500px;}
.y5a{bottom:237.189000px;}
.y164{bottom:237.280500px;}
.ye5{bottom:246.471000px;}
.yb2{bottom:250.057500px;}
.y116{bottom:250.954500px;}
.yed{bottom:251.403000px;}
.y12d{bottom:253.150500px;}
.y163{bottom:254.541000px;}
.y59{bottom:256.018500px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.ye4{bottom:265.300500px;}
.yb1{bottom:268.887000px;}
.y115{bottom:269.784000px;}
.y91{bottom:270.232500px;}
.y12c{bottom:270.411000px;}
.y162{bottom:271.801500px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y58{bottom:274.848000px;}
.ye3{bottom:284.130000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y12b{bottom:287.671500px;}
.yb0{bottom:287.716500px;}
.y114{bottom:288.613500px;}
.y90{bottom:289.062000px;}
.y57{bottom:293.677500px;}
.y29{bottom:299.890500px;}
.ye2{bottom:302.959500px;}
.y12a{bottom:304.932000px;}
.y161{bottom:306.321000px;}
.yaf{bottom:306.546000px;}
.y113{bottom:307.443000px;}
.y8f{bottom:307.891500px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y56{bottom:312.507000px;}
.y28{bottom:317.779500px;}
.ye1{bottom:321.789000px;}
.y129{bottom:322.192500px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y160{bottom:323.581500px;}
.yae{bottom:325.375500px;}
.y112{bottom:326.272500px;}
.y8e{bottom:326.719500px;}
.y55{bottom:331.336500px;}
.y27{bottom:335.667000px;}
.y128{bottom:339.453000px;}
.ye0{bottom:340.618500px;}
.y15f{bottom:340.842000px;}
.y111{bottom:345.102000px;}
.y8d{bottom:345.549000px;}
.yd{bottom:348.133500px;}
.yad{bottom:348.688500px;}
.y54{bottom:350.166000px;}
.y26{bottom:353.554500px;}
.y127{bottom:356.713500px;}
.y15e{bottom:358.102500px;}
.ydf{bottom:359.448000px;}
.y110{bottom:363.931500px;}
.y8c{bottom:364.378500px;}
.y53{bottom:368.995500px;}
.y126{bottom:373.974000px;}
.y15d{bottom:375.363000px;}
.yde{bottom:378.277500px;}
.y25{bottom:380.409000px;}
.yac{bottom:382.312500px;}
.y10f{bottom:382.761000px;}
.y8b{bottom:383.208000px;}
.yc{bottom:386.785499px;}
.y52{bottom:387.825000px;}
.y125{bottom:391.234500px;}
.y15c{bottom:392.623500px;}
.ydd{bottom:397.107000px;}
.y24{bottom:398.298000px;}
.yab{bottom:401.142000px;}
.y10e{bottom:401.589000px;}
.y8a{bottom:402.037500px;}
.y51{bottom:406.654500px;}
.yb{bottom:408.044999px;}
.y124{bottom:408.493500px;}
.y15b{bottom:409.884000px;}
.ydc{bottom:415.936500px;}
.y23{bottom:416.185500px;}
.yaa{bottom:419.971500px;}
.y10d{bottom:420.418500px;}
.y89{bottom:420.867000px;}
.y50{bottom:425.484000px;}
.y123{bottom:425.754000px;}
.y15a{bottom:427.144500px;}
.y22{bottom:434.073000px;}
.ydb{bottom:434.766000px;}
.ya9{bottom:438.801000px;}
.y10c{bottom:439.248000px;}
.y88{bottom:439.696500px;}
.y159{bottom:444.403500px;}
.y122{bottom:447.498000px;}
.y4f{bottom:448.797000px;}
.y21{bottom:451.962000px;}
.yda{bottom:453.595500px;}
.ya8{bottom:457.630500px;}
.y10b{bottom:458.077500px;}
.y87{bottom:458.526000px;}
.y158{bottom:461.664000px;}
.y20{bottom:469.849500px;}
.yd9{bottom:472.425000px;}
.ya7{bottom:476.458500px;}
.y10a{bottom:476.907000px;}
.y86{bottom:477.355500px;}
.y157{bottom:478.924500px;}
.y121{bottom:481.122000px;}
.yd8{bottom:491.254500px;}
.ya6{bottom:495.288000px;}
.y109{bottom:495.736500px;}
.y85{bottom:496.185000px;}
.y120{bottom:507.663000px;}
.yd7{bottom:510.082500px;}
.y156{bottom:513.445500px;}
.ya5{bottom:514.117500px;}
.y108{bottom:514.566000px;}
.y84{bottom:515.014500px;}
.ya{bottom:520.864502px;}
.y4e{bottom:523.947000px;}
.y11f{bottom:525.237000px;}
.yd6{bottom:528.912000px;}
.y155{bottom:530.706000px;}
.ya4{bottom:532.947000px;}
.y107{bottom:533.395500px;}
.y83{bottom:533.844000px;}
.y9{bottom:538.864499px;}
.yd5{bottom:547.741500px;}
.y154{bottom:547.966500px;}
.ya3{bottom:551.776500px;}
.y106{bottom:552.225000px;}
.y82{bottom:552.673500px;}
.y8{bottom:556.864499px;}
.y4d{bottom:561.336000px;}
.y153{bottom:565.227000px;}
.yd4{bottom:566.571000px;}
.y105{bottom:571.054500px;}
.y81{bottom:571.503000px;}
.ya2{bottom:575.089500px;}
.y11e{bottom:578.317500px;}
.y4c{bottom:580.794000px;}
.y152{bottom:582.487500px;}
.yd3{bottom:585.400500px;}
.y104{bottom:589.884000px;}
.y80{bottom:590.332500px;}
.y151{bottom:599.746500px;}
.y4b{bottom:600.250500px;}
.yd2{bottom:604.230000px;}
.y11d{bottom:604.858500px;}
.ya1{bottom:608.713500px;}
.y7f{bottom:609.162000px;}
.y150{bottom:617.007000px;}
.y4a{bottom:619.707000px;}
.yd1{bottom:623.059500px;}
.ya0{bottom:627.543000px;}
.y7e{bottom:627.991500px;}
.y11c{bottom:631.398000px;}
.y14f{bottom:634.267500px;}
.y49{bottom:639.165000px;}
.yd0{bottom:641.889000px;}
.y7{bottom:645.510000px;}
.y9f{bottom:646.372500px;}
.y7d{bottom:646.821000px;}
.y11b{bottom:648.973500px;}
.y14e{bottom:651.528000px;}
.y48{bottom:658.621500px;}
.ycf{bottom:660.718500px;}
.y9e{bottom:665.202000px;}
.y7c{bottom:665.650500px;}
.y6{bottom:666.771000px;}
.y14d{bottom:668.788500px;}
.y47{bottom:678.079500px;}
.yce{bottom:679.548000px;}
.y9d{bottom:684.031500px;}
.y7b{bottom:684.480000px;}
.y14c{bottom:686.049000px;}
.y46{bottom:697.536000px;}
.ycd{bottom:698.377500px;}
.y9c{bottom:702.861000px;}
.y7a{bottom:703.309500px;}
.y45{bottom:716.992500px;}
.ycc{bottom:717.207000px;}
.y14b{bottom:720.570000px;}
.y9b{bottom:721.690500px;}
.y79{bottom:722.139000px;}
.y5{bottom:726.298500px;}
.ycb{bottom:736.036500px;}
.y44{bottom:736.450500px;}
.y14a{bottom:737.829000px;}
.y9a{bottom:740.520000px;}
.y78{bottom:740.968500px;}
.y3{bottom:752.599495px;}
.yca{bottom:754.866000px;}
.y149{bottom:755.089500px;}
.y43{bottom:755.907000px;}
.y103{bottom:759.349500px;}
.y77{bottom:759.798000px;}
.y99{bottom:763.833000px;}
.y148{bottom:772.350000px;}
.yc9{bottom:773.695500px;}
.y42{bottom:775.363500px;}
.y102{bottom:778.179000px;}
.y76{bottom:778.627500px;}
.y16e{bottom:785.053500px;}
.y147{bottom:789.610500px;}
.yc8{bottom:792.525000px;}
.y41{bottom:794.821500px;}
.y101{bottom:797.008500px;}
.y75{bottom:797.457000px;}
.y16d{bottom:802.312500px;}
.y146{bottom:806.871000px;}
.yc7{bottom:811.354500px;}
.y40{bottom:814.278000px;}
.y100{bottom:815.838000px;}
.y74{bottom:816.286500px;}
.y16c{bottom:819.573000px;}
.y145{bottom:824.131500px;}
.yc6{bottom:830.184000px;}
.y3f{bottom:833.736000px;}
.yff{bottom:834.667500px;}
.y73{bottom:835.114500px;}
.y11a{bottom:839.149500px;}
.y144{bottom:841.392000px;}
.yc5{bottom:849.013500px;}
.y3e{bottom:853.192500px;}
.yfe{bottom:853.497000px;}
.y72{bottom:853.944000px;}
.y143{bottom:858.652500px;}
.yc4{bottom:867.843000px;}
.yfd{bottom:872.326500px;}
.y3d{bottom:872.649000px;}
.y71{bottom:872.773500px;}
.y142{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.yc3{bottom:886.672500px;}
.yfc{bottom:891.156000px;}
.y70{bottom:891.603000px;}
.y141{bottom:893.172000px;}
.yc2{bottom:909.984000px;}
.y6f{bottom:910.432500px;}
.y3c{bottom:911.235000px;}
.y3b{bottom:927.375000px;}
.y140{bottom:927.693000px;}
.yfb{bottom:928.813500px;}
.y6e{bottom:929.262000px;}
.yc1{bottom:943.608000px;}
.y13f{bottom:944.953500px;}
.yfa{bottom:947.643000px;}
.y3a{bottom:947.853000px;}
.y6d{bottom:948.091500px;}
.y39{bottom:959.653500px;}
.y13e{bottom:962.214000px;}
.yc0{bottom:962.437500px;}
.yf9{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y6c{bottom:966.921000px;}
.y13d{bottom:979.474500px;}
.y38{bottom:980.133000px;}
.ybf{bottom:981.267000px;}
.yf8{bottom:985.302000px;}
.y6b{bottom:985.750500px;}
.y13c{bottom:996.735000px;}
.ybe{bottom:1000.096500px;}
.yf7{bottom:1004.131500px;}
.y6a{bottom:1004.580000px;}
.y13b{bottom:1013.995500px;}
.ybd{bottom:1018.926000px;}
.yf6{bottom:1022.961000px;}
.y69{bottom:1023.409500px;}
.y37{bottom:1024.809000px;}
.y13a{bottom:1031.254500px;}
.ybc{bottom:1037.755500px;}
.yf5{bottom:1041.790500px;}
.y68{bottom:1042.239000px;}
.y139{bottom:1048.515000px;}
.ybb{bottom:1056.585000px;}
.y67{bottom:1061.068500px;}
.y36{bottom:1064.728500px;}
.yf4{bottom:1065.103500px;}
.y138{bottom:1065.775500px;}
.yba{bottom:1075.414500px;}
.y66{bottom:1079.898000px;}
.y137{bottom:1083.036000px;}
.y35{bottom:1092.972000px;}
.yb9{bottom:1094.244000px;}
.y65{bottom:1098.727500px;}
.y136{bottom:1100.296500px;}
.y64{bottom:1117.557000px;}
.y32{bottom:1136.460000px;}
.y63{bottom:1177.662000px;}
.h10{height:26.217754px;}
.h9{height:30.587087px;}
.h7{height:32.130000px;}
.h11{height:34.956859px;}
.ha{height:35.440852px;}
.h12{height:39.326630px;}
.h15{height:40.504048px;}
.h18{height:42.014630px;}
.h13{height:43.038432px;}
.h14{height:43.695964px;}
.h17{height:45.567245px;}
.h6{height:45.900000px;}
.h16{height:46.689964px;}
.h3{height:48.195000px;}
.hd{height:50.629933px;}
.hb{height:50.930649px;}
.hf{height:54.411312px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.he{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.xf{left:78.723000px;}
.xe{left:85.431000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.xd{left:247.348500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x8{left:269.914500px;}
.xa{left:281.479500px;}
.xc{left:371.535000px;}
.x3{left:454.959000px;}
.xb{left:618.460500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.661333pt;}
.v1{vertical-align:19.290667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000289pt;}
.ls3b{letter-spacing:0.000503pt;}
.ls3e{letter-spacing:0.000711pt;}
.ls3a{letter-spacing:0.001723pt;}
.ls1f{letter-spacing:0.002473pt;}
.ls40{letter-spacing:0.004267pt;}
.ls3d{letter-spacing:0.004486pt;}
.ls4{letter-spacing:10.626533pt;}
.ls41{letter-spacing:11.953843pt;}
.ls3c{letter-spacing:12.043618pt;}
.ls38{letter-spacing:12.220789pt;}
.ls37{letter-spacing:12.433325pt;}
.ls36{letter-spacing:12.486459pt;}
.ls23{letter-spacing:12.645860pt;}
.ls16{letter-spacing:12.752128pt;}
.lsa{letter-spacing:12.805262pt;}
.lsc{letter-spacing:12.858396pt;}
.ls9{letter-spacing:12.964663pt;}
.ls2a{letter-spacing:13.017797pt;}
.lsb{letter-spacing:13.070931pt;}
.ls6{letter-spacing:13.124065pt;}
.ls14{letter-spacing:13.177199pt;}
.lsf{letter-spacing:13.230333pt;}
.ls5{letter-spacing:13.283467pt;}
.ls28{letter-spacing:13.336601pt;}
.ls12{letter-spacing:13.389734pt;}
.ls24{letter-spacing:13.442868pt;}
.ls8{letter-spacing:13.496002pt;}
.ls7{letter-spacing:13.549136pt;}
.ls1d{letter-spacing:13.974207pt;}
.ls1e{letter-spacing:14.027341pt;}
.ls33{letter-spacing:14.558679pt;}
.ls3f{letter-spacing:14.763046pt;}
.ls34{letter-spacing:14.877483pt;}
.ls35{letter-spacing:14.930617pt;}
.ls26{letter-spacing:14.983750pt;}
.ls27{letter-spacing:15.036884pt;}
.lsd{letter-spacing:15.090018pt;}
.ls13{letter-spacing:15.727625pt;}
.ls1{letter-spacing:15.942400pt;}
.ls32{letter-spacing:16.205829pt;}
.ls1a{letter-spacing:16.843436pt;}
.ls29{letter-spacing:17.002837pt;}
.ls15{letter-spacing:17.162239pt;}
.ls25{letter-spacing:17.215373pt;}
.ls31{letter-spacing:17.427908pt;}
.ls2b{letter-spacing:17.746711pt;}
.ls10{letter-spacing:17.799845pt;}
.ls11{letter-spacing:17.852979pt;}
.lse{letter-spacing:18.384318pt;}
.ls18{letter-spacing:18.543719pt;}
.ls19{letter-spacing:18.596853pt;}
.ls21{letter-spacing:18.915657pt;}
.ls20{letter-spacing:18.968790pt;}
.ls2d{letter-spacing:19.553263pt;}
.ls2e{letter-spacing:19.606397pt;}
.ls22{letter-spacing:20.084602pt;}
.ls17{letter-spacing:20.137735pt;}
.ls1b{letter-spacing:20.562806pt;}
.ls1c{letter-spacing:21.625484pt;}
.ls2c{letter-spacing:23.644571pt;}
.ls2f{letter-spacing:24.229043pt;}
.ls30{letter-spacing:24.282177pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.wsc{word-spacing:-20.194365pt;}
.ws3a{word-spacing:-13.283467pt;}
.wsa7{word-spacing:-11.955200pt;}
.wsf{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.wsdb{word-spacing:-2.534502pt;}
.wse0{word-spacing:-2.391040pt;}
.ws74{word-spacing:-2.337890pt;}
.ws91{word-spacing:-2.231622pt;}
.ws25{word-spacing:-2.178489pt;}
.ws5b{word-spacing:-2.019087pt;}
.ws83{word-spacing:-1.965953pt;}
.wsdf{word-spacing:-1.865011pt;}
.wsd5{word-spacing:-1.769370pt;}
.wsd4{word-spacing:-1.721549pt;}
.ws32{word-spacing:-1.647150pt;}
.ws31{word-spacing:-1.594016pt;}
.ws85{word-spacing:-1.540882pt;}
.ws5c{word-spacing:-1.434614pt;}
.ws7d{word-spacing:-1.381481pt;}
.ws90{word-spacing:-1.328347pt;}
.ws51{word-spacing:-1.275213pt;}
.ws8e{word-spacing:-1.222079pt;}
.ws6c{word-spacing:-1.168945pt;}
.wsd3{word-spacing:-1.147699pt;}
.ws6e{word-spacing:-1.115811pt;}
.ws6d{word-spacing:-1.062677pt;}
.ws29{word-spacing:-0.903276pt;}
.ws52{word-spacing:-0.850142pt;}
.ws53{word-spacing:-0.797008pt;}
.ws5d{word-spacing:-0.743874pt;}
.ws4f{word-spacing:-0.690740pt;}
.wsc7{word-spacing:-0.669491pt;}
.ws7a{word-spacing:-0.637606pt;}
.wscf{word-spacing:-0.621670pt;}
.ws41{word-spacing:-0.584473pt;}
.ws8b{word-spacing:-0.531339pt;}
.ws9d{word-spacing:-0.478205pt;}
.wsb5{word-spacing:-0.430387pt;}
.ws3f{word-spacing:-0.371937pt;}
.ws21{word-spacing:-0.318803pt;}
.ws36{word-spacing:-0.265669pt;}
.wsa8{word-spacing:-0.239104pt;}
.ws23{word-spacing:-0.212535pt;}
.wsa4{word-spacing:-0.191283pt;}
.ws2a{word-spacing:-0.159402pt;}
.wsac{word-spacing:-0.143462pt;}
.ws30{word-spacing:-0.106268pt;}
.ws12{word-spacing:-0.095642pt;}
.ws96{word-spacing:-0.094445pt;}
.ws97{word-spacing:-0.057508pt;}
.ws3c{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.047821pt;}
.wsc3{word-spacing:-0.011435pt;}
.wsb0{word-spacing:-0.010530pt;}
.wse6{word-spacing:-0.009975pt;}
.wsd2{word-spacing:-0.009916pt;}
.wsb8{word-spacing:-0.008269pt;}
.wsd9{word-spacing:-0.007936pt;}
.wse8{word-spacing:-0.007031pt;}
.wse4{word-spacing:-0.006281pt;}
.wscb{word-spacing:-0.005965pt;}
.wsd0{word-spacing:-0.005308pt;}
.wsbe{word-spacing:-0.005214pt;}
.wsd6{word-spacing:-0.004267pt;}
.wsd7{word-spacing:-0.003456pt;}
.wsd{word-spacing:-0.003370pt;}
.wsb1{word-spacing:-0.002935pt;}
.ws3{word-spacing:-0.000692pt;}
.wsca{word-spacing:-0.000196pt;}
.ws0{word-spacing:0.000000pt;}
.wsab{word-spacing:0.000119pt;}
.ws2e{word-spacing:0.003199pt;}
.wsad{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.wsae{word-spacing:0.095642pt;}
.ws22{word-spacing:0.106268pt;}
.ws16{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.wsa9{word-spacing:0.191283pt;}
.ws2f{word-spacing:0.212535pt;}
.ws1d{word-spacing:0.239104pt;}
.ws9b{word-spacing:0.246935pt;}
.ws4e{word-spacing:0.265669pt;}
.ws1c{word-spacing:0.286925pt;}
.ws47{word-spacing:0.318803pt;}
.ws18{word-spacing:0.334746pt;}
.ws48{word-spacing:0.371937pt;}
.wsbf{word-spacing:0.382566pt;}
.ws80{word-spacing:0.425071pt;}
.wsdd{word-spacing:0.430387pt;}
.ws9e{word-spacing:0.478205pt;}
.ws9c{word-spacing:0.531339pt;}
.wsb3{word-spacing:0.573850pt;}
.ws8d{word-spacing:0.584473pt;}
.ws4b{word-spacing:0.690740pt;}
.ws4c{word-spacing:0.690777pt;}
.ws60{word-spacing:0.743874pt;}
.wsde{word-spacing:0.765133pt;}
.ws2d{word-spacing:0.797008pt;}
.ws5f{word-spacing:0.850142pt;}
.ws4d{word-spacing:0.903276pt;}
.ws71{word-spacing:0.956410pt;}
.ws24{word-spacing:1.009543pt;}
.ws44{word-spacing:1.062677pt;}
.ws28{word-spacing:1.115811pt;}
.ws43{word-spacing:1.168945pt;}
.ws40{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws15{word-spacing:1.243341pt;}
.ws8c{word-spacing:1.328347pt;}
.wsc5{word-spacing:1.333264pt;}
.wsc4{word-spacing:1.338982pt;}
.ws88{word-spacing:1.381481pt;}
.ws57{word-spacing:1.434614pt;}
.ws42{word-spacing:1.487748pt;}
.wsd8{word-spacing:1.530266pt;}
.ws59{word-spacing:1.540882pt;}
.ws35{word-spacing:1.594016pt;}
.ws1b{word-spacing:1.625907pt;}
.ws26{word-spacing:1.647150pt;}
.wsc8{word-spacing:1.673728pt;}
.ws62{word-spacing:1.753418pt;}
.ws79{word-spacing:1.859685pt;}
.ws45{word-spacing:1.912819pt;}
.ws5a{word-spacing:1.965953pt;}
.ws38{word-spacing:2.019087pt;}
.wsbb{word-spacing:2.056294pt;}
.ws3b{word-spacing:2.072221pt;}
.ws27{word-spacing:2.125355pt;}
.ws2{word-spacing:2.231023pt;}
.ws63{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws69{word-spacing:2.284756pt;}
.ws89{word-spacing:2.337890pt;}
.wscc{word-spacing:2.343219pt;}
.ws34{word-spacing:2.391024pt;}
.wsdc{word-spacing:2.391040pt;}
.ws39{word-spacing:2.444158pt;}
.ws54{word-spacing:2.497292pt;}
.wsc1{word-spacing:2.534502pt;}
.ws65{word-spacing:2.550426pt;}
.ws10{word-spacing:2.550432pt;}
.ws94{word-spacing:2.603559pt;}
.ws95{word-spacing:2.610878pt;}
.ws78{word-spacing:2.656693pt;}
.ws5e{word-spacing:2.709827pt;}
.ws1a{word-spacing:2.725786pt;}
.wsce{word-spacing:2.773606pt;}
.ws98{word-spacing:2.816095pt;}
.wsb6{word-spacing:2.821427pt;}
.ws1e{word-spacing:2.861926pt;}
.wse7{word-spacing:2.862950pt;}
.wsd1{word-spacing:2.863428pt;}
.wsb7{word-spacing:2.864674pt;}
.wse5{word-spacing:2.865084pt;}
.wscd{word-spacing:2.865246pt;}
.wsa3{word-spacing:2.866509pt;}
.wsda{word-spacing:2.866867pt;}
.ws72{word-spacing:2.869229pt;}
.wsa5{word-spacing:2.869248pt;}
.wsb4{word-spacing:2.917069pt;}
.ws56{word-spacing:2.922363pt;}
.wsbc{word-spacing:2.964890pt;}
.ws3d{word-spacing:2.975497pt;}
.ws11{word-spacing:2.984512pt;}
.wsbd{word-spacing:3.012710pt;}
.wsa2{word-spacing:3.028630pt;}
.wsc0{word-spacing:3.060531pt;}
.wse9{word-spacing:3.108352pt;}
.wsb2{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.188032pt;}
.ws8f{word-spacing:3.241166pt;}
.ws55{word-spacing:3.294300pt;}
.ws7c{word-spacing:3.347434pt;}
.wsaa{word-spacing:3.347456pt;}
.ws19{word-spacing:3.395277pt;}
.ws68{word-spacing:3.400567pt;}
.ws67{word-spacing:3.453701pt;}
.ws58{word-spacing:3.506835pt;}
.wsa0{word-spacing:3.559969pt;}
.ws99{word-spacing:3.613103pt;}
.ws7f{word-spacing:3.666237pt;}
.wsaf{word-spacing:3.730022pt;}
.ws6f{word-spacing:3.772505pt;}
.ws70{word-spacing:3.825638pt;}
.wsc9{word-spacing:3.825664pt;}
.ws86{word-spacing:3.878772pt;}
.ws33{word-spacing:3.931906pt;}
.ws77{word-spacing:4.091308pt;}
.ws82{word-spacing:4.144442pt;}
.ws87{word-spacing:4.197575pt;}
.ws4a{word-spacing:4.283915pt;}
.ws49{word-spacing:4.303843pt;}
.ws92{word-spacing:4.356977pt;}
.ws13{word-spacing:4.447334pt;}
.ws66{word-spacing:4.463245pt;}
.ws7e{word-spacing:4.569513pt;}
.ws84{word-spacing:4.622646pt;}
.wsb9{word-spacing:4.734259pt;}
.ws6a{word-spacing:4.782048pt;}
.ws46{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws9a{word-spacing:4.941450pt;}
.ws17{word-spacing:5.021184pt;}
.ws93{word-spacing:5.100851pt;}
.ws76{word-spacing:5.207119pt;}
.wse2{word-spacing:5.207627pt;}
.wse1{word-spacing:5.212467pt;}
.ws81{word-spacing:5.260253pt;}
.ws75{word-spacing:5.313387pt;}
.wsc2{word-spacing:5.451571pt;}
.ws6b{word-spacing:5.472788pt;}
.ws64{word-spacing:5.632190pt;}
.ws9f{word-spacing:5.738458pt;}
.wsc6{word-spacing:5.738496pt;}
.ws8a{word-spacing:5.791591pt;}
.ws20{word-spacing:6.269796pt;}
.ws37{word-spacing:6.429198pt;}
.wsa6{word-spacing:6.551450pt;}
.ws61{word-spacing:6.694867pt;}
.wsa1{word-spacing:6.748001pt;}
.ws73{word-spacing:6.801135pt;}
.ws3e{word-spacing:7.013670pt;}
.ws50{word-spacing:7.226206pt;}
.ws6{word-spacing:8.740496pt;}
.ws7{word-spacing:10.525789pt;}
.wsba{word-spacing:12.529050pt;}
.wse3{word-spacing:13.485466pt;}
.ws4{word-spacing:13.761632pt;}
.ws7b{word-spacing:18.118649pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
._15{margin-left:-20.934743pt;}
._1f{margin-left:-19.165478pt;}
._5{margin-left:-6.694912pt;}
._d{margin-left:-5.775702pt;}
._0{margin-left:-4.797974pt;}
._18{margin-left:-3.825638pt;}
._2{margin-left:-2.752326pt;}
._4{margin-left:-1.301776pt;}
._6{width:2.511923pt;}
._14{width:4.197568pt;}
._16{width:6.489838pt;}
._20{width:10.318678pt;}
._1{width:11.530016pt;}
._f{width:13.177232pt;}
._b{width:14.797856pt;}
._a{width:15.871302pt;}
._7{width:17.598054pt;}
._9{width:19.239856pt;}
._1a{width:20.323700pt;}
._e{width:21.216339pt;}
._3{width:22.502128pt;}
._17{width:24.335311pt;}
._c{width:25.408662pt;}
._12{width:27.177969pt;}
._8{width:29.075046pt;}
._1b{width:31.768656pt;}
._19{width:32.783596pt;}
._1d{width:34.457309pt;}
._13{width:36.131029pt;}
._1e{width:37.698475pt;}
._10{width:804.617189pt;}
._1c{width:2254.856267pt;}
._11{width:2276.109600pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:8.207950pt;}
.y33{bottom:23.914454pt;}
.y62{bottom:28.346667pt;}
.y4{bottom:86.333337pt;}
.y31{bottom:93.018667pt;}
.y61{bottom:93.674667pt;}
.yec{bottom:101.924000pt;}
.y135{bottom:102.282667pt;}
.y16b{bottom:103.518667pt;}
.y98{bottom:105.909333pt;}
.y119{bottom:106.308000pt;}
.y30{bottom:108.920000pt;}
.y60{bottom:110.412000pt;}
.y134{bottom:117.625333pt;}
.yeb{bottom:118.661333pt;}
.y16a{bottom:118.861333pt;}
.yb8{bottom:121.849333pt;}
.y97{bottom:122.646667pt;}
.yf3{bottom:123.045333pt;}
.y1f{bottom:123.790666pt;}
.y2f{bottom:124.820000pt;}
.y5f{bottom:127.148000pt;}
.y133{bottom:132.968000pt;}
.y169{bottom:134.202667pt;}
.yea{bottom:135.398667pt;}
.yb7{bottom:138.586667pt;}
.y96{bottom:139.384000pt;}
.yf2{bottom:139.782667pt;}
.y2e{bottom:140.720000pt;}
.y118{bottom:143.369333pt;}
.y5e{bottom:143.885333pt;}
.y132{bottom:148.310667pt;}
.y168{bottom:149.545333pt;}
.ye9{bottom:152.136000pt;}
.yb6{bottom:155.324000pt;}
.y95{bottom:156.121333pt;}
.yf1{bottom:156.520000pt;}
.y2d{bottom:156.621333pt;}
.y5d{bottom:160.622667pt;}
.y131{bottom:163.653333pt;}
.y167{bottom:164.888000pt;}
.ye8{bottom:168.873333pt;}
.yb5{bottom:172.061333pt;}
.y2c{bottom:172.521333pt;}
.y94{bottom:172.858667pt;}
.yf0{bottom:173.257333pt;}
.y16{bottom:175.052000pt;}
.y5c{bottom:177.360000pt;}
.y130{bottom:178.996000pt;}
.y166{bottom:180.230667pt;}
.ye7{bottom:185.610667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y2b{bottom:188.421333pt;}
.yb4{bottom:188.798667pt;}
.y93{bottom:189.596000pt;}
.yef{bottom:189.994667pt;}
.y5b{bottom:194.097333pt;}
.y12f{bottom:194.338667pt;}
.y165{bottom:195.573333pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.ye6{bottom:202.348000pt;}
.y2a{bottom:204.322667pt;}
.yb3{bottom:205.536000pt;}
.y117{bottom:206.333333pt;}
.yee{bottom:206.732000pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y12e{bottom:209.681333pt;}
.y92{bottom:210.318667pt;}
.y5a{bottom:210.834667pt;}
.y164{bottom:210.916000pt;}
.ye5{bottom:219.085333pt;}
.yb2{bottom:222.273333pt;}
.y116{bottom:223.070667pt;}
.yed{bottom:223.469333pt;}
.y12d{bottom:225.022667pt;}
.y163{bottom:226.258667pt;}
.y59{bottom:227.572000pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.ye4{bottom:235.822667pt;}
.yb1{bottom:239.010667pt;}
.y115{bottom:239.808000pt;}
.y91{bottom:240.206667pt;}
.y12c{bottom:240.365333pt;}
.y162{bottom:241.601333pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y58{bottom:244.309333pt;}
.ye3{bottom:252.560000pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y12b{bottom:255.708000pt;}
.yb0{bottom:255.748000pt;}
.y114{bottom:256.545333pt;}
.y90{bottom:256.944000pt;}
.y57{bottom:261.046667pt;}
.y29{bottom:266.569333pt;}
.ye2{bottom:269.297333pt;}
.y12a{bottom:271.050667pt;}
.y161{bottom:272.285333pt;}
.yaf{bottom:272.485333pt;}
.y113{bottom:273.282667pt;}
.y8f{bottom:273.681333pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y56{bottom:277.784000pt;}
.y28{bottom:282.470667pt;}
.ye1{bottom:286.034667pt;}
.y129{bottom:286.393333pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y160{bottom:287.628000pt;}
.yae{bottom:289.222667pt;}
.y112{bottom:290.020000pt;}
.y8e{bottom:290.417333pt;}
.y55{bottom:294.521333pt;}
.y27{bottom:298.370667pt;}
.y128{bottom:301.736000pt;}
.ye0{bottom:302.772000pt;}
.y15f{bottom:302.970667pt;}
.y111{bottom:306.757333pt;}
.y8d{bottom:307.154667pt;}
.yd{bottom:309.452000pt;}
.yad{bottom:309.945333pt;}
.y54{bottom:311.258667pt;}
.y26{bottom:314.270667pt;}
.y127{bottom:317.078667pt;}
.y15e{bottom:318.313333pt;}
.ydf{bottom:319.509333pt;}
.y110{bottom:323.494667pt;}
.y8c{bottom:323.892000pt;}
.y53{bottom:327.996000pt;}
.y126{bottom:332.421333pt;}
.y15d{bottom:333.656000pt;}
.yde{bottom:336.246667pt;}
.y25{bottom:338.141333pt;}
.yac{bottom:339.833333pt;}
.y10f{bottom:340.232000pt;}
.y8b{bottom:340.629333pt;}
.yc{bottom:343.809333pt;}
.y52{bottom:344.733333pt;}
.y125{bottom:347.764000pt;}
.y15c{bottom:348.998667pt;}
.ydd{bottom:352.984000pt;}
.y24{bottom:354.042667pt;}
.yab{bottom:356.570667pt;}
.y10e{bottom:356.968000pt;}
.y8a{bottom:357.366667pt;}
.y51{bottom:361.470667pt;}
.yb{bottom:362.706666pt;}
.y124{bottom:363.105333pt;}
.y15b{bottom:364.341333pt;}
.ydc{bottom:369.721333pt;}
.y23{bottom:369.942667pt;}
.yaa{bottom:373.308000pt;}
.y10d{bottom:373.705333pt;}
.y89{bottom:374.104000pt;}
.y50{bottom:378.208000pt;}
.y123{bottom:378.448000pt;}
.y15a{bottom:379.684000pt;}
.y22{bottom:385.842667pt;}
.ydb{bottom:386.458667pt;}
.ya9{bottom:390.045333pt;}
.y10c{bottom:390.442667pt;}
.y88{bottom:390.841333pt;}
.y159{bottom:395.025333pt;}
.y122{bottom:397.776000pt;}
.y4f{bottom:398.930667pt;}
.y21{bottom:401.744000pt;}
.yda{bottom:403.196000pt;}
.ya8{bottom:406.782667pt;}
.y10b{bottom:407.180000pt;}
.y87{bottom:407.578667pt;}
.y158{bottom:410.368000pt;}
.y20{bottom:417.644000pt;}
.yd9{bottom:419.933333pt;}
.ya7{bottom:423.518667pt;}
.y10a{bottom:423.917333pt;}
.y86{bottom:424.316000pt;}
.y157{bottom:425.710667pt;}
.y121{bottom:427.664000pt;}
.yd8{bottom:436.670667pt;}
.ya6{bottom:440.256000pt;}
.y109{bottom:440.654667pt;}
.y85{bottom:441.053333pt;}
.y120{bottom:451.256000pt;}
.yd7{bottom:453.406667pt;}
.y156{bottom:456.396000pt;}
.ya5{bottom:456.993333pt;}
.y108{bottom:457.392000pt;}
.y84{bottom:457.790667pt;}
.ya{bottom:462.990669pt;}
.y4e{bottom:465.730667pt;}
.y11f{bottom:466.877333pt;}
.yd6{bottom:470.144000pt;}
.y155{bottom:471.738667pt;}
.ya4{bottom:473.730667pt;}
.y107{bottom:474.129333pt;}
.y83{bottom:474.528000pt;}
.y9{bottom:478.990666pt;}
.yd5{bottom:486.881333pt;}
.y154{bottom:487.081333pt;}
.ya3{bottom:490.468000pt;}
.y106{bottom:490.866667pt;}
.y82{bottom:491.265333pt;}
.y8{bottom:494.990666pt;}
.y4d{bottom:498.965333pt;}
.y153{bottom:502.424000pt;}
.yd4{bottom:503.618667pt;}
.y105{bottom:507.604000pt;}
.y81{bottom:508.002667pt;}
.ya2{bottom:511.190667pt;}
.y11e{bottom:514.060000pt;}
.y4c{bottom:516.261333pt;}
.y152{bottom:517.766667pt;}
.yd3{bottom:520.356000pt;}
.y104{bottom:524.341333pt;}
.y80{bottom:524.740000pt;}
.y151{bottom:533.108000pt;}
.y4b{bottom:533.556000pt;}
.yd2{bottom:537.093333pt;}
.y11d{bottom:537.652000pt;}
.ya1{bottom:541.078667pt;}
.y7f{bottom:541.477333pt;}
.y150{bottom:548.450667pt;}
.y4a{bottom:550.850667pt;}
.yd1{bottom:553.830667pt;}
.ya0{bottom:557.816000pt;}
.y7e{bottom:558.214667pt;}
.y11c{bottom:561.242667pt;}
.y14f{bottom:563.793333pt;}
.y49{bottom:568.146667pt;}
.yd0{bottom:570.568000pt;}
.y7{bottom:573.786667pt;}
.y9f{bottom:574.553333pt;}
.y7d{bottom:574.952000pt;}
.y11b{bottom:576.865333pt;}
.y14e{bottom:579.136000pt;}
.y48{bottom:585.441333pt;}
.ycf{bottom:587.305333pt;}
.y9e{bottom:591.290667pt;}
.y7c{bottom:591.689333pt;}
.y6{bottom:592.685334pt;}
.y14d{bottom:594.478667pt;}
.y47{bottom:602.737333pt;}
.yce{bottom:604.042667pt;}
.y9d{bottom:608.028000pt;}
.y7b{bottom:608.426667pt;}
.y14c{bottom:609.821333pt;}
.y46{bottom:620.032000pt;}
.ycd{bottom:620.780000pt;}
.y9c{bottom:624.765333pt;}
.y7a{bottom:625.164000pt;}
.y45{bottom:637.326667pt;}
.ycc{bottom:637.517333pt;}
.y14b{bottom:640.506667pt;}
.y9b{bottom:641.502667pt;}
.y79{bottom:641.901333pt;}
.y5{bottom:645.598667pt;}
.ycb{bottom:654.254667pt;}
.y44{bottom:654.622667pt;}
.y14a{bottom:655.848000pt;}
.y9a{bottom:658.240000pt;}
.y78{bottom:658.638667pt;}
.y3{bottom:668.977329pt;}
.yca{bottom:670.992000pt;}
.y149{bottom:671.190667pt;}
.y43{bottom:671.917333pt;}
.y103{bottom:674.977333pt;}
.y77{bottom:675.376000pt;}
.y99{bottom:678.962667pt;}
.y148{bottom:686.533333pt;}
.yc9{bottom:687.729333pt;}
.y42{bottom:689.212000pt;}
.y102{bottom:691.714667pt;}
.y76{bottom:692.113333pt;}
.y16e{bottom:697.825333pt;}
.y147{bottom:701.876000pt;}
.yc8{bottom:704.466667pt;}
.y41{bottom:706.508000pt;}
.y101{bottom:708.452000pt;}
.y75{bottom:708.850667pt;}
.y16d{bottom:713.166667pt;}
.y146{bottom:717.218667pt;}
.yc7{bottom:721.204000pt;}
.y40{bottom:723.802667pt;}
.y100{bottom:725.189333pt;}
.y74{bottom:725.588000pt;}
.y16c{bottom:728.509333pt;}
.y145{bottom:732.561333pt;}
.yc6{bottom:737.941333pt;}
.y3f{bottom:741.098667pt;}
.yff{bottom:741.926667pt;}
.y73{bottom:742.324000pt;}
.y11a{bottom:745.910667pt;}
.y144{bottom:747.904000pt;}
.yc5{bottom:754.678667pt;}
.y3e{bottom:758.393333pt;}
.yfe{bottom:758.664000pt;}
.y72{bottom:759.061333pt;}
.y143{bottom:763.246667pt;}
.yc4{bottom:771.416000pt;}
.yfd{bottom:775.401333pt;}
.y3d{bottom:775.688000pt;}
.y71{bottom:775.798667pt;}
.y142{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.yc3{bottom:788.153333pt;}
.yfc{bottom:792.138667pt;}
.y70{bottom:792.536000pt;}
.y141{bottom:793.930667pt;}
.yc2{bottom:808.874667pt;}
.y6f{bottom:809.273333pt;}
.y3c{bottom:809.986667pt;}
.y3b{bottom:824.333333pt;}
.y140{bottom:824.616000pt;}
.yfb{bottom:825.612000pt;}
.y6e{bottom:826.010667pt;}
.yc1{bottom:838.762667pt;}
.y13f{bottom:839.958667pt;}
.yfa{bottom:842.349333pt;}
.y3a{bottom:842.536000pt;}
.y6d{bottom:842.748000pt;}
.y39{bottom:853.025333pt;}
.y13e{bottom:855.301333pt;}
.yc0{bottom:855.500000pt;}
.yf9{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y6c{bottom:859.485333pt;}
.y13d{bottom:870.644000pt;}
.y38{bottom:871.229333pt;}
.ybf{bottom:872.237333pt;}
.yf8{bottom:875.824000pt;}
.y6b{bottom:876.222667pt;}
.y13c{bottom:885.986667pt;}
.ybe{bottom:888.974667pt;}
.yf7{bottom:892.561333pt;}
.y6a{bottom:892.960000pt;}
.y13b{bottom:901.329333pt;}
.ybd{bottom:905.712000pt;}
.yf6{bottom:909.298667pt;}
.y69{bottom:909.697333pt;}
.y37{bottom:910.941333pt;}
.y13a{bottom:916.670667pt;}
.ybc{bottom:922.449333pt;}
.yf5{bottom:926.036000pt;}
.y68{bottom:926.434667pt;}
.y139{bottom:932.013333pt;}
.ybb{bottom:939.186667pt;}
.y67{bottom:943.172000pt;}
.y36{bottom:946.425333pt;}
.yf4{bottom:946.758667pt;}
.y138{bottom:947.356000pt;}
.yba{bottom:955.924000pt;}
.y66{bottom:959.909333pt;}
.y137{bottom:962.698667pt;}
.y35{bottom:971.530667pt;}
.yb9{bottom:972.661333pt;}
.y65{bottom:976.646667pt;}
.y136{bottom:978.041333pt;}
.y64{bottom:993.384000pt;}
.y32{bottom:1010.186667pt;}
.y63{bottom:1046.810667pt;}
.h10{height:23.304670pt;}
.h9{height:27.188522pt;}
.h7{height:28.560000pt;}
.h11{height:31.072763pt;}
.ha{height:31.502979pt;}
.h12{height:34.957005pt;}
.h15{height:36.003598pt;}
.h18{height:37.346338pt;}
.h13{height:38.256384pt;}
.h14{height:38.840857pt;}
.h17{height:40.504218pt;}
.h6{height:40.800000pt;}
.h16{height:41.502190pt;}
.h3{height:42.840000pt;}
.hd{height:45.004385pt;}
.hb{height:45.271688pt;}
.hf{height:48.365611pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.he{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.xf{left:69.976000pt;}
.xe{left:75.938667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.xd{left:219.865333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x8{left:239.924000pt;}
.xa{left:250.204000pt;}
.xc{left:330.253333pt;}
.x3{left:404.408000pt;}
.xb{left:549.742667pt;}
}




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