
    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_156456ed2bcc634954dcb139.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_93da265acb452be36fabc605.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_212eaa5f26bfca54a682a12d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_f8eb7286ab0c0606ba4e38fe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.873535;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_a8a9fc39dd66ed3db6e3eb23.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_651cf6cf0e812d5b976801f4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.926270;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_e5a3c9ae2530b69e94297767.woff')format("woff");}.ff7{font-family:ff7;line-height:0.898438;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_2e7260df588476b98afd58ca.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_c22ca3ffd968389a9a060ac8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.886230;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_55806cb8a6b8be3a64e4ac10.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f480e08962d96b4436c8ee21.woff')format("woff");}.ffb{font-family:ffb;line-height:0.862305;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_7f0ad444f609903986cf757f.woff')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_f1b557d4fdc80118075b2cc4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.862793;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;}
.mb{transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250219,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250219,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250219,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);-ms-transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);-webkit-transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);}
.m9{transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);-ms-transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);-webkit-transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);}
.m7{transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,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:-4.421520px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.941600px;}
.v3{vertical-align:4.371600px;}
.v5{vertical-align:57.581280px;}
.v4{vertical-align:97.387920px;}
.ls6d{letter-spacing:-10.765440px;}
.ls6{letter-spacing:-9.059040px;}
.ls3b{letter-spacing:-6.928038px;}
.ls3e{letter-spacing:-5.465452px;}
.ls6c{letter-spacing:-3.672000px;}
.ls55{letter-spacing:-2.680537px;}
.ls4d{letter-spacing:-2.405252px;}
.ls3f{letter-spacing:-2.232368px;}
.ls6b{letter-spacing:-1.969749px;}
.ls35{letter-spacing:-1.770499px;}
.ls4e{letter-spacing:-1.276446px;}
.ls2e{letter-spacing:-1.231651px;}
.ls52{letter-spacing:-1.148801px;}
.ls3c{letter-spacing:-1.000717px;}
.ls42{letter-spacing:-0.889536px;}
.ls13{letter-spacing:-0.835288px;}
.ls43{letter-spacing:-0.800582px;}
.ls57{letter-spacing:-0.785858px;}
.ls36{letter-spacing:-0.769782px;}
.ls50{letter-spacing:-0.765868px;}
.ls30{letter-spacing:-0.692804px;}
.ls56{letter-spacing:-0.561327px;}
.ls14{letter-spacing:-0.556859px;}
.ls34{letter-spacing:-0.538847px;}
.ls54{letter-spacing:-0.510578px;}
.ls5e{letter-spacing:-0.476615px;}
.ls65{letter-spacing:-0.468228px;}
.ls33{letter-spacing:-0.461869px;}
.ls58{letter-spacing:-0.449062px;}
.ls10{letter-spacing:-0.432000px;}
.ls63{letter-spacing:-0.392850px;}
.ls2d{letter-spacing:-0.384891px;}
.lse{letter-spacing:-0.384480px;}
.ls5d{letter-spacing:-0.357461px;}
.ls64{letter-spacing:-0.351171px;}
.ls1d{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.319680px;}
.ls39{letter-spacing:-0.307913px;}
.ls16{letter-spacing:-0.278429px;}
.ls9{letter-spacing:-0.276480px;}
.lsb{letter-spacing:-0.240480px;}
.lsa{letter-spacing:-0.239760px;}
.ls3d{letter-spacing:-0.230935px;}
.ls61{letter-spacing:-0.227853px;}
.ls18{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.192240px;}
.ls6a{letter-spacing:-0.191520px;}
.ls60{letter-spacing:-0.178747px;}
.ls44{letter-spacing:-0.177907px;}
.ls67{letter-spacing:-0.175644px;}
.ls24{letter-spacing:-0.167760px;}
.ls3a{letter-spacing:-0.153956px;}
.ls7{letter-spacing:-0.144000px;}
.ls69{letter-spacing:-0.084240px;}
.ls2f{letter-spacing:-0.076978px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012024px;}
.ls27{letter-spacing:0.016837px;}
.ls2c{letter-spacing:0.017436px;}
.ls2a{letter-spacing:0.017755px;}
.ls4a{letter-spacing:0.020652px;}
.ls5b{letter-spacing:0.074632px;}
.ls31{letter-spacing:0.076978px;}
.ls41{letter-spacing:0.088954px;}
.ls1{letter-spacing:0.120240px;}
.ls1c{letter-spacing:0.131760px;}
.lsf{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.144288px;}
.ls5{letter-spacing:0.167760px;}
.ls66{letter-spacing:0.175586px;}
.ls5f{letter-spacing:0.178731px;}
.ls40{letter-spacing:0.192240px;}
.ls23{letter-spacing:0.201312px;}
.ls20{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.230935px;}
.ls3{letter-spacing:0.240480px;}
.ls53{letter-spacing:0.255289px;}
.ls72{letter-spacing:0.256320px;}
.ls68{letter-spacing:0.257184px;}
.ls5c{letter-spacing:0.257352px;}
.ls62{letter-spacing:0.261850px;}
.ls5a{letter-spacing:0.261900px;}
.ls1f{letter-spacing:0.264240px;}
.ls12{letter-spacing:0.278429px;}
.lsc{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.307913px;}
.ls17{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.335520px;}
.ls51{letter-spacing:0.382934px;}
.ls70{letter-spacing:0.384480px;}
.ls37{letter-spacing:0.384891px;}
.ls15{letter-spacing:0.556859px;}
.ls4f{letter-spacing:0.765868px;}
.ls59{letter-spacing:0.785858px;}
.ls1a{letter-spacing:0.959040px;}
.ls45{letter-spacing:0.978490px;}
.ls25{letter-spacing:1.342080px;}
.ls19{letter-spacing:1.646352px;}
.lsd{letter-spacing:2.448000px;}
.ls6e{letter-spacing:3.132000px;}
.ls2b{letter-spacing:17.354203px;}
.ls28{letter-spacing:17.354803px;}
.ls29{letter-spacing:17.363800px;}
.ls26{letter-spacing:21.600000px;}
.ls4b{letter-spacing:28.790192px;}
.ls22{letter-spacing:49.284000px;}
.ls71{letter-spacing:71.436384px;}
.ls4c{letter-spacing:105.726446px;}
.ls48{letter-spacing:229.027474px;}
.ls47{letter-spacing:233.211898px;}
.ls1e{letter-spacing:378.520560px;}
.ls6f{letter-spacing:388.517040px;}
.ls11{letter-spacing:419.073353px;}
.ls49{letter-spacing:573.266088px;}
.ls46{letter-spacing:996.171874px;}
.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;}
}
.ws87{word-spacing:-498.085937px;}
.ws8b{word-spacing:-286.633044px;}
.ws88{word-spacing:-116.605949px;}
.ws89{word-spacing:-114.513737px;}
.ws8a{word-spacing:-105.726446px;}
.ws5e{word-spacing:-61.722055px;}
.ws73{word-spacing:-53.634960px;}
.wsb7{word-spacing:-53.442720px;}
.ws35{word-spacing:-53.058240px;}
.ws3f{word-spacing:-46.972800px;}
.ws4c{word-spacing:-46.805040px;}
.ws7b{word-spacing:-45.442272px;}
.ws30{word-spacing:-44.115840px;}
.wsbd{word-spacing:-43.254000px;}
.wsb1{word-spacing:-42.677280px;}
.ws4f{word-spacing:-40.032000px;}
.ws4{word-spacing:-39.888000px;}
.ws3{word-spacing:-38.154240px;}
.ws39{word-spacing:-36.761040px;}
.wsac{word-spacing:-34.536266px;}
.ws5{word-spacing:-33.546960px;}
.ws6{word-spacing:-33.186240px;}
.ws27{word-spacing:-30.348000px;}
.ws28{word-spacing:-30.024000px;}
.ws29{word-spacing:-29.808000px;}
.ws9f{word-spacing:-29.700000px;}
.ws80{word-spacing:-29.613547px;}
.ws84{word-spacing:-29.230613px;}
.wsbe{word-spacing:-29.220480px;}
.ws7f{word-spacing:-28.847680px;}
.ws7d{word-spacing:-28.081812px;}
.ws7e{word-spacing:-27.698878px;}
.ws7c{word-spacing:-27.571234px;}
.ws3a{word-spacing:-26.621280px;}
.ws82{word-spacing:-26.167143px;}
.wsb4{word-spacing:-23.334480px;}
.ws21{word-spacing:-21.253444px;}
.ws97{word-spacing:-20.886525px;}
.ws9d{word-spacing:-20.822384px;}
.ws26{word-spacing:-20.418156px;}
.ws12{word-spacing:-20.304000px;}
.wsae{word-spacing:-20.232000px;}
.ws74{word-spacing:-20.192467px;}
.ws14{word-spacing:-20.160000px;}
.ws13{word-spacing:-20.016000px;}
.ws76{word-spacing:-19.925606px;}
.ws11{word-spacing:-19.584000px;}
.ws75{word-spacing:-19.213978px;}
.ws99{word-spacing:-18.463950px;}
.ws9e{word-spacing:-18.143316px;}
.ws98{word-spacing:-17.809200px;}
.ws5b{word-spacing:-17.781964px;}
.ws58{word-spacing:-17.628008px;}
.ws56{word-spacing:-17.474051px;}
.ws51{word-spacing:-17.397073px;}
.ws55{word-spacing:-17.320095px;}
.ws60{word-spacing:-17.243117px;}
.ws62{word-spacing:-17.089160px;}
.ws5c{word-spacing:-16.935204px;}
.ws59{word-spacing:-16.858226px;}
.ws96{word-spacing:-16.741097px;}
.ws65{word-spacing:-16.704269px;}
.ws5a{word-spacing:-16.627291px;}
.ws9c{word-spacing:-16.446510px;}
.ws64{word-spacing:-16.396357px;}
.wsad{word-spacing:-16.344000px;}
.ws94{word-spacing:-16.204905px;}
.ws52{word-spacing:-16.165422px;}
.ws95{word-spacing:-16.085752px;}
.ws9a{word-spacing:-15.919753px;}
.ws9b{word-spacing:-15.802696px;}
.ws57{word-spacing:-15.626575px;}
.ws6a{word-spacing:-15.164705px;}
.ws4d{word-spacing:-11.342160px;}
.ws61{word-spacing:-10.469035px;}
.wsa6{word-spacing:-6.492960px;}
.wsb2{word-spacing:-4.037040px;}
.wsa2{word-spacing:-3.780000px;}
.ws1f{word-spacing:-3.744000px;}
.ws69{word-spacing:-3.368431px;}
.wsaf{word-spacing:-3.268080px;}
.ws77{word-spacing:-3.024000px;}
.ws5f{word-spacing:-2.951082px;}
.wsb5{word-spacing:-2.527200px;}
.ws10{word-spacing:-2.525040px;}
.wsa8{word-spacing:-2.442960px;}
.ws54{word-spacing:-2.334192px;}
.ws17{word-spacing:-2.304000px;}
.ws5d{word-spacing:-2.212337px;}
.ws37{word-spacing:-2.160000px;}
.ws38{word-spacing:-2.016000px;}
.wsbc{word-spacing:-1.922400px;}
.ws8d{word-spacing:-1.914669px;}
.wsb0{word-spacing:-1.872000px;}
.ws66{word-spacing:-1.856361px;}
.ws48{word-spacing:-1.803600px;}
.wsaa{word-spacing:-1.684800px;}
.ws7a{word-spacing:-1.601165px;}
.ws36{word-spacing:-1.584000px;}
.ws49{word-spacing:-1.576800px;}
.ws43{word-spacing:-1.440000px;}
.wsba{word-spacing:-1.436400px;}
.ws2c{word-spacing:-1.392147px;}
.ws41{word-spacing:-1.153440px;}
.wsa7{word-spacing:-1.082160px;}
.wsb6{word-spacing:-1.010880px;}
.ws1e{word-spacing:-1.008000px;}
.ws2d{word-spacing:-0.961920px;}
.ws16{word-spacing:-0.864000px;}
.ws8{word-spacing:-0.838800px;}
.wsbf{word-spacing:-0.792720px;}
.wsb3{word-spacing:-0.792000px;}
.ws2f{word-spacing:-0.756000px;}
.ws18{word-spacing:-0.720000px;}
.ws63{word-spacing:-0.709354px;}
.ws2{word-spacing:-0.677376px;}
.ws15{word-spacing:-0.384480px;}
.ws8e{word-spacing:-0.382934px;}
.wsf{word-spacing:-0.360720px;}
.wsb{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.278429px;}
.ws47{word-spacing:-0.264240px;}
.ws8f{word-spacing:-0.255289px;}
.wsa9{word-spacing:-0.252720px;}
.ws2e{word-spacing:-0.240480px;}
.ws40{word-spacing:-0.239760px;}
.ws6e{word-spacing:-0.230935px;}
.ws4a{word-spacing:-0.216000px;}
.ws1{word-spacing:-0.201312px;}
.ws44{word-spacing:-0.192240px;}
.ws7{word-spacing:-0.167760px;}
.ws19{word-spacing:-0.144000px;}
.ws3d{word-spacing:-0.131760px;}
.wsa1{word-spacing:-0.130925px;}
.wsa4{word-spacing:-0.128592px;}
.ws45{word-spacing:-0.120240px;}
.ws83{word-spacing:-0.112265px;}
.ws3b{word-spacing:-0.108000px;}
.ws53{word-spacing:-0.076978px;}
.ws9{word-spacing:0.000000px;}
.ws6c{word-spacing:0.076978px;}
.ws1c{word-spacing:0.144000px;}
.ws4b{word-spacing:0.167760px;}
.wsa3{word-spacing:0.175644px;}
.ws79{word-spacing:0.177907px;}
.wsa0{word-spacing:0.178747px;}
.ws20{word-spacing:0.192240px;}
.wsbb{word-spacing:0.216000px;}
.ws67{word-spacing:0.230935px;}
.ws68{word-spacing:0.260549px;}
.wsc{word-spacing:0.276480px;}
.ws2b{word-spacing:0.278429px;}
.ws70{word-spacing:0.307913px;}
.wsa5{word-spacing:0.324000px;}
.ws4e{word-spacing:0.335520px;}
.ws3e{word-spacing:0.384480px;}
.ws6b{word-spacing:0.384891px;}
.ws1d{word-spacing:0.432000px;}
.ws93{word-spacing:0.449062px;}
.ws71{word-spacing:0.461869px;}
.ws50{word-spacing:0.503280px;}
.ws6f{word-spacing:0.538847px;}
.ws3c{word-spacing:0.540000px;}
.ws91{word-spacing:0.561327px;}
.ws6d{word-spacing:0.692804px;}
.wse{word-spacing:0.719280px;}
.ws46{word-spacing:0.720000px;}
.wsb9{word-spacing:0.766080px;}
.ws92{word-spacing:0.785858px;}
.ws78{word-spacing:0.800582px;}
.ws90{word-spacing:1.148801px;}
.ws1a{word-spacing:1.152000px;}
.wsd{word-spacing:1.198800px;}
.wsa{word-spacing:1.872000px;}
.ws34{word-spacing:2.077920px;}
.wsab{word-spacing:2.394000px;}
.ws8c{word-spacing:2.405252px;}
.ws85{word-spacing:2.574880px;}
.ws1b{word-spacing:2.592000px;}
.ws86{word-spacing:2.597100px;}
.ws33{word-spacing:2.717280px;}
.ws32{word-spacing:3.516480px;}
.ws42{word-spacing:3.689280px;}
.ws31{word-spacing:4.155840px;}
.ws72{word-spacing:5.465452px;}
.ws0{word-spacing:18.453600px;}
.ws22{word-spacing:312.787240px;}
.ws23{word-spacing:325.833531px;}
.ws25{word-spacing:332.382363px;}
.ws24{word-spacing:348.037902px;}
.wsb8{word-spacing:689.136840px;}
.ws81{word-spacing:894.791228px;}
._1d{margin-left:-87.276960px;}
._13{margin-left:-16.258896px;}
._c{margin-left:-13.898952px;}
._3{margin-left:-12.749760px;}
._d{margin-left:-10.993248px;}
._7{margin-left:-9.840384px;}
._9{margin-left:-7.887816px;}
._f{margin-left:-6.783840px;}
._6{margin-left:-5.182128px;}
._8{margin-left:-3.711888px;}
._5{margin-left:-2.288160px;}
._1{margin-left:-1.040112px;}
._2{width:1.727928px;}
._4{width:3.168000px;}
._15{width:5.198483px;}
._14{width:6.530889px;}
._0{width:8.220240px;}
._12{width:10.190952px;}
._1c{width:11.722176px;}
._11{width:23.564520px;}
._17{width:104.596652px;}
._1a{width:105.726446px;}
._18{width:118.851590px;}
._19{width:142.828339px;}
._e{width:178.752240px;}
._1e{width:219.388680px;}
._16{width:246.337041px;}
._10{width:368.141832px;}
._1f{width:388.517040px;}
._1b{width:509.724316px;}
._a{width:518.941200px;}
._b{width:543.130200px;}
.fc27{color:rgb(46,45,77);}
.fc26{color:rgb(97,103,113);}
.fc24{color:rgb(157,195,230);}
.fc22{color:rgb(68,114,196);}
.fc21{color:rgb(255,93,105);}
.fc28{color:rgb(40,128,194);}
.fc1f{color:rgb(190,69,20);}
.fc25{color:rgb(165,165,165);}
.fc1e{color:rgb(0,152,168);}
.fc1d{color:rgb(255,109,63);}
.fcd{color:transparent;}
.fc17{color:rgb(9,103,255);}
.fca{color:rgb(192,0,0);}
.fc8{color:rgb(255,0,0);}
.fc14{color:rgb(104,79,255);}
.fce{color:rgb(114,192,44);}
.fc1{color:rgb(0,170,218);}
.fc20{color:rgb(255,192,0);}
.fcc{color:rgb(191,191,191);}
.fc7{color:rgb(46,46,46);}
.fc11{color:rgb(0,112,192);}
.fc9{color:rgb(0,176,80);}
.fc6{color:rgb(0,0,0);}
.fc16{color:rgb(200,193,54);}
.fcb{color:rgb(0,32,96);}
.fc3{color:rgb(92,92,92);}
.fc0{color:rgb(91,91,91);}
.fc2{color:rgb(0,170,220);}
.fc1a{color:rgb(250,137,0);}
.fcf{color:rgb(127,96,0);}
.fc12{color:rgb(255,67,67);}
.fc13{color:rgb(36,218,0);}
.fc23{color:rgb(204,123,110);}
.fc18{color:rgb(75,144,255);}
.fc15{color:rgb(12,238,152);}
.fc4{color:rgb(137,138,137);}
.fc1c{color:rgb(221,226,0);}
.fc19{color:rgb(255,45,255);}
.fc5{color:rgb(255,20,9);}
.fc10{color:rgb(56,87,35);}
.fc1b{color:rgb(81,161,119);}
.fs1a{font-size:58.528504px;}
.fs1b{font-size:58.548000px;}
.fs15{font-size:59.576858px;}
.fs16{font-size:59.582400px;}
.fs1d{font-size:64.296000px;}
.fs1e{font-size:64.338000px;}
.fs18{font-size:65.462400px;}
.fs19{font-size:65.475000px;}
.fs6{font-size:72.000000px;}
.fs1c{font-size:74.632200px;}
.fs17{font-size:75.951000px;}
.fsd{font-size:76.978200px;}
.fs1f{font-size:84.240000px;}
.fse{font-size:88.953600px;}
.fs7{font-size:92.809800px;}
.fsb{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fs14{font-size:112.265400px;}
.fs4{font-size:120.240000px;}
.fs12{font-size:127.644600px;}
.fs21{font-size:128.160000px;}
.fs20{font-size:131.316600px;}
.fsa{font-size:131.760000px;}
.fs2{font-size:138.240000px;}
.fsf{font-size:139.480800px;}
.fs11{font-size:141.485400px;}
.fs1{font-size:144.000000px;}
.fs9{font-size:159.840000px;}
.fs0{font-size:167.760000px;}
.fs13{font-size:169.018800px;}
.fs5{font-size:192.240000px;}
.fs10{font-size:201.072000px;}
.fs3{font-size:239.760000px;}
.fsc{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:7.227900px;}
.y3c{bottom:7.590000px;}
.y3d{bottom:7.854000px;}
.yf{bottom:8.448150px;}
.y18{bottom:8.452350px;}
.y5f{bottom:8.454000px;}
.y121{bottom:8.873250px;}
.y61{bottom:9.038850px;}
.y35{bottom:9.852150px;}
.y47{bottom:9.856350px;}
.y133{bottom:10.067400px;}
.y11e{bottom:10.091700px;}
.y2e{bottom:10.159950px;}
.y122{bottom:10.741350px;}
.y11f{bottom:11.694000px;}
.y43{bottom:12.372000px;}
.ya{bottom:13.324020px;}
.yf6{bottom:13.578244px;}
.ye5{bottom:13.802569px;}
.y10f{bottom:14.349600px;}
.yc{bottom:15.012120px;}
.y115{bottom:15.085650px;}
.y113{bottom:15.086100px;}
.yf5{bottom:16.145007px;}
.ye4{bottom:16.414716px;}
.y1a{bottom:20.127300px;}
.y4d{bottom:28.827900px;}
.yc8{bottom:30.052800px;}
.yc5{bottom:30.599250px;}
.y132{bottom:31.667400px;}
.y2d{bottom:31.759950px;}
.y3e{bottom:33.972000px;}
.ye{bottom:33.972150px;}
.ye0{bottom:34.570350px;}
.y3b{bottom:34.572000px;}
.yf3{bottom:40.746600px;}
.ye2{bottom:41.451300px;}
.y119{bottom:45.208950px;}
.y60{bottom:45.355500px;}
.y9{bottom:49.335900px;}
.y11b{bottom:51.012000px;}
.yb{bottom:51.024000px;}
.y2c{bottom:53.359950px;}
.y10d{bottom:53.366280px;}
.y140{bottom:56.940780px;}
.yb4{bottom:56.965500px;}
.yf4{bottom:60.535513px;}
.ye3{bottom:61.590109px;}
.y1d{bottom:63.457200px;}
.yd2{bottom:66.661050px;}
.yf1{bottom:67.011450px;}
.y11d{bottom:67.336350px;}
.ya8{bottom:73.264800px;}
.y112{bottom:73.914000px;}
.y10c{bottom:78.575100px;}
.y104{bottom:80.310750px;}
.y11a{bottom:83.412000px;}
.y56{bottom:83.912730px;}
.y114{bottom:88.198500px;}
.yca{bottom:89.063100px;}
.yf7{bottom:93.846150px;}
.ye6{bottom:95.489100px;}
.yaf{bottom:95.819400px;}
.ya7{bottom:96.219150px;}
.yff{bottom:96.768450px;}
.yec{bottom:98.463000px;}
.yf0{bottom:99.411450px;}
.y11c{bottom:99.736350px;}
.y111{bottom:107.459100px;}
.y23{bottom:111.220500px;}
.y103{bottom:112.710750px;}
.y55{bottom:112.712550px;}
.y117{bottom:113.005500px;}
.yc6{bottom:116.382600px;}
.ya6{bottom:119.173500px;}
.y13f{bottom:120.476100px;}
.yf8{bottom:126.018276px;}
.yc9{bottom:126.763950px;}
.y6{bottom:128.833350px;}
.y110{bottom:129.059100px;}
.y70{bottom:131.462100px;}
.y4c{bottom:132.382500px;}
.y10b{bottom:134.492250px;}
.y3f{bottom:135.615900px;}
.y24{bottom:142.999500px;}
.y98{bottom:143.055150px;}
.ye7{bottom:144.599893px;}
.y118{bottom:145.441500px;}
.yf2{bottom:146.163000px;}
.yad{bottom:146.631000px;}
.ye1{bottom:149.761500px;}
.y1e{bottom:152.632650px;}
.y4b{bottom:153.982500px;}
.y6f{bottom:154.416450px;}
.yf9{bottom:158.190402px;}
.ya5{bottom:160.676700px;}
.y4f{bottom:164.340000px;}
.y9b{bottom:165.545850px;}
.y97{bottom:166.009650px;}
.y5{bottom:167.533350px;}
.y5e{bottom:172.432650px;}
.yda{bottom:174.300000px;}
.y4a{bottom:175.582500px;}
.y6e{bottom:177.370800px;}
.y19{bottom:183.141000px;}
.ya4{bottom:183.631050px;}
.y13e{bottom:184.203660px;}
.y9a{bottom:188.500200px;}
.y96{bottom:188.964000px;}
.yfa{bottom:190.362528px;}
.y10a{bottom:190.991850px;}
.ye8{bottom:193.710686px;}
.ycc{bottom:196.702200px;}
.y49{bottom:197.182500px;}
.y131{bottom:200.625390px;}
.y73{bottom:201.020850px;}
.y4{bottom:204.973350px;}
.y130{bottom:205.078230px;}
.ydd{bottom:207.630000px;}
.yd9{bottom:208.176300px;}
.y78{bottom:209.367900px;}
.y99{bottom:211.454550px;}
.y9f{bottom:212.150100px;}
.y1f{bottom:212.455800px;}
.y5d{bottom:215.632650px;}
.yfb{bottom:222.534654px;}
.y116{bottom:223.147500px;}
.y29{bottom:223.848600px;}
.y72{bottom:223.975200px;}
.y17{bottom:224.255850px;}
.y36{bottom:224.752950px;}
.yc7{bottom:225.114450px;}
.y77{bottom:232.322250px;}
.y12f{bottom:233.878050px;}
.ycb{bottom:234.403050px;}
.y9e{bottom:235.104450px;}
.y81{bottom:236.032050px;}
.yd8{bottom:242.052600px;}
.ye9{bottom:242.821480px;}
.ydf{bottom:243.145350px;}
.y3{bottom:243.853350px;}
.y71{bottom:246.929550px;}
.y13d{bottom:247.738980px;}
.y109{bottom:248.322150px;}
.yfc{bottom:254.706780px;}
.y76{bottom:255.276600px;}
.y9d{bottom:258.058800px;}
.y80{bottom:258.986400px;}
.yb1{bottom:260.931600px;}
.y16{bottom:267.455850px;}
.y20{bottom:272.278950px;}
.y75{bottom:278.230950px;}
.y9c{bottom:281.013300px;}
.y7f{bottom:281.940750px;}
.y27{bottom:282.787680px;}
.yfd{bottom:286.878906px;}
.yb0{bottom:287.739450px;}
.ycf{bottom:289.042200px;}
.y5c{bottom:289.559850px;}
.y37{bottom:290.340900px;}
.y6d{bottom:290.519700px;}
.yea{bottom:291.932273px;}
.yd7{bottom:294.506250px;}
.y2{bottom:297.114270px;}
.y8a{bottom:298.402950px;}
.y74{bottom:301.185300px;}
.y101{bottom:303.776550px;}
.ydc{bottom:304.887450px;}
.yb3{bottom:309.368550px;}
.yee{bottom:309.947700px;}
.y13b{bottom:310.562400px;}
.y15{bottom:310.655850px;}
.y13c{bottom:311.274300px;}
.y86{bottom:313.242150px;}
.y6c{bottom:313.474050px;}
.y7b{bottom:318.343050px;}
.y89{bottom:321.357300px;}
.y8e{bottom:325.067100px;}
.yce{bottom:327.289650px;}
.yd6{bottom:328.382400px;}
.y39{bottom:329.749380px;}
.y1b{bottom:332.101950px;}
.y13a{bottom:332.162400px;}
.y12e{bottom:333.782370px;}
.yb2{bottom:336.176400px;}
.y85{bottom:336.196500px;}
.y6b{bottom:336.428400px;}
.y32{bottom:337.385130px;}
.ydb{bottom:338.763900px;}
.y5b{bottom:340.319850px;}
.y7a{bottom:341.297400px;}
.y1{bottom:342.493350px;}
.y88{bottom:344.311650px;}
.y102{bottom:344.470350px;}
.y8d{bottom:348.021450px;}
.yc3{bottom:351.330900px;}
.yef{bottom:351.360750px;}
.y128{bottom:351.952830px;}
.y14{bottom:353.855850px;}
.y26{bottom:354.995400px;}
.y38{bottom:358.549200px;}
.y84{bottom:359.150850px;}
.y6a{bottom:359.382600px;}
.yd5{bottom:362.258700px;}
.y12d{bottom:362.582190px;}
.y79{bottom:364.251750px;}
.ycd{bottom:364.990650px;}
.y31{bottom:366.184950px;}
.y87{bottom:367.266000px;}
.yae{bottom:370.600200px;}
.y8c{bottom:370.975800px;}
.yde{bottom:378.103950px;}
.y30{bottom:379.431150px;}
.y127{bottom:380.752650px;}
.y83{bottom:382.105200px;}
.y100{bottom:385.164300px;}
.y94{bottom:389.524650px;}
.y1c{bottom:390.247800px;}
.y12c{bottom:391.382010px;}
.y41{bottom:391.721730px;}
.y5a{bottom:392.320770px;}
.yed{bottom:392.773800px;}
.y69{bottom:393.002700px;}
.y8b{bottom:393.930150px;}
.y13{bottom:397.055850px;}
.yd4{bottom:402.691500px;}
.y82{bottom:405.059550px;}
.y90{bottom:405.987000px;}
.y10e{bottom:408.008850px;}
.y93{bottom:412.479150px;}
.y68{bottom:415.957050px;}
.yfe{bottom:417.655050px;}
.y40{bottom:420.521550px;}
.yac{bottom:421.521750px;}
.yeb{bottom:426.002250px;}
.y8f{bottom:428.941350px;}
.y92{bottom:435.433500px;}
.y59{bottom:437.699850px;}
.y67{bottom:438.911400px;}
.y144{bottom:440.100630px;}
.y12{bottom:440.255850px;}
.yab{bottom:444.476100px;}
.yd1{bottom:445.310100px;}
.y91{bottom:458.387850px;}
.y66{bottom:461.865750px;}
.yaa{bottom:467.430300px;}
.yc4{bottom:477.000900px;}
.yd0{bottom:483.011100px;}
.y11{bottom:483.455850px;}
.y65{bottom:484.820100px;}
.y8{bottom:485.657460px;}
.ya9{bottom:490.384800px;}
.y139{bottom:491.039850px;}
.y44{bottom:492.127500px;}
.y126{bottom:502.232760px;}
.y143{bottom:503.640630px;}
.ya3{bottom:504.064650px;}
.y12b{bottom:506.126430px;}
.y64{bottom:507.774450px;}
.y46{bottom:508.697550px;}
.y54{bottom:516.953550px;}
.y28{bottom:519.398250px;}
.y7e{bottom:524.700450px;}
.y10{bottom:526.655850px;}
.ya2{bottom:527.019150px;}
.y138{bottom:529.919850px;}
.y125{bottom:531.032580px;}
.y22{bottom:532.448970px;}
.y12a{bottom:534.926250px;}
.y25{bottom:539.947500px;}
.y63{bottom:547.422900px;}
.y7d{bottom:547.654800px;}
.yd3{bottom:549.670950px;}
.ya1{bottom:549.973350px;}
.y7{bottom:550.452600px;}
.y58{bottom:558.479850px;}
.y106{bottom:559.647000px;}
.y124{bottom:559.832400px;}
.yc2{bottom:562.784250px;}
.y129{bottom:563.726070px;}
.y95{bottom:566.435550px;}
.y142{bottom:567.175950px;}
.y21{bottom:568.460850px;}
.y137{bottom:568.799850px;}
.y62{bottom:570.377250px;}
.y7c{bottom:570.609150px;}
.ya0{bottom:572.927850px;}
.y53{bottom:577.433550px;}
.y2a{bottom:581.718150px;}
.y34{bottom:586.243050px;}
.y105{bottom:592.047000px;}
.y136{bottom:601.199850px;}
.y123{bottom:608.449200px;}
.y120{bottom:611.505750px;}
.y57{bottom:618.779850px;}
.y33{bottom:625.843200px;}
.y108{bottom:629.412930px;}
.y2f{bottom:636.049650px;}
.y52{bottom:637.733550px;}
.y135{bottom:640.079850px;}
.ybe{bottom:641.464650px;}
.y107{bottom:641.797650px;}
.y45{bottom:653.218650px;}
.y3a{bottom:659.864250px;}
.y50{bottom:659.921550px;}
.yb9{bottom:661.134600px;}
.y51{bottom:665.200740px;}
.y141{bottom:670.413750px;}
.y134{bottom:678.959850px;}
.ybd{bottom:680.258250px;}
.yb8{bottom:699.382050px;}
.y48{bottom:701.545500px;}
.ybc{bottom:718.505700px;}
.yd{bottom:723.882000px;}
.y2b{bottom:729.184050px;}
.y42{bottom:736.032000px;}
.yb7{bottom:737.629350px;}
.ybb{bottom:756.753150px;}
.yc0{bottom:803.196300px;}
.yb6{bottom:830.515950px;}
.yba{bottom:831.062400px;}
.ybf{bottom:832.155150px;}
.yb5{bottom:956.185950px;}
.yc1{bottom:999.897150px;}
.h31{height:42.610351px;}
.h32{height:42.624545px;}
.h2b{height:43.373582px;}
.h2c{height:43.377616px;}
.h34{height:46.809246px;}
.h2e{height:47.658417px;}
.h1a{height:53.523905px;}
.h33{height:54.334282px;}
.h1b{height:55.252907px;}
.h1c{height:55.253507px;}
.h2d{height:55.294405px;}
.h35{height:57.678012px;}
.h2f{height:58.697314px;}
.h1f{height:60.894994px;}
.h1e{height:61.850550px;}
.hc{height:63.534834px;}
.hd{height:64.531814px;}
.h9{height:64.546875px;}
.h17{height:64.548075px;}
.h3a{height:64.554675px;}
.ha{height:64.563675px;}
.h37{height:69.715898px;}
.h36{height:75.519844px;}
.hf{height:77.308594px;}
.h10{height:78.626953px;}
.h29{height:80.581122px;}
.h15{height:85.847344px;}
.h26{height:87.381704px;}
.he{height:87.538008px;}
.h25{height:88.752886px;}
.h22{height:92.964498px;}
.h28{height:93.124486px;}
.h14{height:96.820312px;}
.h24{height:98.376567px;}
.h21{height:100.115613px;}
.h6{height:107.793281px;}
.h7{height:107.840801px;}
.h27{height:115.705253px;}
.h39{height:117.723280px;}
.h13{height:118.120781px;}
.h2{height:122.133867px;}
.h4{height:123.930000px;}
.h3{height:129.093750px;}
.h3c{height:137.984766px;}
.h23{height:139.807875px;}
.h12{height:143.294062px;}
.h3e{height:149.571124px;}
.h1{height:150.394219px;}
.h11{height:152.335819px;}
.h16{height:167.761758px;}
.h8{height:172.340156px;}
.h3b{height:183.235264px;}
.h3d{height:183.729375px;}
.h38{height:211.494000px;}
.h5{height:214.941094px;}
.h18{height:236.887031px;}
.hb{height:419.599500px;}
.h1d{height:440.250000px;}
.h30{height:448.537500px;}
.h2a{height:457.431000px;}
.h20{height:592.428000px;}
.h19{height:597.042000px;}
.h0{height:810.000000px;}
.w7{width:211.366500px;}
.w6{width:273.855000px;}
.w5{width:278.821500px;}
.w3{width:689.475000px;}
.w1{width:706.083000px;}
.w4{width:1295.646000px;}
.w2{width:1358.230500px;}
.w0{width:1440.000000px;}
.x62{left:-19.242600px;}
.x0{left:0.000000px;}
.x7{left:10.804500px;}
.x13{left:14.109150px;}
.x7d{left:28.966800px;}
.x4{left:32.400000px;}
.x7a{left:40.109700px;}
.x5{left:41.522250px;}
.x39{left:43.063650px;}
.x7b{left:45.068986px;}
.x36{left:46.442850px;}
.xa7{left:47.478600px;}
.x6b{left:59.125350px;}
.x77{left:60.600900px;}
.x31{left:69.233250px;}
.x1{left:71.586900px;}
.x94{left:76.743450px;}
.x61{left:84.148950px;}
.xb2{left:85.500000px;}
.x21{left:96.562500px;}
.x52{left:99.247800px;}
.xa9{left:101.478600px;}
.x85{left:102.714000px;}
.x7e{left:105.230700px;}
.x51{left:109.509150px;}
.x40{left:110.797500px;}
.x6c{left:112.546650px;}
.x65{left:114.218400px;}
.x64{left:116.103300px;}
.x66{left:118.468950px;}
.x63{left:119.654550px;}
.x83{left:123.814960px;}
.x86{left:124.896150px;}
.x78{left:126.060042px;}
.x7f{left:127.160550px;}
.x53{left:130.360950px;}
.x1f{left:139.187850px;}
.x7c{left:142.216950px;}
.x1b{left:144.883650px;}
.x30{left:149.522250px;}
.x1a{left:162.223650px;}
.x84{left:165.921720px;}
.xaa{left:167.349600px;}
.x79{left:168.930725px;}
.x3d{left:171.477600px;}
.x80{left:172.493250px;}
.x76{left:177.613500px;}
.x81{left:184.677900px;}
.x60{left:218.110350px;}
.x14{left:240.241050px;}
.x9b{left:243.783750px;}
.xa8{left:246.009600px;}
.x93{left:250.231500px;}
.x69{left:251.295750px;}
.x6a{left:252.481200px;}
.x67{left:253.644900px;}
.x9a{left:258.714750px;}
.x68{left:263.140500px;}
.x3e{left:271.215900px;}
.x2a{left:273.481650px;}
.x8b{left:284.051700px;}
.x1c{left:299.249130px;}
.x17{left:313.829850px;}
.x10{left:320.172750px;}
.x16{left:328.117200px;}
.xa4{left:352.748100px;}
.x54{left:356.529000px;}
.xf{left:360.861000px;}
.xa3{left:380.638200px;}
.x11{left:391.158600px;}
.x56{left:392.462550px;}
.x3f{left:394.091400px;}
.x2d{left:401.845950px;}
.x15{left:403.085250px;}
.x12{left:410.878800px;}
.x2f{left:413.214750px;}
.x3b{left:415.411950px;}
.x37{left:427.622250px;}
.x9f{left:428.972700px;}
.x55{left:431.118900px;}
.x20{left:456.486900px;}
.xa6{left:459.356340px;}
.x42{left:467.810550px;}
.x41{left:475.121550px;}
.x24{left:505.392750px;}
.x3c{left:509.618700px;}
.xa5{left:524.688600px;}
.xb1{left:540.637230px;}
.xb0{left:559.188390px;}
.x8d{left:561.318750px;}
.x96{left:574.891650px;}
.x33{left:580.641600px;}
.x8c{left:587.722500px;}
.x32{left:603.508950px;}
.x43{left:604.600350px;}
.xae{left:612.486930px;}
.x44{left:616.095600px;}
.x97{left:623.131650px;}
.xad{left:625.078650px;}
.x18{left:629.154900px;}
.x99{left:634.725150px;}
.x2b{left:638.414550px;}
.x2c{left:640.928250px;}
.x8f{left:644.719410px;}
.x8e{left:650.336250px;}
.x2e{left:656.401740px;}
.x6e{left:664.243200px;}
.x71{left:665.663550px;}
.x70{left:673.918800px;}
.x72{left:675.339300px;}
.x4f{left:683.385300px;}
.x19{left:684.666900px;}
.x89{left:691.352700px;}
.xaf{left:700.148370px;}
.x6f{left:714.807000px;}
.x98{left:716.569650px;}
.x1e{left:718.003950px;}
.x50{left:720.000000px;}
.x58{left:723.122550px;}
.x5c{left:755.545500px;}
.xb{left:763.622550px;}
.x6d{left:768.108150px;}
.x90{left:769.115700px;}
.xc{left:770.642550px;}
.xa{left:773.342550px;}
.x46{left:784.592400px;}
.x9{left:793.322550px;}
.x59{left:798.769200px;}
.x5b{left:800.165400px;}
.x8{left:804.482550px;}
.x35{left:822.085650px;}
.x23{left:823.821390px;}
.x22{left:835.168950px;}
.x47{left:841.899150px;}
.x34{left:850.345950px;}
.xac{left:851.399400px;}
.xe{left:852.722550px;}
.x95{left:865.845000px;}
.xab{left:867.239400px;}
.x5a{left:876.619500px;}
.x3{left:887.143920px;}
.x48{left:894.483300px;}
.x8a{left:897.275700px;}
.x57{left:904.797300px;}
.x9c{left:909.701850px;}
.x9d{left:918.692850px;}
.x45{left:919.911450px;}
.x2{left:932.324100px;}
.xd{left:939.662550px;}
.x88{left:950.945550px;}
.x49{left:953.051850px;}
.xa2{left:959.852700px;}
.xa0{left:979.842600px;}
.x82{left:986.742000px;}
.x4b{left:987.966750px;}
.x9e{left:990.902850px;}
.x87{left:1000.625550px;}
.xa1{left:1019.798460px;}
.x4a{left:1021.656750px;}
.x75{left:1022.703900px;}
.x73{left:1047.136350px;}
.x74{left:1048.360050px;}
.x29{left:1058.324490px;}
.x4e{left:1067.034450px;}
.x28{left:1068.953850px;}
.x4c{left:1111.029900px;}
.x5d{left:1123.216650px;}
.x5f{left:1141.653750px;}
.x1d{left:1144.325550px;}
.x91{left:1146.318900px;}
.x5e{left:1169.961450px;}
.x27{left:1218.826650px;}
.x3a{left:1221.658800px;}
.x38{left:1234.789950px;}
.x26{left:1239.011550px;}
.x4d{left:1256.830800px;}
.x92{left:1286.178900px;}
.x25{left:1408.900500px;}
.x6{left:1418.980500px;}
@media print{
.v2{vertical-align:-3.930240pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.725867pt;}
.v3{vertical-align:3.885867pt;}
.v5{vertical-align:51.183360pt;}
.v4{vertical-align:86.567040pt;}
.ls6d{letter-spacing:-9.569280pt;}
.ls6{letter-spacing:-8.052480pt;}
.ls3b{letter-spacing:-6.158256pt;}
.ls3e{letter-spacing:-4.858180pt;}
.ls6c{letter-spacing:-3.264000pt;}
.ls55{letter-spacing:-2.382699pt;}
.ls4d{letter-spacing:-2.138002pt;}
.ls3f{letter-spacing:-1.984327pt;}
.ls6b{letter-spacing:-1.750888pt;}
.ls35{letter-spacing:-1.573777pt;}
.ls4e{letter-spacing:-1.134619pt;}
.ls2e{letter-spacing:-1.094801pt;}
.ls52{letter-spacing:-1.021157pt;}
.ls3c{letter-spacing:-0.889526pt;}
.ls42{letter-spacing:-0.790699pt;}
.ls13{letter-spacing:-0.742478pt;}
.ls43{letter-spacing:-0.711629pt;}
.ls57{letter-spacing:-0.698540pt;}
.ls36{letter-spacing:-0.684251pt;}
.ls50{letter-spacing:-0.680771pt;}
.ls30{letter-spacing:-0.615826pt;}
.ls56{letter-spacing:-0.498957pt;}
.ls14{letter-spacing:-0.494986pt;}
.ls34{letter-spacing:-0.478975pt;}
.ls54{letter-spacing:-0.453847pt;}
.ls5e{letter-spacing:-0.423658pt;}
.ls65{letter-spacing:-0.416203pt;}
.ls33{letter-spacing:-0.410550pt;}
.ls58{letter-spacing:-0.399166pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls63{letter-spacing:-0.349200pt;}
.ls2d{letter-spacing:-0.342125pt;}
.lse{letter-spacing:-0.341760pt;}
.ls5d{letter-spacing:-0.317743pt;}
.ls64{letter-spacing:-0.312152pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.284160pt;}
.ls39{letter-spacing:-0.273700pt;}
.ls16{letter-spacing:-0.247493pt;}
.ls9{letter-spacing:-0.245760pt;}
.lsb{letter-spacing:-0.213760pt;}
.lsa{letter-spacing:-0.213120pt;}
.ls3d{letter-spacing:-0.205275pt;}
.ls61{letter-spacing:-0.202536pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.170880pt;}
.ls6a{letter-spacing:-0.170240pt;}
.ls60{letter-spacing:-0.158886pt;}
.ls44{letter-spacing:-0.158140pt;}
.ls67{letter-spacing:-0.156128pt;}
.ls24{letter-spacing:-0.149120pt;}
.ls3a{letter-spacing:-0.136850pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls69{letter-spacing:-0.074880pt;}
.ls2f{letter-spacing:-0.068425pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010688pt;}
.ls27{letter-spacing:0.014966pt;}
.ls2c{letter-spacing:0.015499pt;}
.ls2a{letter-spacing:0.015782pt;}
.ls4a{letter-spacing:0.018357pt;}
.ls5b{letter-spacing:0.066340pt;}
.ls31{letter-spacing:0.068425pt;}
.ls41{letter-spacing:0.079070pt;}
.ls1{letter-spacing:0.106880pt;}
.ls1c{letter-spacing:0.117120pt;}
.lsf{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.128256pt;}
.ls5{letter-spacing:0.149120pt;}
.ls66{letter-spacing:0.156076pt;}
.ls5f{letter-spacing:0.158872pt;}
.ls40{letter-spacing:0.170880pt;}
.ls23{letter-spacing:0.178944pt;}
.ls20{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.205275pt;}
.ls3{letter-spacing:0.213760pt;}
.ls53{letter-spacing:0.226924pt;}
.ls72{letter-spacing:0.227840pt;}
.ls68{letter-spacing:0.228608pt;}
.ls5c{letter-spacing:0.228757pt;}
.ls62{letter-spacing:0.232755pt;}
.ls5a{letter-spacing:0.232800pt;}
.ls1f{letter-spacing:0.234880pt;}
.ls12{letter-spacing:0.247493pt;}
.lsc{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.273700pt;}
.ls17{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.298240pt;}
.ls51{letter-spacing:0.340386pt;}
.ls70{letter-spacing:0.341760pt;}
.ls37{letter-spacing:0.342125pt;}
.ls15{letter-spacing:0.494986pt;}
.ls4f{letter-spacing:0.680771pt;}
.ls59{letter-spacing:0.698540pt;}
.ls1a{letter-spacing:0.852480pt;}
.ls45{letter-spacing:0.869769pt;}
.ls25{letter-spacing:1.192960pt;}
.ls19{letter-spacing:1.463424pt;}
.lsd{letter-spacing:2.176000pt;}
.ls6e{letter-spacing:2.784000pt;}
.ls2b{letter-spacing:15.425958pt;}
.ls28{letter-spacing:15.426491pt;}
.ls29{letter-spacing:15.434488pt;}
.ls26{letter-spacing:19.200000pt;}
.ls4b{letter-spacing:25.591282pt;}
.ls22{letter-spacing:43.808000pt;}
.ls71{letter-spacing:63.499008pt;}
.ls4c{letter-spacing:93.979063pt;}
.ls48{letter-spacing:203.579977pt;}
.ls47{letter-spacing:207.299465pt;}
.ls1e{letter-spacing:336.462720pt;}
.ls6f{letter-spacing:345.348480pt;}
.ls11{letter-spacing:372.509647pt;}
.ls49{letter-spacing:509.569856pt;}
.ls46{letter-spacing:885.486110pt;}
.ws87{word-spacing:-442.743055pt;}
.ws8b{word-spacing:-254.784928pt;}
.ws88{word-spacing:-103.649732pt;}
.ws89{word-spacing:-101.789988pt;}
.ws8a{word-spacing:-93.979063pt;}
.ws5e{word-spacing:-54.864048pt;}
.ws73{word-spacing:-47.675520pt;}
.wsb7{word-spacing:-47.504640pt;}
.ws35{word-spacing:-47.162880pt;}
.ws3f{word-spacing:-41.753600pt;}
.ws4c{word-spacing:-41.604480pt;}
.ws7b{word-spacing:-40.393131pt;}
.ws30{word-spacing:-39.214080pt;}
.wsbd{word-spacing:-38.448000pt;}
.wsb1{word-spacing:-37.935360pt;}
.ws4f{word-spacing:-35.584000pt;}
.ws4{word-spacing:-35.456000pt;}
.ws3{word-spacing:-33.914880pt;}
.ws39{word-spacing:-32.676480pt;}
.wsac{word-spacing:-30.698903pt;}
.ws5{word-spacing:-29.819520pt;}
.ws6{word-spacing:-29.498880pt;}
.ws27{word-spacing:-26.976000pt;}
.ws28{word-spacing:-26.688000pt;}
.ws29{word-spacing:-26.496000pt;}
.ws9f{word-spacing:-26.400000pt;}
.ws80{word-spacing:-26.323153pt;}
.ws84{word-spacing:-25.982767pt;}
.wsbe{word-spacing:-25.973760pt;}
.ws7f{word-spacing:-25.642382pt;}
.ws7d{word-spacing:-24.961611pt;}
.ws7e{word-spacing:-24.621225pt;}
.ws7c{word-spacing:-24.507763pt;}
.ws3a{word-spacing:-23.663360pt;}
.ws82{word-spacing:-23.259683pt;}
.wsb4{word-spacing:-20.741760pt;}
.ws21{word-spacing:-18.891950pt;}
.ws97{word-spacing:-18.565800pt;}
.ws9d{word-spacing:-18.508786pt;}
.ws26{word-spacing:-18.149472pt;}
.ws12{word-spacing:-18.048000pt;}
.wsae{word-spacing:-17.984000pt;}
.ws74{word-spacing:-17.948860pt;}
.ws14{word-spacing:-17.920000pt;}
.ws13{word-spacing:-17.792000pt;}
.ws76{word-spacing:-17.711650pt;}
.ws11{word-spacing:-17.408000pt;}
.ws75{word-spacing:-17.079091pt;}
.ws99{word-spacing:-16.412400pt;}
.ws9e{word-spacing:-16.127392pt;}
.ws98{word-spacing:-15.830400pt;}
.ws5b{word-spacing:-15.806190pt;}
.ws58{word-spacing:-15.669340pt;}
.ws56{word-spacing:-15.532490pt;}
.ws51{word-spacing:-15.464065pt;}
.ws55{word-spacing:-15.395640pt;}
.ws60{word-spacing:-15.327215pt;}
.ws62{word-spacing:-15.190365pt;}
.ws5c{word-spacing:-15.053515pt;}
.ws59{word-spacing:-14.985090pt;}
.ws96{word-spacing:-14.880975pt;}
.ws65{word-spacing:-14.848239pt;}
.ws5a{word-spacing:-14.779814pt;}
.ws9c{word-spacing:-14.619120pt;}
.ws64{word-spacing:-14.574539pt;}
.wsad{word-spacing:-14.528000pt;}
.ws94{word-spacing:-14.404360pt;}
.ws52{word-spacing:-14.369264pt;}
.ws95{word-spacing:-14.298446pt;}
.ws9a{word-spacing:-14.150892pt;}
.ws9b{word-spacing:-14.046841pt;}
.ws57{word-spacing:-13.890289pt;}
.ws6a{word-spacing:-13.479738pt;}
.ws4d{word-spacing:-10.081920pt;}
.ws61{word-spacing:-9.305809pt;}
.wsa6{word-spacing:-5.771520pt;}
.wsb2{word-spacing:-3.588480pt;}
.wsa2{word-spacing:-3.360000pt;}
.ws1f{word-spacing:-3.328000pt;}
.ws69{word-spacing:-2.994161pt;}
.wsaf{word-spacing:-2.904960pt;}
.ws77{word-spacing:-2.688000pt;}
.ws5f{word-spacing:-2.623184pt;}
.wsb5{word-spacing:-2.246400pt;}
.ws10{word-spacing:-2.244480pt;}
.wsa8{word-spacing:-2.171520pt;}
.ws54{word-spacing:-2.074838pt;}
.ws17{word-spacing:-2.048000pt;}
.ws5d{word-spacing:-1.966521pt;}
.ws37{word-spacing:-1.920000pt;}
.ws38{word-spacing:-1.792000pt;}
.wsbc{word-spacing:-1.708800pt;}
.ws8d{word-spacing:-1.701928pt;}
.wsb0{word-spacing:-1.664000pt;}
.ws66{word-spacing:-1.650098pt;}
.ws48{word-spacing:-1.603200pt;}
.wsaa{word-spacing:-1.497600pt;}
.ws7a{word-spacing:-1.423258pt;}
.ws36{word-spacing:-1.408000pt;}
.ws49{word-spacing:-1.401600pt;}
.ws43{word-spacing:-1.280000pt;}
.wsba{word-spacing:-1.276800pt;}
.ws2c{word-spacing:-1.237464pt;}
.ws41{word-spacing:-1.025280pt;}
.wsa7{word-spacing:-0.961920pt;}
.wsb6{word-spacing:-0.898560pt;}
.ws1e{word-spacing:-0.896000pt;}
.ws2d{word-spacing:-0.855040pt;}
.ws16{word-spacing:-0.768000pt;}
.ws8{word-spacing:-0.745600pt;}
.wsbf{word-spacing:-0.704640pt;}
.wsb3{word-spacing:-0.704000pt;}
.ws2f{word-spacing:-0.672000pt;}
.ws18{word-spacing:-0.640000pt;}
.ws63{word-spacing:-0.630537pt;}
.ws2{word-spacing:-0.602112pt;}
.ws15{word-spacing:-0.341760pt;}
.ws8e{word-spacing:-0.340386pt;}
.wsf{word-spacing:-0.320640pt;}
.wsb{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.247493pt;}
.ws47{word-spacing:-0.234880pt;}
.ws8f{word-spacing:-0.226924pt;}
.wsa9{word-spacing:-0.224640pt;}
.ws2e{word-spacing:-0.213760pt;}
.ws40{word-spacing:-0.213120pt;}
.ws6e{word-spacing:-0.205275pt;}
.ws4a{word-spacing:-0.192000pt;}
.ws1{word-spacing:-0.178944pt;}
.ws44{word-spacing:-0.170880pt;}
.ws7{word-spacing:-0.149120pt;}
.ws19{word-spacing:-0.128000pt;}
.ws3d{word-spacing:-0.117120pt;}
.wsa1{word-spacing:-0.116378pt;}
.wsa4{word-spacing:-0.114304pt;}
.ws45{word-spacing:-0.106880pt;}
.ws83{word-spacing:-0.099791pt;}
.ws3b{word-spacing:-0.096000pt;}
.ws53{word-spacing:-0.068425pt;}
.ws9{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.068425pt;}
.ws1c{word-spacing:0.128000pt;}
.ws4b{word-spacing:0.149120pt;}
.wsa3{word-spacing:0.156128pt;}
.ws79{word-spacing:0.158140pt;}
.wsa0{word-spacing:0.158886pt;}
.ws20{word-spacing:0.170880pt;}
.wsbb{word-spacing:0.192000pt;}
.ws67{word-spacing:0.205275pt;}
.ws68{word-spacing:0.231599pt;}
.wsc{word-spacing:0.245760pt;}
.ws2b{word-spacing:0.247493pt;}
.ws70{word-spacing:0.273700pt;}
.wsa5{word-spacing:0.288000pt;}
.ws4e{word-spacing:0.298240pt;}
.ws3e{word-spacing:0.341760pt;}
.ws6b{word-spacing:0.342125pt;}
.ws1d{word-spacing:0.384000pt;}
.ws93{word-spacing:0.399166pt;}
.ws71{word-spacing:0.410550pt;}
.ws50{word-spacing:0.447360pt;}
.ws6f{word-spacing:0.478975pt;}
.ws3c{word-spacing:0.480000pt;}
.ws91{word-spacing:0.498957pt;}
.ws6d{word-spacing:0.615826pt;}
.wse{word-spacing:0.639360pt;}
.ws46{word-spacing:0.640000pt;}
.wsb9{word-spacing:0.680960pt;}
.ws92{word-spacing:0.698540pt;}
.ws78{word-spacing:0.711629pt;}
.ws90{word-spacing:1.021157pt;}
.ws1a{word-spacing:1.024000pt;}
.wsd{word-spacing:1.065600pt;}
.wsa{word-spacing:1.664000pt;}
.ws34{word-spacing:1.847040pt;}
.wsab{word-spacing:2.128000pt;}
.ws8c{word-spacing:2.138002pt;}
.ws85{word-spacing:2.288782pt;}
.ws1b{word-spacing:2.304000pt;}
.ws86{word-spacing:2.308533pt;}
.ws33{word-spacing:2.415360pt;}
.ws32{word-spacing:3.125760pt;}
.ws42{word-spacing:3.279360pt;}
.ws31{word-spacing:3.694080pt;}
.ws72{word-spacing:4.858180pt;}
.ws0{word-spacing:16.403200pt;}
.ws22{word-spacing:278.033102pt;}
.ws23{word-spacing:289.629806pt;}
.ws25{word-spacing:295.450989pt;}
.ws24{word-spacing:309.367024pt;}
.wsb8{word-spacing:612.566080pt;}
.ws81{word-spacing:795.369980pt;}
._1d{margin-left:-77.579520pt;}
._13{margin-left:-14.452352pt;}
._c{margin-left:-12.354624pt;}
._3{margin-left:-11.333120pt;}
._d{margin-left:-9.771776pt;}
._7{margin-left:-8.747008pt;}
._9{margin-left:-7.011392pt;}
._f{margin-left:-6.030080pt;}
._6{margin-left:-4.606336pt;}
._8{margin-left:-3.299456pt;}
._5{margin-left:-2.033920pt;}
._1{margin-left:-0.924544pt;}
._2{width:1.535936pt;}
._4{width:2.816000pt;}
._15{width:4.620874pt;}
._14{width:5.805234pt;}
._0{width:7.306880pt;}
._12{width:9.058624pt;}
._1c{width:10.419712pt;}
._11{width:20.946240pt;}
._17{width:92.974802pt;}
._1a{width:93.979063pt;}
._18{width:105.645857pt;}
._19{width:126.958524pt;}
._e{width:158.890880pt;}
._1e{width:195.012160pt;}
._16{width:218.966259pt;}
._10{width:327.237184pt;}
._1f{width:345.348480pt;}
._1b{width:453.088281pt;}
._a{width:461.281067pt;}
._b{width:482.782400pt;}
.fs1a{font-size:52.025337pt;}
.fs1b{font-size:52.042667pt;}
.fs15{font-size:52.957207pt;}
.fs16{font-size:52.962133pt;}
.fs1d{font-size:57.152000pt;}
.fs1e{font-size:57.189333pt;}
.fs18{font-size:58.188800pt;}
.fs19{font-size:58.200000pt;}
.fs6{font-size:64.000000pt;}
.fs1c{font-size:66.339733pt;}
.fs17{font-size:67.512000pt;}
.fsd{font-size:68.425067pt;}
.fs1f{font-size:74.880000pt;}
.fse{font-size:79.069867pt;}
.fs7{font-size:82.497600pt;}
.fsb{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fs14{font-size:99.791467pt;}
.fs4{font-size:106.880000pt;}
.fs12{font-size:113.461867pt;}
.fs21{font-size:113.920000pt;}
.fs20{font-size:116.725867pt;}
.fsa{font-size:117.120000pt;}
.fs2{font-size:122.880000pt;}
.fsf{font-size:123.982933pt;}
.fs11{font-size:125.764800pt;}
.fs1{font-size:128.000000pt;}
.fs9{font-size:142.080000pt;}
.fs0{font-size:149.120000pt;}
.fs13{font-size:150.238933pt;}
.fs5{font-size:170.880000pt;}
.fs10{font-size:178.730667pt;}
.fs3{font-size:213.120000pt;}
.fsc{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:6.424800pt;}
.y3c{bottom:6.746667pt;}
.y3d{bottom:6.981333pt;}
.yf{bottom:7.509467pt;}
.y18{bottom:7.513200pt;}
.y5f{bottom:7.514667pt;}
.y121{bottom:7.887333pt;}
.y61{bottom:8.034533pt;}
.y35{bottom:8.757467pt;}
.y47{bottom:8.761200pt;}
.y133{bottom:8.948800pt;}
.y11e{bottom:8.970400pt;}
.y2e{bottom:9.031067pt;}
.y122{bottom:9.547867pt;}
.y11f{bottom:10.394667pt;}
.y43{bottom:10.997333pt;}
.ya{bottom:11.843573pt;}
.yf6{bottom:12.069550pt;}
.ye5{bottom:12.268950pt;}
.y10f{bottom:12.755200pt;}
.yc{bottom:13.344107pt;}
.y115{bottom:13.409467pt;}
.y113{bottom:13.409867pt;}
.yf5{bottom:14.351117pt;}
.ye4{bottom:14.590858pt;}
.y1a{bottom:17.890933pt;}
.y4d{bottom:25.624800pt;}
.yc8{bottom:26.713600pt;}
.yc5{bottom:27.199333pt;}
.y132{bottom:28.148800pt;}
.y2d{bottom:28.231067pt;}
.y3e{bottom:30.197333pt;}
.ye{bottom:30.197467pt;}
.ye0{bottom:30.729200pt;}
.y3b{bottom:30.730667pt;}
.yf3{bottom:36.219200pt;}
.ye2{bottom:36.845600pt;}
.y119{bottom:40.185733pt;}
.y60{bottom:40.316000pt;}
.y9{bottom:43.854133pt;}
.y11b{bottom:45.344000pt;}
.yb{bottom:45.354667pt;}
.y2c{bottom:47.431067pt;}
.y10d{bottom:47.436693pt;}
.y140{bottom:50.614027pt;}
.yb4{bottom:50.636000pt;}
.yf4{bottom:53.809345pt;}
.ye3{bottom:54.746764pt;}
.y1d{bottom:56.406400pt;}
.yd2{bottom:59.254267pt;}
.yf1{bottom:59.565733pt;}
.y11d{bottom:59.854533pt;}
.ya8{bottom:65.124267pt;}
.y112{bottom:65.701333pt;}
.y10c{bottom:69.844533pt;}
.y104{bottom:71.387333pt;}
.y11a{bottom:74.144000pt;}
.y56{bottom:74.589093pt;}
.y114{bottom:78.398667pt;}
.yca{bottom:79.167200pt;}
.yf7{bottom:83.418800pt;}
.ye6{bottom:84.879200pt;}
.yaf{bottom:85.172800pt;}
.ya7{bottom:85.528133pt;}
.yff{bottom:86.016400pt;}
.yec{bottom:87.522667pt;}
.yf0{bottom:88.365733pt;}
.y11c{bottom:88.654533pt;}
.y111{bottom:95.519200pt;}
.y23{bottom:98.862667pt;}
.y103{bottom:100.187333pt;}
.y55{bottom:100.188933pt;}
.y117{bottom:100.449333pt;}
.yc6{bottom:103.451200pt;}
.ya6{bottom:105.932000pt;}
.y13f{bottom:107.089867pt;}
.yf8{bottom:112.016245pt;}
.yc9{bottom:112.679067pt;}
.y6{bottom:114.518533pt;}
.y110{bottom:114.719200pt;}
.y70{bottom:116.855200pt;}
.y4c{bottom:117.673333pt;}
.y10b{bottom:119.548667pt;}
.y3f{bottom:120.547467pt;}
.y24{bottom:127.110667pt;}
.y98{bottom:127.160133pt;}
.ye7{bottom:128.533238pt;}
.y118{bottom:129.281333pt;}
.yf2{bottom:129.922667pt;}
.yad{bottom:130.338667pt;}
.ye1{bottom:133.121333pt;}
.y1e{bottom:135.673467pt;}
.y4b{bottom:136.873333pt;}
.y6f{bottom:137.259067pt;}
.yf9{bottom:140.613691pt;}
.ya5{bottom:142.823733pt;}
.y4f{bottom:146.080000pt;}
.y9b{bottom:147.151867pt;}
.y97{bottom:147.564133pt;}
.y5{bottom:148.918533pt;}
.y5e{bottom:153.273467pt;}
.yda{bottom:154.933333pt;}
.y4a{bottom:156.073333pt;}
.y6e{bottom:157.662933pt;}
.y19{bottom:162.792000pt;}
.ya4{bottom:163.227600pt;}
.y13e{bottom:163.736587pt;}
.y9a{bottom:167.555733pt;}
.y96{bottom:167.968000pt;}
.yfa{bottom:169.211136pt;}
.y10a{bottom:169.770533pt;}
.ye8{bottom:172.187277pt;}
.ycc{bottom:174.846400pt;}
.y49{bottom:175.273333pt;}
.y131{bottom:178.333680pt;}
.y73{bottom:178.685200pt;}
.y4{bottom:182.198533pt;}
.y130{bottom:182.291760pt;}
.ydd{bottom:184.560000pt;}
.yd9{bottom:185.045600pt;}
.y78{bottom:186.104800pt;}
.y99{bottom:187.959600pt;}
.y9f{bottom:188.577867pt;}
.y1f{bottom:188.849600pt;}
.y5d{bottom:191.673467pt;}
.yfb{bottom:197.808581pt;}
.y116{bottom:198.353333pt;}
.y29{bottom:198.976533pt;}
.y72{bottom:199.089067pt;}
.y17{bottom:199.338533pt;}
.y36{bottom:199.780400pt;}
.yc7{bottom:200.101733pt;}
.y77{bottom:206.508667pt;}
.y12f{bottom:207.891600pt;}
.ycb{bottom:208.358267pt;}
.y9e{bottom:208.981733pt;}
.y81{bottom:209.806267pt;}
.yd8{bottom:215.157867pt;}
.ye9{bottom:215.841315pt;}
.ydf{bottom:216.129200pt;}
.y3{bottom:216.758533pt;}
.y71{bottom:219.492933pt;}
.y13d{bottom:220.212427pt;}
.y109{bottom:220.730800pt;}
.yfc{bottom:226.406027pt;}
.y76{bottom:226.912533pt;}
.y9d{bottom:229.385600pt;}
.y80{bottom:230.210133pt;}
.yb1{bottom:231.939200pt;}
.y16{bottom:237.738533pt;}
.y20{bottom:242.025733pt;}
.y75{bottom:247.316400pt;}
.y9c{bottom:249.789600pt;}
.y7f{bottom:250.614000pt;}
.y27{bottom:251.366827pt;}
.yfd{bottom:255.003472pt;}
.yb0{bottom:255.768400pt;}
.ycf{bottom:256.926400pt;}
.y5c{bottom:257.386533pt;}
.y37{bottom:258.080800pt;}
.y6d{bottom:258.239733pt;}
.yea{bottom:259.495354pt;}
.yd7{bottom:261.783333pt;}
.y2{bottom:264.101573pt;}
.y8a{bottom:265.247067pt;}
.y74{bottom:267.720267pt;}
.y101{bottom:270.023600pt;}
.ydc{bottom:271.011067pt;}
.yb3{bottom:274.994267pt;}
.yee{bottom:275.509067pt;}
.y13b{bottom:276.055467pt;}
.y15{bottom:276.138533pt;}
.y13c{bottom:276.688267pt;}
.y86{bottom:278.437467pt;}
.y6c{bottom:278.643600pt;}
.y7b{bottom:282.971600pt;}
.y89{bottom:285.650933pt;}
.y8e{bottom:288.948533pt;}
.yce{bottom:290.924133pt;}
.yd6{bottom:291.895467pt;}
.y39{bottom:293.110560pt;}
.y1b{bottom:295.201733pt;}
.y13a{bottom:295.255467pt;}
.y12e{bottom:296.695440pt;}
.yb2{bottom:298.823467pt;}
.y85{bottom:298.841333pt;}
.y6b{bottom:299.047467pt;}
.y32{bottom:299.897893pt;}
.ydb{bottom:301.123467pt;}
.y5b{bottom:302.506533pt;}
.y7a{bottom:303.375467pt;}
.y1{bottom:304.438533pt;}
.y88{bottom:306.054800pt;}
.y102{bottom:306.195867pt;}
.y8d{bottom:309.352400pt;}
.yc3{bottom:312.294133pt;}
.yef{bottom:312.320667pt;}
.y128{bottom:312.846960pt;}
.y14{bottom:314.538533pt;}
.y26{bottom:315.551467pt;}
.y38{bottom:318.710400pt;}
.y84{bottom:319.245200pt;}
.y6a{bottom:319.451200pt;}
.yd5{bottom:322.007733pt;}
.y12d{bottom:322.295280pt;}
.y79{bottom:323.779333pt;}
.ycd{bottom:324.436133pt;}
.y31{bottom:325.497733pt;}
.y87{bottom:326.458667pt;}
.yae{bottom:329.422400pt;}
.y8c{bottom:329.756267pt;}
.yde{bottom:336.092400pt;}
.y30{bottom:337.272133pt;}
.y127{bottom:338.446800pt;}
.y83{bottom:339.649067pt;}
.y100{bottom:342.368267pt;}
.y94{bottom:346.244133pt;}
.y1c{bottom:346.886933pt;}
.y12c{bottom:347.895120pt;}
.y41{bottom:348.197093pt;}
.y5a{bottom:348.729573pt;}
.yed{bottom:349.132267pt;}
.y69{bottom:349.335733pt;}
.y8b{bottom:350.160133pt;}
.y13{bottom:352.938533pt;}
.yd4{bottom:357.948000pt;}
.y82{bottom:360.052933pt;}
.y90{bottom:360.877333pt;}
.y10e{bottom:362.674533pt;}
.y93{bottom:366.648133pt;}
.y68{bottom:369.739600pt;}
.yfe{bottom:371.248933pt;}
.y40{bottom:373.796933pt;}
.yac{bottom:374.686000pt;}
.yeb{bottom:378.668667pt;}
.y8f{bottom:381.281200pt;}
.y92{bottom:387.052000pt;}
.y59{bottom:389.066533pt;}
.y67{bottom:390.143467pt;}
.y144{bottom:391.200560pt;}
.y12{bottom:391.338533pt;}
.yab{bottom:395.089867pt;}
.yd1{bottom:395.831200pt;}
.y91{bottom:407.455867pt;}
.y66{bottom:410.547333pt;}
.yaa{bottom:415.493600pt;}
.yc4{bottom:424.000800pt;}
.yd0{bottom:429.343200pt;}
.y11{bottom:429.738533pt;}
.y65{bottom:430.951200pt;}
.y8{bottom:431.695520pt;}
.ya9{bottom:435.897600pt;}
.y139{bottom:436.479867pt;}
.y44{bottom:437.446667pt;}
.y126{bottom:446.429120pt;}
.y143{bottom:447.680560pt;}
.ya3{bottom:448.057467pt;}
.y12b{bottom:449.890160pt;}
.y64{bottom:451.355067pt;}
.y46{bottom:452.175600pt;}
.y54{bottom:459.514267pt;}
.y28{bottom:461.687333pt;}
.y7e{bottom:466.400400pt;}
.y10{bottom:468.138533pt;}
.ya2{bottom:468.461467pt;}
.y138{bottom:471.039867pt;}
.y125{bottom:472.028960pt;}
.y22{bottom:473.287973pt;}
.y12a{bottom:475.490000pt;}
.y25{bottom:479.953333pt;}
.y63{bottom:486.598133pt;}
.y7d{bottom:486.804267pt;}
.yd3{bottom:488.596400pt;}
.ya1{bottom:488.865200pt;}
.y7{bottom:489.291200pt;}
.y58{bottom:496.426533pt;}
.y106{bottom:497.464000pt;}
.y124{bottom:497.628800pt;}
.yc2{bottom:500.252667pt;}
.y129{bottom:501.089840pt;}
.y95{bottom:503.498267pt;}
.y142{bottom:504.156400pt;}
.y21{bottom:505.298533pt;}
.y137{bottom:505.599867pt;}
.y62{bottom:507.002000pt;}
.y7c{bottom:507.208133pt;}
.ya0{bottom:509.269200pt;}
.y53{bottom:513.274267pt;}
.y2a{bottom:517.082800pt;}
.y34{bottom:521.104933pt;}
.y105{bottom:526.264000pt;}
.y136{bottom:534.399867pt;}
.y123{bottom:540.843733pt;}
.y120{bottom:543.560667pt;}
.y57{bottom:550.026533pt;}
.y33{bottom:556.305067pt;}
.y108{bottom:559.478160pt;}
.y2f{bottom:565.377467pt;}
.y52{bottom:566.874267pt;}
.y135{bottom:568.959867pt;}
.ybe{bottom:570.190800pt;}
.y107{bottom:570.486800pt;}
.y45{bottom:580.638800pt;}
.y3a{bottom:586.546000pt;}
.y50{bottom:586.596933pt;}
.yb9{bottom:587.675200pt;}
.y51{bottom:591.289547pt;}
.y141{bottom:595.923333pt;}
.y134{bottom:603.519867pt;}
.ybd{bottom:604.674000pt;}
.yb8{bottom:621.672933pt;}
.y48{bottom:623.596000pt;}
.ybc{bottom:638.671733pt;}
.yd{bottom:643.450667pt;}
.y2b{bottom:648.163600pt;}
.y42{bottom:654.250667pt;}
.yb7{bottom:655.670533pt;}
.ybb{bottom:672.669467pt;}
.yc0{bottom:713.952267pt;}
.yb6{bottom:738.236400pt;}
.yba{bottom:738.722133pt;}
.ybf{bottom:739.693467pt;}
.yb5{bottom:849.943067pt;}
.yc1{bottom:888.797467pt;}
.h31{height:37.875868pt;}
.h32{height:37.888484pt;}
.h2b{height:38.554295pt;}
.h2c{height:38.557881pt;}
.h34{height:41.608219pt;}
.h2e{height:42.363037pt;}
.h1a{height:47.576804pt;}
.h33{height:48.297140pt;}
.h1b{height:49.113695pt;}
.h1c{height:49.114229pt;}
.h2d{height:49.150582pt;}
.h35{height:51.269344pt;}
.h2f{height:52.175391pt;}
.h1f{height:54.128883pt;}
.h1e{height:54.978267pt;}
.hc{height:56.475408pt;}
.hd{height:57.361612pt;}
.h9{height:57.375000pt;}
.h17{height:57.376067pt;}
.h3a{height:57.381933pt;}
.ha{height:57.389933pt;}
.h37{height:61.969687pt;}
.h36{height:67.128750pt;}
.hf{height:68.718750pt;}
.h10{height:69.890625pt;}
.h29{height:71.627664pt;}
.h15{height:76.308750pt;}
.h26{height:77.672626pt;}
.he{height:77.811562pt;}
.h25{height:78.891454pt;}
.h22{height:82.635109pt;}
.h28{height:82.777321pt;}
.h14{height:86.062500pt;}
.h24{height:87.445837pt;}
.h21{height:88.991656pt;}
.h6{height:95.816250pt;}
.h7{height:95.858490pt;}
.h27{height:102.849114pt;}
.h39{height:104.642916pt;}
.h13{height:104.996250pt;}
.h2{height:108.563437pt;}
.h4{height:110.160000pt;}
.h3{height:114.750000pt;}
.h3c{height:122.653125pt;}
.h23{height:124.273667pt;}
.h12{height:127.372500pt;}
.h3e{height:132.952110pt;}
.h1{height:133.683750pt;}
.h11{height:135.409617pt;}
.h16{height:149.121562pt;}
.h8{height:153.191250pt;}
.h3b{height:162.875790pt;}
.h3d{height:163.315000pt;}
.h38{height:187.994667pt;}
.h5{height:191.058750pt;}
.h18{height:210.566250pt;}
.hb{height:372.977333pt;}
.h1d{height:391.333333pt;}
.h30{height:398.700000pt;}
.h2a{height:406.605333pt;}
.h20{height:526.602667pt;}
.h19{height:530.704000pt;}
.h0{height:720.000000pt;}
.w7{width:187.881333pt;}
.w6{width:243.426667pt;}
.w5{width:247.841333pt;}
.w3{width:612.866667pt;}
.w1{width:627.629333pt;}
.w4{width:1151.685333pt;}
.w2{width:1207.316000pt;}
.w0{width:1280.000000pt;}
.x62{left:-17.104533pt;}
.x0{left:0.000000pt;}
.x7{left:9.604000pt;}
.x13{left:12.541467pt;}
.x7d{left:25.748267pt;}
.x4{left:28.800000pt;}
.x7a{left:35.653067pt;}
.x5{left:36.908667pt;}
.x39{left:38.278800pt;}
.x7b{left:40.061321pt;}
.x36{left:41.282533pt;}
.xa7{left:42.203200pt;}
.x6b{left:52.555867pt;}
.x77{left:53.867467pt;}
.x31{left:61.540667pt;}
.x1{left:63.632800pt;}
.x94{left:68.216400pt;}
.x61{left:74.799067pt;}
.xb2{left:76.000000pt;}
.x21{left:85.833333pt;}
.x52{left:88.220267pt;}
.xa9{left:90.203200pt;}
.x85{left:91.301333pt;}
.x7e{left:93.538400pt;}
.x51{left:97.341467pt;}
.x40{left:98.486667pt;}
.x6c{left:100.041467pt;}
.x65{left:101.527467pt;}
.x64{left:103.202933pt;}
.x66{left:105.305733pt;}
.x63{left:106.359600pt;}
.x83{left:110.057742pt;}
.x86{left:111.018800pt;}
.x78{left:112.053371pt;}
.x7f{left:113.031600pt;}
.x53{left:115.876400pt;}
.x1f{left:123.722533pt;}
.x7c{left:126.415067pt;}
.x1b{left:128.785467pt;}
.x30{left:132.908667pt;}
.x1a{left:144.198800pt;}
.x84{left:147.485973pt;}
.xaa{left:148.755200pt;}
.x79{left:150.160645pt;}
.x3d{left:152.424533pt;}
.x80{left:153.327333pt;}
.x76{left:157.878667pt;}
.x81{left:164.158133pt;}
.x60{left:193.875867pt;}
.x14{left:213.547600pt;}
.x9b{left:216.696667pt;}
.xa8{left:218.675200pt;}
.x93{left:222.428000pt;}
.x69{left:223.374000pt;}
.x6a{left:224.427733pt;}
.x67{left:225.462133pt;}
.x9a{left:229.968667pt;}
.x68{left:233.902667pt;}
.x3e{left:241.080800pt;}
.x2a{left:243.094800pt;}
.x8b{left:252.490400pt;}
.x1c{left:265.999227pt;}
.x17{left:278.959867pt;}
.x10{left:284.598000pt;}
.x16{left:291.659733pt;}
.xa4{left:313.553867pt;}
.x54{left:316.914667pt;}
.xf{left:320.765333pt;}
.xa3{left:338.345067pt;}
.x11{left:347.696533pt;}
.x56{left:348.855600pt;}
.x3f{left:350.303467pt;}
.x2d{left:357.196400pt;}
.x15{left:358.298000pt;}
.x12{left:365.225600pt;}
.x2f{left:367.302000pt;}
.x3b{left:369.255067pt;}
.x37{left:380.108667pt;}
.x9f{left:381.309067pt;}
.x55{left:383.216800pt;}
.x20{left:405.766133pt;}
.xa6{left:408.316747pt;}
.x42{left:415.831600pt;}
.x41{left:422.330267pt;}
.x24{left:449.238000pt;}
.x3c{left:452.994400pt;}
.xa5{left:466.389867pt;}
.xb1{left:480.566427pt;}
.xb0{left:497.056347pt;}
.x8d{left:498.950000pt;}
.x96{left:511.014800pt;}
.x33{left:516.125867pt;}
.x8c{left:522.420000pt;}
.x32{left:536.452400pt;}
.x43{left:537.422533pt;}
.xae{left:544.432827pt;}
.x44{left:547.640533pt;}
.x97{left:553.894800pt;}
.xad{left:555.625467pt;}
.x18{left:559.248800pt;}
.x99{left:564.200133pt;}
.x2b{left:567.479600pt;}
.x2c{left:569.714000pt;}
.x8f{left:573.083920pt;}
.x8e{left:578.076667pt;}
.x2e{left:583.468213pt;}
.x6e{left:590.438400pt;}
.x71{left:591.700933pt;}
.x70{left:599.038933pt;}
.x72{left:600.301600pt;}
.x4f{left:607.453600pt;}
.x19{left:608.592800pt;}
.x89{left:614.535733pt;}
.xaf{left:622.354107pt;}
.x6f{left:635.384000pt;}
.x98{left:636.950800pt;}
.x1e{left:638.225733pt;}
.x50{left:640.000000pt;}
.x58{left:642.775600pt;}
.x5c{left:671.596000pt;}
.xb{left:678.775600pt;}
.x6d{left:682.762800pt;}
.x90{left:683.658400pt;}
.xc{left:685.015600pt;}
.xa{left:687.415600pt;}
.x46{left:697.415467pt;}
.x9{left:705.175600pt;}
.x59{left:710.017067pt;}
.x5b{left:711.258133pt;}
.x8{left:715.095600pt;}
.x35{left:730.742800pt;}
.x23{left:732.285680pt;}
.x22{left:742.372400pt;}
.x47{left:748.354800pt;}
.x34{left:755.863067pt;}
.xac{left:756.799467pt;}
.xe{left:757.975600pt;}
.x95{left:769.640000pt;}
.xab{left:770.879467pt;}
.x5a{left:779.217333pt;}
.x3{left:788.572373pt;}
.x48{left:795.096267pt;}
.x8a{left:797.578400pt;}
.x57{left:804.264267pt;}
.x9c{left:808.623867pt;}
.x9d{left:816.615867pt;}
.x45{left:817.699067pt;}
.x2{left:828.732533pt;}
.xd{left:835.255600pt;}
.x88{left:845.284933pt;}
.x49{left:847.157200pt;}
.xa2{left:853.202400pt;}
.xa0{left:870.971200pt;}
.x82{left:877.104000pt;}
.x4b{left:878.192667pt;}
.x9e{left:880.802533pt;}
.x87{left:889.444933pt;}
.xa1{left:906.487520pt;}
.x4a{left:908.139333pt;}
.x75{left:909.070133pt;}
.x73{left:930.787867pt;}
.x74{left:931.875600pt;}
.x29{left:940.732880pt;}
.x4e{left:948.475067pt;}
.x28{left:950.181200pt;}
.x4c{left:987.582133pt;}
.x5d{left:998.414800pt;}
.x5f{left:1014.803333pt;}
.x1d{left:1017.178267pt;}
.x91{left:1018.950133pt;}
.x5e{left:1039.965733pt;}
.x27{left:1083.401467pt;}
.x3a{left:1085.918933pt;}
.x38{left:1097.591067pt;}
.x26{left:1101.343600pt;}
.x4d{left:1117.182933pt;}
.x92{left:1143.270133pt;}
.x25{left:1252.356000pt;}
.x6{left:1261.316000pt;}
}




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