
    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_0f29f19a3b4bd4d8b0438a81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_7a222d60f8cf25ff49ba800b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_c03aa30a6c3a959a4a9c5a87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_f806edd68e8ff53b61bbdc5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.175000;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_93e590941c46c72d3db805f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;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_afc70bca208c8ea53de58e66.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_1aff8e6ffb928cc1230cb205.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_e3e17277006df03e7f739842.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.482000;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_1a1384792ba26e3e4d207a2f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.726000;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;}
.m5{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);}
.me{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);}
.ma{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);}
.m22{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);}
.m1e{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);}
.m14{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);}
.m25{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);}
.m1f{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);}
.m24{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);}
.mb{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);}
.m23{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.md{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);}
.m19{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);}
.m28{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);}
.m15{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);}
.m1a{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);}
.m27{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);}
.m1d{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);}
.m1b{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);}
.m7{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);}
.m16{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);}
.m4{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);}
.mc{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);}
.m1c{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);}
.m6{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.mf{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);}
.m2a{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);}
.m20{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);}
.m11{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);}
.m2{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);}
.m17{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);}
.m18{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);}
.m1{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m21{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);}
.m3{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);}
.m10{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);}
.v5{vertical-align:-60.258000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.924000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:30.036000px;}
.v7{vertical-align:32.880000px;}
.v6{vertical-align:60.072000px;}
.lsb{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000422px;}
.ls1a{letter-spacing:0.000901px;}
.lsa{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.lse{letter-spacing:3.559200px;}
.ls1{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.954850px;}
.ls18{letter-spacing:13.448400px;}
.ls17{letter-spacing:13.454400px;}
.ls19{letter-spacing:13.532218px;}
.ls16{letter-spacing:14.944766px;}
.ls13{letter-spacing:15.062337px;}
.ls12{letter-spacing:15.103476px;}
.ls11{letter-spacing:15.109524px;}
.lsc{letter-spacing:15.178140px;}
.ls7{letter-spacing:15.546913px;}
.lsd{letter-spacing:16.958884px;}
.lsf{letter-spacing:17.155597px;}
.ls8{letter-spacing:17.558678px;}
.ls14{letter-spacing:18.923590px;}
.ls15{letter-spacing:18.929472px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls4{letter-spacing:72.355200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-89.039566px;}
.ws59{word-spacing:-14.943900px;}
.ws13{word-spacing:-14.355754px;}
.ws67{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws44{word-spacing:-2.570351px;}
.ws6f{word-spacing:-2.510575px;}
.ws84{word-spacing:-2.391024px;}
.ws4c{word-spacing:-2.331248px;}
.ws90{word-spacing:-2.205734px;}
.ws4d{word-spacing:-2.092146px;}
.ws1{word-spacing:-1.908367px;}
.ws80{word-spacing:-1.733492px;}
.ws6c{word-spacing:-1.673717px;}
.ws5b{word-spacing:-1.613941px;}
.ws4a{word-spacing:-1.434614px;}
.ws47{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws3b{word-spacing:-1.255288px;}
.ws45{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws3c{word-spacing:-1.135736px;}
.ws41{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws2c{word-spacing:-0.896634px;}
.ws58{word-spacing:-0.777083px;}
.ws56{word-spacing:-0.657532px;}
.ws9c{word-spacing:-0.484186px;}
.wsa3{word-spacing:-0.376589px;}
.ws2d{word-spacing:-0.358654px;}
.ws18{word-spacing:-0.322790px;}
.ws34{word-spacing:-0.298878px;}
.ws3a{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.215194px;}
.ws2f{word-spacing:-0.179327px;}
.ws88{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws17{word-spacing:-0.107597px;}
.ws3d{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws74{word-spacing:-0.008261px;}
.ws11{word-spacing:-0.000858px;}
.ws3{word-spacing:0.000000px;}
.ws1f{word-spacing:0.053798px;}
.ws37{word-spacing:0.059776px;}
.ws61{word-spacing:0.107597px;}
.ws24{word-spacing:0.119551px;}
.ws73{word-spacing:0.150594px;}
.ws62{word-spacing:0.161395px;}
.ws26{word-spacing:0.179327px;}
.ws8f{word-spacing:0.215194px;}
.ws2b{word-spacing:0.239102px;}
.ws60{word-spacing:0.268992px;}
.ws23{word-spacing:0.298878px;}
.ws48{word-spacing:0.358654px;}
.ws79{word-spacing:0.376589px;}
.ws4e{word-spacing:0.418429px;}
.ws5a{word-spacing:0.478205px;}
.ws39{word-spacing:0.537980px;}
.ws53{word-spacing:0.568500px;}
.ws8e{word-spacing:0.597756px;}
.ws78{word-spacing:0.645581px;}
.ws50{word-spacing:0.717307px;}
.ws66{word-spacing:0.753178px;}
.ws42{word-spacing:0.777083px;}
.ws6b{word-spacing:0.836858px;}
.ws97{word-spacing:0.860774px;}
.ws16{word-spacing:0.914573px;}
.ws7f{word-spacing:0.956410px;}
.ws7{word-spacing:1.004227px;}
.ws70{word-spacing:1.016185px;}
.ws65{word-spacing:1.022170px;}
.ws68{word-spacing:1.075961px;}
.ws85{word-spacing:1.195512px;}
.ws5c{word-spacing:1.255288px;}
.ws8b{word-spacing:1.315063px;}
.ws87{word-spacing:1.434614px;}
.ws29{word-spacing:1.494390px;}
.ws35{word-spacing:1.613941px;}
.ws7e{word-spacing:1.673717px;}
.wsa5{word-spacing:1.829146px;}
.ws77{word-spacing:1.853044px;}
.wsa6{word-spacing:1.882944px;}
.ws76{word-spacing:1.912819px;}
.ws43{word-spacing:1.972595px;}
.ws49{word-spacing:2.032370px;}
.ws55{word-spacing:2.092146px;}
.ws19{word-spacing:2.098138px;}
.ws64{word-spacing:2.151922px;}
.ws95{word-spacing:2.205734px;}
.ws63{word-spacing:2.211697px;}
.ws54{word-spacing:2.271473px;}
.ws1e{word-spacing:2.367130px;}
.ws33{word-spacing:2.391024px;}
.ws25{word-spacing:2.450800px;}
.ws2{word-spacing:2.511541px;}
.ws27{word-spacing:2.570351px;}
.ws89{word-spacing:2.689902px;}
.ws46{word-spacing:2.809453px;}
.ws1c{word-spacing:2.851315px;}
.ws14{word-spacing:2.869236px;}
.ws4f{word-spacing:2.929004px;}
.ws40{word-spacing:2.988780px;}
.ws3e{word-spacing:3.048556px;}
.ws38{word-spacing:3.168107px;}
.ws99{word-spacing:3.174106px;}
.ws20{word-spacing:3.219667px;}
.ws9d{word-spacing:3.220330px;}
.wsa1{word-spacing:3.227904px;}
.ws83{word-spacing:3.287658px;}
.ws57{word-spacing:3.466985px;}
.ws86{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws6d{word-spacing:3.825638px;}
.ws7d{word-spacing:3.885414px;}
.ws36{word-spacing:4.004965px;}
.ws1a{word-spacing:4.088678px;}
.ws81{word-spacing:4.184292px;}
.ws6a{word-spacing:4.423394px;}
.ws8d{word-spacing:4.483170px;}
.ws1d{word-spacing:4.626662px;}
.wse{word-spacing:4.770079px;}
.wsf{word-spacing:4.853765px;}
.ws8c{word-spacing:4.901599px;}
.ws2e{word-spacing:4.961375px;}
.ws6e{word-spacing:5.021150px;}
.ws51{word-spacing:5.080926px;}
.ws69{word-spacing:5.439580px;}
.ws71{word-spacing:5.559131px;}
.ws82{word-spacing:5.798233px;}
.ws3f{word-spacing:5.917784px;}
.ws2a{word-spacing:6.097111px;}
.ws28{word-spacing:6.276438px;}
.ws8a{word-spacing:6.515540px;}
.ws75{word-spacing:7.232848px;}
.wsc{word-spacing:7.782761px;}
.wsa4{word-spacing:10.436890px;}
.ws30{word-spacing:11.909532px;}
.wsa{word-spacing:12.176255px;}
.ws91{word-spacing:13.234406px;}
.ws9a{word-spacing:13.391194px;}
.ws94{word-spacing:13.395581px;}
.wsa2{word-spacing:13.396291px;}
.ws4b{word-spacing:14.884124px;}
.wsb{word-spacing:16.109478px;}
.wsa7{word-spacing:16.408512px;}
.ws9f{word-spacing:16.569907px;}
.ws9b{word-spacing:16.620461px;}
.ws98{word-spacing:16.620595px;}
.ws96{word-spacing:16.621075px;}
.ws92{word-spacing:16.622669px;}
.ws93{word-spacing:16.623706px;}
.wsa0{word-spacing:16.626787px;}
.ws9e{word-spacing:16.785101px;}
.ws52{word-spacing:19.965050px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws5f{word-spacing:251.764406px;}
.ws72{word-spacing:327.186202px;}
.ws7a{word-spacing:420.165504px;}
.ws7b{word-spacing:481.710874px;}
.ws7c{word-spacing:495.160474px;}
.ws5e{word-spacing:593.611546px;}
.ws5d{word-spacing:615.436800px;}
._e{margin-left:-22.277407px;}
._38{margin-left:-20.347600px;}
._4{margin-left:-16.276849px;}
._b{margin-left:-11.943245px;}
._a{margin-left:-9.898906px;}
._19{margin-left:-7.651277px;}
._f{margin-left:-6.567769px;}
._6{margin-left:-4.644551px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._3{width:2.343197px;}
._c{width:3.635461px;}
._10{width:11.094379px;}
._5{width:12.971268px;}
._15{width:14.555426px;}
._12{width:15.978125px;}
._1a{width:17.197427px;}
._16{width:18.358676px;}
._11{width:20.281997px;}
._13{width:22.487731px;}
._14{width:23.786422px;}
._7{width:25.946136px;}
._34{width:27.280153px;}
._35{width:29.266330px;}
._8{width:30.587087px;}
._32{width:31.979946px;}
._9{width:33.355008px;}
._31{width:36.112030px;}
._36{width:38.313987px;}
._37{width:48.493062px;}
._d{width:54.429634px;}
._33{width:88.767360px;}
._1e{width:90.219917px;}
._1b{width:123.591142px;}
._1d{width:170.799190px;}
._21{width:172.137744px;}
._1f{width:204.741696px;}
._24{width:227.803808px;}
._1c{width:239.145600px;}
._22{width:301.880711px;}
._23{width:330.124871px;}
._27{width:336.782348px;}
._20{width:379.454496px;}
._2c{width:382.357264px;}
._26{width:383.582592px;}
._2d{width:389.016230px;}
._29{width:453.359117px;}
._28{width:459.330739px;}
._2b{width:470.359411px;}
._2a{width:494.245901px;}
._2f{width:508.610074px;}
._2e{width:522.059674px;}
._17{width:730.685083px;}
._25{width:859.644634px;}
._30{width:2524.950829px;}
._18{width:2548.860829px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(62,105,52);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:114.446743px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1d{bottom:18.862010px;}
.y4b{bottom:31.890000px;}
.yca{bottom:88.468500px;}
.y10e{bottom:91.665000px;}
.y16e{bottom:99.481500px;}
.y1b{bottom:104.646000px;}
.y82{bottom:107.641500px;}
.yc9{bottom:107.701500px;}
.y90{bottom:109.071000px;}
.y4a{bottom:109.956000px;}
.y10d{bottom:110.494500px;}
.y16d{bottom:116.742000px;}
.y1a{bottom:122.535000px;}
.y81{bottom:126.471000px;}
.yd0{bottom:126.817500px;}
.yc8{bottom:126.934500px;}
.y49{bottom:128.785500px;}
.y10c{bottom:129.324000px;}
.y16c{bottom:134.002500px;}
.yc4{bottom:137.731500px;}
.y19{bottom:140.422500px;}
.yc3{bottom:145.240500px;}
.y80{bottom:145.300500px;}
.yc7{bottom:146.167500px;}
.y48{bottom:147.615000px;}
.y10b{bottom:148.153500px;}
.y16b{bottom:151.263000px;}
.y18{bottom:158.310000px;}
.y7f{bottom:164.130000px;}
.yc6{bottom:165.400500px;}
.y47{bottom:166.444500px;}
.yc2{bottom:166.515000px;}
.y10a{bottom:166.983000px;}
.y16a{bottom:168.523500px;}
.y17{bottom:176.199000px;}
.y120{bottom:177.147000px;}
.yc1{bottom:181.533000px;}
.y7e{bottom:182.959500px;}
.y46{bottom:185.274000px;}
.y169{bottom:185.784000px;}
.y109{bottom:185.812500px;}
.ybe{bottom:188.257500px;}
.y16{bottom:194.086500px;}
.yc0{bottom:194.982000px;}
.y11f{bottom:195.976500px;}
.y7d{bottom:201.789000px;}
.y168{bottom:203.044500px;}
.y45{bottom:204.103500px;}
.y108{bottom:204.642000px;}
.ybf{bottom:210.000000px;}
.y15{bottom:211.974000px;}
.y11e{bottom:214.806000px;}
.y167{bottom:220.305000px;}
.y7c{bottom:220.618500px;}
.y44{bottom:222.933000px;}
.y107{bottom:223.471500px;}
.ybd{bottom:223.765500px;}
.y14{bottom:229.863000px;}
.ybc{bottom:231.274500px;}
.y11d{bottom:233.635500px;}
.y166{bottom:237.565500px;}
.y7b{bottom:239.446500px;}
.y43{bottom:241.762500px;}
.y106{bottom:242.301000px;}
.y11c{bottom:252.465000px;}
.y165{bottom:254.824500px;}
.y7a{bottom:258.276000px;}
.ybb{bottom:259.750500px;}
.y42{bottom:260.592000px;}
.y105{bottom:261.130500px;}
.y11b{bottom:271.294500px;}
.y164{bottom:272.085000px;}
.yb9{bottom:273.469500px;}
.yba{bottom:274.768500px;}
.y79{bottom:277.105500px;}
.y41{bottom:279.421500px;}
.y104{bottom:279.960000px;}
.y163{bottom:289.345500px;}
.y11a{bottom:290.124000px;}
.ye9{bottom:293.178000px;}
.y78{bottom:295.935000px;}
.y40{bottom:298.251000px;}
.y103{bottom:298.789500px;}
.y13{bottom:300.154500px;}
.yb8{bottom:303.552000px;}
.y162{bottom:306.606000px;}
.y119{bottom:308.953500px;}
.yb7{bottom:311.061000px;}
.ye8{bottom:312.007500px;}
.y77{bottom:314.764500px;}
.y3f{bottom:317.080500px;}
.y102{bottom:317.619000px;}
.y12{bottom:318.043500px;}
.y161{bottom:323.866500px;}
.ye7{bottom:330.837000px;}
.y76{bottom:333.594000px;}
.y3e{bottom:335.910000px;}
.y11{bottom:335.931000px;}
.y101{bottom:336.448500px;}
.yb6{bottom:339.538500px;}
.y141{bottom:340.932000px;}
.y160{bottom:341.127000px;}
.y118{bottom:342.519000px;}
.yb5{bottom:344.706000px;}
.ye6{bottom:349.666500px;}
.y75{bottom:352.423500px;}
.yb3{bottom:353.304000px;}
.y10{bottom:353.818500px;}
.y3d{bottom:354.739500px;}
.y100{bottom:355.278000px;}
.y15f{bottom:358.387500px;}
.yb4{bottom:359.724000px;}
.y117{bottom:361.752000px;}
.yb2{bottom:368.322000px;}
.ye5{bottom:368.496000px;}
.y74{bottom:371.253000px;}
.y3c{bottom:373.567500px;}
.yff{bottom:374.107500px;}
.y140{bottom:374.556000px;}
.y15e{bottom:375.648000px;}
.yf{bottom:380.673000px;}
.ye4{bottom:387.325500px;}
.yb1{bottom:389.289000px;}
.y73{bottom:390.082500px;}
.y3b{bottom:392.397000px;}
.y15d{bottom:392.907000px;}
.yfe{bottom:392.937000px;}
.y13f{bottom:393.385500px;}
.yb0{bottom:396.798000px;}
.ye{bottom:398.562000px;}
.ye3{bottom:406.155000px;}
.y72{bottom:408.912000px;}
.y15c{bottom:410.167500px;}
.ycf{bottom:411.015000px;}
.yfd{bottom:411.766500px;}
.y13e{bottom:412.215000px;}
.y3a{bottom:415.710000px;}
.yd{bottom:416.449500px;}
.yaf{bottom:418.072500px;}
.ye2{bottom:424.984500px;}
.yae{bottom:425.581500px;}
.y15b{bottom:427.428000px;}
.y71{bottom:427.741500px;}
.yfc{bottom:430.596000px;}
.y13d{bottom:431.044500px;}
.ye1{bottom:443.814000px;}
.y15a{bottom:444.688500px;}
.yc{bottom:444.798000px;}
.y70{bottom:446.571000px;}
.yfb{bottom:449.425500px;}
.y13c{bottom:449.874000px;}
.yad{bottom:454.209000px;}
.y159{bottom:461.949000px;}
.y6f{bottom:465.400500px;}
.ye0{bottom:467.127000px;}
.yfa{bottom:468.255000px;}
.y13b{bottom:468.702000px;}
.yb{bottom:471.652500px;}
.y158{bottom:479.209500px;}
.y116{bottom:483.781500px;}
.yac{bottom:483.888000px;}
.y6e{bottom:484.230000px;}
.yf9{bottom:487.084500px;}
.ydf{bottom:487.300500px;}
.y13a{bottom:487.531500px;}
.ya{bottom:489.540000px;}
.y39{bottom:490.860000px;}
.y157{bottom:496.470000px;}
.y115{bottom:502.611000px;}
.y6d{bottom:503.059500px;}
.yf8{bottom:505.914000px;}
.y139{bottom:506.361000px;}
.y9{bottom:507.429000px;}
.y156{bottom:513.730500px;}
.yde{bottom:517.728000px;}
.yab{bottom:520.992000px;}
.y114{bottom:521.440500px;}
.y6c{bottom:521.889000px;}
.yf7{bottom:524.743500px;}
.y138{bottom:525.190500px;}
.y8{bottom:525.316500px;}
.y38{bottom:528.250500px;}
.y155{bottom:530.991000px;}
.yaa{bottom:539.821500px;}
.y113{bottom:540.270000px;}
.y6b{bottom:540.718500px;}
.y7{bottom:543.204000px;}
.yf6{bottom:543.573000px;}
.y137{bottom:544.020000px;}
.y37{bottom:547.707000px;}
.y154{bottom:548.250000px;}
.ya9{bottom:558.651000px;}
.y112{bottom:559.099500px;}
.y6a{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.yf5{bottom:562.401000px;}
.y136{bottom:562.849500px;}
.y153{bottom:565.510500px;}
.y36{bottom:567.165000px;}
.ya8{bottom:577.480500px;}
.y111{bottom:577.929000px;}
.y69{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.yf4{bottom:581.230500px;}
.y135{bottom:581.679000px;}
.y35{bottom:586.621500px;}
.y152{bottom:587.254500px;}
.ya7{bottom:596.310000px;}
.y110{bottom:596.758500px;}
.y4{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.yf3{bottom:600.060000px;}
.y134{bottom:600.508500px;}
.y34{bottom:606.078000px;}
.y1{bottom:614.756964px;}
.ya6{bottom:615.139500px;}
.y67{bottom:616.036500px;}
.y133{bottom:619.338000px;}
.y10f{bottom:620.071500px;}
.y151{bottom:620.878500px;}
.y33{bottom:625.536000px;}
.ya5{bottom:633.969000px;}
.y66{bottom:634.866000px;}
.y132{bottom:638.167500px;}
.yf2{bottom:644.352000px;}
.y32{bottom:644.992500px;}
.y150{bottom:647.419500px;}
.ya4{bottom:652.798500px;}
.y65{bottom:653.695500px;}
.y131{bottom:656.997000px;}
.yf1{bottom:660.790500px;}
.y31{bottom:664.449000px;}
.y14f{bottom:664.993500px;}
.ya3{bottom:671.628000px;}
.y64{bottom:672.525000px;}
.y130{bottom:675.826500px;}
.yf0{bottom:677.229000px;}
.y14e{bottom:682.567500px;}
.y30{bottom:683.907000px;}
.y8f{bottom:689.560500px;}
.ya2{bottom:690.457500px;}
.yce{bottom:690.906000px;}
.y63{bottom:691.354500px;}
.yef{bottom:693.667500px;}
.y12f{bottom:694.656000px;}
.y2f{bottom:703.363500px;}
.y8e{bottom:708.390000px;}
.y14d{bottom:709.107000px;}
.ycd{bottom:709.735500px;}
.yee{bottom:710.106000px;}
.y62{bottom:710.184000px;}
.y12e{bottom:713.485500px;}
.ya1{bottom:713.770500px;}
.y2e{bottom:722.821500px;}
.y8d{bottom:727.219500px;}
.ycc{bottom:728.565000px;}
.y61{bottom:729.013500px;}
.y12d{bottom:732.315000px;}
.yed{bottom:733.746000px;}
.y14c{bottom:735.648000px;}
.y2d{bottom:742.278000px;}
.y183{bottom:743.134500px;}
.y8c{bottom:746.049000px;}
.ya0{bottom:747.394500px;}
.y60{bottom:747.843000px;}
.y12c{bottom:751.144500px;}
.yc5{bottom:758.427000px;}
.y182{bottom:760.395000px;}
.y2c{bottom:761.734500px;}
.y14b{bottom:762.189000px;}
.y8a{bottom:764.878500px;}
.yec{bottom:765.366000px;}
.y9f{bottom:766.224000px;}
.y5f{bottom:766.671000px;}
.y12b{bottom:769.974000px;}
.y8b{bottom:770.302500px;}
.y181{bottom:777.655500px;}
.y14a{bottom:779.763000px;}
.y2b{bottom:781.192500px;}
.y89{bottom:783.708000px;}
.yeb{bottom:784.599000px;}
.y9e{bottom:785.053500px;}
.y5e{bottom:785.500500px;}
.y12a{bottom:788.803500px;}
.y180{bottom:794.916000px;}
.y149{bottom:797.337000px;}
.y88{bottom:802.537500px;}
.y9d{bottom:803.883000px;}
.y5d{bottom:804.330000px;}
.y129{bottom:807.633000px;}
.y17f{bottom:812.176500px;}
.y2a{bottom:819.777000px;}
.ydd{bottom:820.431000px;}
.yea{bottom:820.917000px;}
.y87{bottom:821.367000px;}
.y9c{bottom:822.712500px;}
.y5c{bottom:823.159500px;}
.y148{bottom:823.878000px;}
.y128{bottom:826.462500px;}
.y17e{bottom:829.437000px;}
.y29{bottom:835.917000px;}
.ydc{bottom:836.869500px;}
.y86{bottom:840.196500px;}
.y147{bottom:841.452000px;}
.y9b{bottom:841.540500px;}
.y5b{bottom:841.989000px;}
.ydb{bottom:845.088000px;}
.y127{bottom:845.292000px;}
.y17d{bottom:846.697500px;}
.y28{bottom:856.396500px;}
.y85{bottom:859.026000px;}
.y9a{bottom:860.370000px;}
.y5a{bottom:860.818500px;}
.y17c{bottom:863.956500px;}
.y126{bottom:864.121500px;}
.y146{bottom:867.991500px;}
.y27{bottom:868.195500px;}
.yda{bottom:876.948000px;}
.y99{bottom:879.199500px;}
.y59{bottom:879.648000px;}
.y17b{bottom:881.217000px;}
.y84{bottom:882.339000px;}
.y125{bottom:882.951000px;}
.ycb{bottom:883.683000px;}
.y145{bottom:885.567000px;}
.y26{bottom:888.675000px;}
.y98{bottom:898.029000px;}
.y58{bottom:898.477500px;}
.y25{bottom:900.475500px;}
.yd9{bottom:900.588000px;}
.y124{bottom:901.780500px;}
.y83{bottom:902.512500px;}
.y144{bottom:903.141000px;}
.y17a{bottom:915.738000px;}
.y24{bottom:916.614000px;}
.y97{bottom:916.858500px;}
.y57{bottom:917.307000px;}
.y123{bottom:920.610000px;}
.y143{bottom:920.715000px;}
.yd8{bottom:932.208000px;}
.y179{bottom:932.998500px;}
.y96{bottom:935.688000px;}
.y56{bottom:936.136500px;}
.y23{bottom:937.093500px;}
.y142{bottom:938.289000px;}
.y122{bottom:939.439500px;}
.y178{bottom:950.259000px;}
.y95{bottom:954.517500px;}
.y55{bottom:954.966000px;}
.y22{bottom:962.343000px;}
.y177{bottom:967.519500px;}
.yd7{bottom:969.312000px;}
.y121{bottom:970.207500px;}
.y94{bottom:973.347000px;}
.y54{bottom:973.795500px;}
.y176{bottom:984.780000px;}
.yd6{bottom:988.141500px;}
.y93{bottom:992.176500px;}
.y53{bottom:992.625000px;}
.y174{bottom:1002.039000px;}
.y175{bottom:1002.040500px;}
.yd5{bottom:1006.971000px;}
.y21{bottom:1008.240000px;}
.y52{bottom:1011.454500px;}
.y92{bottom:1015.489500px;}
.y173{bottom:1019.299500px;}
.yd4{bottom:1025.800500px;}
.y51{bottom:1030.284000px;}
.y20{bottom:1036.485000px;}
.y172{bottom:1036.560000px;}
.yd3{bottom:1044.630000px;}
.y50{bottom:1049.113500px;}
.y171{bottom:1053.820500px;}
.yd2{bottom:1063.459500px;}
.y1f{bottom:1064.728500px;}
.y4f{bottom:1067.943000px;}
.y170{bottom:1071.081000px;}
.y91{bottom:1073.367000px;}
.yd1{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y16f{bottom:1088.341500px;}
.y1e{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.y1c{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.h13{height:23.242762px;}
.h2{height:25.508090px;}
.h11{height:30.582721px;}
.h4{height:33.112997px;}
.hb{height:33.821261px;}
.h3{height:34.199443px;}
.h5{height:39.457760px;}
.h12{height:42.840113px;}
.h8{height:43.815515px;}
.hc{height:45.094826px;}
.hd{height:48.902746px;}
.he{height:50.731891px;}
.h6{height:50.925830px;}
.hf{height:54.336020px;}
.h15{height:54.655891px;}
.h10{height:56.368391px;}
.ha{height:62.997506px;}
.h7{height:77.594892px;}
.h14{height:80.767891px;}
.h17{height:83.611891px;}
.h9{height:97.805491px;}
.h16{height:110.803891px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:192.563209px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:58.289136px;}
.x64{left:85.848000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x48{left:253.536000px;}
.x38{left:259.212000px;}
.x31{left:264.841500px;}
.x33{left:268.842000px;}
.x5{left:269.914500px;}
.x5b{left:273.042000px;}
.x5d{left:278.187000px;}
.x5c{left:279.901500px;}
.x8{left:281.479500px;}
.x34{left:282.978000px;}
.x42{left:290.892000px;}
.x3e{left:296.286000px;}
.x57{left:299.392500px;}
.x5a{left:301.056000px;}
.x35{left:305.337000px;}
.x60{left:306.952500px;}
.x7{left:308.128500px;}
.x62{left:309.486000px;}
.x27{left:313.291500px;}
.xd{left:318.063000px;}
.x59{left:319.378500px;}
.x30{left:321.523500px;}
.xe{left:325.536000px;}
.xf{left:329.200500px;}
.x58{left:330.460500px;}
.x10{left:336.672000px;}
.x9{left:341.902500px;}
.xa{left:349.374000px;}
.xb{left:356.995500px;}
.x5e{left:361.756500px;}
.xc{left:364.467000px;}
.x63{left:372.090000px;}
.x5f{left:376.701000px;}
.x17{left:378.085500px;}
.x15{left:386.488500px;}
.x61{left:390.738000px;}
.x16{left:393.961500px;}
.x4e{left:403.230000px;}
.x4f{left:411.448500px;}
.x3b{left:424.282500px;}
.x49{left:432.361500px;}
.x18{left:433.467000px;}
.x52{left:434.791500px;}
.x19{left:440.938500px;}
.x3d{left:445.264500px;}
.x53{left:449.736000px;}
.x3c{left:451.074000px;}
.x32{left:454.201500px;}
.x44{left:484.411500px;}
.x39{left:488.140500px;}
.x45{left:491.136000px;}
.x56{left:503.542500px;}
.x1a{left:517.956000px;}
.x1b{left:525.429000px;}
.x22{left:526.905000px;}
.x1e{left:542.328000px;}
.x28{left:553.404000px;}
.x1f{left:557.272500px;}
.x1c{left:560.133000px;}
.x29{left:564.156000px;}
.x2a{left:570.478500px;}
.x1d{left:575.076000px;}
.x2b{left:577.284000px;}
.x11{left:586.873500px;}
.x12{left:594.346500px;}
.x4a{left:601.852500px;}
.x4b{left:611.563500px;}
.x13{left:617.451000px;}
.x14{left:624.922500px;}
.x46{left:628.140000px;}
.x47{left:636.358500px;}
.x2e{left:638.962500px;}
.x36{left:651.444000px;}
.x2f{left:654.985500px;}
.x3f{left:659.047500px;}
.x40{left:667.723500px;}
.x41{left:669.586500px;}
.x43{left:672.162000px;}
.x20{left:680.412000px;}
.x37{left:689.646000px;}
.x50{left:693.280500px;}
.x21{left:695.356500px;}
.x51{left:704.482500px;}
.x25{left:705.868500px;}
.x3a{left:707.352000px;}
.x26{left:720.813000px;}
.x67{left:737.766000px;}
.x2c{left:751.786500px;}
.x2d{left:758.593500px;}
.x68{left:764.664000px;}
.x54{left:774.205500px;}
.x55{left:789.150000px;}
.x4c{left:800.962500px;}
.x65{left:810.373500px;}
.x4d{left:812.166000px;}
.x23{left:818.046000px;}
.x24{left:832.990500px;}
.x66{left:837.273000px;}
@media print{
.v5{vertical-align:-53.562667pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.488000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:26.698667pt;}
.v7{vertical-align:29.226667pt;}
.v6{vertical-align:53.397333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000375pt;}
.ls1a{letter-spacing:0.000801pt;}
.lsa{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.lse{letter-spacing:3.163733pt;}
.ls1{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.626533pt;}
.ls18{letter-spacing:11.954133pt;}
.ls17{letter-spacing:11.959467pt;}
.ls19{letter-spacing:12.028638pt;}
.ls16{letter-spacing:13.284237pt;}
.ls13{letter-spacing:13.388744pt;}
.ls12{letter-spacing:13.425312pt;}
.ls11{letter-spacing:13.430688pt;}
.lsc{letter-spacing:13.491680pt;}
.ls7{letter-spacing:13.819478pt;}
.lsd{letter-spacing:15.074564pt;}
.lsf{letter-spacing:15.249420pt;}
.ls8{letter-spacing:15.607714pt;}
.ls14{letter-spacing:16.820969pt;}
.ls15{letter-spacing:16.826198pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls4{letter-spacing:64.315733pt;}
.ws10{word-spacing:-79.146281pt;}
.ws59{word-spacing:-13.283467pt;}
.ws13{word-spacing:-12.760670pt;}
.ws67{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws44{word-spacing:-2.284756pt;}
.ws6f{word-spacing:-2.231622pt;}
.ws84{word-spacing:-2.125355pt;}
.ws4c{word-spacing:-2.072221pt;}
.ws90{word-spacing:-1.960653pt;}
.ws4d{word-spacing:-1.859685pt;}
.ws1{word-spacing:-1.696326pt;}
.ws80{word-spacing:-1.540882pt;}
.ws6c{word-spacing:-1.487748pt;}
.ws5b{word-spacing:-1.434614pt;}
.ws4a{word-spacing:-1.275213pt;}
.ws47{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws3b{word-spacing:-1.115811pt;}
.ws45{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws3c{word-spacing:-1.009543pt;}
.ws41{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws2c{word-spacing:-0.797008pt;}
.ws58{word-spacing:-0.690740pt;}
.ws56{word-spacing:-0.584473pt;}
.ws9c{word-spacing:-0.430387pt;}
.wsa3{word-spacing:-0.334746pt;}
.ws2d{word-spacing:-0.318803pt;}
.ws18{word-spacing:-0.286925pt;}
.ws34{word-spacing:-0.265669pt;}
.ws3a{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.191283pt;}
.ws2f{word-spacing:-0.159402pt;}
.ws88{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws17{word-spacing:-0.095642pt;}
.ws3d{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws74{word-spacing:-0.007343pt;}
.ws11{word-spacing:-0.000763pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.047821pt;}
.ws37{word-spacing:0.053134pt;}
.ws61{word-spacing:0.095642pt;}
.ws24{word-spacing:0.106268pt;}
.ws73{word-spacing:0.133861pt;}
.ws62{word-spacing:0.143462pt;}
.ws26{word-spacing:0.159402pt;}
.ws8f{word-spacing:0.191283pt;}
.ws2b{word-spacing:0.212535pt;}
.ws60{word-spacing:0.239104pt;}
.ws23{word-spacing:0.265669pt;}
.ws48{word-spacing:0.318803pt;}
.ws79{word-spacing:0.334746pt;}
.ws4e{word-spacing:0.371937pt;}
.ws5a{word-spacing:0.425071pt;}
.ws39{word-spacing:0.478205pt;}
.ws53{word-spacing:0.505333pt;}
.ws8e{word-spacing:0.531339pt;}
.ws78{word-spacing:0.573850pt;}
.ws50{word-spacing:0.637606pt;}
.ws66{word-spacing:0.669491pt;}
.ws42{word-spacing:0.690740pt;}
.ws6b{word-spacing:0.743874pt;}
.ws97{word-spacing:0.765133pt;}
.ws16{word-spacing:0.812954pt;}
.ws7f{word-spacing:0.850142pt;}
.ws7{word-spacing:0.892646pt;}
.ws70{word-spacing:0.903276pt;}
.ws65{word-spacing:0.908595pt;}
.ws68{word-spacing:0.956410pt;}
.ws85{word-spacing:1.062677pt;}
.ws5c{word-spacing:1.115811pt;}
.ws8b{word-spacing:1.168945pt;}
.ws87{word-spacing:1.275213pt;}
.ws29{word-spacing:1.328347pt;}
.ws35{word-spacing:1.434614pt;}
.ws7e{word-spacing:1.487748pt;}
.wsa5{word-spacing:1.625907pt;}
.ws77{word-spacing:1.647150pt;}
.wsa6{word-spacing:1.673728pt;}
.ws76{word-spacing:1.700284pt;}
.ws43{word-spacing:1.753418pt;}
.ws49{word-spacing:1.806551pt;}
.ws55{word-spacing:1.859685pt;}
.ws19{word-spacing:1.865011pt;}
.ws64{word-spacing:1.912819pt;}
.ws95{word-spacing:1.960653pt;}
.ws63{word-spacing:1.965953pt;}
.ws54{word-spacing:2.019087pt;}
.ws1e{word-spacing:2.104115pt;}
.ws33{word-spacing:2.125355pt;}
.ws25{word-spacing:2.178489pt;}
.ws2{word-spacing:2.232481pt;}
.ws27{word-spacing:2.284756pt;}
.ws89{word-spacing:2.391024pt;}
.ws46{word-spacing:2.497292pt;}
.ws1c{word-spacing:2.534502pt;}
.ws14{word-spacing:2.550432pt;}
.ws4f{word-spacing:2.603559pt;}
.ws40{word-spacing:2.656693pt;}
.ws3e{word-spacing:2.709827pt;}
.ws38{word-spacing:2.816095pt;}
.ws99{word-spacing:2.821427pt;}
.ws20{word-spacing:2.861926pt;}
.ws9d{word-spacing:2.862515pt;}
.wsa1{word-spacing:2.869248pt;}
.ws83{word-spacing:2.922363pt;}
.ws57{word-spacing:3.081764pt;}
.ws86{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws6d{word-spacing:3.400567pt;}
.ws7d{word-spacing:3.453701pt;}
.ws36{word-spacing:3.559969pt;}
.ws1a{word-spacing:3.634381pt;}
.ws81{word-spacing:3.719371pt;}
.ws6a{word-spacing:3.931906pt;}
.ws8d{word-spacing:3.985040pt;}
.ws1d{word-spacing:4.112589pt;}
.wse{word-spacing:4.240070pt;}
.wsf{word-spacing:4.314458pt;}
.ws8c{word-spacing:4.356977pt;}
.ws2e{word-spacing:4.410111pt;}
.ws6e{word-spacing:4.463245pt;}
.ws51{word-spacing:4.516379pt;}
.ws69{word-spacing:4.835182pt;}
.ws71{word-spacing:4.941450pt;}
.ws82{word-spacing:5.153985pt;}
.ws3f{word-spacing:5.260253pt;}
.ws2a{word-spacing:5.419654pt;}
.ws28{word-spacing:5.579056pt;}
.ws8a{word-spacing:5.791591pt;}
.ws75{word-spacing:6.429198pt;}
.wsc{word-spacing:6.918010pt;}
.wsa4{word-spacing:9.277235pt;}
.ws30{word-spacing:10.586251pt;}
.wsa{word-spacing:10.823338pt;}
.ws91{word-spacing:11.763917pt;}
.ws9a{word-spacing:11.903283pt;}
.ws94{word-spacing:11.907183pt;}
.wsa2{word-spacing:11.907814pt;}
.ws4b{word-spacing:13.230333pt;}
.wsb{word-spacing:14.319536pt;}
.wsa7{word-spacing:14.585344pt;}
.ws9f{word-spacing:14.728806pt;}
.ws9b{word-spacing:14.773743pt;}
.ws98{word-spacing:14.773862pt;}
.ws96{word-spacing:14.774289pt;}
.ws92{word-spacing:14.775706pt;}
.ws93{word-spacing:14.776627pt;}
.wsa0{word-spacing:14.779366pt;}
.ws9e{word-spacing:14.920090pt;}
.ws52{word-spacing:17.746711pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws5f{word-spacing:223.790583pt;}
.ws72{word-spacing:290.832179pt;}
.ws7a{word-spacing:373.480448pt;}
.ws7b{word-spacing:428.187443pt;}
.ws7c{word-spacing:440.142643pt;}
.ws5e{word-spacing:527.654707pt;}
.ws5d{word-spacing:547.054933pt;}
._e{margin-left:-19.802140pt;}
._38{margin-left:-18.086755pt;}
._4{margin-left:-14.468310pt;}
._b{margin-left:-10.616218pt;}
._a{margin-left:-8.799027pt;}
._19{margin-left:-6.801135pt;}
._f{margin-left:-5.838017pt;}
._6{margin-left:-4.128490pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._3{width:2.082842pt;}
._c{width:3.231521pt;}
._10{width:9.861670pt;}
._5{width:11.530016pt;}
._15{width:12.938157pt;}
._12{width:14.202778pt;}
._1a{width:15.286602pt;}
._16{width:16.318823pt;}
._11{width:18.028442pt;}
._13{width:19.989094pt;}
._14{width:21.143486pt;}
._7{width:23.063232pt;}
._34{width:24.249025pt;}
._35{width:26.014515pt;}
._8{width:27.188522pt;}
._32{width:28.426619pt;}
._9{width:29.648896pt;}
._31{width:32.099582pt;}
._36{width:34.056877pt;}
._37{width:43.104944pt;}
._d{width:48.381897pt;}
._33{width:78.904320pt;}
._1e{width:80.195482pt;}
._1b{width:109.858793pt;}
._1d{width:151.821502pt;}
._21{width:153.011328pt;}
._1f{width:181.992619pt;}
._24{width:202.492274pt;}
._1c{width:212.573867pt;}
._22{width:268.338410pt;}
._23{width:293.444330pt;}
._27{width:299.362087pt;}
._20{width:337.292885pt;}
._2c{width:339.873123pt;}
._26{width:340.962304pt;}
._2d{width:345.792205pt;}
._29{width:402.985882pt;}
._28{width:408.293990pt;}
._2b{width:418.097254pt;}
._2a{width:439.329690pt;}
._2f{width:452.097843pt;}
._2e{width:464.053043pt;}
._17{width:649.497851pt;}
._25{width:764.128563pt;}
._30{width:2244.400737pt;}
._18{width:2265.654070pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:101.730438pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1d{bottom:16.766231pt;}
.y4b{bottom:28.346667pt;}
.yca{bottom:78.638667pt;}
.y10e{bottom:81.480000pt;}
.y16e{bottom:88.428000pt;}
.y1b{bottom:93.018667pt;}
.y82{bottom:95.681333pt;}
.yc9{bottom:95.734667pt;}
.y90{bottom:96.952000pt;}
.y4a{bottom:97.738667pt;}
.y10d{bottom:98.217333pt;}
.y16d{bottom:103.770667pt;}
.y1a{bottom:108.920000pt;}
.y81{bottom:112.418667pt;}
.yd0{bottom:112.726667pt;}
.yc8{bottom:112.830667pt;}
.y49{bottom:114.476000pt;}
.y10c{bottom:114.954667pt;}
.y16c{bottom:119.113333pt;}
.yc4{bottom:122.428000pt;}
.y19{bottom:124.820000pt;}
.yc3{bottom:129.102667pt;}
.y80{bottom:129.156000pt;}
.yc7{bottom:129.926667pt;}
.y48{bottom:131.213333pt;}
.y10b{bottom:131.692000pt;}
.y16b{bottom:134.456000pt;}
.y18{bottom:140.720000pt;}
.y7f{bottom:145.893333pt;}
.yc6{bottom:147.022667pt;}
.y47{bottom:147.950667pt;}
.yc2{bottom:148.013333pt;}
.y10a{bottom:148.429333pt;}
.y16a{bottom:149.798667pt;}
.y17{bottom:156.621333pt;}
.y120{bottom:157.464000pt;}
.yc1{bottom:161.362667pt;}
.y7e{bottom:162.630667pt;}
.y46{bottom:164.688000pt;}
.y169{bottom:165.141333pt;}
.y109{bottom:165.166667pt;}
.ybe{bottom:167.340000pt;}
.y16{bottom:172.521333pt;}
.yc0{bottom:173.317333pt;}
.y11f{bottom:174.201333pt;}
.y7d{bottom:179.368000pt;}
.y168{bottom:180.484000pt;}
.y45{bottom:181.425333pt;}
.y108{bottom:181.904000pt;}
.ybf{bottom:186.666667pt;}
.y15{bottom:188.421333pt;}
.y11e{bottom:190.938667pt;}
.y167{bottom:195.826667pt;}
.y7c{bottom:196.105333pt;}
.y44{bottom:198.162667pt;}
.y107{bottom:198.641333pt;}
.ybd{bottom:198.902667pt;}
.y14{bottom:204.322667pt;}
.ybc{bottom:205.577333pt;}
.y11d{bottom:207.676000pt;}
.y166{bottom:211.169333pt;}
.y7b{bottom:212.841333pt;}
.y43{bottom:214.900000pt;}
.y106{bottom:215.378667pt;}
.y11c{bottom:224.413333pt;}
.y165{bottom:226.510667pt;}
.y7a{bottom:229.578667pt;}
.ybb{bottom:230.889333pt;}
.y42{bottom:231.637333pt;}
.y105{bottom:232.116000pt;}
.y11b{bottom:241.150667pt;}
.y164{bottom:241.853333pt;}
.yb9{bottom:243.084000pt;}
.yba{bottom:244.238667pt;}
.y79{bottom:246.316000pt;}
.y41{bottom:248.374667pt;}
.y104{bottom:248.853333pt;}
.y163{bottom:257.196000pt;}
.y11a{bottom:257.888000pt;}
.ye9{bottom:260.602667pt;}
.y78{bottom:263.053333pt;}
.y40{bottom:265.112000pt;}
.y103{bottom:265.590667pt;}
.y13{bottom:266.804000pt;}
.yb8{bottom:269.824000pt;}
.y162{bottom:272.538667pt;}
.y119{bottom:274.625333pt;}
.yb7{bottom:276.498667pt;}
.ye8{bottom:277.340000pt;}
.y77{bottom:279.790667pt;}
.y3f{bottom:281.849333pt;}
.y102{bottom:282.328000pt;}
.y12{bottom:282.705333pt;}
.y161{bottom:287.881333pt;}
.ye7{bottom:294.077333pt;}
.y76{bottom:296.528000pt;}
.y3e{bottom:298.586667pt;}
.y11{bottom:298.605333pt;}
.y101{bottom:299.065333pt;}
.yb6{bottom:301.812000pt;}
.y141{bottom:303.050667pt;}
.y160{bottom:303.224000pt;}
.y118{bottom:304.461333pt;}
.yb5{bottom:306.405333pt;}
.ye6{bottom:310.814667pt;}
.y75{bottom:313.265333pt;}
.yb3{bottom:314.048000pt;}
.y10{bottom:314.505333pt;}
.y3d{bottom:315.324000pt;}
.y100{bottom:315.802667pt;}
.y15f{bottom:318.566667pt;}
.yb4{bottom:319.754667pt;}
.y117{bottom:321.557333pt;}
.yb2{bottom:327.397333pt;}
.ye5{bottom:327.552000pt;}
.y74{bottom:330.002667pt;}
.y3c{bottom:332.060000pt;}
.yff{bottom:332.540000pt;}
.y140{bottom:332.938667pt;}
.y15e{bottom:333.909333pt;}
.yf{bottom:338.376000pt;}
.ye4{bottom:344.289333pt;}
.yb1{bottom:346.034667pt;}
.y73{bottom:346.740000pt;}
.y3b{bottom:348.797333pt;}
.y15d{bottom:349.250667pt;}
.yfe{bottom:349.277333pt;}
.y13f{bottom:349.676000pt;}
.yb0{bottom:352.709333pt;}
.ye{bottom:354.277333pt;}
.ye3{bottom:361.026667pt;}
.y72{bottom:363.477333pt;}
.y15c{bottom:364.593333pt;}
.ycf{bottom:365.346667pt;}
.yfd{bottom:366.014667pt;}
.y13e{bottom:366.413333pt;}
.y3a{bottom:369.520000pt;}
.yd{bottom:370.177333pt;}
.yaf{bottom:371.620000pt;}
.ye2{bottom:377.764000pt;}
.yae{bottom:378.294667pt;}
.y15b{bottom:379.936000pt;}
.y71{bottom:380.214667pt;}
.yfc{bottom:382.752000pt;}
.y13d{bottom:383.150667pt;}
.ye1{bottom:394.501333pt;}
.y15a{bottom:395.278667pt;}
.yc{bottom:395.376000pt;}
.y70{bottom:396.952000pt;}
.yfb{bottom:399.489333pt;}
.y13c{bottom:399.888000pt;}
.yad{bottom:403.741333pt;}
.y159{bottom:410.621333pt;}
.y6f{bottom:413.689333pt;}
.ye0{bottom:415.224000pt;}
.yfa{bottom:416.226667pt;}
.y13b{bottom:416.624000pt;}
.yb{bottom:419.246667pt;}
.y158{bottom:425.964000pt;}
.y116{bottom:430.028000pt;}
.yac{bottom:430.122667pt;}
.y6e{bottom:430.426667pt;}
.yf9{bottom:432.964000pt;}
.ydf{bottom:433.156000pt;}
.y13a{bottom:433.361333pt;}
.ya{bottom:435.146667pt;}
.y39{bottom:436.320000pt;}
.y157{bottom:441.306667pt;}
.y115{bottom:446.765333pt;}
.y6d{bottom:447.164000pt;}
.yf8{bottom:449.701333pt;}
.y139{bottom:450.098667pt;}
.y9{bottom:451.048000pt;}
.y156{bottom:456.649333pt;}
.yde{bottom:460.202667pt;}
.yab{bottom:463.104000pt;}
.y114{bottom:463.502667pt;}
.y6c{bottom:463.901333pt;}
.yf7{bottom:466.438667pt;}
.y138{bottom:466.836000pt;}
.y8{bottom:466.948000pt;}
.y38{bottom:469.556000pt;}
.y155{bottom:471.992000pt;}
.yaa{bottom:479.841333pt;}
.y113{bottom:480.240000pt;}
.y6b{bottom:480.638667pt;}
.y7{bottom:482.848000pt;}
.yf6{bottom:483.176000pt;}
.y137{bottom:483.573333pt;}
.y37{bottom:486.850667pt;}
.y154{bottom:487.333333pt;}
.ya9{bottom:496.578667pt;}
.y112{bottom:496.977333pt;}
.y6a{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.yf5{bottom:499.912000pt;}
.y136{bottom:500.310667pt;}
.y153{bottom:502.676000pt;}
.y36{bottom:504.146667pt;}
.ya8{bottom:513.316000pt;}
.y111{bottom:513.714667pt;}
.y69{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.yf4{bottom:516.649333pt;}
.y135{bottom:517.048000pt;}
.y35{bottom:521.441333pt;}
.y152{bottom:522.004000pt;}
.ya7{bottom:530.053333pt;}
.y110{bottom:530.452000pt;}
.y4{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.yf3{bottom:533.386667pt;}
.y134{bottom:533.785333pt;}
.y34{bottom:538.736000pt;}
.y1{bottom:546.450634pt;}
.ya6{bottom:546.790667pt;}
.y67{bottom:547.588000pt;}
.y133{bottom:550.522667pt;}
.y10f{bottom:551.174667pt;}
.y151{bottom:551.892000pt;}
.y33{bottom:556.032000pt;}
.ya5{bottom:563.528000pt;}
.y66{bottom:564.325333pt;}
.y132{bottom:567.260000pt;}
.yf2{bottom:572.757333pt;}
.y32{bottom:573.326667pt;}
.y150{bottom:575.484000pt;}
.ya4{bottom:580.265333pt;}
.y65{bottom:581.062667pt;}
.y131{bottom:583.997333pt;}
.yf1{bottom:587.369333pt;}
.y31{bottom:590.621333pt;}
.y14f{bottom:591.105333pt;}
.ya3{bottom:597.002667pt;}
.y64{bottom:597.800000pt;}
.y130{bottom:600.734667pt;}
.yf0{bottom:601.981333pt;}
.y14e{bottom:606.726667pt;}
.y30{bottom:607.917333pt;}
.y8f{bottom:612.942667pt;}
.ya2{bottom:613.740000pt;}
.yce{bottom:614.138667pt;}
.y63{bottom:614.537333pt;}
.yef{bottom:616.593333pt;}
.y12f{bottom:617.472000pt;}
.y2f{bottom:625.212000pt;}
.y8e{bottom:629.680000pt;}
.y14d{bottom:630.317333pt;}
.ycd{bottom:630.876000pt;}
.yee{bottom:631.205333pt;}
.y62{bottom:631.274667pt;}
.y12e{bottom:634.209333pt;}
.ya1{bottom:634.462667pt;}
.y2e{bottom:642.508000pt;}
.y8d{bottom:646.417333pt;}
.ycc{bottom:647.613333pt;}
.y61{bottom:648.012000pt;}
.y12d{bottom:650.946667pt;}
.yed{bottom:652.218667pt;}
.y14c{bottom:653.909333pt;}
.y2d{bottom:659.802667pt;}
.y183{bottom:660.564000pt;}
.y8c{bottom:663.154667pt;}
.ya0{bottom:664.350667pt;}
.y60{bottom:664.749333pt;}
.y12c{bottom:667.684000pt;}
.yc5{bottom:674.157333pt;}
.y182{bottom:675.906667pt;}
.y2c{bottom:677.097333pt;}
.y14b{bottom:677.501333pt;}
.y8a{bottom:679.892000pt;}
.yec{bottom:680.325333pt;}
.y9f{bottom:681.088000pt;}
.y5f{bottom:681.485333pt;}
.y12b{bottom:684.421333pt;}
.y8b{bottom:684.713333pt;}
.y181{bottom:691.249333pt;}
.y14a{bottom:693.122667pt;}
.y2b{bottom:694.393333pt;}
.y89{bottom:696.629333pt;}
.yeb{bottom:697.421333pt;}
.y9e{bottom:697.825333pt;}
.y5e{bottom:698.222667pt;}
.y12a{bottom:701.158667pt;}
.y180{bottom:706.592000pt;}
.y149{bottom:708.744000pt;}
.y88{bottom:713.366667pt;}
.y9d{bottom:714.562667pt;}
.y5d{bottom:714.960000pt;}
.y129{bottom:717.896000pt;}
.y17f{bottom:721.934667pt;}
.y2a{bottom:728.690667pt;}
.ydd{bottom:729.272000pt;}
.yea{bottom:729.704000pt;}
.y87{bottom:730.104000pt;}
.y9c{bottom:731.300000pt;}
.y5c{bottom:731.697333pt;}
.y148{bottom:732.336000pt;}
.y128{bottom:734.633333pt;}
.y17e{bottom:737.277333pt;}
.y29{bottom:743.037333pt;}
.ydc{bottom:743.884000pt;}
.y86{bottom:746.841333pt;}
.y147{bottom:747.957333pt;}
.y9b{bottom:748.036000pt;}
.y5b{bottom:748.434667pt;}
.ydb{bottom:751.189333pt;}
.y127{bottom:751.370667pt;}
.y17d{bottom:752.620000pt;}
.y28{bottom:761.241333pt;}
.y85{bottom:763.578667pt;}
.y9a{bottom:764.773333pt;}
.y5a{bottom:765.172000pt;}
.y17c{bottom:767.961333pt;}
.y126{bottom:768.108000pt;}
.y146{bottom:771.548000pt;}
.y27{bottom:771.729333pt;}
.yda{bottom:779.509333pt;}
.y99{bottom:781.510667pt;}
.y59{bottom:781.909333pt;}
.y17b{bottom:783.304000pt;}
.y84{bottom:784.301333pt;}
.y125{bottom:784.845333pt;}
.ycb{bottom:785.496000pt;}
.y145{bottom:787.170667pt;}
.y26{bottom:789.933333pt;}
.y98{bottom:798.248000pt;}
.y58{bottom:798.646667pt;}
.y25{bottom:800.422667pt;}
.yd9{bottom:800.522667pt;}
.y124{bottom:801.582667pt;}
.y83{bottom:802.233333pt;}
.y144{bottom:802.792000pt;}
.y17a{bottom:813.989333pt;}
.y24{bottom:814.768000pt;}
.y97{bottom:814.985333pt;}
.y57{bottom:815.384000pt;}
.y123{bottom:818.320000pt;}
.y143{bottom:818.413333pt;}
.yd8{bottom:828.629333pt;}
.y179{bottom:829.332000pt;}
.y96{bottom:831.722667pt;}
.y56{bottom:832.121333pt;}
.y23{bottom:832.972000pt;}
.y142{bottom:834.034667pt;}
.y122{bottom:835.057333pt;}
.y178{bottom:844.674667pt;}
.y95{bottom:848.460000pt;}
.y55{bottom:848.858667pt;}
.y22{bottom:855.416000pt;}
.y177{bottom:860.017333pt;}
.yd7{bottom:861.610667pt;}
.y121{bottom:862.406667pt;}
.y94{bottom:865.197333pt;}
.y54{bottom:865.596000pt;}
.y176{bottom:875.360000pt;}
.yd6{bottom:878.348000pt;}
.y93{bottom:881.934667pt;}
.y53{bottom:882.333333pt;}
.y174{bottom:890.701333pt;}
.y175{bottom:890.702667pt;}
.yd5{bottom:895.085333pt;}
.y21{bottom:896.213333pt;}
.y52{bottom:899.070667pt;}
.y92{bottom:902.657333pt;}
.y173{bottom:906.044000pt;}
.yd4{bottom:911.822667pt;}
.y51{bottom:915.808000pt;}
.y20{bottom:921.320000pt;}
.y172{bottom:921.386667pt;}
.yd3{bottom:928.560000pt;}
.y50{bottom:932.545333pt;}
.y171{bottom:936.729333pt;}
.yd2{bottom:945.297333pt;}
.y1f{bottom:946.425333pt;}
.y4f{bottom:949.282667pt;}
.y170{bottom:952.072000pt;}
.y91{bottom:954.104000pt;}
.yd1{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y16f{bottom:967.414667pt;}
.y1e{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.y1c{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.h13{height:20.660233pt;}
.h2{height:22.673858pt;}
.h11{height:27.184641pt;}
.h4{height:29.433775pt;}
.hb{height:30.063343pt;}
.h3{height:30.399505pt;}
.h5{height:35.073565pt;}
.h12{height:38.080100pt;}
.h8{height:38.947124pt;}
.hc{height:40.084290pt;}
.hd{height:43.469107pt;}
.he{height:45.095014pt;}
.h6{height:45.267404pt;}
.hf{height:48.298685pt;}
.h15{height:48.583014pt;}
.h10{height:50.105236pt;}
.ha{height:55.997783pt;}
.h7{height:68.973237pt;}
.h14{height:71.793681pt;}
.h17{height:74.321681pt;}
.h9{height:86.938214pt;}
.h16{height:98.492348pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:171.167297pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:51.812565pt;}
.x64{left:76.309333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x48{left:225.365333pt;}
.x38{left:230.410667pt;}
.x31{left:235.414667pt;}
.x33{left:238.970667pt;}
.x5{left:239.924000pt;}
.x5b{left:242.704000pt;}
.x5d{left:247.277333pt;}
.x5c{left:248.801333pt;}
.x8{left:250.204000pt;}
.x34{left:251.536000pt;}
.x42{left:258.570667pt;}
.x3e{left:263.365333pt;}
.x57{left:266.126667pt;}
.x5a{left:267.605333pt;}
.x35{left:271.410667pt;}
.x60{left:272.846667pt;}
.x7{left:273.892000pt;}
.x62{left:275.098667pt;}
.x27{left:278.481333pt;}
.xd{left:282.722667pt;}
.x59{left:283.892000pt;}
.x30{left:285.798667pt;}
.xe{left:289.365333pt;}
.xf{left:292.622667pt;}
.x58{left:293.742667pt;}
.x10{left:299.264000pt;}
.x9{left:303.913333pt;}
.xa{left:310.554667pt;}
.xb{left:317.329333pt;}
.x5e{left:321.561333pt;}
.xc{left:323.970667pt;}
.x63{left:330.746667pt;}
.x5f{left:334.845333pt;}
.x17{left:336.076000pt;}
.x15{left:343.545333pt;}
.x61{left:347.322667pt;}
.x16{left:350.188000pt;}
.x4e{left:358.426667pt;}
.x4f{left:365.732000pt;}
.x3b{left:377.140000pt;}
.x49{left:384.321333pt;}
.x18{left:385.304000pt;}
.x52{left:386.481333pt;}
.x19{left:391.945333pt;}
.x3d{left:395.790667pt;}
.x53{left:399.765333pt;}
.x3c{left:400.954667pt;}
.x32{left:403.734667pt;}
.x44{left:430.588000pt;}
.x39{left:433.902667pt;}
.x45{left:436.565333pt;}
.x56{left:447.593333pt;}
.x1a{left:460.405333pt;}
.x1b{left:467.048000pt;}
.x22{left:468.360000pt;}
.x1e{left:482.069333pt;}
.x28{left:491.914667pt;}
.x1f{left:495.353333pt;}
.x1c{left:497.896000pt;}
.x29{left:501.472000pt;}
.x2a{left:507.092000pt;}
.x1d{left:511.178667pt;}
.x2b{left:513.141333pt;}
.x11{left:521.665333pt;}
.x12{left:528.308000pt;}
.x4a{left:534.980000pt;}
.x4b{left:543.612000pt;}
.x13{left:548.845333pt;}
.x14{left:555.486667pt;}
.x46{left:558.346667pt;}
.x47{left:565.652000pt;}
.x2e{left:567.966667pt;}
.x36{left:579.061333pt;}
.x2f{left:582.209333pt;}
.x3f{left:585.820000pt;}
.x40{left:593.532000pt;}
.x41{left:595.188000pt;}
.x43{left:597.477333pt;}
.x20{left:604.810667pt;}
.x37{left:613.018667pt;}
.x50{left:616.249333pt;}
.x21{left:618.094667pt;}
.x51{left:626.206667pt;}
.x25{left:627.438667pt;}
.x3a{left:628.757333pt;}
.x26{left:640.722667pt;}
.x67{left:655.792000pt;}
.x2c{left:668.254667pt;}
.x2d{left:674.305333pt;}
.x68{left:679.701333pt;}
.x54{left:688.182667pt;}
.x55{left:701.466667pt;}
.x4c{left:711.966667pt;}
.x65{left:720.332000pt;}
.x4d{left:721.925333pt;}
.x23{left:727.152000pt;}
.x24{left:740.436000pt;}
.x66{left:744.242667pt;}
}




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