
    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_9e6acf60cb82dee7c559290a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_046d1bfc621e2c9736b14e95.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_37eb90bf373698442704d43b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7a82120ee33703b434fd1a95.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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_e875cb4ce8e7b3f7f7805347.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{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);}
.m22{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);}
.m1a{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);}
.m26{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);}
.m27{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);}
.m19{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);}
.m1c{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);}
.m1f{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.md{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);}
.m16{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m1{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);}
.ma{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);}
.m18{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m28{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);}
.m8{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);}
.m6{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);}
.m3{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);}
.m10{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);}
.m13{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);}
.m7{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);}
.m15{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1b{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);}
.m9{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);}
.m23{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);}
.m5{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);}
.m12{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);}
.m17{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:35.862000px;}
.lsb{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000306px;}
.ls4e{letter-spacing:0.000406px;}
.ls2e{letter-spacing:0.000435px;}
.ls1{letter-spacing:0.000600px;}
.ls4c{letter-spacing:0.000800px;}
.ls48{letter-spacing:0.001102px;}
.ls32{letter-spacing:0.001996px;}
.ls2d{letter-spacing:0.003439px;}
.ls3e{letter-spacing:0.004026px;}
.ls42{letter-spacing:0.004800px;}
.ls4f{letter-spacing:0.106800px;}
.ls2c{letter-spacing:0.428467px;}
.ls30{letter-spacing:0.430983px;}
.ls31{letter-spacing:0.628143px;}
.ls2f{letter-spacing:0.647475px;}
.ls2b{letter-spacing:0.655531px;}
.ls2a{letter-spacing:0.717483px;}
.ls0{letter-spacing:10.461300px;}
.lsa{letter-spacing:11.954850px;}
.ls4a{letter-spacing:12.527951px;}
.ls4{letter-spacing:13.031081px;}
.ls3{letter-spacing:13.090856px;}
.ls43{letter-spacing:13.097339px;}
.ls4d{letter-spacing:13.249219px;}
.ls40{letter-spacing:13.256631px;}
.ls39{letter-spacing:13.362809px;}
.ls37{letter-spacing:13.448400px;}
.ls38{letter-spacing:13.454400px;}
.ls3c{letter-spacing:13.464686px;}
.ls3b{letter-spacing:13.469642px;}
.ls3d{letter-spacing:13.477819px;}
.ls47{letter-spacing:13.505083px;}
.ls46{letter-spacing:13.544327px;}
.ls44{letter-spacing:13.623720px;}
.ls45{letter-spacing:13.638635px;}
.ls3f{letter-spacing:13.660604px;}
.ls36{letter-spacing:13.808164px;}
.ls1d{letter-spacing:13.927715px;}
.ls41{letter-spacing:14.026871px;}
.ls5{letter-spacing:14.525471px;}
.ls1e{letter-spacing:14.645022px;}
.ls6{letter-spacing:14.704798px;}
.ls12{letter-spacing:14.764573px;}
.ls11{letter-spacing:14.824349px;}
.ls29{letter-spacing:14.884124px;}
.ls9{letter-spacing:14.943900px;}
.ls33{letter-spacing:14.944200px;}
.ls1b{letter-spacing:15.003676px;}
.ls1c{letter-spacing:15.063451px;}
.ls28{letter-spacing:15.123227px;}
.lsc{letter-spacing:15.183002px;}
.ls1a{letter-spacing:15.242778px;}
.ls35{letter-spacing:15.422105px;}
.ls27{letter-spacing:15.541656px;}
.ls49{letter-spacing:15.568047px;}
.ls4b{letter-spacing:15.979812px;}
.ls7{letter-spacing:16.378514px;}
.ls18{letter-spacing:16.438290px;}
.ls17{letter-spacing:16.737168px;}
.lsd{letter-spacing:16.856719px;}
.ls8{letter-spacing:17.275148px;}
.ls19{letter-spacing:17.334924px;}
.ls13{letter-spacing:17.693578px;}
.ls15{letter-spacing:17.753353px;}
.lse{letter-spacing:17.992456px;}
.ls23{letter-spacing:18.112007px;}
.ls1f{letter-spacing:18.410885px;}
.ls21{letter-spacing:18.769538px;}
.lsf{letter-spacing:19.068416px;}
.ls16{letter-spacing:19.247743px;}
.ls14{letter-spacing:19.307519px;}
.ls34{letter-spacing:19.367294px;}
.ls22{letter-spacing:19.845499px;}
.ls25{letter-spacing:20.084602px;}
.ls20{letter-spacing:20.323704px;}
.ls26{letter-spacing:20.682358px;}
.ls24{letter-spacing:20.742133px;}
.ls10{letter-spacing:23.312484px;}
.ls2{letter-spacing:28.453654px;}
.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;}
}
.ws13{word-spacing:-14.943900px;}
.ws98{word-spacing:-13.449600px;}
.ws1c{word-spacing:-11.955150px;}
.ws2{word-spacing:-10.460700px;}
.wsa8{word-spacing:-3.174106px;}
.ws63{word-spacing:-3.168107px;}
.ws53{word-spacing:-3.108331px;}
.ws83{word-spacing:-3.048556px;}
.ws3f{word-spacing:-2.988780px;}
.wsa7{word-spacing:-2.905114px;}
.ws6c{word-spacing:-2.630126px;}
.ws7d{word-spacing:-2.570351px;}
.ws54{word-spacing:-2.510575px;}
.ws42{word-spacing:-2.450800px;}
.ws56{word-spacing:-2.391024px;}
.ws85{word-spacing:-2.331248px;}
.ws68{word-spacing:-2.271473px;}
.wsa6{word-spacing:-2.259533px;}
.ws57{word-spacing:-2.092146px;}
.ws4c{word-spacing:-2.032370px;}
.ws5c{word-spacing:-1.972595px;}
.ws12{word-spacing:-1.853044px;}
.ws8{word-spacing:-1.793268px;}
.ws14{word-spacing:-1.733492px;}
.ws11{word-spacing:-1.673717px;}
.wsab{word-spacing:-1.667750px;}
.wsaa{word-spacing:-1.613952px;}
.ws82{word-spacing:-1.613941px;}
.ws88{word-spacing:-1.554166px;}
.wsad{word-spacing:-1.506355px;}
.wsd3{word-spacing:-1.452557px;}
.ws72{word-spacing:-1.374839px;}
.ws86{word-spacing:-1.255288px;}
.ws81{word-spacing:-1.195512px;}
.wsb9{word-spacing:-1.183565px;}
.ws7{word-spacing:-1.135736px;}
.ws9a{word-spacing:-1.075968px;}
.ws43{word-spacing:-1.075961px;}
.ws2d{word-spacing:-1.016185px;}
.ws5d{word-spacing:-0.956410px;}
.wscd{word-spacing:-0.914573px;}
.ws84{word-spacing:-0.896634px;}
.ws7a{word-spacing:-0.812950px;}
.ws45{word-spacing:-0.717307px;}
.wsce{word-spacing:-0.699379px;}
.ws44{word-spacing:-0.657532px;}
.ws4b{word-spacing:-0.597756px;}
.wsc5{word-spacing:-0.537984px;}
.wsc4{word-spacing:-0.484186px;}
.ws17{word-spacing:-0.478205px;}
.wsa4{word-spacing:-0.376589px;}
.ws1e{word-spacing:-0.358654px;}
.wsc6{word-spacing:-0.322790px;}
.ws34{word-spacing:-0.298878px;}
.ws70{word-spacing:-0.268992px;}
.ws18{word-spacing:-0.239102px;}
.wsb1{word-spacing:-0.215194px;}
.ws6{word-spacing:-0.179327px;}
.ws96{word-spacing:-0.161395px;}
.wse{word-spacing:-0.119551px;}
.ws94{word-spacing:-0.107597px;}
.ws1a{word-spacing:-0.059776px;}
.ws9d{word-spacing:-0.053798px;}
.ws5b{word-spacing:-0.007843px;}
.wsc3{word-spacing:-0.007555px;}
.wsd4{word-spacing:-0.004416px;}
.ws66{word-spacing:-0.003148px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.001881px;}
.ws60{word-spacing:0.053798px;}
.ws61{word-spacing:0.054452px;}
.ws9{word-spacing:0.059776px;}
.wsa2{word-spacing:0.107597px;}
.ws2c{word-spacing:0.119551px;}
.wsa3{word-spacing:0.161395px;}
.ws27{word-spacing:0.179327px;}
.ws59{word-spacing:0.215194px;}
.ws1f{word-spacing:0.239102px;}
.ws95{word-spacing:0.268992px;}
.ws2b{word-spacing:0.298878px;}
.wsa1{word-spacing:0.322790px;}
.ws36{word-spacing:0.358654px;}
.ws8f{word-spacing:0.376589px;}
.ws6b{word-spacing:0.418429px;}
.wsbb{word-spacing:0.430387px;}
.ws5{word-spacing:0.537980px;}
.wsbc{word-spacing:0.591782px;}
.ws40{word-spacing:0.597756px;}
.wsc2{word-spacing:0.645581px;}
.ws58{word-spacing:0.657532px;}
.wsb2{word-spacing:0.699379px;}
.ws69{word-spacing:0.717307px;}
.ws52{word-spacing:0.836858px;}
.ws48{word-spacing:0.896634px;}
.ws41{word-spacing:1.016185px;}
.ws49{word-spacing:1.075961px;}
.wsac{word-spacing:1.075968px;}
.ws8a{word-spacing:1.135736px;}
.ws62{word-spacing:1.183565px;}
.ws7e{word-spacing:1.195512px;}
.ws31{word-spacing:1.255288px;}
.ws89{word-spacing:1.315063px;}
.ws19{word-spacing:1.434614px;}
.ws2a{word-spacing:1.494390px;}
.ws4a{word-spacing:1.613941px;}
.wscb{word-spacing:1.613952px;}
.ws91{word-spacing:1.667750px;}
.ws29{word-spacing:1.733492px;}
.ws28{word-spacing:1.793268px;}
.wsae{word-spacing:1.829146px;}
.ws73{word-spacing:1.853044px;}
.ws21{word-spacing:1.912819px;}
.wsbf{word-spacing:1.936742px;}
.ws20{word-spacing:1.972595px;}
.wsd0{word-spacing:1.990541px;}
.wsb7{word-spacing:2.044339px;}
.ws64{word-spacing:2.092146px;}
.wsb6{word-spacing:2.098138px;}
.ws7b{word-spacing:2.211697px;}
.wsb3{word-spacing:2.259533px;}
.ws7f{word-spacing:2.331248px;}
.wsc9{word-spacing:2.474726px;}
.ws3{word-spacing:2.510252px;}
.ws5f{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wsd1{word-spacing:2.528525px;}
.ws65{word-spacing:2.570351px;}
.ws8c{word-spacing:2.689902px;}
.ws9c{word-spacing:2.743718px;}
.ws24{word-spacing:2.749678px;}
.wsb8{word-spacing:2.797517px;}
.ws26{word-spacing:2.809453px;}
.wsa5{word-spacing:2.851315px;}
.ws4{word-spacing:2.869236px;}
.ws93{word-spacing:3.093108px;}
.ws47{word-spacing:3.108331px;}
.wsc1{word-spacing:3.120307px;}
.ws32{word-spacing:3.168107px;}
.ws9f{word-spacing:3.174106px;}
.wsba{word-spacing:3.217709px;}
.wsc7{word-spacing:3.219322px;}
.wsc8{word-spacing:3.219562px;}
.wsd6{word-spacing:3.221750px;}
.wsbe{word-spacing:3.222307px;}
.wsd5{word-spacing:3.222605px;}
.wsc0{word-spacing:3.224198px;}
.wsaf{word-spacing:3.225638px;}
.ws16{word-spacing:3.227882px;}
.ws97{word-spacing:3.227904px;}
.ws4f{word-spacing:3.287658px;}
.wsa9{word-spacing:3.335501px;}
.ws2f{word-spacing:3.466985px;}
.wsbd{word-spacing:3.496896px;}
.ws8b{word-spacing:3.526760px;}
.ws5a{word-spacing:3.550694px;}
.ws92{word-spacing:3.604493px;}
.wsf{word-spacing:3.638973px;}
.ws71{word-spacing:3.765863px;}
.ws30{word-spacing:3.825638px;}
.ws15{word-spacing:3.945190px;}
.wscc{word-spacing:4.034880px;}
.wsb4{word-spacing:4.088678px;}
.ws1d{word-spacing:4.124516px;}
.wscf{word-spacing:4.250074px;}
.ws38{word-spacing:4.303843px;}
.ws10{word-spacing:4.303872px;}
.ws9e{word-spacing:4.357670px;}
.ws75{word-spacing:4.363619px;}
.ws6e{word-spacing:4.423394px;}
.wsb0{word-spacing:4.465267px;}
.ws6d{word-spacing:4.483170px;}
.ws35{word-spacing:4.662497px;}
.ws4e{word-spacing:4.722272px;}
.wsd2{word-spacing:4.734259px;}
.ws22{word-spacing:4.782048px;}
.ws9b{word-spacing:4.788058px;}
.wsc{word-spacing:4.901599px;}
.ws3a{word-spacing:5.080926px;}
.ws3c{word-spacing:5.140702px;}
.ws90{word-spacing:5.164646px;}
.ws3d{word-spacing:5.200477px;}
.ws6a{word-spacing:5.260253px;}
.ws2e{word-spacing:5.499355px;}
.wsca{word-spacing:5.541235px;}
.ws51{word-spacing:5.559131px;}
.ws4d{word-spacing:5.618906px;}
.ws3b{word-spacing:5.678682px;}
.ws37{word-spacing:5.738458px;}
.ws55{word-spacing:5.858009px;}
.ws23{word-spacing:5.917784px;}
.ws50{word-spacing:6.037336px;}
.ws33{word-spacing:6.097111px;}
.ws6f{word-spacing:6.156887px;}
.ws3e{word-spacing:6.515540px;}
.ws46{word-spacing:6.575316px;}
.wsd{word-spacing:6.694867px;}
.wsb{word-spacing:6.814418px;}
.wsa{word-spacing:6.874194px;}
.wsa0{word-spacing:6.886195px;}
.ws99{word-spacing:7.047590px;}
.ws80{word-spacing:7.173072px;}
.ws67{word-spacing:7.352399px;}
.ws39{word-spacing:7.471950px;}
.ws7c{word-spacing:8.249033px;}
.ws25{word-spacing:8.368584px;}
.ws87{word-spacing:8.488135px;}
.ws8d{word-spacing:9.898906px;}
.ws5e{word-spacing:10.102076px;}
.ws8e{word-spacing:12.427430px;}
.wsb5{word-spacing:13.342003px;}
.ws76{word-spacing:216.566999px;}
.ws77{word-spacing:231.510899px;}
.ws78{word-spacing:261.398699px;}
.ws79{word-spacing:283.814549px;}
.ws74{word-spacing:288.058616px;}
._14{margin-left:-23.192933px;}
._35{margin-left:-20.927578px;}
._e{margin-left:-7.830755px;}
._6{margin-left:-6.168857px;}
._5{margin-left:-4.184292px;}
._1{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._34{width:2.301348px;}
._13{width:4.267989px;}
._33{width:10.824080px;}
._0{width:12.971268px;}
._1a{width:14.406071px;}
._10{width:15.493831px;}
._d{width:17.012036px;}
._8{width:18.171782px;}
._1d{width:19.199918px;}
._7{width:20.395430px;}
._17{width:22.116972px;}
._9{width:23.802640px;}
._1e{width:24.926425px;}
._2{width:25.942182px;}
._1b{width:27.317449px;}
._16{width:28.512961px;}
._f{width:30.844210px;}
._b{width:33.103732px;}
._19{width:34.370970px;}
._18{width:36.403340px;}
._32{width:37.622754px;}
._c{width:38.818266px;}
._a{width:39.882276px;}
._15{width:44.233944px;}
._4{width:84.313534px;}
._28{width:121.344468px;}
._2c{width:200.749789px;}
._2a{width:202.543223px;}
._20{width:207.720210px;}
._30{width:217.489223px;}
._21{width:218.790647px;}
._29{width:219.805066px;}
._23{width:236.424449px;}
._2b{width:267.731484px;}
._2d{width:269.524918px;}
._24{width:302.942741px;}
._22{width:317.946416px;}
._26{width:332.890316px;}
._1f{width:637.267672px;}
._2e{width:719.218020px;}
._25{width:735.538758px;}
._27{width:748.569839px;}
._2f{width:801.145715px;}
._11{width:1603.739855px;}
._31{width:2436.709615px;}
._12{width:2459.531855px;}
._1c{width:2460.619615px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:62.286600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3f{bottom:45.921000px;}
.y16{bottom:100.260000px;}
.yb5{bottom:105.046500px;}
.ya1{bottom:106.858500px;}
.y12f{bottom:108.397500px;}
.y11b{bottom:115.966500px;}
.y15{bottom:118.147500px;}
.y162{bottom:119.583000px;}
.y3e{bottom:121.716000px;}
.y193{bottom:125.112000px;}
.yb4{bottom:125.938500px;}
.ya0{bottom:127.750500px;}
.y12e{bottom:127.896000px;}
.y14{bottom:136.035000px;}
.y11a{bottom:136.858500px;}
.y71{bottom:137.298000px;}
.y161{bottom:138.733500px;}
.y3d{bottom:142.606500px;}
.y192{bottom:144.262500px;}
.yb3{bottom:146.830500px;}
.y12d{bottom:147.394500px;}
.ye9{bottom:147.954000px;}
.y9f{bottom:153.126000px;}
.y13{bottom:153.922500px;}
.y119{bottom:157.750500px;}
.y160{bottom:157.884000px;}
.y70{bottom:158.190000px;}
.y191{bottom:163.413000px;}
.y3c{bottom:163.498500px;}
.y12c{bottom:166.893000px;}
.yb2{bottom:167.721000px;}
.ye8{bottom:168.844500px;}
.y12{bottom:171.811500px;}
.y15f{bottom:177.034500px;}
.y9e{bottom:177.556500px;}
.y118{bottom:178.641000px;}
.y6f{bottom:179.082000px;}
.y190{bottom:182.563500px;}
.y3b{bottom:184.390500px;}
.y12b{bottom:186.391500px;}
.yb1{bottom:188.613000px;}
.y11{bottom:189.699000px;}
.ye7{bottom:189.736500px;}
.y15e{bottom:196.185000px;}
.y6e{bottom:199.972500px;}
.y18f{bottom:201.714000px;}
.y117{bottom:204.016500px;}
.y3a{bottom:205.281000px;}
.y12a{bottom:205.891500px;}
.y10{bottom:207.586500px;}
.ybe{bottom:208.867500px;}
.yb0{bottom:209.505000px;}
.ye6{bottom:210.628500px;}
.y15d{bottom:215.335500px;}
.y9d{bottom:216.381000px;}
.y6d{bottom:220.864500px;}
.y129{bottom:225.390000px;}
.yf{bottom:225.475500px;}
.y39{bottom:226.173000px;}
.ybd{bottom:229.759500px;}
.yaf{bottom:230.395500px;}
.y15c{bottom:234.486000px;}
.y9c{bottom:237.273000px;}
.y18e{bottom:240.015000px;}
.y6c{bottom:241.756500px;}
.ycf{bottom:242.698500px;}
.y116{bottom:242.841000px;}
.y128{bottom:244.888500px;}
.y38{bottom:247.065000px;}
.ybc{bottom:250.651500px;}
.yae{bottom:251.287500px;}
.ye{bottom:252.330000px;}
.ye5{bottom:252.823500px;}
.y15b{bottom:253.636500px;}
.y9b{bottom:258.165000px;}
.y18d{bottom:259.165500px;}
.y6b{bottom:262.647000px;}
.yce{bottom:263.590500px;}
.y115{bottom:263.731500px;}
.y37{bottom:267.955500px;}
.yd{bottom:270.217500px;}
.ybb{bottom:271.543500px;}
.ye4{bottom:272.115000px;}
.yad{bottom:272.179500px;}
.y15a{bottom:272.787000px;}
.y127{bottom:273.354000px;}
.y18c{bottom:278.316000px;}
.y9a{bottom:279.055500px;}
.y6a{bottom:283.539000px;}
.ycd{bottom:284.481000px;}
.y114{bottom:284.623500px;}
.yc{bottom:288.105000px;}
.y36{bottom:288.847500px;}
.ye3{bottom:290.049000px;}
.y159{bottom:291.937500px;}
.yba{bottom:292.434000px;}
.y126{bottom:292.852500px;}
.yac{bottom:293.070000px;}
.y18b{bottom:297.466500px;}
.y99{bottom:299.947500px;}
.y69{bottom:304.431000px;}
.ycc{bottom:305.373000px;}
.y113{bottom:305.515500px;}
.yb{bottom:305.994000px;}
.ye2{bottom:307.981500px;}
.y35{bottom:309.739500px;}
.y158{bottom:311.088000px;}
.y125{bottom:312.351000px;}
.yab{bottom:313.962000px;}
.y18a{bottom:316.617000px;}
.y98{bottom:320.839500px;}
.ya{bottom:323.881500px;}
.y68{bottom:325.323000px;}
.ye1{bottom:325.914000px;}
.ycb{bottom:326.265000px;}
.y112{bottom:326.406000px;}
.yb9{bottom:328.062000px;}
.y157{bottom:330.238500px;}
.y34{bottom:330.630000px;}
.y124{bottom:331.849500px;}
.yaa{bottom:334.854000px;}
.y189{bottom:335.767500px;}
.y97{bottom:341.730000px;}
.y9{bottom:341.769000px;}
.ye0{bottom:343.846500px;}
.y67{bottom:346.213500px;}
.yca{bottom:347.155500px;}
.yb8{bottom:347.295000px;}
.y111{bottom:347.298000px;}
.y156{bottom:349.389000px;}
.y123{bottom:351.348000px;}
.y33{bottom:351.522000px;}
.y188{bottom:354.918000px;}
.ya9{bottom:355.746000px;}
.y8{bottom:359.658000px;}
.y96{bottom:362.622000px;}
.y66{bottom:367.105500px;}
.yc9{bottom:368.047500px;}
.y110{bottom:368.190000px;}
.y155{bottom:368.539500px;}
.ydf{bottom:368.982000px;}
.y196{bottom:369.339000px;}
.y32{bottom:372.414000px;}
.y187{bottom:374.070000px;}
.ya8{bottom:376.636500px;}
.y122{bottom:379.813500px;}
.y95{bottom:383.514000px;}
.y7{bottom:383.523000px;}
.y154{bottom:387.690000px;}
.y65{bottom:387.997500px;}
.y195{bottom:388.489500px;}
.yc8{bottom:388.939500px;}
.y10f{bottom:389.080500px;}
.y186{bottom:393.220500px;}
.ya7{bottom:397.528500px;}
.y31{bottom:397.788000px;}
.y121{bottom:399.312000px;}
.y6{bottom:401.410500px;}
.yde{bottom:401.647500px;}
.y94{bottom:404.406000px;}
.y153{bottom:406.840500px;}
.y194{bottom:407.640000px;}
.y64{bottom:408.888000px;}
.yc7{bottom:409.830000px;}
.y10e{bottom:409.972500px;}
.y185{bottom:412.371000px;}
.ya6{bottom:418.420500px;}
.y120{bottom:418.810500px;}
.y5{bottom:419.299500px;}
.y93{bottom:425.296500px;}
.y152{bottom:425.991000px;}
.y63{bottom:429.780000px;}
.yc6{bottom:430.722000px;}
.y10d{bottom:430.864500px;}
.y184{bottom:431.521500px;}
.y4{bottom:437.187000px;}
.y11f{bottom:438.310500px;}
.ydd{bottom:438.751500px;}
.ya5{bottom:439.311000px;}
.y151{bottom:445.141500px;}
.y92{bottom:446.188500px;}
.y62{bottom:450.672000px;}
.yc5{bottom:451.614000px;}
.y10c{bottom:451.756500px;}
.y11e{bottom:457.809000px;}
.ydc{bottom:459.643500px;}
.ya4{bottom:460.203000px;}
.y3{bottom:461.052000px;}
.y150{bottom:464.293500px;}
.y91{bottom:467.080500px;}
.y183{bottom:469.822500px;}
.y61{bottom:471.562500px;}
.yc4{bottom:472.506000px;}
.y10b{bottom:472.647000px;}
.y30{bottom:477.000000px;}
.y11d{bottom:477.307500px;}
.y2{bottom:478.941000px;}
.ydb{bottom:480.534000px;}
.y14f{bottom:483.444000px;}
.y90{bottom:487.971000px;}
.y182{bottom:488.973000px;}
.y60{bottom:492.454500px;}
.yc3{bottom:493.396500px;}
.y10a{bottom:493.539000px;}
.ya3{bottom:495.831000px;}
.y11c{bottom:496.806000px;}
.y1{bottom:496.828500px;}
.yda{bottom:501.426000px;}
.y14e{bottom:502.594500px;}
.y181{bottom:508.123500px;}
.y8f{bottom:508.863000px;}
.y5f{bottom:513.346500px;}
.yc2{bottom:514.288500px;}
.y109{bottom:514.431000px;}
.ya2{bottom:515.064000px;}
.y2f{bottom:515.824500px;}
.y14d{bottom:521.745000px;}
.yd9{bottom:522.318000px;}
.y180{bottom:527.274000px;}
.y8e{bottom:529.755000px;}
.y5e{bottom:534.237000px;}
.yc1{bottom:535.180500px;}
.y108{bottom:535.321500px;}
.y2e{bottom:536.716500px;}
.y14c{bottom:540.895500px;}
.yd8{bottom:543.210000px;}
.y17f{bottom:546.424500px;}
.y8d{bottom:550.645500px;}
.y5d{bottom:555.129000px;}
.y107{bottom:556.213500px;}
.y2d{bottom:557.607000px;}
.y14b{bottom:560.046000px;}
.yd7{bottom:564.100500px;}
.y17e{bottom:565.575000px;}
.yc0{bottom:570.807000px;}
.y8c{bottom:571.537500px;}
.y5c{bottom:576.021000px;}
.y106{bottom:577.105500px;}
.y2c{bottom:578.499000px;}
.y14a{bottom:579.196500px;}
.y17d{bottom:584.725500px;}
.yd6{bottom:584.992500px;}
.ybf{bottom:590.040000px;}
.y8b{bottom:592.429500px;}
.y5b{bottom:596.913000px;}
.y105{bottom:597.996000px;}
.y149{bottom:598.347000px;}
.y2b{bottom:599.391000px;}
.y17c{bottom:603.876000px;}
.yd5{bottom:605.884500px;}
.y8a{bottom:613.320000px;}
.y148{bottom:617.497500px;}
.y5a{bottom:617.803500px;}
.y104{bottom:618.888000px;}
.y2a{bottom:620.281500px;}
.y17b{bottom:623.026500px;}
.yd4{bottom:626.775000px;}
.y89{bottom:634.212000px;}
.y147{bottom:636.648000px;}
.y59{bottom:638.695500px;}
.y103{bottom:639.780000px;}
.y29{bottom:641.173500px;}
.y17a{bottom:642.177000px;}
.yd3{bottom:647.667000px;}
.y88{bottom:655.104000px;}
.y146{bottom:655.798500px;}
.y58{bottom:659.587500px;}
.y102{bottom:660.670500px;}
.y179{bottom:661.327500px;}
.y28{bottom:662.065500px;}
.yd2{bottom:673.041000px;}
.y145{bottom:674.949000px;}
.y87{bottom:675.996000px;}
.y57{bottom:680.478000px;}
.y101{bottom:681.562500px;}
.y27{bottom:682.957500px;}
.yb7{bottom:690.690000px;}
.y144{bottom:694.099500px;}
.y86{bottom:696.886500px;}
.y178{bottom:699.628500px;}
.y56{bottom:701.370000px;}
.y26{bottom:703.848000px;}
.yd1{bottom:705.187500px;}
.yb6{bottom:709.923000px;}
.y143{bottom:713.250000px;}
.y85{bottom:717.778500px;}
.y177{bottom:718.779000px;}
.y55{bottom:722.262000px;}
.y100{bottom:723.759000px;}
.yd0{bottom:724.420500px;}
.y25{bottom:724.740000px;}
.y142{bottom:732.400500px;}
.y176{bottom:737.929500px;}
.y84{bottom:738.670500px;}
.yff{bottom:743.050500px;}
.y54{bottom:743.152500px;}
.y24{bottom:745.632000px;}
.y141{bottom:751.551000px;}
.y175{bottom:757.081500px;}
.y83{bottom:759.561000px;}
.yfe{bottom:760.983000px;}
.y53{bottom:764.044500px;}
.y23{bottom:766.522500px;}
.y140{bottom:770.701500px;}
.y174{bottom:776.232000px;}
.yfd{bottom:778.915500px;}
.y82{bottom:780.453000px;}
.y52{bottom:784.936500px;}
.y22{bottom:787.414500px;}
.y13f{bottom:789.852000px;}
.y173{bottom:795.382500px;}
.yfc{bottom:796.848000px;}
.y81{bottom:801.345000px;}
.y51{bottom:805.827000px;}
.y21{bottom:808.306500px;}
.y13e{bottom:809.002500px;}
.y172{bottom:814.533000px;}
.yfb{bottom:814.782000px;}
.y80{bottom:822.235500px;}
.y50{bottom:826.719000px;}
.y13d{bottom:828.153000px;}
.y20{bottom:829.197000px;}
.yfa{bottom:832.714500px;}
.y171{bottom:833.683500px;}
.y7f{bottom:843.127500px;}
.y13c{bottom:847.305000px;}
.y4f{bottom:847.611000px;}
.y1f{bottom:850.089000px;}
.yf9{bottom:850.647000px;}
.y170{bottom:852.834000px;}
.y7e{bottom:864.019500px;}
.y13b{bottom:866.455500px;}
.y4e{bottom:868.503000px;}
.yf8{bottom:868.579500px;}
.y16f{bottom:871.984500px;}
.y1e{bottom:879.946500px;}
.y7d{bottom:884.910000px;}
.y13a{bottom:885.606000px;}
.yf7{bottom:886.512000px;}
.y4d{bottom:889.393500px;}
.y16e{bottom:891.135000px;}
.yf6{bottom:904.444500px;}
.y139{bottom:904.756500px;}
.y7c{bottom:905.802000px;}
.y4c{bottom:910.285500px;}
.y1d{bottom:919.966500px;}
.yf5{bottom:922.378500px;}
.y138{bottom:923.907000px;}
.y7b{bottom:926.694000px;}
.y16d{bottom:929.436000px;}
.y4b{bottom:931.177500px;}
.y1c{bottom:936.106500px;}
.yf4{bottom:940.311000px;}
.y137{bottom:943.057500px;}
.y7a{bottom:947.584500px;}
.y16c{bottom:948.586500px;}
.y4a{bottom:952.068000px;}
.y1b{bottom:952.246500px;}
.yf3{bottom:958.243500px;}
.y136{bottom:962.208000px;}
.y16b{bottom:967.737000px;}
.y79{bottom:968.476500px;}
.y49{bottom:972.960000px;}
.yf2{bottom:976.176000px;}
.y135{bottom:985.842000px;}
.y16a{bottom:986.887500px;}
.y78{bottom:989.368500px;}
.y48{bottom:993.852000px;}
.yf1{bottom:994.108500px;}
.y1a{bottom:1001.262000px;}
.y169{bottom:1006.038000px;}
.y77{bottom:1010.260500px;}
.yf0{bottom:1012.041000px;}
.y47{bottom:1014.742500px;}
.y134{bottom:1024.665000px;}
.y168{bottom:1025.188500px;}
.yef{bottom:1029.975000px;}
.y76{bottom:1031.151000px;}
.y46{bottom:1035.634500px;}
.y19{bottom:1040.086500px;}
.y167{bottom:1044.339000px;}
.yee{bottom:1047.907500px;}
.y75{bottom:1052.043000px;}
.y133{bottom:1053.130500px;}
.y45{bottom:1056.526500px;}
.y166{bottom:1063.489500px;}
.yed{bottom:1065.840000px;}
.y18{bottom:1071.424500px;}
.y74{bottom:1072.935000px;}
.y44{bottom:1077.417000px;}
.y132{bottom:1081.596000px;}
.y165{bottom:1082.640000px;}
.yec{bottom:1083.772500px;}
.y73{bottom:1093.825500px;}
.y43{bottom:1098.309000px;}
.y131{bottom:1101.094500px;}
.y164{bottom:1101.790500px;}
.y17{bottom:1102.761000px;}
.yeb{bottom:1108.908000px;}
.y72{bottom:1114.717500px;}
.y42{bottom:1119.201000px;}
.y130{bottom:1120.593000px;}
.y163{bottom:1120.941000px;}
.y41{bottom:1140.091500px;}
.yea{bottom:1141.573500px;}
.y40{bottom:1200.196500px;}
.h2{height:37.993262px;}
.ha{height:41.482876px;}
.h5{height:43.038432px;}
.h6{height:43.421105px;}
.h3{height:43.815515px;}
.h9{height:48.848947px;}
.hd{height:49.117939px;}
.h8{height:51.646464px;}
.h7{height:54.276245px;}
.h4{height:77.469696px;}
.hb{height:90.138245px;}
.hc{height:90.144245px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x1a{left:84.058500px;}
.x15{left:85.848000px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x8{left:258.624000px;}
.xc{left:262.392000px;}
.x12{left:267.361500px;}
.xa{left:268.603500px;}
.x6{left:271.174500px;}
.xf{left:273.654000px;}
.x7{left:275.575500px;}
.xd{left:279.676500px;}
.x4{left:281.293500px;}
.x10{left:290.637000px;}
.x5{left:385.852500px;}
.xb{left:396.732000px;}
.x14{left:399.084000px;}
.x11{left:402.820500px;}
.x13{left:420.192000px;}
.xe{left:424.480500px;}
.x18{left:629.191500px;}
.x19{left:647.947500px;}
.x9{left:651.844500px;}
.x16{left:742.843500px;}
.x17{left:749.568000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:31.877333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000272pt;}
.ls4e{letter-spacing:0.000361pt;}
.ls2e{letter-spacing:0.000387pt;}
.ls1{letter-spacing:0.000533pt;}
.ls4c{letter-spacing:0.000711pt;}
.ls48{letter-spacing:0.000980pt;}
.ls32{letter-spacing:0.001774pt;}
.ls2d{letter-spacing:0.003057pt;}
.ls3e{letter-spacing:0.003578pt;}
.ls42{letter-spacing:0.004267pt;}
.ls4f{letter-spacing:0.094933pt;}
.ls2c{letter-spacing:0.380860pt;}
.ls30{letter-spacing:0.383096pt;}
.ls31{letter-spacing:0.558350pt;}
.ls2f{letter-spacing:0.575533pt;}
.ls2b{letter-spacing:0.582694pt;}
.ls2a{letter-spacing:0.637762pt;}
.ls0{letter-spacing:9.298933pt;}
.lsa{letter-spacing:10.626533pt;}
.ls4a{letter-spacing:11.135956pt;}
.ls4{letter-spacing:11.583183pt;}
.ls3{letter-spacing:11.636317pt;}
.ls43{letter-spacing:11.642079pt;}
.ls4d{letter-spacing:11.777083pt;}
.ls40{letter-spacing:11.783672pt;}
.ls39{letter-spacing:11.878053pt;}
.ls37{letter-spacing:11.954133pt;}
.ls38{letter-spacing:11.959467pt;}
.ls3c{letter-spacing:11.968610pt;}
.ls3b{letter-spacing:11.973015pt;}
.ls3d{letter-spacing:11.980284pt;}
.ls47{letter-spacing:12.004518pt;}
.ls46{letter-spacing:12.039402pt;}
.ls44{letter-spacing:12.109973pt;}
.ls45{letter-spacing:12.123231pt;}
.ls3f{letter-spacing:12.142759pt;}
.ls36{letter-spacing:12.273923pt;}
.ls1d{letter-spacing:12.380191pt;}
.ls41{letter-spacing:12.468329pt;}
.ls5{letter-spacing:12.911530pt;}
.ls1e{letter-spacing:13.017797pt;}
.ls6{letter-spacing:13.070931pt;}
.ls12{letter-spacing:13.124065pt;}
.ls11{letter-spacing:13.177199pt;}
.ls29{letter-spacing:13.230333pt;}
.ls9{letter-spacing:13.283467pt;}
.ls33{letter-spacing:13.283733pt;}
.ls1b{letter-spacing:13.336601pt;}
.ls1c{letter-spacing:13.389734pt;}
.ls28{letter-spacing:13.442868pt;}
.lsc{letter-spacing:13.496002pt;}
.ls1a{letter-spacing:13.549136pt;}
.ls35{letter-spacing:13.708538pt;}
.ls27{letter-spacing:13.814805pt;}
.ls49{letter-spacing:13.838264pt;}
.ls4b{letter-spacing:14.204277pt;}
.ls7{letter-spacing:14.558679pt;}
.ls18{letter-spacing:14.611813pt;}
.ls17{letter-spacing:14.877483pt;}
.lsd{letter-spacing:14.983750pt;}
.ls8{letter-spacing:15.355687pt;}
.ls19{letter-spacing:15.408821pt;}
.ls13{letter-spacing:15.727625pt;}
.ls15{letter-spacing:15.780758pt;}
.lse{letter-spacing:15.993294pt;}
.ls23{letter-spacing:16.099562pt;}
.ls1f{letter-spacing:16.365231pt;}
.ls21{letter-spacing:16.684034pt;}
.lsf{letter-spacing:16.949703pt;}
.ls16{letter-spacing:17.109105pt;}
.ls14{letter-spacing:17.162239pt;}
.ls34{letter-spacing:17.215373pt;}
.ls22{letter-spacing:17.640444pt;}
.ls25{letter-spacing:17.852979pt;}
.ls20{letter-spacing:18.065515pt;}
.ls26{letter-spacing:18.384318pt;}
.ls24{letter-spacing:18.437452pt;}
.ls10{letter-spacing:20.722208pt;}
.ls2{letter-spacing:25.292137pt;}
.ws13{word-spacing:-13.283467pt;}
.ws98{word-spacing:-11.955200pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws2{word-spacing:-9.298400pt;}
.wsa8{word-spacing:-2.821427pt;}
.ws63{word-spacing:-2.816095pt;}
.ws53{word-spacing:-2.762961pt;}
.ws83{word-spacing:-2.709827pt;}
.ws3f{word-spacing:-2.656693pt;}
.wsa7{word-spacing:-2.582323pt;}
.ws6c{word-spacing:-2.337890pt;}
.ws7d{word-spacing:-2.284756pt;}
.ws54{word-spacing:-2.231622pt;}
.ws42{word-spacing:-2.178489pt;}
.ws56{word-spacing:-2.125355pt;}
.ws85{word-spacing:-2.072221pt;}
.ws68{word-spacing:-2.019087pt;}
.wsa6{word-spacing:-2.008474pt;}
.ws57{word-spacing:-1.859685pt;}
.ws4c{word-spacing:-1.806551pt;}
.ws5c{word-spacing:-1.753418pt;}
.ws12{word-spacing:-1.647150pt;}
.ws8{word-spacing:-1.594016pt;}
.ws14{word-spacing:-1.540882pt;}
.ws11{word-spacing:-1.487748pt;}
.wsab{word-spacing:-1.482445pt;}
.wsaa{word-spacing:-1.434624pt;}
.ws82{word-spacing:-1.434614pt;}
.ws88{word-spacing:-1.381481pt;}
.wsad{word-spacing:-1.338982pt;}
.wsd3{word-spacing:-1.291162pt;}
.ws72{word-spacing:-1.222079pt;}
.ws86{word-spacing:-1.115811pt;}
.ws81{word-spacing:-1.062677pt;}
.wsb9{word-spacing:-1.052058pt;}
.ws7{word-spacing:-1.009543pt;}
.ws9a{word-spacing:-0.956416pt;}
.ws43{word-spacing:-0.956410pt;}
.ws2d{word-spacing:-0.903276pt;}
.ws5d{word-spacing:-0.850142pt;}
.wscd{word-spacing:-0.812954pt;}
.ws84{word-spacing:-0.797008pt;}
.ws7a{word-spacing:-0.722622pt;}
.ws45{word-spacing:-0.637606pt;}
.wsce{word-spacing:-0.621670pt;}
.ws44{word-spacing:-0.584473pt;}
.ws4b{word-spacing:-0.531339pt;}
.wsc5{word-spacing:-0.478208pt;}
.wsc4{word-spacing:-0.430387pt;}
.ws17{word-spacing:-0.425071pt;}
.wsa4{word-spacing:-0.334746pt;}
.ws1e{word-spacing:-0.318803pt;}
.wsc6{word-spacing:-0.286925pt;}
.ws34{word-spacing:-0.265669pt;}
.ws70{word-spacing:-0.239104pt;}
.ws18{word-spacing:-0.212535pt;}
.wsb1{word-spacing:-0.191283pt;}
.ws6{word-spacing:-0.159402pt;}
.ws96{word-spacing:-0.143462pt;}
.wse{word-spacing:-0.106268pt;}
.ws94{word-spacing:-0.095642pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws9d{word-spacing:-0.047821pt;}
.ws5b{word-spacing:-0.006972pt;}
.wsc3{word-spacing:-0.006716pt;}
.wsd4{word-spacing:-0.003925pt;}
.ws66{word-spacing:-0.002798pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.001672pt;}
.ws60{word-spacing:0.047821pt;}
.ws61{word-spacing:0.048402pt;}
.ws9{word-spacing:0.053134pt;}
.wsa2{word-spacing:0.095642pt;}
.ws2c{word-spacing:0.106268pt;}
.wsa3{word-spacing:0.143462pt;}
.ws27{word-spacing:0.159402pt;}
.ws59{word-spacing:0.191283pt;}
.ws1f{word-spacing:0.212535pt;}
.ws95{word-spacing:0.239104pt;}
.ws2b{word-spacing:0.265669pt;}
.wsa1{word-spacing:0.286925pt;}
.ws36{word-spacing:0.318803pt;}
.ws8f{word-spacing:0.334746pt;}
.ws6b{word-spacing:0.371937pt;}
.wsbb{word-spacing:0.382566pt;}
.ws5{word-spacing:0.478205pt;}
.wsbc{word-spacing:0.526029pt;}
.ws40{word-spacing:0.531339pt;}
.wsc2{word-spacing:0.573850pt;}
.ws58{word-spacing:0.584473pt;}
.wsb2{word-spacing:0.621670pt;}
.ws69{word-spacing:0.637606pt;}
.ws52{word-spacing:0.743874pt;}
.ws48{word-spacing:0.797008pt;}
.ws41{word-spacing:0.903276pt;}
.ws49{word-spacing:0.956410pt;}
.wsac{word-spacing:0.956416pt;}
.ws8a{word-spacing:1.009543pt;}
.ws62{word-spacing:1.052058pt;}
.ws7e{word-spacing:1.062677pt;}
.ws31{word-spacing:1.115811pt;}
.ws89{word-spacing:1.168945pt;}
.ws19{word-spacing:1.275213pt;}
.ws2a{word-spacing:1.328347pt;}
.ws4a{word-spacing:1.434614pt;}
.wscb{word-spacing:1.434624pt;}
.ws91{word-spacing:1.482445pt;}
.ws29{word-spacing:1.540882pt;}
.ws28{word-spacing:1.594016pt;}
.wsae{word-spacing:1.625907pt;}
.ws73{word-spacing:1.647150pt;}
.ws21{word-spacing:1.700284pt;}
.wsbf{word-spacing:1.721549pt;}
.ws20{word-spacing:1.753418pt;}
.wsd0{word-spacing:1.769370pt;}
.wsb7{word-spacing:1.817190pt;}
.ws64{word-spacing:1.859685pt;}
.wsb6{word-spacing:1.865011pt;}
.ws7b{word-spacing:1.965953pt;}
.wsb3{word-spacing:2.008474pt;}
.ws7f{word-spacing:2.072221pt;}
.wsc9{word-spacing:2.199757pt;}
.ws3{word-spacing:2.231335pt;}
.ws5f{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wsd1{word-spacing:2.247578pt;}
.ws65{word-spacing:2.284756pt;}
.ws8c{word-spacing:2.391024pt;}
.ws9c{word-spacing:2.438861pt;}
.ws24{word-spacing:2.444158pt;}
.wsb8{word-spacing:2.486682pt;}
.ws26{word-spacing:2.497292pt;}
.wsa5{word-spacing:2.534502pt;}
.ws4{word-spacing:2.550432pt;}
.ws93{word-spacing:2.749429pt;}
.ws47{word-spacing:2.762961pt;}
.wsc1{word-spacing:2.773606pt;}
.ws32{word-spacing:2.816095pt;}
.ws9f{word-spacing:2.821427pt;}
.wsba{word-spacing:2.860186pt;}
.wsc7{word-spacing:2.861619pt;}
.wsc8{word-spacing:2.861833pt;}
.wsd6{word-spacing:2.863778pt;}
.wsbe{word-spacing:2.864273pt;}
.wsd5{word-spacing:2.864538pt;}
.wsc0{word-spacing:2.865954pt;}
.wsaf{word-spacing:2.867234pt;}
.ws16{word-spacing:2.869229pt;}
.ws97{word-spacing:2.869248pt;}
.ws4f{word-spacing:2.922363pt;}
.wsa9{word-spacing:2.964890pt;}
.ws2f{word-spacing:3.081764pt;}
.wsbd{word-spacing:3.108352pt;}
.ws8b{word-spacing:3.134898pt;}
.ws5a{word-spacing:3.156173pt;}
.ws92{word-spacing:3.203994pt;}
.wsf{word-spacing:3.234643pt;}
.ws71{word-spacing:3.347434pt;}
.ws30{word-spacing:3.400567pt;}
.ws15{word-spacing:3.506835pt;}
.wscc{word-spacing:3.586560pt;}
.wsb4{word-spacing:3.634381pt;}
.ws1d{word-spacing:3.666237pt;}
.wscf{word-spacing:3.777843pt;}
.ws38{word-spacing:3.825638pt;}
.ws10{word-spacing:3.825664pt;}
.ws9e{word-spacing:3.873485pt;}
.ws75{word-spacing:3.878772pt;}
.ws6e{word-spacing:3.931906pt;}
.wsb0{word-spacing:3.969126pt;}
.ws6d{word-spacing:3.985040pt;}
.ws35{word-spacing:4.144442pt;}
.ws4e{word-spacing:4.197575pt;}
.wsd2{word-spacing:4.208230pt;}
.ws22{word-spacing:4.250709pt;}
.ws9b{word-spacing:4.256051pt;}
.wsc{word-spacing:4.356977pt;}
.ws3a{word-spacing:4.516379pt;}
.ws3c{word-spacing:4.569513pt;}
.ws90{word-spacing:4.590797pt;}
.ws3d{word-spacing:4.622646pt;}
.ws6a{word-spacing:4.675780pt;}
.ws2e{word-spacing:4.888316pt;}
.wsca{word-spacing:4.925542pt;}
.ws51{word-spacing:4.941450pt;}
.ws4d{word-spacing:4.994583pt;}
.ws3b{word-spacing:5.047717pt;}
.ws37{word-spacing:5.100851pt;}
.ws55{word-spacing:5.207119pt;}
.ws23{word-spacing:5.260253pt;}
.ws50{word-spacing:5.366521pt;}
.ws33{word-spacing:5.419654pt;}
.ws6f{word-spacing:5.472788pt;}
.ws3e{word-spacing:5.791591pt;}
.ws46{word-spacing:5.844725pt;}
.wsd{word-spacing:5.950993pt;}
.wsb{word-spacing:6.057261pt;}
.wsa{word-spacing:6.110395pt;}
.wsa0{word-spacing:6.121062pt;}
.ws99{word-spacing:6.264525pt;}
.ws80{word-spacing:6.376064pt;}
.ws67{word-spacing:6.535466pt;}
.ws39{word-spacing:6.641733pt;}
.ws7c{word-spacing:7.332474pt;}
.ws25{word-spacing:7.438741pt;}
.ws87{word-spacing:7.545009pt;}
.ws8d{word-spacing:8.799027pt;}
.ws5e{word-spacing:8.979623pt;}
.ws8e{word-spacing:11.046605pt;}
.wsb5{word-spacing:11.859558pt;}
.ws76{word-spacing:192.503999pt;}
.ws77{word-spacing:205.787466pt;}
.ws78{word-spacing:232.354399pt;}
.ws79{word-spacing:252.279599pt;}
.ws74{word-spacing:256.052103pt;}
._14{margin-left:-20.615940pt;}
._35{margin-left:-18.602291pt;}
._e{margin-left:-6.960671pt;}
._6{margin-left:-5.483429pt;}
._5{margin-left:-3.719371pt;}
._1{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._34{width:2.045643pt;}
._13{width:3.793768pt;}
._33{width:9.621405pt;}
._0{width:11.530016pt;}
._1a{width:12.805396pt;}
._10{width:13.772294pt;}
._d{width:15.121810pt;}
._8{width:16.152695pt;}
._1d{width:17.066594pt;}
._7{width:18.129271pt;}
._17{width:19.659531pt;}
._9{width:21.157902pt;}
._1e{width:22.156822pt;}
._2{width:23.059717pt;}
._1b{width:24.282177pt;}
._16{width:25.344854pt;}
._f{width:27.417075pt;}
._b{width:29.425539pt;}
._19{width:30.551973pt;}
._18{width:32.358525pt;}
._32{width:33.442448pt;}
._c{width:34.505125pt;}
._a{width:35.450912pt;}
._15{width:39.319061pt;}
._4{width:74.945363pt;}
._28{width:107.861749pt;}
._2c{width:178.444257pt;}
._2a{width:180.038420pt;}
._20{width:184.640187pt;}
._30{width:193.323754pt;}
._21{width:194.480575pt;}
._29{width:195.382281pt;}
._23{width:210.155066pt;}
._2b{width:237.983541pt;}
._2d{width:239.577705pt;}
._24{width:269.282436pt;}
._22{width:282.619037pt;}
._26{width:295.902503pt;}
._1f{width:566.460153pt;}
._2e{width:639.304907pt;}
._25{width:653.812229pt;}
._27{width:665.395412pt;}
._2f{width:712.129524pt;}
._11{width:1425.546538pt;}
._31{width:2165.964102pt;}
._12{width:2186.250538pt;}
._1c{width:2187.217436pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:55.365867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:40.818667pt;}
.y16{bottom:89.120000pt;}
.yb5{bottom:93.374667pt;}
.ya1{bottom:94.985333pt;}
.y12f{bottom:96.353333pt;}
.y11b{bottom:103.081333pt;}
.y15{bottom:105.020000pt;}
.y162{bottom:106.296000pt;}
.y3e{bottom:108.192000pt;}
.y193{bottom:111.210667pt;}
.yb4{bottom:111.945333pt;}
.ya0{bottom:113.556000pt;}
.y12e{bottom:113.685333pt;}
.y14{bottom:120.920000pt;}
.y11a{bottom:121.652000pt;}
.y71{bottom:122.042667pt;}
.y161{bottom:123.318667pt;}
.y3d{bottom:126.761333pt;}
.y192{bottom:128.233333pt;}
.yb3{bottom:130.516000pt;}
.y12d{bottom:131.017333pt;}
.ye9{bottom:131.514667pt;}
.y9f{bottom:136.112000pt;}
.y13{bottom:136.820000pt;}
.y119{bottom:140.222667pt;}
.y160{bottom:140.341333pt;}
.y70{bottom:140.613333pt;}
.y191{bottom:145.256000pt;}
.y3c{bottom:145.332000pt;}
.y12c{bottom:148.349333pt;}
.yb2{bottom:149.085333pt;}
.ye8{bottom:150.084000pt;}
.y12{bottom:152.721333pt;}
.y15f{bottom:157.364000pt;}
.y9e{bottom:157.828000pt;}
.y118{bottom:158.792000pt;}
.y6f{bottom:159.184000pt;}
.y190{bottom:162.278667pt;}
.y3b{bottom:163.902667pt;}
.y12b{bottom:165.681333pt;}
.yb1{bottom:167.656000pt;}
.y11{bottom:168.621333pt;}
.ye7{bottom:168.654667pt;}
.y15e{bottom:174.386667pt;}
.y6e{bottom:177.753333pt;}
.y18f{bottom:179.301333pt;}
.y117{bottom:181.348000pt;}
.y3a{bottom:182.472000pt;}
.y12a{bottom:183.014667pt;}
.y10{bottom:184.521333pt;}
.ybe{bottom:185.660000pt;}
.yb0{bottom:186.226667pt;}
.ye6{bottom:187.225333pt;}
.y15d{bottom:191.409333pt;}
.y9d{bottom:192.338667pt;}
.y6d{bottom:196.324000pt;}
.y129{bottom:200.346667pt;}
.yf{bottom:200.422667pt;}
.y39{bottom:201.042667pt;}
.ybd{bottom:204.230667pt;}
.yaf{bottom:204.796000pt;}
.y15c{bottom:208.432000pt;}
.y9c{bottom:210.909333pt;}
.y18e{bottom:213.346667pt;}
.y6c{bottom:214.894667pt;}
.ycf{bottom:215.732000pt;}
.y116{bottom:215.858667pt;}
.y128{bottom:217.678667pt;}
.y38{bottom:219.613333pt;}
.ybc{bottom:222.801333pt;}
.yae{bottom:223.366667pt;}
.ye{bottom:224.293333pt;}
.ye5{bottom:224.732000pt;}
.y15b{bottom:225.454667pt;}
.y9b{bottom:229.480000pt;}
.y18d{bottom:230.369333pt;}
.y6b{bottom:233.464000pt;}
.yce{bottom:234.302667pt;}
.y115{bottom:234.428000pt;}
.y37{bottom:238.182667pt;}
.yd{bottom:240.193333pt;}
.ybb{bottom:241.372000pt;}
.ye4{bottom:241.880000pt;}
.yad{bottom:241.937333pt;}
.y15a{bottom:242.477333pt;}
.y127{bottom:242.981333pt;}
.y18c{bottom:247.392000pt;}
.y9a{bottom:248.049333pt;}
.y6a{bottom:252.034667pt;}
.ycd{bottom:252.872000pt;}
.y114{bottom:252.998667pt;}
.yc{bottom:256.093333pt;}
.y36{bottom:256.753333pt;}
.ye3{bottom:257.821333pt;}
.y159{bottom:259.500000pt;}
.yba{bottom:259.941333pt;}
.y126{bottom:260.313333pt;}
.yac{bottom:260.506667pt;}
.y18b{bottom:264.414667pt;}
.y99{bottom:266.620000pt;}
.y69{bottom:270.605333pt;}
.ycc{bottom:271.442667pt;}
.y113{bottom:271.569333pt;}
.yb{bottom:271.994667pt;}
.ye2{bottom:273.761333pt;}
.y35{bottom:275.324000pt;}
.y158{bottom:276.522667pt;}
.y125{bottom:277.645333pt;}
.yab{bottom:279.077333pt;}
.y18a{bottom:281.437333pt;}
.y98{bottom:285.190667pt;}
.ya{bottom:287.894667pt;}
.y68{bottom:289.176000pt;}
.ye1{bottom:289.701333pt;}
.ycb{bottom:290.013333pt;}
.y112{bottom:290.138667pt;}
.yb9{bottom:291.610667pt;}
.y157{bottom:293.545333pt;}
.y34{bottom:293.893333pt;}
.y124{bottom:294.977333pt;}
.yaa{bottom:297.648000pt;}
.y189{bottom:298.460000pt;}
.y97{bottom:303.760000pt;}
.y9{bottom:303.794667pt;}
.ye0{bottom:305.641333pt;}
.y67{bottom:307.745333pt;}
.yca{bottom:308.582667pt;}
.yb8{bottom:308.706667pt;}
.y111{bottom:308.709333pt;}
.y156{bottom:310.568000pt;}
.y123{bottom:312.309333pt;}
.y33{bottom:312.464000pt;}
.y188{bottom:315.482667pt;}
.ya9{bottom:316.218667pt;}
.y8{bottom:319.696000pt;}
.y96{bottom:322.330667pt;}
.y66{bottom:326.316000pt;}
.yc9{bottom:327.153333pt;}
.y110{bottom:327.280000pt;}
.y155{bottom:327.590667pt;}
.ydf{bottom:327.984000pt;}
.y196{bottom:328.301333pt;}
.y32{bottom:331.034667pt;}
.y187{bottom:332.506667pt;}
.ya8{bottom:334.788000pt;}
.y122{bottom:337.612000pt;}
.y95{bottom:340.901333pt;}
.y7{bottom:340.909333pt;}
.y154{bottom:344.613333pt;}
.y65{bottom:344.886667pt;}
.y195{bottom:345.324000pt;}
.yc8{bottom:345.724000pt;}
.y10f{bottom:345.849333pt;}
.y186{bottom:349.529333pt;}
.ya7{bottom:353.358667pt;}
.y31{bottom:353.589333pt;}
.y121{bottom:354.944000pt;}
.y6{bottom:356.809333pt;}
.yde{bottom:357.020000pt;}
.y94{bottom:359.472000pt;}
.y153{bottom:361.636000pt;}
.y194{bottom:362.346667pt;}
.y64{bottom:363.456000pt;}
.yc7{bottom:364.293333pt;}
.y10e{bottom:364.420000pt;}
.y185{bottom:366.552000pt;}
.ya6{bottom:371.929333pt;}
.y120{bottom:372.276000pt;}
.y5{bottom:372.710667pt;}
.y93{bottom:378.041333pt;}
.y152{bottom:378.658667pt;}
.y63{bottom:382.026667pt;}
.yc6{bottom:382.864000pt;}
.y10d{bottom:382.990667pt;}
.y184{bottom:383.574667pt;}
.y4{bottom:388.610667pt;}
.y11f{bottom:389.609333pt;}
.ydd{bottom:390.001333pt;}
.ya5{bottom:390.498667pt;}
.y151{bottom:395.681333pt;}
.y92{bottom:396.612000pt;}
.y62{bottom:400.597333pt;}
.yc5{bottom:401.434667pt;}
.y10c{bottom:401.561333pt;}
.y11e{bottom:406.941333pt;}
.ydc{bottom:408.572000pt;}
.ya4{bottom:409.069333pt;}
.y3{bottom:409.824000pt;}
.y150{bottom:412.705333pt;}
.y91{bottom:415.182667pt;}
.y183{bottom:417.620000pt;}
.y61{bottom:419.166667pt;}
.yc4{bottom:420.005333pt;}
.y10b{bottom:420.130667pt;}
.y30{bottom:424.000000pt;}
.y11d{bottom:424.273333pt;}
.y2{bottom:425.725333pt;}
.ydb{bottom:427.141333pt;}
.y14f{bottom:429.728000pt;}
.y90{bottom:433.752000pt;}
.y182{bottom:434.642667pt;}
.y60{bottom:437.737333pt;}
.yc3{bottom:438.574667pt;}
.y10a{bottom:438.701333pt;}
.ya3{bottom:440.738667pt;}
.y11c{bottom:441.605333pt;}
.y1{bottom:441.625333pt;}
.yda{bottom:445.712000pt;}
.y14e{bottom:446.750667pt;}
.y181{bottom:451.665333pt;}
.y8f{bottom:452.322667pt;}
.y5f{bottom:456.308000pt;}
.yc2{bottom:457.145333pt;}
.y109{bottom:457.272000pt;}
.ya2{bottom:457.834667pt;}
.y2f{bottom:458.510667pt;}
.y14d{bottom:463.773333pt;}
.yd9{bottom:464.282667pt;}
.y180{bottom:468.688000pt;}
.y8e{bottom:470.893333pt;}
.y5e{bottom:474.877333pt;}
.yc1{bottom:475.716000pt;}
.y108{bottom:475.841333pt;}
.y2e{bottom:477.081333pt;}
.y14c{bottom:480.796000pt;}
.yd8{bottom:482.853333pt;}
.y17f{bottom:485.710667pt;}
.y8d{bottom:489.462667pt;}
.y5d{bottom:493.448000pt;}
.y107{bottom:494.412000pt;}
.y2d{bottom:495.650667pt;}
.y14b{bottom:497.818667pt;}
.yd7{bottom:501.422667pt;}
.y17e{bottom:502.733333pt;}
.yc0{bottom:507.384000pt;}
.y8c{bottom:508.033333pt;}
.y5c{bottom:512.018667pt;}
.y106{bottom:512.982667pt;}
.y2c{bottom:514.221333pt;}
.y14a{bottom:514.841333pt;}
.y17d{bottom:519.756000pt;}
.yd6{bottom:519.993333pt;}
.ybf{bottom:524.480000pt;}
.y8b{bottom:526.604000pt;}
.y5b{bottom:530.589333pt;}
.y105{bottom:531.552000pt;}
.y149{bottom:531.864000pt;}
.y2b{bottom:532.792000pt;}
.y17c{bottom:536.778667pt;}
.yd5{bottom:538.564000pt;}
.y8a{bottom:545.173333pt;}
.y148{bottom:548.886667pt;}
.y5a{bottom:549.158667pt;}
.y104{bottom:550.122667pt;}
.y2a{bottom:551.361333pt;}
.y17b{bottom:553.801333pt;}
.yd4{bottom:557.133333pt;}
.y89{bottom:563.744000pt;}
.y147{bottom:565.909333pt;}
.y59{bottom:567.729333pt;}
.y103{bottom:568.693333pt;}
.y29{bottom:569.932000pt;}
.y17a{bottom:570.824000pt;}
.yd3{bottom:575.704000pt;}
.y88{bottom:582.314667pt;}
.y146{bottom:582.932000pt;}
.y58{bottom:586.300000pt;}
.y102{bottom:587.262667pt;}
.y179{bottom:587.846667pt;}
.y28{bottom:588.502667pt;}
.yd2{bottom:598.258667pt;}
.y145{bottom:599.954667pt;}
.y87{bottom:600.885333pt;}
.y57{bottom:604.869333pt;}
.y101{bottom:605.833333pt;}
.y27{bottom:607.073333pt;}
.yb7{bottom:613.946667pt;}
.y144{bottom:616.977333pt;}
.y86{bottom:619.454667pt;}
.y178{bottom:621.892000pt;}
.y56{bottom:623.440000pt;}
.y26{bottom:625.642667pt;}
.yd1{bottom:626.833333pt;}
.yb6{bottom:631.042667pt;}
.y143{bottom:634.000000pt;}
.y85{bottom:638.025333pt;}
.y177{bottom:638.914667pt;}
.y55{bottom:642.010667pt;}
.y100{bottom:643.341333pt;}
.yd0{bottom:643.929333pt;}
.y25{bottom:644.213333pt;}
.y142{bottom:651.022667pt;}
.y176{bottom:655.937333pt;}
.y84{bottom:656.596000pt;}
.yff{bottom:660.489333pt;}
.y54{bottom:660.580000pt;}
.y24{bottom:662.784000pt;}
.y141{bottom:668.045333pt;}
.y175{bottom:672.961333pt;}
.y83{bottom:675.165333pt;}
.yfe{bottom:676.429333pt;}
.y53{bottom:679.150667pt;}
.y23{bottom:681.353333pt;}
.y140{bottom:685.068000pt;}
.y174{bottom:689.984000pt;}
.yfd{bottom:692.369333pt;}
.y82{bottom:693.736000pt;}
.y52{bottom:697.721333pt;}
.y22{bottom:699.924000pt;}
.y13f{bottom:702.090667pt;}
.y173{bottom:707.006667pt;}
.yfc{bottom:708.309333pt;}
.y81{bottom:712.306667pt;}
.y51{bottom:716.290667pt;}
.y21{bottom:718.494667pt;}
.y13e{bottom:719.113333pt;}
.y172{bottom:724.029333pt;}
.yfb{bottom:724.250667pt;}
.y80{bottom:730.876000pt;}
.y50{bottom:734.861333pt;}
.y13d{bottom:736.136000pt;}
.y20{bottom:737.064000pt;}
.yfa{bottom:740.190667pt;}
.y171{bottom:741.052000pt;}
.y7f{bottom:749.446667pt;}
.y13c{bottom:753.160000pt;}
.y4f{bottom:753.432000pt;}
.y1f{bottom:755.634667pt;}
.yf9{bottom:756.130667pt;}
.y170{bottom:758.074667pt;}
.y7e{bottom:768.017333pt;}
.y13b{bottom:770.182667pt;}
.y4e{bottom:772.002667pt;}
.yf8{bottom:772.070667pt;}
.y16f{bottom:775.097333pt;}
.y1e{bottom:782.174667pt;}
.y7d{bottom:786.586667pt;}
.y13a{bottom:787.205333pt;}
.yf7{bottom:788.010667pt;}
.y4d{bottom:790.572000pt;}
.y16e{bottom:792.120000pt;}
.yf6{bottom:803.950667pt;}
.y139{bottom:804.228000pt;}
.y7c{bottom:805.157333pt;}
.y4c{bottom:809.142667pt;}
.y1d{bottom:817.748000pt;}
.yf5{bottom:819.892000pt;}
.y138{bottom:821.250667pt;}
.y7b{bottom:823.728000pt;}
.y16d{bottom:826.165333pt;}
.y4b{bottom:827.713333pt;}
.y1c{bottom:832.094667pt;}
.yf4{bottom:835.832000pt;}
.y137{bottom:838.273333pt;}
.y7a{bottom:842.297333pt;}
.y16c{bottom:843.188000pt;}
.y4a{bottom:846.282667pt;}
.y1b{bottom:846.441333pt;}
.yf3{bottom:851.772000pt;}
.y136{bottom:855.296000pt;}
.y16b{bottom:860.210667pt;}
.y79{bottom:860.868000pt;}
.y49{bottom:864.853333pt;}
.yf2{bottom:867.712000pt;}
.y135{bottom:876.304000pt;}
.y16a{bottom:877.233333pt;}
.y78{bottom:879.438667pt;}
.y48{bottom:883.424000pt;}
.yf1{bottom:883.652000pt;}
.y1a{bottom:890.010667pt;}
.y169{bottom:894.256000pt;}
.y77{bottom:898.009333pt;}
.yf0{bottom:899.592000pt;}
.y47{bottom:901.993333pt;}
.y134{bottom:910.813333pt;}
.y168{bottom:911.278667pt;}
.yef{bottom:915.533333pt;}
.y76{bottom:916.578667pt;}
.y46{bottom:920.564000pt;}
.y19{bottom:924.521333pt;}
.y167{bottom:928.301333pt;}
.yee{bottom:931.473333pt;}
.y75{bottom:935.149333pt;}
.y133{bottom:936.116000pt;}
.y45{bottom:939.134667pt;}
.y166{bottom:945.324000pt;}
.yed{bottom:947.413333pt;}
.y18{bottom:952.377333pt;}
.y74{bottom:953.720000pt;}
.y44{bottom:957.704000pt;}
.y132{bottom:961.418667pt;}
.y165{bottom:962.346667pt;}
.yec{bottom:963.353333pt;}
.y73{bottom:972.289333pt;}
.y43{bottom:976.274667pt;}
.y131{bottom:978.750667pt;}
.y164{bottom:979.369333pt;}
.y17{bottom:980.232000pt;}
.yeb{bottom:985.696000pt;}
.y72{bottom:990.860000pt;}
.y42{bottom:994.845333pt;}
.y130{bottom:996.082667pt;}
.y163{bottom:996.392000pt;}
.y41{bottom:1013.414667pt;}
.yea{bottom:1014.732000pt;}
.y40{bottom:1066.841333pt;}
.h2{height:33.771789pt;}
.ha{height:36.873667pt;}
.h5{height:38.256384pt;}
.h6{height:38.596538pt;}
.h3{height:38.947124pt;}
.h9{height:43.421286pt;}
.hd{height:43.660390pt;}
.h8{height:45.907968pt;}
.h7{height:48.245551pt;}
.h4{height:68.861952pt;}
.hb{height:80.122884pt;}
.hc{height:80.128218pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x1a{left:74.718667pt;}
.x15{left:76.309333pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x8{left:229.888000pt;}
.xc{left:233.237333pt;}
.x12{left:237.654667pt;}
.xa{left:238.758667pt;}
.x6{left:241.044000pt;}
.xf{left:243.248000pt;}
.x7{left:244.956000pt;}
.xd{left:248.601333pt;}
.x4{left:250.038667pt;}
.x10{left:258.344000pt;}
.x5{left:342.980000pt;}
.xb{left:352.650667pt;}
.x14{left:354.741333pt;}
.x11{left:358.062667pt;}
.x13{left:373.504000pt;}
.xe{left:377.316000pt;}
.x18{left:559.281333pt;}
.x19{left:575.953333pt;}
.x9{left:579.417333pt;}
.x16{left:660.305333pt;}
.x17{left:666.282667pt;}
}




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