
    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_47f10a40f04e59710e12e1c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2715abe4c717b5c54de05333.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7f7bc2677fea299808a43dc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_876d6a4312edc671e2bc3784.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_af14dd3039b82a8cf6a53b28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_540f812a34508d5232f4dc50.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_513b006307aa8963941aff2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4a9905352615b03686293ab2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0d8c287a824ef88569aa170a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5d2150e58befc2dc0b2e18f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1{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);}
.m27{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);}
.me{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);}
.m16{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);}
.m11{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);}
.ma{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);}
.m19{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);}
.m12{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);}
.m3{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);}
.m1a{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.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);}
.m26{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);}
.mc{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);}
.m28{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);}
.m14{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);}
.m13{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);}
.m9{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);}
.m15{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);}
.m1b{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);}
.m23{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m4{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);}
.m17{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);}
.m21{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);}
.m7{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);}
.m1d{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);}
.m1c{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);}
.m24{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);}
.m2{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);}
.m1e{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);}
.v2{vertical-align:-20.178000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.546000px;}
.v1{vertical-align:26.898000px;}
.lsa{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000429px;}
.ls6{letter-spacing:0.001639px;}
.ls7{letter-spacing:2.310587px;}
.ls9{letter-spacing:2.312552px;}
.ls5{letter-spacing:2.315727px;}
.ls2{letter-spacing:3.079627px;}
.ls0{letter-spacing:3.082773px;}
.ls3{letter-spacing:3.085627px;}
.lsd{letter-spacing:3.630547px;}
.ls12{letter-spacing:6.741818px;}
.lsf{letter-spacing:8.770908px;}
.ls10{letter-spacing:10.407272px;}
.ls8{letter-spacing:13.449720px;}
.lsb{letter-spacing:16.362001px;}
.ls4{letter-spacing:21.019627px;}
.ls1{letter-spacing:35.867176px;}
.lse{letter-spacing:46.104003px;}
.ls11{letter-spacing:51.648003px;}
.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;}
}
.ws98{word-spacing:-86.077200px;}
.ws0{word-spacing:-77.469480px;}
.ws16{word-spacing:-65.454540px;}
.ws4a{word-spacing:-64.557900px;}
.ws6f{word-spacing:-60.357847px;}
.ws7c{word-spacing:-55.243632px;}
.ws64{word-spacing:-53.869996px;}
.ws4f{word-spacing:-53.798265px;}
.ws45{word-spacing:-53.149086px;}
.ws6b{word-spacing:-49.090905px;}
.ws3{word-spacing:-47.820660px;}
.ws38{word-spacing:-46.276360px;}
.wsaa{word-spacing:-44.951432px;}
.ws6d{word-spacing:-44.831880px;}
.ws17{word-spacing:-43.038600px;}
.ws25{word-spacing:-40.402508px;}
.wsb{word-spacing:-40.348710px;}
.ws8f{word-spacing:-33.447270px;}
.ws2{word-spacing:-31.202994px;}
.ws87{word-spacing:-28.669089px;}
.ws3f{word-spacing:-28.472725px;}
.ws86{word-spacing:-25.330907px;}
.ws84{word-spacing:-24.130340px;}
.ws70{word-spacing:-24.052375px;}
.ws54{word-spacing:-23.402252px;}
.ws8a{word-spacing:-23.367271px;}
.ws8e{word-spacing:-22.477624px;}
.ws7a{word-spacing:-22.119793px;}
.ws82{word-spacing:-21.355611px;}
.ws4{word-spacing:-20.801987px;}
.ws80{word-spacing:-19.101793px;}
.ws89{word-spacing:-18.719998px;}
.ws7b{word-spacing:-18.458180px;}
.ws83{word-spacing:-18.327271px;}
.ws81{word-spacing:-18.261817px;}
.ws7e{word-spacing:-18.065453px;}
.ws88{word-spacing:-17.607271px;}
.ws8b{word-spacing:-17.279999px;}
.ws7d{word-spacing:-17.169793px;}
.ws73{word-spacing:-16.756362px;}
.ws8c{word-spacing:-16.625453px;}
.ws7f{word-spacing:-16.581793px;}
.ws90{word-spacing:-16.429090px;}
.ws85{word-spacing:-16.298180px;}
.ws44{word-spacing:-16.167271px;}
.ws6c{word-spacing:-16.036362px;}
.ws43{word-spacing:-15.970908px;}
.ws5c{word-spacing:-15.512726px;}
.ws19{word-spacing:-15.447271px;}
.wsa8{word-spacing:-15.381817px;}
.wsa7{word-spacing:-15.366671px;}
.wsa9{word-spacing:-15.316362px;}
.wsa3{word-spacing:-15.250908px;}
.ws74{word-spacing:-15.185453px;}
.ws96{word-spacing:-15.119999px;}
.ws56{word-spacing:-14.923635px;}
.ws77{word-spacing:-14.858181px;}
.ws95{word-spacing:-14.530908px;}
.ws27{word-spacing:-14.471737px;}
.ws18{word-spacing:-14.465453px;}
.ws62{word-spacing:-14.203635px;}
.ws72{word-spacing:-14.138181px;}
.ws1e{word-spacing:-14.072726px;}
.ws78{word-spacing:-14.007272px;}
.ws53{word-spacing:-13.941817px;}
.ws5d{word-spacing:-13.810908px;}
.ws92{word-spacing:-13.745453px;}
.ws59{word-spacing:-13.679999px;}
.wsa6{word-spacing:-13.352726px;}
.ws51{word-spacing:-13.287272px;}
.ws8{word-spacing:-13.275460px;}
.ws1{word-spacing:-13.270239px;}
.wsa{word-spacing:-13.269615px;}
.ws5{word-spacing:-13.268266px;}
.ws6{word-spacing:-13.267680px;}
.ws7{word-spacing:-13.266548px;}
.wsa5{word-spacing:-13.221817px;}
.ws5e{word-spacing:-13.156363px;}
.ws69{word-spacing:-13.090908px;}
.ws49{word-spacing:-13.025453px;}
.ws5a{word-spacing:-12.894544px;}
.ws3a{word-spacing:-12.829090px;}
.ws39{word-spacing:-12.763635px;}
.ws6a{word-spacing:-12.698181px;}
.ws60{word-spacing:-12.501817px;}
.ws58{word-spacing:-12.436363px;}
.ws3d{word-spacing:-12.370908px;}
.ws6e{word-spacing:-12.335003px;}
.ws3b{word-spacing:-12.305454px;}
.ws1d{word-spacing:-12.239999px;}
.ws1a{word-spacing:-12.174544px;}
.ws1b{word-spacing:-12.109090px;}
.wsa4{word-spacing:-12.105259px;}
.ws24{word-spacing:-12.043635px;}
.ws1f{word-spacing:-11.978181px;}
.ws75{word-spacing:-11.928036px;}
.ws20{word-spacing:-11.912726px;}
.ws1c{word-spacing:-11.847272px;}
.ws3e{word-spacing:-11.781817px;}
.ws41{word-spacing:-11.716363px;}
.ws3c{word-spacing:-11.650908px;}
.ws91{word-spacing:-11.585454px;}
.ws40{word-spacing:-11.519999px;}
.ws14{word-spacing:-11.405235px;}
.ws4d{word-spacing:-11.389090px;}
.ws4c{word-spacing:-11.327372px;}
.ws4e{word-spacing:-11.323635px;}
.ws47{word-spacing:-11.258181px;}
.ws71{word-spacing:-11.127272px;}
.ws63{word-spacing:-10.996363px;}
.ws94{word-spacing:-10.930908px;}
.ws5b{word-spacing:-10.603635px;}
.ws4b{word-spacing:-10.538181px;}
.ws67{word-spacing:-10.341817px;}
.ws9a{word-spacing:-10.276363px;}
.ws12{word-spacing:-10.221673px;}
.ws76{word-spacing:-10.210908px;}
.wsd{word-spacing:-10.167875px;}
.ws99{word-spacing:-10.145454px;}
.wsf{word-spacing:-10.114077px;}
.ws5f{word-spacing:-10.014545px;}
.ws33{word-spacing:-9.986083px;}
.ws32{word-spacing:-9.984901px;}
.ws2b{word-spacing:-9.983255px;}
.ws2d{word-spacing:-9.980083px;}
.ws2a{word-spacing:-9.956482px;}
.ws2c{word-spacing:-9.956051px;}
.ws30{word-spacing:-9.954911px;}
.ws2e{word-spacing:-9.954123px;}
.ws15{word-spacing:-9.952682px;}
.ws34{word-spacing:-9.951576px;}
.ws28{word-spacing:-9.950211px;}
.ws31{word-spacing:-9.948911px;}
.ws26{word-spacing:-9.900963px;}
.ws2f{word-spacing:-9.900320px;}
.wse{word-spacing:-9.898884px;}
.ws23{word-spacing:-9.883636px;}
.wsc{word-spacing:-9.629892px;}
.ws93{word-spacing:-9.425454px;}
.wsa2{word-spacing:-9.359999px;}
.ws37{word-spacing:-9.294545px;}
.ws79{word-spacing:-9.229090px;}
.ws22{word-spacing:-9.098181px;}
.ws11{word-spacing:-9.038111px;}
.ws21{word-spacing:-9.032727px;}
.ws61{word-spacing:-8.901817px;}
.wsa1{word-spacing:-8.770908px;}
.ws57{word-spacing:-8.705454px;}
.ws52{word-spacing:-8.050908px;}
.ws48{word-spacing:-7.985454px;}
.ws97{word-spacing:-7.854545px;}
.ws9e{word-spacing:-7.789090px;}
.ws50{word-spacing:-7.658181px;}
.ws9f{word-spacing:-7.003636px;}
.ws65{word-spacing:-6.741818px;}
.ws42{word-spacing:-6.676363px;}
.ws35{word-spacing:-6.635114px;}
.ws10{word-spacing:-6.294399px;}
.ws68{word-spacing:-5.694545px;}
.ws13{word-spacing:-5.648819px;}
.ws55{word-spacing:-5.629090px;}
.wsa0{word-spacing:-5.498181px;}
.ws29{word-spacing:-5.487425px;}
.ws46{word-spacing:-5.040000px;}
.ws66{word-spacing:-4.843636px;}
.ws9c{word-spacing:-2.487273px;}
.ws9b{word-spacing:-2.356363px;}
.ws36{word-spacing:0.000000px;}
.ws9d{word-spacing:1.112727px;}
.ws9{word-spacing:4.661821px;}
.ws8d{word-spacing:7.155837px;}
._25{margin-left:-10.317671px;}
._23{margin-left:-8.443636px;}
._1f{margin-left:-7.380069px;}
._12{margin-left:-6.283636px;}
._2{margin-left:-4.305001px;}
._4{margin-left:-2.689914px;}
._3{margin-left:-1.075095px;}
._1{width:1.219427px;}
._5{width:2.689914px;}
._d{width:4.447324px;}
._1c{width:5.504393px;}
._1d{width:7.423968px;}
._1e{width:8.926026px;}
._9{width:10.921051px;}
._e{width:11.943205px;}
._c{width:13.308115px;}
._a{width:15.496820px;}
._6{width:17.592038px;}
._8{width:18.775600px;}
._17{width:19.883182px;}
._7{width:21.142724px;}
._f{width:22.216912px;}
._10{width:23.831730px;}
._19{width:24.923181px;}
._13{width:26.378180px;}
._16{width:27.608393px;}
._b{width:28.824207px;}
._15{width:31.342916px;}
._1a{width:32.727270px;}
._0{width:34.396449px;}
._14{width:35.865510px;}
._18{width:38.029088px;}
._29{width:41.039997px;}
._11{width:43.038600px;}
._22{width:45.556360px;}
._21{width:50.258451px;}
._1b{width:53.386456px;}
._24{width:54.574885px;}
._20{width:56.126227px;}
._27{width:58.162747px;}
._26{width:60.256859px;}
._2a{width:61.854540px;}
._28{width:63.242509px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865480px;}
.fs2{font-size:47.820660px;}
.fs7{font-size:52.363620px;}
.fs4{font-size:53.798280px;}
.fs9{font-size:56.727300px;}
.fs8{font-size:59.775840px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.yeb{bottom:115.447500px;}
.y30{bottom:116.527500px;}
.y60{bottom:116.538000px;}
.ya5{bottom:116.541000px;}
.yc0{bottom:116.568000px;}
.y10e{bottom:116.578500px;}
.y13a{bottom:125.152500px;}
.y2f{bottom:130.905000px;}
.ya4{bottom:132.979500px;}
.yea{bottom:135.771000px;}
.y10d{bottom:136.902000px;}
.y139{bottom:145.476000px;}
.y2e{bottom:147.967500px;}
.ya3{bottom:149.418000px;}
.y5f{bottom:152.181000px;}
.ye9{bottom:156.094500px;}
.y2d{bottom:164.406000px;}
.y138{bottom:165.799500px;}
.ya2{bottom:165.856500px;}
.ybf{bottom:166.098000px;}
.y5e{bottom:172.504500px;}
.y10c{bottom:173.373000px;}
.ye8{bottom:176.419500px;}
.y2c{bottom:180.889500px;}
.y137{bottom:186.124500px;}
.ybe{bottom:186.421500px;}
.y5d{bottom:192.829500px;}
.y2b{bottom:197.328000px;}
.ya1{bottom:202.950000px;}
.y136{bottom:206.448000px;}
.ybd{bottom:206.745000px;}
.y5c{bottom:213.153000px;}
.y2a{bottom:213.766500px;}
.ye7{bottom:217.066500px;}
.ya0{bottom:223.273500px;}
.y10b{bottom:224.841000px;}
.y135{bottom:226.771500px;}
.ybc{bottom:227.068500px;}
.y5b{bottom:233.476500px;}
.y29{bottom:235.510500px;}
.ye6{bottom:237.390000px;}
.y9f{bottom:243.597000px;}
.y10a{bottom:245.166000px;}
.y28{bottom:246.904500px;}
.y134{bottom:247.095000px;}
.ybb{bottom:247.392000px;}
.y75{bottom:253.800000px;}
.ye5{bottom:257.713500px;}
.y5a{bottom:264.330000px;}
.y133{bottom:267.418500px;}
.yba{bottom:267.715500px;}
.y74{bottom:274.123500px;}
.y9e{bottom:274.452000px;}
.ye4{bottom:278.038500px;}
.y109{bottom:281.635500px;}
.y27{bottom:282.217500px;}
.y132{bottom:287.743500px;}
.yb9{bottom:288.040500px;}
.y73{bottom:294.448500px;}
.y26{bottom:302.541000px;}
.ye3{bottom:302.845500px;}
.y59{bottom:308.067000px;}
.yb8{bottom:308.364000px;}
.y72{bottom:314.772000px;}
.y9d{bottom:317.590500px;}
.y25{bottom:322.864500px;}
.y58{bottom:328.390500px;}
.yb7{bottom:328.687500px;}
.y108{bottom:333.103500px;}
.y71{bottom:335.095500px;}
.ye2{bottom:336.618000px;}
.y9c{bottom:337.914000px;}
.y24{bottom:343.188000px;}
.y57{bottom:348.714000px;}
.yb6{bottom:349.011000px;}
.y107{bottom:353.428500px;}
.y70{bottom:355.419000px;}
.ye1{bottom:356.941500px;}
.y140{bottom:357.972000px;}
.y9a{bottom:358.237500px;}
.y22{bottom:363.513000px;}
.y9b{bottom:364.374000px;}
.y56{bottom:369.037500px;}
.yb5{bottom:369.334500px;}
.y23{bottom:369.649500px;}
.y106{bottom:373.752000px;}
.y6f{bottom:375.742500px;}
.y13f{bottom:375.904500px;}
.ye0{bottom:377.266500px;}
.y99{bottom:378.561000px;}
.y21{bottom:383.836500px;}
.y131{bottom:389.362500px;}
.yb4{bottom:389.659500px;}
.y105{bottom:394.075500px;}
.y6e{bottom:396.067500px;}
.ydf{bottom:397.590000px;}
.y98{bottom:398.886000px;}
.y20{bottom:404.160000px;}
.y55{bottom:405.508500px;}
.y130{bottom:409.686000px;}
.yb3{bottom:409.983000px;}
.y104{bottom:414.399000px;}
.y6d{bottom:416.391000px;}
.yde{bottom:417.913500px;}
.y97{bottom:419.209500px;}
.y1f{bottom:424.483500px;}
.y12f{bottom:430.009500px;}
.y103{bottom:434.722500px;}
.y6c{bottom:436.714500px;}
.ydd{bottom:438.237000px;}
.y96{bottom:439.533000px;}
.yb2{bottom:440.836500px;}
.y1e{bottom:444.807000px;}
.y12e{bottom:450.333000px;}
.y102{bottom:455.047500px;}
.y54{bottom:456.976500px;}
.y6b{bottom:457.038000px;}
.ydc{bottom:458.560500px;}
.y1d{bottom:465.132000px;}
.y95{bottom:470.386500px;}
.y12d{bottom:470.656500px;}
.y101{bottom:475.371000px;}
.y53{bottom:477.301500px;}
.ydb{bottom:478.885500px;}
.yb1{bottom:483.975000px;}
.y1c{bottom:485.455500px;}
.y12c{bottom:490.981500px;}
.y6a{bottom:493.507500px;}
.y100{bottom:495.694500px;}
.y52{bottom:497.625000px;}
.yda{bottom:499.209000px;}
.yb0{bottom:504.298500px;}
.y1b{bottom:505.779000px;}
.y12b{bottom:511.305000px;}
.y94{bottom:514.123500px;}
.yff{bottom:516.018000px;}
.y51{bottom:517.948500px;}
.yd9{bottom:519.532500px;}
.yaf{bottom:524.623500px;}
.y1a{bottom:526.102500px;}
.y12a{bottom:531.628500px;}
.y93{bottom:534.447000px;}
.yfe{bottom:536.341500px;}
.y50{bottom:538.272000px;}
.yae{bottom:544.947000px;}
.y69{bottom:544.977000px;}
.y19{bottom:546.426000px;}
.yd8{bottom:550.386000px;}
.y129{bottom:551.952000px;}
.y92{bottom:554.770500px;}
.y4f{bottom:558.595500px;}
.yad{bottom:565.270500px;}
.y68{bottom:565.300500px;}
.y18{bottom:566.751000px;}
.y128{bottom:572.275500px;}
.yfd{bottom:572.812500px;}
.y91{bottom:575.095500px;}
.y4e{bottom:578.920500px;}
.yac{bottom:585.594000px;}
.y67{bottom:585.625500px;}
.y127{bottom:592.600500px;}
.yd7{bottom:593.524500px;}
.y13e{bottom:594.991500px;}
.y90{bottom:595.419000px;}
.y4d{bottom:599.244000px;}
.y17{bottom:603.220500px;}
.yab{bottom:605.917500px;}
.y66{bottom:605.949000px;}
.y126{bottom:612.924000px;}
.yd6{bottom:613.849500px;}
.y13d{bottom:615.315000px;}
.y8f{bottom:615.742500px;}
.y4c{bottom:619.567500px;}
.yfc{bottom:624.280500px;}
.yaa{bottom:626.242500px;}
.y65{bottom:626.272500px;}
.y125{bottom:633.247500px;}
.yd5{bottom:634.173000px;}
.y13c{bottom:635.638500px;}
.y8e{bottom:636.066000px;}
.y4b{bottom:639.891000px;}
.yfb{bottom:644.605500px;}
.ya8{bottom:646.566000px;}
.y64{bottom:646.596000px;}
.ya9{bottom:652.702500px;}
.y124{bottom:653.571000px;}
.yd4{bottom:654.496500px;}
.y8d{bottom:656.389500px;}
.y4a{bottom:660.214500px;}
.yfa{bottom:664.929000px;}
.ya7{bottom:666.889500px;}
.y63{bottom:666.919500px;}
.y13b{bottom:672.108000px;}
.y123{bottom:673.894500px;}
.yd3{bottom:674.820000px;}
.y8c{bottom:676.713000px;}
.y16{bottom:677.394000px;}
.y49{bottom:680.539500px;}
.yf9{bottom:685.252500px;}
.y62{bottom:687.243000px;}
.y15{bottom:693.832500px;}
.y122{bottom:694.219500px;}
.yd2{bottom:695.143500px;}
.y8b{bottom:697.038000px;}
.y48{bottom:700.863000px;}
.yf8{bottom:705.576000px;}
.y121{bottom:714.543000px;}
.yd1{bottom:715.468500px;}
.y61{bottom:718.098000px;}
.y47{bottom:721.186500px;}
.y14{bottom:721.692000px;}
.ya6{bottom:725.739000px;}
.yf7{bottom:725.899500px;}
.y8a{bottom:727.891500px;}
.y120{bottom:734.866500px;}
.y13{bottom:738.130500px;}
.y46{bottom:741.510000px;}
.yf6{bottom:746.224500px;}
.yd0{bottom:746.322000px;}
.y12{bottom:754.569000px;}
.y11f{bottom:755.190000px;}
.y45{bottom:761.833500px;}
.yf5{bottom:766.548000px;}
.y11{bottom:771.007500px;}
.y89{bottom:771.628500px;}
.y11e{bottom:775.513500px;}
.y44{bottom:782.158500px;}
.yf4{bottom:786.871500px;}
.y10{bottom:787.446000px;}
.ycf{bottom:789.460500px;}
.y88{bottom:791.952000px;}
.y11d{bottom:795.838500px;}
.y43{bottom:802.482000px;}
.yf{bottom:803.884500px;}
.yf3{bottom:807.195000px;}
.yce{bottom:809.784000px;}
.y87{bottom:812.275500px;}
.y11c{bottom:816.162000px;}
.ye{bottom:820.323000px;}
.y42{bottom:822.805500px;}
.yf2{bottom:827.518500px;}
.ycd{bottom:830.107500px;}
.y85{bottom:832.599000px;}
.y11b{bottom:836.485500px;}
.yd{bottom:836.761500px;}
.y86{bottom:838.735500px;}
.y41{bottom:843.129000px;}
.yf1{bottom:847.843500px;}
.ycc{bottom:850.432500px;}
.y84{bottom:852.922500px;}
.yc{bottom:853.200000px;}
.y11a{bottom:856.809000px;}
.y40{bottom:863.452500px;}
.yf0{bottom:868.167000px;}
.yb{bottom:869.638500px;}
.ycb{bottom:870.756000px;}
.y83{bottom:873.247500px;}
.y119{bottom:877.132500px;}
.y3f{bottom:883.777500px;}
.ya{bottom:886.075500px;}
.yef{bottom:888.490500px;}
.yca{bottom:891.079500px;}
.y82{bottom:893.571000px;}
.y118{bottom:897.457500px;}
.y9{bottom:902.514000px;}
.y3e{bottom:904.101000px;}
.yee{bottom:908.814000px;}
.yc9{bottom:911.403000px;}
.y81{bottom:913.894500px;}
.y117{bottom:917.781000px;}
.y3d{bottom:924.424500px;}
.yed{bottom:929.137500px;}
.yc8{bottom:931.726500px;}
.y80{bottom:934.218000px;}
.y116{bottom:938.104500px;}
.y3c{bottom:944.748000px;}
.yc7{bottom:952.051500px;}
.y8{bottom:952.689000px;}
.y7f{bottom:954.541500px;}
.y115{bottom:958.428000px;}
.y3b{bottom:965.071500px;}
.yec{bottom:965.608500px;}
.y7{bottom:972.115500px;}
.yc6{bottom:972.375000px;}
.y7e{bottom:974.866500px;}
.y114{bottom:978.751500px;}
.y3a{bottom:985.396500px;}
.y6{bottom:991.543500px;}
.yc5{bottom:992.698500px;}
.y7d{bottom:995.190000px;}
.y113{bottom:999.076500px;}
.y39{bottom:1005.720000px;}
.yc4{bottom:1013.022000px;}
.y7c{bottom:1015.513500px;}
.y112{bottom:1019.400000px;}
.y5{bottom:1020.870000px;}
.y38{bottom:1026.043500px;}
.yc3{bottom:1033.345500px;}
.y7b{bottom:1035.837000px;}
.y111{bottom:1039.723500px;}
.y4{bottom:1041.792000px;}
.y37{bottom:1046.367000px;}
.yc2{bottom:1053.670500px;}
.y79{bottom:1056.160500px;}
.y110{bottom:1060.047000px;}
.y7a{bottom:1062.297000px;}
.y36{bottom:1066.690500px;}
.y78{bottom:1076.485500px;}
.y3{bottom:1080.646500px;}
.yc1{bottom:1084.524000px;}
.y35{bottom:1087.015500px;}
.y10f{bottom:1096.516500px;}
.y77{bottom:1096.809000px;}
.y34{bottom:1107.339000px;}
.y2{bottom:1113.523500px;}
.y76{bottom:1117.132500px;}
.y32{bottom:1127.662500px;}
.y33{bottom:1133.799000px;}
.y1{bottom:1146.400500px;}
.y31{bottom:1147.986000px;}
.hc{height:25.034105px;}
.h5{height:25.392760px;}
.hf{height:26.396993px;}
.hb{height:38.089182px;}
.ha{height:38.539624px;}
.h7{height:39.595534px;}
.h13{height:41.240747px;}
.h12{height:41.723536px;}
.h6{height:45.687269px;}
.he{height:46.212723px;}
.hd{height:47.073495px;}
.h9{height:48.174541px;}
.h10{height:50.068252px;}
.h8{height:60.081886px;}
.h4{height:60.761027px;}
.h3{height:62.094006px;}
.h11{height:63.085624px;}
.h2{height:72.098263px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x5{left:113.836500px;}
.x70{left:115.609500px;}
.x6{left:121.446000px;}
.x7{left:124.363500px;}
.x3a{left:128.962500px;}
.x71{left:143.050500px;}
.x6c{left:145.149000px;}
.x6b{left:147.345000px;}
.x6f{left:149.916000px;}
.x4d{left:165.181500px;}
.x28{left:168.181500px;}
.x10{left:172.576500px;}
.x2{left:175.122000px;}
.x29{left:180.424500px;}
.x50{left:185.023500px;}
.x60{left:192.240000px;}
.x41{left:200.131500px;}
.x58{left:210.111000px;}
.x3d{left:214.194000px;}
.x6d{left:227.995500px;}
.x7e{left:230.187000px;}
.x4e{left:234.487500px;}
.x11{left:235.494000px;}
.x6e{left:237.814500px;}
.x12{left:246.129000px;}
.x80{left:247.206000px;}
.x48{left:260.574000px;}
.x69{left:265.600500px;}
.x51{left:278.970000px;}
.x68{left:290.070000px;}
.x6a{left:294.198000px;}
.x16{left:295.548000px;}
.x17{left:310.765500px;}
.x18{left:318.477000px;}
.x5e{left:322.237500px;}
.x32{left:324.501000px;}
.x19{left:333.696000px;}
.x33{left:339.718500px;}
.x66{left:348.975000px;}
.x45{left:352.539000px;}
.x75{left:355.755000px;}
.x79{left:359.361000px;}
.x3e{left:361.531500px;}
.x49{left:366.768000px;}
.x1a{left:371.550000px;}
.x81{left:377.905500px;}
.x42{left:379.843500px;}
.x73{left:381.993000px;}
.x65{left:384.616500px;}
.x1b{left:386.769000px;}
.x56{left:392.464500px;}
.x61{left:396.459000px;}
.x62{left:397.851000px;}
.x7c{left:398.977500px;}
.x59{left:420.984000px;}
.x52{left:425.395500px;}
.x5b{left:431.395500px;}
.x2c{left:437.178000px;}
.x1c{left:441.595500px;}
.x7a{left:443.340000px;}
.x7f{left:444.685500px;}
.x4f{left:446.875500px;}
.x2d{left:452.397000px;}
.x1d{left:456.814500px;}
.x82{left:460.701000px;}
.x26{left:462.594000px;}
.x1e{left:465.702000px;}
.x63{left:475.639500px;}
.x27{left:477.813000px;}
.x1f{left:480.919500px;}
.x2a{left:491.823000px;}
.x8{left:495.480000px;}
.x2b{left:498.613500px;}
.x5f{left:501.949500px;}
.x9{left:503.089500px;}
.x22{left:504.609000px;}
.x76{left:509.973000px;}
.x53{left:515.251500px;}
.x67{left:518.116500px;}
.x23{left:519.828000px;}
.x24{left:524.062500px;}
.x7d{left:529.678500px;}
.x57{left:531.333000px;}
.x25{left:539.280000px;}
.x3b{left:541.038000px;}
.x20{left:547.449000px;}
.x78{left:553.750500px;}
.x21{left:562.666500px;}
.x34{left:565.069500px;}
.x35{left:575.934000px;}
.x72{left:582.546000px;}
.x2e{left:585.255000px;}
.x46{left:587.484000px;}
.x4a{left:589.555500px;}
.x3f{left:595.389000px;}
.x2f{left:600.472500px;}
.x13{left:607.429500px;}
.x30{left:609.961500px;}
.x54{left:612.006000px;}
.x14{left:615.037500px;}
.x7b{left:616.290000px;}
.x5a{left:620.298000px;}
.x3{left:622.420500px;}
.x31{left:625.179000px;}
.x4{left:630.028500px;}
.x83{left:632.949000px;}
.x4c{left:637.876500px;}
.x77{left:649.545000px;}
.xc{left:653.922000px;}
.x5c{left:663.174000px;}
.xd{left:665.665500px;}
.x43{left:669.643500px;}
.xe{left:671.608500px;}
.x64{left:675.787500px;}
.xf{left:679.216500px;}
.x15{left:687.817500px;}
.x55{left:689.152500px;}
.x47{left:693.960000px;}
.x4b{left:703.918500px;}
.x40{left:713.845500px;}
.x3c{left:719.563500px;}
.x74{left:721.197000px;}
.x5d{left:728.701500px;}
.x44{left:734.994000px;}
.x36{left:751.627500px;}
.x37{left:766.846500px;}
.xa{left:770.436000px;}
.x38{left:776.215500px;}
.xb{left:778.045500px;}
.x39{left:783.006000px;}
@media print{
.v2{vertical-align:-17.936000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.818667pt;}
.v1{vertical-align:23.909333pt;}
.lsa{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000382pt;}
.ls6{letter-spacing:0.001457pt;}
.ls7{letter-spacing:2.053855pt;}
.ls9{letter-spacing:2.055602pt;}
.ls5{letter-spacing:2.058424pt;}
.ls2{letter-spacing:2.737446pt;}
.ls0{letter-spacing:2.740243pt;}
.ls3{letter-spacing:2.742780pt;}
.lsd{letter-spacing:3.227153pt;}
.ls12{letter-spacing:5.992727pt;}
.lsf{letter-spacing:7.796363pt;}
.ls10{letter-spacing:9.250908pt;}
.ls8{letter-spacing:11.955307pt;}
.lsb{letter-spacing:14.544001pt;}
.ls4{letter-spacing:18.684113pt;}
.ls1{letter-spacing:31.881934pt;}
.lse{letter-spacing:40.981336pt;}
.ls11{letter-spacing:45.909336pt;}
.ws98{word-spacing:-76.513067pt;}
.ws0{word-spacing:-68.861760pt;}
.ws16{word-spacing:-58.181813pt;}
.ws4a{word-spacing:-57.384800pt;}
.ws6f{word-spacing:-53.651420pt;}
.ws7c{word-spacing:-49.105450pt;}
.ws64{word-spacing:-47.884441pt;}
.ws4f{word-spacing:-47.820680pt;}
.ws45{word-spacing:-47.243632pt;}
.ws6b{word-spacing:-43.636360pt;}
.ws3{word-spacing:-42.507253pt;}
.ws38{word-spacing:-41.134542pt;}
.wsaa{word-spacing:-39.956828pt;}
.ws6d{word-spacing:-39.850560pt;}
.ws17{word-spacing:-38.256533pt;}
.ws25{word-spacing:-35.913341pt;}
.wsb{word-spacing:-35.865520pt;}
.ws8f{word-spacing:-29.730907pt;}
.ws2{word-spacing:-27.735994pt;}
.ws87{word-spacing:-25.483634pt;}
.ws3f{word-spacing:-25.309089pt;}
.ws86{word-spacing:-22.516362pt;}
.ws84{word-spacing:-21.449191pt;}
.ws70{word-spacing:-21.379889pt;}
.ws54{word-spacing:-20.802002pt;}
.ws8a{word-spacing:-20.770907pt;}
.ws8e{word-spacing:-19.980110pt;}
.ws7a{word-spacing:-19.662038pt;}
.ws82{word-spacing:-18.982765pt;}
.ws4{word-spacing:-18.490655pt;}
.ws80{word-spacing:-16.979372pt;}
.ws89{word-spacing:-16.639999pt;}
.ws7b{word-spacing:-16.407271pt;}
.ws83{word-spacing:-16.290908pt;}
.ws81{word-spacing:-16.232726pt;}
.ws7e{word-spacing:-16.058180pt;}
.ws88{word-spacing:-15.650908pt;}
.ws8b{word-spacing:-15.359999pt;}
.ws7d{word-spacing:-15.262038pt;}
.ws73{word-spacing:-14.894544pt;}
.ws8c{word-spacing:-14.778181pt;}
.ws7f{word-spacing:-14.739372pt;}
.ws90{word-spacing:-14.603635pt;}
.ws85{word-spacing:-14.487272pt;}
.ws44{word-spacing:-14.370908pt;}
.ws6c{word-spacing:-14.254544pt;}
.ws43{word-spacing:-14.196362pt;}
.ws5c{word-spacing:-13.789090pt;}
.ws19{word-spacing:-13.730908pt;}
.wsa8{word-spacing:-13.672726pt;}
.wsa7{word-spacing:-13.659263pt;}
.wsa9{word-spacing:-13.614544pt;}
.wsa3{word-spacing:-13.556363pt;}
.ws74{word-spacing:-13.498181pt;}
.ws96{word-spacing:-13.439999pt;}
.ws56{word-spacing:-13.265453pt;}
.ws77{word-spacing:-13.207272pt;}
.ws95{word-spacing:-12.916363pt;}
.ws27{word-spacing:-12.863767pt;}
.ws18{word-spacing:-12.858181pt;}
.ws62{word-spacing:-12.625453pt;}
.ws72{word-spacing:-12.567272pt;}
.ws1e{word-spacing:-12.509090pt;}
.ws78{word-spacing:-12.450908pt;}
.ws53{word-spacing:-12.392726pt;}
.ws5d{word-spacing:-12.276363pt;}
.ws92{word-spacing:-12.218181pt;}
.ws59{word-spacing:-12.159999pt;}
.wsa6{word-spacing:-11.869090pt;}
.ws51{word-spacing:-11.810908pt;}
.ws8{word-spacing:-11.800409pt;}
.ws1{word-spacing:-11.795768pt;}
.wsa{word-spacing:-11.795214pt;}
.ws5{word-spacing:-11.794014pt;}
.ws6{word-spacing:-11.793493pt;}
.ws7{word-spacing:-11.792487pt;}
.wsa5{word-spacing:-11.752726pt;}
.ws5e{word-spacing:-11.694544pt;}
.ws69{word-spacing:-11.636363pt;}
.ws49{word-spacing:-11.578181pt;}
.ws5a{word-spacing:-11.461817pt;}
.ws3a{word-spacing:-11.403635pt;}
.ws39{word-spacing:-11.345454pt;}
.ws6a{word-spacing:-11.287272pt;}
.ws60{word-spacing:-11.112726pt;}
.ws58{word-spacing:-11.054545pt;}
.ws3d{word-spacing:-10.996363pt;}
.ws6e{word-spacing:-10.964447pt;}
.ws3b{word-spacing:-10.938181pt;}
.ws1d{word-spacing:-10.879999pt;}
.ws1a{word-spacing:-10.821817pt;}
.ws1b{word-spacing:-10.763635pt;}
.wsa4{word-spacing:-10.760231pt;}
.ws24{word-spacing:-10.705454pt;}
.ws1f{word-spacing:-10.647272pt;}
.ws75{word-spacing:-10.602699pt;}
.ws20{word-spacing:-10.589090pt;}
.ws1c{word-spacing:-10.530908pt;}
.ws3e{word-spacing:-10.472726pt;}
.ws41{word-spacing:-10.414545pt;}
.ws3c{word-spacing:-10.356363pt;}
.ws91{word-spacing:-10.298181pt;}
.ws40{word-spacing:-10.239999pt;}
.ws14{word-spacing:-10.137987pt;}
.ws4d{word-spacing:-10.123636pt;}
.ws4c{word-spacing:-10.068775pt;}
.ws4e{word-spacing:-10.065454pt;}
.ws47{word-spacing:-10.007272pt;}
.ws71{word-spacing:-9.890908pt;}
.ws63{word-spacing:-9.774545pt;}
.ws94{word-spacing:-9.716363pt;}
.ws5b{word-spacing:-9.425454pt;}
.ws4b{word-spacing:-9.367272pt;}
.ws67{word-spacing:-9.192727pt;}
.ws9a{word-spacing:-9.134545pt;}
.ws12{word-spacing:-9.085932pt;}
.ws76{word-spacing:-9.076363pt;}
.wsd{word-spacing:-9.038111pt;}
.ws99{word-spacing:-9.018181pt;}
.wsf{word-spacing:-8.990290pt;}
.ws5f{word-spacing:-8.901817pt;}
.ws33{word-spacing:-8.876519pt;}
.ws32{word-spacing:-8.875468pt;}
.ws2b{word-spacing:-8.874004pt;}
.ws2d{word-spacing:-8.871185pt;}
.ws2a{word-spacing:-8.850207pt;}
.ws2c{word-spacing:-8.849823pt;}
.ws30{word-spacing:-8.848810pt;}
.ws2e{word-spacing:-8.848110pt;}
.ws15{word-spacing:-8.846828pt;}
.ws34{word-spacing:-8.845845pt;}
.ws28{word-spacing:-8.844632pt;}
.ws31{word-spacing:-8.843476pt;}
.ws26{word-spacing:-8.800856pt;}
.ws2f{word-spacing:-8.800285pt;}
.wse{word-spacing:-8.799008pt;}
.ws23{word-spacing:-8.785454pt;}
.wsc{word-spacing:-8.559904pt;}
.ws93{word-spacing:-8.378181pt;}
.wsa2{word-spacing:-8.319999pt;}
.ws37{word-spacing:-8.261817pt;}
.ws79{word-spacing:-8.203636pt;}
.ws22{word-spacing:-8.087272pt;}
.ws11{word-spacing:-8.033876pt;}
.ws21{word-spacing:-8.029090pt;}
.ws61{word-spacing:-7.912727pt;}
.wsa1{word-spacing:-7.796363pt;}
.ws57{word-spacing:-7.738181pt;}
.ws52{word-spacing:-7.156363pt;}
.ws48{word-spacing:-7.098181pt;}
.ws97{word-spacing:-6.981818pt;}
.ws9e{word-spacing:-6.923636pt;}
.ws50{word-spacing:-6.807272pt;}
.ws9f{word-spacing:-6.225454pt;}
.ws65{word-spacing:-5.992727pt;}
.ws42{word-spacing:-5.934545pt;}
.ws35{word-spacing:-5.897879pt;}
.ws10{word-spacing:-5.595021pt;}
.ws68{word-spacing:-5.061818pt;}
.ws13{word-spacing:-5.021173pt;}
.ws55{word-spacing:-5.003636pt;}
.wsa0{word-spacing:-4.887272pt;}
.ws29{word-spacing:-4.877711pt;}
.ws46{word-spacing:-4.480000pt;}
.ws66{word-spacing:-4.305454pt;}
.ws9c{word-spacing:-2.210909pt;}
.ws9b{word-spacing:-2.094545pt;}
.ws36{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.989091pt;}
.ws9{word-spacing:4.143841pt;}
.ws8d{word-spacing:6.360744pt;}
._25{margin-left:-9.171263pt;}
._23{margin-left:-7.505454pt;}
._1f{margin-left:-6.560062pt;}
._12{margin-left:-5.585454pt;}
._2{margin-left:-3.826668pt;}
._4{margin-left:-2.391035pt;}
._3{margin-left:-0.955640pt;}
._1{width:1.083935pt;}
._5{width:2.391035pt;}
._d{width:3.953177pt;}
._1c{width:4.892793pt;}
._1d{width:6.599083pt;}
._1e{width:7.934246pt;}
._9{width:9.707601pt;}
._e{width:10.616182pt;}
._c{width:11.829436pt;}
._a{width:13.774951pt;}
._6{width:15.637367pt;}
._8{width:16.689422pt;}
._17{width:17.673939pt;}
._7{width:18.793532pt;}
._f{width:19.748366pt;}
._10{width:21.183760pt;}
._19{width:22.153939pt;}
._13{width:23.447271pt;}
._16{width:24.540794pt;}
._b{width:25.621517pt;}
._15{width:27.860369pt;}
._1a{width:29.090907pt;}
._0{width:30.574621pt;}
._14{width:31.880453pt;}
._18{width:33.803634pt;}
._29{width:36.479997pt;}
._11{width:38.256533pt;}
._22{width:40.494542pt;}
._21{width:44.674178pt;}
._1b{width:47.454628pt;}
._24{width:48.511009pt;}
._20{width:49.889980pt;}
._27{width:51.700219pt;}
._26{width:53.561653pt;}
._2a{width:54.981814pt;}
._28{width:56.215563pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fs7{font-size:46.545440pt;}
.fs4{font-size:47.820693pt;}
.fs9{font-size:50.424267pt;}
.fs8{font-size:53.134080pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:102.620000pt;}
.y30{bottom:103.580000pt;}
.y60{bottom:103.589333pt;}
.ya5{bottom:103.592000pt;}
.yc0{bottom:103.616000pt;}
.y10e{bottom:103.625333pt;}
.y13a{bottom:111.246667pt;}
.y2f{bottom:116.360000pt;}
.ya4{bottom:118.204000pt;}
.yea{bottom:120.685333pt;}
.y10d{bottom:121.690667pt;}
.y139{bottom:129.312000pt;}
.y2e{bottom:131.526667pt;}
.ya3{bottom:132.816000pt;}
.y5f{bottom:135.272000pt;}
.ye9{bottom:138.750667pt;}
.y2d{bottom:146.138667pt;}
.y138{bottom:147.377333pt;}
.ya2{bottom:147.428000pt;}
.ybf{bottom:147.642667pt;}
.y5e{bottom:153.337333pt;}
.y10c{bottom:154.109333pt;}
.ye8{bottom:156.817333pt;}
.y2c{bottom:160.790667pt;}
.y137{bottom:165.444000pt;}
.ybe{bottom:165.708000pt;}
.y5d{bottom:171.404000pt;}
.y2b{bottom:175.402667pt;}
.ya1{bottom:180.400000pt;}
.y136{bottom:183.509333pt;}
.ybd{bottom:183.773333pt;}
.y5c{bottom:189.469333pt;}
.y2a{bottom:190.014667pt;}
.ye7{bottom:192.948000pt;}
.ya0{bottom:198.465333pt;}
.y10b{bottom:199.858667pt;}
.y135{bottom:201.574667pt;}
.ybc{bottom:201.838667pt;}
.y5b{bottom:207.534667pt;}
.y29{bottom:209.342667pt;}
.ye6{bottom:211.013333pt;}
.y9f{bottom:216.530667pt;}
.y10a{bottom:217.925333pt;}
.y28{bottom:219.470667pt;}
.y134{bottom:219.640000pt;}
.ybb{bottom:219.904000pt;}
.y75{bottom:225.600000pt;}
.ye5{bottom:229.078667pt;}
.y5a{bottom:234.960000pt;}
.y133{bottom:237.705333pt;}
.yba{bottom:237.969333pt;}
.y74{bottom:243.665333pt;}
.y9e{bottom:243.957333pt;}
.ye4{bottom:247.145333pt;}
.y109{bottom:250.342667pt;}
.y27{bottom:250.860000pt;}
.y132{bottom:255.772000pt;}
.yb9{bottom:256.036000pt;}
.y73{bottom:261.732000pt;}
.y26{bottom:268.925333pt;}
.ye3{bottom:269.196000pt;}
.y59{bottom:273.837333pt;}
.yb8{bottom:274.101333pt;}
.y72{bottom:279.797333pt;}
.y9d{bottom:282.302667pt;}
.y25{bottom:286.990667pt;}
.y58{bottom:291.902667pt;}
.yb7{bottom:292.166667pt;}
.y108{bottom:296.092000pt;}
.y71{bottom:297.862667pt;}
.ye2{bottom:299.216000pt;}
.y9c{bottom:300.368000pt;}
.y24{bottom:305.056000pt;}
.y57{bottom:309.968000pt;}
.yb6{bottom:310.232000pt;}
.y107{bottom:314.158667pt;}
.y70{bottom:315.928000pt;}
.ye1{bottom:317.281333pt;}
.y140{bottom:318.197333pt;}
.y9a{bottom:318.433333pt;}
.y22{bottom:323.122667pt;}
.y9b{bottom:323.888000pt;}
.y56{bottom:328.033333pt;}
.yb5{bottom:328.297333pt;}
.y23{bottom:328.577333pt;}
.y106{bottom:332.224000pt;}
.y6f{bottom:333.993333pt;}
.y13f{bottom:334.137333pt;}
.ye0{bottom:335.348000pt;}
.y99{bottom:336.498667pt;}
.y21{bottom:341.188000pt;}
.y131{bottom:346.100000pt;}
.yb4{bottom:346.364000pt;}
.y105{bottom:350.289333pt;}
.y6e{bottom:352.060000pt;}
.ydf{bottom:353.413333pt;}
.y98{bottom:354.565333pt;}
.y20{bottom:359.253333pt;}
.y55{bottom:360.452000pt;}
.y130{bottom:364.165333pt;}
.yb3{bottom:364.429333pt;}
.y104{bottom:368.354667pt;}
.y6d{bottom:370.125333pt;}
.yde{bottom:371.478667pt;}
.y97{bottom:372.630667pt;}
.y1f{bottom:377.318667pt;}
.y12f{bottom:382.230667pt;}
.y103{bottom:386.420000pt;}
.y6c{bottom:388.190667pt;}
.ydd{bottom:389.544000pt;}
.y96{bottom:390.696000pt;}
.yb2{bottom:391.854667pt;}
.y1e{bottom:395.384000pt;}
.y12e{bottom:400.296000pt;}
.y102{bottom:404.486667pt;}
.y54{bottom:406.201333pt;}
.y6b{bottom:406.256000pt;}
.ydc{bottom:407.609333pt;}
.y1d{bottom:413.450667pt;}
.y95{bottom:418.121333pt;}
.y12d{bottom:418.361333pt;}
.y101{bottom:422.552000pt;}
.y53{bottom:424.268000pt;}
.ydb{bottom:425.676000pt;}
.yb1{bottom:430.200000pt;}
.y1c{bottom:431.516000pt;}
.y12c{bottom:436.428000pt;}
.y6a{bottom:438.673333pt;}
.y100{bottom:440.617333pt;}
.y52{bottom:442.333333pt;}
.yda{bottom:443.741333pt;}
.yb0{bottom:448.265333pt;}
.y1b{bottom:449.581333pt;}
.y12b{bottom:454.493333pt;}
.y94{bottom:456.998667pt;}
.yff{bottom:458.682667pt;}
.y51{bottom:460.398667pt;}
.yd9{bottom:461.806667pt;}
.yaf{bottom:466.332000pt;}
.y1a{bottom:467.646667pt;}
.y12a{bottom:472.558667pt;}
.y93{bottom:475.064000pt;}
.yfe{bottom:476.748000pt;}
.y50{bottom:478.464000pt;}
.yae{bottom:484.397333pt;}
.y69{bottom:484.424000pt;}
.y19{bottom:485.712000pt;}
.yd8{bottom:489.232000pt;}
.y129{bottom:490.624000pt;}
.y92{bottom:493.129333pt;}
.y4f{bottom:496.529333pt;}
.yad{bottom:502.462667pt;}
.y68{bottom:502.489333pt;}
.y18{bottom:503.778667pt;}
.y128{bottom:508.689333pt;}
.yfd{bottom:509.166667pt;}
.y91{bottom:511.196000pt;}
.y4e{bottom:514.596000pt;}
.yac{bottom:520.528000pt;}
.y67{bottom:520.556000pt;}
.y127{bottom:526.756000pt;}
.yd7{bottom:527.577333pt;}
.y13e{bottom:528.881333pt;}
.y90{bottom:529.261333pt;}
.y4d{bottom:532.661333pt;}
.y17{bottom:536.196000pt;}
.yab{bottom:538.593333pt;}
.y66{bottom:538.621333pt;}
.y126{bottom:544.821333pt;}
.yd6{bottom:545.644000pt;}
.y13d{bottom:546.946667pt;}
.y8f{bottom:547.326667pt;}
.y4c{bottom:550.726667pt;}
.yfc{bottom:554.916000pt;}
.yaa{bottom:556.660000pt;}
.y65{bottom:556.686667pt;}
.y125{bottom:562.886667pt;}
.yd5{bottom:563.709333pt;}
.y13c{bottom:565.012000pt;}
.y8e{bottom:565.392000pt;}
.y4b{bottom:568.792000pt;}
.yfb{bottom:572.982667pt;}
.ya8{bottom:574.725333pt;}
.y64{bottom:574.752000pt;}
.ya9{bottom:580.180000pt;}
.y124{bottom:580.952000pt;}
.yd4{bottom:581.774667pt;}
.y8d{bottom:583.457333pt;}
.y4a{bottom:586.857333pt;}
.yfa{bottom:591.048000pt;}
.ya7{bottom:592.790667pt;}
.y63{bottom:592.817333pt;}
.y13b{bottom:597.429333pt;}
.y123{bottom:599.017333pt;}
.yd3{bottom:599.840000pt;}
.y8c{bottom:601.522667pt;}
.y16{bottom:602.128000pt;}
.y49{bottom:604.924000pt;}
.yf9{bottom:609.113333pt;}
.y62{bottom:610.882667pt;}
.y15{bottom:616.740000pt;}
.y122{bottom:617.084000pt;}
.yd2{bottom:617.905333pt;}
.y8b{bottom:619.589333pt;}
.y48{bottom:622.989333pt;}
.yf8{bottom:627.178667pt;}
.y121{bottom:635.149333pt;}
.yd1{bottom:635.972000pt;}
.y61{bottom:638.309333pt;}
.y47{bottom:641.054667pt;}
.y14{bottom:641.504000pt;}
.ya6{bottom:645.101333pt;}
.yf7{bottom:645.244000pt;}
.y8a{bottom:647.014667pt;}
.y120{bottom:653.214667pt;}
.y13{bottom:656.116000pt;}
.y46{bottom:659.120000pt;}
.yf6{bottom:663.310667pt;}
.yd0{bottom:663.397333pt;}
.y12{bottom:670.728000pt;}
.y11f{bottom:671.280000pt;}
.y45{bottom:677.185333pt;}
.yf5{bottom:681.376000pt;}
.y11{bottom:685.340000pt;}
.y89{bottom:685.892000pt;}
.y11e{bottom:689.345333pt;}
.y44{bottom:695.252000pt;}
.yf4{bottom:699.441333pt;}
.y10{bottom:699.952000pt;}
.ycf{bottom:701.742667pt;}
.y88{bottom:703.957333pt;}
.y11d{bottom:707.412000pt;}
.y43{bottom:713.317333pt;}
.yf{bottom:714.564000pt;}
.yf3{bottom:717.506667pt;}
.yce{bottom:719.808000pt;}
.y87{bottom:722.022667pt;}
.y11c{bottom:725.477333pt;}
.ye{bottom:729.176000pt;}
.y42{bottom:731.382667pt;}
.yf2{bottom:735.572000pt;}
.ycd{bottom:737.873333pt;}
.y85{bottom:740.088000pt;}
.y11b{bottom:743.542667pt;}
.yd{bottom:743.788000pt;}
.y86{bottom:745.542667pt;}
.y41{bottom:749.448000pt;}
.yf1{bottom:753.638667pt;}
.ycc{bottom:755.940000pt;}
.y84{bottom:758.153333pt;}
.yc{bottom:758.400000pt;}
.y11a{bottom:761.608000pt;}
.y40{bottom:767.513333pt;}
.yf0{bottom:771.704000pt;}
.yb{bottom:773.012000pt;}
.ycb{bottom:774.005333pt;}
.y83{bottom:776.220000pt;}
.y119{bottom:779.673333pt;}
.y3f{bottom:785.580000pt;}
.ya{bottom:787.622667pt;}
.yef{bottom:789.769333pt;}
.yca{bottom:792.070667pt;}
.y82{bottom:794.285333pt;}
.y118{bottom:797.740000pt;}
.y9{bottom:802.234667pt;}
.y3e{bottom:803.645333pt;}
.yee{bottom:807.834667pt;}
.yc9{bottom:810.136000pt;}
.y81{bottom:812.350667pt;}
.y117{bottom:815.805333pt;}
.y3d{bottom:821.710667pt;}
.yed{bottom:825.900000pt;}
.yc8{bottom:828.201333pt;}
.y80{bottom:830.416000pt;}
.y116{bottom:833.870667pt;}
.y3c{bottom:839.776000pt;}
.yc7{bottom:846.268000pt;}
.y8{bottom:846.834667pt;}
.y7f{bottom:848.481333pt;}
.y115{bottom:851.936000pt;}
.y3b{bottom:857.841333pt;}
.yec{bottom:858.318667pt;}
.y7{bottom:864.102667pt;}
.yc6{bottom:864.333333pt;}
.y7e{bottom:866.548000pt;}
.y114{bottom:870.001333pt;}
.y3a{bottom:875.908000pt;}
.y6{bottom:881.372000pt;}
.yc5{bottom:882.398667pt;}
.y7d{bottom:884.613333pt;}
.y113{bottom:888.068000pt;}
.y39{bottom:893.973333pt;}
.yc4{bottom:900.464000pt;}
.y7c{bottom:902.678667pt;}
.y112{bottom:906.133333pt;}
.y5{bottom:907.440000pt;}
.y38{bottom:912.038667pt;}
.yc3{bottom:918.529333pt;}
.y7b{bottom:920.744000pt;}
.y111{bottom:924.198667pt;}
.y4{bottom:926.037333pt;}
.y37{bottom:930.104000pt;}
.yc2{bottom:936.596000pt;}
.y79{bottom:938.809333pt;}
.y110{bottom:942.264000pt;}
.y7a{bottom:944.264000pt;}
.y36{bottom:948.169333pt;}
.y78{bottom:956.876000pt;}
.y3{bottom:960.574667pt;}
.yc1{bottom:964.021333pt;}
.y35{bottom:966.236000pt;}
.y10f{bottom:974.681333pt;}
.y77{bottom:974.941333pt;}
.y34{bottom:984.301333pt;}
.y2{bottom:989.798667pt;}
.y76{bottom:993.006667pt;}
.y32{bottom:1002.366667pt;}
.y33{bottom:1007.821333pt;}
.y1{bottom:1019.022667pt;}
.y31{bottom:1020.432000pt;}
.hc{height:22.252538pt;}
.h5{height:22.571342pt;}
.hf{height:23.463994pt;}
.hb{height:33.857051pt;}
.ha{height:34.257444pt;}
.h7{height:35.196030pt;}
.h13{height:36.658442pt;}
.h12{height:37.087588pt;}
.h6{height:40.610906pt;}
.he{height:41.077976pt;}
.hd{height:41.843107pt;}
.h9{height:42.821815pt;}
.h10{height:44.505113pt;}
.h8{height:53.406121pt;}
.h4{height:54.009802pt;}
.h3{height:55.194672pt;}
.h11{height:56.076111pt;}
.h2{height:64.087345pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x5{left:101.188000pt;}
.x70{left:102.764000pt;}
.x6{left:107.952000pt;}
.x7{left:110.545333pt;}
.x3a{left:114.633333pt;}
.x71{left:127.156000pt;}
.x6c{left:129.021333pt;}
.x6b{left:130.973333pt;}
.x6f{left:133.258667pt;}
.x4d{left:146.828000pt;}
.x28{left:149.494667pt;}
.x10{left:153.401333pt;}
.x2{left:155.664000pt;}
.x29{left:160.377333pt;}
.x50{left:164.465333pt;}
.x60{left:170.880000pt;}
.x41{left:177.894667pt;}
.x58{left:186.765333pt;}
.x3d{left:190.394667pt;}
.x6d{left:202.662667pt;}
.x7e{left:204.610667pt;}
.x4e{left:208.433333pt;}
.x11{left:209.328000pt;}
.x6e{left:211.390667pt;}
.x12{left:218.781333pt;}
.x80{left:219.738667pt;}
.x48{left:231.621333pt;}
.x69{left:236.089333pt;}
.x51{left:247.973333pt;}
.x68{left:257.840000pt;}
.x6a{left:261.509333pt;}
.x16{left:262.709333pt;}
.x17{left:276.236000pt;}
.x18{left:283.090667pt;}
.x5e{left:286.433333pt;}
.x32{left:288.445333pt;}
.x19{left:296.618667pt;}
.x33{left:301.972000pt;}
.x66{left:310.200000pt;}
.x45{left:313.368000pt;}
.x75{left:316.226667pt;}
.x79{left:319.432000pt;}
.x3e{left:321.361333pt;}
.x49{left:326.016000pt;}
.x1a{left:330.266667pt;}
.x81{left:335.916000pt;}
.x42{left:337.638667pt;}
.x73{left:339.549333pt;}
.x65{left:341.881333pt;}
.x1b{left:343.794667pt;}
.x56{left:348.857333pt;}
.x61{left:352.408000pt;}
.x62{left:353.645333pt;}
.x7c{left:354.646667pt;}
.x59{left:374.208000pt;}
.x52{left:378.129333pt;}
.x5b{left:383.462667pt;}
.x2c{left:388.602667pt;}
.x1c{left:392.529333pt;}
.x7a{left:394.080000pt;}
.x7f{left:395.276000pt;}
.x4f{left:397.222667pt;}
.x2d{left:402.130667pt;}
.x1d{left:406.057333pt;}
.x82{left:409.512000pt;}
.x26{left:411.194667pt;}
.x1e{left:413.957333pt;}
.x63{left:422.790667pt;}
.x27{left:424.722667pt;}
.x1f{left:427.484000pt;}
.x2a{left:437.176000pt;}
.x8{left:440.426667pt;}
.x2b{left:443.212000pt;}
.x5f{left:446.177333pt;}
.x9{left:447.190667pt;}
.x22{left:448.541333pt;}
.x76{left:453.309333pt;}
.x53{left:458.001333pt;}
.x67{left:460.548000pt;}
.x23{left:462.069333pt;}
.x24{left:465.833333pt;}
.x7d{left:470.825333pt;}
.x57{left:472.296000pt;}
.x25{left:479.360000pt;}
.x3b{left:480.922667pt;}
.x20{left:486.621333pt;}
.x78{left:492.222667pt;}
.x21{left:500.148000pt;}
.x34{left:502.284000pt;}
.x35{left:511.941333pt;}
.x72{left:517.818667pt;}
.x2e{left:520.226667pt;}
.x46{left:522.208000pt;}
.x4a{left:524.049333pt;}
.x3f{left:529.234667pt;}
.x2f{left:533.753333pt;}
.x13{left:539.937333pt;}
.x30{left:542.188000pt;}
.x54{left:544.005333pt;}
.x14{left:546.700000pt;}
.x7b{left:547.813333pt;}
.x5a{left:551.376000pt;}
.x3{left:553.262667pt;}
.x31{left:555.714667pt;}
.x4{left:560.025333pt;}
.x83{left:562.621333pt;}
.x4c{left:567.001333pt;}
.x77{left:577.373333pt;}
.xc{left:581.264000pt;}
.x5c{left:589.488000pt;}
.xd{left:591.702667pt;}
.x43{left:595.238667pt;}
.xe{left:596.985333pt;}
.x64{left:600.700000pt;}
.xf{left:603.748000pt;}
.x15{left:611.393333pt;}
.x55{left:612.580000pt;}
.x47{left:616.853333pt;}
.x4b{left:625.705333pt;}
.x40{left:634.529333pt;}
.x3c{left:639.612000pt;}
.x74{left:641.064000pt;}
.x5d{left:647.734667pt;}
.x44{left:653.328000pt;}
.x36{left:668.113333pt;}
.x37{left:681.641333pt;}
.xa{left:684.832000pt;}
.x38{left:689.969333pt;}
.xb{left:691.596000pt;}
.x39{left:696.005333pt;}
}




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