
    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_9de43007db51075670bf25ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_44c56c84cd47725db761fdf8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_e205235422f7e9dfc668ab05.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d9188f74fe86385b2e6c524c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_41abb6bcbc38d790ab9a5bbb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_e0093974fbad9adc0df3f006.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.388000;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_8ca1362e133354c55b8f8daa.woff2')format("woff");}.ff7{font-family:ff7;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);}
.m15{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);}
.m1f{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);}
.m1{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);}
.m8{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);}
.m20{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);}
.m24{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);}
.m29{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);}
.m4{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);}
.m17{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);}
.m1c{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);}
.m19{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);}
.m22{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);}
.m27{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);}
.m12{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);}
.m1a{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);}
.m10{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);}
.mb{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);}
.m25{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);}
.m1e{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);}
.mf{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);}
.m26{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);}
.m18{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);}
.ma{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);}
.mc{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);}
.m16{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m14{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);}
.m28{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);}
.me{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);}
.m21{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);}
.md{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);}
.m23{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);}
.m7{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);}
.m13{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;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:25.410000px;}
.v5{vertical-align:29.130000px;}
.ls8{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000088px;}
.ls19{letter-spacing:0.000527px;}
.ls2a{letter-spacing:0.000566px;}
.ls1{letter-spacing:0.000600px;}
.ls13{letter-spacing:0.000676px;}
.ls17{letter-spacing:0.000800px;}
.ls28{letter-spacing:0.000845px;}
.ls25{letter-spacing:0.001484px;}
.ls14{letter-spacing:0.001584px;}
.ls1a{letter-spacing:0.001693px;}
.ls11{letter-spacing:0.001932px;}
.ls2d{letter-spacing:0.002045px;}
.ls12{letter-spacing:0.002074px;}
.ls16{letter-spacing:0.002090px;}
.ls1d{letter-spacing:0.002161px;}
.ls20{letter-spacing:0.002382px;}
.ls2c{letter-spacing:0.002422px;}
.ls1c{letter-spacing:0.002744px;}
.ls22{letter-spacing:0.002841px;}
.ls5{letter-spacing:0.002853px;}
.ls18{letter-spacing:0.002868px;}
.ls24{letter-spacing:0.003090px;}
.ls21{letter-spacing:0.003490px;}
.ls29{letter-spacing:0.003859px;}
.ls23{letter-spacing:0.004289px;}
.ls15{letter-spacing:0.004560px;}
.lsf{letter-spacing:0.004800px;}
.ls2{letter-spacing:2.989200px;}
.lsa{letter-spacing:3.507900px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls10{letter-spacing:13.284652px;}
.lse{letter-spacing:13.448400px;}
.ls1b{letter-spacing:13.454400px;}
.ls26{letter-spacing:13.614359px;}
.ls1e{letter-spacing:15.873929px;}
.ls2b{letter-spacing:16.397459px;}
.ls3{letter-spacing:17.773200px;}
.lsc{letter-spacing:18.291334px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.lsd{letter-spacing:127.271579px;}
.ls9{letter-spacing:2759.027700px;}
.lsb{letter-spacing:2760.227700px;}
.ls27{letter-spacing:2761.421700px;}
.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;}
}
.ws8f{word-spacing:-13.449600px;}
.ws2d{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws4c{word-spacing:-2.869229px;}
.ws78{word-spacing:-2.570351px;}
.ws5f{word-spacing:-2.510575px;}
.ws5c{word-spacing:-2.450800px;}
.ws6e{word-spacing:-2.271473px;}
.ws96{word-spacing:-2.259533px;}
.ws79{word-spacing:-2.151922px;}
.ws85{word-spacing:-1.972595px;}
.ws60{word-spacing:-1.793268px;}
.ws8d{word-spacing:-1.775347px;}
.ws24{word-spacing:-1.667750px;}
.ws1d{word-spacing:-1.560154px;}
.ws4e{word-spacing:-1.554166px;}
.ws4d{word-spacing:-1.374839px;}
.wsac{word-spacing:-1.183565px;}
.ws4{word-spacing:-1.171598px;}
.ws5a{word-spacing:-1.135736px;}
.ws18{word-spacing:-1.129766px;}
.wsa0{word-spacing:-1.075968px;}
.ws6{word-spacing:-1.046070px;}
.ws23{word-spacing:-1.016333px;}
.ws6c{word-spacing:-0.956410px;}
.ws74{word-spacing:-0.896634px;}
.ws3f{word-spacing:-0.777083px;}
.ws58{word-spacing:-0.717307px;}
.ws1f{word-spacing:-0.699379px;}
.ws7b{word-spacing:-0.657532px;}
.ws83{word-spacing:-0.478205px;}
.ws6d{word-spacing:-0.418429px;}
.ws46{word-spacing:-0.358654px;}
.ws27{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.268992px;}
.ws2f{word-spacing:-0.239102px;}
.ws1e{word-spacing:-0.215194px;}
.wse{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws11{word-spacing:-0.152616px;}
.ws26{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws10{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.047821px;}
.wsa1{word-spacing:-0.026054px;}
.wsa4{word-spacing:-0.024288px;}
.ws1{word-spacing:0.000000px;}
.ws48{word-spacing:0.053798px;}
.ws9c{word-spacing:0.057396px;}
.ws28{word-spacing:0.059776px;}
.ws22{word-spacing:0.107597px;}
.ws2a{word-spacing:0.119551px;}
.ws13{word-spacing:0.143462px;}
.ws89{word-spacing:0.161395px;}
.ws41{word-spacing:0.179327px;}
.ws17{word-spacing:0.215194px;}
.ws2b{word-spacing:0.239102px;}
.ws1c{word-spacing:0.268992px;}
.ws43{word-spacing:0.298878px;}
.wsa3{word-spacing:0.322790px;}
.ws3e{word-spacing:0.358654px;}
.ws42{word-spacing:0.418429px;}
.ws5e{word-spacing:0.478205px;}
.ws15{word-spacing:0.537984px;}
.ws5d{word-spacing:0.597756px;}
.ws87{word-spacing:0.717307px;}
.ws86{word-spacing:0.777083px;}
.ws72{word-spacing:0.836858px;}
.ws32{word-spacing:0.956410px;}
.ws5{word-spacing:1.004227px;}
.ws59{word-spacing:1.016185px;}
.ws80{word-spacing:1.135736px;}
.ws19{word-spacing:1.183565px;}
.ws35{word-spacing:1.255288px;}
.ws38{word-spacing:1.315063px;}
.ws57{word-spacing:1.374839px;}
.ws7d{word-spacing:1.494390px;}
.ws31{word-spacing:1.554166px;}
.ws30{word-spacing:1.613941px;}
.ws34{word-spacing:1.673717px;}
.wsaa{word-spacing:1.829146px;}
.ws9d{word-spacing:1.882944px;}
.ws55{word-spacing:1.912819px;}
.ws33{word-spacing:1.972595px;}
.ws7e{word-spacing:2.032370px;}
.ws21{word-spacing:2.205734px;}
.ws7c{word-spacing:2.211697px;}
.ws7f{word-spacing:2.271473px;}
.ws93{word-spacing:2.313331px;}
.ws5b{word-spacing:2.391024px;}
.ws9f{word-spacing:2.420928px;}
.ws88{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws39{word-spacing:2.570351px;}
.ws71{word-spacing:2.689902px;}
.ws54{word-spacing:2.749678px;}
.ws45{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.wsaf{word-spacing:2.958912px;}
.wsa2{word-spacing:3.066509px;}
.ws56{word-spacing:3.168107px;}
.wsad{word-spacing:3.222374px;}
.ws8a{word-spacing:3.224822px;}
.ws4f{word-spacing:3.227882px;}
.ws91{word-spacing:3.227904px;}
.ws53{word-spacing:3.287658px;}
.ws36{word-spacing:3.407209px;}
.ws9b{word-spacing:3.443098px;}
.wsa8{word-spacing:3.466480px;}
.ws4a{word-spacing:3.466985px;}
.ws6f{word-spacing:3.526760px;}
.ws25{word-spacing:3.586536px;}
.ws6b{word-spacing:3.646312px;}
.ws76{word-spacing:3.945190px;}
.ws82{word-spacing:4.004965px;}
.ws29{word-spacing:4.064741px;}
.ws70{word-spacing:4.244068px;}
.ws40{word-spacing:4.542946px;}
.ws77{word-spacing:4.662497px;}
.ws81{word-spacing:4.722272px;}
.wsc{word-spacing:4.770079px;}
.ws52{word-spacing:4.841824px;}
.wsd{word-spacing:4.853765px;}
.ws84{word-spacing:4.901599px;}
.ws47{word-spacing:5.080926px;}
.ws3c{word-spacing:5.320028px;}
.ws3a{word-spacing:5.499355px;}
.ws73{word-spacing:5.678682px;}
.ws44{word-spacing:6.097111px;}
.ws97{word-spacing:6.133018px;}
.ws62{word-spacing:6.216662px;}
.ws37{word-spacing:6.276438px;}
.ws64{word-spacing:6.294413px;}
.ws3b{word-spacing:6.336214px;}
.ws4b{word-spacing:6.455765px;}
.ws75{word-spacing:6.575316px;}
.ws63{word-spacing:6.671002px;}
.ws2e{word-spacing:6.694867px;}
.ws51{word-spacing:6.814418px;}
.wsab{word-spacing:6.939994px;}
.ws6a{word-spacing:7.591501px;}
.ws3d{word-spacing:7.711052px;}
.wsa{word-spacing:7.782761px;}
.ws61{word-spacing:8.009930px;}
.ws7a{word-spacing:8.308808px;}
.ws2{word-spacing:10.421459px;}
.ws9a{word-spacing:10.652083px;}
.ws2c{word-spacing:11.910253px;}
.ws8{word-spacing:12.176255px;}
.ws8c{word-spacing:12.212237px;}
.ws8b{word-spacing:12.696422px;}
.ws90{word-spacing:13.234406px;}
.ws99{word-spacing:13.342003px;}
.ws94{word-spacing:13.390666px;}
.wsb0{word-spacing:13.392230px;}
.wsa7{word-spacing:13.392682px;}
.ws95{word-spacing:13.395802px;}
.wsa9{word-spacing:13.397002px;}
.wsa6{word-spacing:13.557197px;}
.wsa5{word-spacing:13.664794px;}
.ws49{word-spacing:14.884124px;}
.wsae{word-spacing:15.709133px;}
.ws9{word-spacing:16.109478px;}
.ws92{word-spacing:16.623706px;}
.ws8e{word-spacing:17.000294px;}
.ws98{word-spacing:18.237658px;}
.ws50{word-spacing:18.470660px;}
.ws9e{word-spacing:22.756723px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.ws65{word-spacing:173.330930px;}
.ws67{word-spacing:213.996460px;}
.ws68{word-spacing:247.186758px;}
.ws69{word-spacing:266.240208px;}
.ws66{word-spacing:447.070151px;}
._8{margin-left:-9.898906px;}
._c{margin-left:-7.101389px;}
._18{margin-left:-6.085160px;}
._1{margin-left:-4.644551px;}
._26{margin-left:-2.794506px;}
._0{margin-left:-1.506341px;}
._4{width:2.301354px;}
._9{width:3.724159px;}
._5{width:11.582422px;}
._3{width:12.971268px;}
._1a{width:14.178768px;}
._d{width:15.601507px;}
._b{width:17.000294px;}
._e{width:18.673889px;}
._15{width:19.965050px;}
._16{width:21.112738px;}
._11{width:22.140874px;}
._10{width:23.850464px;}
._2{width:25.938936px;}
._17{width:27.437000px;}
._19{width:28.512961px;}
._6{width:30.587087px;}
._27{width:32.171224px;}
._7{width:33.355008px;}
._29{width:35.721886px;}
._12{width:37.443427px;}
._13{width:38.507437px;}
._14{width:42.082022px;}
._28{width:43.935066px;}
._2a{width:48.167274px;}
._a{width:54.423634px;}
._2b{width:61.868160px;}
._1e{width:127.543018px;}
._20{width:131.256595px;}
._1b{width:191.652302px;}
._1c{width:197.241314px;}
._1f{width:234.484458px;}
._21{width:259.889058px;}
._1d{width:411.910184px;}
._22{width:447.070151px;}
._25{width:459.772451px;}
._23{width:466.123601px;}
._24{width:478.825901px;}
._f{width:937.581094px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs7{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:50.809200px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y49{bottom:31.890000px;}
.y108{bottom:94.699500px;}
.ya1{bottom:98.850000px;}
.y11f{bottom:103.696500px;}
.y1b{bottom:104.646000px;}
.y156{bottom:106.969500px;}
.y80{bottom:107.641500px;}
.y107{bottom:113.529000px;}
.y48{bottom:114.081000px;}
.ya0{bottom:117.679500px;}
.y1a{bottom:122.535000px;}
.y155{bottom:124.228500px;}
.y7f{bottom:126.471000px;}
.y11e{bottom:130.236000px;}
.y106{bottom:132.358500px;}
.y47{bottom:132.910500px;}
.y9f{bottom:136.509000px;}
.y19{bottom:140.422500px;}
.y154{bottom:141.489000px;}
.y7e{bottom:145.300500px;}
.y11d{bottom:147.811500px;}
.y105{bottom:151.188000px;}
.y46{bottom:151.740000px;}
.y9e{bottom:155.338500px;}
.y18{bottom:158.310000px;}
.y153{bottom:158.749500px;}
.yc8{bottom:162.784500px;}
.y7d{bottom:164.130000px;}
.y11c{bottom:165.385500px;}
.y104{bottom:170.017500px;}
.y45{bottom:170.569500px;}
.y9d{bottom:174.168000px;}
.y152{bottom:176.010000px;}
.y17{bottom:176.199000px;}
.yc7{bottom:181.614000px;}
.y7c{bottom:182.959500px;}
.y103{bottom:188.847000px;}
.y44{bottom:189.399000px;}
.y9c{bottom:192.997500px;}
.y151{bottom:193.270500px;}
.y16{bottom:194.086500px;}
.yc6{bottom:200.443500px;}
.y11b{bottom:200.892000px;}
.y7b{bottom:201.789000px;}
.y102{bottom:207.676500px;}
.y43{bottom:208.228500px;}
.y150{bottom:210.531000px;}
.y9b{bottom:211.827000px;}
.y15{bottom:211.974000px;}
.yc5{bottom:219.273000px;}
.y11a{bottom:219.721500px;}
.y7a{bottom:220.618500px;}
.y101{bottom:226.506000px;}
.y42{bottom:227.058000px;}
.y14f{bottom:227.791500px;}
.y14{bottom:229.863000px;}
.y9a{bottom:230.656500px;}
.yc4{bottom:238.102500px;}
.y119{bottom:238.551000px;}
.y79{bottom:239.446500px;}
.y14e{bottom:245.052000px;}
.y100{bottom:245.335500px;}
.y41{bottom:245.886000px;}
.y99{bottom:249.486000px;}
.yc3{bottom:256.932000px;}
.y118{bottom:257.380500px;}
.y78{bottom:258.276000px;}
.y14d{bottom:262.312500px;}
.y40{bottom:264.715500px;}
.y98{bottom:268.315500px;}
.yff{bottom:268.647000px;}
.yc2{bottom:275.761500px;}
.y117{bottom:276.210000px;}
.y77{bottom:277.105500px;}
.y14c{bottom:279.571500px;}
.y3f{bottom:283.545000px;}
.yfe{bottom:288.822000px;}
.y97{bottom:291.628500px;}
.y116{bottom:295.039500px;}
.y76{bottom:295.935000px;}
.y14b{bottom:296.832000px;}
.yc1{bottom:299.074500px;}
.y13{bottom:300.154500px;}
.y3e{bottom:302.374500px;}
.y96{bottom:311.802000px;}
.y115{bottom:313.869000px;}
.y14a{bottom:314.092500px;}
.y75{bottom:314.764500px;}
.y12{bottom:318.043500px;}
.y3d{bottom:321.204000px;}
.yfd{bottom:324.406500px;}
.y149{bottom:331.353000px;}
.yc0{bottom:332.698500px;}
.y74{bottom:333.594000px;}
.y11{bottom:335.931000px;}
.y3c{bottom:340.033500px;}
.yfc{bottom:345.118500px;}
.y148{bottom:348.613500px;}
.ybf{bottom:351.528000px;}
.y73{bottom:352.423500px;}
.y10{bottom:353.818500px;}
.y95{bottom:357.115500px;}
.yf9{bottom:359.385000px;}
.y3b{bottom:363.346500px;}
.y147{bottom:365.874000px;}
.ybe{bottom:370.357500px;}
.y72{bottom:371.253000px;}
.y94{bottom:373.554000px;}
.yf8{bottom:373.651500px;}
.yf{bottom:380.673000px;}
.yfa{bottom:380.934000px;}
.y146{bottom:383.134500px;}
.yf7{bottom:387.918000px;}
.ybd{bottom:389.187000px;}
.y71{bottom:390.082500px;}
.y93{bottom:397.194000px;}
.ye{bottom:398.562000px;}
.y145{bottom:400.395000px;}
.yf6{bottom:402.184500px;}
.ybc{bottom:408.015000px;}
.y70{bottom:408.912000px;}
.yd{bottom:416.449500px;}
.yfb{bottom:416.451000px;}
.y144{bottom:417.654000px;}
.y92{bottom:420.835500px;}
.ybb{bottom:426.844500px;}
.y6f{bottom:427.741500px;}
.y143{bottom:434.914500px;}
.yf5{bottom:436.653000px;}
.y3a{bottom:438.496500px;}
.y91{bottom:444.475500px;}
.yc{bottom:444.798000px;}
.yba{bottom:445.674000px;}
.y6e{bottom:446.571000px;}
.yf4{bottom:450.919500px;}
.yee{bottom:451.702500px;}
.y142{bottom:452.175000px;}
.yb{bottom:462.685500px;}
.yed{bottom:464.404500px;}
.yb9{bottom:464.503500px;}
.yf3{bottom:465.186000px;}
.y6d{bottom:465.400500px;}
.y90{bottom:468.117000px;}
.y141{bottom:469.435500px;}
.yef{bottom:471.687000px;}
.y39{bottom:475.887000px;}
.yec{bottom:477.106500px;}
.yf2{bottom:477.889500px;}
.yb8{bottom:483.333000px;}
.y6c{bottom:484.230000px;}
.y140{bottom:486.696000px;}
.ya{bottom:489.540000px;}
.yeb{bottom:491.373000px;}
.y8f{bottom:491.757000px;}
.yf1{bottom:492.154500px;}
.y38{bottom:495.343500px;}
.yb7{bottom:502.162500px;}
.y6b{bottom:503.059500px;}
.y13f{bottom:503.956500px;}
.yf0{bottom:506.421000px;}
.y9{bottom:507.429000px;}
.y8e{bottom:508.195500px;}
.y37{bottom:514.800000px;}
.yb6{bottom:520.992000px;}
.y13e{bottom:521.217000px;}
.y6a{bottom:521.889000px;}
.y8{bottom:525.316500px;}
.y114{bottom:525.475500px;}
.yea{bottom:526.624500px;}
.y8d{bottom:531.835500px;}
.y36{bottom:534.258000px;}
.y13d{bottom:538.477500px;}
.ye7{bottom:539.326500px;}
.yb5{bottom:539.821500px;}
.y69{bottom:540.718500px;}
.y7{bottom:543.204000px;}
.ye9{bottom:552.030000px;}
.ye6{bottom:553.593000px;}
.y35{bottom:553.714500px;}
.y8c{bottom:555.477000px;}
.y13c{bottom:555.738000px;}
.yb4{bottom:558.651000px;}
.y113{bottom:559.099500px;}
.y68{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.ye8{bottom:566.296500px;}
.y8b{bottom:571.915500px;}
.y13b{bottom:572.997000px;}
.y34{bottom:573.172500px;}
.yb3{bottom:577.480500px;}
.y112{bottom:577.929000px;}
.y67{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.ye5{bottom:586.498500px;}
.y13a{bottom:590.257500px;}
.y33{bottom:592.629000px;}
.y8a{bottom:595.555500px;}
.yb2{bottom:596.310000px;}
.y111{bottom:596.758500px;}
.y4{bottom:596.868000px;}
.y66{bottom:597.207000px;}
.ye4{bottom:600.765000px;}
.y139{bottom:607.518000px;}
.ye1{bottom:607.899000px;}
.y89{bottom:611.994000px;}
.y32{bottom:612.085500px;}
.y3{bottom:614.757000px;}
.ye3{bottom:615.031500px;}
.yb1{bottom:615.139500px;}
.y110{bottom:615.588000px;}
.y65{bottom:616.036500px;}
.y138{bottom:624.778500px;}
.ye2{bottom:629.298000px;}
.y31{bottom:631.543500px;}
.y2{bottom:632.644500px;}
.y10f{bottom:634.417500px;}
.y64{bottom:634.866000px;}
.y88{bottom:635.635500px;}
.yb0{bottom:638.452500px;}
.y137{bottom:642.039000px;}
.ye0{bottom:649.501500px;}
.y1{bottom:650.532000px;}
.y30{bottom:651.000000px;}
.y10e{bottom:653.247000px;}
.y63{bottom:653.695500px;}
.y87{bottom:659.275500px;}
.y136{bottom:659.299500px;}
.ydf{bottom:663.768000px;}
.y2f{bottom:670.456500px;}
.yaf{bottom:672.076500px;}
.y62{bottom:672.525000px;}
.y135{bottom:676.560000px;}
.yde{bottom:678.034500px;}
.y86{bottom:682.917000px;}
.y2e{bottom:689.914500px;}
.yae{bottom:690.906000px;}
.y61{bottom:691.354500px;}
.yda{bottom:692.301000px;}
.y134{bottom:693.820500px;}
.y85{bottom:706.557000px;}
.ydd{bottom:706.567500px;}
.y2d{bottom:709.371000px;}
.yad{bottom:709.735500px;}
.y60{bottom:710.184000px;}
.y133{bottom:711.079500px;}
.ydc{bottom:720.834000px;}
.y132{bottom:728.340000px;}
.yac{bottom:728.565000px;}
.y2c{bottom:728.829000px;}
.y5f{bottom:729.013500px;}
.y84{bottom:730.198500px;}
.ydb{bottom:735.100500px;}
.y131{bottom:745.600500px;}
.y83{bottom:746.637000px;}
.yab{bottom:747.394500px;}
.y5e{bottom:747.843000px;}
.y2b{bottom:748.285500px;}
.yd9{bottom:755.302500px;}
.y130{bottom:762.861000px;}
.yaa{bottom:766.224000px;}
.y5d{bottom:766.671000px;}
.y2a{bottom:767.742000px;}
.yd8{bottom:768.006000px;}
.y82{bottom:770.277000px;}
.y12f{bottom:780.121500px;}
.ya9{bottom:785.053500px;}
.y5c{bottom:785.500500px;}
.y12e{bottom:797.382000px;}
.yd7{bottom:799.998000px;}
.ya8{bottom:803.883000px;}
.y5b{bottom:804.330000px;}
.y81{bottom:804.885000px;}
.y29{bottom:806.328000px;}
.y12d{bottom:814.642500px;}
.yd6{bottom:819.231000px;}
.y28{bottom:822.468000px;}
.ya7{bottom:822.712500px;}
.y5a{bottom:823.159500px;}
.y12c{bottom:831.903000px;}
.ya6{bottom:841.540500px;}
.y59{bottom:841.989000px;}
.y27{bottom:842.946000px;}
.y12b{bottom:849.163500px;}
.y26{bottom:854.746500px;}
.yd5{bottom:856.335000px;}
.ya5{bottom:860.370000px;}
.y58{bottom:860.818500px;}
.y12a{bottom:866.422500px;}
.y25{bottom:870.886500px;}
.yd4{bottom:875.164500px;}
.y24{bottom:875.226000px;}
.ya4{bottom:879.199500px;}
.y57{bottom:879.648000px;}
.y163{bottom:881.217000px;}
.y129{bottom:883.683000px;}
.y23{bottom:887.025000px;}
.yd3{bottom:893.994000px;}
.ya3{bottom:898.029000px;}
.y56{bottom:898.477500px;}
.y128{bottom:900.943500px;}
.y22{bottom:903.165000px;}
.yd2{bottom:912.823500px;}
.y162{bottom:915.738000px;}
.y10d{bottom:916.858500px;}
.y55{bottom:917.307000px;}
.y127{bottom:918.204000px;}
.ya2{bottom:921.342000px;}
.y21{bottom:923.644500px;}
.yd1{bottom:931.653000px;}
.y161{bottom:932.998500px;}
.y126{bottom:935.464500px;}
.y10c{bottom:935.688000px;}
.y54{bottom:936.136500px;}
.y160{bottom:950.259000px;}
.yd0{bottom:950.482500px;}
.y10b{bottom:954.517500px;}
.y53{bottom:954.966000px;}
.y125{bottom:957.208500px;}
.y15f{bottom:967.519500px;}
.y20{bottom:968.320500px;}
.ycf{bottom:969.312000px;}
.y10a{bottom:973.347000px;}
.y52{bottom:973.795500px;}
.y15e{bottom:984.780000px;}
.yce{bottom:988.141500px;}
.y124{bottom:990.832500px;}
.y51{bottom:992.625000px;}
.y109{bottom:996.660000px;}
.y15c{bottom:1002.039000px;}
.y15d{bottom:1002.040500px;}
.ycd{bottom:1006.971000px;}
.y1f{bottom:1008.240000px;}
.y50{bottom:1011.454500px;}
.y123{bottom:1017.372000px;}
.y15b{bottom:1019.299500px;}
.ycc{bottom:1025.800500px;}
.y4f{bottom:1030.284000px;}
.y122{bottom:1034.946000px;}
.y1e{bottom:1036.485000px;}
.y15a{bottom:1036.560000px;}
.ycb{bottom:1044.630000px;}
.y4e{bottom:1049.113500px;}
.y159{bottom:1053.820500px;}
.y121{bottom:1061.487000px;}
.yca{bottom:1063.459500px;}
.y1d{bottom:1064.728500px;}
.y4d{bottom:1067.943000px;}
.y158{bottom:1071.081000px;}
.y120{bottom:1079.061000px;}
.yc9{bottom:1082.289000px;}
.y4c{bottom:1086.772500px;}
.y157{bottom:1088.341500px;}
.y1c{bottom:1092.972000px;}
.y4b{bottom:1105.602000px;}
.y4a{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h7{height:26.302208px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h8{height:34.813397px;}
.hf{height:35.052500px;}
.h10{height:36.735052px;}
.h13{height:36.989098px;}
.h12{height:37.583098px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.h15{height:39.434227px;}
.hd{height:43.217759px;}
.he{height:43.516637px;}
.ha{height:43.660208px;}
.h4{height:43.815515px;}
.h16{height:49.117939px;}
.h6{height:54.547601px;}
.h11{height:62.145052px;}
.h14{height:66.119098px;}
.h5{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x26{left:62.656500px;}
.x4e{left:67.464000px;}
.x36{left:70.053000px;}
.x4a{left:71.248500px;}
.x40{left:76.723500px;}
.x2e{left:79.117500px;}
.x67{left:85.848000px;}
.x3e{left:87.228000px;}
.x2c{left:89.224500px;}
.x3f{left:91.114500px;}
.x53{left:98.305500px;}
.x4b{left:101.283000px;}
.x35{left:111.967500px;}
.x2b{left:123.433500px;}
.x2a{left:129.546000px;}
.x33{left:133.426500px;}
.x30{left:142.128000px;}
.x37{left:143.230500px;}
.x34{left:165.724500px;}
.x4f{left:193.360500px;}
.x32{left:226.032000px;}
.x25{left:239.925000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x29{left:250.657500px;}
.x3{left:269.914500px;}
.x6{left:281.479500px;}
.xb{left:287.373000px;}
.x28{left:290.266500px;}
.xc{left:294.844500px;}
.x3d{left:307.089000px;}
.x5{left:308.538000px;}
.x2f{left:310.293000px;}
.x59{left:316.902000px;}
.x1f{left:317.908500px;}
.x57{left:323.745000px;}
.x5a{left:331.846500px;}
.x3a{left:335.994000px;}
.x3b{left:350.938500px;}
.x2d{left:354.546000px;}
.x20{left:361.485000px;}
.x5d{left:368.235000px;}
.x5e{left:383.178000px;}
.x9{left:387.067500px;}
.x65{left:390.711000px;}
.xa{left:394.539000px;}
.x27{left:407.949000px;}
.x31{left:410.941500px;}
.xf{left:412.599000px;}
.x10{left:420.070500px;}
.x23{left:421.524000px;}
.x11{left:427.647000px;}
.x12{left:435.120000px;}
.x24{left:436.468500px;}
.x66{left:447.652500px;}
.x58{left:451.036500px;}
.x5f{left:464.179500px;}
.x60{left:479.124000px;}
.xd{left:491.271000px;}
.xe{left:498.742500px;}
.x7{left:507.613500px;}
.x61{left:509.931000px;}
.x8{left:515.086500px;}
.x62{left:524.875500px;}
.x1b{left:558.321000px;}
.x1c{left:573.265500px;}
.x1d{left:574.317000px;}
.x19{left:576.990000px;}
.x5b{left:587.499000px;}
.x1e{left:589.260000px;}
.x1a{left:591.934500px;}
.x5c{left:606.171000px;}
.x50{left:607.438500px;}
.x46{left:609.579000px;}
.x4d{left:611.223000px;}
.x4c{left:613.218000px;}
.x45{left:616.348500px;}
.x42{left:622.153500px;}
.x44{left:624.936000px;}
.x49{left:629.038500px;}
.x41{left:630.823500px;}
.x43{left:631.935000px;}
.x48{left:634.005000px;}
.x54{left:648.651000px;}
.x52{left:667.576500px;}
.x51{left:680.121000px;}
.x63{left:684.300000px;}
.x47{left:692.823000px;}
.x64{left:699.244500px;}
.x13{left:709.078500px;}
.x14{left:716.550000px;}
.x15{left:720.361500px;}
.x38{left:728.038500px;}
.x6b{left:734.248500px;}
.x16{left:735.304500px;}
.x6d{left:740.842500px;}
.x39{left:742.981500px;}
.x17{left:746.826000px;}
.x18{left:754.299000px;}
.x3c{left:758.028000px;}
.x21{left:759.289500px;}
.x6c{left:761.148000px;}
.x6e{left:767.742000px;}
.x22{left:774.232500px;}
.x68{left:789.823500px;}
.x69{left:810.265500px;}
.x55{left:817.698000px;}
.x56{left:832.642500px;}
.x6a{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:22.586667pt;}
.v5{vertical-align:25.893333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000078pt;}
.ls19{letter-spacing:0.000469pt;}
.ls2a{letter-spacing:0.000503pt;}
.ls1{letter-spacing:0.000533pt;}
.ls13{letter-spacing:0.000600pt;}
.ls17{letter-spacing:0.000711pt;}
.ls28{letter-spacing:0.000751pt;}
.ls25{letter-spacing:0.001319pt;}
.ls14{letter-spacing:0.001408pt;}
.ls1a{letter-spacing:0.001505pt;}
.ls11{letter-spacing:0.001718pt;}
.ls2d{letter-spacing:0.001818pt;}
.ls12{letter-spacing:0.001843pt;}
.ls16{letter-spacing:0.001858pt;}
.ls1d{letter-spacing:0.001921pt;}
.ls20{letter-spacing:0.002117pt;}
.ls2c{letter-spacing:0.002153pt;}
.ls1c{letter-spacing:0.002439pt;}
.ls22{letter-spacing:0.002525pt;}
.ls5{letter-spacing:0.002536pt;}
.ls18{letter-spacing:0.002550pt;}
.ls24{letter-spacing:0.002746pt;}
.ls21{letter-spacing:0.003102pt;}
.ls29{letter-spacing:0.003430pt;}
.ls23{letter-spacing:0.003813pt;}
.ls15{letter-spacing:0.004053pt;}
.lsf{letter-spacing:0.004267pt;}
.ls2{letter-spacing:2.657067pt;}
.lsa{letter-spacing:3.118133pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls10{letter-spacing:11.808580pt;}
.lse{letter-spacing:11.954133pt;}
.ls1b{letter-spacing:11.959467pt;}
.ls26{letter-spacing:12.101653pt;}
.ls1e{letter-spacing:14.110159pt;}
.ls2b{letter-spacing:14.575519pt;}
.ls3{letter-spacing:15.798400pt;}
.lsc{letter-spacing:16.258963pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.lsd{letter-spacing:113.130292pt;}
.ls9{letter-spacing:2452.469067pt;}
.lsb{letter-spacing:2453.535733pt;}
.ls27{letter-spacing:2454.597067pt;}
.ws8f{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws4c{word-spacing:-2.550426pt;}
.ws78{word-spacing:-2.284756pt;}
.ws5f{word-spacing:-2.231622pt;}
.ws5c{word-spacing:-2.178489pt;}
.ws6e{word-spacing:-2.019087pt;}
.ws96{word-spacing:-2.008474pt;}
.ws79{word-spacing:-1.912819pt;}
.ws85{word-spacing:-1.753418pt;}
.ws60{word-spacing:-1.594016pt;}
.ws8d{word-spacing:-1.578086pt;}
.ws24{word-spacing:-1.482445pt;}
.ws1d{word-spacing:-1.386803pt;}
.ws4e{word-spacing:-1.381481pt;}
.ws4d{word-spacing:-1.222079pt;}
.wsac{word-spacing:-1.052058pt;}
.ws4{word-spacing:-1.041421pt;}
.ws5a{word-spacing:-1.009543pt;}
.ws18{word-spacing:-1.004237pt;}
.wsa0{word-spacing:-0.956416pt;}
.ws6{word-spacing:-0.929840pt;}
.ws23{word-spacing:-0.903407pt;}
.ws6c{word-spacing:-0.850142pt;}
.ws74{word-spacing:-0.797008pt;}
.ws3f{word-spacing:-0.690740pt;}
.ws58{word-spacing:-0.637606pt;}
.ws1f{word-spacing:-0.621670pt;}
.ws7b{word-spacing:-0.584473pt;}
.ws83{word-spacing:-0.425071pt;}
.ws6d{word-spacing:-0.371937pt;}
.ws46{word-spacing:-0.318803pt;}
.ws27{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.239104pt;}
.ws2f{word-spacing:-0.212535pt;}
.ws1e{word-spacing:-0.191283pt;}
.wse{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws11{word-spacing:-0.135659pt;}
.ws26{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws10{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.042507pt;}
.wsa1{word-spacing:-0.023159pt;}
.wsa4{word-spacing:-0.021589pt;}
.ws1{word-spacing:0.000000pt;}
.ws48{word-spacing:0.047821pt;}
.ws9c{word-spacing:0.051019pt;}
.ws28{word-spacing:0.053134pt;}
.ws22{word-spacing:0.095642pt;}
.ws2a{word-spacing:0.106268pt;}
.ws13{word-spacing:0.127522pt;}
.ws89{word-spacing:0.143462pt;}
.ws41{word-spacing:0.159402pt;}
.ws17{word-spacing:0.191283pt;}
.ws2b{word-spacing:0.212535pt;}
.ws1c{word-spacing:0.239104pt;}
.ws43{word-spacing:0.265669pt;}
.wsa3{word-spacing:0.286925pt;}
.ws3e{word-spacing:0.318803pt;}
.ws42{word-spacing:0.371937pt;}
.ws5e{word-spacing:0.425071pt;}
.ws15{word-spacing:0.478208pt;}
.ws5d{word-spacing:0.531339pt;}
.ws87{word-spacing:0.637606pt;}
.ws86{word-spacing:0.690740pt;}
.ws72{word-spacing:0.743874pt;}
.ws32{word-spacing:0.850142pt;}
.ws5{word-spacing:0.892646pt;}
.ws59{word-spacing:0.903276pt;}
.ws80{word-spacing:1.009543pt;}
.ws19{word-spacing:1.052058pt;}
.ws35{word-spacing:1.115811pt;}
.ws38{word-spacing:1.168945pt;}
.ws57{word-spacing:1.222079pt;}
.ws7d{word-spacing:1.328347pt;}
.ws31{word-spacing:1.381481pt;}
.ws30{word-spacing:1.434614pt;}
.ws34{word-spacing:1.487748pt;}
.wsaa{word-spacing:1.625907pt;}
.ws9d{word-spacing:1.673728pt;}
.ws55{word-spacing:1.700284pt;}
.ws33{word-spacing:1.753418pt;}
.ws7e{word-spacing:1.806551pt;}
.ws21{word-spacing:1.960653pt;}
.ws7c{word-spacing:1.965953pt;}
.ws7f{word-spacing:2.019087pt;}
.ws93{word-spacing:2.056294pt;}
.ws5b{word-spacing:2.125355pt;}
.ws9f{word-spacing:2.151936pt;}
.ws88{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws39{word-spacing:2.284756pt;}
.ws71{word-spacing:2.391024pt;}
.ws54{word-spacing:2.444158pt;}
.ws45{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.wsaf{word-spacing:2.630144pt;}
.wsa2{word-spacing:2.725786pt;}
.ws56{word-spacing:2.816095pt;}
.wsad{word-spacing:2.864333pt;}
.ws8a{word-spacing:2.866509pt;}
.ws4f{word-spacing:2.869229pt;}
.ws91{word-spacing:2.869248pt;}
.ws53{word-spacing:2.922363pt;}
.ws36{word-spacing:3.028630pt;}
.ws9b{word-spacing:3.060531pt;}
.wsa8{word-spacing:3.081316pt;}
.ws4a{word-spacing:3.081764pt;}
.ws6f{word-spacing:3.134898pt;}
.ws25{word-spacing:3.188032pt;}
.ws6b{word-spacing:3.241166pt;}
.ws76{word-spacing:3.506835pt;}
.ws82{word-spacing:3.559969pt;}
.ws29{word-spacing:3.613103pt;}
.ws70{word-spacing:3.772505pt;}
.ws40{word-spacing:4.038174pt;}
.ws77{word-spacing:4.144442pt;}
.ws81{word-spacing:4.197575pt;}
.wsc{word-spacing:4.240070pt;}
.ws52{word-spacing:4.303843pt;}
.wsd{word-spacing:4.314458pt;}
.ws84{word-spacing:4.356977pt;}
.ws47{word-spacing:4.516379pt;}
.ws3c{word-spacing:4.728914pt;}
.ws3a{word-spacing:4.888316pt;}
.ws73{word-spacing:5.047717pt;}
.ws44{word-spacing:5.419654pt;}
.ws97{word-spacing:5.451571pt;}
.ws62{word-spacing:5.525922pt;}
.ws37{word-spacing:5.579056pt;}
.ws64{word-spacing:5.595034pt;}
.ws3b{word-spacing:5.632190pt;}
.ws4b{word-spacing:5.738458pt;}
.ws75{word-spacing:5.844725pt;}
.ws63{word-spacing:5.929779pt;}
.ws2e{word-spacing:5.950993pt;}
.ws51{word-spacing:6.057261pt;}
.wsab{word-spacing:6.168883pt;}
.ws6a{word-spacing:6.748001pt;}
.ws3d{word-spacing:6.854269pt;}
.wsa{word-spacing:6.918010pt;}
.ws61{word-spacing:7.119938pt;}
.ws7a{word-spacing:7.385607pt;}
.ws2{word-spacing:9.263519pt;}
.ws9a{word-spacing:9.468518pt;}
.ws2c{word-spacing:10.586891pt;}
.ws8{word-spacing:10.823338pt;}
.ws8c{word-spacing:10.855322pt;}
.ws8b{word-spacing:11.285709pt;}
.ws90{word-spacing:11.763917pt;}
.ws99{word-spacing:11.859558pt;}
.ws94{word-spacing:11.902814pt;}
.wsb0{word-spacing:11.904205pt;}
.wsa7{word-spacing:11.904606pt;}
.ws95{word-spacing:11.907379pt;}
.wsa9{word-spacing:11.908446pt;}
.wsa6{word-spacing:12.050842pt;}
.wsa5{word-spacing:12.146483pt;}
.ws49{word-spacing:13.230333pt;}
.wsae{word-spacing:13.963674pt;}
.ws9{word-spacing:14.319536pt;}
.ws92{word-spacing:14.776627pt;}
.ws8e{word-spacing:15.111373pt;}
.ws98{word-spacing:16.211251pt;}
.ws50{word-spacing:16.418365pt;}
.ws9e{word-spacing:20.228198pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.ws65{word-spacing:154.071938pt;}
.ws67{word-spacing:190.219075pt;}
.ws68{word-spacing:219.721563pt;}
.ws69{word-spacing:236.657963pt;}
.ws66{word-spacing:397.395690pt;}
._8{margin-left:-8.799027pt;}
._c{margin-left:-6.312346pt;}
._18{margin-left:-5.409031pt;}
._1{margin-left:-4.128490pt;}
._26{margin-left:-2.484005pt;}
._0{margin-left:-1.338970pt;}
._4{width:2.045648pt;}
._9{width:3.310364pt;}
._5{width:10.295486pt;}
._3{width:11.530016pt;}
._1a{width:12.603349pt;}
._d{width:13.868006pt;}
._b{width:15.111373pt;}
._e{width:16.599012pt;}
._15{width:17.746711pt;}
._16{width:18.766878pt;}
._11{width:19.680777pt;}
._10{width:21.200413pt;}
._2{width:23.056832pt;}
._17{width:24.388445pt;}
._19{width:25.344854pt;}
._6{width:27.188522pt;}
._27{width:28.596643pt;}
._7{width:29.648896pt;}
._29{width:31.752787pt;}
._12{width:33.283046pt;}
._13{width:34.228833pt;}
._14{width:37.406242pt;}
._28{width:39.053392pt;}
._2a{width:42.815355pt;}
._a{width:48.376563pt;}
._2b{width:54.993920pt;}
._1e{width:113.371571pt;}
._20{width:116.672529pt;}
._1b{width:170.357602pt;}
._1c{width:175.325613pt;}
._1f{width:208.430629pt;}
._21{width:231.012496pt;}
._1d{width:366.142386pt;}
._22{width:397.395690pt;}
._25{width:408.686623pt;}
._23{width:414.332090pt;}
._24{width:425.623023pt;}
._f{width:833.405417pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs7{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:45.163733pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:28.346667pt;}
.y108{bottom:84.177333pt;}
.ya1{bottom:87.866667pt;}
.y11f{bottom:92.174667pt;}
.y1b{bottom:93.018667pt;}
.y156{bottom:95.084000pt;}
.y80{bottom:95.681333pt;}
.y107{bottom:100.914667pt;}
.y48{bottom:101.405333pt;}
.ya0{bottom:104.604000pt;}
.y1a{bottom:108.920000pt;}
.y155{bottom:110.425333pt;}
.y7f{bottom:112.418667pt;}
.y11e{bottom:115.765333pt;}
.y106{bottom:117.652000pt;}
.y47{bottom:118.142667pt;}
.y9f{bottom:121.341333pt;}
.y19{bottom:124.820000pt;}
.y154{bottom:125.768000pt;}
.y7e{bottom:129.156000pt;}
.y11d{bottom:131.388000pt;}
.y105{bottom:134.389333pt;}
.y46{bottom:134.880000pt;}
.y9e{bottom:138.078667pt;}
.y18{bottom:140.720000pt;}
.y153{bottom:141.110667pt;}
.yc8{bottom:144.697333pt;}
.y7d{bottom:145.893333pt;}
.y11c{bottom:147.009333pt;}
.y104{bottom:151.126667pt;}
.y45{bottom:151.617333pt;}
.y9d{bottom:154.816000pt;}
.y152{bottom:156.453333pt;}
.y17{bottom:156.621333pt;}
.yc7{bottom:161.434667pt;}
.y7c{bottom:162.630667pt;}
.y103{bottom:167.864000pt;}
.y44{bottom:168.354667pt;}
.y9c{bottom:171.553333pt;}
.y151{bottom:171.796000pt;}
.y16{bottom:172.521333pt;}
.yc6{bottom:178.172000pt;}
.y11b{bottom:178.570667pt;}
.y7b{bottom:179.368000pt;}
.y102{bottom:184.601333pt;}
.y43{bottom:185.092000pt;}
.y150{bottom:187.138667pt;}
.y9b{bottom:188.290667pt;}
.y15{bottom:188.421333pt;}
.yc5{bottom:194.909333pt;}
.y11a{bottom:195.308000pt;}
.y7a{bottom:196.105333pt;}
.y101{bottom:201.338667pt;}
.y42{bottom:201.829333pt;}
.y14f{bottom:202.481333pt;}
.y14{bottom:204.322667pt;}
.y9a{bottom:205.028000pt;}
.yc4{bottom:211.646667pt;}
.y119{bottom:212.045333pt;}
.y79{bottom:212.841333pt;}
.y14e{bottom:217.824000pt;}
.y100{bottom:218.076000pt;}
.y41{bottom:218.565333pt;}
.y99{bottom:221.765333pt;}
.yc3{bottom:228.384000pt;}
.y118{bottom:228.782667pt;}
.y78{bottom:229.578667pt;}
.y14d{bottom:233.166667pt;}
.y40{bottom:235.302667pt;}
.y98{bottom:238.502667pt;}
.yff{bottom:238.797333pt;}
.yc2{bottom:245.121333pt;}
.y117{bottom:245.520000pt;}
.y77{bottom:246.316000pt;}
.y14c{bottom:248.508000pt;}
.y3f{bottom:252.040000pt;}
.yfe{bottom:256.730667pt;}
.y97{bottom:259.225333pt;}
.y116{bottom:262.257333pt;}
.y76{bottom:263.053333pt;}
.y14b{bottom:263.850667pt;}
.yc1{bottom:265.844000pt;}
.y13{bottom:266.804000pt;}
.y3e{bottom:268.777333pt;}
.y96{bottom:277.157333pt;}
.y115{bottom:278.994667pt;}
.y14a{bottom:279.193333pt;}
.y75{bottom:279.790667pt;}
.y12{bottom:282.705333pt;}
.y3d{bottom:285.514667pt;}
.yfd{bottom:288.361333pt;}
.y149{bottom:294.536000pt;}
.yc0{bottom:295.732000pt;}
.y74{bottom:296.528000pt;}
.y11{bottom:298.605333pt;}
.y3c{bottom:302.252000pt;}
.yfc{bottom:306.772000pt;}
.y148{bottom:309.878667pt;}
.ybf{bottom:312.469333pt;}
.y73{bottom:313.265333pt;}
.y10{bottom:314.505333pt;}
.y95{bottom:317.436000pt;}
.yf9{bottom:319.453333pt;}
.y3b{bottom:322.974667pt;}
.y147{bottom:325.221333pt;}
.ybe{bottom:329.206667pt;}
.y72{bottom:330.002667pt;}
.y94{bottom:332.048000pt;}
.yf8{bottom:332.134667pt;}
.yf{bottom:338.376000pt;}
.yfa{bottom:338.608000pt;}
.y146{bottom:340.564000pt;}
.yf7{bottom:344.816000pt;}
.ybd{bottom:345.944000pt;}
.y71{bottom:346.740000pt;}
.y93{bottom:353.061333pt;}
.ye{bottom:354.277333pt;}
.y145{bottom:355.906667pt;}
.yf6{bottom:357.497333pt;}
.ybc{bottom:362.680000pt;}
.y70{bottom:363.477333pt;}
.yd{bottom:370.177333pt;}
.yfb{bottom:370.178667pt;}
.y144{bottom:371.248000pt;}
.y92{bottom:374.076000pt;}
.ybb{bottom:379.417333pt;}
.y6f{bottom:380.214667pt;}
.y143{bottom:386.590667pt;}
.yf5{bottom:388.136000pt;}
.y3a{bottom:389.774667pt;}
.y91{bottom:395.089333pt;}
.yc{bottom:395.376000pt;}
.yba{bottom:396.154667pt;}
.y6e{bottom:396.952000pt;}
.yf4{bottom:400.817333pt;}
.yee{bottom:401.513333pt;}
.y142{bottom:401.933333pt;}
.yb{bottom:411.276000pt;}
.yed{bottom:412.804000pt;}
.yb9{bottom:412.892000pt;}
.yf3{bottom:413.498667pt;}
.y6d{bottom:413.689333pt;}
.y90{bottom:416.104000pt;}
.y141{bottom:417.276000pt;}
.yef{bottom:419.277333pt;}
.y39{bottom:423.010667pt;}
.yec{bottom:424.094667pt;}
.yf2{bottom:424.790667pt;}
.yb8{bottom:429.629333pt;}
.y6c{bottom:430.426667pt;}
.y140{bottom:432.618667pt;}
.ya{bottom:435.146667pt;}
.yeb{bottom:436.776000pt;}
.y8f{bottom:437.117333pt;}
.yf1{bottom:437.470667pt;}
.y38{bottom:440.305333pt;}
.yb7{bottom:446.366667pt;}
.y6b{bottom:447.164000pt;}
.y13f{bottom:447.961333pt;}
.yf0{bottom:450.152000pt;}
.y9{bottom:451.048000pt;}
.y8e{bottom:451.729333pt;}
.y37{bottom:457.600000pt;}
.yb6{bottom:463.104000pt;}
.y13e{bottom:463.304000pt;}
.y6a{bottom:463.901333pt;}
.y8{bottom:466.948000pt;}
.y114{bottom:467.089333pt;}
.yea{bottom:468.110667pt;}
.y8d{bottom:472.742667pt;}
.y36{bottom:474.896000pt;}
.y13d{bottom:478.646667pt;}
.ye7{bottom:479.401333pt;}
.yb5{bottom:479.841333pt;}
.y69{bottom:480.638667pt;}
.y7{bottom:482.848000pt;}
.ye9{bottom:490.693333pt;}
.ye6{bottom:492.082667pt;}
.y35{bottom:492.190667pt;}
.y8c{bottom:493.757333pt;}
.y13c{bottom:493.989333pt;}
.yb4{bottom:496.578667pt;}
.y113{bottom:496.977333pt;}
.y68{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.ye8{bottom:503.374667pt;}
.y8b{bottom:508.369333pt;}
.y13b{bottom:509.330667pt;}
.y34{bottom:509.486667pt;}
.yb3{bottom:513.316000pt;}
.y112{bottom:513.714667pt;}
.y67{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.ye5{bottom:521.332000pt;}
.y13a{bottom:524.673333pt;}
.y33{bottom:526.781333pt;}
.y8a{bottom:529.382667pt;}
.yb2{bottom:530.053333pt;}
.y111{bottom:530.452000pt;}
.y4{bottom:530.549333pt;}
.y66{bottom:530.850667pt;}
.ye4{bottom:534.013333pt;}
.y139{bottom:540.016000pt;}
.ye1{bottom:540.354667pt;}
.y89{bottom:543.994667pt;}
.y32{bottom:544.076000pt;}
.y3{bottom:546.450667pt;}
.ye3{bottom:546.694667pt;}
.yb1{bottom:546.790667pt;}
.y110{bottom:547.189333pt;}
.y65{bottom:547.588000pt;}
.y138{bottom:555.358667pt;}
.ye2{bottom:559.376000pt;}
.y31{bottom:561.372000pt;}
.y2{bottom:562.350667pt;}
.y10f{bottom:563.926667pt;}
.y64{bottom:564.325333pt;}
.y88{bottom:565.009333pt;}
.yb0{bottom:567.513333pt;}
.y137{bottom:570.701333pt;}
.ye0{bottom:577.334667pt;}
.y1{bottom:578.250667pt;}
.y30{bottom:578.666667pt;}
.y10e{bottom:580.664000pt;}
.y63{bottom:581.062667pt;}
.y87{bottom:586.022667pt;}
.y136{bottom:586.044000pt;}
.ydf{bottom:590.016000pt;}
.y2f{bottom:595.961333pt;}
.yaf{bottom:597.401333pt;}
.y62{bottom:597.800000pt;}
.y135{bottom:601.386667pt;}
.yde{bottom:602.697333pt;}
.y86{bottom:607.037333pt;}
.y2e{bottom:613.257333pt;}
.yae{bottom:614.138667pt;}
.y61{bottom:614.537333pt;}
.yda{bottom:615.378667pt;}
.y134{bottom:616.729333pt;}
.y85{bottom:628.050667pt;}
.ydd{bottom:628.060000pt;}
.y2d{bottom:630.552000pt;}
.yad{bottom:630.876000pt;}
.y60{bottom:631.274667pt;}
.y133{bottom:632.070667pt;}
.ydc{bottom:640.741333pt;}
.y132{bottom:647.413333pt;}
.yac{bottom:647.613333pt;}
.y2c{bottom:647.848000pt;}
.y5f{bottom:648.012000pt;}
.y84{bottom:649.065333pt;}
.ydb{bottom:653.422667pt;}
.y131{bottom:662.756000pt;}
.y83{bottom:663.677333pt;}
.yab{bottom:664.350667pt;}
.y5e{bottom:664.749333pt;}
.y2b{bottom:665.142667pt;}
.yd9{bottom:671.380000pt;}
.y130{bottom:678.098667pt;}
.yaa{bottom:681.088000pt;}
.y5d{bottom:681.485333pt;}
.y2a{bottom:682.437333pt;}
.yd8{bottom:682.672000pt;}
.y82{bottom:684.690667pt;}
.y12f{bottom:693.441333pt;}
.ya9{bottom:697.825333pt;}
.y5c{bottom:698.222667pt;}
.y12e{bottom:708.784000pt;}
.yd7{bottom:711.109333pt;}
.ya8{bottom:714.562667pt;}
.y5b{bottom:714.960000pt;}
.y81{bottom:715.453333pt;}
.y29{bottom:716.736000pt;}
.y12d{bottom:724.126667pt;}
.yd6{bottom:728.205333pt;}
.y28{bottom:731.082667pt;}
.ya7{bottom:731.300000pt;}
.y5a{bottom:731.697333pt;}
.y12c{bottom:739.469333pt;}
.ya6{bottom:748.036000pt;}
.y59{bottom:748.434667pt;}
.y27{bottom:749.285333pt;}
.y12b{bottom:754.812000pt;}
.y26{bottom:759.774667pt;}
.yd5{bottom:761.186667pt;}
.ya5{bottom:764.773333pt;}
.y58{bottom:765.172000pt;}
.y12a{bottom:770.153333pt;}
.y25{bottom:774.121333pt;}
.yd4{bottom:777.924000pt;}
.y24{bottom:777.978667pt;}
.ya4{bottom:781.510667pt;}
.y57{bottom:781.909333pt;}
.y163{bottom:783.304000pt;}
.y129{bottom:785.496000pt;}
.y23{bottom:788.466667pt;}
.yd3{bottom:794.661333pt;}
.ya3{bottom:798.248000pt;}
.y56{bottom:798.646667pt;}
.y128{bottom:800.838667pt;}
.y22{bottom:802.813333pt;}
.yd2{bottom:811.398667pt;}
.y162{bottom:813.989333pt;}
.y10d{bottom:814.985333pt;}
.y55{bottom:815.384000pt;}
.y127{bottom:816.181333pt;}
.ya2{bottom:818.970667pt;}
.y21{bottom:821.017333pt;}
.yd1{bottom:828.136000pt;}
.y161{bottom:829.332000pt;}
.y126{bottom:831.524000pt;}
.y10c{bottom:831.722667pt;}
.y54{bottom:832.121333pt;}
.y160{bottom:844.674667pt;}
.yd0{bottom:844.873333pt;}
.y10b{bottom:848.460000pt;}
.y53{bottom:848.858667pt;}
.y125{bottom:850.852000pt;}
.y15f{bottom:860.017333pt;}
.y20{bottom:860.729333pt;}
.ycf{bottom:861.610667pt;}
.y10a{bottom:865.197333pt;}
.y52{bottom:865.596000pt;}
.y15e{bottom:875.360000pt;}
.yce{bottom:878.348000pt;}
.y124{bottom:880.740000pt;}
.y51{bottom:882.333333pt;}
.y109{bottom:885.920000pt;}
.y15c{bottom:890.701333pt;}
.y15d{bottom:890.702667pt;}
.ycd{bottom:895.085333pt;}
.y1f{bottom:896.213333pt;}
.y50{bottom:899.070667pt;}
.y123{bottom:904.330667pt;}
.y15b{bottom:906.044000pt;}
.ycc{bottom:911.822667pt;}
.y4f{bottom:915.808000pt;}
.y122{bottom:919.952000pt;}
.y1e{bottom:921.320000pt;}
.y15a{bottom:921.386667pt;}
.ycb{bottom:928.560000pt;}
.y4e{bottom:932.545333pt;}
.y159{bottom:936.729333pt;}
.y121{bottom:943.544000pt;}
.yca{bottom:945.297333pt;}
.y1d{bottom:946.425333pt;}
.y4d{bottom:949.282667pt;}
.y158{bottom:952.072000pt;}
.y120{bottom:959.165333pt;}
.yc9{bottom:962.034667pt;}
.y4c{bottom:966.020000pt;}
.y157{bottom:967.414667pt;}
.y1c{bottom:971.530667pt;}
.y4b{bottom:982.757333pt;}
.y4a{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h7{height:23.379740pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h8{height:30.945242pt;}
.hf{height:31.157778pt;}
.h10{height:32.653379pt;}
.h13{height:32.879198pt;}
.h12{height:33.407198pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.h15{height:35.052646pt;}
.hd{height:38.415786pt;}
.he{height:38.681455pt;}
.ha{height:38.809074pt;}
.h4{height:38.947124pt;}
.h16{height:43.660390pt;}
.h6{height:48.486756pt;}
.h11{height:55.240046pt;}
.h14{height:58.772531pt;}
.h5{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x26{left:55.694667pt;}
.x4e{left:59.968000pt;}
.x36{left:62.269333pt;}
.x4a{left:63.332000pt;}
.x40{left:68.198667pt;}
.x2e{left:70.326667pt;}
.x67{left:76.309333pt;}
.x3e{left:77.536000pt;}
.x2c{left:79.310667pt;}
.x3f{left:80.990667pt;}
.x53{left:87.382667pt;}
.x4b{left:90.029333pt;}
.x35{left:99.526667pt;}
.x2b{left:109.718667pt;}
.x2a{left:115.152000pt;}
.x33{left:118.601333pt;}
.x30{left:126.336000pt;}
.x37{left:127.316000pt;}
.x34{left:147.310667pt;}
.x4f{left:171.876000pt;}
.x32{left:200.917333pt;}
.x25{left:213.266667pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x29{left:222.806667pt;}
.x3{left:239.924000pt;}
.x6{left:250.204000pt;}
.xb{left:255.442667pt;}
.x28{left:258.014667pt;}
.xc{left:262.084000pt;}
.x3d{left:272.968000pt;}
.x5{left:274.256000pt;}
.x2f{left:275.816000pt;}
.x59{left:281.690667pt;}
.x1f{left:282.585333pt;}
.x57{left:287.773333pt;}
.x5a{left:294.974667pt;}
.x3a{left:298.661333pt;}
.x3b{left:311.945333pt;}
.x2d{left:315.152000pt;}
.x20{left:321.320000pt;}
.x5d{left:327.320000pt;}
.x5e{left:340.602667pt;}
.x9{left:344.060000pt;}
.x65{left:347.298667pt;}
.xa{left:350.701333pt;}
.x27{left:362.621333pt;}
.x31{left:365.281333pt;}
.xf{left:366.754667pt;}
.x10{left:373.396000pt;}
.x23{left:374.688000pt;}
.x11{left:380.130667pt;}
.x12{left:386.773333pt;}
.x24{left:387.972000pt;}
.x66{left:397.913333pt;}
.x58{left:400.921333pt;}
.x5f{left:412.604000pt;}
.x60{left:425.888000pt;}
.xd{left:436.685333pt;}
.xe{left:443.326667pt;}
.x7{left:451.212000pt;}
.x61{left:453.272000pt;}
.x8{left:457.854667pt;}
.x62{left:466.556000pt;}
.x1b{left:496.285333pt;}
.x1c{left:509.569333pt;}
.x1d{left:510.504000pt;}
.x19{left:512.880000pt;}
.x5b{left:522.221333pt;}
.x1e{left:523.786667pt;}
.x1a{left:526.164000pt;}
.x5c{left:538.818667pt;}
.x50{left:539.945333pt;}
.x46{left:541.848000pt;}
.x4d{left:543.309333pt;}
.x4c{left:545.082667pt;}
.x45{left:547.865333pt;}
.x42{left:553.025333pt;}
.x44{left:555.498667pt;}
.x49{left:559.145333pt;}
.x41{left:560.732000pt;}
.x43{left:561.720000pt;}
.x48{left:563.560000pt;}
.x54{left:576.578667pt;}
.x52{left:593.401333pt;}
.x51{left:604.552000pt;}
.x63{left:608.266667pt;}
.x47{left:615.842667pt;}
.x64{left:621.550667pt;}
.x13{left:630.292000pt;}
.x14{left:636.933333pt;}
.x15{left:640.321333pt;}
.x38{left:647.145333pt;}
.x6b{left:652.665333pt;}
.x16{left:653.604000pt;}
.x6d{left:658.526667pt;}
.x39{left:660.428000pt;}
.x17{left:663.845333pt;}
.x18{left:670.488000pt;}
.x3c{left:673.802667pt;}
.x21{left:674.924000pt;}
.x6c{left:676.576000pt;}
.x6e{left:682.437333pt;}
.x22{left:688.206667pt;}
.x68{left:702.065333pt;}
.x69{left:720.236000pt;}
.x55{left:726.842667pt;}
.x56{left:740.126667pt;}
.x6a{left:744.146667pt;}
}




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