
    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_2fc2dd16ea3c4b086c3d6ec8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.151000;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_73f4d367660349afe68ecf80.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_33a71fa209db8adf9c2deb99.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123000;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_ec46ba35798febfcd1d06b65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.492000;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_7ab8e8319c3134b87ccd2f57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.773000;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_63f42122d0a8a4a17acde7c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.694000;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);}
.m1e{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);}
.m1{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m12{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);}
.m9{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);}
.mc{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);}
.m1a{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);}
.m7{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);}
.m2{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);}
.m23{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);}
.m6{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);}
.m26{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);}
.m18{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);}
.m13{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);}
.m17{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);}
.m21{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);}
.m14{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);}
.m1c{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);}
.m19{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);}
.m11{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);}
.m10{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);}
.mb{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);}
.m15{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);}
.m1b{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);}
.m4{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);}
.m16{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);}
.m8{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);}
.m27{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);}
.m24{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);}
.m29{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);}
.md{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);}
.m1f{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);}
.m25{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);}
.me{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);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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;}
.lsa{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000435px;}
.ls5{letter-spacing:0.000608px;}
.ls3d{letter-spacing:0.000800px;}
.ls20{letter-spacing:0.001608px;}
.ls31{letter-spacing:0.002725px;}
.ls2c{letter-spacing:0.003816px;}
.ls3b{letter-spacing:0.004800px;}
.ls30{letter-spacing:0.717483px;}
.ls9{letter-spacing:11.954850px;}
.ls16{letter-spacing:12.732203px;}
.ls6{letter-spacing:13.150632px;}
.ls3f{letter-spacing:13.442400px;}
.ls38{letter-spacing:13.448400px;}
.ls24{letter-spacing:13.449510px;}
.ls2b{letter-spacing:13.450090px;}
.ls37{letter-spacing:13.454400px;}
.ls39{letter-spacing:13.463660px;}
.ls3c{letter-spacing:13.532218px;}
.ls41{letter-spacing:13.650400px;}
.ls2a{letter-spacing:13.927715px;}
.ls27{letter-spacing:14.346144px;}
.ls1b{letter-spacing:14.405920px;}
.ls1c{letter-spacing:14.465695px;}
.lsf{letter-spacing:14.525471px;}
.ls1d{letter-spacing:14.585246px;}
.ls3a{letter-spacing:14.597459px;}
.ls32{letter-spacing:14.618082px;}
.ls8{letter-spacing:14.645022px;}
.ls7{letter-spacing:14.704798px;}
.ls2d{letter-spacing:14.726825px;}
.lse{letter-spacing:14.764573px;}
.ls2{letter-spacing:14.792542px;}
.ls1{letter-spacing:14.798665px;}
.ls19{letter-spacing:14.824349px;}
.lsb{letter-spacing:14.943900px;}
.ls2e{letter-spacing:14.944200px;}
.ls25{letter-spacing:14.944964px;}
.ls22{letter-spacing:15.003676px;}
.ls12{letter-spacing:15.063451px;}
.ls10{letter-spacing:15.123227px;}
.ls28{letter-spacing:15.147767px;}
.ls3e{letter-spacing:15.162165px;}
.ls18{letter-spacing:15.183002px;}
.ls21{letter-spacing:15.205583px;}
.ls1a{letter-spacing:15.242778px;}
.ls23{letter-spacing:15.362329px;}
.ls40{letter-spacing:15.373929px;}
.ls13{letter-spacing:15.541656px;}
.lsc{letter-spacing:15.601432px;}
.ls2f{letter-spacing:15.693986px;}
.lsd{letter-spacing:15.780758px;}
.ls15{letter-spacing:16.019861px;}
.ls14{letter-spacing:16.079636px;}
.ls35{letter-spacing:16.438290px;}
.ls17{letter-spacing:16.557841px;}
.ls3{letter-spacing:16.697819px;}
.ls4{letter-spacing:16.703886px;}
.ls1e{letter-spacing:16.735682px;}
.ls1f{letter-spacing:16.741786px;}
.ls33{letter-spacing:16.976270px;}
.ls36{letter-spacing:17.334924px;}
.ls11{letter-spacing:17.514251px;}
.ls34{letter-spacing:18.171782px;}
.ls26{letter-spacing:22.415850px;}
.ls0{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;}
}
.ws38{word-spacing:-14.943900px;}
.ws9c{word-spacing:-13.449600px;}
.ws1d{word-spacing:-11.955150px;}
.ws2{word-spacing:-10.460700px;}
.ws85{word-spacing:-3.347434px;}
.ws77{word-spacing:-3.287658px;}
.wsb2{word-spacing:-3.174106px;}
.ws44{word-spacing:-2.809453px;}
.ws61{word-spacing:-2.749678px;}
.ws5c{word-spacing:-2.630126px;}
.ws54{word-spacing:-2.570351px;}
.wsbe{word-spacing:-2.528525px;}
.ws7a{word-spacing:-2.450800px;}
.ws72{word-spacing:-2.391024px;}
.ws2f{word-spacing:-2.331248px;}
.ws28{word-spacing:-2.211697px;}
.wsa1{word-spacing:-2.151936px;}
.ws51{word-spacing:-2.151922px;}
.wsc{word-spacing:-2.092146px;}
.ws24{word-spacing:-1.972595px;}
.ws1a{word-spacing:-1.793268px;}
.wsb{word-spacing:-1.733492px;}
.ws56{word-spacing:-1.554166px;}
.ws55{word-spacing:-1.494390px;}
.ws43{word-spacing:-1.315063px;}
.ws5e{word-spacing:-1.255288px;}
.ws19{word-spacing:-1.195512px;}
.ws63{word-spacing:-1.075961px;}
.wsac{word-spacing:-1.022170px;}
.ws64{word-spacing:-1.016185px;}
.ws9{word-spacing:-0.956410px;}
.ws7b{word-spacing:-0.896634px;}
.ws5b{word-spacing:-0.836858px;}
.wsab{word-spacing:-0.806976px;}
.wsb4{word-spacing:-0.753178px;}
.ws52{word-spacing:-0.717307px;}
.ws3b{word-spacing:-0.657532px;}
.ws95{word-spacing:-0.645581px;}
.ws40{word-spacing:-0.597756px;}
.ws3d{word-spacing:-0.537980px;}
.ws3e{word-spacing:-0.478205px;}
.ws20{word-spacing:-0.418429px;}
.wsbd{word-spacing:-0.376589px;}
.ws16{word-spacing:-0.358654px;}
.wsa2{word-spacing:-0.322790px;}
.ws1b{word-spacing:-0.298878px;}
.wsb1{word-spacing:-0.268992px;}
.ws8{word-spacing:-0.239102px;}
.ws93{word-spacing:-0.215194px;}
.ws65{word-spacing:-0.206562px;}
.ws12{word-spacing:-0.179327px;}
.ws8f{word-spacing:-0.161395px;}
.ws4e{word-spacing:-0.144491px;}
.ws13{word-spacing:-0.119551px;}
.wsa9{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.wsa4{word-spacing:-0.053798px;}
.wsa7{word-spacing:-0.017357px;}
.wsb6{word-spacing:-0.008400px;}
.ws66{word-spacing:-0.007336px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.001386px;}
.ws9d{word-spacing:0.053798px;}
.ws7{word-spacing:0.059776px;}
.ws6a{word-spacing:0.107597px;}
.ws14{word-spacing:0.119551px;}
.wsa3{word-spacing:0.161395px;}
.ws6{word-spacing:0.179327px;}
.ws4{word-spacing:0.191282px;}
.ws90{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.wsc1{word-spacing:0.268992px;}
.ws32{word-spacing:0.298878px;}
.ws94{word-spacing:0.322790px;}
.ws1f{word-spacing:0.358654px;}
.ws97{word-spacing:0.376589px;}
.ws35{word-spacing:0.418429px;}
.ws48{word-spacing:0.450744px;}
.ws47{word-spacing:0.478205px;}
.ws7f{word-spacing:0.537980px;}
.ws1e{word-spacing:0.597756px;}
.ws27{word-spacing:0.657532px;}
.wsba{word-spacing:0.699379px;}
.ws36{word-spacing:0.836858px;}
.ws9a{word-spacing:0.860774px;}
.ws67{word-spacing:0.956410px;}
.wsa8{word-spacing:0.968371px;}
.ws10{word-spacing:1.016185px;}
.wsf{word-spacing:1.030366px;}
.ws26{word-spacing:1.075961px;}
.ws9f{word-spacing:1.075968px;}
.ws82{word-spacing:1.135736px;}
.ws37{word-spacing:1.195512px;}
.wsae{word-spacing:1.237363px;}
.ws2b{word-spacing:1.255288px;}
.ws9b{word-spacing:1.291162px;}
.ws3f{word-spacing:1.315063px;}
.wsb3{word-spacing:1.344960px;}
.ws33{word-spacing:1.374839px;}
.ws34{word-spacing:1.494390px;}
.wsb9{word-spacing:1.506355px;}
.ws2a{word-spacing:1.554166px;}
.ws29{word-spacing:1.613941px;}
.ws3c{word-spacing:1.673717px;}
.ws57{word-spacing:1.733492px;}
.ws6e{word-spacing:1.912819px;}
.ws2d{word-spacing:1.972595px;}
.ws73{word-spacing:2.032370px;}
.ws5a{word-spacing:2.092146px;}
.ws30{word-spacing:2.151922px;}
.wsbf{word-spacing:2.151936px;}
.ws21{word-spacing:2.211697px;}
.ws39{word-spacing:2.271473px;}
.ws4f{word-spacing:2.331248px;}
.ws3{word-spacing:2.510252px;}
.ws22{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws5f{word-spacing:2.630126px;}
.ws6f{word-spacing:2.689902px;}
.wsb5{word-spacing:2.689920px;}
.ws4c{word-spacing:2.749678px;}
.ws4b{word-spacing:2.750744px;}
.ws87{word-spacing:2.809453px;}
.wsbc{word-spacing:2.851315px;}
.ws45{word-spacing:2.869229px;}
.ws5{word-spacing:2.869236px;}
.ws8e{word-spacing:2.905114px;}
.ws3a{word-spacing:2.929004px;}
.ws70{word-spacing:2.988780px;}
.wsaf{word-spacing:3.012710px;}
.ws18{word-spacing:3.048556px;}
.ws68{word-spacing:3.108331px;}
.ws89{word-spacing:3.168107px;}
.ws15{word-spacing:3.210411px;}
.ws58{word-spacing:3.227882px;}
.wsa0{word-spacing:3.227904px;}
.wsb0{word-spacing:3.281702px;}
.ws23{word-spacing:3.287658px;}
.ws9e{word-spacing:3.389299px;}
.ws60{word-spacing:3.407209px;}
.ws92{word-spacing:3.443098px;}
.ws80{word-spacing:3.466985px;}
.wsc0{word-spacing:3.496896px;}
.ws71{word-spacing:3.526760px;}
.wsad{word-spacing:3.550694px;}
.ws2e{word-spacing:3.586536px;}
.ws42{word-spacing:3.646312px;}
.ws25{word-spacing:3.825638px;}
.ws8d{word-spacing:3.873485px;}
.ws69{word-spacing:3.885414px;}
.wsbb{word-spacing:3.981082px;}
.wsb7{word-spacing:4.088678px;}
.ws6d{word-spacing:4.124516px;}
.ws2c{word-spacing:4.184292px;}
.ws99{word-spacing:4.250074px;}
.ws53{word-spacing:4.303843px;}
.ws17{word-spacing:4.303872px;}
.ws31{word-spacing:4.423394px;}
.ws81{word-spacing:4.483170px;}
.wsaa{word-spacing:4.519066px;}
.wsd{word-spacing:4.542946px;}
.ws6c{word-spacing:4.602721px;}
.ws7e{word-spacing:4.662497px;}
.ws96{word-spacing:4.680461px;}
.ws5d{word-spacing:4.782048px;}
.wsb8{word-spacing:4.788058px;}
.wsa{word-spacing:4.901599px;}
.ws7d{word-spacing:4.961375px;}
.ws8a{word-spacing:5.080926px;}
.ws4d{word-spacing:5.200477px;}
.wsa6{word-spacing:5.218445px;}
.ws86{word-spacing:5.260253px;}
.ws6b{word-spacing:5.320028px;}
.ws84{word-spacing:5.379804px;}
.ws62{word-spacing:5.499355px;}
.ws74{word-spacing:5.559131px;}
.ws4a{word-spacing:5.650744px;}
.ws49{word-spacing:5.678682px;}
.ws41{word-spacing:5.917784px;}
.ws7c{word-spacing:6.037336px;}
.ws88{word-spacing:6.156887px;}
.ws8b{word-spacing:6.216662px;}
.ws83{word-spacing:6.336214px;}
.wsa5{word-spacing:6.563405px;}
.ws8c{word-spacing:6.671002px;}
.ws79{word-spacing:6.694867px;}
.ws75{word-spacing:6.993745px;}
.ws76{word-spacing:7.173072px;}
.ws46{word-spacing:7.232848px;}
.ws78{word-spacing:7.292623px;}
.ws59{word-spacing:7.471950px;}
.ws50{word-spacing:8.249033px;}
.ws91{word-spacing:10.272940px;}
.ws98{word-spacing:11.902458px;}
._21{margin-left:-26.600142px;}
._29{margin-left:-23.802740px;}
._5{margin-left:-11.943245px;}
._6{margin-left:-10.329307px;}
._9{margin-left:-6.904058px;}
._3{margin-left:-5.397721px;}
._1{margin-left:-3.849538px;}
._11{margin-left:-2.630133px;}
._2{margin-left:-1.506341px;}
._2c{width:2.905114px;}
._17{width:4.303843px;}
._20{width:5.887873px;}
._a{width:11.094379px;}
._0{width:12.971268px;}
._d{width:14.604471px;}
._15{width:16.671312px;}
._b{width:18.351109px;}
._1a{width:19.498803px;}
._e{width:20.682358px;}
._f{width:21.995191px;}
._14{width:23.611362px;}
._1d{width:24.878600px;}
._4{width:25.937736px;}
._2a{width:27.133801px;}
._10{width:28.154308px;}
._2b{width:29.374225px;}
._16{width:31.095263px;}
._22{width:32.410326px;}
._c{width:33.832990px;}
._1f{width:35.010541px;}
._19{width:36.286554px;}
._18{width:41.125613px;}
._1b{width:43.169934px;}
._7{width:54.426552px;}
._8{width:69.366109px;}
._26{width:71.713267px;}
._28{width:94.685184px;}
._24{width:120.131827px;}
._25{width:140.467622px;}
._27{width:152.195674px;}
._23{width:158.651482px;}
._1c{width:1036.927333px;}
._12{width:1850.616615px;}
._1e{width:2470.272615px;}
._13{width:2494.182615px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y43{bottom:45.921000px;}
.y42{bottom:99.720000px;}
.y19{bottom:100.260000px;}
.y8f{bottom:114.355500px;}
.y10b{bottom:116.515500px;}
.y15e{bottom:116.839500px;}
.y18{bottom:118.147500px;}
.y75{bottom:118.365000px;}
.ybe{bottom:120.322500px;}
.y41{bottom:120.610500px;}
.yef{bottom:122.317500px;}
.y1bb{bottom:125.112000px;}
.y145{bottom:134.773500px;}
.y8e{bottom:135.246000px;}
.y17{bottom:136.035000px;}
.ya9{bottom:137.298000px;}
.y10a{bottom:137.407500px;}
.y15d{bottom:137.731500px;}
.y18a{bottom:138.484500px;}
.y74{bottom:139.255500px;}
.y1be{bottom:139.533000px;}
.ybd{bottom:141.213000px;}
.y40{bottom:141.502500px;}
.yee{bottom:143.208000px;}
.y1ba{bottom:144.262500px;}
.y117{bottom:150.919500px;}
.y16{bottom:153.922500px;}
.y144{bottom:155.664000px;}
.y8d{bottom:156.138000px;}
.y189{bottom:157.635000px;}
.ya8{bottom:158.190000px;}
.y109{bottom:158.299500px;}
.y15c{bottom:158.623500px;}
.y1bd{bottom:158.683500px;}
.y73{bottom:160.147500px;}
.ybc{bottom:162.105000px;}
.y3f{bottom:162.394500px;}
.y1b9{bottom:163.413000px;}
.yed{bottom:164.100000px;}
.yf1{bottom:166.588500px;}
.y116{bottom:170.152500px;}
.y15{bottom:171.811500px;}
.y143{bottom:176.556000px;}
.y188{bottom:176.785500px;}
.y8c{bottom:177.030000px;}
.y1bc{bottom:177.834000px;}
.ya7{bottom:179.082000px;}
.y108{bottom:179.190000px;}
.y15b{bottom:179.514000px;}
.y72{bottom:181.039500px;}
.y1b8{bottom:182.563500px;}
.ybb{bottom:182.997000px;}
.y3e{bottom:183.285000px;}
.yec{bottom:184.992000px;}
.y14{bottom:189.699000px;}
.y187{bottom:195.936000px;}
.y142{bottom:197.448000px;}
.y8b{bottom:197.920500px;}
.ya6{bottom:199.972500px;}
.y107{bottom:200.082000px;}
.y15a{bottom:200.406000px;}
.y1b7{bottom:201.714000px;}
.y71{bottom:201.930000px;}
.yba{bottom:203.887500px;}
.yeb{bottom:205.882500px;}
.y13{bottom:207.586500px;}
.y3d{bottom:208.660500px;}
.y186{bottom:215.086500px;}
.y141{bottom:218.338500px;}
.y8a{bottom:218.812500px;}
.ya5{bottom:220.864500px;}
.y106{bottom:220.974000px;}
.y159{bottom:221.298000px;}
.y70{bottom:222.822000px;}
.yb9{bottom:224.779500px;}
.y12{bottom:225.475500px;}
.yea{bottom:226.774500px;}
.y3c{bottom:233.092500px;}
.y185{bottom:234.237000px;}
.y140{bottom:239.230500px;}
.y89{bottom:239.704500px;}
.y1b6{bottom:240.015000px;}
.ya4{bottom:241.756500px;}
.y105{bottom:241.864500px;}
.y158{bottom:242.190000px;}
.y6f{bottom:243.714000px;}
.yb8{bottom:245.671500px;}
.ye9{bottom:247.666500px;}
.y11{bottom:252.330000px;}
.y184{bottom:253.387500px;}
.y1b5{bottom:259.165500px;}
.y13f{bottom:260.122500px;}
.y88{bottom:260.595000px;}
.ya3{bottom:262.647000px;}
.y104{bottom:262.756500px;}
.y157{bottom:263.080500px;}
.y6e{bottom:264.606000px;}
.yb7{bottom:266.563500px;}
.ye8{bottom:268.557000px;}
.y10{bottom:270.217500px;}
.y183{bottom:272.538000px;}
.y1b4{bottom:278.316000px;}
.y13e{bottom:281.013000px;}
.y87{bottom:281.487000px;}
.ya2{bottom:283.539000px;}
.y156{bottom:283.972500px;}
.y6d{bottom:285.496500px;}
.yf{bottom:288.105000px;}
.y103{bottom:288.130500px;}
.ye7{bottom:289.449000px;}
.y182{bottom:291.688500px;}
.yb6{bottom:291.937500px;}
.y1b3{bottom:297.466500px;}
.y13d{bottom:301.905000px;}
.y86{bottom:302.379000px;}
.ya1{bottom:304.431000px;}
.y155{bottom:304.864500px;}
.ye{bottom:305.994000px;}
.y6c{bottom:306.388500px;}
.ye6{bottom:310.341000px;}
.y181{bottom:310.839000px;}
.y3b{bottom:312.304500px;}
.y1b2{bottom:316.617000px;}
.y13c{bottom:322.797000px;}
.y102{bottom:323.473500px;}
.yd{bottom:323.881500px;}
.ya0{bottom:325.323000px;}
.y154{bottom:325.755000px;}
.y6b{bottom:327.280500px;}
.y85{bottom:327.753000px;}
.y180{bottom:329.989500px;}
.ye5{bottom:331.231500px;}
.y3a{bottom:333.195000px;}
.y1b1{bottom:335.767500px;}
.yc{bottom:341.769000px;}
.y13b{bottom:343.687500px;}
.y101{bottom:344.365500px;}
.y9f{bottom:346.213500px;}
.y6a{bottom:348.171000px;}
.y153{bottom:351.130500px;}
.ye4{bottom:352.123500px;}
.y17f{bottom:353.623500px;}
.y1b0{bottom:354.918000px;}
.yb{bottom:359.658000px;}
.y84{bottom:359.899500px;}
.y13a{bottom:364.579500px;}
.y100{bottom:365.256000px;}
.y9e{bottom:367.105500px;}
.y69{bottom:369.063000px;}
.y39{bottom:372.019500px;}
.ye3{bottom:373.015500px;}
.y1af{bottom:374.070000px;}
.ya{bottom:377.545500px;}
.y139{bottom:385.471500px;}
.yff{bottom:386.148000px;}
.y9d{bottom:387.997500px;}
.y68{bottom:389.955000px;}
.y38{bottom:392.911500px;}
.y1ae{bottom:393.220500px;}
.y17e{bottom:393.523500px;}
.y9{bottom:395.433000px;}
.y138{bottom:406.363500px;}
.yfe{bottom:407.040000px;}
.y9c{bottom:408.888000px;}
.y67{bottom:410.845500px;}
.y1ad{bottom:412.371000px;}
.y17d{bottom:413.023500px;}
.y8{bottom:413.322000px;}
.y37{bottom:413.803500px;}
.ye2{bottom:423.976500px;}
.y137{bottom:427.254000px;}
.yfd{bottom:427.930500px;}
.y9b{bottom:429.780000px;}
.y1ac{bottom:431.521500px;}
.y66{bottom:431.737500px;}
.y17c{bottom:432.522000px;}
.y36{bottom:434.694000px;}
.y7{bottom:437.187000px;}
.ye1{bottom:441.909000px;}
.y136{bottom:448.146000px;}
.yfc{bottom:448.822500px;}
.y9a{bottom:450.672000px;}
.y17b{bottom:452.020500px;}
.y65{bottom:452.629500px;}
.y6{bottom:455.074500px;}
.y35{bottom:455.586000px;}
.yf0{bottom:457.111500px;}
.ye0{bottom:459.841500px;}
.y135{bottom:469.038000px;}
.yfb{bottom:469.714500px;}
.y1ab{bottom:469.822500px;}
.y17a{bottom:471.519000px;}
.y99{bottom:471.562500px;}
.y5{bottom:472.963500px;}
.y64{bottom:473.520000px;}
.y34{bottom:476.478000px;}
.ydf{bottom:477.775500px;}
.yd9{bottom:486.741000px;}
.y1aa{bottom:488.973000px;}
.y134{bottom:489.928500px;}
.yfa{bottom:490.606500px;}
.y4{bottom:490.851000px;}
.y179{bottom:491.017500px;}
.y98{bottom:492.454500px;}
.y63{bottom:494.412000px;}
.yde{bottom:495.708000px;}
.y33{bottom:497.368500px;}
.yd8{bottom:504.673500px;}
.y1a9{bottom:508.123500px;}
.y178{bottom:510.516000px;}
.y133{bottom:510.820500px;}
.yf9{bottom:511.497000px;}
.y97{bottom:513.346500px;}
.ydd{bottom:513.640500px;}
.y3{bottom:514.716000px;}
.y62{bottom:515.304000px;}
.y32{bottom:518.260500px;}
.y1a8{bottom:527.274000px;}
.ydc{bottom:531.573000px;}
.yf8{bottom:532.389000px;}
.y2{bottom:532.605000px;}
.y96{bottom:534.237000px;}
.y177{bottom:536.191500px;}
.y61{bottom:536.194500px;}
.y31{bottom:539.152500px;}
.y1a7{bottom:546.424500px;}
.ydb{bottom:549.505500px;}
.y1{bottom:550.492500px;}
.y95{bottom:555.129000px;}
.y60{bottom:557.086500px;}
.y30{bottom:560.043000px;}
.y176{bottom:560.173500px;}
.y1a6{bottom:565.575000px;}
.yda{bottom:567.438000px;}
.yf7{bottom:568.017000px;}
.y132{bottom:571.537500px;}
.y94{bottom:576.021000px;}
.y5f{bottom:577.978500px;}
.y2f{bottom:580.935000px;}
.y115{bottom:581.016000px;}
.y1a5{bottom:584.725500px;}
.y131{bottom:592.429500px;}
.yd7{bottom:592.573500px;}
.y93{bottom:596.913000px;}
.y5e{bottom:598.870500px;}
.y175{bottom:598.998000px;}
.y2e{bottom:601.827000px;}
.y114{bottom:601.908000px;}
.y1a4{bottom:603.876000px;}
.yd6{bottom:610.506000px;}
.y83{bottom:612.739500px;}
.y130{bottom:613.320000px;}
.y92{bottom:617.803500px;}
.y5d{bottom:619.761000px;}
.y2d{bottom:622.717500px;}
.y113{bottom:622.800000px;}
.y1a3{bottom:623.026500px;}
.y146{bottom:624.244500px;}
.y174{bottom:627.463500px;}
.yd5{bottom:628.438500px;}
.y82{bottom:633.631500px;}
.y12f{bottom:634.212000px;}
.y91{bottom:638.695500px;}
.yb5{bottom:640.653000px;}
.y1a2{bottom:642.177000px;}
.y2c{bottom:643.609500px;}
.y112{bottom:643.692000px;}
.y5c{bottom:645.136500px;}
.yd4{bottom:646.372500px;}
.y173{bottom:646.962000px;}
.y81{bottom:654.522000px;}
.y12e{bottom:655.104000px;}
.y90{bottom:659.587500px;}
.y1a1{bottom:661.327500px;}
.yb4{bottom:661.545000px;}
.yd3{bottom:664.305000px;}
.y2b{bottom:664.501500px;}
.y111{bottom:664.582500px;}
.y172{bottom:666.460500px;}
.y80{bottom:675.414000px;}
.y12d{bottom:675.996000px;}
.y5b{bottom:680.478000px;}
.ycd{bottom:682.237500px;}
.yb3{bottom:682.435500px;}
.y2a{bottom:685.393500px;}
.y110{bottom:685.474500px;}
.y171{bottom:685.960500px;}
.y7f{bottom:696.306000px;}
.y12c{bottom:696.886500px;}
.y1a0{bottom:699.628500px;}
.ycc{bottom:700.170000px;}
.y5a{bottom:701.370000px;}
.yb2{bottom:703.327500px;}
.y170{bottom:705.459000px;}
.y29{bottom:706.284000px;}
.y10f{bottom:706.366500px;}
.y147{bottom:707.811000px;}
.y7e{bottom:717.196500px;}
.y12b{bottom:717.778500px;}
.yd2{bottom:718.102500px;}
.y19f{bottom:718.779000px;}
.y59{bottom:722.262000px;}
.yb1{bottom:724.219500px;}
.y16f{bottom:724.957500px;}
.y28{bottom:727.176000px;}
.y10e{bottom:727.257000px;}
.yd1{bottom:736.035000px;}
.y19e{bottom:737.929500px;}
.y7d{bottom:738.088500px;}
.y12a{bottom:738.670500px;}
.y58{bottom:743.152500px;}
.yb0{bottom:745.110000px;}
.y27{bottom:748.068000px;}
.y10d{bottom:748.149000px;}
.y16e{bottom:753.423000px;}
.yd0{bottom:753.969000px;}
.y19d{bottom:757.081500px;}
.y7c{bottom:758.980500px;}
.y129{bottom:759.561000px;}
.y57{bottom:764.044500px;}
.yaf{bottom:766.002000px;}
.y26{bottom:768.958500px;}
.ycf{bottom:771.901500px;}
.y16d{bottom:772.921500px;}
.y19c{bottom:776.232000px;}
.y7b{bottom:779.871000px;}
.y128{bottom:780.453000px;}
.y10c{bottom:783.777000px;}
.y56{bottom:784.936500px;}
.yae{bottom:786.894000px;}
.yce{bottom:789.834000px;}
.y16c{bottom:792.420000px;}
.y19b{bottom:795.382500px;}
.y25{bottom:798.817500px;}
.y7a{bottom:800.763000px;}
.y127{bottom:801.345000px;}
.y55{bottom:805.827000px;}
.yad{bottom:807.784500px;}
.y19a{bottom:814.533000px;}
.ycb{bottom:814.969500px;}
.y16b{bottom:820.885500px;}
.y79{bottom:821.655000px;}
.y126{bottom:822.235500px;}
.y54{bottom:826.719000px;}
.yac{bottom:828.676500px;}
.yc9{bottom:832.902000px;}
.y199{bottom:833.683500px;}
.y24{bottom:837.301500px;}
.y78{bottom:842.545500px;}
.y125{bottom:843.127500px;}
.y53{bottom:847.611000px;}
.y16a{bottom:849.349500px;}
.yab{bottom:849.568500px;}
.yc8{bottom:850.834500px;}
.y198{bottom:852.834000px;}
.y23{bottom:853.441500px;}
.y124{bottom:864.019500px;}
.y77{bottom:867.921000px;}
.y52{bottom:868.503000px;}
.yc7{bottom:868.767000px;}
.y169{bottom:868.849500px;}
.y22{bottom:869.580000px;}
.y152{bottom:870.460500px;}
.y197{bottom:871.984500px;}
.yaa{bottom:874.942500px;}
.y123{bottom:884.910000px;}
.y21{bottom:885.720000px;}
.yca{bottom:886.699500px;}
.y168{bottom:888.348000px;}
.y51{bottom:889.393500px;}
.y196{bottom:891.135000px;}
.y151{bottom:891.351000px;}
.y76{bottom:892.353000px;}
.y20{bottom:901.860000px;}
.y122{bottom:905.802000px;}
.y50{bottom:910.285500px;}
.yc6{bottom:911.835000px;}
.y150{bottom:912.243000px;}
.y167{bottom:916.813500px;}
.y121{bottom:926.694000px;}
.y195{bottom:929.436000px;}
.yc5{bottom:929.767500px;}
.y4f{bottom:931.177500px;}
.y14f{bottom:933.135000px;}
.y166{bottom:936.312000px;}
.y120{bottom:947.584500px;}
.yc2{bottom:947.700000px;}
.y194{bottom:948.586500px;}
.y1f{bottom:949.341000px;}
.y4e{bottom:952.068000px;}
.y14e{bottom:954.025500px;}
.y165{bottom:964.776000px;}
.yc1{bottom:965.634000px;}
.y193{bottom:967.737000px;}
.yf6{bottom:967.896000px;}
.y11f{bottom:968.476500px;}
.y1e{bottom:970.231500px;}
.y4d{bottom:972.960000px;}
.y14d{bottom:974.917500px;}
.yc4{bottom:983.566500px;}
.y164{bottom:984.276000px;}
.y192{bottom:986.887500px;}
.yf5{bottom:988.786500px;}
.y11e{bottom:989.368500px;}
.y4c{bottom:993.852000px;}
.y14c{bottom:995.809500px;}
.yc3{bottom:1001.499000px;}
.y163{bottom:1003.774500px;}
.y191{bottom:1006.038000px;}
.y1d{bottom:1009.056000px;}
.yf4{bottom:1009.678500px;}
.y11d{bottom:1010.260500px;}
.y4b{bottom:1014.742500px;}
.y14b{bottom:1016.700000px;}
.y162{bottom:1023.273000px;}
.y190{bottom:1025.188500px;}
.yc0{bottom:1026.634500px;}
.y11c{bottom:1031.151000px;}
.yf3{bottom:1035.052500px;}
.y4a{bottom:1035.634500px;}
.y14a{bottom:1037.592000px;}
.y1c{bottom:1040.394000px;}
.y161{bottom:1042.771500px;}
.y18f{bottom:1044.339000px;}
.y11b{bottom:1052.043000px;}
.y49{bottom:1056.526500px;}
.y149{bottom:1058.484000px;}
.yf2{bottom:1059.484500px;}
.y160{bottom:1062.270000px;}
.ybf{bottom:1062.288000px;}
.y18e{bottom:1063.489500px;}
.y1b{bottom:1071.730500px;}
.y11a{bottom:1072.935000px;}
.y48{bottom:1077.417000px;}
.y15f{bottom:1081.768500px;}
.y18d{bottom:1082.640000px;}
.y148{bottom:1083.858000px;}
.y119{bottom:1093.825500px;}
.y47{bottom:1098.309000px;}
.y18c{bottom:1101.790500px;}
.y1a{bottom:1103.068500px;}
.y118{bottom:1114.717500px;}
.y46{bottom:1119.201000px;}
.y18b{bottom:1120.941000px;}
.y45{bottom:1140.091500px;}
.y44{bottom:1200.196500px;}
.ha{height:28.214083px;}
.h2{height:36.319550px;}
.hb{height:39.614278px;}
.h6{height:41.508281px;}
.h5{height:43.217759px;}
.hc{height:45.567245px;}
.h9{height:46.697011px;}
.h3{height:50.629933px;}
.h8{height:51.861658px;}
.h7{height:51.885221px;}
.h4{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x8{left:62.541000px;}
.x23{left:85.431000px;}
.x24{left:105.192000px;}
.x7{left:183.360000px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x15{left:253.857000px;}
.x4{left:281.479500px;}
.xc{left:320.329500px;}
.xd{left:333.907500px;}
.x1c{left:349.762500px;}
.x9{left:357.798000px;}
.x1d{left:365.629500px;}
.x16{left:373.153500px;}
.x14{left:384.504000px;}
.x5{left:433.861500px;}
.x6{left:447.424500px;}
.x12{left:528.634500px;}
.x1e{left:539.169000px;}
.x13{left:545.104500px;}
.x10{left:555.330000px;}
.x19{left:558.198000px;}
.x11{left:568.047000px;}
.xa{left:576.163500px;}
.x21{left:579.052500px;}
.xb{left:589.929000px;}
.x22{left:591.343500px;}
.x17{left:710.988000px;}
.x18{left:740.506500px;}
.xe{left:751.239000px;}
.xf{left:764.577000px;}
.x1a{left:775.957500px;}
.x1f{left:778.723500px;}
.x1b{left:792.394500px;}
.x20{left:794.590500px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000387pt;}
.ls5{letter-spacing:0.000540pt;}
.ls3d{letter-spacing:0.000711pt;}
.ls20{letter-spacing:0.001429pt;}
.ls31{letter-spacing:0.002422pt;}
.ls2c{letter-spacing:0.003392pt;}
.ls3b{letter-spacing:0.004267pt;}
.ls30{letter-spacing:0.637762pt;}
.ls9{letter-spacing:10.626533pt;}
.ls16{letter-spacing:11.317514pt;}
.ls6{letter-spacing:11.689451pt;}
.ls3f{letter-spacing:11.948800pt;}
.ls38{letter-spacing:11.954133pt;}
.ls24{letter-spacing:11.955120pt;}
.ls2b{letter-spacing:11.955635pt;}
.ls37{letter-spacing:11.959467pt;}
.ls39{letter-spacing:11.967698pt;}
.ls3c{letter-spacing:12.028638pt;}
.ls41{letter-spacing:12.133689pt;}
.ls2a{letter-spacing:12.380191pt;}
.ls27{letter-spacing:12.752128pt;}
.ls1b{letter-spacing:12.805262pt;}
.ls1c{letter-spacing:12.858396pt;}
.lsf{letter-spacing:12.911530pt;}
.ls1d{letter-spacing:12.964663pt;}
.ls3a{letter-spacing:12.975519pt;}
.ls32{letter-spacing:12.993851pt;}
.ls8{letter-spacing:13.017797pt;}
.ls7{letter-spacing:13.070931pt;}
.ls2d{letter-spacing:13.090511pt;}
.lse{letter-spacing:13.124065pt;}
.ls2{letter-spacing:13.148927pt;}
.ls1{letter-spacing:13.154369pt;}
.ls19{letter-spacing:13.177199pt;}
.lsb{letter-spacing:13.283467pt;}
.ls2e{letter-spacing:13.283733pt;}
.ls25{letter-spacing:13.284413pt;}
.ls22{letter-spacing:13.336601pt;}
.ls12{letter-spacing:13.389734pt;}
.ls10{letter-spacing:13.442868pt;}
.ls28{letter-spacing:13.464682pt;}
.ls3e{letter-spacing:13.477480pt;}
.ls18{letter-spacing:13.496002pt;}
.ls21{letter-spacing:13.516074pt;}
.ls1a{letter-spacing:13.549136pt;}
.ls23{letter-spacing:13.655404pt;}
.ls40{letter-spacing:13.665715pt;}
.ls13{letter-spacing:13.814805pt;}
.lsc{letter-spacing:13.867939pt;}
.ls2f{letter-spacing:13.950210pt;}
.lsd{letter-spacing:14.027341pt;}
.ls15{letter-spacing:14.239876pt;}
.ls14{letter-spacing:14.293010pt;}
.ls35{letter-spacing:14.611813pt;}
.ls17{letter-spacing:14.718081pt;}
.ls3{letter-spacing:14.842506pt;}
.ls4{letter-spacing:14.847898pt;}
.ls1e{letter-spacing:14.876162pt;}
.ls1f{letter-spacing:14.881587pt;}
.ls33{letter-spacing:15.090018pt;}
.ls36{letter-spacing:15.408821pt;}
.ls11{letter-spacing:15.568223pt;}
.ls34{letter-spacing:16.152695pt;}
.ls26{letter-spacing:19.925200pt;}
.ls0{letter-spacing:25.292137pt;}
.ws38{word-spacing:-13.283467pt;}
.ws9c{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws2{word-spacing:-9.298400pt;}
.ws85{word-spacing:-2.975497pt;}
.ws77{word-spacing:-2.922363pt;}
.wsb2{word-spacing:-2.821427pt;}
.ws44{word-spacing:-2.497292pt;}
.ws61{word-spacing:-2.444158pt;}
.ws5c{word-spacing:-2.337890pt;}
.ws54{word-spacing:-2.284756pt;}
.wsbe{word-spacing:-2.247578pt;}
.ws7a{word-spacing:-2.178489pt;}
.ws72{word-spacing:-2.125355pt;}
.ws2f{word-spacing:-2.072221pt;}
.ws28{word-spacing:-1.965953pt;}
.wsa1{word-spacing:-1.912832pt;}
.ws51{word-spacing:-1.912819pt;}
.wsc{word-spacing:-1.859685pt;}
.ws24{word-spacing:-1.753418pt;}
.ws1a{word-spacing:-1.594016pt;}
.wsb{word-spacing:-1.540882pt;}
.ws56{word-spacing:-1.381481pt;}
.ws55{word-spacing:-1.328347pt;}
.ws43{word-spacing:-1.168945pt;}
.ws5e{word-spacing:-1.115811pt;}
.ws19{word-spacing:-1.062677pt;}
.ws63{word-spacing:-0.956410pt;}
.wsac{word-spacing:-0.908595pt;}
.ws64{word-spacing:-0.903276pt;}
.ws9{word-spacing:-0.850142pt;}
.ws7b{word-spacing:-0.797008pt;}
.ws5b{word-spacing:-0.743874pt;}
.wsab{word-spacing:-0.717312pt;}
.wsb4{word-spacing:-0.669491pt;}
.ws52{word-spacing:-0.637606pt;}
.ws3b{word-spacing:-0.584473pt;}
.ws95{word-spacing:-0.573850pt;}
.ws40{word-spacing:-0.531339pt;}
.ws3d{word-spacing:-0.478205pt;}
.ws3e{word-spacing:-0.425071pt;}
.ws20{word-spacing:-0.371937pt;}
.wsbd{word-spacing:-0.334746pt;}
.ws16{word-spacing:-0.318803pt;}
.wsa2{word-spacing:-0.286925pt;}
.ws1b{word-spacing:-0.265669pt;}
.wsb1{word-spacing:-0.239104pt;}
.ws8{word-spacing:-0.212535pt;}
.ws93{word-spacing:-0.191283pt;}
.ws65{word-spacing:-0.183611pt;}
.ws12{word-spacing:-0.159402pt;}
.ws8f{word-spacing:-0.143462pt;}
.ws4e{word-spacing:-0.128436pt;}
.ws13{word-spacing:-0.106268pt;}
.wsa9{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.wsa4{word-spacing:-0.047821pt;}
.wsa7{word-spacing:-0.015428pt;}
.wsb6{word-spacing:-0.007467pt;}
.ws66{word-spacing:-0.006521pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.001232pt;}
.ws9d{word-spacing:0.047821pt;}
.ws7{word-spacing:0.053134pt;}
.ws6a{word-spacing:0.095642pt;}
.ws14{word-spacing:0.106268pt;}
.wsa3{word-spacing:0.143462pt;}
.ws6{word-spacing:0.159402pt;}
.ws4{word-spacing:0.170029pt;}
.ws90{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.wsc1{word-spacing:0.239104pt;}
.ws32{word-spacing:0.265669pt;}
.ws94{word-spacing:0.286925pt;}
.ws1f{word-spacing:0.318803pt;}
.ws97{word-spacing:0.334746pt;}
.ws35{word-spacing:0.371937pt;}
.ws48{word-spacing:0.400661pt;}
.ws47{word-spacing:0.425071pt;}
.ws7f{word-spacing:0.478205pt;}
.ws1e{word-spacing:0.531339pt;}
.ws27{word-spacing:0.584473pt;}
.wsba{word-spacing:0.621670pt;}
.ws36{word-spacing:0.743874pt;}
.ws9a{word-spacing:0.765133pt;}
.ws67{word-spacing:0.850142pt;}
.wsa8{word-spacing:0.860774pt;}
.ws10{word-spacing:0.903276pt;}
.wsf{word-spacing:0.915881pt;}
.ws26{word-spacing:0.956410pt;}
.ws9f{word-spacing:0.956416pt;}
.ws82{word-spacing:1.009543pt;}
.ws37{word-spacing:1.062677pt;}
.wsae{word-spacing:1.099878pt;}
.ws2b{word-spacing:1.115811pt;}
.ws9b{word-spacing:1.147699pt;}
.ws3f{word-spacing:1.168945pt;}
.wsb3{word-spacing:1.195520pt;}
.ws33{word-spacing:1.222079pt;}
.ws34{word-spacing:1.328347pt;}
.wsb9{word-spacing:1.338982pt;}
.ws2a{word-spacing:1.381481pt;}
.ws29{word-spacing:1.434614pt;}
.ws3c{word-spacing:1.487748pt;}
.ws57{word-spacing:1.540882pt;}
.ws6e{word-spacing:1.700284pt;}
.ws2d{word-spacing:1.753418pt;}
.ws73{word-spacing:1.806551pt;}
.ws5a{word-spacing:1.859685pt;}
.ws30{word-spacing:1.912819pt;}
.wsbf{word-spacing:1.912832pt;}
.ws21{word-spacing:1.965953pt;}
.ws39{word-spacing:2.019087pt;}
.ws4f{word-spacing:2.072221pt;}
.ws3{word-spacing:2.231335pt;}
.ws22{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws5f{word-spacing:2.337890pt;}
.ws6f{word-spacing:2.391024pt;}
.wsb5{word-spacing:2.391040pt;}
.ws4c{word-spacing:2.444158pt;}
.ws4b{word-spacing:2.445106pt;}
.ws87{word-spacing:2.497292pt;}
.wsbc{word-spacing:2.534502pt;}
.ws45{word-spacing:2.550426pt;}
.ws5{word-spacing:2.550432pt;}
.ws8e{word-spacing:2.582323pt;}
.ws3a{word-spacing:2.603559pt;}
.ws70{word-spacing:2.656693pt;}
.wsaf{word-spacing:2.677965pt;}
.ws18{word-spacing:2.709827pt;}
.ws68{word-spacing:2.762961pt;}
.ws89{word-spacing:2.816095pt;}
.ws15{word-spacing:2.853698pt;}
.ws58{word-spacing:2.869229pt;}
.wsa0{word-spacing:2.869248pt;}
.wsb0{word-spacing:2.917069pt;}
.ws23{word-spacing:2.922363pt;}
.ws9e{word-spacing:3.012710pt;}
.ws60{word-spacing:3.028630pt;}
.ws92{word-spacing:3.060531pt;}
.ws80{word-spacing:3.081764pt;}
.wsc0{word-spacing:3.108352pt;}
.ws71{word-spacing:3.134898pt;}
.wsad{word-spacing:3.156173pt;}
.ws2e{word-spacing:3.188032pt;}
.ws42{word-spacing:3.241166pt;}
.ws25{word-spacing:3.400567pt;}
.ws8d{word-spacing:3.443098pt;}
.ws69{word-spacing:3.453701pt;}
.wsbb{word-spacing:3.538739pt;}
.wsb7{word-spacing:3.634381pt;}
.ws6d{word-spacing:3.666237pt;}
.ws2c{word-spacing:3.719371pt;}
.ws99{word-spacing:3.777843pt;}
.ws53{word-spacing:3.825638pt;}
.ws17{word-spacing:3.825664pt;}
.ws31{word-spacing:3.931906pt;}
.ws81{word-spacing:3.985040pt;}
.wsaa{word-spacing:4.016947pt;}
.wsd{word-spacing:4.038174pt;}
.ws6c{word-spacing:4.091308pt;}
.ws7e{word-spacing:4.144442pt;}
.ws96{word-spacing:4.160410pt;}
.ws5d{word-spacing:4.250709pt;}
.wsb8{word-spacing:4.256051pt;}
.wsa{word-spacing:4.356977pt;}
.ws7d{word-spacing:4.410111pt;}
.ws8a{word-spacing:4.516379pt;}
.ws4d{word-spacing:4.622646pt;}
.wsa6{word-spacing:4.638618pt;}
.ws86{word-spacing:4.675780pt;}
.ws6b{word-spacing:4.728914pt;}
.ws84{word-spacing:4.782048pt;}
.ws62{word-spacing:4.888316pt;}
.ws74{word-spacing:4.941450pt;}
.ws4a{word-spacing:5.022883pt;}
.ws49{word-spacing:5.047717pt;}
.ws41{word-spacing:5.260253pt;}
.ws7c{word-spacing:5.366521pt;}
.ws88{word-spacing:5.472788pt;}
.ws8b{word-spacing:5.525922pt;}
.ws83{word-spacing:5.632190pt;}
.wsa5{word-spacing:5.834138pt;}
.ws8c{word-spacing:5.929779pt;}
.ws79{word-spacing:5.950993pt;}
.ws75{word-spacing:6.216662pt;}
.ws76{word-spacing:6.376064pt;}
.ws46{word-spacing:6.429198pt;}
.ws78{word-spacing:6.482332pt;}
.ws59{word-spacing:6.641733pt;}
.ws50{word-spacing:7.332474pt;}
.ws91{word-spacing:9.131502pt;}
.ws98{word-spacing:10.579963pt;}
._21{margin-left:-23.644571pt;}
._29{margin-left:-21.157991pt;}
._5{margin-left:-10.616218pt;}
._6{margin-left:-9.181606pt;}
._9{margin-left:-6.136941pt;}
._3{margin-left:-4.797974pt;}
._1{margin-left:-3.421811pt;}
._11{margin-left:-2.337896pt;}
._2{margin-left:-1.338970pt;}
._2c{width:2.582323pt;}
._17{width:3.825638pt;}
._20{width:5.233665pt;}
._a{width:9.861670pt;}
._0{width:11.530016pt;}
._d{width:12.981752pt;}
._15{width:14.818944pt;}
._b{width:16.312097pt;}
._1a{width:17.332269pt;}
._e{width:18.384318pt;}
._f{width:19.551281pt;}
._14{width:20.987877pt;}
._1d{width:22.114311pt;}
._4{width:23.055765pt;}
._2a{width:24.118934pt;}
._10{width:25.026051pt;}
._2b{width:26.110422pt;}
._16{width:27.640234pt;}
._22{width:28.809179pt;}
._c{width:30.073769pt;}
._1f{width:31.120481pt;}
._19{width:32.254715pt;}
._18{width:36.556100pt;}
._1b{width:38.373275pt;}
._7{width:48.379157pt;}
._8{width:61.658764pt;}
._26{width:63.745126pt;}
._28{width:84.164608pt;}
._24{width:106.783846pt;}
._25{width:124.860109pt;}
._27{width:135.285043pt;}
._23{width:141.023539pt;}
._1c{width:921.713185pt;}
._12{width:1644.992547pt;}
._1e{width:2195.797880pt;}
._13{width:2217.051213pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:40.818667pt;}
.y42{bottom:88.640000pt;}
.y19{bottom:89.120000pt;}
.y8f{bottom:101.649333pt;}
.y10b{bottom:103.569333pt;}
.y15e{bottom:103.857333pt;}
.y18{bottom:105.020000pt;}
.y75{bottom:105.213333pt;}
.ybe{bottom:106.953333pt;}
.y41{bottom:107.209333pt;}
.yef{bottom:108.726667pt;}
.y1bb{bottom:111.210667pt;}
.y145{bottom:119.798667pt;}
.y8e{bottom:120.218667pt;}
.y17{bottom:120.920000pt;}
.ya9{bottom:122.042667pt;}
.y10a{bottom:122.140000pt;}
.y15d{bottom:122.428000pt;}
.y18a{bottom:123.097333pt;}
.y74{bottom:123.782667pt;}
.y1be{bottom:124.029333pt;}
.ybd{bottom:125.522667pt;}
.y40{bottom:125.780000pt;}
.yee{bottom:127.296000pt;}
.y1ba{bottom:128.233333pt;}
.y117{bottom:134.150667pt;}
.y16{bottom:136.820000pt;}
.y144{bottom:138.368000pt;}
.y8d{bottom:138.789333pt;}
.y189{bottom:140.120000pt;}
.ya8{bottom:140.613333pt;}
.y109{bottom:140.710667pt;}
.y15c{bottom:140.998667pt;}
.y1bd{bottom:141.052000pt;}
.y73{bottom:142.353333pt;}
.ybc{bottom:144.093333pt;}
.y3f{bottom:144.350667pt;}
.y1b9{bottom:145.256000pt;}
.yed{bottom:145.866667pt;}
.yf1{bottom:148.078667pt;}
.y116{bottom:151.246667pt;}
.y15{bottom:152.721333pt;}
.y143{bottom:156.938667pt;}
.y188{bottom:157.142667pt;}
.y8c{bottom:157.360000pt;}
.y1bc{bottom:158.074667pt;}
.ya7{bottom:159.184000pt;}
.y108{bottom:159.280000pt;}
.y15b{bottom:159.568000pt;}
.y72{bottom:160.924000pt;}
.y1b8{bottom:162.278667pt;}
.ybb{bottom:162.664000pt;}
.y3e{bottom:162.920000pt;}
.yec{bottom:164.437333pt;}
.y14{bottom:168.621333pt;}
.y187{bottom:174.165333pt;}
.y142{bottom:175.509333pt;}
.y8b{bottom:175.929333pt;}
.ya6{bottom:177.753333pt;}
.y107{bottom:177.850667pt;}
.y15a{bottom:178.138667pt;}
.y1b7{bottom:179.301333pt;}
.y71{bottom:179.493333pt;}
.yba{bottom:181.233333pt;}
.yeb{bottom:183.006667pt;}
.y13{bottom:184.521333pt;}
.y3d{bottom:185.476000pt;}
.y186{bottom:191.188000pt;}
.y141{bottom:194.078667pt;}
.y8a{bottom:194.500000pt;}
.ya5{bottom:196.324000pt;}
.y106{bottom:196.421333pt;}
.y159{bottom:196.709333pt;}
.y70{bottom:198.064000pt;}
.yb9{bottom:199.804000pt;}
.y12{bottom:200.422667pt;}
.yea{bottom:201.577333pt;}
.y3c{bottom:207.193333pt;}
.y185{bottom:208.210667pt;}
.y140{bottom:212.649333pt;}
.y89{bottom:213.070667pt;}
.y1b6{bottom:213.346667pt;}
.ya4{bottom:214.894667pt;}
.y105{bottom:214.990667pt;}
.y158{bottom:215.280000pt;}
.y6f{bottom:216.634667pt;}
.yb8{bottom:218.374667pt;}
.ye9{bottom:220.148000pt;}
.y11{bottom:224.293333pt;}
.y184{bottom:225.233333pt;}
.y1b5{bottom:230.369333pt;}
.y13f{bottom:231.220000pt;}
.y88{bottom:231.640000pt;}
.ya3{bottom:233.464000pt;}
.y104{bottom:233.561333pt;}
.y157{bottom:233.849333pt;}
.y6e{bottom:235.205333pt;}
.yb7{bottom:236.945333pt;}
.ye8{bottom:238.717333pt;}
.y10{bottom:240.193333pt;}
.y183{bottom:242.256000pt;}
.y1b4{bottom:247.392000pt;}
.y13e{bottom:249.789333pt;}
.y87{bottom:250.210667pt;}
.ya2{bottom:252.034667pt;}
.y156{bottom:252.420000pt;}
.y6d{bottom:253.774667pt;}
.yf{bottom:256.093333pt;}
.y103{bottom:256.116000pt;}
.ye7{bottom:257.288000pt;}
.y182{bottom:259.278667pt;}
.yb6{bottom:259.500000pt;}
.y1b3{bottom:264.414667pt;}
.y13d{bottom:268.360000pt;}
.y86{bottom:268.781333pt;}
.ya1{bottom:270.605333pt;}
.y155{bottom:270.990667pt;}
.ye{bottom:271.994667pt;}
.y6c{bottom:272.345333pt;}
.ye6{bottom:275.858667pt;}
.y181{bottom:276.301333pt;}
.y3b{bottom:277.604000pt;}
.y1b2{bottom:281.437333pt;}
.y13c{bottom:286.930667pt;}
.y102{bottom:287.532000pt;}
.yd{bottom:287.894667pt;}
.ya0{bottom:289.176000pt;}
.y154{bottom:289.560000pt;}
.y6b{bottom:290.916000pt;}
.y85{bottom:291.336000pt;}
.y180{bottom:293.324000pt;}
.ye5{bottom:294.428000pt;}
.y3a{bottom:296.173333pt;}
.y1b1{bottom:298.460000pt;}
.yc{bottom:303.794667pt;}
.y13b{bottom:305.500000pt;}
.y101{bottom:306.102667pt;}
.y9f{bottom:307.745333pt;}
.y6a{bottom:309.485333pt;}
.y153{bottom:312.116000pt;}
.ye4{bottom:312.998667pt;}
.y17f{bottom:314.332000pt;}
.y1b0{bottom:315.482667pt;}
.yb{bottom:319.696000pt;}
.y84{bottom:319.910667pt;}
.y13a{bottom:324.070667pt;}
.y100{bottom:324.672000pt;}
.y9e{bottom:326.316000pt;}
.y69{bottom:328.056000pt;}
.y39{bottom:330.684000pt;}
.ye3{bottom:331.569333pt;}
.y1af{bottom:332.506667pt;}
.ya{bottom:335.596000pt;}
.y139{bottom:342.641333pt;}
.yff{bottom:343.242667pt;}
.y9d{bottom:344.886667pt;}
.y68{bottom:346.626667pt;}
.y38{bottom:349.254667pt;}
.y1ae{bottom:349.529333pt;}
.y17e{bottom:349.798667pt;}
.y9{bottom:351.496000pt;}
.y138{bottom:361.212000pt;}
.yfe{bottom:361.813333pt;}
.y9c{bottom:363.456000pt;}
.y67{bottom:365.196000pt;}
.y1ad{bottom:366.552000pt;}
.y17d{bottom:367.132000pt;}
.y8{bottom:367.397333pt;}
.y37{bottom:367.825333pt;}
.ye2{bottom:376.868000pt;}
.y137{bottom:379.781333pt;}
.yfd{bottom:380.382667pt;}
.y9b{bottom:382.026667pt;}
.y1ac{bottom:383.574667pt;}
.y66{bottom:383.766667pt;}
.y17c{bottom:384.464000pt;}
.y36{bottom:386.394667pt;}
.y7{bottom:388.610667pt;}
.ye1{bottom:392.808000pt;}
.y136{bottom:398.352000pt;}
.yfc{bottom:398.953333pt;}
.y9a{bottom:400.597333pt;}
.y17b{bottom:401.796000pt;}
.y65{bottom:402.337333pt;}
.y6{bottom:404.510667pt;}
.y35{bottom:404.965333pt;}
.yf0{bottom:406.321333pt;}
.ye0{bottom:408.748000pt;}
.y135{bottom:416.922667pt;}
.yfb{bottom:417.524000pt;}
.y1ab{bottom:417.620000pt;}
.y17a{bottom:419.128000pt;}
.y99{bottom:419.166667pt;}
.y5{bottom:420.412000pt;}
.y64{bottom:420.906667pt;}
.y34{bottom:423.536000pt;}
.ydf{bottom:424.689333pt;}
.yd9{bottom:432.658667pt;}
.y1aa{bottom:434.642667pt;}
.y134{bottom:435.492000pt;}
.yfa{bottom:436.094667pt;}
.y4{bottom:436.312000pt;}
.y179{bottom:436.460000pt;}
.y98{bottom:437.737333pt;}
.y63{bottom:439.477333pt;}
.yde{bottom:440.629333pt;}
.y33{bottom:442.105333pt;}
.yd8{bottom:448.598667pt;}
.y1a9{bottom:451.665333pt;}
.y178{bottom:453.792000pt;}
.y133{bottom:454.062667pt;}
.yf9{bottom:454.664000pt;}
.y97{bottom:456.308000pt;}
.ydd{bottom:456.569333pt;}
.y3{bottom:457.525333pt;}
.y62{bottom:458.048000pt;}
.y32{bottom:460.676000pt;}
.y1a8{bottom:468.688000pt;}
.ydc{bottom:472.509333pt;}
.yf8{bottom:473.234667pt;}
.y2{bottom:473.426667pt;}
.y96{bottom:474.877333pt;}
.y177{bottom:476.614667pt;}
.y61{bottom:476.617333pt;}
.y31{bottom:479.246667pt;}
.y1a7{bottom:485.710667pt;}
.ydb{bottom:488.449333pt;}
.y1{bottom:489.326667pt;}
.y95{bottom:493.448000pt;}
.y60{bottom:495.188000pt;}
.y30{bottom:497.816000pt;}
.y176{bottom:497.932000pt;}
.y1a6{bottom:502.733333pt;}
.yda{bottom:504.389333pt;}
.yf7{bottom:504.904000pt;}
.y132{bottom:508.033333pt;}
.y94{bottom:512.018667pt;}
.y5f{bottom:513.758667pt;}
.y2f{bottom:516.386667pt;}
.y115{bottom:516.458667pt;}
.y1a5{bottom:519.756000pt;}
.y131{bottom:526.604000pt;}
.yd7{bottom:526.732000pt;}
.y93{bottom:530.589333pt;}
.y5e{bottom:532.329333pt;}
.y175{bottom:532.442667pt;}
.y2e{bottom:534.957333pt;}
.y114{bottom:535.029333pt;}
.y1a4{bottom:536.778667pt;}
.yd6{bottom:542.672000pt;}
.y83{bottom:544.657333pt;}
.y130{bottom:545.173333pt;}
.y92{bottom:549.158667pt;}
.y5d{bottom:550.898667pt;}
.y2d{bottom:553.526667pt;}
.y113{bottom:553.600000pt;}
.y1a3{bottom:553.801333pt;}
.y146{bottom:554.884000pt;}
.y174{bottom:557.745333pt;}
.yd5{bottom:558.612000pt;}
.y82{bottom:563.228000pt;}
.y12f{bottom:563.744000pt;}
.y91{bottom:567.729333pt;}
.yb5{bottom:569.469333pt;}
.y1a2{bottom:570.824000pt;}
.y2c{bottom:572.097333pt;}
.y112{bottom:572.170667pt;}
.y5c{bottom:573.454667pt;}
.yd4{bottom:574.553333pt;}
.y173{bottom:575.077333pt;}
.y81{bottom:581.797333pt;}
.y12e{bottom:582.314667pt;}
.y90{bottom:586.300000pt;}
.y1a1{bottom:587.846667pt;}
.yb4{bottom:588.040000pt;}
.yd3{bottom:590.493333pt;}
.y2b{bottom:590.668000pt;}
.y111{bottom:590.740000pt;}
.y172{bottom:592.409333pt;}
.y80{bottom:600.368000pt;}
.y12d{bottom:600.885333pt;}
.y5b{bottom:604.869333pt;}
.ycd{bottom:606.433333pt;}
.yb3{bottom:606.609333pt;}
.y2a{bottom:609.238667pt;}
.y110{bottom:609.310667pt;}
.y171{bottom:609.742667pt;}
.y7f{bottom:618.938667pt;}
.y12c{bottom:619.454667pt;}
.y1a0{bottom:621.892000pt;}
.ycc{bottom:622.373333pt;}
.y5a{bottom:623.440000pt;}
.yb2{bottom:625.180000pt;}
.y170{bottom:627.074667pt;}
.y29{bottom:627.808000pt;}
.y10f{bottom:627.881333pt;}
.y147{bottom:629.165333pt;}
.y7e{bottom:637.508000pt;}
.y12b{bottom:638.025333pt;}
.yd2{bottom:638.313333pt;}
.y19f{bottom:638.914667pt;}
.y59{bottom:642.010667pt;}
.yb1{bottom:643.750667pt;}
.y16f{bottom:644.406667pt;}
.y28{bottom:646.378667pt;}
.y10e{bottom:646.450667pt;}
.yd1{bottom:654.253333pt;}
.y19e{bottom:655.937333pt;}
.y7d{bottom:656.078667pt;}
.y12a{bottom:656.596000pt;}
.y58{bottom:660.580000pt;}
.yb0{bottom:662.320000pt;}
.y27{bottom:664.949333pt;}
.y10d{bottom:665.021333pt;}
.y16e{bottom:669.709333pt;}
.yd0{bottom:670.194667pt;}
.y19d{bottom:672.961333pt;}
.y7c{bottom:674.649333pt;}
.y129{bottom:675.165333pt;}
.y57{bottom:679.150667pt;}
.yaf{bottom:680.890667pt;}
.y26{bottom:683.518667pt;}
.ycf{bottom:686.134667pt;}
.y16d{bottom:687.041333pt;}
.y19c{bottom:689.984000pt;}
.y7b{bottom:693.218667pt;}
.y128{bottom:693.736000pt;}
.y10c{bottom:696.690667pt;}
.y56{bottom:697.721333pt;}
.yae{bottom:699.461333pt;}
.yce{bottom:702.074667pt;}
.y16c{bottom:704.373333pt;}
.y19b{bottom:707.006667pt;}
.y25{bottom:710.060000pt;}
.y7a{bottom:711.789333pt;}
.y127{bottom:712.306667pt;}
.y55{bottom:716.290667pt;}
.yad{bottom:718.030667pt;}
.y19a{bottom:724.029333pt;}
.ycb{bottom:724.417333pt;}
.y16b{bottom:729.676000pt;}
.y79{bottom:730.360000pt;}
.y126{bottom:730.876000pt;}
.y54{bottom:734.861333pt;}
.yac{bottom:736.601333pt;}
.yc9{bottom:740.357333pt;}
.y199{bottom:741.052000pt;}
.y24{bottom:744.268000pt;}
.y78{bottom:748.929333pt;}
.y125{bottom:749.446667pt;}
.y53{bottom:753.432000pt;}
.y16a{bottom:754.977333pt;}
.yab{bottom:755.172000pt;}
.yc8{bottom:756.297333pt;}
.y198{bottom:758.074667pt;}
.y23{bottom:758.614667pt;}
.y124{bottom:768.017333pt;}
.y77{bottom:771.485333pt;}
.y52{bottom:772.002667pt;}
.yc7{bottom:772.237333pt;}
.y169{bottom:772.310667pt;}
.y22{bottom:772.960000pt;}
.y152{bottom:773.742667pt;}
.y197{bottom:775.097333pt;}
.yaa{bottom:777.726667pt;}
.y123{bottom:786.586667pt;}
.y21{bottom:787.306667pt;}
.yca{bottom:788.177333pt;}
.y168{bottom:789.642667pt;}
.y51{bottom:790.572000pt;}
.y196{bottom:792.120000pt;}
.y151{bottom:792.312000pt;}
.y76{bottom:793.202667pt;}
.y20{bottom:801.653333pt;}
.y122{bottom:805.157333pt;}
.y50{bottom:809.142667pt;}
.yc6{bottom:810.520000pt;}
.y150{bottom:810.882667pt;}
.y167{bottom:814.945333pt;}
.y121{bottom:823.728000pt;}
.y195{bottom:826.165333pt;}
.yc5{bottom:826.460000pt;}
.y4f{bottom:827.713333pt;}
.y14f{bottom:829.453333pt;}
.y166{bottom:832.277333pt;}
.y120{bottom:842.297333pt;}
.yc2{bottom:842.400000pt;}
.y194{bottom:843.188000pt;}
.y1f{bottom:843.858667pt;}
.y4e{bottom:846.282667pt;}
.y14e{bottom:848.022667pt;}
.y165{bottom:857.578667pt;}
.yc1{bottom:858.341333pt;}
.y193{bottom:860.210667pt;}
.yf6{bottom:860.352000pt;}
.y11f{bottom:860.868000pt;}
.y1e{bottom:862.428000pt;}
.y4d{bottom:864.853333pt;}
.y14d{bottom:866.593333pt;}
.yc4{bottom:874.281333pt;}
.y164{bottom:874.912000pt;}
.y192{bottom:877.233333pt;}
.yf5{bottom:878.921333pt;}
.y11e{bottom:879.438667pt;}
.y4c{bottom:883.424000pt;}
.y14c{bottom:885.164000pt;}
.yc3{bottom:890.221333pt;}
.y163{bottom:892.244000pt;}
.y191{bottom:894.256000pt;}
.y1d{bottom:896.938667pt;}
.yf4{bottom:897.492000pt;}
.y11d{bottom:898.009333pt;}
.y4b{bottom:901.993333pt;}
.y14b{bottom:903.733333pt;}
.y162{bottom:909.576000pt;}
.y190{bottom:911.278667pt;}
.yc0{bottom:912.564000pt;}
.y11c{bottom:916.578667pt;}
.yf3{bottom:920.046667pt;}
.y4a{bottom:920.564000pt;}
.y14a{bottom:922.304000pt;}
.y1c{bottom:924.794667pt;}
.y161{bottom:926.908000pt;}
.y18f{bottom:928.301333pt;}
.y11b{bottom:935.149333pt;}
.y49{bottom:939.134667pt;}
.y149{bottom:940.874667pt;}
.yf2{bottom:941.764000pt;}
.y160{bottom:944.240000pt;}
.ybf{bottom:944.256000pt;}
.y18e{bottom:945.324000pt;}
.y1b{bottom:952.649333pt;}
.y11a{bottom:953.720000pt;}
.y48{bottom:957.704000pt;}
.y15f{bottom:961.572000pt;}
.y18d{bottom:962.346667pt;}
.y148{bottom:963.429333pt;}
.y119{bottom:972.289333pt;}
.y47{bottom:976.274667pt;}
.y18c{bottom:979.369333pt;}
.y1a{bottom:980.505333pt;}
.y118{bottom:990.860000pt;}
.y46{bottom:994.845333pt;}
.y18b{bottom:996.392000pt;}
.y45{bottom:1013.414667pt;}
.y44{bottom:1066.841333pt;}
.ha{height:25.079185pt;}
.h2{height:32.284045pt;}
.hb{height:35.212691pt;}
.h6{height:36.896250pt;}
.h5{height:38.415786pt;}
.hc{height:40.504218pt;}
.h9{height:41.508454pt;}
.h3{height:45.004385pt;}
.h8{height:46.099251pt;}
.h7{height:46.120196pt;}
.h4{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x8{left:55.592000pt;}
.x23{left:75.938667pt;}
.x24{left:93.504000pt;}
.x7{left:162.986667pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x15{left:225.650667pt;}
.x4{left:250.204000pt;}
.xc{left:284.737333pt;}
.xd{left:296.806667pt;}
.x1c{left:310.900000pt;}
.x9{left:318.042667pt;}
.x1d{left:325.004000pt;}
.x16{left:331.692000pt;}
.x14{left:341.781333pt;}
.x5{left:385.654667pt;}
.x6{left:397.710667pt;}
.x12{left:469.897333pt;}
.x1e{left:479.261333pt;}
.x13{left:484.537333pt;}
.x10{left:493.626667pt;}
.x19{left:496.176000pt;}
.x11{left:504.930667pt;}
.xa{left:512.145333pt;}
.x21{left:514.713333pt;}
.xb{left:524.381333pt;}
.x22{left:525.638667pt;}
.x17{left:631.989333pt;}
.x18{left:658.228000pt;}
.xe{left:667.768000pt;}
.xf{left:679.624000pt;}
.x1a{left:689.740000pt;}
.x1f{left:692.198667pt;}
.x1b{left:704.350667pt;}
.x20{left:706.302667pt;}
}




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