
    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_7faf04abc451c3322eab68eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903320;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_5a2adbc7f490bebfd1bc0e0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677734;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_8875501bdca4d26035aeac04.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_53d7121d50fbb3d73a8150ce.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ad4b39d113ba95032955920f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bf9366eebd61f9c8636de1f0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_423bcbac46cdcfdc56043832.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_713ead1c6bea07880db7d468.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677734;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_05d1a33ae19b7f6866c210ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.677734;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_0b599fa46734329b4355316f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677734;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_d325f2f1bd6e156f63a84302.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_6d15d27ef8b8703334ac0fba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.677734;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_10ab801938d0d808a46c70e7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.677734;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_951c34220aaac668f0bdb187.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.677734;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_a015e605eccc815ad0510a11.woff2')format("woff");}.fff{font-family:fff;line-height:0.669434;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_6449578e33883e3f112a956a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675781;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_3617a76118a1ba6567c48ace.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.677734;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_a550c8e9f12444a173e0a97c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.677734;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_034335f711db80321065e354.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.093262;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_24397f25599ee51ccbc76ab3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.669434;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_722dd1f4a492b7ab729a16ff.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.669434;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_a22a074df9c94fb603ccf4c5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.675781;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_4f81fc51d624c344367e0d62.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.669434;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_4519e88e4f3593167c6737b5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.677734;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_ecfeda0e5fbe0e0020cf479c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.677734;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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.281250;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_f05a323a806e22cd564a173d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.669434;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_0edb56794c935a005a7051a0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.v5{vertical-align:37.425600px;}
.ls47{letter-spacing:-0.936000px;}
.ls3f{letter-spacing:-0.864000px;}
.ls6d{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.728640px;}
.ls51{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.596160px;}
.ls3e{letter-spacing:-0.594000px;}
.ls6c{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.463680px;}
.ls3{letter-spacing:-0.462000px;}
.ls50{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.397440px;}
.ls3d{letter-spacing:-0.378000px;}
.ls10{letter-spacing:-0.331200px;}
.ls9{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls43{letter-spacing:-0.132480px;}
.ls5{letter-spacing:-0.119520px;}
.ls3b{letter-spacing:-0.108000px;}
.ls40{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.084240px;}
.ls3c{letter-spacing:0.108000px;}
.ls45{letter-spacing:0.123840px;}
.lsc{letter-spacing:0.132480px;}
.ls1b{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.179280px;}
.ls2a{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.264960px;}
.lsa{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.305280px;}
.lse{letter-spacing:0.331200px;}
.ls7{letter-spacing:0.336960px;}
.ls58{letter-spacing:0.358560px;}
.ls2{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.385920px;}
.ls48{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.661680px;}
.ls44{letter-spacing:0.720000px;}
.ls61{letter-spacing:0.792000px;}
.ls60{letter-spacing:0.936000px;}
.ls29{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.457280px;}
.ls32{letter-spacing:1.620000px;}
.ls19{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.880000px;}
.ls1f{letter-spacing:3.600000px;}
.ls2b{letter-spacing:3.780000px;}
.ls52{letter-spacing:4.320000px;}
.ls4b{letter-spacing:5.032800px;}
.ls59{letter-spacing:5.040000px;}
.ls36{letter-spacing:5.220000px;}
.ls5a{letter-spacing:5.760000px;}
.ls46{letter-spacing:5.767200px;}
.ls2d{letter-spacing:5.940000px;}
.ls4e{letter-spacing:6.480000px;}
.ls2f{letter-spacing:6.642000px;}
.ls30{letter-spacing:6.658200px;}
.ls2c{letter-spacing:6.660000px;}
.ls4d{letter-spacing:7.200000px;}
.ls13{letter-spacing:7.816320px;}
.ls21{letter-spacing:7.920000px;}
.ls63{letter-spacing:8.640000px;}
.ls69{letter-spacing:9.360000px;}
.ls42{letter-spacing:10.080000px;}
.ls23{letter-spacing:10.800000px;}
.ls64{letter-spacing:11.520000px;}
.ls54{letter-spacing:12.240000px;}
.ls1d{letter-spacing:13.680000px;}
.ls1c{letter-spacing:13.860000px;}
.ls49{letter-spacing:14.400000px;}
.ls33{letter-spacing:14.580000px;}
.ls55{letter-spacing:15.120000px;}
.ls4a{letter-spacing:15.840000px;}
.ls65{letter-spacing:16.560000px;}
.ls24{letter-spacing:17.280000px;}
.ls5c{letter-spacing:18.000000px;}
.ls38{letter-spacing:18.900000px;}
.ls37{letter-spacing:19.620000px;}
.ls27{letter-spacing:20.880000px;}
.ls18{letter-spacing:21.600000px;}
.ls6a{letter-spacing:22.320000px;}
.ls26{letter-spacing:23.040000px;}
.ls34{letter-spacing:23.220000px;}
.ls35{letter-spacing:23.922000px;}
.ls67{letter-spacing:25.200000px;}
.ls28{letter-spacing:29.520000px;}
.ls57{letter-spacing:30.417840px;}
.ls56{letter-spacing:31.680000px;}
.ls62{letter-spacing:33.120000px;}
.ls5d{letter-spacing:45.360000px;}
.ls20{letter-spacing:49.680000px;}
.ls25{letter-spacing:54.000000px;}
.ls6b{letter-spacing:54.720000px;}
.ls5b{letter-spacing:57.600000px;}
.ls5f{letter-spacing:64.080000px;}
.ls4c{letter-spacing:64.800000px;}
.ls5e{letter-spacing:78.480000px;}
.ls41{letter-spacing:100.817280px;}
.ls53{letter-spacing:112.320000px;}
.ls68{letter-spacing:138.960000px;}
.ls31{letter-spacing:441.540000px;}
.ls66{letter-spacing:750.960000px;}
.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;}
}
.ws0{word-spacing:-31.863120px;}
.wsb6{word-spacing:-18.936000px;}
.wsb9{word-spacing:-18.792000px;}
.wsbb{word-spacing:-18.720000px;}
.wsb4{word-spacing:-18.288000px;}
.wsb7{word-spacing:-18.216000px;}
.ws73{word-spacing:-18.144000px;}
.wsb0{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsb2{word-spacing:-17.928000px;}
.ws37{word-spacing:-17.856000px;}
.wsae{word-spacing:-17.784000px;}
.ws38{word-spacing:-17.712000px;}
.wsb1{word-spacing:-17.568000px;}
.wsbc{word-spacing:-17.424000px;}
.wsb3{word-spacing:-17.280000px;}
.wsbd{word-spacing:-17.208000px;}
.wsa{word-spacing:-16.891200px;}
.ws9{word-spacing:-16.692480px;}
.ws5{word-spacing:-16.560000px;}
.ws9c{word-spacing:-16.427520px;}
.wsb{word-spacing:-16.228800px;}
.ws1c{word-spacing:-16.162560px;}
.ws8{word-spacing:-16.096320px;}
.ws9e{word-spacing:-15.963840px;}
.ws7{word-spacing:-15.831360px;}
.wsb8{word-spacing:-15.298560px;}
.ws8b{word-spacing:-13.878000px;}
.ws87{word-spacing:-13.716000px;}
.ws8a{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.446000px;}
.ws88{word-spacing:-13.392000px;}
.ws86{word-spacing:-13.284000px;}
.ws8d{word-spacing:-13.122000px;}
.ws8e{word-spacing:-12.906000px;}
.ws8f{word-spacing:-12.636000px;}
.ws3{word-spacing:-12.445920px;}
.ws6{word-spacing:-10.440000px;}
.ws29{word-spacing:-4.438080px;}
.ws1f{word-spacing:-4.305600px;}
.ws68{word-spacing:-4.032000px;}
.ws85{word-spacing:-3.600000px;}
.ws80{word-spacing:-2.880000px;}
.ws2a{word-spacing:-2.848320px;}
.ws96{word-spacing:-2.592000px;}
.wsaf{word-spacing:-2.304000px;}
.ws20{word-spacing:-2.185920px;}
.ws48{word-spacing:-2.160000px;}
.ws47{word-spacing:-1.872000px;}
.ws27{word-spacing:-1.788480px;}
.ws72{word-spacing:-1.584000px;}
.ws2d{word-spacing:-1.457280px;}
.ws4e{word-spacing:-1.440000px;}
.wsf{word-spacing:-1.263600px;}
.ws5f{word-spacing:-1.152000px;}
.ws2f{word-spacing:-1.059840px;}
.ws18{word-spacing:-0.861120px;}
.ws16{word-spacing:-0.728640px;}
.ws3e{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.505440px;}
.ws46{word-spacing:-0.432000px;}
.ws90{word-spacing:-0.378000px;}
.ws17{word-spacing:-0.331200px;}
.ws13{word-spacing:-0.288000px;}
.ws3a{word-spacing:-0.264960px;}
.ws10{word-spacing:-0.252720px;}
.ws60{word-spacing:-0.144000px;}
.ws14{word-spacing:-0.132480px;}
.ws92{word-spacing:-0.108000px;}
.wsd{word-spacing:0.000000px;}
.ws99{word-spacing:0.072000px;}
.ws93{word-spacing:0.108000px;}
.wsb5{word-spacing:0.144000px;}
.ws70{word-spacing:0.216000px;}
.ws12{word-spacing:0.288000px;}
.ws1d{word-spacing:0.298800px;}
.ws19{word-spacing:0.331200px;}
.ws9d{word-spacing:0.397440px;}
.wsc{word-spacing:0.462000px;}
.ws91{word-spacing:0.594000px;}
.ws23{word-spacing:0.596160px;}
.ws7f{word-spacing:0.720000px;}
.ws15{word-spacing:0.728640px;}
.wsa0{word-spacing:0.936000px;}
.wsa3{word-spacing:1.008000px;}
.wse{word-spacing:1.015920px;}
.ws52{word-spacing:1.296000px;}
.ws2c{word-spacing:1.324800px;}
.ws53{word-spacing:1.440000px;}
.ws28{word-spacing:1.457280px;}
.wsa6{word-spacing:1.656000px;}
.ws51{word-spacing:1.728000px;}
.ws97{word-spacing:2.016000px;}
.ws25{word-spacing:2.053440px;}
.ws59{word-spacing:2.160000px;}
.ws26{word-spacing:2.185920px;}
.ws66{word-spacing:2.448000px;}
.ws4c{word-spacing:2.736000px;}
.ws21{word-spacing:2.782080px;}
.ws4d{word-spacing:2.880000px;}
.ws2b{word-spacing:2.914560px;}
.ws4b{word-spacing:3.168000px;}
.ws74{word-spacing:3.600000px;}
.ws9a{word-spacing:3.888000px;}
.ws39{word-spacing:4.173120px;}
.ws40{word-spacing:4.320000px;}
.ws41{word-spacing:4.608000px;}
.wsba{word-spacing:4.896000px;}
.ws1e{word-spacing:5.034240px;}
.ws6e{word-spacing:5.040000px;}
.ws67{word-spacing:5.328000px;}
.ws30{word-spacing:5.630400px;}
.ws5e{word-spacing:5.760000px;}
.ws1a{word-spacing:5.762880px;}
.ws9b{word-spacing:6.048000px;}
.ws6d{word-spacing:6.480000px;}
.ws7d{word-spacing:6.768000px;}
.ws49{word-spacing:7.200000px;}
.ws94{word-spacing:7.488000px;}
.ws71{word-spacing:7.776000px;}
.ws33{word-spacing:7.816320px;}
.wsa1{word-spacing:7.920000px;}
.ws1b{word-spacing:7.948800px;}
.ws64{word-spacing:8.208000px;}
.ws31{word-spacing:8.478720px;}
.ws34{word-spacing:8.611200px;}
.ws4a{word-spacing:8.640000px;}
.ws7e{word-spacing:8.928000px;}
.ws32{word-spacing:9.339840px;}
.ws62{word-spacing:9.360000px;}
.ws6a{word-spacing:9.648000px;}
.ws65{word-spacing:10.080000px;}
.ws3f{word-spacing:10.368000px;}
.ws22{word-spacing:10.797120px;}
.ws3d{word-spacing:10.800000px;}
.ws3c{word-spacing:11.088000px;}
.ws42{word-spacing:11.808000px;}
.ws3b{word-spacing:12.240000px;}
.ws58{word-spacing:12.528000px;}
.ws35{word-spacing:12.850560px;}
.ws7a{word-spacing:12.960000px;}
.ws81{word-spacing:13.248000px;}
.ws63{word-spacing:13.680000px;}
.ws7c{word-spacing:14.400000px;}
.wsac{word-spacing:14.688000px;}
.ws45{word-spacing:15.120000px;}
.ws44{word-spacing:15.408000px;}
.ws6f{word-spacing:15.696000px;}
.ws61{word-spacing:15.840000px;}
.ws69{word-spacing:16.128000px;}
.ws43{word-spacing:16.560000px;}
.ws54{word-spacing:16.848000px;}
.ws36{word-spacing:17.156160px;}
.ws5d{word-spacing:17.280000px;}
.ws76{word-spacing:17.568000px;}
.ws5c{word-spacing:18.000000px;}
.ws95{word-spacing:18.288000px;}
.wsad{word-spacing:18.720000px;}
.ws56{word-spacing:20.160000px;}
.ws77{word-spacing:20.880000px;}
.ws55{word-spacing:21.168000px;}
.ws5b{word-spacing:21.456000px;}
.ws5a{word-spacing:21.600000px;}
.wsa7{word-spacing:21.888000px;}
.ws4f{word-spacing:22.320000px;}
.ws50{word-spacing:22.608000px;}
.ws75{word-spacing:23.040000px;}
.ws57{word-spacing:24.768000px;}
.wsa8{word-spacing:25.200000px;}
.ws83{word-spacing:25.488000px;}
.wsa9{word-spacing:25.920000px;}
.ws7b{word-spacing:26.640000px;}
.wsaa{word-spacing:26.928000px;}
.ws9f{word-spacing:27.648000px;}
.wsa4{word-spacing:28.368000px;}
.ws84{word-spacing:28.800000px;}
.ws2e{word-spacing:28.814400px;}
.wsab{word-spacing:29.520000px;}
.ws8c{word-spacing:29.826000px;}
.wsc0{word-spacing:30.240000px;}
.wsc1{word-spacing:30.960000px;}
.ws82{word-spacing:32.400000px;}
.wsbf{word-spacing:33.120000px;}
.wsbe{word-spacing:33.840000px;}
.ws98{word-spacing:35.568000px;}
.wsa2{word-spacing:37.440000px;}
.wsa5{word-spacing:40.320000px;}
.ws89{word-spacing:43.506000px;}
.wsc2{word-spacing:45.648000px;}
.ws6b{word-spacing:49.680000px;}
.ws6c{word-spacing:49.968000px;}
.ws79{word-spacing:53.856000px;}
.ws78{word-spacing:54.000000px;}
.ws24{word-spacing:55.442880px;}
._8{margin-left:-54.522360px;}
._18{margin-left:-31.590432px;}
._d{margin-left:-19.836360px;}
._1d{margin-left:-17.266392px;}
._b{margin-left:-14.485968px;}
._a{margin-left:-6.966000px;}
._14{margin-left:-4.896000px;}
._6{margin-left:-3.528000px;}
._1{margin-left:-2.128032px;}
._0{margin-left:-1.093608px;}
._2{width:1.080000px;}
._9{width:2.080800px;}
._25{width:3.103200px;}
._4{width:4.176000px;}
._f{width:6.048000px;}
._3{width:7.228512px;}
._22{width:8.611488px;}
._2b{width:9.675144px;}
._13{width:11.016000px;}
._e{width:12.816000px;}
._1b{width:13.824000px;}
._16{width:14.832000px;}
._5{width:15.984000px;}
._c{width:19.728000px;}
._1a{width:20.808000px;}
._19{width:21.816000px;}
._2c{width:22.936032px;}
._28{width:24.336000px;}
._27{width:25.416000px;}
._24{width:30.600000px;}
._17{width:31.707216px;}
._23{width:33.768000px;}
._1f{width:44.464032px;}
._1e{width:45.504000px;}
._7{width:54.504000px;}
._1c{width:57.456000px;}
._21{width:63.864000px;}
._20{width:78.552000px;}
._15{width:112.104000px;}
._11{width:114.007392px;}
._12{width:135.262080px;}
._29{width:138.744000px;}
._2a{width:139.896000px;}
._10{width:207.000000px;}
._2d{width:336.456000px;}
._26{width:750.960000px;}
.fc7{color:rgb(55,96,146);}
.fc6{color:rgb(32,56,100);}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(31,73,125);}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:2.880000px;}
.yc8{bottom:3.060000px;}
.yde{bottom:3.600000px;}
.ye3{bottom:3.780000px;}
.ye0{bottom:5.400000px;}
.ye5{bottom:5.580000px;}
.yb4{bottom:10.800000px;}
.y3{bottom:11.160000px;}
.y109{bottom:12.420000px;}
.y107{bottom:12.600000px;}
.yfc{bottom:12.960000px;}
.y117{bottom:13.140000px;}
.y116{bottom:14.400000px;}
.ybe{bottom:18.360000px;}
.yc3{bottom:18.540000px;}
.ydd{bottom:22.680000px;}
.yb6{bottom:25.920000px;}
.yb1{bottom:26.460000px;}
.y105{bottom:31.500000px;}
.y103{bottom:31.680000px;}
.yc5{bottom:33.840000px;}
.yc0{bottom:34.020000px;}
.yb9{bottom:37.260000px;}
.yfe{bottom:46.080000px;}
.y2{bottom:54.000000px;}
.y24{bottom:63.540000px;}
.yd2{bottom:80.640000px;}
.y129{bottom:114.480000px;}
.y8d{bottom:123.660000px;}
.y22{bottom:129.785040px;}
.y4d{bottom:134.236080px;}
.yac{bottom:135.180000px;}
.y120{bottom:138.240000px;}
.y161{bottom:139.320000px;}
.y148{bottom:144.360000px;}
.y21{bottom:151.561440px;}
.y8c{bottom:154.620000px;}
.y4c{bottom:156.012480px;}
.yfa{bottom:156.060000px;}
.y160{bottom:163.080000px;}
.y147{bottom:165.060000px;}
.yab{bottom:166.140000px;}
.y11f{bottom:166.680000px;}
.y6d{bottom:172.080000px;}
.y20{bottom:173.520000px;}
.y4b{bottom:177.788880px;}
.y8b{bottom:185.760000px;}
.y128{bottom:186.840000px;}
.yf9{bottom:187.200000px;}
.y11e{bottom:195.120000px;}
.yaa{bottom:197.280000px;}
.y4a{bottom:199.747440px;}
.yd7{bottom:201.600000px;}
.y6c{bottom:203.040000px;}
.y146{bottom:206.460000px;}
.y127{bottom:207.540000px;}
.y8a{bottom:216.720000px;}
.yf8{bottom:218.160000px;}
.y49{bottom:221.523840px;}
.y11d{bottom:223.560000px;}
.yd1{bottom:225.000000px;}
.y145{bottom:227.160000px;}
.ya9{bottom:228.240000px;}
.y6b{bottom:234.180000px;}
.y48{bottom:243.300240px;}
.yd6{bottom:243.531000px;}
.y89{bottom:247.860000px;}
.y126{bottom:248.940000px;}
.yf7{bottom:249.300000px;}
.y11c{bottom:252.000000px;}
.yd5{bottom:259.015500px;}
.ya8{bottom:259.200000px;}
.y47{bottom:265.076640px;}
.y6a{bottom:265.140000px;}
.y144{bottom:268.560000px;}
.y125{bottom:269.640000px;}
.yd4{bottom:274.500000px;}
.y88{bottom:278.820000px;}
.yf6{bottom:280.260000px;}
.y11b{bottom:280.440000px;}
.y46{bottom:287.035200px;}
.y143{bottom:289.260000px;}
.yd3{bottom:290.160000px;}
.ya7{bottom:290.340000px;}
.y1f{bottom:293.940750px;}
.y69{bottom:296.280000px;}
.y45{bottom:308.811600px;}
.y11a{bottom:309.060000px;}
.y87{bottom:309.960000px;}
.y124{bottom:311.040000px;}
.yf5{bottom:311.400000px;}
.ya6{bottom:321.300000px;}
.y68{bottom:327.240000px;}
.yd0{bottom:330.120000px;}
.y44{bottom:330.588000px;}
.y142{bottom:330.660000px;}
.y123{bottom:331.740000px;}
.y1e{bottom:332.112960px;}
.y119{bottom:339.660000px;}
.y86{bottom:340.920000px;}
.yf4{bottom:342.360000px;}
.y1d{bottom:351.190080px;}
.y141{bottom:351.360000px;}
.y43{bottom:352.364400px;}
.ya5{bottom:352.440000px;}
.ycf{bottom:357.660000px;}
.y67{bottom:358.380000px;}
.y118{bottom:368.100000px;}
.y1c{bottom:370.085040px;}
.y85{bottom:372.060000px;}
.y15f{bottom:373.140000px;}
.ya4{bottom:383.400000px;}
.yce{bottom:385.200000px;}
.y1b{bottom:388.990800px;}
.y42{bottom:389.260050px;}
.y66{bottom:389.340000px;}
.y140{bottom:392.760000px;}
.y15e{bottom:393.840000px;}
.yf3{bottom:396.540000px;}
.y84{bottom:403.020000px;}
.y122{bottom:404.100000px;}
.yf2{bottom:412.740000px;}
.y13f{bottom:413.460000px;}
.ya3{bottom:414.540000px;}
.y65{bottom:420.300000px;}
.y121{bottom:424.800000px;}
.y115{bottom:427.320000px;}
.ycd{bottom:428.220000px;}
.y1a{bottom:432.543600px;}
.y83{bottom:434.160000px;}
.yf1{bottom:435.240000px;}
.ya2{bottom:445.500000px;}
.y64{bottom:451.440000px;}
.y19{bottom:454.320000px;}
.y41{bottom:454.589280px;}
.y13e{bottom:454.860000px;}
.ycc{bottom:455.760000px;}
.y15d{bottom:455.940000px;}
.yf0{bottom:457.740000px;}
.y82{bottom:465.120000px;}
.y114{bottom:472.680000px;}
.y13d{bottom:475.560000px;}
.y18{bottom:476.105040px;}
.y40{bottom:476.547840px;}
.ya1{bottom:476.640000px;}
.yef{bottom:480.960000px;}
.y63{bottom:482.400000px;}
.ycb{bottom:483.300000px;}
.y81{bottom:496.260000px;}
.y15c{bottom:497.340000px;}
.y17{bottom:498.063600px;}
.y3f{bottom:498.324240px;}
.yee{bottom:503.460000px;}
.y113{bottom:503.640000px;}
.y13c{bottom:506.520000px;}
.ya0{bottom:507.600000px;}
.yca{bottom:510.840000px;}
.y62{bottom:513.540000px;}
.y15b{bottom:518.040000px;}
.y3e{bottom:520.100640px;}
.y16{bottom:525.780000px;}
.yed{bottom:525.960000px;}
.y80{bottom:527.220000px;}
.y112{bottom:534.780000px;}
.y9f{bottom:538.740000px;}
.y15{bottom:541.620000px;}
.y3d{bottom:541.877040px;}
.y61{bottom:544.500000px;}
.y13b{bottom:547.920000px;}
.yc9{bottom:553.860000px;}
.y7f{bottom:558.360000px;}
.y15a{bottom:559.440000px;}
.y14{bottom:563.405040px;}
.y3c{bottom:563.835600px;}
.yec{bottom:564.660000px;}
.y111{bottom:565.740000px;}
.y13a{bottom:568.620000px;}
.y9e{bottom:569.700000px;}
.y60{bottom:575.640000px;}
.y159{bottom:580.140000px;}
.y13{bottom:585.181440px;}
.y3b{bottom:585.612000px;}
.yeb{bottom:587.160000px;}
.y7e{bottom:589.320000px;}
.yc7{bottom:596.880000px;}
.y9d{bottom:600.840000px;}
.y5f{bottom:606.600000px;}
.y3a{bottom:607.388400px;}
.yea{bottom:609.660000px;}
.y139{bottom:610.020000px;}
.y12{bottom:613.080000px;}
.y7d{bottom:620.460000px;}
.y158{bottom:621.540000px;}
.y110{bottom:627.840000px;}
.y11{bottom:628.920000px;}
.y39{bottom:629.164800px;}
.y138{bottom:630.720000px;}
.y9c{bottom:631.800000px;}
.ye9{bottom:632.880000px;}
.y5e{bottom:637.740000px;}
.yc4{bottom:640.080000px;}
.y157{bottom:642.240000px;}
.y10{bottom:650.703600px;}
.y38{bottom:650.941200px;}
.y7c{bottom:651.420000px;}
.ye8{bottom:655.380000px;}
.yc6{bottom:658.440000px;}
.y10f{bottom:658.980000px;}
.y9b{bottom:662.940000px;}
.y5d{bottom:668.700000px;}
.y137{bottom:672.120000px;}
.y37{bottom:672.899760px;}
.ye7{bottom:677.880000px;}
.yf{bottom:678.420000px;}
.y7b{bottom:682.380000px;}
.y10e{bottom:689.940000px;}
.y136{bottom:692.820000px;}
.y9a{bottom:693.900000px;}
.ye{bottom:694.260000px;}
.y36{bottom:694.676160px;}
.yc2{bottom:698.580000px;}
.y5c{bottom:699.840000px;}
.ye6{bottom:701.100000px;}
.y7a{bottom:713.520000px;}
.y156{bottom:714.600000px;}
.yd{bottom:716.223600px;}
.y35{bottom:716.452560px;}
.y10d{bottom:721.080000px;}
.ye4{bottom:723.600000px;}
.y99{bottom:725.040000px;}
.y5b{bottom:730.800000px;}
.y135{bottom:734.220000px;}
.y155{bottom:735.300000px;}
.y34{bottom:738.228960px;}
.ybf{bottom:741.600000px;}
.yc{bottom:743.940000px;}
.y79{bottom:744.480000px;}
.ye2{bottom:746.100000px;}
.y10c{bottom:752.040000px;}
.y134{bottom:754.920000px;}
.y98{bottom:756.000000px;}
.y33{bottom:760.005360px;}
.yc1{bottom:760.140000px;}
.y5a{bottom:761.940000px;}
.ye1{bottom:771.840000px;}
.y78{bottom:775.620000px;}
.y154{bottom:776.700000px;}
.y32{bottom:781.963950px;}
.y10b{bottom:783.180000px;}
.y97{bottom:787.140000px;}
.y59{bottom:792.900000px;}
.ydf{bottom:794.340000px;}
.y133{bottom:796.320000px;}
.y153{bottom:797.400000px;}
.ybd{bottom:800.280000px;}
.y77{bottom:806.580000px;}
.ydc{bottom:816.840000px;}
.y132{bottom:817.020000px;}
.y96{bottom:818.100000px;}
.y10a{bottom:821.160000px;}
.y58{bottom:824.040000px;}
.y31{bottom:825.516720px;}
.yb{bottom:829.800000px;}
.y76{bottom:837.720000px;}
.y152{bottom:838.800000px;}
.y108{bottom:838.980000px;}
.ybb{bottom:843.300000px;}
.y30{bottom:847.293120px;}
.y95{bottom:849.240000px;}
.y57{bottom:855.000000px;}
.y131{bottom:858.420000px;}
.y151{bottom:859.500000px;}
.ya{bottom:860.940000px;}
.ydb{bottom:862.741440px;}
.y106{bottom:866.880000px;}
.y75{bottom:868.680000px;}
.y2f{bottom:869.251680px;}
.yb8{bottom:870.840000px;}
.yda{bottom:872.280000px;}
.y130{bottom:879.120000px;}
.y94{bottom:880.200000px;}
.y56{bottom:886.140000px;}
.y2e{bottom:891.028080px;}
.yba{bottom:892.440000px;}
.y102{bottom:894.960000px;}
.y74{bottom:899.820000px;}
.y150{bottom:900.900000px;}
.y104{bottom:907.380000px;}
.yae{bottom:911.340000px;}
.y2d{bottom:912.804480px;}
.y9{bottom:915.840000px;}
.y55{bottom:917.100000px;}
.y12f{bottom:920.520000px;}
.y14f{bottom:921.600000px;}
.yd9{bottom:922.500000px;}
.y73{bottom:930.780000px;}
.yb5{bottom:932.580000px;}
.y2c{bottom:934.580880px;}
.y8{bottom:939.600000px;}
.y12e{bottom:941.220000px;}
.y93{bottom:942.300000px;}
.y101{bottom:942.660000px;}
.yb7{bottom:942.840000px;}
.yd8{bottom:946.440000px;}
.y54{bottom:948.240000px;}
.y2b{bottom:956.357280px;}
.yfd{bottom:961.560000px;}
.y72{bottom:961.920000px;}
.y14e{bottom:963.000000px;}
.y100{bottom:969.845040px;}
.yad{bottom:973.440000px;}
.y2a{bottom:978.315840px;}
.y53{bottom:979.200000px;}
.y12d{bottom:982.620000px;}
.yb3{bottom:982.980000px;}
.y14d{bottom:983.700000px;}
.y7{bottom:987.120000px;}
.yff{bottom:988.740000px;}
.y71{bottom:992.880000px;}
.y29{bottom:1000.092240px;}
.y12c{bottom:1003.320000px;}
.y92{bottom:1004.400000px;}
.y52{bottom:1010.340000px;}
.y6{bottom:1011.060000px;}
.yb0{bottom:1018.980000px;}
.y28{bottom:1021.868640px;}
.yfb{bottom:1023.840000px;}
.y70{bottom:1024.020000px;}
.y14c{bottom:1025.100000px;}
.yb2{bottom:1029.960000px;}
.y91{bottom:1035.540000px;}
.y27{bottom:1043.645040px;}
.y12b{bottom:1044.720000px;}
.y14b{bottom:1045.800000px;}
.y6f{bottom:1054.980000px;}
.y51{bottom:1064.348640px;}
.y12a{bottom:1065.420000px;}
.y26{bottom:1065.603600px;}
.y90{bottom:1066.500000px;}
.y5{bottom:1066.855500px;}
.yaf{bottom:1068.482850px;}
.y6e{bottom:1086.120000px;}
.y50{bottom:1086.307200px;}
.y14a{bottom:1087.200000px;}
.y25{bottom:1087.380000px;}
.y4{bottom:1094.760000px;}
.y8f{bottom:1097.640000px;}
.y149{bottom:1107.900000px;}
.y4f{bottom:1108.083600px;}
.y8e{bottom:1128.600000px;}
.y4e{bottom:1129.860000px;}
.y23{bottom:1163.160000px;}
.y1{bottom:1166.049000px;}
.h17{height:15.478500px;}
.h1d{height:15.660000px;}
.h26{height:18.900000px;}
.h23{height:22.498500px;}
.h21{height:22.500000px;}
.h13{height:23.401500px;}
.h22{height:25.020000px;}
.h3{height:25.380000px;}
.h29{height:27.898500px;}
.h28{height:28.080000px;}
.h2b{height:28.438500px;}
.h24{height:28.440000px;}
.h2a{height:28.620000px;}
.h18{height:30.960000px;}
.h1a{height:31.138500px;}
.h1c{height:31.140000px;}
.h20{height:37.980000px;}
.h15{height:38.520000px;}
.h11{height:39.060000px;}
.h4{height:40.618125px;}
.h9{height:41.250938px;}
.h7{height:42.086250px;}
.h1b{height:46.440000px;}
.h19{height:46.621500px;}
.h27{height:46.980000px;}
.h2{height:48.095156px;}
.h16{height:49.860000px;}
.h14{height:52.998047px;}
.h12{height:54.421875px;}
.h25{height:61.378500px;}
.h8{height:65.010937px;}
.hb{height:66.757500px;}
.hc{height:66.757620px;}
.ha{height:70.620863px;}
.hf{height:70.628906px;}
.hd{height:70.664062px;}
.h10{height:72.551100px;}
.h6{height:72.562500px;}
.he{height:74.704922px;}
.h5{height:84.898125px;}
.h1e{height:93.238500px;}
.h1f{height:104.183100px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:89.460000px;}
.wb{width:89.998500px;}
.wa{width:90.000000px;}
.we{width:92.700000px;}
.w10{width:101.520000px;}
.w17{width:102.960000px;}
.w15{width:106.200000px;}
.w11{width:108.720000px;}
.wf{width:112.320000px;}
.w5{width:116.998500px;}
.w8{width:127.260000px;}
.w7{width:127.620000px;}
.w13{width:131.760000px;}
.w6{width:137.881500px;}
.w9{width:201.960000px;}
.w16{width:254.520000px;}
.w4{width:380.160000px;}
.w3{width:419.580000px;}
.w2{width:419.761500px;}
.w18{width:464.580000px;}
.w14{width:465.300000px;}
.wd{width:636.480000px;}
.wc{width:651.961500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:6.120000px;}
.x27{left:8.100000px;}
.x3{left:10.800000px;}
.x25{left:14.760000px;}
.x22{left:16.020000px;}
.x4a{left:23.400000px;}
.x2b{left:25.200000px;}
.x4b{left:27.720000px;}
.x2d{left:29.340000px;}
.x3c{left:30.600000px;}
.x3d{left:32.580000px;}
.x3b{left:34.560000px;}
.x38{left:36.720000px;}
.x52{left:38.160000px;}
.x2c{left:40.140000px;}
.x1f{left:42.660000px;}
.x4c{left:43.920000px;}
.x48{left:46.440000px;}
.x49{left:50.040000px;}
.x47{left:52.020000px;}
.x28{left:55.620000px;}
.x2a{left:58.140000px;}
.x51{left:90.540000px;}
.x53{left:92.520000px;}
.x50{left:98.640000px;}
.xc{left:128.520000px;}
.x19{left:130.680000px;}
.xd{left:132.300000px;}
.x6{left:135.360000px;}
.xf{left:137.160000px;}
.x54{left:142.740000px;}
.x12{left:144.907920px;}
.x10{left:146.520000px;}
.x1{left:148.683000px;}
.x8{left:150.480000px;}
.x13{left:154.082160px;}
.xa{left:157.320000px;}
.x4{left:166.680000px;}
.x20{left:170.100000px;}
.x1d{left:180.727920px;}
.x4d{left:213.840000px;}
.x16{left:218.514960px;}
.x1a{left:234.714240px;}
.x17{left:254.880000px;}
.x3e{left:259.380000px;}
.x3f{left:267.480000px;}
.xe{left:270.900000px;}
.x5{left:272.885580px;}
.x18{left:282.237120px;}
.x1c{left:295.025100px;}
.x1b{left:303.852240px;}
.x4e{left:317.700000px;}
.x35{left:329.580000px;}
.x14{left:334.620000px;}
.x32{left:346.320000px;}
.x40{left:352.080000px;}
.x33{left:353.700000px;}
.x9{left:356.220000px;}
.x41{left:360.180000px;}
.x15{left:368.101440px;}
.x11{left:385.020000px;}
.xb{left:403.020000px;}
.x7{left:414.540000px;}
.x36{left:419.580000px;}
.x4f{left:423.900000px;}
.x2{left:458.100000px;}
.x42{left:464.400000px;}
.x43{left:472.500000px;}
.x37{left:509.580000px;}
.x21{left:516.600000px;}
.x30{left:522.720000px;}
.x23{left:529.020000px;}
.x44{left:565.920000px;}
.x2e{left:574.740000px;}
.x39{left:599.580000px;}
.x24{left:633.600000px;}
.x29{left:644.220000px;}
.x31{left:650.340000px;}
.x26{left:656.640000px;}
.x45{left:674.640000px;}
.x46{left:682.740000px;}
.x3a{left:689.580000px;}
.x34{left:701.959680px;}
.x1e{left:783.720000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.v5{vertical-align:33.267200pt;}
.ls47{letter-spacing:-0.832000pt;}
.ls3f{letter-spacing:-0.768000pt;}
.ls6d{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.647680pt;}
.ls51{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.529920pt;}
.ls3e{letter-spacing:-0.528000pt;}
.ls6c{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.412160pt;}
.ls3{letter-spacing:-0.410667pt;}
.ls50{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.353280pt;}
.ls3d{letter-spacing:-0.336000pt;}
.ls10{letter-spacing:-0.294400pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls43{letter-spacing:-0.117760pt;}
.ls5{letter-spacing:-0.106240pt;}
.ls3b{letter-spacing:-0.096000pt;}
.ls40{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.074880pt;}
.ls3c{letter-spacing:0.096000pt;}
.ls45{letter-spacing:0.110080pt;}
.lsc{letter-spacing:0.117760pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.159360pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.235520pt;}
.lsa{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.271360pt;}
.lse{letter-spacing:0.294400pt;}
.ls7{letter-spacing:0.299520pt;}
.ls58{letter-spacing:0.318720pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.343040pt;}
.ls48{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.588160pt;}
.ls44{letter-spacing:0.640000pt;}
.ls61{letter-spacing:0.704000pt;}
.ls60{letter-spacing:0.832000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.295360pt;}
.ls32{letter-spacing:1.440000pt;}
.ls19{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls1f{letter-spacing:3.200000pt;}
.ls2b{letter-spacing:3.360000pt;}
.ls52{letter-spacing:3.840000pt;}
.ls4b{letter-spacing:4.473600pt;}
.ls59{letter-spacing:4.480000pt;}
.ls36{letter-spacing:4.640000pt;}
.ls5a{letter-spacing:5.120000pt;}
.ls46{letter-spacing:5.126400pt;}
.ls2d{letter-spacing:5.280000pt;}
.ls4e{letter-spacing:5.760000pt;}
.ls2f{letter-spacing:5.904000pt;}
.ls30{letter-spacing:5.918400pt;}
.ls2c{letter-spacing:5.920000pt;}
.ls4d{letter-spacing:6.400000pt;}
.ls13{letter-spacing:6.947840pt;}
.ls21{letter-spacing:7.040000pt;}
.ls63{letter-spacing:7.680000pt;}
.ls69{letter-spacing:8.320000pt;}
.ls42{letter-spacing:8.960000pt;}
.ls23{letter-spacing:9.600000pt;}
.ls64{letter-spacing:10.240000pt;}
.ls54{letter-spacing:10.880000pt;}
.ls1d{letter-spacing:12.160000pt;}
.ls1c{letter-spacing:12.320000pt;}
.ls49{letter-spacing:12.800000pt;}
.ls33{letter-spacing:12.960000pt;}
.ls55{letter-spacing:13.440000pt;}
.ls4a{letter-spacing:14.080000pt;}
.ls65{letter-spacing:14.720000pt;}
.ls24{letter-spacing:15.360000pt;}
.ls5c{letter-spacing:16.000000pt;}
.ls38{letter-spacing:16.800000pt;}
.ls37{letter-spacing:17.440000pt;}
.ls27{letter-spacing:18.560000pt;}
.ls18{letter-spacing:19.200000pt;}
.ls6a{letter-spacing:19.840000pt;}
.ls26{letter-spacing:20.480000pt;}
.ls34{letter-spacing:20.640000pt;}
.ls35{letter-spacing:21.264000pt;}
.ls67{letter-spacing:22.400000pt;}
.ls28{letter-spacing:26.240000pt;}
.ls57{letter-spacing:27.038080pt;}
.ls56{letter-spacing:28.160000pt;}
.ls62{letter-spacing:29.440000pt;}
.ls5d{letter-spacing:40.320000pt;}
.ls20{letter-spacing:44.160000pt;}
.ls25{letter-spacing:48.000000pt;}
.ls6b{letter-spacing:48.640000pt;}
.ls5b{letter-spacing:51.200000pt;}
.ls5f{letter-spacing:56.960000pt;}
.ls4c{letter-spacing:57.600000pt;}
.ls5e{letter-spacing:69.760000pt;}
.ls41{letter-spacing:89.615360pt;}
.ls53{letter-spacing:99.840000pt;}
.ls68{letter-spacing:123.520000pt;}
.ls31{letter-spacing:392.480000pt;}
.ls66{letter-spacing:667.520000pt;}
.ws0{word-spacing:-28.322773pt;}
.wsb6{word-spacing:-16.832000pt;}
.wsb9{word-spacing:-16.704000pt;}
.wsbb{word-spacing:-16.640000pt;}
.wsb4{word-spacing:-16.256000pt;}
.wsb7{word-spacing:-16.192000pt;}
.ws73{word-spacing:-16.128000pt;}
.wsb0{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb2{word-spacing:-15.936000pt;}
.ws37{word-spacing:-15.872000pt;}
.wsae{word-spacing:-15.808000pt;}
.ws38{word-spacing:-15.744000pt;}
.wsb1{word-spacing:-15.616000pt;}
.wsbc{word-spacing:-15.488000pt;}
.wsb3{word-spacing:-15.360000pt;}
.wsbd{word-spacing:-15.296000pt;}
.wsa{word-spacing:-15.014400pt;}
.ws9{word-spacing:-14.837760pt;}
.ws5{word-spacing:-14.720000pt;}
.ws9c{word-spacing:-14.602240pt;}
.wsb{word-spacing:-14.425600pt;}
.ws1c{word-spacing:-14.366720pt;}
.ws8{word-spacing:-14.307840pt;}
.ws9e{word-spacing:-14.190080pt;}
.ws7{word-spacing:-14.072320pt;}
.wsb8{word-spacing:-13.598720pt;}
.ws8b{word-spacing:-12.336000pt;}
.ws87{word-spacing:-12.192000pt;}
.ws8a{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.952000pt;}
.ws88{word-spacing:-11.904000pt;}
.ws86{word-spacing:-11.808000pt;}
.ws8d{word-spacing:-11.664000pt;}
.ws8e{word-spacing:-11.472000pt;}
.ws8f{word-spacing:-11.232000pt;}
.ws3{word-spacing:-11.063040pt;}
.ws6{word-spacing:-9.280000pt;}
.ws29{word-spacing:-3.944960pt;}
.ws1f{word-spacing:-3.827200pt;}
.ws68{word-spacing:-3.584000pt;}
.ws85{word-spacing:-3.200000pt;}
.ws80{word-spacing:-2.560000pt;}
.ws2a{word-spacing:-2.531840pt;}
.ws96{word-spacing:-2.304000pt;}
.wsaf{word-spacing:-2.048000pt;}
.ws20{word-spacing:-1.943040pt;}
.ws48{word-spacing:-1.920000pt;}
.ws47{word-spacing:-1.664000pt;}
.ws27{word-spacing:-1.589760pt;}
.ws72{word-spacing:-1.408000pt;}
.ws2d{word-spacing:-1.295360pt;}
.ws4e{word-spacing:-1.280000pt;}
.wsf{word-spacing:-1.123200pt;}
.ws5f{word-spacing:-1.024000pt;}
.ws2f{word-spacing:-0.942080pt;}
.ws18{word-spacing:-0.765440pt;}
.ws16{word-spacing:-0.647680pt;}
.ws3e{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.449280pt;}
.ws46{word-spacing:-0.384000pt;}
.ws90{word-spacing:-0.336000pt;}
.ws17{word-spacing:-0.294400pt;}
.ws13{word-spacing:-0.256000pt;}
.ws3a{word-spacing:-0.235520pt;}
.ws10{word-spacing:-0.224640pt;}
.ws60{word-spacing:-0.128000pt;}
.ws14{word-spacing:-0.117760pt;}
.ws92{word-spacing:-0.096000pt;}
.wsd{word-spacing:0.000000pt;}
.ws99{word-spacing:0.064000pt;}
.ws93{word-spacing:0.096000pt;}
.wsb5{word-spacing:0.128000pt;}
.ws70{word-spacing:0.192000pt;}
.ws12{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.265600pt;}
.ws19{word-spacing:0.294400pt;}
.ws9d{word-spacing:0.353280pt;}
.wsc{word-spacing:0.410667pt;}
.ws91{word-spacing:0.528000pt;}
.ws23{word-spacing:0.529920pt;}
.ws7f{word-spacing:0.640000pt;}
.ws15{word-spacing:0.647680pt;}
.wsa0{word-spacing:0.832000pt;}
.wsa3{word-spacing:0.896000pt;}
.wse{word-spacing:0.903040pt;}
.ws52{word-spacing:1.152000pt;}
.ws2c{word-spacing:1.177600pt;}
.ws53{word-spacing:1.280000pt;}
.ws28{word-spacing:1.295360pt;}
.wsa6{word-spacing:1.472000pt;}
.ws51{word-spacing:1.536000pt;}
.ws97{word-spacing:1.792000pt;}
.ws25{word-spacing:1.825280pt;}
.ws59{word-spacing:1.920000pt;}
.ws26{word-spacing:1.943040pt;}
.ws66{word-spacing:2.176000pt;}
.ws4c{word-spacing:2.432000pt;}
.ws21{word-spacing:2.472960pt;}
.ws4d{word-spacing:2.560000pt;}
.ws2b{word-spacing:2.590720pt;}
.ws4b{word-spacing:2.816000pt;}
.ws74{word-spacing:3.200000pt;}
.ws9a{word-spacing:3.456000pt;}
.ws39{word-spacing:3.709440pt;}
.ws40{word-spacing:3.840000pt;}
.ws41{word-spacing:4.096000pt;}
.wsba{word-spacing:4.352000pt;}
.ws1e{word-spacing:4.474880pt;}
.ws6e{word-spacing:4.480000pt;}
.ws67{word-spacing:4.736000pt;}
.ws30{word-spacing:5.004800pt;}
.ws5e{word-spacing:5.120000pt;}
.ws1a{word-spacing:5.122560pt;}
.ws9b{word-spacing:5.376000pt;}
.ws6d{word-spacing:5.760000pt;}
.ws7d{word-spacing:6.016000pt;}
.ws49{word-spacing:6.400000pt;}
.ws94{word-spacing:6.656000pt;}
.ws71{word-spacing:6.912000pt;}
.ws33{word-spacing:6.947840pt;}
.wsa1{word-spacing:7.040000pt;}
.ws1b{word-spacing:7.065600pt;}
.ws64{word-spacing:7.296000pt;}
.ws31{word-spacing:7.536640pt;}
.ws34{word-spacing:7.654400pt;}
.ws4a{word-spacing:7.680000pt;}
.ws7e{word-spacing:7.936000pt;}
.ws32{word-spacing:8.302080pt;}
.ws62{word-spacing:8.320000pt;}
.ws6a{word-spacing:8.576000pt;}
.ws65{word-spacing:8.960000pt;}
.ws3f{word-spacing:9.216000pt;}
.ws22{word-spacing:9.597440pt;}
.ws3d{word-spacing:9.600000pt;}
.ws3c{word-spacing:9.856000pt;}
.ws42{word-spacing:10.496000pt;}
.ws3b{word-spacing:10.880000pt;}
.ws58{word-spacing:11.136000pt;}
.ws35{word-spacing:11.422720pt;}
.ws7a{word-spacing:11.520000pt;}
.ws81{word-spacing:11.776000pt;}
.ws63{word-spacing:12.160000pt;}
.ws7c{word-spacing:12.800000pt;}
.wsac{word-spacing:13.056000pt;}
.ws45{word-spacing:13.440000pt;}
.ws44{word-spacing:13.696000pt;}
.ws6f{word-spacing:13.952000pt;}
.ws61{word-spacing:14.080000pt;}
.ws69{word-spacing:14.336000pt;}
.ws43{word-spacing:14.720000pt;}
.ws54{word-spacing:14.976000pt;}
.ws36{word-spacing:15.249920pt;}
.ws5d{word-spacing:15.360000pt;}
.ws76{word-spacing:15.616000pt;}
.ws5c{word-spacing:16.000000pt;}
.ws95{word-spacing:16.256000pt;}
.wsad{word-spacing:16.640000pt;}
.ws56{word-spacing:17.920000pt;}
.ws77{word-spacing:18.560000pt;}
.ws55{word-spacing:18.816000pt;}
.ws5b{word-spacing:19.072000pt;}
.ws5a{word-spacing:19.200000pt;}
.wsa7{word-spacing:19.456000pt;}
.ws4f{word-spacing:19.840000pt;}
.ws50{word-spacing:20.096000pt;}
.ws75{word-spacing:20.480000pt;}
.ws57{word-spacing:22.016000pt;}
.wsa8{word-spacing:22.400000pt;}
.ws83{word-spacing:22.656000pt;}
.wsa9{word-spacing:23.040000pt;}
.ws7b{word-spacing:23.680000pt;}
.wsaa{word-spacing:23.936000pt;}
.ws9f{word-spacing:24.576000pt;}
.wsa4{word-spacing:25.216000pt;}
.ws84{word-spacing:25.600000pt;}
.ws2e{word-spacing:25.612800pt;}
.wsab{word-spacing:26.240000pt;}
.ws8c{word-spacing:26.512000pt;}
.wsc0{word-spacing:26.880000pt;}
.wsc1{word-spacing:27.520000pt;}
.ws82{word-spacing:28.800000pt;}
.wsbf{word-spacing:29.440000pt;}
.wsbe{word-spacing:30.080000pt;}
.ws98{word-spacing:31.616000pt;}
.wsa2{word-spacing:33.280000pt;}
.wsa5{word-spacing:35.840000pt;}
.ws89{word-spacing:38.672000pt;}
.wsc2{word-spacing:40.576000pt;}
.ws6b{word-spacing:44.160000pt;}
.ws6c{word-spacing:44.416000pt;}
.ws79{word-spacing:47.872000pt;}
.ws78{word-spacing:48.000000pt;}
.ws24{word-spacing:49.282560pt;}
._8{margin-left:-48.464320pt;}
._18{margin-left:-28.080384pt;}
._d{margin-left:-17.632320pt;}
._1d{margin-left:-15.347904pt;}
._b{margin-left:-12.876416pt;}
._a{margin-left:-6.192000pt;}
._14{margin-left:-4.352000pt;}
._6{margin-left:-3.136000pt;}
._1{margin-left:-1.891584pt;}
._0{margin-left:-0.972096pt;}
._2{width:0.960000pt;}
._9{width:1.849600pt;}
._25{width:2.758400pt;}
._4{width:3.712000pt;}
._f{width:5.376000pt;}
._3{width:6.425344pt;}
._22{width:7.654656pt;}
._2b{width:8.600128pt;}
._13{width:9.792000pt;}
._e{width:11.392000pt;}
._1b{width:12.288000pt;}
._16{width:13.184000pt;}
._5{width:14.208000pt;}
._c{width:17.536000pt;}
._1a{width:18.496000pt;}
._19{width:19.392000pt;}
._2c{width:20.387584pt;}
._28{width:21.632000pt;}
._27{width:22.592000pt;}
._24{width:27.200000pt;}
._17{width:28.184192pt;}
._23{width:30.016000pt;}
._1f{width:39.523584pt;}
._1e{width:40.448000pt;}
._7{width:48.448000pt;}
._1c{width:51.072000pt;}
._21{width:56.768000pt;}
._20{width:69.824000pt;}
._15{width:99.648000pt;}
._11{width:101.339904pt;}
._12{width:120.232960pt;}
._29{width:123.328000pt;}
._2a{width:124.352000pt;}
._10{width:184.000000pt;}
._2d{width:299.072000pt;}
._26{width:667.520000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:2.560000pt;}
.yc8{bottom:2.720000pt;}
.yde{bottom:3.200000pt;}
.ye3{bottom:3.360000pt;}
.ye0{bottom:4.800000pt;}
.ye5{bottom:4.960000pt;}
.yb4{bottom:9.600000pt;}
.y3{bottom:9.920000pt;}
.y109{bottom:11.040000pt;}
.y107{bottom:11.200000pt;}
.yfc{bottom:11.520000pt;}
.y117{bottom:11.680000pt;}
.y116{bottom:12.800000pt;}
.ybe{bottom:16.320000pt;}
.yc3{bottom:16.480000pt;}
.ydd{bottom:20.160000pt;}
.yb6{bottom:23.040000pt;}
.yb1{bottom:23.520000pt;}
.y105{bottom:28.000000pt;}
.y103{bottom:28.160000pt;}
.yc5{bottom:30.080000pt;}
.yc0{bottom:30.240000pt;}
.yb9{bottom:33.120000pt;}
.yfe{bottom:40.960000pt;}
.y2{bottom:48.000000pt;}
.y24{bottom:56.480000pt;}
.yd2{bottom:71.680000pt;}
.y129{bottom:101.760000pt;}
.y8d{bottom:109.920000pt;}
.y22{bottom:115.364480pt;}
.y4d{bottom:119.320960pt;}
.yac{bottom:120.160000pt;}
.y120{bottom:122.880000pt;}
.y161{bottom:123.840000pt;}
.y148{bottom:128.320000pt;}
.y21{bottom:134.721280pt;}
.y8c{bottom:137.440000pt;}
.y4c{bottom:138.677760pt;}
.yfa{bottom:138.720000pt;}
.y160{bottom:144.960000pt;}
.y147{bottom:146.720000pt;}
.yab{bottom:147.680000pt;}
.y11f{bottom:148.160000pt;}
.y6d{bottom:152.960000pt;}
.y20{bottom:154.240000pt;}
.y4b{bottom:158.034560pt;}
.y8b{bottom:165.120000pt;}
.y128{bottom:166.080000pt;}
.yf9{bottom:166.400000pt;}
.y11e{bottom:173.440000pt;}
.yaa{bottom:175.360000pt;}
.y4a{bottom:177.553280pt;}
.yd7{bottom:179.200000pt;}
.y6c{bottom:180.480000pt;}
.y146{bottom:183.520000pt;}
.y127{bottom:184.480000pt;}
.y8a{bottom:192.640000pt;}
.yf8{bottom:193.920000pt;}
.y49{bottom:196.910080pt;}
.y11d{bottom:198.720000pt;}
.yd1{bottom:200.000000pt;}
.y145{bottom:201.920000pt;}
.ya9{bottom:202.880000pt;}
.y6b{bottom:208.160000pt;}
.y48{bottom:216.266880pt;}
.yd6{bottom:216.472000pt;}
.y89{bottom:220.320000pt;}
.y126{bottom:221.280000pt;}
.yf7{bottom:221.600000pt;}
.y11c{bottom:224.000000pt;}
.yd5{bottom:230.236000pt;}
.ya8{bottom:230.400000pt;}
.y47{bottom:235.623680pt;}
.y6a{bottom:235.680000pt;}
.y144{bottom:238.720000pt;}
.y125{bottom:239.680000pt;}
.yd4{bottom:244.000000pt;}
.y88{bottom:247.840000pt;}
.yf6{bottom:249.120000pt;}
.y11b{bottom:249.280000pt;}
.y46{bottom:255.142400pt;}
.y143{bottom:257.120000pt;}
.yd3{bottom:257.920000pt;}
.ya7{bottom:258.080000pt;}
.y1f{bottom:261.280667pt;}
.y69{bottom:263.360000pt;}
.y45{bottom:274.499200pt;}
.y11a{bottom:274.720000pt;}
.y87{bottom:275.520000pt;}
.y124{bottom:276.480000pt;}
.yf5{bottom:276.800000pt;}
.ya6{bottom:285.600000pt;}
.y68{bottom:290.880000pt;}
.yd0{bottom:293.440000pt;}
.y44{bottom:293.856000pt;}
.y142{bottom:293.920000pt;}
.y123{bottom:294.880000pt;}
.y1e{bottom:295.211520pt;}
.y119{bottom:301.920000pt;}
.y86{bottom:303.040000pt;}
.yf4{bottom:304.320000pt;}
.y1d{bottom:312.168960pt;}
.y141{bottom:312.320000pt;}
.y43{bottom:313.212800pt;}
.ya5{bottom:313.280000pt;}
.ycf{bottom:317.920000pt;}
.y67{bottom:318.560000pt;}
.y118{bottom:327.200000pt;}
.y1c{bottom:328.964480pt;}
.y85{bottom:330.720000pt;}
.y15f{bottom:331.680000pt;}
.ya4{bottom:340.800000pt;}
.yce{bottom:342.400000pt;}
.y1b{bottom:345.769600pt;}
.y42{bottom:346.008933pt;}
.y66{bottom:346.080000pt;}
.y140{bottom:349.120000pt;}
.y15e{bottom:350.080000pt;}
.yf3{bottom:352.480000pt;}
.y84{bottom:358.240000pt;}
.y122{bottom:359.200000pt;}
.yf2{bottom:366.880000pt;}
.y13f{bottom:367.520000pt;}
.ya3{bottom:368.480000pt;}
.y65{bottom:373.600000pt;}
.y121{bottom:377.600000pt;}
.y115{bottom:379.840000pt;}
.ycd{bottom:380.640000pt;}
.y1a{bottom:384.483200pt;}
.y83{bottom:385.920000pt;}
.yf1{bottom:386.880000pt;}
.ya2{bottom:396.000000pt;}
.y64{bottom:401.280000pt;}
.y19{bottom:403.840000pt;}
.y41{bottom:404.079360pt;}
.y13e{bottom:404.320000pt;}
.ycc{bottom:405.120000pt;}
.y15d{bottom:405.280000pt;}
.yf0{bottom:406.880000pt;}
.y82{bottom:413.440000pt;}
.y114{bottom:420.160000pt;}
.y13d{bottom:422.720000pt;}
.y18{bottom:423.204480pt;}
.y40{bottom:423.598080pt;}
.ya1{bottom:423.680000pt;}
.yef{bottom:427.520000pt;}
.y63{bottom:428.800000pt;}
.ycb{bottom:429.600000pt;}
.y81{bottom:441.120000pt;}
.y15c{bottom:442.080000pt;}
.y17{bottom:442.723200pt;}
.y3f{bottom:442.954880pt;}
.yee{bottom:447.520000pt;}
.y113{bottom:447.680000pt;}
.y13c{bottom:450.240000pt;}
.ya0{bottom:451.200000pt;}
.yca{bottom:454.080000pt;}
.y62{bottom:456.480000pt;}
.y15b{bottom:460.480000pt;}
.y3e{bottom:462.311680pt;}
.y16{bottom:467.360000pt;}
.yed{bottom:467.520000pt;}
.y80{bottom:468.640000pt;}
.y112{bottom:475.360000pt;}
.y9f{bottom:478.880000pt;}
.y15{bottom:481.440000pt;}
.y3d{bottom:481.668480pt;}
.y61{bottom:484.000000pt;}
.y13b{bottom:487.040000pt;}
.yc9{bottom:492.320000pt;}
.y7f{bottom:496.320000pt;}
.y15a{bottom:497.280000pt;}
.y14{bottom:500.804480pt;}
.y3c{bottom:501.187200pt;}
.yec{bottom:501.920000pt;}
.y111{bottom:502.880000pt;}
.y13a{bottom:505.440000pt;}
.y9e{bottom:506.400000pt;}
.y60{bottom:511.680000pt;}
.y159{bottom:515.680000pt;}
.y13{bottom:520.161280pt;}
.y3b{bottom:520.544000pt;}
.yeb{bottom:521.920000pt;}
.y7e{bottom:523.840000pt;}
.yc7{bottom:530.560000pt;}
.y9d{bottom:534.080000pt;}
.y5f{bottom:539.200000pt;}
.y3a{bottom:539.900800pt;}
.yea{bottom:541.920000pt;}
.y139{bottom:542.240000pt;}
.y12{bottom:544.960000pt;}
.y7d{bottom:551.520000pt;}
.y158{bottom:552.480000pt;}
.y110{bottom:558.080000pt;}
.y11{bottom:559.040000pt;}
.y39{bottom:559.257600pt;}
.y138{bottom:560.640000pt;}
.y9c{bottom:561.600000pt;}
.ye9{bottom:562.560000pt;}
.y5e{bottom:566.880000pt;}
.yc4{bottom:568.960000pt;}
.y157{bottom:570.880000pt;}
.y10{bottom:578.403200pt;}
.y38{bottom:578.614400pt;}
.y7c{bottom:579.040000pt;}
.ye8{bottom:582.560000pt;}
.yc6{bottom:585.280000pt;}
.y10f{bottom:585.760000pt;}
.y9b{bottom:589.280000pt;}
.y5d{bottom:594.400000pt;}
.y137{bottom:597.440000pt;}
.y37{bottom:598.133120pt;}
.ye7{bottom:602.560000pt;}
.yf{bottom:603.040000pt;}
.y7b{bottom:606.560000pt;}
.y10e{bottom:613.280000pt;}
.y136{bottom:615.840000pt;}
.y9a{bottom:616.800000pt;}
.ye{bottom:617.120000pt;}
.y36{bottom:617.489920pt;}
.yc2{bottom:620.960000pt;}
.y5c{bottom:622.080000pt;}
.ye6{bottom:623.200000pt;}
.y7a{bottom:634.240000pt;}
.y156{bottom:635.200000pt;}
.yd{bottom:636.643200pt;}
.y35{bottom:636.846720pt;}
.y10d{bottom:640.960000pt;}
.ye4{bottom:643.200000pt;}
.y99{bottom:644.480000pt;}
.y5b{bottom:649.600000pt;}
.y135{bottom:652.640000pt;}
.y155{bottom:653.600000pt;}
.y34{bottom:656.203520pt;}
.ybf{bottom:659.200000pt;}
.yc{bottom:661.280000pt;}
.y79{bottom:661.760000pt;}
.ye2{bottom:663.200000pt;}
.y10c{bottom:668.480000pt;}
.y134{bottom:671.040000pt;}
.y98{bottom:672.000000pt;}
.y33{bottom:675.560320pt;}
.yc1{bottom:675.680000pt;}
.y5a{bottom:677.280000pt;}
.ye1{bottom:686.080000pt;}
.y78{bottom:689.440000pt;}
.y154{bottom:690.400000pt;}
.y32{bottom:695.079067pt;}
.y10b{bottom:696.160000pt;}
.y97{bottom:699.680000pt;}
.y59{bottom:704.800000pt;}
.ydf{bottom:706.080000pt;}
.y133{bottom:707.840000pt;}
.y153{bottom:708.800000pt;}
.ybd{bottom:711.360000pt;}
.y77{bottom:716.960000pt;}
.ydc{bottom:726.080000pt;}
.y132{bottom:726.240000pt;}
.y96{bottom:727.200000pt;}
.y10a{bottom:729.920000pt;}
.y58{bottom:732.480000pt;}
.y31{bottom:733.792640pt;}
.yb{bottom:737.600000pt;}
.y76{bottom:744.640000pt;}
.y152{bottom:745.600000pt;}
.y108{bottom:745.760000pt;}
.ybb{bottom:749.600000pt;}
.y30{bottom:753.149440pt;}
.y95{bottom:754.880000pt;}
.y57{bottom:760.000000pt;}
.y131{bottom:763.040000pt;}
.y151{bottom:764.000000pt;}
.ya{bottom:765.280000pt;}
.ydb{bottom:766.881280pt;}
.y106{bottom:770.560000pt;}
.y75{bottom:772.160000pt;}
.y2f{bottom:772.668160pt;}
.yb8{bottom:774.080000pt;}
.yda{bottom:775.360000pt;}
.y130{bottom:781.440000pt;}
.y94{bottom:782.400000pt;}
.y56{bottom:787.680000pt;}
.y2e{bottom:792.024960pt;}
.yba{bottom:793.280000pt;}
.y102{bottom:795.520000pt;}
.y74{bottom:799.840000pt;}
.y150{bottom:800.800000pt;}
.y104{bottom:806.560000pt;}
.yae{bottom:810.080000pt;}
.y2d{bottom:811.381760pt;}
.y9{bottom:814.080000pt;}
.y55{bottom:815.200000pt;}
.y12f{bottom:818.240000pt;}
.y14f{bottom:819.200000pt;}
.yd9{bottom:820.000000pt;}
.y73{bottom:827.360000pt;}
.yb5{bottom:828.960000pt;}
.y2c{bottom:830.738560pt;}
.y8{bottom:835.200000pt;}
.y12e{bottom:836.640000pt;}
.y93{bottom:837.600000pt;}
.y101{bottom:837.920000pt;}
.yb7{bottom:838.080000pt;}
.yd8{bottom:841.280000pt;}
.y54{bottom:842.880000pt;}
.y2b{bottom:850.095360pt;}
.yfd{bottom:854.720000pt;}
.y72{bottom:855.040000pt;}
.y14e{bottom:856.000000pt;}
.y100{bottom:862.084480pt;}
.yad{bottom:865.280000pt;}
.y2a{bottom:869.614080pt;}
.y53{bottom:870.400000pt;}
.y12d{bottom:873.440000pt;}
.yb3{bottom:873.760000pt;}
.y14d{bottom:874.400000pt;}
.y7{bottom:877.440000pt;}
.yff{bottom:878.880000pt;}
.y71{bottom:882.560000pt;}
.y29{bottom:888.970880pt;}
.y12c{bottom:891.840000pt;}
.y92{bottom:892.800000pt;}
.y52{bottom:898.080000pt;}
.y6{bottom:898.720000pt;}
.yb0{bottom:905.760000pt;}
.y28{bottom:908.327680pt;}
.yfb{bottom:910.080000pt;}
.y70{bottom:910.240000pt;}
.y14c{bottom:911.200000pt;}
.yb2{bottom:915.520000pt;}
.y91{bottom:920.480000pt;}
.y27{bottom:927.684480pt;}
.y12b{bottom:928.640000pt;}
.y14b{bottom:929.600000pt;}
.y6f{bottom:937.760000pt;}
.y51{bottom:946.087680pt;}
.y12a{bottom:947.040000pt;}
.y26{bottom:947.203200pt;}
.y90{bottom:948.000000pt;}
.y5{bottom:948.316000pt;}
.yaf{bottom:949.762533pt;}
.y6e{bottom:965.440000pt;}
.y50{bottom:965.606400pt;}
.y14a{bottom:966.400000pt;}
.y25{bottom:966.560000pt;}
.y4{bottom:973.120000pt;}
.y8f{bottom:975.680000pt;}
.y149{bottom:984.800000pt;}
.y4f{bottom:984.963200pt;}
.y8e{bottom:1003.200000pt;}
.y4e{bottom:1004.320000pt;}
.y23{bottom:1033.920000pt;}
.y1{bottom:1036.488000pt;}
.h17{height:13.758667pt;}
.h1d{height:13.920000pt;}
.h26{height:16.800000pt;}
.h23{height:19.998667pt;}
.h21{height:20.000000pt;}
.h13{height:20.801333pt;}
.h22{height:22.240000pt;}
.h3{height:22.560000pt;}
.h29{height:24.798667pt;}
.h28{height:24.960000pt;}
.h2b{height:25.278667pt;}
.h24{height:25.280000pt;}
.h2a{height:25.440000pt;}
.h18{height:27.520000pt;}
.h1a{height:27.678667pt;}
.h1c{height:27.680000pt;}
.h20{height:33.760000pt;}
.h15{height:34.240000pt;}
.h11{height:34.720000pt;}
.h4{height:36.105000pt;}
.h9{height:36.667500pt;}
.h7{height:37.410000pt;}
.h1b{height:41.280000pt;}
.h19{height:41.441333pt;}
.h27{height:41.760000pt;}
.h2{height:42.751250pt;}
.h16{height:44.320000pt;}
.h14{height:47.109375pt;}
.h12{height:48.375000pt;}
.h25{height:54.558667pt;}
.h8{height:57.787500pt;}
.hb{height:59.340000pt;}
.hc{height:59.340107pt;}
.ha{height:62.774100pt;}
.hf{height:62.781250pt;}
.hd{height:62.812500pt;}
.h10{height:64.489867pt;}
.h6{height:64.500000pt;}
.he{height:66.404375pt;}
.h5{height:75.465000pt;}
.h1e{height:82.878667pt;}
.h1f{height:92.607200pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:79.520000pt;}
.wb{width:79.998667pt;}
.wa{width:80.000000pt;}
.we{width:82.400000pt;}
.w10{width:90.240000pt;}
.w17{width:91.520000pt;}
.w15{width:94.400000pt;}
.w11{width:96.640000pt;}
.wf{width:99.840000pt;}
.w5{width:103.998667pt;}
.w8{width:113.120000pt;}
.w7{width:113.440000pt;}
.w13{width:117.120000pt;}
.w6{width:122.561333pt;}
.w9{width:179.520000pt;}
.w16{width:226.240000pt;}
.w4{width:337.920000pt;}
.w3{width:372.960000pt;}
.w2{width:373.121333pt;}
.w18{width:412.960000pt;}
.w14{width:413.600000pt;}
.wd{width:565.760000pt;}
.wc{width:579.521333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:5.440000pt;}
.x27{left:7.200000pt;}
.x3{left:9.600000pt;}
.x25{left:13.120000pt;}
.x22{left:14.240000pt;}
.x4a{left:20.800000pt;}
.x2b{left:22.400000pt;}
.x4b{left:24.640000pt;}
.x2d{left:26.080000pt;}
.x3c{left:27.200000pt;}
.x3d{left:28.960000pt;}
.x3b{left:30.720000pt;}
.x38{left:32.640000pt;}
.x52{left:33.920000pt;}
.x2c{left:35.680000pt;}
.x1f{left:37.920000pt;}
.x4c{left:39.040000pt;}
.x48{left:41.280000pt;}
.x49{left:44.480000pt;}
.x47{left:46.240000pt;}
.x28{left:49.440000pt;}
.x2a{left:51.680000pt;}
.x51{left:80.480000pt;}
.x53{left:82.240000pt;}
.x50{left:87.680000pt;}
.xc{left:114.240000pt;}
.x19{left:116.160000pt;}
.xd{left:117.600000pt;}
.x6{left:120.320000pt;}
.xf{left:121.920000pt;}
.x54{left:126.880000pt;}
.x12{left:128.807040pt;}
.x10{left:130.240000pt;}
.x1{left:132.162667pt;}
.x8{left:133.760000pt;}
.x13{left:136.961920pt;}
.xa{left:139.840000pt;}
.x4{left:148.160000pt;}
.x20{left:151.200000pt;}
.x1d{left:160.647040pt;}
.x4d{left:190.080000pt;}
.x16{left:194.235520pt;}
.x1a{left:208.634880pt;}
.x17{left:226.560000pt;}
.x3e{left:230.560000pt;}
.x3f{left:237.760000pt;}
.xe{left:240.800000pt;}
.x5{left:242.564960pt;}
.x18{left:250.877440pt;}
.x1c{left:262.244533pt;}
.x1b{left:270.090880pt;}
.x4e{left:282.400000pt;}
.x35{left:292.960000pt;}
.x14{left:297.440000pt;}
.x32{left:307.840000pt;}
.x40{left:312.960000pt;}
.x33{left:314.400000pt;}
.x9{left:316.640000pt;}
.x41{left:320.160000pt;}
.x15{left:327.201280pt;}
.x11{left:342.240000pt;}
.xb{left:358.240000pt;}
.x7{left:368.480000pt;}
.x36{left:372.960000pt;}
.x4f{left:376.800000pt;}
.x2{left:407.200000pt;}
.x42{left:412.800000pt;}
.x43{left:420.000000pt;}
.x37{left:452.960000pt;}
.x21{left:459.200000pt;}
.x30{left:464.640000pt;}
.x23{left:470.240000pt;}
.x44{left:503.040000pt;}
.x2e{left:510.880000pt;}
.x39{left:532.960000pt;}
.x24{left:563.200000pt;}
.x29{left:572.640000pt;}
.x31{left:578.080000pt;}
.x26{left:583.680000pt;}
.x45{left:599.680000pt;}
.x46{left:606.880000pt;}
.x3a{left:612.960000pt;}
.x34{left:623.964160pt;}
.x1e{left:696.640000pt;}
}




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