
    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_6f0862bdbf23cb1b5527978d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_6cb7ec98f0e6cedd848731e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_4f7c08a94444a1177c0bcd2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984048;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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_eca39fad93e3db9cc4cb1168.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.909180;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_10001d4e11f4930c256de1aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_4fc40a1a97273b037e2e6193.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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:ffc;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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:ffd;src:url('chunks/assets/font_f13bd1391b7bfb4015a1ec23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_11ac366dd1d30ef40027f43c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.853027;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:fff;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.fff{font-family:fff;line-height:0.767578;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:ff10;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.767578;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:ff11;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.767578;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:ff12;src:url('chunks/assets/font_ba7876e3dbf662a9596b65ef.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.767578;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:ff13;src:url('chunks/assets/font_8c38f6a109d6c2079241879d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_c476c676e53b0501c3ffe879.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.882324;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:ff15;src:url('chunks/assets/font_bab3c3798a17546cc6ec6fe0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.766602;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:ff16;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.767578;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:ff17;src:url('chunks/assets/font_6cb7ec98f0e6cedd848731e1.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.132000;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:ff18;src:url('chunks/assets/font_372d6c197e42d81497482dbf.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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:ff19;src:url('chunks/assets/font_4f7c08a94444a1177c0bcd2b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.984048;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:ff1a;src:url('chunks/assets/font_26d0a645515969d72d33b391.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;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:ff1b;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.767578;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:ff1c;src:url('chunks/assets/font_f0378470808ecf16e3b83804.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.933594;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:ff1d;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.767578;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:ff1e;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.767578;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:ff1f;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.767578;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:ff20;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.767578;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:ff21;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.767578;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;}
.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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls3b{letter-spacing:-1.224000px;}
.ls42{letter-spacing:-1.152000px;}
.ls32{letter-spacing:-0.648000px;}
.ls2d{letter-spacing:-0.529920px;}
.ls30{letter-spacing:-0.504000px;}
.ls31{letter-spacing:-0.432000px;}
.ls37{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.331200px;}
.ls36{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.096120px;}
.ls21{letter-spacing:-0.073200px;}
.lsf{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.062400px;}
.ls24{letter-spacing:0.064440px;}
.lsb{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.153600px;}
.ls20{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.198720px;}
.ls1f{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.728640px;}
.ls35{letter-spacing:0.792000px;}
.ls3a{letter-spacing:0.936000px;}
.ls16{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.440000px;}
.ls3e{letter-spacing:1.584000px;}
.ls41{letter-spacing:1.728000px;}
.ls1d{letter-spacing:1.800000px;}
.ls6{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.520000px;}
.ls43{letter-spacing:2.592000px;}
.ls2f{letter-spacing:2.664000px;}
.ls12{letter-spacing:2.880000px;}
.lsc{letter-spacing:3.600000px;}
.lsd{letter-spacing:3.960000px;}
.ls17{letter-spacing:4.680000px;}
.ls2a{letter-spacing:5.040000px;}
.ls19{letter-spacing:5.400000px;}
.ls8{letter-spacing:6.120000px;}
.ls1b{letter-spacing:6.480000px;}
.ls18{letter-spacing:7.560000px;}
.ls1e{letter-spacing:7.920000px;}
.ls3{letter-spacing:8.640000px;}
.ls4{letter-spacing:9.000000px;}
.ls3d{letter-spacing:9.360000px;}
.ls7{letter-spacing:9.720000px;}
.ls2b{letter-spacing:10.800000px;}
.ls1c{letter-spacing:11.160000px;}
.ls2{letter-spacing:11.880000px;}
.ls40{letter-spacing:12.240000px;}
.ls27{letter-spacing:13.680000px;}
.ls39{letter-spacing:15.120000px;}
.ls13{letter-spacing:15.480000px;}
.ls29{letter-spacing:16.560000px;}
.lsa{letter-spacing:16.920000px;}
.ls9{letter-spacing:17.280000px;}
.ls15{letter-spacing:18.000000px;}
.ls3c{letter-spacing:19.440000px;}
.ls38{letter-spacing:20.880000px;}
.ls14{letter-spacing:22.680000px;}
.ls44{letter-spacing:100.944000px;}
.ls3f{letter-spacing:136.944000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4d{word-spacing:-33.907680px;}
.ws2{word-spacing:-24.030000px;}
.wsa9{word-spacing:-19.728000px;}
.ws5a{word-spacing:-18.792000px;}
.ws59{word-spacing:-18.576000px;}
.ws5d{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws30{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws2f{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws7d{word-spacing:-17.784000px;}
.ws5e{word-spacing:-17.712000px;}
.ws5f{word-spacing:-17.640000px;}
.ws60{word-spacing:-17.568000px;}
.ws5b{word-spacing:-17.496000px;}
.ws5c{word-spacing:-17.352000px;}
.ws4f{word-spacing:-16.866960px;}
.ws56{word-spacing:-16.758720px;}
.ws4c{word-spacing:-16.650000px;}
.wsb7{word-spacing:-16.532400px;}
.ws0{word-spacing:-16.500000px;}
.ws58{word-spacing:-16.228800px;}
.ws57{word-spacing:-16.030080px;}
.ws67{word-spacing:-2.160000px;}
.ws96{word-spacing:-1.584000px;}
.wsa5{word-spacing:-1.080000px;}
.ws9f{word-spacing:-0.792000px;}
.ws8a{word-spacing:-0.720000px;}
.ws62{word-spacing:-0.504000px;}
.wsaa{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.360000px;}
.ws6d{word-spacing:-0.288000px;}
.ws81{word-spacing:-0.216000px;}
.ws14{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.072000px;}
.wsf{word-spacing:0.144000px;}
.ws3{word-spacing:0.192240px;}
.ws78{word-spacing:0.216000px;}
.ws93{word-spacing:0.288000px;}
.ws86{word-spacing:0.360000px;}
.ws6b{word-spacing:0.432000px;}
.ws6a{word-spacing:0.504000px;}
.ws8f{word-spacing:0.576000px;}
.ws41{word-spacing:0.648000px;}
.ws69{word-spacing:0.720000px;}
.ws42{word-spacing:0.792000px;}
.ws33{word-spacing:0.864000px;}
.ws68{word-spacing:0.936000px;}
.ws36{word-spacing:1.008000px;}
.wsb5{word-spacing:1.080000px;}
.ws7a{word-spacing:1.152000px;}
.ws37{word-spacing:1.224000px;}
.ws61{word-spacing:1.258560px;}
.ws85{word-spacing:1.368000px;}
.ws49{word-spacing:1.512000px;}
.ws2e{word-spacing:1.584000px;}
.ws63{word-spacing:1.872000px;}
.ws64{word-spacing:2.016000px;}
.ws40{word-spacing:2.160000px;}
.ws11{word-spacing:2.232000px;}
.ws10{word-spacing:2.304000px;}
.ws12{word-spacing:2.376000px;}
.ws7b{word-spacing:2.448000px;}
.ws65{word-spacing:2.592000px;}
.wsb{word-spacing:2.664000px;}
.ws90{word-spacing:2.808000px;}
.ws31{word-spacing:3.024000px;}
.ws26{word-spacing:3.168000px;}
.ws28{word-spacing:3.240000px;}
.ws97{word-spacing:3.312000px;}
.ws27{word-spacing:3.384000px;}
.ws87{word-spacing:3.600000px;}
.ws25{word-spacing:3.744000px;}
.ws2c{word-spacing:3.888000px;}
.ws2d{word-spacing:4.032000px;}
.ws2b{word-spacing:4.104000px;}
.ws66{word-spacing:4.248000px;}
.ws3e{word-spacing:4.608000px;}
.ws3f{word-spacing:4.680000px;}
.ws71{word-spacing:4.752000px;}
.ws23{word-spacing:4.824000px;}
.ws22{word-spacing:4.968000px;}
.ws24{word-spacing:5.184000px;}
.ws7e{word-spacing:5.256000px;}
.ws74{word-spacing:5.328000px;}
.ws46{word-spacing:5.400000px;}
.ws1a{word-spacing:5.472000px;}
.ws1d{word-spacing:5.544000px;}
.wsc{word-spacing:5.616000px;}
.ws1b{word-spacing:5.688000px;}
.ws29{word-spacing:5.832000px;}
.wsd{word-spacing:5.904000px;}
.ws1e{word-spacing:6.120000px;}
.ws1f{word-spacing:6.192000px;}
.wsaf{word-spacing:6.336000px;}
.ws44{word-spacing:6.408000px;}
.ws89{word-spacing:6.480000px;}
.ws43{word-spacing:6.624000px;}
.ws7c{word-spacing:6.696000px;}
.ws76{word-spacing:6.768000px;}
.wsa8{word-spacing:6.840000px;}
.wsa7{word-spacing:6.912000px;}
.ws75{word-spacing:6.984000px;}
.ws9e{word-spacing:7.128000px;}
.wsa4{word-spacing:7.344000px;}
.ws15{word-spacing:7.488000px;}
.ws16{word-spacing:7.632000px;}
.ws17{word-spacing:7.704000px;}
.wsab{word-spacing:7.776000px;}
.ws4b{word-spacing:7.848000px;}
.wsa3{word-spacing:7.920000px;}
.ws4a{word-spacing:8.064000px;}
.ws8c{word-spacing:8.424000px;}
.ws95{word-spacing:8.568000px;}
.ws45{word-spacing:8.712000px;}
.wse{word-spacing:8.784000px;}
.ws8b{word-spacing:9.072000px;}
.wsa1{word-spacing:9.216000px;}
.wsa2{word-spacing:9.360000px;}
.ws94{word-spacing:9.648000px;}
.wsa6{word-spacing:9.792000px;}
.ws13{word-spacing:9.864000px;}
.ws8e{word-spacing:10.224000px;}
.ws47{word-spacing:11.088000px;}
.wsb1{word-spacing:11.232000px;}
.ws48{word-spacing:11.304000px;}
.ws9{word-spacing:11.448000px;}
.ws8{word-spacing:11.592000px;}
.ws7{word-spacing:11.664000px;}
.wsa{word-spacing:12.024000px;}
.ws7f{word-spacing:12.744000px;}
.wsb4{word-spacing:13.104000px;}
.ws80{word-spacing:13.392000px;}
.ws19{word-spacing:13.824000px;}
.ws79{word-spacing:14.112000px;}
.ws6c{word-spacing:14.184000px;}
.ws8d{word-spacing:14.400000px;}
.ws35{word-spacing:14.832000px;}
.ws34{word-spacing:14.904000px;}
.wsb6{word-spacing:14.976000px;}
.ws6e{word-spacing:15.408000px;}
.ws38{word-spacing:15.552000px;}
.ws39{word-spacing:15.624000px;}
.ws6f{word-spacing:16.272000px;}
.ws77{word-spacing:16.344000px;}
.ws70{word-spacing:16.848000px;}
.ws21{word-spacing:16.992000px;}
.ws20{word-spacing:17.064000px;}
.wsad{word-spacing:17.856000px;}
.ws99{word-spacing:18.000000px;}
.ws3d{word-spacing:18.072000px;}
.ws3c{word-spacing:18.144000px;}
.ws9a{word-spacing:18.216000px;}
.wsb2{word-spacing:18.288000px;}
.ws98{word-spacing:18.432000px;}
.ws88{word-spacing:18.504000px;}
.wsb3{word-spacing:18.648000px;}
.wsac{word-spacing:18.864000px;}
.ws92{word-spacing:19.440000px;}
.ws73{word-spacing:19.728000px;}
.ws72{word-spacing:19.944000px;}
.ws91{word-spacing:20.088000px;}
.ws84{word-spacing:20.304000px;}
.ws82{word-spacing:20.592000px;}
.ws83{word-spacing:20.880000px;}
.ws2a{word-spacing:21.024000px;}
.wsa0{word-spacing:21.168000px;}
.wsb0{word-spacing:21.312000px;}
.ws3b{word-spacing:22.608000px;}
.ws3a{word-spacing:22.824000px;}
.ws9c{word-spacing:23.184000px;}
.ws9d{word-spacing:24.192000px;}
.wsae{word-spacing:24.912000px;}
.ws9b{word-spacing:35.784000px;}
.ws4e{word-spacing:89.424000px;}
.ws54{word-spacing:489.888000px;}
.ws52{word-spacing:631.128000px;}
.ws50{word-spacing:702.648000px;}
.ws51{word-spacing:1112.448000px;}
.ws55{word-spacing:1312.968000px;}
.ws53{word-spacing:2448.528000px;}
._18{margin-left:-9.792000px;}
._1{margin-left:-4.800000px;}
._7{margin-left:-3.432000px;}
._a{margin-left:-2.088000px;}
._0{margin-left:-1.080000px;}
._3{width:1.056000px;}
._9{width:2.166000px;}
._4{width:3.366000px;}
._b{width:4.608000px;}
._f{width:6.234000px;}
._e{width:8.184000px;}
._c{width:10.164000px;}
._d{width:11.796000px;}
._5{width:13.530000px;}
._6{width:14.586000px;}
._2{width:17.820000px;}
._8{width:19.866000px;}
._13{width:21.312000px;}
._16{width:591.328200px;}
._11{width:746.604000px;}
._12{width:839.992680px;}
._14{width:846.000000px;}
._19{width:848.998080px;}
._10{width:870.480000px;}
._17{width:1155.648000px;}
._15{width:1864.356000px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs8{font-size:60.120000px;}
.fs7{font-size:65.880000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fsa{font-size:90.000000px;}
.fs3{font-size:96.120000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:119.880000px;}
.y163{bottom:-17.129882px;}
.y161{bottom:-17.099882px;}
.ycf{bottom:-14.489906px;}
.yba{bottom:-14.219906px;}
.y88{bottom:-1.979906px;}
.y8a{bottom:-1.889906px;}
.y84{bottom:-1.439906px;}
.y86{bottom:-1.349906px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.330118px;}
.ya1{bottom:3.420118px;}
.y96{bottom:7.200094px;}
.ycc{bottom:7.380094px;}
.y7b{bottom:8.190094px;}
.y82{bottom:9.450094px;}
.y9b{bottom:13.860118px;}
.y7e{bottom:16.200094px;}
.y79{bottom:16.740094px;}
.y7c{bottom:16.830094px;}
.ybb{bottom:51.163500px;}
.ya9{bottom:69.433500px;}
.y6f{bottom:69.523500px;}
.y15f{bottom:69.906000px;}
.y15c{bottom:70.153500px;}
.y98{bottom:70.266000px;}
.y62{bottom:70.392000px;}
.yd3{bottom:71.406870px;}
.yca{bottom:88.243500px;}
.y15a{bottom:88.266000px;}
.yd2{bottom:92.653350px;}
.yc{bottom:124.319400px;}
.y15b{bottom:126.156000px;}
.yb0{bottom:136.303500px;}
.y13d{bottom:139.093350px;}
.yb{bottom:143.822400px;}
.y10b{bottom:145.573350px;}
.y5a{bottom:148.295850px;}
.y9a{bottom:151.895882px;}
.y3d{bottom:155.585850px;}
.y166{bottom:157.745882px;}
.y120{bottom:160.693350px;}
.yb2{bottom:162.043500px;}
.y1f{bottom:167.015850px;}
.y77{bottom:167.173500px;}
.yaf{bottom:170.863500px;}
.y13c{bottom:173.653350px;}
.y10a{bottom:179.773350px;}
.y165{bottom:181.055882px;}
.y59{bottom:182.585850px;}
.ya{bottom:182.828400px;}
.yc5{bottom:186.523500px;}
.y154{bottom:188.773350px;}
.y99{bottom:189.426000px;}
.y3c{bottom:189.965850px;}
.y11f{bottom:194.893350px;}
.yb1{bottom:196.693500px;}
.yb9{bottom:199.303406px;}
.y9{bottom:202.331400px;}
.yee{bottom:202.453350px;}
.y13b{bottom:207.853350px;}
.y164{bottom:209.855882px;}
.y109{bottom:214.333350px;}
.y1e{bottom:218.549850px;}
.y8{bottom:221.834400px;}
.y153{bottom:222.973350px;}
.y3b{bottom:224.255850px;}
.y11e{bottom:229.093350px;}
.ya7{bottom:230.585882px;}
.y162{bottom:235.805882px;}
.yed{bottom:236.653350px;}
.y58{bottom:237.935850px;}
.y7{bottom:241.337400px;}
.y13a{bottom:242.053350px;}
.y108{bottom:248.533350px;}
.ya6{bottom:249.755882px;}
.y152{bottom:257.173350px;}
.y3a{bottom:258.545850px;}
.y6{bottom:260.840400px;}
.y160{bottom:262.445882px;}
.y11d{bottom:263.653350px;}
.ya5{bottom:268.835882px;}
.yec{bottom:270.853350px;}
.y57{bottom:272.225850px;}
.y1d{bottom:273.089850px;}
.y76{bottom:279.073500px;}
.y5{bottom:280.343400px;}
.ya3{bottom:288.005882px;}
.yc4{bottom:289.873500px;}
.y151{bottom:291.373350px;}
.y139{bottom:291.733350px;}
.y39{bottom:292.835850px;}
.y11c{bottom:297.853350px;}
.y107{bottom:298.213350px;}
.y4{bottom:299.846400px;}
.yeb{bottom:305.053350px;}
.y56{bottom:306.515850px;}
.ya2{bottom:307.085882px;}
.ycd{bottom:307.783500px;}
.y150{bottom:325.933350px;}
.ya0{bottom:326.975882px;}
.y1c{bottom:327.548850px;}
.y106{bottom:332.053350px;}
.yea{bottom:339.613350px;}
.y55{bottom:340.895850px;}
.y138{bottom:341.053350px;}
.y38{bottom:348.185850px;}
.yae{bottom:355.213500px;}
.yb8{bottom:359.803500px;}
.y14f{bottom:360.133350px;}
.y105{bottom:366.613350px;}
.ye9{bottom:373.813350px;}
.y54{bottom:375.185850px;}
.y137{bottom:375.253350px;}
.y1b{bottom:382.007850px;}
.y37{bottom:382.475850px;}
.y104{bottom:400.813350px;}
.yc8{bottom:403.813500px;}
.ye8{bottom:408.013350px;}
.y136{bottom:409.453350px;}
.y53{bottom:409.475850px;}
.y14e{bottom:409.813350px;}
.y36{bottom:416.855850px;}
.y75{bottom:425.413500px;}
.y15e{bottom:429.373500px;}
.y103{bottom:435.013350px;}
.y1a{bottom:436.466850px;}
.yce{bottom:439.723406px;}
.ye7{bottom:442.213350px;}
.y14d{bottom:443.653350px;}
.y52{bottom:443.855850px;}
.y35{bottom:451.145850px;}
.yad{bottom:458.443500px;}
.y135{bottom:459.133350px;}
.y3{bottom:460.346400px;}
.y102{bottom:469.213350px;}
.y14c{bottom:477.853350px;}
.y51{bottom:478.145850px;}
.y34{bottom:485.435850px;}
.ya8{bottom:486.546000px;}
.y19{bottom:490.925850px;}
.ye6{bottom:491.893350px;}
.y134{bottom:492.973350px;}
.y2{bottom:496.347900px;}
.y101{bottom:503.773350px;}
.yc3{bottom:505.063500px;}
.y14b{bottom:512.413350px;}
.y50{bottom:512.435850px;}
.y15d{bottom:517.843500px;}
.y33{bottom:519.815850px;}
.ye5{bottom:526.093350px;}
.y133{bottom:527.173350px;}
.y1{bottom:527.846400px;}
.yac{bottom:536.383500px;}
.y11b{bottom:537.973350px;}
.yc2{bottom:539.623500px;}
.y18{bottom:545.384850px;}
.y14a{bottom:546.613350px;}
.y4f{bottom:546.815850px;}
.y100{bottom:553.453350px;}
.y32{bottom:554.105850px;}
.yd0{bottom:558.433500px;}
.ye4{bottom:560.293350px;}
.y132{bottom:561.733350px;}
.y11a{bottom:572.173350px;}
.yc1{bottom:574.273500px;}
.y4e{bottom:581.105850px;}
.yff{bottom:587.293350px;}
.y31{bottom:588.395850px;}
.y74{bottom:589.663500px;}
.ye3{bottom:594.493350px;}
.y131{bottom:595.933350px;}
.y149{bottom:596.293350px;}
.y17{bottom:599.924850px;}
.yab{bottom:605.323500px;}
.y119{bottom:606.733350px;}
.yc0{bottom:608.923500px;}
.y4d{bottom:615.395850px;}
.yfe{bottom:621.493350px;}
.y30{bottom:622.685850px;}
.ye2{bottom:629.053350px;}
.y130{bottom:630.133350px;}
.y118{bottom:640.933350px;}
.ybf{bottom:643.483500px;}
.y4c{bottom:649.685850px;}
.y16{bottom:654.383850px;}
.yfd{bottom:656.053350px;}
.y2f{bottom:657.065850px;}
.y95{bottom:657.733406px;}
.ye1{bottom:663.253350px;}
.y12f{bottom:664.693350px;}
.y117{bottom:675.133350px;}
.ybe{bottom:678.163500px;}
.y148{bottom:679.813350px;}
.y94{bottom:683.923406px;}
.y4b{bottom:684.065850px;}
.yc9{bottom:688.153500px;}
.yfc{bottom:690.253350px;}
.y2e{bottom:691.355850px;}
.ye0{bottom:697.453350px;}
.y73{bottom:701.653500px;}
.y93{bottom:708.673406px;}
.y15{bottom:708.842850px;}
.y116{bottom:709.693350px;}
.y12e{bottom:714.373350px;}
.y4a{bottom:718.355850px;}
.yfb{bottom:724.453350px;}
.y2d{bottom:725.645850px;}
.y147{bottom:729.133350px;}
.ydf{bottom:732.013350px;}
.y92{bottom:733.423406px;}
.y115{bottom:743.893350px;}
.y12d{bottom:748.213350px;}
.ycb{bottom:752.233406px;}
.y49{bottom:752.645850px;}
.ybd{bottom:754.123500px;}
.y91{bottom:757.093406px;}
.y122{bottom:759.373350px;}
.y2c{bottom:760.025850px;}
.y14{bottom:763.301850px;}
.y146{bottom:763.333350px;}
.yfa{bottom:774.133350px;}
.y114{bottom:778.093350px;}
.y158{bottom:778.453350px;}
.y90{bottom:780.673406px;}
.yde{bottom:781.693350px;}
.y12c{bottom:782.413350px;}
.y48{bottom:787.025850px;}
.y2b{bottom:794.315850px;}
.y145{bottom:797.533350px;}
.y8f{bottom:804.343406px;}
.yf9{bottom:808.333350px;}
.y121{bottom:808.693350px;}
.y113{bottom:812.653350px;}
.y81{bottom:813.343406px;}
.ydd{bottom:815.533350px;}
.y12b{bottom:816.973350px;}
.y13{bottom:817.760850px;}
.y47{bottom:821.315850px;}
.y157{bottom:827.773350px;}
.y8e{bottom:827.923406px;}
.y2a{bottom:828.605850px;}
.y6e{bottom:828.621000px;}
.y72{bottom:831.613500px;}
.yf8{bottom:842.533350px;}
.y80{bottom:842.593406px;}
.y144{bottom:847.213350px;}
.y60{bottom:848.045850px;}
.y6d{bottom:849.321000px;}
.ydc{bottom:849.733350px;}
.y8d{bottom:851.593406px;}
.y9e{bottom:853.866000px;}
.y46{bottom:855.605850px;}
.yb7{bottom:857.083500px;}
.y70{bottom:858.613500px;}
.y156{bottom:861.973350px;}
.y112{bottom:862.333350px;}
.y29{bottom:862.985850px;}
.y12a{bottom:866.653350px;}
.y6c{bottom:870.066000px;}
.y12{bottom:872.219850px;}
.y8c{bottom:875.173406px;}
.yf7{bottom:876.733350px;}
.y143{bottom:881.053350px;}
.ydb{bottom:884.293350px;}
.y7f{bottom:885.343406px;}
.y45{bottom:889.985850px;}
.y6b{bottom:890.766000px;}
.y111{bottom:896.173350px;}
.y8b{bottom:898.843406px;}
.y129{bottom:900.493350px;}
.y5f{bottom:903.305850px;}
.yf6{bottom:911.293350px;}
.y6a{bottom:911.466000px;}
.y142{bottom:915.613350px;}
.y28{bottom:918.245850px;}
.yda{bottom:918.493350px;}
.y89{bottom:922.423406px;}
.yaa{bottom:923.503500px;}
.y11{bottom:926.759850px;}
.y7d{bottom:928.093406px;}
.y110{bottom:930.373350px;}
.y69{bottom:932.166000px;}
.y128{bottom:934.693350px;}
.yb6{bottom:935.023500px;}
.y44{bottom:945.245850px;}
.yf5{bottom:945.493350px;}
.y87{bottom:946.093406px;}
.y141{bottom:949.813350px;}
.y27{bottom:952.625850px;}
.yd9{bottom:952.693350px;}
.y68{bottom:952.866000px;}
.y5e{bottom:958.565850px;}
.y10f{bottom:964.933350px;}
.y127{bottom:969.253350px;}
.yb5{bottom:969.673500px;}
.y7a{bottom:970.843406px;}
.y85{bottom:971.203406px;}
.y67{bottom:973.566000px;}
.y71{bottom:977.863500px;}
.y43{bottom:979.625850px;}
.yf4{bottom:979.693350px;}
.y10{bottom:981.218850px;}
.y26{bottom:986.915850px;}
.yd8{bottom:987.253350px;}
.y9d{bottom:992.736000px;}
.y5d{bottom:992.855850px;}
.y66{bottom:994.266000px;}
.y83{bottom:997.483406px;}
.y10e{bottom:999.133350px;}
.y140{bottom:999.493350px;}
.ybc{bottom:1012.333500px;}
.y42{bottom:1013.915850px;}
.yf3{bottom:1014.253350px;}
.y155{bottom:1014.613350px;}
.y78{bottom:1014.763406px;}
.y65{bottom:1014.966000px;}
.y126{bottom:1018.933350px;}
.y25{bottom:1021.205850px;}
.yd7{bottom:1021.453350px;}
.y5c{bottom:1027.235850px;}
.y9c{bottom:1028.646000px;}
.y10d{bottom:1033.333350px;}
.y64{bottom:1035.666000px;}
.yf{bottom:1035.677850px;}
.yc7{bottom:1038.613500px;}
.y41{bottom:1048.205850px;}
.yf2{bottom:1048.453350px;}
.y24{bottom:1055.495850px;}
.yd6{bottom:1055.653350px;}
.y5b{bottom:1061.525850px;}
.y13f{bottom:1067.893350px;}
.y125{bottom:1068.253350px;}
.yc6{bottom:1073.203500px;}
.y61{bottom:1081.056000px;}
.yb4{bottom:1081.933500px;}
.y40{bottom:1082.495850px;}
.yf1{bottom:1082.653350px;}
.y10c{bottom:1083.013350px;}
.y23{bottom:1089.875850px;}
.ye{bottom:1090.136850px;}
.yd5{bottom:1090.213350px;}
.y21{bottom:1097.787930px;}
.y124{bottom:1102.093350px;}
.yb3{bottom:1116.583500px;}
.y9f{bottom:1116.606000px;}
.y3f{bottom:1116.875850px;}
.yf0{bottom:1117.213350px;}
.y13e{bottom:1117.573350px;}
.yd4{bottom:1133.413350px;}
.yd{bottom:1144.595850px;}
.y22{bottom:1145.135850px;}
.y20{bottom:1147.385850px;}
.y3e{bottom:1151.165850px;}
.yef{bottom:1151.413350px;}
.y123{bottom:1151.773350px;}
.y63{bottom:1151.976000px;}
.y97{bottom:1183.656000px;}
.yd1{bottom:1206.493350px;}
.y159{bottom:1208.316000px;}
.h21{height:14.040000px;}
.h1a{height:19.080000px;}
.h18{height:19.170000px;}
.h2b{height:22.498500px;}
.h13{height:23.580000px;}
.h14{height:23.670000px;}
.h12{height:24.750000px;}
.h28{height:25.830000px;}
.h29{height:25.950000px;}
.h2a{height:28.080000px;}
.h11{height:29.250000px;}
.h16{height:29.968500px;}
.h1f{height:31.860000px;}
.he{height:41.684766px;}
.h10{height:42.750000px;}
.h19{height:43.769004px;}
.hd{height:43.830000px;}
.hf{height:43.920000px;}
.h24{height:44.149219px;}
.h26{height:44.616973px;}
.h1c{height:45.589043px;}
.hb{height:45.678516px;}
.h3{height:45.858398px;}
.h1d{height:47.988281px;}
.ha{height:49.921875px;}
.h15{height:49.956855px;}
.h17{height:49.992188px;}
.h9{height:50.229844px;}
.hc{height:52.417969px;}
.h1e{height:54.597656px;}
.h23{height:57.165120px;}
.h20{height:58.158984px;}
.h1b{height:60.679688px;}
.h7{height:62.136000px;}
.h8{height:63.606270px;}
.h27{height:65.522461px;}
.h6{height:68.730377px;}
.h22{height:90.553887px;}
.h5{height:93.204000px;}
.h25{height:1288.346906px;}
.h2{height:1288.347000px;}
.h4{height:1288.392000px;}
.h0{height:1288.440000px;}
.h1{height:1288.500000px;}
.w1b{width:10.980000px;}
.w1a{width:11.010000px;}
.wc{width:14.580000px;}
.wd{width:14.670000px;}
.w18{width:26.550000px;}
.wa{width:47.970000px;}
.w9{width:53.100000px;}
.w1d{width:56.430000px;}
.w1f{width:60.570000px;}
.w6{width:63.540000px;}
.w7{width:63.810000px;}
.w5{width:63.900000px;}
.w8{width:67.980000px;}
.wf{width:68.970000px;}
.w15{width:73.260000px;}
.w14{width:73.282500px;}
.w16{width:73.350000px;}
.wb{width:74.430000px;}
.w1e{width:87.030000px;}
.w10{width:89.994000px;}
.we{width:112.500000px;}
.w1c{width:117.540000px;}
.w13{width:131.152500px;}
.w20{width:139.800000px;}
.w17{width:171.030000px;}
.w11{width:229.530000px;}
.w12{width:286.500000px;}
.w1{width:918.000000px;}
.w0{width:918.360000px;}
.w19{width:918.423851px;}
.w2{width:918.424500px;}
.w4{width:918.492000px;}
.w3{width:918.750000px;}
.x0{left:0.000000px;}
.x1c{left:5.399353px;}
.x1a{left:7.289353px;}
.x49{left:10.799353px;}
.xb{left:20.136000px;}
.x16{left:21.509353px;}
.x14{left:24.119353px;}
.xe{left:29.429353px;}
.x11{left:31.859353px;}
.x18{left:34.739353px;}
.x3c{left:36.627853px;}
.x27{left:52.740118px;}
.x1f{left:54.360118px;}
.x28{left:78.570118px;}
.x29{left:81.090118px;}
.x2a{left:82.980118px;}
.x8{left:120.755850px;}
.x1{left:127.575000px;}
.x3{left:140.384850px;}
.x3b{left:142.458647px;}
.x24{left:146.705882px;}
.x7{left:147.755850px;}
.x42{left:152.356500px;}
.x47{left:160.319353px;}
.xc{left:166.126500px;}
.x34{left:168.826500px;}
.x4b{left:174.632100px;}
.x4d{left:200.552100px;}
.x53{left:202.865882px;}
.x41{left:212.416500px;}
.x3d{left:215.747147px;}
.x4c{left:227.552100px;}
.x25{left:236.705882px;}
.x1d{left:258.936000px;}
.x22{left:281.526000px;}
.x2c{left:297.016500px;}
.x17{left:298.277147px;}
.x44{left:307.546500px;}
.x5{left:311.375850px;}
.x23{left:319.866000px;}
.x36{left:327.526500px;}
.x39{left:348.406500px;}
.x30{left:363.166500px;}
.x10{left:372.707147px;}
.x51{left:376.835882px;}
.x54{left:387.845882px;}
.x45{left:413.566500px;}
.x19{left:416.627147px;}
.x38{left:431.926500px;}
.x13{left:436.517147px;}
.xa{left:445.745850px;}
.x50{left:447.046500px;}
.x6{left:459.245850px;}
.x1e{left:461.555882px;}
.x26{left:466.235882px;}
.x9{left:472.745850px;}
.x55{left:474.875882px;}
.x2d{left:476.206500px;}
.x2e{left:481.696500px;}
.x15{left:489.617147px;}
.x46{left:505.367147px;}
.x3a{left:508.156500px;}
.x37{left:512.746500px;}
.x48{left:522.196500px;}
.x52{left:535.445882px;}
.x12{left:537.587147px;}
.x56{left:546.425882px;}
.x2f{left:554.776500px;}
.x20{left:574.055882px;}
.x4f{left:577.576500px;}
.x21{left:587.736000px;}
.x3e{left:597.646500px;}
.xd{left:605.567147px;}
.x1b{left:611.237147px;}
.x40{left:636.256500px;}
.x4{left:648.254850px;}
.x33{left:657.136500px;}
.xf{left:669.467147px;}
.x3f{left:683.146500px;}
.x57{left:686.225882px;}
.x32{left:688.366500px;}
.x31{left:699.616500px;}
.x43{left:723.646500px;}
.x35{left:729.136500px;}
.x4e{left:738.516000px;}
.x2b{left:762.096000px;}
.x4a{left:772.952100px;}
.x2{left:778.205850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3b{letter-spacing:-1.088000pt;}
.ls42{letter-spacing:-1.024000pt;}
.ls32{letter-spacing:-0.576000pt;}
.ls2d{letter-spacing:-0.471040pt;}
.ls30{letter-spacing:-0.448000pt;}
.ls31{letter-spacing:-0.384000pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.294400pt;}
.ls36{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.085440pt;}
.ls21{letter-spacing:-0.065067pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.055467pt;}
.ls24{letter-spacing:0.057280pt;}
.lsb{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.136533pt;}
.ls20{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.176640pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.647680pt;}
.ls35{letter-spacing:0.704000pt;}
.ls3a{letter-spacing:0.832000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.280000pt;}
.ls3e{letter-spacing:1.408000pt;}
.ls41{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:1.600000pt;}
.ls6{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.240000pt;}
.ls43{letter-spacing:2.304000pt;}
.ls2f{letter-spacing:2.368000pt;}
.ls12{letter-spacing:2.560000pt;}
.lsc{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.520000pt;}
.ls17{letter-spacing:4.160000pt;}
.ls2a{letter-spacing:4.480000pt;}
.ls19{letter-spacing:4.800000pt;}
.ls8{letter-spacing:5.440000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls18{letter-spacing:6.720000pt;}
.ls1e{letter-spacing:7.040000pt;}
.ls3{letter-spacing:7.680000pt;}
.ls4{letter-spacing:8.000000pt;}
.ls3d{letter-spacing:8.320000pt;}
.ls7{letter-spacing:8.640000pt;}
.ls2b{letter-spacing:9.600000pt;}
.ls1c{letter-spacing:9.920000pt;}
.ls2{letter-spacing:10.560000pt;}
.ls40{letter-spacing:10.880000pt;}
.ls27{letter-spacing:12.160000pt;}
.ls39{letter-spacing:13.440000pt;}
.ls13{letter-spacing:13.760000pt;}
.ls29{letter-spacing:14.720000pt;}
.lsa{letter-spacing:15.040000pt;}
.ls9{letter-spacing:15.360000pt;}
.ls15{letter-spacing:16.000000pt;}
.ls3c{letter-spacing:17.280000pt;}
.ls38{letter-spacing:18.560000pt;}
.ls14{letter-spacing:20.160000pt;}
.ls44{letter-spacing:89.728000pt;}
.ls3f{letter-spacing:121.728000pt;}
.ws4d{word-spacing:-30.140160pt;}
.ws2{word-spacing:-21.360000pt;}
.wsa9{word-spacing:-17.536000pt;}
.ws5a{word-spacing:-16.704000pt;}
.ws59{word-spacing:-16.512000pt;}
.ws5d{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws30{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws2f{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7d{word-spacing:-15.808000pt;}
.ws5e{word-spacing:-15.744000pt;}
.ws5f{word-spacing:-15.680000pt;}
.ws60{word-spacing:-15.616000pt;}
.ws5b{word-spacing:-15.552000pt;}
.ws5c{word-spacing:-15.424000pt;}
.ws4f{word-spacing:-14.992853pt;}
.ws56{word-spacing:-14.896640pt;}
.ws4c{word-spacing:-14.800000pt;}
.wsb7{word-spacing:-14.695467pt;}
.ws0{word-spacing:-14.666667pt;}
.ws58{word-spacing:-14.425600pt;}
.ws57{word-spacing:-14.248960pt;}
.ws67{word-spacing:-1.920000pt;}
.ws96{word-spacing:-1.408000pt;}
.wsa5{word-spacing:-0.960000pt;}
.ws9f{word-spacing:-0.704000pt;}
.ws8a{word-spacing:-0.640000pt;}
.ws62{word-spacing:-0.448000pt;}
.wsaa{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws6d{word-spacing:-0.256000pt;}
.ws81{word-spacing:-0.192000pt;}
.ws14{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.064000pt;}
.wsf{word-spacing:0.128000pt;}
.ws3{word-spacing:0.170880pt;}
.ws78{word-spacing:0.192000pt;}
.ws93{word-spacing:0.256000pt;}
.ws86{word-spacing:0.320000pt;}
.ws6b{word-spacing:0.384000pt;}
.ws6a{word-spacing:0.448000pt;}
.ws8f{word-spacing:0.512000pt;}
.ws41{word-spacing:0.576000pt;}
.ws69{word-spacing:0.640000pt;}
.ws42{word-spacing:0.704000pt;}
.ws33{word-spacing:0.768000pt;}
.ws68{word-spacing:0.832000pt;}
.ws36{word-spacing:0.896000pt;}
.wsb5{word-spacing:0.960000pt;}
.ws7a{word-spacing:1.024000pt;}
.ws37{word-spacing:1.088000pt;}
.ws61{word-spacing:1.118720pt;}
.ws85{word-spacing:1.216000pt;}
.ws49{word-spacing:1.344000pt;}
.ws2e{word-spacing:1.408000pt;}
.ws63{word-spacing:1.664000pt;}
.ws64{word-spacing:1.792000pt;}
.ws40{word-spacing:1.920000pt;}
.ws11{word-spacing:1.984000pt;}
.ws10{word-spacing:2.048000pt;}
.ws12{word-spacing:2.112000pt;}
.ws7b{word-spacing:2.176000pt;}
.ws65{word-spacing:2.304000pt;}
.wsb{word-spacing:2.368000pt;}
.ws90{word-spacing:2.496000pt;}
.ws31{word-spacing:2.688000pt;}
.ws26{word-spacing:2.816000pt;}
.ws28{word-spacing:2.880000pt;}
.ws97{word-spacing:2.944000pt;}
.ws27{word-spacing:3.008000pt;}
.ws87{word-spacing:3.200000pt;}
.ws25{word-spacing:3.328000pt;}
.ws2c{word-spacing:3.456000pt;}
.ws2d{word-spacing:3.584000pt;}
.ws2b{word-spacing:3.648000pt;}
.ws66{word-spacing:3.776000pt;}
.ws3e{word-spacing:4.096000pt;}
.ws3f{word-spacing:4.160000pt;}
.ws71{word-spacing:4.224000pt;}
.ws23{word-spacing:4.288000pt;}
.ws22{word-spacing:4.416000pt;}
.ws24{word-spacing:4.608000pt;}
.ws7e{word-spacing:4.672000pt;}
.ws74{word-spacing:4.736000pt;}
.ws46{word-spacing:4.800000pt;}
.ws1a{word-spacing:4.864000pt;}
.ws1d{word-spacing:4.928000pt;}
.wsc{word-spacing:4.992000pt;}
.ws1b{word-spacing:5.056000pt;}
.ws29{word-spacing:5.184000pt;}
.wsd{word-spacing:5.248000pt;}
.ws1e{word-spacing:5.440000pt;}
.ws1f{word-spacing:5.504000pt;}
.wsaf{word-spacing:5.632000pt;}
.ws44{word-spacing:5.696000pt;}
.ws89{word-spacing:5.760000pt;}
.ws43{word-spacing:5.888000pt;}
.ws7c{word-spacing:5.952000pt;}
.ws76{word-spacing:6.016000pt;}
.wsa8{word-spacing:6.080000pt;}
.wsa7{word-spacing:6.144000pt;}
.ws75{word-spacing:6.208000pt;}
.ws9e{word-spacing:6.336000pt;}
.wsa4{word-spacing:6.528000pt;}
.ws15{word-spacing:6.656000pt;}
.ws16{word-spacing:6.784000pt;}
.ws17{word-spacing:6.848000pt;}
.wsab{word-spacing:6.912000pt;}
.ws4b{word-spacing:6.976000pt;}
.wsa3{word-spacing:7.040000pt;}
.ws4a{word-spacing:7.168000pt;}
.ws8c{word-spacing:7.488000pt;}
.ws95{word-spacing:7.616000pt;}
.ws45{word-spacing:7.744000pt;}
.wse{word-spacing:7.808000pt;}
.ws8b{word-spacing:8.064000pt;}
.wsa1{word-spacing:8.192000pt;}
.wsa2{word-spacing:8.320000pt;}
.ws94{word-spacing:8.576000pt;}
.wsa6{word-spacing:8.704000pt;}
.ws13{word-spacing:8.768000pt;}
.ws8e{word-spacing:9.088000pt;}
.ws47{word-spacing:9.856000pt;}
.wsb1{word-spacing:9.984000pt;}
.ws48{word-spacing:10.048000pt;}
.ws9{word-spacing:10.176000pt;}
.ws8{word-spacing:10.304000pt;}
.ws7{word-spacing:10.368000pt;}
.wsa{word-spacing:10.688000pt;}
.ws7f{word-spacing:11.328000pt;}
.wsb4{word-spacing:11.648000pt;}
.ws80{word-spacing:11.904000pt;}
.ws19{word-spacing:12.288000pt;}
.ws79{word-spacing:12.544000pt;}
.ws6c{word-spacing:12.608000pt;}
.ws8d{word-spacing:12.800000pt;}
.ws35{word-spacing:13.184000pt;}
.ws34{word-spacing:13.248000pt;}
.wsb6{word-spacing:13.312000pt;}
.ws6e{word-spacing:13.696000pt;}
.ws38{word-spacing:13.824000pt;}
.ws39{word-spacing:13.888000pt;}
.ws6f{word-spacing:14.464000pt;}
.ws77{word-spacing:14.528000pt;}
.ws70{word-spacing:14.976000pt;}
.ws21{word-spacing:15.104000pt;}
.ws20{word-spacing:15.168000pt;}
.wsad{word-spacing:15.872000pt;}
.ws99{word-spacing:16.000000pt;}
.ws3d{word-spacing:16.064000pt;}
.ws3c{word-spacing:16.128000pt;}
.ws9a{word-spacing:16.192000pt;}
.wsb2{word-spacing:16.256000pt;}
.ws98{word-spacing:16.384000pt;}
.ws88{word-spacing:16.448000pt;}
.wsb3{word-spacing:16.576000pt;}
.wsac{word-spacing:16.768000pt;}
.ws92{word-spacing:17.280000pt;}
.ws73{word-spacing:17.536000pt;}
.ws72{word-spacing:17.728000pt;}
.ws91{word-spacing:17.856000pt;}
.ws84{word-spacing:18.048000pt;}
.ws82{word-spacing:18.304000pt;}
.ws83{word-spacing:18.560000pt;}
.ws2a{word-spacing:18.688000pt;}
.wsa0{word-spacing:18.816000pt;}
.wsb0{word-spacing:18.944000pt;}
.ws3b{word-spacing:20.096000pt;}
.ws3a{word-spacing:20.288000pt;}
.ws9c{word-spacing:20.608000pt;}
.ws9d{word-spacing:21.504000pt;}
.wsae{word-spacing:22.144000pt;}
.ws9b{word-spacing:31.808000pt;}
.ws4e{word-spacing:79.488000pt;}
.ws54{word-spacing:435.456000pt;}
.ws52{word-spacing:561.002667pt;}
.ws50{word-spacing:624.576000pt;}
.ws51{word-spacing:988.842667pt;}
.ws55{word-spacing:1167.082667pt;}
.ws53{word-spacing:2176.469333pt;}
._18{margin-left:-8.704000pt;}
._1{margin-left:-4.266667pt;}
._7{margin-left:-3.050667pt;}
._a{margin-left:-1.856000pt;}
._0{margin-left:-0.960000pt;}
._3{width:0.938667pt;}
._9{width:1.925333pt;}
._4{width:2.992000pt;}
._b{width:4.096000pt;}
._f{width:5.541333pt;}
._e{width:7.274667pt;}
._c{width:9.034667pt;}
._d{width:10.485333pt;}
._5{width:12.026667pt;}
._6{width:12.965333pt;}
._2{width:15.840000pt;}
._8{width:17.658667pt;}
._13{width:18.944000pt;}
._16{width:525.625067pt;}
._11{width:663.648000pt;}
._12{width:746.660160pt;}
._14{width:752.000000pt;}
._19{width:754.664960pt;}
._10{width:773.760000pt;}
._17{width:1027.242667pt;}
._15{width:1657.205333pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:53.440000pt;}
.fs7{font-size:58.560000pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fsa{font-size:80.000000pt;}
.fs3{font-size:85.440000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:106.560000pt;}
.y163{bottom:-15.226562pt;}
.y161{bottom:-15.199895pt;}
.ycf{bottom:-12.879917pt;}
.yba{bottom:-12.639917pt;}
.y88{bottom:-1.759917pt;}
.y8a{bottom:-1.679917pt;}
.y84{bottom:-1.279917pt;}
.y86{bottom:-1.199917pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:2.960105pt;}
.ya1{bottom:3.040105pt;}
.y96{bottom:6.400083pt;}
.ycc{bottom:6.560083pt;}
.y7b{bottom:7.280083pt;}
.y82{bottom:8.400083pt;}
.y9b{bottom:12.320105pt;}
.y7e{bottom:14.400083pt;}
.y79{bottom:14.880083pt;}
.y7c{bottom:14.960083pt;}
.ybb{bottom:45.478667pt;}
.ya9{bottom:61.718667pt;}
.y6f{bottom:61.798667pt;}
.y15f{bottom:62.138667pt;}
.y15c{bottom:62.358667pt;}
.y98{bottom:62.458667pt;}
.y62{bottom:62.570667pt;}
.yd3{bottom:63.472773pt;}
.yca{bottom:78.438667pt;}
.y15a{bottom:78.458667pt;}
.yd2{bottom:82.358533pt;}
.yc{bottom:110.506133pt;}
.y15b{bottom:112.138667pt;}
.yb0{bottom:121.158667pt;}
.y13d{bottom:123.638533pt;}
.yb{bottom:127.842133pt;}
.y10b{bottom:129.398533pt;}
.y5a{bottom:131.818533pt;}
.y9a{bottom:135.018562pt;}
.y3d{bottom:138.298533pt;}
.y166{bottom:140.218562pt;}
.y120{bottom:142.838533pt;}
.yb2{bottom:144.038667pt;}
.y1f{bottom:148.458533pt;}
.y77{bottom:148.598667pt;}
.yaf{bottom:151.878667pt;}
.y13c{bottom:154.358533pt;}
.y10a{bottom:159.798533pt;}
.y165{bottom:160.938562pt;}
.y59{bottom:162.298533pt;}
.ya{bottom:162.514133pt;}
.yc5{bottom:165.798667pt;}
.y154{bottom:167.798533pt;}
.y99{bottom:168.378667pt;}
.y3c{bottom:168.858533pt;}
.y11f{bottom:173.238533pt;}
.yb1{bottom:174.838667pt;}
.yb9{bottom:177.158583pt;}
.y9{bottom:179.850133pt;}
.yee{bottom:179.958533pt;}
.y13b{bottom:184.758533pt;}
.y164{bottom:186.538562pt;}
.y109{bottom:190.518533pt;}
.y1e{bottom:194.266533pt;}
.y8{bottom:197.186133pt;}
.y153{bottom:198.198533pt;}
.y3b{bottom:199.338533pt;}
.y11e{bottom:203.638533pt;}
.ya7{bottom:204.965229pt;}
.y162{bottom:209.605229pt;}
.yed{bottom:210.358533pt;}
.y58{bottom:211.498533pt;}
.y7{bottom:214.522133pt;}
.y13a{bottom:215.158533pt;}
.y108{bottom:220.918533pt;}
.ya6{bottom:222.005229pt;}
.y152{bottom:228.598533pt;}
.y3a{bottom:229.818533pt;}
.y6{bottom:231.858133pt;}
.y160{bottom:233.285229pt;}
.y11d{bottom:234.358533pt;}
.ya5{bottom:238.965229pt;}
.yec{bottom:240.758533pt;}
.y57{bottom:241.978533pt;}
.y1d{bottom:242.746533pt;}
.y76{bottom:248.065333pt;}
.y5{bottom:249.194133pt;}
.ya3{bottom:256.005229pt;}
.yc4{bottom:257.665333pt;}
.y151{bottom:258.998533pt;}
.y139{bottom:259.318533pt;}
.y39{bottom:260.298533pt;}
.y11c{bottom:264.758533pt;}
.y107{bottom:265.078533pt;}
.y4{bottom:266.530133pt;}
.yeb{bottom:271.158533pt;}
.y56{bottom:272.458533pt;}
.ya2{bottom:272.965229pt;}
.ycd{bottom:273.585333pt;}
.y150{bottom:289.718533pt;}
.ya0{bottom:290.645229pt;}
.y1c{bottom:291.154533pt;}
.y106{bottom:295.158533pt;}
.yea{bottom:301.878533pt;}
.y55{bottom:303.018533pt;}
.y138{bottom:303.158533pt;}
.y38{bottom:309.498533pt;}
.yae{bottom:315.745333pt;}
.yb8{bottom:319.825333pt;}
.y14f{bottom:320.118533pt;}
.y105{bottom:325.878533pt;}
.ye9{bottom:332.278533pt;}
.y54{bottom:333.498533pt;}
.y137{bottom:333.558533pt;}
.y1b{bottom:339.562533pt;}
.y37{bottom:339.978533pt;}
.y104{bottom:356.278533pt;}
.yc8{bottom:358.945333pt;}
.ye8{bottom:362.678533pt;}
.y136{bottom:363.958533pt;}
.y53{bottom:363.978533pt;}
.y14e{bottom:364.278533pt;}
.y36{bottom:370.538533pt;}
.y75{bottom:378.145333pt;}
.y15e{bottom:381.665333pt;}
.y103{bottom:386.678533pt;}
.y1a{bottom:387.970533pt;}
.yce{bottom:390.865250pt;}
.ye7{bottom:393.078533pt;}
.y14d{bottom:394.358533pt;}
.y52{bottom:394.538533pt;}
.y35{bottom:401.018533pt;}
.yad{bottom:407.505333pt;}
.y135{bottom:408.118533pt;}
.y3{bottom:409.196800pt;}
.y102{bottom:417.078533pt;}
.y14c{bottom:424.758533pt;}
.y51{bottom:425.018533pt;}
.y34{bottom:431.498533pt;}
.ya8{bottom:432.485333pt;}
.y19{bottom:436.378533pt;}
.ye6{bottom:437.238533pt;}
.y134{bottom:438.198533pt;}
.y2{bottom:441.198133pt;}
.y101{bottom:447.798533pt;}
.yc3{bottom:448.945333pt;}
.y14b{bottom:455.478533pt;}
.y50{bottom:455.498533pt;}
.y15d{bottom:460.305333pt;}
.y33{bottom:462.058533pt;}
.ye5{bottom:467.638533pt;}
.y133{bottom:468.598533pt;}
.y1{bottom:469.196800pt;}
.yac{bottom:476.785333pt;}
.y11b{bottom:478.198533pt;}
.yc2{bottom:479.665333pt;}
.y18{bottom:484.786533pt;}
.y14a{bottom:485.878533pt;}
.y4f{bottom:486.058533pt;}
.y100{bottom:491.958533pt;}
.y32{bottom:492.538533pt;}
.yd0{bottom:496.385333pt;}
.ye4{bottom:498.038533pt;}
.y132{bottom:499.318533pt;}
.y11a{bottom:508.598533pt;}
.yc1{bottom:510.465333pt;}
.y4e{bottom:516.538533pt;}
.yff{bottom:522.038533pt;}
.y31{bottom:523.018533pt;}
.y74{bottom:524.145333pt;}
.ye3{bottom:528.438533pt;}
.y131{bottom:529.718533pt;}
.y149{bottom:530.038533pt;}
.y17{bottom:533.266533pt;}
.yab{bottom:538.065333pt;}
.y119{bottom:539.318533pt;}
.yc0{bottom:541.265333pt;}
.y4d{bottom:547.018533pt;}
.yfe{bottom:552.438533pt;}
.y30{bottom:553.498533pt;}
.ye2{bottom:559.158533pt;}
.y130{bottom:560.118533pt;}
.y118{bottom:569.718533pt;}
.ybf{bottom:571.985333pt;}
.y4c{bottom:577.498533pt;}
.y16{bottom:581.674533pt;}
.yfd{bottom:583.158533pt;}
.y2f{bottom:584.058533pt;}
.y95{bottom:584.651917pt;}
.ye1{bottom:589.558533pt;}
.y12f{bottom:590.838533pt;}
.y117{bottom:600.118533pt;}
.ybe{bottom:602.812000pt;}
.y148{bottom:604.278533pt;}
.y94{bottom:607.931917pt;}
.y4b{bottom:608.058533pt;}
.yc9{bottom:611.692000pt;}
.yfc{bottom:613.558533pt;}
.y2e{bottom:614.538533pt;}
.ye0{bottom:619.958533pt;}
.y73{bottom:623.692000pt;}
.y93{bottom:629.931917pt;}
.y15{bottom:630.082533pt;}
.y116{bottom:630.838533pt;}
.y12e{bottom:634.998533pt;}
.y4a{bottom:638.538533pt;}
.yfb{bottom:643.958533pt;}
.y2d{bottom:645.018533pt;}
.y147{bottom:648.118533pt;}
.ydf{bottom:650.678533pt;}
.y92{bottom:651.931917pt;}
.y115{bottom:661.238533pt;}
.y12d{bottom:665.078533pt;}
.ycb{bottom:668.651917pt;}
.y49{bottom:669.018533pt;}
.ybd{bottom:670.332000pt;}
.y91{bottom:672.971917pt;}
.y122{bottom:674.998533pt;}
.y2c{bottom:675.578533pt;}
.y14{bottom:678.490533pt;}
.y146{bottom:678.518533pt;}
.yfa{bottom:688.118533pt;}
.y114{bottom:691.638533pt;}
.y158{bottom:691.958533pt;}
.y90{bottom:693.931917pt;}
.yde{bottom:694.838533pt;}
.y12c{bottom:695.478533pt;}
.y48{bottom:699.578533pt;}
.y2b{bottom:706.058533pt;}
.y145{bottom:708.918533pt;}
.y8f{bottom:714.971917pt;}
.yf9{bottom:718.518533pt;}
.y121{bottom:718.838533pt;}
.y113{bottom:722.358533pt;}
.y81{bottom:722.971917pt;}
.ydd{bottom:724.918533pt;}
.y12b{bottom:726.198533pt;}
.y13{bottom:726.898533pt;}
.y47{bottom:730.058533pt;}
.y157{bottom:735.798533pt;}
.y8e{bottom:735.931917pt;}
.y2a{bottom:736.538533pt;}
.y6e{bottom:736.552000pt;}
.y72{bottom:739.212000pt;}
.yf8{bottom:748.918533pt;}
.y80{bottom:748.971917pt;}
.y144{bottom:753.078533pt;}
.y60{bottom:753.818533pt;}
.y6d{bottom:754.952000pt;}
.ydc{bottom:755.318533pt;}
.y8d{bottom:756.971917pt;}
.y9e{bottom:758.992000pt;}
.y46{bottom:760.538533pt;}
.yb7{bottom:761.852000pt;}
.y70{bottom:763.212000pt;}
.y156{bottom:766.198533pt;}
.y112{bottom:766.518533pt;}
.y29{bottom:767.098533pt;}
.y12a{bottom:770.358533pt;}
.y6c{bottom:773.392000pt;}
.y12{bottom:775.306533pt;}
.y8c{bottom:777.931917pt;}
.yf7{bottom:779.318533pt;}
.y143{bottom:783.158533pt;}
.ydb{bottom:786.038533pt;}
.y7f{bottom:786.971917pt;}
.y45{bottom:791.098533pt;}
.y6b{bottom:791.792000pt;}
.y111{bottom:796.598533pt;}
.y8b{bottom:798.971917pt;}
.y129{bottom:800.438533pt;}
.y5f{bottom:802.938533pt;}
.yf6{bottom:810.038533pt;}
.y6a{bottom:810.192000pt;}
.y142{bottom:813.878533pt;}
.y28{bottom:816.218533pt;}
.yda{bottom:816.438533pt;}
.y89{bottom:819.931917pt;}
.yaa{bottom:820.892000pt;}
.y11{bottom:823.786533pt;}
.y7d{bottom:824.971917pt;}
.y110{bottom:826.998533pt;}
.y69{bottom:828.592000pt;}
.y128{bottom:830.838533pt;}
.yb6{bottom:831.132000pt;}
.y44{bottom:840.218533pt;}
.yf5{bottom:840.438533pt;}
.y87{bottom:840.971917pt;}
.y141{bottom:844.278533pt;}
.y27{bottom:846.778533pt;}
.yd9{bottom:846.838533pt;}
.y68{bottom:846.992000pt;}
.y5e{bottom:852.058533pt;}
.y10f{bottom:857.718533pt;}
.y127{bottom:861.558533pt;}
.yb5{bottom:861.932000pt;}
.y7a{bottom:862.971917pt;}
.y85{bottom:863.291917pt;}
.y67{bottom:865.392000pt;}
.y71{bottom:869.212000pt;}
.y43{bottom:870.778533pt;}
.yf4{bottom:870.838533pt;}
.y10{bottom:872.194533pt;}
.y26{bottom:877.258533pt;}
.yd8{bottom:877.558533pt;}
.y9d{bottom:882.432000pt;}
.y5d{bottom:882.538533pt;}
.y66{bottom:883.792000pt;}
.y83{bottom:886.651917pt;}
.y10e{bottom:888.118533pt;}
.y140{bottom:888.438533pt;}
.ybc{bottom:899.852000pt;}
.y42{bottom:901.258533pt;}
.yf3{bottom:901.558533pt;}
.y155{bottom:901.878533pt;}
.y78{bottom:902.011917pt;}
.y65{bottom:902.192000pt;}
.y126{bottom:905.718533pt;}
.y25{bottom:907.738533pt;}
.yd7{bottom:907.958533pt;}
.y5c{bottom:913.098533pt;}
.y9c{bottom:914.352000pt;}
.y10d{bottom:918.518533pt;}
.y64{bottom:920.592000pt;}
.yf{bottom:920.602533pt;}
.yc7{bottom:923.212000pt;}
.y41{bottom:931.738533pt;}
.yf2{bottom:931.958533pt;}
.y24{bottom:938.218533pt;}
.yd6{bottom:938.358533pt;}
.y5b{bottom:943.578533pt;}
.y13f{bottom:949.238533pt;}
.y125{bottom:949.558533pt;}
.yc6{bottom:953.958667pt;}
.y61{bottom:960.938667pt;}
.yb4{bottom:961.718667pt;}
.y40{bottom:962.218533pt;}
.yf1{bottom:962.358533pt;}
.y10c{bottom:962.678533pt;}
.y23{bottom:968.778533pt;}
.ye{bottom:969.010533pt;}
.yd5{bottom:969.078533pt;}
.y21{bottom:975.811493pt;}
.y124{bottom:979.638533pt;}
.yb3{bottom:992.518667pt;}
.y9f{bottom:992.538667pt;}
.y3f{bottom:992.778533pt;}
.yf0{bottom:993.078533pt;}
.y13e{bottom:993.398533pt;}
.yd4{bottom:1007.478533pt;}
.yd{bottom:1017.418533pt;}
.y22{bottom:1017.898533pt;}
.y20{bottom:1019.898533pt;}
.y3e{bottom:1023.258533pt;}
.yef{bottom:1023.478533pt;}
.y123{bottom:1023.798533pt;}
.y63{bottom:1023.978667pt;}
.y97{bottom:1052.138667pt;}
.yd1{bottom:1072.438533pt;}
.y159{bottom:1074.058667pt;}
.h21{height:12.480000pt;}
.h1a{height:16.960000pt;}
.h18{height:17.040000pt;}
.h2b{height:19.998667pt;}
.h13{height:20.960000pt;}
.h14{height:21.040000pt;}
.h12{height:22.000000pt;}
.h28{height:22.960000pt;}
.h29{height:23.066667pt;}
.h2a{height:24.960000pt;}
.h11{height:26.000000pt;}
.h16{height:26.638667pt;}
.h1f{height:28.320000pt;}
.he{height:37.053125pt;}
.h10{height:38.000000pt;}
.h19{height:38.905781pt;}
.hd{height:38.960000pt;}
.hf{height:39.040000pt;}
.h24{height:39.243750pt;}
.h26{height:39.659531pt;}
.h1c{height:40.523594pt;}
.hb{height:40.603125pt;}
.h3{height:40.763021pt;}
.h1d{height:42.656250pt;}
.ha{height:44.375000pt;}
.h15{height:44.406094pt;}
.h17{height:44.437500pt;}
.h9{height:44.648750pt;}
.hc{height:46.593750pt;}
.h1e{height:48.531250pt;}
.h23{height:50.813440pt;}
.h20{height:51.696875pt;}
.h1b{height:53.937500pt;}
.h7{height:55.232000pt;}
.h8{height:56.538906pt;}
.h27{height:58.242188pt;}
.h6{height:61.093669pt;}
.h22{height:80.492344pt;}
.h5{height:82.848000pt;}
.h25{height:1145.197250pt;}
.h2{height:1145.197333pt;}
.h4{height:1145.237333pt;}
.h0{height:1145.280000pt;}
.h1{height:1145.333333pt;}
.w1b{width:9.760000pt;}
.w1a{width:9.786667pt;}
.wc{width:12.960000pt;}
.wd{width:13.040000pt;}
.w18{width:23.600000pt;}
.wa{width:42.640000pt;}
.w9{width:47.200000pt;}
.w1d{width:50.160000pt;}
.w1f{width:53.840000pt;}
.w6{width:56.480000pt;}
.w7{width:56.720000pt;}
.w5{width:56.800000pt;}
.w8{width:60.426667pt;}
.wf{width:61.306667pt;}
.w15{width:65.120000pt;}
.w14{width:65.140000pt;}
.w16{width:65.200000pt;}
.wb{width:66.160000pt;}
.w1e{width:77.360000pt;}
.w10{width:79.994667pt;}
.we{width:100.000000pt;}
.w1c{width:104.480000pt;}
.w13{width:116.580000pt;}
.w20{width:124.266667pt;}
.w17{width:152.026667pt;}
.w11{width:204.026667pt;}
.w12{width:254.666667pt;}
.w1{width:816.000000pt;}
.w0{width:816.320000pt;}
.w19{width:816.376757pt;}
.w2{width:816.377333pt;}
.w4{width:816.437333pt;}
.w3{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:4.799425pt;}
.x1a{left:6.479425pt;}
.x49{left:9.599425pt;}
.xb{left:17.898667pt;}
.x16{left:19.119425pt;}
.x14{left:21.439425pt;}
.xe{left:26.159425pt;}
.x11{left:28.319425pt;}
.x18{left:30.879425pt;}
.x3c{left:32.558092pt;}
.x27{left:46.880105pt;}
.x1f{left:48.320105pt;}
.x28{left:69.840105pt;}
.x29{left:72.080105pt;}
.x2a{left:73.760105pt;}
.x8{left:107.338533pt;}
.x1{left:113.400000pt;}
.x3{left:124.786533pt;}
.x3b{left:126.629908pt;}
.x24{left:130.405229pt;}
.x7{left:131.338533pt;}
.x42{left:135.428000pt;}
.x47{left:142.506092pt;}
.xc{left:147.668000pt;}
.x34{left:150.068000pt;}
.x4b{left:155.228533pt;}
.x4d{left:178.268533pt;}
.x53{left:180.325229pt;}
.x41{left:188.814667pt;}
.x3d{left:191.775242pt;}
.x4c{left:202.268533pt;}
.x25{left:210.405229pt;}
.x1d{left:230.165333pt;}
.x22{left:250.245333pt;}
.x2c{left:264.014667pt;}
.x17{left:265.135242pt;}
.x44{left:273.374667pt;}
.x5{left:276.778533pt;}
.x23{left:284.325333pt;}
.x36{left:291.134667pt;}
.x39{left:309.694667pt;}
.x30{left:322.814667pt;}
.x10{left:331.295242pt;}
.x51{left:334.965229pt;}
.x54{left:344.751895pt;}
.x45{left:367.614667pt;}
.x19{left:370.335242pt;}
.x38{left:383.934667pt;}
.x13{left:388.015242pt;}
.xa{left:396.218533pt;}
.x50{left:397.374667pt;}
.x6{left:408.218533pt;}
.x1e{left:410.271895pt;}
.x26{left:414.431895pt;}
.x9{left:420.218533pt;}
.x55{left:422.111895pt;}
.x2d{left:423.294667pt;}
.x2e{left:428.174667pt;}
.x15{left:435.215242pt;}
.x46{left:449.215242pt;}
.x3a{left:451.694667pt;}
.x37{left:455.774667pt;}
.x48{left:464.174667pt;}
.x52{left:475.951895pt;}
.x12{left:477.855242pt;}
.x56{left:485.711895pt;}
.x2f{left:493.134667pt;}
.x20{left:510.271895pt;}
.x4f{left:513.401333pt;}
.x21{left:522.432000pt;}
.x3e{left:531.241333pt;}
.xd{left:538.281908pt;}
.x1b{left:543.321908pt;}
.x40{left:565.561333pt;}
.x4{left:576.226533pt;}
.x33{left:584.121333pt;}
.xf{left:595.081908pt;}
.x3f{left:607.241333pt;}
.x57{left:609.978562pt;}
.x32{left:611.881333pt;}
.x31{left:621.881333pt;}
.x43{left:643.241333pt;}
.x35{left:648.121333pt;}
.x4e{left:656.458667pt;}
.x2b{left:677.418667pt;}
.x4a{left:687.068533pt;}
.x2{left:691.738533pt;}
}




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