
    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_ff8d5d56bd15dbc713414b02.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_831fc24f8752eaa59a508272.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_7a76fad067d48dfee701e004.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106000;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_6f59b0c8ef34b6f28aac8600.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.057000;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_14e7fc56b5f9bac78f291ab2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_65e049a118e90c59ae6e942f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_c48d7322aba5ff10142a8943.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_6c0d89e9e99cd7ca391c7640.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-21.780000px;}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.820000px;}
.v1{vertical-align:21.816000px;}
.lsf{letter-spacing:-3.366000px;}
.ls36{letter-spacing:-3.060000px;}
.ls3a{letter-spacing:-2.400000px;}
.ls32{letter-spacing:-2.160000px;}
.ls34{letter-spacing:-1.860000px;}
.ls37{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.660000px;}
.ls25{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.594000px;}
.ls3{letter-spacing:-0.576000px;}
.ls35{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.528000px;}
.ls28{letter-spacing:-0.462000px;}
.ls2c{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.396000px;}
.ls1e{letter-spacing:-0.330000px;}
.ls12{letter-spacing:-0.264000px;}
.ls1b{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.198000px;}
.ls2f{letter-spacing:-0.180000px;}
.ls1{letter-spacing:-0.151200px;}
.ls5{letter-spacing:-0.132000px;}
.ls18{letter-spacing:-0.120000px;}
.ls0{letter-spacing:-0.075600px;}
.ls4{letter-spacing:-0.066000px;}
.ls30{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.004680px;}
.ls29{letter-spacing:0.066000px;}
.ls33{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.264000px;}
.ls2a{letter-spacing:0.270000px;}
.ls2e{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.330000px;}
.ls23{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.462000px;}
.ls26{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.482520px;}
.ls11{letter-spacing:0.495000px;}
.ls6{letter-spacing:0.528000px;}
.lsa{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.780000px;}
.ls22{letter-spacing:0.858000px;}
.ls20{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.900000px;}
.ls10{letter-spacing:0.990000px;}
.ls2b{letter-spacing:1.020000px;}
.ls16{letter-spacing:1.056000px;}
.ls39{letter-spacing:1.080000px;}
.ls38{letter-spacing:1.260000px;}
.ls13{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.386000px;}
.ls21{letter-spacing:1.512120px;}
.ls17{letter-spacing:1.584000px;}
.lse{letter-spacing:1.914000px;}
.ls1c{letter-spacing:2.244000px;}
.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;}
}
.ws6a{word-spacing:-14.916000px;}
.ws4f{word-spacing:-14.256000px;}
.ws4e{word-spacing:-14.058000px;}
.ws6d{word-spacing:-13.728000px;}
.ws6b{word-spacing:-13.266000px;}
.ws6e{word-spacing:-13.134000px;}
.ws50{word-spacing:-13.002000px;}
.ws1c{word-spacing:-12.540000px;}
.ws6c{word-spacing:-12.342000px;}
.ws0{word-spacing:-12.276000px;}
.ws8e{word-spacing:-12.240000px;}
.ws8c{word-spacing:-12.060000px;}
.ws8d{word-spacing:-11.700000px;}
.ws51{word-spacing:-5.950800px;}
.ws2a{word-spacing:-3.696000px;}
.wsa5{word-spacing:-3.600000px;}
.ws7b{word-spacing:-3.498000px;}
.ws48{word-spacing:-3.432000px;}
.ws1e{word-spacing:-3.300000px;}
.ws31{word-spacing:-3.234000px;}
.ws8{word-spacing:-3.168000px;}
.ws5{word-spacing:-3.102000px;}
.ws89{word-spacing:-3.000000px;}
.ws10{word-spacing:-2.970000px;}
.ws98{word-spacing:-2.880000px;}
.ws33{word-spacing:-2.838000px;}
.ws5f{word-spacing:-2.820000px;}
.ws79{word-spacing:-2.772000px;}
.wsc{word-spacing:-2.706000px;}
.ws22{word-spacing:-2.640000px;}
.ws47{word-spacing:-2.580000px;}
.ws11{word-spacing:-2.574000px;}
.ws6{word-spacing:-2.442000px;}
.ws28{word-spacing:-2.310000px;}
.wsf{word-spacing:-2.244000px;}
.ws25{word-spacing:-2.178000px;}
.ws6f{word-spacing:-2.100000px;}
.wsb{word-spacing:-2.046000px;}
.ws46{word-spacing:-1.980000px;}
.ws7{word-spacing:-1.914000px;}
.wsac{word-spacing:-1.860000px;}
.wsa7{word-spacing:-1.800000px;}
.ws27{word-spacing:-1.782000px;}
.wsa{word-spacing:-1.716000px;}
.ws61{word-spacing:-1.680000px;}
.ws23{word-spacing:-1.650000px;}
.wsa0{word-spacing:-1.620000px;}
.ws3b{word-spacing:-1.584000px;}
.wsab{word-spacing:-1.560000px;}
.ws70{word-spacing:-1.518000px;}
.wse{word-spacing:-1.452000px;}
.ws39{word-spacing:-1.386000px;}
.wsa1{word-spacing:-1.380000px;}
.ws87{word-spacing:-1.320000px;}
.wsb1{word-spacing:-1.260000px;}
.ws4b{word-spacing:-1.254000px;}
.wsa9{word-spacing:-1.200000px;}
.ws2b{word-spacing:-1.188000px;}
.ws71{word-spacing:-1.122000px;}
.wsa8{word-spacing:-1.080000px;}
.ws45{word-spacing:-1.056000px;}
.ws21{word-spacing:-1.020000px;}
.ws38{word-spacing:-0.990000px;}
.wsaf{word-spacing:-0.960000px;}
.wsd{word-spacing:-0.924000px;}
.ws9f{word-spacing:-0.900000px;}
.ws7a{word-spacing:-0.864000px;}
.ws80{word-spacing:-0.858000px;}
.wsa3{word-spacing:-0.840000px;}
.ws29{word-spacing:-0.792000px;}
.ws9d{word-spacing:-0.780000px;}
.ws2f{word-spacing:-0.726000px;}
.ws97{word-spacing:-0.720000px;}
.ws73{word-spacing:-0.594000px;}
.ws60{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.528000px;}
.ws3a{word-spacing:-0.495000px;}
.ws20{word-spacing:-0.480000px;}
.ws14{word-spacing:-0.462000px;}
.ws81{word-spacing:-0.432000px;}
.ws4d{word-spacing:-0.396000px;}
.wsa6{word-spacing:-0.360000px;}
.ws12{word-spacing:-0.330000px;}
.wsa2{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.270000px;}
.ws7e{word-spacing:-0.264000px;}
.ws99{word-spacing:-0.240000px;}
.ws32{word-spacing:-0.198000px;}
.ws1d{word-spacing:-0.180000px;}
.ws35{word-spacing:-0.132000px;}
.wsae{word-spacing:-0.120000px;}
.ws5c{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws2d{word-spacing:0.066000px;}
.ws1{word-spacing:0.075600px;}
.ws78{word-spacing:0.132000px;}
.ws2{word-spacing:0.151200px;}
.ws85{word-spacing:0.198000px;}
.ws52{word-spacing:0.264000px;}
.ws24{word-spacing:0.330000px;}
.wsb0{word-spacing:0.360000px;}
.ws2c{word-spacing:0.396000px;}
.ws95{word-spacing:0.420000px;}
.ws76{word-spacing:0.462000px;}
.ws34{word-spacing:0.528000px;}
.ws4{word-spacing:0.576000px;}
.ws16{word-spacing:0.594000px;}
.ws75{word-spacing:0.660000px;}
.ws9a{word-spacing:0.720000px;}
.ws7f{word-spacing:0.726000px;}
.ws41{word-spacing:0.858000px;}
.ws88{word-spacing:0.900000px;}
.ws13{word-spacing:0.924000px;}
.ws9{word-spacing:0.990000px;}
.ws8f{word-spacing:1.056000px;}
.ws15{word-spacing:1.122000px;}
.ws63{word-spacing:1.140000px;}
.ws4a{word-spacing:1.188000px;}
.ws4c{word-spacing:1.320000px;}
.ws57{word-spacing:1.386000px;}
.wsaa{word-spacing:1.440000px;}
.ws59{word-spacing:1.452000px;}
.ws37{word-spacing:1.518000px;}
.ws68{word-spacing:1.584000px;}
.ws5d{word-spacing:1.650000px;}
.ws56{word-spacing:1.716000px;}
.ws18{word-spacing:1.764000px;}
.ws69{word-spacing:1.848000px;}
.wsa4{word-spacing:1.860000px;}
.ws3c{word-spacing:1.914000px;}
.ws26{word-spacing:1.980000px;}
.ws1b{word-spacing:2.100000px;}
.ws42{word-spacing:2.112000px;}
.ws9e{word-spacing:2.160000px;}
.ws55{word-spacing:2.178000px;}
.ws96{word-spacing:2.280000px;}
.ws3f{word-spacing:2.376000px;}
.wsb2{word-spacing:2.400000px;}
.ws2e{word-spacing:2.442000px;}
.ws84{word-spacing:2.484000px;}
.ws30{word-spacing:2.508000px;}
.ws36{word-spacing:2.574000px;}
.ws54{word-spacing:2.640000px;}
.ws92{word-spacing:2.700000px;}
.ws44{word-spacing:2.772000px;}
.ws3e{word-spacing:2.838000px;}
.ws62{word-spacing:2.880000px;}
.ws49{word-spacing:2.904000px;}
.ws64{word-spacing:2.970000px;}
.ws72{word-spacing:3.036000px;}
.wsb3{word-spacing:3.060000px;}
.ws40{word-spacing:3.102000px;}
.wsb4{word-spacing:3.120000px;}
.ws67{word-spacing:3.168000px;}
.ws74{word-spacing:3.234000px;}
.ws43{word-spacing:3.300000px;}
.ws1a{word-spacing:3.318000px;}
.ws9b{word-spacing:3.480000px;}
.ws9c{word-spacing:3.540000px;}
.ws66{word-spacing:3.630000px;}
.ws5e{word-spacing:3.696000px;}
.ws86{word-spacing:3.828000px;}
.ws93{word-spacing:3.840000px;}
.ws7d{word-spacing:3.894000px;}
.ws83{word-spacing:3.942000px;}
.ws82{word-spacing:4.026000px;}
.ws17{word-spacing:4.074000px;}
.ws8b{word-spacing:4.080000px;}
.ws65{word-spacing:4.092000px;}
.ws7c{word-spacing:4.290000px;}
.ws94{word-spacing:4.320000px;}
.ws8a{word-spacing:4.380000px;}
.wsad{word-spacing:4.500000px;}
.ws58{word-spacing:5.082000px;}
.ws3d{word-spacing:5.280000px;}
.ws1f{word-spacing:5.700000px;}
.ws91{word-spacing:5.760000px;}
.ws5b{word-spacing:5.808000px;}
.ws77{word-spacing:5.874000px;}
.ws5a{word-spacing:6.270000px;}
.ws19{word-spacing:8.652000px;}
._9{margin-left:-7.314960px;}
._5{margin-left:-5.364960px;}
._6{margin-left:-4.034280px;}
._2{margin-left:-3.031560px;}
._0{margin-left:-1.436400px;}
._1{width:1.413720px;}
._3{width:2.714400px;}
._4{width:4.201080px;}
._a{width:6.710040px;}
._8{width:38.933880px;}
._7{width:42.875880px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.320000px;}
.fs7{font-size:38.280000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y21{bottom:70.883850px;}
.y20{bottom:99.909750px;}
.ye6{bottom:99.924450px;}
.y122{bottom:100.476000px;}
.y9a{bottom:104.376450px;}
.y101{bottom:104.453100px;}
.y1f{bottom:111.911250px;}
.y4e{bottom:112.442550px;}
.y75{bottom:112.962900px;}
.ye5{bottom:114.922950px;}
.y121{bottom:116.976000px;}
.y100{bottom:122.454600px;}
.y1e{bottom:123.912750px;}
.y4d{bottom:130.444050px;}
.y74{bottom:130.964400px;}
.y120{bottom:133.476000px;}
.ye4{bottom:134.376450px;}
.y1d{bottom:135.914250px;}
.yff{bottom:140.456100px;}
.y1c{bottom:147.915750px;}
.y4c{bottom:148.445550px;}
.y73{bottom:148.965900px;}
.y11f{bottom:149.976000px;}
.ybe{bottom:156.936300px;}
.yfe{bottom:158.457600px;}
.y1b{bottom:164.169750px;}
.y4b{bottom:166.447050px;}
.y11e{bottom:166.476000px;}
.y72{bottom:166.967400px;}
.ybd{bottom:174.937800px;}
.y99{bottom:175.461000px;}
.y1a{bottom:176.171250px;}
.yfd{bottom:176.459100px;}
.y11d{bottom:182.976000px;}
.y4a{bottom:184.448550px;}
.y71{bottom:184.968900px;}
.y19{bottom:192.425250px;}
.ybc{bottom:192.939300px;}
.y98{bottom:193.462500px;}
.ye3{bottom:193.539600px;}
.yfc{bottom:194.460600px;}
.y11c{bottom:199.476000px;}
.y49{bottom:202.450050px;}
.y70{bottom:202.970400px;}
.ybb{bottom:210.940800px;}
.y97{bottom:211.464000px;}
.ye2{bottom:211.541100px;}
.yfb{bottom:212.462100px;}
.y11b{bottom:215.976000px;}
.y48{bottom:220.451550px;}
.y6f{bottom:220.971900px;}
.yba{bottom:228.942300px;}
.y96{bottom:229.465500px;}
.ye1{bottom:229.542600px;}
.yfa{bottom:230.463600px;}
.y11a{bottom:232.476000px;}
.y47{bottom:238.453050px;}
.y6e{bottom:238.973400px;}
.y18{bottom:241.185300px;}
.yb9{bottom:246.943800px;}
.y95{bottom:247.467000px;}
.ye0{bottom:247.544100px;}
.yf9{bottom:248.465100px;}
.y119{bottom:248.976000px;}
.y46{bottom:256.454550px;}
.y17{bottom:259.186800px;}
.yb8{bottom:264.945300px;}
.y94{bottom:265.468500px;}
.y118{bottom:265.476000px;}
.ydf{bottom:265.545600px;}
.yf8{bottom:266.466600px;}
.y6d{bottom:266.468100px;}
.y45{bottom:274.456050px;}
.y16{bottom:277.188300px;}
.y117{bottom:281.976000px;}
.yb7{bottom:282.946800px;}
.y93{bottom:283.470000px;}
.yde{bottom:283.547100px;}
.yf7{bottom:284.468100px;}
.y44{bottom:292.457550px;}
.y15{bottom:295.189800px;}
.y116{bottom:298.476000px;}
.yb6{bottom:300.948300px;}
.y92{bottom:301.471500px;}
.ydd{bottom:301.548600px;}
.y6c{bottom:309.973950px;}
.y43{bottom:310.459050px;}
.yf6{bottom:311.962800px;}
.y14{bottom:313.191300px;}
.y115{bottom:314.976000px;}
.yb5{bottom:318.949800px;}
.y91{bottom:319.473000px;}
.y6b{bottom:327.975450px;}
.y42{bottom:328.460550px;}
.ydc{bottom:329.038350px;}
.y13{bottom:331.192800px;}
.y114{bottom:331.476000px;}
.yb4{bottom:336.951300px;}
.y90{bottom:337.474500px;}
.y6a{bottom:345.976950px;}
.y41{bottom:346.462050px;}
.y113{bottom:347.976000px;}
.y12{bottom:349.194300px;}
.yb3{bottom:354.952800px;}
.yf5{bottom:355.471500px;}
.ydb{bottom:356.537850px;}
.y69{bottom:363.978450px;}
.y40{bottom:364.463550px;}
.y8f{bottom:364.476000px;}
.y11{bottom:367.195800px;}
.yb2{bottom:372.954300px;}
.yf4{bottom:373.473000px;}
.y112{bottom:380.976000px;}
.y68{bottom:381.979950px;}
.y3f{bottom:382.465050px;}
.y8e{bottom:382.476000px;}
.y10{bottom:385.197300px;}
.yb1{bottom:390.955800px;}
.yf3{bottom:391.474500px;}
.y111{bottom:397.476000px;}
.yda{bottom:400.036200px;}
.y3e{bottom:400.466550px;}
.y8d{bottom:400.476000px;}
.yf{bottom:403.198800px;}
.yb0{bottom:408.957300px;}
.y67{bottom:408.981300px;}
.y110{bottom:413.976000px;}
.yd9{bottom:418.037700px;}
.y3d{bottom:418.468050px;}
.y8c{bottom:418.476000px;}
.ye{bottom:421.200300px;}
.yaf{bottom:426.958800px;}
.y66{bottom:426.981300px;}
.y10f{bottom:430.476000px;}
.yd8{bottom:436.039200px;}
.y3c{bottom:436.469550px;}
.y8b{bottom:436.476000px;}
.yd{bottom:439.201800px;}
.yae{bottom:444.960300px;}
.y65{bottom:444.981300px;}
.y10e{bottom:446.976000px;}
.yd7{bottom:454.040700px;}
.y3b{bottom:454.471050px;}
.y8a{bottom:454.476000px;}
.yc{bottom:457.203300px;}
.yad{bottom:462.961800px;}
.y64{bottom:462.981300px;}
.y10d{bottom:463.476000px;}
.yd6{bottom:472.042200px;}
.y3a{bottom:472.472550px;}
.y89{bottom:472.476000px;}
.yb{bottom:475.204800px;}
.y10c{bottom:479.976000px;}
.yac{bottom:480.963300px;}
.y13b{bottom:482.999400px;}
.y63{bottom:489.957300px;}
.yd5{bottom:490.043700px;}
.y39{bottom:490.474050px;}
.y88{bottom:490.476000px;}
.ya{bottom:493.206300px;}
.y10b{bottom:496.476000px;}
.yab{bottom:498.964800px;}
.y13a{bottom:499.499400px;}
.y62{bottom:507.958800px;}
.yd4{bottom:508.045200px;}
.y38{bottom:508.475550px;}
.y87{bottom:508.476000px;}
.y9{bottom:511.207800px;}
.y10a{bottom:512.976000px;}
.y139{bottom:515.999400px;}
.yaa{bottom:516.966300px;}
.y61{bottom:525.960300px;}
.yd3{bottom:526.046700px;}
.yf2{bottom:526.476000px;}
.y37{bottom:526.477050px;}
.y8{bottom:529.209300px;}
.y109{bottom:529.476000px;}
.y138{bottom:532.499400px;}
.ya9{bottom:534.967800px;}
.y86{bottom:535.471500px;}
.y60{bottom:543.961800px;}
.yd2{bottom:544.048200px;}
.y36{bottom:544.478550px;}
.y108{bottom:545.976000px;}
.y7{bottom:547.210800px;}
.y137{bottom:548.999400px;}
.ya8{bottom:552.969300px;}
.yf1{bottom:553.468500px;}
.y85{bottom:553.473000px;}
.y5f{bottom:561.963300px;}
.yd1{bottom:562.024200px;}
.y107{bottom:562.476000px;}
.y35{bottom:562.480050px;}
.y6{bottom:565.212300px;}
.y136{bottom:565.499400px;}
.ya7{bottom:570.970800px;}
.yf0{bottom:571.470000px;}
.y84{bottom:571.474500px;}
.y106{bottom:578.976000px;}
.y5e{bottom:579.964800px;}
.yd0{bottom:580.025700px;}
.y34{bottom:580.481550px;}
.y135{bottom:581.999400px;}
.y5{bottom:583.213800px;}
.ya6{bottom:588.972300px;}
.yef{bottom:589.471500px;}
.y83{bottom:589.476000px;}
.y105{bottom:595.476000px;}
.y5d{bottom:597.966300px;}
.ycf{bottom:598.027200px;}
.y33{bottom:598.483050px;}
.y134{bottom:598.499400px;}
.y4{bottom:601.215300px;}
.ya5{bottom:606.973800px;}
.yee{bottom:607.473000px;}
.y104{bottom:611.976000px;}
.y133{bottom:614.999400px;}
.y5c{bottom:615.967800px;}
.yce{bottom:616.028700px;}
.y32{bottom:616.484550px;}
.y82{bottom:616.970550px;}
.ya4{bottom:624.975300px;}
.yed{bottom:625.474500px;}
.y103{bottom:628.476000px;}
.y132{bottom:631.499400px;}
.y5b{bottom:633.969300px;}
.ycd{bottom:634.030200px;}
.y31{bottom:634.486050px;}
.ya3{bottom:642.976800px;}
.yec{bottom:643.476000px;}
.y102{bottom:644.976000px;}
.y131{bottom:647.999400px;}
.y5a{bottom:651.970800px;}
.ycc{bottom:652.031700px;}
.y30{bottom:652.487550px;}
.y81{bottom:660.471900px;}
.ya2{bottom:660.978300px;}
.y130{bottom:664.499400px;}
.y59{bottom:669.972300px;}
.ycb{bottom:670.033200px;}
.y2f{bottom:670.489050px;}
.yeb{bottom:670.970550px;}
.y80{bottom:678.473400px;}
.ya1{bottom:678.979800px;}
.y12f{bottom:680.999400px;}
.y58{bottom:687.973800px;}
.yca{bottom:688.034700px;}
.y2e{bottom:688.490550px;}
.y7f{bottom:696.474900px;}
.ya0{bottom:696.981300px;}
.y12e{bottom:697.499400px;}
.y57{bottom:705.975300px;}
.yc9{bottom:706.036200px;}
.y2d{bottom:706.492050px;}
.y12d{bottom:713.999400px;}
.yea{bottom:714.467400px;}
.y7e{bottom:714.476400px;}
.y56{bottom:723.976800px;}
.yc8{bottom:724.037700px;}
.y9f{bottom:724.471050px;}
.y2c{bottom:724.493550px;}
.y12c{bottom:730.499400px;}
.ye9{bottom:732.468900px;}
.y7d{bottom:732.477900px;}
.y55{bottom:741.978300px;}
.yc7{bottom:742.039200px;}
.y2b{bottom:742.495050px;}
.y12b{bottom:746.999400px;}
.ye8{bottom:750.470400px;}
.y7c{bottom:750.479400px;}
.y9e{bottom:751.970550px;}
.y54{bottom:759.979800px;}
.yc6{bottom:760.040700px;}
.y2a{bottom:760.496550px;}
.y12a{bottom:763.499400px;}
.ye7{bottom:768.471900px;}
.y7b{bottom:768.480900px;}
.y53{bottom:777.981300px;}
.yc5{bottom:778.042200px;}
.y29{bottom:778.498050px;}
.y129{bottom:779.999400px;}
.y7a{bottom:786.473400px;}
.y9d{bottom:795.482400px;}
.yc4{bottom:796.043700px;}
.y128{bottom:796.499400px;}
.y79{bottom:804.474900px;}
.y52{bottom:805.471050px;}
.y28{bottom:805.499400px;}
.y127{bottom:812.999400px;}
.y9c{bottom:813.482400px;}
.yc3{bottom:814.045200px;}
.y78{bottom:822.476400px;}
.y27{bottom:823.499400px;}
.y126{bottom:829.499400px;}
.y9b{bottom:831.482400px;}
.yc2{bottom:832.046700px;}
.y51{bottom:832.970550px;}
.y3{bottom:835.215300px;}
.y77{bottom:840.477900px;}
.y26{bottom:841.499400px;}
.y125{bottom:845.999400px;}
.yc1{bottom:850.048200px;}
.y76{bottom:858.479400px;}
.y25{bottom:859.499400px;}
.y124{bottom:862.499400px;}
.y2{bottom:864.725550px;}
.yc0{bottom:868.049700px;}
.y50{bottom:876.480900px;}
.y24{bottom:877.499400px;}
.y123{bottom:878.999400px;}
.y1{bottom:889.919250px;}
.y4f{bottom:894.482400px;}
.y23{bottom:895.499400px;}
.ybf{bottom:895.544250px;}
.y22{bottom:934.435800px;}
.hc{height:25.164000px;}
.h5{height:30.618164px;}
.ha{height:39.788086px;}
.h7{height:41.176758px;}
.he{height:42.984000px;}
.h8{height:47.760000px;}
.h9{height:49.412109px;}
.h4{height:52.536000px;}
.hb{height:52.572000px;}
.hd{height:52.638000px;}
.h6{height:54.902344px;}
.h3{height:57.312000px;}
.h2{height:69.176953px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x6{left:102.050400px;}
.x1{left:106.299150px;}
.x2{left:127.559100px;}
.x5{left:354.825300px;}
.x4{left:578.591100px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.840000pt;}
.v1{vertical-align:19.392000pt;}
.lsf{letter-spacing:-2.992000pt;}
.ls36{letter-spacing:-2.720000pt;}
.ls3a{letter-spacing:-2.133333pt;}
.ls32{letter-spacing:-1.920000pt;}
.ls34{letter-spacing:-1.653333pt;}
.ls37{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls25{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.528000pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls35{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.469333pt;}
.ls28{letter-spacing:-0.410667pt;}
.ls2c{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.352000pt;}
.ls1e{letter-spacing:-0.293333pt;}
.ls12{letter-spacing:-0.234667pt;}
.ls1b{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.176000pt;}
.ls2f{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:-0.134400pt;}
.ls5{letter-spacing:-0.117333pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:-0.067200pt;}
.ls4{letter-spacing:-0.058667pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.004160pt;}
.ls29{letter-spacing:0.058667pt;}
.ls33{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.234667pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls2e{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.293333pt;}
.ls23{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.410667pt;}
.ls26{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.428907pt;}
.ls11{letter-spacing:0.440000pt;}
.ls6{letter-spacing:0.469333pt;}
.lsa{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.693333pt;}
.ls22{letter-spacing:0.762667pt;}
.ls20{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.880000pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls16{letter-spacing:0.938667pt;}
.ls39{letter-spacing:0.960000pt;}
.ls38{letter-spacing:1.120000pt;}
.ls13{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.232000pt;}
.ls21{letter-spacing:1.344107pt;}
.ls17{letter-spacing:1.408000pt;}
.lse{letter-spacing:1.701333pt;}
.ls1c{letter-spacing:1.994667pt;}
.ws6a{word-spacing:-13.258667pt;}
.ws4f{word-spacing:-12.672000pt;}
.ws4e{word-spacing:-12.496000pt;}
.ws6d{word-spacing:-12.202667pt;}
.ws6b{word-spacing:-11.792000pt;}
.ws6e{word-spacing:-11.674667pt;}
.ws50{word-spacing:-11.557333pt;}
.ws1c{word-spacing:-11.146667pt;}
.ws6c{word-spacing:-10.970667pt;}
.ws0{word-spacing:-10.912000pt;}
.ws8e{word-spacing:-10.880000pt;}
.ws8c{word-spacing:-10.720000pt;}
.ws8d{word-spacing:-10.400000pt;}
.ws51{word-spacing:-5.289600pt;}
.ws2a{word-spacing:-3.285333pt;}
.wsa5{word-spacing:-3.200000pt;}
.ws7b{word-spacing:-3.109333pt;}
.ws48{word-spacing:-3.050667pt;}
.ws1e{word-spacing:-2.933333pt;}
.ws31{word-spacing:-2.874667pt;}
.ws8{word-spacing:-2.816000pt;}
.ws5{word-spacing:-2.757333pt;}
.ws89{word-spacing:-2.666667pt;}
.ws10{word-spacing:-2.640000pt;}
.ws98{word-spacing:-2.560000pt;}
.ws33{word-spacing:-2.522667pt;}
.ws5f{word-spacing:-2.506667pt;}
.ws79{word-spacing:-2.464000pt;}
.wsc{word-spacing:-2.405333pt;}
.ws22{word-spacing:-2.346667pt;}
.ws47{word-spacing:-2.293333pt;}
.ws11{word-spacing:-2.288000pt;}
.ws6{word-spacing:-2.170667pt;}
.ws28{word-spacing:-2.053333pt;}
.wsf{word-spacing:-1.994667pt;}
.ws25{word-spacing:-1.936000pt;}
.ws6f{word-spacing:-1.866667pt;}
.wsb{word-spacing:-1.818667pt;}
.ws46{word-spacing:-1.760000pt;}
.ws7{word-spacing:-1.701333pt;}
.wsac{word-spacing:-1.653333pt;}
.wsa7{word-spacing:-1.600000pt;}
.ws27{word-spacing:-1.584000pt;}
.wsa{word-spacing:-1.525333pt;}
.ws61{word-spacing:-1.493333pt;}
.ws23{word-spacing:-1.466667pt;}
.wsa0{word-spacing:-1.440000pt;}
.ws3b{word-spacing:-1.408000pt;}
.wsab{word-spacing:-1.386667pt;}
.ws70{word-spacing:-1.349333pt;}
.wse{word-spacing:-1.290667pt;}
.ws39{word-spacing:-1.232000pt;}
.wsa1{word-spacing:-1.226667pt;}
.ws87{word-spacing:-1.173333pt;}
.wsb1{word-spacing:-1.120000pt;}
.ws4b{word-spacing:-1.114667pt;}
.wsa9{word-spacing:-1.066667pt;}
.ws2b{word-spacing:-1.056000pt;}
.ws71{word-spacing:-0.997333pt;}
.wsa8{word-spacing:-0.960000pt;}
.ws45{word-spacing:-0.938667pt;}
.ws21{word-spacing:-0.906667pt;}
.ws38{word-spacing:-0.880000pt;}
.wsaf{word-spacing:-0.853333pt;}
.wsd{word-spacing:-0.821333pt;}
.ws9f{word-spacing:-0.800000pt;}
.ws7a{word-spacing:-0.768000pt;}
.ws80{word-spacing:-0.762667pt;}
.wsa3{word-spacing:-0.746667pt;}
.ws29{word-spacing:-0.704000pt;}
.ws9d{word-spacing:-0.693333pt;}
.ws2f{word-spacing:-0.645333pt;}
.ws97{word-spacing:-0.640000pt;}
.ws73{word-spacing:-0.528000pt;}
.ws60{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.469333pt;}
.ws3a{word-spacing:-0.440000pt;}
.ws20{word-spacing:-0.426667pt;}
.ws14{word-spacing:-0.410667pt;}
.ws81{word-spacing:-0.384000pt;}
.ws4d{word-spacing:-0.352000pt;}
.wsa6{word-spacing:-0.320000pt;}
.ws12{word-spacing:-0.293333pt;}
.wsa2{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.240000pt;}
.ws7e{word-spacing:-0.234667pt;}
.ws99{word-spacing:-0.213333pt;}
.ws32{word-spacing:-0.176000pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws35{word-spacing:-0.117333pt;}
.wsae{word-spacing:-0.106667pt;}
.ws5c{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.058667pt;}
.ws1{word-spacing:0.067200pt;}
.ws78{word-spacing:0.117333pt;}
.ws2{word-spacing:0.134400pt;}
.ws85{word-spacing:0.176000pt;}
.ws52{word-spacing:0.234667pt;}
.ws24{word-spacing:0.293333pt;}
.wsb0{word-spacing:0.320000pt;}
.ws2c{word-spacing:0.352000pt;}
.ws95{word-spacing:0.373333pt;}
.ws76{word-spacing:0.410667pt;}
.ws34{word-spacing:0.469333pt;}
.ws4{word-spacing:0.512000pt;}
.ws16{word-spacing:0.528000pt;}
.ws75{word-spacing:0.586667pt;}
.ws9a{word-spacing:0.640000pt;}
.ws7f{word-spacing:0.645333pt;}
.ws41{word-spacing:0.762667pt;}
.ws88{word-spacing:0.800000pt;}
.ws13{word-spacing:0.821333pt;}
.ws9{word-spacing:0.880000pt;}
.ws8f{word-spacing:0.938667pt;}
.ws15{word-spacing:0.997333pt;}
.ws63{word-spacing:1.013333pt;}
.ws4a{word-spacing:1.056000pt;}
.ws4c{word-spacing:1.173333pt;}
.ws57{word-spacing:1.232000pt;}
.wsaa{word-spacing:1.280000pt;}
.ws59{word-spacing:1.290667pt;}
.ws37{word-spacing:1.349333pt;}
.ws68{word-spacing:1.408000pt;}
.ws5d{word-spacing:1.466667pt;}
.ws56{word-spacing:1.525333pt;}
.ws18{word-spacing:1.568000pt;}
.ws69{word-spacing:1.642667pt;}
.wsa4{word-spacing:1.653333pt;}
.ws3c{word-spacing:1.701333pt;}
.ws26{word-spacing:1.760000pt;}
.ws1b{word-spacing:1.866667pt;}
.ws42{word-spacing:1.877333pt;}
.ws9e{word-spacing:1.920000pt;}
.ws55{word-spacing:1.936000pt;}
.ws96{word-spacing:2.026667pt;}
.ws3f{word-spacing:2.112000pt;}
.wsb2{word-spacing:2.133333pt;}
.ws2e{word-spacing:2.170667pt;}
.ws84{word-spacing:2.208000pt;}
.ws30{word-spacing:2.229333pt;}
.ws36{word-spacing:2.288000pt;}
.ws54{word-spacing:2.346667pt;}
.ws92{word-spacing:2.400000pt;}
.ws44{word-spacing:2.464000pt;}
.ws3e{word-spacing:2.522667pt;}
.ws62{word-spacing:2.560000pt;}
.ws49{word-spacing:2.581333pt;}
.ws64{word-spacing:2.640000pt;}
.ws72{word-spacing:2.698667pt;}
.wsb3{word-spacing:2.720000pt;}
.ws40{word-spacing:2.757333pt;}
.wsb4{word-spacing:2.773333pt;}
.ws67{word-spacing:2.816000pt;}
.ws74{word-spacing:2.874667pt;}
.ws43{word-spacing:2.933333pt;}
.ws1a{word-spacing:2.949333pt;}
.ws9b{word-spacing:3.093333pt;}
.ws9c{word-spacing:3.146667pt;}
.ws66{word-spacing:3.226667pt;}
.ws5e{word-spacing:3.285333pt;}
.ws86{word-spacing:3.402667pt;}
.ws93{word-spacing:3.413333pt;}
.ws7d{word-spacing:3.461333pt;}
.ws83{word-spacing:3.504000pt;}
.ws82{word-spacing:3.578667pt;}
.ws17{word-spacing:3.621333pt;}
.ws8b{word-spacing:3.626667pt;}
.ws65{word-spacing:3.637333pt;}
.ws7c{word-spacing:3.813333pt;}
.ws94{word-spacing:3.840000pt;}
.ws8a{word-spacing:3.893333pt;}
.wsad{word-spacing:4.000000pt;}
.ws58{word-spacing:4.517333pt;}
.ws3d{word-spacing:4.693333pt;}
.ws1f{word-spacing:5.066667pt;}
.ws91{word-spacing:5.120000pt;}
.ws5b{word-spacing:5.162667pt;}
.ws77{word-spacing:5.221333pt;}
.ws5a{word-spacing:5.573333pt;}
.ws19{word-spacing:7.690667pt;}
._9{margin-left:-6.502187pt;}
._5{margin-left:-4.768853pt;}
._6{margin-left:-3.586027pt;}
._2{margin-left:-2.694720pt;}
._0{margin-left:-1.276800pt;}
._1{width:1.256640pt;}
._3{width:2.412800pt;}
._4{width:3.734293pt;}
._a{width:5.964480pt;}
._8{width:34.607893pt;}
._7{width:38.111893pt;}
.fs8{font-size:27.840000pt;}
.fs7{font-size:34.026667pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:63.007867pt;}
.y20{bottom:88.808667pt;}
.ye6{bottom:88.821733pt;}
.y122{bottom:89.312000pt;}
.y9a{bottom:92.779067pt;}
.y101{bottom:92.847200pt;}
.y1f{bottom:99.476667pt;}
.y4e{bottom:99.948933pt;}
.y75{bottom:100.411467pt;}
.ye5{bottom:102.153733pt;}
.y121{bottom:103.978667pt;}
.y100{bottom:108.848533pt;}
.y1e{bottom:110.144667pt;}
.y4d{bottom:115.950267pt;}
.y74{bottom:116.412800pt;}
.y120{bottom:118.645333pt;}
.ye4{bottom:119.445733pt;}
.y1d{bottom:120.812667pt;}
.yff{bottom:124.849867pt;}
.y1c{bottom:131.480667pt;}
.y4c{bottom:131.951600pt;}
.y73{bottom:132.414133pt;}
.y11f{bottom:133.312000pt;}
.ybe{bottom:139.498933pt;}
.yfe{bottom:140.851200pt;}
.y1b{bottom:145.928667pt;}
.y4b{bottom:147.952933pt;}
.y11e{bottom:147.978667pt;}
.y72{bottom:148.415467pt;}
.ybd{bottom:155.500267pt;}
.y99{bottom:155.965333pt;}
.y1a{bottom:156.596667pt;}
.yfd{bottom:156.852533pt;}
.y11d{bottom:162.645333pt;}
.y4a{bottom:163.954267pt;}
.y71{bottom:164.416800pt;}
.y19{bottom:171.044667pt;}
.ybc{bottom:171.501600pt;}
.y98{bottom:171.966667pt;}
.ye3{bottom:172.035200pt;}
.yfc{bottom:172.853867pt;}
.y11c{bottom:177.312000pt;}
.y49{bottom:179.955600pt;}
.y70{bottom:180.418133pt;}
.ybb{bottom:187.502933pt;}
.y97{bottom:187.968000pt;}
.ye2{bottom:188.036533pt;}
.yfb{bottom:188.855200pt;}
.y11b{bottom:191.978667pt;}
.y48{bottom:195.956933pt;}
.y6f{bottom:196.419467pt;}
.yba{bottom:203.504267pt;}
.y96{bottom:203.969333pt;}
.ye1{bottom:204.037867pt;}
.yfa{bottom:204.856533pt;}
.y11a{bottom:206.645333pt;}
.y47{bottom:211.958267pt;}
.y6e{bottom:212.420800pt;}
.y18{bottom:214.386933pt;}
.yb9{bottom:219.505600pt;}
.y95{bottom:219.970667pt;}
.ye0{bottom:220.039200pt;}
.yf9{bottom:220.857867pt;}
.y119{bottom:221.312000pt;}
.y46{bottom:227.959600pt;}
.y17{bottom:230.388267pt;}
.yb8{bottom:235.506933pt;}
.y94{bottom:235.972000pt;}
.y118{bottom:235.978667pt;}
.ydf{bottom:236.040533pt;}
.yf8{bottom:236.859200pt;}
.y6d{bottom:236.860533pt;}
.y45{bottom:243.960933pt;}
.y16{bottom:246.389600pt;}
.y117{bottom:250.645333pt;}
.yb7{bottom:251.508267pt;}
.y93{bottom:251.973333pt;}
.yde{bottom:252.041867pt;}
.yf7{bottom:252.860533pt;}
.y44{bottom:259.962267pt;}
.y15{bottom:262.390933pt;}
.y116{bottom:265.312000pt;}
.yb6{bottom:267.509600pt;}
.y92{bottom:267.974667pt;}
.ydd{bottom:268.043200pt;}
.y6c{bottom:275.532400pt;}
.y43{bottom:275.963600pt;}
.yf6{bottom:277.300267pt;}
.y14{bottom:278.392267pt;}
.y115{bottom:279.978667pt;}
.yb5{bottom:283.510933pt;}
.y91{bottom:283.976000pt;}
.y6b{bottom:291.533733pt;}
.y42{bottom:291.964933pt;}
.ydc{bottom:292.478533pt;}
.y13{bottom:294.393600pt;}
.y114{bottom:294.645333pt;}
.yb4{bottom:299.512267pt;}
.y90{bottom:299.977333pt;}
.y6a{bottom:307.535067pt;}
.y41{bottom:307.966267pt;}
.y113{bottom:309.312000pt;}
.y12{bottom:310.394933pt;}
.yb3{bottom:315.513600pt;}
.yf5{bottom:315.974667pt;}
.ydb{bottom:316.922533pt;}
.y69{bottom:323.536400pt;}
.y40{bottom:323.967600pt;}
.y8f{bottom:323.978667pt;}
.y11{bottom:326.396267pt;}
.yb2{bottom:331.514933pt;}
.yf4{bottom:331.976000pt;}
.y112{bottom:338.645333pt;}
.y68{bottom:339.537733pt;}
.y3f{bottom:339.968933pt;}
.y8e{bottom:339.978667pt;}
.y10{bottom:342.397600pt;}
.yb1{bottom:347.516267pt;}
.yf3{bottom:347.977333pt;}
.y111{bottom:353.312000pt;}
.yda{bottom:355.587733pt;}
.y3e{bottom:355.970267pt;}
.y8d{bottom:355.978667pt;}
.yf{bottom:358.398933pt;}
.yb0{bottom:363.517600pt;}
.y67{bottom:363.538933pt;}
.y110{bottom:367.978667pt;}
.yd9{bottom:371.589067pt;}
.y3d{bottom:371.971600pt;}
.y8c{bottom:371.978667pt;}
.ye{bottom:374.400267pt;}
.yaf{bottom:379.518933pt;}
.y66{bottom:379.538933pt;}
.y10f{bottom:382.645333pt;}
.yd8{bottom:387.590400pt;}
.y3c{bottom:387.972933pt;}
.y8b{bottom:387.978667pt;}
.yd{bottom:390.401600pt;}
.yae{bottom:395.520267pt;}
.y65{bottom:395.538933pt;}
.y10e{bottom:397.312000pt;}
.yd7{bottom:403.591733pt;}
.y3b{bottom:403.974267pt;}
.y8a{bottom:403.978667pt;}
.yc{bottom:406.402933pt;}
.yad{bottom:411.521600pt;}
.y64{bottom:411.538933pt;}
.y10d{bottom:411.978667pt;}
.yd6{bottom:419.593067pt;}
.y3a{bottom:419.975600pt;}
.y89{bottom:419.978667pt;}
.yb{bottom:422.404267pt;}
.y10c{bottom:426.645333pt;}
.yac{bottom:427.522933pt;}
.y13b{bottom:429.332800pt;}
.y63{bottom:435.517600pt;}
.yd5{bottom:435.594400pt;}
.y39{bottom:435.976933pt;}
.y88{bottom:435.978667pt;}
.ya{bottom:438.405600pt;}
.y10b{bottom:441.312000pt;}
.yab{bottom:443.524267pt;}
.y13a{bottom:443.999467pt;}
.y62{bottom:451.518933pt;}
.yd4{bottom:451.595733pt;}
.y38{bottom:451.978267pt;}
.y87{bottom:451.978667pt;}
.y9{bottom:454.406933pt;}
.y10a{bottom:455.978667pt;}
.y139{bottom:458.666133pt;}
.yaa{bottom:459.525600pt;}
.y61{bottom:467.520267pt;}
.yd3{bottom:467.597067pt;}
.yf2{bottom:467.978667pt;}
.y37{bottom:467.979600pt;}
.y8{bottom:470.408267pt;}
.y109{bottom:470.645333pt;}
.y138{bottom:473.332800pt;}
.ya9{bottom:475.526933pt;}
.y86{bottom:475.974667pt;}
.y60{bottom:483.521600pt;}
.yd2{bottom:483.598400pt;}
.y36{bottom:483.980933pt;}
.y108{bottom:485.312000pt;}
.y7{bottom:486.409600pt;}
.y137{bottom:487.999467pt;}
.ya8{bottom:491.528267pt;}
.yf1{bottom:491.972000pt;}
.y85{bottom:491.976000pt;}
.y5f{bottom:499.522933pt;}
.yd1{bottom:499.577067pt;}
.y107{bottom:499.978667pt;}
.y35{bottom:499.982267pt;}
.y6{bottom:502.410933pt;}
.y136{bottom:502.666133pt;}
.ya7{bottom:507.529600pt;}
.yf0{bottom:507.973333pt;}
.y84{bottom:507.977333pt;}
.y106{bottom:514.645333pt;}
.y5e{bottom:515.524267pt;}
.yd0{bottom:515.578400pt;}
.y34{bottom:515.983600pt;}
.y135{bottom:517.332800pt;}
.y5{bottom:518.412267pt;}
.ya6{bottom:523.530933pt;}
.yef{bottom:523.974667pt;}
.y83{bottom:523.978667pt;}
.y105{bottom:529.312000pt;}
.y5d{bottom:531.525600pt;}
.ycf{bottom:531.579733pt;}
.y33{bottom:531.984933pt;}
.y134{bottom:531.999467pt;}
.y4{bottom:534.413600pt;}
.ya5{bottom:539.532267pt;}
.yee{bottom:539.976000pt;}
.y104{bottom:543.978667pt;}
.y133{bottom:546.666133pt;}
.y5c{bottom:547.526933pt;}
.yce{bottom:547.581067pt;}
.y32{bottom:547.986267pt;}
.y82{bottom:548.418267pt;}
.ya4{bottom:555.533600pt;}
.yed{bottom:555.977333pt;}
.y103{bottom:558.645333pt;}
.y132{bottom:561.332800pt;}
.y5b{bottom:563.528267pt;}
.ycd{bottom:563.582400pt;}
.y31{bottom:563.987600pt;}
.ya3{bottom:571.534933pt;}
.yec{bottom:571.978667pt;}
.y102{bottom:573.312000pt;}
.y131{bottom:575.999467pt;}
.y5a{bottom:579.529600pt;}
.ycc{bottom:579.583733pt;}
.y30{bottom:579.988933pt;}
.y81{bottom:587.086133pt;}
.ya2{bottom:587.536267pt;}
.y130{bottom:590.666133pt;}
.y59{bottom:595.530933pt;}
.ycb{bottom:595.585067pt;}
.y2f{bottom:595.990267pt;}
.yeb{bottom:596.418267pt;}
.y80{bottom:603.087467pt;}
.ya1{bottom:603.537600pt;}
.y12f{bottom:605.332800pt;}
.y58{bottom:611.532267pt;}
.yca{bottom:611.586400pt;}
.y2e{bottom:611.991600pt;}
.y7f{bottom:619.088800pt;}
.ya0{bottom:619.538933pt;}
.y12e{bottom:619.999467pt;}
.y57{bottom:627.533600pt;}
.yc9{bottom:627.587733pt;}
.y2d{bottom:627.992933pt;}
.y12d{bottom:634.666133pt;}
.yea{bottom:635.082133pt;}
.y7e{bottom:635.090133pt;}
.y56{bottom:643.534933pt;}
.yc8{bottom:643.589067pt;}
.y9f{bottom:643.974267pt;}
.y2c{bottom:643.994267pt;}
.y12c{bottom:649.332800pt;}
.ye9{bottom:651.083467pt;}
.y7d{bottom:651.091467pt;}
.y55{bottom:659.536267pt;}
.yc7{bottom:659.590400pt;}
.y2b{bottom:659.995600pt;}
.y12b{bottom:663.999467pt;}
.ye8{bottom:667.084800pt;}
.y7c{bottom:667.092800pt;}
.y9e{bottom:668.418267pt;}
.y54{bottom:675.537600pt;}
.yc6{bottom:675.591733pt;}
.y2a{bottom:675.996933pt;}
.y12a{bottom:678.666133pt;}
.ye7{bottom:683.086133pt;}
.y7b{bottom:683.094133pt;}
.y53{bottom:691.538933pt;}
.yc5{bottom:691.593067pt;}
.y29{bottom:691.998267pt;}
.y129{bottom:693.332800pt;}
.y7a{bottom:699.087467pt;}
.y9d{bottom:707.095467pt;}
.yc4{bottom:707.594400pt;}
.y128{bottom:707.999467pt;}
.y79{bottom:715.088800pt;}
.y52{bottom:715.974267pt;}
.y28{bottom:715.999467pt;}
.y127{bottom:722.666133pt;}
.y9c{bottom:723.095467pt;}
.yc3{bottom:723.595733pt;}
.y78{bottom:731.090133pt;}
.y27{bottom:731.999467pt;}
.y126{bottom:737.332800pt;}
.y9b{bottom:739.095467pt;}
.yc2{bottom:739.597067pt;}
.y51{bottom:740.418267pt;}
.y3{bottom:742.413600pt;}
.y77{bottom:747.091467pt;}
.y26{bottom:747.999467pt;}
.y125{bottom:751.999467pt;}
.yc1{bottom:755.598400pt;}
.y76{bottom:763.092800pt;}
.y25{bottom:763.999467pt;}
.y124{bottom:766.666133pt;}
.y2{bottom:768.644933pt;}
.yc0{bottom:771.599733pt;}
.y50{bottom:779.094133pt;}
.y24{bottom:779.999467pt;}
.y123{bottom:781.332800pt;}
.y1{bottom:791.039333pt;}
.y4f{bottom:795.095467pt;}
.y23{bottom:795.999467pt;}
.ybf{bottom:796.039333pt;}
.y22{bottom:830.609600pt;}
.hc{height:22.368000pt;}
.h5{height:27.216146pt;}
.ha{height:35.367188pt;}
.h7{height:36.601562pt;}
.he{height:38.208000pt;}
.h8{height:42.453333pt;}
.h9{height:43.921875pt;}
.h4{height:46.698667pt;}
.hb{height:46.730667pt;}
.hd{height:46.789333pt;}
.h6{height:48.802083pt;}
.h3{height:50.944000pt;}
.h2{height:61.490625pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x6{left:90.711467pt;}
.x1{left:94.488133pt;}
.x2{left:113.385867pt;}
.x5{left:315.400267pt;}
.x4{left:514.303200pt;}
}




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