
    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_5d610fa10636028b0bc3a685.woff')format("woff");}.ff1{font-family:ff1;line-height:0.896973;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_4b743b7942d1c6072465d3e8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dc4de4f2386e17142eac5c9a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_db7aaadb2a394ebf68aa8c44.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_0dbb079f1d00eee0e16c07da.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_2742d98866b9a35764f593f1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_bb92a40a27d714817c5181d3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.079102;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls3c{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.918000px;}
.ls2f{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls39{letter-spacing:-0.597600px;}
.ls26{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.239040px;}
.ls13{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.119520px;}
.ls17{letter-spacing:-0.108000px;}
.ls36{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.005976px;}
.ls2d{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.162000px;}
.ls38{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.286848px;}
.ls37{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.358560px;}
.lsb{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.378000px;}
.ls2e{letter-spacing:0.385920px;}
.ls3d{letter-spacing:0.504000px;}
.ls3b{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.648000px;}
.ls28{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.918000px;}
.lsc{letter-spacing:1.440000px;}
.ls19{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.322000px;}
.ls1b{letter-spacing:2.880000px;}
.ls12{letter-spacing:3.078000px;}
.lse{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.320000px;}
.ls1c{letter-spacing:4.482000px;}
.ls27{letter-spacing:5.040000px;}
.ls1f{letter-spacing:5.760000px;}
.ls23{letter-spacing:5.977800px;}
.ls29{letter-spacing:6.480000px;}
.ls33{letter-spacing:7.200000px;}
.ls3a{letter-spacing:8.640000px;}
.ls10{letter-spacing:9.558000px;}
.ls1e{letter-spacing:9.561600px;}
.ls32{letter-spacing:10.080000px;}
.ls31{letter-spacing:10.800000px;}
.ls21{letter-spacing:11.520000px;}
.ls20{letter-spacing:12.240000px;}
.ls35{letter-spacing:13.687200px;}
.ls2c{letter-spacing:14.400000px;}
.ls2b{letter-spacing:15.120000px;}
.lsd{letter-spacing:16.560000px;}
.ls1a{letter-spacing:19.440000px;}
.ls34{letter-spacing:20.880000px;}
.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;}
}
.ws5{word-spacing:-18.216000px;}
.ws1e{word-spacing:-18.144000px;}
.ws7e{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws57{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.wsa7{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.493760px;}
.ws0{word-spacing:-15.298560px;}
.ws6f{word-spacing:-15.059520px;}
.ws46{word-spacing:-13.878000px;}
.ws21{word-spacing:-13.500000px;}
.ws22{word-spacing:-13.392000px;}
.ws20{word-spacing:-13.284000px;}
.ws23{word-spacing:-13.122000px;}
.ws7f{word-spacing:-12.445920px;}
.ws1f{word-spacing:-9.000000px;}
.ws98{word-spacing:-4.464000px;}
.ws24{word-spacing:-4.320000px;}
.ws25{word-spacing:-4.032000px;}
.ws77{word-spacing:-3.780000px;}
.ws96{word-spacing:-3.764880px;}
.ws26{word-spacing:-3.744000px;}
.wsc{word-spacing:-3.600000px;}
.ws2e{word-spacing:-3.312000px;}
.ws3f{word-spacing:-3.078000px;}
.ws95{word-spacing:-3.047760px;}
.ws9c{word-spacing:-3.024000px;}
.ws31{word-spacing:-2.880000px;}
.ws64{word-spacing:-2.664000px;}
.ws30{word-spacing:-2.592000px;}
.ws40{word-spacing:-2.484000px;}
.ws7c{word-spacing:-2.376000px;}
.ws61{word-spacing:-2.304000px;}
.ws62{word-spacing:-2.160000px;}
.ws91{word-spacing:-2.106000px;}
.ws63{word-spacing:-1.872000px;}
.ws7b{word-spacing:-1.782000px;}
.ws67{word-spacing:-1.620000px;}
.wsb5{word-spacing:-1.584000px;}
.ws1a{word-spacing:-1.440000px;}
.ws47{word-spacing:-1.152000px;}
.ws42{word-spacing:-1.026000px;}
.ws7a{word-spacing:-0.918000px;}
.ws8d{word-spacing:-0.864000px;}
.ws35{word-spacing:-0.720000px;}
.ws79{word-spacing:-0.648000px;}
.wsae{word-spacing:-0.576000px;}
.wsb2{word-spacing:-0.504000px;}
.ws72{word-spacing:-0.432000px;}
.ws78{word-spacing:-0.378000px;}
.wsa0{word-spacing:-0.358560px;}
.ws55{word-spacing:-0.324000px;}
.ws9b{word-spacing:-0.288000px;}
.ws3e{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.179280px;}
.ws7d{word-spacing:-0.162000px;}
.ws12{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.119520px;}
.ws8b{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws41{word-spacing:0.054000px;}
.ws58{word-spacing:0.059760px;}
.ws9a{word-spacing:0.072000px;}
.wsa2{word-spacing:0.144000px;}
.ws3d{word-spacing:0.162000px;}
.ws9{word-spacing:0.179280px;}
.ws3c{word-spacing:0.216000px;}
.ws6{word-spacing:0.239040px;}
.ws43{word-spacing:0.270000px;}
.ws29{word-spacing:0.288000px;}
.ws45{word-spacing:0.378000px;}
.ws5a{word-spacing:0.537840px;}
.ws6e{word-spacing:0.540000px;}
.ws52{word-spacing:0.576000px;}
.ws69{word-spacing:0.594000px;}
.wsa1{word-spacing:0.597600px;}
.ws4e{word-spacing:0.720000px;}
.ws75{word-spacing:0.776880px;}
.ws86{word-spacing:0.792000px;}
.ws66{word-spacing:0.918000px;}
.wsa8{word-spacing:0.936000px;}
.ws59{word-spacing:0.956160px;}
.ws37{word-spacing:1.008000px;}
.ws6c{word-spacing:1.026000px;}
.ws6b{word-spacing:1.134000px;}
.ws4c{word-spacing:1.296000px;}
.wsf{word-spacing:1.440000px;}
.ws76{word-spacing:1.494000px;}
.ws10{word-spacing:1.728000px;}
.ws6a{word-spacing:1.836000px;}
.ws2d{word-spacing:2.016000px;}
.ws2c{word-spacing:2.160000px;}
.ws87{word-spacing:2.232000px;}
.ws28{word-spacing:2.448000px;}
.ws44{word-spacing:2.700000px;}
.ws5e{word-spacing:2.736000px;}
.ws48{word-spacing:2.880000px;}
.ws50{word-spacing:3.096000px;}
.ws4d{word-spacing:3.168000px;}
.ws8a{word-spacing:3.456000px;}
.ws80{word-spacing:3.600000px;}
.wsac{word-spacing:3.888000px;}
.ws88{word-spacing:3.996000px;}
.ws92{word-spacing:4.104000px;}
.ws1d{word-spacing:4.176000px;}
.ws11{word-spacing:4.320000px;}
.ws97{word-spacing:4.362480px;}
.ws1c{word-spacing:4.608000px;}
.ws56{word-spacing:4.698000px;}
.ws16{word-spacing:4.896000px;}
.ws15{word-spacing:5.040000px;}
.ws94{word-spacing:5.076000px;}
.ws70{word-spacing:5.328000px;}
.ws93{word-spacing:5.400000px;}
.ws1b{word-spacing:5.616000px;}
.ws2b{word-spacing:5.760000px;}
.ws2a{word-spacing:6.048000px;}
.ws68{word-spacing:6.156000px;}
.ws17{word-spacing:6.336000px;}
.ws4b{word-spacing:6.480000px;}
.ws4a{word-spacing:6.768000px;}
.ws65{word-spacing:6.858000px;}
.ws74{word-spacing:7.056000px;}
.wse{word-spacing:7.200000px;}
.ws34{word-spacing:7.488000px;}
.ws71{word-spacing:7.920000px;}
.ws81{word-spacing:8.208000px;}
.ws85{word-spacing:8.640000px;}
.ws3b{word-spacing:9.180000px;}
.ws8c{word-spacing:9.216000px;}
.wsd{word-spacing:9.360000px;}
.ws5b{word-spacing:9.442080px;}
.ws39{word-spacing:9.774000px;}
.ws3a{word-spacing:9.882000px;}
.ws49{word-spacing:10.080000px;}
.wsa9{word-spacing:10.368000px;}
.ws6d{word-spacing:10.476000px;}
.ws89{word-spacing:10.656000px;}
.ws73{word-spacing:10.800000px;}
.wsb3{word-spacing:11.376000px;}
.ws19{word-spacing:11.520000px;}
.ws5f{word-spacing:12.096000px;}
.ws33{word-spacing:12.240000px;}
.wsb{word-spacing:12.528000px;}
.ws90{word-spacing:12.816000px;}
.ws32{word-spacing:12.960000px;}
.ws53{word-spacing:13.248000px;}
.ws54{word-spacing:13.680000px;}
.wsaf{word-spacing:13.968000px;}
.ws14{word-spacing:14.400000px;}
.ws13{word-spacing:14.688000px;}
.ws5d{word-spacing:14.976000px;}
.ws82{word-spacing:15.120000px;}
.ws83{word-spacing:15.408000px;}
.ws27{word-spacing:15.840000px;}
.ws9d{word-spacing:16.128000px;}
.ws2f{word-spacing:16.560000px;}
.ws60{word-spacing:17.280000px;}
.ws51{word-spacing:17.568000px;}
.ws18{word-spacing:18.000000px;}
.ws36{word-spacing:18.720000px;}
.ws4f{word-spacing:19.008000px;}
.ws5c{word-spacing:19.728000px;}
.ws38{word-spacing:20.160000px;}
.wsb4{word-spacing:20.448000px;}
.ws99{word-spacing:20.880000px;}
.ws84{word-spacing:21.600000px;}
.ws8e{word-spacing:23.760000px;}
.wsb1{word-spacing:25.776000px;}
.wsb0{word-spacing:25.920000px;}
.ws8f{word-spacing:29.520000px;}
.wsa4{word-spacing:30.240000px;}
.ws9f{word-spacing:32.400000px;}
.ws9e{word-spacing:32.688000px;}
.wsa3{word-spacing:44.640000px;}
.wsa5{word-spacing:53.280000px;}
.wsa6{word-spacing:54.000000px;}
.wsaa{word-spacing:82.080000px;}
.wsab{word-spacing:82.800000px;}
.wsad{word-spacing:140.400000px;}
._5{margin-left:-5.273496px;}
._4{margin-left:-4.206456px;}
._6{margin-left:-2.533104px;}
._1{margin-left:-1.248984px;}
._0{width:1.135440px;}
._7{width:2.748096px;}
._3{width:4.353120px;}
._10{width:5.632560px;}
._8{width:7.293600px;}
._b{width:9.218952px;}
._e{width:10.725048px;}
._11{width:12.220920px;}
._16{width:13.707504px;}
._f{width:15.208560px;}
._a{width:16.346952px;}
._c{width:19.816560px;}
._d{width:20.952000px;}
._17{width:25.728984px;}
._18{width:27.288000px;}
._13{width:28.921968px;}
._12{width:32.106240px;}
._14{width:81.648000px;}
._2{width:124.000560px;}
._9{width:134.227224px;}
._15{width:140.704560px;}
.fc3{color:rgb(75,103,40);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(78,97,40);}
.fs4{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.660000px;}
.yb4{bottom:66.753000px;}
.y56{bottom:66.771000px;}
.y10b{bottom:66.775500px;}
.ycc{bottom:71.280000px;}
.y122{bottom:79.380000px;}
.yb3{bottom:82.237500px;}
.y55{bottom:82.255500px;}
.y134{bottom:83.340000px;}
.y10a{bottom:86.760000px;}
.y25{bottom:97.200000px;}
.yb2{bottom:97.722000px;}
.ycb{bottom:97.740000px;}
.y121{bottom:100.080000px;}
.y54{bottom:102.240000px;}
.y150{bottom:113.220000px;}
.y53{bottom:113.377500px;}
.yb1{bottom:113.382000px;}
.y82{bottom:113.395500px;}
.y24{bottom:117.900000px;}
.y120{bottom:120.780000px;}
.y52{bottom:128.862000px;}
.yb0{bottom:128.866500px;}
.yca{bottom:128.871000px;}
.ye0{bottom:129.960000px;}
.y81{bottom:133.380000px;}
.y14f{bottom:133.920000px;}
.y23{bottom:138.600000px;}
.y133{bottom:141.120000px;}
.y11f{bottom:141.480000px;}
.y109{bottom:144.342000px;}
.y51{bottom:144.346500px;}
.yaf{bottom:144.351000px;}
.yc9{bottom:144.355500px;}
.y80{bottom:145.440000px;}
.y14e{bottom:154.620000px;}
.y22{bottom:159.300000px;}
.y108{bottom:159.826500px;}
.y50{bottom:159.831000px;}
.yae{bottom:159.835500px;}
.yc8{bottom:159.840000px;}
.y132{bottom:161.820000px;}
.y11e{bottom:162.180000px;}
.y166{bottom:169.920000px;}
.y107{bottom:175.486500px;}
.y4f{bottom:175.491000px;}
.yad{bottom:175.495500px;}
.y21{bottom:180.000000px;}
.yf2{bottom:184.320000px;}
.ydf{bottom:189.720000px;}
.y165{bottom:190.620000px;}
.y106{bottom:190.971000px;}
.y4e{bottom:190.975500px;}
.y14d{bottom:193.320000px;}
.yac{bottom:195.480000px;}
.y131{bottom:200.520000px;}
.y20{bottom:200.700000px;}
.y7f{bottom:202.320000px;}
.yf1{bottom:205.020000px;}
.y105{bottom:206.455500px;}
.yab{bottom:207.540000px;}
.yde{bottom:210.420000px;}
.y4d{bottom:210.960000px;}
.y164{bottom:211.320000px;}
.y14c{bottom:214.020000px;}
.y130{bottom:221.220000px;}
.y11d{bottom:221.400000px;}
.y104{bottom:221.940000px;}
.y4c{bottom:223.020000px;}
.ydd{bottom:231.120000px;}
.y1f{bottom:239.400000px;}
.y103{bottom:242.100000px;}
.y7e{bottom:243.720000px;}
.y163{bottom:250.020000px;}
.y4b{bottom:251.820000px;}
.y14b{bottom:252.720000px;}
.y102{bottom:254.160000px;}
.y12f{bottom:259.920000px;}
.yaa{bottom:262.800000px;}
.y7d{bottom:264.420000px;}
.y162{bottom:270.720000px;}
.y4a{bottom:272.520000px;}
.y12e{bottom:280.620000px;}
.ya9{bottom:283.500000px;}
.yf0{bottom:285.120000px;}
.y1e{bottom:287.100000px;}
.ydc{bottom:290.520000px;}
.y14a{bottom:291.420000px;}
.y49{bottom:293.220000px;}
.y12d{bottom:301.320000px;}
.y7c{bottom:303.120000px;}
.ya8{bottom:304.200000px;}
.yef{bottom:305.820000px;}
.y101{bottom:308.520000px;}
.y161{bottom:309.420000px;}
.y149{bottom:312.120000px;}
.yc7{bottom:321.463260px;}
.y7b{bottom:323.820000px;}
.ya7{bottom:324.900000px;}
.y1d{bottom:325.800000px;}
.yee{bottom:326.520000px;}
.y100{bottom:329.220000px;}
.y160{bottom:330.120000px;}
.y48{bottom:331.920000px;}
.yc6{bottom:338.748840px;}
.y12c{bottom:340.020000px;}
.y7a{bottom:344.520000px;}
.y11c{bottom:345.600000px;}
.y1c{bottom:346.500000px;}
.ydb{bottom:347.220000px;}
.yff{bottom:349.920000px;}
.y148{bottom:350.820000px;}
.y47{bottom:352.620000px;}
.yc5{bottom:356.034420px;}
.y12b{bottom:360.720000px;}
.ya6{bottom:363.600000px;}
.y79{bottom:365.220000px;}
.y11b{bottom:366.300000px;}
.y1b{bottom:367.020000px;}
.yda{bottom:367.920000px;}
.y15f{bottom:368.820000px;}
.yfe{bottom:370.620000px;}
.y147{bottom:371.520000px;}
.y46{bottom:373.320000px;}
.ya5{bottom:384.300000px;}
.y78{bottom:385.920000px;}
.y11a{bottom:387.000000px;}
.y1a{bottom:387.720000px;}
.yd9{bottom:388.620000px;}
.y15e{bottom:389.520000px;}
.yfd{bottom:391.320000px;}
.y45{bottom:394.020000px;}
.y12a{bottom:399.420000px;}
.ya4{bottom:405.000000px;}
.y77{bottom:406.620000px;}
.y19{bottom:408.420000px;}
.yc4{bottom:409.320000px;}
.y146{bottom:410.220000px;}
.yfc{bottom:412.020000px;}
.y44{bottom:414.720000px;}
.y129{bottom:420.120000px;}
.ya3{bottom:425.700000px;}
.y76{bottom:427.320000px;}
.y15d{bottom:428.220000px;}
.y18{bottom:429.120000px;}
.yc3{bottom:430.020000px;}
.y145{bottom:430.920000px;}
.yfb{bottom:432.720000px;}
.y43{bottom:435.420000px;}
.ya2{bottom:446.400000px;}
.y75{bottom:448.020000px;}
.y15c{bottom:448.920000px;}
.y17{bottom:449.820000px;}
.yc2{bottom:450.720000px;}
.yfa{bottom:453.420000px;}
.y42{bottom:456.120000px;}
.y128{bottom:458.820000px;}
.ya1{bottom:467.100000px;}
.y74{bottom:468.720000px;}
.y144{bottom:469.620000px;}
.yc1{bottom:471.420000px;}
.yf9{bottom:474.120000px;}
.y41{bottom:476.820000px;}
.y127{bottom:479.520000px;}
.y15b{bottom:487.620000px;}
.ya0{bottom:487.800000px;}
.y16{bottom:488.520000px;}
.y73{bottom:489.420000px;}
.y143{bottom:490.320000px;}
.yc0{bottom:492.120000px;}
.yf8{bottom:494.820000px;}
.y40{bottom:497.520000px;}
.y15a{bottom:508.320000px;}
.y9f{bottom:508.500000px;}
.y72{bottom:510.120000px;}
.ybf{bottom:512.820000px;}
.y3f{bottom:518.220000px;}
.y142{bottom:529.020000px;}
.y119{bottom:529.200000px;}
.y71{bottom:530.820000px;}
.yf7{bottom:533.520000px;}
.y15{bottom:536.220000px;}
.y3e{bottom:538.920000px;}
.y159{bottom:547.020000px;}
.y9e{bottom:547.200000px;}
.y141{bottom:549.720000px;}
.y118{bottom:549.900000px;}
.y70{bottom:551.520000px;}
.yf6{bottom:554.220000px;}
.y126{bottom:556.920000px;}
.y158{bottom:567.720000px;}
.y140{bottom:570.420000px;}
.y117{bottom:570.600000px;}
.y6f{bottom:572.220000px;}
.y14{bottom:574.920000px;}
.y3d{bottom:577.620000px;}
.y157{bottom:588.420000px;}
.y116{bottom:591.300000px;}
.y6e{bottom:592.920000px;}
.y13{bottom:595.620000px;}
.y3c{bottom:598.320000px;}
.y9d{bottom:603.900000px;}
.y13f{bottom:609.120000px;}
.yed{bottom:610.920000px;}
.y115{bottom:612.000000px;}
.y6d{bottom:613.620000px;}
.y12{bottom:616.320000px;}
.y3b{bottom:619.020000px;}
.y9c{bottom:624.600000px;}
.y156{bottom:627.120000px;}
.yec{bottom:631.620000px;}
.y114{bottom:632.700000px;}
.y6c{bottom:634.320000px;}
.y11{bottom:637.020000px;}
.y3a{bottom:639.720000px;}
.y9b{bottom:645.300000px;}
.y13e{bottom:647.820000px;}
.yeb{bottom:652.320000px;}
.y113{bottom:653.400000px;}
.y6b{bottom:655.020000px;}
.y10{bottom:657.720000px;}
.y39{bottom:660.420000px;}
.y155{bottom:665.820000px;}
.y9a{bottom:666.000000px;}
.y125{bottom:673.020000px;}
.y6a{bottom:675.720000px;}
.yf{bottom:678.420000px;}
.y13d{bottom:686.520000px;}
.y99{bottom:686.700000px;}
.yea{bottom:691.020000px;}
.y112{bottom:692.100000px;}
.yd8{bottom:693.720000px;}
.y69{bottom:696.420000px;}
.ye{bottom:699.120000px;}
.y13c{bottom:707.220000px;}
.y98{bottom:707.400000px;}
.ye9{bottom:711.720000px;}
.y111{bottom:712.800000px;}
.yd7{bottom:714.420000px;}
.y68{bottom:717.120000px;}
.y38{bottom:719.820000px;}
.y154{bottom:725.220000px;}
.y97{bottom:728.100000px;}
.ye8{bottom:732.420000px;}
.y110{bottom:733.500000px;}
.yd6{bottom:735.120000px;}
.yd{bottom:737.820000px;}
.y37{bottom:740.520000px;}
.y13b{bottom:745.920000px;}
.ye7{bottom:753.120000px;}
.y10f{bottom:754.200000px;}
.y67{bottom:755.820000px;}
.y36{bottom:761.220000px;}
.y13a{bottom:766.620000px;}
.y96{bottom:766.800000px;}
.ye6{bottom:773.820000px;}
.y66{bottom:776.520000px;}
.y35{bottom:781.920000px;}
.y153{bottom:784.620000px;}
.yc{bottom:785.520000px;}
.y95{bottom:787.500000px;}
.y10e{bottom:792.900000px;}
.y124{bottom:794.520000px;}
.y65{bottom:797.220000px;}
.y34{bottom:802.620000px;}
.y139{bottom:805.320000px;}
.yb{bottom:806.220000px;}
.y94{bottom:808.200000px;}
.ye5{bottom:812.520000px;}
.yd5{bottom:815.220000px;}
.y64{bottom:817.920000px;}
.y33{bottom:823.320000px;}
.y93{bottom:828.900000px;}
.ye4{bottom:833.220000px;}
.yd4{bottom:835.920000px;}
.y63{bottom:838.620000px;}
.y32{bottom:844.020000px;}
.ya{bottom:844.920000px;}
.y92{bottom:849.600000px;}
.ye3{bottom:853.920000px;}
.yd3{bottom:856.620000px;}
.y62{bottom:859.320000px;}
.yf5{bottom:862.020000px;}
.y31{bottom:864.720000px;}
.y9{bottom:865.620000px;}
.y91{bottom:870.300000px;}
.ye2{bottom:874.620000px;}
.yd2{bottom:877.320000px;}
.y61{bottom:880.020000px;}
.yf4{bottom:882.720000px;}
.y138{bottom:885.420000px;}
.y8{bottom:886.510800px;}
.y90{bottom:891.000000px;}
.ye1{bottom:895.320000px;}
.ybe{bottom:898.020000px;}
.y60{bottom:900.720000px;}
.y30{bottom:903.420000px;}
.y8f{bottom:911.700000px;}
.yd1{bottom:916.020000px;}
.ybd{bottom:918.720000px;}
.y5f{bottom:921.420000px;}
.y2f{bottom:924.120000px;}
.y8e{bottom:932.400000px;}
.y7{bottom:935.830080px;}
.yd0{bottom:936.720000px;}
.ybc{bottom:939.420000px;}
.y5e{bottom:942.120000px;}
.y2e{bottom:944.820000px;}
.y10d{bottom:950.400000px;}
.y8d{bottom:953.100000px;}
.ycf{bottom:957.420000px;}
.ybb{bottom:960.120000px;}
.y152{bottom:962.640000px;}
.y5d{bottom:962.820000px;}
.y2d{bottom:965.340000px;}
.y10c{bottom:971.100000px;}
.yce{bottom:978.120000px;}
.y151{bottom:983.340000px;}
.y2c{bottom:986.040000px;}
.y8c{bottom:991.800000px;}
.y6{bottom:994.325040px;}
.yba{bottom:998.640000px;}
.ycd{bottom:998.820000px;}
.y5c{bottom:1001.340000px;}
.y137{bottom:1004.040000px;}
.y2b{bottom:1006.740000px;}
.y8b{bottom:1012.500000px;}
.yb9{bottom:1019.340000px;}
.y5b{bottom:1022.040000px;}
.y2a{bottom:1027.440000px;}
.y8a{bottom:1033.200000px;}
.yb8{bottom:1040.040000px;}
.y136{bottom:1042.740000px;}
.yf3{bottom:1045.440000px;}
.y5{bottom:1052.820000px;}
.y89{bottom:1053.900000px;}
.y123{bottom:1058.040000px;}
.yb7{bottom:1060.740000px;}
.y135{bottom:1063.440000px;}
.y29{bottom:1066.140000px;}
.y88{bottom:1074.600000px;}
.y5a{bottom:1078.740000px;}
.yb6{bottom:1081.440000px;}
.y87{bottom:1095.300000px;}
.y59{bottom:1099.440000px;}
.yb5{bottom:1102.140000px;}
.y4{bottom:1110.240000px;}
.y58{bottom:1120.140000px;}
.y28{bottom:1122.840000px;}
.y86{bottom:1133.263260px;}
.y57{bottom:1140.840000px;}
.y3{bottom:1146.240000px;}
.y85{bottom:1150.548840px;}
.y27{bottom:1161.540000px;}
.y84{bottom:1167.834420px;}
.y26{bottom:1182.240000px;}
.y83{bottom:1185.120000px;}
.y1{bottom:1219.140000px;}
.hd{height:25.013672px;}
.h12{height:29.276367px;}
.hf{height:37.520508px;}
.h2{height:40.705664px;}
.h11{height:41.522695px;}
.h4{height:43.506914px;}
.he{height:47.276367px;}
.h8{height:49.992188px;}
.h9{height:50.027344px;}
.h7{height:52.966406px;}
.h6{height:53.991563px;}
.hc{height:60.854766px;}
.h10{height:60.878320px;}
.h13{height:62.156250px;}
.hb{height:63.035156px;}
.h3{height:63.949219px;}
.ha{height:66.605977px;}
.h5{height:69.065156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:84.960000px;}
.xc{left:127.440000px;}
.x11{left:169.920000px;}
.x4{left:248.220000px;}
.x5{left:262.800000px;}
.x10{left:300.960000px;}
.x12{left:315.720000px;}
.x1{left:323.280000px;}
.xd{left:410.040000px;}
.xe{left:414.000000px;}
.xb{left:419.400000px;}
.x3{left:489.060000px;}
.x7{left:590.220000px;}
.xa{left:665.640000px;}
.x9{left:672.480000px;}
.x6{left:697.497840px;}
.x8{left:707.940000px;}
.x2{left:722.160000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls3c{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.816000pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls39{letter-spacing:-0.531200pt;}
.ls26{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.212480pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.106240pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls36{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.005312pt;}
.ls2d{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.144000pt;}
.ls38{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.254976pt;}
.ls37{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.318720pt;}
.lsb{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.336000pt;}
.ls2e{letter-spacing:0.343040pt;}
.ls3d{letter-spacing:0.448000pt;}
.ls3b{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.576000pt;}
.ls28{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.816000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.064000pt;}
.ls1b{letter-spacing:2.560000pt;}
.ls12{letter-spacing:2.736000pt;}
.lse{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls1c{letter-spacing:3.984000pt;}
.ls27{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls23{letter-spacing:5.313600pt;}
.ls29{letter-spacing:5.760000pt;}
.ls33{letter-spacing:6.400000pt;}
.ls3a{letter-spacing:7.680000pt;}
.ls10{letter-spacing:8.496000pt;}
.ls1e{letter-spacing:8.499200pt;}
.ls32{letter-spacing:8.960000pt;}
.ls31{letter-spacing:9.600000pt;}
.ls21{letter-spacing:10.240000pt;}
.ls20{letter-spacing:10.880000pt;}
.ls35{letter-spacing:12.166400pt;}
.ls2c{letter-spacing:12.800000pt;}
.ls2b{letter-spacing:13.440000pt;}
.lsd{letter-spacing:14.720000pt;}
.ls1a{letter-spacing:17.280000pt;}
.ls34{letter-spacing:18.560000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-16.128000pt;}
.ws7e{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws57{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.wsa7{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.661120pt;}
.ws0{word-spacing:-13.598720pt;}
.ws6f{word-spacing:-13.386240pt;}
.ws46{word-spacing:-12.336000pt;}
.ws21{word-spacing:-12.000000pt;}
.ws22{word-spacing:-11.904000pt;}
.ws20{word-spacing:-11.808000pt;}
.ws23{word-spacing:-11.664000pt;}
.ws7f{word-spacing:-11.063040pt;}
.ws1f{word-spacing:-8.000000pt;}
.ws98{word-spacing:-3.968000pt;}
.ws24{word-spacing:-3.840000pt;}
.ws25{word-spacing:-3.584000pt;}
.ws77{word-spacing:-3.360000pt;}
.ws96{word-spacing:-3.346560pt;}
.ws26{word-spacing:-3.328000pt;}
.wsc{word-spacing:-3.200000pt;}
.ws2e{word-spacing:-2.944000pt;}
.ws3f{word-spacing:-2.736000pt;}
.ws95{word-spacing:-2.709120pt;}
.ws9c{word-spacing:-2.688000pt;}
.ws31{word-spacing:-2.560000pt;}
.ws64{word-spacing:-2.368000pt;}
.ws30{word-spacing:-2.304000pt;}
.ws40{word-spacing:-2.208000pt;}
.ws7c{word-spacing:-2.112000pt;}
.ws61{word-spacing:-2.048000pt;}
.ws62{word-spacing:-1.920000pt;}
.ws91{word-spacing:-1.872000pt;}
.ws63{word-spacing:-1.664000pt;}
.ws7b{word-spacing:-1.584000pt;}
.ws67{word-spacing:-1.440000pt;}
.wsb5{word-spacing:-1.408000pt;}
.ws1a{word-spacing:-1.280000pt;}
.ws47{word-spacing:-1.024000pt;}
.ws42{word-spacing:-0.912000pt;}
.ws7a{word-spacing:-0.816000pt;}
.ws8d{word-spacing:-0.768000pt;}
.ws35{word-spacing:-0.640000pt;}
.ws79{word-spacing:-0.576000pt;}
.wsae{word-spacing:-0.512000pt;}
.wsb2{word-spacing:-0.448000pt;}
.ws72{word-spacing:-0.384000pt;}
.ws78{word-spacing:-0.336000pt;}
.wsa0{word-spacing:-0.318720pt;}
.ws55{word-spacing:-0.288000pt;}
.ws9b{word-spacing:-0.256000pt;}
.ws3e{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.159360pt;}
.ws7d{word-spacing:-0.144000pt;}
.ws12{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.106240pt;}
.ws8b{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws41{word-spacing:0.048000pt;}
.ws58{word-spacing:0.053120pt;}
.ws9a{word-spacing:0.064000pt;}
.wsa2{word-spacing:0.128000pt;}
.ws3d{word-spacing:0.144000pt;}
.ws9{word-spacing:0.159360pt;}
.ws3c{word-spacing:0.192000pt;}
.ws6{word-spacing:0.212480pt;}
.ws43{word-spacing:0.240000pt;}
.ws29{word-spacing:0.256000pt;}
.ws45{word-spacing:0.336000pt;}
.ws5a{word-spacing:0.478080pt;}
.ws6e{word-spacing:0.480000pt;}
.ws52{word-spacing:0.512000pt;}
.ws69{word-spacing:0.528000pt;}
.wsa1{word-spacing:0.531200pt;}
.ws4e{word-spacing:0.640000pt;}
.ws75{word-spacing:0.690560pt;}
.ws86{word-spacing:0.704000pt;}
.ws66{word-spacing:0.816000pt;}
.wsa8{word-spacing:0.832000pt;}
.ws59{word-spacing:0.849920pt;}
.ws37{word-spacing:0.896000pt;}
.ws6c{word-spacing:0.912000pt;}
.ws6b{word-spacing:1.008000pt;}
.ws4c{word-spacing:1.152000pt;}
.wsf{word-spacing:1.280000pt;}
.ws76{word-spacing:1.328000pt;}
.ws10{word-spacing:1.536000pt;}
.ws6a{word-spacing:1.632000pt;}
.ws2d{word-spacing:1.792000pt;}
.ws2c{word-spacing:1.920000pt;}
.ws87{word-spacing:1.984000pt;}
.ws28{word-spacing:2.176000pt;}
.ws44{word-spacing:2.400000pt;}
.ws5e{word-spacing:2.432000pt;}
.ws48{word-spacing:2.560000pt;}
.ws50{word-spacing:2.752000pt;}
.ws4d{word-spacing:2.816000pt;}
.ws8a{word-spacing:3.072000pt;}
.ws80{word-spacing:3.200000pt;}
.wsac{word-spacing:3.456000pt;}
.ws88{word-spacing:3.552000pt;}
.ws92{word-spacing:3.648000pt;}
.ws1d{word-spacing:3.712000pt;}
.ws11{word-spacing:3.840000pt;}
.ws97{word-spacing:3.877760pt;}
.ws1c{word-spacing:4.096000pt;}
.ws56{word-spacing:4.176000pt;}
.ws16{word-spacing:4.352000pt;}
.ws15{word-spacing:4.480000pt;}
.ws94{word-spacing:4.512000pt;}
.ws70{word-spacing:4.736000pt;}
.ws93{word-spacing:4.800000pt;}
.ws1b{word-spacing:4.992000pt;}
.ws2b{word-spacing:5.120000pt;}
.ws2a{word-spacing:5.376000pt;}
.ws68{word-spacing:5.472000pt;}
.ws17{word-spacing:5.632000pt;}
.ws4b{word-spacing:5.760000pt;}
.ws4a{word-spacing:6.016000pt;}
.ws65{word-spacing:6.096000pt;}
.ws74{word-spacing:6.272000pt;}
.wse{word-spacing:6.400000pt;}
.ws34{word-spacing:6.656000pt;}
.ws71{word-spacing:7.040000pt;}
.ws81{word-spacing:7.296000pt;}
.ws85{word-spacing:7.680000pt;}
.ws3b{word-spacing:8.160000pt;}
.ws8c{word-spacing:8.192000pt;}
.wsd{word-spacing:8.320000pt;}
.ws5b{word-spacing:8.392960pt;}
.ws39{word-spacing:8.688000pt;}
.ws3a{word-spacing:8.784000pt;}
.ws49{word-spacing:8.960000pt;}
.wsa9{word-spacing:9.216000pt;}
.ws6d{word-spacing:9.312000pt;}
.ws89{word-spacing:9.472000pt;}
.ws73{word-spacing:9.600000pt;}
.wsb3{word-spacing:10.112000pt;}
.ws19{word-spacing:10.240000pt;}
.ws5f{word-spacing:10.752000pt;}
.ws33{word-spacing:10.880000pt;}
.wsb{word-spacing:11.136000pt;}
.ws90{word-spacing:11.392000pt;}
.ws32{word-spacing:11.520000pt;}
.ws53{word-spacing:11.776000pt;}
.ws54{word-spacing:12.160000pt;}
.wsaf{word-spacing:12.416000pt;}
.ws14{word-spacing:12.800000pt;}
.ws13{word-spacing:13.056000pt;}
.ws5d{word-spacing:13.312000pt;}
.ws82{word-spacing:13.440000pt;}
.ws83{word-spacing:13.696000pt;}
.ws27{word-spacing:14.080000pt;}
.ws9d{word-spacing:14.336000pt;}
.ws2f{word-spacing:14.720000pt;}
.ws60{word-spacing:15.360000pt;}
.ws51{word-spacing:15.616000pt;}
.ws18{word-spacing:16.000000pt;}
.ws36{word-spacing:16.640000pt;}
.ws4f{word-spacing:16.896000pt;}
.ws5c{word-spacing:17.536000pt;}
.ws38{word-spacing:17.920000pt;}
.wsb4{word-spacing:18.176000pt;}
.ws99{word-spacing:18.560000pt;}
.ws84{word-spacing:19.200000pt;}
.ws8e{word-spacing:21.120000pt;}
.wsb1{word-spacing:22.912000pt;}
.wsb0{word-spacing:23.040000pt;}
.ws8f{word-spacing:26.240000pt;}
.wsa4{word-spacing:26.880000pt;}
.ws9f{word-spacing:28.800000pt;}
.ws9e{word-spacing:29.056000pt;}
.wsa3{word-spacing:39.680000pt;}
.wsa5{word-spacing:47.360000pt;}
.wsa6{word-spacing:48.000000pt;}
.wsaa{word-spacing:72.960000pt;}
.wsab{word-spacing:73.600000pt;}
.wsad{word-spacing:124.800000pt;}
._5{margin-left:-4.687552pt;}
._4{margin-left:-3.739072pt;}
._6{margin-left:-2.251648pt;}
._1{margin-left:-1.110208pt;}
._0{width:1.009280pt;}
._7{width:2.442752pt;}
._3{width:3.869440pt;}
._10{width:5.006720pt;}
._8{width:6.483200pt;}
._b{width:8.194624pt;}
._e{width:9.533376pt;}
._11{width:10.863040pt;}
._16{width:12.184448pt;}
._f{width:13.518720pt;}
._a{width:14.530624pt;}
._c{width:17.614720pt;}
._d{width:18.624000pt;}
._17{width:22.870208pt;}
._18{width:24.256000pt;}
._13{width:25.708416pt;}
._12{width:28.538880pt;}
._14{width:72.576000pt;}
._2{width:110.222720pt;}
._9{width:119.313088pt;}
._15{width:125.070720pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.920000pt;}
.yb4{bottom:59.336000pt;}
.y56{bottom:59.352000pt;}
.y10b{bottom:59.356000pt;}
.ycc{bottom:63.360000pt;}
.y122{bottom:70.560000pt;}
.yb3{bottom:73.100000pt;}
.y55{bottom:73.116000pt;}
.y134{bottom:74.080000pt;}
.y10a{bottom:77.120000pt;}
.y25{bottom:86.400000pt;}
.yb2{bottom:86.864000pt;}
.ycb{bottom:86.880000pt;}
.y121{bottom:88.960000pt;}
.y54{bottom:90.880000pt;}
.y150{bottom:100.640000pt;}
.y53{bottom:100.780000pt;}
.yb1{bottom:100.784000pt;}
.y82{bottom:100.796000pt;}
.y24{bottom:104.800000pt;}
.y120{bottom:107.360000pt;}
.y52{bottom:114.544000pt;}
.yb0{bottom:114.548000pt;}
.yca{bottom:114.552000pt;}
.ye0{bottom:115.520000pt;}
.y81{bottom:118.560000pt;}
.y14f{bottom:119.040000pt;}
.y23{bottom:123.200000pt;}
.y133{bottom:125.440000pt;}
.y11f{bottom:125.760000pt;}
.y109{bottom:128.304000pt;}
.y51{bottom:128.308000pt;}
.yaf{bottom:128.312000pt;}
.yc9{bottom:128.316000pt;}
.y80{bottom:129.280000pt;}
.y14e{bottom:137.440000pt;}
.y22{bottom:141.600000pt;}
.y108{bottom:142.068000pt;}
.y50{bottom:142.072000pt;}
.yae{bottom:142.076000pt;}
.yc8{bottom:142.080000pt;}
.y132{bottom:143.840000pt;}
.y11e{bottom:144.160000pt;}
.y166{bottom:151.040000pt;}
.y107{bottom:155.988000pt;}
.y4f{bottom:155.992000pt;}
.yad{bottom:155.996000pt;}
.y21{bottom:160.000000pt;}
.yf2{bottom:163.840000pt;}
.ydf{bottom:168.640000pt;}
.y165{bottom:169.440000pt;}
.y106{bottom:169.752000pt;}
.y4e{bottom:169.756000pt;}
.y14d{bottom:171.840000pt;}
.yac{bottom:173.760000pt;}
.y131{bottom:178.240000pt;}
.y20{bottom:178.400000pt;}
.y7f{bottom:179.840000pt;}
.yf1{bottom:182.240000pt;}
.y105{bottom:183.516000pt;}
.yab{bottom:184.480000pt;}
.yde{bottom:187.040000pt;}
.y4d{bottom:187.520000pt;}
.y164{bottom:187.840000pt;}
.y14c{bottom:190.240000pt;}
.y130{bottom:196.640000pt;}
.y11d{bottom:196.800000pt;}
.y104{bottom:197.280000pt;}
.y4c{bottom:198.240000pt;}
.ydd{bottom:205.440000pt;}
.y1f{bottom:212.800000pt;}
.y103{bottom:215.200000pt;}
.y7e{bottom:216.640000pt;}
.y163{bottom:222.240000pt;}
.y4b{bottom:223.840000pt;}
.y14b{bottom:224.640000pt;}
.y102{bottom:225.920000pt;}
.y12f{bottom:231.040000pt;}
.yaa{bottom:233.600000pt;}
.y7d{bottom:235.040000pt;}
.y162{bottom:240.640000pt;}
.y4a{bottom:242.240000pt;}
.y12e{bottom:249.440000pt;}
.ya9{bottom:252.000000pt;}
.yf0{bottom:253.440000pt;}
.y1e{bottom:255.200000pt;}
.ydc{bottom:258.240000pt;}
.y14a{bottom:259.040000pt;}
.y49{bottom:260.640000pt;}
.y12d{bottom:267.840000pt;}
.y7c{bottom:269.440000pt;}
.ya8{bottom:270.400000pt;}
.yef{bottom:271.840000pt;}
.y101{bottom:274.240000pt;}
.y161{bottom:275.040000pt;}
.y149{bottom:277.440000pt;}
.yc7{bottom:285.745120pt;}
.y7b{bottom:287.840000pt;}
.ya7{bottom:288.800000pt;}
.y1d{bottom:289.600000pt;}
.yee{bottom:290.240000pt;}
.y100{bottom:292.640000pt;}
.y160{bottom:293.440000pt;}
.y48{bottom:295.040000pt;}
.yc6{bottom:301.110080pt;}
.y12c{bottom:302.240000pt;}
.y7a{bottom:306.240000pt;}
.y11c{bottom:307.200000pt;}
.y1c{bottom:308.000000pt;}
.ydb{bottom:308.640000pt;}
.yff{bottom:311.040000pt;}
.y148{bottom:311.840000pt;}
.y47{bottom:313.440000pt;}
.yc5{bottom:316.475040pt;}
.y12b{bottom:320.640000pt;}
.ya6{bottom:323.200000pt;}
.y79{bottom:324.640000pt;}
.y11b{bottom:325.600000pt;}
.y1b{bottom:326.240000pt;}
.yda{bottom:327.040000pt;}
.y15f{bottom:327.840000pt;}
.yfe{bottom:329.440000pt;}
.y147{bottom:330.240000pt;}
.y46{bottom:331.840000pt;}
.ya5{bottom:341.600000pt;}
.y78{bottom:343.040000pt;}
.y11a{bottom:344.000000pt;}
.y1a{bottom:344.640000pt;}
.yd9{bottom:345.440000pt;}
.y15e{bottom:346.240000pt;}
.yfd{bottom:347.840000pt;}
.y45{bottom:350.240000pt;}
.y12a{bottom:355.040000pt;}
.ya4{bottom:360.000000pt;}
.y77{bottom:361.440000pt;}
.y19{bottom:363.040000pt;}
.yc4{bottom:363.840000pt;}
.y146{bottom:364.640000pt;}
.yfc{bottom:366.240000pt;}
.y44{bottom:368.640000pt;}
.y129{bottom:373.440000pt;}
.ya3{bottom:378.400000pt;}
.y76{bottom:379.840000pt;}
.y15d{bottom:380.640000pt;}
.y18{bottom:381.440000pt;}
.yc3{bottom:382.240000pt;}
.y145{bottom:383.040000pt;}
.yfb{bottom:384.640000pt;}
.y43{bottom:387.040000pt;}
.ya2{bottom:396.800000pt;}
.y75{bottom:398.240000pt;}
.y15c{bottom:399.040000pt;}
.y17{bottom:399.840000pt;}
.yc2{bottom:400.640000pt;}
.yfa{bottom:403.040000pt;}
.y42{bottom:405.440000pt;}
.y128{bottom:407.840000pt;}
.ya1{bottom:415.200000pt;}
.y74{bottom:416.640000pt;}
.y144{bottom:417.440000pt;}
.yc1{bottom:419.040000pt;}
.yf9{bottom:421.440000pt;}
.y41{bottom:423.840000pt;}
.y127{bottom:426.240000pt;}
.y15b{bottom:433.440000pt;}
.ya0{bottom:433.600000pt;}
.y16{bottom:434.240000pt;}
.y73{bottom:435.040000pt;}
.y143{bottom:435.840000pt;}
.yc0{bottom:437.440000pt;}
.yf8{bottom:439.840000pt;}
.y40{bottom:442.240000pt;}
.y15a{bottom:451.840000pt;}
.y9f{bottom:452.000000pt;}
.y72{bottom:453.440000pt;}
.ybf{bottom:455.840000pt;}
.y3f{bottom:460.640000pt;}
.y142{bottom:470.240000pt;}
.y119{bottom:470.400000pt;}
.y71{bottom:471.840000pt;}
.yf7{bottom:474.240000pt;}
.y15{bottom:476.640000pt;}
.y3e{bottom:479.040000pt;}
.y159{bottom:486.240000pt;}
.y9e{bottom:486.400000pt;}
.y141{bottom:488.640000pt;}
.y118{bottom:488.800000pt;}
.y70{bottom:490.240000pt;}
.yf6{bottom:492.640000pt;}
.y126{bottom:495.040000pt;}
.y158{bottom:504.640000pt;}
.y140{bottom:507.040000pt;}
.y117{bottom:507.200000pt;}
.y6f{bottom:508.640000pt;}
.y14{bottom:511.040000pt;}
.y3d{bottom:513.440000pt;}
.y157{bottom:523.040000pt;}
.y116{bottom:525.600000pt;}
.y6e{bottom:527.040000pt;}
.y13{bottom:529.440000pt;}
.y3c{bottom:531.840000pt;}
.y9d{bottom:536.800000pt;}
.y13f{bottom:541.440000pt;}
.yed{bottom:543.040000pt;}
.y115{bottom:544.000000pt;}
.y6d{bottom:545.440000pt;}
.y12{bottom:547.840000pt;}
.y3b{bottom:550.240000pt;}
.y9c{bottom:555.200000pt;}
.y156{bottom:557.440000pt;}
.yec{bottom:561.440000pt;}
.y114{bottom:562.400000pt;}
.y6c{bottom:563.840000pt;}
.y11{bottom:566.240000pt;}
.y3a{bottom:568.640000pt;}
.y9b{bottom:573.600000pt;}
.y13e{bottom:575.840000pt;}
.yeb{bottom:579.840000pt;}
.y113{bottom:580.800000pt;}
.y6b{bottom:582.240000pt;}
.y10{bottom:584.640000pt;}
.y39{bottom:587.040000pt;}
.y155{bottom:591.840000pt;}
.y9a{bottom:592.000000pt;}
.y125{bottom:598.240000pt;}
.y6a{bottom:600.640000pt;}
.yf{bottom:603.040000pt;}
.y13d{bottom:610.240000pt;}
.y99{bottom:610.400000pt;}
.yea{bottom:614.240000pt;}
.y112{bottom:615.200000pt;}
.yd8{bottom:616.640000pt;}
.y69{bottom:619.040000pt;}
.ye{bottom:621.440000pt;}
.y13c{bottom:628.640000pt;}
.y98{bottom:628.800000pt;}
.ye9{bottom:632.640000pt;}
.y111{bottom:633.600000pt;}
.yd7{bottom:635.040000pt;}
.y68{bottom:637.440000pt;}
.y38{bottom:639.840000pt;}
.y154{bottom:644.640000pt;}
.y97{bottom:647.200000pt;}
.ye8{bottom:651.040000pt;}
.y110{bottom:652.000000pt;}
.yd6{bottom:653.440000pt;}
.yd{bottom:655.840000pt;}
.y37{bottom:658.240000pt;}
.y13b{bottom:663.040000pt;}
.ye7{bottom:669.440000pt;}
.y10f{bottom:670.400000pt;}
.y67{bottom:671.840000pt;}
.y36{bottom:676.640000pt;}
.y13a{bottom:681.440000pt;}
.y96{bottom:681.600000pt;}
.ye6{bottom:687.840000pt;}
.y66{bottom:690.240000pt;}
.y35{bottom:695.040000pt;}
.y153{bottom:697.440000pt;}
.yc{bottom:698.240000pt;}
.y95{bottom:700.000000pt;}
.y10e{bottom:704.800000pt;}
.y124{bottom:706.240000pt;}
.y65{bottom:708.640000pt;}
.y34{bottom:713.440000pt;}
.y139{bottom:715.840000pt;}
.yb{bottom:716.640000pt;}
.y94{bottom:718.400000pt;}
.ye5{bottom:722.240000pt;}
.yd5{bottom:724.640000pt;}
.y64{bottom:727.040000pt;}
.y33{bottom:731.840000pt;}
.y93{bottom:736.800000pt;}
.ye4{bottom:740.640000pt;}
.yd4{bottom:743.040000pt;}
.y63{bottom:745.440000pt;}
.y32{bottom:750.240000pt;}
.ya{bottom:751.040000pt;}
.y92{bottom:755.200000pt;}
.ye3{bottom:759.040000pt;}
.yd3{bottom:761.440000pt;}
.y62{bottom:763.840000pt;}
.yf5{bottom:766.240000pt;}
.y31{bottom:768.640000pt;}
.y9{bottom:769.440000pt;}
.y91{bottom:773.600000pt;}
.ye2{bottom:777.440000pt;}
.yd2{bottom:779.840000pt;}
.y61{bottom:782.240000pt;}
.yf4{bottom:784.640000pt;}
.y138{bottom:787.040000pt;}
.y8{bottom:788.009600pt;}
.y90{bottom:792.000000pt;}
.ye1{bottom:795.840000pt;}
.ybe{bottom:798.240000pt;}
.y60{bottom:800.640000pt;}
.y30{bottom:803.040000pt;}
.y8f{bottom:810.400000pt;}
.yd1{bottom:814.240000pt;}
.ybd{bottom:816.640000pt;}
.y5f{bottom:819.040000pt;}
.y2f{bottom:821.440000pt;}
.y8e{bottom:828.800000pt;}
.y7{bottom:831.848960pt;}
.yd0{bottom:832.640000pt;}
.ybc{bottom:835.040000pt;}
.y5e{bottom:837.440000pt;}
.y2e{bottom:839.840000pt;}
.y10d{bottom:844.800000pt;}
.y8d{bottom:847.200000pt;}
.ycf{bottom:851.040000pt;}
.ybb{bottom:853.440000pt;}
.y152{bottom:855.680000pt;}
.y5d{bottom:855.840000pt;}
.y2d{bottom:858.080000pt;}
.y10c{bottom:863.200000pt;}
.yce{bottom:869.440000pt;}
.y151{bottom:874.080000pt;}
.y2c{bottom:876.480000pt;}
.y8c{bottom:881.600000pt;}
.y6{bottom:883.844480pt;}
.yba{bottom:887.680000pt;}
.ycd{bottom:887.840000pt;}
.y5c{bottom:890.080000pt;}
.y137{bottom:892.480000pt;}
.y2b{bottom:894.880000pt;}
.y8b{bottom:900.000000pt;}
.yb9{bottom:906.080000pt;}
.y5b{bottom:908.480000pt;}
.y2a{bottom:913.280000pt;}
.y8a{bottom:918.400000pt;}
.yb8{bottom:924.480000pt;}
.y136{bottom:926.880000pt;}
.yf3{bottom:929.280000pt;}
.y5{bottom:935.840000pt;}
.y89{bottom:936.800000pt;}
.y123{bottom:940.480000pt;}
.yb7{bottom:942.880000pt;}
.y135{bottom:945.280000pt;}
.y29{bottom:947.680000pt;}
.y88{bottom:955.200000pt;}
.y5a{bottom:958.880000pt;}
.yb6{bottom:961.280000pt;}
.y87{bottom:973.600000pt;}
.y59{bottom:977.280000pt;}
.yb5{bottom:979.680000pt;}
.y4{bottom:986.880000pt;}
.y58{bottom:995.680000pt;}
.y28{bottom:998.080000pt;}
.y86{bottom:1007.345120pt;}
.y57{bottom:1014.080000pt;}
.y3{bottom:1018.880000pt;}
.y85{bottom:1022.710080pt;}
.y27{bottom:1032.480000pt;}
.y84{bottom:1038.075040pt;}
.y26{bottom:1050.880000pt;}
.y83{bottom:1053.440000pt;}
.y1{bottom:1083.680000pt;}
.hd{height:22.234375pt;}
.h12{height:26.023438pt;}
.hf{height:33.351562pt;}
.h2{height:36.182813pt;}
.h11{height:36.909063pt;}
.h4{height:38.672812pt;}
.he{height:42.023438pt;}
.h8{height:44.437500pt;}
.h9{height:44.468750pt;}
.h7{height:47.081250pt;}
.h6{height:47.992500pt;}
.hc{height:54.093125pt;}
.h10{height:54.114062pt;}
.h13{height:55.250000pt;}
.hb{height:56.031250pt;}
.h3{height:56.843750pt;}
.ha{height:59.205312pt;}
.h5{height:61.391250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:75.520000pt;}
.xc{left:113.280000pt;}
.x11{left:151.040000pt;}
.x4{left:220.640000pt;}
.x5{left:233.600000pt;}
.x10{left:267.520000pt;}
.x12{left:280.640000pt;}
.x1{left:287.360000pt;}
.xd{left:364.480000pt;}
.xe{left:368.000000pt;}
.xb{left:372.800000pt;}
.x3{left:434.720000pt;}
.x7{left:524.640000pt;}
.xa{left:591.680000pt;}
.x9{left:597.760000pt;}
.x6{left:619.998080pt;}
.x8{left:629.280000pt;}
.x2{left:641.920000pt;}
}




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