
    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_51938648b920b382ec4af52d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_5e395bc30d86300163898cd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_a1791aa6992fa1d9d9c40d51.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.730000;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_d6f36046bc5800240c9a1217.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968000;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_4501f1474d578608b5a2b0f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.376000;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_05bebf9ed84fa59ebf79b311.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.044000;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_4501f1474d578608b5a2b0f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.376000;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_123f98a1174a056f42f01ec7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4e4fe38a36b9cb84bf41c5a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.623000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4501f1474d578608b5a2b0f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.376000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_301530278d79b4021c142dea.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2b9900f6d496f7399766a861.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.051000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_49faa81b05ad3cc9f2815298.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fa6a632c745b9575808bcec1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947000;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;}
.me{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.mc{transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.ls2c{letter-spacing:-2.143200px;}
.ls13{letter-spacing:-1.632000px;}
.ls27{letter-spacing:-1.581000px;}
.ls22{letter-spacing:-1.015200px;}
.ls28{letter-spacing:-0.938400px;}
.ls4{letter-spacing:-0.912000px;}
.ls21{letter-spacing:-0.864000px;}
.ls1f{letter-spacing:-0.816000px;}
.ls5{letter-spacing:-0.570000px;}
.ls10{letter-spacing:-0.564000px;}
.ls19{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.338400px;}
.ls1d{letter-spacing:-0.282000px;}
.ls1b{letter-spacing:-0.270000px;}
.ls2d{letter-spacing:-0.219000px;}
.ls1{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.282000px;}
.ls23{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.510000px;}
.ls0{letter-spacing:0.533280px;}
.ls1c{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.552000px;}
.lsb{letter-spacing:0.552672px;}
.ls14{letter-spacing:0.588060px;}
.ls6{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.930000px;}
.lsf{letter-spacing:0.938400px;}
.ls12{letter-spacing:0.960000px;}
.ls17{letter-spacing:1.311420px;}
.ls11{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.553265px;}
.ls20{letter-spacing:1.776000px;}
.ls7{letter-spacing:3.564000px;}
.ls2a{letter-spacing:22.898400px;}
.lsa{letter-spacing:23.142000px;}
.lse{letter-spacing:24.308400px;}
.ls9{letter-spacing:24.510000px;}
.ls26{letter-spacing:25.041600px;}
.lsd{letter-spacing:25.718400px;}
.ls25{letter-spacing:26.508000px;}
.ls15{letter-spacing:27.000000px;}
.ls24{letter-spacing:27.241200px;}
.ls16{letter-spacing:27.796500px;}
.ls29{letter-spacing:41.679600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-45.932265px;}
.ws4{word-spacing:-29.964000px;}
.ws2{word-spacing:-22.800000px;}
.ws16{word-spacing:-17.568000px;}
.ws37{word-spacing:-17.019000px;}
.wsb{word-spacing:-16.694400px;}
.ws9{word-spacing:-16.130400px;}
.ws31{word-spacing:-15.679200px;}
.ws51{word-spacing:-14.551200px;}
.ws18{word-spacing:-14.425620px;}
.ws8{word-spacing:-11.978400px;}
.ws6{word-spacing:-11.606112px;}
.wsa{word-spacing:-11.592000px;}
.ws17{word-spacing:-11.118600px;}
.ws14{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.710000px;}
.ws19{word-spacing:-10.260000px;}
.ws38{word-spacing:-10.101600px;}
.ws13{word-spacing:-9.120000px;}
.ws62{word-spacing:-8.760000px;}
.ws2f{word-spacing:-8.640000px;}
.ws61{word-spacing:-8.541000px;}
.ws2e{word-spacing:-8.160000px;}
.ws30{word-spacing:-7.776000px;}
.ws35{word-spacing:-6.840000px;}
.ws5e{word-spacing:-3.496800px;}
.ws63{word-spacing:-2.820000px;}
.ws44{word-spacing:-2.650800px;}
.wsc{word-spacing:-2.538000px;}
.ws21{word-spacing:-2.481600px;}
.ws3e{word-spacing:-2.425200px;}
.ws45{word-spacing:-2.368800px;}
.ws54{word-spacing:-2.312400px;}
.ws5c{word-spacing:-2.199600px;}
.ws3d{word-spacing:-2.143200px;}
.ws25{word-spacing:-2.086800px;}
.ws49{word-spacing:-1.974000px;}
.ws22{word-spacing:-1.804800px;}
.ws34{word-spacing:-1.776000px;}
.ws43{word-spacing:-1.522800px;}
.ws5a{word-spacing:-1.015200px;}
.ws50{word-spacing:-0.846000px;}
.ws2d{word-spacing:-0.676800px;}
.ws1e{word-spacing:-0.594000px;}
.ws7{word-spacing:-0.552672px;}
.ws1a{word-spacing:-0.480000px;}
.ws59{word-spacing:-0.394800px;}
.ws36{word-spacing:-0.360000px;}
.ws1{word-spacing:0.000000px;}
.ws29{word-spacing:0.112800px;}
.ws28{word-spacing:0.169200px;}
.ws48{word-spacing:0.282000px;}
.ws60{word-spacing:0.394800px;}
.ws4c{word-spacing:0.507600px;}
.ws1b{word-spacing:0.540000px;}
.wsd{word-spacing:0.564000px;}
.ws57{word-spacing:0.620400px;}
.ws42{word-spacing:0.733200px;}
.ws5f{word-spacing:0.789600px;}
.ws47{word-spacing:0.846000px;}
.ws41{word-spacing:0.902400px;}
.ws10{word-spacing:1.128000px;}
.ws56{word-spacing:1.184400px;}
.ws3b{word-spacing:1.240800px;}
.ws33{word-spacing:1.296000px;}
.ws2b{word-spacing:1.410000px;}
.wse{word-spacing:1.466400px;}
.ws32{word-spacing:1.635600px;}
.ws4d{word-spacing:1.748400px;}
.ws39{word-spacing:2.143200px;}
.ws27{word-spacing:2.199600px;}
.ws23{word-spacing:2.256000px;}
.ws1f{word-spacing:2.430000px;}
.ws3c{word-spacing:2.481600px;}
.ws46{word-spacing:2.594400px;}
.ws1d{word-spacing:2.932800px;}
.ws12{word-spacing:3.102000px;}
.wsf{word-spacing:3.384000px;}
.ws4f{word-spacing:3.553200px;}
.ws5d{word-spacing:3.666000px;}
.ws4b{word-spacing:3.778800px;}
.ws2a{word-spacing:4.004400px;}
.ws4e{word-spacing:4.342800px;}
.ws1c{word-spacing:4.512000px;}
.ws58{word-spacing:4.568400px;}
.ws40{word-spacing:4.737600px;}
.ws5b{word-spacing:4.963200px;}
.ws2c{word-spacing:5.358000px;}
.ws3a{word-spacing:5.640000px;}
.ws4a{word-spacing:6.711600px;}
.ws52{word-spacing:6.824400px;}
.ws24{word-spacing:7.050000px;}
.ws11{word-spacing:7.444800px;}
.ws55{word-spacing:7.501200px;}
.ws15{word-spacing:7.557600px;}
.ws3f{word-spacing:8.008800px;}
.ws26{word-spacing:8.403600px;}
.ws20{word-spacing:9.249600px;}
.ws53{word-spacing:14.494800px;}
.ws5{word-spacing:1572.192000px;}
._17{margin-left:-72.270900px;}
._16{margin-left:-70.200000px;}
._11{margin-left:-62.471381px;}
._14{margin-left:-61.249400px;}
._13{margin-left:-11.291962px;}
._15{margin-left:-6.618006px;}
._5{margin-left:-4.569734px;}
._12{margin-left:-3.481834px;}
._7{margin-left:-2.383830px;}
._3{margin-left:-1.048170px;}
._0{width:1.279872px;}
._6{width:2.285256px;}
._1{width:3.354331px;}
._8{width:4.421669px;}
._4{width:5.769270px;}
._2{width:6.970806px;}
._19{width:82.584000px;}
._18{width:84.712256px;}
._a{width:598.556134px;}
._9{width:797.197750px;}
._c{width:1029.064390px;}
._b{width:1054.581622px;}
._10{width:1188.520347px;}
._d{width:1262.501494px;}
._e{width:1377.040418px;}
._f{width:1396.256589px;}
.fc8{color:rgb(196,190,189);}
.fc7{color:rgb(124,16,100);}
.fc9{color:rgb(143,128,131);}
.fc4{color:rgb(158,25,129);}
.fc6{color:rgb(0,77,154);}
.fc3{color:transparent;}
.fc5{color:rgb(178,171,169);}
.fc2{color:rgb(139,125,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:36.000000px;}
.fs1a{font-size:43.800000px;}
.fse{font-size:45.600000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs0{font-size:53.328000px;}
.fsf{font-size:54.000000px;}
.fsa{font-size:55.200000px;}
.fsc{font-size:55.267200px;}
.fs13{font-size:55.593000px;}
.fsd{font-size:56.400000px;}
.fsb{font-size:57.000000px;}
.fs12{font-size:58.806000px;}
.fs14{font-size:65.571000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:93.000000px;}
.fs10{font-size:96.000000px;}
.fs16{font-size:105.358200px;}
.fs5{font-size:114.000000px;}
.fs11{font-size:120.000000px;}
.fs17{font-size:122.394000px;}
.fs4{font-size:132.000000px;}
.fs1{font-size:211.574400px;}
.fs2{font-size:221.895000px;}
.fs19{font-size:468.000000px;}
.fs15{font-size:482.382600px;}
.fs6{font-size:955.500000px;}
.y0{bottom:0.000000px;}
.y11{bottom:46.296300px;}
.y8{bottom:55.211700px;}
.ye8{bottom:90.986400px;}
.y13{bottom:92.400600px;}
.y158{bottom:97.924650px;}
.y118{bottom:108.174450px;}
.y12c{bottom:109.578000px;}
.ye7{bottom:109.584300px;}
.y12{bottom:111.900600px;}
.y157{bottom:112.170600px;}
.y117{bottom:112.257300px;}
.y24{bottom:114.236250px;}
.y12b{bottom:128.178000px;}
.ye6{bottom:128.182200px;}
.y156{bottom:128.551800px;}
.y116{bottom:131.008800px;}
.y23{bottom:138.614250px;}
.y155{bottom:144.933000px;}
.ye5{bottom:146.780100px;}
.y12a{bottom:146.782200px;}
.y115{bottom:149.760300px;}
.y22{bottom:162.992100px;}
.ye4{bottom:165.378000px;}
.y129{bottom:165.380100px;}
.y114{bottom:168.510300px;}
.y46{bottom:171.424200px;}
.y154{bottom:171.952650px;}
.y74{bottom:176.907600px;}
.y5e{bottom:177.492600px;}
.y7a{bottom:179.068950px;}
.y77{bottom:179.688600px;}
.ye3{bottom:183.977850px;}
.y128{bottom:183.978000px;}
.y165{bottom:184.202700px;}
.y153{bottom:186.198600px;}
.yb1{bottom:186.779100px;}
.y21{bottom:187.370100px;}
.y73{bottom:194.903100px;}
.y45{bottom:195.052200px;}
.y79{bottom:197.064450px;}
.y76{bottom:197.684100px;}
.y5d{bottom:200.044500px;}
.y152{bottom:200.444550px;}
.y7{bottom:200.697116px;}
.y164{bottom:201.453450px;}
.y127{bottom:202.578000px;}
.y100{bottom:202.590600px;}
.yb0{bottom:204.779100px;}
.y20{bottom:211.748100px;}
.y72{bottom:212.898600px;}
.y151{bottom:214.690500px;}
.y78{bottom:215.059950px;}
.y75{bottom:215.679600px;}
.y44{bottom:218.680050px;}
.y163{bottom:218.704200px;}
.ye2{bottom:221.178000px;}
.ye1{bottom:221.186250px;}
.yff{bottom:221.188500px;}
.y5c{bottom:222.596550px;}
.yca{bottom:224.679600px;}
.yaf{bottom:227.031000px;}
.y150{bottom:233.196000px;}
.y162{bottom:235.954200px;}
.y1f{bottom:236.125950px;}
.y10e{bottom:236.673000px;}
.ye0{bottom:239.784150px;}
.y126{bottom:239.784300px;}
.yfe{bottom:239.786400px;}
.y43{bottom:242.308050px;}
.y5b{bottom:245.148450px;}
.y14f{bottom:249.993300px;}
.y1e{bottom:258.378000px;}
.ydf{bottom:258.382050px;}
.y125{bottom:258.382200px;}
.yfd{bottom:258.384300px;}
.y8b{bottom:258.999900px;}
.y10d{bottom:259.670100px;}
.y5a{bottom:267.700500px;}
.yc9{bottom:268.469100px;}
.y5{bottom:269.079325px;}
.y6{bottom:269.096250px;}
.yde{bottom:276.979950px;}
.y124{bottom:276.980100px;}
.yfc{bottom:276.982200px;}
.y8a{bottom:277.751400px;}
.y14e{bottom:278.496150px;}
.y10c{bottom:282.672150px;}
.yc8{bottom:283.469100px;}
.y99{bottom:284.746050px;}
.yae{bottom:286.704750px;}
.y59{bottom:290.252400px;}
.y14d{bottom:292.742100px;}
.ydd{bottom:295.577850px;}
.y123{bottom:295.578000px;}
.yfb{bottom:295.580100px;}
.y89{bottom:296.502900px;}
.yad{bottom:304.700250px;}
.y14c{bottom:306.996150px;}
.y98{bottom:308.374050px;}
.yb3{bottom:308.530950px;}
.y58{bottom:312.804450px;}
.y42{bottom:314.178000px;}
.y10b{bottom:314.190600px;}
.yc7{bottom:319.493100px;}
.y14b{bottom:321.242100px;}
.yac{bottom:326.952300px;}
.y8f{bottom:329.553900px;}
.y97{bottom:332.002050px;}
.y41{bottom:332.778000px;}
.y10a{bottom:332.788500px;}
.yc6{bottom:334.493100px;}
.y71{bottom:335.130150px;}
.y57{bottom:335.356350px;}
.y4{bottom:337.470750px;}
.y8e{bottom:340.369800px;}
.y96{bottom:351.378000px;}
.y109{bottom:351.386400px;}
.y40{bottom:351.390600px;}
.y56{bottom:357.908400px;}
.y8d{bottom:359.863800px;}
.y13d{bottom:369.979950px;}
.yc5{bottom:370.517100px;}
.yfa{bottom:371.844150px;}
.y130{bottom:373.648050px;}
.yec{bottom:377.259000px;}
.y8c{bottom:378.615300px;}
.y2c{bottom:378.675617px;}
.y26{bottom:380.388900px;}
.y55{bottom:380.460300px;}
.yc4{bottom:385.517100px;}
.y12f{bottom:386.242050px;}
.y14a{bottom:386.746050px;}
.yab{bottom:387.334500px;}
.y62{bottom:387.782100px;}
.y13c{bottom:388.577850px;}
.y108{bottom:388.582200px;}
.y3f{bottom:388.586400px;}
.y95{bottom:388.588500px;}
.yeb{bottom:390.271350px;}
.yf9{bottom:396.222000px;}
.y25{bottom:399.387000px;}
.y2b{bottom:399.400817px;}
.yaa{bottom:402.781500px;}
.y54{bottom:403.012350px;}
.y12e{bottom:404.993550px;}
.y10{bottom:405.026850px;}
.y107{bottom:407.180100px;}
.y3e{bottom:407.184300px;}
.y94{bottom:407.186400px;}
.y1c{bottom:408.943500px;}
.yea{bottom:409.765350px;}
.y149{bottom:413.751900px;}
.y148{bottom:413.755950px;}
.yd1{bottom:413.801100px;}
.yd0{bottom:413.891100px;}
.ya9{bottom:418.228500px;}
.yf8{bottom:420.600000px;}
.yc3{bottom:421.541100px;}
.y12d{bottom:423.745050px;}
.y53{bottom:425.564250px;}
.y106{bottom:425.778000px;}
.y3d{bottom:425.782200px;}
.y93{bottom:425.784300px;}
.y146{bottom:426.378000px;}
.y13b{bottom:427.128000px;}
.ye9{bottom:427.760850px;}
.y147{bottom:428.001900px;}
.y61{bottom:429.782100px;}
.yc2{bottom:436.541100px;}
.ya8{bottom:442.186350px;}
.y1b{bottom:444.199350px;}
.y145{bottom:444.378000px;}
.y3c{bottom:444.380100px;}
.y92{bottom:444.382200px;}
.y70{bottom:444.634800px;}
.yf7{bottom:444.977850px;}
.yf{bottom:445.525350px;}
.y52{bottom:448.116150px;}
.yb2{bottom:448.148550px;}
.y84{bottom:459.865800px;}
.yf6{bottom:462.977850px;}
.y3b{bottom:462.978000px;}
.y13a{bottom:462.979950px;}
.y91{bottom:462.980100px;}
.ycf{bottom:463.418100px;}
.y6f{bottom:464.246700px;}
.ya7{bottom:464.434350px;}
.y51{bottom:470.668200px;}
.y60{bottom:471.782100px;}
.yc1{bottom:472.565100px;}
.y1a{bottom:479.455350px;}
.y144{bottom:481.569000px;}
.y139{bottom:481.577850px;}
.y3a{bottom:481.578000px;}
.y6e{bottom:483.740700px;}
.y83{bottom:483.818550px;}
.ye{bottom:486.025350px;}
.yc0{bottom:487.565100px;}
.y50{bottom:493.220100px;}
.yf5{bottom:497.275950px;}
.y122{bottom:499.112400px;}
.y143{bottom:500.172000px;}
.y90{bottom:500.178000px;}
.ydc{bottom:502.756200px;}
.y6d{bottom:503.234700px;}
.y82{bottom:507.021300px;}
.y5f{bottom:513.782100px;}
.yce{bottom:514.511100px;}
.y19{bottom:514.711200px;}
.y4f{bottom:515.772150px;}
.y121{bottom:517.710300px;}
.y142{bottom:518.775000px;}
.yf4{bottom:518.778000px;}
.y2a{bottom:519.648427px;}
.ya6{bottom:523.184550px;}
.ydb{bottom:526.384200px;}
.yd{bottom:526.525350px;}
.y39{bottom:526.762200px;}
.y6c{bottom:528.985800px;}
.y81{bottom:530.224050px;}
.ybf{bottom:531.089100px;}
.y138{bottom:537.378000px;}
.ya4{bottom:537.399000px;}
.y4e{bottom:538.324050px;}
.y29{bottom:538.646527px;}
.y120{bottom:540.562200px;}
.y105{bottom:540.637200px;}
.y104{bottom:543.023850px;}
.ya5{bottom:545.432550px;}
.y18{bottom:549.967050px;}
.yda{bottom:550.017900px;}
.y38{bottom:551.140200px;}
.y137{bottom:555.977850px;}
.y80{bottom:555.978000px;}
.yf3{bottom:555.984300px;}
.ya3{bottom:555.996900px;}
.y4d{bottom:560.876100px;}
.y103{bottom:561.775350px;}
.y11f{bottom:563.414250px;}
.ycd{bottom:565.590750px;}
.yd9{bottom:567.262200px;}
.yf2{bottom:574.582200px;}
.ya2{bottom:574.594800px;}
.y37{bottom:575.512350px;}
.ycc{bottom:576.093750px;}
.yd2{bottom:576.098100px;}
.ybc{bottom:580.356600px;}
.y102{bottom:580.526850px;}
.y4c{bottom:583.428000px;}
.y17{bottom:585.223050px;}
.y11e{bottom:586.266150px;}
.yd8{bottom:590.890200px;}
.y88{bottom:593.168400px;}
.y141{bottom:593.172000px;}
.yb8{bottom:593.178000px;}
.yf1{bottom:593.180100px;}
.y136{bottom:593.182200px;}
.y36{bottom:593.518050px;}
.ybb{bottom:596.100600px;}
.ybe{bottom:596.112600px;}
.y101{bottom:599.278350px;}
.y65{bottom:605.958300px;}
.y4b{bottom:605.980050px;}
.yc{bottom:607.528350px;}
.y11d{bottom:609.118200px;}
.y87{bottom:611.770800px;}
.y140{bottom:611.775000px;}
.yf0{bottom:611.778000px;}
.y135{bottom:611.780100px;}
.ya1{bottom:611.790600px;}
.yba{bottom:611.844600px;}
.ybd{bottom:611.856600px;}
.yd7{bottom:614.518050px;}
.y161{bottom:616.186950px;}
.y35{bottom:617.896050px;}
.y16{bottom:620.478900px;}
.y6b{bottom:627.296700px;}
.y4a{bottom:628.531950px;}
.y160{bottom:629.686950px;}
.yef{bottom:630.378000px;}
.y134{bottom:630.379950px;}
.ya0{bottom:630.388500px;}
.y11c{bottom:631.970100px;}
.yd6{bottom:638.146050px;}
.y34{bottom:642.268200px;}
.y15f{bottom:643.186950px;}
.y64{bottom:646.458300px;}
.y6a{bottom:646.790700px;}
.yb{bottom:648.026850px;}
.y86{bottom:648.975600px;}
.y133{bottom:648.977850px;}
.y9f{bottom:648.986400px;}
.y49{bottom:651.084000px;}
.y11b{bottom:654.822150px;}
.y15{bottom:655.734900px;}
.y15e{bottom:656.686950px;}
.y33{bottom:660.273900px;}
.yd5{bottom:661.774050px;}
.y28{bottom:664.213606px;}
.y2e{bottom:664.227422px;}
.y69{bottom:666.284700px;}
.y113{bottom:667.577850px;}
.y85{bottom:667.578000px;}
.y9e{bottom:667.584300px;}
.y112{bottom:667.588350px;}
.y15d{bottom:670.186950px;}
.yb7{bottom:670.318050px;}
.y48{bottom:673.635900px;}
.y11a{bottom:677.674050px;}
.y27{bottom:683.211706px;}
.y2d{bottom:683.225522px;}
.y15c{bottom:683.686950px;}
.y32{bottom:684.651900px;}
.yd4{bottom:685.401900px;}
.y68{bottom:685.778700px;}
.y13f{bottom:686.172000px;}
.y132{bottom:686.178000px;}
.y9d{bottom:686.182200px;}
.y111{bottom:686.186250px;}
.y63{bottom:686.958300px;}
.ya{bottom:688.525350px;}
.y14{bottom:690.990750px;}
.yb6{bottom:693.946050px;}
.y47{bottom:696.187950px;}
.y15b{bottom:697.186950px;}
.y119{bottom:700.526100px;}
.y13e{bottom:704.775000px;}
.y31{bottom:704.777850px;}
.yd3{bottom:704.778000px;}
.y9c{bottom:704.780100px;}
.y7f{bottom:704.782200px;}
.y110{bottom:704.784150px;}
.ycb{bottom:705.241950px;}
.y67{bottom:705.272700px;}
.y15a{bottom:710.686950px;}
.yb5{bottom:717.574050px;}
.y9b{bottom:723.378000px;}
.y7e{bottom:723.380100px;}
.y10f{bottom:723.382050px;}
.y131{bottom:723.384300px;}
.y159{bottom:724.186950px;}
.y66{bottom:731.023800px;}
.yb4{bottom:741.201900px;}
.yee{bottom:741.977850px;}
.y7d{bottom:741.978000px;}
.y30{bottom:741.979950px;}
.yb9{bottom:741.982200px;}
.y2f{bottom:760.577850px;}
.y7c{bottom:760.578000px;}
.y9a{bottom:760.580100px;}
.y9{bottom:779.178000px;}
.yed{bottom:779.179950px;}
.y1d{bottom:797.777850px;}
.y7b{bottom:797.778000px;}
.y3{bottom:855.215166px;}
.y1{bottom:855.219750px;}
.y2{bottom:871.373550px;}
.h28{height:26.136000px;}
.h24{height:29.052000px;}
.h23{height:29.376000px;}
.h27{height:32.149200px;}
.h7{height:35.232000px;}
.h26{height:35.478000px;}
.h1e{height:36.936000px;}
.hc{height:37.434000px;}
.h2{height:38.662800px;}
.h21{height:39.168000px;}
.h1d{height:39.636000px;}
.h1a{height:40.020000px;}
.h10{height:40.516800px;}
.h12{height:40.566125px;}
.h13{height:41.002800px;}
.hd{height:41.310000px;}
.h1c{height:41.397600px;}
.h11{height:41.439000px;}
.h22{height:41.616000px;}
.h17{height:43.163604px;}
.h14{height:43.740000px;}
.h18{height:45.030330px;}
.h19{height:48.129114px;}
.he{height:52.848000px;}
.hf{height:68.262000px;}
.h15{height:70.464000px;}
.h1f{height:76.068620px;}
.h20{height:81.269616px;}
.h9{height:83.790000px;}
.h16{height:88.200000px;}
.h8{height:96.888000px;}
.h4{height:152.756717px;}
.h3{height:155.295610px;}
.h5{height:160.208190px;}
.h6{height:162.870930px;}
.ha{height:297.420000px;}
.h25{height:310.752000px;}
.h1b{height:320.302046px;}
.hb{height:461.506500px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:225.946500px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x7{left:26.103300px;}
.xb{left:56.064857px;}
.x3{left:63.779550px;}
.x38{left:66.968550px;}
.x5{left:68.031450px;}
.x8{left:74.837400px;}
.x22{left:76.419600px;}
.x20{left:78.918300px;}
.x12{left:80.780766px;}
.x33{left:85.032666px;}
.xe{left:87.746779px;}
.x18{left:89.175300px;}
.x13{left:90.982350px;}
.x19{left:92.779800px;}
.x36{left:96.093600px;}
.x10{left:97.777776px;}
.xc{left:99.159456px;}
.x1a{left:101.136300px;}
.xf{left:106.731062px;}
.xd{left:108.803582px;}
.x24{left:129.634800px;}
.x2{left:138.335100px;}
.x23{left:150.788400px;}
.x21{left:154.133850px;}
.x35{left:159.448800px;}
.x39{left:163.248600px;}
.x3b{left:165.826800px;}
.x37{left:166.889700px;}
.x25{left:189.162300px;}
.x14{left:194.148750px;}
.x15{left:204.948600px;}
.x16{left:206.161800px;}
.x34{left:216.776850px;}
.x29{left:240.177600px;}
.x17{left:260.222850px;}
.x1d{left:262.509270px;}
.x1c{left:287.965950px;}
.x1e{left:290.990895px;}
.x26{left:303.965550px;}
.x2a{left:341.639040px;}
.x27{left:376.249050px;}
.x1{left:391.710000px;}
.x6{left:403.345500px;}
.x2d{left:407.553600px;}
.x31{left:419.686830px;}
.x2f{left:421.224750px;}
.x30{left:424.749870px;}
.x2e{left:426.138240px;}
.xa{left:437.947392px;}
.x9{left:439.912050px;}
.x4{left:442.227750px;}
.x3c{left:460.320600px;}
.x1b{left:463.138800px;}
.x28{left:478.296930px;}
.x2b{left:489.408960px;}
.x32{left:495.139950px;}
.x2c{left:507.993600px;}
.x1f{left:548.179950px;}
.x11{left:554.779950px;}
.x3a{left:561.259800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:-1.905067pt;}
.ls13{letter-spacing:-1.450667pt;}
.ls27{letter-spacing:-1.405333pt;}
.ls22{letter-spacing:-0.902400pt;}
.ls28{letter-spacing:-0.834133pt;}
.ls4{letter-spacing:-0.810667pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls1f{letter-spacing:-0.725333pt;}
.ls5{letter-spacing:-0.506667pt;}
.ls10{letter-spacing:-0.501333pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.300800pt;}
.ls1d{letter-spacing:-0.250667pt;}
.ls1b{letter-spacing:-0.240000pt;}
.ls2d{letter-spacing:-0.194667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.250667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.453333pt;}
.ls0{letter-spacing:0.474027pt;}
.ls1c{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.490667pt;}
.lsb{letter-spacing:0.491264pt;}
.ls14{letter-spacing:0.522720pt;}
.ls6{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.826667pt;}
.lsf{letter-spacing:0.834133pt;}
.ls12{letter-spacing:0.853333pt;}
.ls17{letter-spacing:1.165707pt;}
.ls11{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.380680pt;}
.ls20{letter-spacing:1.578667pt;}
.ls7{letter-spacing:3.168000pt;}
.ls2a{letter-spacing:20.354133pt;}
.lsa{letter-spacing:20.570667pt;}
.lse{letter-spacing:21.607467pt;}
.ls9{letter-spacing:21.786667pt;}
.ls26{letter-spacing:22.259200pt;}
.lsd{letter-spacing:22.860800pt;}
.ls25{letter-spacing:23.562667pt;}
.ls15{letter-spacing:24.000000pt;}
.ls24{letter-spacing:24.214400pt;}
.ls16{letter-spacing:24.708000pt;}
.ls29{letter-spacing:37.048533pt;}
.ws0{word-spacing:-40.828680pt;}
.ws4{word-spacing:-26.634667pt;}
.ws2{word-spacing:-20.266667pt;}
.ws16{word-spacing:-15.616000pt;}
.ws37{word-spacing:-15.128000pt;}
.wsb{word-spacing:-14.839467pt;}
.ws9{word-spacing:-14.338133pt;}
.ws31{word-spacing:-13.937067pt;}
.ws51{word-spacing:-12.934400pt;}
.ws18{word-spacing:-12.822773pt;}
.ws8{word-spacing:-10.647467pt;}
.ws6{word-spacing:-10.316544pt;}
.wsa{word-spacing:-10.304000pt;}
.ws17{word-spacing:-9.883200pt;}
.ws14{word-spacing:-9.600000pt;}
.ws3{word-spacing:-9.520000pt;}
.ws19{word-spacing:-9.120000pt;}
.ws38{word-spacing:-8.979200pt;}
.ws13{word-spacing:-8.106667pt;}
.ws62{word-spacing:-7.786667pt;}
.ws2f{word-spacing:-7.680000pt;}
.ws61{word-spacing:-7.592000pt;}
.ws2e{word-spacing:-7.253333pt;}
.ws30{word-spacing:-6.912000pt;}
.ws35{word-spacing:-6.080000pt;}
.ws5e{word-spacing:-3.108267pt;}
.ws63{word-spacing:-2.506667pt;}
.ws44{word-spacing:-2.356267pt;}
.wsc{word-spacing:-2.256000pt;}
.ws21{word-spacing:-2.205867pt;}
.ws3e{word-spacing:-2.155733pt;}
.ws45{word-spacing:-2.105600pt;}
.ws54{word-spacing:-2.055467pt;}
.ws5c{word-spacing:-1.955200pt;}
.ws3d{word-spacing:-1.905067pt;}
.ws25{word-spacing:-1.854933pt;}
.ws49{word-spacing:-1.754667pt;}
.ws22{word-spacing:-1.604267pt;}
.ws34{word-spacing:-1.578667pt;}
.ws43{word-spacing:-1.353600pt;}
.ws5a{word-spacing:-0.902400pt;}
.ws50{word-spacing:-0.752000pt;}
.ws2d{word-spacing:-0.601600pt;}
.ws1e{word-spacing:-0.528000pt;}
.ws7{word-spacing:-0.491264pt;}
.ws1a{word-spacing:-0.426667pt;}
.ws59{word-spacing:-0.350933pt;}
.ws36{word-spacing:-0.320000pt;}
.ws1{word-spacing:0.000000pt;}
.ws29{word-spacing:0.100267pt;}
.ws28{word-spacing:0.150400pt;}
.ws48{word-spacing:0.250667pt;}
.ws60{word-spacing:0.350933pt;}
.ws4c{word-spacing:0.451200pt;}
.ws1b{word-spacing:0.480000pt;}
.wsd{word-spacing:0.501333pt;}
.ws57{word-spacing:0.551467pt;}
.ws42{word-spacing:0.651733pt;}
.ws5f{word-spacing:0.701867pt;}
.ws47{word-spacing:0.752000pt;}
.ws41{word-spacing:0.802133pt;}
.ws10{word-spacing:1.002667pt;}
.ws56{word-spacing:1.052800pt;}
.ws3b{word-spacing:1.102933pt;}
.ws33{word-spacing:1.152000pt;}
.ws2b{word-spacing:1.253333pt;}
.wse{word-spacing:1.303467pt;}
.ws32{word-spacing:1.453867pt;}
.ws4d{word-spacing:1.554133pt;}
.ws39{word-spacing:1.905067pt;}
.ws27{word-spacing:1.955200pt;}
.ws23{word-spacing:2.005333pt;}
.ws1f{word-spacing:2.160000pt;}
.ws3c{word-spacing:2.205867pt;}
.ws46{word-spacing:2.306133pt;}
.ws1d{word-spacing:2.606933pt;}
.ws12{word-spacing:2.757333pt;}
.wsf{word-spacing:3.008000pt;}
.ws4f{word-spacing:3.158400pt;}
.ws5d{word-spacing:3.258667pt;}
.ws4b{word-spacing:3.358933pt;}
.ws2a{word-spacing:3.559467pt;}
.ws4e{word-spacing:3.860267pt;}
.ws1c{word-spacing:4.010667pt;}
.ws58{word-spacing:4.060800pt;}
.ws40{word-spacing:4.211200pt;}
.ws5b{word-spacing:4.411733pt;}
.ws2c{word-spacing:4.762667pt;}
.ws3a{word-spacing:5.013333pt;}
.ws4a{word-spacing:5.965867pt;}
.ws52{word-spacing:6.066133pt;}
.ws24{word-spacing:6.266667pt;}
.ws11{word-spacing:6.617600pt;}
.ws55{word-spacing:6.667733pt;}
.ws15{word-spacing:6.717867pt;}
.ws3f{word-spacing:7.118933pt;}
.ws26{word-spacing:7.469867pt;}
.ws20{word-spacing:8.221867pt;}
.ws53{word-spacing:12.884267pt;}
.ws5{word-spacing:1397.504000pt;}
._17{margin-left:-64.240800pt;}
._16{margin-left:-62.400000pt;}
._11{margin-left:-55.530117pt;}
._14{margin-left:-54.443911pt;}
._13{margin-left:-10.037299pt;}
._15{margin-left:-5.882672pt;}
._5{margin-left:-4.061986pt;}
._12{margin-left:-3.094963pt;}
._7{margin-left:-2.118960pt;}
._3{margin-left:-0.931707pt;}
._0{width:1.137664pt;}
._6{width:2.031339pt;}
._1{width:2.981628pt;}
._8{width:3.930372pt;}
._4{width:5.128240pt;}
._2{width:6.196272pt;}
._19{width:73.408000pt;}
._18{width:75.299783pt;}
._a{width:532.049896pt;}
._9{width:708.620222pt;}
._c{width:914.723902pt;}
._b{width:937.405886pt;}
._10{width:1056.462531pt;}
._d{width:1122.223550pt;}
._e{width:1224.035927pt;}
._f{width:1241.116968pt;}
.fs18{font-size:32.000000pt;}
.fs1a{font-size:38.933333pt;}
.fse{font-size:40.533333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs0{font-size:47.402667pt;}
.fsf{font-size:48.000000pt;}
.fsa{font-size:49.066667pt;}
.fsc{font-size:49.126400pt;}
.fs13{font-size:49.416000pt;}
.fsd{font-size:50.133333pt;}
.fsb{font-size:50.666667pt;}
.fs12{font-size:52.272000pt;}
.fs14{font-size:58.285333pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:82.666667pt;}
.fs10{font-size:85.333333pt;}
.fs16{font-size:93.651733pt;}
.fs5{font-size:101.333333pt;}
.fs11{font-size:106.666667pt;}
.fs17{font-size:108.794667pt;}
.fs4{font-size:117.333333pt;}
.fs1{font-size:188.066133pt;}
.fs2{font-size:197.240000pt;}
.fs19{font-size:416.000000pt;}
.fs15{font-size:428.784533pt;}
.fs6{font-size:849.333333pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:41.152267pt;}
.y8{bottom:49.077067pt;}
.ye8{bottom:80.876800pt;}
.y13{bottom:82.133867pt;}
.y158{bottom:87.044133pt;}
.y118{bottom:96.155067pt;}
.y12c{bottom:97.402667pt;}
.ye7{bottom:97.408267pt;}
.y12{bottom:99.467200pt;}
.y157{bottom:99.707200pt;}
.y117{bottom:99.784267pt;}
.y24{bottom:101.543333pt;}
.y12b{bottom:113.936000pt;}
.ye6{bottom:113.939733pt;}
.y156{bottom:114.268267pt;}
.y116{bottom:116.452267pt;}
.y23{bottom:123.212667pt;}
.y155{bottom:128.829333pt;}
.ye5{bottom:130.471200pt;}
.y12a{bottom:130.473067pt;}
.y115{bottom:133.120267pt;}
.y22{bottom:144.881867pt;}
.ye4{bottom:147.002667pt;}
.y129{bottom:147.004533pt;}
.y114{bottom:149.786933pt;}
.y46{bottom:152.377067pt;}
.y154{bottom:152.846800pt;}
.y74{bottom:157.251200pt;}
.y5e{bottom:157.771200pt;}
.y7a{bottom:159.172400pt;}
.y77{bottom:159.723200pt;}
.ye3{bottom:163.535867pt;}
.y128{bottom:163.536000pt;}
.y165{bottom:163.735733pt;}
.y153{bottom:165.509867pt;}
.yb1{bottom:166.025867pt;}
.y21{bottom:166.551200pt;}
.y73{bottom:173.247200pt;}
.y45{bottom:173.379733pt;}
.y79{bottom:175.168400pt;}
.y76{bottom:175.719200pt;}
.y5d{bottom:177.817333pt;}
.y152{bottom:178.172933pt;}
.y7{bottom:178.397437pt;}
.y164{bottom:179.069733pt;}
.y127{bottom:180.069333pt;}
.y100{bottom:180.080533pt;}
.yb0{bottom:182.025867pt;}
.y20{bottom:188.220533pt;}
.y72{bottom:189.243200pt;}
.y151{bottom:190.836000pt;}
.y78{bottom:191.164400pt;}
.y75{bottom:191.715200pt;}
.y44{bottom:194.382267pt;}
.y163{bottom:194.403733pt;}
.ye2{bottom:196.602667pt;}
.ye1{bottom:196.610000pt;}
.yff{bottom:196.612000pt;}
.y5c{bottom:197.863600pt;}
.yca{bottom:199.715200pt;}
.yaf{bottom:201.805333pt;}
.y150{bottom:207.285333pt;}
.y162{bottom:209.737067pt;}
.y1f{bottom:209.889733pt;}
.y10e{bottom:210.376000pt;}
.ye0{bottom:213.141467pt;}
.y126{bottom:213.141600pt;}
.yfe{bottom:213.143467pt;}
.y43{bottom:215.384933pt;}
.y5b{bottom:217.909733pt;}
.y14f{bottom:222.216267pt;}
.y1e{bottom:229.669333pt;}
.ydf{bottom:229.672933pt;}
.y125{bottom:229.673067pt;}
.yfd{bottom:229.674933pt;}
.y8b{bottom:230.222133pt;}
.y10d{bottom:230.817867pt;}
.y5a{bottom:237.956000pt;}
.yc9{bottom:238.639200pt;}
.y5{bottom:239.181622pt;}
.y6{bottom:239.196667pt;}
.yde{bottom:246.204400pt;}
.y124{bottom:246.204533pt;}
.yfc{bottom:246.206400pt;}
.y8a{bottom:246.890133pt;}
.y14e{bottom:247.552133pt;}
.y10c{bottom:251.264133pt;}
.yc8{bottom:251.972533pt;}
.y99{bottom:253.107600pt;}
.yae{bottom:254.848667pt;}
.y59{bottom:258.002133pt;}
.y14d{bottom:260.215200pt;}
.ydd{bottom:262.735867pt;}
.y123{bottom:262.736000pt;}
.yfb{bottom:262.737867pt;}
.y89{bottom:263.558133pt;}
.yad{bottom:270.844667pt;}
.y14c{bottom:272.885467pt;}
.y98{bottom:274.110267pt;}
.yb3{bottom:274.249733pt;}
.y58{bottom:278.048400pt;}
.y42{bottom:279.269333pt;}
.y10b{bottom:279.280533pt;}
.yc7{bottom:283.993867pt;}
.y14b{bottom:285.548533pt;}
.yac{bottom:290.624267pt;}
.y8f{bottom:292.936800pt;}
.y97{bottom:295.112933pt;}
.y41{bottom:295.802667pt;}
.y10a{bottom:295.812000pt;}
.yc6{bottom:297.327200pt;}
.y71{bottom:297.893467pt;}
.y57{bottom:298.094533pt;}
.y4{bottom:299.974000pt;}
.y8e{bottom:302.550933pt;}
.y96{bottom:312.336000pt;}
.y109{bottom:312.343467pt;}
.y40{bottom:312.347200pt;}
.y56{bottom:318.140800pt;}
.y8d{bottom:319.878933pt;}
.y13d{bottom:328.871067pt;}
.yc5{bottom:329.348533pt;}
.yfa{bottom:330.528133pt;}
.y130{bottom:332.131600pt;}
.yec{bottom:335.341333pt;}
.y8c{bottom:336.546933pt;}
.y2c{bottom:336.600548pt;}
.y26{bottom:338.123467pt;}
.y55{bottom:338.186933pt;}
.yc4{bottom:342.681867pt;}
.y12f{bottom:343.326267pt;}
.y14a{bottom:343.774267pt;}
.yab{bottom:344.297333pt;}
.y62{bottom:344.695200pt;}
.y13c{bottom:345.402533pt;}
.y108{bottom:345.406400pt;}
.y3f{bottom:345.410133pt;}
.y95{bottom:345.412000pt;}
.yeb{bottom:346.907867pt;}
.yf9{bottom:352.197333pt;}
.y25{bottom:355.010667pt;}
.y2b{bottom:355.022948pt;}
.yaa{bottom:358.028000pt;}
.y54{bottom:358.233200pt;}
.y12e{bottom:359.994267pt;}
.y10{bottom:360.023867pt;}
.y107{bottom:361.937867pt;}
.y3e{bottom:361.941600pt;}
.y94{bottom:361.943467pt;}
.y1c{bottom:363.505333pt;}
.yea{bottom:364.235867pt;}
.y149{bottom:367.779467pt;}
.y148{bottom:367.783067pt;}
.yd1{bottom:367.823200pt;}
.yd0{bottom:367.903200pt;}
.ya9{bottom:371.758667pt;}
.yf8{bottom:373.866667pt;}
.yc3{bottom:374.703200pt;}
.y12d{bottom:376.662267pt;}
.y53{bottom:378.279333pt;}
.y106{bottom:378.469333pt;}
.y3d{bottom:378.473067pt;}
.y93{bottom:378.474933pt;}
.y146{bottom:379.002667pt;}
.y13b{bottom:379.669333pt;}
.ye9{bottom:380.231867pt;}
.y147{bottom:380.446133pt;}
.y61{bottom:382.028533pt;}
.yc2{bottom:388.036533pt;}
.ya8{bottom:393.054533pt;}
.y1b{bottom:394.843867pt;}
.y145{bottom:395.002667pt;}
.y3c{bottom:395.004533pt;}
.y92{bottom:395.006400pt;}
.y70{bottom:395.230933pt;}
.yf7{bottom:395.535867pt;}
.yf{bottom:396.022533pt;}
.y52{bottom:398.325467pt;}
.yb2{bottom:398.354267pt;}
.y84{bottom:408.769600pt;}
.yf6{bottom:411.535867pt;}
.y3b{bottom:411.536000pt;}
.y13a{bottom:411.537733pt;}
.y91{bottom:411.537867pt;}
.ycf{bottom:411.927200pt;}
.y6f{bottom:412.663733pt;}
.ya7{bottom:412.830533pt;}
.y51{bottom:418.371733pt;}
.y60{bottom:419.361867pt;}
.yc1{bottom:420.057867pt;}
.y1a{bottom:426.182533pt;}
.y144{bottom:428.061333pt;}
.y139{bottom:428.069200pt;}
.y3a{bottom:428.069333pt;}
.y6e{bottom:429.991733pt;}
.y83{bottom:430.060933pt;}
.ye{bottom:432.022533pt;}
.yc0{bottom:433.391200pt;}
.y50{bottom:438.417867pt;}
.yf5{bottom:442.023067pt;}
.y122{bottom:443.655467pt;}
.y143{bottom:444.597333pt;}
.y90{bottom:444.602667pt;}
.ydc{bottom:446.894400pt;}
.y6d{bottom:447.319733pt;}
.y82{bottom:450.685600pt;}
.y5f{bottom:456.695200pt;}
.yce{bottom:457.343200pt;}
.y19{bottom:457.521067pt;}
.y4f{bottom:458.464133pt;}
.y121{bottom:460.186933pt;}
.y142{bottom:461.133333pt;}
.yf4{bottom:461.136000pt;}
.y2a{bottom:461.909713pt;}
.ya6{bottom:465.052933pt;}
.ydb{bottom:467.897067pt;}
.yd{bottom:468.022533pt;}
.y39{bottom:468.233067pt;}
.y6c{bottom:470.209600pt;}
.y81{bottom:471.310267pt;}
.ybf{bottom:472.079200pt;}
.y138{bottom:477.669333pt;}
.ya4{bottom:477.688000pt;}
.y4e{bottom:478.510267pt;}
.y29{bottom:478.796913pt;}
.y120{bottom:480.499733pt;}
.y105{bottom:480.566400pt;}
.y104{bottom:482.687867pt;}
.ya5{bottom:484.828933pt;}
.y18{bottom:488.859600pt;}
.yda{bottom:488.904800pt;}
.y38{bottom:489.902400pt;}
.y137{bottom:494.202533pt;}
.y80{bottom:494.202667pt;}
.yf3{bottom:494.208267pt;}
.ya3{bottom:494.219467pt;}
.y4d{bottom:498.556533pt;}
.y103{bottom:499.355867pt;}
.y11f{bottom:500.812667pt;}
.ycd{bottom:502.747333pt;}
.yd9{bottom:504.233067pt;}
.yf2{bottom:510.739733pt;}
.ya2{bottom:510.750933pt;}
.y37{bottom:511.566533pt;}
.ycc{bottom:512.083333pt;}
.yd2{bottom:512.087200pt;}
.ybc{bottom:515.872533pt;}
.y102{bottom:516.023867pt;}
.y4c{bottom:518.602667pt;}
.y17{bottom:520.198267pt;}
.y11e{bottom:521.125467pt;}
.yd8{bottom:525.235733pt;}
.y88{bottom:527.260800pt;}
.y141{bottom:527.264000pt;}
.yb8{bottom:527.269333pt;}
.yf1{bottom:527.271200pt;}
.y136{bottom:527.273067pt;}
.y36{bottom:527.571600pt;}
.ybb{bottom:529.867200pt;}
.ybe{bottom:529.877867pt;}
.y101{bottom:532.691867pt;}
.y65{bottom:538.629600pt;}
.y4b{bottom:538.648933pt;}
.yc{bottom:540.025200pt;}
.y11d{bottom:541.438400pt;}
.y87{bottom:543.796267pt;}
.y140{bottom:543.800000pt;}
.yf0{bottom:543.802667pt;}
.y135{bottom:543.804533pt;}
.ya1{bottom:543.813867pt;}
.yba{bottom:543.861867pt;}
.ybd{bottom:543.872533pt;}
.yd7{bottom:546.238267pt;}
.y161{bottom:547.721733pt;}
.y35{bottom:549.240933pt;}
.y16{bottom:551.536800pt;}
.y6b{bottom:557.597067pt;}
.y4a{bottom:558.695067pt;}
.y160{bottom:559.721733pt;}
.yef{bottom:560.336000pt;}
.y134{bottom:560.337733pt;}
.ya0{bottom:560.345333pt;}
.y11c{bottom:561.751200pt;}
.yd6{bottom:567.240933pt;}
.y34{bottom:570.905067pt;}
.y15f{bottom:571.721733pt;}
.y64{bottom:574.629600pt;}
.y6a{bottom:574.925067pt;}
.yb{bottom:576.023867pt;}
.y86{bottom:576.867200pt;}
.y133{bottom:576.869200pt;}
.y9f{bottom:576.876800pt;}
.y49{bottom:578.741333pt;}
.y11b{bottom:582.064133pt;}
.y15{bottom:582.875467pt;}
.y15e{bottom:583.721733pt;}
.y33{bottom:586.910133pt;}
.yd5{bottom:588.243600pt;}
.y28{bottom:590.412094pt;}
.y2e{bottom:590.424375pt;}
.y69{bottom:592.253067pt;}
.y113{bottom:593.402533pt;}
.y85{bottom:593.402667pt;}
.y9e{bottom:593.408267pt;}
.y112{bottom:593.411867pt;}
.y15d{bottom:595.721733pt;}
.yb7{bottom:595.838267pt;}
.y48{bottom:598.787467pt;}
.y11a{bottom:602.376933pt;}
.y27{bottom:607.299294pt;}
.y2d{bottom:607.311575pt;}
.y15c{bottom:607.721733pt;}
.y32{bottom:608.579467pt;}
.yd4{bottom:609.246133pt;}
.y68{bottom:609.581067pt;}
.y13f{bottom:609.930667pt;}
.y132{bottom:609.936000pt;}
.y9d{bottom:609.939733pt;}
.y111{bottom:609.943333pt;}
.y63{bottom:610.629600pt;}
.ya{bottom:612.022533pt;}
.y14{bottom:614.214000pt;}
.yb6{bottom:616.840933pt;}
.y47{bottom:618.833733pt;}
.y15b{bottom:619.721733pt;}
.y119{bottom:622.689867pt;}
.y13e{bottom:626.466667pt;}
.y31{bottom:626.469200pt;}
.yd3{bottom:626.469333pt;}
.y9c{bottom:626.471200pt;}
.y7f{bottom:626.473067pt;}
.y110{bottom:626.474800pt;}
.ycb{bottom:626.881733pt;}
.y67{bottom:626.909067pt;}
.y15a{bottom:631.721733pt;}
.yb5{bottom:637.843600pt;}
.y9b{bottom:643.002667pt;}
.y7e{bottom:643.004533pt;}
.y10f{bottom:643.006267pt;}
.y131{bottom:643.008267pt;}
.y159{bottom:643.721733pt;}
.y66{bottom:649.798933pt;}
.yb4{bottom:658.846133pt;}
.yee{bottom:659.535867pt;}
.y7d{bottom:659.536000pt;}
.y30{bottom:659.537733pt;}
.yb9{bottom:659.539733pt;}
.y2f{bottom:676.069200pt;}
.y7c{bottom:676.069333pt;}
.y9a{bottom:676.071200pt;}
.y9{bottom:692.602667pt;}
.yed{bottom:692.604400pt;}
.y1d{bottom:709.135867pt;}
.y7b{bottom:709.136000pt;}
.y3{bottom:760.191259pt;}
.y1{bottom:760.195333pt;}
.y2{bottom:774.554267pt;}
.h28{height:23.232000pt;}
.h24{height:25.824000pt;}
.h23{height:26.112000pt;}
.h27{height:28.577067pt;}
.h7{height:31.317333pt;}
.h26{height:31.536000pt;}
.h1e{height:32.832000pt;}
.hc{height:33.274667pt;}
.h2{height:34.366933pt;}
.h21{height:34.816000pt;}
.h1d{height:35.232000pt;}
.h1a{height:35.573333pt;}
.h10{height:36.014933pt;}
.h12{height:36.058778pt;}
.h13{height:36.446933pt;}
.hd{height:36.720000pt;}
.h1c{height:36.797867pt;}
.h11{height:36.834667pt;}
.h22{height:36.992000pt;}
.h17{height:38.367648pt;}
.h14{height:38.880000pt;}
.h18{height:40.026960pt;}
.h19{height:42.781435pt;}
.he{height:46.976000pt;}
.hf{height:60.677333pt;}
.h15{height:62.634667pt;}
.h1f{height:67.616551pt;}
.h20{height:72.239659pt;}
.h9{height:74.480000pt;}
.h16{height:78.400000pt;}
.h8{height:86.122667pt;}
.h4{height:135.783748pt;}
.h3{height:138.040542pt;}
.h5{height:142.407280pt;}
.h6{height:144.774160pt;}
.ha{height:264.373333pt;}
.h25{height:276.224000pt;}
.h1b{height:284.712930pt;}
.hb{height:410.228000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:200.841333pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x7{left:23.202933pt;}
.xb{left:49.835428pt;}
.x3{left:56.692933pt;}
.x38{left:59.527600pt;}
.x5{left:60.472400pt;}
.x8{left:66.522133pt;}
.x22{left:67.928533pt;}
.x20{left:70.149600pt;}
.x12{left:71.805125pt;}
.x33{left:75.584592pt;}
.xe{left:77.997137pt;}
.x18{left:79.266933pt;}
.x13{left:80.873200pt;}
.x19{left:82.470933pt;}
.x36{left:85.416533pt;}
.x10{left:86.913579pt;}
.xc{left:88.141739pt;}
.x1a{left:89.898933pt;}
.xf{left:94.872055pt;}
.xd{left:96.714295pt;}
.x24{left:115.230933pt;}
.x2{left:122.964533pt;}
.x23{left:134.034133pt;}
.x21{left:137.007867pt;}
.x35{left:141.732267pt;}
.x39{left:145.109867pt;}
.x3b{left:147.401600pt;}
.x37{left:148.346400pt;}
.x25{left:168.144267pt;}
.x14{left:172.576667pt;}
.x15{left:182.176533pt;}
.x16{left:183.254933pt;}
.x34{left:192.690533pt;}
.x29{left:213.491200pt;}
.x17{left:231.309200pt;}
.x1d{left:233.341573pt;}
.x1c{left:255.969733pt;}
.x1e{left:258.658573pt;}
.x26{left:270.191600pt;}
.x2a{left:303.679147pt;}
.x27{left:334.443600pt;}
.x1{left:348.186667pt;}
.x6{left:358.529333pt;}
.x2d{left:362.269867pt;}
.x31{left:373.054960pt;}
.x2f{left:374.422000pt;}
.x30{left:377.555440pt;}
.x2e{left:378.789547pt;}
.xa{left:389.286571pt;}
.x9{left:391.032933pt;}
.x4{left:393.091333pt;}
.x3c{left:409.173867pt;}
.x1b{left:411.678933pt;}
.x28{left:425.152827pt;}
.x2b{left:435.030187pt;}
.x32{left:440.124400pt;}
.x2c{left:451.549867pt;}
.x1f{left:487.271067pt;}
.x11{left:493.137733pt;}
.x3a{left:498.897600pt;}
}




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