
    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_ff19e4998a538890dda5850b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f3a7c1f3618c5798712a26ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_179f8fae2d5e7857d0f77ecf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4c6a1951f4b0309fb0b09597.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_5f550ee718ceb32bf3f1659e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_4cdbf91e3f548415dc0379d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_28c22d0733b77dd89520f8e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ea2cd2383c2a8f765c1231c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:66.931200px;}
.ls3b{letter-spacing:-1.135440px;}
.ls22{letter-spacing:-1.075680px;}
.ls4a{letter-spacing:-0.972000px;}
.ls39{letter-spacing:-0.956160px;}
.ls46{letter-spacing:-0.864000px;}
.ls59{letter-spacing:-0.776880px;}
.ls48{letter-spacing:-0.756000px;}
.ls49{letter-spacing:-0.702000px;}
.ls21{letter-spacing:-0.657360px;}
.ls2b{letter-spacing:-0.597600px;}
.ls4b{letter-spacing:-0.594000px;}
.ls3a{letter-spacing:-0.537840px;}
.ls20{letter-spacing:-0.478080px;}
.ls29{letter-spacing:-0.418320px;}
.ls44{letter-spacing:-0.378000px;}
.ls45{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.358560px;}
.ls18{letter-spacing:-0.298800px;}
.ls19{letter-spacing:-0.239040px;}
.ls43{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.132480px;}
.ls1b{letter-spacing:-0.119520px;}
.ls42{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.059760px;}
.ls16{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.005976px;}
.ls40{letter-spacing:0.018000px;}
.ls5a{letter-spacing:0.041832px;}
.ls3{letter-spacing:0.059760px;}
.ls47{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.162000px;}
.ls56{letter-spacing:0.167328px;}
.ls2{letter-spacing:0.179280px;}
.ls3e{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.227088px;}
.ls24{letter-spacing:0.233064px;}
.lse{letter-spacing:0.239040px;}
.ls1e{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.358560px;}
.ls3d{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.378000px;}
.ls30{letter-spacing:0.397440px;}
.ls5d{letter-spacing:0.478080px;}
.ls38{letter-spacing:0.657360px;}
.ls4d{letter-spacing:0.711144px;}
.ls3f{letter-spacing:0.738000px;}
.ls58{letter-spacing:0.836640px;}
.ls35{letter-spacing:0.896400px;}
.ls2c{letter-spacing:0.956160px;}
.ls32{letter-spacing:1.476072px;}
.ls51{letter-spacing:1.571688px;}
.ls14{letter-spacing:1.613520px;}
.ls34{letter-spacing:1.619496px;}
.ls55{letter-spacing:1.631448px;}
.ls15{letter-spacing:1.661328px;}
.ls4f{letter-spacing:2.306736px;}
.ls2e{letter-spacing:2.330640px;}
.ls57{letter-spacing:2.366496px;}
.ls25{letter-spacing:2.993976px;}
.lsb{letter-spacing:3.011904px;}
.lsc{letter-spacing:3.047760px;}
.ls5{letter-spacing:3.764880px;}
.ls4c{letter-spacing:4.482000px;}
.ls50{letter-spacing:5.199120px;}
.ls33{letter-spacing:6.633360px;}
.ls13{letter-spacing:7.248888px;}
.ls12{letter-spacing:7.350480px;}
.ls4e{letter-spacing:7.410240px;}
.ls37{letter-spacing:7.458048px;}
.ls26{letter-spacing:7.948080px;}
.ls31{letter-spacing:8.127360px;}
.ls36{letter-spacing:8.187120px;}
.lsd{letter-spacing:9.561600px;}
.ls23{letter-spacing:10.057608px;}
.ls9{letter-spacing:10.278720px;}
.ls5c{letter-spacing:10.756800px;}
.ls2d{letter-spacing:10.995840px;}
.ls7{letter-spacing:11.712960px;}
.ls8{letter-spacing:11.748816px;}
.ls27{letter-spacing:12.430080px;}
.ls11{letter-spacing:14.402160px;}
.ls10{letter-spacing:14.581440px;}
.lsf{letter-spacing:14.599368px;}
.ls52{letter-spacing:18.770616px;}
.ls53{letter-spacing:18.884160px;}
.ls3c{letter-spacing:23.246640px;}
.ls5b{letter-spacing:40.995360px;}
.lsa{letter-spacing:47.664000px;}
.ls28{letter-spacing:64.002960px;}
.ls41{letter-spacing:146.880000px;}
.ls0{letter-spacing:1078.727760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws43{word-spacing:-59.760000px;}
.ws6{word-spacing:-20.304000px;}
.ws7{word-spacing:-19.944000px;}
.ws42{word-spacing:-18.282240px;}
.ws45{word-spacing:-15.896160px;}
.ws58{word-spacing:-15.597360px;}
.ws4{word-spacing:-15.298560px;}
.ws41{word-spacing:-15.179040px;}
.ws9{word-spacing:-15.059520px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.880240px;}
.ws5{word-spacing:-14.700960px;}
.ws0{word-spacing:-14.581440px;}
.ws44{word-spacing:-14.521680px;}
.wsa{word-spacing:-14.461920px;}
.ws7c{word-spacing:-14.342400px;}
.ws6b{word-spacing:-13.878000px;}
.ws7b{word-spacing:-13.804560px;}
.ws6d{word-spacing:-13.608000px;}
.ws68{word-spacing:-13.500000px;}
.ws69{word-spacing:-13.392000px;}
.ws6a{word-spacing:-13.122000px;}
.ws70{word-spacing:-12.906000px;}
.ws6e{word-spacing:-12.798000px;}
.ws6c{word-spacing:-12.744000px;}
.ws6f{word-spacing:-12.528000px;}
.ws1{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.000000px;}
.ws5e{word-spacing:-3.525840px;}
.ws5d{word-spacing:-3.346560px;}
.ws21{word-spacing:-3.047760px;}
.ws37{word-spacing:-2.808720px;}
.ws55{word-spacing:-2.629440px;}
.ws27{word-spacing:-2.330640px;}
.ws50{word-spacing:-2.091600px;}
.ws26{word-spacing:-1.912320px;}
.ws24{word-spacing:-1.613520px;}
.ws39{word-spacing:-1.374480px;}
.ws3f{word-spacing:-1.195200px;}
.ws19{word-spacing:-0.918000px;}
.ws1d{word-spacing:-0.896400px;}
.ws80{word-spacing:-0.836640px;}
.ws14{word-spacing:-0.717120px;}
.ws25{word-spacing:-0.657360px;}
.ws79{word-spacing:-0.648000px;}
.ws1e{word-spacing:-0.478080px;}
.ws73{word-spacing:-0.378000px;}
.wsf{word-spacing:-0.358560px;}
.ws62{word-spacing:-0.239040px;}
.ws18{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.179280px;}
.ws7a{word-spacing:-0.162000px;}
.ws4c{word-spacing:-0.144000px;}
.ws10{word-spacing:-0.119520px;}
.ws78{word-spacing:-0.108000px;}
.ws15{word-spacing:-0.059760px;}
.wsb{word-spacing:0.000000px;}
.ws77{word-spacing:0.054000px;}
.ws13{word-spacing:0.059760px;}
.ws85{word-spacing:0.119520px;}
.ws75{word-spacing:0.216000px;}
.wse{word-spacing:0.239040px;}
.ws17{word-spacing:0.298800px;}
.ws11{word-spacing:0.324000px;}
.wsc{word-spacing:0.358560px;}
.ws72{word-spacing:0.378000px;}
.ws16{word-spacing:0.418320px;}
.ws4d{word-spacing:0.463680px;}
.wsd{word-spacing:0.478080px;}
.ws1c{word-spacing:0.537840px;}
.ws4f{word-spacing:0.597600px;}
.ws74{word-spacing:0.720000px;}
.ws38{word-spacing:0.776880px;}
.ws3d{word-spacing:0.956160px;}
.ws66{word-spacing:1.075680px;}
.ws76{word-spacing:1.224000px;}
.ws2d{word-spacing:1.254960px;}
.ws8a{word-spacing:1.374480px;}
.ws2c{word-spacing:1.494000px;}
.ws3c{word-spacing:1.673280px;}
.ws3e{word-spacing:1.852560px;}
.ws20{word-spacing:1.972080px;}
.ws60{word-spacing:2.211120px;}
.ws5f{word-spacing:2.390400px;}
.ws4e{word-spacing:2.689200px;}
.ws5b{word-spacing:2.808720px;}
.ws2a{word-spacing:2.928240px;}
.ws2b{word-spacing:3.107520px;}
.ws1b{word-spacing:3.406320px;}
.ws61{word-spacing:3.466080px;}
.ws5c{word-spacing:3.645360px;}
.ws1a{word-spacing:3.824640px;}
.ws81{word-spacing:4.123440px;}
.ws7e{word-spacing:4.362480px;}
.ws7d{word-spacing:4.541760px;}
.ws82{word-spacing:4.840560px;}
.ws56{word-spacing:5.079600px;}
.ws7f{word-spacing:5.258880px;}
.ws33{word-spacing:5.796720px;}
.ws36{word-spacing:5.976000px;}
.ws34{word-spacing:6.155280px;}
.ws35{word-spacing:6.274800px;}
.ws31{word-spacing:6.513840px;}
.ws64{word-spacing:6.693120px;}
.ws65{word-spacing:6.872400px;}
.ws87{word-spacing:6.991920px;}
.ws67{word-spacing:7.051680px;}
.ws32{word-spacing:7.290720px;}
.ws3a{word-spacing:7.470000px;}
.ws22{word-spacing:7.768800px;}
.ws47{word-spacing:8.007840px;}
.ws3b{word-spacing:8.067600px;}
.ws49{word-spacing:8.187120px;}
.ws48{word-spacing:8.485920px;}
.ws8b{word-spacing:8.724960px;}
.ws2e{word-spacing:9.203040px;}
.ws63{word-spacing:9.442080px;}
.ws23{word-spacing:9.920160px;}
.ws46{word-spacing:10.159200px;}
.ws5a{word-spacing:10.637280px;}
.ws59{word-spacing:10.876320px;}
.ws88{word-spacing:11.055600px;}
.ws1f{word-spacing:11.354400px;}
.ws53{word-spacing:12.071520px;}
.ws52{word-spacing:12.310560px;}
.ws51{word-spacing:12.489840px;}
.ws8d{word-spacing:12.788640px;}
.ws4a{word-spacing:13.027680px;}
.ws8c{word-spacing:13.206960px;}
.ws4b{word-spacing:13.386240px;}
.ws2f{word-spacing:14.222880px;}
.ws30{word-spacing:14.461920px;}
.ws40{word-spacing:15.179040px;}
.ws89{word-spacing:17.091360px;}
.ws84{word-spacing:17.330400px;}
.ws83{word-spacing:18.525600px;}
.ws54{word-spacing:18.764640px;}
.ws29{word-spacing:22.170960px;}
.ws28{word-spacing:22.410000px;}
.ws71{word-spacing:23.127120px;}
.ws57{word-spacing:23.605200px;}
.ws86{word-spacing:24.740640px;}
._7{margin-left:-2.778840px;}
._1{margin-left:-1.727064px;}
._0{width:1.057752px;}
._3{width:2.133432px;}
._a{width:3.597552px;}
._4{width:6.340536px;}
._6{width:7.840512px;}
._2{width:10.302624px;}
._8{width:12.704976px;}
._c{width:19.242720px;}
._b{width:149.937840px;}
._5{width:1510.983792px;}
._9{width:2144.959704px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:2.880000px;}
.y98{bottom:3.240000px;}
.y96{bottom:3.420000px;}
.yab{bottom:3.600000px;}
.yad{bottom:3.780000px;}
.yb4{bottom:4.140000px;}
.yb8{bottom:4.860000px;}
.yb5{bottom:5.039850px;}
.yae{bottom:5.040000px;}
.y9f{bottom:7.740000px;}
.y60{bottom:8.100000px;}
.y5e{bottom:8.460000px;}
.y4{bottom:10.440000px;}
.yc2{bottom:10.800000px;}
.ybe{bottom:11.340000px;}
.yc0{bottom:11.520000px;}
.y91{bottom:12.600000px;}
.yb2{bottom:18.900000px;}
.y9d{bottom:23.400000px;}
.y2{bottom:27.540000px;}
.yb0{bottom:33.840000px;}
.yc4{bottom:81.540000px;}
.yff{bottom:135.820620px;}
.ya9{bottom:138.202200px;}
.y5c{bottom:139.464180px;}
.y39{bottom:148.026600px;}
.yc8{bottom:150.480000px;}
.yfe{bottom:153.106200px;}
.y12b{bottom:154.308780px;}
.y8f{bottom:156.538260px;}
.y5b{bottom:156.749760px;}
.y38{bottom:165.312180px;}
.yfd{bottom:170.391780px;}
.y12a{bottom:171.594360px;}
.y8e{bottom:173.823840px;}
.y5a{bottom:174.035340px;}
.y37{bottom:182.597760px;}
.ybf{bottom:183.960000px;}
.ybd{bottom:185.220000px;}
.yfc{bottom:187.677360px;}
.y129{bottom:188.879940px;}
.y8d{bottom:190.930140px;}
.y59{bottom:191.141640px;}
.y36{bottom:199.883340px;}
.y58{bottom:208.427220px;}
.yfb{bottom:213.956820px;}
.y128{bottom:215.159400px;}
.y35{bottom:216.989640px;}
.y8c{bottom:217.209600px;}
.yfa{bottom:231.242400px;}
.yc1{bottom:232.200000px;}
.y127{bottom:232.265700px;}
.y34{bottom:234.275220px;}
.y8b{bottom:234.495180px;}
.y57{bottom:235.782360px;}
.yf9{bottom:248.348700px;}
.y33{bottom:251.560800px;}
.y8a{bottom:251.780760px;}
.y56{bottom:258.282000px;}
.y126{bottom:258.545160px;}
.yf8{bottom:265.634280px;}
.y32{bottom:268.846380px;}
.y89{bottom:269.066340px;}
.y61{bottom:270.900000px;}
.y125{bottom:275.830740px;}
.yf7{bottom:282.919860px;}
.y88{bottom:286.351920px;}
.y31{bottom:295.125840px;}
.yf6{bottom:300.205440px;}
.y124{bottom:302.110200px;}
.y87{bottom:303.458220px;}
.y30{bottom:312.411420px;}
.yf5{bottom:317.491020px;}
.y123{bottom:319.395780px;}
.y86{bottom:320.743800px;}
.y2f{bottom:329.517720px;}
.yf4{bottom:334.776600px;}
.y122{bottom:345.495960px;}
.y2e{bottom:346.803300px;}
.y85{bottom:347.023260px;}
.yf3{bottom:360.876780px;}
.y121{bottom:362.781540px;}
.y2d{bottom:364.088880px;}
.y84{bottom:364.308840px;}
.yf2{bottom:378.162360px;}
.y2c{bottom:381.374460px;}
.y83{bottom:381.594420px;}
.y120{bottom:389.061000px;}
.y2b{bottom:398.660040px;}
.y82{bottom:398.880000px;}
.yc3{bottom:400.140000px;}
.yf1{bottom:404.441820px;}
.y11f{bottom:406.346580px;}
.y2a{bottom:415.766340px;}
.yf0{bottom:421.727400px;}
.y11e{bottom:423.632160px;}
.y81{bottom:425.520000px;}
.yc7{bottom:429.291000px;}
.y29{bottom:433.051920px;}
.yef{bottom:439.012980px;}
.yc6{bottom:447.114420px;}
.y11d{bottom:449.911620px;}
.yee{bottom:456.119280px;}
.y28{bottom:459.331380px;}
.y80{bottom:463.631580px;}
.yc5{bottom:464.400000px;}
.y11c{bottom:467.017920px;}
.yed{bottom:473.404860px;}
.y27{bottom:476.616960px;}
.y7f{bottom:480.917160px;}
.y11b{bottom:484.303500px;}
.yec{bottom:490.690440px;}
.y26{bottom:493.902540px;}
.y7e{bottom:498.202740px;}
.yeb{bottom:507.976020px;}
.y11a{bottom:510.582960px;}
.y25{bottom:511.188120px;}
.y7d{bottom:515.488320px;}
.ya8{bottom:518.186160px;}
.yea{bottom:525.261600px;}
.y5d{bottom:525.960000px;}
.y5f{bottom:526.680000px;}
.y119{bottom:527.868540px;}
.y24{bottom:528.294420px;}
.ya7{bottom:535.471740px;}
.ye9{bottom:542.547180px;}
.y118{bottom:545.154120px;}
.y23{bottom:545.580000px;}
.y7c{bottom:546.264720px;}
.ya6{bottom:552.578040px;}
.ye8{bottom:559.653480px;}
.ya5{bottom:569.863620px;}
.y117{bottom:571.433580px;}
.y22{bottom:572.220000px;}
.y7b{bottom:573.440580px;}
.ye7{bottom:576.939060px;}
.y116{bottom:588.539880px;}
.y7a{bottom:590.726160px;}
.ya4{bottom:596.143080px;}
.ye6{bottom:603.218520px;}
.y55{bottom:606.578220px;}
.y79{bottom:608.011740px;}
.y21{bottom:613.366020px;}
.ya3{bottom:613.428660px;}
.y115{bottom:614.819340px;}
.ye5{bottom:620.504100px;}
.y54{bottom:623.863800px;}
.y78{bottom:625.297320px;}
.ya2{bottom:630.714240px;}
.y20{bottom:630.830880px;}
.y114{bottom:632.104920px;}
.ye4{bottom:637.789680px;}
.y53{bottom:641.149380px;}
.y77{bottom:642.582900px;}
.y1f{bottom:647.937180px;}
.ya1{bottom:647.999820px;}
.y113{bottom:649.390500px;}
.ye3{bottom:655.075260px;}
.y1e{bottom:665.222760px;}
.y52{bottom:667.428840px;}
.y76{bottom:669.938040px;}
.ya0{bottom:674.100000px;}
.y112{bottom:675.669960px;}
.ye2{bottom:681.175440px;}
.y1d{bottom:682.508340px;}
.y51{bottom:684.714420px;}
.y111{bottom:692.955540px;}
.y75{bottom:697.113900px;}
.ye1{bottom:698.461020px;}
.ybc{bottom:698.940000px;}
.y1c{bottom:699.793920px;}
.y50{bottom:702.000000px;}
.y110{bottom:710.061840px;}
.ye0{bottom:715.746600px;}
.ybb{bottom:716.220000px;}
.y1b{bottom:717.079500px;}
.y74{bottom:724.469040px;}
.y4f{bottom:728.100000px;}
.ydf{bottom:733.032180px;}
.y1a{bottom:734.365080px;}
.yba{bottom:735.660000px;}
.y10f{bottom:736.341300px;}
.y73{bottom:741.754620px;}
.yde{bottom:750.317760px;}
.y19{bottom:751.471380px;}
.y10e{bottom:753.626880px;}
.yb9{bottom:755.100000px;}
.y4e{bottom:760.628340px;}
.ydd{bottom:767.424060px;}
.y18{bottom:768.756960px;}
.y72{bottom:769.109760px;}
.y10d{bottom:770.912460px;}
.yb7{bottom:774.720000px;}
.y4d{bottom:777.913920px;}
.ydc{bottom:784.709640px;}
.y17{bottom:786.042540px;}
.y10c{bottom:788.198040px;}
.yb6{bottom:794.160000px;}
.y4c{bottom:795.020220px;}
.y71{bottom:796.464900px;}
.ydb{bottom:801.995220px;}
.y16{bottom:803.328120px;}
.yb3{bottom:811.440000px;}
.y4b{bottom:812.305800px;}
.y70{bottom:813.571200px;}
.y10b{bottom:814.298220px;}
.yda{bottom:819.280800px;}
.y15{bottom:820.613700px;}
.yaf{bottom:829.440000px;}
.y4a{bottom:829.591380px;}
.y6f{bottom:830.856780px;}
.y10a{bottom:831.583800px;}
.yd9{bottom:836.566380px;}
.y14{bottom:837.720000px;}
.yb1{bottom:845.640000px;}
.y49{bottom:846.876960px;}
.y109{bottom:848.869380px;}
.yd8{bottom:853.851960px;}
.y13{bottom:855.000000px;}
.y6e{bottom:858.211920px;}
.y48{bottom:864.162540px;}
.yd7{bottom:870.958260px;}
.y108{bottom:875.148840px;}
.yac{bottom:878.940000px;}
.y47{bottom:881.448120px;}
.y6d{bottom:884.491380px;}
.y107{bottom:892.434420px;}
.yd6{bottom:897.237720px;}
.y12{bottom:897.300000px;}
.y46{bottom:898.554420px;}
.yaa{bottom:898.560000px;}
.y6c{bottom:901.776960px;}
.y106{bottom:909.720000px;}
.y11{bottom:912.780000px;}
.yd5{bottom:914.523300px;}
.y45{bottom:915.840000px;}
.y6b{bottom:919.062540px;}
.y10{bottom:928.440000px;}
.y9e{bottom:931.320000px;}
.yd4{bottom:931.808880px;}
.y6a{bottom:936.168840px;}
.y105{bottom:936.360000px;}
.y44{bottom:942.120000px;}
.yf{bottom:943.920000px;}
.y9c{bottom:947.520000px;}
.yd3{bottom:949.094460px;}
.y69{bottom:953.454420px;}
.ye{bottom:959.400000px;}
.yd2{bottom:966.380040px;}
.y68{bottom:970.740000px;}
.y104{bottom:974.503260px;}
.y43{bottom:974.514420px;}
.yd{bottom:974.880000px;}
.y9b{bottom:980.820000px;}
.yd1{bottom:983.486340px;}
.y131{bottom:987.086160px;}
.yc{bottom:990.540000px;}
.y103{bottom:991.788840px;}
.y42{bottom:991.800000px;}
.y9a{bottom:996.480000px;}
.y67{bottom:996.840000px;}
.yd0{bottom:1000.771920px;}
.yb{bottom:1001.514420px;}
.y130{bottom:1004.192460px;}
.y102{bottom:1009.074420px;}
.y99{bottom:1011.960000px;}
.ycf{bottom:1018.057500px;}
.y41{bottom:1018.440000px;}
.ya{bottom:1018.800000px;}
.y12f{bottom:1021.478040px;}
.y101{bottom:1026.360000px;}
.y97{bottom:1027.440000px;}
.y66{bottom:1029.396240px;}
.y95{bottom:1042.920000px;}
.yce{bottom:1044.336960px;}
.y65{bottom:1046.681820px;}
.y12e{bottom:1047.757500px;}
.y100{bottom:1053.000000px;}
.y40{bottom:1056.751380px;}
.y9{bottom:1056.771000px;}
.y93{bottom:1059.300000px;}
.ycd{bottom:1061.622540px;}
.y64{bottom:1063.967400px;}
.y12d{bottom:1065.043080px;}
.y3f{bottom:1074.036960px;}
.y90{bottom:1077.120000px;}
.ycc{bottom:1078.908120px;}
.y63{bottom:1081.252980px;}
.y12c{bottom:1082.328660px;}
.y8{bottom:1087.740000px;}
.y92{bottom:1089.720000px;}
.y3e{bottom:1091.322540px;}
.ycb{bottom:1096.014420px;}
.y62{bottom:1098.538560px;}
.y3d{bottom:1108.608120px;}
.yca{bottom:1113.300000px;}
.y3c{bottom:1125.714420px;}
.yc9{bottom:1139.940000px;}
.y3b{bottom:1143.000000px;}
.y7{bottom:1156.680000px;}
.y1{bottom:1171.620000px;}
.y6{bottom:1181.507220px;}
.y5{bottom:1182.060000px;}
.y3{bottom:1199.160000px;}
.y3a{bottom:1206.720000px;}
.h11{height:15.478500px;}
.h16{height:15.480000px;}
.h13{height:15.660000px;}
.h1e{height:17.098500px;}
.h19{height:17.100000px;}
.h1a{height:17.280000px;}
.hf{height:22.140000px;}
.he{height:22.320000px;}
.h20{height:25.198500px;}
.h1f{height:25.200000px;}
.h17{height:31.138500px;}
.h1c{height:31.140000px;}
.h10{height:35.100000px;}
.ha{height:35.314453px;}
.h18{height:35.332031px;}
.h4{height:44.820000px;}
.h2{height:47.160000px;}
.h1b{height:47.340000px;}
.h1d{height:52.971680px;}
.h14{height:52.998047px;}
.h15{height:53.332031px;}
.h12{height:54.421875px;}
.hb{height:58.621992px;}
.h3{height:58.651172px;}
.h8{height:60.226875px;}
.h9{height:60.249195px;}
.h6{height:62.327813px;}
.hd{height:69.086250px;}
.h23{height:70.664062px;}
.hc{height:75.093750px;}
.h22{height:95.040000px;}
.h7{height:108.843750px;}
.h5{height:129.259012px;}
.h21{height:265.140000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:20.878500px;}
.w1d{width:21.241500px;}
.w1c{width:21.420000px;}
.w22{width:29.160000px;}
.w1f{width:40.858500px;}
.w14{width:48.060000px;}
.w16{width:48.240000px;}
.w2{width:57.420000px;}
.w19{width:59.040000px;}
.w17{width:59.041500px;}
.w1a{width:62.100000px;}
.w15{width:69.480000px;}
.w5{width:73.440000px;}
.w4{width:73.621500px;}
.w18{width:79.920000px;}
.w20{width:86.580000px;}
.w21{width:86.581500px;}
.w23{width:106.920000px;}
.w9{width:116.820000px;}
.wa{width:117.000000px;}
.w10{width:117.540000px;}
.w11{width:117.720000px;}
.w13{width:121.140000px;}
.wb{width:127.260000px;}
.w12{width:138.961500px;}
.w8{width:140.040000px;}
.wd{width:167.581500px;}
.w1b{width:168.661500px;}
.w7{width:190.980000px;}
.we{width:235.980000px;}
.wf{width:260.820000px;}
.w3{width:374.401500px;}
.wc{width:664.560000px;}
.w6{width:692.100000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:4.320000px;}
.x2b{left:7.740000px;}
.x1b{left:10.800000px;}
.x3c{left:12.060000px;}
.x3a{left:14.040000px;}
.x29{left:15.120000px;}
.x37{left:16.200000px;}
.x41{left:19.080000px;}
.x2a{left:20.340000px;}
.x43{left:21.600000px;}
.x2d{left:23.940000px;}
.x2e{left:25.200000px;}
.x27{left:27.180000px;}
.x2f{left:28.800000px;}
.x31{left:33.840000px;}
.x2c{left:36.720000px;}
.x30{left:40.140000px;}
.x39{left:41.220000px;}
.x23{left:43.020000px;}
.x2{left:45.000000px;}
.x26{left:48.600000px;}
.x21{left:60.480000px;}
.x8{left:65.340000px;}
.x5{left:70.920000px;}
.x1f{left:95.400000px;}
.x1e{left:100.440000px;}
.x1{left:106.380000px;}
.x42{left:113.040000px;}
.x34{left:114.120000px;}
.xd{left:119.700000px;}
.xb{left:121.680000px;}
.x1d{left:125.640000px;}
.x18{left:133.361640px;}
.x4a{left:138.600000px;}
.x15{left:148.860000px;}
.x19{left:160.358220px;}
.x3{left:163.800000px;}
.x7{left:167.040000px;}
.x4{left:173.520000px;}
.x1a{left:206.460000px;}
.xc{left:218.880000px;}
.x14{left:235.980000px;}
.x9{left:241.560000px;}
.x6{left:242.640000px;}
.x10{left:244.080000px;}
.x11{left:246.420000px;}
.x4d{left:253.980000px;}
.xf{left:257.220000px;}
.x12{left:260.640000px;}
.x35{left:282.420000px;}
.x20{left:291.420000px;}
.x13{left:298.440000px;}
.x48{left:321.120000px;}
.x3d{left:330.480000px;}
.xe{left:342.903960px;}
.x32{left:345.960000px;}
.x44{left:351.900000px;}
.x38{left:400.680000px;}
.x22{left:431.460000px;}
.x17{left:446.384520px;}
.x3e{left:448.920000px;}
.x45{left:470.160000px;}
.x1c{left:485.460000px;}
.x36{left:519.120000px;}
.x24{left:548.280000px;}
.xa{left:563.576760px;}
.x3f{left:578.160000px;}
.x49{left:585.540000px;}
.x46{left:599.040000px;}
.x3b{left:658.800000px;}
.x25{left:665.280000px;}
.x4b{left:672.660000px;}
.x4c{left:684.720000px;}
.x40{left:717.840000px;}
.x47{left:739.080000px;}
.x33{left:786.583260px;}
.x16{left:797.026320px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:59.494400pt;}
.ls3b{letter-spacing:-1.009280pt;}
.ls22{letter-spacing:-0.956160pt;}
.ls4a{letter-spacing:-0.864000pt;}
.ls39{letter-spacing:-0.849920pt;}
.ls46{letter-spacing:-0.768000pt;}
.ls59{letter-spacing:-0.690560pt;}
.ls48{letter-spacing:-0.672000pt;}
.ls49{letter-spacing:-0.624000pt;}
.ls21{letter-spacing:-0.584320pt;}
.ls2b{letter-spacing:-0.531200pt;}
.ls4b{letter-spacing:-0.528000pt;}
.ls3a{letter-spacing:-0.478080pt;}
.ls20{letter-spacing:-0.424960pt;}
.ls29{letter-spacing:-0.371840pt;}
.ls44{letter-spacing:-0.336000pt;}
.ls45{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.318720pt;}
.ls18{letter-spacing:-0.265600pt;}
.ls19{letter-spacing:-0.212480pt;}
.ls43{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.117760pt;}
.ls1b{letter-spacing:-0.106240pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.053120pt;}
.ls16{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.005312pt;}
.ls40{letter-spacing:0.016000pt;}
.ls5a{letter-spacing:0.037184pt;}
.ls3{letter-spacing:0.053120pt;}
.ls47{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.144000pt;}
.ls56{letter-spacing:0.148736pt;}
.ls2{letter-spacing:0.159360pt;}
.ls3e{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.201856pt;}
.ls24{letter-spacing:0.207168pt;}
.lse{letter-spacing:0.212480pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.318720pt;}
.ls3d{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.336000pt;}
.ls30{letter-spacing:0.353280pt;}
.ls5d{letter-spacing:0.424960pt;}
.ls38{letter-spacing:0.584320pt;}
.ls4d{letter-spacing:0.632128pt;}
.ls3f{letter-spacing:0.656000pt;}
.ls58{letter-spacing:0.743680pt;}
.ls35{letter-spacing:0.796800pt;}
.ls2c{letter-spacing:0.849920pt;}
.ls32{letter-spacing:1.312064pt;}
.ls51{letter-spacing:1.397056pt;}
.ls14{letter-spacing:1.434240pt;}
.ls34{letter-spacing:1.439552pt;}
.ls55{letter-spacing:1.450176pt;}
.ls15{letter-spacing:1.476736pt;}
.ls4f{letter-spacing:2.050432pt;}
.ls2e{letter-spacing:2.071680pt;}
.ls57{letter-spacing:2.103552pt;}
.ls25{letter-spacing:2.661312pt;}
.lsb{letter-spacing:2.677248pt;}
.lsc{letter-spacing:2.709120pt;}
.ls5{letter-spacing:3.346560pt;}
.ls4c{letter-spacing:3.984000pt;}
.ls50{letter-spacing:4.621440pt;}
.ls33{letter-spacing:5.896320pt;}
.ls13{letter-spacing:6.443456pt;}
.ls12{letter-spacing:6.533760pt;}
.ls4e{letter-spacing:6.586880pt;}
.ls37{letter-spacing:6.629376pt;}
.ls26{letter-spacing:7.064960pt;}
.ls31{letter-spacing:7.224320pt;}
.ls36{letter-spacing:7.277440pt;}
.lsd{letter-spacing:8.499200pt;}
.ls23{letter-spacing:8.940096pt;}
.ls9{letter-spacing:9.136640pt;}
.ls5c{letter-spacing:9.561600pt;}
.ls2d{letter-spacing:9.774080pt;}
.ls7{letter-spacing:10.411520pt;}
.ls8{letter-spacing:10.443392pt;}
.ls27{letter-spacing:11.048960pt;}
.ls11{letter-spacing:12.801920pt;}
.ls10{letter-spacing:12.961280pt;}
.lsf{letter-spacing:12.977216pt;}
.ls52{letter-spacing:16.684992pt;}
.ls53{letter-spacing:16.785920pt;}
.ls3c{letter-spacing:20.663680pt;}
.ls5b{letter-spacing:36.440320pt;}
.lsa{letter-spacing:42.368000pt;}
.ls28{letter-spacing:56.891520pt;}
.ls41{letter-spacing:130.560000pt;}
.ls0{letter-spacing:958.869120pt;}
.ws43{word-spacing:-53.120000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.728000pt;}
.ws42{word-spacing:-16.250880pt;}
.ws45{word-spacing:-14.129920pt;}
.ws58{word-spacing:-13.864320pt;}
.ws4{word-spacing:-13.598720pt;}
.ws41{word-spacing:-13.492480pt;}
.ws9{word-spacing:-13.386240pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.226880pt;}
.ws5{word-spacing:-13.067520pt;}
.ws0{word-spacing:-12.961280pt;}
.ws44{word-spacing:-12.908160pt;}
.wsa{word-spacing:-12.855040pt;}
.ws7c{word-spacing:-12.748800pt;}
.ws6b{word-spacing:-12.336000pt;}
.ws7b{word-spacing:-12.270720pt;}
.ws6d{word-spacing:-12.096000pt;}
.ws68{word-spacing:-12.000000pt;}
.ws69{word-spacing:-11.904000pt;}
.ws6a{word-spacing:-11.664000pt;}
.ws70{word-spacing:-11.472000pt;}
.ws6e{word-spacing:-11.376000pt;}
.ws6c{word-spacing:-11.328000pt;}
.ws6f{word-spacing:-11.136000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws5e{word-spacing:-3.134080pt;}
.ws5d{word-spacing:-2.974720pt;}
.ws21{word-spacing:-2.709120pt;}
.ws37{word-spacing:-2.496640pt;}
.ws55{word-spacing:-2.337280pt;}
.ws27{word-spacing:-2.071680pt;}
.ws50{word-spacing:-1.859200pt;}
.ws26{word-spacing:-1.699840pt;}
.ws24{word-spacing:-1.434240pt;}
.ws39{word-spacing:-1.221760pt;}
.ws3f{word-spacing:-1.062400pt;}
.ws19{word-spacing:-0.816000pt;}
.ws1d{word-spacing:-0.796800pt;}
.ws80{word-spacing:-0.743680pt;}
.ws14{word-spacing:-0.637440pt;}
.ws25{word-spacing:-0.584320pt;}
.ws79{word-spacing:-0.576000pt;}
.ws1e{word-spacing:-0.424960pt;}
.ws73{word-spacing:-0.336000pt;}
.wsf{word-spacing:-0.318720pt;}
.ws62{word-spacing:-0.212480pt;}
.ws18{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.159360pt;}
.ws7a{word-spacing:-0.144000pt;}
.ws4c{word-spacing:-0.128000pt;}
.ws10{word-spacing:-0.106240pt;}
.ws78{word-spacing:-0.096000pt;}
.ws15{word-spacing:-0.053120pt;}
.wsb{word-spacing:0.000000pt;}
.ws77{word-spacing:0.048000pt;}
.ws13{word-spacing:0.053120pt;}
.ws85{word-spacing:0.106240pt;}
.ws75{word-spacing:0.192000pt;}
.wse{word-spacing:0.212480pt;}
.ws17{word-spacing:0.265600pt;}
.ws11{word-spacing:0.288000pt;}
.wsc{word-spacing:0.318720pt;}
.ws72{word-spacing:0.336000pt;}
.ws16{word-spacing:0.371840pt;}
.ws4d{word-spacing:0.412160pt;}
.wsd{word-spacing:0.424960pt;}
.ws1c{word-spacing:0.478080pt;}
.ws4f{word-spacing:0.531200pt;}
.ws74{word-spacing:0.640000pt;}
.ws38{word-spacing:0.690560pt;}
.ws3d{word-spacing:0.849920pt;}
.ws66{word-spacing:0.956160pt;}
.ws76{word-spacing:1.088000pt;}
.ws2d{word-spacing:1.115520pt;}
.ws8a{word-spacing:1.221760pt;}
.ws2c{word-spacing:1.328000pt;}
.ws3c{word-spacing:1.487360pt;}
.ws3e{word-spacing:1.646720pt;}
.ws20{word-spacing:1.752960pt;}
.ws60{word-spacing:1.965440pt;}
.ws5f{word-spacing:2.124800pt;}
.ws4e{word-spacing:2.390400pt;}
.ws5b{word-spacing:2.496640pt;}
.ws2a{word-spacing:2.602880pt;}
.ws2b{word-spacing:2.762240pt;}
.ws1b{word-spacing:3.027840pt;}
.ws61{word-spacing:3.080960pt;}
.ws5c{word-spacing:3.240320pt;}
.ws1a{word-spacing:3.399680pt;}
.ws81{word-spacing:3.665280pt;}
.ws7e{word-spacing:3.877760pt;}
.ws7d{word-spacing:4.037120pt;}
.ws82{word-spacing:4.302720pt;}
.ws56{word-spacing:4.515200pt;}
.ws7f{word-spacing:4.674560pt;}
.ws33{word-spacing:5.152640pt;}
.ws36{word-spacing:5.312000pt;}
.ws34{word-spacing:5.471360pt;}
.ws35{word-spacing:5.577600pt;}
.ws31{word-spacing:5.790080pt;}
.ws64{word-spacing:5.949440pt;}
.ws65{word-spacing:6.108800pt;}
.ws87{word-spacing:6.215040pt;}
.ws67{word-spacing:6.268160pt;}
.ws32{word-spacing:6.480640pt;}
.ws3a{word-spacing:6.640000pt;}
.ws22{word-spacing:6.905600pt;}
.ws47{word-spacing:7.118080pt;}
.ws3b{word-spacing:7.171200pt;}
.ws49{word-spacing:7.277440pt;}
.ws48{word-spacing:7.543040pt;}
.ws8b{word-spacing:7.755520pt;}
.ws2e{word-spacing:8.180480pt;}
.ws63{word-spacing:8.392960pt;}
.ws23{word-spacing:8.817920pt;}
.ws46{word-spacing:9.030400pt;}
.ws5a{word-spacing:9.455360pt;}
.ws59{word-spacing:9.667840pt;}
.ws88{word-spacing:9.827200pt;}
.ws1f{word-spacing:10.092800pt;}
.ws53{word-spacing:10.730240pt;}
.ws52{word-spacing:10.942720pt;}
.ws51{word-spacing:11.102080pt;}
.ws8d{word-spacing:11.367680pt;}
.ws4a{word-spacing:11.580160pt;}
.ws8c{word-spacing:11.739520pt;}
.ws4b{word-spacing:11.898880pt;}
.ws2f{word-spacing:12.642560pt;}
.ws30{word-spacing:12.855040pt;}
.ws40{word-spacing:13.492480pt;}
.ws89{word-spacing:15.192320pt;}
.ws84{word-spacing:15.404800pt;}
.ws83{word-spacing:16.467200pt;}
.ws54{word-spacing:16.679680pt;}
.ws29{word-spacing:19.707520pt;}
.ws28{word-spacing:19.920000pt;}
.ws71{word-spacing:20.557440pt;}
.ws57{word-spacing:20.982400pt;}
.ws86{word-spacing:21.991680pt;}
._7{margin-left:-2.470080pt;}
._1{margin-left:-1.535168pt;}
._0{width:0.940224pt;}
._3{width:1.896384pt;}
._a{width:3.197824pt;}
._4{width:5.636032pt;}
._6{width:6.969344pt;}
._2{width:9.157888pt;}
._8{width:11.293312pt;}
._c{width:17.104640pt;}
._b{width:133.278080pt;}
._5{width:1343.096704pt;}
._9{width:1906.630848pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:2.560000pt;}
.y98{bottom:2.880000pt;}
.y96{bottom:3.040000pt;}
.yab{bottom:3.200000pt;}
.yad{bottom:3.360000pt;}
.yb4{bottom:3.680000pt;}
.yb8{bottom:4.320000pt;}
.yb5{bottom:4.479867pt;}
.yae{bottom:4.480000pt;}
.y9f{bottom:6.880000pt;}
.y60{bottom:7.200000pt;}
.y5e{bottom:7.520000pt;}
.y4{bottom:9.280000pt;}
.yc2{bottom:9.600000pt;}
.ybe{bottom:10.080000pt;}
.yc0{bottom:10.240000pt;}
.y91{bottom:11.200000pt;}
.yb2{bottom:16.800000pt;}
.y9d{bottom:20.800000pt;}
.y2{bottom:24.480000pt;}
.yb0{bottom:30.080000pt;}
.yc4{bottom:72.480000pt;}
.yff{bottom:120.729440pt;}
.ya9{bottom:122.846400pt;}
.y5c{bottom:123.968160pt;}
.y39{bottom:131.579200pt;}
.yc8{bottom:133.760000pt;}
.yfe{bottom:136.094400pt;}
.y12b{bottom:137.163360pt;}
.y8f{bottom:139.145120pt;}
.y5b{bottom:139.333120pt;}
.y38{bottom:146.944160pt;}
.yfd{bottom:151.459360pt;}
.y12a{bottom:152.528320pt;}
.y8e{bottom:154.510080pt;}
.y5a{bottom:154.698080pt;}
.y37{bottom:162.309120pt;}
.ybf{bottom:163.520000pt;}
.ybd{bottom:164.640000pt;}
.yfc{bottom:166.824320pt;}
.y129{bottom:167.893280pt;}
.y8d{bottom:169.715680pt;}
.y59{bottom:169.903680pt;}
.y36{bottom:177.674080pt;}
.y58{bottom:185.268640pt;}
.yfb{bottom:190.183840pt;}
.y128{bottom:191.252800pt;}
.y35{bottom:192.879680pt;}
.y8c{bottom:193.075200pt;}
.yfa{bottom:205.548800pt;}
.yc1{bottom:206.400000pt;}
.y127{bottom:206.458400pt;}
.y34{bottom:208.244640pt;}
.y8b{bottom:208.440160pt;}
.y57{bottom:209.584320pt;}
.yf9{bottom:220.754400pt;}
.y33{bottom:223.609600pt;}
.y8a{bottom:223.805120pt;}
.y56{bottom:229.584000pt;}
.y126{bottom:229.817920pt;}
.yf8{bottom:236.119360pt;}
.y32{bottom:238.974560pt;}
.y89{bottom:239.170080pt;}
.y61{bottom:240.800000pt;}
.y125{bottom:245.182880pt;}
.yf7{bottom:251.484320pt;}
.y88{bottom:254.535040pt;}
.y31{bottom:262.334080pt;}
.yf6{bottom:266.849280pt;}
.y124{bottom:268.542400pt;}
.y87{bottom:269.740640pt;}
.y30{bottom:277.699040pt;}
.yf5{bottom:282.214240pt;}
.y123{bottom:283.907360pt;}
.y86{bottom:285.105600pt;}
.y2f{bottom:292.904640pt;}
.yf4{bottom:297.579200pt;}
.y122{bottom:307.107520pt;}
.y2e{bottom:308.269600pt;}
.y85{bottom:308.465120pt;}
.yf3{bottom:320.779360pt;}
.y121{bottom:322.472480pt;}
.y2d{bottom:323.634560pt;}
.y84{bottom:323.830080pt;}
.yf2{bottom:336.144320pt;}
.y2c{bottom:338.999520pt;}
.y83{bottom:339.195040pt;}
.y120{bottom:345.832000pt;}
.y2b{bottom:354.364480pt;}
.y82{bottom:354.560000pt;}
.yc3{bottom:355.680000pt;}
.yf1{bottom:359.503840pt;}
.y11f{bottom:361.196960pt;}
.y2a{bottom:369.570080pt;}
.yf0{bottom:374.868800pt;}
.y11e{bottom:376.561920pt;}
.y81{bottom:378.240000pt;}
.yc7{bottom:381.592000pt;}
.y29{bottom:384.935040pt;}
.yef{bottom:390.233760pt;}
.yc6{bottom:397.435040pt;}
.y11d{bottom:399.921440pt;}
.yee{bottom:405.439360pt;}
.y28{bottom:408.294560pt;}
.y80{bottom:412.116960pt;}
.yc5{bottom:412.800000pt;}
.y11c{bottom:415.127040pt;}
.yed{bottom:420.804320pt;}
.y27{bottom:423.659520pt;}
.y7f{bottom:427.481920pt;}
.y11b{bottom:430.492000pt;}
.yec{bottom:436.169280pt;}
.y26{bottom:439.024480pt;}
.y7e{bottom:442.846880pt;}
.yeb{bottom:451.534240pt;}
.y11a{bottom:453.851520pt;}
.y25{bottom:454.389440pt;}
.y7d{bottom:458.211840pt;}
.ya8{bottom:460.609920pt;}
.yea{bottom:466.899200pt;}
.y5d{bottom:467.520000pt;}
.y5f{bottom:468.160000pt;}
.y119{bottom:469.216480pt;}
.y24{bottom:469.595040pt;}
.ya7{bottom:475.974880pt;}
.ye9{bottom:482.264160pt;}
.y118{bottom:484.581440pt;}
.y23{bottom:484.960000pt;}
.y7c{bottom:485.568640pt;}
.ya6{bottom:491.180480pt;}
.ye8{bottom:497.469760pt;}
.ya5{bottom:506.545440pt;}
.y117{bottom:507.940960pt;}
.y22{bottom:508.640000pt;}
.y7b{bottom:509.724960pt;}
.ye7{bottom:512.834720pt;}
.y116{bottom:523.146560pt;}
.y7a{bottom:525.089920pt;}
.ya4{bottom:529.904960pt;}
.ye6{bottom:536.194240pt;}
.y55{bottom:539.180640pt;}
.y79{bottom:540.454880pt;}
.y21{bottom:545.214240pt;}
.ya3{bottom:545.269920pt;}
.y115{bottom:546.506080pt;}
.ye5{bottom:551.559200pt;}
.y54{bottom:554.545600pt;}
.y78{bottom:555.819840pt;}
.ya2{bottom:560.634880pt;}
.y20{bottom:560.738560pt;}
.y114{bottom:561.871040pt;}
.ye4{bottom:566.924160pt;}
.y53{bottom:569.910560pt;}
.y77{bottom:571.184800pt;}
.y1f{bottom:575.944160pt;}
.ya1{bottom:575.999840pt;}
.y113{bottom:577.236000pt;}
.ye3{bottom:582.289120pt;}
.y1e{bottom:591.309120pt;}
.y52{bottom:593.270080pt;}
.y76{bottom:595.500480pt;}
.ya0{bottom:599.200000pt;}
.y112{bottom:600.595520pt;}
.ye2{bottom:605.489280pt;}
.y1d{bottom:606.674080pt;}
.y51{bottom:608.635040pt;}
.y111{bottom:615.960480pt;}
.y75{bottom:619.656800pt;}
.ye1{bottom:620.854240pt;}
.ybc{bottom:621.280000pt;}
.y1c{bottom:622.039040pt;}
.y50{bottom:624.000000pt;}
.y110{bottom:631.166080pt;}
.ye0{bottom:636.219200pt;}
.ybb{bottom:636.640000pt;}
.y1b{bottom:637.404000pt;}
.y74{bottom:643.972480pt;}
.y4f{bottom:647.200000pt;}
.ydf{bottom:651.584160pt;}
.y1a{bottom:652.768960pt;}
.yba{bottom:653.920000pt;}
.y10f{bottom:654.525600pt;}
.y73{bottom:659.337440pt;}
.yde{bottom:666.949120pt;}
.y19{bottom:667.974560pt;}
.y10e{bottom:669.890560pt;}
.yb9{bottom:671.200000pt;}
.y4e{bottom:676.114080pt;}
.ydd{bottom:682.154720pt;}
.y18{bottom:683.339520pt;}
.y72{bottom:683.653120pt;}
.y10d{bottom:685.255520pt;}
.yb7{bottom:688.640000pt;}
.y4d{bottom:691.479040pt;}
.ydc{bottom:697.519680pt;}
.y17{bottom:698.704480pt;}
.y10c{bottom:700.620480pt;}
.yb6{bottom:705.920000pt;}
.y4c{bottom:706.684640pt;}
.y71{bottom:707.968800pt;}
.ydb{bottom:712.884640pt;}
.y16{bottom:714.069440pt;}
.yb3{bottom:721.280000pt;}
.y4b{bottom:722.049600pt;}
.y70{bottom:723.174400pt;}
.y10b{bottom:723.820640pt;}
.yda{bottom:728.249600pt;}
.y15{bottom:729.434400pt;}
.yaf{bottom:737.280000pt;}
.y4a{bottom:737.414560pt;}
.y6f{bottom:738.539360pt;}
.y10a{bottom:739.185600pt;}
.yd9{bottom:743.614560pt;}
.y14{bottom:744.640000pt;}
.yb1{bottom:751.680000pt;}
.y49{bottom:752.779520pt;}
.y109{bottom:754.550560pt;}
.yd8{bottom:758.979520pt;}
.y13{bottom:760.000000pt;}
.y6e{bottom:762.855040pt;}
.y48{bottom:768.144480pt;}
.yd7{bottom:774.185120pt;}
.y108{bottom:777.910080pt;}
.yac{bottom:781.280000pt;}
.y47{bottom:783.509440pt;}
.y6d{bottom:786.214560pt;}
.y107{bottom:793.275040pt;}
.yd6{bottom:797.544640pt;}
.y12{bottom:797.600000pt;}
.y46{bottom:798.715040pt;}
.yaa{bottom:798.720000pt;}
.y6c{bottom:801.579520pt;}
.y106{bottom:808.640000pt;}
.y11{bottom:811.360000pt;}
.yd5{bottom:812.909600pt;}
.y45{bottom:814.080000pt;}
.y6b{bottom:816.944480pt;}
.y10{bottom:825.280000pt;}
.y9e{bottom:827.840000pt;}
.yd4{bottom:828.274560pt;}
.y6a{bottom:832.150080pt;}
.y105{bottom:832.320000pt;}
.y44{bottom:837.440000pt;}
.yf{bottom:839.040000pt;}
.y9c{bottom:842.240000pt;}
.yd3{bottom:843.639520pt;}
.y69{bottom:847.515040pt;}
.ye{bottom:852.800000pt;}
.yd2{bottom:859.004480pt;}
.y68{bottom:862.880000pt;}
.y104{bottom:866.225120pt;}
.y43{bottom:866.235040pt;}
.yd{bottom:866.560000pt;}
.y9b{bottom:871.840000pt;}
.yd1{bottom:874.210080pt;}
.y131{bottom:877.409920pt;}
.yc{bottom:880.480000pt;}
.y103{bottom:881.590080pt;}
.y42{bottom:881.600000pt;}
.y9a{bottom:885.760000pt;}
.y67{bottom:886.080000pt;}
.yd0{bottom:889.575040pt;}
.yb{bottom:890.235040pt;}
.y130{bottom:892.615520pt;}
.y102{bottom:896.955040pt;}
.y99{bottom:899.520000pt;}
.ycf{bottom:904.940000pt;}
.y41{bottom:905.280000pt;}
.ya{bottom:905.600000pt;}
.y12f{bottom:907.980480pt;}
.y101{bottom:912.320000pt;}
.y97{bottom:913.280000pt;}
.y66{bottom:915.018880pt;}
.y95{bottom:927.040000pt;}
.yce{bottom:928.299520pt;}
.y65{bottom:930.383840pt;}
.y12e{bottom:931.340000pt;}
.y100{bottom:936.000000pt;}
.y40{bottom:939.334560pt;}
.y9{bottom:939.352000pt;}
.y93{bottom:941.600000pt;}
.ycd{bottom:943.664480pt;}
.y64{bottom:945.748800pt;}
.y12d{bottom:946.704960pt;}
.y3f{bottom:954.699520pt;}
.y90{bottom:957.440000pt;}
.ycc{bottom:959.029440pt;}
.y63{bottom:961.113760pt;}
.y12c{bottom:962.069920pt;}
.y8{bottom:966.880000pt;}
.y92{bottom:968.640000pt;}
.y3e{bottom:970.064480pt;}
.ycb{bottom:974.235040pt;}
.y62{bottom:976.478720pt;}
.y3d{bottom:985.429440pt;}
.yca{bottom:989.600000pt;}
.y3c{bottom:1000.635040pt;}
.yc9{bottom:1013.280000pt;}
.y3b{bottom:1016.000000pt;}
.y7{bottom:1028.160000pt;}
.y1{bottom:1041.440000pt;}
.y6{bottom:1050.228640pt;}
.y5{bottom:1050.720000pt;}
.y3{bottom:1065.920000pt;}
.y3a{bottom:1072.640000pt;}
.h11{height:13.758667pt;}
.h16{height:13.760000pt;}
.h13{height:13.920000pt;}
.h1e{height:15.198667pt;}
.h19{height:15.200000pt;}
.h1a{height:15.360000pt;}
.hf{height:19.680000pt;}
.he{height:19.840000pt;}
.h20{height:22.398667pt;}
.h1f{height:22.400000pt;}
.h17{height:27.678667pt;}
.h1c{height:27.680000pt;}
.h10{height:31.200000pt;}
.ha{height:31.390625pt;}
.h18{height:31.406250pt;}
.h4{height:39.840000pt;}
.h2{height:41.920000pt;}
.h1b{height:42.080000pt;}
.h1d{height:47.085938pt;}
.h14{height:47.109375pt;}
.h15{height:47.406250pt;}
.h12{height:48.375000pt;}
.hb{height:52.108438pt;}
.h3{height:52.134375pt;}
.h8{height:53.535000pt;}
.h9{height:53.554840pt;}
.h6{height:55.402500pt;}
.hd{height:61.410000pt;}
.h23{height:62.812500pt;}
.hc{height:66.750000pt;}
.h22{height:84.480000pt;}
.h7{height:96.750000pt;}
.h5{height:114.896900pt;}
.h21{height:235.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:18.558667pt;}
.w1d{width:18.881333pt;}
.w1c{width:19.040000pt;}
.w22{width:25.920000pt;}
.w1f{width:36.318667pt;}
.w14{width:42.720000pt;}
.w16{width:42.880000pt;}
.w2{width:51.040000pt;}
.w19{width:52.480000pt;}
.w17{width:52.481333pt;}
.w1a{width:55.200000pt;}
.w15{width:61.760000pt;}
.w5{width:65.280000pt;}
.w4{width:65.441333pt;}
.w18{width:71.040000pt;}
.w20{width:76.960000pt;}
.w21{width:76.961333pt;}
.w23{width:95.040000pt;}
.w9{width:103.840000pt;}
.wa{width:104.000000pt;}
.w10{width:104.480000pt;}
.w11{width:104.640000pt;}
.w13{width:107.680000pt;}
.wb{width:113.120000pt;}
.w12{width:123.521333pt;}
.w8{width:124.480000pt;}
.wd{width:148.961333pt;}
.w1b{width:149.921333pt;}
.w7{width:169.760000pt;}
.we{width:209.760000pt;}
.wf{width:231.840000pt;}
.w3{width:332.801333pt;}
.wc{width:590.720000pt;}
.w6{width:615.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:3.840000pt;}
.x2b{left:6.880000pt;}
.x1b{left:9.600000pt;}
.x3c{left:10.720000pt;}
.x3a{left:12.480000pt;}
.x29{left:13.440000pt;}
.x37{left:14.400000pt;}
.x41{left:16.960000pt;}
.x2a{left:18.080000pt;}
.x43{left:19.200000pt;}
.x2d{left:21.280000pt;}
.x2e{left:22.400000pt;}
.x27{left:24.160000pt;}
.x2f{left:25.600000pt;}
.x31{left:30.080000pt;}
.x2c{left:32.640000pt;}
.x30{left:35.680000pt;}
.x39{left:36.640000pt;}
.x23{left:38.240000pt;}
.x2{left:40.000000pt;}
.x26{left:43.200000pt;}
.x21{left:53.760000pt;}
.x8{left:58.080000pt;}
.x5{left:63.040000pt;}
.x1f{left:84.800000pt;}
.x1e{left:89.280000pt;}
.x1{left:94.560000pt;}
.x42{left:100.480000pt;}
.x34{left:101.440000pt;}
.xd{left:106.400000pt;}
.xb{left:108.160000pt;}
.x1d{left:111.680000pt;}
.x18{left:118.543680pt;}
.x4a{left:123.200000pt;}
.x15{left:132.320000pt;}
.x19{left:142.540640pt;}
.x3{left:145.600000pt;}
.x7{left:148.480000pt;}
.x4{left:154.240000pt;}
.x1a{left:183.520000pt;}
.xc{left:194.560000pt;}
.x14{left:209.760000pt;}
.x9{left:214.720000pt;}
.x6{left:215.680000pt;}
.x10{left:216.960000pt;}
.x11{left:219.040000pt;}
.x4d{left:225.760000pt;}
.xf{left:228.640000pt;}
.x12{left:231.680000pt;}
.x35{left:251.040000pt;}
.x20{left:259.040000pt;}
.x13{left:265.280000pt;}
.x48{left:285.440000pt;}
.x3d{left:293.760000pt;}
.xe{left:304.803520pt;}
.x32{left:307.520000pt;}
.x44{left:312.800000pt;}
.x38{left:356.160000pt;}
.x22{left:383.520000pt;}
.x17{left:396.786240pt;}
.x3e{left:399.040000pt;}
.x45{left:417.920000pt;}
.x1c{left:431.520000pt;}
.x36{left:461.440000pt;}
.x24{left:487.360000pt;}
.xa{left:500.957120pt;}
.x3f{left:513.920000pt;}
.x49{left:520.480000pt;}
.x46{left:532.480000pt;}
.x3b{left:585.600000pt;}
.x25{left:591.360000pt;}
.x4b{left:597.920000pt;}
.x4c{left:608.640000pt;}
.x40{left:638.080000pt;}
.x47{left:656.960000pt;}
.x33{left:699.185120pt;}
.x16{left:708.467840pt;}
}




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