
    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_35ed740edb1d7f82bbcc29d7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4b11bcbb97d0a9dac99b985c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_ef18c0483953a693f43989f2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_9b2166bb11dfc2c9947c670e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_19fb1c03eea665601ffd44de.woff')format("woff");}.ff5{font-family:ff5;line-height:0.683594;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_36f3568f1aed548d54cd31e6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.683594;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_b5f2818f5972249feeb4d9d3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_fd362c9058c7421f39cdd158.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:22.232400px;}
.v6{vertical-align:24.564000px;}
.v3{vertical-align:26.640000px;}
.ls52{letter-spacing:-7.200000px;}
.ls11{letter-spacing:-6.696000px;}
.ls53{letter-spacing:-2.736000px;}
.ls4e{letter-spacing:-1.152000px;}
.ls4f{letter-spacing:-1.080000px;}
.ls3c{letter-spacing:-0.936000px;}
.ls3d{letter-spacing:-0.864000px;}
.ls50{letter-spacing:-0.792000px;}
.ls6c{letter-spacing:-0.726000px;}
.ls13{letter-spacing:-0.720000px;}
.ls5a{letter-spacing:-0.660000px;}
.ls3f{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.513000px;}
.ls39{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.456000px;}
.ls3e{letter-spacing:-0.441000px;}
.ls38{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.399000px;}
.ls2b{letter-spacing:-0.378000px;}
.lse{letter-spacing:-0.360000px;}
.ls65{letter-spacing:-0.330000px;}
.ls2c{letter-spacing:-0.315000px;}
.ls37{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.285000px;}
.ls66{letter-spacing:-0.264000px;}
.ls2d{letter-spacing:-0.252000px;}
.ls2f{letter-spacing:-0.216000px;}
.ls6b{letter-spacing:-0.198000px;}
.ls2e{letter-spacing:-0.189000px;}
.ls10{letter-spacing:-0.144000px;}
.ls73{letter-spacing:-0.132000px;}
.ls20{letter-spacing:-0.114000px;}
.lsf{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.072000px;}
.ls62{letter-spacing:0.132000px;}
.ls12{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.171000px;}
.ls3b{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.216000px;}
.ls70{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.295800px;}
.ls3a{letter-spacing:0.315000px;}
.ls6f{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls6e{letter-spacing:0.396000px;}
.ls24{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.441000px;}
.ls59{letter-spacing:0.462000px;}
.lsb{letter-spacing:0.504000px;}
.ls58{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.567000px;}
.ls1a{letter-spacing:0.576000px;}
.ls60{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.648000px;}
.ls72{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.720000px;}
.ls61{letter-spacing:0.726000px;}
.ls1c{letter-spacing:0.864000px;}
.ls68{letter-spacing:0.990000px;}
.ls5e{letter-spacing:1.188000px;}
.ls67{letter-spacing:1.254000px;}
.ls5f{letter-spacing:1.320000px;}
.ls54{letter-spacing:1.800000px;}
.ls34{letter-spacing:2.088000px;}
.ls5b{letter-spacing:2.838000px;}
.ls42{letter-spacing:2.880000px;}
.ls4b{letter-spacing:2.952000px;}
.ls49{letter-spacing:3.312000px;}
.ls4d{letter-spacing:4.032000px;}
.ls18{letter-spacing:4.104000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.380000px;}
.ls31{letter-spacing:4.464000px;}
.ls35{letter-spacing:4.752000px;}
.ls71{letter-spacing:4.818000px;}
.ls36{letter-spacing:5.544000px;}
.ls57{letter-spacing:6.000000px;}
.ls19{letter-spacing:6.120000px;}
.ls25{letter-spacing:6.300000px;}
.ls1{letter-spacing:6.600000px;}
.ls4c{letter-spacing:6.840000px;}
.ls51{letter-spacing:7.200000px;}
.ls4a{letter-spacing:7.848000px;}
.ls40{letter-spacing:7.920000px;}
.ls27{letter-spacing:8.127000px;}
.ls23{letter-spacing:8.136000px;}
.ls32{letter-spacing:8.280000px;}
.ls8{letter-spacing:8.352000px;}
.ls43{letter-spacing:8.424000px;}
.ls44{letter-spacing:8.496000px;}
.ls5d{letter-spacing:8.514000px;}
.ls48{letter-spacing:8.568000px;}
.ls41{letter-spacing:8.640000px;}
.ls30{letter-spacing:8.712000px;}
.ls22{letter-spacing:9.072000px;}
.ls45{letter-spacing:9.144000px;}
.ls46{letter-spacing:9.216000px;}
.ls47{letter-spacing:9.288000px;}
.ls69{letter-spacing:9.306000px;}
.ls6a{letter-spacing:9.372000px;}
.ls1d{letter-spacing:9.576000px;}
.ls29{letter-spacing:9.864000px;}
.ls55{letter-spacing:10.152000px;}
.ls2{letter-spacing:10.200000px;}
.ls56{letter-spacing:10.224000px;}
.ls33{letter-spacing:10.656000px;}
.lsc{letter-spacing:10.872000px;}
.ls64{letter-spacing:11.022000px;}
.ls63{letter-spacing:11.088000px;}
.ls6d{letter-spacing:19.800000px;}
.ls2a{letter-spacing:38.923800px;}
.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;}
}
.ws1{word-spacing:-35.394000px;}
.ws2a{word-spacing:-27.432000px;}
.ws24{word-spacing:-26.928000px;}
.ws22{word-spacing:-26.208000px;}
.ws25{word-spacing:-26.064000px;}
.ws30{word-spacing:-24.984000px;}
.wsf{word-spacing:-21.096000px;}
.ws9{word-spacing:-20.592000px;}
.ws13{word-spacing:-20.448000px;}
.ws28{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.232000px;}
.ws27{word-spacing:-19.944000px;}
.ws4{word-spacing:-19.872000px;}
.ws29{word-spacing:-19.800000px;}
.wsd{word-spacing:-19.512000px;}
.ws33{word-spacing:-18.942000px;}
.ws2e{word-spacing:-18.612000px;}
.ws1d{word-spacing:-18.504000px;}
.ws1e{word-spacing:-18.288000px;}
.ws35{word-spacing:-18.282000px;}
.ws18{word-spacing:-18.270000px;}
.ws1c{word-spacing:-18.216000px;}
.ws17{word-spacing:-18.207000px;}
.ws8{word-spacing:-18.144000px;}
.wsb{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.784000px;}
.ws2b{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.703000px;}
.ws1b{word-spacing:-17.640000px;}
.ws1f{word-spacing:-17.568000px;}
.ws16{word-spacing:-17.451000px;}
.ws19{word-spacing:-17.424000px;}
.ws15{word-spacing:-17.325000px;}
.ws23{word-spacing:-17.208000px;}
.ws26{word-spacing:-17.136000px;}
.ws21{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.860000px;}
.ws32{word-spacing:-16.368000px;}
.ws2d{word-spacing:-16.302000px;}
.ws34{word-spacing:-16.170000px;}
.ws2f{word-spacing:-16.038000px;}
.ws11{word-spacing:-16.017000px;}
.ws10{word-spacing:-15.903000px;}
.ws20{word-spacing:-15.876000px;}
.ws2c{word-spacing:-15.642000px;}
.ws12{word-spacing:-15.561000px;}
.ws36{word-spacing:-14.820000px;}
.wsc{word-spacing:-14.079000px;}
.wsa{word-spacing:-12.139200px;}
.ws1a{word-spacing:-11.923200px;}
.ws7{word-spacing:-11.856000px;}
.ws31{word-spacing:-11.127600px;}
.ws5{word-spacing:-11.088000px;}
.wse{word-spacing:-10.116000px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-19.038000px;}
._18{margin-left:-17.820000px;}
._12{margin-left:-15.456000px;}
._14{margin-left:-12.951000px;}
._17{margin-left:-11.448000px;}
._6{margin-left:-10.200000px;}
._f{margin-left:-8.865600px;}
._5{margin-left:-7.650000px;}
._d{margin-left:-6.318000px;}
._2{margin-left:-4.950000px;}
._0{margin-left:-3.906000px;}
._1{margin-left:-1.980000px;}
._8{width:1.224000px;}
._4{width:2.640000px;}
._3{width:4.620000px;}
._c{width:5.688000px;}
._7{width:7.242000px;}
._b{width:8.430000px;}
._a{width:9.468000px;}
._9{width:10.476000px;}
._e{width:11.616000px;}
._11{width:13.437600px;}
._16{width:14.778000px;}
._15{width:16.734000px;}
._19{width:21.174000px;}
._13{width:38.923200px;}
._10{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs5{font-size:43.800000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.y8e{bottom:140.304150px;}
.y6f{bottom:140.308500px;}
.y48{bottom:140.311650px;}
.yc8{bottom:142.280700px;}
.y120{bottom:143.858550px;}
.y143{bottom:143.937600px;}
.ye8{bottom:144.034650px;}
.y18e{bottom:144.800550px;}
.y16a{bottom:144.927000px;}
.yff{bottom:147.520500px;}
.y1f{bottom:148.210650px;}
.y8d{bottom:156.805650px;}
.y6e{bottom:156.810000px;}
.y47{bottom:162.363150px;}
.yc7{bottom:163.574700px;}
.y142{bottom:164.034600px;}
.y18d{bottom:164.303550px;}
.y169{bottom:165.024000px;}
.y11f{bottom:165.458550px;}
.ye7{bottom:165.490650px;}
.yfe{bottom:169.120500px;}
.y1e{bottom:169.810650px;}
.y8c{bottom:173.307150px;}
.y46{bottom:173.310150px;}
.y6d{bottom:173.311500px;}
.ya3{bottom:178.863150px;}
.y18c{bottom:183.806550px;}
.y141{bottom:184.131600px;}
.yc6{bottom:184.868700px;}
.y168{bottom:185.121000px;}
.ye6{bottom:186.946650px;}
.y11e{bottom:187.058550px;}
.y8b{bottom:189.808650px;}
.y45{bottom:189.811650px;}
.yfd{bottom:190.720500px;}
.y1d{bottom:191.410650px;}
.y6c{bottom:195.363000px;}
.y18b{bottom:203.309550px;}
.y140{bottom:204.228600px;}
.y167{bottom:205.218000px;}
.yc5{bottom:206.162700px;}
.y6b{bottom:206.310000px;}
.y8a{bottom:206.310150px;}
.ye5{bottom:208.402650px;}
.y11d{bottom:208.658550px;}
.y44{bottom:211.863150px;}
.yfc{bottom:212.320500px;}
.y1c{bottom:213.010650px;}
.y43{bottom:222.796650px;}
.y6a{bottom:222.811500px;}
.y89{bottom:222.811650px;}
.y18a{bottom:222.812550px;}
.y13f{bottom:224.325600px;}
.y166{bottom:225.315000px;}
.ya2{bottom:225.882600px;}
.yc4{bottom:227.456700px;}
.ye4{bottom:229.858650px;}
.y11c{bottom:230.258550px;}
.yfb{bottom:233.920500px;}
.y1b{bottom:234.610650px;}
.y42{bottom:239.298150px;}
.y189{bottom:242.315550px;}
.y13e{bottom:244.422600px;}
.y69{bottom:244.863000px;}
.y88{bottom:244.863150px;}
.y165{bottom:245.412000px;}
.ya1{bottom:247.482600px;}
.yc3{bottom:248.750700px;}
.ye3{bottom:251.314650px;}
.y11b{bottom:251.858550px;}
.yfa{bottom:255.520500px;}
.y41{bottom:255.799650px;}
.y68{bottom:255.801000px;}
.y87{bottom:255.811650px;}
.y1a{bottom:256.210650px;}
.y188{bottom:261.818550px;}
.y13d{bottom:264.519600px;}
.y164{bottom:265.509000px;}
.ya0{bottom:269.082600px;}
.yc2{bottom:270.044700px;}
.y40{bottom:272.301150px;}
.y67{bottom:272.302500px;}
.ye2{bottom:272.770650px;}
.y11a{bottom:273.458550px;}
.yf9{bottom:277.264500px;}
.y19{bottom:277.810650px;}
.y86{bottom:277.863150px;}
.y187{bottom:281.321550px;}
.y13c{bottom:284.616600px;}
.y163{bottom:285.606000px;}
.y3f{bottom:288.802650px;}
.y66{bottom:288.804000px;}
.y9f{bottom:290.682600px;}
.yc1{bottom:291.338700px;}
.ye1{bottom:294.226650px;}
.y119{bottom:295.058550px;}
.yf8{bottom:299.008500px;}
.y18{bottom:299.410650px;}
.y186{bottom:300.824550px;}
.y13b{bottom:304.713600px;}
.y3e{bottom:305.304150px;}
.y65{bottom:305.305500px;}
.y162{bottom:305.703000px;}
.y9e{bottom:312.274500px;}
.yc0{bottom:312.632700px;}
.ye0{bottom:315.682650px;}
.y118{bottom:316.658550px;}
.y85{bottom:319.312500px;}
.y185{bottom:320.327550px;}
.yf7{bottom:320.752500px;}
.y17{bottom:321.010650px;}
.y3d{bottom:321.805650px;}
.y64{bottom:321.807000px;}
.y13a{bottom:324.810600px;}
.y161{bottom:325.800000px;}
.y9d{bottom:333.874500px;}
.ybf{bottom:333.926700px;}
.y117{bottom:338.258550px;}
.y3c{bottom:338.307150px;}
.y63{bottom:338.308500px;}
.y184{bottom:339.830550px;}
.y84{bottom:340.912500px;}
.yf6{bottom:342.496500px;}
.y16{bottom:342.610650px;}
.y139{bottom:344.907600px;}
.y160{bottom:345.897000px;}
.y3b{bottom:354.808650px;}
.y62{bottom:354.810000px;}
.ybe{bottom:355.220700px;}
.y9c{bottom:355.474500px;}
.y183{bottom:359.333550px;}
.y116{bottom:359.858550px;}
.y83{bottom:362.512500px;}
.y15{bottom:364.210650px;}
.yf5{bottom:364.240500px;}
.y138{bottom:365.004600px;}
.y15f{bottom:365.994000px;}
.ydf{bottom:369.214650px;}
.y3a{bottom:371.310150px;}
.y61{bottom:371.311500px;}
.ybd{bottom:376.514700px;}
.y9b{bottom:377.074500px;}
.y182{bottom:378.688050px;}
.y115{bottom:381.458550px;}
.y82{bottom:384.112500px;}
.y14{bottom:385.810650px;}
.yf4{bottom:385.984500px;}
.y15e{bottom:386.091000px;}
.y39{bottom:387.811650px;}
.yde{bottom:390.670650px;}
.y60{bottom:393.363000px;}
.y137{bottom:393.608550px;}
.ybc{bottom:397.808700px;}
.y181{bottom:398.042550px;}
.y9a{bottom:398.674500px;}
.y114{bottom:403.058550px;}
.y5f{bottom:404.304000px;}
.y81{bottom:405.712500px;}
.y15d{bottom:406.188000px;}
.y13{bottom:407.410650px;}
.yf3{bottom:407.728500px;}
.y38{bottom:409.863150px;}
.ydd{bottom:412.126650px;}
.y180{bottom:417.397050px;}
.ybb{bottom:419.102700px;}
.y99{bottom:420.274500px;}
.y5e{bottom:420.805500px;}
.y37{bottom:420.811650px;}
.y113{bottom:424.658550px;}
.y15c{bottom:426.285000px;}
.y80{bottom:427.312500px;}
.y12{bottom:429.010650px;}
.yf2{bottom:429.472500px;}
.ydc{bottom:433.582650px;}
.y17f{bottom:436.751550px;}
.y5d{bottom:437.307000px;}
.yba{bottom:440.396700px;}
.y98{bottom:441.874500px;}
.y136{bottom:442.612500px;}
.y36{bottom:442.863150px;}
.y112{bottom:446.258550px;}
.y15b{bottom:446.382000px;}
.y7f{bottom:448.912500px;}
.y11{bottom:450.610650px;}
.yf1{bottom:451.216500px;}
.y5c{bottom:453.808500px;}
.ydb{bottom:455.038650px;}
.y17e{bottom:456.070050px;}
.y135{bottom:464.662500px;}
.y15a{bottom:466.479000px;}
.y111{bottom:467.858550px;}
.y5b{bottom:470.310000px;}
.y7e{bottom:470.512500px;}
.y10{bottom:472.210650px;}
.yf0{bottom:472.960500px;}
.y17d{bottom:475.424550px;}
.yda{bottom:476.494650px;}
.yb9{bottom:479.335500px;}
.y35{bottom:483.562500px;}
.y159{bottom:486.576000px;}
.y134{bottom:486.712500px;}
.y5a{bottom:486.811500px;}
.y7d{bottom:492.092250px;}
.yf{bottom:493.810650px;}
.yef{bottom:494.704500px;}
.y17c{bottom:494.779050px;}
.y97{bottom:495.712500px;}
.yb8{bottom:497.038500px;}
.yd9{bottom:497.950650px;}
.y110{bottom:497.962500px;}
.y34{bottom:504.712500px;}
.y158{bottom:506.673000px;}
.y133{bottom:508.762500px;}
.y59{bottom:508.863000px;}
.y7c{bottom:510.094500px;}
.y17b{bottom:514.133550px;}
.yb7{bottom:514.741500px;}
.yee{bottom:516.448500px;}
.y1a1{bottom:516.510000px;}
.y96{bottom:517.312500px;}
.y33{bottom:525.862500px;}
.y157{bottom:526.770000px;}
.y7b{bottom:528.096750px;}
.y132{bottom:530.812500px;}
.yb6{bottom:532.444500px;}
.y17a{bottom:533.488050px;}
.y1a0{bottom:534.510000px;}
.yd8{bottom:537.070500px;}
.yed{bottom:538.192500px;}
.y95{bottom:538.912500px;}
.y7a{bottom:546.099000px;}
.y156{bottom:546.867000px;}
.y32{bottom:547.012500px;}
.ye{bottom:547.648650px;}
.y58{bottom:549.882450px;}
.y19f{bottom:552.510000px;}
.y179{bottom:552.842550px;}
.y131{bottom:552.862500px;}
.yd7{bottom:554.773500px;}
.yb5{bottom:558.652500px;}
.yec{bottom:559.936500px;}
.y94{bottom:560.512500px;}
.y79{bottom:564.101250px;}
.y155{bottom:566.964000px;}
.y31{bottom:568.162500px;}
.yd{bottom:569.248650px;}
.y19e{bottom:570.510000px;}
.y57{bottom:571.482450px;}
.y178{bottom:572.197050px;}
.y130{bottom:574.912500px;}
.yb4{bottom:576.355500px;}
.yd6{bottom:580.981500px;}
.yeb{bottom:581.680500px;}
.y78{bottom:582.103500px;}
.y93{bottom:582.112500px;}
.y10f{bottom:584.272500px;}
.y154{bottom:587.061000px;}
.y30{bottom:589.312500px;}
.yc{bottom:590.848650px;}
.y177{bottom:591.551550px;}
.y56{bottom:593.082450px;}
.yb3{bottom:594.058500px;}
.y12f{bottom:596.962500px;}
.yd5{bottom:598.684500px;}
.y77{bottom:600.105750px;}
.yea{bottom:603.424500px;}
.y92{bottom:603.712500px;}
.y10e{bottom:605.872500px;}
.y153{bottom:607.158000px;}
.y19d{bottom:610.110000px;}
.y2f{bottom:610.462500px;}
.y176{bottom:610.906050px;}
.yb2{bottom:611.761500px;}
.yb{bottom:612.448650px;}
.y55{bottom:614.682450px;}
.yd4{bottom:616.387500px;}
.y76{bottom:618.108000px;}
.y12e{bottom:619.012500px;}
.ye9{bottom:625.168500px;}
.y91{bottom:625.312500px;}
.y152{bottom:627.255000px;}
.y10d{bottom:627.328500px;}
.yb1{bottom:629.464500px;}
.y19c{bottom:629.910000px;}
.y2e{bottom:631.612500px;}
.ya{bottom:634.048650px;}
.y75{bottom:636.110250px;}
.y54{bottom:636.282450px;}
.y12d{bottom:641.062500px;}
.yd3{bottom:642.595500px;}
.y90{bottom:646.912500px;}
.yb0{bottom:647.167500px;}
.y151{bottom:647.352000px;}
.y10c{bottom:648.784500px;}
.y175{bottom:649.606050px;}
.y2d{bottom:652.762500px;}
.y74{bottom:654.112500px;}
.y9{bottom:655.648650px;}
.y53{bottom:657.882600px;}
.yd2{bottom:660.298500px;}
.y12c{bottom:663.112500px;}
.y150{bottom:667.449000px;}
.y8f{bottom:668.512500px;}
.y10b{bottom:670.240500px;}
.y19b{bottom:671.310000px;}
.yaf{bottom:673.375500px;}
.y2c{bottom:673.912500px;}
.y8{bottom:677.248650px;}
.y174{bottom:677.460000px;}
.y52{bottom:679.482600px;}
.y12b{bottom:685.162500px;}
.yd1{bottom:686.506500px;}
.y14f{bottom:687.546000px;}
.y73{bottom:690.112500px;}
.yae{bottom:691.078500px;}
.y19a{bottom:691.110000px;}
.y10a{bottom:691.696500px;}
.y2b{bottom:695.062500px;}
.y173{bottom:698.610000px;}
.y51{bottom:701.074500px;}
.yd0{bottom:704.209500px;}
.y12a{bottom:707.212500px;}
.y14e{bottom:707.643000px;}
.yad{bottom:708.781500px;}
.y199{bottom:710.910000px;}
.y72{bottom:711.712500px;}
.y109{bottom:713.152500px;}
.y2a{bottom:716.212500px;}
.ycf{bottom:721.912500px;}
.y50{bottom:722.674500px;}
.yac{bottom:726.484500px;}
.y14d{bottom:727.740000px;}
.y129{bottom:729.262500px;}
.y198{bottom:730.710000px;}
.y71{bottom:733.312500px;}
.y108{bottom:734.608500px;}
.y29{bottom:737.362500px;}
.yab{bottom:744.187500px;}
.y14c{bottom:747.837000px;}
.y197{bottom:750.510000px;}
.y128{bottom:751.312500px;}
.y70{bottom:754.912500px;}
.y107{bottom:756.064500px;}
.yce{bottom:757.360500px;}
.y28{bottom:758.512500px;}
.y172{bottom:762.060000px;}
.y7{bottom:763.648650px;}
.y14b{bottom:767.934000px;}
.y196{bottom:770.310000px;}
.yaa{bottom:770.395500px;}
.y127{bottom:773.362500px;}
.y4f{bottom:776.512500px;}
.y106{bottom:777.520500px;}
.ycd{bottom:778.654500px;}
.y27{bottom:779.662500px;}
.y6{bottom:783.448650px;}
.y14a{bottom:788.031000px;}
.ya9{bottom:788.098500px;}
.y195{bottom:790.110000px;}
.y171{bottom:793.228500px;}
.y126{bottom:795.412500px;}
.y4e{bottom:798.112500px;}
.y105{bottom:798.976500px;}
.ycc{bottom:799.948500px;}
.y26{bottom:800.812500px;}
.ya8{bottom:805.801500px;}
.y149{bottom:808.128000px;}
.y194{bottom:809.910000px;}
.y170{bottom:812.583000px;}
.y125{bottom:817.462500px;}
.y4d{bottom:819.712500px;}
.y104{bottom:820.432500px;}
.ycb{bottom:821.242500px;}
.y25{bottom:821.962500px;}
.y5{bottom:824.848650px;}
.y148{bottom:828.225000px;}
.y193{bottom:829.710000px;}
.y16f{bottom:831.937500px;}
.ya7{bottom:832.009500px;}
.y124{bottom:839.512500px;}
.y4c{bottom:841.312500px;}
.y103{bottom:841.888500px;}
.yca{bottom:842.536500px;}
.y24{bottom:843.112500px;}
.y147{bottom:848.322000px;}
.y192{bottom:849.510000px;}
.ya6{bottom:849.712500px;}
.y16e{bottom:851.292000px;}
.y4{bottom:855.448650px;}
.y123{bottom:861.562500px;}
.y4b{bottom:862.912500px;}
.y102{bottom:863.344500px;}
.yc9{bottom:863.830500px;}
.y23{bottom:864.262500px;}
.y146{bottom:868.419000px;}
.y191{bottom:869.310000px;}
.y16d{bottom:870.646500px;}
.y122{bottom:883.612500px;}
.y4a{bottom:884.512500px;}
.y101{bottom:884.800500px;}
.ya5{bottom:885.124500px;}
.y22{bottom:885.412500px;}
.y145{bottom:888.516000px;}
.y190{bottom:889.110000px;}
.y16c{bottom:890.001000px;}
.y121{bottom:905.662500px;}
.y49{bottom:906.112500px;}
.y100{bottom:906.256500px;}
.ya4{bottom:906.418500px;}
.y21{bottom:906.562500px;}
.y144{bottom:908.613000px;}
.y18f{bottom:908.910000px;}
.y16b{bottom:909.355500px;}
.y3{bottom:910.710000px;}
.y20{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.hb{height:26.199902px;}
.hd{height:30.568359px;}
.h3{height:35.663086px;}
.h6{height:37.191504px;}
.h8{height:40.757812px;}
.h2{height:41.396484px;}
.h10{height:41.989746px;}
.hc{height:48.399902px;}
.h11{height:49.675781px;}
.h9{height:50.947266px;}
.hf{height:53.494629px;}
.h4{height:56.041992px;}
.h12{height:58.189195px;}
.h7{height:61.136719px;}
.he{height:61.169119px;}
.ha{height:63.322031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x1{left:97.795350px;}
.x4{left:119.089350px;}
.x8{left:140.317650px;}
.x2{left:150.670350px;}
.xa{left:179.426700px;}
.x3{left:216.627600px;}
.x5{left:245.628300px;}
.x9{left:518.943600px;}
.x6{left:572.164350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:19.762133pt;}
.v6{vertical-align:21.834667pt;}
.v3{vertical-align:23.680000pt;}
.ls52{letter-spacing:-6.400000pt;}
.ls11{letter-spacing:-5.952000pt;}
.ls53{letter-spacing:-2.432000pt;}
.ls4e{letter-spacing:-1.024000pt;}
.ls4f{letter-spacing:-0.960000pt;}
.ls3c{letter-spacing:-0.832000pt;}
.ls3d{letter-spacing:-0.768000pt;}
.ls50{letter-spacing:-0.704000pt;}
.ls6c{letter-spacing:-0.645333pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls5a{letter-spacing:-0.586667pt;}
.ls3f{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.456000pt;}
.ls39{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.405333pt;}
.ls3e{letter-spacing:-0.392000pt;}
.ls38{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.354667pt;}
.ls2b{letter-spacing:-0.336000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls65{letter-spacing:-0.293333pt;}
.ls2c{letter-spacing:-0.280000pt;}
.ls37{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.253333pt;}
.ls66{letter-spacing:-0.234667pt;}
.ls2d{letter-spacing:-0.224000pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls6b{letter-spacing:-0.176000pt;}
.ls2e{letter-spacing:-0.168000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls73{letter-spacing:-0.117333pt;}
.ls20{letter-spacing:-0.101333pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.064000pt;}
.ls62{letter-spacing:0.117333pt;}
.ls12{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.152000pt;}
.ls3b{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls70{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.262933pt;}
.ls3a{letter-spacing:0.280000pt;}
.ls6f{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6e{letter-spacing:0.352000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.392000pt;}
.ls59{letter-spacing:0.410667pt;}
.lsb{letter-spacing:0.448000pt;}
.ls58{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.504000pt;}
.ls1a{letter-spacing:0.512000pt;}
.ls60{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.576000pt;}
.ls72{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.640000pt;}
.ls61{letter-spacing:0.645333pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls68{letter-spacing:0.880000pt;}
.ls5e{letter-spacing:1.056000pt;}
.ls67{letter-spacing:1.114667pt;}
.ls5f{letter-spacing:1.173333pt;}
.ls54{letter-spacing:1.600000pt;}
.ls34{letter-spacing:1.856000pt;}
.ls5b{letter-spacing:2.522667pt;}
.ls42{letter-spacing:2.560000pt;}
.ls4b{letter-spacing:2.624000pt;}
.ls49{letter-spacing:2.944000pt;}
.ls4d{letter-spacing:3.584000pt;}
.ls18{letter-spacing:3.648000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.893333pt;}
.ls31{letter-spacing:3.968000pt;}
.ls35{letter-spacing:4.224000pt;}
.ls71{letter-spacing:4.282667pt;}
.ls36{letter-spacing:4.928000pt;}
.ls57{letter-spacing:5.333333pt;}
.ls19{letter-spacing:5.440000pt;}
.ls25{letter-spacing:5.600000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4c{letter-spacing:6.080000pt;}
.ls51{letter-spacing:6.400000pt;}
.ls4a{letter-spacing:6.976000pt;}
.ls40{letter-spacing:7.040000pt;}
.ls27{letter-spacing:7.224000pt;}
.ls23{letter-spacing:7.232000pt;}
.ls32{letter-spacing:7.360000pt;}
.ls8{letter-spacing:7.424000pt;}
.ls43{letter-spacing:7.488000pt;}
.ls44{letter-spacing:7.552000pt;}
.ls5d{letter-spacing:7.568000pt;}
.ls48{letter-spacing:7.616000pt;}
.ls41{letter-spacing:7.680000pt;}
.ls30{letter-spacing:7.744000pt;}
.ls22{letter-spacing:8.064000pt;}
.ls45{letter-spacing:8.128000pt;}
.ls46{letter-spacing:8.192000pt;}
.ls47{letter-spacing:8.256000pt;}
.ls69{letter-spacing:8.272000pt;}
.ls6a{letter-spacing:8.330667pt;}
.ls1d{letter-spacing:8.512000pt;}
.ls29{letter-spacing:8.768000pt;}
.ls55{letter-spacing:9.024000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls56{letter-spacing:9.088000pt;}
.ls33{letter-spacing:9.472000pt;}
.lsc{letter-spacing:9.664000pt;}
.ls64{letter-spacing:9.797333pt;}
.ls63{letter-spacing:9.856000pt;}
.ls6d{letter-spacing:17.600000pt;}
.ls2a{letter-spacing:34.598933pt;}
.ws1{word-spacing:-31.461333pt;}
.ws2a{word-spacing:-24.384000pt;}
.ws24{word-spacing:-23.936000pt;}
.ws22{word-spacing:-23.296000pt;}
.ws25{word-spacing:-23.168000pt;}
.ws30{word-spacing:-22.208000pt;}
.wsf{word-spacing:-18.752000pt;}
.ws9{word-spacing:-18.304000pt;}
.ws13{word-spacing:-18.176000pt;}
.ws28{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.984000pt;}
.ws27{word-spacing:-17.728000pt;}
.ws4{word-spacing:-17.664000pt;}
.ws29{word-spacing:-17.600000pt;}
.wsd{word-spacing:-17.344000pt;}
.ws33{word-spacing:-16.837333pt;}
.ws2e{word-spacing:-16.544000pt;}
.ws1d{word-spacing:-16.448000pt;}
.ws1e{word-spacing:-16.256000pt;}
.ws35{word-spacing:-16.250667pt;}
.ws18{word-spacing:-16.240000pt;}
.ws1c{word-spacing:-16.192000pt;}
.ws17{word-spacing:-16.184000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2b{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.736000pt;}
.ws1b{word-spacing:-15.680000pt;}
.ws1f{word-spacing:-15.616000pt;}
.ws16{word-spacing:-15.512000pt;}
.ws19{word-spacing:-15.488000pt;}
.ws15{word-spacing:-15.400000pt;}
.ws23{word-spacing:-15.296000pt;}
.ws26{word-spacing:-15.232000pt;}
.ws21{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws32{word-spacing:-14.549333pt;}
.ws2d{word-spacing:-14.490667pt;}
.ws34{word-spacing:-14.373333pt;}
.ws2f{word-spacing:-14.256000pt;}
.ws11{word-spacing:-14.237333pt;}
.ws10{word-spacing:-14.136000pt;}
.ws20{word-spacing:-14.112000pt;}
.ws2c{word-spacing:-13.904000pt;}
.ws12{word-spacing:-13.832000pt;}
.ws36{word-spacing:-13.173333pt;}
.wsc{word-spacing:-12.514667pt;}
.wsa{word-spacing:-10.790400pt;}
.ws1a{word-spacing:-10.598400pt;}
.ws7{word-spacing:-10.538667pt;}
.ws31{word-spacing:-9.891200pt;}
.ws5{word-spacing:-9.856000pt;}
.wse{word-spacing:-8.992000pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-16.922667pt;}
._18{margin-left:-15.840000pt;}
._12{margin-left:-13.738667pt;}
._14{margin-left:-11.512000pt;}
._17{margin-left:-10.176000pt;}
._6{margin-left:-9.066667pt;}
._f{margin-left:-7.880533pt;}
._5{margin-left:-6.800000pt;}
._d{margin-left:-5.616000pt;}
._2{margin-left:-4.400000pt;}
._0{margin-left:-3.472000pt;}
._1{margin-left:-1.760000pt;}
._8{width:1.088000pt;}
._4{width:2.346667pt;}
._3{width:4.106667pt;}
._c{width:5.056000pt;}
._7{width:6.437333pt;}
._b{width:7.493333pt;}
._a{width:8.416000pt;}
._9{width:9.312000pt;}
._e{width:10.325333pt;}
._11{width:11.944533pt;}
._16{width:13.136000pt;}
._15{width:14.874667pt;}
._19{width:18.821333pt;}
._13{width:34.598400pt;}
._10{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs5{font-size:38.933333pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.y8e{bottom:124.714800pt;}
.y6f{bottom:124.718667pt;}
.y48{bottom:124.721467pt;}
.yc8{bottom:126.471733pt;}
.y120{bottom:127.874267pt;}
.y143{bottom:127.944533pt;}
.ye8{bottom:128.030800pt;}
.y18e{bottom:128.711600pt;}
.y16a{bottom:128.824000pt;}
.yff{bottom:131.129333pt;}
.y1f{bottom:131.742800pt;}
.y8d{bottom:139.382800pt;}
.y6e{bottom:139.386667pt;}
.y47{bottom:144.322800pt;}
.yc7{bottom:145.399733pt;}
.y142{bottom:145.808533pt;}
.y18d{bottom:146.047600pt;}
.y169{bottom:146.688000pt;}
.y11f{bottom:147.074267pt;}
.ye7{bottom:147.102800pt;}
.yfe{bottom:150.329333pt;}
.y1e{bottom:150.942800pt;}
.y8c{bottom:154.050800pt;}
.y46{bottom:154.053467pt;}
.y6d{bottom:154.054667pt;}
.ya3{bottom:158.989467pt;}
.y18c{bottom:163.383600pt;}
.y141{bottom:163.672533pt;}
.yc6{bottom:164.327733pt;}
.y168{bottom:164.552000pt;}
.ye6{bottom:166.174800pt;}
.y11e{bottom:166.274267pt;}
.y8b{bottom:168.718800pt;}
.y45{bottom:168.721467pt;}
.yfd{bottom:169.529333pt;}
.y1d{bottom:170.142800pt;}
.y6c{bottom:173.656000pt;}
.y18b{bottom:180.719600pt;}
.y140{bottom:181.536533pt;}
.y167{bottom:182.416000pt;}
.yc5{bottom:183.255733pt;}
.y6b{bottom:183.386667pt;}
.y8a{bottom:183.386800pt;}
.ye5{bottom:185.246800pt;}
.y11d{bottom:185.474267pt;}
.y44{bottom:188.322800pt;}
.yfc{bottom:188.729333pt;}
.y1c{bottom:189.342800pt;}
.y43{bottom:198.041467pt;}
.y6a{bottom:198.054667pt;}
.y89{bottom:198.054800pt;}
.y18a{bottom:198.055600pt;}
.y13f{bottom:199.400533pt;}
.y166{bottom:200.280000pt;}
.ya2{bottom:200.784533pt;}
.yc4{bottom:202.183733pt;}
.ye4{bottom:204.318800pt;}
.y11c{bottom:204.674267pt;}
.yfb{bottom:207.929333pt;}
.y1b{bottom:208.542800pt;}
.y42{bottom:212.709467pt;}
.y189{bottom:215.391600pt;}
.y13e{bottom:217.264533pt;}
.y69{bottom:217.656000pt;}
.y88{bottom:217.656133pt;}
.y165{bottom:218.144000pt;}
.ya1{bottom:219.984533pt;}
.yc3{bottom:221.111733pt;}
.ye3{bottom:223.390800pt;}
.y11b{bottom:223.874267pt;}
.yfa{bottom:227.129333pt;}
.y41{bottom:227.377467pt;}
.y68{bottom:227.378667pt;}
.y87{bottom:227.388133pt;}
.y1a{bottom:227.742800pt;}
.y188{bottom:232.727600pt;}
.y13d{bottom:235.128533pt;}
.y164{bottom:236.008000pt;}
.ya0{bottom:239.184533pt;}
.yc2{bottom:240.039733pt;}
.y40{bottom:242.045467pt;}
.y67{bottom:242.046667pt;}
.ye2{bottom:242.462800pt;}
.y11a{bottom:243.074267pt;}
.yf9{bottom:246.457333pt;}
.y19{bottom:246.942800pt;}
.y86{bottom:246.989467pt;}
.y187{bottom:250.063600pt;}
.y13c{bottom:252.992533pt;}
.y163{bottom:253.872000pt;}
.y3f{bottom:256.713467pt;}
.y66{bottom:256.714667pt;}
.y9f{bottom:258.384533pt;}
.yc1{bottom:258.967733pt;}
.ye1{bottom:261.534800pt;}
.y119{bottom:262.274267pt;}
.yf8{bottom:265.785333pt;}
.y18{bottom:266.142800pt;}
.y186{bottom:267.399600pt;}
.y13b{bottom:270.856533pt;}
.y3e{bottom:271.381467pt;}
.y65{bottom:271.382667pt;}
.y162{bottom:271.736000pt;}
.y9e{bottom:277.577333pt;}
.yc0{bottom:277.895733pt;}
.ye0{bottom:280.606800pt;}
.y118{bottom:281.474267pt;}
.y85{bottom:283.833333pt;}
.y185{bottom:284.735600pt;}
.yf7{bottom:285.113333pt;}
.y17{bottom:285.342800pt;}
.y3d{bottom:286.049467pt;}
.y64{bottom:286.050667pt;}
.y13a{bottom:288.720533pt;}
.y161{bottom:289.600000pt;}
.y9d{bottom:296.777333pt;}
.ybf{bottom:296.823733pt;}
.y117{bottom:300.674267pt;}
.y3c{bottom:300.717467pt;}
.y63{bottom:300.718667pt;}
.y184{bottom:302.071600pt;}
.y84{bottom:303.033333pt;}
.yf6{bottom:304.441333pt;}
.y16{bottom:304.542800pt;}
.y139{bottom:306.584533pt;}
.y160{bottom:307.464000pt;}
.y3b{bottom:315.385467pt;}
.y62{bottom:315.386667pt;}
.ybe{bottom:315.751733pt;}
.y9c{bottom:315.977333pt;}
.y183{bottom:319.407600pt;}
.y116{bottom:319.874267pt;}
.y83{bottom:322.233333pt;}
.y15{bottom:323.742800pt;}
.yf5{bottom:323.769333pt;}
.y138{bottom:324.448533pt;}
.y15f{bottom:325.328000pt;}
.ydf{bottom:328.190800pt;}
.y3a{bottom:330.053467pt;}
.y61{bottom:330.054667pt;}
.ybd{bottom:334.679733pt;}
.y9b{bottom:335.177333pt;}
.y182{bottom:336.611600pt;}
.y115{bottom:339.074267pt;}
.y82{bottom:341.433333pt;}
.y14{bottom:342.942800pt;}
.yf4{bottom:343.097333pt;}
.y15e{bottom:343.192000pt;}
.y39{bottom:344.721467pt;}
.yde{bottom:347.262800pt;}
.y60{bottom:349.656000pt;}
.y137{bottom:349.874267pt;}
.ybc{bottom:353.607733pt;}
.y181{bottom:353.815600pt;}
.y9a{bottom:354.377333pt;}
.y114{bottom:358.274267pt;}
.y5f{bottom:359.381333pt;}
.y81{bottom:360.633333pt;}
.y15d{bottom:361.056000pt;}
.y13{bottom:362.142800pt;}
.yf3{bottom:362.425333pt;}
.y38{bottom:364.322800pt;}
.ydd{bottom:366.334800pt;}
.y180{bottom:371.019600pt;}
.ybb{bottom:372.535733pt;}
.y99{bottom:373.577333pt;}
.y5e{bottom:374.049333pt;}
.y37{bottom:374.054800pt;}
.y113{bottom:377.474267pt;}
.y15c{bottom:378.920000pt;}
.y80{bottom:379.833333pt;}
.y12{bottom:381.342800pt;}
.yf2{bottom:381.753333pt;}
.ydc{bottom:385.406800pt;}
.y17f{bottom:388.223600pt;}
.y5d{bottom:388.717333pt;}
.yba{bottom:391.463733pt;}
.y98{bottom:392.777333pt;}
.y136{bottom:393.433333pt;}
.y36{bottom:393.656133pt;}
.y112{bottom:396.674267pt;}
.y15b{bottom:396.784000pt;}
.y7f{bottom:399.033333pt;}
.y11{bottom:400.542800pt;}
.yf1{bottom:401.081333pt;}
.y5c{bottom:403.385333pt;}
.ydb{bottom:404.478800pt;}
.y17e{bottom:405.395600pt;}
.y135{bottom:413.033333pt;}
.y15a{bottom:414.648000pt;}
.y111{bottom:415.874267pt;}
.y5b{bottom:418.053333pt;}
.y7e{bottom:418.233333pt;}
.y10{bottom:419.742800pt;}
.yf0{bottom:420.409333pt;}
.y17d{bottom:422.599600pt;}
.yda{bottom:423.550800pt;}
.yb9{bottom:426.076000pt;}
.y35{bottom:429.833333pt;}
.y159{bottom:432.512000pt;}
.y134{bottom:432.633333pt;}
.y5a{bottom:432.721333pt;}
.y7d{bottom:437.415333pt;}
.yf{bottom:438.942800pt;}
.yef{bottom:439.737333pt;}
.y17c{bottom:439.803600pt;}
.y97{bottom:440.633333pt;}
.yb8{bottom:441.812000pt;}
.yd9{bottom:442.622800pt;}
.y110{bottom:442.633333pt;}
.y34{bottom:448.633333pt;}
.y158{bottom:450.376000pt;}
.y133{bottom:452.233333pt;}
.y59{bottom:452.322667pt;}
.y7c{bottom:453.417333pt;}
.y17b{bottom:457.007600pt;}
.yb7{bottom:457.548000pt;}
.yee{bottom:459.065333pt;}
.y1a1{bottom:459.120000pt;}
.y96{bottom:459.833333pt;}
.y33{bottom:467.433333pt;}
.y157{bottom:468.240000pt;}
.y7b{bottom:469.419333pt;}
.y132{bottom:471.833333pt;}
.yb6{bottom:473.284000pt;}
.y17a{bottom:474.211600pt;}
.y1a0{bottom:475.120000pt;}
.yd8{bottom:477.396000pt;}
.yed{bottom:478.393333pt;}
.y95{bottom:479.033333pt;}
.y7a{bottom:485.421333pt;}
.y156{bottom:486.104000pt;}
.y32{bottom:486.233333pt;}
.ye{bottom:486.798800pt;}
.y58{bottom:488.784400pt;}
.y19f{bottom:491.120000pt;}
.y179{bottom:491.415600pt;}
.y131{bottom:491.433333pt;}
.yd7{bottom:493.132000pt;}
.yb5{bottom:496.580000pt;}
.yec{bottom:497.721333pt;}
.y94{bottom:498.233333pt;}
.y79{bottom:501.423333pt;}
.y155{bottom:503.968000pt;}
.y31{bottom:505.033333pt;}
.yd{bottom:505.998800pt;}
.y19e{bottom:507.120000pt;}
.y57{bottom:507.984400pt;}
.y178{bottom:508.619600pt;}
.y130{bottom:511.033333pt;}
.yb4{bottom:512.316000pt;}
.yd6{bottom:516.428000pt;}
.yeb{bottom:517.049333pt;}
.y78{bottom:517.425333pt;}
.y93{bottom:517.433333pt;}
.y10f{bottom:519.353333pt;}
.y154{bottom:521.832000pt;}
.y30{bottom:523.833333pt;}
.yc{bottom:525.198800pt;}
.y177{bottom:525.823600pt;}
.y56{bottom:527.184400pt;}
.yb3{bottom:528.052000pt;}
.y12f{bottom:530.633333pt;}
.yd5{bottom:532.164000pt;}
.y77{bottom:533.427333pt;}
.yea{bottom:536.377333pt;}
.y92{bottom:536.633333pt;}
.y10e{bottom:538.553333pt;}
.y153{bottom:539.696000pt;}
.y19d{bottom:542.320000pt;}
.y2f{bottom:542.633333pt;}
.y176{bottom:543.027600pt;}
.yb2{bottom:543.788000pt;}
.yb{bottom:544.398800pt;}
.y55{bottom:546.384400pt;}
.yd4{bottom:547.900000pt;}
.y76{bottom:549.429333pt;}
.y12e{bottom:550.233333pt;}
.ye9{bottom:555.705333pt;}
.y91{bottom:555.833333pt;}
.y152{bottom:557.560000pt;}
.y10d{bottom:557.625333pt;}
.yb1{bottom:559.524000pt;}
.y19c{bottom:559.920000pt;}
.y2e{bottom:561.433333pt;}
.ya{bottom:563.598800pt;}
.y75{bottom:565.431333pt;}
.y54{bottom:565.584400pt;}
.y12d{bottom:569.833333pt;}
.yd3{bottom:571.196000pt;}
.y90{bottom:575.033333pt;}
.yb0{bottom:575.260000pt;}
.y151{bottom:575.424000pt;}
.y10c{bottom:576.697333pt;}
.y175{bottom:577.427600pt;}
.y2d{bottom:580.233333pt;}
.y74{bottom:581.433333pt;}
.y9{bottom:582.798800pt;}
.y53{bottom:584.784533pt;}
.yd2{bottom:586.932000pt;}
.y12c{bottom:589.433333pt;}
.y150{bottom:593.288000pt;}
.y8f{bottom:594.233333pt;}
.y10b{bottom:595.769333pt;}
.y19b{bottom:596.720000pt;}
.yaf{bottom:598.556000pt;}
.y2c{bottom:599.033333pt;}
.y8{bottom:601.998800pt;}
.y174{bottom:602.186667pt;}
.y52{bottom:603.984533pt;}
.y12b{bottom:609.033333pt;}
.yd1{bottom:610.228000pt;}
.y14f{bottom:611.152000pt;}
.y73{bottom:613.433333pt;}
.yae{bottom:614.292000pt;}
.y19a{bottom:614.320000pt;}
.y10a{bottom:614.841333pt;}
.y2b{bottom:617.833333pt;}
.y173{bottom:620.986667pt;}
.y51{bottom:623.177333pt;}
.yd0{bottom:625.964000pt;}
.y12a{bottom:628.633333pt;}
.y14e{bottom:629.016000pt;}
.yad{bottom:630.028000pt;}
.y199{bottom:631.920000pt;}
.y72{bottom:632.633333pt;}
.y109{bottom:633.913333pt;}
.y2a{bottom:636.633333pt;}
.ycf{bottom:641.700000pt;}
.y50{bottom:642.377333pt;}
.yac{bottom:645.764000pt;}
.y14d{bottom:646.880000pt;}
.y129{bottom:648.233333pt;}
.y198{bottom:649.520000pt;}
.y71{bottom:651.833333pt;}
.y108{bottom:652.985333pt;}
.y29{bottom:655.433333pt;}
.yab{bottom:661.500000pt;}
.y14c{bottom:664.744000pt;}
.y197{bottom:667.120000pt;}
.y128{bottom:667.833333pt;}
.y70{bottom:671.033333pt;}
.y107{bottom:672.057333pt;}
.yce{bottom:673.209333pt;}
.y28{bottom:674.233333pt;}
.y172{bottom:677.386667pt;}
.y7{bottom:678.798800pt;}
.y14b{bottom:682.608000pt;}
.y196{bottom:684.720000pt;}
.yaa{bottom:684.796000pt;}
.y127{bottom:687.433333pt;}
.y4f{bottom:690.233333pt;}
.y106{bottom:691.129333pt;}
.ycd{bottom:692.137333pt;}
.y27{bottom:693.033333pt;}
.y6{bottom:696.398800pt;}
.y14a{bottom:700.472000pt;}
.ya9{bottom:700.532000pt;}
.y195{bottom:702.320000pt;}
.y171{bottom:705.092000pt;}
.y126{bottom:707.033333pt;}
.y4e{bottom:709.433333pt;}
.y105{bottom:710.201333pt;}
.ycc{bottom:711.065333pt;}
.y26{bottom:711.833333pt;}
.ya8{bottom:716.268000pt;}
.y149{bottom:718.336000pt;}
.y194{bottom:719.920000pt;}
.y170{bottom:722.296000pt;}
.y125{bottom:726.633333pt;}
.y4d{bottom:728.633333pt;}
.y104{bottom:729.273333pt;}
.ycb{bottom:729.993333pt;}
.y25{bottom:730.633333pt;}
.y5{bottom:733.198800pt;}
.y148{bottom:736.200000pt;}
.y193{bottom:737.520000pt;}
.y16f{bottom:739.500000pt;}
.ya7{bottom:739.564000pt;}
.y124{bottom:746.233333pt;}
.y4c{bottom:747.833333pt;}
.y103{bottom:748.345333pt;}
.yca{bottom:748.921333pt;}
.y24{bottom:749.433333pt;}
.y147{bottom:754.064000pt;}
.y192{bottom:755.120000pt;}
.ya6{bottom:755.300000pt;}
.y16e{bottom:756.704000pt;}
.y4{bottom:760.398800pt;}
.y123{bottom:765.833333pt;}
.y4b{bottom:767.033333pt;}
.y102{bottom:767.417333pt;}
.yc9{bottom:767.849333pt;}
.y23{bottom:768.233333pt;}
.y146{bottom:771.928000pt;}
.y191{bottom:772.720000pt;}
.y16d{bottom:773.908000pt;}
.y122{bottom:785.433333pt;}
.y4a{bottom:786.233333pt;}
.y101{bottom:786.489333pt;}
.ya5{bottom:786.777333pt;}
.y22{bottom:787.033333pt;}
.y145{bottom:789.792000pt;}
.y190{bottom:790.320000pt;}
.y16c{bottom:791.112000pt;}
.y121{bottom:805.033333pt;}
.y49{bottom:805.433333pt;}
.y100{bottom:805.561333pt;}
.ya4{bottom:805.705333pt;}
.y21{bottom:805.833333pt;}
.y144{bottom:807.656000pt;}
.y18f{bottom:807.920000pt;}
.y16b{bottom:808.316000pt;}
.y3{bottom:809.520000pt;}
.y20{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.hb{height:23.288802pt;}
.hd{height:27.171875pt;}
.h3{height:31.700521pt;}
.h6{height:33.059115pt;}
.h8{height:36.229167pt;}
.h2{height:36.796875pt;}
.h10{height:37.324219pt;}
.hc{height:43.022135pt;}
.h11{height:44.156250pt;}
.h9{height:45.286458pt;}
.hf{height:47.550781pt;}
.h4{height:49.815104pt;}
.h12{height:51.723729pt;}
.h7{height:54.343750pt;}
.he{height:54.372550pt;}
.ha{height:56.286250pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x1{left:86.929200pt;}
.x4{left:105.857200pt;}
.x8{left:124.726800pt;}
.x2{left:133.929200pt;}
.xa{left:159.490400pt;}
.x3{left:192.557867pt;}
.x5{left:218.336267pt;}
.x9{left:461.283200pt;}
.x6{left:508.590533pt;}
}




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