
    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_c913c74b6521746310e99b07.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_46676df0ed88ca744a11d35f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dd6450a66f650246d924e48c.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_7863067b4d67127f7f1ee1ba.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_883051ba34fb6dda78370857.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_fc07ed3f070c152a6f9cc44e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aefee2839b5314b631c05f58.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_c10ada0f1cbe3eddc8e3e48b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.575000;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_42284fc34fbcbc7196cdecfb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912598;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_c41865d5c1ad83f9eef1e6bf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929688;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_d71b880a8c389f093041a3f9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918945;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_4e78294e0f0f8f1d7d6740e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:41.760000px;}
.ls19{letter-spacing:-2.088000px;}
.lse{letter-spacing:-1.728000px;}
.ls34{letter-spacing:-1.584000px;}
.lsd{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.296000px;}
.ls24{letter-spacing:-1.152000px;}
.ls18{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.792000px;}
.ls2d{letter-spacing:-0.728640px;}
.ls11{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.529920px;}
.ls31{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.483840px;}
.ls39{letter-spacing:-0.432000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.331200px;}
.lsb{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.198720px;}
.lsa{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.072000px;}
.ls29{letter-spacing:-0.066240px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.060480px;}
.ls2a{letter-spacing:0.066240px;}
.ls3b{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.483840px;}
.ls12{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.511200px;}
.ls38{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.648000px;}
.ls3d{letter-spacing:0.655200px;}
.ls28{letter-spacing:0.662400px;}
.ls2{letter-spacing:0.720000px;}
.ls3c{letter-spacing:0.727200px;}
.lsf{letter-spacing:1.584000px;}
.ls1{letter-spacing:2.160000px;}
.ls15{letter-spacing:3.600000px;}
.ls22{letter-spacing:3.607200px;}
.ls5{letter-spacing:5.040000px;}
.ls1e{letter-spacing:6.480000px;}
.ls0{letter-spacing:7.920000px;}
.ls1c{letter-spacing:9.360000px;}
.ls1d{letter-spacing:9.367200px;}
.ls1b{letter-spacing:10.800000px;}
.ls13{letter-spacing:12.240000px;}
.ls23{letter-spacing:13.680000px;}
.ls14{letter-spacing:15.120000px;}
.ls32{letter-spacing:15.984000px;}
.ls26{letter-spacing:16.560000px;}
.ls4{letter-spacing:18.000000px;}
.ls20{letter-spacing:19.440000px;}
.ls25{letter-spacing:20.880000px;}
.ls27{letter-spacing:22.320000px;}
.ls21{letter-spacing:26.640000px;}
.ls2f{letter-spacing:27.504000px;}
.ls1f{letter-spacing:29.520000px;}
.ls30{letter-spacing:51.984000px;}
.ls36{letter-spacing:228.240000px;}
.ls35{letter-spacing:295.920000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws36{word-spacing:-18.720000px;}
.ws79{word-spacing:-18.648000px;}
.ws8e{word-spacing:-18.576000px;}
.ws38{word-spacing:-18.504000px;}
.ws23{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8d{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws8f{word-spacing:-17.568000px;}
.ws5{word-spacing:-17.352000px;}
.ws90{word-spacing:-17.280000px;}
.ws24{word-spacing:-17.208000px;}
.ws5d{word-spacing:-17.064000px;}
.ws37{word-spacing:-16.704000px;}
.ws5c{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.329600px;}
.ws39{word-spacing:-16.272000px;}
.ws4e{word-spacing:-15.912000px;}
.ws6c{word-spacing:-15.168960px;}
.ws6b{word-spacing:-15.036480px;}
.ws6a{word-spacing:-14.771520px;}
.ws6d{word-spacing:-14.572800px;}
.ws88{word-spacing:-5.040000px;}
.ws7c{word-spacing:-4.752000px;}
.ws5e{word-spacing:-4.392000px;}
.ws4d{word-spacing:-3.744000px;}
.wsf{word-spacing:-3.600000px;}
.ws46{word-spacing:-3.312000px;}
.ws49{word-spacing:-2.880000px;}
.ws9a{word-spacing:-2.664000px;}
.ws4f{word-spacing:-2.304000px;}
.ws77{word-spacing:-2.185920px;}
.ws3d{word-spacing:-2.160000px;}
.ws58{word-spacing:-2.016000px;}
.ws3c{word-spacing:-1.872000px;}
.ws1f{word-spacing:-1.584000px;}
.ws4a{word-spacing:-1.512000px;}
.ws57{word-spacing:-1.440000px;}
.ws5f{word-spacing:-1.224000px;}
.ws45{word-spacing:-0.864000px;}
.ws72{word-spacing:-0.794880px;}
.ws1d{word-spacing:-0.720000px;}
.ws71{word-spacing:-0.662400px;}
.ws95{word-spacing:-0.576000px;}
.ws2d{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.483840px;}
.ws31{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.288000px;}
.wse{word-spacing:-0.144000px;}
.ws96{word-spacing:-0.072000px;}
.ws73{word-spacing:-0.066240px;}
.wsa{word-spacing:-0.060480px;}
.ws6{word-spacing:0.000000px;}
.ws93{word-spacing:0.072000px;}
.ws84{word-spacing:0.144000px;}
.ws8a{word-spacing:0.216000px;}
.ws10{word-spacing:0.288000px;}
.ws92{word-spacing:0.432000px;}
.ws9{word-spacing:0.483840px;}
.ws87{word-spacing:0.504000px;}
.ws2f{word-spacing:0.576000px;}
.ws43{word-spacing:0.648000px;}
.ws74{word-spacing:0.662400px;}
.wsd{word-spacing:0.720000px;}
.ws76{word-spacing:0.728640px;}
.ws91{word-spacing:0.792000px;}
.ws81{word-spacing:0.864000px;}
.ws30{word-spacing:0.936000px;}
.ws7{word-spacing:0.967680px;}
.ws17{word-spacing:1.008000px;}
.ws94{word-spacing:1.080000px;}
.ws62{word-spacing:1.152000px;}
.ws7e{word-spacing:1.224000px;}
.ws75{word-spacing:1.258560px;}
.ws13{word-spacing:1.296000px;}
.ws60{word-spacing:1.368000px;}
.ws16{word-spacing:1.440000px;}
.ws89{word-spacing:1.584000px;}
.ws82{word-spacing:1.656000px;}
.ws1a{word-spacing:1.728000px;}
.ws26{word-spacing:2.016000px;}
.ws32{word-spacing:2.088000px;}
.ws15{word-spacing:2.160000px;}
.ws78{word-spacing:2.384640px;}
.ws14{word-spacing:2.448000px;}
.ws2e{word-spacing:2.808000px;}
.ws59{word-spacing:2.880000px;}
.ws63{word-spacing:3.096000px;}
.ws2a{word-spacing:3.456000px;}
.ws2b{word-spacing:3.600000px;}
.ws47{word-spacing:3.888000px;}
.ws6f{word-spacing:4.248000px;}
.ws6e{word-spacing:4.320000px;}
.ws99{word-spacing:4.392000px;}
.ws7b{word-spacing:4.536000px;}
.ws1b{word-spacing:4.896000px;}
.ws1c{word-spacing:5.040000px;}
.ws2c{word-spacing:5.328000px;}
.ws8c{word-spacing:5.688000px;}
.ws67{word-spacing:5.760000px;}
.ws80{word-spacing:5.976000px;}
.ws44{word-spacing:6.336000px;}
.ws54{word-spacing:6.480000px;}
.wsc{word-spacing:6.624000px;}
.ws42{word-spacing:6.768000px;}
.ws66{word-spacing:7.128000px;}
.ws85{word-spacing:7.200000px;}
.ws12{word-spacing:7.776000px;}
.ws11{word-spacing:7.920000px;}
.ws1e{word-spacing:8.208000px;}
.ws7d{word-spacing:8.568000px;}
.ws86{word-spacing:8.640000px;}
.ws65{word-spacing:8.856000px;}
.ws64{word-spacing:9.216000px;}
.ws3f{word-spacing:9.360000px;}
.ws3e{word-spacing:9.648000px;}
.ws83{word-spacing:10.296000px;}
.ws3b{word-spacing:10.656000px;}
.ws3a{word-spacing:10.800000px;}
.ws35{word-spacing:11.088000px;}
.ws55{word-spacing:12.096000px;}
.ws25{word-spacing:12.240000px;}
.ws48{word-spacing:12.528000px;}
.ws5a{word-spacing:13.176000px;}
.ws28{word-spacing:13.536000px;}
.ws61{word-spacing:13.680000px;}
.ws5b{word-spacing:13.968000px;}
.ws8b{word-spacing:14.328000px;}
.ws22{word-spacing:14.616000px;}
.ws4b{word-spacing:14.976000px;}
.ws20{word-spacing:15.120000px;}
.ws4c{word-spacing:15.408000px;}
.ws7f{word-spacing:15.768000px;}
.ws21{word-spacing:16.560000px;}
.ws69{word-spacing:16.848000px;}
.ws18{word-spacing:17.856000px;}
.ws40{word-spacing:18.000000px;}
.ws19{word-spacing:18.288000px;}
.ws52{word-spacing:19.296000px;}
.ws53{word-spacing:19.440000px;}
.ws41{word-spacing:19.728000px;}
.ws7a{word-spacing:20.088000px;}
.ws98{word-spacing:20.736000px;}
.ws68{word-spacing:20.880000px;}
.ws97{word-spacing:21.168000px;}
.ws70{word-spacing:22.176000px;}
.ws29{word-spacing:22.320000px;}
.ws9f{word-spacing:23.616000px;}
.ws9b{word-spacing:23.760000px;}
.ws9c{word-spacing:25.200000px;}
.ws56{word-spacing:26.496000px;}
.ws33{word-spacing:26.640000px;}
.ws34{word-spacing:28.080000px;}
.ws50{word-spacing:29.376000px;}
.ws51{word-spacing:29.520000px;}
.ws9e{word-spacing:29.808000px;}
.ws9d{word-spacing:56.880000px;}
.wsb{word-spacing:71.424000px;}
._1c{margin-left:-20.747520px;}
._b{margin-left:-12.024000px;}
._1a{margin-left:-9.246240px;}
._15{margin-left:-4.576032px;}
._2{margin-left:-3.414240px;}
._1{margin-left:-1.481760px;}
._0{width:1.457568px;}
._5{width:2.923488px;}
._d{width:4.865760px;}
._16{width:5.976000px;}
._4{width:7.080192px;}
._3{width:8.136000px;}
._17{width:9.290016px;}
._12{width:10.293984px;}
._a{width:11.365632px;}
._c{width:12.708864px;}
._e{width:14.555520px;}
._1b{width:15.562368px;}
._6{width:16.614432px;}
._10{width:19.678752px;}
._18{width:21.713760px;}
._1d{width:23.309280px;}
._13{width:25.192800px;}
._14{width:26.755488px;}
._f{width:27.767232px;}
._11{width:29.993760px;}
._8{width:559.440000px;}
._7{width:850.320000px;}
._19{width:1355.760000px;}
._9{width:1391.760000px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:7.560000px;}
.yc8{bottom:32.400000px;}
.y2{bottom:57.240000px;}
.y1{bottom:78.120000px;}
.y98{bottom:110.160000px;}
.y68{bottom:114.120000px;}
.y34{bottom:116.280000px;}
.y47{bottom:119.160000px;}
.ya4{bottom:137.160000px;}
.y96{bottom:142.560000px;}
.yac{bottom:147.240000px;}
.y97{bottom:151.560000px;}
.y67{bottom:155.520000px;}
.y103{bottom:156.960000px;}
.y33{bottom:157.680000px;}
.y46{bottom:160.560000px;}
.yfb{bottom:165.960000px;}
.y1b{bottom:172.440000px;}
.ya3{bottom:178.560000px;}
.y95{bottom:183.960000px;}
.yb7{bottom:186.120000px;}
.yab{bottom:188.640000px;}
.yf0{bottom:189.720000px;}
.y9a{bottom:192.960000px;}
.y66{bottom:196.920000px;}
.y102{bottom:198.360000px;}
.y32{bottom:199.080000px;}
.y45{bottom:201.960000px;}
.yfa{bottom:207.360000px;}
.y4a{bottom:210.960000px;}
.y1a{bottom:213.840000px;}
.y101{bottom:216.360000px;}
.ya2{bottom:219.960000px;}
.y94{bottom:225.360000px;}
.yb6{bottom:227.520000px;}
.yaa{bottom:229.680000px;}
.yef{bottom:231.120000px;}
.y65{bottom:238.320000px;}
.y31{bottom:240.480000px;}
.y54{bottom:243.360000px;}
.yf9{bottom:248.760000px;}
.y44{bottom:252.360000px;}
.y19{bottom:254.880000px;}
.y100{bottom:257.760000px;}
.ya1{bottom:261.360000px;}
.y93{bottom:266.760000px;}
.yb5{bottom:268.920000px;}
.ya9{bottom:271.080000px;}
.y64{bottom:279.720000px;}
.yee{bottom:281.520000px;}
.y30{bottom:281.880000px;}
.y53{bottom:284.760000px;}
.yf8{bottom:290.160000px;}
.y43{bottom:293.760000px;}
.y18{bottom:296.280000px;}
.yff{bottom:299.160000px;}
.ya0{bottom:302.760000px;}
.y92{bottom:308.160000px;}
.yb4{bottom:310.320000px;}
.ya8{bottom:312.480000px;}
.y63{bottom:321.120000px;}
.yed{bottom:322.920000px;}
.y52{bottom:326.160000px;}
.yf7{bottom:331.560000px;}
.y2f{bottom:332.280000px;}
.y42{bottom:335.160000px;}
.y17{bottom:337.680000px;}
.yfe{bottom:340.560000px;}
.y9f{bottom:344.160000px;}
.y91{bottom:349.560000px;}
.yb3{bottom:351.720000px;}
.ya7{bottom:358.560000px;}
.y62{bottom:362.520000px;}
.yec{bottom:365.040000px;}
.y51{bottom:367.560000px;}
.y2e{bottom:373.680000px;}
.y41{bottom:376.560000px;}
.y16{bottom:379.080000px;}
.yf6{bottom:381.960000px;}
.y9e{bottom:385.560000px;}
.y90{bottom:390.960000px;}
.yb2{bottom:393.120000px;}
.y61{bottom:403.920000px;}
.y58{bottom:408.960000px;}
.y2d{bottom:415.080000px;}
.yeb{bottom:415.800000px;}
.y40{bottom:417.960000px;}
.y15{bottom:420.480000px;}
.yf5{bottom:423.360000px;}
.y9d{bottom:426.960000px;}
.y8f{bottom:432.360000px;}
.yb1{bottom:434.520000px;}
.y57{bottom:450.360000px;}
.y60{bottom:454.320000px;}
.y2c{bottom:456.480000px;}
.yea{bottom:457.200000px;}
.y3f{bottom:459.360000px;}
.y14{bottom:461.880000px;}
.y9c{bottom:468.360000px;}
.yf4{bottom:473.760000px;}
.yb0{bottom:475.920000px;}
.y8e{bottom:482.760000px;}
.y81{bottom:491.760000px;}
.y5f{bottom:495.720000px;}
.y2b{bottom:497.880000px;}
.ye9{bottom:498.600000px;}
.y3e{bottom:500.760000px;}
.y13{bottom:503.280000px;}
.y56{bottom:509.760000px;}
.yf3{bottom:515.160000px;}
.yaf{bottom:517.320000px;}
.y8d{bottom:524.160000px;}
.ya6{bottom:533.160000px;}
.y5e{bottom:537.120000px;}
.y2a{bottom:539.280000px;}
.y3d{bottom:542.160000px;}
.y12{bottom:544.680000px;}
.ye8{bottom:549.000000px;}
.y55{bottom:551.160000px;}
.yf2{bottom:556.560000px;}
.yae{bottom:558.720000px;}
.y8c{bottom:565.560000px;}
.ya5{bottom:574.560000px;}
.y5d{bottom:578.520000px;}
.y29{bottom:580.680000px;}
.y3c{bottom:583.560000px;}
.y11{bottom:586.080000px;}
.ye7{bottom:590.400000px;}
.y49{bottom:592.560000px;}
.y8b{bottom:606.960000px;}
.yad{bottom:609.120000px;}
.ydd{bottom:615.960000px;}
.y5c{bottom:619.920000px;}
.y28{bottom:622.080000px;}
.y50{bottom:624.960000px;}
.y10{bottom:627.480000px;}
.y3b{bottom:633.960000px;}
.ye6{bottom:640.800000px;}
.yd7{bottom:644.040000px;}
.y8a{bottom:648.360000px;}
.yd9{bottom:654.120000px;}
.ydc{bottom:657.360000px;}
.y5b{bottom:661.320000px;}
.y27{bottom:663.480000px;}
.yd6{bottom:664.560000px;}
.y4f{bottom:666.360000px;}
.yf{bottom:668.880000px;}
.yd3{bottom:674.640000px;}
.y3a{bottom:675.360000px;}
.ye5{bottom:682.200000px;}
.y99{bottom:684.360000px;}
.yd5{bottom:684.720000px;}
.y89{bottom:689.760000px;}
.yd8{bottom:694.800000px;}
.ydb{bottom:698.760000px;}
.y5a{bottom:702.720000px;}
.yd4{bottom:704.880000px;}
.y4e{bottom:707.760000px;}
.y39{bottom:716.760000px;}
.ye{bottom:719.280000px;}
.ye4{bottom:723.600000px;}
.y26{bottom:725.760000px;}
.y88{bottom:731.160000px;}
.yda{bottom:740.160000px;}
.y59{bottom:744.120000px;}
.yce{bottom:745.560000px;}
.y4d{bottom:749.160000px;}
.yd2{bottom:756.000000px;}
.y38{bottom:758.160000px;}
.yd{bottom:760.680000px;}
.ye3{bottom:765.000000px;}
.ycd{bottom:766.080000px;}
.y25{bottom:767.160000px;}
.y87{bottom:772.560000px;}
.yd1{bottom:776.160000px;}
.yf1{bottom:781.560000px;}
.yca{bottom:786.240000px;}
.y80{bottom:790.560000px;}
.yd0{bottom:796.320000px;}
.y37{bottom:799.560000px;}
.yc{bottom:802.080000px;}
.ycc{bottom:806.400000px;}
.y24{bottom:808.560000px;}
.y75{bottom:810.946440px;}
.y7e{bottom:813.311760px;}
.ye2{bottom:815.400000px;}
.ycf{bottom:816.480000px;}
.yfd{bottom:822.960000px;}
.ycb{bottom:826.560000px;}
.y74{bottom:829.659240px;}
.y7d{bottom:830.583840px;}
.y7f{bottom:831.960000px;}
.y36{bottom:840.960000px;}
.y23{bottom:849.960000px;}
.y7c{bottom:850.389600px;}
.y73{bottom:851.617800px;}
.yb{bottom:852.480000px;}
.ye1{bottom:856.800000px;}
.yc9{bottom:862.200000px;}
.yfc{bottom:864.360000px;}
.yc5{bottom:872.280000px;}
.y86{bottom:873.360000px;}
.y72{bottom:875.758890px;}
.y7b{bottom:877.140630px;}
.y35{bottom:882.360000px;}
.y22{bottom:891.360000px;}
.yc4{bottom:892.440000px;}
.ya{bottom:893.880000px;}
.y71{bottom:894.471690px;}
.y7a{bottom:895.853430px;}
.ye0{bottom:898.200000px;}
.yc1{bottom:902.880000px;}
.yc3{bottom:912.960000px;}
.y85{bottom:914.760000px;}
.y79{bottom:914.930550px;}
.y70{bottom:916.430250px;}
.yc7{bottom:923.040000px;}
.y48{bottom:923.760000px;}
.y21{bottom:932.760000px;}
.yc2{bottom:933.120000px;}
.y9{bottom:935.280000px;}
.y6f{bottom:940.893720px;}
.y78{bottom:941.431830px;}
.yc6{bottom:943.200000px;}
.ydf{bottom:948.600000px;}
.y84{bottom:956.160000px;}
.y6e{bottom:957.818040px;}
.y77{bottom:960.144630px;}
.y4c{bottom:965.160000px;}
.y20{bottom:974.160000px;}
.y76{bottom:979.221750px;}
.y6d{bottom:979.776600px;}
.yc0{bottom:982.080000px;}
.y8{bottom:985.680000px;}
.y83{bottom:997.560000px;}
.ybf{bottom:1002.600000px;}
.y4b{bottom:1006.560000px;}
.y6c{bottom:1012.433250px;}
.ybc{bottom:1012.680000px;}
.y1f{bottom:1015.560000px;}
.ybe{bottom:1022.760000px;}
.y7{bottom:1036.080000px;}
.y82{bottom:1038.960000px;}
.ybd{bottom:1042.920000px;}
.y6b{bottom:1047.174120px;}
.y9b{bottom:1047.960000px;}
.y1e{bottom:1056.960000px;}
.y6{bottom:1064.884320px;}
.y6a{bottom:1070.937720px;}
.yb9{bottom:1071.360000px;}
.yb8{bottom:1089.000000px;}
.yde{bottom:1089.360000px;}
.y5{bottom:1090.800000px;}
.y69{bottom:1094.337000px;}
.y1d{bottom:1098.360000px;}
.ybb{bottom:1099.440000px;}
.y4{bottom:1116.724320px;}
.y1c{bottom:1139.760000px;}
.y3{bottom:1142.640000px;}
.h9{height:46.440000px;}
.ha{height:47.988281px;}
.h3{height:63.078750px;}
.h5{height:70.628906px;}
.h2{height:70.664062px;}
.h6{height:70.678080px;}
.h4{height:72.562500px;}
.h7{height:75.093750px;}
.h8{height:89.748281px;}
.hb{height:115.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:190.438500px;}
.w2{width:212.038500px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.920000px;}
.x12{left:58.320000px;}
.xf{left:60.840000px;}
.x2{left:84.960000px;}
.x13{left:93.600000px;}
.x5{left:95.033550px;}
.xa{left:111.600000px;}
.x7{left:119.539650px;}
.xd{left:124.200000px;}
.x3{left:127.440000px;}
.xb{left:154.440000px;}
.xc{left:181.440000px;}
.x6{left:201.672450px;}
.x14{left:220.680000px;}
.xe{left:404.280000px;}
.x15{left:412.200000px;}
.x9{left:493.948500px;}
.x8{left:534.873150px;}
.x11{left:617.040000px;}
.x16{left:624.600000px;}
.x10{left:628.560000px;}
.x1{left:798.840000px;}
.x4{left:813.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:37.120000pt;}
.ls19{letter-spacing:-1.856000pt;}
.lse{letter-spacing:-1.536000pt;}
.ls34{letter-spacing:-1.408000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.152000pt;}
.ls24{letter-spacing:-1.024000pt;}
.ls18{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.704000pt;}
.ls2d{letter-spacing:-0.647680pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.471040pt;}
.ls31{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.430080pt;}
.ls39{letter-spacing:-0.384000pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.294400pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.176640pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.064000pt;}
.ls29{letter-spacing:-0.058880pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.053760pt;}
.ls2a{letter-spacing:0.058880pt;}
.ls3b{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.430080pt;}
.ls12{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.454400pt;}
.ls38{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls3d{letter-spacing:0.582400pt;}
.ls28{letter-spacing:0.588800pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3c{letter-spacing:0.646400pt;}
.lsf{letter-spacing:1.408000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls22{letter-spacing:3.206400pt;}
.ls5{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:5.760000pt;}
.ls0{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:8.320000pt;}
.ls1d{letter-spacing:8.326400pt;}
.ls1b{letter-spacing:9.600000pt;}
.ls13{letter-spacing:10.880000pt;}
.ls23{letter-spacing:12.160000pt;}
.ls14{letter-spacing:13.440000pt;}
.ls32{letter-spacing:14.208000pt;}
.ls26{letter-spacing:14.720000pt;}
.ls4{letter-spacing:16.000000pt;}
.ls20{letter-spacing:17.280000pt;}
.ls25{letter-spacing:18.560000pt;}
.ls27{letter-spacing:19.840000pt;}
.ls21{letter-spacing:23.680000pt;}
.ls2f{letter-spacing:24.448000pt;}
.ls1f{letter-spacing:26.240000pt;}
.ls30{letter-spacing:46.208000pt;}
.ls36{letter-spacing:202.880000pt;}
.ls35{letter-spacing:263.040000pt;}
.ws36{word-spacing:-16.640000pt;}
.ws79{word-spacing:-16.576000pt;}
.ws8e{word-spacing:-16.512000pt;}
.ws38{word-spacing:-16.448000pt;}
.ws23{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8d{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws8f{word-spacing:-15.616000pt;}
.ws5{word-spacing:-15.424000pt;}
.ws90{word-spacing:-15.360000pt;}
.ws24{word-spacing:-15.296000pt;}
.ws5d{word-spacing:-15.168000pt;}
.ws37{word-spacing:-14.848000pt;}
.ws5c{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.515200pt;}
.ws39{word-spacing:-14.464000pt;}
.ws4e{word-spacing:-14.144000pt;}
.ws6c{word-spacing:-13.483520pt;}
.ws6b{word-spacing:-13.365760pt;}
.ws6a{word-spacing:-13.130240pt;}
.ws6d{word-spacing:-12.953600pt;}
.ws88{word-spacing:-4.480000pt;}
.ws7c{word-spacing:-4.224000pt;}
.ws5e{word-spacing:-3.904000pt;}
.ws4d{word-spacing:-3.328000pt;}
.wsf{word-spacing:-3.200000pt;}
.ws46{word-spacing:-2.944000pt;}
.ws49{word-spacing:-2.560000pt;}
.ws9a{word-spacing:-2.368000pt;}
.ws4f{word-spacing:-2.048000pt;}
.ws77{word-spacing:-1.943040pt;}
.ws3d{word-spacing:-1.920000pt;}
.ws58{word-spacing:-1.792000pt;}
.ws3c{word-spacing:-1.664000pt;}
.ws1f{word-spacing:-1.408000pt;}
.ws4a{word-spacing:-1.344000pt;}
.ws57{word-spacing:-1.280000pt;}
.ws5f{word-spacing:-1.088000pt;}
.ws45{word-spacing:-0.768000pt;}
.ws72{word-spacing:-0.706560pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws71{word-spacing:-0.588800pt;}
.ws95{word-spacing:-0.512000pt;}
.ws2d{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.430080pt;}
.ws31{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.256000pt;}
.wse{word-spacing:-0.128000pt;}
.ws96{word-spacing:-0.064000pt;}
.ws73{word-spacing:-0.058880pt;}
.wsa{word-spacing:-0.053760pt;}
.ws6{word-spacing:0.000000pt;}
.ws93{word-spacing:0.064000pt;}
.ws84{word-spacing:0.128000pt;}
.ws8a{word-spacing:0.192000pt;}
.ws10{word-spacing:0.256000pt;}
.ws92{word-spacing:0.384000pt;}
.ws9{word-spacing:0.430080pt;}
.ws87{word-spacing:0.448000pt;}
.ws2f{word-spacing:0.512000pt;}
.ws43{word-spacing:0.576000pt;}
.ws74{word-spacing:0.588800pt;}
.wsd{word-spacing:0.640000pt;}
.ws76{word-spacing:0.647680pt;}
.ws91{word-spacing:0.704000pt;}
.ws81{word-spacing:0.768000pt;}
.ws30{word-spacing:0.832000pt;}
.ws7{word-spacing:0.860160pt;}
.ws17{word-spacing:0.896000pt;}
.ws94{word-spacing:0.960000pt;}
.ws62{word-spacing:1.024000pt;}
.ws7e{word-spacing:1.088000pt;}
.ws75{word-spacing:1.118720pt;}
.ws13{word-spacing:1.152000pt;}
.ws60{word-spacing:1.216000pt;}
.ws16{word-spacing:1.280000pt;}
.ws89{word-spacing:1.408000pt;}
.ws82{word-spacing:1.472000pt;}
.ws1a{word-spacing:1.536000pt;}
.ws26{word-spacing:1.792000pt;}
.ws32{word-spacing:1.856000pt;}
.ws15{word-spacing:1.920000pt;}
.ws78{word-spacing:2.119680pt;}
.ws14{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.496000pt;}
.ws59{word-spacing:2.560000pt;}
.ws63{word-spacing:2.752000pt;}
.ws2a{word-spacing:3.072000pt;}
.ws2b{word-spacing:3.200000pt;}
.ws47{word-spacing:3.456000pt;}
.ws6f{word-spacing:3.776000pt;}
.ws6e{word-spacing:3.840000pt;}
.ws99{word-spacing:3.904000pt;}
.ws7b{word-spacing:4.032000pt;}
.ws1b{word-spacing:4.352000pt;}
.ws1c{word-spacing:4.480000pt;}
.ws2c{word-spacing:4.736000pt;}
.ws8c{word-spacing:5.056000pt;}
.ws67{word-spacing:5.120000pt;}
.ws80{word-spacing:5.312000pt;}
.ws44{word-spacing:5.632000pt;}
.ws54{word-spacing:5.760000pt;}
.wsc{word-spacing:5.888000pt;}
.ws42{word-spacing:6.016000pt;}
.ws66{word-spacing:6.336000pt;}
.ws85{word-spacing:6.400000pt;}
.ws12{word-spacing:6.912000pt;}
.ws11{word-spacing:7.040000pt;}
.ws1e{word-spacing:7.296000pt;}
.ws7d{word-spacing:7.616000pt;}
.ws86{word-spacing:7.680000pt;}
.ws65{word-spacing:7.872000pt;}
.ws64{word-spacing:8.192000pt;}
.ws3f{word-spacing:8.320000pt;}
.ws3e{word-spacing:8.576000pt;}
.ws83{word-spacing:9.152000pt;}
.ws3b{word-spacing:9.472000pt;}
.ws3a{word-spacing:9.600000pt;}
.ws35{word-spacing:9.856000pt;}
.ws55{word-spacing:10.752000pt;}
.ws25{word-spacing:10.880000pt;}
.ws48{word-spacing:11.136000pt;}
.ws5a{word-spacing:11.712000pt;}
.ws28{word-spacing:12.032000pt;}
.ws61{word-spacing:12.160000pt;}
.ws5b{word-spacing:12.416000pt;}
.ws8b{word-spacing:12.736000pt;}
.ws22{word-spacing:12.992000pt;}
.ws4b{word-spacing:13.312000pt;}
.ws20{word-spacing:13.440000pt;}
.ws4c{word-spacing:13.696000pt;}
.ws7f{word-spacing:14.016000pt;}
.ws21{word-spacing:14.720000pt;}
.ws69{word-spacing:14.976000pt;}
.ws18{word-spacing:15.872000pt;}
.ws40{word-spacing:16.000000pt;}
.ws19{word-spacing:16.256000pt;}
.ws52{word-spacing:17.152000pt;}
.ws53{word-spacing:17.280000pt;}
.ws41{word-spacing:17.536000pt;}
.ws7a{word-spacing:17.856000pt;}
.ws98{word-spacing:18.432000pt;}
.ws68{word-spacing:18.560000pt;}
.ws97{word-spacing:18.816000pt;}
.ws70{word-spacing:19.712000pt;}
.ws29{word-spacing:19.840000pt;}
.ws9f{word-spacing:20.992000pt;}
.ws9b{word-spacing:21.120000pt;}
.ws9c{word-spacing:22.400000pt;}
.ws56{word-spacing:23.552000pt;}
.ws33{word-spacing:23.680000pt;}
.ws34{word-spacing:24.960000pt;}
.ws50{word-spacing:26.112000pt;}
.ws51{word-spacing:26.240000pt;}
.ws9e{word-spacing:26.496000pt;}
.ws9d{word-spacing:50.560000pt;}
.wsb{word-spacing:63.488000pt;}
._1c{margin-left:-18.442240pt;}
._b{margin-left:-10.688000pt;}
._1a{margin-left:-8.218880pt;}
._15{margin-left:-4.067584pt;}
._2{margin-left:-3.034880pt;}
._1{margin-left:-1.317120pt;}
._0{width:1.295616pt;}
._5{width:2.598656pt;}
._d{width:4.325120pt;}
._16{width:5.312000pt;}
._4{width:6.293504pt;}
._3{width:7.232000pt;}
._17{width:8.257792pt;}
._12{width:9.150208pt;}
._a{width:10.102784pt;}
._c{width:11.296768pt;}
._e{width:12.938240pt;}
._1b{width:13.833216pt;}
._6{width:14.768384pt;}
._10{width:17.492224pt;}
._18{width:19.301120pt;}
._1d{width:20.719360pt;}
._13{width:22.393600pt;}
._14{width:23.782656pt;}
._f{width:24.681984pt;}
._11{width:26.661120pt;}
._8{width:497.280000pt;}
._7{width:755.840000pt;}
._19{width:1205.120000pt;}
._9{width:1237.120000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:6.720000pt;}
.yc8{bottom:28.800000pt;}
.y2{bottom:50.880000pt;}
.y1{bottom:69.440000pt;}
.y98{bottom:97.920000pt;}
.y68{bottom:101.440000pt;}
.y34{bottom:103.360000pt;}
.y47{bottom:105.920000pt;}
.ya4{bottom:121.920000pt;}
.y96{bottom:126.720000pt;}
.yac{bottom:130.880000pt;}
.y97{bottom:134.720000pt;}
.y67{bottom:138.240000pt;}
.y103{bottom:139.520000pt;}
.y33{bottom:140.160000pt;}
.y46{bottom:142.720000pt;}
.yfb{bottom:147.520000pt;}
.y1b{bottom:153.280000pt;}
.ya3{bottom:158.720000pt;}
.y95{bottom:163.520000pt;}
.yb7{bottom:165.440000pt;}
.yab{bottom:167.680000pt;}
.yf0{bottom:168.640000pt;}
.y9a{bottom:171.520000pt;}
.y66{bottom:175.040000pt;}
.y102{bottom:176.320000pt;}
.y32{bottom:176.960000pt;}
.y45{bottom:179.520000pt;}
.yfa{bottom:184.320000pt;}
.y4a{bottom:187.520000pt;}
.y1a{bottom:190.080000pt;}
.y101{bottom:192.320000pt;}
.ya2{bottom:195.520000pt;}
.y94{bottom:200.320000pt;}
.yb6{bottom:202.240000pt;}
.yaa{bottom:204.160000pt;}
.yef{bottom:205.440000pt;}
.y65{bottom:211.840000pt;}
.y31{bottom:213.760000pt;}
.y54{bottom:216.320000pt;}
.yf9{bottom:221.120000pt;}
.y44{bottom:224.320000pt;}
.y19{bottom:226.560000pt;}
.y100{bottom:229.120000pt;}
.ya1{bottom:232.320000pt;}
.y93{bottom:237.120000pt;}
.yb5{bottom:239.040000pt;}
.ya9{bottom:240.960000pt;}
.y64{bottom:248.640000pt;}
.yee{bottom:250.240000pt;}
.y30{bottom:250.560000pt;}
.y53{bottom:253.120000pt;}
.yf8{bottom:257.920000pt;}
.y43{bottom:261.120000pt;}
.y18{bottom:263.360000pt;}
.yff{bottom:265.920000pt;}
.ya0{bottom:269.120000pt;}
.y92{bottom:273.920000pt;}
.yb4{bottom:275.840000pt;}
.ya8{bottom:277.760000pt;}
.y63{bottom:285.440000pt;}
.yed{bottom:287.040000pt;}
.y52{bottom:289.920000pt;}
.yf7{bottom:294.720000pt;}
.y2f{bottom:295.360000pt;}
.y42{bottom:297.920000pt;}
.y17{bottom:300.160000pt;}
.yfe{bottom:302.720000pt;}
.y9f{bottom:305.920000pt;}
.y91{bottom:310.720000pt;}
.yb3{bottom:312.640000pt;}
.ya7{bottom:318.720000pt;}
.y62{bottom:322.240000pt;}
.yec{bottom:324.480000pt;}
.y51{bottom:326.720000pt;}
.y2e{bottom:332.160000pt;}
.y41{bottom:334.720000pt;}
.y16{bottom:336.960000pt;}
.yf6{bottom:339.520000pt;}
.y9e{bottom:342.720000pt;}
.y90{bottom:347.520000pt;}
.yb2{bottom:349.440000pt;}
.y61{bottom:359.040000pt;}
.y58{bottom:363.520000pt;}
.y2d{bottom:368.960000pt;}
.yeb{bottom:369.600000pt;}
.y40{bottom:371.520000pt;}
.y15{bottom:373.760000pt;}
.yf5{bottom:376.320000pt;}
.y9d{bottom:379.520000pt;}
.y8f{bottom:384.320000pt;}
.yb1{bottom:386.240000pt;}
.y57{bottom:400.320000pt;}
.y60{bottom:403.840000pt;}
.y2c{bottom:405.760000pt;}
.yea{bottom:406.400000pt;}
.y3f{bottom:408.320000pt;}
.y14{bottom:410.560000pt;}
.y9c{bottom:416.320000pt;}
.yf4{bottom:421.120000pt;}
.yb0{bottom:423.040000pt;}
.y8e{bottom:429.120000pt;}
.y81{bottom:437.120000pt;}
.y5f{bottom:440.640000pt;}
.y2b{bottom:442.560000pt;}
.ye9{bottom:443.200000pt;}
.y3e{bottom:445.120000pt;}
.y13{bottom:447.360000pt;}
.y56{bottom:453.120000pt;}
.yf3{bottom:457.920000pt;}
.yaf{bottom:459.840000pt;}
.y8d{bottom:465.920000pt;}
.ya6{bottom:473.920000pt;}
.y5e{bottom:477.440000pt;}
.y2a{bottom:479.360000pt;}
.y3d{bottom:481.920000pt;}
.y12{bottom:484.160000pt;}
.ye8{bottom:488.000000pt;}
.y55{bottom:489.920000pt;}
.yf2{bottom:494.720000pt;}
.yae{bottom:496.640000pt;}
.y8c{bottom:502.720000pt;}
.ya5{bottom:510.720000pt;}
.y5d{bottom:514.240000pt;}
.y29{bottom:516.160000pt;}
.y3c{bottom:518.720000pt;}
.y11{bottom:520.960000pt;}
.ye7{bottom:524.800000pt;}
.y49{bottom:526.720000pt;}
.y8b{bottom:539.520000pt;}
.yad{bottom:541.440000pt;}
.ydd{bottom:547.520000pt;}
.y5c{bottom:551.040000pt;}
.y28{bottom:552.960000pt;}
.y50{bottom:555.520000pt;}
.y10{bottom:557.760000pt;}
.y3b{bottom:563.520000pt;}
.ye6{bottom:569.600000pt;}
.yd7{bottom:572.480000pt;}
.y8a{bottom:576.320000pt;}
.yd9{bottom:581.440000pt;}
.ydc{bottom:584.320000pt;}
.y5b{bottom:587.840000pt;}
.y27{bottom:589.760000pt;}
.yd6{bottom:590.720000pt;}
.y4f{bottom:592.320000pt;}
.yf{bottom:594.560000pt;}
.yd3{bottom:599.680000pt;}
.y3a{bottom:600.320000pt;}
.ye5{bottom:606.400000pt;}
.y99{bottom:608.320000pt;}
.yd5{bottom:608.640000pt;}
.y89{bottom:613.120000pt;}
.yd8{bottom:617.600000pt;}
.ydb{bottom:621.120000pt;}
.y5a{bottom:624.640000pt;}
.yd4{bottom:626.560000pt;}
.y4e{bottom:629.120000pt;}
.y39{bottom:637.120000pt;}
.ye{bottom:639.360000pt;}
.ye4{bottom:643.200000pt;}
.y26{bottom:645.120000pt;}
.y88{bottom:649.920000pt;}
.yda{bottom:657.920000pt;}
.y59{bottom:661.440000pt;}
.yce{bottom:662.720000pt;}
.y4d{bottom:665.920000pt;}
.yd2{bottom:672.000000pt;}
.y38{bottom:673.920000pt;}
.yd{bottom:676.160000pt;}
.ye3{bottom:680.000000pt;}
.ycd{bottom:680.960000pt;}
.y25{bottom:681.920000pt;}
.y87{bottom:686.720000pt;}
.yd1{bottom:689.920000pt;}
.yf1{bottom:694.720000pt;}
.yca{bottom:698.880000pt;}
.y80{bottom:702.720000pt;}
.yd0{bottom:707.840000pt;}
.y37{bottom:710.720000pt;}
.yc{bottom:712.960000pt;}
.ycc{bottom:716.800000pt;}
.y24{bottom:718.720000pt;}
.y75{bottom:720.841280pt;}
.y7e{bottom:722.943787pt;}
.ye2{bottom:724.800000pt;}
.ycf{bottom:725.760000pt;}
.yfd{bottom:731.520000pt;}
.ycb{bottom:734.720000pt;}
.y74{bottom:737.474880pt;}
.y7d{bottom:738.296747pt;}
.y7f{bottom:739.520000pt;}
.y36{bottom:747.520000pt;}
.y23{bottom:755.520000pt;}
.y7c{bottom:755.901867pt;}
.y73{bottom:756.993600pt;}
.yb{bottom:757.760000pt;}
.ye1{bottom:761.600000pt;}
.yc9{bottom:766.400000pt;}
.yfc{bottom:768.320000pt;}
.yc5{bottom:775.360000pt;}
.y86{bottom:776.320000pt;}
.y72{bottom:778.452347pt;}
.y7b{bottom:779.680560pt;}
.y35{bottom:784.320000pt;}
.y22{bottom:792.320000pt;}
.yc4{bottom:793.280000pt;}
.ya{bottom:794.560000pt;}
.y71{bottom:795.085947pt;}
.y7a{bottom:796.314160pt;}
.ye0{bottom:798.400000pt;}
.yc1{bottom:802.560000pt;}
.yc3{bottom:811.520000pt;}
.y85{bottom:813.120000pt;}
.y79{bottom:813.271600pt;}
.y70{bottom:814.604667pt;}
.yc7{bottom:820.480000pt;}
.y48{bottom:821.120000pt;}
.y21{bottom:829.120000pt;}
.yc2{bottom:829.440000pt;}
.y9{bottom:831.360000pt;}
.y6f{bottom:836.349973pt;}
.y78{bottom:836.828293pt;}
.yc6{bottom:838.400000pt;}
.ydf{bottom:843.200000pt;}
.y84{bottom:849.920000pt;}
.y6e{bottom:851.393813pt;}
.y77{bottom:853.461893pt;}
.y4c{bottom:857.920000pt;}
.y20{bottom:865.920000pt;}
.y76{bottom:870.419333pt;}
.y6d{bottom:870.912533pt;}
.yc0{bottom:872.960000pt;}
.y8{bottom:876.160000pt;}
.y83{bottom:886.720000pt;}
.ybf{bottom:891.200000pt;}
.y4b{bottom:894.720000pt;}
.y6c{bottom:899.940667pt;}
.ybc{bottom:900.160000pt;}
.y1f{bottom:902.720000pt;}
.ybe{bottom:909.120000pt;}
.y7{bottom:920.960000pt;}
.y82{bottom:923.520000pt;}
.ybd{bottom:927.040000pt;}
.y6b{bottom:930.821440pt;}
.y9b{bottom:931.520000pt;}
.y1e{bottom:939.520000pt;}
.y6{bottom:946.563840pt;}
.y6a{bottom:951.944640pt;}
.yb9{bottom:952.320000pt;}
.yb8{bottom:968.000000pt;}
.yde{bottom:968.320000pt;}
.y5{bottom:969.600000pt;}
.y69{bottom:972.744000pt;}
.y1d{bottom:976.320000pt;}
.ybb{bottom:977.280000pt;}
.y4{bottom:992.643840pt;}
.y1c{bottom:1013.120000pt;}
.y3{bottom:1015.680000pt;}
.h9{height:41.280000pt;}
.ha{height:42.656250pt;}
.h3{height:56.070000pt;}
.h5{height:62.781250pt;}
.h2{height:62.812500pt;}
.h6{height:62.824960pt;}
.h4{height:64.500000pt;}
.h7{height:66.750000pt;}
.h8{height:79.776250pt;}
.hb{height:103.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:169.278667pt;}
.w2{width:188.478667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:7.040000pt;}
.x12{left:51.840000pt;}
.xf{left:54.080000pt;}
.x2{left:75.520000pt;}
.x13{left:83.200000pt;}
.x5{left:84.474267pt;}
.xa{left:99.200000pt;}
.x7{left:106.257467pt;}
.xd{left:110.400000pt;}
.x3{left:113.280000pt;}
.xb{left:137.280000pt;}
.xc{left:161.280000pt;}
.x6{left:179.264400pt;}
.x14{left:196.160000pt;}
.xe{left:359.360000pt;}
.x15{left:366.400000pt;}
.x9{left:439.065333pt;}
.x8{left:475.442800pt;}
.x11{left:548.480000pt;}
.x16{left:555.200000pt;}
.x10{left:558.720000pt;}
.x1{left:710.080000pt;}
.x4{left:723.520000pt;}
}




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