
    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_39995aecaa5253b0a2551035.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_16f8c88309ea5758c872c256.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_23caa63fc5fba7f3e9673f36.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_e5b57feb842e820f26ebbd2c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_888b1902cb6461f707364ddb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_c51c12518082181140f3ab5a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708000;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_d888b26bbabe5eb159252f12.woff')format("woff");}.ff7{font-family:ff7;line-height:1.045000;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_2e8e56e9e162db5f78db1d16.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ad3070d7cb46c55843b3ccf2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_62b3ea21722d842d368bda55.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6948a56d33611aae8cd2ac66.woff')format("woff");}.ffb{font-family:ffb;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e899c86c358da568c79b0556.woff')format("woff");}.ffc{font-family:ffc;line-height:0.712000;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:ffd;src:url('chunks/assets/font_a7b494976042c73dc55693f6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.922852;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);}
.v4{vertical-align:-23.760000px;}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:-11.760000px;}
.ls3a{letter-spacing:-4.800000px;}
.ls1a{letter-spacing:-1.800000px;}
.ls15{letter-spacing:-1.584000px;}
.ls34{letter-spacing:-1.368000px;}
.ls31{letter-spacing:-1.296000px;}
.ls2c{letter-spacing:-1.224000px;}
.ls17{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.504000px;}
.ls39{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.579600px;}
.ls30{letter-spacing:0.648000px;}
.ls33{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.792000px;}
.ls27{letter-spacing:0.798000px;}
.ls2a{letter-spacing:0.840600px;}
.ls32{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.936000px;}
.ls2d{letter-spacing:0.957600px;}
.lsf{letter-spacing:1.008000px;}
.ls22{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.152000px;}
.ls29{letter-spacing:1.177200px;}
.ls2b{letter-spacing:1.224000px;}
.ls25{letter-spacing:1.296000px;}
.ls26{letter-spacing:1.368000px;}
.ls20{letter-spacing:1.440000px;}
.ls2f{letter-spacing:1.512000px;}
.ls10{letter-spacing:1.584000px;}
.ls4{letter-spacing:1.656000px;}
.ls36{letter-spacing:2.232000px;}
.ls28{letter-spacing:3.960000px;}
.ls38{letter-spacing:4.416000px;}
.ls8{letter-spacing:4.752000px;}
.ls37{letter-spacing:5.328000px;}
.ls1{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.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;}
}
.ws27{word-spacing:-63.576000px;}
.ws2{word-spacing:-29.640000px;}
.ws59{word-spacing:-20.376000px;}
.ws28{word-spacing:-20.232000px;}
.ws29{word-spacing:-19.584000px;}
.ws5a{word-spacing:-18.864000px;}
.ws74{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.144000px;}
.ws49{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.928000px;}
.ws16{word-spacing:-17.784000px;}
.ws95{word-spacing:-17.712000px;}
.ws72{word-spacing:-17.640000px;}
.ws7f{word-spacing:-17.424000px;}
.ws73{word-spacing:-17.280000px;}
.ws80{word-spacing:-17.208000px;}
.ws48{word-spacing:-16.992000px;}
.ws1{word-spacing:-16.860000px;}
.ws5b{word-spacing:-15.120000px;}
.wsa2{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.162400px;}
.ws5c{word-spacing:-13.488000px;}
.ws3a{word-spacing:-11.856000px;}
.ws6e{word-spacing:-8.640000px;}
.wsa{word-spacing:-4.752000px;}
.ws94{word-spacing:-1.872000px;}
.ws67{word-spacing:-1.368000px;}
.ws63{word-spacing:-1.224000px;}
.ws1a{word-spacing:-1.152000px;}
.ws98{word-spacing:-0.604800px;}
.ws2b{word-spacing:-0.504000px;}
.ws6b{word-spacing:-0.288000px;}
.ws8a{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.ws70{word-spacing:0.072000px;}
.ws31{word-spacing:0.144000px;}
.ws79{word-spacing:0.216000px;}
.ws4b{word-spacing:0.360000px;}
.wsa1{word-spacing:0.384000px;}
.ws87{word-spacing:0.432000px;}
.ws7c{word-spacing:0.504000px;}
.ws26{word-spacing:0.576000px;}
.ws1b{word-spacing:0.648000px;}
.ws23{word-spacing:0.720000px;}
.ws7a{word-spacing:0.792000px;}
.ws40{word-spacing:0.864000px;}
.ws8e{word-spacing:0.936000px;}
.ws18{word-spacing:1.080000px;}
.ws50{word-spacing:1.152000px;}
.ws76{word-spacing:1.224000px;}
.wsa0{word-spacing:1.248000px;}
.ws52{word-spacing:1.368000px;}
.ws53{word-spacing:1.440000px;}
.ws8{word-spacing:1.800000px;}
.ws4c{word-spacing:1.944000px;}
.ws62{word-spacing:2.016000px;}
.ws38{word-spacing:2.088000px;}
.ws5d{word-spacing:2.160000px;}
.ws30{word-spacing:2.304000px;}
.ws2a{word-spacing:2.400000px;}
.ws1c{word-spacing:2.448000px;}
.ws82{word-spacing:2.520000px;}
.ws55{word-spacing:2.592000px;}
.ws4f{word-spacing:2.664000px;}
.ws54{word-spacing:2.880000px;}
.ws6f{word-spacing:2.952000px;}
.ws9b{word-spacing:2.976000px;}
.ws36{word-spacing:3.096000px;}
.ws2f{word-spacing:3.168000px;}
.ws46{word-spacing:3.240000px;}
.ws13{word-spacing:3.360000px;}
.ws33{word-spacing:3.384000px;}
.ws2d{word-spacing:3.456000px;}
.ws1f{word-spacing:3.528000px;}
.ws88{word-spacing:3.600000px;}
.ws32{word-spacing:3.744000px;}
.ws81{word-spacing:3.888000px;}
.ws1d{word-spacing:3.960000px;}
.ws61{word-spacing:4.032000px;}
.ws12{word-spacing:4.104000px;}
.ws84{word-spacing:4.176000px;}
.wsb{word-spacing:4.200000px;}
.ws4a{word-spacing:4.248000px;}
.ws1e{word-spacing:4.320000px;}
.ws8c{word-spacing:4.392000px;}
.ws9{word-spacing:4.464000px;}
.ws60{word-spacing:4.536000px;}
.ws20{word-spacing:4.608000px;}
.ws42{word-spacing:4.680000px;}
.ws9a{word-spacing:4.752000px;}
.ws9f{word-spacing:4.800000px;}
.ws5e{word-spacing:4.896000px;}
.ws78{word-spacing:4.968000px;}
.ws10{word-spacing:5.040000px;}
.ws45{word-spacing:5.112000px;}
.ws83{word-spacing:5.184000px;}
.ws9d{word-spacing:5.256000px;}
.ws3f{word-spacing:5.400000px;}
.ws35{word-spacing:5.472000px;}
.wsf{word-spacing:5.616000px;}
.ws89{word-spacing:5.688000px;}
.ws47{word-spacing:5.760000px;}
.ws3b{word-spacing:6.120000px;}
.ws92{word-spacing:6.264000px;}
.ws99{word-spacing:6.480000px;}
.ws71{word-spacing:6.552000px;}
.ws96{word-spacing:6.840000px;}
.ws91{word-spacing:6.912000px;}
.ws37{word-spacing:7.128000px;}
.ws93{word-spacing:7.200000px;}
.ws7b{word-spacing:7.272000px;}
.ws17{word-spacing:7.344000px;}
.ws11{word-spacing:7.416000px;}
.ws39{word-spacing:7.488000px;}
.ws7{word-spacing:7.560000px;}
.ws4e{word-spacing:7.632000px;}
.ws90{word-spacing:7.776000px;}
.ws34{word-spacing:7.848000px;}
.ws58{word-spacing:7.992000px;}
.ws77{word-spacing:8.208000px;}
.ws7e{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws6{word-spacing:8.400000px;}
.ws2e{word-spacing:8.424000px;}
.ws4d{word-spacing:8.496000px;}
.ws3c{word-spacing:8.568000px;}
.ws9c{word-spacing:8.712000px;}
.ws19{word-spacing:8.856000px;}
.ws25{word-spacing:9.072000px;}
.ws7d{word-spacing:9.144000px;}
.ws43{word-spacing:9.288000px;}
.ws41{word-spacing:9.432000px;}
.ws6a{word-spacing:9.504000px;}
.ws97{word-spacing:9.576000px;}
.ws86{word-spacing:9.720000px;}
.ws85{word-spacing:9.792000px;}
.ws66{word-spacing:9.864000px;}
.ws22{word-spacing:9.936000px;}
.wsd{word-spacing:10.080000px;}
.wsc{word-spacing:10.152000px;}
.ws21{word-spacing:10.224000px;}
.ws44{word-spacing:10.296000px;}
.ws8b{word-spacing:10.368000px;}
.ws68{word-spacing:10.440000px;}
.ws3d{word-spacing:10.584000px;}
.ws5f{word-spacing:10.728000px;}
.ws24{word-spacing:10.872000px;}
.ws65{word-spacing:11.016000px;}
.ws57{word-spacing:11.304000px;}
.ws51{word-spacing:11.448000px;}
.ws8d{word-spacing:11.664000px;}
.ws8f{word-spacing:11.880000px;}
.ws69{word-spacing:11.952000px;}
.ws3e{word-spacing:12.240000px;}
.ws75{word-spacing:12.744000px;}
.ws56{word-spacing:12.888000px;}
.wse{word-spacing:13.176000px;}
.ws64{word-spacing:13.536000px;}
.ws6d{word-spacing:13.780200px;}
.ws9e{word-spacing:16.272000px;}
.ws6c{word-spacing:31.630200px;}
.ws5{word-spacing:75.180000px;}
._10{margin-left:-940.386000px;}
._a{margin-left:-17.784000px;}
._13{margin-left:-15.302400px;}
._11{margin-left:-13.970400px;}
._9{margin-left:-11.952000px;}
._b{margin-left:-10.380000px;}
._5{margin-left:-9.072000px;}
._c{margin-left:-7.164000px;}
._3{margin-left:-5.964000px;}
._f{margin-left:-4.771200px;}
._8{margin-left:-3.576000px;}
._7{margin-left:-2.400000px;}
._2{margin-left:-1.200000px;}
._4{width:1.860000px;}
._d{width:3.026400px;}
._1{width:4.200000px;}
._17{width:5.664000px;}
._15{width:8.148000px;}
._14{width:9.504000px;}
._6{width:11.340000px;}
._12{width:12.540000px;}
._16{width:13.796100px;}
._e{width:31.646100px;}
._0{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y22{bottom:117.000000px;}
.y59{bottom:117.246000px;}
.ycb{bottom:117.932700px;}
.y45{bottom:117.966000px;}
.y13c{bottom:118.194150px;}
.y69{bottom:118.533300px;}
.ya3{bottom:121.207500px;}
.y110{bottom:132.000000px;}
.y21{bottom:136.207500px;}
.y13b{bottom:137.244150px;}
.y9a{bottom:139.500000px;}
.yca{bottom:139.676700px;}
.y58{bottom:139.746000px;}
.y68{bottom:140.727300px;}
.y44{bottom:141.060000px;}
.ya2{bottom:143.707500px;}
.y10f{bottom:147.000000px;}
.y10e{bottom:151.207500px;}
.y13a{bottom:156.294150px;}
.yc9{bottom:161.420700px;}
.y57{bottom:161.652000px;}
.y99{bottom:162.000000px;}
.y67{bottom:162.921300px;}
.y43{bottom:164.154000px;}
.ya1{bottom:166.207500px;}
.y20{bottom:174.460650px;}
.y139{bottom:175.344150px;}
.y83{bottom:177.750000px;}
.yc8{bottom:183.164700px;}
.y56{bottom:183.558000px;}
.y98{bottom:184.500000px;}
.y66{bottom:185.421300px;}
.y42{bottom:187.248000px;}
.ya0{bottom:188.707500px;}
.y138{bottom:194.394150px;}
.y10d{bottom:194.826000px;}
.y1f{bottom:196.960650px;}
.y82{bottom:199.800000px;}
.yc7{bottom:204.908700px;}
.y97{bottom:207.000000px;}
.y65{bottom:207.921300px;}
.yec{bottom:209.888100px;}
.y41{bottom:210.342000px;}
.y9f{bottom:211.207500px;}
.y137{bottom:213.444150px;}
.y55{bottom:216.102000px;}
.y10c{bottom:217.020000px;}
.y1e{bottom:219.460650px;}
.y81{bottom:221.850000px;}
.yc6{bottom:226.652700px;}
.y96{bottom:229.500000px;}
.yeb{bottom:232.244100px;}
.y136{bottom:232.494150px;}
.y40{bottom:233.436000px;}
.y9e{bottom:233.707500px;}
.y54{bottom:238.008000px;}
.y10b{bottom:239.214000px;}
.y1d{bottom:241.960650px;}
.y80{bottom:243.900000px;}
.yc5{bottom:248.396700px;}
.y95{bottom:252.000000px;}
.yea{bottom:254.600100px;}
.y9d{bottom:256.207500px;}
.y3f{bottom:256.530000px;}
.y135{bottom:257.916000px;}
.y53{bottom:259.914000px;}
.y10a{bottom:261.408000px;}
.y7f{bottom:265.950000px;}
.yc4{bottom:270.140700px;}
.y1c{bottom:272.964600px;}
.y94{bottom:274.500000px;}
.y134{bottom:276.216000px;}
.ye9{bottom:276.956100px;}
.y9c{bottom:278.707500px;}
.y3e{bottom:279.624000px;}
.y52{bottom:281.820000px;}
.y109{bottom:283.602000px;}
.y7e{bottom:288.000000px;}
.y1b{bottom:291.714600px;}
.y93{bottom:297.000000px;}
.ye8{bottom:299.312100px;}
.y9b{bottom:301.207500px;}
.y3d{bottom:302.718000px;}
.y51{bottom:303.726000px;}
.y108{bottom:305.796000px;}
.y7d{bottom:310.050000px;}
.y1a{bottom:310.464600px;}
.y133{bottom:317.316000px;}
.y92{bottom:319.500000px;}
.ye7{bottom:321.668100px;}
.y50{bottom:325.632000px;}
.y3c{bottom:325.812000px;}
.y107{bottom:327.990000px;}
.y19{bottom:329.214600px;}
.y7c{bottom:332.100000px;}
.y132{bottom:332.616000px;}
.y91{bottom:342.000000px;}
.ye6{bottom:344.024100px;}
.y4f{bottom:347.538000px;}
.y131{bottom:347.916000px;}
.y18{bottom:347.964600px;}
.y3b{bottom:348.906000px;}
.y106{bottom:350.184000px;}
.y7b{bottom:354.150000px;}
.y130{bottom:363.216000px;}
.y90{bottom:364.500000px;}
.ye5{bottom:366.380100px;}
.y17{bottom:366.714600px;}
.y4e{bottom:369.444000px;}
.y3a{bottom:372.000000px;}
.y105{bottom:372.378000px;}
.y7a{bottom:376.200000px;}
.y12f{bottom:378.516000px;}
.y16{bottom:385.464600px;}
.y8f{bottom:387.000000px;}
.ye4{bottom:388.736100px;}
.y4d{bottom:391.350000px;}
.y12e{bottom:393.816000px;}
.y104{bottom:394.572000px;}
.y39{bottom:395.100000px;}
.y79{bottom:398.250000px;}
.y15{bottom:404.214600px;}
.y12d{bottom:409.116000px;}
.y8e{bottom:409.500000px;}
.ye3{bottom:411.056100px;}
.y4c{bottom:413.256000px;}
.y103{bottom:416.766000px;}
.y78{bottom:420.300000px;}
.y12c{bottom:424.416000px;}
.y14{bottom:431.468550px;}
.y8d{bottom:432.000000px;}
.ye2{bottom:433.412100px;}
.y4b{bottom:435.162000px;}
.y102{bottom:438.960000px;}
.y12b{bottom:439.716000px;}
.y38{bottom:441.426000px;}
.y77{bottom:442.350000px;}
.y13{bottom:453.968550px;}
.y8c{bottom:454.500000px;}
.y12a{bottom:455.016000px;}
.ye1{bottom:455.768100px;}
.y4a{bottom:457.068000px;}
.y101{bottom:461.154000px;}
.y76{bottom:464.400000px;}
.y37{bottom:464.520000px;}
.y129{bottom:470.316000px;}
.y12{bottom:476.468550px;}
.y8b{bottom:477.000000px;}
.ye0{bottom:478.124100px;}
.y49{bottom:478.974000px;}
.y150{bottom:480.750000px;}
.y100{bottom:483.348000px;}
.y128{bottom:485.616000px;}
.y36{bottom:487.614000px;}
.y11{bottom:498.968550px;}
.y8a{bottom:499.500000px;}
.ydf{bottom:500.480100px;}
.y48{bottom:500.880000px;}
.y127{bottom:500.916000px;}
.yff{bottom:505.542000px;}
.y35{bottom:510.708000px;}
.y126{bottom:516.216000px;}
.y14f{bottom:518.250000px;}
.y10{bottom:521.468550px;}
.y89{bottom:522.000000px;}
.y47{bottom:522.786000px;}
.yde{bottom:522.836100px;}
.yfe{bottom:527.736000px;}
.y125{bottom:531.516000px;}
.y34{bottom:533.802000px;}
.yb5{bottom:534.496050px;}
.y14e{bottom:537.000000px;}
.yf{bottom:543.968550px;}
.y88{bottom:544.500000px;}
.ydd{bottom:545.144100px;}
.y124{bottom:546.816000px;}
.yfd{bottom:549.930000px;}
.y14d{bottom:555.750000px;}
.y33{bottom:556.896000px;}
.y123{bottom:562.116000px;}
.ye{bottom:566.468550px;}
.y87{bottom:567.000000px;}
.ydc{bottom:567.500100px;}
.yfc{bottom:572.124000px;}
.y122{bottom:577.416000px;}
.yb4{bottom:579.544050px;}
.y32{bottom:579.990000px;}
.yd{bottom:588.968550px;}
.y86{bottom:589.500000px;}
.ydb{bottom:589.856100px;}
.y121{bottom:592.716000px;}
.y14c{bottom:593.250000px;}
.yfb{bottom:594.318000px;}
.yb3{bottom:601.288050px;}
.y31{bottom:603.084000px;}
.y120{bottom:608.016000px;}
.yc{bottom:611.468550px;}
.y64{bottom:612.000000px;}
.yda{bottom:612.212100px;}
.yfa{bottom:616.512000px;}
.yb2{bottom:623.032050px;}
.y11f{bottom:623.316000px;}
.y30{bottom:626.178000px;}
.yc3{bottom:626.250000px;}
.y14b{bottom:630.750000px;}
.yb{bottom:633.968550px;}
.y85{bottom:634.500000px;}
.yd9{bottom:634.568100px;}
.y11e{bottom:638.616000px;}
.yf9{bottom:638.706000px;}
.y75{bottom:640.800000px;}
.yb1{bottom:644.776050px;}
.y2f{bottom:649.272000px;}
.y14a{bottom:649.500000px;}
.y11d{bottom:653.916000px;}
.yd8{bottom:656.924100px;}
.y63{bottom:657.000000px;}
.yf8{bottom:660.942000px;}
.yb0{bottom:666.520050px;}
.yc2{bottom:666.822000px;}
.y149{bottom:668.250000px;}
.y11c{bottom:669.216000px;}
.y2e{bottom:672.366000px;}
.ya{bottom:678.968550px;}
.yd7{bottom:679.280100px;}
.y62{bottom:679.500000px;}
.yf7{bottom:683.136000px;}
.y11b{bottom:684.516000px;}
.y74{bottom:684.900000px;}
.y148{bottom:687.000000px;}
.yaf{bottom:688.264050px;}
.yc1{bottom:688.566000px;}
.y2d{bottom:695.460000px;}
.y9{bottom:697.718550px;}
.y11a{bottom:699.816000px;}
.yd6{bottom:701.636100px;}
.y61{bottom:702.000000px;}
.yf6{bottom:705.330000px;}
.y147{bottom:705.750000px;}
.y73{bottom:706.950000px;}
.yae{bottom:710.008050px;}
.yc0{bottom:710.310000px;}
.y2c{bottom:718.554000px;}
.y119{bottom:721.500000px;}
.yd5{bottom:723.992100px;}
.y84{bottom:724.500000px;}
.yf5{bottom:727.524000px;}
.y72{bottom:729.000000px;}
.yad{bottom:731.752050px;}
.ybf{bottom:732.054000px;}
.y8{bottom:739.854300px;}
.y2b{bottom:741.648000px;}
.y146{bottom:743.250000px;}
.y60{bottom:747.000000px;}
.yf4{bottom:749.718000px;}
.y71{bottom:751.050000px;}
.yac{bottom:753.502050px;}
.ybe{bottom:753.798000px;}
.yd4{bottom:754.846050px;}
.y145{bottom:762.000000px;}
.y7{bottom:762.354300px;}
.y2a{bottom:764.742000px;}
.y118{bottom:767.058000px;}
.y5f{bottom:769.500000px;}
.yf3{bottom:771.912000px;}
.y70{bottom:773.100000px;}
.yd3{bottom:773.446050px;}
.yab{bottom:775.246050px;}
.ybd{bottom:775.542000px;}
.y144{bottom:780.750000px;}
.y29{bottom:787.836000px;}
.y117{bottom:789.864000px;}
.y5e{bottom:792.000000px;}
.yd2{bottom:792.046050px;}
.yf2{bottom:794.106000px;}
.y6f{bottom:795.150000px;}
.ybc{bottom:797.286000px;}
.y143{bottom:799.500000px;}
.yaa{bottom:805.500000px;}
.yd1{bottom:810.646050px;}
.y28{bottom:810.930000px;}
.y116{bottom:812.670000px;}
.y5d{bottom:814.500000px;}
.yf1{bottom:816.300000px;}
.y6e{bottom:817.200000px;}
.y142{bottom:818.250000px;}
.ybb{bottom:819.030000px;}
.ya9{bottom:823.500000px;}
.y6{bottom:829.500000px;}
.y27{bottom:834.024000px;}
.y115{bottom:835.476000px;}
.y5c{bottom:837.000000px;}
.yd0{bottom:837.738000px;}
.yf0{bottom:838.500000px;}
.y6d{bottom:839.250000px;}
.yba{bottom:840.774000px;}
.ya8{bottom:841.500000px;}
.y141{bottom:855.750000px;}
.y26{bottom:857.118000px;}
.y114{bottom:858.282000px;}
.y5{bottom:859.500000px;}
.ycf{bottom:860.094000px;}
.yb9{bottom:862.518000px;}
.y140{bottom:874.500000px;}
.ya7{bottom:877.500000px;}
.y25{bottom:880.212000px;}
.y113{bottom:881.088000px;}
.y5b{bottom:882.000000px;}
.yce{bottom:882.438000px;}
.yef{bottom:882.912000px;}
.y6c{bottom:883.350000px;}
.yb8{bottom:884.262000px;}
.y4{bottom:889.500000px;}
.y13f{bottom:893.250000px;}
.ya6{bottom:895.500000px;}
.y24{bottom:903.306000px;}
.y112{bottom:903.894000px;}
.y5a{bottom:904.500000px;}
.ycd{bottom:904.794000px;}
.yee{bottom:905.106000px;}
.y6b{bottom:905.400000px;}
.yb7{bottom:906.006000px;}
.y13e{bottom:912.000000px;}
.ya5{bottom:913.500000px;}
.y3{bottom:919.500000px;}
.y23{bottom:926.400000px;}
.y111{bottom:926.700000px;}
.y46{bottom:927.000000px;}
.ycc{bottom:927.150000px;}
.yed{bottom:927.300000px;}
.y6a{bottom:927.450000px;}
.yb6{bottom:927.750000px;}
.y13d{bottom:930.750000px;}
.ya4{bottom:931.500000px;}
.h7{height:24.630908px;}
.h8{height:33.117188px;}
.h10{height:39.888000px;}
.h1{height:41.396484px;}
.h4{height:42.000000px;}
.ha{height:47.988281px;}
.h5{height:49.675781px;}
.h9{height:49.860000px;}
.h2{height:53.396484px;}
.hf{height:58.365047px;}
.hb{height:58.509047px;}
.h6{height:58.533047px;}
.hc{height:58.581047px;}
.he{height:58.677047px;}
.hd{height:58.725047px;}
.h3{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381950px;}
.x8{left:85.519650px;}
.x4{left:97.263750px;}
.x6{left:112.500000px;}
.x7{left:127.386000px;}
.xa{left:130.519500px;}
.x2{left:135.000000px;}
.x9{left:142.263750px;}
.xb{left:180.525000px;}
.x5{left:635.390550px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:-10.453333pt;}
.ls3a{letter-spacing:-4.266667pt;}
.ls1a{letter-spacing:-1.600000pt;}
.ls15{letter-spacing:-1.408000pt;}
.ls34{letter-spacing:-1.216000pt;}
.ls31{letter-spacing:-1.152000pt;}
.ls2c{letter-spacing:-1.088000pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls39{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.515200pt;}
.ls30{letter-spacing:0.576000pt;}
.ls33{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.704000pt;}
.ls27{letter-spacing:0.709333pt;}
.ls2a{letter-spacing:0.747200pt;}
.ls32{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.832000pt;}
.ls2d{letter-spacing:0.851200pt;}
.lsf{letter-spacing:0.896000pt;}
.ls22{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.024000pt;}
.ls29{letter-spacing:1.046400pt;}
.ls2b{letter-spacing:1.088000pt;}
.ls25{letter-spacing:1.152000pt;}
.ls26{letter-spacing:1.216000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls2f{letter-spacing:1.344000pt;}
.ls10{letter-spacing:1.408000pt;}
.ls4{letter-spacing:1.472000pt;}
.ls36{letter-spacing:1.984000pt;}
.ls28{letter-spacing:3.520000pt;}
.ls38{letter-spacing:3.925333pt;}
.ls8{letter-spacing:4.224000pt;}
.ls37{letter-spacing:4.736000pt;}
.ls1{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.ws27{word-spacing:-56.512000pt;}
.ws2{word-spacing:-26.346667pt;}
.ws59{word-spacing:-18.112000pt;}
.ws28{word-spacing:-17.984000pt;}
.ws29{word-spacing:-17.408000pt;}
.ws5a{word-spacing:-16.768000pt;}
.ws74{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.128000pt;}
.ws49{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.936000pt;}
.ws16{word-spacing:-15.808000pt;}
.ws95{word-spacing:-15.744000pt;}
.ws72{word-spacing:-15.680000pt;}
.ws7f{word-spacing:-15.488000pt;}
.ws73{word-spacing:-15.360000pt;}
.ws80{word-spacing:-15.296000pt;}
.ws48{word-spacing:-15.104000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws5b{word-spacing:-13.440000pt;}
.wsa2{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.588800pt;}
.ws5c{word-spacing:-11.989333pt;}
.ws3a{word-spacing:-10.538667pt;}
.ws6e{word-spacing:-7.680000pt;}
.wsa{word-spacing:-4.224000pt;}
.ws94{word-spacing:-1.664000pt;}
.ws67{word-spacing:-1.216000pt;}
.ws63{word-spacing:-1.088000pt;}
.ws1a{word-spacing:-1.024000pt;}
.ws98{word-spacing:-0.537600pt;}
.ws2b{word-spacing:-0.448000pt;}
.ws6b{word-spacing:-0.256000pt;}
.ws8a{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.ws70{word-spacing:0.064000pt;}
.ws31{word-spacing:0.128000pt;}
.ws79{word-spacing:0.192000pt;}
.ws4b{word-spacing:0.320000pt;}
.wsa1{word-spacing:0.341333pt;}
.ws87{word-spacing:0.384000pt;}
.ws7c{word-spacing:0.448000pt;}
.ws26{word-spacing:0.512000pt;}
.ws1b{word-spacing:0.576000pt;}
.ws23{word-spacing:0.640000pt;}
.ws7a{word-spacing:0.704000pt;}
.ws40{word-spacing:0.768000pt;}
.ws8e{word-spacing:0.832000pt;}
.ws18{word-spacing:0.960000pt;}
.ws50{word-spacing:1.024000pt;}
.ws76{word-spacing:1.088000pt;}
.wsa0{word-spacing:1.109333pt;}
.ws52{word-spacing:1.216000pt;}
.ws53{word-spacing:1.280000pt;}
.ws8{word-spacing:1.600000pt;}
.ws4c{word-spacing:1.728000pt;}
.ws62{word-spacing:1.792000pt;}
.ws38{word-spacing:1.856000pt;}
.ws5d{word-spacing:1.920000pt;}
.ws30{word-spacing:2.048000pt;}
.ws2a{word-spacing:2.133333pt;}
.ws1c{word-spacing:2.176000pt;}
.ws82{word-spacing:2.240000pt;}
.ws55{word-spacing:2.304000pt;}
.ws4f{word-spacing:2.368000pt;}
.ws54{word-spacing:2.560000pt;}
.ws6f{word-spacing:2.624000pt;}
.ws9b{word-spacing:2.645333pt;}
.ws36{word-spacing:2.752000pt;}
.ws2f{word-spacing:2.816000pt;}
.ws46{word-spacing:2.880000pt;}
.ws13{word-spacing:2.986667pt;}
.ws33{word-spacing:3.008000pt;}
.ws2d{word-spacing:3.072000pt;}
.ws1f{word-spacing:3.136000pt;}
.ws88{word-spacing:3.200000pt;}
.ws32{word-spacing:3.328000pt;}
.ws81{word-spacing:3.456000pt;}
.ws1d{word-spacing:3.520000pt;}
.ws61{word-spacing:3.584000pt;}
.ws12{word-spacing:3.648000pt;}
.ws84{word-spacing:3.712000pt;}
.wsb{word-spacing:3.733333pt;}
.ws4a{word-spacing:3.776000pt;}
.ws1e{word-spacing:3.840000pt;}
.ws8c{word-spacing:3.904000pt;}
.ws9{word-spacing:3.968000pt;}
.ws60{word-spacing:4.032000pt;}
.ws20{word-spacing:4.096000pt;}
.ws42{word-spacing:4.160000pt;}
.ws9a{word-spacing:4.224000pt;}
.ws9f{word-spacing:4.266667pt;}
.ws5e{word-spacing:4.352000pt;}
.ws78{word-spacing:4.416000pt;}
.ws10{word-spacing:4.480000pt;}
.ws45{word-spacing:4.544000pt;}
.ws83{word-spacing:4.608000pt;}
.ws9d{word-spacing:4.672000pt;}
.ws3f{word-spacing:4.800000pt;}
.ws35{word-spacing:4.864000pt;}
.wsf{word-spacing:4.992000pt;}
.ws89{word-spacing:5.056000pt;}
.ws47{word-spacing:5.120000pt;}
.ws3b{word-spacing:5.440000pt;}
.ws92{word-spacing:5.568000pt;}
.ws99{word-spacing:5.760000pt;}
.ws71{word-spacing:5.824000pt;}
.ws96{word-spacing:6.080000pt;}
.ws91{word-spacing:6.144000pt;}
.ws37{word-spacing:6.336000pt;}
.ws93{word-spacing:6.400000pt;}
.ws7b{word-spacing:6.464000pt;}
.ws17{word-spacing:6.528000pt;}
.ws11{word-spacing:6.592000pt;}
.ws39{word-spacing:6.656000pt;}
.ws7{word-spacing:6.720000pt;}
.ws4e{word-spacing:6.784000pt;}
.ws90{word-spacing:6.912000pt;}
.ws34{word-spacing:6.976000pt;}
.ws58{word-spacing:7.104000pt;}
.ws77{word-spacing:7.296000pt;}
.ws7e{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws6{word-spacing:7.466667pt;}
.ws2e{word-spacing:7.488000pt;}
.ws4d{word-spacing:7.552000pt;}
.ws3c{word-spacing:7.616000pt;}
.ws9c{word-spacing:7.744000pt;}
.ws19{word-spacing:7.872000pt;}
.ws25{word-spacing:8.064000pt;}
.ws7d{word-spacing:8.128000pt;}
.ws43{word-spacing:8.256000pt;}
.ws41{word-spacing:8.384000pt;}
.ws6a{word-spacing:8.448000pt;}
.ws97{word-spacing:8.512000pt;}
.ws86{word-spacing:8.640000pt;}
.ws85{word-spacing:8.704000pt;}
.ws66{word-spacing:8.768000pt;}
.ws22{word-spacing:8.832000pt;}
.wsd{word-spacing:8.960000pt;}
.wsc{word-spacing:9.024000pt;}
.ws21{word-spacing:9.088000pt;}
.ws44{word-spacing:9.152000pt;}
.ws8b{word-spacing:9.216000pt;}
.ws68{word-spacing:9.280000pt;}
.ws3d{word-spacing:9.408000pt;}
.ws5f{word-spacing:9.536000pt;}
.ws24{word-spacing:9.664000pt;}
.ws65{word-spacing:9.792000pt;}
.ws57{word-spacing:10.048000pt;}
.ws51{word-spacing:10.176000pt;}
.ws8d{word-spacing:10.368000pt;}
.ws8f{word-spacing:10.560000pt;}
.ws69{word-spacing:10.624000pt;}
.ws3e{word-spacing:10.880000pt;}
.ws75{word-spacing:11.328000pt;}
.ws56{word-spacing:11.456000pt;}
.wse{word-spacing:11.712000pt;}
.ws64{word-spacing:12.032000pt;}
.ws6d{word-spacing:12.249067pt;}
.ws9e{word-spacing:14.464000pt;}
.ws6c{word-spacing:28.115733pt;}
.ws5{word-spacing:66.826667pt;}
._10{margin-left:-835.898667pt;}
._a{margin-left:-15.808000pt;}
._13{margin-left:-13.602133pt;}
._11{margin-left:-12.418133pt;}
._9{margin-left:-10.624000pt;}
._b{margin-left:-9.226667pt;}
._5{margin-left:-8.064000pt;}
._c{margin-left:-6.368000pt;}
._3{margin-left:-5.301333pt;}
._f{margin-left:-4.241067pt;}
._8{margin-left:-3.178667pt;}
._7{margin-left:-2.133333pt;}
._2{margin-left:-1.066667pt;}
._4{width:1.653333pt;}
._d{width:2.690133pt;}
._1{width:3.733333pt;}
._17{width:5.034667pt;}
._15{width:7.242667pt;}
._14{width:8.448000pt;}
._6{width:10.080000pt;}
._12{width:11.146667pt;}
._16{width:12.263200pt;}
._e{width:28.129867pt;}
._0{width:179.168000pt;}
.fs5{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y22{bottom:104.000000pt;}
.y59{bottom:104.218667pt;}
.ycb{bottom:104.829067pt;}
.y45{bottom:104.858667pt;}
.y13c{bottom:105.061467pt;}
.y69{bottom:105.362933pt;}
.ya3{bottom:107.740000pt;}
.y110{bottom:117.333333pt;}
.y21{bottom:121.073333pt;}
.y13b{bottom:121.994800pt;}
.y9a{bottom:124.000000pt;}
.yca{bottom:124.157067pt;}
.y58{bottom:124.218667pt;}
.y68{bottom:125.090933pt;}
.y44{bottom:125.386667pt;}
.ya2{bottom:127.740000pt;}
.y10f{bottom:130.666667pt;}
.y10e{bottom:134.406667pt;}
.y13a{bottom:138.928133pt;}
.yc9{bottom:143.485067pt;}
.y57{bottom:143.690667pt;}
.y99{bottom:144.000000pt;}
.y67{bottom:144.818933pt;}
.y43{bottom:145.914667pt;}
.ya1{bottom:147.740000pt;}
.y20{bottom:155.076133pt;}
.y139{bottom:155.861467pt;}
.y83{bottom:158.000000pt;}
.yc8{bottom:162.813067pt;}
.y56{bottom:163.162667pt;}
.y98{bottom:164.000000pt;}
.y66{bottom:164.818933pt;}
.y42{bottom:166.442667pt;}
.ya0{bottom:167.740000pt;}
.y138{bottom:172.794800pt;}
.y10d{bottom:173.178667pt;}
.y1f{bottom:175.076133pt;}
.y82{bottom:177.600000pt;}
.yc7{bottom:182.141067pt;}
.y97{bottom:184.000000pt;}
.y65{bottom:184.818933pt;}
.yec{bottom:186.567200pt;}
.y41{bottom:186.970667pt;}
.y9f{bottom:187.740000pt;}
.y137{bottom:189.728133pt;}
.y55{bottom:192.090667pt;}
.y10c{bottom:192.906667pt;}
.y1e{bottom:195.076133pt;}
.y81{bottom:197.200000pt;}
.yc6{bottom:201.469067pt;}
.y96{bottom:204.000000pt;}
.yeb{bottom:206.439200pt;}
.y136{bottom:206.661467pt;}
.y40{bottom:207.498667pt;}
.y9e{bottom:207.740000pt;}
.y54{bottom:211.562667pt;}
.y10b{bottom:212.634667pt;}
.y1d{bottom:215.076133pt;}
.y80{bottom:216.800000pt;}
.yc5{bottom:220.797067pt;}
.y95{bottom:224.000000pt;}
.yea{bottom:226.311200pt;}
.y9d{bottom:227.740000pt;}
.y3f{bottom:228.026667pt;}
.y135{bottom:229.258667pt;}
.y53{bottom:231.034667pt;}
.y10a{bottom:232.362667pt;}
.y7f{bottom:236.400000pt;}
.yc4{bottom:240.125067pt;}
.y1c{bottom:242.635200pt;}
.y94{bottom:244.000000pt;}
.y134{bottom:245.525333pt;}
.ye9{bottom:246.183200pt;}
.y9c{bottom:247.740000pt;}
.y3e{bottom:248.554667pt;}
.y52{bottom:250.506667pt;}
.y109{bottom:252.090667pt;}
.y7e{bottom:256.000000pt;}
.y1b{bottom:259.301867pt;}
.y93{bottom:264.000000pt;}
.ye8{bottom:266.055200pt;}
.y9b{bottom:267.740000pt;}
.y3d{bottom:269.082667pt;}
.y51{bottom:269.978667pt;}
.y108{bottom:271.818667pt;}
.y7d{bottom:275.600000pt;}
.y1a{bottom:275.968533pt;}
.y133{bottom:282.058667pt;}
.y92{bottom:284.000000pt;}
.ye7{bottom:285.927200pt;}
.y50{bottom:289.450667pt;}
.y3c{bottom:289.610667pt;}
.y107{bottom:291.546667pt;}
.y19{bottom:292.635200pt;}
.y7c{bottom:295.200000pt;}
.y132{bottom:295.658667pt;}
.y91{bottom:304.000000pt;}
.ye6{bottom:305.799200pt;}
.y4f{bottom:308.922667pt;}
.y131{bottom:309.258667pt;}
.y18{bottom:309.301867pt;}
.y3b{bottom:310.138667pt;}
.y106{bottom:311.274667pt;}
.y7b{bottom:314.800000pt;}
.y130{bottom:322.858667pt;}
.y90{bottom:324.000000pt;}
.ye5{bottom:325.671200pt;}
.y17{bottom:325.968533pt;}
.y4e{bottom:328.394667pt;}
.y3a{bottom:330.666667pt;}
.y105{bottom:331.002667pt;}
.y7a{bottom:334.400000pt;}
.y12f{bottom:336.458667pt;}
.y16{bottom:342.635200pt;}
.y8f{bottom:344.000000pt;}
.ye4{bottom:345.543200pt;}
.y4d{bottom:347.866667pt;}
.y12e{bottom:350.058667pt;}
.y104{bottom:350.730667pt;}
.y39{bottom:351.200000pt;}
.y79{bottom:354.000000pt;}
.y15{bottom:359.301867pt;}
.y12d{bottom:363.658667pt;}
.y8e{bottom:364.000000pt;}
.ye3{bottom:365.383200pt;}
.y4c{bottom:367.338667pt;}
.y103{bottom:370.458667pt;}
.y78{bottom:373.600000pt;}
.y12c{bottom:377.258667pt;}
.y14{bottom:383.527600pt;}
.y8d{bottom:384.000000pt;}
.ye2{bottom:385.255200pt;}
.y4b{bottom:386.810667pt;}
.y102{bottom:390.186667pt;}
.y12b{bottom:390.858667pt;}
.y38{bottom:392.378667pt;}
.y77{bottom:393.200000pt;}
.y13{bottom:403.527600pt;}
.y8c{bottom:404.000000pt;}
.y12a{bottom:404.458667pt;}
.ye1{bottom:405.127200pt;}
.y4a{bottom:406.282667pt;}
.y101{bottom:409.914667pt;}
.y76{bottom:412.800000pt;}
.y37{bottom:412.906667pt;}
.y129{bottom:418.058667pt;}
.y12{bottom:423.527600pt;}
.y8b{bottom:424.000000pt;}
.ye0{bottom:424.999200pt;}
.y49{bottom:425.754667pt;}
.y150{bottom:427.333333pt;}
.y100{bottom:429.642667pt;}
.y128{bottom:431.658667pt;}
.y36{bottom:433.434667pt;}
.y11{bottom:443.527600pt;}
.y8a{bottom:444.000000pt;}
.ydf{bottom:444.871200pt;}
.y48{bottom:445.226667pt;}
.y127{bottom:445.258667pt;}
.yff{bottom:449.370667pt;}
.y35{bottom:453.962667pt;}
.y126{bottom:458.858667pt;}
.y14f{bottom:460.666667pt;}
.y10{bottom:463.527600pt;}
.y89{bottom:464.000000pt;}
.y47{bottom:464.698667pt;}
.yde{bottom:464.743200pt;}
.yfe{bottom:469.098667pt;}
.y125{bottom:472.458667pt;}
.y34{bottom:474.490667pt;}
.yb5{bottom:475.107600pt;}
.y14e{bottom:477.333333pt;}
.yf{bottom:483.527600pt;}
.y88{bottom:484.000000pt;}
.ydd{bottom:484.572533pt;}
.y124{bottom:486.058667pt;}
.yfd{bottom:488.826667pt;}
.y14d{bottom:494.000000pt;}
.y33{bottom:495.018667pt;}
.y123{bottom:499.658667pt;}
.ye{bottom:503.527600pt;}
.y87{bottom:504.000000pt;}
.ydc{bottom:504.444533pt;}
.yfc{bottom:508.554667pt;}
.y122{bottom:513.258667pt;}
.yb4{bottom:515.150267pt;}
.y32{bottom:515.546667pt;}
.yd{bottom:523.527600pt;}
.y86{bottom:524.000000pt;}
.ydb{bottom:524.316533pt;}
.y121{bottom:526.858667pt;}
.y14c{bottom:527.333333pt;}
.yfb{bottom:528.282667pt;}
.yb3{bottom:534.478267pt;}
.y31{bottom:536.074667pt;}
.y120{bottom:540.458667pt;}
.yc{bottom:543.527600pt;}
.y64{bottom:544.000000pt;}
.yda{bottom:544.188533pt;}
.yfa{bottom:548.010667pt;}
.yb2{bottom:553.806267pt;}
.y11f{bottom:554.058667pt;}
.y30{bottom:556.602667pt;}
.yc3{bottom:556.666667pt;}
.y14b{bottom:560.666667pt;}
.yb{bottom:563.527600pt;}
.y85{bottom:564.000000pt;}
.yd9{bottom:564.060533pt;}
.y11e{bottom:567.658667pt;}
.yf9{bottom:567.738667pt;}
.y75{bottom:569.600000pt;}
.yb1{bottom:573.134267pt;}
.y2f{bottom:577.130667pt;}
.y14a{bottom:577.333333pt;}
.y11d{bottom:581.258667pt;}
.yd8{bottom:583.932533pt;}
.y63{bottom:584.000000pt;}
.yf8{bottom:587.504000pt;}
.yb0{bottom:592.462267pt;}
.yc2{bottom:592.730667pt;}
.y149{bottom:594.000000pt;}
.y11c{bottom:594.858667pt;}
.y2e{bottom:597.658667pt;}
.ya{bottom:603.527600pt;}
.yd7{bottom:603.804533pt;}
.y62{bottom:604.000000pt;}
.yf7{bottom:607.232000pt;}
.y11b{bottom:608.458667pt;}
.y74{bottom:608.800000pt;}
.y148{bottom:610.666667pt;}
.yaf{bottom:611.790267pt;}
.yc1{bottom:612.058667pt;}
.y2d{bottom:618.186667pt;}
.y9{bottom:620.194267pt;}
.y11a{bottom:622.058667pt;}
.yd6{bottom:623.676533pt;}
.y61{bottom:624.000000pt;}
.yf6{bottom:626.960000pt;}
.y147{bottom:627.333333pt;}
.y73{bottom:628.400000pt;}
.yae{bottom:631.118267pt;}
.yc0{bottom:631.386667pt;}
.y2c{bottom:638.714667pt;}
.y119{bottom:641.333333pt;}
.yd5{bottom:643.548533pt;}
.y84{bottom:644.000000pt;}
.yf5{bottom:646.688000pt;}
.y72{bottom:648.000000pt;}
.yad{bottom:650.446267pt;}
.ybf{bottom:650.714667pt;}
.y8{bottom:657.648267pt;}
.y2b{bottom:659.242667pt;}
.y146{bottom:660.666667pt;}
.y60{bottom:664.000000pt;}
.yf4{bottom:666.416000pt;}
.y71{bottom:667.600000pt;}
.yac{bottom:669.779600pt;}
.ybe{bottom:670.042667pt;}
.yd4{bottom:670.974267pt;}
.y145{bottom:677.333333pt;}
.y7{bottom:677.648267pt;}
.y2a{bottom:679.770667pt;}
.y118{bottom:681.829333pt;}
.y5f{bottom:684.000000pt;}
.yf3{bottom:686.144000pt;}
.y70{bottom:687.200000pt;}
.yd3{bottom:687.507600pt;}
.yab{bottom:689.107600pt;}
.ybd{bottom:689.370667pt;}
.y144{bottom:694.000000pt;}
.y29{bottom:700.298667pt;}
.y117{bottom:702.101333pt;}
.y5e{bottom:704.000000pt;}
.yd2{bottom:704.040933pt;}
.yf2{bottom:705.872000pt;}
.y6f{bottom:706.800000pt;}
.ybc{bottom:708.698667pt;}
.y143{bottom:710.666667pt;}
.yaa{bottom:716.000000pt;}
.yd1{bottom:720.574267pt;}
.y28{bottom:720.826667pt;}
.y116{bottom:722.373333pt;}
.y5d{bottom:724.000000pt;}
.yf1{bottom:725.600000pt;}
.y6e{bottom:726.400000pt;}
.y142{bottom:727.333333pt;}
.ybb{bottom:728.026667pt;}
.ya9{bottom:732.000000pt;}
.y6{bottom:737.333333pt;}
.y27{bottom:741.354667pt;}
.y115{bottom:742.645333pt;}
.y5c{bottom:744.000000pt;}
.yd0{bottom:744.656000pt;}
.yf0{bottom:745.333333pt;}
.y6d{bottom:746.000000pt;}
.yba{bottom:747.354667pt;}
.ya8{bottom:748.000000pt;}
.y141{bottom:760.666667pt;}
.y26{bottom:761.882667pt;}
.y114{bottom:762.917333pt;}
.y5{bottom:764.000000pt;}
.ycf{bottom:764.528000pt;}
.yb9{bottom:766.682667pt;}
.y140{bottom:777.333333pt;}
.ya7{bottom:780.000000pt;}
.y25{bottom:782.410667pt;}
.y113{bottom:783.189333pt;}
.y5b{bottom:784.000000pt;}
.yce{bottom:784.389333pt;}
.yef{bottom:784.810667pt;}
.y6c{bottom:785.200000pt;}
.yb8{bottom:786.010667pt;}
.y4{bottom:790.666667pt;}
.y13f{bottom:794.000000pt;}
.ya6{bottom:796.000000pt;}
.y24{bottom:802.938667pt;}
.y112{bottom:803.461333pt;}
.y5a{bottom:804.000000pt;}
.ycd{bottom:804.261333pt;}
.yee{bottom:804.538667pt;}
.y6b{bottom:804.800000pt;}
.yb7{bottom:805.338667pt;}
.y13e{bottom:810.666667pt;}
.ya5{bottom:812.000000pt;}
.y3{bottom:817.333333pt;}
.y23{bottom:823.466667pt;}
.y111{bottom:823.733333pt;}
.y46{bottom:824.000000pt;}
.ycc{bottom:824.133333pt;}
.yed{bottom:824.266667pt;}
.y6a{bottom:824.400000pt;}
.yb6{bottom:824.666667pt;}
.y13d{bottom:827.333333pt;}
.ya4{bottom:828.000000pt;}
.h7{height:21.894141pt;}
.h8{height:29.437500pt;}
.h10{height:35.456000pt;}
.h1{height:36.796875pt;}
.h4{height:37.333333pt;}
.ha{height:42.656250pt;}
.h5{height:44.156250pt;}
.h9{height:44.320000pt;}
.h2{height:47.463542pt;}
.hf{height:51.880042pt;}
.hb{height:52.008042pt;}
.h6{height:52.029375pt;}
.hc{height:52.072042pt;}
.he{height:52.157375pt;}
.hd{height:52.200042pt;}
.h3{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228400pt;}
.x8{left:76.017467pt;}
.x4{left:86.456667pt;}
.x6{left:100.000000pt;}
.x7{left:113.232000pt;}
.xa{left:116.017333pt;}
.x2{left:120.000000pt;}
.x9{left:126.456667pt;}
.xb{left:160.466667pt;}
.x5{left:564.791600pt;}
}




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