
    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_f75553ab06aab0854d140d13.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166000;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_ac21b343ab50b98248ff32b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146000;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_c4c3456a85469ead31dd1905.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_163706d85206471bfc90df9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163000;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_9b3032202dd95c6809edee5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9bad1a4085c9555e3fecd846.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.192000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-3.600000px;}
.ls4{letter-spacing:-1.728000px;}
.ls9{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.864000px;}
.ls1{letter-spacing:-0.624000px;}
.ls2{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.162000px;}
.ls5{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006600px;}
.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;}
}
.wsd{word-spacing:-49.680000px;}
.wsf{word-spacing:-15.984000px;}
.ws22{word-spacing:-15.876000px;}
.ws1{word-spacing:-15.012000px;}
.ws21{word-spacing:-14.208000px;}
.ws6a{word-spacing:-13.344000px;}
.wse{word-spacing:-12.480000px;}
.ws32{word-spacing:-9.612000px;}
.ws31{word-spacing:-6.588000px;}
.ws28{word-spacing:-6.264000px;}
.ws2a{word-spacing:-4.914000px;}
.ws2c{word-spacing:-4.806000px;}
.ws2e{word-spacing:-4.698000px;}
.ws27{word-spacing:-4.536000px;}
.ws30{word-spacing:-4.104000px;}
.ws2f{word-spacing:-3.942000px;}
.ws9b{word-spacing:-3.294000px;}
.ws114{word-spacing:-3.186000px;}
.wsa1{word-spacing:-3.132000px;}
.ws79{word-spacing:-3.078000px;}
.ws73{word-spacing:-2.970000px;}
.wsc9{word-spacing:-2.916000px;}
.wsfc{word-spacing:-2.862000px;}
.ws29{word-spacing:-2.808000px;}
.wsbf{word-spacing:-2.754000px;}
.wsb3{word-spacing:-2.700000px;}
.ws99{word-spacing:-2.646000px;}
.wsda{word-spacing:-2.538000px;}
.ws78{word-spacing:-2.484000px;}
.ws89{word-spacing:-2.430000px;}
.ws20{word-spacing:-2.376000px;}
.wse2{word-spacing:-2.322000px;}
.wsc5{word-spacing:-2.268000px;}
.ws66{word-spacing:-2.256000px;}
.wscb{word-spacing:-2.214000px;}
.wsff{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.106000px;}
.ws107{word-spacing:-2.052000px;}
.ws7d{word-spacing:-1.944000px;}
.ws72{word-spacing:-1.836000px;}
.ws88{word-spacing:-1.782000px;}
.ws23{word-spacing:-1.728000px;}
.wsd8{word-spacing:-1.674000px;}
.ws17{word-spacing:-1.620000px;}
.ws25{word-spacing:-1.566000px;}
.wsdf{word-spacing:-1.512000px;}
.ws24{word-spacing:-1.458000px;}
.ws74{word-spacing:-1.404000px;}
.ws7a{word-spacing:-1.350000px;}
.ws59{word-spacing:-1.296000px;}
.ws6{word-spacing:-1.248000px;}
.ws9a{word-spacing:-1.242000px;}
.ws3b{word-spacing:-1.188000px;}
.ws52{word-spacing:-1.134000px;}
.wsce{word-spacing:-1.080000px;}
.ws7e{word-spacing:-0.972000px;}
.ws67{word-spacing:-0.912000px;}
.ws41{word-spacing:-0.864000px;}
.wsa6{word-spacing:-0.810000px;}
.ws69{word-spacing:-0.768000px;}
.ws43{word-spacing:-0.756000px;}
.ws5e{word-spacing:-0.702000px;}
.wsc2{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.594000px;}
.wsa5{word-spacing:-0.540000px;}
.ws2b{word-spacing:-0.486000px;}
.ws5{word-spacing:-0.432000px;}
.ws9f{word-spacing:-0.378000px;}
.ws51{word-spacing:-0.324000px;}
.ws68{word-spacing:-0.288000px;}
.wse7{word-spacing:-0.270000px;}
.wsb5{word-spacing:-0.216000px;}
.ws85{word-spacing:-0.162000px;}
.wsd9{word-spacing:-0.108000px;}
.ws2d{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws91{word-spacing:0.054000px;}
.ws7b{word-spacing:0.162000px;}
.wsdb{word-spacing:0.216000px;}
.ws8b{word-spacing:0.270000px;}
.wsdd{word-spacing:0.324000px;}
.ws77{word-spacing:0.378000px;}
.ws50{word-spacing:0.432000px;}
.wsca{word-spacing:0.486000px;}
.ws64{word-spacing:0.540000px;}
.wsc8{word-spacing:0.648000px;}
.ws10d{word-spacing:0.702000px;}
.ws6f{word-spacing:0.756000px;}
.ws8{word-spacing:0.768000px;}
.wse1{word-spacing:0.810000px;}
.ws86{word-spacing:0.864000px;}
.ws106{word-spacing:0.918000px;}
.ws87{word-spacing:0.972000px;}
.wsd0{word-spacing:1.026000px;}
.wscc{word-spacing:1.080000px;}
.wsa0{word-spacing:1.134000px;}
.ws7{word-spacing:1.152000px;}
.wsc4{word-spacing:1.188000px;}
.wsd7{word-spacing:1.242000px;}
.ws4c{word-spacing:1.296000px;}
.ws42{word-spacing:1.350000px;}
.ws5b{word-spacing:1.404000px;}
.ws7f{word-spacing:1.458000px;}
.ws4e{word-spacing:1.512000px;}
.ws62{word-spacing:1.566000px;}
.ws9d{word-spacing:1.620000px;}
.ws96{word-spacing:1.674000px;}
.ws36{word-spacing:1.728000px;}
.ws6b{word-spacing:1.782000px;}
.wsb8{word-spacing:1.836000px;}
.ws45{word-spacing:1.890000px;}
.ws75{word-spacing:1.944000px;}
.ws4f{word-spacing:1.998000px;}
.ws40{word-spacing:2.052000px;}
.ws58{word-spacing:2.106000px;}
.ws65{word-spacing:2.160000px;}
.ws3e{word-spacing:2.214000px;}
.ws7c{word-spacing:2.268000px;}
.wsa3{word-spacing:2.322000px;}
.wsf8{word-spacing:2.376000px;}
.wsea{word-spacing:2.430000px;}
.ws97{word-spacing:2.484000px;}
.ws57{word-spacing:2.538000px;}
.ws110{word-spacing:2.592000px;}
.ws1d{word-spacing:2.646000px;}
.ws101{word-spacing:2.700000px;}
.ws104{word-spacing:2.754000px;}
.ws38{word-spacing:2.862000px;}
.ws82{word-spacing:2.916000px;}
.ws47{word-spacing:3.024000px;}
.wsfd{word-spacing:3.078000px;}
.ws54{word-spacing:3.132000px;}
.ws48{word-spacing:3.186000px;}
.ws5f{word-spacing:3.240000px;}
.ws90{word-spacing:3.294000px;}
.ws8a{word-spacing:3.348000px;}
.wsa4{word-spacing:3.456000px;}
.wsc0{word-spacing:3.510000px;}
.wsc1{word-spacing:3.564000px;}
.wsa7{word-spacing:3.672000px;}
.ws9e{word-spacing:3.726000px;}
.wse5{word-spacing:3.780000px;}
.wsae{word-spacing:3.834000px;}
.wsb{word-spacing:3.840000px;}
.ws5c{word-spacing:3.888000px;}
.ws9c{word-spacing:3.942000px;}
.ws6c{word-spacing:3.996000px;}
.ws3a{word-spacing:4.050000px;}
.ws81{word-spacing:4.104000px;}
.ws12{word-spacing:4.158000px;}
.wsd5{word-spacing:4.212000px;}
.ws37{word-spacing:4.266000px;}
.ws6e{word-spacing:4.320000px;}
.ws1e{word-spacing:4.374000px;}
.ws39{word-spacing:4.428000px;}
.wsf5{word-spacing:4.482000px;}
.wse0{word-spacing:4.536000px;}
.ws60{word-spacing:4.590000px;}
.wsde{word-spacing:4.644000px;}
.ws80{word-spacing:4.698000px;}
.wsc7{word-spacing:4.752000px;}
.ws10b{word-spacing:4.806000px;}
.ws56{word-spacing:4.860000px;}
.ws33{word-spacing:4.914000px;}
.wsf6{word-spacing:5.076000px;}
.wsd2{word-spacing:5.130000px;}
.wsc{word-spacing:5.136000px;}
.wsf7{word-spacing:5.184000px;}
.wsd4{word-spacing:5.238000px;}
.ws19{word-spacing:5.292000px;}
.wscd{word-spacing:5.346000px;}
.ws83{word-spacing:5.400000px;}
.wsf0{word-spacing:5.454000px;}
.wsd1{word-spacing:5.508000px;}
.wsed{word-spacing:5.562000px;}
.ws98{word-spacing:5.616000px;}
.ws10e{word-spacing:5.670000px;}
.ws94{word-spacing:5.724000px;}
.ws35{word-spacing:5.778000px;}
.ws93{word-spacing:5.832000px;}
.wsc3{word-spacing:5.886000px;}
.wsbb{word-spacing:5.940000px;}
.wsef{word-spacing:5.994000px;}
.ws14{word-spacing:6.048000px;}
.ws53{word-spacing:6.156000px;}
.wsf9{word-spacing:6.210000px;}
.wsa2{word-spacing:6.264000px;}
.wsa8{word-spacing:6.318000px;}
.ws8f{word-spacing:6.372000px;}
.ws70{word-spacing:6.426000px;}
.wsfe{word-spacing:6.480000px;}
.ws1a{word-spacing:6.534000px;}
.ws49{word-spacing:6.642000px;}
.ws4b{word-spacing:6.696000px;}
.ws44{word-spacing:6.750000px;}
.ws4a{word-spacing:6.858000px;}
.ws2{word-spacing:6.864000px;}
.ws1c{word-spacing:6.912000px;}
.ws4d{word-spacing:6.966000px;}
.wsb4{word-spacing:7.020000px;}
.ws102{word-spacing:7.074000px;}
.wsee{word-spacing:7.128000px;}
.wsa9{word-spacing:7.182000px;}
.ws9{word-spacing:7.248000px;}
.ws116{word-spacing:7.344000px;}
.wse8{word-spacing:7.398000px;}
.ws61{word-spacing:7.452000px;}
.ws113{word-spacing:7.506000px;}
.ws11{word-spacing:7.560000px;}
.ws63{word-spacing:7.614000px;}
.wsba{word-spacing:7.668000px;}
.ws15{word-spacing:7.722000px;}
.ws109{word-spacing:7.776000px;}
.ws92{word-spacing:7.830000px;}
.wsaa{word-spacing:7.884000px;}
.wse4{word-spacing:7.938000px;}
.ws76{word-spacing:7.992000px;}
.ws3f{word-spacing:8.046000px;}
.ws11b{word-spacing:8.100000px;}
.ws71{word-spacing:8.154000px;}
.wse6{word-spacing:8.208000px;}
.ws46{word-spacing:8.262000px;}
.ws55{word-spacing:8.316000px;}
.ws105{word-spacing:8.370000px;}
.ws10a{word-spacing:8.424000px;}
.wsd6{word-spacing:8.478000px;}
.wsa{word-spacing:8.496000px;}
.wscf{word-spacing:8.532000px;}
.ws5a{word-spacing:8.586000px;}
.wseb{word-spacing:8.640000px;}
.wsb2{word-spacing:8.694000px;}
.ws117{word-spacing:8.748000px;}
.ws84{word-spacing:8.802000px;}
.wsbe{word-spacing:8.856000px;}
.wsf1{word-spacing:8.910000px;}
.ws1b{word-spacing:9.018000px;}
.wsbc{word-spacing:9.072000px;}
.wsac{word-spacing:9.126000px;}
.wsab{word-spacing:9.180000px;}
.ws1f{word-spacing:9.234000px;}
.ws3d{word-spacing:9.288000px;}
.ws111{word-spacing:9.342000px;}
.wsfb{word-spacing:9.450000px;}
.wsdc{word-spacing:9.504000px;}
.wsf3{word-spacing:9.612000px;}
.ws18{word-spacing:9.666000px;}
.ws3c{word-spacing:9.720000px;}
.ws95{word-spacing:9.828000px;}
.ws108{word-spacing:9.990000px;}
.ws13{word-spacing:10.044000px;}
.ws11a{word-spacing:10.422000px;}
.ws4{word-spacing:10.512000px;}
.wsad{word-spacing:10.530000px;}
.ws5d{word-spacing:10.638000px;}
.wsc6{word-spacing:10.692000px;}
.wsb0{word-spacing:10.854000px;}
.ws6d{word-spacing:11.124000px;}
.wse9{word-spacing:11.286000px;}
.ws118{word-spacing:11.340000px;}
.ws103{word-spacing:11.610000px;}
.wsd3{word-spacing:11.664000px;}
.wsb7{word-spacing:11.718000px;}
.wsfa{word-spacing:11.772000px;}
.wsb6{word-spacing:11.826000px;}
.ws100{word-spacing:12.042000px;}
.wsb1{word-spacing:12.312000px;}
.ws115{word-spacing:12.366000px;}
.wsf2{word-spacing:12.420000px;}
.ws10f{word-spacing:12.528000px;}
.wsaf{word-spacing:12.798000px;}
.ws11d{word-spacing:13.122000px;}
.ws34{word-spacing:13.338000px;}
.ws10{word-spacing:13.716000px;}
.wsf4{word-spacing:14.040000px;}
.ws112{word-spacing:14.202000px;}
.ws16{word-spacing:14.256000px;}
.wsec{word-spacing:14.364000px;}
.wsbd{word-spacing:14.418000px;}
.ws8d{word-spacing:14.634000px;}
.ws119{word-spacing:14.742000px;}
.wsb9{word-spacing:15.066000px;}
.wse3{word-spacing:15.390000px;}
.ws11e{word-spacing:17.334000px;}
.ws3{word-spacing:17.664000px;}
.ws10c{word-spacing:18.306000px;}
.ws8e{word-spacing:19.062000px;}
.ws11f{word-spacing:19.818000px;}
.ws11c{word-spacing:38.880000px;}
._15{margin-left:-55.298873px;}
._13{margin-left:-18.595915px;}
._6{margin-left:-4.879915px;}
._2{margin-left:-3.579352px;}
._0{margin-left:-2.447042px;}
._1{margin-left:-1.223521px;}
._5{width:1.113479px;}
._4{width:2.569685px;}
._3{width:3.600000px;}
._14{width:7.128000px;}
._a{width:96.930000px;}
._f{width:98.766000px;}
._7{width:101.844000px;}
._12{width:103.626000px;}
._c{width:105.948000px;}
._b{width:107.190000px;}
._8{width:108.432000px;}
._9{width:109.782000px;}
._10{width:111.564000px;}
._e{width:113.130000px;}
._11{width:114.264000px;}
._d{width:115.290000px;}
.fc5{color:rgb(135,182,45);}
.fc4{color:rgb(38,34,31);}
.fc3{color:rgb(79,104,24);}
.fc6{color:transparent;}
.fc2{color:rgb(148,188,63);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,55,50);}
.fs8{font-size:36.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:67.973400px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y102{bottom:32.130900px;}
.y70{bottom:33.915750px;}
.yfe{bottom:42.519750px;}
.y6a{bottom:72.213450px;}
.y103{bottom:85.039350px;}
.ybc{bottom:85.497450px;}
.yef{bottom:88.413300px;}
.y7c{bottom:88.413450px;}
.y69{bottom:93.813450px;}
.ybb{bottom:101.697450px;}
.yee{bottom:104.613300px;}
.y7b{bottom:104.613450px;}
.y6f{bottom:105.688950px;}
.y68{bottom:110.013450px;}
.yba{bottom:117.897450px;}
.yed{bottom:120.813300px;}
.y6e{bottom:120.813450px;}
.yb9{bottom:134.097450px;}
.yec{bottom:137.013300px;}
.y67{bottom:137.013450px;}
.yb8{bottom:150.297450px;}
.yeb{bottom:153.213300px;}
.y66{bottom:153.213450px;}
.yb7{bottom:166.497450px;}
.yfd{bottom:169.413300px;}
.y6d{bottom:169.413450px;}
.y65{bottom:180.213450px;}
.yb6{bottom:182.697450px;}
.yea{bottom:185.613300px;}
.y7a{bottom:185.613450px;}
.y64{bottom:196.413450px;}
.yb5{bottom:198.897450px;}
.yfc{bottom:201.813300px;}
.y79{bottom:201.813450px;}
.yf0{bottom:202.887750px;}
.y26{bottom:215.092950px;}
.yb4{bottom:215.097450px;}
.ye9{bottom:218.013300px;}
.y63{bottom:218.013450px;}
.y25{bottom:229.492950px;}
.yb3{bottom:231.297450px;}
.ye8{bottom:234.213300px;}
.y62{bottom:234.213450px;}
.yb2{bottom:247.497450px;}
.ye7{bottom:250.413300px;}
.y78{bottom:250.413450px;}
.y61{bottom:255.813450px;}
.yb1{bottom:263.697450px;}
.ye6{bottom:266.613300px;}
.y77{bottom:266.613450px;}
.y60{bottom:272.013450px;}
.yb0{bottom:279.897450px;}
.ye5{bottom:282.813300px;}
.y76{bottom:282.813450px;}
.y5f{bottom:293.613450px;}
.yaf{bottom:296.097450px;}
.ye4{bottom:299.013300px;}
.y75{bottom:299.013450px;}
.y5e{bottom:309.813450px;}
.yae{bottom:312.297450px;}
.ye3{bottom:315.213300px;}
.y42{bottom:315.213450px;}
.yad{bottom:328.497450px;}
.ye2{bottom:331.413300px;}
.y41{bottom:331.413450px;}
.yac{bottom:344.697450px;}
.ye1{bottom:347.613300px;}
.y40{bottom:347.613450px;}
.yab{bottom:360.897450px;}
.ye0{bottom:363.813300px;}
.y3f{bottom:363.813450px;}
.y5d{bottom:369.213450px;}
.y24{bottom:372.088950px;}
.yaa{bottom:377.097450px;}
.y101{bottom:378.513750px;}
.ydf{bottom:380.013300px;}
.y3e{bottom:380.013450px;}
.y5c{bottom:385.413450px;}
.y23{bottom:386.488950px;}
.ya9{bottom:393.297450px;}
.yde{bottom:396.213300px;}
.y74{bottom:396.213450px;}
.y22{bottom:400.888950px;}
.y5b{bottom:407.013450px;}
.ya8{bottom:409.497450px;}
.ydd{bottom:412.413300px;}
.y3d{bottom:412.413450px;}
.y5a{bottom:423.213450px;}
.ya7{bottom:425.697450px;}
.ydc{bottom:428.613300px;}
.y3c{bottom:428.613450px;}
.y21{bottom:429.688950px;}
.ya6{bottom:441.897450px;}
.ydb{bottom:444.813300px;}
.y3b{bottom:444.813450px;}
.ya5{bottom:458.097450px;}
.yda{bottom:461.013300px;}
.y3a{bottom:461.013450px;}
.y20{bottom:472.888950px;}
.y7d{bottom:474.253200px;}
.ya4{bottom:474.297450px;}
.yd9{bottom:477.213300px;}
.y39{bottom:477.213450px;}
.y87{bottom:479.987850px;}
.y59{bottom:482.613450px;}
.y1f{bottom:487.288950px;}
.ya3{bottom:490.497450px;}
.yd8{bottom:493.413300px;}
.y38{bottom:493.413450px;}
.y58{bottom:498.813450px;}
.y1e{bottom:501.688950px;}
.ya2{bottom:506.697450px;}
.yd7{bottom:509.613300px;}
.y37{bottom:509.613450px;}
.y57{bottom:520.413450px;}
.ya1{bottom:522.897450px;}
.yd6{bottom:525.813300px;}
.y36{bottom:525.813450px;}
.y100{bottom:526.622250px;}
.y1d{bottom:530.488950px;}
.y56{bottom:536.613450px;}
.ya0{bottom:539.097450px;}
.yd5{bottom:542.013300px;}
.y35{bottom:542.013450px;}
.y1c{bottom:544.888950px;}
.y28{bottom:548.511450px;}
.y9f{bottom:555.297450px;}
.yd4{bottom:558.213300px;}
.y34{bottom:558.213450px;}
.y1b{bottom:559.288950px;}
.y27{bottom:570.111450px;}
.y9e{bottom:571.497450px;}
.y1a{bottom:573.688950px;}
.yd3{bottom:574.413300px;}
.y33{bottom:574.413450px;}
.y9d{bottom:587.697450px;}
.y19{bottom:588.088950px;}
.yd2{bottom:590.613300px;}
.y32{bottom:590.613450px;}
.y55{bottom:596.013450px;}
.y18{bottom:602.488950px;}
.y9c{bottom:603.897450px;}
.yd1{bottom:606.813300px;}
.y31{bottom:606.813450px;}
.y54{bottom:612.213450px;}
.y17{bottom:616.888950px;}
.y9b{bottom:620.097450px;}
.yd0{bottom:623.013300px;}
.y30{bottom:623.013450px;}
.y16{bottom:631.288950px;}
.y53{bottom:633.813450px;}
.y9a{bottom:636.297450px;}
.ycf{bottom:639.213300px;}
.y73{bottom:639.213450px;}
.y52{bottom:650.013450px;}
.y99{bottom:652.497450px;}
.yce{bottom:655.413300px;}
.y72{bottom:655.413450px;}
.y15{bottom:660.088950px;}
.y98{bottom:668.697450px;}
.yff{bottom:670.113750px;}
.ycd{bottom:671.613300px;}
.y51{bottom:671.613450px;}
.y14{bottom:674.488950px;}
.y2b{bottom:679.641300px;}
.y97{bottom:684.897450px;}
.y71{bottom:686.092500px;}
.ycc{bottom:687.813300px;}
.y50{bottom:687.813450px;}
.y96{bottom:701.097450px;}
.y13{bottom:703.288950px;}
.ycb{bottom:704.013300px;}
.y6b{bottom:704.013450px;}
.y2a{bottom:712.041300px;}
.y4f{bottom:714.813450px;}
.y95{bottom:717.297450px;}
.y12{bottom:717.688950px;}
.yca{bottom:720.213300px;}
.yfb{bottom:720.213450px;}
.y4e{bottom:731.013600px;}
.y11{bottom:732.088950px;}
.y94{bottom:733.497450px;}
.yc9{bottom:736.413300px;}
.yfa{bottom:736.413450px;}
.y29{bottom:744.441300px;}
.y93{bottom:749.697450px;}
.yc8{bottom:752.613300px;}
.yf9{bottom:752.613450px;}
.y4d{bottom:752.613600px;}
.y10{bottom:760.888950px;}
.y85{bottom:762.294150px;}
.y92{bottom:765.897450px;}
.yc7{bottom:768.813300px;}
.y4c{bottom:768.813450px;}
.yf{bottom:775.288950px;}
.y84{bottom:776.694150px;}
.y91{bottom:782.097450px;}
.yc6{bottom:785.013300px;}
.yf8{bottom:785.013450px;}
.ye{bottom:789.688950px;}
.y4b{bottom:790.413450px;}
.y2f{bottom:790.989300px;}
.y83{bottom:791.094150px;}
.y90{bottom:798.297450px;}
.yc5{bottom:801.213300px;}
.yf7{bottom:801.213450px;}
.yd{bottom:804.088950px;}
.y82{bottom:805.494150px;}
.y4a{bottom:812.013450px;}
.y8f{bottom:814.497450px;}
.yc4{bottom:817.413300px;}
.yf6{bottom:817.413450px;}
.yc{bottom:818.488950px;}
.y81{bottom:819.894150px;}
.y49{bottom:828.213450px;}
.y8e{bottom:830.697450px;}
.yb{bottom:832.888950px;}
.y4{bottom:833.339428px;}
.yc3{bottom:833.613300px;}
.yf5{bottom:833.613450px;}
.y80{bottom:834.294150px;}
.y2e{bottom:835.989300px;}
.y48{bottom:844.413450px;}
.y8d{bottom:846.897450px;}
.ya{bottom:847.288950px;}
.yc2{bottom:849.813300px;}
.yf4{bottom:849.813450px;}
.y3{bottom:857.639919px;}
.y9{bottom:861.688950px;}
.y8c{bottom:863.097450px;}
.yc1{bottom:866.013300px;}
.y47{bottom:866.013450px;}
.y8{bottom:876.088950px;}
.y7f{bottom:877.494150px;}
.y8b{bottom:879.297450px;}
.y2d{bottom:880.989300px;}
.y2{bottom:881.940409px;}
.yc0{bottom:882.213300px;}
.yf3{bottom:882.213450px;}
.y46{bottom:887.613450px;}
.y8a{bottom:895.497450px;}
.ybf{bottom:898.413300px;}
.yf2{bottom:898.413450px;}
.y45{bottom:903.813450px;}
.y7{bottom:904.888950px;}
.y1{bottom:906.240900px;}
.y7e{bottom:909.894150px;}
.y89{bottom:911.697450px;}
.ybe{bottom:914.613300px;}
.yf1{bottom:914.613450px;}
.y6{bottom:919.288950px;}
.y6c{bottom:919.459950px;}
.y2c{bottom:925.989300px;}
.y44{bottom:930.813450px;}
.ybd{bottom:945.030450px;}
.y86{bottom:945.642300px;}
.y88{bottom:945.832950px;}
.y43{bottom:947.013450px;}
.y5{bottom:948.088950px;}
.h13{height:33.516000px;}
.h8{height:35.568000px;}
.h7{height:40.014000px;}
.h4{height:43.056000px;}
.h6{height:43.824000px;}
.h5{height:44.688000px;}
.he{height:48.438000px;}
.hd{height:49.302000px;}
.hf{height:49.302600px;}
.h10{height:50.274000px;}
.h11{height:55.860000px;}
.h3{height:62.059714px;}
.h2{height:63.283235px;}
.ha{height:65.736000px;}
.h9{height:72.618000px;}
.hb{height:98.604000px;}
.h12{height:100.548000px;}
.hc{height:167.580000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x10{left:31.889700px;}
.x2{left:63.779550px;}
.x7{left:76.936800px;}
.xc{left:85.039350px;}
.xf{left:86.102400px;}
.x1{left:90.624900px;}
.x3{left:93.850500px;}
.x1b{left:95.666550px;}
.x8{left:105.894300px;}
.x18{left:136.069350px;}
.x6{left:174.330750px;}
.x4{left:199.093350px;}
.x11{left:222.634050px;}
.xb{left:262.808550px;}
.x5{left:324.564450px;}
.x9{left:339.742050px;}
.x13{left:361.417350px;}
.xd{left:382.668150px;}
.x15{left:393.307050px;}
.x1c{left:397.649100px;}
.x19{left:403.942350px;}
.x1a{left:414.566850px;}
.x12{left:473.307300px;}
.x14{left:493.317150px;}
.x16{left:507.044550px;}
.xe{left:531.256200px;}
.xa{left:607.935300px;}
.x17{left:618.662550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-3.200000pt;}
.ls4{letter-spacing:-1.536000pt;}
.ls9{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls1{letter-spacing:-0.554667pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.144000pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005867pt;}
.wsd{word-spacing:-44.160000pt;}
.wsf{word-spacing:-14.208000pt;}
.ws22{word-spacing:-14.112000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws21{word-spacing:-12.629333pt;}
.ws6a{word-spacing:-11.861333pt;}
.wse{word-spacing:-11.093333pt;}
.ws32{word-spacing:-8.544000pt;}
.ws31{word-spacing:-5.856000pt;}
.ws28{word-spacing:-5.568000pt;}
.ws2a{word-spacing:-4.368000pt;}
.ws2c{word-spacing:-4.272000pt;}
.ws2e{word-spacing:-4.176000pt;}
.ws27{word-spacing:-4.032000pt;}
.ws30{word-spacing:-3.648000pt;}
.ws2f{word-spacing:-3.504000pt;}
.ws9b{word-spacing:-2.928000pt;}
.ws114{word-spacing:-2.832000pt;}
.wsa1{word-spacing:-2.784000pt;}
.ws79{word-spacing:-2.736000pt;}
.ws73{word-spacing:-2.640000pt;}
.wsc9{word-spacing:-2.592000pt;}
.wsfc{word-spacing:-2.544000pt;}
.ws29{word-spacing:-2.496000pt;}
.wsbf{word-spacing:-2.448000pt;}
.wsb3{word-spacing:-2.400000pt;}
.ws99{word-spacing:-2.352000pt;}
.wsda{word-spacing:-2.256000pt;}
.ws78{word-spacing:-2.208000pt;}
.ws89{word-spacing:-2.160000pt;}
.ws20{word-spacing:-2.112000pt;}
.wse2{word-spacing:-2.064000pt;}
.wsc5{word-spacing:-2.016000pt;}
.ws66{word-spacing:-2.005333pt;}
.wscb{word-spacing:-1.968000pt;}
.wsff{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.872000pt;}
.ws107{word-spacing:-1.824000pt;}
.ws7d{word-spacing:-1.728000pt;}
.ws72{word-spacing:-1.632000pt;}
.ws88{word-spacing:-1.584000pt;}
.ws23{word-spacing:-1.536000pt;}
.wsd8{word-spacing:-1.488000pt;}
.ws17{word-spacing:-1.440000pt;}
.ws25{word-spacing:-1.392000pt;}
.wsdf{word-spacing:-1.344000pt;}
.ws24{word-spacing:-1.296000pt;}
.ws74{word-spacing:-1.248000pt;}
.ws7a{word-spacing:-1.200000pt;}
.ws59{word-spacing:-1.152000pt;}
.ws6{word-spacing:-1.109333pt;}
.ws9a{word-spacing:-1.104000pt;}
.ws3b{word-spacing:-1.056000pt;}
.ws52{word-spacing:-1.008000pt;}
.wsce{word-spacing:-0.960000pt;}
.ws7e{word-spacing:-0.864000pt;}
.ws67{word-spacing:-0.810667pt;}
.ws41{word-spacing:-0.768000pt;}
.wsa6{word-spacing:-0.720000pt;}
.ws69{word-spacing:-0.682667pt;}
.ws43{word-spacing:-0.672000pt;}
.ws5e{word-spacing:-0.624000pt;}
.wsc2{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.528000pt;}
.wsa5{word-spacing:-0.480000pt;}
.ws2b{word-spacing:-0.432000pt;}
.ws5{word-spacing:-0.384000pt;}
.ws9f{word-spacing:-0.336000pt;}
.ws51{word-spacing:-0.288000pt;}
.ws68{word-spacing:-0.256000pt;}
.wse7{word-spacing:-0.240000pt;}
.wsb5{word-spacing:-0.192000pt;}
.ws85{word-spacing:-0.144000pt;}
.wsd9{word-spacing:-0.096000pt;}
.ws2d{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws91{word-spacing:0.048000pt;}
.ws7b{word-spacing:0.144000pt;}
.wsdb{word-spacing:0.192000pt;}
.ws8b{word-spacing:0.240000pt;}
.wsdd{word-spacing:0.288000pt;}
.ws77{word-spacing:0.336000pt;}
.ws50{word-spacing:0.384000pt;}
.wsca{word-spacing:0.432000pt;}
.ws64{word-spacing:0.480000pt;}
.wsc8{word-spacing:0.576000pt;}
.ws10d{word-spacing:0.624000pt;}
.ws6f{word-spacing:0.672000pt;}
.ws8{word-spacing:0.682667pt;}
.wse1{word-spacing:0.720000pt;}
.ws86{word-spacing:0.768000pt;}
.ws106{word-spacing:0.816000pt;}
.ws87{word-spacing:0.864000pt;}
.wsd0{word-spacing:0.912000pt;}
.wscc{word-spacing:0.960000pt;}
.wsa0{word-spacing:1.008000pt;}
.ws7{word-spacing:1.024000pt;}
.wsc4{word-spacing:1.056000pt;}
.wsd7{word-spacing:1.104000pt;}
.ws4c{word-spacing:1.152000pt;}
.ws42{word-spacing:1.200000pt;}
.ws5b{word-spacing:1.248000pt;}
.ws7f{word-spacing:1.296000pt;}
.ws4e{word-spacing:1.344000pt;}
.ws62{word-spacing:1.392000pt;}
.ws9d{word-spacing:1.440000pt;}
.ws96{word-spacing:1.488000pt;}
.ws36{word-spacing:1.536000pt;}
.ws6b{word-spacing:1.584000pt;}
.wsb8{word-spacing:1.632000pt;}
.ws45{word-spacing:1.680000pt;}
.ws75{word-spacing:1.728000pt;}
.ws4f{word-spacing:1.776000pt;}
.ws40{word-spacing:1.824000pt;}
.ws58{word-spacing:1.872000pt;}
.ws65{word-spacing:1.920000pt;}
.ws3e{word-spacing:1.968000pt;}
.ws7c{word-spacing:2.016000pt;}
.wsa3{word-spacing:2.064000pt;}
.wsf8{word-spacing:2.112000pt;}
.wsea{word-spacing:2.160000pt;}
.ws97{word-spacing:2.208000pt;}
.ws57{word-spacing:2.256000pt;}
.ws110{word-spacing:2.304000pt;}
.ws1d{word-spacing:2.352000pt;}
.ws101{word-spacing:2.400000pt;}
.ws104{word-spacing:2.448000pt;}
.ws38{word-spacing:2.544000pt;}
.ws82{word-spacing:2.592000pt;}
.ws47{word-spacing:2.688000pt;}
.wsfd{word-spacing:2.736000pt;}
.ws54{word-spacing:2.784000pt;}
.ws48{word-spacing:2.832000pt;}
.ws5f{word-spacing:2.880000pt;}
.ws90{word-spacing:2.928000pt;}
.ws8a{word-spacing:2.976000pt;}
.wsa4{word-spacing:3.072000pt;}
.wsc0{word-spacing:3.120000pt;}
.wsc1{word-spacing:3.168000pt;}
.wsa7{word-spacing:3.264000pt;}
.ws9e{word-spacing:3.312000pt;}
.wse5{word-spacing:3.360000pt;}
.wsae{word-spacing:3.408000pt;}
.wsb{word-spacing:3.413333pt;}
.ws5c{word-spacing:3.456000pt;}
.ws9c{word-spacing:3.504000pt;}
.ws6c{word-spacing:3.552000pt;}
.ws3a{word-spacing:3.600000pt;}
.ws81{word-spacing:3.648000pt;}
.ws12{word-spacing:3.696000pt;}
.wsd5{word-spacing:3.744000pt;}
.ws37{word-spacing:3.792000pt;}
.ws6e{word-spacing:3.840000pt;}
.ws1e{word-spacing:3.888000pt;}
.ws39{word-spacing:3.936000pt;}
.wsf5{word-spacing:3.984000pt;}
.wse0{word-spacing:4.032000pt;}
.ws60{word-spacing:4.080000pt;}
.wsde{word-spacing:4.128000pt;}
.ws80{word-spacing:4.176000pt;}
.wsc7{word-spacing:4.224000pt;}
.ws10b{word-spacing:4.272000pt;}
.ws56{word-spacing:4.320000pt;}
.ws33{word-spacing:4.368000pt;}
.wsf6{word-spacing:4.512000pt;}
.wsd2{word-spacing:4.560000pt;}
.wsc{word-spacing:4.565333pt;}
.wsf7{word-spacing:4.608000pt;}
.wsd4{word-spacing:4.656000pt;}
.ws19{word-spacing:4.704000pt;}
.wscd{word-spacing:4.752000pt;}
.ws83{word-spacing:4.800000pt;}
.wsf0{word-spacing:4.848000pt;}
.wsd1{word-spacing:4.896000pt;}
.wsed{word-spacing:4.944000pt;}
.ws98{word-spacing:4.992000pt;}
.ws10e{word-spacing:5.040000pt;}
.ws94{word-spacing:5.088000pt;}
.ws35{word-spacing:5.136000pt;}
.ws93{word-spacing:5.184000pt;}
.wsc3{word-spacing:5.232000pt;}
.wsbb{word-spacing:5.280000pt;}
.wsef{word-spacing:5.328000pt;}
.ws14{word-spacing:5.376000pt;}
.ws53{word-spacing:5.472000pt;}
.wsf9{word-spacing:5.520000pt;}
.wsa2{word-spacing:5.568000pt;}
.wsa8{word-spacing:5.616000pt;}
.ws8f{word-spacing:5.664000pt;}
.ws70{word-spacing:5.712000pt;}
.wsfe{word-spacing:5.760000pt;}
.ws1a{word-spacing:5.808000pt;}
.ws49{word-spacing:5.904000pt;}
.ws4b{word-spacing:5.952000pt;}
.ws44{word-spacing:6.000000pt;}
.ws4a{word-spacing:6.096000pt;}
.ws2{word-spacing:6.101333pt;}
.ws1c{word-spacing:6.144000pt;}
.ws4d{word-spacing:6.192000pt;}
.wsb4{word-spacing:6.240000pt;}
.ws102{word-spacing:6.288000pt;}
.wsee{word-spacing:6.336000pt;}
.wsa9{word-spacing:6.384000pt;}
.ws9{word-spacing:6.442667pt;}
.ws116{word-spacing:6.528000pt;}
.wse8{word-spacing:6.576000pt;}
.ws61{word-spacing:6.624000pt;}
.ws113{word-spacing:6.672000pt;}
.ws11{word-spacing:6.720000pt;}
.ws63{word-spacing:6.768000pt;}
.wsba{word-spacing:6.816000pt;}
.ws15{word-spacing:6.864000pt;}
.ws109{word-spacing:6.912000pt;}
.ws92{word-spacing:6.960000pt;}
.wsaa{word-spacing:7.008000pt;}
.wse4{word-spacing:7.056000pt;}
.ws76{word-spacing:7.104000pt;}
.ws3f{word-spacing:7.152000pt;}
.ws11b{word-spacing:7.200000pt;}
.ws71{word-spacing:7.248000pt;}
.wse6{word-spacing:7.296000pt;}
.ws46{word-spacing:7.344000pt;}
.ws55{word-spacing:7.392000pt;}
.ws105{word-spacing:7.440000pt;}
.ws10a{word-spacing:7.488000pt;}
.wsd6{word-spacing:7.536000pt;}
.wsa{word-spacing:7.552000pt;}
.wscf{word-spacing:7.584000pt;}
.ws5a{word-spacing:7.632000pt;}
.wseb{word-spacing:7.680000pt;}
.wsb2{word-spacing:7.728000pt;}
.ws117{word-spacing:7.776000pt;}
.ws84{word-spacing:7.824000pt;}
.wsbe{word-spacing:7.872000pt;}
.wsf1{word-spacing:7.920000pt;}
.ws1b{word-spacing:8.016000pt;}
.wsbc{word-spacing:8.064000pt;}
.wsac{word-spacing:8.112000pt;}
.wsab{word-spacing:8.160000pt;}
.ws1f{word-spacing:8.208000pt;}
.ws3d{word-spacing:8.256000pt;}
.ws111{word-spacing:8.304000pt;}
.wsfb{word-spacing:8.400000pt;}
.wsdc{word-spacing:8.448000pt;}
.wsf3{word-spacing:8.544000pt;}
.ws18{word-spacing:8.592000pt;}
.ws3c{word-spacing:8.640000pt;}
.ws95{word-spacing:8.736000pt;}
.ws108{word-spacing:8.880000pt;}
.ws13{word-spacing:8.928000pt;}
.ws11a{word-spacing:9.264000pt;}
.ws4{word-spacing:9.344000pt;}
.wsad{word-spacing:9.360000pt;}
.ws5d{word-spacing:9.456000pt;}
.wsc6{word-spacing:9.504000pt;}
.wsb0{word-spacing:9.648000pt;}
.ws6d{word-spacing:9.888000pt;}
.wse9{word-spacing:10.032000pt;}
.ws118{word-spacing:10.080000pt;}
.ws103{word-spacing:10.320000pt;}
.wsd3{word-spacing:10.368000pt;}
.wsb7{word-spacing:10.416000pt;}
.wsfa{word-spacing:10.464000pt;}
.wsb6{word-spacing:10.512000pt;}
.ws100{word-spacing:10.704000pt;}
.wsb1{word-spacing:10.944000pt;}
.ws115{word-spacing:10.992000pt;}
.wsf2{word-spacing:11.040000pt;}
.ws10f{word-spacing:11.136000pt;}
.wsaf{word-spacing:11.376000pt;}
.ws11d{word-spacing:11.664000pt;}
.ws34{word-spacing:11.856000pt;}
.ws10{word-spacing:12.192000pt;}
.wsf4{word-spacing:12.480000pt;}
.ws112{word-spacing:12.624000pt;}
.ws16{word-spacing:12.672000pt;}
.wsec{word-spacing:12.768000pt;}
.wsbd{word-spacing:12.816000pt;}
.ws8d{word-spacing:13.008000pt;}
.ws119{word-spacing:13.104000pt;}
.wsb9{word-spacing:13.392000pt;}
.wse3{word-spacing:13.680000pt;}
.ws11e{word-spacing:15.408000pt;}
.ws3{word-spacing:15.701333pt;}
.ws10c{word-spacing:16.272000pt;}
.ws8e{word-spacing:16.944000pt;}
.ws11f{word-spacing:17.616000pt;}
.ws11c{word-spacing:34.560000pt;}
._15{margin-left:-49.154554pt;}
._13{margin-left:-16.529702pt;}
._6{margin-left:-4.337702pt;}
._2{margin-left:-3.181646pt;}
._0{margin-left:-2.175149pt;}
._1{margin-left:-1.087574pt;}
._5{width:0.989759pt;}
._4{width:2.284164pt;}
._3{width:3.200000pt;}
._14{width:6.336000pt;}
._a{width:86.160000pt;}
._f{width:87.792000pt;}
._7{width:90.528000pt;}
._12{width:92.112000pt;}
._c{width:94.176000pt;}
._b{width:95.280000pt;}
._8{width:96.384000pt;}
._9{width:97.584000pt;}
._10{width:99.168000pt;}
._e{width:100.560000pt;}
._11{width:101.568000pt;}
._d{width:102.480000pt;}
.fs8{font-size:32.000000pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:60.420800pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:28.560800pt;}
.y70{bottom:30.147333pt;}
.yfe{bottom:37.795333pt;}
.y6a{bottom:64.189733pt;}
.y103{bottom:75.590533pt;}
.ybc{bottom:75.997733pt;}
.yef{bottom:78.589600pt;}
.y7c{bottom:78.589733pt;}
.y69{bottom:83.389733pt;}
.ybb{bottom:90.397733pt;}
.yee{bottom:92.989600pt;}
.y7b{bottom:92.989733pt;}
.y6f{bottom:93.945733pt;}
.y68{bottom:97.789733pt;}
.yba{bottom:104.797733pt;}
.yed{bottom:107.389600pt;}
.y6e{bottom:107.389733pt;}
.yb9{bottom:119.197733pt;}
.yec{bottom:121.789600pt;}
.y67{bottom:121.789733pt;}
.yb8{bottom:133.597733pt;}
.yeb{bottom:136.189600pt;}
.y66{bottom:136.189733pt;}
.yb7{bottom:147.997733pt;}
.yfd{bottom:150.589600pt;}
.y6d{bottom:150.589733pt;}
.y65{bottom:160.189733pt;}
.yb6{bottom:162.397733pt;}
.yea{bottom:164.989600pt;}
.y7a{bottom:164.989733pt;}
.y64{bottom:174.589733pt;}
.yb5{bottom:176.797733pt;}
.yfc{bottom:179.389600pt;}
.y79{bottom:179.389733pt;}
.yf0{bottom:180.344667pt;}
.y26{bottom:191.193733pt;}
.yb4{bottom:191.197733pt;}
.ye9{bottom:193.789600pt;}
.y63{bottom:193.789733pt;}
.y25{bottom:203.993733pt;}
.yb3{bottom:205.597733pt;}
.ye8{bottom:208.189600pt;}
.y62{bottom:208.189733pt;}
.yb2{bottom:219.997733pt;}
.ye7{bottom:222.589600pt;}
.y78{bottom:222.589733pt;}
.y61{bottom:227.389733pt;}
.yb1{bottom:234.397733pt;}
.ye6{bottom:236.989600pt;}
.y77{bottom:236.989733pt;}
.y60{bottom:241.789733pt;}
.yb0{bottom:248.797733pt;}
.ye5{bottom:251.389600pt;}
.y76{bottom:251.389733pt;}
.y5f{bottom:260.989733pt;}
.yaf{bottom:263.197733pt;}
.ye4{bottom:265.789600pt;}
.y75{bottom:265.789733pt;}
.y5e{bottom:275.389733pt;}
.yae{bottom:277.597733pt;}
.ye3{bottom:280.189600pt;}
.y42{bottom:280.189733pt;}
.yad{bottom:291.997733pt;}
.ye2{bottom:294.589600pt;}
.y41{bottom:294.589733pt;}
.yac{bottom:306.397733pt;}
.ye1{bottom:308.989600pt;}
.y40{bottom:308.989733pt;}
.yab{bottom:320.797733pt;}
.ye0{bottom:323.389600pt;}
.y3f{bottom:323.389733pt;}
.y5d{bottom:328.189733pt;}
.y24{bottom:330.745733pt;}
.yaa{bottom:335.197733pt;}
.y101{bottom:336.456667pt;}
.ydf{bottom:337.789600pt;}
.y3e{bottom:337.789733pt;}
.y5c{bottom:342.589733pt;}
.y23{bottom:343.545733pt;}
.ya9{bottom:349.597733pt;}
.yde{bottom:352.189600pt;}
.y74{bottom:352.189733pt;}
.y22{bottom:356.345733pt;}
.y5b{bottom:361.789733pt;}
.ya8{bottom:363.997733pt;}
.ydd{bottom:366.589600pt;}
.y3d{bottom:366.589733pt;}
.y5a{bottom:376.189733pt;}
.ya7{bottom:378.397733pt;}
.ydc{bottom:380.989600pt;}
.y3c{bottom:380.989733pt;}
.y21{bottom:381.945733pt;}
.ya6{bottom:392.797733pt;}
.ydb{bottom:395.389600pt;}
.y3b{bottom:395.389733pt;}
.ya5{bottom:407.197733pt;}
.yda{bottom:409.789600pt;}
.y3a{bottom:409.789733pt;}
.y20{bottom:420.345733pt;}
.y7d{bottom:421.558400pt;}
.ya4{bottom:421.597733pt;}
.yd9{bottom:424.189600pt;}
.y39{bottom:424.189733pt;}
.y87{bottom:426.655867pt;}
.y59{bottom:428.989733pt;}
.y1f{bottom:433.145733pt;}
.ya3{bottom:435.997733pt;}
.yd8{bottom:438.589600pt;}
.y38{bottom:438.589733pt;}
.y58{bottom:443.389733pt;}
.y1e{bottom:445.945733pt;}
.ya2{bottom:450.397733pt;}
.yd7{bottom:452.989600pt;}
.y37{bottom:452.989733pt;}
.y57{bottom:462.589733pt;}
.ya1{bottom:464.797733pt;}
.yd6{bottom:467.389600pt;}
.y36{bottom:467.389733pt;}
.y100{bottom:468.108667pt;}
.y1d{bottom:471.545733pt;}
.y56{bottom:476.989733pt;}
.ya0{bottom:479.197733pt;}
.yd5{bottom:481.789600pt;}
.y35{bottom:481.789733pt;}
.y1c{bottom:484.345733pt;}
.y28{bottom:487.565733pt;}
.y9f{bottom:493.597733pt;}
.yd4{bottom:496.189600pt;}
.y34{bottom:496.189733pt;}
.y1b{bottom:497.145733pt;}
.y27{bottom:506.765733pt;}
.y9e{bottom:507.997733pt;}
.y1a{bottom:509.945733pt;}
.yd3{bottom:510.589600pt;}
.y33{bottom:510.589733pt;}
.y9d{bottom:522.397733pt;}
.y19{bottom:522.745733pt;}
.yd2{bottom:524.989600pt;}
.y32{bottom:524.989733pt;}
.y55{bottom:529.789733pt;}
.y18{bottom:535.545733pt;}
.y9c{bottom:536.797733pt;}
.yd1{bottom:539.389600pt;}
.y31{bottom:539.389733pt;}
.y54{bottom:544.189733pt;}
.y17{bottom:548.345733pt;}
.y9b{bottom:551.197733pt;}
.yd0{bottom:553.789600pt;}
.y30{bottom:553.789733pt;}
.y16{bottom:561.145733pt;}
.y53{bottom:563.389733pt;}
.y9a{bottom:565.597733pt;}
.ycf{bottom:568.189600pt;}
.y73{bottom:568.189733pt;}
.y52{bottom:577.789733pt;}
.y99{bottom:579.997733pt;}
.yce{bottom:582.589600pt;}
.y72{bottom:582.589733pt;}
.y15{bottom:586.745733pt;}
.y98{bottom:594.397733pt;}
.yff{bottom:595.656667pt;}
.ycd{bottom:596.989600pt;}
.y51{bottom:596.989733pt;}
.y14{bottom:599.545733pt;}
.y2b{bottom:604.125600pt;}
.y97{bottom:608.797733pt;}
.y71{bottom:609.860000pt;}
.ycc{bottom:611.389600pt;}
.y50{bottom:611.389733pt;}
.y96{bottom:623.197733pt;}
.y13{bottom:625.145733pt;}
.ycb{bottom:625.789600pt;}
.y6b{bottom:625.789733pt;}
.y2a{bottom:632.925600pt;}
.y4f{bottom:635.389733pt;}
.y95{bottom:637.597733pt;}
.y12{bottom:637.945733pt;}
.yca{bottom:640.189600pt;}
.yfb{bottom:640.189733pt;}
.y4e{bottom:649.789867pt;}
.y11{bottom:650.745733pt;}
.y94{bottom:651.997733pt;}
.yc9{bottom:654.589600pt;}
.yfa{bottom:654.589733pt;}
.y29{bottom:661.725600pt;}
.y93{bottom:666.397733pt;}
.yc8{bottom:668.989600pt;}
.yf9{bottom:668.989733pt;}
.y4d{bottom:668.989867pt;}
.y10{bottom:676.345733pt;}
.y85{bottom:677.594800pt;}
.y92{bottom:680.797733pt;}
.yc7{bottom:683.389600pt;}
.y4c{bottom:683.389733pt;}
.yf{bottom:689.145733pt;}
.y84{bottom:690.394800pt;}
.y91{bottom:695.197733pt;}
.yc6{bottom:697.789600pt;}
.yf8{bottom:697.789733pt;}
.ye{bottom:701.945733pt;}
.y4b{bottom:702.589733pt;}
.y2f{bottom:703.101600pt;}
.y83{bottom:703.194800pt;}
.y90{bottom:709.597733pt;}
.yc5{bottom:712.189600pt;}
.yf7{bottom:712.189733pt;}
.yd{bottom:714.745733pt;}
.y82{bottom:715.994800pt;}
.y4a{bottom:721.789733pt;}
.y8f{bottom:723.997733pt;}
.yc4{bottom:726.589600pt;}
.yf6{bottom:726.589733pt;}
.yc{bottom:727.545733pt;}
.y81{bottom:728.794800pt;}
.y49{bottom:736.189733pt;}
.y8e{bottom:738.397733pt;}
.yb{bottom:740.345733pt;}
.y4{bottom:740.746159pt;}
.yc3{bottom:740.989600pt;}
.yf5{bottom:740.989733pt;}
.y80{bottom:741.594800pt;}
.y2e{bottom:743.101600pt;}
.y48{bottom:750.589733pt;}
.y8d{bottom:752.797733pt;}
.ya{bottom:753.145733pt;}
.yc2{bottom:755.389600pt;}
.yf4{bottom:755.389733pt;}
.y3{bottom:762.346595pt;}
.y9{bottom:765.945733pt;}
.y8c{bottom:767.197733pt;}
.yc1{bottom:769.789600pt;}
.y47{bottom:769.789733pt;}
.y8{bottom:778.745733pt;}
.y7f{bottom:779.994800pt;}
.y8b{bottom:781.597733pt;}
.y2d{bottom:783.101600pt;}
.y2{bottom:783.947031pt;}
.yc0{bottom:784.189600pt;}
.yf3{bottom:784.189733pt;}
.y46{bottom:788.989733pt;}
.y8a{bottom:795.997733pt;}
.ybf{bottom:798.589600pt;}
.yf2{bottom:798.589733pt;}
.y45{bottom:803.389733pt;}
.y7{bottom:804.345733pt;}
.y1{bottom:805.547467pt;}
.y7e{bottom:808.794800pt;}
.y89{bottom:810.397733pt;}
.ybe{bottom:812.989600pt;}
.yf1{bottom:812.989733pt;}
.y6{bottom:817.145733pt;}
.y6c{bottom:817.297733pt;}
.y2c{bottom:823.101600pt;}
.y44{bottom:827.389733pt;}
.ybd{bottom:840.027067pt;}
.y86{bottom:840.570933pt;}
.y88{bottom:840.740400pt;}
.y43{bottom:841.789733pt;}
.y5{bottom:842.745733pt;}
.h13{height:29.792000pt;}
.h8{height:31.616000pt;}
.h7{height:35.568000pt;}
.h4{height:38.272000pt;}
.h6{height:38.954667pt;}
.h5{height:39.722667pt;}
.he{height:43.056000pt;}
.hd{height:43.824000pt;}
.hf{height:43.824533pt;}
.h10{height:44.688000pt;}
.h11{height:49.653333pt;}
.h3{height:55.164190pt;}
.h2{height:56.251765pt;}
.ha{height:58.432000pt;}
.h9{height:64.549333pt;}
.hb{height:87.648000pt;}
.h12{height:89.376000pt;}
.hc{height:148.960000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x10{left:28.346400pt;}
.x2{left:56.692933pt;}
.x7{left:68.388267pt;}
.xc{left:75.590533pt;}
.xf{left:76.535467pt;}
.x1{left:80.555467pt;}
.x3{left:83.422667pt;}
.x1b{left:85.036933pt;}
.x8{left:94.128267pt;}
.x18{left:120.950533pt;}
.x6{left:154.960667pt;}
.x4{left:176.971867pt;}
.x11{left:197.896933pt;}
.xb{left:233.607600pt;}
.x5{left:288.501733pt;}
.x9{left:301.992933pt;}
.x13{left:321.259867pt;}
.xd{left:340.149467pt;}
.x15{left:349.606267pt;}
.x1c{left:353.465867pt;}
.x19{left:359.059867pt;}
.x1a{left:368.503867pt;}
.x12{left:420.717600pt;}
.x14{left:438.504133pt;}
.x16{left:450.706267pt;}
.xe{left:472.227733pt;}
.xa{left:540.386933pt;}
.x17{left:549.922267pt;}
}




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