
    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_93f58239958dfdf8226eaae4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3c136bfb0825802c0e307f7d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4b6d7dfd81633bbf8082d8d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5478ee5ad13d7f86bf79f6f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913574;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_60e29d66baaeab2c08fd4e0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104980;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_32bdf0477aab59b52cc34c67.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_242739647649cd269f0063de.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;}
.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;}
.ls14{letter-spacing:-0.480960px;}
.ls16{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.420840px;}
.ls37{letter-spacing:-0.395280px;}
.lsd{letter-spacing:-0.384480px;}
.ls26{letter-spacing:-0.329400px;}
.ls21{letter-spacing:-0.300600px;}
.ls36{letter-spacing:-0.263520px;}
.ls22{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.192240px;}
.ls7{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.120240px;}
.ls9{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.096120px;}
.ls10{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.060120px;}
.ls8{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.036072px;}
.ls1e{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.060120px;}
.ls25{letter-spacing:0.065880px;}
.lsb{letter-spacing:0.083880px;}
.ls0{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.115200px;}
.ls2{letter-spacing:0.120240px;}
.ls31{letter-spacing:0.122400px;}
.ls3c{letter-spacing:0.126252px;}
.ls2f{letter-spacing:0.129600px;}
.ls2e{letter-spacing:0.136800px;}
.ls1f{letter-spacing:0.140040px;}
.ls4{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.180360px;}
.lse{letter-spacing:0.192240px;}
.lsa{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.464400px;}
.ls2c{letter-spacing:0.482400px;}
.ls27{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.864000px;}
.ls28{letter-spacing:1.224000px;}
.ls3b{letter-spacing:1.262520px;}
.ls3d{letter-spacing:1.623240px;}
.ls2a{letter-spacing:3.024000px;}
.ls24{letter-spacing:3.722400px;}
.ls2d{letter-spacing:3.736800px;}
.ls1a{letter-spacing:3.744000px;}
.ls18{letter-spacing:4.104000px;}
.ls23{letter-spacing:4.464000px;}
.ls5{letter-spacing:6.624000px;}
.ls29{letter-spacing:6.984000px;}
.ls33{letter-spacing:7.034040px;}
.ls19{letter-spacing:8.071200px;}
.ls20{letter-spacing:8.486640px;}
.ls1c{letter-spacing:8.784000px;}
.ls2b{letter-spacing:9.122400px;}
.ls6{letter-spacing:9.144000px;}
.ls38{letter-spacing:9.496800px;}
.ls32{letter-spacing:13.166640px;}
.ls1b{letter-spacing:13.809600px;}
.ls30{letter-spacing:15.624000px;}
.ls34{letter-spacing:40.104000px;}
.ls35{letter-spacing:45.727308px;}
.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;}
}
.wsa1{word-spacing:-65.880000px;}
.ws3{word-spacing:-26.529120px;}
.ws8{word-spacing:-20.160000px;}
.ws43{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.944000px;}
.ws9{word-spacing:-19.872000px;}
.ws89{word-spacing:-19.800000px;}
.ws94{word-spacing:-18.380520px;}
.ws53{word-spacing:-16.833600px;}
.ws7{word-spacing:-16.773480px;}
.ws6{word-spacing:-16.713360px;}
.ws5{word-spacing:-16.653240px;}
.ws77{word-spacing:-16.593120px;}
.ws54{word-spacing:-16.412760px;}
.ws2{word-spacing:-15.282000px;}
.ws0{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.850000px;}
.ws8d{word-spacing:-4.824000px;}
.wsb2{word-spacing:-4.677480px;}
.ws47{word-spacing:-4.464000px;}
.wsaf{word-spacing:-4.348080px;}
.ws6f{word-spacing:-4.104000px;}
.ws9d{word-spacing:-3.952800px;}
.ws19{word-spacing:-3.787560px;}
.wsb4{word-spacing:-3.744000px;}
.ws9c{word-spacing:-3.623400px;}
.ws5a{word-spacing:-3.426840px;}
.ws35{word-spacing:-3.384000px;}
.wsbe{word-spacing:-3.306600px;}
.ws48{word-spacing:-3.024000px;}
.wsa4{word-spacing:-2.898720px;}
.ws27{word-spacing:-2.664000px;}
.ws4c{word-spacing:-2.304000px;}
.ws7b{word-spacing:-1.944000px;}
.ws63{word-spacing:-1.800000px;}
.wsa6{word-spacing:-1.778760px;}
.ws8e{word-spacing:-1.656000px;}
.ws26{word-spacing:-1.584000px;}
.wsb1{word-spacing:-1.449360px;}
.ws29{word-spacing:-1.224000px;}
.wsae{word-spacing:-1.054080px;}
.ws64{word-spacing:-0.864000px;}
.ws9a{word-spacing:-0.724680px;}
.ws12{word-spacing:-0.541080px;}
.ws32{word-spacing:-0.504000px;}
.ws7d{word-spacing:-0.432000px;}
.ws69{word-spacing:-0.395280px;}
.wse{word-spacing:-0.384480px;}
.ws10{word-spacing:-0.288360px;}
.wsb5{word-spacing:-0.240480px;}
.ws14{word-spacing:-0.180360px;}
.ws37{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.096120px;}
.wsa2{word-spacing:-0.065880px;}
.ws1e{word-spacing:-0.060120px;}
.wsa{word-spacing:0.000000px;}
.ws5d{word-spacing:0.060120px;}
.ws39{word-spacing:0.072000px;}
.ws16{word-spacing:0.120240px;}
.ws50{word-spacing:0.144000px;}
.ws1d{word-spacing:0.180360px;}
.wsc{word-spacing:0.216000px;}
.ws9b{word-spacing:0.263520px;}
.wsb{word-spacing:0.270000px;}
.ws96{word-spacing:0.288000px;}
.wsb6{word-spacing:0.300600px;}
.ws6e{word-spacing:0.329400px;}
.ws1f{word-spacing:0.360720px;}
.wsf{word-spacing:0.384480px;}
.wsa0{word-spacing:0.395280px;}
.ws15{word-spacing:0.420840px;}
.ws2c{word-spacing:0.432000px;}
.ws20{word-spacing:0.480960px;}
.ws7f{word-spacing:0.541080px;}
.ws71{word-spacing:0.576000px;}
.ws3c{word-spacing:0.936000px;}
.wsa9{word-spacing:1.054080px;}
.wsb8{word-spacing:1.262520px;}
.ws76{word-spacing:1.296000px;}
.wsab{word-spacing:1.449360px;}
.wsb9{word-spacing:1.623240px;}
.ws2e{word-spacing:1.656000px;}
.wsbb{word-spacing:1.743480px;}
.wsa8{word-spacing:1.778760px;}
.wsba{word-spacing:1.803600px;}
.ws55{word-spacing:1.983960px;}
.ws2a{word-spacing:2.016000px;}
.ws8a{word-spacing:2.088000px;}
.ws62{word-spacing:2.376000px;}
.ws52{word-spacing:2.736000px;}
.ws85{word-spacing:2.880000px;}
.ws98{word-spacing:2.898720px;}
.ws59{word-spacing:3.066120px;}
.ws78{word-spacing:3.096000px;}
.ws75{word-spacing:3.456000px;}
.wsa7{word-spacing:3.623400px;}
.ws3e{word-spacing:3.816000px;}
.ws6c{word-spacing:3.952800px;}
.ws3a{word-spacing:4.176000px;}
.wsad{word-spacing:4.282200px;}
.ws60{word-spacing:4.536000px;}
.wsb3{word-spacing:4.608000px;}
.wsaa{word-spacing:4.677480px;}
.ws81{word-spacing:4.896000px;}
.ws51{word-spacing:5.256000px;}
.ws99{word-spacing:5.402160px;}
.ws82{word-spacing:5.616000px;}
.ws83{word-spacing:5.760000px;}
.ws28{word-spacing:5.976000px;}
.ws9e{word-spacing:6.126840px;}
.ws70{word-spacing:6.336000px;}
.ws11{word-spacing:6.613200px;}
.ws23{word-spacing:6.696000px;}
.ws6d{word-spacing:6.851520px;}
.ws93{word-spacing:6.973920px;}
.ws4d{word-spacing:7.056000px;}
.ws92{word-spacing:7.094160px;}
.ws1c{word-spacing:7.334640px;}
.ws68{word-spacing:7.416000px;}
.wsbd{word-spacing:7.695360px;}
.ws3d{word-spacing:7.776000px;}
.wsbc{word-spacing:7.875720px;}
.ws49{word-spacing:8.136000px;}
.ws5e{word-spacing:8.416800px;}
.ws34{word-spacing:8.496000px;}
.ws5c{word-spacing:8.597160px;}
.ws1a{word-spacing:8.777520px;}
.ws4e{word-spacing:8.856000px;}
.ws1b{word-spacing:9.138240px;}
.ws25{word-spacing:9.216000px;}
.ws7a{word-spacing:9.288000px;}
.ws45{word-spacing:9.576000px;}
.ws73{word-spacing:9.936000px;}
.ws7e{word-spacing:10.220400px;}
.ws4f{word-spacing:10.296000px;}
.ws6a{word-spacing:10.409040px;}
.ws8f{word-spacing:11.016000px;}
.wsb7{word-spacing:11.302560px;}
.ws80{word-spacing:11.376000px;}
.ws41{word-spacing:11.663280px;}
.ws84{word-spacing:11.736000px;}
.ws40{word-spacing:12.024000px;}
.ws88{word-spacing:12.096000px;}
.ws3f{word-spacing:12.204360px;}
.ws8c{word-spacing:12.456000px;}
.wsac{word-spacing:12.583080px;}
.ws90{word-spacing:13.106160px;}
.ws33{word-spacing:13.176000px;}
.ws91{word-spacing:13.286520px;}
.ws65{word-spacing:13.536000px;}
.ws74{word-spacing:13.608000px;}
.ws44{word-spacing:13.896000px;}
.ws7c{word-spacing:14.256000px;}
.ws5f{word-spacing:14.549040px;}
.ws46{word-spacing:14.616000px;}
.ws95{word-spacing:14.976000px;}
.ws24{word-spacing:15.336000px;}
.ws36{word-spacing:15.696000px;}
.ws38{word-spacing:15.768000px;}
.ws2f{word-spacing:16.056000px;}
.ws2b{word-spacing:16.416000px;}
.ws3b{word-spacing:16.776000px;}
.ws30{word-spacing:17.496000px;}
.ws42{word-spacing:17.795520px;}
.ws6b{word-spacing:18.380520px;}
.ws2d{word-spacing:18.936000px;}
.ws22{word-spacing:19.296000px;}
.wsa3{word-spacing:20.016000px;}
.ws67{word-spacing:20.304000px;}
.ws13{word-spacing:20.320560px;}
.ws66{word-spacing:20.376000px;}
.ws61{word-spacing:21.096000px;}
.ws87{word-spacing:22.536000px;}
.ws18{word-spacing:25.009920px;}
.ws5b{word-spacing:25.370640px;}
.ws21{word-spacing:25.416000px;}
.ws31{word-spacing:27.936000px;}
.ws79{word-spacing:28.296000px;}
.ws58{word-spacing:28.977840px;}
.ws72{word-spacing:31.896000px;}
.ws86{word-spacing:32.976000px;}
.ws17{word-spacing:33.667200px;}
.wsb0{word-spacing:39.923280px;}
.ws97{word-spacing:40.176000px;}
.wsa5{word-spacing:41.256000px;}
.ws8b{word-spacing:41.976000px;}
.ws9f{word-spacing:45.325440px;}
.ws4a{word-spacing:50.256000px;}
.ws4b{word-spacing:50.616000px;}
.ws56{word-spacing:59.939640px;}
.ws57{word-spacing:93.065760px;}
._2{margin-left:-8.992800px;}
._11{margin-left:-6.522120px;}
._6{margin-left:-4.354200px;}
._f{margin-left:-3.164400px;}
._3{margin-left:-2.084400px;}
._1{margin-left:-1.057320px;}
._0{width:1.042200px;}
._9{width:2.088000px;}
._5{width:3.709800px;}
._c{width:5.813280px;}
._b{width:7.369920px;}
._7{width:8.640000px;}
._e{width:10.627560px;}
._10{width:13.507560px;}
._4{width:15.241320px;}
._d{width:32.112000px;}
._8{width:50.619600px;}
._a{width:843.984000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.yb1{bottom:-10.620000px;}
.y77{bottom:-5.580000px;}
.ya2{bottom:-3.330000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.790000px;}
.y71{bottom:35.910000px;}
.y3{bottom:52.650000px;}
.y2{bottom:57.060000px;}
.y9e{bottom:65.610000px;}
.y74{bottom:66.780000px;}
.y57{bottom:71.460000px;}
.y1{bottom:76.860000px;}
.y6c{bottom:104.850000px;}
.yaa{bottom:110.070000px;}
.y9c{bottom:120.600000px;}
.y89{bottom:121.410000px;}
.y43{bottom:128.070000px;}
.y55{bottom:128.160000px;}
.yfb{bottom:129.750570px;}
.y86{bottom:135.900000px;}
.yd8{bottom:135.939690px;}
.y73{bottom:144.450000px;}
.yfa{bottom:147.035070px;}
.y9b{bottom:147.600000px;}
.y88{bottom:148.410000px;}
.ya9{bottom:150.660000px;}
.y30{bottom:151.290000px;}
.y42{bottom:155.070000px;}
.y54{bottom:155.160000px;}
.y76{bottom:156.060000px;}
.y69{bottom:156.600000px;}
.yb0{bottom:157.225500px;}
.y85{bottom:162.900000px;}
.yd7{bottom:162.934020px;}
.yb8{bottom:162.939690px;}
.yf9{bottom:164.319570px;}
.y67{bottom:173.880000px;}
.yaf{bottom:174.510000px;}
.y9a{bottom:174.600000px;}
.y87{bottom:175.410000px;}
.y2f{bottom:178.290000px;}
.yf8{bottom:181.513890px;}
.y53{bottom:182.160000px;}
.y84{bottom:189.900000px;}
.yc4{bottom:189.917010px;}
.yd6{bottom:189.928350px;}
.yb7{bottom:189.934020px;}
.y66{bottom:191.160000px;}
.yae{bottom:191.686680px;}
.y75{bottom:193.950000px;}
.yf7{bottom:198.798390px;}
.y99{bottom:201.600000px;}
.y2e{bottom:205.290000px;}
.ya8{bottom:208.170000px;}
.yad{bottom:208.971180px;}
.y52{bottom:209.160000px;}
.yf6{bottom:216.082890px;}
.y83{bottom:216.900000px;}
.yc3{bottom:216.911340px;}
.yd5{bottom:216.922680px;}
.yb6{bottom:216.928350px;}
.yac{bottom:226.255680px;}
.y98{bottom:228.600000px;}
.ya7{bottom:230.490000px;}
.y2d{bottom:232.290000px;}
.yf5{bottom:233.277210px;}
.y51{bottom:236.160000px;}
.yab{bottom:243.450000px;}
.y82{bottom:243.900000px;}
.yc2{bottom:243.905670px;}
.yd4{bottom:243.917010px;}
.yb5{bottom:243.922680px;}
.yf4{bottom:250.561710px;}
.y97{bottom:255.600000px;}
.ya6{bottom:257.490000px;}
.y2c{bottom:259.290000px;}
.y50{bottom:263.160000px;}
.yf3{bottom:267.846210px;}
.y81{bottom:270.900000px;}
.yd3{bottom:270.911340px;}
.yb4{bottom:270.917010px;}
.y96{bottom:282.600000px;}
.ya5{bottom:284.490000px;}
.y2b{bottom:286.290000px;}
.yf2{bottom:287.280000px;}
.y4f{bottom:290.160000px;}
.y80{bottom:297.900000px;}
.yd2{bottom:297.905670px;}
.yb3{bottom:297.911340px;}
.y95{bottom:309.600000px;}
.y2a{bottom:313.290000px;}
.yf1{bottom:314.280000px;}
.y4e{bottom:317.160000px;}
.y7f{bottom:324.900000px;}
.yb2{bottom:324.905670px;}
.y94{bottom:336.600000px;}
.y29{bottom:340.290000px;}
.yf0{bottom:341.280000px;}
.y4d{bottom:344.160000px;}
.y7e{bottom:351.900000px;}
.y93{bottom:363.600000px;}
.y28{bottom:367.290000px;}
.yef{bottom:368.280000px;}
.y4c{bottom:371.160000px;}
.y7d{bottom:378.900000px;}
.y27{bottom:388.890000px;}
.y92{bottom:390.600000px;}
.yee{bottom:393.660000px;}
.y4b{bottom:398.160000px;}
.ya4{bottom:405.900000px;}
.y7c{bottom:405.928350px;}
.y26{bottom:413.550000px;}
.yed{bottom:413.658900px;}
.y91{bottom:417.600000px;}
.y4a{bottom:425.160000px;}
.yec{bottom:430.943400px;}
.ya3{bottom:432.900000px;}
.y7b{bottom:432.922680px;}
.y25{bottom:434.250000px;}
.y64{bottom:437.580000px;}
.y90{bottom:444.600000px;}
.yeb{bottom:448.227900px;}
.y49{bottom:452.160000px;}
.y24{bottom:454.262400px;}
.y63{bottom:459.900000px;}
.y7a{bottom:459.917010px;}
.yea{bottom:465.422220px;}
.y23{bottom:471.456720px;}
.y8f{bottom:471.600000px;}
.y48{bottom:479.160000px;}
.ye9{bottom:482.706720px;}
.y62{bottom:486.900000px;}
.y79{bottom:486.911340px;}
.yd1{bottom:486.973710px;}
.y22{bottom:488.741220px;}
.y8e{bottom:498.600000px;}
.ye8{bottom:499.991220px;}
.y21{bottom:506.025720px;}
.y47{bottom:506.160000px;}
.y56{bottom:510.030000px;}
.y61{bottom:513.900000px;}
.y78{bottom:513.905670px;}
.yc1{bottom:513.951030px;}
.yd0{bottom:513.968040px;}
.ye7{bottom:517.185540px;}
.y20{bottom:523.220040px;}
.y8d{bottom:525.600000px;}
.y5a{bottom:529.740000px;}
.y46{bottom:533.160000px;}
.ye6{bottom:534.470040px;}
.y1f{bottom:540.504540px;}
.y60{bottom:540.900000px;}
.yc0{bottom:540.945360px;}
.ycf{bottom:540.962370px;}
.y9d{bottom:542.610000px;}
.y59{bottom:547.015500px;}
.ye5{bottom:551.754540px;}
.y8c{bottom:552.600000px;}
.ya1{bottom:556.470000px;}
.y1e{bottom:557.698860px;}
.y45{bottom:560.160000px;}
.y58{bottom:564.300000px;}
.y5f{bottom:567.900000px;}
.ybf{bottom:567.939690px;}
.yce{bottom:567.956700px;}
.ye4{bottom:568.948860px;}
.ya0{bottom:573.745680px;}
.y1d{bottom:574.983360px;}
.y8b{bottom:579.600000px;}
.ye3{bottom:586.233360px;}
.y44{bottom:587.160000px;}
.y9f{bottom:590.940000px;}
.y1c{bottom:592.267860px;}
.y5e{bottom:594.900000px;}
.ybe{bottom:594.934020px;}
.ycd{bottom:594.951030px;}
.ye2{bottom:603.427680px;}
.y8a{bottom:606.600000px;}
.y11a{bottom:608.714640px;}
.y1b{bottom:609.462180px;}
.ye1{bottom:620.712180px;}
.y5d{bottom:621.900000px;}
.ybd{bottom:621.928350px;}
.ycc{bottom:621.945360px;}
.y1a{bottom:626.746680px;}
.ye0{bottom:637.996680px;}
.y119{bottom:642.111300px;}
.y19{bottom:644.031180px;}
.y5c{bottom:648.900000px;}
.ybc{bottom:648.922680px;}
.ycb{bottom:648.939690px;}
.ydf{bottom:655.191000px;}
.y118{bottom:659.305620px;}
.y18{bottom:661.225500px;}
.yde{bottom:672.475500px;}
.y5b{bottom:675.900000px;}
.ybb{bottom:675.917010px;}
.yca{bottom:675.934020px;}
.y117{bottom:676.590120px;}
.y17{bottom:678.510000px;}
.ydd{bottom:689.760000px;}
.y116{bottom:693.874620px;}
.y16{bottom:696.420000px;}
.y41{bottom:702.900000px;}
.yba{bottom:702.911340px;}
.yc9{bottom:702.928350px;}
.ydc{bottom:707.580000px;}
.y115{bottom:711.068940px;}
.y15{bottom:717.120000px;}
.y114{bottom:728.353440px;}
.y40{bottom:729.900000px;}
.yb9{bottom:729.905670px;}
.yc8{bottom:729.922680px;}
.y14{bottom:737.820000px;}
.y113{bottom:745.637940px;}
.y3f{bottom:756.900000px;}
.yc7{bottom:756.917010px;}
.y13{bottom:758.520000px;}
.y112{bottom:762.832260px;}
.y12{bottom:775.440000px;}
.y111{bottom:780.116760px;}
.y3e{bottom:783.900000px;}
.yc6{bottom:783.911340px;}
.y110{bottom:797.401260px;}
.y11{bottom:800.010000px;}
.y3d{bottom:810.900000px;}
.yc5{bottom:810.905670px;}
.y10f{bottom:814.595580px;}
.y10{bottom:820.710000px;}
.y65{bottom:822.240000px;}
.y10e{bottom:831.880080px;}
.y3c{bottom:837.900000px;}
.y72{bottom:840.960000px;}
.yf{bottom:842.748120px;}
.y10d{bottom:849.164580px;}
.y70{bottom:858.141180px;}
.y3b{bottom:864.900000px;}
.y10c{bottom:866.358900px;}
.ye{bottom:870.382620px;}
.y6f{bottom:875.335500px;}
.y10b{bottom:883.643400px;}
.y3a{bottom:891.900000px;}
.y6e{bottom:892.620000px;}
.yd{bottom:898.017120px;}
.y10a{bottom:900.927900px;}
.y6d{bottom:909.900000px;}
.y109{bottom:918.122220px;}
.y39{bottom:918.900000px;}
.yc{bottom:925.555500px;}
.y108{bottom:935.406720px;}
.y6b{bottom:944.365500px;}
.y38{bottom:945.900000px;}
.y107{bottom:952.691220px;}
.yb{bottom:953.190000px;}
.y6a{bottom:961.650000px;}
.y106{bottom:969.885540px;}
.y37{bottom:972.900000px;}
.y68{bottom:978.840000px;}
.ya{bottom:979.380000px;}
.y105{bottom:987.170040px;}
.y36{bottom:999.900000px;}
.y104{bottom:1004.364360px;}
.y9{bottom:1012.860000px;}
.y103{bottom:1021.648860px;}
.y35{bottom:1026.900000px;}
.y8{bottom:1036.350000px;}
.y102{bottom:1038.933360px;}
.y34{bottom:1053.900000px;}
.ydb{bottom:1053.917010px;}
.y101{bottom:1056.127680px;}
.y7{bottom:1057.050000px;}
.y100{bottom:1073.412180px;}
.y6{bottom:1077.750000px;}
.y33{bottom:1080.900000px;}
.yda{bottom:1080.911340px;}
.yff{bottom:1090.696680px;}
.y5{bottom:1094.670000px;}
.yfe{bottom:1107.891000px;}
.y32{bottom:1107.900000px;}
.yd9{bottom:1107.905670px;}
.yfd{bottom:1125.175500px;}
.y31{bottom:1134.900000px;}
.yfc{bottom:1142.460000px;}
.h4{height:15.390000px;}
.h14{height:43.769004px;}
.h3{height:47.988281px;}
.h2{height:48.410156px;}
.h6{height:52.417969px;}
.hd{height:53.779219px;}
.ha{height:53.896641px;}
.h15{height:54.181041px;}
.h13{height:58.931719px;}
.hf{height:59.060391px;}
.h10{height:64.335938px;}
.h5{height:64.546875px;}
.h8{height:69.977988px;}
.h7{height:75.197109px;}
.h11{height:79.650000px;}
.he{height:80.910000px;}
.hb{height:85.590000px;}
.h9{height:86.170078px;}
.h12{height:124.200000px;}
.hc{height:205.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:37.710000px;}
.w4{width:210.870000px;}
.w6{width:466.200000px;}
.w5{width:578.160000px;}
.w3{width:680.220000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:10.800000px;}
.xe{left:96.840000px;}
.x5{left:106.380000px;}
.x1{left:111.240000px;}
.xa{left:117.630000px;}
.x10{left:123.120000px;}
.xd{left:130.860000px;}
.x11{left:133.920000px;}
.x7{left:148.950000px;}
.x8{left:159.570000px;}
.xf{left:169.380000px;}
.x12{left:201.420000px;}
.x13{left:212.130000px;}
.x2{left:281.880000px;}
.x4{left:361.890000px;}
.x3{left:430.380000px;}
.xb{left:586.170000px;}
.xc{left:596.880000px;}
.x6{left:786.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.427520pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.374080pt;}
.ls37{letter-spacing:-0.351360pt;}
.lsd{letter-spacing:-0.341760pt;}
.ls26{letter-spacing:-0.292800pt;}
.ls21{letter-spacing:-0.267200pt;}
.ls36{letter-spacing:-0.234240pt;}
.ls22{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.170880pt;}
.ls7{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.106880pt;}
.ls9{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.085440pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.053440pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.032064pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.053440pt;}
.ls25{letter-spacing:0.058560pt;}
.lsb{letter-spacing:0.074560pt;}
.ls0{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.102400pt;}
.ls2{letter-spacing:0.106880pt;}
.ls31{letter-spacing:0.108800pt;}
.ls3c{letter-spacing:0.112224pt;}
.ls2f{letter-spacing:0.115200pt;}
.ls2e{letter-spacing:0.121600pt;}
.ls1f{letter-spacing:0.124480pt;}
.ls4{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.160320pt;}
.lse{letter-spacing:0.170880pt;}
.lsa{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.412800pt;}
.ls2c{letter-spacing:0.428800pt;}
.ls27{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls28{letter-spacing:1.088000pt;}
.ls3b{letter-spacing:1.122240pt;}
.ls3d{letter-spacing:1.442880pt;}
.ls2a{letter-spacing:2.688000pt;}
.ls24{letter-spacing:3.308800pt;}
.ls2d{letter-spacing:3.321600pt;}
.ls1a{letter-spacing:3.328000pt;}
.ls18{letter-spacing:3.648000pt;}
.ls23{letter-spacing:3.968000pt;}
.ls5{letter-spacing:5.888000pt;}
.ls29{letter-spacing:6.208000pt;}
.ls33{letter-spacing:6.252480pt;}
.ls19{letter-spacing:7.174400pt;}
.ls20{letter-spacing:7.543680pt;}
.ls1c{letter-spacing:7.808000pt;}
.ls2b{letter-spacing:8.108800pt;}
.ls6{letter-spacing:8.128000pt;}
.ls38{letter-spacing:8.441600pt;}
.ls32{letter-spacing:11.703680pt;}
.ls1b{letter-spacing:12.275200pt;}
.ls30{letter-spacing:13.888000pt;}
.ls34{letter-spacing:35.648000pt;}
.ls35{letter-spacing:40.646496pt;}
.wsa1{word-spacing:-58.560000pt;}
.ws3{word-spacing:-23.581440pt;}
.ws8{word-spacing:-17.920000pt;}
.ws43{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws9{word-spacing:-17.664000pt;}
.ws89{word-spacing:-17.600000pt;}
.ws94{word-spacing:-16.338240pt;}
.ws53{word-spacing:-14.963200pt;}
.ws7{word-spacing:-14.909760pt;}
.ws6{word-spacing:-14.856320pt;}
.ws5{word-spacing:-14.802880pt;}
.ws77{word-spacing:-14.749440pt;}
.ws54{word-spacing:-14.589120pt;}
.ws2{word-spacing:-13.584000pt;}
.ws0{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.200000pt;}
.ws8d{word-spacing:-4.288000pt;}
.wsb2{word-spacing:-4.157760pt;}
.ws47{word-spacing:-3.968000pt;}
.wsaf{word-spacing:-3.864960pt;}
.ws6f{word-spacing:-3.648000pt;}
.ws9d{word-spacing:-3.513600pt;}
.ws19{word-spacing:-3.366720pt;}
.wsb4{word-spacing:-3.328000pt;}
.ws9c{word-spacing:-3.220800pt;}
.ws5a{word-spacing:-3.046080pt;}
.ws35{word-spacing:-3.008000pt;}
.wsbe{word-spacing:-2.939200pt;}
.ws48{word-spacing:-2.688000pt;}
.wsa4{word-spacing:-2.576640pt;}
.ws27{word-spacing:-2.368000pt;}
.ws4c{word-spacing:-2.048000pt;}
.ws7b{word-spacing:-1.728000pt;}
.ws63{word-spacing:-1.600000pt;}
.wsa6{word-spacing:-1.581120pt;}
.ws8e{word-spacing:-1.472000pt;}
.ws26{word-spacing:-1.408000pt;}
.wsb1{word-spacing:-1.288320pt;}
.ws29{word-spacing:-1.088000pt;}
.wsae{word-spacing:-0.936960pt;}
.ws64{word-spacing:-0.768000pt;}
.ws9a{word-spacing:-0.644160pt;}
.ws12{word-spacing:-0.480960pt;}
.ws32{word-spacing:-0.448000pt;}
.ws7d{word-spacing:-0.384000pt;}
.ws69{word-spacing:-0.351360pt;}
.wse{word-spacing:-0.341760pt;}
.ws10{word-spacing:-0.256320pt;}
.wsb5{word-spacing:-0.213760pt;}
.ws14{word-spacing:-0.160320pt;}
.ws37{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.085440pt;}
.wsa2{word-spacing:-0.058560pt;}
.ws1e{word-spacing:-0.053440pt;}
.wsa{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.053440pt;}
.ws39{word-spacing:0.064000pt;}
.ws16{word-spacing:0.106880pt;}
.ws50{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.160320pt;}
.wsc{word-spacing:0.192000pt;}
.ws9b{word-spacing:0.234240pt;}
.wsb{word-spacing:0.240000pt;}
.ws96{word-spacing:0.256000pt;}
.wsb6{word-spacing:0.267200pt;}
.ws6e{word-spacing:0.292800pt;}
.ws1f{word-spacing:0.320640pt;}
.wsf{word-spacing:0.341760pt;}
.wsa0{word-spacing:0.351360pt;}
.ws15{word-spacing:0.374080pt;}
.ws2c{word-spacing:0.384000pt;}
.ws20{word-spacing:0.427520pt;}
.ws7f{word-spacing:0.480960pt;}
.ws71{word-spacing:0.512000pt;}
.ws3c{word-spacing:0.832000pt;}
.wsa9{word-spacing:0.936960pt;}
.wsb8{word-spacing:1.122240pt;}
.ws76{word-spacing:1.152000pt;}
.wsab{word-spacing:1.288320pt;}
.wsb9{word-spacing:1.442880pt;}
.ws2e{word-spacing:1.472000pt;}
.wsbb{word-spacing:1.549760pt;}
.wsa8{word-spacing:1.581120pt;}
.wsba{word-spacing:1.603200pt;}
.ws55{word-spacing:1.763520pt;}
.ws2a{word-spacing:1.792000pt;}
.ws8a{word-spacing:1.856000pt;}
.ws62{word-spacing:2.112000pt;}
.ws52{word-spacing:2.432000pt;}
.ws85{word-spacing:2.560000pt;}
.ws98{word-spacing:2.576640pt;}
.ws59{word-spacing:2.725440pt;}
.ws78{word-spacing:2.752000pt;}
.ws75{word-spacing:3.072000pt;}
.wsa7{word-spacing:3.220800pt;}
.ws3e{word-spacing:3.392000pt;}
.ws6c{word-spacing:3.513600pt;}
.ws3a{word-spacing:3.712000pt;}
.wsad{word-spacing:3.806400pt;}
.ws60{word-spacing:4.032000pt;}
.wsb3{word-spacing:4.096000pt;}
.wsaa{word-spacing:4.157760pt;}
.ws81{word-spacing:4.352000pt;}
.ws51{word-spacing:4.672000pt;}
.ws99{word-spacing:4.801920pt;}
.ws82{word-spacing:4.992000pt;}
.ws83{word-spacing:5.120000pt;}
.ws28{word-spacing:5.312000pt;}
.ws9e{word-spacing:5.446080pt;}
.ws70{word-spacing:5.632000pt;}
.ws11{word-spacing:5.878400pt;}
.ws23{word-spacing:5.952000pt;}
.ws6d{word-spacing:6.090240pt;}
.ws93{word-spacing:6.199040pt;}
.ws4d{word-spacing:6.272000pt;}
.ws92{word-spacing:6.305920pt;}
.ws1c{word-spacing:6.519680pt;}
.ws68{word-spacing:6.592000pt;}
.wsbd{word-spacing:6.840320pt;}
.ws3d{word-spacing:6.912000pt;}
.wsbc{word-spacing:7.000640pt;}
.ws49{word-spacing:7.232000pt;}
.ws5e{word-spacing:7.481600pt;}
.ws34{word-spacing:7.552000pt;}
.ws5c{word-spacing:7.641920pt;}
.ws1a{word-spacing:7.802240pt;}
.ws4e{word-spacing:7.872000pt;}
.ws1b{word-spacing:8.122880pt;}
.ws25{word-spacing:8.192000pt;}
.ws7a{word-spacing:8.256000pt;}
.ws45{word-spacing:8.512000pt;}
.ws73{word-spacing:8.832000pt;}
.ws7e{word-spacing:9.084800pt;}
.ws4f{word-spacing:9.152000pt;}
.ws6a{word-spacing:9.252480pt;}
.ws8f{word-spacing:9.792000pt;}
.wsb7{word-spacing:10.046720pt;}
.ws80{word-spacing:10.112000pt;}
.ws41{word-spacing:10.367360pt;}
.ws84{word-spacing:10.432000pt;}
.ws40{word-spacing:10.688000pt;}
.ws88{word-spacing:10.752000pt;}
.ws3f{word-spacing:10.848320pt;}
.ws8c{word-spacing:11.072000pt;}
.wsac{word-spacing:11.184960pt;}
.ws90{word-spacing:11.649920pt;}
.ws33{word-spacing:11.712000pt;}
.ws91{word-spacing:11.810240pt;}
.ws65{word-spacing:12.032000pt;}
.ws74{word-spacing:12.096000pt;}
.ws44{word-spacing:12.352000pt;}
.ws7c{word-spacing:12.672000pt;}
.ws5f{word-spacing:12.932480pt;}
.ws46{word-spacing:12.992000pt;}
.ws95{word-spacing:13.312000pt;}
.ws24{word-spacing:13.632000pt;}
.ws36{word-spacing:13.952000pt;}
.ws38{word-spacing:14.016000pt;}
.ws2f{word-spacing:14.272000pt;}
.ws2b{word-spacing:14.592000pt;}
.ws3b{word-spacing:14.912000pt;}
.ws30{word-spacing:15.552000pt;}
.ws42{word-spacing:15.818240pt;}
.ws6b{word-spacing:16.338240pt;}
.ws2d{word-spacing:16.832000pt;}
.ws22{word-spacing:17.152000pt;}
.wsa3{word-spacing:17.792000pt;}
.ws67{word-spacing:18.048000pt;}
.ws13{word-spacing:18.062720pt;}
.ws66{word-spacing:18.112000pt;}
.ws61{word-spacing:18.752000pt;}
.ws87{word-spacing:20.032000pt;}
.ws18{word-spacing:22.231040pt;}
.ws5b{word-spacing:22.551680pt;}
.ws21{word-spacing:22.592000pt;}
.ws31{word-spacing:24.832000pt;}
.ws79{word-spacing:25.152000pt;}
.ws58{word-spacing:25.758080pt;}
.ws72{word-spacing:28.352000pt;}
.ws86{word-spacing:29.312000pt;}
.ws17{word-spacing:29.926400pt;}
.wsb0{word-spacing:35.487360pt;}
.ws97{word-spacing:35.712000pt;}
.wsa5{word-spacing:36.672000pt;}
.ws8b{word-spacing:37.312000pt;}
.ws9f{word-spacing:40.289280pt;}
.ws4a{word-spacing:44.672000pt;}
.ws4b{word-spacing:44.992000pt;}
.ws56{word-spacing:53.279680pt;}
.ws57{word-spacing:82.725120pt;}
._2{margin-left:-7.993600pt;}
._11{margin-left:-5.797440pt;}
._6{margin-left:-3.870400pt;}
._f{margin-left:-2.812800pt;}
._3{margin-left:-1.852800pt;}
._1{margin-left:-0.939840pt;}
._0{width:0.926400pt;}
._9{width:1.856000pt;}
._5{width:3.297600pt;}
._c{width:5.167360pt;}
._b{width:6.551040pt;}
._7{width:7.680000pt;}
._e{width:9.446720pt;}
._10{width:12.006720pt;}
._4{width:13.547840pt;}
._d{width:28.544000pt;}
._8{width:44.995200pt;}
._a{width:750.208000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.yb1{bottom:-9.440000pt;}
.y77{bottom:-4.960000pt;}
.ya2{bottom:-2.960000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.480000pt;}
.y71{bottom:31.920000pt;}
.y3{bottom:46.800000pt;}
.y2{bottom:50.720000pt;}
.y9e{bottom:58.320000pt;}
.y74{bottom:59.360000pt;}
.y57{bottom:63.520000pt;}
.y1{bottom:68.320000pt;}
.y6c{bottom:93.200000pt;}
.yaa{bottom:97.840000pt;}
.y9c{bottom:107.200000pt;}
.y89{bottom:107.920000pt;}
.y43{bottom:113.840000pt;}
.y55{bottom:113.920000pt;}
.yfb{bottom:115.333840pt;}
.y86{bottom:120.800000pt;}
.yd8{bottom:120.835280pt;}
.y73{bottom:128.400000pt;}
.yfa{bottom:130.697840pt;}
.y9b{bottom:131.200000pt;}
.y88{bottom:131.920000pt;}
.ya9{bottom:133.920000pt;}
.y30{bottom:134.480000pt;}
.y42{bottom:137.840000pt;}
.y54{bottom:137.920000pt;}
.y76{bottom:138.720000pt;}
.y69{bottom:139.200000pt;}
.yb0{bottom:139.756000pt;}
.y85{bottom:144.800000pt;}
.yd7{bottom:144.830240pt;}
.yb8{bottom:144.835280pt;}
.yf9{bottom:146.061840pt;}
.y67{bottom:154.560000pt;}
.yaf{bottom:155.120000pt;}
.y9a{bottom:155.200000pt;}
.y87{bottom:155.920000pt;}
.y2f{bottom:158.480000pt;}
.yf8{bottom:161.345680pt;}
.y53{bottom:161.920000pt;}
.y84{bottom:168.800000pt;}
.yc4{bottom:168.815120pt;}
.yd6{bottom:168.825200pt;}
.yb7{bottom:168.830240pt;}
.y66{bottom:169.920000pt;}
.yae{bottom:170.388160pt;}
.y75{bottom:172.400000pt;}
.yf7{bottom:176.709680pt;}
.y99{bottom:179.200000pt;}
.y2e{bottom:182.480000pt;}
.ya8{bottom:185.040000pt;}
.yad{bottom:185.752160pt;}
.y52{bottom:185.920000pt;}
.yf6{bottom:192.073680pt;}
.y83{bottom:192.800000pt;}
.yc3{bottom:192.810080pt;}
.yd5{bottom:192.820160pt;}
.yb6{bottom:192.825200pt;}
.yac{bottom:201.116160pt;}
.y98{bottom:203.200000pt;}
.ya7{bottom:204.880000pt;}
.y2d{bottom:206.480000pt;}
.yf5{bottom:207.357520pt;}
.y51{bottom:209.920000pt;}
.yab{bottom:216.400000pt;}
.y82{bottom:216.800000pt;}
.yc2{bottom:216.805040pt;}
.yd4{bottom:216.815120pt;}
.yb5{bottom:216.820160pt;}
.yf4{bottom:222.721520pt;}
.y97{bottom:227.200000pt;}
.ya6{bottom:228.880000pt;}
.y2c{bottom:230.480000pt;}
.y50{bottom:233.920000pt;}
.yf3{bottom:238.085520pt;}
.y81{bottom:240.800000pt;}
.yd3{bottom:240.810080pt;}
.yb4{bottom:240.815120pt;}
.y96{bottom:251.200000pt;}
.ya5{bottom:252.880000pt;}
.y2b{bottom:254.480000pt;}
.yf2{bottom:255.360000pt;}
.y4f{bottom:257.920000pt;}
.y80{bottom:264.800000pt;}
.yd2{bottom:264.805040pt;}
.yb3{bottom:264.810080pt;}
.y95{bottom:275.200000pt;}
.y2a{bottom:278.480000pt;}
.yf1{bottom:279.360000pt;}
.y4e{bottom:281.920000pt;}
.y7f{bottom:288.800000pt;}
.yb2{bottom:288.805040pt;}
.y94{bottom:299.200000pt;}
.y29{bottom:302.480000pt;}
.yf0{bottom:303.360000pt;}
.y4d{bottom:305.920000pt;}
.y7e{bottom:312.800000pt;}
.y93{bottom:323.200000pt;}
.y28{bottom:326.480000pt;}
.yef{bottom:327.360000pt;}
.y4c{bottom:329.920000pt;}
.y7d{bottom:336.800000pt;}
.y27{bottom:345.680000pt;}
.y92{bottom:347.200000pt;}
.yee{bottom:349.920000pt;}
.y4b{bottom:353.920000pt;}
.ya4{bottom:360.800000pt;}
.y7c{bottom:360.825200pt;}
.y26{bottom:367.600000pt;}
.yed{bottom:367.696800pt;}
.y91{bottom:371.200000pt;}
.y4a{bottom:377.920000pt;}
.yec{bottom:383.060800pt;}
.ya3{bottom:384.800000pt;}
.y7b{bottom:384.820160pt;}
.y25{bottom:386.000000pt;}
.y64{bottom:388.960000pt;}
.y90{bottom:395.200000pt;}
.yeb{bottom:398.424800pt;}
.y49{bottom:401.920000pt;}
.y24{bottom:403.788800pt;}
.y63{bottom:408.800000pt;}
.y7a{bottom:408.815120pt;}
.yea{bottom:413.708640pt;}
.y23{bottom:419.072640pt;}
.y8f{bottom:419.200000pt;}
.y48{bottom:425.920000pt;}
.ye9{bottom:429.072640pt;}
.y62{bottom:432.800000pt;}
.y79{bottom:432.810080pt;}
.yd1{bottom:432.865520pt;}
.y22{bottom:434.436640pt;}
.y8e{bottom:443.200000pt;}
.ye8{bottom:444.436640pt;}
.y21{bottom:449.800640pt;}
.y47{bottom:449.920000pt;}
.y56{bottom:453.360000pt;}
.y61{bottom:456.800000pt;}
.y78{bottom:456.805040pt;}
.yc1{bottom:456.845360pt;}
.yd0{bottom:456.860480pt;}
.ye7{bottom:459.720480pt;}
.y20{bottom:465.084480pt;}
.y8d{bottom:467.200000pt;}
.y5a{bottom:470.880000pt;}
.y46{bottom:473.920000pt;}
.ye6{bottom:475.084480pt;}
.y1f{bottom:480.448480pt;}
.y60{bottom:480.800000pt;}
.yc0{bottom:480.840320pt;}
.ycf{bottom:480.855440pt;}
.y9d{bottom:482.320000pt;}
.y59{bottom:486.236000pt;}
.ye5{bottom:490.448480pt;}
.y8c{bottom:491.200000pt;}
.ya1{bottom:494.640000pt;}
.y1e{bottom:495.732320pt;}
.y45{bottom:497.920000pt;}
.y58{bottom:501.600000pt;}
.y5f{bottom:504.800000pt;}
.ybf{bottom:504.835280pt;}
.yce{bottom:504.850400pt;}
.ye4{bottom:505.732320pt;}
.ya0{bottom:509.996160pt;}
.y1d{bottom:511.096320pt;}
.y8b{bottom:515.200000pt;}
.ye3{bottom:521.096320pt;}
.y44{bottom:521.920000pt;}
.y9f{bottom:525.280000pt;}
.y1c{bottom:526.460320pt;}
.y5e{bottom:528.800000pt;}
.ybe{bottom:528.830240pt;}
.ycd{bottom:528.845360pt;}
.ye2{bottom:536.380160pt;}
.y8a{bottom:539.200000pt;}
.y11a{bottom:541.079680pt;}
.y1b{bottom:541.744160pt;}
.ye1{bottom:551.744160pt;}
.y5d{bottom:552.800000pt;}
.ybd{bottom:552.825200pt;}
.ycc{bottom:552.840320pt;}
.y1a{bottom:557.108160pt;}
.ye0{bottom:567.108160pt;}
.y119{bottom:570.765600pt;}
.y19{bottom:572.472160pt;}
.y5c{bottom:576.800000pt;}
.ybc{bottom:576.820160pt;}
.ycb{bottom:576.835280pt;}
.ydf{bottom:582.392000pt;}
.y118{bottom:586.049440pt;}
.y18{bottom:587.756000pt;}
.yde{bottom:597.756000pt;}
.y5b{bottom:600.800000pt;}
.ybb{bottom:600.815120pt;}
.yca{bottom:600.830240pt;}
.y117{bottom:601.413440pt;}
.y17{bottom:603.120000pt;}
.ydd{bottom:613.120000pt;}
.y116{bottom:616.777440pt;}
.y16{bottom:619.040000pt;}
.y41{bottom:624.800000pt;}
.yba{bottom:624.810080pt;}
.yc9{bottom:624.825200pt;}
.ydc{bottom:628.960000pt;}
.y115{bottom:632.061280pt;}
.y15{bottom:637.440000pt;}
.y114{bottom:647.425280pt;}
.y40{bottom:648.800000pt;}
.yb9{bottom:648.805040pt;}
.yc8{bottom:648.820160pt;}
.y14{bottom:655.840000pt;}
.y113{bottom:662.789280pt;}
.y3f{bottom:672.800000pt;}
.yc7{bottom:672.815120pt;}
.y13{bottom:674.240000pt;}
.y112{bottom:678.073120pt;}
.y12{bottom:689.280000pt;}
.y111{bottom:693.437120pt;}
.y3e{bottom:696.800000pt;}
.yc6{bottom:696.810080pt;}
.y110{bottom:708.801120pt;}
.y11{bottom:711.120000pt;}
.y3d{bottom:720.800000pt;}
.yc5{bottom:720.805040pt;}
.y10f{bottom:724.084960pt;}
.y10{bottom:729.520000pt;}
.y65{bottom:730.880000pt;}
.y10e{bottom:739.448960pt;}
.y3c{bottom:744.800000pt;}
.y72{bottom:747.520000pt;}
.yf{bottom:749.109440pt;}
.y10d{bottom:754.812960pt;}
.y70{bottom:762.792160pt;}
.y3b{bottom:768.800000pt;}
.y10c{bottom:770.096800pt;}
.ye{bottom:773.673440pt;}
.y6f{bottom:778.076000pt;}
.y10b{bottom:785.460800pt;}
.y3a{bottom:792.800000pt;}
.y6e{bottom:793.440000pt;}
.yd{bottom:798.237440pt;}
.y10a{bottom:800.824800pt;}
.y6d{bottom:808.800000pt;}
.y109{bottom:816.108640pt;}
.y39{bottom:816.800000pt;}
.yc{bottom:822.716000pt;}
.y108{bottom:831.472640pt;}
.y6b{bottom:839.436000pt;}
.y38{bottom:840.800000pt;}
.y107{bottom:846.836640pt;}
.yb{bottom:847.280000pt;}
.y6a{bottom:854.800000pt;}
.y106{bottom:862.120480pt;}
.y37{bottom:864.800000pt;}
.y68{bottom:870.080000pt;}
.ya{bottom:870.560000pt;}
.y105{bottom:877.484480pt;}
.y36{bottom:888.800000pt;}
.y104{bottom:892.768320pt;}
.y9{bottom:900.320000pt;}
.y103{bottom:908.132320pt;}
.y35{bottom:912.800000pt;}
.y8{bottom:921.200000pt;}
.y102{bottom:923.496320pt;}
.y34{bottom:936.800000pt;}
.ydb{bottom:936.815120pt;}
.y101{bottom:938.780160pt;}
.y7{bottom:939.600000pt;}
.y100{bottom:954.144160pt;}
.y6{bottom:958.000000pt;}
.y33{bottom:960.800000pt;}
.yda{bottom:960.810080pt;}
.yff{bottom:969.508160pt;}
.y5{bottom:973.040000pt;}
.yfe{bottom:984.792000pt;}
.y32{bottom:984.800000pt;}
.yd9{bottom:984.805040pt;}
.yfd{bottom:1000.156000pt;}
.y31{bottom:1008.800000pt;}
.yfc{bottom:1015.520000pt;}
.h4{height:13.680000pt;}
.h14{height:38.905781pt;}
.h3{height:42.656250pt;}
.h2{height:43.031250pt;}
.h6{height:46.593750pt;}
.hd{height:47.803750pt;}
.ha{height:47.908125pt;}
.h15{height:48.160925pt;}
.h13{height:52.383750pt;}
.hf{height:52.498125pt;}
.h10{height:57.187500pt;}
.h5{height:57.375000pt;}
.h8{height:62.202656pt;}
.h7{height:66.841875pt;}
.h11{height:70.800000pt;}
.he{height:71.920000pt;}
.hb{height:76.080000pt;}
.h9{height:76.595625pt;}
.h12{height:110.400000pt;}
.hc{height:182.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:33.520000pt;}
.w4{width:187.440000pt;}
.w6{width:414.400000pt;}
.w5{width:513.920000pt;}
.w3{width:604.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:9.600000pt;}
.xe{left:86.080000pt;}
.x5{left:94.560000pt;}
.x1{left:98.880000pt;}
.xa{left:104.560000pt;}
.x10{left:109.440000pt;}
.xd{left:116.320000pt;}
.x11{left:119.040000pt;}
.x7{left:132.400000pt;}
.x8{left:141.840000pt;}
.xf{left:150.560000pt;}
.x12{left:179.040000pt;}
.x13{left:188.560000pt;}
.x2{left:250.560000pt;}
.x4{left:321.680000pt;}
.x3{left:382.560000pt;}
.xb{left:521.040000pt;}
.xc{left:530.560000pt;}
.x6{left:699.200000pt;}
}




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