
    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_fb326e035580d5e3cbf125b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_02ce2599ee26f08abaf415bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_8c3bc3f7479a798be2c11ddb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8900f8eb6ef6ecd0da5d187f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_800c774e3d5d02b23343e903.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_46e418fb9e7aecfaf12674b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_929a46f18b0d0d65e083f2c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682129;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_65386fb628268262bcb1e360.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d13d3993898efe18199aca2.woff2')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_6f11fc220437cce53a19cb5b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7d41cb2afbe86055141ee16e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b12a551c4ab3b800278b7e4b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_15d20fb079ed7402124f9695.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c7c729ee88cd810d287246ac.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7d41cb2afbe86055141ee16e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7d41cb2afbe86055141ee16e.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_043463145cae6e5a2a5b139c.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_fc60cefb3de8cd4e46606452.woff2')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_7d41cb2afbe86055141ee16e.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_7d41cb2afbe86055141ee16e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_043463145cae6e5a2a5b139c.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_f33e51d965f9f80db4875e06.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_7d41cb2afbe86055141ee16e.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_05c330aafd690f043c9db43d.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_7d41cb2afbe86055141ee16e.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_fa36f17baec1dbfbad3241c4.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_7d41cb2afbe86055141ee16e.woff2')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_15c948bf8bafac45d2f20b1d.woff2')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_7d41cb2afbe86055141ee16e.woff2')format("woff");}.ff1d{font-family:ff1d;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;}
.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);}
.v4{vertical-align:-20.880600px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v3{vertical-align:21.156720px;}
.v1{vertical-align:27.360000px;}
.ls63{letter-spacing:-1.374480px;}
.ls68{letter-spacing:-1.254960px;}
.ls3f{letter-spacing:-1.135440px;}
.ls34{letter-spacing:-1.080000px;}
.ls43{letter-spacing:-1.075680px;}
.ls6d{letter-spacing:-1.061280px;}
.ls37{letter-spacing:-0.972000px;}
.ls5d{letter-spacing:-0.967680px;}
.ls28{letter-spacing:-0.964800px;}
.ls55{letter-spacing:-0.916560px;}
.ls35{letter-spacing:-0.810000px;}
.ls5f{letter-spacing:-0.771840px;}
.ls5a{letter-spacing:-0.725760px;}
.ls38{letter-spacing:-0.702000px;}
.ls40{letter-spacing:-0.657360px;}
.ls57{letter-spacing:-0.597600px;}
.ls33{letter-spacing:-0.594000px;}
.ls3b{letter-spacing:-0.537840px;}
.ls26{letter-spacing:-0.530640px;}
.ls42{letter-spacing:-0.478080px;}
.ls59{letter-spacing:-0.453600px;}
.ls58{letter-spacing:-0.434160px;}
.ls39{letter-spacing:-0.418320px;}
.ls32{letter-spacing:-0.378000px;}
.ls3a{letter-spacing:-0.358560px;}
.ls27{letter-spacing:-0.337680px;}
.ls31{letter-spacing:-0.324000px;}
.ls2d{letter-spacing:-0.306720px;}
.ls46{letter-spacing:-0.298800px;}
.ls30{letter-spacing:-0.270000px;}
.ls64{letter-spacing:-0.241200px;}
.ls41{letter-spacing:-0.239040px;}
.ls2f{letter-spacing:-0.216000px;}
.ls6c{letter-spacing:-0.192960px;}
.ls3d{letter-spacing:-0.179280px;}
.ls36{letter-spacing:-0.108000px;}
.ls45{letter-spacing:-0.059760px;}
.ls25{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.108000px;}
.ls3e{letter-spacing:0.119520px;}
.ls29{letter-spacing:0.144720px;}
.lsd{letter-spacing:0.162000px;}
.ls50{letter-spacing:0.162720px;}
.ls20{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.180000px;}
.ls47{letter-spacing:0.180600px;}
.ls1{letter-spacing:0.192960px;}
.ls5e{letter-spacing:0.193536px;}
.ls2e{letter-spacing:0.204480px;}
.ls66{letter-spacing:0.206400px;}
.ls62{letter-spacing:0.207120px;}
.ls17{letter-spacing:0.239040px;}
.ls2b{letter-spacing:0.241200px;}
.ls2a{letter-spacing:0.289440px;}
.ls3c{letter-spacing:0.298800px;}
.ls2c{letter-spacing:0.306720px;}
.ls6{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.337680px;}
.ls4c{letter-spacing:0.349920px;}
.ls2{letter-spacing:0.357840px;}
.ls22{letter-spacing:0.358560px;}
.ls54{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.361800px;}
.ls5b{letter-spacing:0.362880px;}
.ls8{letter-spacing:0.378000px;}
.ls69{letter-spacing:0.385920px;}
.ls49{letter-spacing:0.394320px;}
.ls1f{letter-spacing:0.394920px;}
.ls44{letter-spacing:0.597600px;}
.ls56{letter-spacing:0.836640px;}
.lsc{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.896400px;}
.ls5{letter-spacing:0.918000px;}
.ls11{letter-spacing:1.062720px;}
.ls48{letter-spacing:1.063320px;}
.ls23{letter-spacing:1.075680px;}
.lsb{letter-spacing:1.566000px;}
.ls14{letter-spacing:1.613520px;}
.ls4{letter-spacing:1.620000px;}
.lse{letter-spacing:2.322000px;}
.ls15{letter-spacing:2.330640px;}
.ls1b{letter-spacing:3.047760px;}
.ls1d{letter-spacing:3.764880px;}
.ls65{letter-spacing:3.944160px;}
.ls53{letter-spacing:4.482000px;}
.ls1c{letter-spacing:5.199120px;}
.ls52{letter-spacing:5.916240px;}
.ls16{letter-spacing:6.633360px;}
.ls3{letter-spacing:6.642000px;}
.ls4f{letter-spacing:6.812640px;}
.ls61{letter-spacing:7.350480px;}
.ls4e{letter-spacing:8.127360px;}
.lsf{letter-spacing:8.802000px;}
.ls21{letter-spacing:8.844480px;}
.ls10{letter-spacing:8.856000px;}
.ls4d{letter-spacing:9.023760px;}
.ls60{letter-spacing:9.561600px;}
.ls24{letter-spacing:10.278720px;}
.ls9{letter-spacing:10.962000px;}
.ls1a{letter-spacing:10.995840px;}
.ls18{letter-spacing:11.712960px;}
.lsa{letter-spacing:11.718000px;}
.ls19{letter-spacing:11.832480px;}
.ls67{letter-spacing:58.611600px;}
.ls51{letter-spacing:64.002960px;}
.ls4b{letter-spacing:468.892800px;}
.ls6a{letter-spacing:505.024560px;}
.ls12{letter-spacing:529.482240px;}
.ls4a{letter-spacing:553.264560px;}
.ls5c{letter-spacing:849.368880px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws98{word-spacing:-59.760000px;}
.ws8{word-spacing:-25.253280px;}
.wsd6{word-spacing:-16.015680px;}
.ws18{word-spacing:-15.298560px;}
.ws1d{word-spacing:-15.238800px;}
.wsc3{word-spacing:-15.179040px;}
.ws3{word-spacing:-15.174000px;}
.ws22{word-spacing:-15.119280px;}
.ws1c{word-spacing:-15.059520px;}
.ws1{word-spacing:-15.012000px;}
.ws19{word-spacing:-14.940000px;}
.ws23{word-spacing:-14.880240px;}
.ws1b{word-spacing:-14.760720px;}
.ws97{word-spacing:-14.700960px;}
.wsc4{word-spacing:-14.641200px;}
.ws1a{word-spacing:-14.581440px;}
.ws21{word-spacing:-14.521680px;}
.wsb2{word-spacing:-14.461920px;}
.ws99{word-spacing:-14.342400px;}
.ws1f{word-spacing:-14.282640px;}
.wsc{word-spacing:-13.878000px;}
.wsb3{word-spacing:-13.864320px;}
.wsb{word-spacing:-13.824000px;}
.ws1e{word-spacing:-13.804560px;}
.wsd7{word-spacing:-13.685040px;}
.ws14{word-spacing:-13.608000px;}
.wsc2{word-spacing:-13.565520px;}
.wse{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.284000px;}
.wsf{word-spacing:-13.176000px;}
.ws15{word-spacing:-13.122000px;}
.ws9{word-spacing:-12.984480px;}
.ws10{word-spacing:-12.906000px;}
.ws13{word-spacing:-12.528000px;}
.wsd8{word-spacing:-12.445920px;}
.ws11{word-spacing:-12.420000px;}
.ws16{word-spacing:-12.349440px;}
.wsd9{word-spacing:-12.301200px;}
.ws6{word-spacing:-12.204720px;}
.ws4{word-spacing:-12.060000px;}
.ws2{word-spacing:-12.000000px;}
.wse1{word-spacing:-11.867040px;}
.ws5{word-spacing:-11.722320px;}
.ws7{word-spacing:-11.529360px;}
.ws20{word-spacing:-9.720000px;}
.wsa{word-spacing:-7.560000px;}
.ws9a{word-spacing:-7.106400px;}
.wsd2{word-spacing:-3.585600px;}
.wsd3{word-spacing:-3.406320px;}
.wsda{word-spacing:-3.346560px;}
.wsd4{word-spacing:-3.047760px;}
.ws96{word-spacing:-2.689200px;}
.wsa7{word-spacing:-2.270880px;}
.wsae{word-spacing:-2.031840px;}
.ws31{word-spacing:-1.998000px;}
.ws6b{word-spacing:-1.972080px;}
.wsa6{word-spacing:-1.912320px;}
.ws6d{word-spacing:-1.852560px;}
.ws43{word-spacing:-1.566000px;}
.wsad{word-spacing:-1.374480px;}
.wsaf{word-spacing:-1.314720px;}
.ws7b{word-spacing:-1.254960px;}
.ws30{word-spacing:-1.242000px;}
.ws6a{word-spacing:-1.195200px;}
.wsc7{word-spacing:-1.135440px;}
.ws9f{word-spacing:-1.088640px;}
.wscc{word-spacing:-1.015920px;}
.ws4a{word-spacing:-0.972000px;}
.wsac{word-spacing:-0.956160px;}
.wsab{word-spacing:-0.896400px;}
.ws59{word-spacing:-0.868320px;}
.ws40{word-spacing:-0.864000px;}
.ws8e{word-spacing:-0.836640px;}
.wsc1{word-spacing:-0.820080px;}
.wsb5{word-spacing:-0.774144px;}
.wsa5{word-spacing:-0.771840px;}
.wscb{word-spacing:-0.717120px;}
.ws76{word-spacing:-0.657360px;}
.ws86{word-spacing:-0.597600px;}
.ws42{word-spacing:-0.540000px;}
.ws75{word-spacing:-0.537840px;}
.ws58{word-spacing:-0.530640px;}
.ws78{word-spacing:-0.478080px;}
.ws8f{word-spacing:-0.418320px;}
.wse4{word-spacing:-0.385920px;}
.ws44{word-spacing:-0.378000px;}
.wsbf{word-spacing:-0.358560px;}
.ws39{word-spacing:-0.324000px;}
.ws2c{word-spacing:-0.306720px;}
.ws63{word-spacing:-0.298800px;}
.ws5b{word-spacing:-0.239040px;}
.ws4d{word-spacing:-0.216000px;}
.ws5a{word-spacing:-0.192960px;}
.ws6c{word-spacing:-0.179280px;}
.ws25{word-spacing:-0.162000px;}
.ws28{word-spacing:-0.144720px;}
.ws81{word-spacing:-0.119520px;}
.ws0{word-spacing:-0.099000px;}
.ws29{word-spacing:-0.096480px;}
.wsc6{word-spacing:-0.059760px;}
.ws17{word-spacing:-0.048240px;}
.ws24{word-spacing:0.000000px;}
.wsa2{word-spacing:0.059760px;}
.ws4c{word-spacing:0.108000px;}
.ws5c{word-spacing:0.119520px;}
.ws6f{word-spacing:0.179280px;}
.ws3f{word-spacing:0.216000px;}
.wsa0{word-spacing:0.239040px;}
.ws3a{word-spacing:0.270000px;}
.wse2{word-spacing:0.289440px;}
.ws2d{word-spacing:0.306720px;}
.ws4e{word-spacing:0.324000px;}
.wsb6{word-spacing:0.332640px;}
.ws66{word-spacing:0.358560px;}
.ws41{word-spacing:0.378000px;}
.wsd0{word-spacing:0.385920px;}
.ws94{word-spacing:0.418320px;}
.ws2a{word-spacing:0.434160px;}
.ws77{word-spacing:0.478080px;}
.ws26{word-spacing:0.482400px;}
.wse0{word-spacing:0.530640px;}
.ws62{word-spacing:0.537840px;}
.wsb0{word-spacing:0.578880px;}
.ws3d{word-spacing:0.594000px;}
.ws93{word-spacing:0.597600px;}
.ws2e{word-spacing:0.622080px;}
.ws2b{word-spacing:0.648000px;}
.wsb8{word-spacing:0.657360px;}
.ws2f{word-spacing:0.675360px;}
.ws4f{word-spacing:0.702000px;}
.ws7f{word-spacing:0.717120px;}
.wsb1{word-spacing:0.725760px;}
.wsc0{word-spacing:0.771840px;}
.wsdd{word-spacing:0.776880px;}
.ws7c{word-spacing:0.836640px;}
.ws3e{word-spacing:0.864000px;}
.wsa4{word-spacing:0.916560px;}
.ws3b{word-spacing:0.918000px;}
.wsb4{word-spacing:0.967680px;}
.ws4b{word-spacing:0.972000px;}
.wsd1{word-spacing:1.058400px;}
.wse3{word-spacing:1.061280px;}
.ws80{word-spacing:1.075680px;}
.ws3c{word-spacing:1.080000px;}
.ws27{word-spacing:1.109520px;}
.wsc5{word-spacing:1.135440px;}
.ws48{word-spacing:1.242000px;}
.ws84{word-spacing:1.254960px;}
.ws9e{word-spacing:1.374480px;}
.ws60{word-spacing:1.434240px;}
.wsde{word-spacing:1.494000px;}
.ws5d{word-spacing:1.553760px;}
.ws37{word-spacing:1.566000px;}
.ws85{word-spacing:1.673280px;}
.ws38{word-spacing:1.782000px;}
.ws51{word-spacing:1.944000px;}
.ws5e{word-spacing:2.151360px;}
.wsbe{word-spacing:2.211120px;}
.ws61{word-spacing:2.270880px;}
.ws50{word-spacing:2.484000px;}
.ws72{word-spacing:2.569680px;}
.ws67{word-spacing:2.629440px;}
.ws5f{word-spacing:2.689200px;}
.ws73{word-spacing:2.988000px;}
.ws49{word-spacing:3.078000px;}
.ws74{word-spacing:3.406320px;}
.wsdf{word-spacing:3.585600px;}
.wsd5{word-spacing:3.645360px;}
.ws7d{word-spacing:3.705120px;}
.ws7e{word-spacing:3.764880px;}
.ws90{word-spacing:3.824640px;}
.ws9c{word-spacing:4.063680px;}
.wsdc{word-spacing:4.123440px;}
.ws9d{word-spacing:4.422240px;}
.ws32{word-spacing:4.428000px;}
.wsbc{word-spacing:4.541760px;}
.ws33{word-spacing:4.644000px;}
.wsdb{word-spacing:4.661280px;}
.wsba{word-spacing:4.780800px;}
.wsbd{word-spacing:5.079600px;}
.ws79{word-spacing:5.139360px;}
.wsbb{word-spacing:5.258880px;}
.wsb7{word-spacing:5.497920px;}
.ws35{word-spacing:5.562000px;}
.wsa9{word-spacing:5.736960px;}
.ws95{word-spacing:5.856480px;}
.ws7a{word-spacing:5.976000px;}
.ws36{word-spacing:6.156000px;}
.ws87{word-spacing:6.454080px;}
.ws69{word-spacing:6.573600px;}
.ws34{word-spacing:6.588000px;}
.wsaa{word-spacing:6.633360px;}
.wsb9{word-spacing:6.693120px;}
.ws68{word-spacing:6.932160px;}
.wscd{word-spacing:6.991920px;}
.wsa3{word-spacing:7.230960px;}
.wsce{word-spacing:7.290720px;}
.ws56{word-spacing:7.344000px;}
.ws57{word-spacing:7.452000px;}
.wscf{word-spacing:7.649280px;}
.wsc9{word-spacing:7.768800px;}
.wsca{word-spacing:8.007840px;}
.wsa1{word-spacing:8.067600px;}
.ws8a{word-spacing:8.187120px;}
.ws8b{word-spacing:8.665200px;}
.ws8c{word-spacing:8.724960px;}
.ws55{word-spacing:8.748000px;}
.ws88{word-spacing:8.784720px;}
.ws54{word-spacing:8.802000px;}
.ws52{word-spacing:8.856000px;}
.ws53{word-spacing:8.964000px;}
.wsa8{word-spacing:9.143280px;}
.ws89{word-spacing:9.501840px;}
.wsc8{word-spacing:9.561600px;}
.ws91{word-spacing:10.039680px;}
.ws45{word-spacing:10.206000px;}
.ws92{word-spacing:10.218960px;}
.ws46{word-spacing:10.908000px;}
.ws70{word-spacing:10.936080px;}
.ws6e{word-spacing:10.995840px;}
.ws47{word-spacing:11.016000px;}
.ws71{word-spacing:11.055600px;}
.ws83{word-spacing:11.653200px;}
.ws82{word-spacing:12.310560px;}
.ws9b{word-spacing:13.804560px;}
.ws8d{word-spacing:14.521680px;}
.ws65{word-spacing:18.107280px;}
.ws64{word-spacing:18.824400px;}
._2{margin-left:-6.987600px;}
._1{margin-left:-3.985200px;}
._10{margin-left:-2.884500px;}
._0{margin-left:-1.791900px;}
._3{width:1.495440px;}
._4{width:3.344760px;}
._c{width:5.019840px;}
._5{width:6.163740px;}
._9{width:7.722000px;}
._8{width:8.881380px;}
._6{width:10.206000px;}
._7{width:11.333520px;}
._a{width:17.987760px;}
._b{width:19.062540px;}
._e{width:413.117700px;}
._f{width:718.971600px;}
._d{width:814.971000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,57,255);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fsb{font-size:38.880000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:48.240000px;}
.fsc{font-size:48.384000px;}
.fs9{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs0{font-size:99.000000px;}
.fs4{font-size:99.360000px;}
.fs7{font-size:102.240000px;}
.y3a{bottom:-233.247930px;}
.y39{bottom:-218.305590px;}
.y59{bottom:-185.373390px;}
.y58{bottom:-170.250150px;}
.y57{bottom:-154.380150px;}
.y56{bottom:-122.884470px;}
.y55{bottom:-66.540150px;}
.yaf{bottom:-34.546650px;}
.y54{bottom:-34.500150px;}
.ya{bottom:-32.314950px;}
.y15{bottom:-31.952430px;}
.y7{bottom:-31.889700px;}
.yae{bottom:-17.982150px;}
.y53{bottom:-17.935650px;}
.y14{bottom:-17.010090px;}
.yad{bottom:-1.606650px;}
.y52{bottom:-1.560150px;}
.y0{bottom:0.000000px;}
.yac{bottom:14.053350px;}
.y95{bottom:15.922110px;}
.yf3{bottom:20.699850px;}
.y118{bottom:21.059850px;}
.y102{bottom:21.089850px;}
.y130{bottom:21.134850px;}
.y15b{bottom:21.239850px;}
.y5a{bottom:26.934000px;}
.yab{bottom:29.537850px;}
.y94{bottom:31.045350px;}
.y11{bottom:33.314850px;}
.yaa{bottom:45.022350px;}
.y93{bottom:46.915350px;}
.yc{bottom:50.039850px;}
.y10{bottom:53.474850px;}
.ya9{bottom:60.547350px;}
.y6{bottom:68.165850px;}
.ya8{bottom:76.031850px;}
.y92{bottom:78.411030px;}
.y5{bottom:81.665850px;}
.yf{bottom:86.234700px;}
.y8d{bottom:86.234850px;}
.ya7{bottom:91.691850px;}
.y4{bottom:95.165850px;}
.yf1{bottom:98.254470px;}
.y8a{bottom:99.319470px;}
.ya6{bottom:107.176350px;}
.y117{bottom:111.594000px;}
.yf0{bottom:116.257170px;}
.y89{bottom:117.322170px;}
.y159{bottom:119.743890px;}
.ya5{bottom:122.660850px;}
.ydf{bottom:126.253470px;}
.yd{bottom:127.469700px;}
.y8c{bottom:127.469850px;}
.y119{bottom:132.653850px;}
.y12e{bottom:132.771450px;}
.yef{bottom:134.259870px;}
.y158{bottom:134.686230px;}
.y91{bottom:134.755350px;}
.y88{bottom:135.324870px;}
.ya4{bottom:138.145350px;}
.y100{bottom:138.538290px;}
.yde{bottom:144.256170px;}
.yf2{bottom:148.854000px;}
.y157{bottom:149.809470px;}
.y12d{bottom:150.774150px;}
.y87{bottom:153.327570px;}
.ya3{bottom:153.805350px;}
.ydd{bottom:162.258870px;}
.y156{bottom:164.751810px;}
.y2f{bottom:166.748850px;}
.y12c{bottom:168.776850px;}
.ya2{bottom:169.289850px;}
.yf4{bottom:169.553850px;}
.y86{bottom:171.330270px;}
.y106{bottom:171.354000px;}
.yff{bottom:174.543690px;}
.y155{bottom:179.694150px;}
.ydc{bottom:180.261570px;}
.y2e{bottom:183.313350px;}
.ya1{bottom:184.774350px;}
.y12b{bottom:186.809430px;}
.y85{bottom:189.332970px;}
.y107{bottom:192.443850px;}
.yfe{bottom:192.576270px;}
.y154{bottom:194.841510px;}
.ydb{bottom:198.264270px;}
.y2d{bottom:199.688850px;}
.ya0{bottom:200.258850px;}
.y12a{bottom:204.812130px;}
.y84{bottom:207.365550px;}
.y153{bottom:209.783850px;}
.yfd{bottom:210.578970px;}
.y2c{bottom:215.348850px;}
.y9f{bottom:215.918850px;}
.yda{bottom:216.266970px;}
.y129{bottom:222.814830px;}
.y12{bottom:223.228500px;}
.y83{bottom:225.368250px;}
.yfc{bottom:228.581670px;}
.y2b{bottom:230.833350px;}
.y9e{bottom:231.403350px;}
.yd9{bottom:234.299550px;}
.y34{bottom:239.150610px;}
.y82{bottom:243.370950px;}
.y152{bottom:243.395430px;}
.y2a{bottom:246.317850px;}
.yfb{bottom:246.584370px;}
.yd8{bottom:252.302250px;}
.y33{bottom:254.273850px;}
.y128{bottom:258.820230px;}
.y81{bottom:261.373650px;}
.y29{bottom:261.842850px;}
.y9d{bottom:263.654850px;}
.yfa{bottom:264.587070px;}
.y32{bottom:270.143850px;}
.yd7{bottom:270.304950px;}
.y127{bottom:276.822930px;}
.y28{bottom:277.327350px;}
.y80{bottom:279.376350px;}
.y151{bottom:279.400830px;}
.yf9{bottom:282.589770px;}
.yd6{bottom:288.307650px;}
.y27{bottom:292.987350px;}
.y126{bottom:294.825630px;}
.y7f{bottom:297.379050px;}
.y150{bottom:297.403530px;}
.yf8{bottom:300.592470px;}
.y31{bottom:301.643850px;}
.yd5{bottom:306.310350px;}
.y26{bottom:308.471850px;}
.y125{bottom:312.828330px;}
.y7e{bottom:315.381750px;}
.y14f{bottom:315.406230px;}
.y101{bottom:315.534000px;}
.y25{bottom:323.956350px;}
.yd4{bottom:324.313050px;}
.y9c{bottom:325.392510px;}
.y124{bottom:330.831030px;}
.y7d{bottom:333.384450px;}
.y14e{bottom:333.408930px;}
.y104{bottom:336.623850px;}
.y24{bottom:339.440850px;}
.y103{bottom:341.843850px;}
.yd3{bottom:342.315750px;}
.y9b{bottom:344.834850px;}
.y7c{bottom:351.387150px;}
.y14d{bottom:351.411630px;}
.y13e{bottom:355.074330px;}
.y23{bottom:355.100850px;}
.y30{bottom:357.983850px;}
.y9a{bottom:359.775000px;}
.yd2{bottom:360.318450px;}
.y123{bottom:366.836430px;}
.y7b{bottom:369.365730px;}
.y14c{bottom:369.414330px;}
.y22{bottom:370.585350px;}
.y13d{bottom:373.077030px;}
.yd1{bottom:378.321150px;}
.y99{bottom:384.074850px;}
.y9{bottom:384.092250px;}
.y21{bottom:386.069850px;}
.y7a{bottom:387.368430px;}
.y14b{bottom:387.417030px;}
.y13c{bottom:391.079730px;}
.yd0{bottom:396.299730px;}
.y8{bottom:399.092250px;}
.y20{bottom:401.554350px;}
.y122{bottom:402.886650px;}
.y79{bottom:405.415950px;}
.y14a{bottom:405.464550px;}
.y13b{bottom:409.127250px;}
.y37{bottom:411.024000px;}
.ycf{bottom:414.302430px;}
.y1f{bottom:417.214350px;}
.y121{bottom:420.889350px;}
.y78{bottom:423.418650px;}
.y149{bottom:423.467250px;}
.y51{bottom:425.078850px;}
.y98{bottom:426.014850px;}
.y13a{bottom:427.129950px;}
.yce{bottom:432.349950px;}
.y1e{bottom:432.698850px;}
.y120{bottom:438.892050px;}
.y50{bottom:440.563350px;}
.y77{bottom:441.421350px;}
.y148{bottom:441.469950px;}
.y139{bottom:445.132650px;}
.ycd{bottom:450.352650px;}
.y4f{bottom:456.047850px;}
.y11f{bottom:456.894750px;}
.y147{bottom:459.472650px;}
.y138{bottom:463.135350px;}
.y1d{bottom:464.950350px;}
.ycc{bottom:468.355350px;}
.y4e{bottom:471.572850px;}
.y97{bottom:471.600000px;}
.y11e{bottom:474.897450px;}
.y76{bottom:477.426750px;}
.y146{bottom:477.475350px;}
.y137{bottom:481.138050px;}
.y4d{bottom:487.057350px;}
.y96{bottom:489.600000px;}
.y11d{bottom:492.900150px;}
.y145{bottom:495.478050px;}
.y136{bottom:499.140750px;}
.y4c{bottom:502.717350px;}
.ycb{bottom:504.360750px;}
.y11c{bottom:510.902850px;}
.y75{bottom:513.432150px;}
.y144{bottom:513.480750px;}
.y135{bottom:517.143450px;}
.y4b{bottom:518.201850px;}
.y116{bottom:523.078950px;}
.y38{bottom:524.879850px;}
.y1c{bottom:526.688010px;}
.y11b{bottom:528.905550px;}
.y74{bottom:531.365670px;}
.y143{bottom:531.483450px;}
.y4a{bottom:533.686350px;}
.y134{bottom:535.146150px;}
.yca{bottom:540.366150px;}
.y115{bottom:541.081650px;}
.y1b{bottom:546.130350px;}
.y11a{bottom:546.908250px;}
.y49{bottom:549.170850px;}
.y73{bottom:549.368370px;}
.y133{bottom:553.148850px;}
.yc9{bottom:558.304500px;}
.y114{bottom:559.084350px;}
.y1a{bottom:561.070200px;}
.y90{bottom:561.070500px;}
.y12f{bottom:561.414000px;}
.y48{bottom:564.830850px;}
.y72{bottom:567.371070px;}
.y142{bottom:567.488850px;}
.y13f{bottom:568.554000px;}
.yc8{bottom:576.307200px;}
.y113{bottom:577.087050px;}
.y47{bottom:580.315350px;}
.y131{bottom:582.548850px;}
.y19{bottom:585.370350px;}
.y71{bottom:585.373770px;}
.y140{bottom:589.688850px;}
.yc7{bottom:594.309900px;}
.y112{bottom:595.089750px;}
.y46{bottom:595.799850px;}
.y15a{bottom:599.919000px;}
.y70{bottom:603.376470px;}
.y45{bottom:611.284350px;}
.yc6{bottom:612.312600px;}
.y111{bottom:613.122330px;}
.y15c{bottom:621.158850px;}
.y6f{bottom:621.409050px;}
.y44{bottom:626.944350px;}
.y18{bottom:627.310350px;}
.yc5{bottom:630.315300px;}
.y110{bottom:631.125030px;}
.y6e{bottom:639.411750px;}
.y43{bottom:642.428850px;}
.yc4{bottom:648.347880px;}
.y10f{bottom:649.127730px;}
.y6d{bottom:657.414450px;}
.yc3{bottom:666.350580px;}
.y10e{bottom:667.130430px;}
.y17{bottom:672.895350px;}
.y8f{bottom:672.895500px;}
.y42{bottom:674.678850px;}
.y6c{bottom:675.417150px;}
.yc2{bottom:684.353280px;}
.y10d{bottom:685.133130px;}
.y16{bottom:690.895350px;}
.y8e{bottom:690.895500px;}
.y6b{bottom:693.419850px;}
.yc1{bottom:702.355980px;}
.y10c{bottom:703.135830px;}
.y6a{bottom:711.422550px;}
.yc0{bottom:720.358680px;}
.y10b{bottom:721.138530px;}
.y13{bottom:726.175350px;}
.y69{bottom:729.425250px;}
.y41{bottom:736.416510px;}
.ybf{bottom:738.361380px;}
.y10a{bottom:739.141230px;}
.yee{bottom:739.165530px;}
.y68{bottom:747.427950px;}
.y40{bottom:755.858850px;}
.ybe{bottom:756.364080px;}
.y109{bottom:757.143930px;}
.yed{bottom:757.168230px;}
.y67{bottom:765.430650px;}
.y3f{bottom:770.798700px;}
.ybd{bottom:774.366780px;}
.yf7{bottom:775.146630px;}
.yec{bottom:775.170930px;}
.y66{bottom:783.433350px;}
.ybc{bottom:792.369480px;}
.yf6{bottom:793.149330px;}
.yeb{bottom:793.173630px;}
.y3e{bottom:795.098850px;}
.y65{bottom:801.436050px;}
.ybb{bottom:810.372180px;}
.y108{bottom:811.196850px;}
.yea{bottom:811.221150px;}
.y64{bottom:819.483570px;}
.y169{bottom:825.474510px;}
.yba{bottom:828.374880px;}
.ye9{bottom:829.199550px;}
.y3d{bottom:837.038850px;}
.y63{bottom:837.486270px;}
.y168{bottom:840.416850px;}
.yb9{bottom:846.422400px;}
.ye8{bottom:847.202250px;}
.y62{bottom:855.488970px;}
.y167{bottom:855.540090px;}
.yb8{bottom:864.425100px;}
.ye7{bottom:865.204950px;}
.y105{bottom:866.116290px;}
.y166{bottom:870.482430px;}
.y61{bottom:873.491670px;}
.yb7{bottom:882.427800px;}
.y3c{bottom:882.623850px;}
.ye6{bottom:883.207650px;}
.y165{bottom:885.424770px;}
.y60{bottom:891.494370px;}
.yb6{bottom:900.430500px;}
.y164{bottom:900.548010px;}
.y3b{bottom:900.623850px;}
.ye5{bottom:901.210350px;}
.y5f{bottom:909.497070px;}
.y163{bottom:915.490350px;}
.yb5{bottom:918.433200px;}
.ye4{bottom:919.213050px;}
.y5e{bottom:927.499770px;}
.y162{bottom:930.432690px;}
.yb4{bottom:936.435900px;}
.ye3{bottom:937.215750px;}
.y161{bottom:945.555930px;}
.yb3{bottom:954.438600px;}
.ye2{bottom:955.218450px;}
.y160{bottom:960.498270px;}
.y3{bottom:961.130850px;}
.y5d{bottom:963.505170px;}
.y36{bottom:969.009000px;}
.y35{bottom:969.024000px;}
.yf5{bottom:973.221150px;}
.y15f{bottom:975.440610px;}
.ye{bottom:982.509000px;}
.yb{bottom:982.524000px;}
.y1{bottom:988.999500px;}
.yb2{bottom:990.444000px;}
.y15e{bottom:990.563850px;}
.ye1{bottom:991.223850px;}
.y5c{bottom:999.689850px;}
.yb1{bottom:999.690000px;}
.y15d{bottom:1023.534000px;}
.ye0{bottom:1026.534000px;}
.y141{bottom:1028.034000px;}
.y2{bottom:1033.378950px;}
.y132{bottom:1034.034000px;}
.y5b{bottom:1034.099850px;}
.yb0{bottom:1034.100000px;}
.y8b{bottom:1035.561750px;}
.h7{height:-603.354000px;}
.ha{height:-603.339000px;}
.h16{height:-45.733500px;}
.h1e{height:-45.732000px;}
.h17{height:-45.718500px;}
.h1f{height:-45.717000px;}
.h8{height:20.996719px;}
.h2a{height:26.995781px;}
.h4{height:33.328125px;}
.he{height:33.494766px;}
.hc{height:33.518320px;}
.h2c{height:33.618375px;}
.h30{height:34.531172px;}
.h5{height:36.000000px;}
.h13{height:36.597656px;}
.h6{height:37.494141px;}
.h14{height:37.520508px;}
.h9{height:38.654297px;}
.h3{height:38.664000px;}
.h29{height:39.011484px;}
.h1a{height:40.501406px;}
.h24{height:41.493516px;}
.h15{height:41.522695px;}
.h27{height:42.777422px;}
.h2b{height:47.875781px;}
.h25{height:47.880000px;}
.h1c{height:47.991246px;}
.h23{height:47.992566px;}
.h28{height:48.060000px;}
.h21{height:48.152166px;}
.h1b{height:48.171486px;}
.hf{height:50.027344px;}
.h12{height:54.029531px;}
.h11{height:62.879414px;}
.h1d{height:62.880014px;}
.hb{height:67.000078px;}
.h10{height:71.038828px;}
.h2{height:74.646000px;}
.hd{height:155.941500px;}
.h18{height:512.266500px;}
.h20{height:512.268000px;}
.h19{height:986.310000px;}
.h2d{height:1010.256000px;}
.h26{height:1010.965500px;}
.h31{height:1012.216500px;}
.h22{height:1014.153000px;}
.h2f{height:1016.716500px;}
.h2e{height:1022.716500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w8{width:-655.122000px;}
.w9{width:-227.913000px;}
.we{width:-192.000000px;}
.wf{width:-150.618000px;}
.w18{width:-96.843000px;}
.w11{width:-75.720000px;}
.w15{width:-66.018000px;}
.w12{width:-60.078000px;}
.wa{width:-47.508000px;}
.w7{width:1.500000px;}
.wb{width:3.102000px;}
.w2{width:94.896000px;}
.w4{width:180.390000px;}
.w3{width:427.200000px;}
.wd{width:513.360000px;}
.w16{width:651.240000px;}
.w17{width:653.715000px;}
.w13{width:655.020000px;}
.w14{width:682.918500px;}
.w10{width:697.680000px;}
.w6{width:813.355500px;}
.w5{width:813.378000px;}
.w19{width:814.878000px;}
.wc{width:814.980000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x2f{left:-758.118000px;}
.x4f{left:-750.557850px;}
.x38{left:-749.118000px;}
.x3f{left:-747.498000px;}
.x39{left:-740.133300px;}
.x46{left:-736.878000px;}
.x30{left:-732.378000px;}
.x4d{left:-731.118000px;}
.x32{left:-720.641850px;}
.x4e{left:-704.091540px;}
.x37{left:-691.655340px;}
.x29{left:-665.382000px;}
.x40{left:-663.942000px;}
.x31{left:-621.102000px;}
.x34{left:-600.408000px;}
.x33{left:-575.748000px;}
.x2a{left:-568.727850px;}
.x2c{left:-555.768000px;}
.x35{left:-526.923000px;}
.x2b{left:-513.423000px;}
.x4a{left:-426.663000px;}
.x36{left:-407.222280px;}
.x41{left:-400.923000px;}
.x2e{left:-228.993000px;}
.x2d{left:-55.608000px;}
.x10{left:-1.095000px;}
.x0{left:0.000000px;}
.x50{left:1.500000px;}
.x11{left:3.000000px;}
.x5{left:56.125950px;}
.x6{left:57.189000px;}
.x4{left:58.251900px;}
.x27{left:59.579850px;}
.x24{left:64.260000px;}
.x8{left:66.360000px;}
.x48{left:67.440000px;}
.x25{left:73.244700px;}
.x1c{left:76.244700px;}
.x28{left:77.403270px;}
.x42{left:79.320000px;}
.x12{left:81.000000px;}
.x9{left:84.636000px;}
.xb{left:86.385000px;}
.x51{left:88.116000px;}
.x14{left:92.736000px;}
.x1e{left:95.736000px;}
.xd{left:99.345000px;}
.x49{left:101.676000px;}
.x43{left:106.331520px;}
.x3c{left:107.831520px;}
.x47{left:109.956000px;}
.x4c{left:112.286460px;}
.x52{left:115.118340px;}
.x4b{left:118.836000px;}
.x23{left:121.722660px;}
.x1b{left:124.716000px;}
.xc{left:141.690000px;}
.x3a{left:152.400000px;}
.xa{left:161.265000px;}
.xf{left:172.290000px;}
.x3b{left:186.630000px;}
.x13{left:192.276000px;}
.x1d{left:195.276000px;}
.x18{left:212.970000px;}
.x20{left:215.970000px;}
.x2{left:236.123100px;}
.x15{left:237.630000px;}
.x1f{left:240.630000px;}
.x3{left:248.491500px;}
.x45{left:255.809850px;}
.x19{left:286.455000px;}
.x21{left:289.455000px;}
.x1{left:292.179600px;}
.x3e{left:369.074850px;}
.x16{left:377.152500px;}
.x17{left:386.895000px;}
.x1a{left:406.155720px;}
.x22{left:409.155720px;}
.x7{left:544.251900px;}
.xe{left:588.480000px;}
.x26{left:814.878000px;}
.x44{left:892.098000px;}
.x3d{left:1008.378000px;}
@media print{
.v4{vertical-align:-18.560533pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v3{vertical-align:18.805973pt;}
.v1{vertical-align:24.320000pt;}
.ls63{letter-spacing:-1.221760pt;}
.ls68{letter-spacing:-1.115520pt;}
.ls3f{letter-spacing:-1.009280pt;}
.ls34{letter-spacing:-0.960000pt;}
.ls43{letter-spacing:-0.956160pt;}
.ls6d{letter-spacing:-0.943360pt;}
.ls37{letter-spacing:-0.864000pt;}
.ls5d{letter-spacing:-0.860160pt;}
.ls28{letter-spacing:-0.857600pt;}
.ls55{letter-spacing:-0.814720pt;}
.ls35{letter-spacing:-0.720000pt;}
.ls5f{letter-spacing:-0.686080pt;}
.ls5a{letter-spacing:-0.645120pt;}
.ls38{letter-spacing:-0.624000pt;}
.ls40{letter-spacing:-0.584320pt;}
.ls57{letter-spacing:-0.531200pt;}
.ls33{letter-spacing:-0.528000pt;}
.ls3b{letter-spacing:-0.478080pt;}
.ls26{letter-spacing:-0.471680pt;}
.ls42{letter-spacing:-0.424960pt;}
.ls59{letter-spacing:-0.403200pt;}
.ls58{letter-spacing:-0.385920pt;}
.ls39{letter-spacing:-0.371840pt;}
.ls32{letter-spacing:-0.336000pt;}
.ls3a{letter-spacing:-0.318720pt;}
.ls27{letter-spacing:-0.300160pt;}
.ls31{letter-spacing:-0.288000pt;}
.ls2d{letter-spacing:-0.272640pt;}
.ls46{letter-spacing:-0.265600pt;}
.ls30{letter-spacing:-0.240000pt;}
.ls64{letter-spacing:-0.214400pt;}
.ls41{letter-spacing:-0.212480pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls6c{letter-spacing:-0.171520pt;}
.ls3d{letter-spacing:-0.159360pt;}
.ls36{letter-spacing:-0.096000pt;}
.ls45{letter-spacing:-0.053120pt;}
.ls25{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.096000pt;}
.ls3e{letter-spacing:0.106240pt;}
.ls29{letter-spacing:0.128640pt;}
.lsd{letter-spacing:0.144000pt;}
.ls50{letter-spacing:0.144640pt;}
.ls20{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.160000pt;}
.ls47{letter-spacing:0.160533pt;}
.ls1{letter-spacing:0.171520pt;}
.ls5e{letter-spacing:0.172032pt;}
.ls2e{letter-spacing:0.181760pt;}
.ls66{letter-spacing:0.183467pt;}
.ls62{letter-spacing:0.184107pt;}
.ls17{letter-spacing:0.212480pt;}
.ls2b{letter-spacing:0.214400pt;}
.ls2a{letter-spacing:0.257280pt;}
.ls3c{letter-spacing:0.265600pt;}
.ls2c{letter-spacing:0.272640pt;}
.ls6{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.300160pt;}
.ls4c{letter-spacing:0.311040pt;}
.ls2{letter-spacing:0.318080pt;}
.ls22{letter-spacing:0.318720pt;}
.ls54{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.321600pt;}
.ls5b{letter-spacing:0.322560pt;}
.ls8{letter-spacing:0.336000pt;}
.ls69{letter-spacing:0.343040pt;}
.ls49{letter-spacing:0.350507pt;}
.ls1f{letter-spacing:0.351040pt;}
.ls44{letter-spacing:0.531200pt;}
.ls56{letter-spacing:0.743680pt;}
.lsc{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.796800pt;}
.ls5{letter-spacing:0.816000pt;}
.ls11{letter-spacing:0.944640pt;}
.ls48{letter-spacing:0.945173pt;}
.ls23{letter-spacing:0.956160pt;}
.lsb{letter-spacing:1.392000pt;}
.ls14{letter-spacing:1.434240pt;}
.ls4{letter-spacing:1.440000pt;}
.lse{letter-spacing:2.064000pt;}
.ls15{letter-spacing:2.071680pt;}
.ls1b{letter-spacing:2.709120pt;}
.ls1d{letter-spacing:3.346560pt;}
.ls65{letter-spacing:3.505920pt;}
.ls53{letter-spacing:3.984000pt;}
.ls1c{letter-spacing:4.621440pt;}
.ls52{letter-spacing:5.258880pt;}
.ls16{letter-spacing:5.896320pt;}
.ls3{letter-spacing:5.904000pt;}
.ls4f{letter-spacing:6.055680pt;}
.ls61{letter-spacing:6.533760pt;}
.ls4e{letter-spacing:7.224320pt;}
.lsf{letter-spacing:7.824000pt;}
.ls21{letter-spacing:7.861760pt;}
.ls10{letter-spacing:7.872000pt;}
.ls4d{letter-spacing:8.021120pt;}
.ls60{letter-spacing:8.499200pt;}
.ls24{letter-spacing:9.136640pt;}
.ls9{letter-spacing:9.744000pt;}
.ls1a{letter-spacing:9.774080pt;}
.ls18{letter-spacing:10.411520pt;}
.lsa{letter-spacing:10.416000pt;}
.ls19{letter-spacing:10.517760pt;}
.ls67{letter-spacing:52.099200pt;}
.ls51{letter-spacing:56.891520pt;}
.ls4b{letter-spacing:416.793600pt;}
.ls6a{letter-spacing:448.910720pt;}
.ls12{letter-spacing:470.650880pt;}
.ls4a{letter-spacing:491.790720pt;}
.ls5c{letter-spacing:754.994560pt;}
.ws98{word-spacing:-53.120000pt;}
.ws8{word-spacing:-22.447360pt;}
.wsd6{word-spacing:-14.236160pt;}
.ws18{word-spacing:-13.598720pt;}
.ws1d{word-spacing:-13.545600pt;}
.wsc3{word-spacing:-13.492480pt;}
.ws3{word-spacing:-13.488000pt;}
.ws22{word-spacing:-13.439360pt;}
.ws1c{word-spacing:-13.386240pt;}
.ws1{word-spacing:-13.344000pt;}
.ws19{word-spacing:-13.280000pt;}
.ws23{word-spacing:-13.226880pt;}
.ws1b{word-spacing:-13.120640pt;}
.ws97{word-spacing:-13.067520pt;}
.wsc4{word-spacing:-13.014400pt;}
.ws1a{word-spacing:-12.961280pt;}
.ws21{word-spacing:-12.908160pt;}
.wsb2{word-spacing:-12.855040pt;}
.ws99{word-spacing:-12.748800pt;}
.ws1f{word-spacing:-12.695680pt;}
.wsc{word-spacing:-12.336000pt;}
.wsb3{word-spacing:-12.323840pt;}
.wsb{word-spacing:-12.288000pt;}
.ws1e{word-spacing:-12.270720pt;}
.wsd7{word-spacing:-12.164480pt;}
.ws14{word-spacing:-12.096000pt;}
.wsc2{word-spacing:-12.058240pt;}
.wse{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.808000pt;}
.wsf{word-spacing:-11.712000pt;}
.ws15{word-spacing:-11.664000pt;}
.ws9{word-spacing:-11.541760pt;}
.ws10{word-spacing:-11.472000pt;}
.ws13{word-spacing:-11.136000pt;}
.wsd8{word-spacing:-11.063040pt;}
.ws11{word-spacing:-11.040000pt;}
.ws16{word-spacing:-10.977280pt;}
.wsd9{word-spacing:-10.934400pt;}
.ws6{word-spacing:-10.848640pt;}
.ws4{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.666667pt;}
.wse1{word-spacing:-10.548480pt;}
.ws5{word-spacing:-10.419840pt;}
.ws7{word-spacing:-10.248320pt;}
.ws20{word-spacing:-8.640000pt;}
.wsa{word-spacing:-6.720000pt;}
.ws9a{word-spacing:-6.316800pt;}
.wsd2{word-spacing:-3.187200pt;}
.wsd3{word-spacing:-3.027840pt;}
.wsda{word-spacing:-2.974720pt;}
.wsd4{word-spacing:-2.709120pt;}
.ws96{word-spacing:-2.390400pt;}
.wsa7{word-spacing:-2.018560pt;}
.wsae{word-spacing:-1.806080pt;}
.ws31{word-spacing:-1.776000pt;}
.ws6b{word-spacing:-1.752960pt;}
.wsa6{word-spacing:-1.699840pt;}
.ws6d{word-spacing:-1.646720pt;}
.ws43{word-spacing:-1.392000pt;}
.wsad{word-spacing:-1.221760pt;}
.wsaf{word-spacing:-1.168640pt;}
.ws7b{word-spacing:-1.115520pt;}
.ws30{word-spacing:-1.104000pt;}
.ws6a{word-spacing:-1.062400pt;}
.wsc7{word-spacing:-1.009280pt;}
.ws9f{word-spacing:-0.967680pt;}
.wscc{word-spacing:-0.903040pt;}
.ws4a{word-spacing:-0.864000pt;}
.wsac{word-spacing:-0.849920pt;}
.wsab{word-spacing:-0.796800pt;}
.ws59{word-spacing:-0.771840pt;}
.ws40{word-spacing:-0.768000pt;}
.ws8e{word-spacing:-0.743680pt;}
.wsc1{word-spacing:-0.728960pt;}
.wsb5{word-spacing:-0.688128pt;}
.wsa5{word-spacing:-0.686080pt;}
.wscb{word-spacing:-0.637440pt;}
.ws76{word-spacing:-0.584320pt;}
.ws86{word-spacing:-0.531200pt;}
.ws42{word-spacing:-0.480000pt;}
.ws75{word-spacing:-0.478080pt;}
.ws58{word-spacing:-0.471680pt;}
.ws78{word-spacing:-0.424960pt;}
.ws8f{word-spacing:-0.371840pt;}
.wse4{word-spacing:-0.343040pt;}
.ws44{word-spacing:-0.336000pt;}
.wsbf{word-spacing:-0.318720pt;}
.ws39{word-spacing:-0.288000pt;}
.ws2c{word-spacing:-0.272640pt;}
.ws63{word-spacing:-0.265600pt;}
.ws5b{word-spacing:-0.212480pt;}
.ws4d{word-spacing:-0.192000pt;}
.ws5a{word-spacing:-0.171520pt;}
.ws6c{word-spacing:-0.159360pt;}
.ws25{word-spacing:-0.144000pt;}
.ws28{word-spacing:-0.128640pt;}
.ws81{word-spacing:-0.106240pt;}
.ws0{word-spacing:-0.088000pt;}
.ws29{word-spacing:-0.085760pt;}
.wsc6{word-spacing:-0.053120pt;}
.ws17{word-spacing:-0.042880pt;}
.ws24{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.053120pt;}
.ws4c{word-spacing:0.096000pt;}
.ws5c{word-spacing:0.106240pt;}
.ws6f{word-spacing:0.159360pt;}
.ws3f{word-spacing:0.192000pt;}
.wsa0{word-spacing:0.212480pt;}
.ws3a{word-spacing:0.240000pt;}
.wse2{word-spacing:0.257280pt;}
.ws2d{word-spacing:0.272640pt;}
.ws4e{word-spacing:0.288000pt;}
.wsb6{word-spacing:0.295680pt;}
.ws66{word-spacing:0.318720pt;}
.ws41{word-spacing:0.336000pt;}
.wsd0{word-spacing:0.343040pt;}
.ws94{word-spacing:0.371840pt;}
.ws2a{word-spacing:0.385920pt;}
.ws77{word-spacing:0.424960pt;}
.ws26{word-spacing:0.428800pt;}
.wse0{word-spacing:0.471680pt;}
.ws62{word-spacing:0.478080pt;}
.wsb0{word-spacing:0.514560pt;}
.ws3d{word-spacing:0.528000pt;}
.ws93{word-spacing:0.531200pt;}
.ws2e{word-spacing:0.552960pt;}
.ws2b{word-spacing:0.576000pt;}
.wsb8{word-spacing:0.584320pt;}
.ws2f{word-spacing:0.600320pt;}
.ws4f{word-spacing:0.624000pt;}
.ws7f{word-spacing:0.637440pt;}
.wsb1{word-spacing:0.645120pt;}
.wsc0{word-spacing:0.686080pt;}
.wsdd{word-spacing:0.690560pt;}
.ws7c{word-spacing:0.743680pt;}
.ws3e{word-spacing:0.768000pt;}
.wsa4{word-spacing:0.814720pt;}
.ws3b{word-spacing:0.816000pt;}
.wsb4{word-spacing:0.860160pt;}
.ws4b{word-spacing:0.864000pt;}
.wsd1{word-spacing:0.940800pt;}
.wse3{word-spacing:0.943360pt;}
.ws80{word-spacing:0.956160pt;}
.ws3c{word-spacing:0.960000pt;}
.ws27{word-spacing:0.986240pt;}
.wsc5{word-spacing:1.009280pt;}
.ws48{word-spacing:1.104000pt;}
.ws84{word-spacing:1.115520pt;}
.ws9e{word-spacing:1.221760pt;}
.ws60{word-spacing:1.274880pt;}
.wsde{word-spacing:1.328000pt;}
.ws5d{word-spacing:1.381120pt;}
.ws37{word-spacing:1.392000pt;}
.ws85{word-spacing:1.487360pt;}
.ws38{word-spacing:1.584000pt;}
.ws51{word-spacing:1.728000pt;}
.ws5e{word-spacing:1.912320pt;}
.wsbe{word-spacing:1.965440pt;}
.ws61{word-spacing:2.018560pt;}
.ws50{word-spacing:2.208000pt;}
.ws72{word-spacing:2.284160pt;}
.ws67{word-spacing:2.337280pt;}
.ws5f{word-spacing:2.390400pt;}
.ws73{word-spacing:2.656000pt;}
.ws49{word-spacing:2.736000pt;}
.ws74{word-spacing:3.027840pt;}
.wsdf{word-spacing:3.187200pt;}
.wsd5{word-spacing:3.240320pt;}
.ws7d{word-spacing:3.293440pt;}
.ws7e{word-spacing:3.346560pt;}
.ws90{word-spacing:3.399680pt;}
.ws9c{word-spacing:3.612160pt;}
.wsdc{word-spacing:3.665280pt;}
.ws9d{word-spacing:3.930880pt;}
.ws32{word-spacing:3.936000pt;}
.wsbc{word-spacing:4.037120pt;}
.ws33{word-spacing:4.128000pt;}
.wsdb{word-spacing:4.143360pt;}
.wsba{word-spacing:4.249600pt;}
.wsbd{word-spacing:4.515200pt;}
.ws79{word-spacing:4.568320pt;}
.wsbb{word-spacing:4.674560pt;}
.wsb7{word-spacing:4.887040pt;}
.ws35{word-spacing:4.944000pt;}
.wsa9{word-spacing:5.099520pt;}
.ws95{word-spacing:5.205760pt;}
.ws7a{word-spacing:5.312000pt;}
.ws36{word-spacing:5.472000pt;}
.ws87{word-spacing:5.736960pt;}
.ws69{word-spacing:5.843200pt;}
.ws34{word-spacing:5.856000pt;}
.wsaa{word-spacing:5.896320pt;}
.wsb9{word-spacing:5.949440pt;}
.ws68{word-spacing:6.161920pt;}
.wscd{word-spacing:6.215040pt;}
.wsa3{word-spacing:6.427520pt;}
.wsce{word-spacing:6.480640pt;}
.ws56{word-spacing:6.528000pt;}
.ws57{word-spacing:6.624000pt;}
.wscf{word-spacing:6.799360pt;}
.wsc9{word-spacing:6.905600pt;}
.wsca{word-spacing:7.118080pt;}
.wsa1{word-spacing:7.171200pt;}
.ws8a{word-spacing:7.277440pt;}
.ws8b{word-spacing:7.702400pt;}
.ws8c{word-spacing:7.755520pt;}
.ws55{word-spacing:7.776000pt;}
.ws88{word-spacing:7.808640pt;}
.ws54{word-spacing:7.824000pt;}
.ws52{word-spacing:7.872000pt;}
.ws53{word-spacing:7.968000pt;}
.wsa8{word-spacing:8.127360pt;}
.ws89{word-spacing:8.446080pt;}
.wsc8{word-spacing:8.499200pt;}
.ws91{word-spacing:8.924160pt;}
.ws45{word-spacing:9.072000pt;}
.ws92{word-spacing:9.083520pt;}
.ws46{word-spacing:9.696000pt;}
.ws70{word-spacing:9.720960pt;}
.ws6e{word-spacing:9.774080pt;}
.ws47{word-spacing:9.792000pt;}
.ws71{word-spacing:9.827200pt;}
.ws83{word-spacing:10.358400pt;}
.ws82{word-spacing:10.942720pt;}
.ws9b{word-spacing:12.270720pt;}
.ws8d{word-spacing:12.908160pt;}
.ws65{word-spacing:16.095360pt;}
.ws64{word-spacing:16.732800pt;}
._2{margin-left:-6.211200pt;}
._1{margin-left:-3.542400pt;}
._10{margin-left:-2.564000pt;}
._0{margin-left:-1.592800pt;}
._3{width:1.329280pt;}
._4{width:2.973120pt;}
._c{width:4.462080pt;}
._5{width:5.478880pt;}
._9{width:6.864000pt;}
._8{width:7.894560pt;}
._6{width:9.072000pt;}
._7{width:10.074240pt;}
._a{width:15.989120pt;}
._b{width:16.944480pt;}
._e{width:367.215733pt;}
._f{width:639.085867pt;}
._d{width:724.418667pt;}
.fs3{font-size:26.880000pt;}
.fsb{font-size:34.560000pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:42.880000pt;}
.fsc{font-size:43.008000pt;}
.fs9{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs0{font-size:88.000000pt;}
.fs4{font-size:88.320000pt;}
.fs7{font-size:90.880000pt;}
.y3a{bottom:-207.331493pt;}
.y39{bottom:-194.049413pt;}
.y59{bottom:-164.776347pt;}
.y58{bottom:-151.333467pt;}
.y57{bottom:-137.226800pt;}
.y56{bottom:-109.230640pt;}
.y55{bottom:-59.146800pt;}
.yaf{bottom:-30.708133pt;}
.y54{bottom:-30.666800pt;}
.ya{bottom:-28.724400pt;}
.y15{bottom:-28.402160pt;}
.y7{bottom:-28.346400pt;}
.yae{bottom:-15.984133pt;}
.y53{bottom:-15.942800pt;}
.y14{bottom:-15.120080pt;}
.yad{bottom:-1.428133pt;}
.y52{bottom:-1.386800pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:12.491867pt;}
.y95{bottom:14.152987pt;}
.yf3{bottom:18.399867pt;}
.y118{bottom:18.719867pt;}
.y102{bottom:18.746533pt;}
.y130{bottom:18.786533pt;}
.y15b{bottom:18.879867pt;}
.y5a{bottom:23.941333pt;}
.yab{bottom:26.255867pt;}
.y94{bottom:27.595867pt;}
.y11{bottom:29.613200pt;}
.yaa{bottom:40.019867pt;}
.y93{bottom:41.702533pt;}
.yc{bottom:44.479867pt;}
.y10{bottom:47.533200pt;}
.ya9{bottom:53.819867pt;}
.y6{bottom:60.591867pt;}
.ya8{bottom:67.583867pt;}
.y92{bottom:69.698693pt;}
.y5{bottom:72.591867pt;}
.yf{bottom:76.653067pt;}
.y8d{bottom:76.653200pt;}
.ya7{bottom:81.503867pt;}
.y4{bottom:84.591867pt;}
.yf1{bottom:87.337307pt;}
.y8a{bottom:88.283973pt;}
.ya6{bottom:95.267867pt;}
.y117{bottom:99.194667pt;}
.yf0{bottom:103.339707pt;}
.y89{bottom:104.286373pt;}
.y159{bottom:106.439013pt;}
.ya5{bottom:109.031867pt;}
.ydf{bottom:112.225307pt;}
.yd{bottom:113.306400pt;}
.y8c{bottom:113.306533pt;}
.y119{bottom:117.914533pt;}
.y12e{bottom:118.019067pt;}
.yef{bottom:119.342107pt;}
.y158{bottom:119.721093pt;}
.y91{bottom:119.782533pt;}
.y88{bottom:120.288773pt;}
.ya4{bottom:122.795867pt;}
.y100{bottom:123.145147pt;}
.yde{bottom:128.227707pt;}
.yf2{bottom:132.314667pt;}
.y157{bottom:133.163973pt;}
.y12d{bottom:134.021467pt;}
.y87{bottom:136.291173pt;}
.ya3{bottom:136.715867pt;}
.ydd{bottom:144.230107pt;}
.y156{bottom:146.446053pt;}
.y2f{bottom:148.221200pt;}
.y12c{bottom:150.023867pt;}
.ya2{bottom:150.479867pt;}
.yf4{bottom:150.714533pt;}
.y86{bottom:152.293573pt;}
.y106{bottom:152.314667pt;}
.yff{bottom:155.149947pt;}
.y155{bottom:159.728133pt;}
.ydc{bottom:160.232507pt;}
.y2e{bottom:162.945200pt;}
.ya1{bottom:164.243867pt;}
.y12b{bottom:166.052827pt;}
.y85{bottom:168.295973pt;}
.y107{bottom:171.061200pt;}
.yfe{bottom:171.178907pt;}
.y154{bottom:173.192453pt;}
.ydb{bottom:176.234907pt;}
.y2d{bottom:177.501200pt;}
.ya0{bottom:178.007867pt;}
.y12a{bottom:182.055227pt;}
.y84{bottom:184.324933pt;}
.y153{bottom:186.474533pt;}
.yfd{bottom:187.181307pt;}
.y2c{bottom:191.421200pt;}
.y9f{bottom:191.927867pt;}
.yda{bottom:192.237307pt;}
.y129{bottom:198.057627pt;}
.y12{bottom:198.425333pt;}
.y83{bottom:200.327333pt;}
.yfc{bottom:203.183707pt;}
.y2b{bottom:205.185200pt;}
.y9e{bottom:205.691867pt;}
.yd9{bottom:208.266267pt;}
.y34{bottom:212.578320pt;}
.y82{bottom:216.329733pt;}
.y152{bottom:216.351493pt;}
.y2a{bottom:218.949200pt;}
.yfb{bottom:219.186107pt;}
.yd8{bottom:224.268667pt;}
.y33{bottom:226.021200pt;}
.y128{bottom:230.062427pt;}
.y81{bottom:232.332133pt;}
.y29{bottom:232.749200pt;}
.y9d{bottom:234.359867pt;}
.yfa{bottom:235.188507pt;}
.y32{bottom:240.127867pt;}
.yd7{bottom:240.271067pt;}
.y127{bottom:246.064827pt;}
.y28{bottom:246.513200pt;}
.y80{bottom:248.334533pt;}
.y151{bottom:248.356293pt;}
.yf9{bottom:251.190907pt;}
.yd6{bottom:256.273467pt;}
.y27{bottom:260.433200pt;}
.y126{bottom:262.067227pt;}
.y7f{bottom:264.336933pt;}
.y150{bottom:264.358693pt;}
.yf8{bottom:267.193307pt;}
.y31{bottom:268.127867pt;}
.yd5{bottom:272.275867pt;}
.y26{bottom:274.197200pt;}
.y125{bottom:278.069627pt;}
.y7e{bottom:280.339333pt;}
.y14f{bottom:280.361093pt;}
.y101{bottom:280.474667pt;}
.y25{bottom:287.961200pt;}
.yd4{bottom:288.278267pt;}
.y9c{bottom:289.237787pt;}
.y124{bottom:294.072027pt;}
.y7d{bottom:296.341733pt;}
.y14e{bottom:296.363493pt;}
.y104{bottom:299.221200pt;}
.y24{bottom:301.725200pt;}
.y103{bottom:303.861200pt;}
.yd3{bottom:304.280667pt;}
.y9b{bottom:306.519867pt;}
.y7c{bottom:312.344133pt;}
.y14d{bottom:312.365893pt;}
.y13e{bottom:315.621627pt;}
.y23{bottom:315.645200pt;}
.y30{bottom:318.207867pt;}
.y9a{bottom:319.800000pt;}
.yd2{bottom:320.283067pt;}
.y123{bottom:326.076827pt;}
.y7b{bottom:328.325093pt;}
.y14c{bottom:328.368293pt;}
.y22{bottom:329.409200pt;}
.y13d{bottom:331.624027pt;}
.yd1{bottom:336.285467pt;}
.y99{bottom:341.399867pt;}
.y9{bottom:341.415333pt;}
.y21{bottom:343.173200pt;}
.y7a{bottom:344.327493pt;}
.y14b{bottom:344.370693pt;}
.y13c{bottom:347.626427pt;}
.yd0{bottom:352.266427pt;}
.y8{bottom:354.748667pt;}
.y20{bottom:356.937200pt;}
.y122{bottom:358.121467pt;}
.y79{bottom:360.369733pt;}
.y14a{bottom:360.412933pt;}
.y13b{bottom:363.668667pt;}
.y37{bottom:365.354667pt;}
.ycf{bottom:368.268827pt;}
.y1f{bottom:370.857200pt;}
.y121{bottom:374.123867pt;}
.y78{bottom:376.372133pt;}
.y149{bottom:376.415333pt;}
.y51{bottom:377.847867pt;}
.y98{bottom:378.679867pt;}
.y13a{bottom:379.671067pt;}
.yce{bottom:384.311067pt;}
.y1e{bottom:384.621200pt;}
.y120{bottom:390.126267pt;}
.y50{bottom:391.611867pt;}
.y77{bottom:392.374533pt;}
.y148{bottom:392.417733pt;}
.y139{bottom:395.673467pt;}
.ycd{bottom:400.313467pt;}
.y4f{bottom:405.375867pt;}
.y11f{bottom:406.128667pt;}
.y147{bottom:408.420133pt;}
.y138{bottom:411.675867pt;}
.y1d{bottom:413.289200pt;}
.ycc{bottom:416.315867pt;}
.y4e{bottom:419.175867pt;}
.y97{bottom:419.200000pt;}
.y11e{bottom:422.131067pt;}
.y76{bottom:424.379333pt;}
.y146{bottom:424.422533pt;}
.y137{bottom:427.678267pt;}
.y4d{bottom:432.939867pt;}
.y96{bottom:435.200000pt;}
.y11d{bottom:438.133467pt;}
.y145{bottom:440.424933pt;}
.y136{bottom:443.680667pt;}
.y4c{bottom:446.859867pt;}
.ycb{bottom:448.320667pt;}
.y11c{bottom:454.135867pt;}
.y75{bottom:456.384133pt;}
.y144{bottom:456.427333pt;}
.y135{bottom:459.683067pt;}
.y4b{bottom:460.623867pt;}
.y116{bottom:464.959067pt;}
.y38{bottom:466.559867pt;}
.y1c{bottom:468.167120pt;}
.y11b{bottom:470.138267pt;}
.y74{bottom:472.325040pt;}
.y143{bottom:472.429733pt;}
.y4a{bottom:474.387867pt;}
.y134{bottom:475.685467pt;}
.yca{bottom:480.325467pt;}
.y115{bottom:480.961467pt;}
.y1b{bottom:485.449200pt;}
.y11a{bottom:486.140667pt;}
.y49{bottom:488.151867pt;}
.y73{bottom:488.327440pt;}
.y133{bottom:491.687867pt;}
.yc9{bottom:496.270667pt;}
.y114{bottom:496.963867pt;}
.y1a{bottom:498.729067pt;}
.y90{bottom:498.729333pt;}
.y12f{bottom:499.034667pt;}
.y48{bottom:502.071867pt;}
.y72{bottom:504.329840pt;}
.y142{bottom:504.434533pt;}
.y13f{bottom:505.381333pt;}
.yc8{bottom:512.273067pt;}
.y113{bottom:512.966267pt;}
.y47{bottom:515.835867pt;}
.y131{bottom:517.821200pt;}
.y19{bottom:520.329200pt;}
.y71{bottom:520.332240pt;}
.y140{bottom:524.167867pt;}
.yc7{bottom:528.275467pt;}
.y112{bottom:528.968667pt;}
.y46{bottom:529.599867pt;}
.y15a{bottom:533.261333pt;}
.y70{bottom:536.334640pt;}
.y45{bottom:543.363867pt;}
.yc6{bottom:544.277867pt;}
.y111{bottom:544.997627pt;}
.y15c{bottom:552.141200pt;}
.y6f{bottom:552.363600pt;}
.y44{bottom:557.283867pt;}
.y18{bottom:557.609200pt;}
.yc5{bottom:560.280267pt;}
.y110{bottom:561.000027pt;}
.y6e{bottom:568.366000pt;}
.y43{bottom:571.047867pt;}
.yc4{bottom:576.309227pt;}
.y10f{bottom:577.002427pt;}
.y6d{bottom:584.368400pt;}
.yc3{bottom:592.311627pt;}
.y10e{bottom:593.004827pt;}
.y17{bottom:598.129200pt;}
.y8f{bottom:598.129333pt;}
.y42{bottom:599.714533pt;}
.y6c{bottom:600.370800pt;}
.yc2{bottom:608.314027pt;}
.y10d{bottom:609.007227pt;}
.y16{bottom:614.129200pt;}
.y8e{bottom:614.129333pt;}
.y6b{bottom:616.373200pt;}
.yc1{bottom:624.316427pt;}
.y10c{bottom:625.009627pt;}
.y6a{bottom:632.375600pt;}
.yc0{bottom:640.318827pt;}
.y10b{bottom:641.012027pt;}
.y13{bottom:645.489200pt;}
.y69{bottom:648.378000pt;}
.y41{bottom:654.592453pt;}
.ybf{bottom:656.321227pt;}
.y10a{bottom:657.014427pt;}
.yee{bottom:657.036027pt;}
.y68{bottom:664.380400pt;}
.y40{bottom:671.874533pt;}
.ybe{bottom:672.323627pt;}
.y109{bottom:673.016827pt;}
.yed{bottom:673.038427pt;}
.y67{bottom:680.382800pt;}
.y3f{bottom:685.154400pt;}
.ybd{bottom:688.326027pt;}
.yf7{bottom:689.019227pt;}
.yec{bottom:689.040827pt;}
.y66{bottom:696.385200pt;}
.ybc{bottom:704.328427pt;}
.yf6{bottom:705.021627pt;}
.yeb{bottom:705.043227pt;}
.y3e{bottom:706.754533pt;}
.y65{bottom:712.387600pt;}
.ybb{bottom:720.330827pt;}
.y108{bottom:721.063867pt;}
.yea{bottom:721.085467pt;}
.y64{bottom:728.429840pt;}
.y169{bottom:733.755120pt;}
.yba{bottom:736.333227pt;}
.ye9{bottom:737.066267pt;}
.y3d{bottom:744.034533pt;}
.y63{bottom:744.432240pt;}
.y168{bottom:747.037200pt;}
.yb9{bottom:752.375467pt;}
.ye8{bottom:753.068667pt;}
.y62{bottom:760.434640pt;}
.y167{bottom:760.480080pt;}
.yb8{bottom:768.377867pt;}
.ye7{bottom:769.071067pt;}
.y105{bottom:769.881147pt;}
.y166{bottom:773.762160pt;}
.y61{bottom:776.437040pt;}
.yb7{bottom:784.380267pt;}
.y3c{bottom:784.554533pt;}
.ye6{bottom:785.073467pt;}
.y165{bottom:787.044240pt;}
.y60{bottom:792.439440pt;}
.yb6{bottom:800.382667pt;}
.y164{bottom:800.487120pt;}
.y3b{bottom:800.554533pt;}
.ye5{bottom:801.075867pt;}
.y5f{bottom:808.441840pt;}
.y163{bottom:813.769200pt;}
.yb5{bottom:816.385067pt;}
.ye4{bottom:817.078267pt;}
.y5e{bottom:824.444240pt;}
.y162{bottom:827.051280pt;}
.yb4{bottom:832.387467pt;}
.ye3{bottom:833.080667pt;}
.y161{bottom:840.494160pt;}
.yb3{bottom:848.389867pt;}
.ye2{bottom:849.083067pt;}
.y160{bottom:853.776240pt;}
.y3{bottom:854.338533pt;}
.y5d{bottom:856.449040pt;}
.y36{bottom:861.341333pt;}
.y35{bottom:861.354667pt;}
.yf5{bottom:865.085467pt;}
.y15f{bottom:867.058320pt;}
.ye{bottom:873.341333pt;}
.yb{bottom:873.354667pt;}
.y1{bottom:879.110667pt;}
.yb2{bottom:880.394667pt;}
.y15e{bottom:880.501200pt;}
.ye1{bottom:881.087867pt;}
.y5c{bottom:888.613200pt;}
.yb1{bottom:888.613333pt;}
.y15d{bottom:909.808000pt;}
.ye0{bottom:912.474667pt;}
.y141{bottom:913.808000pt;}
.y2{bottom:918.559067pt;}
.y132{bottom:919.141333pt;}
.y5b{bottom:919.199867pt;}
.yb0{bottom:919.200000pt;}
.y8b{bottom:920.499333pt;}
.h7{height:-536.314667pt;}
.ha{height:-536.301333pt;}
.h16{height:-40.652000pt;}
.h1e{height:-40.650667pt;}
.h17{height:-40.638667pt;}
.h1f{height:-40.637333pt;}
.h8{height:18.663750pt;}
.h2a{height:23.996250pt;}
.h4{height:29.625000pt;}
.he{height:29.773125pt;}
.hc{height:29.794062pt;}
.h2c{height:29.883000pt;}
.h30{height:30.694375pt;}
.h5{height:32.000000pt;}
.h13{height:32.531250pt;}
.h6{height:33.328125pt;}
.h14{height:33.351562pt;}
.h9{height:34.359375pt;}
.h3{height:34.368000pt;}
.h29{height:34.676875pt;}
.h1a{height:36.001250pt;}
.h24{height:36.883125pt;}
.h15{height:36.909063pt;}
.h27{height:38.024375pt;}
.h2b{height:42.556250pt;}
.h25{height:42.560000pt;}
.h1c{height:42.658885pt;}
.h23{height:42.660058pt;}
.h28{height:42.720000pt;}
.h21{height:42.801925pt;}
.h1b{height:42.819098pt;}
.hf{height:44.468750pt;}
.h12{height:48.026250pt;}
.h11{height:55.892813pt;}
.h1d{height:55.893346pt;}
.hb{height:59.555625pt;}
.h10{height:63.145625pt;}
.h2{height:66.352000pt;}
.hd{height:138.614667pt;}
.h18{height:455.348000pt;}
.h20{height:455.349333pt;}
.h19{height:876.720000pt;}
.h2d{height:898.005333pt;}
.h26{height:898.636000pt;}
.h31{height:899.748000pt;}
.h22{height:901.469333pt;}
.h2f{height:903.748000pt;}
.h2e{height:909.081333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w8{width:-582.330667pt;}
.w9{width:-202.589333pt;}
.we{width:-170.666667pt;}
.wf{width:-133.882667pt;}
.w18{width:-86.082667pt;}
.w11{width:-67.306667pt;}
.w15{width:-58.682667pt;}
.w12{width:-53.402667pt;}
.wa{width:-42.229333pt;}
.w7{width:1.333333pt;}
.wb{width:2.757333pt;}
.w2{width:84.352000pt;}
.w4{width:160.346667pt;}
.w3{width:379.733333pt;}
.wd{width:456.320000pt;}
.w16{width:578.880000pt;}
.w17{width:581.080000pt;}
.w13{width:582.240000pt;}
.w14{width:607.038667pt;}
.w10{width:620.160000pt;}
.w6{width:722.982667pt;}
.w5{width:723.002667pt;}
.w19{width:724.336000pt;}
.wc{width:724.426667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x2f{left:-673.882667pt;}
.x4f{left:-667.162533pt;}
.x38{left:-665.882667pt;}
.x3f{left:-664.442667pt;}
.x39{left:-657.896267pt;}
.x46{left:-655.002667pt;}
.x30{left:-651.002667pt;}
.x4d{left:-649.882667pt;}
.x32{left:-640.570533pt;}
.x4e{left:-625.859147pt;}
.x37{left:-614.804747pt;}
.x29{left:-591.450667pt;}
.x40{left:-590.170667pt;}
.x31{left:-552.090667pt;}
.x34{left:-533.696000pt;}
.x33{left:-511.776000pt;}
.x2a{left:-505.535867pt;}
.x2c{left:-494.016000pt;}
.x35{left:-468.376000pt;}
.x2b{left:-456.376000pt;}
.x4a{left:-379.256000pt;}
.x36{left:-361.975360pt;}
.x41{left:-356.376000pt;}
.x2e{left:-203.549333pt;}
.x2d{left:-49.429333pt;}
.x10{left:-0.973333pt;}
.x0{left:0.000000pt;}
.x50{left:1.333333pt;}
.x11{left:2.666667pt;}
.x5{left:49.889733pt;}
.x6{left:50.834667pt;}
.x4{left:51.779467pt;}
.x27{left:52.959867pt;}
.x24{left:57.120000pt;}
.x8{left:58.986667pt;}
.x48{left:59.946667pt;}
.x25{left:65.106400pt;}
.x1c{left:67.773067pt;}
.x28{left:68.802907pt;}
.x42{left:70.506667pt;}
.x12{left:72.000000pt;}
.x9{left:75.232000pt;}
.xb{left:76.786667pt;}
.x51{left:78.325333pt;}
.x14{left:82.432000pt;}
.x1e{left:85.098667pt;}
.xd{left:88.306667pt;}
.x49{left:90.378667pt;}
.x43{left:94.516907pt;}
.x3c{left:95.850240pt;}
.x47{left:97.738667pt;}
.x4c{left:99.810187pt;}
.x52{left:102.327413pt;}
.x4b{left:105.632000pt;}
.x23{left:108.197920pt;}
.x1b{left:110.858667pt;}
.xc{left:125.946667pt;}
.x3a{left:135.466667pt;}
.xa{left:143.346667pt;}
.xf{left:153.146667pt;}
.x3b{left:165.893333pt;}
.x13{left:170.912000pt;}
.x1d{left:173.578667pt;}
.x18{left:189.306667pt;}
.x20{left:191.973333pt;}
.x2{left:209.887200pt;}
.x15{left:211.226667pt;}
.x1f{left:213.893333pt;}
.x3{left:220.881333pt;}
.x45{left:227.386533pt;}
.x19{left:254.626667pt;}
.x21{left:257.293333pt;}
.x1{left:259.715200pt;}
.x3e{left:328.066533pt;}
.x16{left:335.246667pt;}
.x17{left:343.906667pt;}
.x1a{left:361.027307pt;}
.x22{left:363.693973pt;}
.x7{left:483.779467pt;}
.xe{left:523.093333pt;}
.x26{left:724.336000pt;}
.x44{left:792.976000pt;}
.x3d{left:896.336000pt;}
}




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