
    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_d0d5cd9579f315a4dbeb9998.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_6ce15340d2cf448e400aaafc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984333;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_85f824f418023717c6110c2e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966016;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_4ee4d8ed1f19aa4f65538dd2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.126000;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_35d5bd5f26a8f468329cc76b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060000;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:19.110000px;}
.ls50{letter-spacing:-1.584000px;}
.ls56{letter-spacing:-1.518000px;}
.ls52{letter-spacing:-1.320000px;}
.ls58{letter-spacing:-1.254000px;}
.ls79{letter-spacing:-1.200000px;}
.ls6b{letter-spacing:-1.140000px;}
.ls51{letter-spacing:-1.122000px;}
.ls6a{letter-spacing:-1.080000px;}
.ls4e{letter-spacing:-1.056000px;}
.ls54{letter-spacing:-0.990000px;}
.ls26{letter-spacing:-0.960000px;}
.ls4f{letter-spacing:-0.924000px;}
.ls78{letter-spacing:-0.900000px;}
.ls57{letter-spacing:-0.858000px;}
.ls53{letter-spacing:-0.792000px;}
.ls67{letter-spacing:-0.780000px;}
.ls31{letter-spacing:-0.726000px;}
.ls64{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.660000px;}
.ls69{letter-spacing:-0.600000px;}
.ls35{letter-spacing:-0.594000px;}
.ls5{letter-spacing:-0.570000px;}
.ls59{letter-spacing:-0.540000px;}
.ls36{letter-spacing:-0.528000px;}
.ls6{letter-spacing:-0.513000px;}
.ls2{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.462000px;}
.ls3{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.396000px;}
.ls63{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.342000px;}
.ls18{letter-spacing:-0.330000px;}
.ls77{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.285000px;}
.ls29{letter-spacing:-0.264000px;}
.ls5b{letter-spacing:-0.240000px;}
.ls27{letter-spacing:-0.198000px;}
.ls37{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.132000px;}
.ls39{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.114000px;}
.ls2a{letter-spacing:-0.066000px;}
.ls38{letter-spacing:-0.060000px;}
.ls7{letter-spacing:-0.057000px;}
.ls4{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.026400px;}
.ls2c{letter-spacing:0.033000px;}
.ls55{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.066000px;}
.ls47{letter-spacing:0.092400px;}
.ls3f{letter-spacing:0.099000px;}
.ls4b{letter-spacing:0.108000px;}
.ls33{letter-spacing:0.120000px;}
.ls4a{letter-spacing:0.126600px;}
.ls1e{letter-spacing:0.132000px;}
.ls66{letter-spacing:0.150000px;}
.ls32{letter-spacing:0.165000px;}
.ls0{letter-spacing:0.171000px;}
.ls71{letter-spacing:0.180000px;}
.ls3b{letter-spacing:0.198000px;}
.ls6e{letter-spacing:0.210000px;}
.ls4c{letter-spacing:0.216000px;}
.ls5d{letter-spacing:0.231000px;}
.ls62{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.264000px;}
.ls75{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.285000px;}
.ls1b{letter-spacing:0.290400px;}
.ls5a{letter-spacing:0.297000px;}
.ls72{letter-spacing:0.300000px;}
.ls76{letter-spacing:0.312000px;}
.ls2e{letter-spacing:0.330000px;}
.ls15{letter-spacing:0.342000px;}
.ls4d{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.363000px;}
.ls49{letter-spacing:0.378000px;}
.ls20{letter-spacing:0.396000px;}
.lsc{letter-spacing:0.399000px;}
.ls60{letter-spacing:0.420000px;}
.ls3a{letter-spacing:0.429000px;}
.ls48{letter-spacing:0.432000px;}
.ls73{letter-spacing:0.450000px;}
.ls10{letter-spacing:0.456000px;}
.ls1c{letter-spacing:0.462000px;}
.ls6d{letter-spacing:0.480000px;}
.ls61{letter-spacing:0.510000px;}
.ls1f{letter-spacing:0.528000px;}
.ls65{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.561000px;}
.lsd{letter-spacing:0.570000px;}
.ls30{letter-spacing:0.594000px;}
.ls5f{letter-spacing:0.600000px;}
.lse{letter-spacing:0.627000px;}
.ls44{letter-spacing:0.646200px;}
.ls16{letter-spacing:0.660000px;}
.ls46{letter-spacing:0.686400px;}
.ls5e{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.726000px;}
.ls1{letter-spacing:0.741000px;}
.ls45{letter-spacing:0.756000px;}
.ls70{letter-spacing:0.780000px;}
.ls3d{letter-spacing:0.792000px;}
.lsb{letter-spacing:0.798000px;}
.ls3c{letter-spacing:0.825000px;}
.ls6c{letter-spacing:0.840000px;}
.ls13{letter-spacing:0.858000px;}
.ls24{letter-spacing:0.891000px;}
.ls6f{letter-spacing:0.900000px;}
.ls40{letter-spacing:0.918000px;}
.ls12{letter-spacing:0.924000px;}
.ls2d{letter-spacing:0.957000px;}
.ls68{letter-spacing:0.960000px;}
.ls25{letter-spacing:0.990000px;}
.lsf{letter-spacing:1.026000px;}
.ls21{letter-spacing:1.056000px;}
.ls3e{letter-spacing:1.089000px;}
.ls2f{letter-spacing:1.122000px;}
.ls41{letter-spacing:1.188000px;}
.ls43{letter-spacing:1.254000px;}
.ls22{letter-spacing:1.452000px;}
.ls74{letter-spacing:1.560000px;}
.ls23{letter-spacing:1.650000px;}
.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;}
}
.ws36{word-spacing:-16.500000px;}
.ws42{word-spacing:-16.434000px;}
.ws7c{word-spacing:-15.840000px;}
.ws55{word-spacing:-15.510000px;}
.ws84{word-spacing:-15.360000px;}
.ws53{word-spacing:-15.240000px;}
.ws6d{word-spacing:-15.210000px;}
.ws60{word-spacing:-15.150000px;}
.ws6f{word-spacing:-15.120000px;}
.ws7d{word-spacing:-15.000000px;}
.ws6e{word-spacing:-14.760000px;}
.ws54{word-spacing:-14.640000px;}
.ws7e{word-spacing:-14.460000px;}
.ws37{word-spacing:-10.725000px;}
.ws0{word-spacing:-10.080000px;}
.ws83{word-spacing:-9.750000px;}
.ws68{word-spacing:-0.960000px;}
.ws74{word-spacing:-0.900000px;}
.ws14{word-spacing:-0.858000px;}
.ws76{word-spacing:-0.840000px;}
.ws12{word-spacing:-0.792000px;}
.ws27{word-spacing:-0.780000px;}
.ws4{word-spacing:-0.741000px;}
.ws29{word-spacing:-0.726000px;}
.ws4e{word-spacing:-0.720000px;}
.ws3{word-spacing:-0.684000px;}
.ws13{word-spacing:-0.660000px;}
.ws52{word-spacing:-0.600000px;}
.ws25{word-spacing:-0.594000px;}
.wse{word-spacing:-0.570000px;}
.ws65{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.528000px;}
.ws51{word-spacing:-0.480000px;}
.ws5d{word-spacing:-0.420000px;}
.wsd{word-spacing:-0.399000px;}
.ws21{word-spacing:-0.396000px;}
.ws4b{word-spacing:-0.378000px;}
.ws66{word-spacing:-0.360000px;}
.ws2b{word-spacing:-0.330000px;}
.ws85{word-spacing:-0.312000px;}
.ws67{word-spacing:-0.300000px;}
.ws6{word-spacing:-0.285000px;}
.ws15{word-spacing:-0.264000px;}
.ws4d{word-spacing:-0.240000px;}
.ws3b{word-spacing:-0.198000px;}
.ws7b{word-spacing:-0.180000px;}
.ws8{word-spacing:-0.171000px;}
.ws49{word-spacing:-0.162000px;}
.ws33{word-spacing:-0.132000px;}
.ws64{word-spacing:-0.120000px;}
.wsa{word-spacing:-0.114000px;}
.ws19{word-spacing:-0.066000px;}
.ws81{word-spacing:-0.060000px;}
.ws47{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws5c{word-spacing:0.060000px;}
.ws40{word-spacing:0.066000px;}
.wsf{word-spacing:0.114000px;}
.ws5b{word-spacing:0.120000px;}
.ws2d{word-spacing:0.132000px;}
.ws5f{word-spacing:0.180000px;}
.ws1e{word-spacing:0.198000px;}
.ws61{word-spacing:0.240000px;}
.ws24{word-spacing:0.264000px;}
.ws4a{word-spacing:0.270000px;}
.ws4f{word-spacing:0.300000px;}
.ws1f{word-spacing:0.330000px;}
.ws5a{word-spacing:0.360000px;}
.ws38{word-spacing:0.396000px;}
.ws57{word-spacing:0.420000px;}
.ws41{word-spacing:0.462000px;}
.ws59{word-spacing:0.480000px;}
.ws30{word-spacing:0.528000px;}
.ws34{word-spacing:0.594000px;}
.ws6b{word-spacing:0.600000px;}
.ws17{word-spacing:0.660000px;}
.ws5e{word-spacing:0.720000px;}
.ws43{word-spacing:0.726000px;}
.ws7{word-spacing:0.741000px;}
.ws82{word-spacing:0.780000px;}
.ws16{word-spacing:0.792000px;}
.ws2f{word-spacing:0.858000px;}
.ws58{word-spacing:0.900000px;}
.ws1d{word-spacing:0.924000px;}
.ws7f{word-spacing:0.960000px;}
.wsc{word-spacing:0.969000px;}
.ws3d{word-spacing:0.972000px;}
.ws1a{word-spacing:0.990000px;}
.ws73{word-spacing:1.020000px;}
.ws18{word-spacing:1.056000px;}
.ws6c{word-spacing:1.080000px;}
.ws2c{word-spacing:1.122000px;}
.ws1c{word-spacing:1.188000px;}
.ws9{word-spacing:1.254000px;}
.ws4c{word-spacing:1.260000px;}
.ws2a{word-spacing:1.320000px;}
.ws48{word-spacing:1.350000px;}
.ws62{word-spacing:1.380000px;}
.ws23{word-spacing:1.386000px;}
.ws5{word-spacing:1.425000px;}
.ws6a{word-spacing:1.440000px;}
.ws35{word-spacing:1.452000px;}
.ws26{word-spacing:1.500000px;}
.ws45{word-spacing:1.512000px;}
.ws39{word-spacing:1.518000px;}
.wsb{word-spacing:1.539000px;}
.ws78{word-spacing:1.560000px;}
.ws46{word-spacing:1.584000px;}
.ws79{word-spacing:1.620000px;}
.ws10{word-spacing:1.650000px;}
.ws70{word-spacing:1.680000px;}
.ws22{word-spacing:1.716000px;}
.ws77{word-spacing:1.740000px;}
.ws28{word-spacing:1.782000px;}
.ws75{word-spacing:1.800000px;}
.ws3c{word-spacing:1.836000px;}
.ws1b{word-spacing:1.848000px;}
.ws11{word-spacing:1.914000px;}
.ws69{word-spacing:1.920000px;}
.ws44{word-spacing:1.980000px;}
.ws50{word-spacing:2.046000px;}
.ws31{word-spacing:2.112000px;}
.ws2e{word-spacing:2.178000px;}
.ws20{word-spacing:2.244000px;}
.ws3a{word-spacing:2.310000px;}
.ws3e{word-spacing:2.376000px;}
.ws3f{word-spacing:2.508000px;}
.ws80{word-spacing:14.280000px;}
.ws7a{word-spacing:14.340000px;}
.ws72{word-spacing:15.000000px;}
.ws71{word-spacing:15.120000px;}
.ws63{word-spacing:15.360000px;}
.ws56{word-spacing:75.000000px;}
.ws2{word-spacing:936.528000px;}
._2{margin-left:-900.525000px;}
._5{margin-left:-17.043000px;}
._f{margin-left:-16.020000px;}
._7{margin-left:-14.934000px;}
._6{margin-left:-13.395000px;}
._0{margin-left:-1.921200px;}
._9{width:1.825200px;}
._e{width:11.640000px;}
._c{width:12.780000px;}
._d{width:17.040000px;}
._b{width:33.349200px;}
._3{width:36.000000px;}
._a{width:37.718400px;}
._8{width:67.825200px;}
._1{width:661.578000px;}
._4{width:983.617200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs8{font-size:42.900000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:90.010500px;}
.y133{bottom:90.786150px;}
.y15b{bottom:91.355400px;}
.yf7{bottom:91.375350px;}
.ydc{bottom:91.399350px;}
.yb5{bottom:91.405350px;}
.ycb{bottom:91.411350px;}
.y10c{bottom:92.573550px;}
.y9b{bottom:93.285150px;}
.y77{bottom:93.318150px;}
.y118{bottom:94.460250px;}
.y3e{bottom:95.323650px;}
.y187{bottom:95.988150px;}
.ya0{bottom:96.478350px;}
.y1c{bottom:105.015750px;}
.yf6{bottom:105.631350px;}
.ydb{bottom:105.655350px;}
.yb4{bottom:105.661350px;}
.yca{bottom:105.667350px;}
.y15a{bottom:107.105400px;}
.y132{bottom:108.028650px;}
.y10b{bottom:109.816050px;}
.y9a{bottom:110.527650px;}
.y76{bottom:110.560650px;}
.y117{bottom:111.702750px;}
.y186{bottom:111.738150px;}
.y9f{bottom:112.228350px;}
.y3d{bottom:112.566150px;}
.yf5{bottom:119.887350px;}
.yda{bottom:119.911350px;}
.yb3{bottom:119.917350px;}
.y159{bottom:122.855400px;}
.y131{bottom:125.271150px;}
.y1b{bottom:126.020250px;}
.y10a{bottom:127.058550px;}
.y185{bottom:127.488150px;}
.y99{bottom:127.770150px;}
.y75{bottom:127.803150px;}
.y9e{bottom:127.978350px;}
.y3c{bottom:129.808650px;}
.yf4{bottom:134.143350px;}
.yd9{bottom:134.167350px;}
.y158{bottom:138.605400px;}
.y1a{bottom:141.025500px;}
.y130{bottom:142.513650px;}
.y184{bottom:143.238150px;}
.y9d{bottom:143.728350px;}
.y109{bottom:144.301050px;}
.yc9{bottom:144.850650px;}
.y98{bottom:145.012650px;}
.y74{bottom:145.045650px;}
.y3b{bottom:147.051150px;}
.y116{bottom:148.086600px;}
.yf3{bottom:148.399350px;}
.y157{bottom:154.355400px;}
.y19{bottom:156.030750px;}
.y183{bottom:158.988150px;}
.y9c{bottom:159.478350px;}
.y12f{bottom:159.756150px;}
.y108{bottom:161.543550px;}
.yc8{bottom:162.093150px;}
.yb2{bottom:162.115650px;}
.y97{bottom:162.255150px;}
.y73{bottom:162.288150px;}
.yf2{bottom:162.655350px;}
.y3a{bottom:164.293650px;}
.y156{bottom:170.105400px;}
.y18{bottom:171.036000px;}
.y182{bottom:174.738150px;}
.yf1{bottom:176.911350px;}
.y12e{bottom:176.998650px;}
.y107{bottom:178.786050px;}
.yd8{bottom:179.328150px;}
.yc7{bottom:179.335650px;}
.yb1{bottom:179.358150px;}
.y96{bottom:179.497650px;}
.y72{bottom:179.530650px;}
.y39{bottom:181.536150px;}
.y115{bottom:182.992950px;}
.y155{bottom:185.855400px;}
.y17{bottom:186.041250px;}
.y181{bottom:190.488150px;}
.yf0{bottom:191.167350px;}
.y12d{bottom:194.241150px;}
.y106{bottom:196.028550px;}
.yd7{bottom:196.570650px;}
.yc6{bottom:196.578150px;}
.yb0{bottom:196.600650px;}
.y95{bottom:196.740150px;}
.y71{bottom:196.773150px;}
.y38{bottom:198.778650px;}
.y114{bottom:200.235450px;}
.y16{bottom:201.046500px;}
.y154{bottom:201.605400px;}
.y180{bottom:206.238150px;}
.y105{bottom:213.271050px;}
.yd6{bottom:213.813150px;}
.yc5{bottom:213.820650px;}
.yaf{bottom:213.843150px;}
.y94{bottom:213.982650px;}
.y70{bottom:214.015650px;}
.y37{bottom:216.021150px;}
.y15{bottom:216.051750px;}
.y153{bottom:217.355400px;}
.y113{bottom:217.477950px;}
.y12c{bottom:220.113150px;}
.y17f{bottom:221.988150px;}
.y104{bottom:230.513550px;}
.yef{bottom:231.003150px;}
.yd5{bottom:231.055650px;}
.y14{bottom:231.057000px;}
.yc4{bottom:231.063150px;}
.yae{bottom:231.085650px;}
.y93{bottom:231.225150px;}
.y6f{bottom:231.258150px;}
.y152{bottom:233.105400px;}
.y36{bottom:233.263650px;}
.y112{bottom:234.720450px;}
.y17e{bottom:237.738150px;}
.y13{bottom:246.062250px;}
.y103{bottom:247.756050px;}
.yee{bottom:248.245650px;}
.yd4{bottom:248.298150px;}
.yc3{bottom:248.305650px;}
.yad{bottom:248.328150px;}
.y92{bottom:248.467650px;}
.y6e{bottom:248.500650px;}
.y151{bottom:248.855400px;}
.y35{bottom:250.506150px;}
.y17d{bottom:253.488150px;}
.y12{bottom:261.067500px;}
.y12b{bottom:263.238150px;}
.y150{bottom:264.605400px;}
.y102{bottom:264.998550px;}
.yd3{bottom:265.540650px;}
.yc2{bottom:265.548150px;}
.yac{bottom:265.570650px;}
.yed{bottom:265.615650px;}
.y91{bottom:265.710150px;}
.y6d{bottom:265.743150px;}
.y34{bottom:267.748650px;}
.y17c{bottom:269.238150px;}
.y111{bottom:271.104300px;}
.y11{bottom:276.072750px;}
.y12a{bottom:278.988150px;}
.y14f{bottom:280.355400px;}
.y101{bottom:282.241050px;}
.yd2{bottom:282.783150px;}
.yc1{bottom:282.790650px;}
.yab{bottom:282.813150px;}
.yec{bottom:282.858150px;}
.y90{bottom:282.952650px;}
.y6c{bottom:282.985650px;}
.y17b{bottom:284.988150px;}
.y33{bottom:284.991150px;}
.y110{bottom:286.854300px;}
.y10{bottom:291.078000px;}
.y129{bottom:294.738150px;}
.y14e{bottom:296.105400px;}
.y100{bottom:299.483550px;}
.yd1{bottom:300.025650px;}
.yc0{bottom:300.033150px;}
.yaa{bottom:300.055650px;}
.yeb{bottom:300.100650px;}
.y8f{bottom:300.195150px;}
.y6b{bottom:300.228150px;}
.y17a{bottom:300.738150px;}
.y10f{bottom:302.604300px;}
.yf{bottom:306.083250px;}
.y32{bottom:310.863150px;}
.y14d{bottom:311.855400px;}
.y179{bottom:316.488150px;}
.yff{bottom:316.726050px;}
.yd0{bottom:317.268150px;}
.ybf{bottom:317.275650px;}
.ya9{bottom:317.298150px;}
.yea{bottom:317.343150px;}
.y8e{bottom:317.437650px;}
.y6a{bottom:317.470650px;}
.y10e{bottom:318.354300px;}
.ye{bottom:321.088500px;}
.y14c{bottom:327.605400px;}
.y128{bottom:327.745650px;}
.y178{bottom:332.238150px;}
.yfe{bottom:333.968550px;}
.y10d{bottom:334.104300px;}
.ycf{bottom:334.510650px;}
.ybe{bottom:334.518150px;}
.ya8{bottom:334.540650px;}
.ye9{bottom:334.585650px;}
.y8d{bottom:334.680150px;}
.y69{bottom:334.713150px;}
.yd{bottom:336.093750px;}
.y14b{bottom:343.355400px;}
.y127{bottom:344.988150px;}
.y177{bottom:347.988150px;}
.yc{bottom:351.099000px;}
.yce{bottom:351.753150px;}
.ybd{bottom:351.760650px;}
.ya7{bottom:351.783150px;}
.ye8{bottom:351.828150px;}
.y8c{bottom:351.922650px;}
.y68{bottom:351.955650px;}
.y14a{bottom:359.105400px;}
.y176{bottom:363.738150px;}
.yb{bottom:366.104250px;}
.ycd{bottom:368.995650px;}
.ybc{bottom:369.003150px;}
.ya6{bottom:369.025650px;}
.ye7{bottom:369.070650px;}
.y8b{bottom:369.165150px;}
.y67{bottom:369.198150px;}
.yfd{bottom:372.478350px;}
.y149{bottom:374.855400px;}
.y46{bottom:379.474350px;}
.y126{bottom:379.488150px;}
.ybb{bottom:386.245650px;}
.ya5{bottom:386.268150px;}
.ye6{bottom:386.313150px;}
.y8a{bottom:386.407650px;}
.y66{bottom:386.440650px;}
.yfc{bottom:388.228350px;}
.y148{bottom:390.605400px;}
.y45{bottom:394.479600px;}
.y125{bottom:395.238150px;}
.ya{bottom:396.100500px;}
.ya4{bottom:403.510650px;}
.ye5{bottom:403.555650px;}
.y89{bottom:403.650150px;}
.y65{bottom:403.683150px;}
.yfb{bottom:403.978350px;}
.y147{bottom:406.355400px;}
.y4b{bottom:409.456350px;}
.y44{bottom:409.484850px;}
.y124{bottom:410.988150px;}
.yfa{bottom:419.728350px;}
.ya3{bottom:420.753150px;}
.ye4{bottom:420.798150px;}
.y88{bottom:420.892650px;}
.y64{bottom:420.925650px;}
.y146{bottom:422.105400px;}
.y123{bottom:426.738150px;}
.ycc{bottom:429.522150px;}
.y4a{bottom:430.460850px;}
.y43{bottom:430.489350px;}
.yf9{bottom:435.478350px;}
.y145{bottom:437.855400px;}
.ya2{bottom:437.995650px;}
.ye3{bottom:438.040650px;}
.y87{bottom:438.135150px;}
.y63{bottom:438.168150px;}
.y175{bottom:442.488150px;}
.y49{bottom:451.465350px;}
.y42{bottom:451.493850px;}
.y144{bottom:453.605400px;}
.ye2{bottom:455.283150px;}
.y86{bottom:455.377650px;}
.y62{bottom:455.410650px;}
.y174{bottom:458.238150px;}
.y122{bottom:459.783150px;}
.y41{bottom:466.499100px;}
.y143{bottom:469.355400px;}
.y48{bottom:472.469850px;}
.ye1{bottom:472.525650px;}
.y85{bottom:472.620150px;}
.y61{bottom:472.653150px;}
.y173{bottom:473.988150px;}
.y121{bottom:477.025650px;}
.y142{bottom:485.105400px;}
.y47{bottom:487.475100px;}
.y40{bottom:487.503600px;}
.y172{bottom:489.738150px;}
.ye0{bottom:489.768150px;}
.y84{bottom:489.862650px;}
.y60{bottom:489.895650px;}
.y120{bottom:494.268150px;}
.y141{bottom:500.855400px;}
.y171{bottom:505.488150px;}
.ydf{bottom:507.010650px;}
.y83{bottom:507.105150px;}
.y5f{bottom:507.138150px;}
.y11f{bottom:511.510650px;}
.y3f{bottom:514.701300px;}
.y140{bottom:516.605400px;}
.y170{bottom:521.238150px;}
.yde{bottom:524.253150px;}
.y82{bottom:524.347650px;}
.y5e{bottom:524.380650px;}
.y11e{bottom:528.753150px;}
.y13f{bottom:532.355400px;}
.y16f{bottom:536.988150px;}
.ydd{bottom:541.495650px;}
.y81{bottom:541.590150px;}
.y5d{bottom:541.623150px;}
.y11d{bottom:545.995650px;}
.y13e{bottom:548.105400px;}
.y16e{bottom:552.738150px;}
.y80{bottom:558.832650px;}
.y5c{bottom:558.865650px;}
.y31{bottom:560.903400px;}
.y11c{bottom:563.238150px;}
.y13d{bottom:563.855400px;}
.y16d{bottom:568.488150px;}
.y9{bottom:574.590000px;}
.y30{bottom:575.908650px;}
.y7f{bottom:576.075150px;}
.y5b{bottom:576.108150px;}
.y13c{bottom:579.605400px;}
.y16c{bottom:584.238150px;}
.ya1{bottom:584.704650px;}
.y8{bottom:588.846000px;}
.y7e{bottom:593.317650px;}
.y5a{bottom:593.350650px;}
.y13b{bottom:595.355400px;}
.y2f{bottom:596.913150px;}
.y11b{bottom:597.738150px;}
.y16b{bottom:599.988150px;}
.yf8{bottom:601.947150px;}
.y7d{bottom:610.560150px;}
.y59{bottom:610.593150px;}
.y13a{bottom:611.105400px;}
.y2e{bottom:611.918400px;}
.y11a{bottom:613.488150px;}
.y16a{bottom:615.738150px;}
.y139{bottom:626.855400px;}
.y2d{bottom:626.923650px;}
.y7c{bottom:627.802650px;}
.y58{bottom:627.835650px;}
.y119{bottom:629.238150px;}
.y169{bottom:631.488150px;}
.y2c{bottom:641.928900px;}
.y138{bottom:642.605400px;}
.y7b{bottom:645.045150px;}
.y57{bottom:645.078150px;}
.y168{bottom:647.238150px;}
.y2b{bottom:656.934150px;}
.y137{bottom:658.355400px;}
.y7a{bottom:662.287650px;}
.y56{bottom:662.320650px;}
.y167{bottom:662.988150px;}
.y2a{bottom:671.939400px;}
.y136{bottom:674.105400px;}
.y166{bottom:678.738150px;}
.y79{bottom:679.530150px;}
.y55{bottom:679.563150px;}
.y29{bottom:686.944650px;}
.y135{bottom:689.855400px;}
.y165{bottom:694.488150px;}
.yba{bottom:696.772650px;}
.y54{bottom:696.805650px;}
.y28{bottom:701.949900px;}
.y78{bottom:705.402150px;}
.y164{bottom:710.238150px;}
.yb9{bottom:714.015150px;}
.y53{bottom:714.048150px;}
.y134{bottom:714.279150px;}
.y27{bottom:716.955150px;}
.y163{bottom:725.988150px;}
.yb8{bottom:731.257650px;}
.y52{bottom:731.290650px;}
.y26{bottom:731.960400px;}
.y162{bottom:741.738150px;}
.y7{bottom:745.594500px;}
.y25{bottom:746.965650px;}
.y51{bottom:748.533150px;}
.yb7{bottom:757.129650px;}
.y161{bottom:757.488150px;}
.y6{bottom:759.850500px;}
.y24{bottom:761.970900px;}
.y50{bottom:765.775650px;}
.y160{bottom:773.238150px;}
.yb6{bottom:774.372150px;}
.y23{bottom:776.976150px;}
.y5{bottom:777.850500px;}
.y4f{bottom:783.018150px;}
.y15f{bottom:788.988150px;}
.y22{bottom:791.981400px;}
.y4e{bottom:800.260650px;}
.y15e{bottom:804.738150px;}
.y21{bottom:806.986650px;}
.y4d{bottom:817.503150px;}
.y15d{bottom:820.488150px;}
.y20{bottom:821.991900px;}
.y4{bottom:822.850500px;}
.y4c{bottom:834.745650px;}
.y15c{bottom:836.238150px;}
.y3{bottom:846.850500px;}
.y1f{bottom:851.988150px;}
.y2{bottom:897.914250px;}
.y1e{bottom:897.960300px;}
.y1{bottom:911.864250px;}
.h2{height:40.368000px;}
.h6{height:40.774000px;}
.h5{height:45.414000px;}
.h8{height:47.212000px;}
.h7{height:47.937000px;}
.ha{height:50.460000px;}
.hb{height:50.799000px;}
.h9{height:55.506000px;}
.h4{height:60.552000px;}
.h3{height:80.736000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1{left:95.626800px;}
.xf{left:112.499250px;}
.xd{left:118.175250px;}
.x8{left:134.344200px;}
.xe{left:140.669250px;}
.xa{left:145.288200px;}
.x10{left:163.169250px;}
.xb{left:164.924700px;}
.x9{left:179.815950px;}
.x6{left:192.170700px;}
.x7{left:202.501950px;}
.x5{left:253.260450px;}
.x4{left:314.480850px;}
.xc{left:352.810950px;}
.x3{left:456.436650px;}
.x2{left:460.392150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:16.986667pt;}
.ls50{letter-spacing:-1.408000pt;}
.ls56{letter-spacing:-1.349333pt;}
.ls52{letter-spacing:-1.173333pt;}
.ls58{letter-spacing:-1.114667pt;}
.ls79{letter-spacing:-1.066667pt;}
.ls6b{letter-spacing:-1.013333pt;}
.ls51{letter-spacing:-0.997333pt;}
.ls6a{letter-spacing:-0.960000pt;}
.ls4e{letter-spacing:-0.938667pt;}
.ls54{letter-spacing:-0.880000pt;}
.ls26{letter-spacing:-0.853333pt;}
.ls4f{letter-spacing:-0.821333pt;}
.ls78{letter-spacing:-0.800000pt;}
.ls57{letter-spacing:-0.762667pt;}
.ls53{letter-spacing:-0.704000pt;}
.ls67{letter-spacing:-0.693333pt;}
.ls31{letter-spacing:-0.645333pt;}
.ls64{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.586667pt;}
.ls69{letter-spacing:-0.533333pt;}
.ls35{letter-spacing:-0.528000pt;}
.ls5{letter-spacing:-0.506667pt;}
.ls59{letter-spacing:-0.480000pt;}
.ls36{letter-spacing:-0.469333pt;}
.ls6{letter-spacing:-0.456000pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.410667pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.352000pt;}
.ls63{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.304000pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls77{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.253333pt;}
.ls29{letter-spacing:-0.234667pt;}
.ls5b{letter-spacing:-0.213333pt;}
.ls27{letter-spacing:-0.176000pt;}
.ls37{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.117333pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.101333pt;}
.ls2a{letter-spacing:-0.058667pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.023467pt;}
.ls2c{letter-spacing:0.029333pt;}
.ls55{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.058667pt;}
.ls47{letter-spacing:0.082133pt;}
.ls3f{letter-spacing:0.088000pt;}
.ls4b{letter-spacing:0.096000pt;}
.ls33{letter-spacing:0.106667pt;}
.ls4a{letter-spacing:0.112533pt;}
.ls1e{letter-spacing:0.117333pt;}
.ls66{letter-spacing:0.133333pt;}
.ls32{letter-spacing:0.146667pt;}
.ls0{letter-spacing:0.152000pt;}
.ls71{letter-spacing:0.160000pt;}
.ls3b{letter-spacing:0.176000pt;}
.ls6e{letter-spacing:0.186667pt;}
.ls4c{letter-spacing:0.192000pt;}
.ls5d{letter-spacing:0.205333pt;}
.ls62{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.234667pt;}
.ls75{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.253333pt;}
.ls1b{letter-spacing:0.258133pt;}
.ls5a{letter-spacing:0.264000pt;}
.ls72{letter-spacing:0.266667pt;}
.ls76{letter-spacing:0.277333pt;}
.ls2e{letter-spacing:0.293333pt;}
.ls15{letter-spacing:0.304000pt;}
.ls4d{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.322667pt;}
.ls49{letter-spacing:0.336000pt;}
.ls20{letter-spacing:0.352000pt;}
.lsc{letter-spacing:0.354667pt;}
.ls60{letter-spacing:0.373333pt;}
.ls3a{letter-spacing:0.381333pt;}
.ls48{letter-spacing:0.384000pt;}
.ls73{letter-spacing:0.400000pt;}
.ls10{letter-spacing:0.405333pt;}
.ls1c{letter-spacing:0.410667pt;}
.ls6d{letter-spacing:0.426667pt;}
.ls61{letter-spacing:0.453333pt;}
.ls1f{letter-spacing:0.469333pt;}
.ls65{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.498667pt;}
.lsd{letter-spacing:0.506667pt;}
.ls30{letter-spacing:0.528000pt;}
.ls5f{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.557333pt;}
.ls44{letter-spacing:0.574400pt;}
.ls16{letter-spacing:0.586667pt;}
.ls46{letter-spacing:0.610133pt;}
.ls5e{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.645333pt;}
.ls1{letter-spacing:0.658667pt;}
.ls45{letter-spacing:0.672000pt;}
.ls70{letter-spacing:0.693333pt;}
.ls3d{letter-spacing:0.704000pt;}
.lsb{letter-spacing:0.709333pt;}
.ls3c{letter-spacing:0.733333pt;}
.ls6c{letter-spacing:0.746667pt;}
.ls13{letter-spacing:0.762667pt;}
.ls24{letter-spacing:0.792000pt;}
.ls6f{letter-spacing:0.800000pt;}
.ls40{letter-spacing:0.816000pt;}
.ls12{letter-spacing:0.821333pt;}
.ls2d{letter-spacing:0.850667pt;}
.ls68{letter-spacing:0.853333pt;}
.ls25{letter-spacing:0.880000pt;}
.lsf{letter-spacing:0.912000pt;}
.ls21{letter-spacing:0.938667pt;}
.ls3e{letter-spacing:0.968000pt;}
.ls2f{letter-spacing:0.997333pt;}
.ls41{letter-spacing:1.056000pt;}
.ls43{letter-spacing:1.114667pt;}
.ls22{letter-spacing:1.290667pt;}
.ls74{letter-spacing:1.386667pt;}
.ls23{letter-spacing:1.466667pt;}
.ws36{word-spacing:-14.666667pt;}
.ws42{word-spacing:-14.608000pt;}
.ws7c{word-spacing:-14.080000pt;}
.ws55{word-spacing:-13.786667pt;}
.ws84{word-spacing:-13.653333pt;}
.ws53{word-spacing:-13.546667pt;}
.ws6d{word-spacing:-13.520000pt;}
.ws60{word-spacing:-13.466667pt;}
.ws6f{word-spacing:-13.440000pt;}
.ws7d{word-spacing:-13.333333pt;}
.ws6e{word-spacing:-13.120000pt;}
.ws54{word-spacing:-13.013333pt;}
.ws7e{word-spacing:-12.853333pt;}
.ws37{word-spacing:-9.533333pt;}
.ws0{word-spacing:-8.960000pt;}
.ws83{word-spacing:-8.666667pt;}
.ws68{word-spacing:-0.853333pt;}
.ws74{word-spacing:-0.800000pt;}
.ws14{word-spacing:-0.762667pt;}
.ws76{word-spacing:-0.746667pt;}
.ws12{word-spacing:-0.704000pt;}
.ws27{word-spacing:-0.693333pt;}
.ws4{word-spacing:-0.658667pt;}
.ws29{word-spacing:-0.645333pt;}
.ws4e{word-spacing:-0.640000pt;}
.ws3{word-spacing:-0.608000pt;}
.ws13{word-spacing:-0.586667pt;}
.ws52{word-spacing:-0.533333pt;}
.ws25{word-spacing:-0.528000pt;}
.wse{word-spacing:-0.506667pt;}
.ws65{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.469333pt;}
.ws51{word-spacing:-0.426667pt;}
.ws5d{word-spacing:-0.373333pt;}
.wsd{word-spacing:-0.354667pt;}
.ws21{word-spacing:-0.352000pt;}
.ws4b{word-spacing:-0.336000pt;}
.ws66{word-spacing:-0.320000pt;}
.ws2b{word-spacing:-0.293333pt;}
.ws85{word-spacing:-0.277333pt;}
.ws67{word-spacing:-0.266667pt;}
.ws6{word-spacing:-0.253333pt;}
.ws15{word-spacing:-0.234667pt;}
.ws4d{word-spacing:-0.213333pt;}
.ws3b{word-spacing:-0.176000pt;}
.ws7b{word-spacing:-0.160000pt;}
.ws8{word-spacing:-0.152000pt;}
.ws49{word-spacing:-0.144000pt;}
.ws33{word-spacing:-0.117333pt;}
.ws64{word-spacing:-0.106667pt;}
.wsa{word-spacing:-0.101333pt;}
.ws19{word-spacing:-0.058667pt;}
.ws81{word-spacing:-0.053333pt;}
.ws47{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.053333pt;}
.ws40{word-spacing:0.058667pt;}
.wsf{word-spacing:0.101333pt;}
.ws5b{word-spacing:0.106667pt;}
.ws2d{word-spacing:0.117333pt;}
.ws5f{word-spacing:0.160000pt;}
.ws1e{word-spacing:0.176000pt;}
.ws61{word-spacing:0.213333pt;}
.ws24{word-spacing:0.234667pt;}
.ws4a{word-spacing:0.240000pt;}
.ws4f{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.293333pt;}
.ws5a{word-spacing:0.320000pt;}
.ws38{word-spacing:0.352000pt;}
.ws57{word-spacing:0.373333pt;}
.ws41{word-spacing:0.410667pt;}
.ws59{word-spacing:0.426667pt;}
.ws30{word-spacing:0.469333pt;}
.ws34{word-spacing:0.528000pt;}
.ws6b{word-spacing:0.533333pt;}
.ws17{word-spacing:0.586667pt;}
.ws5e{word-spacing:0.640000pt;}
.ws43{word-spacing:0.645333pt;}
.ws7{word-spacing:0.658667pt;}
.ws82{word-spacing:0.693333pt;}
.ws16{word-spacing:0.704000pt;}
.ws2f{word-spacing:0.762667pt;}
.ws58{word-spacing:0.800000pt;}
.ws1d{word-spacing:0.821333pt;}
.ws7f{word-spacing:0.853333pt;}
.wsc{word-spacing:0.861333pt;}
.ws3d{word-spacing:0.864000pt;}
.ws1a{word-spacing:0.880000pt;}
.ws73{word-spacing:0.906667pt;}
.ws18{word-spacing:0.938667pt;}
.ws6c{word-spacing:0.960000pt;}
.ws2c{word-spacing:0.997333pt;}
.ws1c{word-spacing:1.056000pt;}
.ws9{word-spacing:1.114667pt;}
.ws4c{word-spacing:1.120000pt;}
.ws2a{word-spacing:1.173333pt;}
.ws48{word-spacing:1.200000pt;}
.ws62{word-spacing:1.226667pt;}
.ws23{word-spacing:1.232000pt;}
.ws5{word-spacing:1.266667pt;}
.ws6a{word-spacing:1.280000pt;}
.ws35{word-spacing:1.290667pt;}
.ws26{word-spacing:1.333333pt;}
.ws45{word-spacing:1.344000pt;}
.ws39{word-spacing:1.349333pt;}
.wsb{word-spacing:1.368000pt;}
.ws78{word-spacing:1.386667pt;}
.ws46{word-spacing:1.408000pt;}
.ws79{word-spacing:1.440000pt;}
.ws10{word-spacing:1.466667pt;}
.ws70{word-spacing:1.493333pt;}
.ws22{word-spacing:1.525333pt;}
.ws77{word-spacing:1.546667pt;}
.ws28{word-spacing:1.584000pt;}
.ws75{word-spacing:1.600000pt;}
.ws3c{word-spacing:1.632000pt;}
.ws1b{word-spacing:1.642667pt;}
.ws11{word-spacing:1.701333pt;}
.ws69{word-spacing:1.706667pt;}
.ws44{word-spacing:1.760000pt;}
.ws50{word-spacing:1.818667pt;}
.ws31{word-spacing:1.877333pt;}
.ws2e{word-spacing:1.936000pt;}
.ws20{word-spacing:1.994667pt;}
.ws3a{word-spacing:2.053333pt;}
.ws3e{word-spacing:2.112000pt;}
.ws3f{word-spacing:2.229333pt;}
.ws80{word-spacing:12.693333pt;}
.ws7a{word-spacing:12.746667pt;}
.ws72{word-spacing:13.333333pt;}
.ws71{word-spacing:13.440000pt;}
.ws63{word-spacing:13.653333pt;}
.ws56{word-spacing:66.666667pt;}
.ws2{word-spacing:832.469333pt;}
._2{margin-left:-800.466667pt;}
._5{margin-left:-15.149333pt;}
._f{margin-left:-14.240000pt;}
._7{margin-left:-13.274667pt;}
._6{margin-left:-11.906667pt;}
._0{margin-left:-1.707733pt;}
._9{width:1.622400pt;}
._e{width:10.346667pt;}
._c{width:11.360000pt;}
._d{width:15.146667pt;}
._b{width:29.643733pt;}
._3{width:32.000000pt;}
._a{width:33.527467pt;}
._8{width:60.289067pt;}
._1{width:588.069333pt;}
._4{width:874.326400pt;}
.fs9{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs8{font-size:38.133333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:80.009333pt;}
.y133{bottom:80.698800pt;}
.y15b{bottom:81.204800pt;}
.yf7{bottom:81.222533pt;}
.ydc{bottom:81.243867pt;}
.yb5{bottom:81.249200pt;}
.ycb{bottom:81.254533pt;}
.y10c{bottom:82.287600pt;}
.y9b{bottom:82.920133pt;}
.y77{bottom:82.949467pt;}
.y118{bottom:83.964667pt;}
.y3e{bottom:84.732133pt;}
.y187{bottom:85.322800pt;}
.ya0{bottom:85.758533pt;}
.y1c{bottom:93.347333pt;}
.yf6{bottom:93.894533pt;}
.ydb{bottom:93.915867pt;}
.yb4{bottom:93.921200pt;}
.yca{bottom:93.926533pt;}
.y15a{bottom:95.204800pt;}
.y132{bottom:96.025467pt;}
.y10b{bottom:97.614267pt;}
.y9a{bottom:98.246800pt;}
.y76{bottom:98.276133pt;}
.y117{bottom:99.291333pt;}
.y186{bottom:99.322800pt;}
.y9f{bottom:99.758533pt;}
.y3d{bottom:100.058800pt;}
.yf5{bottom:106.566533pt;}
.yda{bottom:106.587867pt;}
.yb3{bottom:106.593200pt;}
.y159{bottom:109.204800pt;}
.y131{bottom:111.352133pt;}
.y1b{bottom:112.018000pt;}
.y10a{bottom:112.940933pt;}
.y185{bottom:113.322800pt;}
.y99{bottom:113.573467pt;}
.y75{bottom:113.602800pt;}
.y9e{bottom:113.758533pt;}
.y3c{bottom:115.385467pt;}
.yf4{bottom:119.238533pt;}
.yd9{bottom:119.259867pt;}
.y158{bottom:123.204800pt;}
.y1a{bottom:125.356000pt;}
.y130{bottom:126.678800pt;}
.y184{bottom:127.322800pt;}
.y9d{bottom:127.758533pt;}
.y109{bottom:128.267600pt;}
.yc9{bottom:128.756133pt;}
.y98{bottom:128.900133pt;}
.y74{bottom:128.929467pt;}
.y3b{bottom:130.712133pt;}
.y116{bottom:131.632533pt;}
.yf3{bottom:131.910533pt;}
.y157{bottom:137.204800pt;}
.y19{bottom:138.694000pt;}
.y183{bottom:141.322800pt;}
.y9c{bottom:141.758533pt;}
.y12f{bottom:142.005467pt;}
.y108{bottom:143.594267pt;}
.yc8{bottom:144.082800pt;}
.yb2{bottom:144.102800pt;}
.y97{bottom:144.226800pt;}
.y73{bottom:144.256133pt;}
.yf2{bottom:144.582533pt;}
.y3a{bottom:146.038800pt;}
.y156{bottom:151.204800pt;}
.y18{bottom:152.032000pt;}
.y182{bottom:155.322800pt;}
.yf1{bottom:157.254533pt;}
.y12e{bottom:157.332133pt;}
.y107{bottom:158.920933pt;}
.yd8{bottom:159.402800pt;}
.yc7{bottom:159.409467pt;}
.yb1{bottom:159.429467pt;}
.y96{bottom:159.553467pt;}
.y72{bottom:159.582800pt;}
.y39{bottom:161.365467pt;}
.y115{bottom:162.660400pt;}
.y155{bottom:165.204800pt;}
.y17{bottom:165.370000pt;}
.y181{bottom:169.322800pt;}
.yf0{bottom:169.926533pt;}
.y12d{bottom:172.658800pt;}
.y106{bottom:174.247600pt;}
.yd7{bottom:174.729467pt;}
.yc6{bottom:174.736133pt;}
.yb0{bottom:174.756133pt;}
.y95{bottom:174.880133pt;}
.y71{bottom:174.909467pt;}
.y38{bottom:176.692133pt;}
.y114{bottom:177.987067pt;}
.y16{bottom:178.708000pt;}
.y154{bottom:179.204800pt;}
.y180{bottom:183.322800pt;}
.y105{bottom:189.574267pt;}
.yd6{bottom:190.056133pt;}
.yc5{bottom:190.062800pt;}
.yaf{bottom:190.082800pt;}
.y94{bottom:190.206800pt;}
.y70{bottom:190.236133pt;}
.y37{bottom:192.018800pt;}
.y15{bottom:192.046000pt;}
.y153{bottom:193.204800pt;}
.y113{bottom:193.313733pt;}
.y12c{bottom:195.656133pt;}
.y17f{bottom:197.322800pt;}
.y104{bottom:204.900933pt;}
.yef{bottom:205.336133pt;}
.yd5{bottom:205.382800pt;}
.y14{bottom:205.384000pt;}
.yc4{bottom:205.389467pt;}
.yae{bottom:205.409467pt;}
.y93{bottom:205.533467pt;}
.y6f{bottom:205.562800pt;}
.y152{bottom:207.204800pt;}
.y36{bottom:207.345467pt;}
.y112{bottom:208.640400pt;}
.y17e{bottom:211.322800pt;}
.y13{bottom:218.722000pt;}
.y103{bottom:220.227600pt;}
.yee{bottom:220.662800pt;}
.yd4{bottom:220.709467pt;}
.yc3{bottom:220.716133pt;}
.yad{bottom:220.736133pt;}
.y92{bottom:220.860133pt;}
.y6e{bottom:220.889467pt;}
.y151{bottom:221.204800pt;}
.y35{bottom:222.672133pt;}
.y17d{bottom:225.322800pt;}
.y12{bottom:232.060000pt;}
.y12b{bottom:233.989467pt;}
.y150{bottom:235.204800pt;}
.y102{bottom:235.554267pt;}
.yd3{bottom:236.036133pt;}
.yc2{bottom:236.042800pt;}
.yac{bottom:236.062800pt;}
.yed{bottom:236.102800pt;}
.y91{bottom:236.186800pt;}
.y6d{bottom:236.216133pt;}
.y34{bottom:237.998800pt;}
.y17c{bottom:239.322800pt;}
.y111{bottom:240.981600pt;}
.y11{bottom:245.398000pt;}
.y12a{bottom:247.989467pt;}
.y14f{bottom:249.204800pt;}
.y101{bottom:250.880933pt;}
.yd2{bottom:251.362800pt;}
.yc1{bottom:251.369467pt;}
.yab{bottom:251.389467pt;}
.yec{bottom:251.429467pt;}
.y90{bottom:251.513467pt;}
.y6c{bottom:251.542800pt;}
.y17b{bottom:253.322800pt;}
.y33{bottom:253.325467pt;}
.y110{bottom:254.981600pt;}
.y10{bottom:258.736000pt;}
.y129{bottom:261.989467pt;}
.y14e{bottom:263.204800pt;}
.y100{bottom:266.207600pt;}
.yd1{bottom:266.689467pt;}
.yc0{bottom:266.696133pt;}
.yaa{bottom:266.716133pt;}
.yeb{bottom:266.756133pt;}
.y8f{bottom:266.840133pt;}
.y6b{bottom:266.869467pt;}
.y17a{bottom:267.322800pt;}
.y10f{bottom:268.981600pt;}
.yf{bottom:272.074000pt;}
.y32{bottom:276.322800pt;}
.y14d{bottom:277.204800pt;}
.y179{bottom:281.322800pt;}
.yff{bottom:281.534267pt;}
.yd0{bottom:282.016133pt;}
.ybf{bottom:282.022800pt;}
.ya9{bottom:282.042800pt;}
.yea{bottom:282.082800pt;}
.y8e{bottom:282.166800pt;}
.y6a{bottom:282.196133pt;}
.y10e{bottom:282.981600pt;}
.ye{bottom:285.412000pt;}
.y14c{bottom:291.204800pt;}
.y128{bottom:291.329467pt;}
.y178{bottom:295.322800pt;}
.yfe{bottom:296.860933pt;}
.y10d{bottom:296.981600pt;}
.ycf{bottom:297.342800pt;}
.ybe{bottom:297.349467pt;}
.ya8{bottom:297.369467pt;}
.ye9{bottom:297.409467pt;}
.y8d{bottom:297.493467pt;}
.y69{bottom:297.522800pt;}
.yd{bottom:298.750000pt;}
.y14b{bottom:305.204800pt;}
.y127{bottom:306.656133pt;}
.y177{bottom:309.322800pt;}
.yc{bottom:312.088000pt;}
.yce{bottom:312.669467pt;}
.ybd{bottom:312.676133pt;}
.ya7{bottom:312.696133pt;}
.ye8{bottom:312.736133pt;}
.y8c{bottom:312.820133pt;}
.y68{bottom:312.849467pt;}
.y14a{bottom:319.204800pt;}
.y176{bottom:323.322800pt;}
.yb{bottom:325.426000pt;}
.ycd{bottom:327.996133pt;}
.ybc{bottom:328.002800pt;}
.ya6{bottom:328.022800pt;}
.ye7{bottom:328.062800pt;}
.y8b{bottom:328.146800pt;}
.y67{bottom:328.176133pt;}
.yfd{bottom:331.091867pt;}
.y149{bottom:333.204800pt;}
.y46{bottom:337.310533pt;}
.y126{bottom:337.322800pt;}
.ybb{bottom:343.329467pt;}
.ya5{bottom:343.349467pt;}
.ye6{bottom:343.389467pt;}
.y8a{bottom:343.473467pt;}
.y66{bottom:343.502800pt;}
.yfc{bottom:345.091867pt;}
.y148{bottom:347.204800pt;}
.y45{bottom:350.648533pt;}
.y125{bottom:351.322800pt;}
.ya{bottom:352.089333pt;}
.ya4{bottom:358.676133pt;}
.ye5{bottom:358.716133pt;}
.y89{bottom:358.800133pt;}
.y65{bottom:358.829467pt;}
.yfb{bottom:359.091867pt;}
.y147{bottom:361.204800pt;}
.y4b{bottom:363.961200pt;}
.y44{bottom:363.986533pt;}
.y124{bottom:365.322800pt;}
.yfa{bottom:373.091867pt;}
.ya3{bottom:374.002800pt;}
.ye4{bottom:374.042800pt;}
.y88{bottom:374.126800pt;}
.y64{bottom:374.156133pt;}
.y146{bottom:375.204800pt;}
.y123{bottom:379.322800pt;}
.ycc{bottom:381.797467pt;}
.y4a{bottom:382.631867pt;}
.y43{bottom:382.657200pt;}
.yf9{bottom:387.091867pt;}
.y145{bottom:389.204800pt;}
.ya2{bottom:389.329467pt;}
.ye3{bottom:389.369467pt;}
.y87{bottom:389.453467pt;}
.y63{bottom:389.482800pt;}
.y175{bottom:393.322800pt;}
.y49{bottom:401.302533pt;}
.y42{bottom:401.327867pt;}
.y144{bottom:403.204800pt;}
.ye2{bottom:404.696133pt;}
.y86{bottom:404.780133pt;}
.y62{bottom:404.809467pt;}
.y174{bottom:407.322800pt;}
.y122{bottom:408.696133pt;}
.y41{bottom:414.665867pt;}
.y143{bottom:417.204800pt;}
.y48{bottom:419.973200pt;}
.ye1{bottom:420.022800pt;}
.y85{bottom:420.106800pt;}
.y61{bottom:420.136133pt;}
.y173{bottom:421.322800pt;}
.y121{bottom:424.022800pt;}
.y142{bottom:431.204800pt;}
.y47{bottom:433.311200pt;}
.y40{bottom:433.336533pt;}
.y172{bottom:435.322800pt;}
.ye0{bottom:435.349467pt;}
.y84{bottom:435.433467pt;}
.y60{bottom:435.462800pt;}
.y120{bottom:439.349467pt;}
.y141{bottom:445.204800pt;}
.y171{bottom:449.322800pt;}
.ydf{bottom:450.676133pt;}
.y83{bottom:450.760133pt;}
.y5f{bottom:450.789467pt;}
.y11f{bottom:454.676133pt;}
.y3f{bottom:457.512267pt;}
.y140{bottom:459.204800pt;}
.y170{bottom:463.322800pt;}
.yde{bottom:466.002800pt;}
.y82{bottom:466.086800pt;}
.y5e{bottom:466.116133pt;}
.y11e{bottom:470.002800pt;}
.y13f{bottom:473.204800pt;}
.y16f{bottom:477.322800pt;}
.ydd{bottom:481.329467pt;}
.y81{bottom:481.413467pt;}
.y5d{bottom:481.442800pt;}
.y11d{bottom:485.329467pt;}
.y13e{bottom:487.204800pt;}
.y16e{bottom:491.322800pt;}
.y80{bottom:496.740133pt;}
.y5c{bottom:496.769467pt;}
.y31{bottom:498.580800pt;}
.y11c{bottom:500.656133pt;}
.y13d{bottom:501.204800pt;}
.y16d{bottom:505.322800pt;}
.y9{bottom:510.746667pt;}
.y30{bottom:511.918800pt;}
.y7f{bottom:512.066800pt;}
.y5b{bottom:512.096133pt;}
.y13c{bottom:515.204800pt;}
.y16c{bottom:519.322800pt;}
.ya1{bottom:519.737467pt;}
.y8{bottom:523.418667pt;}
.y7e{bottom:527.393467pt;}
.y5a{bottom:527.422800pt;}
.y13b{bottom:529.204800pt;}
.y2f{bottom:530.589467pt;}
.y11b{bottom:531.322800pt;}
.y16b{bottom:533.322800pt;}
.yf8{bottom:535.064133pt;}
.y7d{bottom:542.720133pt;}
.y59{bottom:542.749467pt;}
.y13a{bottom:543.204800pt;}
.y2e{bottom:543.927467pt;}
.y11a{bottom:545.322800pt;}
.y16a{bottom:547.322800pt;}
.y139{bottom:557.204800pt;}
.y2d{bottom:557.265467pt;}
.y7c{bottom:558.046800pt;}
.y58{bottom:558.076133pt;}
.y119{bottom:559.322800pt;}
.y169{bottom:561.322800pt;}
.y2c{bottom:570.603467pt;}
.y138{bottom:571.204800pt;}
.y7b{bottom:573.373467pt;}
.y57{bottom:573.402800pt;}
.y168{bottom:575.322800pt;}
.y2b{bottom:583.941467pt;}
.y137{bottom:585.204800pt;}
.y7a{bottom:588.700133pt;}
.y56{bottom:588.729467pt;}
.y167{bottom:589.322800pt;}
.y2a{bottom:597.279467pt;}
.y136{bottom:599.204800pt;}
.y166{bottom:603.322800pt;}
.y79{bottom:604.026800pt;}
.y55{bottom:604.056133pt;}
.y29{bottom:610.617467pt;}
.y135{bottom:613.204800pt;}
.y165{bottom:617.322800pt;}
.yba{bottom:619.353467pt;}
.y54{bottom:619.382800pt;}
.y28{bottom:623.955467pt;}
.y78{bottom:627.024133pt;}
.y164{bottom:631.322800pt;}
.yb9{bottom:634.680133pt;}
.y53{bottom:634.709467pt;}
.y134{bottom:634.914800pt;}
.y27{bottom:637.293467pt;}
.y163{bottom:645.322800pt;}
.yb8{bottom:650.006800pt;}
.y52{bottom:650.036133pt;}
.y26{bottom:650.631467pt;}
.y162{bottom:659.322800pt;}
.y7{bottom:662.750667pt;}
.y25{bottom:663.969467pt;}
.y51{bottom:665.362800pt;}
.yb7{bottom:673.004133pt;}
.y161{bottom:673.322800pt;}
.y6{bottom:675.422667pt;}
.y24{bottom:677.307467pt;}
.y50{bottom:680.689467pt;}
.y160{bottom:687.322800pt;}
.yb6{bottom:688.330800pt;}
.y23{bottom:690.645467pt;}
.y5{bottom:691.422667pt;}
.y4f{bottom:696.016133pt;}
.y15f{bottom:701.322800pt;}
.y22{bottom:703.983467pt;}
.y4e{bottom:711.342800pt;}
.y15e{bottom:715.322800pt;}
.y21{bottom:717.321467pt;}
.y4d{bottom:726.669467pt;}
.y15d{bottom:729.322800pt;}
.y20{bottom:730.659467pt;}
.y4{bottom:731.422667pt;}
.y4c{bottom:741.996133pt;}
.y15c{bottom:743.322800pt;}
.y3{bottom:752.756000pt;}
.y1f{bottom:757.322800pt;}
.y2{bottom:798.146000pt;}
.y1e{bottom:798.186933pt;}
.y1{bottom:810.546000pt;}
.h2{height:35.882667pt;}
.h6{height:36.243556pt;}
.h5{height:40.368000pt;}
.h8{height:41.966222pt;}
.h7{height:42.610667pt;}
.ha{height:44.853333pt;}
.hb{height:45.154667pt;}
.h9{height:49.338667pt;}
.h4{height:53.824000pt;}
.h3{height:71.765333pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1{left:85.001600pt;}
.xf{left:99.999333pt;}
.xd{left:105.044667pt;}
.x8{left:119.417067pt;}
.xe{left:125.039333pt;}
.xa{left:129.145067pt;}
.x10{left:145.039333pt;}
.xb{left:146.599733pt;}
.x9{left:159.836400pt;}
.x6{left:170.818400pt;}
.x7{left:180.001733pt;}
.x5{left:225.120400pt;}
.x4{left:279.538533pt;}
.xc{left:313.609733pt;}
.x3{left:405.721467pt;}
.x2{left:409.237467pt;}
}




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