
    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_0464a446d2644300813d396c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_31d85f03f132db9d22c9e37f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_1ae3d517b77b7dd90ce6467f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_81bd3bf7ec5f1c37a5cfc243.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_05b46d1c8e147689c89e0198.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_57d4d558e010972083ccb92f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_0633e34e310bccaf879b3d34.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_abc9d39c290a1b23527b25f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_650150b0aa194415c22ccc3e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.956543;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_24a6b280a7f6ace15dea7ef0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.975586;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_7150f697fc788f1633da4a81.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.975586;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_635946d2dc3c076eb354e619.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.m6{transform:matrix(0.166045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166045,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.182117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182117,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.183341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183341,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.183522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183522,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.216564,0.000000,-0.072181,0.239353,0,0);-ms-transform:matrix(0.216564,0.000000,-0.072181,0.239353,0,0);-webkit-transform:matrix(0.216564,0.000000,-0.072181,0.239353,0,0);}
.m12{transform:matrix(0.235682,0.000000,-0.078553,0.237338,0,0);-ms-transform:matrix(0.235682,0.000000,-0.078553,0.237338,0,0);-webkit-transform:matrix(0.235682,0.000000,-0.078553,0.237338,0,0);}
.m15{transform:matrix(0.237085,0.000000,-0.079020,0.237183,0,0);-ms-transform:matrix(0.237085,0.000000,-0.079020,0.237183,0,0);-webkit-transform:matrix(0.237085,0.000000,-0.079020,0.237183,0,0);}
.m5{transform:matrix(0.238421,0.000000,-0.079466,0.237034,0,0);-ms-transform:matrix(0.238421,0.000000,-0.079466,0.237034,0,0);-webkit-transform:matrix(0.238421,0.000000,-0.079466,0.237034,0,0);}
.mf{transform:matrix(0.238517,0.000000,-0.079498,0.237023,0,0);-ms-transform:matrix(0.238517,0.000000,-0.079498,0.237023,0,0);-webkit-transform:matrix(0.238517,0.000000,-0.079498,0.237023,0,0);}
.mc{transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249112,0.000000,-0.083029,0.235810,0,0);-ms-transform:matrix(0.249112,0.000000,-0.083029,0.235810,0,0);-webkit-transform:matrix(0.249112,0.000000,-0.083029,0.235810,0,0);}
.m14{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,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);}
.mb{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251576,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254218,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.264103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264103,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.270473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270473,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-92.160000px;}
.v6{vertical-align:-82.800000px;}
.v2{vertical-align:-80.640000px;}
.va{vertical-align:-54.400833px;}
.v9{vertical-align:-52.981084px;}
.v4{vertical-align:-44.417058px;}
.v3{vertical-align:-9.360000px;}
.v8{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:33.120000px;}
.v5{vertical-align:53.561554px;}
.vb{vertical-align:66.719765px;}
.ls13{letter-spacing:-1.440000px;}
.ls34{letter-spacing:-1.008000px;}
.ls33{letter-spacing:-0.934144px;}
.ls32{letter-spacing:-0.868694px;}
.lsf{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.666603px;}
.ls9{letter-spacing:-0.612000px;}
.ls2c{letter-spacing:-0.581514px;}
.ls22{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.341400px;}
.lse{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.262200px;}
.lsb{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.158400px;}
.ls12{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.lsd{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.109200px;}
.ls25{letter-spacing:0.144000px;}
.ls36{letter-spacing:0.207600px;}
.ls16{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.408000px;}
.ls10{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.080000px;}
.ls14{letter-spacing:4.320000px;}
.ls21{letter-spacing:10.800000px;}
.ls24{letter-spacing:18.108563px;}
.ls2{letter-spacing:25.920000px;}
.ls31{letter-spacing:34.841280px;}
.ls4{letter-spacing:38.160000px;}
.ls27{letter-spacing:45.026250px;}
.ls20{letter-spacing:54.000000px;}
.ls26{letter-spacing:59.425208px;}
.ls30{letter-spacing:67.961280px;}
.ls2e{letter-spacing:90.722039px;}
.ls1f{letter-spacing:104.540825px;}
.ls1c{letter-spacing:105.373819px;}
.ls2d{letter-spacing:169.210968px;}
.ls19{letter-spacing:184.273148px;}
.ls29{letter-spacing:192.851619px;}
.ls1b{letter-spacing:196.904916px;}
.ls2b{letter-spacing:212.354659px;}
.ls18{letter-spacing:254.673527px;}
.ls1a{letter-spacing:261.347599px;}
.ls28{letter-spacing:345.279933px;}
.ls2f{letter-spacing:861.276000px;}
.ls23{letter-spacing:1479.876000px;}
.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;}
}
.ws5{word-spacing:-84.060000px;}
.ws17{word-spacing:-66.224880px;}
.ws16{word-spacing:-43.167392px;}
.ws1d{word-spacing:-21.769120px;}
.ws1{word-spacing:-20.718600px;}
.ws2{word-spacing:-19.465920px;}
.ws0{word-spacing:-19.440000px;}
.wsf{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.216000px;}
.ws24{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.280000px;}
.ws29{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.297800px;}
.ws13{word-spacing:-15.840000px;}
.ws20{word-spacing:-12.586518px;}
.ws15{word-spacing:-12.272899px;}
.ws21{word-spacing:-12.060000px;}
.ws14{word-spacing:-10.612800px;}
.ws19{word-spacing:-10.170515px;}
.ws1a{word-spacing:-6.816396px;}
.ws6{word-spacing:0.000000px;}
.ws1f{word-spacing:11.285267px;}
.ws25{word-spacing:12.172214px;}
.ws22{word-spacing:12.790736px;}
.ws18{word-spacing:12.826596px;}
.ws23{word-spacing:30.598884px;}
.ws26{word-spacing:50.098111px;}
.wse{word-spacing:50.604813px;}
.ws1c{word-spacing:55.380642px;}
.wsd{word-spacing:90.081440px;}
.wsa{word-spacing:90.776065px;}
.ws1e{word-spacing:91.169075px;}
.ws1b{word-spacing:94.513645px;}
.ws11{word-spacing:97.627088px;}
.wsb{word-spacing:104.605275px;}
.wsc{word-spacing:108.276429px;}
.ws9{word-spacing:111.467549px;}
.ws10{word-spacing:113.645422px;}
.ws28{word-spacing:120.235467px;}
.ws27{word-spacing:435.401825px;}
._23{margin-left:-1215.909837px;}
._28{margin-left:-1180.743563px;}
._2e{margin-left:-504.131446px;}
._22{margin-left:-9.512351px;}
._30{margin-left:-3.308906px;}
._6{margin-left:-2.190240px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._8{width:3.179520px;}
._9{width:4.216320px;}
._b{width:6.174720px;}
._a{width:7.485120px;}
._f{width:8.876160px;}
._10{width:10.153440px;}
._11{width:11.660160px;}
._7{width:12.718080px;}
._14{width:14.050080px;}
._15{width:15.181920px;}
._18{width:16.200000px;}
._16{width:20.016000px;}
._17{width:21.744000px;}
._13{width:28.632000px;}
._12{width:29.664000px;}
._2c{width:35.280000px;}
._32{width:41.760000px;}
._1b{width:46.800000px;}
._31{width:48.096000px;}
._d{width:54.728640px;}
._c{width:55.874880px;}
._e{width:56.885760px;}
._33{width:58.320000px;}
._2f{width:60.480000px;}
._1d{width:82.980000px;}
._1c{width:84.240000px;}
._1a{width:100.024947px;}
._19{width:126.019706px;}
._34{width:194.226523px;}
._27{width:208.348868px;}
._25{width:215.334444px;}
._29{width:221.264061px;}
._26{width:223.619662px;}
._2b{width:226.625084px;}
._2a{width:228.655775px;}
._24{width:232.635929px;}
._20{width:235.761305px;}
._1f{width:246.334614px;}
._1e{width:247.932359px;}
._21{width:278.349648px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._35{width:846.120000px;}
._2{width:854.940000px;}
._2d{width:1227.996000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:40.682059px;}
.fs8{font-size:46.992487px;}
.fs5{font-size:48.240000px;}
.fsa{font-size:49.091595px;}
.fs6{font-size:49.497135px;}
.fs14{font-size:50.346072px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs9{font-size:81.227629px;}
.fs3{font-size:84.240000px;}
.fsb{font-size:84.794520px;}
.fs7{font-size:85.637797px;}
.fs11{font-size:85.647004px;}
.fs18{font-size:85.755403px;}
.fs10{font-size:86.261543px;}
.fs12{font-size:87.076481px;}
.fs16{font-size:87.091700px;}
.fsc{font-size:89.432800px;}
.fse{font-size:89.456749px;}
.fs1b{font-size:90.265531px;}
.fs19{font-size:90.330336px;}
.fs15{font-size:91.859809px;}
.fsd{font-size:114.902778px;}
.fs1a{font-size:116.268199px;}
.fs17{font-size:116.427870px;}
.fs13{font-size:118.195879px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y96{bottom:3.423789px;}
.y103{bottom:3.558077px;}
.yf7{bottom:3.743139px;}
.y38{bottom:4.305000px;}
.ybe{bottom:4.485000px;}
.y7d{bottom:4.500000px;}
.y12a{bottom:4.753871px;}
.y125{bottom:4.760399px;}
.y11b{bottom:5.208393px;}
.y100{bottom:7.631992px;}
.yff{bottom:7.844023px;}
.y10b{bottom:7.946509px;}
.y104{bottom:8.660189px;}
.y97{bottom:8.693761px;}
.y11a{bottom:9.078477px;}
.yf9{bottom:9.213858px;}
.y7b{bottom:9.540000px;}
.y11c{bottom:10.850733px;}
.yc3{bottom:12.406500px;}
.ybc{bottom:14.745000px;}
.y15d{bottom:14.940000px;}
.y87{bottom:15.858135px;}
.y129{bottom:19.669085px;}
.y123{bottom:19.696097px;}
.y9{bottom:21.240000px;}
.y89{bottom:21.410937px;}
.y126{bottom:21.440340px;}
.y10c{bottom:24.874882px;}
.yc8{bottom:25.020000px;}
.ybd{bottom:25.185000px;}
.yfa{bottom:25.698304px;}
.y86{bottom:29.248524px;}
.ya{bottom:31.140000px;}
.yc2{bottom:32.926500px;}
.yc0{bottom:33.286500px;}
.y88{bottom:34.801325px;}
.y124{bottom:34.849118px;}
.yd2{bottom:35.640000px;}
.yca{bottom:35.820000px;}
.yc5{bottom:36.000000px;}
.y10a{bottom:38.475091px;}
.yf8{bottom:38.943575px;}
.y8{bottom:41.940000px;}
.yc7{bottom:46.260000px;}
.yc1{bottom:54.166500px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.yd1{bottom:66.780000px;}
.yc6{bottom:66.810000px;}
.ycc{bottom:77.760000px;}
.y4{bottom:86.940000px;}
.yd0{bottom:88.020000px;}
.ycf{bottom:108.720000px;}
.y3{bottom:119.880000px;}
.yce{bottom:129.960000px;}
.y122{bottom:137.040000px;}
.y79{bottom:142.056000px;}
.yaf{bottom:144.036000px;}
.yf5{bottom:144.576000px;}
.y69{bottom:146.016000px;}
.ybf{bottom:147.283500px;}
.ycd{bottom:150.480000px;}
.y36{bottom:153.570000px;}
.ye3{bottom:154.110000px;}
.y127{bottom:158.070000px;}
.y156{bottom:159.510000px;}
.y78{bottom:162.750000px;}
.yae{bottom:164.730000px;}
.yf4{bottom:165.270000px;}
.y68{bottom:166.710000px;}
.y35{bottom:174.270000px;}
.ye2{bottom:174.810000px;}
.y155{bottom:178.410000px;}
.y77{bottom:178.950000px;}
.yad{bottom:185.430000px;}
.yf3{bottom:185.970000px;}
.y67{bottom:187.410000px;}
.y34{bottom:194.970000px;}
.ye1{bottom:195.510000px;}
.y121{bottom:196.590000px;}
.y154{bottom:197.490000px;}
.yac{bottom:206.130000px;}
.yf2{bottom:206.670000px;}
.y66{bottom:208.110000px;}
.y37{bottom:211.185000px;}
.y33{bottom:215.670000px;}
.ye0{bottom:216.210000px;}
.y153{bottom:216.390000px;}
.y120{bottom:217.110000px;}
.ybb{bottom:226.305000px;}
.yab{bottom:226.830000px;}
.yf1{bottom:227.370000px;}
.y65{bottom:228.810000px;}
.y152{bottom:235.470000px;}
.y32{bottom:236.370000px;}
.ydf{bottom:236.910000px;}
.y11f{bottom:238.170000px;}
.yaa{bottom:247.530000px;}
.yf0{bottom:248.070000px;}
.y64{bottom:249.510000px;}
.yde{bottom:253.290000px;}
.y151{bottom:254.370000px;}
.y11e{bottom:259.410000px;}
.ya9{bottom:268.230000px;}
.yef{bottom:268.770000px;}
.y63{bottom:270.210000px;}
.y150{bottom:273.270000px;}
.y119{bottom:275.640000px;}
.y31{bottom:277.230000px;}
.y11d{bottom:286.050000px;}
.ya8{bottom:288.930000px;}
.yee{bottom:289.470000px;}
.y62{bottom:290.910000px;}
.y14f{bottom:292.350000px;}
.yba{bottom:293.610000px;}
.y30{bottom:296.130000px;}
.yed{bottom:305.850000px;}
.ya7{bottom:309.630000px;}
.y14e{bottom:311.250000px;}
.y61{bottom:311.610000px;}
.yb9{bottom:314.310000px;}
.y2f{bottom:315.210000px;}
.ya6{bottom:330.330000px;}
.y60{bottom:332.310000px;}
.y118{bottom:333.390000px;}
.y2e{bottom:334.110000px;}
.yb8{bottom:335.010000px;}
.y14d{bottom:349.230000px;}
.ya5{bottom:351.030000px;}
.y5f{bottom:353.010000px;}
.y2d{bottom:353.190000px;}
.y117{bottom:354.090000px;}
.yb7{bottom:355.710000px;}
.ya3{bottom:367.290000px;}
.y14c{bottom:368.130000px;}
.y2c{bottom:372.090000px;}
.y5e{bottom:373.710000px;}
.y116{bottom:374.790000px;}
.yb6{bottom:376.410000px;}
.y14b{bottom:387.255000px;}
.ya4{bottom:388.335000px;}
.y2b{bottom:391.215000px;}
.y5d{bottom:394.455000px;}
.y115{bottom:395.535000px;}
.yb5{bottom:397.155000px;}
.y14a{bottom:406.155000px;}
.y2a{bottom:410.115000px;}
.yb4{bottom:413.535000px;}
.y5c{bottom:415.155000px;}
.y114{bottom:416.235000px;}
.y149{bottom:425.235000px;}
.ya2{bottom:426.675000px;}
.y29{bottom:429.015000px;}
.y5b{bottom:435.855000px;}
.y113{bottom:436.935000px;}
.y148{bottom:444.135000px;}
.ya1{bottom:447.375000px;}
.y28{bottom:448.095000px;}
.y5a{bottom:456.555000px;}
.y112{bottom:457.635000px;}
.y147{bottom:463.035000px;}
.y27{bottom:466.995000px;}
.ya0{bottom:468.075000px;}
.y111{bottom:474.015000px;}
.y59{bottom:477.255000px;}
.y146{bottom:482.115000px;}
.y76{bottom:483.375000px;}
.y26{bottom:486.075000px;}
.y9f{bottom:488.775000px;}
.y58{bottom:497.955000px;}
.y145{bottom:501.015000px;}
.y75{bottom:504.075000px;}
.y25{bottom:504.975000px;}
.y9e{bottom:509.475000px;}
.y57{bottom:518.655000px;}
.y144{bottom:520.095000px;}
.y24{bottom:523.875000px;}
.y74{bottom:524.775000px;}
.y9d{bottom:530.175000px;}
.y143{bottom:538.995000px;}
.y56{bottom:539.355000px;}
.y23{bottom:542.955000px;}
.y73{bottom:545.475000px;}
.y9c{bottom:550.875000px;}
.y142{bottom:557.895000px;}
.y55{bottom:560.055000px;}
.y22{bottom:561.855000px;}
.y72{bottom:566.175000px;}
.y9b{bottom:571.575000px;}
.y141{bottom:576.975000px;}
.y54{bottom:580.755000px;}
.y21{bottom:580.935000px;}
.y71{bottom:586.875000px;}
.y9a{bottom:592.275000px;}
.y140{bottom:595.875000px;}
.y20{bottom:599.835000px;}
.y53{bottom:601.455000px;}
.y70{bottom:607.575000px;}
.y99{bottom:612.975000px;}
.y13f{bottom:614.955000px;}
.y1f{bottom:618.735000px;}
.y52{bottom:622.155000px;}
.y6f{bottom:628.275000px;}
.y95{bottom:629.190000px;}
.y13e{bottom:633.885000px;}
.y1e{bottom:637.845000px;}
.y98{bottom:638.205000px;}
.y51{bottom:642.885000px;}
.y6e{bottom:649.005000px;}
.y1d{bottom:656.745000px;}
.y94{bottom:661.245000px;}
.y50{bottom:663.585000px;}
.y6d{bottom:669.705000px;}
.y13d{bottom:673.485000px;}
.y1c{bottom:675.825000px;}
.ydd{bottom:679.605000px;}
.y93{bottom:681.945000px;}
.y4f{bottom:684.285000px;}
.y6c{bottom:690.405000px;}
.y13c{bottom:692.925000px;}
.y1b{bottom:694.725000px;}
.ydc{bottom:700.305000px;}
.y92{bottom:702.645000px;}
.y4e{bottom:704.985000px;}
.yec{bottom:710.025000px;}
.y6b{bottom:711.105000px;}
.y13b{bottom:713.625000px;}
.y1a{bottom:714.165000px;}
.ydb{bottom:721.005000px;}
.y91{bottom:723.345000px;}
.y4d{bottom:725.685000px;}
.y6a{bottom:727.485000px;}
.yeb{bottom:730.725000px;}
.y13a{bottom:734.325000px;}
.y19{bottom:735.225000px;}
.yb3{bottom:739.185000px;}
.yda{bottom:741.705000px;}
.y90{bottom:744.045000px;}
.y4c{bottom:746.385000px;}
.yea{bottom:751.425000px;}
.y139{bottom:755.025000px;}
.yb2{bottom:759.885000px;}
.yd9{bottom:762.405000px;}
.y8f{bottom:764.745000px;}
.y4b{bottom:767.085000px;}
.ye9{bottom:772.125000px;}
.y138{bottom:775.725000px;}
.y18{bottom:780.045000px;}
.yb1{bottom:780.585000px;}
.yd8{bottom:783.105000px;}
.y8e{bottom:785.445000px;}
.y4a{bottom:787.785000px;}
.ye8{bottom:792.825000px;}
.y137{bottom:796.425000px;}
.yb0{bottom:796.785000px;}
.y17{bottom:802.365000px;}
.yd7{bottom:803.805000px;}
.y8d{bottom:806.145000px;}
.y49{bottom:808.485000px;}
.ye7{bottom:813.525000px;}
.y136{bottom:817.125000px;}
.y16{bottom:824.325000px;}
.yd6{bottom:824.505000px;}
.y8c{bottom:826.845000px;}
.y48{bottom:829.185000px;}
.ye6{bottom:834.225000px;}
.y110{bottom:835.485000px;}
.y135{bottom:837.825000px;}
.yd5{bottom:845.205000px;}
.y15{bottom:846.645000px;}
.y8b{bottom:847.185000px;}
.y47{bottom:849.885000px;}
.ye5{bottom:854.925000px;}
.y10f{bottom:856.185000px;}
.y134{bottom:858.525000px;}
.y85{bottom:862.140000px;}
.yd4{bottom:865.905000px;}
.y14{bottom:867.885000px;}
.y46{bottom:870.585000px;}
.ye4{bottom:875.625000px;}
.y10e{bottom:876.885000px;}
.y133{bottom:879.225000px;}
.y8a{bottom:883.185000px;}
.yd3{bottom:886.650000px;}
.y45{bottom:891.330000px;}
.y13{bottom:892.050000px;}
.y109{bottom:893.040000px;}
.y132{bottom:899.970000px;}
.ycb{bottom:903.570000px;}
.y44{bottom:912.030000px;}
.y12{bottom:916.170000px;}
.y10d{bottom:917.070000px;}
.y131{bottom:920.670000px;}
.y84{bottom:921.210000px;}
.y43{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.y83{bottom:940.650000px;}
.y130{bottom:941.370000px;}
.y42{bottom:953.430000px;}
.y108{bottom:956.670000px;}
.y82{bottom:961.350000px;}
.y12f{bottom:962.070000px;}
.y10{bottom:964.590000px;}
.y106{bottom:972.840000px;}
.y41{bottom:974.130000px;}
.y107{bottom:980.430000px;}
.y81{bottom:982.050000px;}
.y12e{bottom:982.770000px;}
.yc9{bottom:987.270000px;}
.yf{bottom:988.710000px;}
.y40{bottom:994.830000px;}
.y102{bottom:1000.365000px;}
.y80{bottom:1002.210000px;}
.y12d{bottom:1003.470000px;}
.y105{bottom:1009.410000px;}
.ye{bottom:1012.830000px;}
.y3f{bottom:1015.530000px;}
.y7f{bottom:1017.870000px;}
.y15e{bottom:1020.570000px;}
.y12c{bottom:1023.810000px;}
.yfe{bottom:1027.890000px;}
.y101{bottom:1035.510000px;}
.y3e{bottom:1036.230000px;}
.y15c{bottom:1036.770000px;}
.yd{bottom:1036.950000px;}
.y7e{bottom:1039.470000px;}
.y12b{bottom:1043.250000px;}
.y3d{bottom:1056.930000px;}
.y15b{bottom:1057.470000px;}
.y128{bottom:1059.390000px;}
.yfd{bottom:1059.810000px;}
.yc{bottom:1060.890000px;}
.yc4{bottom:1071.510000px;}
.y6{bottom:1077.090000px;}
.y3c{bottom:1077.630000px;}
.yfc{bottom:1080.510000px;}
.y7c{bottom:1082.310000px;}
.y15a{bottom:1082.670000px;}
.yf6{bottom:1096.815000px;}
.y3b{bottom:1098.330000px;}
.y159{bottom:1103.010000px;}
.y7a{bottom:1103.730000px;}
.y3a{bottom:1119.030000px;}
.y158{bottom:1121.910000px;}
.yfb{bottom:1122.450000px;}
.y39{bottom:1139.760000px;}
.y157{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h13{height:20.685000px;}
.h19{height:27.524878px;}
.h28{height:27.525049px;}
.h12{height:30.585000px;}
.h31{height:32.623806px;}
.h2b{height:39.927216px;}
.h1c{height:41.385000px;}
.h3{height:45.184219px;}
.h1a{height:46.120556px;}
.h24{height:48.180716px;}
.h15{height:48.578731px;}
.h33{height:49.411916px;}
.h14{height:55.050532px;}
.h36{height:55.126133px;}
.hd{height:56.213437px;}
.h23{height:59.026876px;}
.h2e{height:59.100381px;}
.h41{height:59.383125px;}
.h10{height:62.085000px;}
.h27{height:62.809222px;}
.h18{height:63.433856px;}
.h3b{height:63.520970px;}
.h2c{height:63.895880px;}
.h35{height:64.510795px;}
.hf{height:64.546875px;}
.he{height:64.978594px;}
.h4{height:65.010937px;}
.h26{height:66.244901px;}
.h2a{height:66.262640px;}
.h3f{height:66.861724px;}
.h3a{height:66.909726px;}
.h34{height:68.042642px;}
.h40{height:68.084282px;}
.hc{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.h1d{height:78.112500px;}
.hb{height:78.367500px;}
.h6{height:78.870000px;}
.h1b{height:79.720476px;}
.h22{height:82.965000px;}
.h25{height:83.221184px;}
.h20{height:83.505000px;}
.h1f{height:83.550000px;}
.h16{height:84.006999px;}
.h2d{height:84.016031px;}
.h3d{height:84.048814px;}
.h38{height:84.164239px;}
.h9{height:84.898125px;}
.h29{height:85.111091px;}
.h30{height:85.418286px;}
.h2f{height:85.460804px;}
.h3c{height:86.122489px;}
.h37{height:86.240761px;}
.h32{height:87.550365px;}
.h1e{height:91.687500px;}
.h17{height:116.995410px;}
.h3e{height:139.303309px;}
.h39{height:150.842131px;}
.h21{height:167.205000px;}
.h11{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:27.524327px;}
.w10{width:27.525239px;}
.w11{width:37.800111px;}
.w5{width:56.194500px;}
.w6{width:73.789500px;}
.w4{width:82.470000px;}
.w14{width:86.550041px;}
.w15{width:108.000521px;}
.wf{width:120.225410px;}
.w9{width:140.701111px;}
.wb{width:143.629971px;}
.w8{width:147.945000px;}
.w13{width:163.042840px;}
.w3{width:180.735000px;}
.w16{width:226.049674px;}
.wc{width:232.759500px;}
.we{width:232.935000px;}
.wd{width:232.950000px;}
.w17{width:337.753500px;}
.wa{width:351.377858px;}
.w18{width:401.325000px;}
.w2{width:475.843500px;}
.w7{width:477.630000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:1.630417px;}
.x29{left:3.394857px;}
.x4c{left:5.626392px;}
.x3{left:7.918500px;}
.x3f{left:10.965000px;}
.x27{left:13.431798px;}
.x2d{left:14.453159px;}
.x40{left:17.085000px;}
.x1d{left:18.709500px;}
.x3e{left:23.400000px;}
.x2a{left:25.202773px;}
.x33{left:26.419143px;}
.x22{left:28.789500px;}
.x23{left:30.229500px;}
.x39{left:32.029500px;}
.x24{left:33.660000px;}
.x51{left:35.170413px;}
.x3d{left:36.349500px;}
.x21{left:38.340000px;}
.x57{left:41.054316px;}
.x2e{left:42.632755px;}
.x28{left:43.986114px;}
.x32{left:44.994215px;}
.x41{left:48.045000px;}
.x49{left:49.088555px;}
.x5a{left:50.590854px;}
.x26{left:52.361324px;}
.x31{left:54.226406px;}
.x56{left:56.049480px;}
.x59{left:60.765824px;}
.x42{left:65.010000px;}
.x2{left:77.041500px;}
.x3c{left:82.650000px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.xb{left:88.380000px;}
.xf{left:90.216000px;}
.x18{left:95.076000px;}
.xe{left:96.876000px;}
.xa{left:126.756000px;}
.x47{left:129.636000px;}
.x9{left:135.216000px;}
.x15{left:141.156000px;}
.x4d{left:155.010000px;}
.x13{left:159.690000px;}
.x4e{left:165.270000px;}
.x1e{left:170.505000px;}
.x5{left:172.650000px;}
.x54{left:173.730000px;}
.x1f{left:182.730000px;}
.x17{left:205.770000px;}
.x10{left:210.990000px;}
.x36{left:222.690000px;}
.x1c{left:241.410000px;}
.x1b{left:248.430000px;}
.x2c{left:268.290000px;}
.x14{left:277.095000px;}
.x38{left:282.675000px;}
.x19{left:288.075000px;}
.x3a{left:330.015000px;}
.x44{left:346.215000px;}
.x5b{left:352.365000px;}
.x30{left:370.365000px;}
.xc{left:381.315000px;}
.x48{left:383.115000px;}
.x25{left:386.940000px;}
.x55{left:395.940000px;}
.x45{left:411.915000px;}
.x5e{left:414.795000px;}
.x5d{left:424.335000px;}
.xd{left:446.505000px;}
.x12{left:463.065000px;}
.x11{left:467.745000px;}
.x58{left:482.505000px;}
.x4a{left:503.385000px;}
.x34{left:514.005000px;}
.x2b{left:527.685000px;}
.x4f{left:539.940000px;}
.x52{left:546.945000px;}
.x4{left:552.900000px;}
.x3b{left:563.700000px;}
.x50{left:567.465000px;}
.x5c{left:578.445000px;}
.x2f{left:619.665000px;}
.x20{left:649.050000px;}
.x43{left:659.310000px;}
.x6{left:733.650000px;}
.x53{left:747.150000px;}
.x46{left:758.850000px;}
.x35{left:761.370000px;}
.x1a{left:786.750000px;}
.x16{left:805.320000px;}
.x8{left:808.020000px;}
.x37{left:810.540000px;}
@media print{
.v1{vertical-align:-81.920000pt;}
.v6{vertical-align:-73.600000pt;}
.v2{vertical-align:-71.680000pt;}
.va{vertical-align:-48.356296pt;}
.v9{vertical-align:-47.094297pt;}
.v4{vertical-align:-39.481829pt;}
.v3{vertical-align:-8.320000pt;}
.v8{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:29.440000pt;}
.v5{vertical-align:47.610270pt;}
.vb{vertical-align:59.306458pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls34{letter-spacing:-0.896000pt;}
.ls33{letter-spacing:-0.830350pt;}
.ls32{letter-spacing:-0.772173pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.592536pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls2c{letter-spacing:-0.516901pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.303467pt;}
.lse{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.233067pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.140800pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.lsd{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls25{letter-spacing:0.128000pt;}
.ls36{letter-spacing:0.184533pt;}
.ls16{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.362667pt;}
.ls10{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.960000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls21{letter-spacing:9.600000pt;}
.ls24{letter-spacing:16.096500pt;}
.ls2{letter-spacing:23.040000pt;}
.ls31{letter-spacing:30.970027pt;}
.ls4{letter-spacing:33.920000pt;}
.ls27{letter-spacing:40.023333pt;}
.ls20{letter-spacing:48.000000pt;}
.ls26{letter-spacing:52.822407pt;}
.ls30{letter-spacing:60.410027pt;}
.ls2e{letter-spacing:80.641812pt;}
.ls1f{letter-spacing:92.925177pt;}
.ls1c{letter-spacing:93.665617pt;}
.ls2d{letter-spacing:150.409749pt;}
.ls19{letter-spacing:163.798353pt;}
.ls29{letter-spacing:171.423661pt;}
.ls1b{letter-spacing:175.026592pt;}
.ls2b{letter-spacing:188.759697pt;}
.ls18{letter-spacing:226.376469pt;}
.ls1a{letter-spacing:232.308977pt;}
.ls28{letter-spacing:306.915496pt;}
.ls2f{letter-spacing:765.578667pt;}
.ls23{letter-spacing:1315.445333pt;}
.ws5{word-spacing:-74.720000pt;}
.ws17{word-spacing:-58.866560pt;}
.ws16{word-spacing:-38.371015pt;}
.ws1d{word-spacing:-19.350329pt;}
.ws1{word-spacing:-18.416533pt;}
.ws2{word-spacing:-17.303040pt;}
.ws0{word-spacing:-17.280000pt;}
.wsf{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws24{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.360000pt;}
.ws29{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.486933pt;}
.ws13{word-spacing:-14.080000pt;}
.ws20{word-spacing:-11.188016pt;}
.ws15{word-spacing:-10.909243pt;}
.ws21{word-spacing:-10.720000pt;}
.ws14{word-spacing:-9.433600pt;}
.ws19{word-spacing:-9.040458pt;}
.ws1a{word-spacing:-6.059018pt;}
.ws6{word-spacing:0.000000pt;}
.ws1f{word-spacing:10.031348pt;}
.ws25{word-spacing:10.819745pt;}
.ws22{word-spacing:11.369543pt;}
.ws18{word-spacing:11.401419pt;}
.ws23{word-spacing:27.199008pt;}
.ws26{word-spacing:44.531654pt;}
.wse{word-spacing:44.982056pt;}
.ws1c{word-spacing:49.227237pt;}
.wsd{word-spacing:80.072391pt;}
.wsa{word-spacing:80.689835pt;}
.ws1e{word-spacing:81.039178pt;}
.ws1b{word-spacing:84.012129pt;}
.ws11{word-spacing:86.779634pt;}
.wsb{word-spacing:92.982467pt;}
.wsc{word-spacing:96.245715pt;}
.ws9{word-spacing:99.082265pt;}
.ws10{word-spacing:101.018153pt;}
.ws28{word-spacing:106.875970pt;}
.ws27{word-spacing:387.023844pt;}
._23{margin-left:-1080.808744pt;}
._28{margin-left:-1049.549834pt;}
._2e{margin-left:-448.116841pt;}
._22{margin-left:-8.455423pt;}
._30{margin-left:-2.941250pt;}
._6{margin-left:-1.946880pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._8{width:2.826240pt;}
._9{width:3.747840pt;}
._b{width:5.488640pt;}
._a{width:6.653440pt;}
._f{width:7.889920pt;}
._10{width:9.025280pt;}
._11{width:10.364587pt;}
._7{width:11.304960pt;}
._14{width:12.488960pt;}
._15{width:13.495040pt;}
._18{width:14.400000pt;}
._16{width:17.792000pt;}
._17{width:19.328000pt;}
._13{width:25.450667pt;}
._12{width:26.368000pt;}
._2c{width:31.360000pt;}
._32{width:37.120000pt;}
._1b{width:41.600000pt;}
._31{width:42.752000pt;}
._d{width:48.647680pt;}
._c{width:49.666560pt;}
._e{width:50.565120pt;}
._33{width:51.840000pt;}
._2f{width:53.760000pt;}
._1d{width:73.760000pt;}
._1c{width:74.880000pt;}
._1a{width:88.911064pt;}
._19{width:112.017517pt;}
._34{width:172.645798pt;}
._27{width:185.198994pt;}
._25{width:191.408395pt;}
._29{width:196.679165pt;}
._26{width:198.773033pt;}
._2b{width:201.444519pt;}
._2a{width:203.249578pt;}
._24{width:206.787492pt;}
._20{width:209.565604pt;}
._1f{width:218.964102pt;}
._1e{width:220.384319pt;}
._21{width:247.421909pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._35{width:752.106667pt;}
._2{width:759.946667pt;}
._2d{width:1091.552000pt;}
.fsf{font-size:36.161830pt;}
.fs8{font-size:41.771099pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:43.636974pt;}
.fs6{font-size:43.997454pt;}
.fs14{font-size:44.752064pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs9{font-size:72.202337pt;}
.fs3{font-size:74.880000pt;}
.fsb{font-size:75.372907pt;}
.fs7{font-size:76.122486pt;}
.fs11{font-size:76.130670pt;}
.fs18{font-size:76.227025pt;}
.fs10{font-size:76.676927pt;}
.fs12{font-size:77.401316pt;}
.fs16{font-size:77.414845pt;}
.fsc{font-size:79.495822pt;}
.fse{font-size:79.517110pt;}
.fs1b{font-size:80.236027pt;}
.fs19{font-size:80.293632pt;}
.fs15{font-size:81.653164pt;}
.fsd{font-size:102.135803pt;}
.fs1a{font-size:103.349510pt;}
.fs17{font-size:103.491440pt;}
.fs13{font-size:105.063003pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y96{bottom:3.043368pt;}
.y103{bottom:3.162735pt;}
.yf7{bottom:3.327235pt;}
.y38{bottom:3.826667pt;}
.ybe{bottom:3.986667pt;}
.y7d{bottom:4.000000pt;}
.y12a{bottom:4.225663pt;}
.y125{bottom:4.231466pt;}
.y11b{bottom:4.629683pt;}
.y100{bottom:6.783992pt;}
.yff{bottom:6.972465pt;}
.y10b{bottom:7.063564pt;}
.y104{bottom:7.697946pt;}
.y97{bottom:7.727788pt;}
.y11a{bottom:8.069757pt;}
.yf9{bottom:8.190096pt;}
.y7b{bottom:8.480000pt;}
.y11c{bottom:9.645096pt;}
.yc3{bottom:11.028000pt;}
.ybc{bottom:13.106667pt;}
.y15d{bottom:13.280000pt;}
.y87{bottom:14.096120pt;}
.y129{bottom:17.483631pt;}
.y123{bottom:17.507642pt;}
.y9{bottom:18.880000pt;}
.y89{bottom:19.031944pt;}
.y126{bottom:19.058080pt;}
.y10c{bottom:22.111007pt;}
.yc8{bottom:22.240000pt;}
.ybd{bottom:22.386667pt;}
.yfa{bottom:22.842937pt;}
.y86{bottom:25.998688pt;}
.ya{bottom:27.680000pt;}
.yc2{bottom:29.268000pt;}
.yc0{bottom:29.588000pt;}
.y88{bottom:30.934511pt;}
.y124{bottom:30.976994pt;}
.yd2{bottom:31.680000pt;}
.yca{bottom:31.840000pt;}
.yc5{bottom:32.000000pt;}
.y10a{bottom:34.200081pt;}
.yf8{bottom:34.616512pt;}
.y8{bottom:37.280000pt;}
.yc7{bottom:41.120000pt;}
.yc1{bottom:48.148000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.yd1{bottom:59.360000pt;}
.yc6{bottom:59.386667pt;}
.ycc{bottom:69.120000pt;}
.y4{bottom:77.280000pt;}
.yd0{bottom:78.240000pt;}
.ycf{bottom:96.640000pt;}
.y3{bottom:106.560000pt;}
.yce{bottom:115.520000pt;}
.y122{bottom:121.813333pt;}
.y79{bottom:126.272000pt;}
.yaf{bottom:128.032000pt;}
.yf5{bottom:128.512000pt;}
.y69{bottom:129.792000pt;}
.ybf{bottom:130.918667pt;}
.ycd{bottom:133.760000pt;}
.y36{bottom:136.506667pt;}
.ye3{bottom:136.986667pt;}
.y127{bottom:140.506667pt;}
.y156{bottom:141.786667pt;}
.y78{bottom:144.666667pt;}
.yae{bottom:146.426667pt;}
.yf4{bottom:146.906667pt;}
.y68{bottom:148.186667pt;}
.y35{bottom:154.906667pt;}
.ye2{bottom:155.386667pt;}
.y155{bottom:158.586667pt;}
.y77{bottom:159.066667pt;}
.yad{bottom:164.826667pt;}
.yf3{bottom:165.306667pt;}
.y67{bottom:166.586667pt;}
.y34{bottom:173.306667pt;}
.ye1{bottom:173.786667pt;}
.y121{bottom:174.746667pt;}
.y154{bottom:175.546667pt;}
.yac{bottom:183.226667pt;}
.yf2{bottom:183.706667pt;}
.y66{bottom:184.986667pt;}
.y37{bottom:187.720000pt;}
.y33{bottom:191.706667pt;}
.ye0{bottom:192.186667pt;}
.y153{bottom:192.346667pt;}
.y120{bottom:192.986667pt;}
.ybb{bottom:201.160000pt;}
.yab{bottom:201.626667pt;}
.yf1{bottom:202.106667pt;}
.y65{bottom:203.386667pt;}
.y152{bottom:209.306667pt;}
.y32{bottom:210.106667pt;}
.ydf{bottom:210.586667pt;}
.y11f{bottom:211.706667pt;}
.yaa{bottom:220.026667pt;}
.yf0{bottom:220.506667pt;}
.y64{bottom:221.786667pt;}
.yde{bottom:225.146667pt;}
.y151{bottom:226.106667pt;}
.y11e{bottom:230.586667pt;}
.ya9{bottom:238.426667pt;}
.yef{bottom:238.906667pt;}
.y63{bottom:240.186667pt;}
.y150{bottom:242.906667pt;}
.y119{bottom:245.013333pt;}
.y31{bottom:246.426667pt;}
.y11d{bottom:254.266667pt;}
.ya8{bottom:256.826667pt;}
.yee{bottom:257.306667pt;}
.y62{bottom:258.586667pt;}
.y14f{bottom:259.866667pt;}
.yba{bottom:260.986667pt;}
.y30{bottom:263.226667pt;}
.yed{bottom:271.866667pt;}
.ya7{bottom:275.226667pt;}
.y14e{bottom:276.666667pt;}
.y61{bottom:276.986667pt;}
.yb9{bottom:279.386667pt;}
.y2f{bottom:280.186667pt;}
.ya6{bottom:293.626667pt;}
.y60{bottom:295.386667pt;}
.y118{bottom:296.346667pt;}
.y2e{bottom:296.986667pt;}
.yb8{bottom:297.786667pt;}
.y14d{bottom:310.426667pt;}
.ya5{bottom:312.026667pt;}
.y5f{bottom:313.786667pt;}
.y2d{bottom:313.946667pt;}
.y117{bottom:314.746667pt;}
.yb7{bottom:316.186667pt;}
.ya3{bottom:326.480000pt;}
.y14c{bottom:327.226667pt;}
.y2c{bottom:330.746667pt;}
.y5e{bottom:332.186667pt;}
.y116{bottom:333.146667pt;}
.yb6{bottom:334.586667pt;}
.y14b{bottom:344.226667pt;}
.ya4{bottom:345.186667pt;}
.y2b{bottom:347.746667pt;}
.y5d{bottom:350.626667pt;}
.y115{bottom:351.586667pt;}
.yb5{bottom:353.026667pt;}
.y14a{bottom:361.026667pt;}
.y2a{bottom:364.546667pt;}
.yb4{bottom:367.586667pt;}
.y5c{bottom:369.026667pt;}
.y114{bottom:369.986667pt;}
.y149{bottom:377.986667pt;}
.ya2{bottom:379.266667pt;}
.y29{bottom:381.346667pt;}
.y5b{bottom:387.426667pt;}
.y113{bottom:388.386667pt;}
.y148{bottom:394.786667pt;}
.ya1{bottom:397.666667pt;}
.y28{bottom:398.306667pt;}
.y5a{bottom:405.826667pt;}
.y112{bottom:406.786667pt;}
.y147{bottom:411.586667pt;}
.y27{bottom:415.106667pt;}
.ya0{bottom:416.066667pt;}
.y111{bottom:421.346667pt;}
.y59{bottom:424.226667pt;}
.y146{bottom:428.546667pt;}
.y76{bottom:429.666667pt;}
.y26{bottom:432.066667pt;}
.y9f{bottom:434.466667pt;}
.y58{bottom:442.626667pt;}
.y145{bottom:445.346667pt;}
.y75{bottom:448.066667pt;}
.y25{bottom:448.866667pt;}
.y9e{bottom:452.866667pt;}
.y57{bottom:461.026667pt;}
.y144{bottom:462.306667pt;}
.y24{bottom:465.666667pt;}
.y74{bottom:466.466667pt;}
.y9d{bottom:471.266667pt;}
.y143{bottom:479.106667pt;}
.y56{bottom:479.426667pt;}
.y23{bottom:482.626667pt;}
.y73{bottom:484.866667pt;}
.y9c{bottom:489.666667pt;}
.y142{bottom:495.906667pt;}
.y55{bottom:497.826667pt;}
.y22{bottom:499.426667pt;}
.y72{bottom:503.266667pt;}
.y9b{bottom:508.066667pt;}
.y141{bottom:512.866667pt;}
.y54{bottom:516.226667pt;}
.y21{bottom:516.386667pt;}
.y71{bottom:521.666667pt;}
.y9a{bottom:526.466667pt;}
.y140{bottom:529.666667pt;}
.y20{bottom:533.186667pt;}
.y53{bottom:534.626667pt;}
.y70{bottom:540.066667pt;}
.y99{bottom:544.866667pt;}
.y13f{bottom:546.626667pt;}
.y1f{bottom:549.986667pt;}
.y52{bottom:553.026667pt;}
.y6f{bottom:558.466667pt;}
.y95{bottom:559.280000pt;}
.y13e{bottom:563.453333pt;}
.y1e{bottom:566.973333pt;}
.y98{bottom:567.293333pt;}
.y51{bottom:571.453333pt;}
.y6e{bottom:576.893333pt;}
.y1d{bottom:583.773333pt;}
.y94{bottom:587.773333pt;}
.y50{bottom:589.853333pt;}
.y6d{bottom:595.293333pt;}
.y13d{bottom:598.653333pt;}
.y1c{bottom:600.733333pt;}
.ydd{bottom:604.093333pt;}
.y93{bottom:606.173333pt;}
.y4f{bottom:608.253333pt;}
.y6c{bottom:613.693333pt;}
.y13c{bottom:615.933333pt;}
.y1b{bottom:617.533333pt;}
.ydc{bottom:622.493333pt;}
.y92{bottom:624.573333pt;}
.y4e{bottom:626.653333pt;}
.yec{bottom:631.133333pt;}
.y6b{bottom:632.093333pt;}
.y13b{bottom:634.333333pt;}
.y1a{bottom:634.813333pt;}
.ydb{bottom:640.893333pt;}
.y91{bottom:642.973333pt;}
.y4d{bottom:645.053333pt;}
.y6a{bottom:646.653333pt;}
.yeb{bottom:649.533333pt;}
.y13a{bottom:652.733333pt;}
.y19{bottom:653.533333pt;}
.yb3{bottom:657.053333pt;}
.yda{bottom:659.293333pt;}
.y90{bottom:661.373333pt;}
.y4c{bottom:663.453333pt;}
.yea{bottom:667.933333pt;}
.y139{bottom:671.133333pt;}
.yb2{bottom:675.453333pt;}
.yd9{bottom:677.693333pt;}
.y8f{bottom:679.773333pt;}
.y4b{bottom:681.853333pt;}
.ye9{bottom:686.333333pt;}
.y138{bottom:689.533333pt;}
.y18{bottom:693.373333pt;}
.yb1{bottom:693.853333pt;}
.yd8{bottom:696.093333pt;}
.y8e{bottom:698.173333pt;}
.y4a{bottom:700.253333pt;}
.ye8{bottom:704.733333pt;}
.y137{bottom:707.933333pt;}
.yb0{bottom:708.253333pt;}
.y17{bottom:713.213333pt;}
.yd7{bottom:714.493333pt;}
.y8d{bottom:716.573333pt;}
.y49{bottom:718.653333pt;}
.ye7{bottom:723.133333pt;}
.y136{bottom:726.333333pt;}
.y16{bottom:732.733333pt;}
.yd6{bottom:732.893333pt;}
.y8c{bottom:734.973333pt;}
.y48{bottom:737.053333pt;}
.ye6{bottom:741.533333pt;}
.y110{bottom:742.653333pt;}
.y135{bottom:744.733333pt;}
.yd5{bottom:751.293333pt;}
.y15{bottom:752.573333pt;}
.y8b{bottom:753.053333pt;}
.y47{bottom:755.453333pt;}
.ye5{bottom:759.933333pt;}
.y10f{bottom:761.053333pt;}
.y134{bottom:763.133333pt;}
.y85{bottom:766.346667pt;}
.yd4{bottom:769.693333pt;}
.y14{bottom:771.453333pt;}
.y46{bottom:773.853333pt;}
.ye4{bottom:778.333333pt;}
.y10e{bottom:779.453333pt;}
.y133{bottom:781.533333pt;}
.y8a{bottom:785.053333pt;}
.yd3{bottom:788.133333pt;}
.y45{bottom:792.293333pt;}
.y13{bottom:792.933333pt;}
.y109{bottom:793.813333pt;}
.y132{bottom:799.973333pt;}
.ycb{bottom:803.173333pt;}
.y44{bottom:810.693333pt;}
.y12{bottom:814.373333pt;}
.y10d{bottom:815.173333pt;}
.y131{bottom:818.373333pt;}
.y84{bottom:818.853333pt;}
.y43{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.y83{bottom:836.133333pt;}
.y130{bottom:836.773333pt;}
.y42{bottom:847.493333pt;}
.y108{bottom:850.373333pt;}
.y82{bottom:854.533333pt;}
.y12f{bottom:855.173333pt;}
.y10{bottom:857.413333pt;}
.y106{bottom:864.746667pt;}
.y41{bottom:865.893333pt;}
.y107{bottom:871.493333pt;}
.y81{bottom:872.933333pt;}
.y12e{bottom:873.573333pt;}
.yc9{bottom:877.573333pt;}
.yf{bottom:878.853333pt;}
.y40{bottom:884.293333pt;}
.y102{bottom:889.213333pt;}
.y80{bottom:890.853333pt;}
.y12d{bottom:891.973333pt;}
.y105{bottom:897.253333pt;}
.ye{bottom:900.293333pt;}
.y3f{bottom:902.693333pt;}
.y7f{bottom:904.773333pt;}
.y15e{bottom:907.173333pt;}
.y12c{bottom:910.053333pt;}
.yfe{bottom:913.680000pt;}
.y101{bottom:920.453333pt;}
.y3e{bottom:921.093333pt;}
.y15c{bottom:921.573333pt;}
.yd{bottom:921.733333pt;}
.y7e{bottom:923.973333pt;}
.y12b{bottom:927.333333pt;}
.y3d{bottom:939.493333pt;}
.y15b{bottom:939.973333pt;}
.y128{bottom:941.680000pt;}
.yfd{bottom:942.053333pt;}
.yc{bottom:943.013333pt;}
.yc4{bottom:952.453333pt;}
.y6{bottom:957.413333pt;}
.y3c{bottom:957.893333pt;}
.yfc{bottom:960.453333pt;}
.y7c{bottom:962.053333pt;}
.y15a{bottom:962.373333pt;}
.yf6{bottom:974.946667pt;}
.y3b{bottom:976.293333pt;}
.y159{bottom:980.453333pt;}
.y7a{bottom:981.093333pt;}
.y3a{bottom:994.693333pt;}
.y158{bottom:997.253333pt;}
.yfb{bottom:997.733333pt;}
.y39{bottom:1013.120000pt;}
.y157{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h13{height:18.386667pt;}
.h19{height:24.466558pt;}
.h28{height:24.466710pt;}
.h12{height:27.186667pt;}
.h31{height:28.998939pt;}
.h2b{height:35.490859pt;}
.h1c{height:36.786667pt;}
.h3{height:40.163750pt;}
.h1a{height:40.996049pt;}
.h24{height:42.827303pt;}
.h15{height:43.181095pt;}
.h33{height:43.921703pt;}
.h14{height:48.933806pt;}
.h36{height:49.001007pt;}
.hd{height:49.967500pt;}
.h23{height:52.468334pt;}
.h2e{height:52.533672pt;}
.h41{height:52.785000pt;}
.h10{height:55.186667pt;}
.h27{height:55.830420pt;}
.h18{height:56.385650pt;}
.h3b{height:56.463085pt;}
.h2c{height:56.796337pt;}
.h35{height:57.342929pt;}
.hf{height:57.375000pt;}
.he{height:57.758750pt;}
.h4{height:57.787500pt;}
.h26{height:58.884356pt;}
.h2a{height:58.900125pt;}
.h3f{height:59.432643pt;}
.h3a{height:59.475312pt;}
.h34{height:60.482348pt;}
.h40{height:60.519362pt;}
.hc{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.h1d{height:69.433333pt;}
.hb{height:69.660000pt;}
.h6{height:70.106667pt;}
.h1b{height:70.862645pt;}
.h22{height:73.746667pt;}
.h25{height:73.974386pt;}
.h20{height:74.226667pt;}
.h1f{height:74.266667pt;}
.h16{height:74.672888pt;}
.h2d{height:74.680916pt;}
.h3d{height:74.710057pt;}
.h38{height:74.812657pt;}
.h9{height:75.465000pt;}
.h29{height:75.654303pt;}
.h30{height:75.927365pt;}
.h2f{height:75.965159pt;}
.h3c{height:76.553324pt;}
.h37{height:76.658455pt;}
.h32{height:77.822547pt;}
.h1e{height:81.500000pt;}
.h17{height:103.995920pt;}
.h3e{height:123.825163pt;}
.h39{height:134.081894pt;}
.h21{height:148.626667pt;}
.h11{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:24.466069pt;}
.w10{width:24.466879pt;}
.w11{width:33.600099pt;}
.w5{width:49.950667pt;}
.w6{width:65.590667pt;}
.w4{width:73.306667pt;}
.w14{width:76.933370pt;}
.w15{width:96.000463pt;}
.wf{width:106.867031pt;}
.w9{width:125.067654pt;}
.wb{width:127.671086pt;}
.w8{width:131.506667pt;}
.w13{width:144.926969pt;}
.w3{width:160.653333pt;}
.w16{width:200.933044pt;}
.wc{width:206.897333pt;}
.we{width:207.053333pt;}
.wd{width:207.066667pt;}
.w17{width:300.225333pt;}
.wa{width:312.335874pt;}
.w18{width:356.733333pt;}
.w2{width:422.972000pt;}
.w7{width:424.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:1.449259pt;}
.x29{left:3.017650pt;}
.x4c{left:5.001237pt;}
.x3{left:7.038667pt;}
.x3f{left:9.746667pt;}
.x27{left:11.939376pt;}
.x2d{left:12.847252pt;}
.x40{left:15.186667pt;}
.x1d{left:16.630667pt;}
.x3e{left:20.800000pt;}
.x2a{left:22.402465pt;}
.x33{left:23.483683pt;}
.x22{left:25.590667pt;}
.x23{left:26.870667pt;}
.x39{left:28.470667pt;}
.x24{left:29.920000pt;}
.x51{left:31.262590pt;}
.x3d{left:32.310667pt;}
.x21{left:34.080000pt;}
.x57{left:36.492725pt;}
.x2e{left:37.895782pt;}
.x28{left:39.098768pt;}
.x32{left:39.994858pt;}
.x41{left:42.706667pt;}
.x49{left:43.634271pt;}
.x5a{left:44.969648pt;}
.x26{left:46.543399pt;}
.x31{left:48.201250pt;}
.x56{left:49.821760pt;}
.x59{left:54.014066pt;}
.x42{left:57.786667pt;}
.x2{left:68.481333pt;}
.x3c{left:73.466667pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.xb{left:78.560000pt;}
.xf{left:80.192000pt;}
.x18{left:84.512000pt;}
.xe{left:86.112000pt;}
.xa{left:112.672000pt;}
.x47{left:115.232000pt;}
.x9{left:120.192000pt;}
.x15{left:125.472000pt;}
.x4d{left:137.786667pt;}
.x13{left:141.946667pt;}
.x4e{left:146.906667pt;}
.x1e{left:151.560000pt;}
.x5{left:153.466667pt;}
.x54{left:154.426667pt;}
.x1f{left:162.426667pt;}
.x17{left:182.906667pt;}
.x10{left:187.546667pt;}
.x36{left:197.946667pt;}
.x1c{left:214.586667pt;}
.x1b{left:220.826667pt;}
.x2c{left:238.480000pt;}
.x14{left:246.306667pt;}
.x38{left:251.266667pt;}
.x19{left:256.066667pt;}
.x3a{left:293.346667pt;}
.x44{left:307.746667pt;}
.x5b{left:313.213333pt;}
.x30{left:329.213333pt;}
.xc{left:338.946667pt;}
.x48{left:340.546667pt;}
.x25{left:343.946667pt;}
.x55{left:351.946667pt;}
.x45{left:366.146667pt;}
.x5e{left:368.706667pt;}
.x5d{left:377.186667pt;}
.xd{left:396.893333pt;}
.x12{left:411.613333pt;}
.x11{left:415.773333pt;}
.x58{left:428.893333pt;}
.x4a{left:447.453333pt;}
.x34{left:456.893333pt;}
.x2b{left:469.053333pt;}
.x4f{left:479.946667pt;}
.x52{left:486.173333pt;}
.x4{left:491.466667pt;}
.x3b{left:501.066667pt;}
.x50{left:504.413333pt;}
.x5c{left:514.173333pt;}
.x2f{left:550.813333pt;}
.x20{left:576.933333pt;}
.x43{left:586.053333pt;}
.x6{left:652.133333pt;}
.x53{left:664.133333pt;}
.x46{left:674.533333pt;}
.x35{left:676.773333pt;}
.x1a{left:699.333333pt;}
.x16{left:715.840000pt;}
.x8{left:718.240000pt;}
.x37{left:720.480000pt;}
}




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