
    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_9e9ab550ce2942ec20a5e228.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099000;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_72c162a2c7e4d13f6ed7c75c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_3d28f2c33b6f3dd905135bb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_c1e253087ba4f8c1042270fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_8021d8fb705330aaf1b932c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_7c7d79c2c3bef18da6ccb994.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_cfe341e51c0cc1e73c3ddb46.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c4635dc1e91894271a95fd97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5dbcccdb0749b18b386d627a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_21d1d794ddcce08d1753178e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d0a015bc4db9dfa24184d750.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d0a015bc4db9dfa24184d750.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.935000;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);}
.v3{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:26.613000px;}
.ls1{letter-spacing:-6.912000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.270000px;}
.ls3{letter-spacing:7.911000px;}
.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;}
}
.ws3{word-spacing:-15.012000px;}
.ws1{word-spacing:-13.344000px;}
.ws0{word-spacing:-11.676000px;}
.ws4{word-spacing:-11.520000px;}
.ws2{word-spacing:-8.751996px;}
.ws8d{word-spacing:-5.670000px;}
.ws9d{word-spacing:-5.346000px;}
.ws66{word-spacing:-4.644000px;}
.wsd0{word-spacing:-4.536000px;}
.ws86{word-spacing:-4.104000px;}
.ws4a{word-spacing:-3.672000px;}
.ws34{word-spacing:-3.456000px;}
.ws3e{word-spacing:-3.402000px;}
.ws87{word-spacing:-3.240000px;}
.ws57{word-spacing:-3.186000px;}
.ws8a{word-spacing:-3.132000px;}
.ws9a{word-spacing:-3.024000px;}
.ws55{word-spacing:-2.916000px;}
.ws61{word-spacing:-2.862000px;}
.ws72{word-spacing:-2.808000px;}
.ws48{word-spacing:-2.754000px;}
.ws68{word-spacing:-2.646000px;}
.ws4f{word-spacing:-2.592000px;}
.ws94{word-spacing:-2.538000px;}
.ws35{word-spacing:-2.484000px;}
.ws6d{word-spacing:-2.430000px;}
.ws8c{word-spacing:-2.322000px;}
.wsae{word-spacing:-2.304000px;}
.ws38{word-spacing:-2.268000px;}
.ws5b{word-spacing:-2.214000px;}
.ws12{word-spacing:-2.160000px;}
.ws7e{word-spacing:-2.106000px;}
.ws17{word-spacing:-1.998000px;}
.wsa{word-spacing:-1.920000px;}
.wsa5{word-spacing:-1.890000px;}
.ws3f{word-spacing:-1.836000px;}
.ws45{word-spacing:-1.674000px;}
.wsab{word-spacing:-1.536000px;}
.ws5a{word-spacing:-1.512000px;}
.ws8e{word-spacing:-1.458000px;}
.ws54{word-spacing:-1.350000px;}
.ws28{word-spacing:-1.296000px;}
.ws5d{word-spacing:-1.242000px;}
.ws4b{word-spacing:-1.188000px;}
.ws60{word-spacing:-1.134000px;}
.ws1e{word-spacing:-1.080000px;}
.ws8{word-spacing:-1.056000px;}
.ws3b{word-spacing:-1.026000px;}
.wsad{word-spacing:-1.008000px;}
.ws46{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.810000px;}
.wsac{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.702000px;}
.ws44{word-spacing:-0.540000px;}
.ws3a{word-spacing:-0.486000px;}
.ws8f{word-spacing:-0.378000px;}
.ws91{word-spacing:-0.324000px;}
.ws3c{word-spacing:-0.270000px;}
.wsb{word-spacing:-0.192000px;}
.ws96{word-spacing:-0.162000px;}
.ws51{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.054000px;}
.ws19{word-spacing:-0.036000px;}
.ws6{word-spacing:0.000000px;}
.ws42{word-spacing:0.054000px;}
.ws23{word-spacing:0.108000px;}
.ws30{word-spacing:0.162000px;}
.ws3d{word-spacing:0.216000px;}
.ws90{word-spacing:0.270000px;}
.ws95{word-spacing:0.324000px;}
.ws1f{word-spacing:0.378000px;}
.wscd{word-spacing:0.432000px;}
.ws8b{word-spacing:0.486000px;}
.wsa4{word-spacing:0.594000px;}
.ws40{word-spacing:0.648000px;}
.ws2e{word-spacing:0.702000px;}
.ws79{word-spacing:0.756000px;}
.wsc7{word-spacing:0.810000px;}
.ws84{word-spacing:0.864000px;}
.ws1a{word-spacing:0.912000px;}
.ws88{word-spacing:0.918000px;}
.ws70{word-spacing:1.080000px;}
.ws33{word-spacing:1.134000px;}
.ws14{word-spacing:1.188000px;}
.ws59{word-spacing:1.242000px;}
.ws9{word-spacing:1.248000px;}
.ws75{word-spacing:1.350000px;}
.ws10{word-spacing:1.392000px;}
.ws21{word-spacing:1.404000px;}
.wsc6{word-spacing:1.458000px;}
.wsf{word-spacing:1.488000px;}
.ws41{word-spacing:1.512000px;}
.ws4c{word-spacing:1.566000px;}
.ws2a{word-spacing:1.620000px;}
.ws39{word-spacing:1.674000px;}
.ws5c{word-spacing:1.728000px;}
.ws9b{word-spacing:1.782000px;}
.ws4d{word-spacing:1.836000px;}
.ws5e{word-spacing:1.944000px;}
.ws77{word-spacing:2.052000px;}
.ws73{word-spacing:2.106000px;}
.ws76{word-spacing:2.160000px;}
.ws2b{word-spacing:2.214000px;}
.ws43{word-spacing:2.268000px;}
.ws6f{word-spacing:2.322000px;}
.ws82{word-spacing:2.376000px;}
.wsa9{word-spacing:2.430000px;}
.wsba{word-spacing:2.484000px;}
.wsa8{word-spacing:2.538000px;}
.wsb2{word-spacing:2.592000px;}
.ws9f{word-spacing:2.646000px;}
.ws2d{word-spacing:2.754000px;}
.ws22{word-spacing:2.808000px;}
.ws89{word-spacing:2.862000px;}
.ws85{word-spacing:2.916000px;}
.ws63{word-spacing:2.970000px;}
.wse{word-spacing:3.024000px;}
.ws49{word-spacing:3.078000px;}
.ws78{word-spacing:3.132000px;}
.wsbc{word-spacing:3.168000px;}
.ws2f{word-spacing:3.186000px;}
.wsc4{word-spacing:3.240000px;}
.ws9c{word-spacing:3.294000px;}
.ws20{word-spacing:3.348000px;}
.wsc9{word-spacing:3.402000px;}
.ws36{word-spacing:3.510000px;}
.ws7a{word-spacing:3.564000px;}
.wsaa{word-spacing:3.618000px;}
.ws56{word-spacing:3.672000px;}
.ws4e{word-spacing:3.780000px;}
.ws71{word-spacing:3.834000px;}
.ws15{word-spacing:3.888000px;}
.ws24{word-spacing:3.996000px;}
.ws83{word-spacing:4.050000px;}
.ws80{word-spacing:4.104000px;}
.wsa6{word-spacing:4.158000px;}
.ws1c{word-spacing:4.212000px;}
.wsc8{word-spacing:4.266000px;}
.wsa7{word-spacing:4.374000px;}
.wsbf{word-spacing:4.482000px;}
.ws11{word-spacing:4.536000px;}
.wsbb{word-spacing:4.560000px;}
.wscb{word-spacing:4.590000px;}
.ws99{word-spacing:4.644000px;}
.wsc{word-spacing:4.752000px;}
.ws6c{word-spacing:4.860000px;}
.wsa2{word-spacing:5.022000px;}
.ws37{word-spacing:5.076000px;}
.wsd{word-spacing:5.088000px;}
.ws1d{word-spacing:5.130000px;}
.ws62{word-spacing:5.238000px;}
.ws27{word-spacing:5.400000px;}
.ws7f{word-spacing:5.454000px;}
.ws58{word-spacing:5.508000px;}
.ws6e{word-spacing:5.616000px;}
.ws53{word-spacing:5.670000px;}
.wsa3{word-spacing:5.886000px;}
.ws7d{word-spacing:5.994000px;}
.ws93{word-spacing:6.102000px;}
.ws7{word-spacing:6.144000px;}
.ws97{word-spacing:6.156000px;}
.ws32{word-spacing:6.210000px;}
.ws64{word-spacing:6.318000px;}
.ws29{word-spacing:6.426000px;}
.ws65{word-spacing:6.534000px;}
.wsc0{word-spacing:6.588000px;}
.wsaf{word-spacing:6.642000px;}
.ws2c{word-spacing:6.696000px;}
.ws74{word-spacing:6.858000px;}
.ws1b{word-spacing:6.912000px;}
.ws16{word-spacing:6.966000px;}
.wsbe{word-spacing:7.020000px;}
.ws69{word-spacing:7.182000px;}
.wsb1{word-spacing:7.344000px;}
.wsa0{word-spacing:7.560000px;}
.wsb5{word-spacing:7.668000px;}
.ws81{word-spacing:7.776000px;}
.ws7c{word-spacing:7.830000px;}
.wsc2{word-spacing:7.920000px;}
.ws26{word-spacing:7.992000px;}
.ws50{word-spacing:8.208000px;}
.wsb4{word-spacing:8.316000px;}
.ws18{word-spacing:8.424000px;}
.ws67{word-spacing:8.478000px;}
.wsb0{word-spacing:8.532000px;}
.wsbd{word-spacing:8.856000px;}
.ws25{word-spacing:8.910000px;}
.ws9e{word-spacing:8.964000px;}
.wsc1{word-spacing:9.072000px;}
.ws6b{word-spacing:9.666000px;}
.ws47{word-spacing:9.774000px;}
.wsb7{word-spacing:10.152000px;}
.wsb8{word-spacing:10.206000px;}
.ws52{word-spacing:10.368000px;}
.wsa1{word-spacing:10.476000px;}
.wsb6{word-spacing:10.530000px;}
.wsb9{word-spacing:10.584000px;}
.wscf{word-spacing:10.638000px;}
.wsc5{word-spacing:10.800000px;}
.ws92{word-spacing:11.178000px;}
.wscc{word-spacing:11.448000px;}
.ws7b{word-spacing:11.502000px;}
.wsd3{word-spacing:11.880000px;}
.wsce{word-spacing:11.934000px;}
.wsb3{word-spacing:12.582000px;}
.wsd2{word-spacing:12.636000px;}
.wsca{word-spacing:12.906000px;}
.ws6a{word-spacing:13.878000px;}
.ws98{word-spacing:17.874000px;}
.wsd1{word-spacing:24.030000px;}
.ws5f{word-spacing:32.400000px;}
.wsc3{word-spacing:33.912000px;}
._a{margin-left:-892.800600px;}
._b{margin-left:-32.404200px;}
._12{margin-left:-26.518800px;}
._4{margin-left:-18.734400px;}
._13{margin-left:-7.462200px;}
._10{margin-left:-6.449400px;}
._9{margin-left:-5.303400px;}
._6{margin-left:-4.128000px;}
._0{margin-left:-2.238000px;}
._1{margin-left:-1.068000px;}
._7{width:1.890600px;}
._11{width:3.072600px;}
._3{width:4.179600px;}
._2{width:6.139800px;}
._8{width:32.418000px;}
._5{width:33.520008px;}
._d{width:48.505200px;}
._f{width:49.531200px;}
._c{width:51.529200px;}
._e{width:64.543200px;}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(90,87,88);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:20.988000px;}
.fs7{font-size:31.482000px;}
.fs9{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:46.593600px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:79.920000px;}
.y0{bottom:0.000000px;}
.y29{bottom:66.668850px;}
.y28{bottom:67.121250px;}
.y27{bottom:106.299150px;}
.y8f{bottom:109.296300px;}
.ye6{bottom:109.458750px;}
.ybe{bottom:113.866650px;}
.y5f{bottom:120.414750px;}
.y26{bottom:120.699150px;}
.yca{bottom:122.222250px;}
.ye5{bottom:125.658900px;}
.ybd{bottom:130.066650px;}
.y5e{bottom:136.614750px;}
.ye4{bottom:141.858900px;}
.ybc{bottom:146.266800px;}
.y111{bottom:148.482450px;}
.y5d{bottom:152.814750px;}
.ye3{bottom:158.058900px;}
.y8e{bottom:158.838450px;}
.y144{bottom:160.895550px;}
.y25{bottom:164.116650px;}
.y110{bottom:164.682450px;}
.y5c{bottom:169.014750px;}
.y24{bottom:174.045600px;}
.y8d{bottom:175.038450px;}
.ybb{bottom:179.474550px;}
.y10f{bottom:180.882450px;}
.y143{bottom:181.347600px;}
.y5b{bottom:185.214750px;}
.y23{bottom:187.842600px;}
.y8c{bottom:191.238300px;}
.ye2{bottom:191.266800px;}
.yba{bottom:195.674550px;}
.y10e{bottom:197.082450px;}
.y5a{bottom:201.414750px;}
.y142{bottom:201.799500px;}
.y8b{bottom:207.438300px;}
.ye1{bottom:207.466800px;}
.yc9{bottom:211.874700px;}
.y10d{bottom:213.282450px;}
.y59{bottom:217.614750px;}
.y141{bottom:217.999500px;}
.y8a{bottom:223.638300px;}
.ye0{bottom:223.666650px;}
.yc8{bottom:228.074550px;}
.yb9{bottom:228.882450px;}
.y10c{bottom:229.482450px;}
.y58{bottom:233.814750px;}
.y140{bottom:234.199500px;}
.ydf{bottom:239.866650px;}
.y22{bottom:240.892800px;}
.y89{bottom:244.090350px;}
.yb8{bottom:245.082450px;}
.y10b{bottom:245.682450px;}
.y13f{bottom:254.651400px;}
.yde{bottom:256.066650px;}
.y21{bottom:257.092650px;}
.yb7{bottom:261.282450px;}
.y10a{bottom:261.882450px;}
.y57{bottom:267.022650px;}
.y13e{bottom:270.851400px;}
.ydd{bottom:272.266800px;}
.y20{bottom:273.292800px;}
.yb6{bottom:277.482450px;}
.y88{bottom:279.098250px;}
.y56{bottom:283.222650px;}
.y13d{bottom:287.051550px;}
.ydc{bottom:288.466800px;}
.y1f{bottom:289.492800px;}
.yb5{bottom:293.682450px;}
.y109{bottom:295.090350px;}
.y87{bottom:295.298250px;}
.ydb{bottom:304.666650px;}
.y1e{bottom:305.692800px;}
.y13c{bottom:307.503450px;}
.yb4{bottom:309.882450px;}
.y108{bottom:311.215350px;}
.y86{bottom:311.498250px;}
.y55{bottom:316.430550px;}
.yda{bottom:320.866650px;}
.y1d{bottom:321.892800px;}
.y13b{bottom:323.703450px;}
.yb3{bottom:326.082450px;}
.y107{bottom:327.340350px;}
.y85{bottom:327.698250px;}
.y54{bottom:332.630550px;}
.y1c{bottom:338.092800px;}
.yb2{bottom:342.282450px;}
.y84{bottom:343.898250px;}
.y13a{bottom:344.155500px;}
.y53{bottom:348.830400px;}
.yd9{bottom:354.074550px;}
.y1b{bottom:354.292800px;}
.yb1{bottom:358.482450px;}
.y83{bottom:360.098250px;}
.y139{bottom:360.355350px;}
.y106{bottom:360.473250px;}
.y52{bottom:365.030400px;}
.yd8{bottom:370.274550px;}
.y1a{bottom:370.492800px;}
.yb0{bottom:374.682450px;}
.y105{bottom:376.673250px;}
.y138{bottom:380.807400px;}
.y51{bottom:381.230550px;}
.yd7{bottom:386.474550px;}
.yc7{bottom:390.882450px;}
.y104{bottom:392.873250px;}
.y82{bottom:393.306150px;}
.y137{bottom:397.007400px;}
.y50{bottom:397.430550px;}
.y19{bottom:403.700700px;}
.yc6{bottom:407.082450px;}
.yaf{bottom:407.890350px;}
.y103{bottom:409.073250px;}
.y81{bottom:409.506150px;}
.y136{bottom:413.207400px;}
.y4f{bottom:413.630550px;}
.yd6{bottom:419.682450px;}
.y102{bottom:425.273250px;}
.y80{bottom:425.706000px;}
.y135{bottom:433.659300px;}
.yc5{bottom:440.290350px;}
.yae{bottom:441.098250px;}
.y101{bottom:441.473250px;}
.y7f{bottom:441.906150px;}
.y4e{bottom:446.838300px;}
.y134{bottom:449.859300px;}
.yad{bottom:457.298250px;}
.y100{bottom:457.673250px;}
.y7e{bottom:458.106150px;}
.y4d{bottom:463.038450px;}
.y133{bottom:470.311350px;}
.yac{bottom:473.498250px;}
.yff{bottom:473.873250px;}
.y7d{bottom:474.306150px;}
.y4c{bottom:479.238300px;}
.y132{bottom:486.511350px;}
.yab{bottom:489.698250px;}
.y7c{bottom:490.506150px;}
.y4b{bottom:495.438300px;}
.y131{bottom:502.711350px;}
.yaa{bottom:505.898250px;}
.y7b{bottom:506.706000px;}
.yfe{bottom:507.081000px;}
.y18{bottom:511.332150px;}
.ya9{bottom:522.098250px;}
.y7a{bottom:522.906150px;}
.y130{bottom:523.163250px;}
.yfd{bottom:523.281150px;}
.y4a{bottom:528.646200px;}
.ya8{bottom:538.298250px;}
.y17{bottom:538.488000px;}
.y12f{bottom:539.363250px;}
.yfc{bottom:539.481150px;}
.y49{bottom:544.846200px;}
.ya7{bottom:554.498250px;}
.y16{bottom:554.988000px;}
.y12e{bottom:555.563250px;}
.yfb{bottom:555.681150px;}
.y79{bottom:556.113900px;}
.y48{bottom:561.046200px;}
.ya6{bottom:570.698250px;}
.y15{bottom:571.488000px;}
.y78{bottom:572.313900px;}
.y12d{bottom:576.015300px;}
.ya5{bottom:586.898250px;}
.yd5{bottom:587.706000px;}
.y14{bottom:587.988000px;}
.y77{bottom:588.514050px;}
.yfa{bottom:588.889050px;}
.y47{bottom:594.254100px;}
.y12c{bottom:596.467200px;}
.ya4{bottom:603.098250px;}
.yc4{bottom:603.906150px;}
.y13{bottom:604.488000px;}
.y76{bottom:604.713900px;}
.yf9{bottom:605.088900px;}
.y46{bottom:610.454100px;}
.y12b{bottom:612.667200px;}
.ya3{bottom:619.298250px;}
.y75{bottom:620.913900px;}
.y12{bottom:620.988000px;}
.yf8{bottom:621.288900px;}
.y45{bottom:626.654100px;}
.y12a{bottom:633.119250px;}
.ya2{bottom:635.498250px;}
.y74{bottom:637.113900px;}
.y11{bottom:637.488000px;}
.yf7{bottom:637.488900px;}
.y44{bottom:642.854100px;}
.ya1{bottom:651.698250px;}
.y73{bottom:653.313900px;}
.y129{bottom:653.571150px;}
.yf6{bottom:653.688900px;}
.y43{bottom:659.054100px;}
.ya0{bottom:667.898250px;}
.y72{bottom:669.514050px;}
.y128{bottom:669.771150px;}
.yf5{bottom:669.889050px;}
.y10{bottom:679.499850px;}
.y42{bottom:679.506150px;}
.yd4{bottom:685.713900px;}
.y127{bottom:685.971150px;}
.yf4{bottom:686.088900px;}
.y9f{bottom:701.106150px;}
.yd3{bottom:701.913900px;}
.yf3{bottom:702.288900px;}
.y71{bottom:702.721800px;}
.y126{bottom:706.423200px;}
.yf{bottom:706.655700px;}
.y41{bottom:714.514050px;}
.yd2{bottom:718.113900px;}
.yf2{bottom:718.488900px;}
.y70{bottom:718.921800px;}
.y125{bottom:722.623050px;}
.ye{bottom:723.155700px;}
.y9e{bottom:734.313900px;}
.yf1{bottom:734.688900px;}
.y6f{bottom:735.121800px;}
.yd{bottom:739.655700px;}
.y124{bottom:743.075100px;}
.y9d{bottom:750.514050px;}
.y6e{bottom:751.321800px;}
.yc{bottom:756.155700px;}
.y123{bottom:759.275100px;}
.y9c{bottom:766.713900px;}
.y6d{bottom:767.521800px;}
.yf0{bottom:767.896800px;}
.y40{bottom:768.329700px;}
.yb{bottom:772.655700px;}
.y122{bottom:779.727150px;}
.y9b{bottom:782.913900px;}
.y6c{bottom:783.721800px;}
.yef{bottom:784.096800px;}
.y3f{bottom:784.529700px;}
.ya{bottom:789.155700px;}
.y121{bottom:795.927000px;}
.y9a{bottom:799.114050px;}
.y6b{bottom:799.921800px;}
.yee{bottom:800.296800px;}
.y3e{bottom:800.729700px;}
.y120{bottom:812.127000px;}
.y99{bottom:815.314050px;}
.y6a{bottom:816.121800px;}
.yed{bottom:816.496800px;}
.y3d{bottom:816.929700px;}
.y156{bottom:824.724750px;}
.y11f{bottom:828.327000px;}
.y98{bottom:831.514050px;}
.y69{bottom:832.321800px;}
.yec{bottom:832.696800px;}
.y3c{bottom:833.129700px;}
.y155{bottom:840.924900px;}
.y97{bottom:847.713900px;}
.y11e{bottom:848.779050px;}
.y3b{bottom:849.329700px;}
.y154{bottom:857.124900px;}
.y11d{bottom:864.979050px;}
.y68{bottom:865.529700px;}
.yeb{bottom:865.904700px;}
.y153{bottom:877.576800px;}
.y96{bottom:880.921800px;}
.y67{bottom:881.729700px;}
.yea{bottom:882.029700px;}
.y3a{bottom:882.537600px;}
.y11c{bottom:885.431100px;}
.y66{bottom:897.929700px;}
.y152{bottom:898.028850px;}
.ye9{bottom:898.154700px;}
.y39{bottom:898.737600px;}
.y11b{bottom:901.630950px;}
.y65{bottom:914.129700px;}
.y151{bottom:914.228700px;}
.ye8{bottom:914.279700px;}
.y38{bottom:914.937600px;}
.y11a{bottom:922.083000px;}
.y9{bottom:925.702950px;}
.y95{bottom:930.329700px;}
.ye7{bottom:930.404700px;}
.y150{bottom:930.428850px;}
.y37{bottom:931.137600px;}
.y119{bottom:942.534900px;}
.y8{bottom:943.702950px;}
.y94{bottom:946.529700px;}
.y36{bottom:947.337600px;}
.y14f{bottom:950.880750px;}
.y118{bottom:958.734900px;}
.y93{bottom:962.729700px;}
.y64{bottom:963.537600px;}
.y7{bottom:965.955000px;}
.y14e{bottom:967.080900px;}
.y117{bottom:974.935050px;}
.yc3{bottom:978.929700px;}
.y63{bottom:979.737600px;}
.y35{bottom:980.545500px;}
.y6{bottom:983.955000px;}
.y14d{bottom:987.532800px;}
.yd1{bottom:995.129550px;}
.yc2{bottom:995.129700px;}
.y62{bottom:995.937600px;}
.y34{bottom:996.745350px;}
.y14c{bottom:1003.732800px;}
.y116{bottom:1008.142800px;}
.yc1{bottom:1011.329700px;}
.y61{bottom:1012.137600px;}
.y33{bottom:1012.945500px;}
.y14b{bottom:1024.184850px;}
.yc0{bottom:1027.529700px;}
.yd0{bottom:1028.337450px;}
.y60{bottom:1028.337600px;}
.y32{bottom:1029.145500px;}
.y5{bottom:1035.970800px;}
.y14a{bottom:1040.384700px;}
.ybf{bottom:1043.729700px;}
.ycf{bottom:1044.537450px;}
.y92{bottom:1044.537600px;}
.y31{bottom:1045.345500px;}
.y149{bottom:1056.584700px;}
.yce{bottom:1060.737450px;}
.y91{bottom:1060.737600px;}
.y30{bottom:1061.545500px;}
.y115{bottom:1061.958600px;}
.ycd{bottom:1076.937450px;}
.y90{bottom:1076.937600px;}
.y148{bottom:1077.036750px;}
.y2f{bottom:1077.745350px;}
.y147{bottom:1093.236750px;}
.y2e{bottom:1093.945500px;}
.y114{bottom:1095.166500px;}
.y146{bottom:1109.436750px;}
.ycc{bottom:1110.145350px;}
.y2d{bottom:1110.145500px;}
.y113{bottom:1111.291500px;}
.y145{bottom:1125.636750px;}
.ycb{bottom:1126.345350px;}
.y2c{bottom:1126.345500px;}
.y112{bottom:1127.416500px;}
.y4{bottom:1135.984200px;}
.y3{bottom:1148.584200px;}
.y2{bottom:1161.184200px;}
.y1{bottom:1178.036250px;}
.y2b{bottom:1189.161150px;}
.y2a{bottom:1205.361150px;}
.hc{height:16.496568px;}
.hd{height:28.296000px;}
.h3{height:30.618000px;}
.h8{height:35.136000px;}
.he{height:35.472000px;}
.h6{height:37.728000px;}
.hf{height:40.554000px;}
.h10{height:41.026824px;}
.hb{height:42.444000px;}
.ha{height:42.726852px;}
.h7{height:43.680000px;}
.h5{height:43.920000px;}
.h2{height:54.900000px;}
.h9{height:60.390000px;}
.h4{height:60.533141px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.299150px;}
.xb{left:119.055150px;}
.xa{left:127.559100px;}
.x11{left:146.692950px;}
.x10{left:170.078700px;}
.xf{left:439.861050px;}
.x1{left:545.523900px;}
.xd{left:568.142850px;}
.xe{left:602.748150px;}
.x4{left:607.201950px;}
.x9{left:617.012850px;}
.x7{left:625.593000px;}
.x6{left:636.543450px;}
.x2{left:664.667550px;}
.x3{left:703.927350px;}
.x8{left:712.141500px;}
.xc{left:786.614100px;}
@media print{
.v3{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:23.656000pt;}
.ls1{letter-spacing:-6.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.240000pt;}
.ls3{letter-spacing:7.032000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws1{word-spacing:-11.861333pt;}
.ws0{word-spacing:-10.378667pt;}
.ws4{word-spacing:-10.240000pt;}
.ws2{word-spacing:-7.779552pt;}
.ws8d{word-spacing:-5.040000pt;}
.ws9d{word-spacing:-4.752000pt;}
.ws66{word-spacing:-4.128000pt;}
.wsd0{word-spacing:-4.032000pt;}
.ws86{word-spacing:-3.648000pt;}
.ws4a{word-spacing:-3.264000pt;}
.ws34{word-spacing:-3.072000pt;}
.ws3e{word-spacing:-3.024000pt;}
.ws87{word-spacing:-2.880000pt;}
.ws57{word-spacing:-2.832000pt;}
.ws8a{word-spacing:-2.784000pt;}
.ws9a{word-spacing:-2.688000pt;}
.ws55{word-spacing:-2.592000pt;}
.ws61{word-spacing:-2.544000pt;}
.ws72{word-spacing:-2.496000pt;}
.ws48{word-spacing:-2.448000pt;}
.ws68{word-spacing:-2.352000pt;}
.ws4f{word-spacing:-2.304000pt;}
.ws94{word-spacing:-2.256000pt;}
.ws35{word-spacing:-2.208000pt;}
.ws6d{word-spacing:-2.160000pt;}
.ws8c{word-spacing:-2.064000pt;}
.wsae{word-spacing:-2.048000pt;}
.ws38{word-spacing:-2.016000pt;}
.ws5b{word-spacing:-1.968000pt;}
.ws12{word-spacing:-1.920000pt;}
.ws7e{word-spacing:-1.872000pt;}
.ws17{word-spacing:-1.776000pt;}
.wsa{word-spacing:-1.706667pt;}
.wsa5{word-spacing:-1.680000pt;}
.ws3f{word-spacing:-1.632000pt;}
.ws45{word-spacing:-1.488000pt;}
.wsab{word-spacing:-1.365333pt;}
.ws5a{word-spacing:-1.344000pt;}
.ws8e{word-spacing:-1.296000pt;}
.ws54{word-spacing:-1.200000pt;}
.ws28{word-spacing:-1.152000pt;}
.ws5d{word-spacing:-1.104000pt;}
.ws4b{word-spacing:-1.056000pt;}
.ws60{word-spacing:-1.008000pt;}
.ws1e{word-spacing:-0.960000pt;}
.ws8{word-spacing:-0.938667pt;}
.ws3b{word-spacing:-0.912000pt;}
.wsad{word-spacing:-0.896000pt;}
.ws46{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.720000pt;}
.wsac{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.624000pt;}
.ws44{word-spacing:-0.480000pt;}
.ws3a{word-spacing:-0.432000pt;}
.ws8f{word-spacing:-0.336000pt;}
.ws91{word-spacing:-0.288000pt;}
.ws3c{word-spacing:-0.240000pt;}
.wsb{word-spacing:-0.170667pt;}
.ws96{word-spacing:-0.144000pt;}
.ws51{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.048000pt;}
.ws19{word-spacing:-0.032000pt;}
.ws6{word-spacing:0.000000pt;}
.ws42{word-spacing:0.048000pt;}
.ws23{word-spacing:0.096000pt;}
.ws30{word-spacing:0.144000pt;}
.ws3d{word-spacing:0.192000pt;}
.ws90{word-spacing:0.240000pt;}
.ws95{word-spacing:0.288000pt;}
.ws1f{word-spacing:0.336000pt;}
.wscd{word-spacing:0.384000pt;}
.ws8b{word-spacing:0.432000pt;}
.wsa4{word-spacing:0.528000pt;}
.ws40{word-spacing:0.576000pt;}
.ws2e{word-spacing:0.624000pt;}
.ws79{word-spacing:0.672000pt;}
.wsc7{word-spacing:0.720000pt;}
.ws84{word-spacing:0.768000pt;}
.ws1a{word-spacing:0.810667pt;}
.ws88{word-spacing:0.816000pt;}
.ws70{word-spacing:0.960000pt;}
.ws33{word-spacing:1.008000pt;}
.ws14{word-spacing:1.056000pt;}
.ws59{word-spacing:1.104000pt;}
.ws9{word-spacing:1.109333pt;}
.ws75{word-spacing:1.200000pt;}
.ws10{word-spacing:1.237333pt;}
.ws21{word-spacing:1.248000pt;}
.wsc6{word-spacing:1.296000pt;}
.wsf{word-spacing:1.322667pt;}
.ws41{word-spacing:1.344000pt;}
.ws4c{word-spacing:1.392000pt;}
.ws2a{word-spacing:1.440000pt;}
.ws39{word-spacing:1.488000pt;}
.ws5c{word-spacing:1.536000pt;}
.ws9b{word-spacing:1.584000pt;}
.ws4d{word-spacing:1.632000pt;}
.ws5e{word-spacing:1.728000pt;}
.ws77{word-spacing:1.824000pt;}
.ws73{word-spacing:1.872000pt;}
.ws76{word-spacing:1.920000pt;}
.ws2b{word-spacing:1.968000pt;}
.ws43{word-spacing:2.016000pt;}
.ws6f{word-spacing:2.064000pt;}
.ws82{word-spacing:2.112000pt;}
.wsa9{word-spacing:2.160000pt;}
.wsba{word-spacing:2.208000pt;}
.wsa8{word-spacing:2.256000pt;}
.wsb2{word-spacing:2.304000pt;}
.ws9f{word-spacing:2.352000pt;}
.ws2d{word-spacing:2.448000pt;}
.ws22{word-spacing:2.496000pt;}
.ws89{word-spacing:2.544000pt;}
.ws85{word-spacing:2.592000pt;}
.ws63{word-spacing:2.640000pt;}
.wse{word-spacing:2.688000pt;}
.ws49{word-spacing:2.736000pt;}
.ws78{word-spacing:2.784000pt;}
.wsbc{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.832000pt;}
.wsc4{word-spacing:2.880000pt;}
.ws9c{word-spacing:2.928000pt;}
.ws20{word-spacing:2.976000pt;}
.wsc9{word-spacing:3.024000pt;}
.ws36{word-spacing:3.120000pt;}
.ws7a{word-spacing:3.168000pt;}
.wsaa{word-spacing:3.216000pt;}
.ws56{word-spacing:3.264000pt;}
.ws4e{word-spacing:3.360000pt;}
.ws71{word-spacing:3.408000pt;}
.ws15{word-spacing:3.456000pt;}
.ws24{word-spacing:3.552000pt;}
.ws83{word-spacing:3.600000pt;}
.ws80{word-spacing:3.648000pt;}
.wsa6{word-spacing:3.696000pt;}
.ws1c{word-spacing:3.744000pt;}
.wsc8{word-spacing:3.792000pt;}
.wsa7{word-spacing:3.888000pt;}
.wsbf{word-spacing:3.984000pt;}
.ws11{word-spacing:4.032000pt;}
.wsbb{word-spacing:4.053333pt;}
.wscb{word-spacing:4.080000pt;}
.ws99{word-spacing:4.128000pt;}
.wsc{word-spacing:4.224000pt;}
.ws6c{word-spacing:4.320000pt;}
.wsa2{word-spacing:4.464000pt;}
.ws37{word-spacing:4.512000pt;}
.wsd{word-spacing:4.522667pt;}
.ws1d{word-spacing:4.560000pt;}
.ws62{word-spacing:4.656000pt;}
.ws27{word-spacing:4.800000pt;}
.ws7f{word-spacing:4.848000pt;}
.ws58{word-spacing:4.896000pt;}
.ws6e{word-spacing:4.992000pt;}
.ws53{word-spacing:5.040000pt;}
.wsa3{word-spacing:5.232000pt;}
.ws7d{word-spacing:5.328000pt;}
.ws93{word-spacing:5.424000pt;}
.ws7{word-spacing:5.461333pt;}
.ws97{word-spacing:5.472000pt;}
.ws32{word-spacing:5.520000pt;}
.ws64{word-spacing:5.616000pt;}
.ws29{word-spacing:5.712000pt;}
.ws65{word-spacing:5.808000pt;}
.wsc0{word-spacing:5.856000pt;}
.wsaf{word-spacing:5.904000pt;}
.ws2c{word-spacing:5.952000pt;}
.ws74{word-spacing:6.096000pt;}
.ws1b{word-spacing:6.144000pt;}
.ws16{word-spacing:6.192000pt;}
.wsbe{word-spacing:6.240000pt;}
.ws69{word-spacing:6.384000pt;}
.wsb1{word-spacing:6.528000pt;}
.wsa0{word-spacing:6.720000pt;}
.wsb5{word-spacing:6.816000pt;}
.ws81{word-spacing:6.912000pt;}
.ws7c{word-spacing:6.960000pt;}
.wsc2{word-spacing:7.040000pt;}
.ws26{word-spacing:7.104000pt;}
.ws50{word-spacing:7.296000pt;}
.wsb4{word-spacing:7.392000pt;}
.ws18{word-spacing:7.488000pt;}
.ws67{word-spacing:7.536000pt;}
.wsb0{word-spacing:7.584000pt;}
.wsbd{word-spacing:7.872000pt;}
.ws25{word-spacing:7.920000pt;}
.ws9e{word-spacing:7.968000pt;}
.wsc1{word-spacing:8.064000pt;}
.ws6b{word-spacing:8.592000pt;}
.ws47{word-spacing:8.688000pt;}
.wsb7{word-spacing:9.024000pt;}
.wsb8{word-spacing:9.072000pt;}
.ws52{word-spacing:9.216000pt;}
.wsa1{word-spacing:9.312000pt;}
.wsb6{word-spacing:9.360000pt;}
.wsb9{word-spacing:9.408000pt;}
.wscf{word-spacing:9.456000pt;}
.wsc5{word-spacing:9.600000pt;}
.ws92{word-spacing:9.936000pt;}
.wscc{word-spacing:10.176000pt;}
.ws7b{word-spacing:10.224000pt;}
.wsd3{word-spacing:10.560000pt;}
.wsce{word-spacing:10.608000pt;}
.wsb3{word-spacing:11.184000pt;}
.wsd2{word-spacing:11.232000pt;}
.wsca{word-spacing:11.472000pt;}
.ws6a{word-spacing:12.336000pt;}
.ws98{word-spacing:15.888000pt;}
.wsd1{word-spacing:21.360000pt;}
.ws5f{word-spacing:28.800000pt;}
.wsc3{word-spacing:30.144000pt;}
._a{margin-left:-793.600533pt;}
._b{margin-left:-28.803733pt;}
._12{margin-left:-23.572267pt;}
._4{margin-left:-16.652800pt;}
._13{margin-left:-6.633067pt;}
._10{margin-left:-5.732800pt;}
._9{margin-left:-4.714133pt;}
._6{margin-left:-3.669333pt;}
._0{margin-left:-1.989333pt;}
._1{margin-left:-0.949333pt;}
._7{width:1.680533pt;}
._11{width:2.731200pt;}
._3{width:3.715200pt;}
._2{width:5.457600pt;}
._8{width:28.816000pt;}
._5{width:29.795563pt;}
._d{width:43.115733pt;}
._f{width:44.027733pt;}
._c{width:45.803733pt;}
._e{width:57.371733pt;}
.fs8{font-size:18.656000pt;}
.fs7{font-size:27.984000pt;}
.fs9{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:41.416533pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:71.040000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:59.261200pt;}
.y28{bottom:59.663333pt;}
.y27{bottom:94.488133pt;}
.y8f{bottom:97.152267pt;}
.ye6{bottom:97.296667pt;}
.ybe{bottom:101.214800pt;}
.y5f{bottom:107.035333pt;}
.y26{bottom:107.288133pt;}
.yca{bottom:108.642000pt;}
.ye5{bottom:111.696800pt;}
.ybd{bottom:115.614800pt;}
.y5e{bottom:121.435333pt;}
.ye4{bottom:126.096800pt;}
.ybc{bottom:130.014933pt;}
.y111{bottom:131.984400pt;}
.y5d{bottom:135.835333pt;}
.ye3{bottom:140.496800pt;}
.y8e{bottom:141.189733pt;}
.y144{bottom:143.018267pt;}
.y25{bottom:145.881467pt;}
.y110{bottom:146.384400pt;}
.y5c{bottom:150.235333pt;}
.y24{bottom:154.707200pt;}
.y8d{bottom:155.589733pt;}
.ybb{bottom:159.532933pt;}
.y10f{bottom:160.784400pt;}
.y143{bottom:161.197867pt;}
.y5b{bottom:164.635333pt;}
.y23{bottom:166.971200pt;}
.y8c{bottom:169.989600pt;}
.ye2{bottom:170.014933pt;}
.yba{bottom:173.932933pt;}
.y10e{bottom:175.184400pt;}
.y5a{bottom:179.035333pt;}
.y142{bottom:179.377333pt;}
.y8b{bottom:184.389600pt;}
.ye1{bottom:184.414933pt;}
.yc9{bottom:188.333067pt;}
.y10d{bottom:189.584400pt;}
.y59{bottom:193.435333pt;}
.y141{bottom:193.777333pt;}
.y8a{bottom:198.789600pt;}
.ye0{bottom:198.814800pt;}
.yc8{bottom:202.732933pt;}
.yb9{bottom:203.451067pt;}
.y10c{bottom:203.984400pt;}
.y58{bottom:207.835333pt;}
.y140{bottom:208.177333pt;}
.ydf{bottom:213.214800pt;}
.y22{bottom:214.126933pt;}
.y89{bottom:216.969200pt;}
.yb8{bottom:217.851067pt;}
.y10b{bottom:218.384400pt;}
.y13f{bottom:226.356800pt;}
.yde{bottom:227.614800pt;}
.y21{bottom:228.526800pt;}
.yb7{bottom:232.251067pt;}
.y10a{bottom:232.784400pt;}
.y57{bottom:237.353467pt;}
.y13e{bottom:240.756800pt;}
.ydd{bottom:242.014933pt;}
.y20{bottom:242.926933pt;}
.yb6{bottom:246.651067pt;}
.y88{bottom:248.087333pt;}
.y56{bottom:251.753467pt;}
.y13d{bottom:255.156933pt;}
.ydc{bottom:256.414933pt;}
.y1f{bottom:257.326933pt;}
.yb5{bottom:261.051067pt;}
.y109{bottom:262.302533pt;}
.y87{bottom:262.487333pt;}
.ydb{bottom:270.814800pt;}
.y1e{bottom:271.726933pt;}
.y13c{bottom:273.336400pt;}
.yb4{bottom:275.451067pt;}
.y108{bottom:276.635867pt;}
.y86{bottom:276.887333pt;}
.y55{bottom:281.271600pt;}
.yda{bottom:285.214800pt;}
.y1d{bottom:286.126933pt;}
.y13b{bottom:287.736400pt;}
.yb3{bottom:289.851067pt;}
.y107{bottom:290.969200pt;}
.y85{bottom:291.287333pt;}
.y54{bottom:295.671600pt;}
.y1c{bottom:300.526933pt;}
.yb2{bottom:304.251067pt;}
.y84{bottom:305.687333pt;}
.y13a{bottom:305.916000pt;}
.y53{bottom:310.071467pt;}
.yd9{bottom:314.732933pt;}
.y1b{bottom:314.926933pt;}
.yb1{bottom:318.651067pt;}
.y83{bottom:320.087333pt;}
.y139{bottom:320.315867pt;}
.y106{bottom:320.420667pt;}
.y52{bottom:324.471467pt;}
.yd8{bottom:329.132933pt;}
.y1a{bottom:329.326933pt;}
.yb0{bottom:333.051067pt;}
.y105{bottom:334.820667pt;}
.y138{bottom:338.495467pt;}
.y51{bottom:338.871600pt;}
.yd7{bottom:343.532933pt;}
.yc7{bottom:347.451067pt;}
.y104{bottom:349.220667pt;}
.y82{bottom:349.605467pt;}
.y137{bottom:352.895467pt;}
.y50{bottom:353.271600pt;}
.y19{bottom:358.845067pt;}
.yc6{bottom:361.851067pt;}
.yaf{bottom:362.569200pt;}
.y103{bottom:363.620667pt;}
.y81{bottom:364.005467pt;}
.y136{bottom:367.295467pt;}
.y4f{bottom:367.671600pt;}
.yd6{bottom:373.051067pt;}
.y102{bottom:378.020667pt;}
.y80{bottom:378.405333pt;}
.y135{bottom:385.474933pt;}
.yc5{bottom:391.369200pt;}
.yae{bottom:392.087333pt;}
.y101{bottom:392.420667pt;}
.y7f{bottom:392.805467pt;}
.y4e{bottom:397.189600pt;}
.y134{bottom:399.874933pt;}
.yad{bottom:406.487333pt;}
.y100{bottom:406.820667pt;}
.y7e{bottom:407.205467pt;}
.y4d{bottom:411.589733pt;}
.y133{bottom:418.054533pt;}
.yac{bottom:420.887333pt;}
.yff{bottom:421.220667pt;}
.y7d{bottom:421.605467pt;}
.y4c{bottom:425.989600pt;}
.y132{bottom:432.454533pt;}
.yab{bottom:435.287333pt;}
.y7c{bottom:436.005467pt;}
.y4b{bottom:440.389600pt;}
.y131{bottom:446.854533pt;}
.yaa{bottom:449.687333pt;}
.y7b{bottom:450.405333pt;}
.yfe{bottom:450.738667pt;}
.y18{bottom:454.517467pt;}
.ya9{bottom:464.087333pt;}
.y7a{bottom:464.805467pt;}
.y130{bottom:465.034000pt;}
.yfd{bottom:465.138800pt;}
.y4a{bottom:469.907733pt;}
.ya8{bottom:478.487333pt;}
.y17{bottom:478.656000pt;}
.y12f{bottom:479.434000pt;}
.yfc{bottom:479.538800pt;}
.y49{bottom:484.307733pt;}
.ya7{bottom:492.887333pt;}
.y16{bottom:493.322667pt;}
.y12e{bottom:493.834000pt;}
.yfb{bottom:493.938800pt;}
.y79{bottom:494.323467pt;}
.y48{bottom:498.707733pt;}
.ya6{bottom:507.287333pt;}
.y15{bottom:507.989333pt;}
.y78{bottom:508.723467pt;}
.y12d{bottom:512.013600pt;}
.ya5{bottom:521.687333pt;}
.yd5{bottom:522.405333pt;}
.y14{bottom:522.656000pt;}
.y77{bottom:523.123600pt;}
.yfa{bottom:523.456933pt;}
.y47{bottom:528.225867pt;}
.y12c{bottom:530.193067pt;}
.ya4{bottom:536.087333pt;}
.yc4{bottom:536.805467pt;}
.y13{bottom:537.322667pt;}
.y76{bottom:537.523467pt;}
.yf9{bottom:537.856800pt;}
.y46{bottom:542.625867pt;}
.y12b{bottom:544.593067pt;}
.ya3{bottom:550.487333pt;}
.y75{bottom:551.923467pt;}
.y12{bottom:551.989333pt;}
.yf8{bottom:552.256800pt;}
.y45{bottom:557.025867pt;}
.y12a{bottom:562.772667pt;}
.ya2{bottom:564.887333pt;}
.y74{bottom:566.323467pt;}
.y11{bottom:566.656000pt;}
.yf7{bottom:566.656800pt;}
.y44{bottom:571.425867pt;}
.ya1{bottom:579.287333pt;}
.y73{bottom:580.723467pt;}
.y129{bottom:580.952133pt;}
.yf6{bottom:581.056800pt;}
.y43{bottom:585.825867pt;}
.ya0{bottom:593.687333pt;}
.y72{bottom:595.123600pt;}
.y128{bottom:595.352133pt;}
.yf5{bottom:595.456933pt;}
.y10{bottom:603.999867pt;}
.y42{bottom:604.005467pt;}
.yd4{bottom:609.523467pt;}
.y127{bottom:609.752133pt;}
.yf4{bottom:609.856800pt;}
.y9f{bottom:623.205467pt;}
.yd3{bottom:623.923467pt;}
.yf3{bottom:624.256800pt;}
.y71{bottom:624.641600pt;}
.y126{bottom:627.931733pt;}
.yf{bottom:628.138400pt;}
.y41{bottom:635.123600pt;}
.yd2{bottom:638.323467pt;}
.yf2{bottom:638.656800pt;}
.y70{bottom:639.041600pt;}
.y125{bottom:642.331600pt;}
.ye{bottom:642.805067pt;}
.y9e{bottom:652.723467pt;}
.yf1{bottom:653.056800pt;}
.y6f{bottom:653.441600pt;}
.yd{bottom:657.471733pt;}
.y124{bottom:660.511200pt;}
.y9d{bottom:667.123600pt;}
.y6e{bottom:667.841600pt;}
.yc{bottom:672.138400pt;}
.y123{bottom:674.911200pt;}
.y9c{bottom:681.523467pt;}
.y6d{bottom:682.241600pt;}
.yf0{bottom:682.574933pt;}
.y40{bottom:682.959733pt;}
.yb{bottom:686.805067pt;}
.y122{bottom:693.090800pt;}
.y9b{bottom:695.923467pt;}
.y6c{bottom:696.641600pt;}
.yef{bottom:696.974933pt;}
.y3f{bottom:697.359733pt;}
.ya{bottom:701.471733pt;}
.y121{bottom:707.490667pt;}
.y9a{bottom:710.323600pt;}
.y6b{bottom:711.041600pt;}
.yee{bottom:711.374933pt;}
.y3e{bottom:711.759733pt;}
.y120{bottom:721.890667pt;}
.y99{bottom:724.723600pt;}
.y6a{bottom:725.441600pt;}
.yed{bottom:725.774933pt;}
.y3d{bottom:726.159733pt;}
.y156{bottom:733.088667pt;}
.y11f{bottom:736.290667pt;}
.y98{bottom:739.123600pt;}
.y69{bottom:739.841600pt;}
.yec{bottom:740.174933pt;}
.y3c{bottom:740.559733pt;}
.y155{bottom:747.488800pt;}
.y97{bottom:753.523467pt;}
.y11e{bottom:754.470267pt;}
.y3b{bottom:754.959733pt;}
.y154{bottom:761.888800pt;}
.y11d{bottom:768.870267pt;}
.y68{bottom:769.359733pt;}
.yeb{bottom:769.693067pt;}
.y153{bottom:780.068267pt;}
.y96{bottom:783.041600pt;}
.y67{bottom:783.759733pt;}
.yea{bottom:784.026400pt;}
.y3a{bottom:784.477867pt;}
.y11c{bottom:787.049867pt;}
.y66{bottom:798.159733pt;}
.y152{bottom:798.247867pt;}
.ye9{bottom:798.359733pt;}
.y39{bottom:798.877867pt;}
.y11b{bottom:801.449733pt;}
.y65{bottom:812.559733pt;}
.y151{bottom:812.647733pt;}
.ye8{bottom:812.693067pt;}
.y38{bottom:813.277867pt;}
.y11a{bottom:819.629333pt;}
.y9{bottom:822.847067pt;}
.y95{bottom:826.959733pt;}
.ye7{bottom:827.026400pt;}
.y150{bottom:827.047867pt;}
.y37{bottom:827.677867pt;}
.y119{bottom:837.808800pt;}
.y8{bottom:838.847067pt;}
.y94{bottom:841.359733pt;}
.y36{bottom:842.077867pt;}
.y14f{bottom:845.227333pt;}
.y118{bottom:852.208800pt;}
.y93{bottom:855.759733pt;}
.y64{bottom:856.477867pt;}
.y7{bottom:858.626667pt;}
.y14e{bottom:859.627467pt;}
.y117{bottom:866.608933pt;}
.yc3{bottom:870.159733pt;}
.y63{bottom:870.877867pt;}
.y35{bottom:871.596000pt;}
.y6{bottom:874.626667pt;}
.y14d{bottom:877.806933pt;}
.yd1{bottom:884.559600pt;}
.yc2{bottom:884.559733pt;}
.y62{bottom:885.277867pt;}
.y34{bottom:885.995867pt;}
.y14c{bottom:892.206933pt;}
.y116{bottom:896.126933pt;}
.yc1{bottom:898.959733pt;}
.y61{bottom:899.677867pt;}
.y33{bottom:900.396000pt;}
.y14b{bottom:910.386533pt;}
.yc0{bottom:913.359733pt;}
.yd0{bottom:914.077733pt;}
.y60{bottom:914.077867pt;}
.y32{bottom:914.796000pt;}
.y5{bottom:920.862933pt;}
.y14a{bottom:924.786400pt;}
.ybf{bottom:927.759733pt;}
.ycf{bottom:928.477733pt;}
.y92{bottom:928.477867pt;}
.y31{bottom:929.196000pt;}
.y149{bottom:939.186400pt;}
.yce{bottom:942.877733pt;}
.y91{bottom:942.877867pt;}
.y30{bottom:943.596000pt;}
.y115{bottom:943.963200pt;}
.ycd{bottom:957.277733pt;}
.y90{bottom:957.277867pt;}
.y148{bottom:957.366000pt;}
.y2f{bottom:957.995867pt;}
.y147{bottom:971.766000pt;}
.y2e{bottom:972.396000pt;}
.y114{bottom:973.481333pt;}
.y146{bottom:986.166000pt;}
.ycc{bottom:986.795867pt;}
.y2d{bottom:986.796000pt;}
.y113{bottom:987.814667pt;}
.y145{bottom:1000.566000pt;}
.ycb{bottom:1001.195867pt;}
.y2c{bottom:1001.196000pt;}
.y112{bottom:1002.148000pt;}
.y4{bottom:1009.763733pt;}
.y3{bottom:1020.963733pt;}
.y2{bottom:1032.163733pt;}
.y1{bottom:1047.143333pt;}
.y2b{bottom:1057.032133pt;}
.y2a{bottom:1071.432133pt;}
.hc{height:14.663616pt;}
.hd{height:25.152000pt;}
.h3{height:27.216000pt;}
.h8{height:31.232000pt;}
.he{height:31.530667pt;}
.h6{height:33.536000pt;}
.hf{height:36.048000pt;}
.h10{height:36.468288pt;}
.hb{height:37.728000pt;}
.ha{height:37.979424pt;}
.h7{height:38.826667pt;}
.h5{height:39.040000pt;}
.h2{height:48.800000pt;}
.h9{height:53.680000pt;}
.h4{height:53.807236pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.488133pt;}
.xb{left:105.826800pt;}
.xa{left:113.385867pt;}
.x11{left:130.393733pt;}
.x10{left:151.181067pt;}
.xf{left:390.987600pt;}
.x1{left:484.910133pt;}
.xd{left:505.015867pt;}
.xe{left:535.776133pt;}
.x4{left:539.735067pt;}
.x9{left:548.455867pt;}
.x7{left:556.082667pt;}
.x6{left:565.816400pt;}
.x2{left:590.815600pt;}
.x3{left:625.713200pt;}
.x8{left:633.014667pt;}
.xc{left:699.212533pt;}
}




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