
    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_7bafbb1aef9c0a6c19665236.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b0c9276fbc47e1f8f35a9386.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.027000;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_115f1d0c3f43aea774c00fd5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.027000;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_4a80b3072e92b6946a39086b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_ba8fa44eddb4ab6c4301d766.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_8317f69a2c191299783a7945.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003000;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_7e59c85cd12e8eac4ef86bdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006361;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_0c7fb833cc3a9e8761fcf4a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.452000;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_24983dc463cc139c9d458702.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978516;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_f1999b07843ed7bc1cb7c8f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.090000;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;}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-3.723000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.470000px;}
.ls12{letter-spacing:-1.428000px;}
.ls1{letter-spacing:-1.071000px;}
.ls2{letter-spacing:-0.816000px;}
.ls13{letter-spacing:-0.714000px;}
.ls10{letter-spacing:-0.630000px;}
.ls5{letter-spacing:-0.624000px;}
.lsf{letter-spacing:-0.588000px;}
.ls3{letter-spacing:-0.561000px;}
.ls7{letter-spacing:-0.510000px;}
.ls4{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.153000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.126000px;}
.lsb{letter-spacing:0.462000px;}
.lse{letter-spacing:0.495600px;}
.lsd{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.630000px;}
.ls9{letter-spacing:80.937000px;}
.ls8{letter-spacing:124.695000px;}
.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;}
}
.ws2{word-spacing:-15.240000px;}
.ws5c{word-spacing:-12.954000px;}
.ws3d{word-spacing:-11.250000px;}
.ws1{word-spacing:-10.668000px;}
.ws6a{word-spacing:-10.626000px;}
.ws5e{word-spacing:-10.500000px;}
.ws69{word-spacing:-10.290000px;}
.ws68{word-spacing:-9.870000px;}
.ws67{word-spacing:-9.240000px;}
.ws66{word-spacing:-9.198000px;}
.wsd{word-spacing:-2.499000px;}
.ws2d{word-spacing:-2.346000px;}
.ws4{word-spacing:-2.295000px;}
.ws6{word-spacing:-2.244000px;}
.wsa{word-spacing:-2.091000px;}
.ws1b{word-spacing:-1.632000px;}
.ws12{word-spacing:-1.326000px;}
.ws4d{word-spacing:-1.275000px;}
.ws9{word-spacing:-1.173000px;}
.ws46{word-spacing:-1.122000px;}
.ws38{word-spacing:-1.071000px;}
.ws40{word-spacing:-1.020000px;}
.ws2c{word-spacing:-0.969000px;}
.ws55{word-spacing:-0.867000px;}
.ws3{word-spacing:-0.816000px;}
.ws25{word-spacing:-0.765000px;}
.ws42{word-spacing:-0.714000px;}
.ws2f{word-spacing:-0.663000px;}
.ws6e{word-spacing:-0.630000px;}
.ws16{word-spacing:-0.561000px;}
.ws14{word-spacing:-0.510000px;}
.ws6f{word-spacing:-0.504000px;}
.ws29{word-spacing:-0.408000px;}
.ws4b{word-spacing:-0.204000px;}
.ws6c{word-spacing:-0.168000px;}
.ws1c{word-spacing:-0.153000px;}
.ws7{word-spacing:-0.102000px;}
.ws0{word-spacing:0.000000px;}
.ws57{word-spacing:0.054000px;}
.ws51{word-spacing:0.204000px;}
.wsc{word-spacing:0.255000px;}
.ws1d{word-spacing:0.306000px;}
.ws1a{word-spacing:0.357000px;}
.ws6d{word-spacing:0.420000px;}
.ws59{word-spacing:0.459000px;}
.ws58{word-spacing:0.510000px;}
.ws24{word-spacing:0.561000px;}
.ws6b{word-spacing:0.588000px;}
.ws13{word-spacing:0.714000px;}
.ws5{word-spacing:0.816000px;}
.ws3f{word-spacing:0.864000px;}
.wse{word-spacing:0.918000px;}
.ws39{word-spacing:1.020000px;}
.ws62{word-spacing:1.122000px;}
.ws43{word-spacing:1.173000px;}
.ws22{word-spacing:1.224000px;}
.ws64{word-spacing:1.326000px;}
.ws11{word-spacing:1.377000px;}
.ws19{word-spacing:1.428000px;}
.ws35{word-spacing:1.479000px;}
.ws33{word-spacing:1.530000px;}
.ws47{word-spacing:1.632000px;}
.ws4f{word-spacing:1.785000px;}
.ws54{word-spacing:1.836000px;}
.ws36{word-spacing:1.938000px;}
.ws32{word-spacing:2.295000px;}
.ws49{word-spacing:2.652000px;}
.ws53{word-spacing:2.754000px;}
.ws8{word-spacing:2.958000px;}
.ws3a{word-spacing:3.009000px;}
.ws65{word-spacing:3.162000px;}
.ws63{word-spacing:3.315000px;}
.ws26{word-spacing:3.519000px;}
.ws27{word-spacing:3.621000px;}
.ws4c{word-spacing:3.672000px;}
.ws18{word-spacing:3.723000px;}
.ws45{word-spacing:3.825000px;}
.ws21{word-spacing:4.131000px;}
.ws20{word-spacing:4.233000px;}
.ws30{word-spacing:4.284000px;}
.ws2a{word-spacing:4.488000px;}
.ws41{word-spacing:4.692000px;}
.ws3e{word-spacing:4.743000px;}
.ws52{word-spacing:5.304000px;}
.ws37{word-spacing:5.355000px;}
.ws2e{word-spacing:5.916000px;}
.ws56{word-spacing:5.994000px;}
.ws50{word-spacing:6.018000px;}
.ws2b{word-spacing:6.069000px;}
.ws1e{word-spacing:6.120000px;}
.ws1f{word-spacing:6.171000px;}
.wsf{word-spacing:6.273000px;}
.ws31{word-spacing:6.324000px;}
.ws4a{word-spacing:6.375000px;}
.ws15{word-spacing:6.426000px;}
.ws17{word-spacing:6.579000px;}
.ws34{word-spacing:6.630000px;}
.ws28{word-spacing:7.242000px;}
.wsb{word-spacing:7.293000px;}
.ws10{word-spacing:7.956000px;}
.ws48{word-spacing:8.058000px;}
.ws44{word-spacing:8.925000px;}
.ws4e{word-spacing:9.792000px;}
.ws23{word-spacing:14.484000px;}
.ws5d{word-spacing:65.127000px;}
.ws5a{word-spacing:84.864000px;}
.ws61{word-spacing:91.305000px;}
.ws5b{word-spacing:126.480000px;}
.ws5f{word-spacing:132.498000px;}
.ws60{word-spacing:171.000000px;}
.ws3c{word-spacing:257.265000px;}
.ws3b{word-spacing:908.106000px;}
._5{margin-left:-13.107000px;}
._35{margin-left:-10.500000px;}
._3{margin-left:-4.824000px;}
._4{margin-left:-3.108000px;}
._1{margin-left:-2.100000px;}
._0{margin-left:-1.008000px;}
._2{width:1.794000px;}
._1b{width:3.621000px;}
._33{width:52.728000px;}
._1f{width:56.655000px;}
._2c{width:74.052000px;}
._1e{width:75.330000px;}
._29{width:88.245000px;}
._20{width:99.900000px;}
._32{width:102.555000px;}
._2b{width:122.985000px;}
._27{width:130.860000px;}
._25{width:144.495000px;}
._1d{width:152.805000px;}
._28{width:165.720000px;}
._1c{width:167.331000px;}
._21{width:175.950000px;}
._2a{width:179.640000px;}
._31{width:182.250000px;}
._24{width:201.150000px;}
._f{width:206.934000px;}
._22{width:214.290000px;}
._2d{width:220.263000px;}
._23{width:223.155000px;}
._15{width:225.300000px;}
._2e{width:230.265000px;}
._b{width:268.515000px;}
._30{width:269.823000px;}
._8{width:271.665000px;}
._17{width:281.430000px;}
._13{width:284.580000px;}
._7{width:294.213000px;}
._a{width:302.940000px;}
._19{width:312.705000px;}
._14{width:316.170000px;}
._10{width:328.380000px;}
._9{width:334.485000px;}
._1a{width:336.138000px;}
._c{width:343.980000px;}
._2f{width:354.960000px;}
._18{width:356.895000px;}
._34{width:394.023000px;}
._e{width:418.164000px;}
._16{width:425.553000px;}
._11{width:427.953000px;}
._26{width:433.785000px;}
._d{width:447.333000px;}
._12{width:451.680000px;}
._6{width:954.207000px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(180,28,46);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.486000px;}
.fs6{font-size:31.482000px;}
.fs9{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y61{bottom:42.026550px;}
.y5{bottom:66.525004px;}
.y8f{bottom:76.677450px;}
.y60{bottom:78.035700px;}
.yed{bottom:80.568750px;}
.y5f{bottom:90.788700px;}
.y8e{bottom:94.680450px;}
.ybc{bottom:94.687200px;}
.y4{bottom:97.125005px;}
.yec{bottom:101.010000px;}
.y8d{bottom:112.683450px;}
.ybb{bottom:112.690200px;}
.yeb{bottom:114.510000px;}
.y11c{bottom:115.856100px;}
.y8c{bottom:130.686450px;}
.yba{bottom:130.693200px;}
.y11b{bottom:133.859100px;}
.yea{bottom:134.951250px;}
.y5b{bottom:135.240150px;}
.y22{bottom:139.264499px;}
.ye9{bottom:148.451250px;}
.y8b{bottom:148.689450px;}
.yb9{bottom:148.696200px;}
.y5a{bottom:150.984150px;}
.y11a{bottom:151.862100px;}
.y8a{bottom:166.692450px;}
.yb8{bottom:166.699200px;}
.y59{bottom:166.728150px;}
.ye8{bottom:168.892500px;}
.y119{bottom:169.865100px;}
.y58{bottom:182.472150px;}
.y89{bottom:184.695450px;}
.y110{bottom:184.741200px;}
.y118{bottom:187.868100px;}
.ye7{bottom:189.333750px;}
.y19{bottom:196.933500px;}
.y57{bottom:198.216150px;}
.y88{bottom:202.698450px;}
.yb7{bottom:202.705200px;}
.y10f{bottom:202.744200px;}
.y117{bottom:205.871100px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.ye6{bottom:209.775000px;}
.y56{bottom:213.960150px;}
.y87{bottom:220.701450px;}
.yb6{bottom:220.708200px;}
.y10e{bottom:220.747200px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ye5{bottom:223.275000px;}
.y116{bottom:223.874100px;}
.y55{bottom:229.704150px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y86{bottom:238.704450px;}
.yb5{bottom:238.711200px;}
.y10d{bottom:238.750200px;}
.y115{bottom:241.877100px;}
.ye4{bottom:243.716250px;}
.y54{bottom:245.448150px;}
.y85{bottom:256.707450px;}
.yb4{bottom:256.714200px;}
.y10c{bottom:256.753200px;}
.y114{bottom:259.880100px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y53{bottom:261.192150px;}
.ye3{bottom:264.157500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y84{bottom:274.710450px;}
.yb3{bottom:274.717200px;}
.y10b{bottom:274.762200px;}
.y52{bottom:276.936150px;}
.y113{bottom:277.883100px;}
.ye2{bottom:284.598750px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y51{bottom:292.680150px;}
.y83{bottom:292.713450px;}
.y10a{bottom:292.757700px;}
.y112{bottom:295.886100px;}
.ye1{bottom:305.040000px;}
.y50{bottom:308.424150px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yb2{bottom:310.723200px;}
.y109{bottom:310.753200px;}
.y111{bottom:313.886100px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y4f{bottom:324.168150px;}
.ye0{bottom:325.481250px;}
.y82{bottom:328.719450px;}
.yb1{bottom:328.726200px;}
.ydf{bottom:338.981250px;}
.y4e{bottom:339.912150px;}
.y108{bottom:346.639200px;}
.y81{bottom:346.722450px;}
.yb0{bottom:346.729200px;}
.y10{bottom:348.133500px;}
.y11e{bottom:354.011100px;}
.y4d{bottom:355.656150px;}
.yde{bottom:359.422500px;}
.y107{bottom:364.642200px;}
.y80{bottom:364.725450px;}
.y4c{bottom:371.400150px;}
.y134{bottom:374.939850px;}
.ydd{bottom:379.863750px;}
.y133{bottom:381.881100px;}
.y106{bottom:382.645200px;}
.y7f{bottom:382.728450px;}
.yaf{bottom:382.735200px;}
.yf{bottom:386.785499px;}
.y4b{bottom:387.144150px;}
.y132{bottom:395.381100px;}
.ydc{bottom:400.305000px;}
.y105{bottom:400.648200px;}
.y7e{bottom:400.731450px;}
.yae{bottom:400.738200px;}
.y4a{bottom:406.494150px;}
.ye{bottom:408.044999px;}
.y131{bottom:415.822350px;}
.y104{bottom:418.651200px;}
.y7d{bottom:418.734450px;}
.yad{bottom:418.741200px;}
.ydb{bottom:420.746250px;}
.y130{bottom:422.763600px;}
.y12f{bottom:436.263600px;}
.y103{bottom:436.654200px;}
.y7c{bottom:436.737450px;}
.yac{bottom:436.744200px;}
.yda{bottom:441.187500px;}
.y3e{bottom:453.779400px;}
.y102{bottom:454.657200px;}
.yd9{bottom:454.687500px;}
.yab{bottom:454.747200px;}
.y12e{bottom:456.704850px;}
.y12d{bottom:463.646100px;}
.y3d{bottom:471.782400px;}
.y7b{bottom:472.743450px;}
.yaa{bottom:472.750200px;}
.yd8{bottom:475.128750px;}
.y12c{bottom:477.146100px;}
.yd7{bottom:488.628750px;}
.y3c{bottom:489.785400px;}
.y101{bottom:490.663200px;}
.y7a{bottom:490.746450px;}
.ya9{bottom:490.753200px;}
.y12b{bottom:497.587350px;}
.y143{bottom:502.355100px;}
.yd{bottom:502.864502px;}
.y12a{bottom:504.528600px;}
.y3b{bottom:507.788400px;}
.y100{bottom:508.666200px;}
.y79{bottom:508.749450px;}
.ya8{bottom:508.753200px;}
.yd6{bottom:509.070000px;}
.y129{bottom:518.028600px;}
.yc{bottom:520.864502px;}
.yd5{bottom:522.570000px;}
.y3a{bottom:525.791400px;}
.yff{bottom:526.669200px;}
.y78{bottom:526.752450px;}
.y128{bottom:538.469850px;}
.yb{bottom:538.864499px;}
.yd4{bottom:543.011250px;}
.y39{bottom:543.794250px;}
.yfe{bottom:544.672200px;}
.ya7{bottom:544.708200px;}
.y77{bottom:544.752450px;}
.y127{bottom:545.411100px;}
.ya{bottom:556.864499px;}
.y126{bottom:558.911100px;}
.yfd{bottom:562.675200px;}
.ya6{bottom:562.711200px;}
.yd3{bottom:563.452500px;}
.y125{bottom:579.359100px;}
.y38{bottom:579.798750px;}
.yfc{bottom:580.678200px;}
.y76{bottom:580.731450px;}
.yd2{bottom:583.893750px;}
.ya5{bottom:598.717200px;}
.y75{bottom:598.734450px;}
.y124{bottom:600.919350px;}
.yd1{bottom:604.335000px;}
.y37{bottom:610.551750px;}
.yfb{bottom:616.684200px;}
.ya4{bottom:616.720200px;}
.y74{bottom:616.737450px;}
.y123{bottom:617.417850px;}
.yd0{bottom:624.776250px;}
.y36{bottom:628.547250px;}
.y122{bottom:633.916350px;}
.yfa{bottom:634.687200px;}
.ya3{bottom:634.723200px;}
.ycf{bottom:638.276250px;}
.y9{bottom:645.510000px;}
.yf9{bottom:652.690200px;}
.ya2{bottom:652.726200px;}
.y73{bottom:652.743450px;}
.y121{bottom:655.476600px;}
.yce{bottom:658.717500px;}
.y35{bottom:659.303250px;}
.y8{bottom:666.771000px;}
.yf8{bottom:670.693200px;}
.ya1{bottom:670.729200px;}
.y72{bottom:670.746450px;}
.y120{bottom:671.975100px;}
.y15d{bottom:678.032850px;}
.ycd{bottom:679.158750px;}
.y34{bottom:680.303250px;}
.y178{bottom:681.440700px;}
.y11f{bottom:688.473600px;}
.yf7{bottom:688.696200px;}
.ya0{bottom:688.732200px;}
.y15c{bottom:691.535850px;}
.y49{bottom:691.710300px;}
.y177{bottom:694.928700px;}
.ycc{bottom:699.600000px;}
.y33{bottom:701.303250px;}
.y48{bottom:704.457300px;}
.y15b{bottom:705.038850px;}
.yf6{bottom:706.699200px;}
.y71{bottom:706.752450px;}
.y176{bottom:708.431700px;}
.y11d{bottom:710.502750px;}
.y15a{bottom:718.541850px;}
.ycb{bottom:720.042750px;}
.y175{bottom:721.934700px;}
.y32{bottom:722.303250px;}
.yf5{bottom:724.702200px;}
.y9f{bottom:724.738200px;}
.y70{bottom:724.752450px;}
.y7{bottom:726.298500px;}
.y47{bottom:729.961800px;}
.y159{bottom:732.044850px;}
.y174{bottom:735.437700px;}
.yca{bottom:736.541250px;}
.y46{bottom:742.708800px;}
.y9e{bottom:742.741200px;}
.y31{bottom:743.303250px;}
.y158{bottom:745.547850px;}
.y173{bottom:748.940700px;}
.y3{bottom:752.599495px;}
.yc9{bottom:753.039750px;}
.y45{bottom:755.455800px;}
.y157{bottom:759.050850px;}
.yf4{bottom:760.708200px;}
.y6f{bottom:760.737450px;}
.y9d{bottom:760.744200px;}
.y172{bottom:762.347850px;}
.y137{bottom:762.391200px;}
.y30{bottom:764.303250px;}
.y156{bottom:772.553850px;}
.yc8{bottom:774.600000px;}
.y171{bottom:775.850850px;}
.yf3{bottom:778.711200px;}
.y6e{bottom:778.740450px;}
.y9c{bottom:778.747200px;}
.y136{bottom:778.886700px;}
.y44{bottom:780.960300px;}
.y2f{bottom:785.303250px;}
.y155{bottom:786.056850px;}
.y170{bottom:789.353850px;}
.y43{bottom:795.838800px;}
.yc7{bottom:796.330500px;}
.yf2{bottom:796.714200px;}
.y6d{bottom:796.743450px;}
.y9b{bottom:796.750200px;}
.y142{bottom:798.124200px;}
.y154{bottom:799.559850px;}
.y16f{bottom:802.856850px;}
.y2e{bottom:806.303250px;}
.y42{bottom:808.585800px;}
.yc6{bottom:812.829000px;}
.y153{bottom:813.062850px;}
.yf1{bottom:814.717200px;}
.y6c{bottom:814.746450px;}
.y9a{bottom:814.753200px;}
.y16e{bottom:816.359850px;}
.y141{bottom:818.565450px;}
.y41{bottom:821.332800px;}
.y152{bottom:826.555350px;}
.y2d{bottom:827.303250px;}
.y16d{bottom:829.862850px;}
.yf0{bottom:832.720200px;}
.y6b{bottom:832.749450px;}
.y99{bottom:832.753200px;}
.y40{bottom:834.079800px;}
.y140{bottom:839.006700px;}
.y16c{bottom:843.365850px;}
.y3f{bottom:846.826800px;}
.y2c{bottom:848.303250px;}
.yc5{bottom:850.190700px;}
.yef{bottom:850.723200px;}
.y6a{bottom:850.752450px;}
.y151{bottom:853.550850px;}
.y16b{bottom:856.868850px;}
.y13f{bottom:859.447950px;}
.y150{bottom:867.053850px;}
.yc4{bottom:868.195200px;}
.y98{bottom:868.726200px;}
.y69{bottom:868.752450px;}
.y2b{bottom:869.303250px;}
.y16a{bottom:870.371850px;}
.y5e{bottom:872.750700px;}
.y2{bottom:879.369000px;}
.y13e{bottom:879.889200px;}
.y14f{bottom:880.556850px;}
.y169{bottom:883.874850px;}
.y5d{bottom:885.497700px;}
.yc3{bottom:886.190700px;}
.y97{bottom:886.729200px;}
.y14e{bottom:894.059850px;}
.y168{bottom:897.377850px;}
.y13d{bottom:900.330450px;}
.y5c{bottom:900.376200px;}
.y29{bottom:903.059100px;}
.y68{bottom:904.731450px;}
.y96{bottom:904.732200px;}
.y2a{bottom:907.554600px;}
.y14d{bottom:907.562850px;}
.y167{bottom:910.880850px;}
.y13c{bottom:920.771700px;}
.yc2{bottom:922.175700px;}
.y67{bottom:922.734450px;}
.y95{bottom:922.735200px;}
.y166{bottom:924.383850px;}
.y28{bottom:932.338950px;}
.y14c{bottom:934.565850px;}
.y165{bottom:937.886850px;}
.y66{bottom:940.737450px;}
.y94{bottom:940.738200px;}
.y13b{bottom:941.212950px;}
.y14b{bottom:947.312850px;}
.y14a{bottom:950.809350px;}
.y164{bottom:951.389850px;}
.yc1{bottom:958.181700px;}
.y65{bottom:958.740450px;}
.yee{bottom:958.741200px;}
.y13a{bottom:961.654200px;}
.y149{bottom:962.188800px;}
.y27{bottom:962.326950px;}
.y163{bottom:964.892850px;}
.y1{bottom:966.726000px;}
.yc0{bottom:976.184700px;}
.y93{bottom:976.744200px;}
.y147{bottom:977.064750px;}
.y162{bottom:978.395850px;}
.y148{bottom:980.561250px;}
.y139{bottom:982.286700px;}
.y161{bottom:991.898850px;}
.y146{bottom:991.942200px;}
.y26{bottom:992.314950px;}
.ybf{bottom:994.187700px;}
.y64{bottom:994.746450px;}
.y92{bottom:994.747200px;}
.y138{bottom:1003.651800px;}
.y160{bottom:1005.401850px;}
.ybe{bottom:1012.190700px;}
.y63{bottom:1012.749450px;}
.y91{bottom:1012.750200px;}
.y15f{bottom:1018.904850px;}
.y145{bottom:1018.937700px;}
.y135{bottom:1024.753200px;}
.y25{bottom:1026.814950px;}
.ybd{bottom:1030.190700px;}
.y62{bottom:1030.752450px;}
.y90{bottom:1030.753200px;}
.y15e{bottom:1032.407850px;}
.y144{bottom:1032.440700px;}
.y24{bottom:1113.057450px;}
.y23{bottom:1128.061950px;}
.h1c{height:19.148052px;}
.hf{height:24.241140px;}
.h16{height:30.498000px;}
.h7{height:32.130000px;}
.h1a{height:32.340000px;}
.h1e{height:32.388000px;}
.h1d{height:32.711400px;}
.ha{height:32.844000px;}
.hb{height:34.314000px;}
.h19{height:35.190000px;}
.h14{height:36.960000px;}
.h15{height:37.536000px;}
.h13{height:39.270000px;}
.h1b{height:39.495117px;}
.he{height:41.580000px;}
.h18{height:41.667000px;}
.h17{height:41.761500px;}
.h12{height:44.118000px;}
.h6{height:45.900000px;}
.h11{height:46.200000px;}
.h3{height:48.195000px;}
.h10{height:49.020000px;}
.h2{height:55.080000px;}
.hc{height:58.824000px;}
.h5{height:78.030000px;}
.hd{height:78.540000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:914.173500px;}
.w4{width:914.250000px;}
.x0{left:0.000000px;}
.x5{left:74.409450px;}
.xe{left:80.362200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x28{left:186.962137px;}
.x4{left:203.484001px;}
.x7{left:270.000000px;}
.x2c{left:273.337950px;}
.x29{left:275.716650px;}
.x9{left:282.744000px;}
.x2d{left:291.256725px;}
.xf{left:316.590450px;}
.x6{left:330.781500px;}
.x10{left:336.837450px;}
.x1d{left:338.484900px;}
.x1f{left:341.315400px;}
.x1e{left:343.062150px;}
.x21{left:356.883150px;}
.x11{left:394.288950px;}
.x12{left:396.112200px;}
.xc{left:400.350000px;}
.x2b{left:409.926750px;}
.x13{left:422.338950px;}
.x8{left:451.393800px;}
.x3{left:454.959000px;}
.x14{left:483.908700px;}
.x2a{left:490.468200px;}
.x15{left:515.337450px;}
.x22{left:516.691650px;}
.x20{left:548.196900px;}
.xa{left:559.795200px;}
.x2e{left:563.893425px;}
.xb{left:572.539200px;}
.x16{left:580.591950px;}
.x2f{left:585.150150px;}
.x23{left:586.217400px;}
.x17{left:600.838950px;}
.x18{left:657.538200px;}
.x19{left:659.361450px;}
.x24{left:662.755650px;}
.x1a{left:685.588200px;}
.x25{left:734.831400px;}
.x26{left:740.772900px;}
.x1b{left:749.414700px;}
.x27{left:752.872650px;}
.x1c{left:780.843450px;}
.xd{left:785.720700px;}
@media print{
.v1{vertical-align:-3.309333pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.306667pt;}
.ls12{letter-spacing:-1.269333pt;}
.ls1{letter-spacing:-0.952000pt;}
.ls2{letter-spacing:-0.725333pt;}
.ls13{letter-spacing:-0.634667pt;}
.ls10{letter-spacing:-0.560000pt;}
.ls5{letter-spacing:-0.554667pt;}
.lsf{letter-spacing:-0.522667pt;}
.ls3{letter-spacing:-0.498667pt;}
.ls7{letter-spacing:-0.453333pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.136000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.112000pt;}
.lsb{letter-spacing:0.410667pt;}
.lse{letter-spacing:0.440533pt;}
.lsd{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.560000pt;}
.ls9{letter-spacing:71.944000pt;}
.ls8{letter-spacing:110.840000pt;}
.ws2{word-spacing:-13.546667pt;}
.ws5c{word-spacing:-11.514667pt;}
.ws3d{word-spacing:-10.000000pt;}
.ws1{word-spacing:-9.482667pt;}
.ws6a{word-spacing:-9.445333pt;}
.ws5e{word-spacing:-9.333333pt;}
.ws69{word-spacing:-9.146667pt;}
.ws68{word-spacing:-8.773333pt;}
.ws67{word-spacing:-8.213333pt;}
.ws66{word-spacing:-8.176000pt;}
.wsd{word-spacing:-2.221333pt;}
.ws2d{word-spacing:-2.085333pt;}
.ws4{word-spacing:-2.040000pt;}
.ws6{word-spacing:-1.994667pt;}
.wsa{word-spacing:-1.858667pt;}
.ws1b{word-spacing:-1.450667pt;}
.ws12{word-spacing:-1.178667pt;}
.ws4d{word-spacing:-1.133333pt;}
.ws9{word-spacing:-1.042667pt;}
.ws46{word-spacing:-0.997333pt;}
.ws38{word-spacing:-0.952000pt;}
.ws40{word-spacing:-0.906667pt;}
.ws2c{word-spacing:-0.861333pt;}
.ws55{word-spacing:-0.770667pt;}
.ws3{word-spacing:-0.725333pt;}
.ws25{word-spacing:-0.680000pt;}
.ws42{word-spacing:-0.634667pt;}
.ws2f{word-spacing:-0.589333pt;}
.ws6e{word-spacing:-0.560000pt;}
.ws16{word-spacing:-0.498667pt;}
.ws14{word-spacing:-0.453333pt;}
.ws6f{word-spacing:-0.448000pt;}
.ws29{word-spacing:-0.362667pt;}
.ws4b{word-spacing:-0.181333pt;}
.ws6c{word-spacing:-0.149333pt;}
.ws1c{word-spacing:-0.136000pt;}
.ws7{word-spacing:-0.090667pt;}
.ws0{word-spacing:0.000000pt;}
.ws57{word-spacing:0.048000pt;}
.ws51{word-spacing:0.181333pt;}
.wsc{word-spacing:0.226667pt;}
.ws1d{word-spacing:0.272000pt;}
.ws1a{word-spacing:0.317333pt;}
.ws6d{word-spacing:0.373333pt;}
.ws59{word-spacing:0.408000pt;}
.ws58{word-spacing:0.453333pt;}
.ws24{word-spacing:0.498667pt;}
.ws6b{word-spacing:0.522667pt;}
.ws13{word-spacing:0.634667pt;}
.ws5{word-spacing:0.725333pt;}
.ws3f{word-spacing:0.768000pt;}
.wse{word-spacing:0.816000pt;}
.ws39{word-spacing:0.906667pt;}
.ws62{word-spacing:0.997333pt;}
.ws43{word-spacing:1.042667pt;}
.ws22{word-spacing:1.088000pt;}
.ws64{word-spacing:1.178667pt;}
.ws11{word-spacing:1.224000pt;}
.ws19{word-spacing:1.269333pt;}
.ws35{word-spacing:1.314667pt;}
.ws33{word-spacing:1.360000pt;}
.ws47{word-spacing:1.450667pt;}
.ws4f{word-spacing:1.586667pt;}
.ws54{word-spacing:1.632000pt;}
.ws36{word-spacing:1.722667pt;}
.ws32{word-spacing:2.040000pt;}
.ws49{word-spacing:2.357333pt;}
.ws53{word-spacing:2.448000pt;}
.ws8{word-spacing:2.629333pt;}
.ws3a{word-spacing:2.674667pt;}
.ws65{word-spacing:2.810667pt;}
.ws63{word-spacing:2.946667pt;}
.ws26{word-spacing:3.128000pt;}
.ws27{word-spacing:3.218667pt;}
.ws4c{word-spacing:3.264000pt;}
.ws18{word-spacing:3.309333pt;}
.ws45{word-spacing:3.400000pt;}
.ws21{word-spacing:3.672000pt;}
.ws20{word-spacing:3.762667pt;}
.ws30{word-spacing:3.808000pt;}
.ws2a{word-spacing:3.989333pt;}
.ws41{word-spacing:4.170667pt;}
.ws3e{word-spacing:4.216000pt;}
.ws52{word-spacing:4.714667pt;}
.ws37{word-spacing:4.760000pt;}
.ws2e{word-spacing:5.258667pt;}
.ws56{word-spacing:5.328000pt;}
.ws50{word-spacing:5.349333pt;}
.ws2b{word-spacing:5.394667pt;}
.ws1e{word-spacing:5.440000pt;}
.ws1f{word-spacing:5.485333pt;}
.wsf{word-spacing:5.576000pt;}
.ws31{word-spacing:5.621333pt;}
.ws4a{word-spacing:5.666667pt;}
.ws15{word-spacing:5.712000pt;}
.ws17{word-spacing:5.848000pt;}
.ws34{word-spacing:5.893333pt;}
.ws28{word-spacing:6.437333pt;}
.wsb{word-spacing:6.482667pt;}
.ws10{word-spacing:7.072000pt;}
.ws48{word-spacing:7.162667pt;}
.ws44{word-spacing:7.933333pt;}
.ws4e{word-spacing:8.704000pt;}
.ws23{word-spacing:12.874667pt;}
.ws5d{word-spacing:57.890667pt;}
.ws5a{word-spacing:75.434667pt;}
.ws61{word-spacing:81.160000pt;}
.ws5b{word-spacing:112.426667pt;}
.ws5f{word-spacing:117.776000pt;}
.ws60{word-spacing:152.000000pt;}
.ws3c{word-spacing:228.680000pt;}
.ws3b{word-spacing:807.205333pt;}
._5{margin-left:-11.650667pt;}
._35{margin-left:-9.333333pt;}
._3{margin-left:-4.288000pt;}
._4{margin-left:-2.762667pt;}
._1{margin-left:-1.866667pt;}
._0{margin-left:-0.896000pt;}
._2{width:1.594667pt;}
._1b{width:3.218667pt;}
._33{width:46.869333pt;}
._1f{width:50.360000pt;}
._2c{width:65.824000pt;}
._1e{width:66.960000pt;}
._29{width:78.440000pt;}
._20{width:88.800000pt;}
._32{width:91.160000pt;}
._2b{width:109.320000pt;}
._27{width:116.320000pt;}
._25{width:128.440000pt;}
._1d{width:135.826667pt;}
._28{width:147.306667pt;}
._1c{width:148.738667pt;}
._21{width:156.400000pt;}
._2a{width:159.680000pt;}
._31{width:162.000000pt;}
._24{width:178.800000pt;}
._f{width:183.941333pt;}
._22{width:190.480000pt;}
._2d{width:195.789333pt;}
._23{width:198.360000pt;}
._15{width:200.266667pt;}
._2e{width:204.680000pt;}
._b{width:238.680000pt;}
._30{width:239.842667pt;}
._8{width:241.480000pt;}
._17{width:250.160000pt;}
._13{width:252.960000pt;}
._7{width:261.522667pt;}
._a{width:269.280000pt;}
._19{width:277.960000pt;}
._14{width:281.040000pt;}
._10{width:291.893333pt;}
._9{width:297.320000pt;}
._1a{width:298.789333pt;}
._c{width:305.760000pt;}
._2f{width:315.520000pt;}
._18{width:317.240000pt;}
._34{width:350.242667pt;}
._e{width:371.701333pt;}
._16{width:378.269333pt;}
._11{width:380.402667pt;}
._26{width:385.586667pt;}
._d{width:397.629333pt;}
._12{width:401.493333pt;}
._6{width:848.184000pt;}
.fsb{font-size:21.765333pt;}
.fs6{font-size:27.984000pt;}
.fs9{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y61{bottom:37.356933pt;}
.y5{bottom:59.133337pt;}
.y8f{bottom:68.157733pt;}
.y60{bottom:69.365067pt;}
.yed{bottom:71.616667pt;}
.y5f{bottom:80.701067pt;}
.y8e{bottom:84.160400pt;}
.ybc{bottom:84.166400pt;}
.y4{bottom:86.333337pt;}
.yec{bottom:89.786667pt;}
.y8d{bottom:100.163067pt;}
.ybb{bottom:100.169067pt;}
.yeb{bottom:101.786667pt;}
.y11c{bottom:102.983200pt;}
.y8c{bottom:116.165733pt;}
.yba{bottom:116.171733pt;}
.y11b{bottom:118.985867pt;}
.yea{bottom:119.956667pt;}
.y5b{bottom:120.213467pt;}
.y22{bottom:123.790666pt;}
.ye9{bottom:131.956667pt;}
.y8b{bottom:132.168400pt;}
.yb9{bottom:132.174400pt;}
.y5a{bottom:134.208133pt;}
.y11a{bottom:134.988533pt;}
.y8a{bottom:148.171067pt;}
.yb8{bottom:148.177067pt;}
.y59{bottom:148.202800pt;}
.ye8{bottom:150.126667pt;}
.y119{bottom:150.991200pt;}
.y58{bottom:162.197467pt;}
.y89{bottom:164.173733pt;}
.y110{bottom:164.214400pt;}
.y118{bottom:166.993867pt;}
.ye7{bottom:168.296667pt;}
.y19{bottom:175.052000pt;}
.y57{bottom:176.192133pt;}
.y88{bottom:180.176400pt;}
.yb7{bottom:180.182400pt;}
.y10f{bottom:180.217067pt;}
.y117{bottom:182.996533pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.ye6{bottom:186.466667pt;}
.y56{bottom:190.186800pt;}
.y87{bottom:196.179067pt;}
.yb6{bottom:196.185067pt;}
.y10e{bottom:196.219733pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ye5{bottom:198.466667pt;}
.y116{bottom:198.999200pt;}
.y55{bottom:204.181467pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y86{bottom:212.181733pt;}
.yb5{bottom:212.187733pt;}
.y10d{bottom:212.222400pt;}
.y115{bottom:215.001867pt;}
.ye4{bottom:216.636667pt;}
.y54{bottom:218.176133pt;}
.y85{bottom:228.184400pt;}
.yb4{bottom:228.190400pt;}
.y10c{bottom:228.225067pt;}
.y114{bottom:231.004533pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y53{bottom:232.170800pt;}
.ye3{bottom:234.806667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y84{bottom:244.187067pt;}
.yb3{bottom:244.193067pt;}
.y10b{bottom:244.233067pt;}
.y52{bottom:246.165467pt;}
.y113{bottom:247.007200pt;}
.ye2{bottom:252.976667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y51{bottom:260.160133pt;}
.y83{bottom:260.189733pt;}
.y10a{bottom:260.229067pt;}
.y112{bottom:263.009867pt;}
.ye1{bottom:271.146667pt;}
.y50{bottom:274.154800pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yb2{bottom:276.198400pt;}
.y109{bottom:276.225067pt;}
.y111{bottom:279.009867pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y4f{bottom:288.149467pt;}
.ye0{bottom:289.316667pt;}
.y82{bottom:292.195067pt;}
.yb1{bottom:292.201067pt;}
.ydf{bottom:301.316667pt;}
.y4e{bottom:302.144133pt;}
.y108{bottom:308.123733pt;}
.y81{bottom:308.197733pt;}
.yb0{bottom:308.203733pt;}
.y10{bottom:309.452000pt;}
.y11e{bottom:314.676533pt;}
.y4d{bottom:316.138800pt;}
.yde{bottom:319.486667pt;}
.y107{bottom:324.126400pt;}
.y80{bottom:324.200400pt;}
.y4c{bottom:330.133467pt;}
.y134{bottom:333.279867pt;}
.ydd{bottom:337.656667pt;}
.y133{bottom:339.449867pt;}
.y106{bottom:340.129067pt;}
.y7f{bottom:340.203067pt;}
.yaf{bottom:340.209067pt;}
.yf{bottom:343.809333pt;}
.y4b{bottom:344.128133pt;}
.y132{bottom:351.449867pt;}
.ydc{bottom:355.826667pt;}
.y105{bottom:356.131733pt;}
.y7e{bottom:356.205733pt;}
.yae{bottom:356.211733pt;}
.y4a{bottom:361.328133pt;}
.ye{bottom:362.706666pt;}
.y131{bottom:369.619867pt;}
.y104{bottom:372.134400pt;}
.y7d{bottom:372.208400pt;}
.yad{bottom:372.214400pt;}
.ydb{bottom:373.996667pt;}
.y130{bottom:375.789867pt;}
.y12f{bottom:387.789867pt;}
.y103{bottom:388.137067pt;}
.y7c{bottom:388.211067pt;}
.yac{bottom:388.217067pt;}
.yda{bottom:392.166667pt;}
.y3e{bottom:403.359467pt;}
.y102{bottom:404.139733pt;}
.yd9{bottom:404.166667pt;}
.yab{bottom:404.219733pt;}
.y12e{bottom:405.959867pt;}
.y12d{bottom:412.129867pt;}
.y3d{bottom:419.362133pt;}
.y7b{bottom:420.216400pt;}
.yaa{bottom:420.222400pt;}
.yd8{bottom:422.336667pt;}
.y12c{bottom:424.129867pt;}
.yd7{bottom:434.336667pt;}
.y3c{bottom:435.364800pt;}
.y101{bottom:436.145067pt;}
.y7a{bottom:436.219067pt;}
.ya9{bottom:436.225067pt;}
.y12b{bottom:442.299867pt;}
.y143{bottom:446.537867pt;}
.yd{bottom:446.990669pt;}
.y12a{bottom:448.469867pt;}
.y3b{bottom:451.367467pt;}
.y100{bottom:452.147733pt;}
.y79{bottom:452.221733pt;}
.ya8{bottom:452.225067pt;}
.yd6{bottom:452.506667pt;}
.y129{bottom:460.469867pt;}
.yc{bottom:462.990669pt;}
.yd5{bottom:464.506667pt;}
.y3a{bottom:467.370133pt;}
.yff{bottom:468.150400pt;}
.y78{bottom:468.224400pt;}
.y128{bottom:478.639867pt;}
.yb{bottom:478.990666pt;}
.yd4{bottom:482.676667pt;}
.y39{bottom:483.372667pt;}
.yfe{bottom:484.153067pt;}
.ya7{bottom:484.185067pt;}
.y77{bottom:484.224400pt;}
.y127{bottom:484.809867pt;}
.ya{bottom:494.990666pt;}
.y126{bottom:496.809867pt;}
.yfd{bottom:500.155733pt;}
.ya6{bottom:500.187733pt;}
.yd3{bottom:500.846667pt;}
.y125{bottom:514.985867pt;}
.y38{bottom:515.376667pt;}
.yfc{bottom:516.158400pt;}
.y76{bottom:516.205733pt;}
.yd2{bottom:519.016667pt;}
.ya5{bottom:532.193067pt;}
.y75{bottom:532.208400pt;}
.y124{bottom:534.150533pt;}
.yd1{bottom:537.186667pt;}
.y37{bottom:542.712667pt;}
.yfb{bottom:548.163733pt;}
.ya4{bottom:548.195733pt;}
.y74{bottom:548.211067pt;}
.y123{bottom:548.815867pt;}
.yd0{bottom:555.356667pt;}
.y36{bottom:558.708667pt;}
.y122{bottom:563.481200pt;}
.yfa{bottom:564.166400pt;}
.ya3{bottom:564.198400pt;}
.ycf{bottom:567.356667pt;}
.y9{bottom:573.786667pt;}
.yf9{bottom:580.169067pt;}
.ya2{bottom:580.201067pt;}
.y73{bottom:580.216400pt;}
.y121{bottom:582.645867pt;}
.yce{bottom:585.526667pt;}
.y35{bottom:586.047333pt;}
.y8{bottom:592.685334pt;}
.yf8{bottom:596.171733pt;}
.ya1{bottom:596.203733pt;}
.y72{bottom:596.219067pt;}
.y120{bottom:597.311200pt;}
.y15d{bottom:602.695867pt;}
.ycd{bottom:603.696667pt;}
.y34{bottom:604.714000pt;}
.y178{bottom:605.725067pt;}
.y11f{bottom:611.976533pt;}
.yf7{bottom:612.174400pt;}
.ya0{bottom:612.206400pt;}
.y15c{bottom:614.698533pt;}
.y49{bottom:614.853600pt;}
.y177{bottom:617.714400pt;}
.ycc{bottom:621.866667pt;}
.y33{bottom:623.380667pt;}
.y48{bottom:626.184267pt;}
.y15b{bottom:626.701200pt;}
.yf6{bottom:628.177067pt;}
.y71{bottom:628.224400pt;}
.y176{bottom:629.717067pt;}
.y11d{bottom:631.558000pt;}
.y15a{bottom:638.703867pt;}
.ycb{bottom:640.038000pt;}
.y175{bottom:641.719733pt;}
.y32{bottom:642.047333pt;}
.yf5{bottom:644.179733pt;}
.y9f{bottom:644.211733pt;}
.y70{bottom:644.224400pt;}
.y7{bottom:645.598667pt;}
.y47{bottom:648.854933pt;}
.y159{bottom:650.706533pt;}
.y174{bottom:653.722400pt;}
.yca{bottom:654.703333pt;}
.y46{bottom:660.185600pt;}
.y9e{bottom:660.214400pt;}
.y31{bottom:660.714000pt;}
.y158{bottom:662.709200pt;}
.y173{bottom:665.725067pt;}
.y3{bottom:668.977329pt;}
.yc9{bottom:669.368667pt;}
.y45{bottom:671.516267pt;}
.y157{bottom:674.711867pt;}
.yf4{bottom:676.185067pt;}
.y6f{bottom:676.211067pt;}
.y9d{bottom:676.217067pt;}
.y172{bottom:677.642533pt;}
.y137{bottom:677.681067pt;}
.y30{bottom:679.380667pt;}
.y156{bottom:686.714533pt;}
.yc8{bottom:688.533333pt;}
.y171{bottom:689.645200pt;}
.yf3{bottom:692.187733pt;}
.y6e{bottom:692.213733pt;}
.y9c{bottom:692.219733pt;}
.y136{bottom:692.343733pt;}
.y44{bottom:694.186933pt;}
.y2f{bottom:698.047333pt;}
.y155{bottom:698.717200pt;}
.y170{bottom:701.647867pt;}
.y43{bottom:707.412267pt;}
.yc7{bottom:707.849333pt;}
.yf2{bottom:708.190400pt;}
.y6d{bottom:708.216400pt;}
.y9b{bottom:708.222400pt;}
.y142{bottom:709.443733pt;}
.y154{bottom:710.719867pt;}
.y16f{bottom:713.650533pt;}
.y2e{bottom:716.714000pt;}
.y42{bottom:718.742933pt;}
.yc6{bottom:722.514667pt;}
.y153{bottom:722.722533pt;}
.yf1{bottom:724.193067pt;}
.y6c{bottom:724.219067pt;}
.y9a{bottom:724.225067pt;}
.y16e{bottom:725.653200pt;}
.y141{bottom:727.613733pt;}
.y41{bottom:730.073600pt;}
.y152{bottom:734.715867pt;}
.y2d{bottom:735.380667pt;}
.y16d{bottom:737.655867pt;}
.yf0{bottom:740.195733pt;}
.y6b{bottom:740.221733pt;}
.y99{bottom:740.225067pt;}
.y40{bottom:741.404267pt;}
.y140{bottom:745.783733pt;}
.y16c{bottom:749.658533pt;}
.y3f{bottom:752.734933pt;}
.y2c{bottom:754.047333pt;}
.yc5{bottom:755.725067pt;}
.yef{bottom:756.198400pt;}
.y6a{bottom:756.224400pt;}
.y151{bottom:758.711867pt;}
.y16b{bottom:761.661200pt;}
.y13f{bottom:763.953733pt;}
.y150{bottom:770.714533pt;}
.yc4{bottom:771.729067pt;}
.y98{bottom:772.201067pt;}
.y69{bottom:772.224400pt;}
.y2b{bottom:772.714000pt;}
.y16a{bottom:773.663867pt;}
.y5e{bottom:775.778400pt;}
.y2{bottom:781.661334pt;}
.y13e{bottom:782.123733pt;}
.y14f{bottom:782.717200pt;}
.y169{bottom:785.666533pt;}
.y5d{bottom:787.109067pt;}
.yc3{bottom:787.725067pt;}
.y97{bottom:788.203733pt;}
.y14e{bottom:794.719867pt;}
.y168{bottom:797.669200pt;}
.y13d{bottom:800.293733pt;}
.y5c{bottom:800.334400pt;}
.y29{bottom:802.719200pt;}
.y68{bottom:804.205733pt;}
.y96{bottom:804.206400pt;}
.y2a{bottom:806.715200pt;}
.y14d{bottom:806.722533pt;}
.y167{bottom:809.671867pt;}
.y13c{bottom:818.463733pt;}
.yc2{bottom:819.711733pt;}
.y67{bottom:820.208400pt;}
.y95{bottom:820.209067pt;}
.y166{bottom:821.674533pt;}
.y28{bottom:828.745733pt;}
.y14c{bottom:830.725200pt;}
.y165{bottom:833.677200pt;}
.y66{bottom:836.211067pt;}
.y94{bottom:836.211733pt;}
.y13b{bottom:836.633733pt;}
.y14b{bottom:842.055867pt;}
.y14a{bottom:845.163867pt;}
.y164{bottom:845.679867pt;}
.yc1{bottom:851.717067pt;}
.y65{bottom:852.213733pt;}
.yee{bottom:852.214400pt;}
.y13a{bottom:854.803733pt;}
.y149{bottom:855.278933pt;}
.y27{bottom:855.401733pt;}
.y163{bottom:857.682533pt;}
.y1{bottom:859.312000pt;}
.yc0{bottom:867.719733pt;}
.y93{bottom:868.217067pt;}
.y147{bottom:868.502000pt;}
.y162{bottom:869.685200pt;}
.y148{bottom:871.610000pt;}
.y139{bottom:873.143733pt;}
.y161{bottom:881.687867pt;}
.y146{bottom:881.726400pt;}
.y26{bottom:882.057733pt;}
.ybf{bottom:883.722400pt;}
.y64{bottom:884.219067pt;}
.y92{bottom:884.219733pt;}
.y138{bottom:892.134933pt;}
.y160{bottom:893.690533pt;}
.ybe{bottom:899.725067pt;}
.y63{bottom:900.221733pt;}
.y91{bottom:900.222400pt;}
.y15f{bottom:905.693200pt;}
.y145{bottom:905.722400pt;}
.y135{bottom:910.891733pt;}
.y25{bottom:912.724400pt;}
.ybd{bottom:915.725067pt;}
.y62{bottom:916.224400pt;}
.y90{bottom:916.225067pt;}
.y15e{bottom:917.695867pt;}
.y144{bottom:917.725067pt;}
.y24{bottom:989.384400pt;}
.y23{bottom:1002.721733pt;}
.h1c{height:17.020491pt;}
.hf{height:21.547680pt;}
.h16{height:27.109333pt;}
.h7{height:28.560000pt;}
.h1a{height:28.746667pt;}
.h1e{height:28.789333pt;}
.h1d{height:29.076800pt;}
.ha{height:29.194667pt;}
.hb{height:30.501333pt;}
.h19{height:31.280000pt;}
.h14{height:32.853333pt;}
.h15{height:33.365333pt;}
.h13{height:34.906667pt;}
.h1b{height:35.106771pt;}
.he{height:36.960000pt;}
.h18{height:37.037333pt;}
.h17{height:37.121333pt;}
.h12{height:39.216000pt;}
.h6{height:40.800000pt;}
.h11{height:41.066667pt;}
.h3{height:42.840000pt;}
.h10{height:43.573333pt;}
.h2{height:48.960000pt;}
.hc{height:52.288000pt;}
.h5{height:69.360000pt;}
.hd{height:69.813333pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:812.598667pt;}
.w4{width:812.666667pt;}
.x0{left:0.000000pt;}
.x5{left:66.141733pt;}
.xe{left:71.433067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x28{left:166.188567pt;}
.x4{left:180.874667pt;}
.x7{left:240.000000pt;}
.x2c{left:242.967067pt;}
.x29{left:245.081467pt;}
.x9{left:251.328000pt;}
.x2d{left:258.894867pt;}
.xf{left:281.413733pt;}
.x6{left:294.028000pt;}
.x10{left:299.411067pt;}
.x1d{left:300.875467pt;}
.x1f{left:303.391467pt;}
.x1e{left:304.944133pt;}
.x21{left:317.229467pt;}
.x11{left:350.479067pt;}
.x12{left:352.099733pt;}
.xc{left:355.866667pt;}
.x2b{left:364.379333pt;}
.x13{left:375.412400pt;}
.x8{left:401.238933pt;}
.x3{left:404.408000pt;}
.x14{left:430.141067pt;}
.x2a{left:435.971733pt;}
.x15{left:458.077733pt;}
.x22{left:459.281467pt;}
.x20{left:487.286133pt;}
.xa{left:497.595733pt;}
.x2e{left:501.238600pt;}
.xb{left:508.923733pt;}
.x16{left:516.081733pt;}
.x2f{left:520.133467pt;}
.x23{left:521.082133pt;}
.x17{left:534.079067pt;}
.x18{left:584.478400pt;}
.x19{left:586.099067pt;}
.x24{left:589.116133pt;}
.x1a{left:609.411733pt;}
.x25{left:653.183467pt;}
.x26{left:658.464800pt;}
.x1b{left:666.146400pt;}
.x27{left:669.220133pt;}
.x1c{left:694.083067pt;}
.xd{left:698.418400pt;}
}




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