
    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_007ffc7059272e8f7190cb47.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_b5bc6fd7d7f8d4e6deccdb1b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4f3063e0b19989acc0caa23e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_62a2d0eb6da8868f327ef737.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6744864447806038990e7cc4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.833008;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_007ffc7059272e8f7190cb47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_d2d5ea02b554fca220aa2ff9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.702000;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_8dc3917241233c08d88c091f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_467ec6109b3903b7e59ac04e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_274c45f1be7e5ce9fc7c8fd7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_83fd2e5e5a3606e8144a1ead.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_68523016171192a0fbc421ad.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cbe047750da12a866d98011b.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_844e77f15685474d59dc6aad.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_662013782e44541102069778.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_da925cd8eae6c2c7cf859ffd.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_02cb757a20086cbed676aefa.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_38e68bb56cc9e13a32e4b0cb.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_6f73d4cca52e70f225cdecc0.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_6aa897a2f9b0563b2329f808.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_8a17969b79a8f3826a34e471.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_eff8da2cedcbdbc0b9616d0e.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_aa099cef373e1622a9d03b7f.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_0a719fde5859f27c018ba1ce.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_c59f96b2a1b3d44b42618300.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_e0658c4d4d88af375ec71d1b.woff')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_11a610cc40524a45a860740a.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_e1b5bfae737474da3a66589b.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_dab9d271298fb7dc0971dca9.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_11a610cc40524a45a860740a.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_d13d2437b8cca1d30f1145c0.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_90ba9acf5d7248fb86f4c481.woff')format("woff");}.ff20{font-family:ff20;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;}
.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);}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-5.553360px;}
.v3{vertical-align:-2.862000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:30.942000px;}
.ls38{letter-spacing:-0.956160px;}
.ls65{letter-spacing:-0.836640px;}
.ls1c{letter-spacing:-0.810000px;}
.ls35{letter-spacing:-0.776880px;}
.ls58{letter-spacing:-0.720000px;}
.ls59{letter-spacing:-0.702000px;}
.ls37{letter-spacing:-0.597600px;}
.ls1d{letter-spacing:-0.594000px;}
.ls3a{letter-spacing:-0.540000px;}
.ls34{letter-spacing:-0.537840px;}
.ls36{letter-spacing:-0.478080px;}
.ls57{letter-spacing:-0.468000px;}
.ls3c{letter-spacing:-0.418320px;}
.ls13{letter-spacing:-0.383040px;}
.ls1b{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.358560px;}
.ls6d{letter-spacing:-0.324000px;}
.ls55{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.239040px;}
.ls18{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.191520px;}
.ls39{letter-spacing:-0.179280px;}
.ls56{letter-spacing:-0.144000px;}
.ls3b{letter-spacing:-0.119520px;}
.ls1a{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.059760px;}
.ls11{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.002880px;}
.lsd{letter-spacing:0.059760px;}
.ls9{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.162000px;}
.ls5e{letter-spacing:0.173304px;}
.ls1{letter-spacing:0.179280px;}
.ls69{letter-spacing:0.185256px;}
.ls0{letter-spacing:0.191520px;}
.ls19{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.233064px;}
.ls2{letter-spacing:0.239040px;}
.ls6b{letter-spacing:0.245016px;}
.ls1e{letter-spacing:0.288000px;}
.ls6a{letter-spacing:0.292824px;}
.ls2c{letter-spacing:0.298800px;}
.ls4f{letter-spacing:0.346608px;}
.ls5c{letter-spacing:0.352584px;}
.lse{letter-spacing:0.358560px;}
.ls50{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.378000px;}
.ls51{letter-spacing:0.406368px;}
.ls3e{letter-spacing:0.412344px;}
.ls33{letter-spacing:0.418320px;}
.ls6e{letter-spacing:0.486000px;}
.ls64{letter-spacing:0.756000px;}
.lsf{letter-spacing:0.896400px;}
.ls62{letter-spacing:1.613520px;}
.ls2d{letter-spacing:1.733040px;}
.ls32{letter-spacing:2.324664px;}
.ls21{letter-spacing:2.330640px;}
.ls3{letter-spacing:2.877120px;}
.ls30{letter-spacing:3.047760px;}
.ls63{letter-spacing:3.078000px;}
.ls8{letter-spacing:3.677400px;}
.ls2b{letter-spacing:3.764880px;}
.ls7{letter-spacing:3.780000px;}
.ls6{letter-spacing:4.482000px;}
.ls23{letter-spacing:5.199120px;}
.lsa{letter-spacing:5.238000px;}
.ls24{letter-spacing:5.916240px;}
.ls53{letter-spacing:5.976000px;}
.ls54{letter-spacing:6.633360px;}
.ls26{letter-spacing:7.350480px;}
.ls40{letter-spacing:7.410240px;}
.ls60{letter-spacing:7.691112px;}
.ls67{letter-spacing:7.697088px;}
.ls66{letter-spacing:7.995888px;}
.ls5d{letter-spacing:8.001864px;}
.ls20{letter-spacing:8.127360px;}
.ls28{letter-spacing:8.844480px;}
.ls2a{letter-spacing:9.376344px;}
.ls52{letter-spacing:9.561600px;}
.ls61{letter-spacing:10.278720px;}
.ls5b{letter-spacing:10.989864px;}
.ls41{letter-spacing:10.995840px;}
.ls31{letter-spacing:11.712960px;}
.ls3f{letter-spacing:12.430080px;}
.ls2e{letter-spacing:13.147200px;}
.ls5f{letter-spacing:14.342400px;}
.lsb{letter-spacing:14.580000px;}
.ls6c{letter-spacing:16.493760px;}
.ls27{letter-spacing:17.449920px;}
.ls3d{letter-spacing:17.503704px;}
.ls2f{letter-spacing:17.509680px;}
.ls4e{letter-spacing:18.167040px;}
.ls22{letter-spacing:22.529520px;}
.ls25{letter-spacing:23.246640px;}
.ls68{letter-spacing:46.015200px;}
.ls48{letter-spacing:134.082000px;}
.ls49{letter-spacing:135.540000px;}
.ls4d{letter-spacing:155.682000px;}
.ls4c{letter-spacing:198.180000px;}
.ls4a{letter-spacing:219.726000px;}
.ls5a{letter-spacing:219.731400px;}
.ls44{letter-spacing:227.718000px;}
.ls46{letter-spacing:284.580000px;}
.ls45{letter-spacing:299.700000px;}
.ls42{letter-spacing:355.158000px;}
.ls43{letter-spacing:478.278000px;}
.ls4b{letter-spacing:491.238000px;}
.ls47{letter-spacing:572.616000px;}
.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;}
}
.ws1{word-spacing:-26.429760px;}
.ws0{word-spacing:-26.238240px;}
.wsbe{word-spacing:-20.304000px;}
.wse{word-spacing:-19.944000px;}
.ws4d{word-spacing:-16.493760px;}
.ws10{word-spacing:-15.298560px;}
.ws7{word-spacing:-15.228000px;}
.ws11{word-spacing:-15.179040px;}
.ws4c{word-spacing:-15.119280px;}
.ws2{word-spacing:-15.059520px;}
.wsf{word-spacing:-14.999760px;}
.ws47{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.880240px;}
.ws4f{word-spacing:-14.820480px;}
.wsaf{word-spacing:-14.760720px;}
.ws4e{word-spacing:-14.700960px;}
.ws4{word-spacing:-14.581440px;}
.ws49{word-spacing:-14.461920px;}
.ws50{word-spacing:-14.402160px;}
.ws4b{word-spacing:-14.342400px;}
.ws48{word-spacing:-14.163120px;}
.wsae{word-spacing:-13.983840px;}
.wsa{word-spacing:-13.878000px;}
.wsb{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.284000px;}
.ws8f{word-spacing:-13.122000px;}
.wsd{word-spacing:-12.906000px;}
.wsc{word-spacing:-12.690000px;}
.ws4a{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws3e{word-spacing:-3.764880px;}
.ws8e{word-spacing:-3.525840px;}
.ws3d{word-spacing:-3.346560px;}
.wsbc{word-spacing:-3.078000px;}
.ws3c{word-spacing:-3.047760px;}
.ws39{word-spacing:-2.808720px;}
.wsb6{word-spacing:-2.748960px;}
.ws66{word-spacing:-2.629440px;}
.wsbb{word-spacing:-2.484000px;}
.ws43{word-spacing:-2.330640px;}
.ws44{word-spacing:-2.091600px;}
.ws70{word-spacing:-1.912320px;}
.ws42{word-spacing:-1.613520px;}
.ws5e{word-spacing:-1.374480px;}
.ws94{word-spacing:-1.195200px;}
.ws8c{word-spacing:-0.918000px;}
.ws69{word-spacing:-0.896400px;}
.wsc6{word-spacing:-0.717120px;}
.ws16{word-spacing:-0.670320px;}
.wsb0{word-spacing:-0.657360px;}
.ws2f{word-spacing:-0.648000px;}
.ws8b{word-spacing:-0.537840px;}
.wsc5{word-spacing:-0.486000px;}
.ws6a{word-spacing:-0.478080px;}
.ws23{word-spacing:-0.378000px;}
.ws3a{word-spacing:-0.358560px;}
.ws38{word-spacing:-0.288000px;}
.ws79{word-spacing:-0.270000px;}
.ws85{word-spacing:-0.239040px;}
.ws1d{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.179280px;}
.ws26{word-spacing:-0.162000px;}
.wsac{word-spacing:-0.144000px;}
.ws56{word-spacing:-0.119520px;}
.ws37{word-spacing:-0.108000px;}
.ws3f{word-spacing:-0.059760px;}
.ws12{word-spacing:-0.054000px;}
.ws13{word-spacing:0.000000px;}
.wsa0{word-spacing:0.054000px;}
.ws3b{word-spacing:0.059760px;}
.ws2c{word-spacing:0.108000px;}
.ws80{word-spacing:0.119520px;}
.wsa7{word-spacing:0.144000px;}
.wsa1{word-spacing:0.162000px;}
.ws72{word-spacing:0.179280px;}
.ws15{word-spacing:0.191520px;}
.ws2b{word-spacing:0.216000px;}
.ws54{word-spacing:0.239040px;}
.wsc4{word-spacing:0.324000px;}
.ws7d{word-spacing:0.358560px;}
.ws1f{word-spacing:0.378000px;}
.ws19{word-spacing:0.418320px;}
.wsa2{word-spacing:0.432000px;}
.ws92{word-spacing:0.478080px;}
.wsa5{word-spacing:0.504000px;}
.ws1b{word-spacing:0.537840px;}
.ws7a{word-spacing:0.540000px;}
.wsc0{word-spacing:0.594000px;}
.ws73{word-spacing:0.597600px;}
.wsba{word-spacing:0.702000px;}
.ws40{word-spacing:0.717120px;}
.wsa8{word-spacing:0.720000px;}
.ws8d{word-spacing:0.776880px;}
.wsa9{word-spacing:0.828000px;}
.wsb7{word-spacing:0.836640px;}
.ws41{word-spacing:0.956160px;}
.ws28{word-spacing:1.134000px;}
.ws59{word-spacing:1.254960px;}
.ws45{word-spacing:1.344000px;}
.ws89{word-spacing:1.374480px;}
.ws63{word-spacing:1.494000px;}
.ws7e{word-spacing:1.613520px;}
.ws9f{word-spacing:1.673280px;}
.ws58{word-spacing:1.972080px;}
.ws75{word-spacing:2.211120px;}
.ws9c{word-spacing:2.569680px;}
.ws71{word-spacing:2.689200px;}
.ws33{word-spacing:2.700000px;}
.ws78{word-spacing:2.808720px;}
.ws86{word-spacing:2.928240px;}
.ws87{word-spacing:3.107520px;}
.ws24{word-spacing:3.402000px;}
.ws76{word-spacing:3.406320px;}
.ws8a{word-spacing:3.525840px;}
.ws74{word-spacing:3.645360px;}
.wsbf{word-spacing:3.672000px;}
.ws77{word-spacing:3.824640px;}
.ws25{word-spacing:3.996000px;}
.ws21{word-spacing:4.104000px;}
.ws68{word-spacing:4.123440px;}
.ws98{word-spacing:4.362480px;}
.ws20{word-spacing:4.374000px;}
.ws91{word-spacing:4.541760px;}
.ws30{word-spacing:4.698000px;}
.ws5f{word-spacing:4.840560px;}
.ws2d{word-spacing:4.860000px;}
.ws60{word-spacing:5.079600px;}
.wsb2{word-spacing:5.258880px;}
.ws7f{word-spacing:5.378400px;}
.wsb1{word-spacing:5.438160px;}
.ws1e{word-spacing:5.454000px;}
.ws96{word-spacing:5.497920px;}
.ws62{word-spacing:5.557680px;}
.ws29{word-spacing:5.562000px;}
.wsaa{word-spacing:5.796720px;}
.ws61{word-spacing:5.976000px;}
.wsab{word-spacing:6.155280px;}
.ws22{word-spacing:6.264000px;}
.ws9e{word-spacing:6.274800px;}
.wsa4{word-spacing:6.513840px;}
.wsad{word-spacing:6.693120px;}
.ws18{word-spacing:6.703200px;}
.ws55{word-spacing:6.991920px;}
.ws93{word-spacing:7.230960px;}
.ws17{word-spacing:7.373520px;}
.ws57{word-spacing:7.410240px;}
.ws53{word-spacing:7.709040px;}
.wsb9{word-spacing:7.768800px;}
.ws67{word-spacing:7.888320px;}
.ws52{word-spacing:7.948080px;}
.ws81{word-spacing:8.426160px;}
.wsb3{word-spacing:8.485920px;}
.ws6e{word-spacing:8.724960px;}
.ws6f{word-spacing:8.904240px;}
.ws5a{word-spacing:9.203040px;}
.ws7b{word-spacing:9.442080px;}
.ws9a{word-spacing:9.920160px;}
.ws9d{word-spacing:10.338480px;}
.ws97{word-spacing:10.637280px;}
.ws9b{word-spacing:10.876320px;}
.ws99{word-spacing:11.055600px;}
.ws27{word-spacing:11.340000px;}
.ws7c{word-spacing:11.354400px;}
.ws2e{word-spacing:12.042000px;}
.ws88{word-spacing:12.071520px;}
.ws95{word-spacing:12.489840px;}
.wsbd{word-spacing:12.636000px;}
.ws82{word-spacing:12.788640px;}
.ws83{word-spacing:13.206960px;}
.ws31{word-spacing:14.202000px;}
.ws36{word-spacing:14.904000px;}
.ws32{word-spacing:15.174000px;}
.wsb4{word-spacing:15.358320px;}
.ws34{word-spacing:15.498000px;}
.ws35{word-spacing:15.660000px;}
.wsb5{word-spacing:16.374240px;}
.ws6c{word-spacing:17.091360px;}
.ws6d{word-spacing:17.330400px;}
.ws6b{word-spacing:17.509680px;}
.wsa3{word-spacing:17.808480px;}
.ws84{word-spacing:17.868240px;}
.wsb8{word-spacing:18.226800px;}
.ws1c{word-spacing:19.224000px;}
.ws90{word-spacing:21.394080px;}
.ws5d{word-spacing:22.111200px;}
.ws5c{word-spacing:22.350240px;}
.ws5b{word-spacing:22.529520px;}
.ws65{word-spacing:22.888080px;}
.wsc3{word-spacing:23.112000px;}
.ws64{word-spacing:23.127120px;}
.wsc1{word-spacing:23.220000px;}
.wsc2{word-spacing:23.436000px;}
.ws51{word-spacing:30.059280px;}
.ws14{word-spacing:31.888080px;}
.ws2a{word-spacing:35.802000px;}
.wsa6{word-spacing:127.548000px;}
.ws46{word-spacing:498.312000px;}
._11{margin-left:-126.000000px;}
._10{margin-left:-123.031680px;}
._7{margin-left:-4.401360px;}
._b{margin-left:-3.175440px;}
._3{margin-left:-2.119440px;}
._2{margin-left:-1.103640px;}
._0{width:1.915200px;}
._d{width:2.919600px;}
._4{width:3.936360px;}
._1{width:5.937120px;}
._8{width:7.343520px;}
._a{width:9.410160px;}
._e{width:10.992000px;}
._f{width:12.351480px;}
._6{width:15.432720px;}
._c{width:16.784520px;}
._12{width:19.000800px;}
._9{width:23.420160px;}
._5{width:37.551840px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:5.760000px;}
.fs8{font-size:23.760000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsa{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:0.000750px;}
.y54{bottom:0.091500px;}
.yf2{bottom:4.320600px;}
.y29{bottom:15.732450px;}
.yf1{bottom:19.980600px;}
.y7f{bottom:23.986500px;}
.y28{bottom:29.232450px;}
.y6e{bottom:38.700750px;}
.y2{bottom:45.092250px;}
.y115{bottom:72.349590px;}
.y15d{bottom:72.441090px;}
.ya6{bottom:77.760750px;}
.y53{bottom:77.852250px;}
.y27{bottom:78.032250px;}
.y1a6{bottom:81.461190px;}
.y16e{bottom:81.552690px;}
.y195{bottom:82.071750px;}
.y1cd{bottom:82.163250px;}
.y138{bottom:84.897210px;}
.yed{bottom:84.988710px;}
.y114{bottom:89.635170px;}
.y15c{bottom:89.726670px;}
.y26{bottom:94.592250px;}
.y194{bottom:97.556250px;}
.y1cc{bottom:97.647750px;}
.y1a5{bottom:98.746770px;}
.y16d{bottom:98.838270px;}
.ya5{bottom:99.353190px;}
.y52{bottom:99.444690px;}
.y137{bottom:102.182790px;}
.yec{bottom:102.274290px;}
.y7e{bottom:104.743290px;}
.yca{bottom:104.834790px;}
.y113{bottom:106.920750px;}
.y15b{bottom:107.012250px;}
.y193{bottom:113.040750px;}
.y1cb{bottom:113.132250px;}
.y1a4{bottom:116.032350px;}
.y16c{bottom:116.123850px;}
.y136{bottom:119.468370px;}
.yeb{bottom:119.559870px;}
.y7d{bottom:121.849590px;}
.yc9{bottom:121.941090px;}
.y192{bottom:128.755110px;}
.y1ca{bottom:128.846610px;}
.y1a3{bottom:133.317930px;}
.y16b{bottom:133.409430px;}
.y135{bottom:136.574670px;}
.yea{bottom:136.666170px;}
.y25{bottom:136.678050px;}
.y112{bottom:137.340750px;}
.y15a{bottom:137.432250px;}
.y7c{bottom:139.135170px;}
.yc8{bottom:139.226670px;}
.y191{bottom:146.040690px;}
.y1c9{bottom:146.132190px;}
.y1a2{bottom:150.424230px;}
.y16a{bottom:150.515730px;}
.y134{bottom:153.860250px;}
.ye9{bottom:153.951750px;}
.y24{bottom:153.963630px;}
.y7b{bottom:156.415170px;}
.yc7{bottom:156.506670px;}
.y190{bottom:163.326270px;}
.y1c8{bottom:163.417770px;}
.y1a1{bottom:167.709810px;}
.y169{bottom:167.801310px;}
.y23{bottom:171.069930px;}
.y133{bottom:171.145830px;}
.ye8{bottom:171.237330px;}
.y7a{bottom:173.695170px;}
.yc6{bottom:173.786670px;}
.y18f{bottom:180.611850px;}
.y1c7{bottom:180.703350px;}
.y111{bottom:183.015390px;}
.y159{bottom:183.106890px;}
.y1a0{bottom:184.995390px;}
.y168{bottom:185.086890px;}
.y6d{bottom:186.840750px;}
.y22{bottom:188.355510px;}
.y132{bottom:188.431410px;}
.ye7{bottom:188.522910px;}
.y79{bottom:190.929090px;}
.yc5{bottom:191.020590px;}
.y18e{bottom:197.897430px;}
.y1c6{bottom:197.988930px;}
.y110{bottom:200.300970px;}
.y158{bottom:200.392470px;}
.y6c{bottom:201.240750px;}
.y19f{bottom:202.280970px;}
.y167{bottom:202.372470px;}
.y21{bottom:205.641090px;}
.y131{bottom:205.716990px;}
.ye6{bottom:205.808490px;}
.y78{bottom:208.214670px;}
.yc4{bottom:208.306170px;}
.y18d{bottom:215.003730px;}
.y1c5{bottom:215.095230px;}
.y10f{bottom:217.586550px;}
.y157{bottom:217.678050px;}
.y19e{bottom:219.566550px;}
.y166{bottom:219.658050px;}
.y20{bottom:222.926670px;}
.y130{bottom:223.002570px;}
.ye5{bottom:223.094070px;}
.y77{bottom:225.320970px;}
.yc3{bottom:225.412470px;}
.y18c{bottom:232.289310px;}
.y1c4{bottom:232.380810px;}
.y10e{bottom:234.872130px;}
.y156{bottom:234.963630px;}
.y19d{bottom:236.852130px;}
.y165{bottom:236.943630px;}
.y12f{bottom:240.108870px;}
.ye4{bottom:240.200370px;}
.y1f{bottom:240.212250px;}
.y76{bottom:242.606550px;}
.yc2{bottom:242.698050px;}
.y18b{bottom:249.574890px;}
.y1c3{bottom:249.666390px;}
.y10d{bottom:252.157710px;}
.y155{bottom:252.249210px;}
.y19c{bottom:253.958430px;}
.y164{bottom:254.049930px;}
.y1f0{bottom:256.364220px;}
.y12e{bottom:257.394450px;}
.ye3{bottom:257.485950px;}
.y75{bottom:259.892130px;}
.yc1{bottom:259.983630px;}
.y18a{bottom:266.860470px;}
.ya4{bottom:266.935170px;}
.y1c2{bottom:266.951970px;}
.y51{bottom:267.026670px;}
.y10c{bottom:269.264010px;}
.y154{bottom:269.355510px;}
.y1e{bottom:270.632250px;}
.y19b{bottom:271.244010px;}
.y163{bottom:271.335510px;}
.y1ef{bottom:273.649800px;}
.y12d{bottom:274.680030px;}
.ye2{bottom:274.771530px;}
.y74{bottom:277.177710px;}
.yc0{bottom:277.269210px;}
.y189{bottom:284.146050px;}
.ya3{bottom:284.220750px;}
.y1c1{bottom:284.237550px;}
.y50{bottom:284.312250px;}
.y10b{bottom:286.549590px;}
.y153{bottom:286.641090px;}
.y19a{bottom:288.529590px;}
.y162{bottom:288.621090px;}
.y1ee{bottom:290.935380px;}
.y12c{bottom:291.965610px;}
.ye1{bottom:292.057110px;}
.y73{bottom:294.463290px;}
.ybf{bottom:294.554790px;}
.y188{bottom:301.431630px;}
.y1c0{bottom:301.523130px;}
.y10a{bottom:303.835170px;}
.y152{bottom:303.926670px;}
.y199{bottom:305.815170px;}
.y161{bottom:305.906670px;}
.y1ed{bottom:308.220960px;}
.y12b{bottom:309.251190px;}
.ye0{bottom:309.342690px;}
.y72{bottom:311.748870px;}
.ybe{bottom:311.840370px;}
.ya2{bottom:314.640750px;}
.y4f{bottom:314.732250px;}
.y187{bottom:318.537930px;}
.y1bf{bottom:318.629430px;}
.y109{bottom:321.120750px;}
.y151{bottom:321.212250px;}
.y198{bottom:323.100750px;}
.y160{bottom:323.192250px;}
.y12a{bottom:326.536770px;}
.ydf{bottom:326.628270px;}
.y71{bottom:328.855170px;}
.ybd{bottom:328.946670px;}
.y1ec{bottom:329.824200px;}
.y1d{bottom:333.029100px;}
.y186{bottom:335.823510px;}
.y1be{bottom:335.915010px;}
.y108{bottom:338.400750px;}
.y150{bottom:338.492250px;}
.y129{bottom:343.643070px;}
.yde{bottom:343.734570px;}
.y70{bottom:346.140750px;}
.ybc{bottom:346.232250px;}
.y1eb{bottom:347.109780px;}
.y1c{bottom:348.513600px;}
.y197{bottom:349.020750px;}
.y15f{bottom:349.112250px;}
.y185{bottom:353.109090px;}
.y1bd{bottom:353.200590px;}
.y107{bottom:355.668870px;}
.y14f{bottom:355.760370px;}
.ya1{bottom:360.218370px;}
.y4e{bottom:360.309870px;}
.y128{bottom:360.928650px;}
.ydd{bottom:361.020150px;}
.y1b{bottom:363.998100px;}
.y1ea{bottom:368.892300px;}
.y184{bottom:370.394670px;}
.y1bc{bottom:370.486170px;}
.y196{bottom:370.609770px;}
.y15e{bottom:370.701270px;}
.y6f{bottom:372.060750px;}
.ybb{bottom:372.152250px;}
.y106{bottom:372.775170px;}
.y14e{bottom:372.866670px;}
.ya0{bottom:377.503950px;}
.y4d{bottom:377.595450px;}
.y1a{bottom:379.658100px;}
.y1e9{bottom:386.177880px;}
.y183{bottom:387.680250px;}
.y1bb{bottom:387.771750px;}
.y105{bottom:390.015390px;}
.y14d{bottom:390.106890px;}
.y127{bottom:390.808650px;}
.ydc{bottom:390.900150px;}
.y6a{bottom:393.751500px;}
.y9f{bottom:394.789530px;}
.y4c{bottom:394.881030px;}
.y19{bottom:395.142600px;}
.y1e8{bottom:403.463460px;}
.y182{bottom:404.786550px;}
.y1ba{bottom:404.878050px;}
.y104{bottom:407.300970px;}
.y14c{bottom:407.392470px;}
.y18{bottom:410.627100px;}
.y9e{bottom:412.075110px;}
.y4b{bottom:412.166610px;}
.y1e7{bottom:420.749040px;}
.y181{bottom:422.072130px;}
.y1b9{bottom:422.163630px;}
.y103{bottom:424.586550px;}
.y14b{bottom:424.678050px;}
.y17{bottom:426.111600px;}
.y9d{bottom:429.181410px;}
.y4a{bottom:429.272910px;}
.y126{bottom:433.641630px;}
.ydb{bottom:433.733130px;}
.y180{bottom:439.357710px;}
.y1b8{bottom:439.449210px;}
.y16{bottom:441.771600px;}
.y102{bottom:441.872130px;}
.y14a{bottom:441.963630px;}
.y1e6{bottom:442.352280px;}
.y9c{bottom:446.466990px;}
.y49{bottom:446.558490px;}
.y125{bottom:450.927210px;}
.yda{bottom:451.018710px;}
.y17f{bottom:456.643290px;}
.y1b7{bottom:456.734790px;}
.y15{bottom:457.256100px;}
.y101{bottom:459.157710px;}
.y149{bottom:459.249210px;}
.y1e5{bottom:459.637860px;}
.y9b{bottom:463.752570px;}
.y48{bottom:463.844070px;}
.y124{bottom:468.212790px;}
.yd9{bottom:468.304290px;}
.y14{bottom:472.740600px;}
.y17e{bottom:473.928870px;}
.y1b6{bottom:474.020370px;}
.y100{bottom:476.264010px;}
.y148{bottom:476.355510px;}
.y9a{bottom:481.038150px;}
.y47{bottom:481.129650px;}
.y1e4{bottom:481.345680px;}
.y123{bottom:485.498370px;}
.yd8{bottom:485.589870px;}
.y13{bottom:488.225100px;}
.y17d{bottom:491.214450px;}
.y1b5{bottom:491.305950px;}
.yff{bottom:493.549590px;}
.y147{bottom:493.641090px;}
.y99{bottom:498.323730px;}
.y46{bottom:498.415230px;}
.y1e3{bottom:498.631260px;}
.y122{bottom:502.783950px;}
.yd7{bottom:502.875450px;}
.y12{bottom:503.885100px;}
.y17c{bottom:508.320750px;}
.y1b4{bottom:508.412250px;}
.yfe{bottom:510.835170px;}
.y146{bottom:510.926670px;}
.y98{bottom:515.430030px;}
.y45{bottom:515.521530px;}
.y11{bottom:519.369600px;}
.y121{bottom:519.890250px;}
.yd6{bottom:519.981750px;}
.y1e2{bottom:520.413780px;}
.yfd{bottom:528.120750px;}
.y145{bottom:528.212250px;}
.y97{bottom:532.715610px;}
.y44{bottom:532.807110px;}
.y10{bottom:534.854100px;}
.y120{bottom:537.175830px;}
.yd5{bottom:537.267330px;}
.y1e1{bottom:537.520080px;}
.y17b{bottom:538.920750px;}
.y1b3{bottom:539.012250px;}
.y96{bottom:550.001190px;}
.y43{bottom:550.092690px;}
.yf{bottom:550.338600px;}
.y11f{bottom:554.461410px;}
.yd4{bottom:554.552910px;}
.y1e0{bottom:554.805660px;}
.yfc{bottom:558.000750px;}
.y144{bottom:558.092250px;}
.ye{bottom:565.998600px;}
.y95{bottom:567.286770px;}
.y42{bottom:567.378270px;}
.y11e{bottom:571.746990px;}
.yd3{bottom:571.838490px;}
.y1df{bottom:572.091240px;}
.yd{bottom:581.483100px;}
.y17a{bottom:584.520690px;}
.y94{bottom:584.572350px;}
.y1b2{bottom:584.612190px;}
.y41{bottom:584.663850px;}
.y11d{bottom:589.032570px;}
.yd2{bottom:589.124070px;}
.y1de{bottom:593.873760px;}
.yc{bottom:596.967600px;}
.y69{bottom:597.600750px;}
.yba{bottom:597.692250px;}
.y179{bottom:601.806270px;}
.y93{bottom:601.857930px;}
.y1b1{bottom:601.897770px;}
.y40{bottom:601.949430px;}
.y11c{bottom:606.318150px;}
.yd1{bottom:606.409650px;}
.y68{bottom:606.414450px;}
.yb9{bottom:606.505950px;}
.yfb{bottom:606.978600px;}
.y143{bottom:607.056750px;}
.yfa{bottom:614.714100px;}
.y142{bottom:614.792250px;}
.y1dd{bottom:615.656280px;}
.y178{bottom:618.912570px;}
.y92{bottom:618.964230px;}
.y1b0{bottom:619.004070px;}
.y3f{bottom:619.055730px;}
.y11b{bottom:623.424450px;}
.y67{bottom:623.509590px;}
.yd0{bottom:623.515950px;}
.yb8{bottom:623.601090px;}
.y177{bottom:636.198150px;}
.y91{bottom:636.249810px;}
.y1af{bottom:636.289650px;}
.y3e{bottom:636.341310px;}
.y1dc{bottom:637.438800px;}
.y11a{bottom:640.710030px;}
.y66{bottom:640.795170px;}
.ycf{bottom:640.801530px;}
.yb7{bottom:640.886670px;}
.yb{bottom:646.647600px;}
.y176{bottom:653.483730px;}
.y90{bottom:653.535390px;}
.y1ae{bottom:653.575230px;}
.y3d{bottom:653.626890px;}
.y119{bottom:657.995610px;}
.y65{bottom:658.057710px;}
.yce{bottom:658.087110px;}
.yf9{bottom:658.089600px;}
.yb6{bottom:658.149210px;}
.y141{bottom:658.172250px;}
.y1db{bottom:659.042040px;}
.ya{bottom:666.632100px;}
.y175{bottom:670.769310px;}
.y8f{bottom:670.820970px;}
.y1ad{bottom:670.860810px;}
.y3c{bottom:670.912470px;}
.y118{bottom:675.281190px;}
.y64{bottom:675.343290px;}
.ycd{bottom:675.372690px;}
.yb5{bottom:675.434790px;}
.y9{bottom:677.612250px;}
.y1da{bottom:680.824560px;}
.y174{bottom:688.054890px;}
.y8e{bottom:688.106550px;}
.y1ac{bottom:688.146390px;}
.y3b{bottom:688.198050px;}
.y117{bottom:692.566770px;}
.y63{bottom:692.628870px;}
.ycc{bottom:692.658270px;}
.yb4{bottom:692.720370px;}
.yf8{bottom:693.540600px;}
.y140{bottom:693.627750px;}
.y8{bottom:697.772250px;}
.y1d9{bottom:702.607080px;}
.y173{bottom:705.340470px;}
.y8d{bottom:705.392130px;}
.y1ab{bottom:705.431970px;}
.y3a{bottom:705.483630px;}
.yf7{bottom:709.025100px;}
.y13f{bottom:709.112250px;}
.y116{bottom:709.852350px;}
.y62{bottom:709.914450px;}
.ycb{bottom:709.943850px;}
.yb3{bottom:710.005950px;}
.y7{bottom:717.572250px;}
.y172{bottom:722.446770px;}
.y8c{bottom:722.498430px;}
.y1aa{bottom:722.538270px;}
.y39{bottom:722.589930px;}
.y1d8{bottom:724.389600px;}
.y61{bottom:726.958650px;}
.yb2{bottom:727.050150px;}
.y171{bottom:739.732350px;}
.y8b{bottom:739.784010px;}
.y1a9{bottom:739.823850px;}
.y38{bottom:739.875510px;}
.y60{bottom:744.244230px;}
.yb1{bottom:744.335730px;}
.yf6{bottom:744.665100px;}
.y13e{bottom:744.752250px;}
.y1d7{bottom:746.172120px;}
.y170{bottom:757.017930px;}
.y8a{bottom:757.069590px;}
.y1a8{bottom:757.109430px;}
.y37{bottom:757.161090px;}
.y5f{bottom:761.529810px;}
.yb0{bottom:761.621310px;}
.y6{bottom:762.047580px;}
.y1d6{bottom:763.457700px;}
.y16f{bottom:774.303510px;}
.y89{bottom:774.355170px;}
.y1a7{bottom:774.395010px;}
.y36{bottom:774.446670px;}
.y5e{bottom:778.815390px;}
.yaf{bottom:778.906890px;}
.yf5{bottom:780.116100px;}
.y13d{bottom:780.207750px;}
.y1d5{bottom:780.564000px;}
.y5{bottom:789.770100px;}
.y88{bottom:791.589090px;}
.y35{bottom:791.680590px;}
.yf4{bottom:795.600600px;}
.y13c{bottom:795.692250px;}
.y5d{bottom:796.100970px;}
.yae{bottom:796.192470px;}
.y1d4{bottom:802.346520px;}
.y87{bottom:808.695390px;}
.y34{bottom:808.786890px;}
.y5c{bottom:813.207270px;}
.yad{bottom:813.298770px;}
.y4{bottom:817.301100px;}
.y1d3{bottom:819.629730px;}
.y86{bottom:825.980970px;}
.y33{bottom:826.072470px;}
.y5b{bottom:830.492850px;}
.yac{bottom:830.584350px;}
.yf3{bottom:831.240600px;}
.y13b{bottom:831.332100px;}
.y1d2{bottom:841.412250px;}
.y85{bottom:843.266550px;}
.y32{bottom:843.358050px;}
.y3{bottom:844.832100px;}
.y5a{bottom:847.778430px;}
.yab{bottom:847.869930px;}
.yf0{bottom:858.151500px;}
.y84{bottom:860.552130px;}
.y31{bottom:860.643630px;}
.y59{bottom:865.064010px;}
.yaa{bottom:865.155510px;}
.yef{bottom:870.120750px;}
.y13a{bottom:870.212250px;}
.y1d1{bottom:871.832100px;}
.y83{bottom:877.837710px;}
.y30{bottom:877.929210px;}
.y58{bottom:882.349590px;}
.ya9{bottom:882.441090px;}
.y82{bottom:895.123290px;}
.y2f{bottom:895.214790px;}
.y57{bottom:899.635170px;}
.ya8{bottom:899.726670px;}
.yee{bottom:904.680750px;}
.y139{bottom:904.772250px;}
.y81{bottom:912.229590px;}
.y2e{bottom:912.321090px;}
.y56{bottom:916.741470px;}
.ya7{bottom:916.832970px;}
.y1d0{bottom:917.187600px;}
.y80{bottom:929.515170px;}
.y2d{bottom:929.606670px;}
.y1cf{bottom:932.847600px;}
.y55{bottom:946.800750px;}
.y2c{bottom:946.892250px;}
.y1ce{bottom:948.332100px;}
.y2b{bottom:983.380800px;}
.y2a{bottom:999.880800px;}
.y1{bottom:1111.962750px;}
.h17{height:3.903750px;}
.h15{height:16.509023px;}
.h6{height:25.013672px;}
.hd{height:33.024000px;}
.h3{height:33.518320px;}
.h1c{height:34.020000px;}
.he{height:36.504000px;}
.h2{height:37.152000px;}
.h7{height:37.520508px;}
.hc{height:38.642695px;}
.h8{height:39.313477px;}
.h18{height:40.501406px;}
.h1b{height:41.280000px;}
.h21{height:41.493516px;}
.ha{height:41.522695px;}
.h20{height:41.541036px;}
.h14{height:41.567335px;}
.h13{height:41.614855px;}
.h1f{height:41.704135px;}
.hf{height:41.729335px;}
.h12{height:41.771095px;}
.h11{height:43.506914px;}
.h5{height:47.894766px;}
.h1a{height:47.917086px;}
.h19{height:48.101406px;}
.hb{height:50.027344px;}
.h22{height:50.036824px;}
.h9{height:52.417969px;}
.h1d{height:68.462508px;}
.h1e{height:69.218508px;}
.h4{height:69.715898px;}
.h16{height:202.500000px;}
.h1{height:1062.750000px;}
.h10{height:1062.900000px;}
.h0{height:1062.991500px;}
.w4{width:-407.679000px;}
.w8{width:-388.239000px;}
.w7{width:-271.239000px;}
.w3{width:-84.939000px;}
.w2{width:0.022500px;}
.w9{width:116.640000px;}
.wa{width:222.480000px;}
.w6{width:230.220000px;}
.w5{width:322.738500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x12{left:-637.902030px;}
.x11{left:-616.657350px;}
.x13{left:-63.155550px;}
.x1{left:-25.511850px;}
.x0{left:0.000000px;}
.xd{left:8.099400px;}
.x19{left:16.919400px;}
.x1a{left:20.519550px;}
.x10{left:48.873750px;}
.x6{left:54.000000px;}
.x2{left:84.937350px;}
.x3{left:89.261850px;}
.x1c{left:94.319400px;}
.x7{left:106.177350px;}
.x28{left:111.943650px;}
.x21{left:121.312050px;}
.x1e{left:123.121050px;}
.x23{left:134.987550px;}
.x22{left:136.067550px;}
.x20{left:139.496550px;}
.x1d{left:152.281050px;}
.x4{left:157.301850px;}
.x1f{left:159.476550px;}
.x17{left:165.411900px;}
.x25{left:184.681260px;}
.x16{left:193.140900px;}
.xe{left:226.799400px;}
.x26{left:271.237500px;}
.x5{left:300.937350px;}
.xb{left:321.299400px;}
.xf{left:355.541400px;}
.x15{left:359.793300px;}
.x27{left:388.237500px;}
.x24{left:405.703050px;}
.x14{left:407.677500px;}
.x8{left:659.679150px;}
.x9{left:722.811000px;}
.xa{left:807.772500px;}
.x18{left:994.072500px;}
.x1b{left:1111.072500px;}
.xc{left:1130.512500px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-4.936320pt;}
.v3{vertical-align:-2.544000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:27.504000pt;}
.ls38{letter-spacing:-0.849920pt;}
.ls65{letter-spacing:-0.743680pt;}
.ls1c{letter-spacing:-0.720000pt;}
.ls35{letter-spacing:-0.690560pt;}
.ls58{letter-spacing:-0.640000pt;}
.ls59{letter-spacing:-0.624000pt;}
.ls37{letter-spacing:-0.531200pt;}
.ls1d{letter-spacing:-0.528000pt;}
.ls3a{letter-spacing:-0.480000pt;}
.ls34{letter-spacing:-0.478080pt;}
.ls36{letter-spacing:-0.424960pt;}
.ls57{letter-spacing:-0.416000pt;}
.ls3c{letter-spacing:-0.371840pt;}
.ls13{letter-spacing:-0.340480pt;}
.ls1b{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.318720pt;}
.ls6d{letter-spacing:-0.288000pt;}
.ls55{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.212480pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.170240pt;}
.ls39{letter-spacing:-0.159360pt;}
.ls56{letter-spacing:-0.128000pt;}
.ls3b{letter-spacing:-0.106240pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.053120pt;}
.ls11{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.002560pt;}
.lsd{letter-spacing:0.053120pt;}
.ls9{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.144000pt;}
.ls5e{letter-spacing:0.154048pt;}
.ls1{letter-spacing:0.159360pt;}
.ls69{letter-spacing:0.164672pt;}
.ls0{letter-spacing:0.170240pt;}
.ls19{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.207168pt;}
.ls2{letter-spacing:0.212480pt;}
.ls6b{letter-spacing:0.217792pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls6a{letter-spacing:0.260288pt;}
.ls2c{letter-spacing:0.265600pt;}
.ls4f{letter-spacing:0.308096pt;}
.ls5c{letter-spacing:0.313408pt;}
.lse{letter-spacing:0.318720pt;}
.ls50{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.336000pt;}
.ls51{letter-spacing:0.361216pt;}
.ls3e{letter-spacing:0.366528pt;}
.ls33{letter-spacing:0.371840pt;}
.ls6e{letter-spacing:0.432000pt;}
.ls64{letter-spacing:0.672000pt;}
.lsf{letter-spacing:0.796800pt;}
.ls62{letter-spacing:1.434240pt;}
.ls2d{letter-spacing:1.540480pt;}
.ls32{letter-spacing:2.066368pt;}
.ls21{letter-spacing:2.071680pt;}
.ls3{letter-spacing:2.557440pt;}
.ls30{letter-spacing:2.709120pt;}
.ls63{letter-spacing:2.736000pt;}
.ls8{letter-spacing:3.268800pt;}
.ls2b{letter-spacing:3.346560pt;}
.ls7{letter-spacing:3.360000pt;}
.ls6{letter-spacing:3.984000pt;}
.ls23{letter-spacing:4.621440pt;}
.lsa{letter-spacing:4.656000pt;}
.ls24{letter-spacing:5.258880pt;}
.ls53{letter-spacing:5.312000pt;}
.ls54{letter-spacing:5.896320pt;}
.ls26{letter-spacing:6.533760pt;}
.ls40{letter-spacing:6.586880pt;}
.ls60{letter-spacing:6.836544pt;}
.ls67{letter-spacing:6.841856pt;}
.ls66{letter-spacing:7.107456pt;}
.ls5d{letter-spacing:7.112768pt;}
.ls20{letter-spacing:7.224320pt;}
.ls28{letter-spacing:7.861760pt;}
.ls2a{letter-spacing:8.334528pt;}
.ls52{letter-spacing:8.499200pt;}
.ls61{letter-spacing:9.136640pt;}
.ls5b{letter-spacing:9.768768pt;}
.ls41{letter-spacing:9.774080pt;}
.ls31{letter-spacing:10.411520pt;}
.ls3f{letter-spacing:11.048960pt;}
.ls2e{letter-spacing:11.686400pt;}
.ls5f{letter-spacing:12.748800pt;}
.lsb{letter-spacing:12.960000pt;}
.ls6c{letter-spacing:14.661120pt;}
.ls27{letter-spacing:15.511040pt;}
.ls3d{letter-spacing:15.558848pt;}
.ls2f{letter-spacing:15.564160pt;}
.ls4e{letter-spacing:16.148480pt;}
.ls22{letter-spacing:20.026240pt;}
.ls25{letter-spacing:20.663680pt;}
.ls68{letter-spacing:40.902400pt;}
.ls48{letter-spacing:119.184000pt;}
.ls49{letter-spacing:120.480000pt;}
.ls4d{letter-spacing:138.384000pt;}
.ls4c{letter-spacing:176.160000pt;}
.ls4a{letter-spacing:195.312000pt;}
.ls5a{letter-spacing:195.316800pt;}
.ls44{letter-spacing:202.416000pt;}
.ls46{letter-spacing:252.960000pt;}
.ls45{letter-spacing:266.400000pt;}
.ls42{letter-spacing:315.696000pt;}
.ls43{letter-spacing:425.136000pt;}
.ls4b{letter-spacing:436.656000pt;}
.ls47{letter-spacing:508.992000pt;}
.ws1{word-spacing:-23.493120pt;}
.ws0{word-spacing:-23.322880pt;}
.wsbe{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.728000pt;}
.ws4d{word-spacing:-14.661120pt;}
.ws10{word-spacing:-13.598720pt;}
.ws7{word-spacing:-13.536000pt;}
.ws11{word-spacing:-13.492480pt;}
.ws4c{word-spacing:-13.439360pt;}
.ws2{word-spacing:-13.386240pt;}
.wsf{word-spacing:-13.333120pt;}
.ws47{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.226880pt;}
.ws4f{word-spacing:-13.173760pt;}
.wsaf{word-spacing:-13.120640pt;}
.ws4e{word-spacing:-13.067520pt;}
.ws4{word-spacing:-12.961280pt;}
.ws49{word-spacing:-12.855040pt;}
.ws50{word-spacing:-12.801920pt;}
.ws4b{word-spacing:-12.748800pt;}
.ws48{word-spacing:-12.589440pt;}
.wsae{word-spacing:-12.430080pt;}
.wsa{word-spacing:-12.336000pt;}
.wsb{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.808000pt;}
.ws8f{word-spacing:-11.664000pt;}
.wsd{word-spacing:-11.472000pt;}
.wsc{word-spacing:-11.280000pt;}
.ws4a{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws3e{word-spacing:-3.346560pt;}
.ws8e{word-spacing:-3.134080pt;}
.ws3d{word-spacing:-2.974720pt;}
.wsbc{word-spacing:-2.736000pt;}
.ws3c{word-spacing:-2.709120pt;}
.ws39{word-spacing:-2.496640pt;}
.wsb6{word-spacing:-2.443520pt;}
.ws66{word-spacing:-2.337280pt;}
.wsbb{word-spacing:-2.208000pt;}
.ws43{word-spacing:-2.071680pt;}
.ws44{word-spacing:-1.859200pt;}
.ws70{word-spacing:-1.699840pt;}
.ws42{word-spacing:-1.434240pt;}
.ws5e{word-spacing:-1.221760pt;}
.ws94{word-spacing:-1.062400pt;}
.ws8c{word-spacing:-0.816000pt;}
.ws69{word-spacing:-0.796800pt;}
.wsc6{word-spacing:-0.637440pt;}
.ws16{word-spacing:-0.595840pt;}
.wsb0{word-spacing:-0.584320pt;}
.ws2f{word-spacing:-0.576000pt;}
.ws8b{word-spacing:-0.478080pt;}
.wsc5{word-spacing:-0.432000pt;}
.ws6a{word-spacing:-0.424960pt;}
.ws23{word-spacing:-0.336000pt;}
.ws3a{word-spacing:-0.318720pt;}
.ws38{word-spacing:-0.256000pt;}
.ws79{word-spacing:-0.240000pt;}
.ws85{word-spacing:-0.212480pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.159360pt;}
.ws26{word-spacing:-0.144000pt;}
.wsac{word-spacing:-0.128000pt;}
.ws56{word-spacing:-0.106240pt;}
.ws37{word-spacing:-0.096000pt;}
.ws3f{word-spacing:-0.053120pt;}
.ws12{word-spacing:-0.048000pt;}
.ws13{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.048000pt;}
.ws3b{word-spacing:0.053120pt;}
.ws2c{word-spacing:0.096000pt;}
.ws80{word-spacing:0.106240pt;}
.wsa7{word-spacing:0.128000pt;}
.wsa1{word-spacing:0.144000pt;}
.ws72{word-spacing:0.159360pt;}
.ws15{word-spacing:0.170240pt;}
.ws2b{word-spacing:0.192000pt;}
.ws54{word-spacing:0.212480pt;}
.wsc4{word-spacing:0.288000pt;}
.ws7d{word-spacing:0.318720pt;}
.ws1f{word-spacing:0.336000pt;}
.ws19{word-spacing:0.371840pt;}
.wsa2{word-spacing:0.384000pt;}
.ws92{word-spacing:0.424960pt;}
.wsa5{word-spacing:0.448000pt;}
.ws1b{word-spacing:0.478080pt;}
.ws7a{word-spacing:0.480000pt;}
.wsc0{word-spacing:0.528000pt;}
.ws73{word-spacing:0.531200pt;}
.wsba{word-spacing:0.624000pt;}
.ws40{word-spacing:0.637440pt;}
.wsa8{word-spacing:0.640000pt;}
.ws8d{word-spacing:0.690560pt;}
.wsa9{word-spacing:0.736000pt;}
.wsb7{word-spacing:0.743680pt;}
.ws41{word-spacing:0.849920pt;}
.ws28{word-spacing:1.008000pt;}
.ws59{word-spacing:1.115520pt;}
.ws45{word-spacing:1.194667pt;}
.ws89{word-spacing:1.221760pt;}
.ws63{word-spacing:1.328000pt;}
.ws7e{word-spacing:1.434240pt;}
.ws9f{word-spacing:1.487360pt;}
.ws58{word-spacing:1.752960pt;}
.ws75{word-spacing:1.965440pt;}
.ws9c{word-spacing:2.284160pt;}
.ws71{word-spacing:2.390400pt;}
.ws33{word-spacing:2.400000pt;}
.ws78{word-spacing:2.496640pt;}
.ws86{word-spacing:2.602880pt;}
.ws87{word-spacing:2.762240pt;}
.ws24{word-spacing:3.024000pt;}
.ws76{word-spacing:3.027840pt;}
.ws8a{word-spacing:3.134080pt;}
.ws74{word-spacing:3.240320pt;}
.wsbf{word-spacing:3.264000pt;}
.ws77{word-spacing:3.399680pt;}
.ws25{word-spacing:3.552000pt;}
.ws21{word-spacing:3.648000pt;}
.ws68{word-spacing:3.665280pt;}
.ws98{word-spacing:3.877760pt;}
.ws20{word-spacing:3.888000pt;}
.ws91{word-spacing:4.037120pt;}
.ws30{word-spacing:4.176000pt;}
.ws5f{word-spacing:4.302720pt;}
.ws2d{word-spacing:4.320000pt;}
.ws60{word-spacing:4.515200pt;}
.wsb2{word-spacing:4.674560pt;}
.ws7f{word-spacing:4.780800pt;}
.wsb1{word-spacing:4.833920pt;}
.ws1e{word-spacing:4.848000pt;}
.ws96{word-spacing:4.887040pt;}
.ws62{word-spacing:4.940160pt;}
.ws29{word-spacing:4.944000pt;}
.wsaa{word-spacing:5.152640pt;}
.ws61{word-spacing:5.312000pt;}
.wsab{word-spacing:5.471360pt;}
.ws22{word-spacing:5.568000pt;}
.ws9e{word-spacing:5.577600pt;}
.wsa4{word-spacing:5.790080pt;}
.wsad{word-spacing:5.949440pt;}
.ws18{word-spacing:5.958400pt;}
.ws55{word-spacing:6.215040pt;}
.ws93{word-spacing:6.427520pt;}
.ws17{word-spacing:6.554240pt;}
.ws57{word-spacing:6.586880pt;}
.ws53{word-spacing:6.852480pt;}
.wsb9{word-spacing:6.905600pt;}
.ws67{word-spacing:7.011840pt;}
.ws52{word-spacing:7.064960pt;}
.ws81{word-spacing:7.489920pt;}
.wsb3{word-spacing:7.543040pt;}
.ws6e{word-spacing:7.755520pt;}
.ws6f{word-spacing:7.914880pt;}
.ws5a{word-spacing:8.180480pt;}
.ws7b{word-spacing:8.392960pt;}
.ws9a{word-spacing:8.817920pt;}
.ws9d{word-spacing:9.189760pt;}
.ws97{word-spacing:9.455360pt;}
.ws9b{word-spacing:9.667840pt;}
.ws99{word-spacing:9.827200pt;}
.ws27{word-spacing:10.080000pt;}
.ws7c{word-spacing:10.092800pt;}
.ws2e{word-spacing:10.704000pt;}
.ws88{word-spacing:10.730240pt;}
.ws95{word-spacing:11.102080pt;}
.wsbd{word-spacing:11.232000pt;}
.ws82{word-spacing:11.367680pt;}
.ws83{word-spacing:11.739520pt;}
.ws31{word-spacing:12.624000pt;}
.ws36{word-spacing:13.248000pt;}
.ws32{word-spacing:13.488000pt;}
.wsb4{word-spacing:13.651840pt;}
.ws34{word-spacing:13.776000pt;}
.ws35{word-spacing:13.920000pt;}
.wsb5{word-spacing:14.554880pt;}
.ws6c{word-spacing:15.192320pt;}
.ws6d{word-spacing:15.404800pt;}
.ws6b{word-spacing:15.564160pt;}
.wsa3{word-spacing:15.829760pt;}
.ws84{word-spacing:15.882880pt;}
.wsb8{word-spacing:16.201600pt;}
.ws1c{word-spacing:17.088000pt;}
.ws90{word-spacing:19.016960pt;}
.ws5d{word-spacing:19.654400pt;}
.ws5c{word-spacing:19.866880pt;}
.ws5b{word-spacing:20.026240pt;}
.ws65{word-spacing:20.344960pt;}
.wsc3{word-spacing:20.544000pt;}
.ws64{word-spacing:20.557440pt;}
.wsc1{word-spacing:20.640000pt;}
.wsc2{word-spacing:20.832000pt;}
.ws51{word-spacing:26.719360pt;}
.ws14{word-spacing:28.344960pt;}
.ws2a{word-spacing:31.824000pt;}
.wsa6{word-spacing:113.376000pt;}
.ws46{word-spacing:442.944000pt;}
._11{margin-left:-112.000000pt;}
._10{margin-left:-109.361493pt;}
._7{margin-left:-3.912320pt;}
._b{margin-left:-2.822613pt;}
._3{margin-left:-1.883947pt;}
._2{margin-left:-0.981013pt;}
._0{width:1.702400pt;}
._d{width:2.595200pt;}
._4{width:3.498987pt;}
._1{width:5.277440pt;}
._8{width:6.527573pt;}
._a{width:8.364587pt;}
._e{width:9.770667pt;}
._f{width:10.979093pt;}
._6{width:13.717973pt;}
._c{width:14.919573pt;}
._12{width:16.889600pt;}
._9{width:20.817920pt;}
._5{width:33.379413pt;}
.fs9{font-size:5.120000pt;}
.fs8{font-size:21.120000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsa{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:0.000667pt;}
.y54{bottom:0.081333pt;}
.yf2{bottom:3.840533pt;}
.y29{bottom:13.984400pt;}
.yf1{bottom:17.760533pt;}
.y7f{bottom:21.321333pt;}
.y28{bottom:25.984400pt;}
.y6e{bottom:34.400667pt;}
.y2{bottom:40.082000pt;}
.y115{bottom:64.310747pt;}
.y15d{bottom:64.392080pt;}
.ya6{bottom:69.120667pt;}
.y53{bottom:69.202000pt;}
.y27{bottom:69.362000pt;}
.y1a6{bottom:72.409947pt;}
.y16e{bottom:72.491280pt;}
.y195{bottom:72.952667pt;}
.y1cd{bottom:73.034000pt;}
.y138{bottom:75.464187pt;}
.yed{bottom:75.545520pt;}
.y114{bottom:79.675707pt;}
.y15c{bottom:79.757040pt;}
.y26{bottom:84.082000pt;}
.y194{bottom:86.716667pt;}
.y1cc{bottom:86.798000pt;}
.y1a5{bottom:87.774907pt;}
.y16d{bottom:87.856240pt;}
.ya5{bottom:88.313947pt;}
.y52{bottom:88.395280pt;}
.y137{bottom:90.829147pt;}
.yec{bottom:90.910480pt;}
.y7e{bottom:93.105147pt;}
.yca{bottom:93.186480pt;}
.y113{bottom:95.040667pt;}
.y15b{bottom:95.122000pt;}
.y193{bottom:100.480667pt;}
.y1cb{bottom:100.562000pt;}
.y1a4{bottom:103.139867pt;}
.y16c{bottom:103.221200pt;}
.y136{bottom:106.194107pt;}
.yeb{bottom:106.275440pt;}
.y7d{bottom:108.310747pt;}
.yc9{bottom:108.392080pt;}
.y192{bottom:114.448987pt;}
.y1ca{bottom:114.530320pt;}
.y1a3{bottom:118.504827pt;}
.y16b{bottom:118.586160pt;}
.y135{bottom:121.399707pt;}
.yea{bottom:121.481040pt;}
.y25{bottom:121.491600pt;}
.y112{bottom:122.080667pt;}
.y15a{bottom:122.162000pt;}
.y7c{bottom:123.675707pt;}
.yc8{bottom:123.757040pt;}
.y191{bottom:129.813947pt;}
.y1c9{bottom:129.895280pt;}
.y1a2{bottom:133.710427pt;}
.y16a{bottom:133.791760pt;}
.y134{bottom:136.764667pt;}
.ye9{bottom:136.846000pt;}
.y24{bottom:136.856560pt;}
.y7b{bottom:139.035707pt;}
.yc7{bottom:139.117040pt;}
.y190{bottom:145.178907pt;}
.y1c8{bottom:145.260240pt;}
.y1a1{bottom:149.075387pt;}
.y169{bottom:149.156720pt;}
.y23{bottom:152.062160pt;}
.y133{bottom:152.129627pt;}
.ye8{bottom:152.210960pt;}
.y7a{bottom:154.395707pt;}
.yc6{bottom:154.477040pt;}
.y18f{bottom:160.543867pt;}
.y1c7{bottom:160.625200pt;}
.y111{bottom:162.680347pt;}
.y159{bottom:162.761680pt;}
.y1a0{bottom:164.440347pt;}
.y168{bottom:164.521680pt;}
.y6d{bottom:166.080667pt;}
.y22{bottom:167.427120pt;}
.y132{bottom:167.494587pt;}
.ye7{bottom:167.575920pt;}
.y79{bottom:169.714747pt;}
.yc5{bottom:169.796080pt;}
.y18e{bottom:175.908827pt;}
.y1c6{bottom:175.990160pt;}
.y110{bottom:178.045307pt;}
.y158{bottom:178.126640pt;}
.y6c{bottom:178.880667pt;}
.y19f{bottom:179.805307pt;}
.y167{bottom:179.886640pt;}
.y21{bottom:182.792080pt;}
.y131{bottom:182.859547pt;}
.ye6{bottom:182.940880pt;}
.y78{bottom:185.079707pt;}
.yc4{bottom:185.161040pt;}
.y18d{bottom:191.114427pt;}
.y1c5{bottom:191.195760pt;}
.y10f{bottom:193.410267pt;}
.y157{bottom:193.491600pt;}
.y19e{bottom:195.170267pt;}
.y166{bottom:195.251600pt;}
.y20{bottom:198.157040pt;}
.y130{bottom:198.224507pt;}
.ye5{bottom:198.305840pt;}
.y77{bottom:200.285307pt;}
.yc3{bottom:200.366640pt;}
.y18c{bottom:206.479387pt;}
.y1c4{bottom:206.560720pt;}
.y10e{bottom:208.775227pt;}
.y156{bottom:208.856560pt;}
.y19d{bottom:210.535227pt;}
.y165{bottom:210.616560pt;}
.y12f{bottom:213.430107pt;}
.ye4{bottom:213.511440pt;}
.y1f{bottom:213.522000pt;}
.y76{bottom:215.650267pt;}
.yc2{bottom:215.731600pt;}
.y18b{bottom:221.844347pt;}
.y1c3{bottom:221.925680pt;}
.y10d{bottom:224.140187pt;}
.y155{bottom:224.221520pt;}
.y19c{bottom:225.740827pt;}
.y164{bottom:225.822160pt;}
.y1f0{bottom:227.879307pt;}
.y12e{bottom:228.795067pt;}
.ye3{bottom:228.876400pt;}
.y75{bottom:231.015227pt;}
.yc1{bottom:231.096560pt;}
.y18a{bottom:237.209307pt;}
.ya4{bottom:237.275707pt;}
.y1c2{bottom:237.290640pt;}
.y51{bottom:237.357040pt;}
.y10c{bottom:239.345787pt;}
.y154{bottom:239.427120pt;}
.y1e{bottom:240.562000pt;}
.y19b{bottom:241.105787pt;}
.y163{bottom:241.187120pt;}
.y1ef{bottom:243.244267pt;}
.y12d{bottom:244.160027pt;}
.ye2{bottom:244.241360pt;}
.y74{bottom:246.380187pt;}
.yc0{bottom:246.461520pt;}
.y189{bottom:252.574267pt;}
.ya3{bottom:252.640667pt;}
.y1c1{bottom:252.655600pt;}
.y50{bottom:252.722000pt;}
.y10b{bottom:254.710747pt;}
.y153{bottom:254.792080pt;}
.y19a{bottom:256.470747pt;}
.y162{bottom:256.552080pt;}
.y1ee{bottom:258.609227pt;}
.y12c{bottom:259.524987pt;}
.ye1{bottom:259.606320pt;}
.y73{bottom:261.745147pt;}
.ybf{bottom:261.826480pt;}
.y188{bottom:267.939227pt;}
.y1c0{bottom:268.020560pt;}
.y10a{bottom:270.075707pt;}
.y152{bottom:270.157040pt;}
.y199{bottom:271.835707pt;}
.y161{bottom:271.917040pt;}
.y1ed{bottom:273.974187pt;}
.y12b{bottom:274.889947pt;}
.ye0{bottom:274.971280pt;}
.y72{bottom:277.110107pt;}
.ybe{bottom:277.191440pt;}
.ya2{bottom:279.680667pt;}
.y4f{bottom:279.762000pt;}
.y187{bottom:283.144827pt;}
.y1bf{bottom:283.226160pt;}
.y109{bottom:285.440667pt;}
.y151{bottom:285.522000pt;}
.y198{bottom:287.200667pt;}
.y160{bottom:287.282000pt;}
.y12a{bottom:290.254907pt;}
.ydf{bottom:290.336240pt;}
.y71{bottom:292.315707pt;}
.ybd{bottom:292.397040pt;}
.y1ec{bottom:293.177067pt;}
.y1d{bottom:296.025867pt;}
.y186{bottom:298.509787pt;}
.y1be{bottom:298.591120pt;}
.y108{bottom:300.800667pt;}
.y150{bottom:300.882000pt;}
.y129{bottom:305.460507pt;}
.yde{bottom:305.541840pt;}
.y70{bottom:307.680667pt;}
.ybc{bottom:307.762000pt;}
.y1eb{bottom:308.542027pt;}
.y1c{bottom:309.789867pt;}
.y197{bottom:310.240667pt;}
.y15f{bottom:310.322000pt;}
.y185{bottom:313.874747pt;}
.y1bd{bottom:313.956080pt;}
.y107{bottom:316.150107pt;}
.y14f{bottom:316.231440pt;}
.ya1{bottom:320.194107pt;}
.y4e{bottom:320.275440pt;}
.y128{bottom:320.825467pt;}
.ydd{bottom:320.906800pt;}
.y1b{bottom:323.553867pt;}
.y1ea{bottom:327.904267pt;}
.y184{bottom:329.239707pt;}
.y1bc{bottom:329.321040pt;}
.y196{bottom:329.430907pt;}
.y15e{bottom:329.512240pt;}
.y6f{bottom:330.720667pt;}
.ybb{bottom:330.802000pt;}
.y106{bottom:331.355707pt;}
.y14e{bottom:331.437040pt;}
.ya0{bottom:335.559067pt;}
.y4d{bottom:335.640400pt;}
.y1a{bottom:337.473867pt;}
.y1e9{bottom:343.269227pt;}
.y183{bottom:344.604667pt;}
.y1bb{bottom:344.686000pt;}
.y105{bottom:346.680347pt;}
.y14d{bottom:346.761680pt;}
.y127{bottom:347.385467pt;}
.ydc{bottom:347.466800pt;}
.y6a{bottom:350.001333pt;}
.y9f{bottom:350.924027pt;}
.y4c{bottom:351.005360pt;}
.y19{bottom:351.237867pt;}
.y1e8{bottom:358.634187pt;}
.y182{bottom:359.810267pt;}
.y1ba{bottom:359.891600pt;}
.y104{bottom:362.045307pt;}
.y14c{bottom:362.126640pt;}
.y18{bottom:365.001867pt;}
.y9e{bottom:366.288987pt;}
.y4b{bottom:366.370320pt;}
.y1e7{bottom:373.999147pt;}
.y181{bottom:375.175227pt;}
.y1b9{bottom:375.256560pt;}
.y103{bottom:377.410267pt;}
.y14b{bottom:377.491600pt;}
.y17{bottom:378.765867pt;}
.y9d{bottom:381.494587pt;}
.y4a{bottom:381.575920pt;}
.y126{bottom:385.459227pt;}
.ydb{bottom:385.540560pt;}
.y180{bottom:390.540187pt;}
.y1b8{bottom:390.621520pt;}
.y16{bottom:392.685867pt;}
.y102{bottom:392.775227pt;}
.y14a{bottom:392.856560pt;}
.y1e6{bottom:393.202027pt;}
.y9c{bottom:396.859547pt;}
.y49{bottom:396.940880pt;}
.y125{bottom:400.824187pt;}
.yda{bottom:400.905520pt;}
.y17f{bottom:405.905147pt;}
.y1b7{bottom:405.986480pt;}
.y15{bottom:406.449867pt;}
.y101{bottom:408.140187pt;}
.y149{bottom:408.221520pt;}
.y1e5{bottom:408.566987pt;}
.y9b{bottom:412.224507pt;}
.y48{bottom:412.305840pt;}
.y124{bottom:416.189147pt;}
.yd9{bottom:416.270480pt;}
.y14{bottom:420.213867pt;}
.y17e{bottom:421.270107pt;}
.y1b6{bottom:421.351440pt;}
.y100{bottom:423.345787pt;}
.y148{bottom:423.427120pt;}
.y9a{bottom:427.589467pt;}
.y47{bottom:427.670800pt;}
.y1e4{bottom:427.862827pt;}
.y123{bottom:431.554107pt;}
.yd8{bottom:431.635440pt;}
.y13{bottom:433.977867pt;}
.y17d{bottom:436.635067pt;}
.y1b5{bottom:436.716400pt;}
.yff{bottom:438.710747pt;}
.y147{bottom:438.792080pt;}
.y99{bottom:442.954427pt;}
.y46{bottom:443.035760pt;}
.y1e3{bottom:443.227787pt;}
.y122{bottom:446.919067pt;}
.yd7{bottom:447.000400pt;}
.y12{bottom:447.897867pt;}
.y17c{bottom:451.840667pt;}
.y1b4{bottom:451.922000pt;}
.yfe{bottom:454.075707pt;}
.y146{bottom:454.157040pt;}
.y98{bottom:458.160027pt;}
.y45{bottom:458.241360pt;}
.y11{bottom:461.661867pt;}
.y121{bottom:462.124667pt;}
.yd6{bottom:462.206000pt;}
.y1e2{bottom:462.590027pt;}
.yfd{bottom:469.440667pt;}
.y145{bottom:469.522000pt;}
.y97{bottom:473.524987pt;}
.y44{bottom:473.606320pt;}
.y10{bottom:475.425867pt;}
.y120{bottom:477.489627pt;}
.yd5{bottom:477.570960pt;}
.y1e1{bottom:477.795627pt;}
.y17b{bottom:479.040667pt;}
.y1b3{bottom:479.122000pt;}
.y96{bottom:488.889947pt;}
.y43{bottom:488.971280pt;}
.yf{bottom:489.189867pt;}
.y11f{bottom:492.854587pt;}
.yd4{bottom:492.935920pt;}
.y1e0{bottom:493.160587pt;}
.yfc{bottom:496.000667pt;}
.y144{bottom:496.082000pt;}
.ye{bottom:503.109867pt;}
.y95{bottom:504.254907pt;}
.y42{bottom:504.336240pt;}
.y11e{bottom:508.219547pt;}
.yd3{bottom:508.300880pt;}
.y1df{bottom:508.525547pt;}
.yd{bottom:516.873867pt;}
.y17a{bottom:519.573947pt;}
.y94{bottom:519.619867pt;}
.y1b2{bottom:519.655280pt;}
.y41{bottom:519.701200pt;}
.y11d{bottom:523.584507pt;}
.yd2{bottom:523.665840pt;}
.y1de{bottom:527.887787pt;}
.yc{bottom:530.637867pt;}
.y69{bottom:531.200667pt;}
.yba{bottom:531.282000pt;}
.y179{bottom:534.938907pt;}
.y93{bottom:534.984827pt;}
.y1b1{bottom:535.020240pt;}
.y40{bottom:535.066160pt;}
.y11c{bottom:538.949467pt;}
.yd1{bottom:539.030800pt;}
.y68{bottom:539.035067pt;}
.yb9{bottom:539.116400pt;}
.yfb{bottom:539.536533pt;}
.y143{bottom:539.606000pt;}
.yfa{bottom:546.412533pt;}
.y142{bottom:546.482000pt;}
.y1dd{bottom:547.250027pt;}
.y178{bottom:550.144507pt;}
.y92{bottom:550.190427pt;}
.y1b0{bottom:550.225840pt;}
.y3f{bottom:550.271760pt;}
.y11b{bottom:554.155067pt;}
.y67{bottom:554.230747pt;}
.yd0{bottom:554.236400pt;}
.yb8{bottom:554.312080pt;}
.y177{bottom:565.509467pt;}
.y91{bottom:565.555387pt;}
.y1af{bottom:565.590800pt;}
.y3e{bottom:565.636720pt;}
.y1dc{bottom:566.612267pt;}
.y11a{bottom:569.520027pt;}
.y66{bottom:569.595707pt;}
.ycf{bottom:569.601360pt;}
.yb7{bottom:569.677040pt;}
.yb{bottom:574.797867pt;}
.y176{bottom:580.874427pt;}
.y90{bottom:580.920347pt;}
.y1ae{bottom:580.955760pt;}
.y3d{bottom:581.001680pt;}
.y119{bottom:584.884987pt;}
.y65{bottom:584.940187pt;}
.yce{bottom:584.966320pt;}
.yf9{bottom:584.968533pt;}
.yb6{bottom:585.021520pt;}
.y141{bottom:585.042000pt;}
.y1db{bottom:585.815147pt;}
.ya{bottom:592.561867pt;}
.y175{bottom:596.239387pt;}
.y8f{bottom:596.285307pt;}
.y1ad{bottom:596.320720pt;}
.y3c{bottom:596.366640pt;}
.y118{bottom:600.249947pt;}
.y64{bottom:600.305147pt;}
.ycd{bottom:600.331280pt;}
.yb5{bottom:600.386480pt;}
.y9{bottom:602.322000pt;}
.y1da{bottom:605.177387pt;}
.y174{bottom:611.604347pt;}
.y8e{bottom:611.650267pt;}
.y1ac{bottom:611.685680pt;}
.y3b{bottom:611.731600pt;}
.y117{bottom:615.614907pt;}
.y63{bottom:615.670107pt;}
.ycc{bottom:615.696240pt;}
.yb4{bottom:615.751440pt;}
.yf8{bottom:616.480533pt;}
.y140{bottom:616.558000pt;}
.y8{bottom:620.242000pt;}
.y1d9{bottom:624.539627pt;}
.y173{bottom:626.969307pt;}
.y8d{bottom:627.015227pt;}
.y1ab{bottom:627.050640pt;}
.y3a{bottom:627.096560pt;}
.yf7{bottom:630.244533pt;}
.y13f{bottom:630.322000pt;}
.y116{bottom:630.979867pt;}
.y62{bottom:631.035067pt;}
.ycb{bottom:631.061200pt;}
.yb3{bottom:631.116400pt;}
.y7{bottom:637.842000pt;}
.y172{bottom:642.174907pt;}
.y8c{bottom:642.220827pt;}
.y1aa{bottom:642.256240pt;}
.y39{bottom:642.302160pt;}
.y1d8{bottom:643.901867pt;}
.y61{bottom:646.185467pt;}
.yb2{bottom:646.266800pt;}
.y171{bottom:657.539867pt;}
.y8b{bottom:657.585787pt;}
.y1a9{bottom:657.621200pt;}
.y38{bottom:657.667120pt;}
.y60{bottom:661.550427pt;}
.yb1{bottom:661.631760pt;}
.yf6{bottom:661.924533pt;}
.y13e{bottom:662.002000pt;}
.y1d7{bottom:663.264107pt;}
.y170{bottom:672.904827pt;}
.y8a{bottom:672.950747pt;}
.y1a8{bottom:672.986160pt;}
.y37{bottom:673.032080pt;}
.y5f{bottom:676.915387pt;}
.yb0{bottom:676.996720pt;}
.y6{bottom:677.375627pt;}
.y1d6{bottom:678.629067pt;}
.y16f{bottom:688.269787pt;}
.y89{bottom:688.315707pt;}
.y1a7{bottom:688.351120pt;}
.y36{bottom:688.397040pt;}
.y5e{bottom:692.280347pt;}
.yaf{bottom:692.361680pt;}
.yf5{bottom:693.436533pt;}
.y13d{bottom:693.518000pt;}
.y1d5{bottom:693.834667pt;}
.y5{bottom:702.017867pt;}
.y88{bottom:703.634747pt;}
.y35{bottom:703.716080pt;}
.yf4{bottom:707.200533pt;}
.y13c{bottom:707.282000pt;}
.y5d{bottom:707.645307pt;}
.yae{bottom:707.726640pt;}
.y1d4{bottom:713.196907pt;}
.y87{bottom:718.840347pt;}
.y34{bottom:718.921680pt;}
.y5c{bottom:722.850907pt;}
.yad{bottom:722.932240pt;}
.y4{bottom:726.489867pt;}
.y1d3{bottom:728.559760pt;}
.y86{bottom:734.205307pt;}
.y33{bottom:734.286640pt;}
.y5b{bottom:738.215867pt;}
.yac{bottom:738.297200pt;}
.yf3{bottom:738.880533pt;}
.y13b{bottom:738.961867pt;}
.y1d2{bottom:747.922000pt;}
.y85{bottom:749.570267pt;}
.y32{bottom:749.651600pt;}
.y3{bottom:750.961867pt;}
.y5a{bottom:753.580827pt;}
.yab{bottom:753.662160pt;}
.yf0{bottom:762.801333pt;}
.y84{bottom:764.935227pt;}
.y31{bottom:765.016560pt;}
.y59{bottom:768.945787pt;}
.yaa{bottom:769.027120pt;}
.yef{bottom:773.440667pt;}
.y13a{bottom:773.522000pt;}
.y1d1{bottom:774.961867pt;}
.y83{bottom:780.300187pt;}
.y30{bottom:780.381520pt;}
.y58{bottom:784.310747pt;}
.ya9{bottom:784.392080pt;}
.y82{bottom:795.665147pt;}
.y2f{bottom:795.746480pt;}
.y57{bottom:799.675707pt;}
.ya8{bottom:799.757040pt;}
.yee{bottom:804.160667pt;}
.y139{bottom:804.242000pt;}
.y81{bottom:810.870747pt;}
.y2e{bottom:810.952080pt;}
.y56{bottom:814.881307pt;}
.ya7{bottom:814.962640pt;}
.y1d0{bottom:815.277867pt;}
.y80{bottom:826.235707pt;}
.y2d{bottom:826.317040pt;}
.y1cf{bottom:829.197867pt;}
.y55{bottom:841.600667pt;}
.y2c{bottom:841.682000pt;}
.y1ce{bottom:842.961867pt;}
.y2b{bottom:874.116267pt;}
.y2a{bottom:888.782933pt;}
.y1{bottom:988.411333pt;}
.h17{height:3.470000pt;}
.h15{height:14.674687pt;}
.h6{height:22.234375pt;}
.hd{height:29.354667pt;}
.h3{height:29.794062pt;}
.h1c{height:30.240000pt;}
.he{height:32.448000pt;}
.h2{height:33.024000pt;}
.h7{height:33.351562pt;}
.hc{height:34.349063pt;}
.h8{height:34.945312pt;}
.h18{height:36.001250pt;}
.h1b{height:36.693333pt;}
.h21{height:36.883125pt;}
.ha{height:36.909063pt;}
.h20{height:36.925365pt;}
.h14{height:36.948743pt;}
.h13{height:36.990982pt;}
.h1f{height:37.070343pt;}
.hf{height:37.092742pt;}
.h12{height:37.129863pt;}
.h11{height:38.672812pt;}
.h5{height:42.573125pt;}
.h1a{height:42.592965pt;}
.h19{height:42.756805pt;}
.hb{height:44.468750pt;}
.h22{height:44.477177pt;}
.h9{height:46.593750pt;}
.h1d{height:60.855563pt;}
.h1e{height:61.527562pt;}
.h4{height:61.969687pt;}
.h16{height:180.000000pt;}
.h1{height:944.666667pt;}
.h10{height:944.800000pt;}
.h0{height:944.881333pt;}
.w4{width:-362.381333pt;}
.w8{width:-345.101333pt;}
.w7{width:-241.101333pt;}
.w3{width:-75.501333pt;}
.w2{width:0.020000pt;}
.w9{width:103.680000pt;}
.wa{width:197.760000pt;}
.w6{width:204.640000pt;}
.w5{width:286.878667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x12{left:-567.024027pt;}
.x11{left:-548.139867pt;}
.x13{left:-56.138267pt;}
.x1{left:-22.677200pt;}
.x0{left:0.000000pt;}
.xd{left:7.199467pt;}
.x19{left:15.039467pt;}
.x1a{left:18.239600pt;}
.x10{left:43.443333pt;}
.x6{left:48.000000pt;}
.x2{left:75.499867pt;}
.x3{left:79.343867pt;}
.x1c{left:83.839467pt;}
.x7{left:94.379867pt;}
.x28{left:99.505467pt;}
.x21{left:107.832933pt;}
.x1e{left:109.440933pt;}
.x23{left:119.988933pt;}
.x22{left:120.948933pt;}
.x20{left:123.996933pt;}
.x1d{left:135.360933pt;}
.x4{left:139.823867pt;}
.x1f{left:141.756933pt;}
.x17{left:147.032800pt;}
.x25{left:164.161120pt;}
.x16{left:171.680800pt;}
.xe{left:201.599467pt;}
.x26{left:241.100000pt;}
.x5{left:267.499867pt;}
.xb{left:285.599467pt;}
.xf{left:316.036800pt;}
.x15{left:319.816267pt;}
.x27{left:345.100000pt;}
.x24{left:360.624933pt;}
.x14{left:362.380000pt;}
.x8{left:586.381467pt;}
.x9{left:642.498667pt;}
.xa{left:718.020000pt;}
.x18{left:883.620000pt;}
.x1b{left:987.620000pt;}
.xc{left:1004.900000pt;}
}




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