
    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_cf76e2b2e4c733beb7334934.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_c1aa58cf4a6fa9add5accce8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_53ec87e102926906be09f7df.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_9a165e854d098a00e4d242a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_940a1ba23aa2af28ed36f451.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.964000;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_9caee026270f677cfab62bdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.548000;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_aba4c98dd1794be399de34b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945000;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_9eee8679fa4c9a5a31fbb17c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d0fda834c27625c4d577f0b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_40530a559f6817e95cb24d54.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_de000ada22879529699cb697.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850000;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;}
.ma{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);}
.m14{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);}
.m6{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);}
.m26{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);}
.m28{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);}
.mf{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);}
.m4{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);}
.m23{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.mc{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);}
.m16{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);}
.m1d{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);}
.m2{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);}
.m1f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.me{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);}
.m29{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.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);}
.m13{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);}
.m24{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);}
.m1a{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);}
.m1{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);}
.m11{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);}
.m20{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);}
.m21{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);}
.m18{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m27{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);}
.m9{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m10{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);}
.m22{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);}
.mb{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);}
.m5{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);}
.m15{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:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.040000px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.990943px;}
.ls6{letter-spacing:10.459254px;}
.ls15{letter-spacing:10.460700px;}
.ls14{letter-spacing:10.460809px;}
.ls12{letter-spacing:11.765581px;}
.ls13{letter-spacing:12.426649px;}
.ls2{letter-spacing:13.276019px;}
.ls3{letter-spacing:13.564099px;}
.ls1{letter-spacing:13.580066px;}
.ls0{letter-spacing:13.586994px;}
.ls4{letter-spacing:13.721945px;}
.ls7{letter-spacing:17.252587px;}
.ls16{letter-spacing:18.746705px;}
.ls19{letter-spacing:23.910300px;}
.ls1a{letter-spacing:27.488801px;}
.lsd{letter-spacing:172.047981px;}
.lsc{letter-spacing:177.978920px;}
.ls11{letter-spacing:181.754971px;}
.lse{letter-spacing:184.797249px;}
.ls17{letter-spacing:198.454173px;}
.ls9{letter-spacing:228.568536px;}
.lsb{letter-spacing:251.625058px;}
.ls18{letter-spacing:284.530173px;}
.ls10{letter-spacing:284.577734px;}
.lsf{letter-spacing:347.961737px;}
.lsa{letter-spacing:351.004015px;}
.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;}
}
.ws1{word-spacing:-14.943900px;}
.ws11{word-spacing:-13.449600px;}
.ws6e{word-spacing:-4.303872px;}
.ws8a{word-spacing:-4.088678px;}
.ws2c{word-spacing:-3.765888px;}
.wsa4{word-spacing:-3.658291px;}
.ws63{word-spacing:-3.281702px;}
.wsa6{word-spacing:-3.066509px;}
.wsc4{word-spacing:-2.970839px;}
.ws4e{word-spacing:-2.905114px;}
.ws5f{word-spacing:-2.797517px;}
.ws68{word-spacing:-2.743718px;}
.ws5c{word-spacing:-2.420928px;}
.wsb{word-spacing:-2.367130px;}
.ws2d{word-spacing:-2.259533px;}
.ws1a{word-spacing:-2.175826px;}
.wsa5{word-spacing:-2.098138px;}
.ws9c{word-spacing:-1.990541px;}
.ws8d{word-spacing:-1.721549px;}
.ws65{word-spacing:-1.613952px;}
.wsc{word-spacing:-1.506355px;}
.wsbb{word-spacing:-1.506341px;}
.wsa2{word-spacing:-1.452557px;}
.wsba{word-spacing:-1.422655px;}
.ws8e{word-spacing:-1.398758px;}
.ws20{word-spacing:-1.386797px;}
.ws4a{word-spacing:-1.344960px;}
.ws96{word-spacing:-1.237363px;}
.wsaa{word-spacing:-1.213441px;}
.wsa{word-spacing:-1.183565px;}
.wsad{word-spacing:-1.171598px;}
.ws17{word-spacing:-1.087913px;}
.ws72{word-spacing:-1.022170px;}
.wsbf{word-spacing:-0.878699px;}
.ws76{word-spacing:-0.860774px;}
.wsc5{word-spacing:-0.836856px;}
.ws70{word-spacing:-0.753178px;}
.ws9{word-spacing:-0.645581px;}
.ws19{word-spacing:-0.460271px;}
.ws62{word-spacing:-0.376589px;}
.ws29{word-spacing:-0.322790px;}
.ws28{word-spacing:-0.268992px;}
.wsb3{word-spacing:-0.251057px;}
.ws2e{word-spacing:-0.215194px;}
.ws56{word-spacing:-0.200987px;}
.ws1f{word-spacing:-0.191282px;}
.wsb6{word-spacing:-0.167371px;}
.wsf{word-spacing:-0.161395px;}
.wsc3{word-spacing:-0.125528px;}
.ws2{word-spacing:-0.107597px;}
.wsae{word-spacing:-0.083686px;}
.ws1c{word-spacing:-0.065455px;}
.ws7{word-spacing:-0.053798px;}
.ws18{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.wsb7{word-spacing:0.003191px;}
.wsb8{word-spacing:0.041843px;}
.ws2f{word-spacing:0.053798px;}
.ws35{word-spacing:0.056875px;}
.ws8{word-spacing:0.107597px;}
.wsb0{word-spacing:0.125528px;}
.ws21{word-spacing:0.143462px;}
.ws6{word-spacing:0.161395px;}
.ws16{word-spacing:0.167371px;}
.ws30{word-spacing:0.215194px;}
.wsbd{word-spacing:0.251057px;}
.ws3{word-spacing:0.268992px;}
.ws5{word-spacing:0.322790px;}
.ws5d{word-spacing:0.430387px;}
.ws2b{word-spacing:0.645581px;}
.wsa8{word-spacing:0.669485px;}
.ws6a{word-spacing:0.753178px;}
.ws6c{word-spacing:0.806976px;}
.wsa0{word-spacing:0.914573px;}
.wsb4{word-spacing:0.920542px;}
.ws7b{word-spacing:1.022170px;}
.ws85{word-spacing:1.075968px;}
.wsc0{word-spacing:1.087913px;}
.ws86{word-spacing:1.183565px;}
.ws91{word-spacing:1.291162px;}
.ws97{word-spacing:1.344960px;}
.ws49{word-spacing:1.398758px;}
.wsc6{word-spacing:1.506341px;}
.wsac{word-spacing:1.548184px;}
.ws4c{word-spacing:1.560154px;}
.ws10{word-spacing:1.667750px;}
.ws6d{word-spacing:1.882944px;}
.ws25{word-spacing:1.912824px;}
.ws93{word-spacing:1.936742px;}
.ws66{word-spacing:2.044339px;}
.ws34{word-spacing:2.098138px;}
.ws9d{word-spacing:2.151936px;}
.ws92{word-spacing:2.205734px;}
.ws9b{word-spacing:2.313331px;}
.ws4{word-spacing:2.528525px;}
.ws8b{word-spacing:2.636122px;}
.ws71{word-spacing:2.743718px;}
.ws53{word-spacing:2.771391px;}
.ws55{word-spacing:2.797517px;}
.ws3b{word-spacing:2.905114px;}
.ws9a{word-spacing:2.958912px;}
.wsa9{word-spacing:3.012682px;}
.wsb1{word-spacing:3.431110px;}
.ws6f{word-spacing:3.765888px;}
.ws3a{word-spacing:3.784756px;}
.ws33{word-spacing:3.873485px;}
.ws79{word-spacing:4.034880px;}
.wse{word-spacing:4.088678px;}
.ws95{word-spacing:4.142477px;}
.ws87{word-spacing:4.357670px;}
.ws59{word-spacing:5.272243px;}
.ws50{word-spacing:5.326042px;}
.ws7c{word-spacing:5.433638px;}
.ws1d{word-spacing:5.487437px;}
.ws5a{word-spacing:5.648832px;}
.ws3c{word-spacing:5.702630px;}
.ws2a{word-spacing:5.864026px;}
.ws9f{word-spacing:6.025421px;}
.ws9e{word-spacing:6.066075px;}
.ws32{word-spacing:6.294413px;}
.wsd{word-spacing:6.832397px;}
.ws78{word-spacing:7.693171px;}
.wsbc{word-spacing:8.870674px;}
.ws8f{word-spacing:9.091930px;}
.wsab{word-spacing:9.205416px;}
.wsa7{word-spacing:10.335172px;}
.wsbe{word-spacing:10.377014px;}
.ws1b{word-spacing:10.418857px;}
.ws48{word-spacing:10.420494px;}
.wsb9{word-spacing:10.460700px;}
.ws5e{word-spacing:10.598285px;}
.ws67{word-spacing:10.652083px;}
.wsb5{word-spacing:11.339399px;}
.wsc1{word-spacing:11.506770px;}
.ws64{word-spacing:11.835648px;}
.ws1e{word-spacing:11.907329px;}
.ws22{word-spacing:12.050791px;}
.wsaf{word-spacing:12.156396px;}
.wsc2{word-spacing:12.158009px;}
.ws23{word-spacing:12.576818px;}
.ws61{word-spacing:12.965414px;}
.ws27{word-spacing:13.122814px;}
.ws89{word-spacing:13.126810px;}
.ws74{word-spacing:13.175924px;}
.ws84{word-spacing:13.180608px;}
.ws57{word-spacing:13.195439px;}
.ws14{word-spacing:13.234406px;}
.ws8c{word-spacing:13.342003px;}
.ws58{word-spacing:13.391328px;}
.ws3d{word-spacing:13.395802px;}
.ws37{word-spacing:13.449600px;}
.ws13{word-spacing:13.503398px;}
.ws51{word-spacing:13.557197px;}
.ws15{word-spacing:13.664794px;}
.ws24{word-spacing:13.820153px;}
.wsb2{word-spacing:13.849967px;}
.ws6b{word-spacing:14.202778px;}
.ws98{word-spacing:14.417971px;}
.ws4f{word-spacing:14.445377px;}
.ws36{word-spacing:14.705836px;}
.ws90{word-spacing:14.941296px;}
.ws4b{word-spacing:14.955955px;}
.ws60{word-spacing:15.978125px;}
.ws54{word-spacing:16.165305px;}
.ws12{word-spacing:16.298195px;}
.ws75{word-spacing:16.981880px;}
.ws3e{word-spacing:17.052374px;}
.ws4d{word-spacing:17.082042px;}
.ws73{word-spacing:17.102951px;}
.ws38{word-spacing:17.161690px;}
.ws77{word-spacing:17.189941px;}
.ws39{word-spacing:17.215488px;}
.wsa3{word-spacing:17.269786px;}
.ws88{word-spacing:17.407997px;}
.ws99{word-spacing:17.501956px;}
.wsa1{word-spacing:17.517729px;}
.ws52{word-spacing:17.518847px;}
.ws69{word-spacing:19.206029px;}
.ws31{word-spacing:19.690214px;}
.ws94{word-spacing:21.088973px;}
.ws5b{word-spacing:22.483433px;}
.ws7e{word-spacing:23.859779px;}
.ws81{word-spacing:23.860379px;}
.ws7d{word-spacing:23.860979px;}
.ws82{word-spacing:23.862479px;}
.ws80{word-spacing:23.864579px;}
.ws7f{word-spacing:23.866379px;}
.ws7a{word-spacing:26.845402px;}
.ws3f{word-spacing:33.268131px;}
.ws26{word-spacing:65.389145px;}
.ws40{word-spacing:125.877012px;}
.ws46{word-spacing:125.965845px;}
.ws42{word-spacing:132.050937px;}
.ws44{word-spacing:164.164233px;}
.ws47{word-spacing:168.962089px;}
.ws45{word-spacing:170.893697px;}
.ws83{word-spacing:190.986396px;}
.ws41{word-spacing:222.838733px;}
.ws43{word-spacing:246.201933px;}
._0{margin-left:-7.333760px;}
._31{margin-left:-5.760005px;}
._2{margin-left:-3.526760px;}
._9{margin-left:-2.487337px;}
._1{margin-left:-1.342801px;}
._4{width:1.237363px;}
._3{width:2.988780px;}
._35{width:6.067206px;}
._7{width:11.104182px;}
._2d{width:13.012157px;}
._30{width:14.471770px;}
._34{width:15.805312px;}
._33{width:19.297581px;}
._36{width:20.921400px;}
._32{width:28.030333px;}
._8{width:36.199635px;}
._2e{width:65.454600px;}
._25{width:119.924486px;}
._f{width:155.725054px;}
._a{width:173.358496px;}
._2b{width:176.067085px;}
._23{width:181.755191px;}
._27{width:183.663177px;}
._19{width:184.798005px;}
._15{width:185.928430px;}
._b{width:229.367992px;}
._e{width:237.896004px;}
._11{width:247.267934px;}
._c{width:257.839116px;}
._24{width:268.074878px;}
._1c{width:276.449726px;}
._20{width:280.783867px;}
._10{width:285.021470px;}
._18{width:286.487907px;}
._14{width:288.753160px;}
._26{width:291.753058px;}
._12{width:292.884361px;}
._22{width:294.194341px;}
._1e{width:296.126337px;}
._17{width:297.237156px;}
._d{width:301.278678px;}
._1b{width:339.388232px;}
._2a{width:345.097035px;}
._1f{width:349.870580px;}
._13{width:352.135833px;}
._16{width:353.512067px;}
._2f{width:386.023227px;}
._28{width:390.733287px;}
._21{width:425.699552px;}
._2c{width:428.754007px;}
._1d{width:458.557633px;}
._1a{width:460.689636px;}
._6{width:633.249315px;}
._29{width:643.864229px;}
._5{width:871.673041px;}
.fc8{color:rgb(148,0,209);}
.fc7{color:rgb(0,0,153);}
.fc5{color:rgb(255,128,0);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,153,0);}
.fc9{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(102,102,102);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.887800px;}
.fs6{font-size:32.877000px;}
.fs7{font-size:41.842800px;}
.fsa{font-size:43.636200px;}
.fs9{font-size:44.416730px;}
.fs8{font-size:47.820600px;}
.fs2{font-size:52.602600px;}
.fs5{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y34{bottom:126.979500px;}
.ye3{bottom:132.957000px;}
.y33{bottom:138.934500px;}
.y54{bottom:143.416500px;}
.ye2{bottom:149.395500px;}
.y32{bottom:150.889500px;}
.y53{bottom:159.855000px;}
.y31{bottom:164.040000px;}
.ye1{bottom:165.832500px;}
.y52{bottom:176.293500px;}
.y30{bottom:177.190500px;}
.yfd{bottom:180.403500px;}
.ye0{bottom:182.271000px;}
.y2f{bottom:189.145500px;}
.y51{bottom:192.732000px;}
.ydf{bottom:198.709500px;}
.y2e{bottom:201.100500px;}
.y50{bottom:209.170500px;}
.y2d{bottom:213.055500px;}
.y86{bottom:214.647000px;}
.yde{bottom:215.148000px;}
.yfc{bottom:223.479000px;}
.y2c{bottom:225.012000px;}
.y4f{bottom:225.609000px;}
.y104{bottom:229.719000px;}
.y85{bottom:231.085500px;}
.ydd{bottom:231.586500px;}
.y2b{bottom:236.967000px;}
.yfb{bottom:239.917500px;}
.y4e{bottom:242.047500px;}
.y84{bottom:247.524000px;}
.ydc{bottom:248.025000px;}
.y2a{bottom:248.922000px;}
.yfa{bottom:256.356000px;}
.y4d{bottom:258.486000px;}
.y83{bottom:263.962500px;}
.y103{bottom:265.639500px;}
.ydb{bottom:271.188000px;}
.yf9{bottom:272.794500px;}
.y4c{bottom:274.924500px;}
.y29{bottom:279.349500px;}
.y82{bottom:280.401000px;}
.y102{bottom:282.078000px;}
.yda{bottom:287.626500px;}
.yf8{bottom:289.233000px;}
.y4b{bottom:291.363000px;}
.y81{bottom:296.839500px;}
.y101{bottom:298.516500px;}
.y28{bottom:301.470000px;}
.yd9{bottom:304.065000px;}
.yf7{bottom:305.671500px;}
.y4a{bottom:307.800000px;}
.y80{bottom:313.278000px;}
.y100{bottom:314.955000px;}
.y27{bottom:317.908500px;}
.yd8{bottom:320.503500px;}
.yf6{bottom:322.110000px;}
.y49{bottom:324.238500px;}
.y7f{bottom:329.716500px;}
.yff{bottom:331.393500px;}
.y26{bottom:334.347000px;}
.yd7{bottom:336.942000px;}
.yf5{bottom:338.548500px;}
.y48{bottom:340.677000px;}
.y7e{bottom:346.153500px;}
.y25{bottom:350.785500px;}
.yfe{bottom:351.942000px;}
.yd6{bottom:353.380500px;}
.yf4{bottom:354.987000px;}
.y47{bottom:357.115500px;}
.yae{bottom:361.225500px;}
.y7d{bottom:362.592000px;}
.yd5{bottom:369.817500px;}
.y24{bottom:371.334000px;}
.yf3{bottom:371.424000px;}
.y46{bottom:373.554000px;}
.y7c{bottom:379.030500px;}
.yd4{bottom:386.256000px;}
.yf2{bottom:387.862500px;}
.y45{bottom:389.992500px;}
.y7b{bottom:395.469000px;}
.yd3{bottom:402.694500px;}
.y23{bottom:403.708500px;}
.yf1{bottom:404.301000px;}
.y44{bottom:406.431000px;}
.y7a{bottom:411.907500px;}
.y89{bottom:417.597000px;}
.yad{bottom:419.005500px;}
.yd2{bottom:419.133000px;}
.y22{bottom:420.145500px;}
.yf0{bottom:420.739500px;}
.y43{bottom:422.869500px;}
.y79{bottom:432.456000px;}
.yac{bottom:433.948500px;}
.y88{bottom:434.035500px;}
.yd1{bottom:435.571500px;}
.y21{bottom:436.584000px;}
.yef{bottom:437.178000px;}
.y42{bottom:439.308000px;}
.yab{bottom:448.893000px;}
.y87{bottom:450.474000px;}
.yd0{bottom:452.010000px;}
.y20{bottom:453.022500px;}
.yee{bottom:453.616500px;}
.y41{bottom:455.746500px;}
.yaa{bottom:463.837500px;}
.y78{bottom:466.912500px;}
.ycf{bottom:468.448500px;}
.y1f{bottom:469.461000px;}
.yed{bottom:470.055000px;}
.y40{bottom:472.185000px;}
.ya9{bottom:478.780500px;}
.y77{bottom:483.351000px;}
.yce{bottom:484.887000px;}
.y1e{bottom:485.899500px;}
.yec{bottom:486.493500px;}
.y3f{bottom:488.622000px;}
.ya8{bottom:493.725000px;}
.y76{bottom:499.789500px;}
.ycd{bottom:501.325500px;}
.y1d{bottom:502.338000px;}
.yeb{bottom:502.932000px;}
.y3e{bottom:505.060500px;}
.ya7{bottom:508.669500px;}
.y75{bottom:516.228000px;}
.ycc{bottom:517.764000px;}
.y1c{bottom:518.776500px;}
.yea{bottom:519.370500px;}
.y3d{bottom:521.499000px;}
.ya6{bottom:523.612500px;}
.y74{bottom:532.666500px;}
.y1b{bottom:535.215000px;}
.ye9{bottom:535.807500px;}
.ya5{bottom:538.557000px;}
.ycb{bottom:540.927000px;}
.y3c{bottom:542.047500px;}
.y73{bottom:549.105000px;}
.y1a{bottom:551.653500px;}
.ye8{bottom:552.246000px;}
.ya4{bottom:553.501500px;}
.yca{bottom:557.365500px;}
.y72{bottom:565.543500px;}
.y19{bottom:568.092000px;}
.ya3{bottom:568.444500px;}
.ye7{bottom:568.684500px;}
.yc9{bottom:573.802500px;}
.y71{bottom:581.980500px;}
.ya2{bottom:583.389000px;}
.y3b{bottom:583.818000px;}
.y18{bottom:584.529000px;}
.ye6{bottom:585.123000px;}
.yc8{bottom:590.241000px;}
.ya1{bottom:598.332000px;}
.y70{bottom:598.419000px;}
.y3a{bottom:598.762500px;}
.y17{bottom:600.967500px;}
.ye5{bottom:601.561500px;}
.yc7{bottom:606.679500px;}
.y39{bottom:613.707000px;}
.y6f{bottom:614.857500px;}
.y16{bottom:617.406000px;}
.ya0{bottom:618.394500px;}
.yc6{bottom:623.118000px;}
.y38{bottom:628.650000px;}
.y6e{bottom:631.296000px;}
.y15{bottom:633.844500px;}
.yc5{bottom:639.556500px;}
.y37{bottom:643.594500px;}
.ye4{bottom:643.852500px;}
.y6d{bottom:647.734500px;}
.y14{bottom:650.283000px;}
.yc4{bottom:655.995000px;}
.y36{bottom:658.539000px;}
.y9f{bottom:660.589500px;}
.y6c{bottom:664.173000px;}
.y13{bottom:666.721500px;}
.yc3{bottom:672.433500px;}
.y35{bottom:673.482000px;}
.y11d{bottom:676.095000px;}
.y9e{bottom:677.028000px;}
.y6b{bottom:680.611500px;}
.y12{bottom:683.160000px;}
.y11c{bottom:688.050000px;}
.yc2{bottom:688.872000px;}
.y9d{bottom:693.466500px;}
.y6a{bottom:697.050000px;}
.y11{bottom:699.598500px;}
.y11b{bottom:700.005000px;}
.y139{bottom:700.827000px;}
.yc1{bottom:705.310500px;}
.y9c{bottom:709.903500px;}
.y11a{bottom:711.960000px;}
.y138{bottom:712.782000px;}
.y69{bottom:713.488500px;}
.y10{bottom:716.037000px;}
.y119{bottom:723.915000px;}
.y137{bottom:724.737000px;}
.y9b{bottom:727.374000px;}
.yc0{bottom:728.473500px;}
.y68{bottom:729.927000px;}
.y118{bottom:735.870000px;}
.yf{bottom:736.584000px;}
.y136{bottom:736.692000px;}
.ybf{bottom:744.912000px;}
.y9a{bottom:745.705500px;}
.y67{bottom:746.365500px;}
.y117{bottom:747.825000px;}
.y135{bottom:748.647000px;}
.y116{bottom:759.781500px;}
.y134{bottom:760.602000px;}
.ybe{bottom:761.350500px;}
.y99{bottom:762.144000px;}
.y66{bottom:762.802500px;}
.ye{bottom:766.480500px;}
.y115{bottom:771.736500px;}
.y133{bottom:772.558500px;}
.ybd{bottom:777.789000px;}
.y98{bottom:778.582500px;}
.y65{bottom:779.241000px;}
.y114{bottom:783.691500px;}
.yd{bottom:784.413000px;}
.y132{bottom:784.513500px;}
.ybc{bottom:794.226000px;}
.y113{bottom:795.646500px;}
.y64{bottom:795.679500px;}
.y131{bottom:796.468500px;}
.y97{bottom:801.745500px;}
.yc{bottom:802.345500px;}
.y112{bottom:807.601500px;}
.y130{bottom:808.423500px;}
.ybb{bottom:810.664500px;}
.y96{bottom:818.184000px;}
.y111{bottom:819.556500px;}
.yb{bottom:820.278000px;}
.y12f{bottom:820.378500px;}
.yba{bottom:827.103000px;}
.y110{bottom:831.511500px;}
.y12e{bottom:832.333500px;}
.y95{bottom:834.622500px;}
.ya{bottom:838.210500px;}
.y63{bottom:838.393500px;}
.yb9{bottom:843.541500px;}
.y12d{bottom:844.288500px;}
.y10f{bottom:847.576500px;}
.y94{bottom:851.059500px;}
.y62{bottom:854.888033px;}
.y9{bottom:856.143000px;}
.y12c{bottom:856.243500px;}
.yb8{bottom:859.980000px;}
.y93{bottom:867.498000px;}
.y12b{bottom:868.198500px;}
.y61{bottom:868.768783px;}
.y10e{bottom:879.033000px;}
.y12a{bottom:880.155000px;}
.y60{bottom:882.649534px;}
.yb7{bottom:883.143000px;}
.y92{bottom:883.936500px;}
.y8{bottom:889.840500px;}
.y129{bottom:892.110000px;}
.y10d{bottom:895.471500px;}
.y5f{bottom:896.528891px;}
.yb6{bottom:899.581500px;}
.y91{bottom:900.375000px;}
.y128{bottom:904.065000px;}
.y7{bottom:907.773000px;}
.y5e{bottom:910.409642px;}
.y10c{bottom:911.910000px;}
.yb5{bottom:916.020000px;}
.y90{bottom:923.538000px;}
.y5d{bottom:924.288999px;}
.y6{bottom:925.707000px;}
.y127{bottom:927.975000px;}
.y10b{bottom:928.348500px;}
.yb4{bottom:932.458500px;}
.y5c{bottom:938.169749px;}
.y126{bottom:939.930000px;}
.y8f{bottom:939.976500px;}
.y5{bottom:943.639500px;}
.y10a{bottom:944.787000px;}
.yb3{bottom:948.897000px;}
.y125{bottom:951.885000px;}
.y5b{bottom:952.050500px;}
.y8e{bottom:956.415000px;}
.y109{bottom:961.225500px;}
.y4{bottom:961.572000px;}
.y124{bottom:963.840000px;}
.yb2{bottom:965.335500px;}
.y5a{bottom:965.929857px;}
.y8d{bottom:972.853500px;}
.y123{bottom:975.795000px;}
.y108{bottom:977.664000px;}
.y3{bottom:979.504500px;}
.y59{bottom:979.810608px;}
.yb1{bottom:981.774000px;}
.y122{bottom:987.751500px;}
.y8c{bottom:993.402000px;}
.y107{bottom:994.102500px;}
.yb0{bottom:998.211000px;}
.y121{bottom:999.706500px;}
.y58{bottom:999.980398px;}
.y106{bottom:1010.541000px;}
.y120{bottom:1011.661500px;}
.y57{bottom:1013.861149px;}
.yaf{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y11f{bottom:1023.616500px;}
.y105{bottom:1026.979500px;}
.y8b{bottom:1031.088000px;}
.y11e{bottom:1035.571500px;}
.y1{bottom:1044.562500px;}
.y8a{bottom:1047.526500px;}
.y56{bottom:1050.964500px;}
.y55{bottom:1086.979500px;}
.h15{height:21.997421px;}
.h9{height:24.197472px;}
.h17{height:29.289960px;}
.h7{height:29.481523px;}
.hf{height:29.624702px;}
.hb{height:30.377873px;}
.ha{height:30.796301px;}
.h10{height:31.091711px;}
.h16{height:32.087623px;}
.h14{height:32.661470px;}
.h11{height:32.690713px;}
.hc{height:33.474420px;}
.he{height:34.717756px;}
.hd{height:35.195962px;}
.h13{height:36.098726px;}
.h8{height:37.658880px;}
.h12{height:39.057638px;}
.h6{height:39.595622px;}
.h3{height:43.994842px;}
.h5{height:45.818220px;}
.h4{height:52.794163px;}
.h2{height:64.755514px;}
.h1{height:72.098095px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:80.697000px;}
.x34{left:85.180500px;}
.x36{left:89.887500px;}
.x25{left:91.107215px;}
.x35{left:93.363000px;}
.x3b{left:95.641500px;}
.x3c{left:103.485000px;}
.x2a{left:104.647500px;}
.x2b{left:117.310500px;}
.x32{left:133.903500px;}
.x33{left:140.157000px;}
.x3a{left:143.487000px;}
.x1{left:156.094500px;}
.xe{left:161.407500px;}
.x24{left:176.680500px;}
.x5{left:183.771000px;}
.xd{left:188.443500px;}
.x4{left:206.524500px;}
.x2{left:207.663000px;}
.x6{left:219.778500px;}
.x3d{left:221.874000px;}
.xf{left:224.001000px;}
.x3e{left:226.786500px;}
.x3{left:229.407000px;}
.x14{left:236.749500px;}
.x12{left:263.317500px;}
.x27{left:274.327500px;}
.x13{left:280.456500px;}
.x26{left:299.194474px;}
.x28{left:332.182500px;}
.x29{left:362.002500px;}
.x15{left:476.932500px;}
.x37{left:480.489000px;}
.x3f{left:481.797000px;}
.x2e{left:491.877000px;}
.x39{left:493.180500px;}
.x38{left:494.812500px;}
.x40{left:499.773000px;}
.x2c{left:500.883000px;}
.x16{left:505.690500px;}
.x17{left:511.944000px;}
.x2d{left:513.546000px;}
.x18{left:518.274000px;}
.x19{left:524.529000px;}
.x22{left:528.748500px;}
.x1a{left:530.859000px;}
.x23{left:535.002000px;}
.x1b{left:543.366000px;}
.x9{left:553.108500px;}
.x10{left:570.016500px;}
.xb{left:577.108500px;}
.x8{left:581.926500px;}
.xa{left:589.114500px;}
.xc{left:594.084000px;}
.x7{left:603.280500px;}
.x2f{left:627.004500px;}
.x30{left:633.259500px;}
.x31{left:716.464500px;}
.x20{left:729.064500px;}
.x21{left:735.318000px;}
.x1c{left:807.750000px;}
.x1d{left:814.005000px;}
.x1e{left:819.274500px;}
.x1f{left:831.781500px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.146667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.658616pt;}
.ls6{letter-spacing:9.297115pt;}
.ls15{letter-spacing:9.298400pt;}
.ls14{letter-spacing:9.298497pt;}
.ls12{letter-spacing:10.458294pt;}
.ls13{letter-spacing:11.045910pt;}
.ls2{letter-spacing:11.800905pt;}
.ls3{letter-spacing:12.056977pt;}
.ls1{letter-spacing:12.071170pt;}
.ls0{letter-spacing:12.077328pt;}
.ls4{letter-spacing:12.197284pt;}
.ls7{letter-spacing:15.335633pt;}
.ls16{letter-spacing:16.663738pt;}
.ls19{letter-spacing:21.253600pt;}
.ls1a{letter-spacing:24.434490pt;}
.lsd{letter-spacing:152.931539pt;}
.lsc{letter-spacing:158.203484pt;}
.ls11{letter-spacing:161.559974pt;}
.lse{letter-spacing:164.264221pt;}
.ls17{letter-spacing:176.403709pt;}
.ls9{letter-spacing:203.172032pt;}
.lsb{letter-spacing:223.666718pt;}
.ls18{letter-spacing:252.915709pt;}
.ls10{letter-spacing:252.957985pt;}
.lsf{letter-spacing:309.299322pt;}
.lsa{letter-spacing:312.003569pt;}
.ws1{word-spacing:-13.283467pt;}
.ws11{word-spacing:-11.955200pt;}
.ws6e{word-spacing:-3.825664pt;}
.ws8a{word-spacing:-3.634381pt;}
.ws2c{word-spacing:-3.347456pt;}
.wsa4{word-spacing:-3.251814pt;}
.ws63{word-spacing:-2.917069pt;}
.wsa6{word-spacing:-2.725786pt;}
.wsc4{word-spacing:-2.640746pt;}
.ws4e{word-spacing:-2.582323pt;}
.ws5f{word-spacing:-2.486682pt;}
.ws68{word-spacing:-2.438861pt;}
.ws5c{word-spacing:-2.151936pt;}
.wsb{word-spacing:-2.104115pt;}
.ws2d{word-spacing:-2.008474pt;}
.ws1a{word-spacing:-1.934067pt;}
.wsa5{word-spacing:-1.865011pt;}
.ws9c{word-spacing:-1.769370pt;}
.ws8d{word-spacing:-1.530266pt;}
.ws65{word-spacing:-1.434624pt;}
.wsc{word-spacing:-1.338982pt;}
.wsbb{word-spacing:-1.338970pt;}
.wsa2{word-spacing:-1.291162pt;}
.wsba{word-spacing:-1.264582pt;}
.ws8e{word-spacing:-1.243341pt;}
.ws20{word-spacing:-1.232709pt;}
.ws4a{word-spacing:-1.195520pt;}
.ws96{word-spacing:-1.099878pt;}
.wsaa{word-spacing:-1.078614pt;}
.wsa{word-spacing:-1.052058pt;}
.wsad{word-spacing:-1.041421pt;}
.ws17{word-spacing:-0.967034pt;}
.ws72{word-spacing:-0.908595pt;}
.wsbf{word-spacing:-0.781066pt;}
.ws76{word-spacing:-0.765133pt;}
.wsc5{word-spacing:-0.743872pt;}
.ws70{word-spacing:-0.669491pt;}
.ws9{word-spacing:-0.573850pt;}
.ws19{word-spacing:-0.409130pt;}
.ws62{word-spacing:-0.334746pt;}
.ws29{word-spacing:-0.286925pt;}
.ws28{word-spacing:-0.239104pt;}
.wsb3{word-spacing:-0.223162pt;}
.ws2e{word-spacing:-0.191283pt;}
.ws56{word-spacing:-0.178655pt;}
.ws1f{word-spacing:-0.170029pt;}
.wsb6{word-spacing:-0.148774pt;}
.wsf{word-spacing:-0.143462pt;}
.wsc3{word-spacing:-0.111581pt;}
.ws2{word-spacing:-0.095642pt;}
.wsae{word-spacing:-0.074387pt;}
.ws1c{word-spacing:-0.058182pt;}
.ws7{word-spacing:-0.047821pt;}
.ws18{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.002836pt;}
.wsb8{word-spacing:0.037194pt;}
.ws2f{word-spacing:0.047821pt;}
.ws35{word-spacing:0.050555pt;}
.ws8{word-spacing:0.095642pt;}
.wsb0{word-spacing:0.111581pt;}
.ws21{word-spacing:0.127522pt;}
.ws6{word-spacing:0.143462pt;}
.ws16{word-spacing:0.148774pt;}
.ws30{word-spacing:0.191283pt;}
.wsbd{word-spacing:0.223162pt;}
.ws3{word-spacing:0.239104pt;}
.ws5{word-spacing:0.286925pt;}
.ws5d{word-spacing:0.382566pt;}
.ws2b{word-spacing:0.573850pt;}
.wsa8{word-spacing:0.595098pt;}
.ws6a{word-spacing:0.669491pt;}
.ws6c{word-spacing:0.717312pt;}
.wsa0{word-spacing:0.812954pt;}
.wsb4{word-spacing:0.818259pt;}
.ws7b{word-spacing:0.908595pt;}
.ws85{word-spacing:0.956416pt;}
.wsc0{word-spacing:0.967034pt;}
.ws86{word-spacing:1.052058pt;}
.ws91{word-spacing:1.147699pt;}
.ws97{word-spacing:1.195520pt;}
.ws49{word-spacing:1.243341pt;}
.wsc6{word-spacing:1.338970pt;}
.wsac{word-spacing:1.376163pt;}
.ws4c{word-spacing:1.386803pt;}
.ws10{word-spacing:1.482445pt;}
.ws6d{word-spacing:1.673728pt;}
.ws25{word-spacing:1.700288pt;}
.ws93{word-spacing:1.721549pt;}
.ws66{word-spacing:1.817190pt;}
.ws34{word-spacing:1.865011pt;}
.ws9d{word-spacing:1.912832pt;}
.ws92{word-spacing:1.960653pt;}
.ws9b{word-spacing:2.056294pt;}
.ws4{word-spacing:2.247578pt;}
.ws8b{word-spacing:2.343219pt;}
.ws71{word-spacing:2.438861pt;}
.ws53{word-spacing:2.463459pt;}
.ws55{word-spacing:2.486682pt;}
.ws3b{word-spacing:2.582323pt;}
.ws9a{word-spacing:2.630144pt;}
.wsa9{word-spacing:2.677939pt;}
.wsb1{word-spacing:3.049875pt;}
.ws6f{word-spacing:3.347456pt;}
.ws3a{word-spacing:3.364228pt;}
.ws33{word-spacing:3.443098pt;}
.ws79{word-spacing:3.586560pt;}
.wse{word-spacing:3.634381pt;}
.ws95{word-spacing:3.682202pt;}
.ws87{word-spacing:3.873485pt;}
.ws59{word-spacing:4.686438pt;}
.ws50{word-spacing:4.734259pt;}
.ws7c{word-spacing:4.829901pt;}
.ws1d{word-spacing:4.877722pt;}
.ws5a{word-spacing:5.021184pt;}
.ws3c{word-spacing:5.069005pt;}
.ws2a{word-spacing:5.212467pt;}
.ws9f{word-spacing:5.355930pt;}
.ws9e{word-spacing:5.392067pt;}
.ws32{word-spacing:5.595034pt;}
.wsd{word-spacing:6.073242pt;}
.ws78{word-spacing:6.838374pt;}
.wsbc{word-spacing:7.885043pt;}
.ws8f{word-spacing:8.081715pt;}
.wsab{word-spacing:8.182592pt;}
.wsa7{word-spacing:9.186819pt;}
.wsbe{word-spacing:9.224013pt;}
.ws1b{word-spacing:9.261206pt;}
.ws48{word-spacing:9.262661pt;}
.wsb9{word-spacing:9.298400pt;}
.ws5e{word-spacing:9.420698pt;}
.ws67{word-spacing:9.468518pt;}
.wsb5{word-spacing:10.079466pt;}
.wsc1{word-spacing:10.228240pt;}
.ws64{word-spacing:10.520576pt;}
.ws1e{word-spacing:10.584293pt;}
.ws22{word-spacing:10.711814pt;}
.wsaf{word-spacing:10.805685pt;}
.wsc2{word-spacing:10.807119pt;}
.ws23{word-spacing:11.179394pt;}
.ws61{word-spacing:11.524813pt;}
.ws27{word-spacing:11.664724pt;}
.ws89{word-spacing:11.668275pt;}
.ws74{word-spacing:11.711933pt;}
.ws84{word-spacing:11.716096pt;}
.ws57{word-spacing:11.729279pt;}
.ws14{word-spacing:11.763917pt;}
.ws8c{word-spacing:11.859558pt;}
.ws58{word-spacing:11.903403pt;}
.ws3d{word-spacing:11.907379pt;}
.ws37{word-spacing:11.955200pt;}
.ws13{word-spacing:12.003021pt;}
.ws51{word-spacing:12.050842pt;}
.ws15{word-spacing:12.146483pt;}
.ws24{word-spacing:12.284581pt;}
.wsb2{word-spacing:12.311082pt;}
.ws6b{word-spacing:12.624691pt;}
.ws98{word-spacing:12.815974pt;}
.ws4f{word-spacing:12.840335pt;}
.ws36{word-spacing:13.071854pt;}
.ws90{word-spacing:13.281152pt;}
.ws4b{word-spacing:13.294182pt;}
.ws60{word-spacing:14.202778pt;}
.ws54{word-spacing:14.369160pt;}
.ws12{word-spacing:14.487285pt;}
.ws75{word-spacing:15.095004pt;}
.ws3e{word-spacing:15.157666pt;}
.ws4d{word-spacing:15.184037pt;}
.ws73{word-spacing:15.202623pt;}
.ws38{word-spacing:15.254835pt;}
.ws77{word-spacing:15.279948pt;}
.ws39{word-spacing:15.302656pt;}
.wsa3{word-spacing:15.350921pt;}
.ws88{word-spacing:15.473775pt;}
.ws99{word-spacing:15.557294pt;}
.wsa1{word-spacing:15.571314pt;}
.ws52{word-spacing:15.572308pt;}
.ws69{word-spacing:17.072026pt;}
.ws31{word-spacing:17.502413pt;}
.ws94{word-spacing:18.745754pt;}
.ws5b{word-spacing:19.985273pt;}
.ws7e{word-spacing:21.208693pt;}
.ws81{word-spacing:21.209226pt;}
.ws7d{word-spacing:21.209759pt;}
.ws82{word-spacing:21.211093pt;}
.ws80{word-spacing:21.212959pt;}
.ws7f{word-spacing:21.214559pt;}
.ws7a{word-spacing:23.862579pt;}
.ws3f{word-spacing:29.571672pt;}
.ws26{word-spacing:58.123685pt;}
.ws40{word-spacing:111.890677pt;}
.ws46{word-spacing:111.969640pt;}
.ws42{word-spacing:117.378611pt;}
.ws44{word-spacing:145.923763pt;}
.ws47{word-spacing:150.188523pt;}
.ws45{word-spacing:151.905508pt;}
.ws83{word-spacing:169.765685pt;}
.ws41{word-spacing:198.078874pt;}
.ws43{word-spacing:218.846162pt;}
._0{margin-left:-6.518898pt;}
._31{margin-left:-5.120004pt;}
._2{margin-left:-3.134898pt;}
._9{margin-left:-2.210966pt;}
._1{margin-left:-1.193601pt;}
._4{width:1.099878pt;}
._3{width:2.656693pt;}
._35{width:5.393072pt;}
._7{width:9.870384pt;}
._2d{width:11.566362pt;}
._30{width:12.863795pt;}
._34{width:14.049167pt;}
._33{width:17.153405pt;}
._36{width:18.596800pt;}
._32{width:24.915852pt;}
._8{width:32.177453pt;}
._2e{width:58.181867pt;}
._25{width:106.599543pt;}
._f{width:138.422270pt;}
._a{width:154.096441pt;}
._2b{width:156.504076pt;}
._23{width:161.560169pt;}
._27{width:163.256158pt;}
._19{width:164.264893pt;}
._15{width:165.269716pt;}
._b{width:203.882660pt;}
._e{width:211.463115pt;}
._11{width:219.793719pt;}
._c{width:229.190325pt;}
._24{width:238.288780pt;}
._1c{width:245.733089pt;}
._20{width:249.585660pt;}
._10{width:253.352418pt;}
._18{width:254.655917pt;}
._14{width:256.669475pt;}
._26{width:259.336052pt;}
._12{width:260.341654pt;}
._22{width:261.506081pt;}
._1e{width:263.223411pt;}
._17{width:264.210805pt;}
._d{width:267.803269pt;}
._1b{width:301.678428pt;}
._2a{width:306.752920pt;}
._1f{width:310.996071pt;}
._13{width:313.009629pt;}
._16{width:314.232949pt;}
._2f{width:343.131758pt;}
._28{width:347.318477pt;}
._21{width:378.399602pt;}
._2c{width:381.114673pt;}
._1d{width:407.606785pt;}
._1a{width:409.501899pt;}
._6{width:562.888280pt;}
._29{width:572.323759pt;}
._5{width:774.820481pt;}
.fsb{font-size:26.566933pt;}
.fs6{font-size:29.224000pt;}
.fs7{font-size:37.193600pt;}
.fsa{font-size:38.787733pt;}
.fs9{font-size:39.481538pt;}
.fs8{font-size:42.507200pt;}
.fs2{font-size:46.757867pt;}
.fs5{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:112.870667pt;}
.ye3{bottom:118.184000pt;}
.y33{bottom:123.497333pt;}
.y54{bottom:127.481333pt;}
.ye2{bottom:132.796000pt;}
.y32{bottom:134.124000pt;}
.y53{bottom:142.093333pt;}
.y31{bottom:145.813333pt;}
.ye1{bottom:147.406667pt;}
.y52{bottom:156.705333pt;}
.y30{bottom:157.502667pt;}
.yfd{bottom:160.358667pt;}
.ye0{bottom:162.018667pt;}
.y2f{bottom:168.129333pt;}
.y51{bottom:171.317333pt;}
.ydf{bottom:176.630667pt;}
.y2e{bottom:178.756000pt;}
.y50{bottom:185.929333pt;}
.y2d{bottom:189.382667pt;}
.y86{bottom:190.797333pt;}
.yde{bottom:191.242667pt;}
.yfc{bottom:198.648000pt;}
.y2c{bottom:200.010667pt;}
.y4f{bottom:200.541333pt;}
.y104{bottom:204.194667pt;}
.y85{bottom:205.409333pt;}
.ydd{bottom:205.854667pt;}
.y2b{bottom:210.637333pt;}
.yfb{bottom:213.260000pt;}
.y4e{bottom:215.153333pt;}
.y84{bottom:220.021333pt;}
.ydc{bottom:220.466667pt;}
.y2a{bottom:221.264000pt;}
.yfa{bottom:227.872000pt;}
.y4d{bottom:229.765333pt;}
.y83{bottom:234.633333pt;}
.y103{bottom:236.124000pt;}
.ydb{bottom:241.056000pt;}
.yf9{bottom:242.484000pt;}
.y4c{bottom:244.377333pt;}
.y29{bottom:248.310667pt;}
.y82{bottom:249.245333pt;}
.y102{bottom:250.736000pt;}
.yda{bottom:255.668000pt;}
.yf8{bottom:257.096000pt;}
.y4b{bottom:258.989333pt;}
.y81{bottom:263.857333pt;}
.y101{bottom:265.348000pt;}
.y28{bottom:267.973333pt;}
.yd9{bottom:270.280000pt;}
.yf7{bottom:271.708000pt;}
.y4a{bottom:273.600000pt;}
.y80{bottom:278.469333pt;}
.y100{bottom:279.960000pt;}
.y27{bottom:282.585333pt;}
.yd8{bottom:284.892000pt;}
.yf6{bottom:286.320000pt;}
.y49{bottom:288.212000pt;}
.y7f{bottom:293.081333pt;}
.yff{bottom:294.572000pt;}
.y26{bottom:297.197333pt;}
.yd7{bottom:299.504000pt;}
.yf5{bottom:300.932000pt;}
.y48{bottom:302.824000pt;}
.y7e{bottom:307.692000pt;}
.y25{bottom:311.809333pt;}
.yfe{bottom:312.837333pt;}
.yd6{bottom:314.116000pt;}
.yf4{bottom:315.544000pt;}
.y47{bottom:317.436000pt;}
.yae{bottom:321.089333pt;}
.y7d{bottom:322.304000pt;}
.yd5{bottom:328.726667pt;}
.y24{bottom:330.074667pt;}
.yf3{bottom:330.154667pt;}
.y46{bottom:332.048000pt;}
.y7c{bottom:336.916000pt;}
.yd4{bottom:343.338667pt;}
.yf2{bottom:344.766667pt;}
.y45{bottom:346.660000pt;}
.y7b{bottom:351.528000pt;}
.yd3{bottom:357.950667pt;}
.y23{bottom:358.852000pt;}
.yf1{bottom:359.378667pt;}
.y44{bottom:361.272000pt;}
.y7a{bottom:366.140000pt;}
.y89{bottom:371.197333pt;}
.yad{bottom:372.449333pt;}
.yd2{bottom:372.562667pt;}
.y22{bottom:373.462667pt;}
.yf0{bottom:373.990667pt;}
.y43{bottom:375.884000pt;}
.y79{bottom:384.405333pt;}
.yac{bottom:385.732000pt;}
.y88{bottom:385.809333pt;}
.yd1{bottom:387.174667pt;}
.y21{bottom:388.074667pt;}
.yef{bottom:388.602667pt;}
.y42{bottom:390.496000pt;}
.yab{bottom:399.016000pt;}
.y87{bottom:400.421333pt;}
.yd0{bottom:401.786667pt;}
.y20{bottom:402.686667pt;}
.yee{bottom:403.214667pt;}
.y41{bottom:405.108000pt;}
.yaa{bottom:412.300000pt;}
.y78{bottom:415.033333pt;}
.ycf{bottom:416.398667pt;}
.y1f{bottom:417.298667pt;}
.yed{bottom:417.826667pt;}
.y40{bottom:419.720000pt;}
.ya9{bottom:425.582667pt;}
.y77{bottom:429.645333pt;}
.yce{bottom:431.010667pt;}
.y1e{bottom:431.910667pt;}
.yec{bottom:432.438667pt;}
.y3f{bottom:434.330667pt;}
.ya8{bottom:438.866667pt;}
.y76{bottom:444.257333pt;}
.ycd{bottom:445.622667pt;}
.y1d{bottom:446.522667pt;}
.yeb{bottom:447.050667pt;}
.y3e{bottom:448.942667pt;}
.ya7{bottom:452.150667pt;}
.y75{bottom:458.869333pt;}
.ycc{bottom:460.234667pt;}
.y1c{bottom:461.134667pt;}
.yea{bottom:461.662667pt;}
.y3d{bottom:463.554667pt;}
.ya6{bottom:465.433333pt;}
.y74{bottom:473.481333pt;}
.y1b{bottom:475.746667pt;}
.ye9{bottom:476.273333pt;}
.ya5{bottom:478.717333pt;}
.ycb{bottom:480.824000pt;}
.y3c{bottom:481.820000pt;}
.y73{bottom:488.093333pt;}
.y1a{bottom:490.358667pt;}
.ye8{bottom:490.885333pt;}
.ya4{bottom:492.001333pt;}
.yca{bottom:495.436000pt;}
.y72{bottom:502.705333pt;}
.y19{bottom:504.970667pt;}
.ya3{bottom:505.284000pt;}
.ye7{bottom:505.497333pt;}
.yc9{bottom:510.046667pt;}
.y71{bottom:517.316000pt;}
.ya2{bottom:518.568000pt;}
.y3b{bottom:518.949333pt;}
.y18{bottom:519.581333pt;}
.ye6{bottom:520.109333pt;}
.yc8{bottom:524.658667pt;}
.ya1{bottom:531.850667pt;}
.y70{bottom:531.928000pt;}
.y3a{bottom:532.233333pt;}
.y17{bottom:534.193333pt;}
.ye5{bottom:534.721333pt;}
.yc7{bottom:539.270667pt;}
.y39{bottom:545.517333pt;}
.y6f{bottom:546.540000pt;}
.y16{bottom:548.805333pt;}
.ya0{bottom:549.684000pt;}
.yc6{bottom:553.882667pt;}
.y38{bottom:558.800000pt;}
.y6e{bottom:561.152000pt;}
.y15{bottom:563.417333pt;}
.yc5{bottom:568.494667pt;}
.y37{bottom:572.084000pt;}
.ye4{bottom:572.313333pt;}
.y6d{bottom:575.764000pt;}
.y14{bottom:578.029333pt;}
.yc4{bottom:583.106667pt;}
.y36{bottom:585.368000pt;}
.y9f{bottom:587.190667pt;}
.y6c{bottom:590.376000pt;}
.y13{bottom:592.641333pt;}
.yc3{bottom:597.718667pt;}
.y35{bottom:598.650667pt;}
.y11d{bottom:600.973333pt;}
.y9e{bottom:601.802667pt;}
.y6b{bottom:604.988000pt;}
.y12{bottom:607.253333pt;}
.y11c{bottom:611.600000pt;}
.yc2{bottom:612.330667pt;}
.y9d{bottom:616.414667pt;}
.y6a{bottom:619.600000pt;}
.y11{bottom:621.865333pt;}
.y11b{bottom:622.226667pt;}
.y139{bottom:622.957333pt;}
.yc1{bottom:626.942667pt;}
.y9c{bottom:631.025333pt;}
.y11a{bottom:632.853333pt;}
.y138{bottom:633.584000pt;}
.y69{bottom:634.212000pt;}
.y10{bottom:636.477333pt;}
.y119{bottom:643.480000pt;}
.y137{bottom:644.210667pt;}
.y9b{bottom:646.554667pt;}
.yc0{bottom:647.532000pt;}
.y68{bottom:648.824000pt;}
.y118{bottom:654.106667pt;}
.yf{bottom:654.741333pt;}
.y136{bottom:654.837333pt;}
.ybf{bottom:662.144000pt;}
.y9a{bottom:662.849333pt;}
.y67{bottom:663.436000pt;}
.y117{bottom:664.733333pt;}
.y135{bottom:665.464000pt;}
.y116{bottom:675.361333pt;}
.y134{bottom:676.090667pt;}
.ybe{bottom:676.756000pt;}
.y99{bottom:677.461333pt;}
.y66{bottom:678.046667pt;}
.ye{bottom:681.316000pt;}
.y115{bottom:685.988000pt;}
.y133{bottom:686.718667pt;}
.ybd{bottom:691.368000pt;}
.y98{bottom:692.073333pt;}
.y65{bottom:692.658667pt;}
.y114{bottom:696.614667pt;}
.yd{bottom:697.256000pt;}
.y132{bottom:697.345333pt;}
.ybc{bottom:705.978667pt;}
.y113{bottom:707.241333pt;}
.y64{bottom:707.270667pt;}
.y131{bottom:707.972000pt;}
.y97{bottom:712.662667pt;}
.yc{bottom:713.196000pt;}
.y112{bottom:717.868000pt;}
.y130{bottom:718.598667pt;}
.ybb{bottom:720.590667pt;}
.y96{bottom:727.274667pt;}
.y111{bottom:728.494667pt;}
.yb{bottom:729.136000pt;}
.y12f{bottom:729.225333pt;}
.yba{bottom:735.202667pt;}
.y110{bottom:739.121333pt;}
.y12e{bottom:739.852000pt;}
.y95{bottom:741.886667pt;}
.ya{bottom:745.076000pt;}
.y63{bottom:745.238667pt;}
.yb9{bottom:749.814667pt;}
.y12d{bottom:750.478667pt;}
.y10f{bottom:753.401333pt;}
.y94{bottom:756.497333pt;}
.y62{bottom:759.900474pt;}
.y9{bottom:761.016000pt;}
.y12c{bottom:761.105333pt;}
.yb8{bottom:764.426667pt;}
.y93{bottom:771.109333pt;}
.y12b{bottom:771.732000pt;}
.y61{bottom:772.238919pt;}
.y10e{bottom:781.362667pt;}
.y12a{bottom:782.360000pt;}
.y60{bottom:784.577363pt;}
.yb7{bottom:785.016000pt;}
.y92{bottom:785.721333pt;}
.y8{bottom:790.969333pt;}
.y129{bottom:792.986667pt;}
.y10d{bottom:795.974667pt;}
.y5f{bottom:796.914570pt;}
.yb6{bottom:799.628000pt;}
.y91{bottom:800.333333pt;}
.y128{bottom:803.613333pt;}
.y7{bottom:806.909333pt;}
.y5e{bottom:809.253015pt;}
.y10c{bottom:810.586667pt;}
.yb5{bottom:814.240000pt;}
.y90{bottom:820.922667pt;}
.y5d{bottom:821.590221pt;}
.y6{bottom:822.850667pt;}
.y127{bottom:824.866667pt;}
.y10b{bottom:825.198667pt;}
.yb4{bottom:828.852000pt;}
.y5c{bottom:833.928666pt;}
.y126{bottom:835.493333pt;}
.y8f{bottom:835.534667pt;}
.y5{bottom:838.790667pt;}
.y10a{bottom:839.810667pt;}
.yb3{bottom:843.464000pt;}
.y125{bottom:846.120000pt;}
.y5b{bottom:846.267111pt;}
.y8e{bottom:850.146667pt;}
.y109{bottom:854.422667pt;}
.y4{bottom:854.730667pt;}
.y124{bottom:856.746667pt;}
.yb2{bottom:858.076000pt;}
.y5a{bottom:858.604317pt;}
.y8d{bottom:864.758667pt;}
.y123{bottom:867.373333pt;}
.y108{bottom:869.034667pt;}
.y3{bottom:870.670667pt;}
.y59{bottom:870.942762pt;}
.yb1{bottom:872.688000pt;}
.y122{bottom:878.001333pt;}
.y8c{bottom:883.024000pt;}
.y107{bottom:883.646667pt;}
.yb0{bottom:887.298667pt;}
.y121{bottom:888.628000pt;}
.y58{bottom:888.871465pt;}
.y106{bottom:898.258667pt;}
.y120{bottom:899.254667pt;}
.y57{bottom:901.209910pt;}
.yaf{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y11f{bottom:909.881333pt;}
.y105{bottom:912.870667pt;}
.y8b{bottom:916.522667pt;}
.y11e{bottom:920.508000pt;}
.y1{bottom:928.500000pt;}
.y8a{bottom:931.134667pt;}
.y56{bottom:934.190667pt;}
.y55{bottom:966.204000pt;}
.h15{height:19.553263pt;}
.h9{height:21.508864pt;}
.h17{height:26.035520pt;}
.h7{height:26.205798pt;}
.hf{height:26.333069pt;}
.hb{height:27.002554pt;}
.ha{height:27.374490pt;}
.h10{height:27.637076pt;}
.h16{height:28.522331pt;}
.h14{height:29.032418pt;}
.h11{height:29.058412pt;}
.hc{height:29.755040pt;}
.he{height:30.860227pt;}
.hd{height:31.285299pt;}
.h13{height:32.087757pt;}
.h8{height:33.474560pt;}
.h12{height:34.717901pt;}
.h6{height:35.196109pt;}
.h3{height:39.106526pt;}
.h5{height:40.727307pt;}
.h4{height:46.928145pt;}
.h2{height:57.560457pt;}
.h1{height:64.087196pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:71.730667pt;}
.x34{left:75.716000pt;}
.x36{left:79.900000pt;}
.x25{left:80.984191pt;}
.x35{left:82.989333pt;}
.x3b{left:85.014667pt;}
.x3c{left:91.986667pt;}
.x2a{left:93.020000pt;}
.x2b{left:104.276000pt;}
.x32{left:119.025333pt;}
.x33{left:124.584000pt;}
.x3a{left:127.544000pt;}
.x1{left:138.750667pt;}
.xe{left:143.473333pt;}
.x24{left:157.049333pt;}
.x5{left:163.352000pt;}
.xd{left:167.505333pt;}
.x4{left:183.577333pt;}
.x2{left:184.589333pt;}
.x6{left:195.358667pt;}
.x3d{left:197.221333pt;}
.xf{left:199.112000pt;}
.x3e{left:201.588000pt;}
.x3{left:203.917333pt;}
.x14{left:210.444000pt;}
.x12{left:234.060000pt;}
.x27{left:243.846667pt;}
.x13{left:249.294667pt;}
.x26{left:265.950644pt;}
.x28{left:295.273333pt;}
.x29{left:321.780000pt;}
.x15{left:423.940000pt;}
.x37{left:427.101333pt;}
.x3f{left:428.264000pt;}
.x2e{left:437.224000pt;}
.x39{left:438.382667pt;}
.x38{left:439.833333pt;}
.x40{left:444.242667pt;}
.x2c{left:445.229333pt;}
.x16{left:449.502667pt;}
.x17{left:455.061333pt;}
.x2d{left:456.485333pt;}
.x18{left:460.688000pt;}
.x19{left:466.248000pt;}
.x22{left:469.998667pt;}
.x1a{left:471.874667pt;}
.x23{left:475.557333pt;}
.x1b{left:482.992000pt;}
.x9{left:491.652000pt;}
.x10{left:506.681333pt;}
.xb{left:512.985333pt;}
.x8{left:517.268000pt;}
.xa{left:523.657333pt;}
.xc{left:528.074667pt;}
.x7{left:536.249333pt;}
.x2f{left:557.337333pt;}
.x30{left:562.897333pt;}
.x31{left:636.857333pt;}
.x20{left:648.057333pt;}
.x21{left:653.616000pt;}
.x1c{left:718.000000pt;}
.x1d{left:723.560000pt;}
.x1e{left:728.244000pt;}
.x1f{left:739.361333pt;}
}




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