
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dec406686d565ed252dd040a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_a672b348ce4af28089483a61.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d4f7289d61eff314b66742bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739000;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_224ffe6fb1d6d399f271d40c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c616d7e4609c459a5cdba0e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.684000;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_eaea5dab049104bcfda5acb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m2{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);}
.md{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);}
.m9{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);}
.m19{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);}
.m4{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);}
.m1e{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);}
.m15{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);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m1d{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);}
.m28{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);}
.m1{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);}
.m6{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);}
.m26{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);}
.m1c{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.mc{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);}
.m16{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);}
.m5{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);}
.m14{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);}
.mb{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);}
.m18{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);}
.mf{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);}
.me{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);}
.m12{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);}
.m25{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);}
.m8{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);}
.m11{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);}
.m21{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);}
.m20{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);}
.m1f{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);}
.m1b{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);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.926000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:24.660000px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000425px;}
.ls11{letter-spacing:0.001155px;}
.ls0{letter-spacing:0.002568px;}
.lsf{letter-spacing:0.004800px;}
.ls9{letter-spacing:2.057134px;}
.ls1{letter-spacing:2.988000px;}
.lsa{letter-spacing:11.133634px;}
.ls8{letter-spacing:11.954850px;}
.ls6{letter-spacing:11.955000px;}
.ls17{letter-spacing:13.297675px;}
.lsc{letter-spacing:13.342003px;}
.lsd{letter-spacing:13.448400px;}
.lse{letter-spacing:13.454400px;}
.ls10{letter-spacing:13.454592px;}
.ls13{letter-spacing:13.492998px;}
.ls15{letter-spacing:13.507543px;}
.ls12{letter-spacing:15.638635px;}
.ls14{letter-spacing:15.668047px;}
.ls2{letter-spacing:17.934000px;}
.ls16{letter-spacing:18.609224px;}
.ls4{letter-spacing:70.236000px;}
.ls3{letter-spacing:70.242000px;}
.ls5{letter-spacing:72.354576px;}
.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;}
}
.ws69{word-spacing:-14.943900px;}
.ws81{word-spacing:-13.449600px;}
.ws23{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.358000px;}
.ws48{word-spacing:-10.087200px;}
.ws33{word-spacing:-3.168107px;}
.wsc{word-spacing:-2.869643px;}
.ws91{word-spacing:-2.851315px;}
.ws68{word-spacing:-2.450800px;}
.wse{word-spacing:-2.331402px;}
.ws49{word-spacing:-2.259533px;}
.ws60{word-spacing:-1.673717px;}
.wsb6{word-spacing:-1.560154px;}
.ws8c{word-spacing:-1.506355px;}
.ws59{word-spacing:-1.494390px;}
.wsa0{word-spacing:-1.452557px;}
.ws41{word-spacing:-1.434614px;}
.ws58{word-spacing:-1.374839px;}
.wsa7{word-spacing:-1.344960px;}
.wsa2{word-spacing:-1.075968px;}
.ws88{word-spacing:-1.022170px;}
.ws2a{word-spacing:-1.016185px;}
.wsa9{word-spacing:-0.860774px;}
.ws26{word-spacing:-0.836858px;}
.wsa8{word-spacing:-0.806976px;}
.ws32{word-spacing:-0.717307px;}
.ws6a{word-spacing:-0.657532px;}
.ws3b{word-spacing:-0.478205px;}
.ws5a{word-spacing:-0.358654px;}
.ws1c{word-spacing:-0.358489px;}
.ws3e{word-spacing:-0.298878px;}
.ws8e{word-spacing:-0.268992px;}
.ws12{word-spacing:-0.239112px;}
.ws56{word-spacing:-0.239102px;}
.ws93{word-spacing:-0.215194px;}
.ws1d{word-spacing:-0.179693px;}
.ws25{word-spacing:-0.179327px;}
.ws14{word-spacing:-0.179095px;}
.ws95{word-spacing:-0.161395px;}
.ws1e{word-spacing:-0.119735px;}
.ws31{word-spacing:-0.119551px;}
.ws7a{word-spacing:-0.107597px;}
.ws34{word-spacing:-0.059776px;}
.wsf{word-spacing:-0.059718px;}
.ws7d{word-spacing:-0.053798px;}
.ws9{word-spacing:-0.025092px;}
.ws1{word-spacing:-0.022506px;}
.ws7{word-spacing:-0.019716px;}
.ws8{word-spacing:-0.016373px;}
.ws4{word-spacing:-0.014262px;}
.ws6{word-spacing:-0.013494px;}
.wsb1{word-spacing:-0.008275px;}
.wsa4{word-spacing:-0.007776px;}
.ws90{word-spacing:-0.005453px;}
.ws94{word-spacing:-0.003466px;}
.wsab{word-spacing:-0.002429px;}
.wsbc{word-spacing:-0.002304px;}
.ws21{word-spacing:-0.000143px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:0.000299px;}
.ws8f{word-spacing:0.053798px;}
.wsa{word-spacing:0.054011px;}
.ws10{word-spacing:0.059718px;}
.ws24{word-spacing:0.059776px;}
.ws4b{word-spacing:0.080698px;}
.ws7f{word-spacing:0.107597px;}
.ws2b{word-spacing:0.119551px;}
.ws4a{word-spacing:0.121046px;}
.wsac{word-spacing:0.161395px;}
.ws13{word-spacing:0.179095px;}
.ws35{word-spacing:0.179327px;}
.ws4d{word-spacing:0.191282px;}
.ws7e{word-spacing:0.215194px;}
.wsb{word-spacing:0.215399px;}
.ws36{word-spacing:0.239102px;}
.wsd{word-spacing:0.239112px;}
.wsad{word-spacing:0.268992px;}
.ws30{word-spacing:0.298878px;}
.wsb2{word-spacing:0.322790px;}
.ws37{word-spacing:0.358654px;}
.ws1f{word-spacing:0.418506px;}
.ws55{word-spacing:0.478205px;}
.ws9d{word-spacing:0.484186px;}
.ws5c{word-spacing:0.537980px;}
.ws57{word-spacing:0.657532px;}
.ws5e{word-spacing:0.717307px;}
.ws73{word-spacing:0.836858px;}
.wsb0{word-spacing:0.860774px;}
.ws40{word-spacing:0.896634px;}
.ws4f{word-spacing:0.956410px;}
.ws51{word-spacing:1.016185px;}
.ws3f{word-spacing:1.075961px;}
.wsae{word-spacing:1.075968px;}
.wsb7{word-spacing:1.129766px;}
.ws74{word-spacing:1.315063px;}
.ws27{word-spacing:1.374839px;}
.ws17{word-spacing:1.374954px;}
.wsa1{word-spacing:1.452557px;}
.wsbd{word-spacing:1.613952px;}
.ws39{word-spacing:1.673717px;}
.ws98{word-spacing:1.721549px;}
.ws9b{word-spacing:1.775347px;}
.ws65{word-spacing:1.793268px;}
.ws5f{word-spacing:1.853044px;}
.ws6f{word-spacing:1.912819px;}
.ws6e{word-spacing:1.972595px;}
.ws8b{word-spacing:1.990541px;}
.ws77{word-spacing:2.151922px;}
.ws9a{word-spacing:2.205734px;}
.ws78{word-spacing:2.271473px;}
.wsbe{word-spacing:2.313331px;}
.ws53{word-spacing:2.331248px;}
.ws92{word-spacing:2.528525px;}
.ws64{word-spacing:2.570351px;}
.ws6b{word-spacing:2.630126px;}
.ws20{word-spacing:2.869009px;}
.ws4e{word-spacing:2.869229px;}
.ws22{word-spacing:2.869236px;}
.wsaa{word-spacing:3.012710px;}
.ws18{word-spacing:3.108396px;}
.wsba{word-spacing:3.219859px;}
.ws9e{word-spacing:3.221155px;}
.wsb8{word-spacing:3.223104px;}
.ws86{word-spacing:3.223565px;}
.ws83{word-spacing:3.227904px;}
.ws8a{word-spacing:3.228000px;}
.wsa3{word-spacing:3.231552px;}
.ws96{word-spacing:3.281702px;}
.ws76{word-spacing:3.287658px;}
.ws9c{word-spacing:3.335501px;}
.ws15{word-spacing:3.347209px;}
.wsbb{word-spacing:3.496896px;}
.ws79{word-spacing:3.526760px;}
.ws1a{word-spacing:3.571074px;}
.ws1b{word-spacing:3.582000px;}
.ws3d{word-spacing:3.586536px;}
.ws38{word-spacing:3.646312px;}
.ws52{word-spacing:3.885414px;}
.wsa6{word-spacing:3.927283px;}
.ws6c{word-spacing:3.945190px;}
.ws85{word-spacing:4.034880px;}
.ws3a{word-spacing:4.124516px;}
.ws16{word-spacing:4.184281px;}
.ws89{word-spacing:4.303872px;}
.ws97{word-spacing:4.357670px;}
.ws45{word-spacing:4.411469px;}
.ws2e{word-spacing:4.483170px;}
.ws2f{word-spacing:4.542946px;}
.ws2c{word-spacing:4.662497px;}
.ws29{word-spacing:4.722272px;}
.ws84{word-spacing:4.734259px;}
.ws28{word-spacing:4.782048px;}
.ws44{word-spacing:4.788058px;}
.ws42{word-spacing:5.021150px;}
.ws63{word-spacing:5.140702px;}
.wsb4{word-spacing:5.164646px;}
.ws62{word-spacing:5.320028px;}
.ws11{word-spacing:5.380140px;}
.ws5d{word-spacing:5.439580px;}
.ws61{word-spacing:5.559131px;}
.ws3c{word-spacing:5.858009px;}
.ws43{word-spacing:5.917784px;}
.ws6d{word-spacing:5.977560px;}
.ws54{word-spacing:6.635092px;}
.wsaf{word-spacing:6.993792px;}
.ws46{word-spacing:7.477978px;}
.ws71{word-spacing:7.770828px;}
.ws72{word-spacing:7.830604px;}
.ws2d{word-spacing:7.890379px;}
.ws99{word-spacing:8.769139px;}
.ws9f{word-spacing:8.822938px;}
.ws67{word-spacing:9.205442px;}
.wsb3{word-spacing:9.468518px;}
.ws5b{word-spacing:9.504320px;}
.wsb9{word-spacing:9.952704px;}
.wsa5{word-spacing:10.759680px;}
.ws50{word-spacing:11.775793px;}
.ws82{word-spacing:11.835648px;}
.ws2{word-spacing:12.123837px;}
.ws70{word-spacing:12.493100px;}
.ws66{word-spacing:12.911530px;}
.ws8d{word-spacing:14.041382px;}
.ws75{word-spacing:14.465695px;}
.ws7c{word-spacing:15.440141px;}
.ws3{word-spacing:15.765834px;}
.ws7b{word-spacing:16.031923px;}
.ws80{word-spacing:19.690214px;}
.wsb5{word-spacing:21.196570px;}
.ws87{word-spacing:27.168192px;}
.ws47{word-spacing:78.034579px;}
.ws4c{word-spacing:107.626766px;}
._2c{margin-left:-7.729100px;}
._2{margin-left:-6.635059px;}
._4{margin-left:-4.950789px;}
._6{margin-left:-3.873692px;}
._23{margin-left:-2.219184px;}
._1{margin-left:-1.063194px;}
._25{width:1.492906px;}
._3{width:3.020583px;}
._5{width:4.024252px;}
._0{width:10.165342px;}
._e{width:11.955478px;}
._33{width:13.128145px;}
._32{width:14.526904px;}
._7{width:15.708378px;}
._9{width:17.645142px;}
._a{width:18.772922px;}
._13{width:20.968469px;}
._d{width:23.074547px;}
._f{width:24.843974px;}
._2f{width:26.196194px;}
._14{width:27.841497px;}
._b{width:29.231382px;}
._30{width:30.379917px;}
._c{width:31.503664px;}
._12{width:33.354785px;}
._31{width:34.592578px;}
._15{width:36.569900px;}
._2a{width:38.854140px;}
._2d{width:42.440676px;}
._2b{width:47.311429px;}
._34{width:49.658595px;}
._2e{width:56.220664px;}
._35{width:61.868160px;}
._8{width:63.855852px;}
._16{width:104.557414px;}
._29{width:110.640917px;}
._26{width:119.150006px;}
._17{width:128.011410px;}
._20{width:143.036496px;}
._21{width:148.761194px;}
._24{width:157.194418px;}
._1a{width:163.170547px;}
._1d{width:168.577877px;}
._1b{width:169.666704px;}
._1f{width:176.647046px;}
._22{width:196.821446px;}
._19{width:209.733062px;}
._28{width:211.664534px;}
._1e{width:221.092027px;}
._27{width:225.711187px;}
._18{width:233.984527px;}
._1c{width:276.227885px;}
._10{width:414.708767px;}
._11{width:1580.130279px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,81,46);}
.fc0{color:rgb(14,15,14);}
.fs5{font-size:29.886000px;}
.fsc{font-size:40.348800px;}
.fs6{font-size:41.844000px;}
.fs4{font-size:45.432000px;}
.fs8{font-size:47.820000px;}
.fs9{font-size:47.820600px;}
.fs7{font-size:53.796000px;}
.fsb{font-size:53.798400px;}
.fs0{font-size:56.694600px;}
.fsa{font-size:59.775600px;}
.fs2{font-size:59.778000px;}
.fs1{font-size:60.474240px;}
.fs3{font-size:107.598000px;}
.y0{bottom:0.000000px;}
.y4{bottom:6.350740px;}
.y3{bottom:20.308006px;}
.y2{bottom:37.114175px;}
.y32{bottom:63.780000px;}
.y11e{bottom:108.957000px;}
.y63{bottom:116.607000px;}
.y31{bottom:119.682000px;}
.yd5{bottom:123.121500px;}
.yea{bottom:126.499500px;}
.y11d{bottom:128.325000px;}
.ya4{bottom:135.444000px;}
.y62{bottom:136.870500px;}
.y30{bottom:139.945500px;}
.yc0{bottom:140.128500px;}
.yd4{bottom:143.386500px;}
.ye9{bottom:145.867500px;}
.y11c{bottom:147.691500px;}
.ya3{bottom:155.709000px;}
.y61{bottom:157.134000px;}
.y2f{bottom:160.210500px;}
.ybf{bottom:160.392000px;}
.yd3{bottom:163.650000px;}
.ye8{bottom:165.235500px;}
.y11b{bottom:167.059500px;}
.y121{bottom:172.843500px;}
.ya2{bottom:175.972500px;}
.y60{bottom:177.399000px;}
.y2e{bottom:180.474000px;}
.ybe{bottom:180.657000px;}
.yd2{bottom:183.913500px;}
.ye7{bottom:184.602000px;}
.y11a{bottom:186.427500px;}
.y120{bottom:192.211500px;}
.ya1{bottom:196.237500px;}
.y5f{bottom:197.662500px;}
.y2d{bottom:200.739000px;}
.ybd{bottom:200.920500px;}
.ye6{bottom:203.970000px;}
.yd1{bottom:204.178500px;}
.y119{bottom:205.794000px;}
.y11f{bottom:211.578000px;}
.ya0{bottom:216.501000px;}
.y5e{bottom:217.927500px;}
.y2c{bottom:221.002500px;}
.ybc{bottom:221.184000px;}
.ye5{bottom:223.336500px;}
.yd0{bottom:224.442000px;}
.y118{bottom:225.162000px;}
.y9f{bottom:236.764500px;}
.ybb{bottom:241.449000px;}
.ye4{bottom:242.704500px;}
.y117{bottom:244.528500px;}
.ycf{bottom:244.707000px;}
.y5d{bottom:247.158000px;}
.y2b{bottom:250.233000px;}
.y9e{bottom:257.029500px;}
.yba{bottom:261.712500px;}
.ye3{bottom:262.072500px;}
.y116{bottom:263.896500px;}
.yce{bottom:264.970500px;}
.ye2{bottom:281.439000px;}
.y5c{bottom:281.977500px;}
.y115{bottom:283.264500px;}
.ycd{bottom:285.234000px;}
.y9d{bottom:291.192000px;}
.ye1{bottom:300.807000px;}
.y5b{bottom:302.241000px;}
.y114{bottom:302.631000px;}
.y9c{bottom:305.388000px;}
.ycc{bottom:305.499000px;}
.ye0{bottom:320.173500px;}
.y113{bottom:321.999000px;}
.y5a{bottom:322.504500px;}
.y9b{bottom:324.914625px;}
.ycb{bottom:325.762500px;}
.y2a{bottom:326.641500px;}
.y98{bottom:331.078500px;}
.y9a{bottom:337.242375px;}
.y112{bottom:341.367000px;}
.y59{bottom:342.769500px;}
.y97{bottom:343.407375px;}
.yca{bottom:346.027500px;}
.ydf{bottom:348.508500px;}
.y99{bottom:349.571250px;}
.y111{bottom:360.733500px;}
.y58{bottom:363.033000px;}
.y29{bottom:364.837500px;}
.yc9{bottom:366.291000px;}
.y96{bottom:367.302375px;}
.y95{bottom:379.631250px;}
.y110{bottom:380.101500px;}
.y57{bottom:383.298000px;}
.y28{bottom:385.102500px;}
.y91{bottom:385.795125px;}
.yc8{bottom:386.554500px;}
.yde{bottom:387.960000px;}
.y94{bottom:391.960125px;}
.y90{bottom:398.124000px;}
.y10f{bottom:399.468000px;}
.y56{bottom:403.561500px;}
.y93{bottom:404.289000px;}
.y27{bottom:405.366000px;}
.yc7{bottom:406.819500px;}
.ydd{bottom:412.125000px;}
.y92{bottom:416.616750px;}
.y10e{bottom:418.836000px;}
.y55{bottom:423.825000px;}
.y26{bottom:425.631000px;}
.yc6{bottom:427.083000px;}
.ydc{bottom:427.323000px;}
.y8f{bottom:434.347875px;}
.y10d{bottom:438.204000px;}
.ydb{bottom:442.521000px;}
.y54{bottom:444.090000px;}
.y25{bottom:445.894500px;}
.y8b{bottom:446.676750px;}
.yc5{bottom:447.348000px;}
.y8d{bottom:452.840625px;}
.y10c{bottom:457.570500px;}
.yda{bottom:457.719000px;}
.y8a{bottom:459.005625px;}
.y53{bottom:464.353500px;}
.y8c{bottom:465.169500px;}
.y24{bottom:466.158000px;}
.yc4{bottom:467.611500px;}
.y89{bottom:471.334500px;}
.yd9{bottom:472.917000px;}
.y10b{bottom:476.938500px;}
.y8e{bottom:483.663375px;}
.y52{bottom:484.618500px;}
.y23{bottom:486.423000px;}
.yc3{bottom:487.875000px;}
.y10a{bottom:496.305000px;}
.yd8{bottom:497.080500px;}
.y88{bottom:501.393375px;}
.yb9{bottom:504.882000px;}
.y22{bottom:506.686500px;}
.y85{bottom:507.557250px;}
.yc2{bottom:508.140000px;}
.yd7{bottom:512.278500px;}
.y87{bottom:513.722250px;}
.y51{bottom:513.847500px;}
.y109{bottom:515.673000px;}
.y84{bottom:519.886125px;}
.yb8{bottom:525.145500px;}
.y86{bottom:526.051125px;}
.y21{bottom:526.951500px;}
.yc1{bottom:528.403500px;}
.y108{bottom:535.041000px;}
.y83{bottom:543.781125px;}
.yb7{bottom:545.410500px;}
.y20{bottom:547.215000px;}
.y50{bottom:548.667000px;}
.y107{bottom:554.407500px;}
.y81{bottom:556.110000px;}
.y7e{bottom:562.275000px;}
.yb6{bottom:565.674000px;}
.y1f{bottom:567.478500px;}
.y80{bottom:568.438875px;}
.y4f{bottom:568.932000px;}
.y106{bottom:573.775500px;}
.y7d{bottom:574.603875px;}
.y7f{bottom:580.767750px;}
.yb5{bottom:585.939000px;}
.y1e{bottom:587.743500px;}
.y4e{bottom:589.195500px;}
.y82{bottom:593.096625px;}
.y105{bottom:593.142000px;}
.yb4{bottom:606.202500px;}
.y1d{bottom:608.007000px;}
.y4d{bottom:609.460500px;}
.y7c{bottom:610.826625px;}
.y104{bottom:612.510000px;}
.y7a{bottom:623.155500px;}
.yb3{bottom:626.466000px;}
.y1c{bottom:628.272000px;}
.y4c{bottom:629.724000px;}
.y103{bottom:631.878000px;}
.y79{bottom:635.484375px;}
.yb2{bottom:646.731000px;}
.y7b{bottom:647.813250px;}
.y1b{bottom:648.535500px;}
.y4b{bottom:649.987500px;}
.y102{bottom:651.244500px;}
.y78{bottom:665.599500px;}
.yb1{bottom:666.994500px;}
.y4a{bottom:670.252500px;}
.y101{bottom:670.612500px;}
.y77{bottom:683.330625px;}
.y1a{bottom:683.968500px;}
.yb0{bottom:687.258000px;}
.y100{bottom:689.979000px;}
.y49{bottom:690.516000px;}
.y75{bottom:695.659500px;}
.yaf{bottom:707.523000px;}
.y74{bottom:707.988375px;}
.yff{bottom:709.347000px;}
.y48{bottom:710.781000px;}
.y19{bottom:711.091500px;}
.y76{bottom:720.317250px;}
.yae{bottom:727.786500px;}
.yfe{bottom:728.715000px;}
.y18{bottom:729.247500px;}
.y47{bottom:731.044500px;}
.y72{bottom:738.047250px;}
.y17{bottom:747.405000px;}
.yad{bottom:748.051500px;}
.yfd{bottom:748.081500px;}
.y70{bottom:750.376125px;}
.y46{bottom:751.308000px;}
.y16{bottom:752.287500px;}
.y73{bottom:756.540000px;}
.y6f{bottom:762.705000px;}
.yfc{bottom:767.449500px;}
.yac{bottom:768.315000px;}
.y15{bottom:770.445000px;}
.y45{bottom:771.573000px;}
.y71{bottom:775.033875px;}
.yd6{bottom:777.282000px;}
.yfb{bottom:786.816000px;}
.yab{bottom:788.578500px;}
.y14{bottom:788.601000px;}
.y44{bottom:791.836500px;}
.y6e{bottom:792.763875px;}
.y13{bottom:801.876000px;}
.y6d{bottom:805.092750px;}
.yfa{bottom:806.184000px;}
.yaa{bottom:808.843500px;}
.y43{bottom:812.101500px;}
.y6c{bottom:822.880125px;}
.y12{bottom:824.916000px;}
.yf9{bottom:825.552000px;}
.ya9{bottom:829.107000px;}
.y42{bottom:832.365000px;}
.y11{bottom:838.189500px;}
.y6b{bottom:840.610125px;}
.yf8{bottom:844.918500px;}
.y68{bottom:846.774000px;}
.ya8{bottom:849.372000px;}
.y41{bottom:852.628500px;}
.y6a{bottom:852.939000px;}
.y10{bottom:856.347000px;}
.y67{bottom:859.102875px;}
.yf{bottom:861.229500px;}
.yf7{bottom:864.286500px;}
.y69{bottom:865.267875px;}
.ya7{bottom:869.635500px;}
.y40{bottom:872.893500px;}
.ye{bottom:879.385500px;}
.yf6{bottom:883.653000px;}
.ya6{bottom:889.899000px;}
.y3f{bottom:893.157000px;}
.yd{bottom:897.543000px;}
.y66{bottom:898.644000px;}
.yf5{bottom:903.021000px;}
.yc{bottom:910.818000px;}
.y3e{bottom:913.422000px;}
.y65{bottom:917.877000px;}
.ya5{bottom:919.129500px;}
.yf4{bottom:922.389000px;}
.y3d{bottom:933.685500px;}
.yb{bottom:933.856500px;}
.y64{bottom:937.110000px;}
.yf3{bottom:941.755500px;}
.ya{bottom:952.014000px;}
.y3c{bottom:953.949000px;}
.yf2{bottom:961.123500px;}
.y3b{bottom:974.214000px;}
.y9{bottom:974.256000px;}
.yf1{bottom:980.490000px;}
.y3a{bottom:994.477500px;}
.y8{bottom:994.519500px;}
.yf0{bottom:999.858000px;}
.y39{bottom:1014.742500px;}
.yef{bottom:1019.226000px;}
.y38{bottom:1035.006000px;}
.yee{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y37{bottom:1055.269500px;}
.yed{bottom:1057.960500px;}
.y6{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.yec{bottom:1077.327000px;}
.y35{bottom:1095.798000px;}
.yeb{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y34{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h12{height:29.172182px;}
.h14{height:29.373926px;}
.h16{height:29.616019px;}
.h8{height:30.462432px;}
.h18{height:34.813397px;}
.hc{height:35.099880px;}
.hd{height:35.100320px;}
.h10{height:38.896243px;}
.h9{height:39.163488px;}
.h11{height:39.165235px;}
.h3{height:39.402747px;}
.h19{height:39.488026px;}
.h4{height:41.001535px;}
.hf{height:43.217759px;}
.ha{height:43.219494px;}
.he{height:43.516637px;}
.hb{height:43.518384px;}
.h5{height:43.877052px;}
.h2{height:50.931027px;}
.h15{height:54.033926px;}
.h7{height:54.543336px;}
.h6{height:77.793354px;}
.h13{height:78.487682px;}
.h17{height:78.689426px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:59.014354px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.306000px;}
.x5a{left:127.208625px;}
.x2f{left:129.442875px;}
.x59{left:130.733250px;}
.x37{left:138.455250px;}
.x47{left:142.359000px;}
.x4c{left:143.841750px;}
.x4{left:146.170500px;}
.x38{left:149.167500px;}
.x30{left:153.258000px;}
.x62{left:162.352500px;}
.x67{left:175.629000px;}
.x63{left:177.297000px;}
.x6{left:187.966500px;}
.x68{left:190.573500px;}
.x69{left:194.235000px;}
.x2e{left:202.281000px;}
.x90{left:207.076500px;}
.x2b{left:209.682000px;}
.x7c{left:221.803500px;}
.x32{left:226.140000px;}
.x31{left:229.211250px;}
.x7d{left:236.748000px;}
.x3a{left:243.792375px;}
.x39{left:250.903500px;}
.xa7{left:252.097500px;}
.xa9{left:254.101500px;}
.x15{left:261.985500px;}
.xa8{left:265.518000px;}
.x9e{left:267.931500px;}
.xb{left:277.701000px;}
.xc{left:285.172500px;}
.xd{left:288.946500px;}
.xe{left:296.418000px;}
.x91{left:300.402000px;}
.x7a{left:302.614500px;}
.x3c{left:304.128375px;}
.x92{left:307.873500px;}
.x3b{left:309.339375px;}
.x93{left:311.685000px;}
.x34{left:312.955125px;}
.x7b{left:317.409000px;}
.x7{left:320.263500px;}
.x33{left:323.455875px;}
.x94{left:326.628000px;}
.x8{left:327.736500px;}
.x9{left:335.356500px;}
.xa{left:342.829500px;}
.x23{left:347.140500px;}
.x24{left:362.085000px;}
.x25{left:365.775000px;}
.x4b{left:368.151000px;}
.x36{left:371.236875px;}
.x26{left:380.719500px;}
.x58{left:394.095750px;}
.x3d{left:395.921625px;}
.x3f{left:397.933125px;}
.x3e{left:401.222625px;}
.x57{left:403.179000px;}
.x40{left:405.902625px;}
.x85{left:414.249000px;}
.x87{left:417.732000px;}
.x86{left:421.720500px;}
.x88{left:425.203500px;}
.x89{left:428.865000px;}
.x8a{left:436.336500px;}
.xf{left:440.647500px;}
.x95{left:444.667500px;}
.x10{left:448.119000px;}
.x96{left:452.140500px;}
.x97{left:455.950500px;}
.x98{left:463.423500px;}
.x1f{left:467.550000px;}
.x51{left:473.158500px;}
.x41{left:475.669500px;}
.x50{left:478.998375px;}
.x52{left:481.066125px;}
.x20{left:482.494500px;}
.x6d{left:483.606000px;}
.x21{left:489.816000px;}
.x19{left:490.995000px;}
.x6e{left:498.549000px;}
.x6f{left:502.210500px;}
.x22{left:504.760500px;}
.x1a{left:505.939500px;}
.x71{left:508.990500px;}
.x7e{left:510.664500px;}
.x70{left:517.155000px;}
.x8b{left:519.754500px;}
.x7f{left:525.609000px;}
.x8c{left:527.226000px;}
.x53{left:548.812500px;}
.x6a{left:555.919500px;}
.x73{left:560.745000px;}
.x54{left:564.785250px;}
.x48{left:566.333250px;}
.x74{left:568.143000px;}
.x42{left:569.692500px;}
.x6b{left:570.864000px;}
.x35{left:573.828000px;}
.x5b{left:576.395250px;}
.x75{left:579.127500px;}
.x99{left:580.608000px;}
.x76{left:582.717000px;}
.x11{left:584.589000px;}
.x6c{left:585.871500px;}
.x16{left:588.183000px;}
.x12{left:592.062000px;}
.x27{left:594.840000px;}
.x77{left:597.511500px;}
.x9a{left:599.247000px;}
.x78{left:601.099500px;}
.x17{left:603.126000px;}
.x28{left:606.010500px;}
.x9b{left:614.191500px;}
.x79{left:615.894000px;}
.x9c{left:617.886000px;}
.x29{left:620.955000px;}
.xa1{left:621.996000px;}
.x1b{left:627.823500px;}
.x9d{left:632.830500px;}
.x2a{left:634.801500px;}
.x5e{left:636.900000px;}
.x1c{left:642.766500px;}
.x1d{left:646.525500px;}
.x5f{left:651.844500px;}
.x64{left:654.232500px;}
.x60{left:655.654500px;}
.x18{left:659.355000px;}
.x8d{left:660.378000px;}
.x1e{left:661.470000px;}
.x43{left:662.742375px;}
.x49{left:663.987750px;}
.x45{left:666.277125px;}
.x4e{left:667.286250px;}
.x4d{left:668.935500px;}
.x61{left:670.599000px;}
.x13{left:673.477500px;}
.x44{left:674.746125px;}
.x55{left:676.198500px;}
.x2c{left:677.731500px;}
.x14{left:680.949000px;}
.x82{left:683.511000px;}
.x46{left:685.050000px;}
.x83{left:687.198000px;}
.x56{left:688.363125px;}
.x4f{left:690.960750px;}
.x5c{left:692.637000px;}
.x84{left:694.669500px;}
.x4a{left:697.320375px;}
.xa0{left:700.465500px;}
.x9f{left:702.972000px;}
.x8e{left:704.595000px;}
.x5d{left:711.391500px;}
.xa4{left:723.223500px;}
.xa5{left:728.784000px;}
.x65{left:731.404500px;}
.x66{left:746.349000px;}
.xa2{left:749.593500px;}
.xa6{left:754.876500px;}
.x8f{left:756.895500px;}
.x80{left:758.091000px;}
.x72{left:764.437500px;}
.x2d{left:771.847500px;}
.x81{left:773.034000px;}
.xa3{left:776.493000px;}
@media print{
.v3{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.712000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.920000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000378pt;}
.ls11{letter-spacing:0.001026pt;}
.ls0{letter-spacing:0.002283pt;}
.lsf{letter-spacing:0.004267pt;}
.ls9{letter-spacing:1.828563pt;}
.ls1{letter-spacing:2.656000pt;}
.lsa{letter-spacing:9.896563pt;}
.ls8{letter-spacing:10.626533pt;}
.ls6{letter-spacing:10.626667pt;}
.ls17{letter-spacing:11.820155pt;}
.lsc{letter-spacing:11.859558pt;}
.lsd{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.959467pt;}
.ls10{letter-spacing:11.959637pt;}
.ls13{letter-spacing:11.993776pt;}
.ls15{letter-spacing:12.006705pt;}
.ls12{letter-spacing:13.901009pt;}
.ls14{letter-spacing:13.927153pt;}
.ls2{letter-spacing:15.941333pt;}
.ls16{letter-spacing:16.541532pt;}
.ls4{letter-spacing:62.432000pt;}
.ls3{letter-spacing:62.437333pt;}
.ls5{letter-spacing:64.315179pt;}
.ws69{word-spacing:-13.283467pt;}
.ws81{word-spacing:-11.955200pt;}
.ws23{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.096000pt;}
.ws48{word-spacing:-8.966400pt;}
.ws33{word-spacing:-2.816095pt;}
.wsc{word-spacing:-2.550794pt;}
.ws91{word-spacing:-2.534502pt;}
.ws68{word-spacing:-2.178489pt;}
.wse{word-spacing:-2.072357pt;}
.ws49{word-spacing:-2.008474pt;}
.ws60{word-spacing:-1.487748pt;}
.wsb6{word-spacing:-1.386803pt;}
.ws8c{word-spacing:-1.338982pt;}
.ws59{word-spacing:-1.328347pt;}
.wsa0{word-spacing:-1.291162pt;}
.ws41{word-spacing:-1.275213pt;}
.ws58{word-spacing:-1.222079pt;}
.wsa7{word-spacing:-1.195520pt;}
.wsa2{word-spacing:-0.956416pt;}
.ws88{word-spacing:-0.908595pt;}
.ws2a{word-spacing:-0.903276pt;}
.wsa9{word-spacing:-0.765133pt;}
.ws26{word-spacing:-0.743874pt;}
.wsa8{word-spacing:-0.717312pt;}
.ws32{word-spacing:-0.637606pt;}
.ws6a{word-spacing:-0.584473pt;}
.ws3b{word-spacing:-0.425071pt;}
.ws5a{word-spacing:-0.318803pt;}
.ws1c{word-spacing:-0.318657pt;}
.ws3e{word-spacing:-0.265669pt;}
.ws8e{word-spacing:-0.239104pt;}
.ws12{word-spacing:-0.212544pt;}
.ws56{word-spacing:-0.212535pt;}
.ws93{word-spacing:-0.191283pt;}
.ws1d{word-spacing:-0.159727pt;}
.ws25{word-spacing:-0.159402pt;}
.ws14{word-spacing:-0.159195pt;}
.ws95{word-spacing:-0.143462pt;}
.ws1e{word-spacing:-0.106431pt;}
.ws31{word-spacing:-0.106268pt;}
.ws7a{word-spacing:-0.095642pt;}
.ws34{word-spacing:-0.053134pt;}
.wsf{word-spacing:-0.053083pt;}
.ws7d{word-spacing:-0.047821pt;}
.ws9{word-spacing:-0.022304pt;}
.ws1{word-spacing:-0.020005pt;}
.ws7{word-spacing:-0.017525pt;}
.ws8{word-spacing:-0.014554pt;}
.ws4{word-spacing:-0.012677pt;}
.ws6{word-spacing:-0.011995pt;}
.wsb1{word-spacing:-0.007356pt;}
.wsa4{word-spacing:-0.006912pt;}
.ws90{word-spacing:-0.004847pt;}
.ws94{word-spacing:-0.003081pt;}
.wsab{word-spacing:-0.002159pt;}
.wsbc{word-spacing:-0.002048pt;}
.ws21{word-spacing:-0.000128pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:0.000266pt;}
.ws8f{word-spacing:0.047821pt;}
.wsa{word-spacing:0.048010pt;}
.ws10{word-spacing:0.053083pt;}
.ws24{word-spacing:0.053134pt;}
.ws4b{word-spacing:0.071731pt;}
.ws7f{word-spacing:0.095642pt;}
.ws2b{word-spacing:0.106268pt;}
.ws4a{word-spacing:0.107597pt;}
.wsac{word-spacing:0.143462pt;}
.ws13{word-spacing:0.159195pt;}
.ws35{word-spacing:0.159402pt;}
.ws4d{word-spacing:0.170029pt;}
.ws7e{word-spacing:0.191283pt;}
.wsb{word-spacing:0.191466pt;}
.ws36{word-spacing:0.212535pt;}
.wsd{word-spacing:0.212544pt;}
.wsad{word-spacing:0.239104pt;}
.ws30{word-spacing:0.265669pt;}
.wsb2{word-spacing:0.286925pt;}
.ws37{word-spacing:0.318803pt;}
.ws1f{word-spacing:0.372005pt;}
.ws55{word-spacing:0.425071pt;}
.ws9d{word-spacing:0.430387pt;}
.ws5c{word-spacing:0.478205pt;}
.ws57{word-spacing:0.584473pt;}
.ws5e{word-spacing:0.637606pt;}
.ws73{word-spacing:0.743874pt;}
.wsb0{word-spacing:0.765133pt;}
.ws40{word-spacing:0.797008pt;}
.ws4f{word-spacing:0.850142pt;}
.ws51{word-spacing:0.903276pt;}
.ws3f{word-spacing:0.956410pt;}
.wsae{word-spacing:0.956416pt;}
.wsb7{word-spacing:1.004237pt;}
.ws74{word-spacing:1.168945pt;}
.ws27{word-spacing:1.222079pt;}
.ws17{word-spacing:1.222181pt;}
.wsa1{word-spacing:1.291162pt;}
.wsbd{word-spacing:1.434624pt;}
.ws39{word-spacing:1.487748pt;}
.ws98{word-spacing:1.530266pt;}
.ws9b{word-spacing:1.578086pt;}
.ws65{word-spacing:1.594016pt;}
.ws5f{word-spacing:1.647150pt;}
.ws6f{word-spacing:1.700284pt;}
.ws6e{word-spacing:1.753418pt;}
.ws8b{word-spacing:1.769370pt;}
.ws77{word-spacing:1.912819pt;}
.ws9a{word-spacing:1.960653pt;}
.ws78{word-spacing:2.019087pt;}
.wsbe{word-spacing:2.056294pt;}
.ws53{word-spacing:2.072221pt;}
.ws92{word-spacing:2.247578pt;}
.ws64{word-spacing:2.284756pt;}
.ws6b{word-spacing:2.337890pt;}
.ws20{word-spacing:2.550230pt;}
.ws4e{word-spacing:2.550426pt;}
.ws22{word-spacing:2.550432pt;}
.wsaa{word-spacing:2.677965pt;}
.ws18{word-spacing:2.763019pt;}
.wsba{word-spacing:2.862097pt;}
.ws9e{word-spacing:2.863249pt;}
.wsb8{word-spacing:2.864981pt;}
.ws86{word-spacing:2.865391pt;}
.ws83{word-spacing:2.869248pt;}
.ws8a{word-spacing:2.869333pt;}
.wsa3{word-spacing:2.872491pt;}
.ws96{word-spacing:2.917069pt;}
.ws76{word-spacing:2.922363pt;}
.ws9c{word-spacing:2.964890pt;}
.ws15{word-spacing:2.975297pt;}
.wsbb{word-spacing:3.108352pt;}
.ws79{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.174288pt;}
.ws1b{word-spacing:3.184000pt;}
.ws3d{word-spacing:3.188032pt;}
.ws38{word-spacing:3.241166pt;}
.ws52{word-spacing:3.453701pt;}
.wsa6{word-spacing:3.490918pt;}
.ws6c{word-spacing:3.506835pt;}
.ws85{word-spacing:3.586560pt;}
.ws3a{word-spacing:3.666237pt;}
.ws16{word-spacing:3.719361pt;}
.ws89{word-spacing:3.825664pt;}
.ws97{word-spacing:3.873485pt;}
.ws45{word-spacing:3.921306pt;}
.ws2e{word-spacing:3.985040pt;}
.ws2f{word-spacing:4.038174pt;}
.ws2c{word-spacing:4.144442pt;}
.ws29{word-spacing:4.197575pt;}
.ws84{word-spacing:4.208230pt;}
.ws28{word-spacing:4.250709pt;}
.ws44{word-spacing:4.256051pt;}
.ws42{word-spacing:4.463245pt;}
.ws63{word-spacing:4.569513pt;}
.wsb4{word-spacing:4.590797pt;}
.ws62{word-spacing:4.728914pt;}
.ws11{word-spacing:4.782346pt;}
.ws5d{word-spacing:4.835182pt;}
.ws61{word-spacing:4.941450pt;}
.ws3c{word-spacing:5.207119pt;}
.ws43{word-spacing:5.260253pt;}
.ws6d{word-spacing:5.313387pt;}
.ws54{word-spacing:5.897859pt;}
.wsaf{word-spacing:6.216704pt;}
.ws46{word-spacing:6.647091pt;}
.ws71{word-spacing:6.907403pt;}
.ws72{word-spacing:6.960537pt;}
.ws2d{word-spacing:7.013670pt;}
.ws99{word-spacing:7.794790pt;}
.ws9f{word-spacing:7.842611pt;}
.ws67{word-spacing:8.182615pt;}
.wsb3{word-spacing:8.416461pt;}
.ws5b{word-spacing:8.448285pt;}
.wsb9{word-spacing:8.846848pt;}
.wsa5{word-spacing:9.564160pt;}
.ws50{word-spacing:10.467372pt;}
.ws82{word-spacing:10.520576pt;}
.ws2{word-spacing:10.776744pt;}
.ws70{word-spacing:11.104978pt;}
.ws66{word-spacing:11.476915pt;}
.ws8d{word-spacing:12.481229pt;}
.ws75{word-spacing:12.858396pt;}
.ws7c{word-spacing:13.724570pt;}
.ws3{word-spacing:14.014075pt;}
.ws7b{word-spacing:14.250598pt;}
.ws80{word-spacing:17.502413pt;}
.wsb5{word-spacing:18.841395pt;}
.ws87{word-spacing:24.149504pt;}
.ws47{word-spacing:69.364070pt;}
.ws4c{word-spacing:95.668237pt;}
._2c{margin-left:-6.870311pt;}
._2{margin-left:-5.897830pt;}
._4{margin-left:-4.400701pt;}
._6{margin-left:-3.443282pt;}
._23{margin-left:-1.972608pt;}
._1{margin-left:-0.945061pt;}
._25{width:1.327027pt;}
._3{width:2.684963pt;}
._5{width:3.577112pt;}
._0{width:9.035859pt;}
._e{width:10.627092pt;}
._33{width:11.669463pt;}
._32{width:12.912803pt;}
._7{width:13.963003pt;}
._9{width:15.684570pt;}
._a{width:16.687042pt;}
._13{width:18.638639pt;}
._d{width:20.510709pt;}
._f{width:22.083532pt;}
._2f{width:23.285506pt;}
._14{width:24.747997pt;}
._b{width:25.983451pt;}
._30{width:27.004370pt;}
._c{width:28.003256pt;}
._12{width:29.648698pt;}
._31{width:30.748959pt;}
._15{width:32.506578pt;}
._2a{width:34.537013pt;}
._2d{width:37.725045pt;}
._2b{width:42.054603pt;}
._34{width:44.140973pt;}
._2e{width:49.973923pt;}
._35{width:54.993920pt;}
._8{width:56.760757pt;}
._16{width:92.939923pt;}
._29{width:98.347482pt;}
._26{width:105.911117pt;}
._17{width:113.787920pt;}
._20{width:127.143552pt;}
._21{width:132.232173pt;}
._24{width:139.728371pt;}
._1a{width:145.040486pt;}
._1d{width:149.847002pt;}
._1b{width:150.814848pt;}
._1f{width:157.019597pt;}
._22{width:174.952397pt;}
._19{width:186.429389pt;}
._28{width:188.146253pt;}
._1e{width:196.526246pt;}
._27{width:200.632166pt;}
._18{width:207.986246pt;}
._1c{width:245.535898pt;}
._10{width:368.630015pt;}
._11{width:1404.560248pt;}
.fs5{font-size:26.565333pt;}
.fsc{font-size:35.865600pt;}
.fs6{font-size:37.194667pt;}
.fs4{font-size:40.384000pt;}
.fs8{font-size:42.506667pt;}
.fs9{font-size:42.507200pt;}
.fs7{font-size:47.818667pt;}
.fsb{font-size:47.820800pt;}
.fs0{font-size:50.395200pt;}
.fsa{font-size:53.133867pt;}
.fs2{font-size:53.136000pt;}
.fs1{font-size:53.754880pt;}
.fs3{font-size:95.642667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:5.645102pt;}
.y3{bottom:18.051561pt;}
.y2{bottom:32.990378pt;}
.y32{bottom:56.693333pt;}
.y11e{bottom:96.850667pt;}
.y63{bottom:103.650667pt;}
.y31{bottom:106.384000pt;}
.yd5{bottom:109.441333pt;}
.yea{bottom:112.444000pt;}
.y11d{bottom:114.066667pt;}
.ya4{bottom:120.394667pt;}
.y62{bottom:121.662667pt;}
.y30{bottom:124.396000pt;}
.yc0{bottom:124.558667pt;}
.yd4{bottom:127.454667pt;}
.ye9{bottom:129.660000pt;}
.y11c{bottom:131.281333pt;}
.ya3{bottom:138.408000pt;}
.y61{bottom:139.674667pt;}
.y2f{bottom:142.409333pt;}
.ybf{bottom:142.570667pt;}
.yd3{bottom:145.466667pt;}
.ye8{bottom:146.876000pt;}
.y11b{bottom:148.497333pt;}
.y121{bottom:153.638667pt;}
.ya2{bottom:156.420000pt;}
.y60{bottom:157.688000pt;}
.y2e{bottom:160.421333pt;}
.ybe{bottom:160.584000pt;}
.yd2{bottom:163.478667pt;}
.ye7{bottom:164.090667pt;}
.y11a{bottom:165.713333pt;}
.y120{bottom:170.854667pt;}
.ya1{bottom:174.433333pt;}
.y5f{bottom:175.700000pt;}
.y2d{bottom:178.434667pt;}
.ybd{bottom:178.596000pt;}
.ye6{bottom:181.306667pt;}
.yd1{bottom:181.492000pt;}
.y119{bottom:182.928000pt;}
.y11f{bottom:188.069333pt;}
.ya0{bottom:192.445333pt;}
.y5e{bottom:193.713333pt;}
.y2c{bottom:196.446667pt;}
.ybc{bottom:196.608000pt;}
.ye5{bottom:198.521333pt;}
.yd0{bottom:199.504000pt;}
.y118{bottom:200.144000pt;}
.y9f{bottom:210.457333pt;}
.ybb{bottom:214.621333pt;}
.ye4{bottom:215.737333pt;}
.y117{bottom:217.358667pt;}
.ycf{bottom:217.517333pt;}
.y5d{bottom:219.696000pt;}
.y2b{bottom:222.429333pt;}
.y9e{bottom:228.470667pt;}
.yba{bottom:232.633333pt;}
.ye3{bottom:232.953333pt;}
.y116{bottom:234.574667pt;}
.yce{bottom:235.529333pt;}
.ye2{bottom:250.168000pt;}
.y5c{bottom:250.646667pt;}
.y115{bottom:251.790667pt;}
.ycd{bottom:253.541333pt;}
.y9d{bottom:258.837333pt;}
.ye1{bottom:267.384000pt;}
.y5b{bottom:268.658667pt;}
.y114{bottom:269.005333pt;}
.y9c{bottom:271.456000pt;}
.ycc{bottom:271.554667pt;}
.ye0{bottom:284.598667pt;}
.y113{bottom:286.221333pt;}
.y5a{bottom:286.670667pt;}
.y9b{bottom:288.813000pt;}
.ycb{bottom:289.566667pt;}
.y2a{bottom:290.348000pt;}
.y98{bottom:294.292000pt;}
.y9a{bottom:299.771000pt;}
.y112{bottom:303.437333pt;}
.y59{bottom:304.684000pt;}
.y97{bottom:305.251000pt;}
.yca{bottom:307.580000pt;}
.ydf{bottom:309.785333pt;}
.y99{bottom:310.730000pt;}
.y111{bottom:320.652000pt;}
.y58{bottom:322.696000pt;}
.y29{bottom:324.300000pt;}
.yc9{bottom:325.592000pt;}
.y96{bottom:326.491000pt;}
.y95{bottom:337.450000pt;}
.y110{bottom:337.868000pt;}
.y57{bottom:340.709333pt;}
.y28{bottom:342.313333pt;}
.y91{bottom:342.929000pt;}
.yc8{bottom:343.604000pt;}
.yde{bottom:344.853333pt;}
.y94{bottom:348.409000pt;}
.y90{bottom:353.888000pt;}
.y10f{bottom:355.082667pt;}
.y56{bottom:358.721333pt;}
.y93{bottom:359.368000pt;}
.y27{bottom:360.325333pt;}
.yc7{bottom:361.617333pt;}
.ydd{bottom:366.333333pt;}
.y92{bottom:370.326000pt;}
.y10e{bottom:372.298667pt;}
.y55{bottom:376.733333pt;}
.y26{bottom:378.338667pt;}
.yc6{bottom:379.629333pt;}
.ydc{bottom:379.842667pt;}
.y8f{bottom:386.087000pt;}
.y10d{bottom:389.514667pt;}
.ydb{bottom:393.352000pt;}
.y54{bottom:394.746667pt;}
.y25{bottom:396.350667pt;}
.y8b{bottom:397.046000pt;}
.yc5{bottom:397.642667pt;}
.y8d{bottom:402.525000pt;}
.y10c{bottom:406.729333pt;}
.yda{bottom:406.861333pt;}
.y8a{bottom:408.005000pt;}
.y53{bottom:412.758667pt;}
.y8c{bottom:413.484000pt;}
.y24{bottom:414.362667pt;}
.yc4{bottom:415.654667pt;}
.y89{bottom:418.964000pt;}
.yd9{bottom:420.370667pt;}
.y10b{bottom:423.945333pt;}
.y8e{bottom:429.923000pt;}
.y52{bottom:430.772000pt;}
.y23{bottom:432.376000pt;}
.yc3{bottom:433.666667pt;}
.y10a{bottom:441.160000pt;}
.yd8{bottom:441.849333pt;}
.y88{bottom:445.683000pt;}
.yb9{bottom:448.784000pt;}
.y22{bottom:450.388000pt;}
.y85{bottom:451.162000pt;}
.yc2{bottom:451.680000pt;}
.yd7{bottom:455.358667pt;}
.y87{bottom:456.642000pt;}
.y51{bottom:456.753333pt;}
.y109{bottom:458.376000pt;}
.y84{bottom:462.121000pt;}
.yb8{bottom:466.796000pt;}
.y86{bottom:467.601000pt;}
.y21{bottom:468.401333pt;}
.yc1{bottom:469.692000pt;}
.y108{bottom:475.592000pt;}
.y83{bottom:483.361000pt;}
.yb7{bottom:484.809333pt;}
.y20{bottom:486.413333pt;}
.y50{bottom:487.704000pt;}
.y107{bottom:492.806667pt;}
.y81{bottom:494.320000pt;}
.y7e{bottom:499.800000pt;}
.yb6{bottom:502.821333pt;}
.y1f{bottom:504.425333pt;}
.y80{bottom:505.279000pt;}
.y4f{bottom:505.717333pt;}
.y106{bottom:510.022667pt;}
.y7d{bottom:510.759000pt;}
.y7f{bottom:516.238000pt;}
.yb5{bottom:520.834667pt;}
.y1e{bottom:522.438667pt;}
.y4e{bottom:523.729333pt;}
.y82{bottom:527.197000pt;}
.y105{bottom:527.237333pt;}
.yb4{bottom:538.846667pt;}
.y1d{bottom:540.450667pt;}
.y4d{bottom:541.742667pt;}
.y7c{bottom:542.957000pt;}
.y104{bottom:544.453333pt;}
.y7a{bottom:553.916000pt;}
.yb3{bottom:556.858667pt;}
.y1c{bottom:558.464000pt;}
.y4c{bottom:559.754667pt;}
.y103{bottom:561.669333pt;}
.y79{bottom:564.875000pt;}
.yb2{bottom:574.872000pt;}
.y7b{bottom:575.834000pt;}
.y1b{bottom:576.476000pt;}
.y4b{bottom:577.766667pt;}
.y102{bottom:578.884000pt;}
.y78{bottom:591.644000pt;}
.yb1{bottom:592.884000pt;}
.y4a{bottom:595.780000pt;}
.y101{bottom:596.100000pt;}
.y77{bottom:607.405000pt;}
.y1a{bottom:607.972000pt;}
.yb0{bottom:610.896000pt;}
.y100{bottom:613.314667pt;}
.y49{bottom:613.792000pt;}
.y75{bottom:618.364000pt;}
.yaf{bottom:628.909333pt;}
.y74{bottom:629.323000pt;}
.yff{bottom:630.530667pt;}
.y48{bottom:631.805333pt;}
.y19{bottom:632.081333pt;}
.y76{bottom:640.282000pt;}
.yae{bottom:646.921333pt;}
.yfe{bottom:647.746667pt;}
.y18{bottom:648.220000pt;}
.y47{bottom:649.817333pt;}
.y72{bottom:656.042000pt;}
.y17{bottom:664.360000pt;}
.yad{bottom:664.934667pt;}
.yfd{bottom:664.961333pt;}
.y70{bottom:667.001000pt;}
.y46{bottom:667.829333pt;}
.y16{bottom:668.700000pt;}
.y73{bottom:672.480000pt;}
.y6f{bottom:677.960000pt;}
.yfc{bottom:682.177333pt;}
.yac{bottom:682.946667pt;}
.y15{bottom:684.840000pt;}
.y45{bottom:685.842667pt;}
.y71{bottom:688.919000pt;}
.yd6{bottom:690.917333pt;}
.yfb{bottom:699.392000pt;}
.yab{bottom:700.958667pt;}
.y14{bottom:700.978667pt;}
.y44{bottom:703.854667pt;}
.y6e{bottom:704.679000pt;}
.y13{bottom:712.778667pt;}
.y6d{bottom:715.638000pt;}
.yfa{bottom:716.608000pt;}
.yaa{bottom:718.972000pt;}
.y43{bottom:721.868000pt;}
.y6c{bottom:731.449000pt;}
.y12{bottom:733.258667pt;}
.yf9{bottom:733.824000pt;}
.ya9{bottom:736.984000pt;}
.y42{bottom:739.880000pt;}
.y11{bottom:745.057333pt;}
.y6b{bottom:747.209000pt;}
.yf8{bottom:751.038667pt;}
.y68{bottom:752.688000pt;}
.ya8{bottom:754.997333pt;}
.y41{bottom:757.892000pt;}
.y6a{bottom:758.168000pt;}
.y10{bottom:761.197333pt;}
.y67{bottom:763.647000pt;}
.yf{bottom:765.537333pt;}
.yf7{bottom:768.254667pt;}
.y69{bottom:769.127000pt;}
.ya7{bottom:773.009333pt;}
.y40{bottom:775.905333pt;}
.ye{bottom:781.676000pt;}
.yf6{bottom:785.469333pt;}
.ya6{bottom:791.021333pt;}
.y3f{bottom:793.917333pt;}
.yd{bottom:797.816000pt;}
.y66{bottom:798.794667pt;}
.yf5{bottom:802.685333pt;}
.yc{bottom:809.616000pt;}
.y3e{bottom:811.930667pt;}
.y65{bottom:815.890667pt;}
.ya5{bottom:817.004000pt;}
.yf4{bottom:819.901333pt;}
.y3d{bottom:829.942667pt;}
.yb{bottom:830.094667pt;}
.y64{bottom:832.986667pt;}
.yf3{bottom:837.116000pt;}
.ya{bottom:846.234667pt;}
.y3c{bottom:847.954667pt;}
.yf2{bottom:854.332000pt;}
.y3b{bottom:865.968000pt;}
.y9{bottom:866.005333pt;}
.yf1{bottom:871.546667pt;}
.y3a{bottom:883.980000pt;}
.y8{bottom:884.017333pt;}
.yf0{bottom:888.762667pt;}
.y39{bottom:901.993333pt;}
.yef{bottom:905.978667pt;}
.y38{bottom:920.005333pt;}
.yee{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y37{bottom:938.017333pt;}
.yed{bottom:940.409333pt;}
.y6{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.yec{bottom:957.624000pt;}
.y35{bottom:974.042667pt;}
.yeb{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y34{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h12{height:25.930829pt;}
.h14{height:26.110157pt;}
.h16{height:26.325350pt;}
.h8{height:27.077717pt;}
.h18{height:30.945242pt;}
.hc{height:31.199893pt;}
.hd{height:31.200285pt;}
.h10{height:34.574438pt;}
.h9{height:34.811989pt;}
.h11{height:34.813542pt;}
.h3{height:35.024664pt;}
.h19{height:35.100467pt;}
.h4{height:36.445809pt;}
.hf{height:38.415786pt;}
.ha{height:38.417328pt;}
.he{height:38.681455pt;}
.hb{height:38.683008pt;}
.h5{height:39.001824pt;}
.h2{height:45.272024pt;}
.h15{height:48.030157pt;}
.h7{height:48.482965pt;}
.h6{height:69.149648pt;}
.h13{height:69.766829pt;}
.h17{height:69.946157pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:52.457204pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.605333pt;}
.x5a{left:113.074333pt;}
.x2f{left:115.060333pt;}
.x59{left:116.207333pt;}
.x37{left:123.071333pt;}
.x47{left:126.541333pt;}
.x4c{left:127.859333pt;}
.x4{left:129.929333pt;}
.x38{left:132.593333pt;}
.x30{left:136.229333pt;}
.x62{left:144.313333pt;}
.x67{left:156.114667pt;}
.x63{left:157.597333pt;}
.x6{left:167.081333pt;}
.x68{left:169.398667pt;}
.x69{left:172.653333pt;}
.x2e{left:179.805333pt;}
.x90{left:184.068000pt;}
.x2b{left:186.384000pt;}
.x7c{left:197.158667pt;}
.x32{left:201.013333pt;}
.x31{left:203.743333pt;}
.x7d{left:210.442667pt;}
.x3a{left:216.704333pt;}
.x39{left:223.025333pt;}
.xa7{left:224.086667pt;}
.xa9{left:225.868000pt;}
.x15{left:232.876000pt;}
.xa8{left:236.016000pt;}
.x9e{left:238.161333pt;}
.xb{left:246.845333pt;}
.xc{left:253.486667pt;}
.xd{left:256.841333pt;}
.xe{left:263.482667pt;}
.x91{left:267.024000pt;}
.x7a{left:268.990667pt;}
.x3c{left:270.336333pt;}
.x92{left:273.665333pt;}
.x3b{left:274.968333pt;}
.x93{left:277.053333pt;}
.x34{left:278.182333pt;}
.x7b{left:282.141333pt;}
.x7{left:284.678667pt;}
.x33{left:287.516333pt;}
.x94{left:290.336000pt;}
.x8{left:291.321333pt;}
.x9{left:298.094667pt;}
.xa{left:304.737333pt;}
.x23{left:308.569333pt;}
.x24{left:321.853333pt;}
.x25{left:325.133333pt;}
.x4b{left:327.245333pt;}
.x36{left:329.988333pt;}
.x26{left:338.417333pt;}
.x58{left:350.307333pt;}
.x3d{left:351.930333pt;}
.x3f{left:353.718333pt;}
.x3e{left:356.642333pt;}
.x57{left:358.381333pt;}
.x40{left:360.802333pt;}
.x85{left:368.221333pt;}
.x87{left:371.317333pt;}
.x86{left:374.862667pt;}
.x88{left:377.958667pt;}
.x89{left:381.213333pt;}
.x8a{left:387.854667pt;}
.xf{left:391.686667pt;}
.x95{left:395.260000pt;}
.x10{left:398.328000pt;}
.x96{left:401.902667pt;}
.x97{left:405.289333pt;}
.x98{left:411.932000pt;}
.x1f{left:415.600000pt;}
.x51{left:420.585333pt;}
.x41{left:422.817333pt;}
.x50{left:425.776333pt;}
.x52{left:427.614333pt;}
.x20{left:428.884000pt;}
.x6d{left:429.872000pt;}
.x21{left:435.392000pt;}
.x19{left:436.440000pt;}
.x6e{left:443.154667pt;}
.x6f{left:446.409333pt;}
.x22{left:448.676000pt;}
.x1a{left:449.724000pt;}
.x71{left:452.436000pt;}
.x7e{left:453.924000pt;}
.x70{left:459.693333pt;}
.x8b{left:462.004000pt;}
.x7f{left:467.208000pt;}
.x8c{left:468.645333pt;}
.x53{left:487.833333pt;}
.x6a{left:494.150667pt;}
.x73{left:498.440000pt;}
.x54{left:502.031333pt;}
.x48{left:503.407333pt;}
.x74{left:505.016000pt;}
.x42{left:506.393333pt;}
.x6b{left:507.434667pt;}
.x35{left:510.069333pt;}
.x5b{left:512.351333pt;}
.x75{left:514.780000pt;}
.x99{left:516.096000pt;}
.x76{left:517.970667pt;}
.x11{left:519.634667pt;}
.x6c{left:520.774667pt;}
.x16{left:522.829333pt;}
.x12{left:526.277333pt;}
.x27{left:528.746667pt;}
.x77{left:531.121333pt;}
.x9a{left:532.664000pt;}
.x78{left:534.310667pt;}
.x17{left:536.112000pt;}
.x28{left:538.676000pt;}
.x9b{left:545.948000pt;}
.x79{left:547.461333pt;}
.x9c{left:549.232000pt;}
.x29{left:551.960000pt;}
.xa1{left:552.885333pt;}
.x1b{left:558.065333pt;}
.x9d{left:562.516000pt;}
.x2a{left:564.268000pt;}
.x5e{left:566.133333pt;}
.x1c{left:571.348000pt;}
.x1d{left:574.689333pt;}
.x5f{left:579.417333pt;}
.x64{left:581.540000pt;}
.x60{left:582.804000pt;}
.x18{left:586.093333pt;}
.x8d{left:587.002667pt;}
.x1e{left:587.973333pt;}
.x43{left:589.104333pt;}
.x49{left:590.211333pt;}
.x45{left:592.246333pt;}
.x4e{left:593.143333pt;}
.x4d{left:594.609333pt;}
.x61{left:596.088000pt;}
.x13{left:598.646667pt;}
.x44{left:599.774333pt;}
.x55{left:601.065333pt;}
.x2c{left:602.428000pt;}
.x14{left:605.288000pt;}
.x82{left:607.565333pt;}
.x46{left:608.933333pt;}
.x83{left:610.842667pt;}
.x56{left:611.878333pt;}
.x4f{left:614.187333pt;}
.x5c{left:615.677333pt;}
.x84{left:617.484000pt;}
.x4a{left:619.840333pt;}
.xa0{left:622.636000pt;}
.x9f{left:624.864000pt;}
.x8e{left:626.306667pt;}
.x5d{left:632.348000pt;}
.xa4{left:642.865333pt;}
.xa5{left:647.808000pt;}
.x65{left:650.137333pt;}
.x66{left:663.421333pt;}
.xa2{left:666.305333pt;}
.xa6{left:671.001333pt;}
.x8f{left:672.796000pt;}
.x80{left:673.858667pt;}
.x72{left:679.500000pt;}
.x2d{left:686.086667pt;}
.x81{left:687.141333pt;}
.xa3{left:690.216000pt;}
}




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