
    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_df35feef3e8fd6f2ef32fe8a.woff2')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_c5af8fdcdc64c9e53334fba5.woff2')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_b14c57e7488c95f7d4a3edf1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_652c59a3626b8900538e8e18.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_deab21601353f7b2be550d4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_bb98917713a5715c2b9813a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_d9d9a7268b35d4198e2ea24b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f855e8533fe80d9437eef92d.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.167273,0.185795,-0.185795,0.167273,0,0);-ms-transform:matrix(0.167273,0.185795,-0.185795,0.167273,0,0);-webkit-transform:matrix(0.167273,0.185795,-0.185795,0.167273,0,0);}
.m2{transform:matrix(0.185179,-0.167954,0.167954,0.185179,0,0);-ms-transform:matrix(0.185179,-0.167954,0.167954,0.185179,0,0);-webkit-transform:matrix(0.185179,-0.167954,0.167954,0.185179,0,0);}
.m3{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,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);}
.m4{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);}
.v3{vertical-align:-16.476600px;}
.v1{vertical-align:-1.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.476600px;}
.ls61{letter-spacing:-2.220000px;}
.ls62{letter-spacing:-1.380000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls64{letter-spacing:-0.300000px;}
.ls63{letter-spacing:-0.240000px;}
.ls7e{letter-spacing:-0.192000px;}
.ls47{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.120000px;}
.ls7d{letter-spacing:-0.096000px;}
.ls49{letter-spacing:-0.060000px;}
.ls1d{letter-spacing:-0.048000px;}
.ls1b{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.004200px;}
.ls70{letter-spacing:0.048000px;}
.ls16{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.180000px;}
.ls60{letter-spacing:0.192000px;}
.ls2a{letter-spacing:0.240000px;}
.ls1f{letter-spacing:0.300000px;}
.ls27{letter-spacing:0.360000px;}
.ls6a{letter-spacing:0.384000px;}
.ls25{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.480000px;}
.ls52{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.600000px;}
.ls68{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.660000px;}
.ls5c{letter-spacing:0.672000px;}
.ls43{letter-spacing:0.720000px;}
.ls6c{letter-spacing:0.768000px;}
.ls38{letter-spacing:0.780000px;}
.ls2e{letter-spacing:0.840000px;}
.ls1{letter-spacing:0.864000px;}
.ls18{letter-spacing:0.900000px;}
.ls78{letter-spacing:0.912000px;}
.ls4c{letter-spacing:0.960000px;}
.ls5f{letter-spacing:1.008000px;}
.ls2b{letter-spacing:1.020000px;}
.ls5d{letter-spacing:1.056000px;}
.lsf{letter-spacing:1.080000px;}
.ls2f{letter-spacing:1.140000px;}
.ls7c{letter-spacing:1.152000px;}
.ls3a{letter-spacing:1.200000px;}
.ls1a{letter-spacing:1.260000px;}
.ls5b{letter-spacing:1.296000px;}
.ls30{letter-spacing:1.320000px;}
.ls3b{letter-spacing:1.380000px;}
.ls36{letter-spacing:1.440000px;}
.ls74{letter-spacing:1.488000px;}
.ls39{letter-spacing:1.500000px;}
.ls7a{letter-spacing:1.536000px;}
.ls14{letter-spacing:1.560000px;}
.ls15{letter-spacing:1.620000px;}
.ls57{letter-spacing:1.680000px;}
.ls75{letter-spacing:1.728000px;}
.lse{letter-spacing:1.740000px;}
.ls4b{letter-spacing:1.800000px;}
.ls10{letter-spacing:1.860000px;}
.ls41{letter-spacing:1.920000px;}
.ls21{letter-spacing:1.980000px;}
.lsa{letter-spacing:2.040000px;}
.ls8{letter-spacing:2.100000px;}
.ls37{letter-spacing:2.160000px;}
.ls6e{letter-spacing:2.208000px;}
.ls34{letter-spacing:2.220000px;}
.lsc{letter-spacing:2.280000px;}
.ls7{letter-spacing:2.340000px;}
.ls77{letter-spacing:2.352000px;}
.ls13{letter-spacing:2.400000px;}
.ls5e{letter-spacing:2.448000px;}
.ls24{letter-spacing:2.460000px;}
.ls35{letter-spacing:2.520000px;}
.ls2c{letter-spacing:2.580000px;}
.ls71{letter-spacing:2.592000px;}
.ls20{letter-spacing:2.640000px;}
.ls6b{letter-spacing:2.688000px;}
.ls17{letter-spacing:2.700000px;}
.ls3d{letter-spacing:2.760000px;}
.ls45{letter-spacing:2.820000px;}
.ls5a{letter-spacing:2.880000px;}
.ls3e{letter-spacing:2.940000px;}
.ls79{letter-spacing:2.976000px;}
.ls11{letter-spacing:3.000000px;}
.ls6d{letter-spacing:3.072000px;}
.ls29{letter-spacing:3.120000px;}
.ls7b{letter-spacing:3.168000px;}
.ls31{letter-spacing:3.240000px;}
.ls4e{letter-spacing:3.300000px;}
.ls6f{letter-spacing:3.312000px;}
.ls19{letter-spacing:3.360000px;}
.ls59{letter-spacing:3.420000px;}
.ls76{letter-spacing:3.456000px;}
.ls51{letter-spacing:3.480000px;}
.ls72{letter-spacing:3.504000px;}
.ls44{letter-spacing:3.540000px;}
.ls65{letter-spacing:3.600000px;}
.ls46{letter-spacing:3.660000px;}
.ls50{letter-spacing:3.720000px;}
.ls73{letter-spacing:3.744000px;}
.ls2d{letter-spacing:3.780000px;}
.ls66{letter-spacing:3.936000px;}
.ls4f{letter-spacing:3.960000px;}
.ls9{letter-spacing:4.020000px;}
.ls32{letter-spacing:4.080000px;}
.ls6{letter-spacing:4.140000px;}
.ls4{letter-spacing:4.200000px;}
.ls23{letter-spacing:4.260000px;}
.ls56{letter-spacing:4.320000px;}
.ls4a{letter-spacing:4.380000px;}
.ls67{letter-spacing:4.416000px;}
.ls28{letter-spacing:4.500000px;}
.ls5{letter-spacing:4.740000px;}
.ls33{letter-spacing:4.860000px;}
.ls42{letter-spacing:4.980000px;}
.ls12{letter-spacing:5.040000px;}
.ls22{letter-spacing:5.220000px;}
.ls69{letter-spacing:5.328000px;}
.ls58{letter-spacing:5.640000px;}
.ls3{letter-spacing:5.880000px;}
.ls3f{letter-spacing:6.360000px;}
.ls3c{letter-spacing:6.720000px;}
.ls40{letter-spacing:6.960000px;}
.ls53{letter-spacing:7.320000px;}
.ls54{letter-spacing:83.013600px;}
.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;}
}
.ws52{word-spacing:-20.700000px;}
.ws3b{word-spacing:-19.980000px;}
.ws3d{word-spacing:-19.680000px;}
.ws23{word-spacing:-19.620000px;}
.ws1{word-spacing:-19.020000px;}
.ws50{word-spacing:-18.600000px;}
.ws4f{word-spacing:-18.540000px;}
.ws2{word-spacing:-18.240000px;}
.ws53{word-spacing:-18.000000px;}
.ws3a{word-spacing:-17.640000px;}
.ws3{word-spacing:-17.580000px;}
.ws3c{word-spacing:-17.460000px;}
.ws15{word-spacing:-17.340000px;}
.ws55{word-spacing:-17.280000px;}
.ws51{word-spacing:-16.740000px;}
.ws22{word-spacing:-16.680000px;}
.ws63{word-spacing:-16.656000px;}
.ws54{word-spacing:-14.352000px;}
.ws17{word-spacing:-14.178000px;}
.ws0{word-spacing:-13.344000px;}
.ws5d{word-spacing:-5.640000px;}
.ws36{word-spacing:-4.500000px;}
.ws57{word-spacing:-4.380000px;}
.ws66{word-spacing:-4.320000px;}
.ws3f{word-spacing:-4.200000px;}
.ws48{word-spacing:-3.480000px;}
.ws5e{word-spacing:-3.420000px;}
.ws32{word-spacing:-3.360000px;}
.ws67{word-spacing:-3.312000px;}
.ws6a{word-spacing:-3.168000px;}
.ws69{word-spacing:-2.976000px;}
.ws14{word-spacing:-2.700000px;}
.ws5{word-spacing:-2.664000px;}
.ws60{word-spacing:-2.580000px;}
.ws5f{word-spacing:-2.520000px;}
.ws21{word-spacing:-2.340000px;}
.ws1d{word-spacing:-2.220000px;}
.ws1f{word-spacing:-2.100000px;}
.ws47{word-spacing:-1.920000px;}
.ws13{word-spacing:-1.560000px;}
.ws68{word-spacing:-1.488000px;}
.ws58{word-spacing:-1.260000px;}
.ws61{word-spacing:-1.008000px;}
.ws40{word-spacing:-0.960000px;}
.ws39{word-spacing:-0.720000px;}
.ws56{word-spacing:-0.600000px;}
.ws38{word-spacing:-0.480000px;}
.ws8{word-spacing:-0.384000px;}
.ws1a{word-spacing:-0.360000px;}
.ws35{word-spacing:-0.240000px;}
.ws4{word-spacing:0.000000px;}
.ws34{word-spacing:0.060000px;}
.ws2c{word-spacing:0.120000px;}
.ws42{word-spacing:0.180000px;}
.ws1b{word-spacing:0.240000px;}
.ws19{word-spacing:0.300000px;}
.ws4d{word-spacing:0.420000px;}
.ws4c{word-spacing:0.540000px;}
.ws4e{word-spacing:0.912000px;}
.ws45{word-spacing:0.960000px;}
.ws2a{word-spacing:1.020000px;}
.ws2b{word-spacing:1.080000px;}
.ws27{word-spacing:1.140000px;}
.ws6b{word-spacing:1.200000px;}
.ws30{word-spacing:1.260000px;}
.ws64{word-spacing:1.344000px;}
.ws5b{word-spacing:1.380000px;}
.ws59{word-spacing:1.620000px;}
.wsb{word-spacing:1.680000px;}
.wsf{word-spacing:1.740000px;}
.ws26{word-spacing:1.860000px;}
.ws4a{word-spacing:1.920000px;}
.ws25{word-spacing:2.100000px;}
.ws7{word-spacing:2.112000px;}
.ws5c{word-spacing:2.160000px;}
.ws5a{word-spacing:2.220000px;}
.ws9{word-spacing:2.256000px;}
.ws29{word-spacing:2.280000px;}
.ws43{word-spacing:2.520000px;}
.ws31{word-spacing:2.580000px;}
.ws41{word-spacing:2.640000px;}
.ws62{word-spacing:2.784000px;}
.ws11{word-spacing:2.880000px;}
.ws2f{word-spacing:2.940000px;}
.ws44{word-spacing:3.000000px;}
.ws1c{word-spacing:3.060000px;}
.wsa{word-spacing:3.072000px;}
.ws28{word-spacing:3.120000px;}
.ws2d{word-spacing:3.240000px;}
.ws1e{word-spacing:3.480000px;}
.ws46{word-spacing:3.540000px;}
.ws49{word-spacing:3.840000px;}
.ws10{word-spacing:3.960000px;}
.ws2e{word-spacing:4.020000px;}
.ws65{word-spacing:4.272000px;}
.ws6{word-spacing:4.368000px;}
.ws24{word-spacing:4.380000px;}
.wsc{word-spacing:4.416000px;}
.ws12{word-spacing:4.440000px;}
.ws20{word-spacing:4.620000px;}
.ws18{word-spacing:4.740000px;}
.ws37{word-spacing:4.980000px;}
.wse{word-spacing:5.460000px;}
.wsd{word-spacing:5.520000px;}
.ws33{word-spacing:6.360000px;}
.ws4b{word-spacing:795.216000px;}
.ws3e{word-spacing:890.400000px;}
.ws16{word-spacing:1063.656000px;}
._a{margin-left:-2898.126000px;}
._d{margin-left:-2874.309000px;}
._3{margin-left:-7.326000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.552000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.122000px;}
._5{width:1.008000px;}
._6{width:2.352000px;}
._c{width:4.080000px;}
._8{width:5.880000px;}
._9{width:7.200000px;}
._7{width:8.400000px;}
._b{width:10.440000px;}
._e{width:50.460000px;}
._10{width:53.520000px;}
._12{width:66.864000px;}
._1a{width:357.936000px;}
._1e{width:387.264000px;}
._18{width:427.296000px;}
._1c{width:430.800000px;}
._16{width:451.392000px;}
._14{width:465.168000px;}
._19{width:472.704000px;}
._1d{width:478.512000px;}
._1b{width:532.224000px;}
._f{width:549.936000px;}
._15{width:552.720000px;}
._17{width:560.592000px;}
._22{width:573.936000px;}
._11{width:592.704000px;}
._23{width:606.912000px;}
._20{width:638.880000px;}
._21{width:646.896000px;}
._1f{width:665.568000px;}
._13{width:716.304000px;}
.fc2{color:rgb(4,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:28.800000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs7{font-size:66.000061px;}
.fs8{font-size:66.000102px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y4f{bottom:83.138100px;}
.y122{bottom:83.363850px;}
.y2a{bottom:83.493900px;}
.yc7{bottom:83.509350px;}
.yf9{bottom:83.563200px;}
.y10d{bottom:87.517200px;}
.y133{bottom:94.799550px;}
.y4e{bottom:98.882100px;}
.yf8{bottom:99.307200px;}
.y121{bottom:101.363850px;}
.yc6{bottom:101.509350px;}
.y10c{bottom:108.887850px;}
.y132{bottom:109.799550px;}
.y120{bottom:119.363850px;}
.y94{bottom:119.367600px;}
.yc5{bottom:119.509350px;}
.y16{bottom:121.513200px;}
.y131{bottom:124.799550px;}
.y10b{bottom:125.147850px;}
.y11f{bottom:137.363850px;}
.y93{bottom:137.367600px;}
.yc4{bottom:137.509350px;}
.y130{bottom:139.799550px;}
.y10a{bottom:141.407850px;}
.y12f{bottom:154.799550px;}
.y11e{bottom:155.363850px;}
.y92{bottom:155.367600px;}
.yc3{bottom:155.509350px;}
.y109{bottom:157.667850px;}
.y5c{bottom:158.830200px;}
.y54{bottom:164.427300px;}
.y12e{bottom:169.799550px;}
.y11d{bottom:173.363850px;}
.y91{bottom:173.367600px;}
.yc2{bottom:173.509350px;}
.y108{bottom:173.927850px;}
.y55{bottom:174.749550px;}
.y50{bottom:176.925450px;}
.y12d{bottom:184.799550px;}
.y26{bottom:188.107800px;}
.y107{bottom:190.175850px;}
.y11c{bottom:191.363850px;}
.y90{bottom:191.367600px;}
.yc1{bottom:191.509350px;}
.y12c{bottom:199.799550px;}
.y5f{bottom:200.374650px;}
.y51{bottom:204.300450px;}
.y25{bottom:206.107800px;}
.y106{bottom:206.423850px;}
.y11b{bottom:209.363850px;}
.y8f{bottom:209.367600px;}
.yc0{bottom:209.509350px;}
.y12b{bottom:214.799550px;}
.y59{bottom:218.040150px;}
.y105{bottom:222.671850px;}
.y24{bottom:224.107800px;}
.y11a{bottom:227.363850px;}
.y8e{bottom:227.367600px;}
.ybf{bottom:227.509350px;}
.y5e{bottom:227.874150px;}
.y12a{bottom:229.799550px;}
.y104{bottom:238.931850px;}
.y52{bottom:239.475450px;}
.y23{bottom:242.107800px;}
.y129{bottom:244.796700px;}
.y119{bottom:245.363850px;}
.y8d{bottom:245.367600px;}
.ybe{bottom:245.509350px;}
.y103{bottom:255.179850px;}
.y58{bottom:258.540150px;}
.y128{bottom:259.796700px;}
.y22{bottom:260.107800px;}
.y118{bottom:263.363850px;}
.y8c{bottom:263.367600px;}
.ybd{bottom:263.509350px;}
.y53{bottom:266.775450px;}
.y102{bottom:271.439850px;}
.y127{bottom:274.796700px;}
.y21{bottom:278.107800px;}
.y117{bottom:281.363850px;}
.y8b{bottom:281.367600px;}
.ybc{bottom:281.509350px;}
.yf7{bottom:286.060050px;}
.y5b{bottom:286.854750px;}
.y101{bottom:287.687850px;}
.y126{bottom:289.796700px;}
.y20{bottom:296.107800px;}
.y116{bottom:299.363850px;}
.y8a{bottom:299.367600px;}
.ybb{bottom:299.502600px;}
.y57{bottom:302.496150px;}
.y100{bottom:303.935850px;}
.y125{bottom:304.796700px;}
.y1f{bottom:314.107800px;}
.y115{bottom:317.363850px;}
.y89{bottom:317.367600px;}
.yba{bottom:317.502600px;}
.y124{bottom:319.796700px;}
.y1e{bottom:332.107800px;}
.yff{bottom:332.939850px;}
.y114{bottom:335.363850px;}
.y88{bottom:335.367600px;}
.yb9{bottom:335.502600px;}
.y56{bottom:340.062150px;}
.y1d{bottom:350.107800px;}
.y123{bottom:353.228850px;}
.y113{bottom:353.363850px;}
.y87{bottom:353.367600px;}
.yb8{bottom:353.502600px;}
.yfe{bottom:361.943850px;}
.y60{bottom:365.869650px;}
.y1c{bottom:368.107800px;}
.y112{bottom:371.363850px;}
.y86{bottom:371.367600px;}
.yb7{bottom:371.502600px;}
.y1b{bottom:386.107800px;}
.y111{bottom:389.363850px;}
.y85{bottom:389.367600px;}
.yb6{bottom:389.502600px;}
.yfd{bottom:394.257300px;}
.y5a{bottom:401.304300px;}
.y5d{bottom:402.374400px;}
.y1a{bottom:404.107800px;}
.y110{bottom:407.363850px;}
.y84{bottom:407.367600px;}
.yb5{bottom:407.502600px;}
.y19{bottom:422.107800px;}
.y10f{bottom:425.363850px;}
.y83{bottom:425.367600px;}
.yb4{bottom:425.502600px;}
.yfc{bottom:439.027800px;}
.y18{bottom:440.107800px;}
.y10e{bottom:443.363850px;}
.y82{bottom:443.367600px;}
.yb3{bottom:443.502600px;}
.yfb{bottom:454.771800px;}
.y27{bottom:458.107800px;}
.y48{bottom:461.363850px;}
.y81{bottom:461.367600px;}
.yb2{bottom:461.502600px;}
.y17{bottom:476.107800px;}
.y47{bottom:479.363850px;}
.y80{bottom:479.367600px;}
.yb1{bottom:479.502600px;}
.yf6{bottom:482.080050px;}
.y46{bottom:497.363850px;}
.y7f{bottom:497.367600px;}
.yb0{bottom:497.502600px;}
.y45{bottom:515.363850px;}
.y7e{bottom:515.367600px;}
.yaf{bottom:515.502600px;}
.y44{bottom:533.363850px;}
.y7d{bottom:533.367600px;}
.yf5{bottom:533.378850px;}
.yae{bottom:533.502600px;}
.y43{bottom:551.363850px;}
.y7c{bottom:551.367600px;}
.yf4{bottom:551.378850px;}
.yad{bottom:551.502600px;}
.y15{bottom:551.894550px;}
.y4d{bottom:569.363850px;}
.y7b{bottom:569.367600px;}
.yf3{bottom:569.378850px;}
.yac{bottom:569.502600px;}
.yd9{bottom:569.513850px;}
.y14{bottom:584.750550px;}
.y42{bottom:587.363850px;}
.y7a{bottom:587.367600px;}
.yf2{bottom:587.378850px;}
.yab{bottom:587.502600px;}
.yd8{bottom:587.513850px;}
.y13{bottom:599.750550px;}
.y4c{bottom:605.363850px;}
.y79{bottom:605.367600px;}
.yf1{bottom:605.378850px;}
.yaa{bottom:605.502600px;}
.yd7{bottom:605.513850px;}
.y12{bottom:614.750550px;}
.y150{bottom:619.938450px;}
.y41{bottom:623.228850px;}
.y4b{bottom:623.363850px;}
.y78{bottom:623.367600px;}
.yf0{bottom:623.378850px;}
.ya9{bottom:623.502600px;}
.yd6{bottom:623.513850px;}
.y11{bottom:629.750550px;}
.y14f{bottom:634.938450px;}
.y4a{bottom:641.363850px;}
.y77{bottom:641.367600px;}
.yef{bottom:641.378850px;}
.ya8{bottom:641.502600px;}
.yd5{bottom:641.513850px;}
.y10{bottom:644.750550px;}
.y14e{bottom:649.938450px;}
.y49{bottom:659.363850px;}
.y76{bottom:659.367600px;}
.yee{bottom:659.378850px;}
.ya7{bottom:659.502600px;}
.yd4{bottom:659.513850px;}
.yf{bottom:659.750550px;}
.y14d{bottom:664.938450px;}
.ye{bottom:674.750550px;}
.y40{bottom:677.363850px;}
.y75{bottom:677.367600px;}
.yed{bottom:677.378850px;}
.ya6{bottom:677.502600px;}
.yd3{bottom:677.513850px;}
.y14c{bottom:679.938450px;}
.yd{bottom:689.750550px;}
.y14b{bottom:694.938450px;}
.y3f{bottom:695.363850px;}
.y74{bottom:695.367600px;}
.yec{bottom:695.378850px;}
.ya5{bottom:695.502600px;}
.yd2{bottom:695.513850px;}
.yc{bottom:704.750550px;}
.y14a{bottom:709.938450px;}
.y3e{bottom:713.363850px;}
.y73{bottom:713.367600px;}
.yeb{bottom:713.378850px;}
.ya4{bottom:713.502600px;}
.yd1{bottom:713.513850px;}
.yb{bottom:719.750550px;}
.y149{bottom:724.938450px;}
.y3d{bottom:731.363850px;}
.y72{bottom:731.367600px;}
.yea{bottom:731.378850px;}
.ya3{bottom:731.502600px;}
.yd0{bottom:731.513850px;}
.ya{bottom:734.750550px;}
.y148{bottom:739.938450px;}
.y3c{bottom:749.363850px;}
.y71{bottom:749.367600px;}
.ye9{bottom:749.378850px;}
.ya2{bottom:749.502600px;}
.ycf{bottom:749.513850px;}
.y147{bottom:754.938450px;}
.y3b{bottom:767.363850px;}
.y70{bottom:767.367600px;}
.ye8{bottom:767.378850px;}
.ya1{bottom:767.502600px;}
.yce{bottom:767.513850px;}
.y146{bottom:769.938450px;}
.y9{bottom:783.494550px;}
.y145{bottom:784.938450px;}
.y3a{bottom:785.363850px;}
.y6f{bottom:785.367600px;}
.ye7{bottom:785.378850px;}
.ya0{bottom:785.502600px;}
.ycd{bottom:785.513850px;}
.y144{bottom:799.938450px;}
.y39{bottom:803.363850px;}
.y6e{bottom:803.367600px;}
.ye6{bottom:803.378850px;}
.y9f{bottom:803.502600px;}
.ycc{bottom:803.513850px;}
.y143{bottom:814.938450px;}
.y8{bottom:817.994550px;}
.y38{bottom:821.363850px;}
.y6d{bottom:821.367600px;}
.ye5{bottom:821.378850px;}
.y9e{bottom:821.502600px;}
.ycb{bottom:821.513850px;}
.y142{bottom:829.938450px;}
.y7{bottom:834.494550px;}
.y37{bottom:839.363850px;}
.y6c{bottom:839.367600px;}
.ye4{bottom:839.378850px;}
.y9d{bottom:839.502600px;}
.yca{bottom:839.513850px;}
.y141{bottom:844.938450px;}
.y6{bottom:853.879800px;}
.y36{bottom:857.363850px;}
.y6b{bottom:857.367600px;}
.ye3{bottom:857.378850px;}
.y9c{bottom:857.502600px;}
.yc9{bottom:857.513850px;}
.y140{bottom:859.938450px;}
.y13f{bottom:874.938450px;}
.y35{bottom:875.363850px;}
.y6a{bottom:875.367600px;}
.ye2{bottom:875.378850px;}
.y9b{bottom:875.502600px;}
.y5{bottom:881.263200px;}
.y13e{bottom:889.938450px;}
.y34{bottom:893.363850px;}
.y69{bottom:893.367600px;}
.ye1{bottom:893.378850px;}
.y9a{bottom:893.502600px;}
.yc8{bottom:893.513850px;}
.y13d{bottom:904.938450px;}
.y4{bottom:908.269200px;}
.y33{bottom:911.363850px;}
.y68{bottom:911.367600px;}
.ye0{bottom:911.378850px;}
.y99{bottom:911.502600px;}
.y13c{bottom:919.938450px;}
.y32{bottom:929.363850px;}
.y67{bottom:929.367600px;}
.ydf{bottom:929.378850px;}
.y98{bottom:929.502600px;}
.y13b{bottom:934.938450px;}
.y3{bottom:935.275200px;}
.y31{bottom:947.363850px;}
.y66{bottom:947.367600px;}
.yde{bottom:947.378850px;}
.y97{bottom:947.502600px;}
.y13a{bottom:949.938450px;}
.y139{bottom:964.938450px;}
.y30{bottom:965.363850px;}
.y65{bottom:965.367600px;}
.ydd{bottom:965.378850px;}
.y96{bottom:965.502600px;}
.y138{bottom:979.938450px;}
.y2{bottom:979.943400px;}
.y2f{bottom:983.363850px;}
.y64{bottom:983.367600px;}
.ydc{bottom:983.378850px;}
.y137{bottom:994.938450px;}
.y2e{bottom:1001.363850px;}
.y63{bottom:1001.367600px;}
.ydb{bottom:1001.378850px;}
.y95{bottom:1001.502600px;}
.y136{bottom:1009.938450px;}
.y2d{bottom:1019.363850px;}
.y135{bottom:1024.938450px;}
.y2c{bottom:1037.363850px;}
.y62{bottom:1037.367600px;}
.yda{bottom:1037.378850px;}
.y134{bottom:1039.938450px;}
.y29{bottom:1070.766450px;}
.y61{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.yfa{bottom:1086.069600px;}
.h16{height:26.554650px;}
.h6{height:34.945312px;}
.h8{height:34.968750px;}
.h2{height:37.652344px;}
.h9{height:42.986250px;}
.h7{height:43.031250px;}
.ha{height:43.681641px;}
.he{height:43.710938px;}
.hc{height:45.708703px;}
.hd{height:45.720703px;}
.h12{height:48.049805px;}
.h3{height:52.417969px;}
.h15{height:53.774662px;}
.hb{height:53.789062px;}
.h14{height:53.804063px;}
.h13{height:53.816063px;}
.h5{height:59.167969px;}
.hf{height:59.168024px;}
.h10{height:59.168060px;}
.h4{height:61.154297px;}
.h11{height:64.546875px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x27{left:82.062900px;}
.x2b{left:87.789300px;}
.x2c{left:91.125300px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x2f{left:106.295400px;}
.xc{left:110.555400px;}
.x3{left:125.431350px;}
.x6{left:131.816400px;}
.x1d{left:142.639050px;}
.xd{left:144.725400px;}
.x1e{left:157.639050px;}
.x4{left:161.575350px;}
.x29{left:200.297850px;}
.x2a{left:208.929300px;}
.x5{left:212.876400px;}
.x19{left:297.040200px;}
.x1f{left:316.139550px;}
.x1a{left:322.067100px;}
.x1b{left:327.998850px;}
.x28{left:348.666900px;}
.x1c{left:355.691100px;}
.x18{left:444.780300px;}
.xa{left:455.041500px;}
.xe{left:457.085400px;}
.x23{left:478.345350px;}
.x7{left:480.476400px;}
.x30{left:486.779400px;}
.xf{left:491.120400px;}
.x17{left:494.514300px;}
.x10{left:499.012800px;}
.x2e{left:508.106550px;}
.x24{left:512.365350px;}
.x8{left:514.496400px;}
.x11{left:523.462800px;}
.x16{left:544.986300px;}
.x12{left:558.937800px;}
.x26{left:579.425400px;}
.x15{left:584.514300px;}
.x14{left:590.482500px;}
.x2d{left:596.095350px;}
.x13{left:599.137800px;}
.x22{left:612.910350px;}
.x21{left:663.492300px;}
.x2{left:704.338650px;}
.x20{left:731.312100px;}
.x25{left:752.571900px;}
@media print{
.v3{vertical-align:-14.645867pt;}
.v1{vertical-align:-1.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.645867pt;}
.ls61{letter-spacing:-1.973333pt;}
.ls62{letter-spacing:-1.226667pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls64{letter-spacing:-0.266667pt;}
.ls63{letter-spacing:-0.213333pt;}
.ls7e{letter-spacing:-0.170667pt;}
.ls47{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.106667pt;}
.ls7d{letter-spacing:-0.085333pt;}
.ls49{letter-spacing:-0.053333pt;}
.ls1d{letter-spacing:-0.042667pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.003733pt;}
.ls70{letter-spacing:0.042667pt;}
.ls16{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.160000pt;}
.ls60{letter-spacing:0.170667pt;}
.ls2a{letter-spacing:0.213333pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls27{letter-spacing:0.320000pt;}
.ls6a{letter-spacing:0.341333pt;}
.ls25{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls52{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.533333pt;}
.ls68{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls5c{letter-spacing:0.597333pt;}
.ls43{letter-spacing:0.640000pt;}
.ls6c{letter-spacing:0.682667pt;}
.ls38{letter-spacing:0.693333pt;}
.ls2e{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.768000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls78{letter-spacing:0.810667pt;}
.ls4c{letter-spacing:0.853333pt;}
.ls5f{letter-spacing:0.896000pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls5d{letter-spacing:0.938667pt;}
.lsf{letter-spacing:0.960000pt;}
.ls2f{letter-spacing:1.013333pt;}
.ls7c{letter-spacing:1.024000pt;}
.ls3a{letter-spacing:1.066667pt;}
.ls1a{letter-spacing:1.120000pt;}
.ls5b{letter-spacing:1.152000pt;}
.ls30{letter-spacing:1.173333pt;}
.ls3b{letter-spacing:1.226667pt;}
.ls36{letter-spacing:1.280000pt;}
.ls74{letter-spacing:1.322667pt;}
.ls39{letter-spacing:1.333333pt;}
.ls7a{letter-spacing:1.365333pt;}
.ls14{letter-spacing:1.386667pt;}
.ls15{letter-spacing:1.440000pt;}
.ls57{letter-spacing:1.493333pt;}
.ls75{letter-spacing:1.536000pt;}
.lse{letter-spacing:1.546667pt;}
.ls4b{letter-spacing:1.600000pt;}
.ls10{letter-spacing:1.653333pt;}
.ls41{letter-spacing:1.706667pt;}
.ls21{letter-spacing:1.760000pt;}
.lsa{letter-spacing:1.813333pt;}
.ls8{letter-spacing:1.866667pt;}
.ls37{letter-spacing:1.920000pt;}
.ls6e{letter-spacing:1.962667pt;}
.ls34{letter-spacing:1.973333pt;}
.lsc{letter-spacing:2.026667pt;}
.ls7{letter-spacing:2.080000pt;}
.ls77{letter-spacing:2.090667pt;}
.ls13{letter-spacing:2.133333pt;}
.ls5e{letter-spacing:2.176000pt;}
.ls24{letter-spacing:2.186667pt;}
.ls35{letter-spacing:2.240000pt;}
.ls2c{letter-spacing:2.293333pt;}
.ls71{letter-spacing:2.304000pt;}
.ls20{letter-spacing:2.346667pt;}
.ls6b{letter-spacing:2.389333pt;}
.ls17{letter-spacing:2.400000pt;}
.ls3d{letter-spacing:2.453333pt;}
.ls45{letter-spacing:2.506667pt;}
.ls5a{letter-spacing:2.560000pt;}
.ls3e{letter-spacing:2.613333pt;}
.ls79{letter-spacing:2.645333pt;}
.ls11{letter-spacing:2.666667pt;}
.ls6d{letter-spacing:2.730667pt;}
.ls29{letter-spacing:2.773333pt;}
.ls7b{letter-spacing:2.816000pt;}
.ls31{letter-spacing:2.880000pt;}
.ls4e{letter-spacing:2.933333pt;}
.ls6f{letter-spacing:2.944000pt;}
.ls19{letter-spacing:2.986667pt;}
.ls59{letter-spacing:3.040000pt;}
.ls76{letter-spacing:3.072000pt;}
.ls51{letter-spacing:3.093333pt;}
.ls72{letter-spacing:3.114667pt;}
.ls44{letter-spacing:3.146667pt;}
.ls65{letter-spacing:3.200000pt;}
.ls46{letter-spacing:3.253333pt;}
.ls50{letter-spacing:3.306667pt;}
.ls73{letter-spacing:3.328000pt;}
.ls2d{letter-spacing:3.360000pt;}
.ls66{letter-spacing:3.498667pt;}
.ls4f{letter-spacing:3.520000pt;}
.ls9{letter-spacing:3.573333pt;}
.ls32{letter-spacing:3.626667pt;}
.ls6{letter-spacing:3.680000pt;}
.ls4{letter-spacing:3.733333pt;}
.ls23{letter-spacing:3.786667pt;}
.ls56{letter-spacing:3.840000pt;}
.ls4a{letter-spacing:3.893333pt;}
.ls67{letter-spacing:3.925333pt;}
.ls28{letter-spacing:4.000000pt;}
.ls5{letter-spacing:4.213333pt;}
.ls33{letter-spacing:4.320000pt;}
.ls42{letter-spacing:4.426667pt;}
.ls12{letter-spacing:4.480000pt;}
.ls22{letter-spacing:4.640000pt;}
.ls69{letter-spacing:4.736000pt;}
.ls58{letter-spacing:5.013333pt;}
.ls3{letter-spacing:5.226667pt;}
.ls3f{letter-spacing:5.653333pt;}
.ls3c{letter-spacing:5.973333pt;}
.ls40{letter-spacing:6.186667pt;}
.ls53{letter-spacing:6.506667pt;}
.ls54{letter-spacing:73.789867pt;}
.ws52{word-spacing:-18.400000pt;}
.ws3b{word-spacing:-17.760000pt;}
.ws3d{word-spacing:-17.493333pt;}
.ws23{word-spacing:-17.440000pt;}
.ws1{word-spacing:-16.906667pt;}
.ws50{word-spacing:-16.533333pt;}
.ws4f{word-spacing:-16.480000pt;}
.ws2{word-spacing:-16.213333pt;}
.ws53{word-spacing:-16.000000pt;}
.ws3a{word-spacing:-15.680000pt;}
.ws3{word-spacing:-15.626667pt;}
.ws3c{word-spacing:-15.520000pt;}
.ws15{word-spacing:-15.413333pt;}
.ws55{word-spacing:-15.360000pt;}
.ws51{word-spacing:-14.880000pt;}
.ws22{word-spacing:-14.826667pt;}
.ws63{word-spacing:-14.805333pt;}
.ws54{word-spacing:-12.757333pt;}
.ws17{word-spacing:-12.602667pt;}
.ws0{word-spacing:-11.861333pt;}
.ws5d{word-spacing:-5.013333pt;}
.ws36{word-spacing:-4.000000pt;}
.ws57{word-spacing:-3.893333pt;}
.ws66{word-spacing:-3.840000pt;}
.ws3f{word-spacing:-3.733333pt;}
.ws48{word-spacing:-3.093333pt;}
.ws5e{word-spacing:-3.040000pt;}
.ws32{word-spacing:-2.986667pt;}
.ws67{word-spacing:-2.944000pt;}
.ws6a{word-spacing:-2.816000pt;}
.ws69{word-spacing:-2.645333pt;}
.ws14{word-spacing:-2.400000pt;}
.ws5{word-spacing:-2.368000pt;}
.ws60{word-spacing:-2.293333pt;}
.ws5f{word-spacing:-2.240000pt;}
.ws21{word-spacing:-2.080000pt;}
.ws1d{word-spacing:-1.973333pt;}
.ws1f{word-spacing:-1.866667pt;}
.ws47{word-spacing:-1.706667pt;}
.ws13{word-spacing:-1.386667pt;}
.ws68{word-spacing:-1.322667pt;}
.ws58{word-spacing:-1.120000pt;}
.ws61{word-spacing:-0.896000pt;}
.ws40{word-spacing:-0.853333pt;}
.ws39{word-spacing:-0.640000pt;}
.ws56{word-spacing:-0.533333pt;}
.ws38{word-spacing:-0.426667pt;}
.ws8{word-spacing:-0.341333pt;}
.ws1a{word-spacing:-0.320000pt;}
.ws35{word-spacing:-0.213333pt;}
.ws4{word-spacing:0.000000pt;}
.ws34{word-spacing:0.053333pt;}
.ws2c{word-spacing:0.106667pt;}
.ws42{word-spacing:0.160000pt;}
.ws1b{word-spacing:0.213333pt;}
.ws19{word-spacing:0.266667pt;}
.ws4d{word-spacing:0.373333pt;}
.ws4c{word-spacing:0.480000pt;}
.ws4e{word-spacing:0.810667pt;}
.ws45{word-spacing:0.853333pt;}
.ws2a{word-spacing:0.906667pt;}
.ws2b{word-spacing:0.960000pt;}
.ws27{word-spacing:1.013333pt;}
.ws6b{word-spacing:1.066667pt;}
.ws30{word-spacing:1.120000pt;}
.ws64{word-spacing:1.194667pt;}
.ws5b{word-spacing:1.226667pt;}
.ws59{word-spacing:1.440000pt;}
.wsb{word-spacing:1.493333pt;}
.wsf{word-spacing:1.546667pt;}
.ws26{word-spacing:1.653333pt;}
.ws4a{word-spacing:1.706667pt;}
.ws25{word-spacing:1.866667pt;}
.ws7{word-spacing:1.877333pt;}
.ws5c{word-spacing:1.920000pt;}
.ws5a{word-spacing:1.973333pt;}
.ws9{word-spacing:2.005333pt;}
.ws29{word-spacing:2.026667pt;}
.ws43{word-spacing:2.240000pt;}
.ws31{word-spacing:2.293333pt;}
.ws41{word-spacing:2.346667pt;}
.ws62{word-spacing:2.474667pt;}
.ws11{word-spacing:2.560000pt;}
.ws2f{word-spacing:2.613333pt;}
.ws44{word-spacing:2.666667pt;}
.ws1c{word-spacing:2.720000pt;}
.wsa{word-spacing:2.730667pt;}
.ws28{word-spacing:2.773333pt;}
.ws2d{word-spacing:2.880000pt;}
.ws1e{word-spacing:3.093333pt;}
.ws46{word-spacing:3.146667pt;}
.ws49{word-spacing:3.413333pt;}
.ws10{word-spacing:3.520000pt;}
.ws2e{word-spacing:3.573333pt;}
.ws65{word-spacing:3.797333pt;}
.ws6{word-spacing:3.882667pt;}
.ws24{word-spacing:3.893333pt;}
.wsc{word-spacing:3.925333pt;}
.ws12{word-spacing:3.946667pt;}
.ws20{word-spacing:4.106667pt;}
.ws18{word-spacing:4.213333pt;}
.ws37{word-spacing:4.426667pt;}
.wse{word-spacing:4.853333pt;}
.wsd{word-spacing:4.906667pt;}
.ws33{word-spacing:5.653333pt;}
.ws4b{word-spacing:706.858667pt;}
.ws3e{word-spacing:791.466667pt;}
.ws16{word-spacing:945.472000pt;}
._a{margin-left:-2576.112000pt;}
._d{margin-left:-2554.941333pt;}
._3{margin-left:-6.512000pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.157333pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.997333pt;}
._5{width:0.896000pt;}
._6{width:2.090667pt;}
._c{width:3.626667pt;}
._8{width:5.226667pt;}
._9{width:6.400000pt;}
._7{width:7.466667pt;}
._b{width:9.280000pt;}
._e{width:44.853333pt;}
._10{width:47.573333pt;}
._12{width:59.434667pt;}
._1a{width:318.165333pt;}
._1e{width:344.234667pt;}
._18{width:379.818667pt;}
._1c{width:382.933333pt;}
._16{width:401.237333pt;}
._14{width:413.482667pt;}
._19{width:420.181333pt;}
._1d{width:425.344000pt;}
._1b{width:473.088000pt;}
._f{width:488.832000pt;}
._15{width:491.306667pt;}
._17{width:498.304000pt;}
._22{width:510.165333pt;}
._11{width:526.848000pt;}
._23{width:539.477333pt;}
._20{width:567.893333pt;}
._21{width:575.018667pt;}
._1f{width:591.616000pt;}
._13{width:636.714667pt;}
.fs9{font-size:25.600000pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs7{font-size:58.666721pt;}
.fs8{font-size:58.666757pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y4f{bottom:73.900533pt;}
.y122{bottom:74.101200pt;}
.y2a{bottom:74.216800pt;}
.yc7{bottom:74.230533pt;}
.yf9{bottom:74.278400pt;}
.y10d{bottom:77.793067pt;}
.y133{bottom:84.266267pt;}
.y4e{bottom:87.895200pt;}
.yf8{bottom:88.273067pt;}
.y121{bottom:90.101200pt;}
.yc6{bottom:90.230533pt;}
.y10c{bottom:96.789200pt;}
.y132{bottom:97.599600pt;}
.y120{bottom:106.101200pt;}
.y94{bottom:106.104533pt;}
.yc5{bottom:106.230533pt;}
.y16{bottom:108.011733pt;}
.y131{bottom:110.932933pt;}
.y10b{bottom:111.242533pt;}
.y11f{bottom:122.101200pt;}
.y93{bottom:122.104533pt;}
.yc4{bottom:122.230533pt;}
.y130{bottom:124.266267pt;}
.y10a{bottom:125.695867pt;}
.y12f{bottom:137.599600pt;}
.y11e{bottom:138.101200pt;}
.y92{bottom:138.104533pt;}
.yc3{bottom:138.230533pt;}
.y109{bottom:140.149200pt;}
.y5c{bottom:141.182400pt;}
.y54{bottom:146.157600pt;}
.y12e{bottom:150.932933pt;}
.y11d{bottom:154.101200pt;}
.y91{bottom:154.104533pt;}
.yc2{bottom:154.230533pt;}
.y108{bottom:154.602533pt;}
.y55{bottom:155.332933pt;}
.y50{bottom:157.267067pt;}
.y12d{bottom:164.266267pt;}
.y26{bottom:167.206933pt;}
.y107{bottom:169.045200pt;}
.y11c{bottom:170.101200pt;}
.y90{bottom:170.104533pt;}
.yc1{bottom:170.230533pt;}
.y12c{bottom:177.599600pt;}
.y5f{bottom:178.110800pt;}
.y51{bottom:181.600400pt;}
.y25{bottom:183.206933pt;}
.y106{bottom:183.487867pt;}
.y11b{bottom:186.101200pt;}
.y8f{bottom:186.104533pt;}
.yc0{bottom:186.230533pt;}
.y12b{bottom:190.932933pt;}
.y59{bottom:193.813467pt;}
.y105{bottom:197.930533pt;}
.y24{bottom:199.206933pt;}
.y11a{bottom:202.101200pt;}
.y8e{bottom:202.104533pt;}
.ybf{bottom:202.230533pt;}
.y5e{bottom:202.554800pt;}
.y12a{bottom:204.266267pt;}
.y104{bottom:212.383867pt;}
.y52{bottom:212.867067pt;}
.y23{bottom:215.206933pt;}
.y129{bottom:217.597067pt;}
.y119{bottom:218.101200pt;}
.y8d{bottom:218.104533pt;}
.ybe{bottom:218.230533pt;}
.y103{bottom:226.826533pt;}
.y58{bottom:229.813467pt;}
.y128{bottom:230.930400pt;}
.y22{bottom:231.206933pt;}
.y118{bottom:234.101200pt;}
.y8c{bottom:234.104533pt;}
.ybd{bottom:234.230533pt;}
.y53{bottom:237.133733pt;}
.y102{bottom:241.279867pt;}
.y127{bottom:244.263733pt;}
.y21{bottom:247.206933pt;}
.y117{bottom:250.101200pt;}
.y8b{bottom:250.104533pt;}
.ybc{bottom:250.230533pt;}
.yf7{bottom:254.275600pt;}
.y5b{bottom:254.982000pt;}
.y101{bottom:255.722533pt;}
.y126{bottom:257.597067pt;}
.y20{bottom:263.206933pt;}
.y116{bottom:266.101200pt;}
.y8a{bottom:266.104533pt;}
.ybb{bottom:266.224533pt;}
.y57{bottom:268.885467pt;}
.y100{bottom:270.165200pt;}
.y125{bottom:270.930400pt;}
.y1f{bottom:279.206933pt;}
.y115{bottom:282.101200pt;}
.y89{bottom:282.104533pt;}
.yba{bottom:282.224533pt;}
.y124{bottom:284.263733pt;}
.y1e{bottom:295.206933pt;}
.yff{bottom:295.946533pt;}
.y114{bottom:298.101200pt;}
.y88{bottom:298.104533pt;}
.yb9{bottom:298.224533pt;}
.y56{bottom:302.277467pt;}
.y1d{bottom:311.206933pt;}
.y123{bottom:313.981200pt;}
.y113{bottom:314.101200pt;}
.y87{bottom:314.104533pt;}
.yb8{bottom:314.224533pt;}
.yfe{bottom:321.727867pt;}
.y60{bottom:325.217467pt;}
.y1c{bottom:327.206933pt;}
.y112{bottom:330.101200pt;}
.y86{bottom:330.104533pt;}
.yb7{bottom:330.224533pt;}
.y1b{bottom:343.206933pt;}
.y111{bottom:346.101200pt;}
.y85{bottom:346.104533pt;}
.yb6{bottom:346.224533pt;}
.yfd{bottom:350.450933pt;}
.y5a{bottom:356.714933pt;}
.y5d{bottom:357.666133pt;}
.y1a{bottom:359.206933pt;}
.y110{bottom:362.101200pt;}
.y84{bottom:362.104533pt;}
.yb5{bottom:362.224533pt;}
.y19{bottom:375.206933pt;}
.y10f{bottom:378.101200pt;}
.y83{bottom:378.104533pt;}
.yb4{bottom:378.224533pt;}
.yfc{bottom:390.246933pt;}
.y18{bottom:391.206933pt;}
.y10e{bottom:394.101200pt;}
.y82{bottom:394.104533pt;}
.yb3{bottom:394.224533pt;}
.yfb{bottom:404.241600pt;}
.y27{bottom:407.206933pt;}
.y48{bottom:410.101200pt;}
.y81{bottom:410.104533pt;}
.yb2{bottom:410.224533pt;}
.y17{bottom:423.206933pt;}
.y47{bottom:426.101200pt;}
.y80{bottom:426.104533pt;}
.yb1{bottom:426.224533pt;}
.yf6{bottom:428.515600pt;}
.y46{bottom:442.101200pt;}
.y7f{bottom:442.104533pt;}
.yb0{bottom:442.224533pt;}
.y45{bottom:458.101200pt;}
.y7e{bottom:458.104533pt;}
.yaf{bottom:458.224533pt;}
.y44{bottom:474.101200pt;}
.y7d{bottom:474.104533pt;}
.yf5{bottom:474.114533pt;}
.yae{bottom:474.224533pt;}
.y43{bottom:490.101200pt;}
.y7c{bottom:490.104533pt;}
.yf4{bottom:490.114533pt;}
.yad{bottom:490.224533pt;}
.y15{bottom:490.572933pt;}
.y4d{bottom:506.101200pt;}
.y7b{bottom:506.104533pt;}
.yf3{bottom:506.114533pt;}
.yac{bottom:506.224533pt;}
.yd9{bottom:506.234533pt;}
.y14{bottom:519.778267pt;}
.y42{bottom:522.101200pt;}
.y7a{bottom:522.104533pt;}
.yf2{bottom:522.114533pt;}
.yab{bottom:522.224533pt;}
.yd8{bottom:522.234533pt;}
.y13{bottom:533.111600pt;}
.y4c{bottom:538.101200pt;}
.y79{bottom:538.104533pt;}
.yf1{bottom:538.114533pt;}
.yaa{bottom:538.224533pt;}
.yd7{bottom:538.234533pt;}
.y12{bottom:546.444933pt;}
.y150{bottom:551.056400pt;}
.y41{bottom:553.981200pt;}
.y4b{bottom:554.101200pt;}
.y78{bottom:554.104533pt;}
.yf0{bottom:554.114533pt;}
.ya9{bottom:554.224533pt;}
.yd6{bottom:554.234533pt;}
.y11{bottom:559.778267pt;}
.y14f{bottom:564.389733pt;}
.y4a{bottom:570.101200pt;}
.y77{bottom:570.104533pt;}
.yef{bottom:570.114533pt;}
.ya8{bottom:570.224533pt;}
.yd5{bottom:570.234533pt;}
.y10{bottom:573.111600pt;}
.y14e{bottom:577.723067pt;}
.y49{bottom:586.101200pt;}
.y76{bottom:586.104533pt;}
.yee{bottom:586.114533pt;}
.ya7{bottom:586.224533pt;}
.yd4{bottom:586.234533pt;}
.yf{bottom:586.444933pt;}
.y14d{bottom:591.056400pt;}
.ye{bottom:599.778267pt;}
.y40{bottom:602.101200pt;}
.y75{bottom:602.104533pt;}
.yed{bottom:602.114533pt;}
.ya6{bottom:602.224533pt;}
.yd3{bottom:602.234533pt;}
.y14c{bottom:604.389733pt;}
.yd{bottom:613.111600pt;}
.y14b{bottom:617.723067pt;}
.y3f{bottom:618.101200pt;}
.y74{bottom:618.104533pt;}
.yec{bottom:618.114533pt;}
.ya5{bottom:618.224533pt;}
.yd2{bottom:618.234533pt;}
.yc{bottom:626.444933pt;}
.y14a{bottom:631.056400pt;}
.y3e{bottom:634.101200pt;}
.y73{bottom:634.104533pt;}
.yeb{bottom:634.114533pt;}
.ya4{bottom:634.224533pt;}
.yd1{bottom:634.234533pt;}
.yb{bottom:639.778267pt;}
.y149{bottom:644.389733pt;}
.y3d{bottom:650.101200pt;}
.y72{bottom:650.104533pt;}
.yea{bottom:650.114533pt;}
.ya3{bottom:650.224533pt;}
.yd0{bottom:650.234533pt;}
.ya{bottom:653.111600pt;}
.y148{bottom:657.723067pt;}
.y3c{bottom:666.101200pt;}
.y71{bottom:666.104533pt;}
.ye9{bottom:666.114533pt;}
.ya2{bottom:666.224533pt;}
.ycf{bottom:666.234533pt;}
.y147{bottom:671.056400pt;}
.y3b{bottom:682.101200pt;}
.y70{bottom:682.104533pt;}
.ye8{bottom:682.114533pt;}
.ya1{bottom:682.224533pt;}
.yce{bottom:682.234533pt;}
.y146{bottom:684.389733pt;}
.y9{bottom:696.439600pt;}
.y145{bottom:697.723067pt;}
.y3a{bottom:698.101200pt;}
.y6f{bottom:698.104533pt;}
.ye7{bottom:698.114533pt;}
.ya0{bottom:698.224533pt;}
.ycd{bottom:698.234533pt;}
.y144{bottom:711.056400pt;}
.y39{bottom:714.101200pt;}
.y6e{bottom:714.104533pt;}
.ye6{bottom:714.114533pt;}
.y9f{bottom:714.224533pt;}
.ycc{bottom:714.234533pt;}
.y143{bottom:724.389733pt;}
.y8{bottom:727.106267pt;}
.y38{bottom:730.101200pt;}
.y6d{bottom:730.104533pt;}
.ye5{bottom:730.114533pt;}
.y9e{bottom:730.224533pt;}
.ycb{bottom:730.234533pt;}
.y142{bottom:737.723067pt;}
.y7{bottom:741.772933pt;}
.y37{bottom:746.101200pt;}
.y6c{bottom:746.104533pt;}
.ye4{bottom:746.114533pt;}
.y9d{bottom:746.224533pt;}
.yca{bottom:746.234533pt;}
.y141{bottom:751.056400pt;}
.y6{bottom:759.004267pt;}
.y36{bottom:762.101200pt;}
.y6b{bottom:762.104533pt;}
.ye3{bottom:762.114533pt;}
.y9c{bottom:762.224533pt;}
.yc9{bottom:762.234533pt;}
.y140{bottom:764.389733pt;}
.y13f{bottom:777.723067pt;}
.y35{bottom:778.101200pt;}
.y6a{bottom:778.104533pt;}
.ye2{bottom:778.114533pt;}
.y9b{bottom:778.224533pt;}
.y5{bottom:783.345067pt;}
.y13e{bottom:791.056400pt;}
.y34{bottom:794.101200pt;}
.y69{bottom:794.104533pt;}
.ye1{bottom:794.114533pt;}
.y9a{bottom:794.224533pt;}
.yc8{bottom:794.234533pt;}
.y13d{bottom:804.389733pt;}
.y4{bottom:807.350400pt;}
.y33{bottom:810.101200pt;}
.y68{bottom:810.104533pt;}
.ye0{bottom:810.114533pt;}
.y99{bottom:810.224533pt;}
.y13c{bottom:817.723067pt;}
.y32{bottom:826.101200pt;}
.y67{bottom:826.104533pt;}
.ydf{bottom:826.114533pt;}
.y98{bottom:826.224533pt;}
.y13b{bottom:831.056400pt;}
.y3{bottom:831.355733pt;}
.y31{bottom:842.101200pt;}
.y66{bottom:842.104533pt;}
.yde{bottom:842.114533pt;}
.y97{bottom:842.224533pt;}
.y13a{bottom:844.389733pt;}
.y139{bottom:857.723067pt;}
.y30{bottom:858.101200pt;}
.y65{bottom:858.104533pt;}
.ydd{bottom:858.114533pt;}
.y96{bottom:858.224533pt;}
.y138{bottom:871.056400pt;}
.y2{bottom:871.060800pt;}
.y2f{bottom:874.101200pt;}
.y64{bottom:874.104533pt;}
.ydc{bottom:874.114533pt;}
.y137{bottom:884.389733pt;}
.y2e{bottom:890.101200pt;}
.y63{bottom:890.104533pt;}
.ydb{bottom:890.114533pt;}
.y95{bottom:890.224533pt;}
.y136{bottom:897.723067pt;}
.y2d{bottom:906.101200pt;}
.y135{bottom:911.056400pt;}
.y2c{bottom:922.101200pt;}
.y62{bottom:922.104533pt;}
.yda{bottom:922.114533pt;}
.y134{bottom:924.389733pt;}
.y29{bottom:951.792400pt;}
.y61{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.yfa{bottom:965.395200pt;}
.h16{height:23.604133pt;}
.h6{height:31.062500pt;}
.h8{height:31.083333pt;}
.h2{height:33.468750pt;}
.h9{height:38.210000pt;}
.h7{height:38.250000pt;}
.ha{height:38.828125pt;}
.he{height:38.854167pt;}
.hc{height:40.629958pt;}
.hd{height:40.640625pt;}
.h12{height:42.710938pt;}
.h3{height:46.593750pt;}
.h15{height:47.799700pt;}
.hb{height:47.812500pt;}
.h14{height:47.825833pt;}
.h13{height:47.836500pt;}
.h5{height:52.593750pt;}
.hf{height:52.593799pt;}
.h10{height:52.593831pt;}
.h4{height:54.359375pt;}
.h11{height:57.375000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x27{left:72.944800pt;}
.x2b{left:78.034933pt;}
.x2c{left:81.000267pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2f{left:94.484800pt;}
.xc{left:98.271467pt;}
.x3{left:111.494533pt;}
.x6{left:117.170133pt;}
.x1d{left:126.790267pt;}
.xd{left:128.644800pt;}
.x1e{left:140.123600pt;}
.x4{left:143.622533pt;}
.x29{left:178.042533pt;}
.x2a{left:185.714933pt;}
.x5{left:189.223467pt;}
.x19{left:264.035733pt;}
.x1f{left:281.012933pt;}
.x1a{left:286.281867pt;}
.x1b{left:291.554533pt;}
.x28{left:309.926133pt;}
.x1c{left:316.169867pt;}
.x18{left:395.360267pt;}
.xa{left:404.481333pt;}
.xe{left:406.298133pt;}
.x23{left:425.195867pt;}
.x7{left:427.090133pt;}
.x30{left:432.692800pt;}
.xf{left:436.551467pt;}
.x17{left:439.568267pt;}
.x10{left:443.566933pt;}
.x2e{left:451.650267pt;}
.x24{left:455.435867pt;}
.x8{left:457.330133pt;}
.x11{left:465.300267pt;}
.x16{left:484.432267pt;}
.x12{left:496.833600pt;}
.x26{left:515.044800pt;}
.x15{left:519.568267pt;}
.x14{left:524.873333pt;}
.x2d{left:529.862533pt;}
.x13{left:532.566933pt;}
.x22{left:544.809200pt;}
.x21{left:589.770933pt;}
.x2{left:626.078800pt;}
.x20{left:650.055200pt;}
.x25{left:668.952800pt;}
}




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