
    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_12fbb642834551b007abe6c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_c8131dea4b2e0c162ff42453.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_8b7a122bb4a24c661e660cd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_c47095bec78bb3fab61d6928.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3e{letter-spacing:-1.716000px;}
.ls39{letter-spacing:-1.584000px;}
.ls35{letter-spacing:-1.518000px;}
.ls2b{letter-spacing:-1.386000px;}
.ls2c{letter-spacing:-1.320000px;}
.ls2d{letter-spacing:-1.254000px;}
.ls18{letter-spacing:-1.188000px;}
.ls20{letter-spacing:-1.122000px;}
.ls2f{letter-spacing:-1.056000px;}
.ls23{letter-spacing:-0.990000px;}
.ls33{letter-spacing:-0.924000px;}
.ls32{letter-spacing:-0.858000px;}
.ls4f{letter-spacing:-0.810000px;}
.ls21{letter-spacing:-0.792000px;}
.ls50{letter-spacing:-0.780000px;}
.ls29{letter-spacing:-0.726000px;}
.ls1c{letter-spacing:-0.660000px;}
.ls34{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.570000px;}
.ls2a{letter-spacing:-0.528000px;}
.ls1a{letter-spacing:-0.462000px;}
.ls4b{letter-spacing:-0.450000px;}
.ls4c{letter-spacing:-0.420000px;}
.ls1e{letter-spacing:-0.396000px;}
.ls19{letter-spacing:-0.330000px;}
.lsb{letter-spacing:-0.285000px;}
.lsc{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.264000px;}
.lsa{letter-spacing:-0.228000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls22{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.114000px;}
.ls28{letter-spacing:-0.066000px;}
.ls3f{letter-spacing:-0.060000px;}
.lsd{letter-spacing:-0.048000px;}
.ls7{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.171000px;}
.ls48{letter-spacing:0.180000px;}
.lse{letter-spacing:0.198000px;}
.ls4a{letter-spacing:0.225000px;}
.ls11{letter-spacing:0.264000px;}
.ls49{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.330000px;}
.ls4d{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.399000px;}
.ls43{letter-spacing:0.450000px;}
.ls10{letter-spacing:0.462000px;}
.ls42{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.486000px;}
.ls44{letter-spacing:0.495000px;}
.ls2{letter-spacing:0.513000px;}
.lsf{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.594000px;}
.ls27{letter-spacing:0.660000px;}
.ls4e{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.726000px;}
.ls12{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.858000px;}
.ls45{letter-spacing:0.900000px;}
.ls31{letter-spacing:0.924000px;}
.ls46{letter-spacing:0.945000px;}
.ls47{letter-spacing:0.960000px;}
.ls13{letter-spacing:0.990000px;}
.ls40{letter-spacing:1.020000px;}
.ls1d{letter-spacing:1.056000px;}
.ls16{letter-spacing:1.122000px;}
.ls14{letter-spacing:1.188000px;}
.ls37{letter-spacing:1.254000px;}
.ls24{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.386000px;}
.ls38{letter-spacing:1.584000px;}
.ls41{letter-spacing:1.650000px;}
.ls3a{letter-spacing:24.024000px;}
.ls3c{letter-spacing:38.148000px;}
.ls3{letter-spacing:46.764000px;}
.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;}
}
.ws68{word-spacing:-18.150000px;}
.ws53{word-spacing:-17.886000px;}
.ws61{word-spacing:-17.820000px;}
.ws17{word-spacing:-17.688000px;}
.ws15{word-spacing:-17.556000px;}
.ws16{word-spacing:-17.490000px;}
.ws4d{word-spacing:-17.424000px;}
.ws5a{word-spacing:-17.358000px;}
.ws13{word-spacing:-17.292000px;}
.ws5d{word-spacing:-17.226000px;}
.ws43{word-spacing:-17.160000px;}
.ws62{word-spacing:-17.094000px;}
.ws3a{word-spacing:-16.962000px;}
.ws52{word-spacing:-16.896000px;}
.ws11{word-spacing:-16.830000px;}
.ws18{word-spacing:-16.764000px;}
.ws44{word-spacing:-16.698000px;}
.ws4c{word-spacing:-16.632000px;}
.ws19{word-spacing:-16.566000px;}
.ws12{word-spacing:-16.500000px;}
.ws36{word-spacing:-16.434000px;}
.ws4b{word-spacing:-16.368000px;}
.ws58{word-spacing:-16.302000px;}
.ws4a{word-spacing:-16.236000px;}
.ws55{word-spacing:-16.170000px;}
.ws54{word-spacing:-16.104000px;}
.ws37{word-spacing:-16.038000px;}
.ws46{word-spacing:-15.972000px;}
.ws51{word-spacing:-15.906000px;}
.ws14{word-spacing:-15.840000px;}
.ws45{word-spacing:-15.774000px;}
.ws59{word-spacing:-15.642000px;}
.ws5b{word-spacing:-15.576000px;}
.ws70{word-spacing:-15.540000px;}
.ws73{word-spacing:-15.480000px;}
.ws47{word-spacing:-15.444000px;}
.ws78{word-spacing:-15.300000px;}
.ws5f{word-spacing:-15.246000px;}
.ws39{word-spacing:-15.180000px;}
.ws38{word-spacing:-15.114000px;}
.ws63{word-spacing:-15.000000px;}
.ws4e{word-spacing:-14.982000px;}
.ws6e{word-spacing:-14.940000px;}
.ws57{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.535000px;}
.ws7a{word-spacing:-14.220000px;}
.ws75{word-spacing:-12.195000px;}
.ws1b{word-spacing:-12.000000px;}
.ws76{word-spacing:-11.970000px;}
.ws1c{word-spacing:-11.952000px;}
.ws6f{word-spacing:-11.790000px;}
.ws72{word-spacing:-11.745000px;}
.ws71{word-spacing:-11.700000px;}
.ws74{word-spacing:-11.610000px;}
.ws77{word-spacing:-11.475000px;}
.ws6b{word-spacing:-11.250000px;}
.ws6d{word-spacing:-10.800000px;}
.ws79{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.125000px;}
.ws5c{word-spacing:-0.858000px;}
.ws41{word-spacing:-0.792000px;}
.ws30{word-spacing:-0.726000px;}
.ws26{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.627000px;}
.ws3b{word-spacing:-0.594000px;}
.ws20{word-spacing:-0.528000px;}
.ws2e{word-spacing:-0.462000px;}
.wsa{word-spacing:-0.456000px;}
.ws42{word-spacing:-0.396000px;}
.wsf{word-spacing:-0.378000px;}
.ws34{word-spacing:-0.330000px;}
.ws7b{word-spacing:-0.300000px;}
.ws25{word-spacing:-0.264000px;}
.ws24{word-spacing:-0.198000px;}
.ws8{word-spacing:-0.171000px;}
.ws2a{word-spacing:-0.132000px;}
.ws65{word-spacing:-0.120000px;}
.ws32{word-spacing:-0.066000px;}
.ws7{word-spacing:0.000000px;}
.wsb{word-spacing:0.057000px;}
.ws81{word-spacing:0.060000px;}
.ws3f{word-spacing:0.066000px;}
.ws49{word-spacing:0.132000px;}
.ws28{word-spacing:0.198000px;}
.ws7c{word-spacing:0.240000px;}
.ws2f{word-spacing:0.264000px;}
.ws1e{word-spacing:0.330000px;}
.ws6c{word-spacing:0.360000px;}
.ws2b{word-spacing:0.396000px;}
.ws35{word-spacing:0.462000px;}
.ws64{word-spacing:0.480000px;}
.wse{word-spacing:0.486000px;}
.ws31{word-spacing:0.528000px;}
.ws7f{word-spacing:0.540000px;}
.ws2d{word-spacing:0.594000px;}
.ws33{word-spacing:0.660000px;}
.ws4f{word-spacing:0.726000px;}
.ws10{word-spacing:0.756000px;}
.ws2c{word-spacing:0.792000px;}
.ws21{word-spacing:0.858000px;}
.ws6{word-spacing:0.912000px;}
.ws3e{word-spacing:0.924000px;}
.ws7d{word-spacing:0.960000px;}
.ws3{word-spacing:0.969000px;}
.ws29{word-spacing:0.990000px;}
.ws7e{word-spacing:1.020000px;}
.ws40{word-spacing:1.056000px;}
.ws22{word-spacing:1.122000px;}
.ws1{word-spacing:1.134000px;}
.ws27{word-spacing:1.188000px;}
.wsc{word-spacing:1.242000px;}
.ws4{word-spacing:1.254000px;}
.ws80{word-spacing:1.260000px;}
.wsd{word-spacing:1.296000px;}
.ws5{word-spacing:1.311000px;}
.ws48{word-spacing:1.320000px;}
.ws3c{word-spacing:1.386000px;}
.ws66{word-spacing:1.440000px;}
.ws1f{word-spacing:1.452000px;}
.ws23{word-spacing:1.518000px;}
.ws3d{word-spacing:1.584000px;}
.ws1d{word-spacing:1.650000px;}
.ws69{word-spacing:3.102000px;}
.ws6a{word-spacing:5.412000px;}
.ws67{word-spacing:7.524000px;}
.ws5e{word-spacing:23.100000px;}
.ws50{word-spacing:24.024000px;}
.ws56{word-spacing:25.014000px;}
.ws60{word-spacing:30.096000px;}
.ws1a{word-spacing:35.712000px;}
._b{margin-left:-8.778000px;}
._3{margin-left:-7.353000px;}
._8{margin-left:-5.760000px;}
._a{margin-left:-4.620000px;}
._6{margin-left:-3.414000px;}
._2{margin-left:-2.394000px;}
._1{margin-left:-1.311000px;}
._0{width:1.539000px;}
._5{width:3.036000px;}
._e{width:6.072000px;}
._c{width:15.039000px;}
._d{width:24.024000px;}
._f{width:30.000000px;}
._4{width:47.664000px;}
._9{width:469.728000px;}
._7{width:1145.904000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:40.500000px;}
.fs8{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:49.158000px;}
.y122{bottom:49.165500px;}
.yfc{bottom:49.182000px;}
.yd7{bottom:49.198500px;}
.y7a{bottom:49.215000px;}
.yb8{bottom:49.297500px;}
.y1f{bottom:50.025000px;}
.y160{bottom:50.760000px;}
.y15b{bottom:50.827500px;}
.y9c{bottom:51.097500px;}
.y1e{bottom:64.281000px;}
.y4d{bottom:66.400500px;}
.y121{bottom:66.408000px;}
.yfb{bottom:66.424500px;}
.yd6{bottom:66.441000px;}
.y79{bottom:66.457500px;}
.y15f{bottom:66.510000px;}
.yb7{bottom:66.540000px;}
.y15a{bottom:68.070000px;}
.y9b{bottom:68.340000px;}
.y1d{bottom:78.537000px;}
.y15e{bottom:82.260000px;}
.y4c{bottom:83.643000px;}
.y120{bottom:83.650500px;}
.yfa{bottom:83.667000px;}
.yd5{bottom:83.683500px;}
.y78{bottom:83.700000px;}
.yb6{bottom:83.782500px;}
.y159{bottom:85.312500px;}
.y9a{bottom:85.582500px;}
.y1c{bottom:92.793000px;}
.y15d{bottom:98.010000px;}
.y4b{bottom:100.885500px;}
.y11f{bottom:100.893000px;}
.yf9{bottom:100.909500px;}
.yd4{bottom:100.926000px;}
.y77{bottom:100.942500px;}
.y158{bottom:102.555000px;}
.y99{bottom:102.825000px;}
.y1b{bottom:107.049000px;}
.yb5{bottom:109.654500px;}
.y4a{bottom:118.128000px;}
.y11e{bottom:118.135500px;}
.yf8{bottom:118.152000px;}
.yd3{bottom:118.168500px;}
.y76{bottom:118.185000px;}
.y157{bottom:119.797500px;}
.y98{bottom:120.067500px;}
.y1a{bottom:121.281000px;}
.y15c{bottom:126.781500px;}
.yb4{bottom:126.897000px;}
.y49{bottom:135.370500px;}
.y12d{bottom:135.378000px;}
.yf7{bottom:135.394500px;}
.yd2{bottom:135.411000px;}
.y75{bottom:135.427500px;}
.y19{bottom:135.537000px;}
.y156{bottom:137.040000px;}
.y97{bottom:137.310000px;}
.y11d{bottom:146.631000px;}
.y18{bottom:149.793000px;}
.y48{bottom:152.613000px;}
.y12c{bottom:152.620500px;}
.yf6{bottom:152.637000px;}
.yd1{bottom:152.653500px;}
.y74{bottom:152.670000px;}
.y155{bottom:154.282500px;}
.y96{bottom:154.552500px;}
.y11c{bottom:163.873500px;}
.y17{bottom:164.049000px;}
.y47{bottom:169.855500px;}
.y12b{bottom:169.863000px;}
.yf5{bottom:169.879500px;}
.yd0{bottom:169.896000px;}
.y73{bottom:169.912500px;}
.yb3{bottom:170.028000px;}
.y154{bottom:171.525000px;}
.y95{bottom:171.795000px;}
.y16{bottom:178.305000px;}
.y11b{bottom:181.116000px;}
.y46{bottom:187.098000px;}
.yf4{bottom:187.122000px;}
.ycf{bottom:187.138500px;}
.y72{bottom:187.155000px;}
.yb2{bottom:187.270500px;}
.y153{bottom:188.767500px;}
.y94{bottom:189.037500px;}
.y12a{bottom:195.735000px;}
.y11a{bottom:198.358500px;}
.y45{bottom:204.340500px;}
.yf3{bottom:204.364500px;}
.yce{bottom:204.381000px;}
.y71{bottom:204.397500px;}
.yb1{bottom:204.513000px;}
.y152{bottom:206.010000px;}
.y93{bottom:206.280000px;}
.y129{bottom:212.977500px;}
.y119{bottom:215.601000px;}
.y44{bottom:221.583000px;}
.yf2{bottom:221.607000px;}
.ycd{bottom:221.623500px;}
.y70{bottom:221.640000px;}
.yb0{bottom:221.755500px;}
.y92{bottom:223.522500px;}
.y15{bottom:229.680000px;}
.y118{bottom:232.843500px;}
.y151{bottom:238.140000px;}
.y43{bottom:238.825500px;}
.yf1{bottom:238.849500px;}
.ycc{bottom:238.866000px;}
.y6f{bottom:238.882500px;}
.yaf{bottom:238.998000px;}
.y91{bottom:240.765000px;}
.y117{bottom:250.086000px;}
.y14{bottom:253.170750px;}
.y150{bottom:253.890000px;}
.y42{bottom:256.068000px;}
.yf0{bottom:256.092000px;}
.ycb{bottom:256.108500px;}
.y6e{bottom:256.125000px;}
.yae{bottom:256.240500px;}
.y90{bottom:258.007500px;}
.y116{bottom:267.328500px;}
.y13{bottom:268.176000px;}
.y14f{bottom:269.640000px;}
.y41{bottom:273.310500px;}
.yef{bottom:273.334500px;}
.yca{bottom:273.351000px;}
.y6d{bottom:273.367500px;}
.yad{bottom:273.483000px;}
.y8f{bottom:275.250000px;}
.y12{bottom:283.181250px;}
.y115{bottom:284.571000px;}
.y14e{bottom:285.390000px;}
.y40{bottom:290.553000px;}
.yee{bottom:290.577000px;}
.yc9{bottom:290.593500px;}
.y6c{bottom:290.610000px;}
.yac{bottom:290.725500px;}
.y8e{bottom:292.492500px;}
.y11{bottom:298.186500px;}
.y14d{bottom:301.140000px;}
.y114{bottom:301.813500px;}
.y3f{bottom:307.795500px;}
.yed{bottom:307.819500px;}
.yc8{bottom:307.836000px;}
.y6b{bottom:307.852500px;}
.yab{bottom:307.968000px;}
.y8d{bottom:309.735000px;}
.y10{bottom:313.191750px;}
.y113{bottom:319.056000px;}
.y3e{bottom:325.038000px;}
.yec{bottom:325.062000px;}
.yc7{bottom:325.078500px;}
.y6a{bottom:325.095000px;}
.yaa{bottom:325.210500px;}
.y8c{bottom:326.977500px;}
.y14c{bottom:327.735000px;}
.y112{bottom:336.298500px;}
.yf{bottom:336.690000px;}
.y3d{bottom:342.280500px;}
.yeb{bottom:342.304500px;}
.yc6{bottom:342.321000px;}
.y69{bottom:342.337500px;}
.ya9{bottom:342.453000px;}
.y8b{bottom:344.220000px;}
.y14b{bottom:344.977500px;}
.y111{bottom:353.541000px;}
.y3c{bottom:359.523000px;}
.yea{bottom:359.547000px;}
.yc5{bottom:359.563500px;}
.y68{bottom:359.580000px;}
.y8a{bottom:361.462500px;}
.y14a{bottom:362.220000px;}
.ye{bottom:364.421250px;}
.ya8{bottom:365.404500px;}
.y110{bottom:370.783500px;}
.y3b{bottom:376.765500px;}
.ye9{bottom:376.789500px;}
.yc4{bottom:376.806000px;}
.y67{bottom:376.822500px;}
.y89{bottom:378.705000px;}
.y149{bottom:379.462500px;}
.ya7{bottom:382.647000px;}
.yd{bottom:385.425750px;}
.y10f{bottom:388.026000px;}
.y3a{bottom:394.008000px;}
.ye8{bottom:394.032000px;}
.yc3{bottom:394.048500px;}
.y66{bottom:394.065000px;}
.y88{bottom:395.947500px;}
.y148{bottom:396.705000px;}
.ya6{bottom:399.889500px;}
.yc{bottom:400.431000px;}
.y39{bottom:411.250500px;}
.ye7{bottom:411.274500px;}
.yc2{bottom:411.291000px;}
.y65{bottom:411.307500px;}
.y87{bottom:413.190000px;}
.y147{bottom:413.947500px;}
.yb{bottom:415.436250px;}
.y10e{bottom:416.521500px;}
.ya5{bottom:417.132000px;}
.y38{bottom:428.493000px;}
.ye6{bottom:428.517000px;}
.yc1{bottom:428.533500px;}
.y64{bottom:428.550000px;}
.y86{bottom:430.432500px;}
.ya{bottom:430.441500px;}
.y146{bottom:431.190000px;}
.y10d{bottom:433.764000px;}
.ya4{bottom:434.374500px;}
.y9{bottom:445.446750px;}
.y37{bottom:445.735500px;}
.ye5{bottom:445.759500px;}
.yc0{bottom:445.776000px;}
.y63{bottom:445.792500px;}
.y85{bottom:447.675000px;}
.y145{bottom:448.432500px;}
.y10c{bottom:451.006500px;}
.ya3{bottom:451.617000px;}
.y36{bottom:462.978000px;}
.ye4{bottom:463.002000px;}
.ybf{bottom:463.018500px;}
.y62{bottom:463.035000px;}
.y84{bottom:464.917500px;}
.y144{bottom:465.675000px;}
.y10b{bottom:468.249000px;}
.ya2{bottom:468.859500px;}
.y8{bottom:468.945000px;}
.y35{bottom:480.220500px;}
.ye3{bottom:480.244500px;}
.ybe{bottom:480.261000px;}
.y61{bottom:480.277500px;}
.y83{bottom:482.160000px;}
.y143{bottom:482.917500px;}
.y10a{bottom:485.491500px;}
.ya1{bottom:486.102000px;}
.y7{bottom:496.669500px;}
.y34{bottom:497.463000px;}
.ye2{bottom:497.487000px;}
.ybd{bottom:497.503500px;}
.y60{bottom:497.520000px;}
.y82{bottom:499.402500px;}
.y142{bottom:500.160000px;}
.y109{bottom:502.734000px;}
.yfd{bottom:506.116500px;}
.ya0{bottom:509.053500px;}
.y33{bottom:514.705500px;}
.ye1{bottom:514.729500px;}
.ybc{bottom:514.746000px;}
.y5f{bottom:514.762500px;}
.y81{bottom:516.645000px;}
.y141{bottom:517.402500px;}
.y6{bottom:517.674000px;}
.y108{bottom:519.976500px;}
.y9f{bottom:526.296000px;}
.y32{bottom:531.948000px;}
.ye0{bottom:531.972000px;}
.ybb{bottom:531.988500px;}
.y5e{bottom:532.005000px;}
.y5{bottom:532.679250px;}
.y80{bottom:533.887500px;}
.y140{bottom:534.645000px;}
.y107{bottom:537.219000px;}
.y9e{bottom:543.538500px;}
.y4{bottom:547.684500px;}
.y31{bottom:549.190500px;}
.y128{bottom:549.214500px;}
.yba{bottom:549.231000px;}
.y5d{bottom:549.247500px;}
.y7f{bottom:551.130000px;}
.y13f{bottom:551.887500px;}
.y106{bottom:554.461500px;}
.y9d{bottom:560.781000px;}
.y3{bottom:562.689750px;}
.y30{bottom:566.433000px;}
.y127{bottom:566.457000px;}
.yb9{bottom:566.473500px;}
.y5c{bottom:566.490000px;}
.y13e{bottom:569.130000px;}
.y2{bottom:577.695000px;}
.y7e{bottom:581.130000px;}
.y2f{bottom:583.675500px;}
.y126{bottom:583.699500px;}
.ydf{bottom:583.716000px;}
.y5b{bottom:583.732500px;}
.y13d{bottom:586.372500px;}
.y16e{bottom:587.385000px;}
.y105{bottom:588.963000px;}
.y7d{bottom:596.880000px;}
.y2e{bottom:600.918000px;}
.y125{bottom:600.942000px;}
.yde{bottom:600.958500px;}
.y5a{bottom:600.975000px;}
.y16d{bottom:603.135000px;}
.y13c{bottom:603.615000px;}
.y104{bottom:606.205500px;}
.y1{bottom:607.695000px;}
.y7c{bottom:612.630000px;}
.ydd{bottom:618.201000px;}
.y59{bottom:618.217500px;}
.y16c{bottom:618.885000px;}
.y13b{bottom:620.857500px;}
.y103{bottom:623.448000px;}
.y7b{bottom:628.380000px;}
.y16b{bottom:634.635000px;}
.y2d{bottom:635.419500px;}
.ydc{bottom:635.443500px;}
.y58{bottom:635.460000px;}
.y13a{bottom:638.100000px;}
.y102{bottom:640.690500px;}
.y16a{bottom:650.385000px;}
.ydb{bottom:652.686000px;}
.y57{bottom:652.702500px;}
.y139{bottom:655.342500px;}
.y101{bottom:657.933000px;}
.y169{bottom:666.135000px;}
.y2c{bottom:669.921000px;}
.yda{bottom:669.928500px;}
.y56{bottom:669.945000px;}
.y138{bottom:672.585000px;}
.y100{bottom:675.175500px;}
.y168{bottom:681.885000px;}
.y2b{bottom:687.163500px;}
.yd9{bottom:687.171000px;}
.y55{bottom:687.187500px;}
.y137{bottom:689.827500px;}
.yff{bottom:692.418000px;}
.y167{bottom:697.635000px;}
.y2a{bottom:704.406000px;}
.yd8{bottom:704.413500px;}
.y54{bottom:704.430000px;}
.y136{bottom:707.070000px;}
.yfe{bottom:709.660500px;}
.y166{bottom:713.385000px;}
.y24{bottom:717.105000px;}
.y29{bottom:721.648500px;}
.y124{bottom:721.656000px;}
.y53{bottom:721.672500px;}
.y135{bottom:724.312500px;}
.y165{bottom:729.135000px;}
.y23{bottom:735.105000px;}
.y28{bottom:738.891000px;}
.y123{bottom:738.898500px;}
.y52{bottom:738.915000px;}
.y134{bottom:741.555000px;}
.y164{bottom:744.885000px;}
.y27{bottom:756.133500px;}
.y12f{bottom:756.141000px;}
.y51{bottom:756.157500px;}
.y133{bottom:758.797500px;}
.y163{bottom:760.635000px;}
.y12e{bottom:773.383500px;}
.y50{bottom:773.400000px;}
.y132{bottom:776.040000px;}
.y162{bottom:776.385000px;}
.y22{bottom:780.105000px;}
.y26{bottom:790.635000px;}
.y4f{bottom:790.642500px;}
.y161{bottom:792.135000px;}
.y131{bottom:793.282500px;}
.y21{bottom:804.105000px;}
.y25{bottom:807.885000px;}
.y130{bottom:810.525000px;}
.y20{bottom:855.105000px;}
.h5{height:51.216000px;}
.h3{height:57.618000px;}
.h2{height:58.536000px;}
.h4{height:58.632000px;}
.h1{height:60.819000px;}
.ha{height:64.020000px;}
.hb{height:65.040000px;}
.h8{height:70.422000px;}
.h9{height:71.544000px;}
.h7{height:76.824000px;}
.h6{height:102.432000px;}
.h0{height:901.500000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x1{left:70.200000px;}
.x5{left:71.415000px;}
.x2{left:87.213000px;}
.x6{left:88.230000px;}
.x8{left:92.689500px;}
.x7{left:93.856500px;}
.x9{left:97.045500px;}
.x3{left:104.223000px;}
.xb{left:115.206000px;}
.xa{left:116.415000px;}
.x4{left:420.975000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3e{letter-spacing:-1.525333pt;}
.ls39{letter-spacing:-1.408000pt;}
.ls35{letter-spacing:-1.349333pt;}
.ls2b{letter-spacing:-1.232000pt;}
.ls2c{letter-spacing:-1.173333pt;}
.ls2d{letter-spacing:-1.114667pt;}
.ls18{letter-spacing:-1.056000pt;}
.ls20{letter-spacing:-0.997333pt;}
.ls2f{letter-spacing:-0.938667pt;}
.ls23{letter-spacing:-0.880000pt;}
.ls33{letter-spacing:-0.821333pt;}
.ls32{letter-spacing:-0.762667pt;}
.ls4f{letter-spacing:-0.720000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls50{letter-spacing:-0.693333pt;}
.ls29{letter-spacing:-0.645333pt;}
.ls1c{letter-spacing:-0.586667pt;}
.ls34{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.506667pt;}
.ls2a{letter-spacing:-0.469333pt;}
.ls1a{letter-spacing:-0.410667pt;}
.ls4b{letter-spacing:-0.400000pt;}
.ls4c{letter-spacing:-0.373333pt;}
.ls1e{letter-spacing:-0.352000pt;}
.ls19{letter-spacing:-0.293333pt;}
.lsb{letter-spacing:-0.253333pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.234667pt;}
.lsa{letter-spacing:-0.202667pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls22{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.101333pt;}
.ls28{letter-spacing:-0.058667pt;}
.ls3f{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:-0.042667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.152000pt;}
.ls48{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.176000pt;}
.ls4a{letter-spacing:0.200000pt;}
.ls11{letter-spacing:0.234667pt;}
.ls49{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.293333pt;}
.ls4d{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.354667pt;}
.ls43{letter-spacing:0.400000pt;}
.ls10{letter-spacing:0.410667pt;}
.ls42{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.432000pt;}
.ls44{letter-spacing:0.440000pt;}
.ls2{letter-spacing:0.456000pt;}
.lsf{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.528000pt;}
.ls27{letter-spacing:0.586667pt;}
.ls4e{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.645333pt;}
.ls12{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.762667pt;}
.ls45{letter-spacing:0.800000pt;}
.ls31{letter-spacing:0.821333pt;}
.ls46{letter-spacing:0.840000pt;}
.ls47{letter-spacing:0.853333pt;}
.ls13{letter-spacing:0.880000pt;}
.ls40{letter-spacing:0.906667pt;}
.ls1d{letter-spacing:0.938667pt;}
.ls16{letter-spacing:0.997333pt;}
.ls14{letter-spacing:1.056000pt;}
.ls37{letter-spacing:1.114667pt;}
.ls24{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.232000pt;}
.ls38{letter-spacing:1.408000pt;}
.ls41{letter-spacing:1.466667pt;}
.ls3a{letter-spacing:21.354667pt;}
.ls3c{letter-spacing:33.909333pt;}
.ls3{letter-spacing:41.568000pt;}
.ws68{word-spacing:-16.133333pt;}
.ws53{word-spacing:-15.898667pt;}
.ws61{word-spacing:-15.840000pt;}
.ws17{word-spacing:-15.722667pt;}
.ws15{word-spacing:-15.605333pt;}
.ws16{word-spacing:-15.546667pt;}
.ws4d{word-spacing:-15.488000pt;}
.ws5a{word-spacing:-15.429333pt;}
.ws13{word-spacing:-15.370667pt;}
.ws5d{word-spacing:-15.312000pt;}
.ws43{word-spacing:-15.253333pt;}
.ws62{word-spacing:-15.194667pt;}
.ws3a{word-spacing:-15.077333pt;}
.ws52{word-spacing:-15.018667pt;}
.ws11{word-spacing:-14.960000pt;}
.ws18{word-spacing:-14.901333pt;}
.ws44{word-spacing:-14.842667pt;}
.ws4c{word-spacing:-14.784000pt;}
.ws19{word-spacing:-14.725333pt;}
.ws12{word-spacing:-14.666667pt;}
.ws36{word-spacing:-14.608000pt;}
.ws4b{word-spacing:-14.549333pt;}
.ws58{word-spacing:-14.490667pt;}
.ws4a{word-spacing:-14.432000pt;}
.ws55{word-spacing:-14.373333pt;}
.ws54{word-spacing:-14.314667pt;}
.ws37{word-spacing:-14.256000pt;}
.ws46{word-spacing:-14.197333pt;}
.ws51{word-spacing:-14.138667pt;}
.ws14{word-spacing:-14.080000pt;}
.ws45{word-spacing:-14.021333pt;}
.ws59{word-spacing:-13.904000pt;}
.ws5b{word-spacing:-13.845333pt;}
.ws70{word-spacing:-13.813333pt;}
.ws73{word-spacing:-13.760000pt;}
.ws47{word-spacing:-13.728000pt;}
.ws78{word-spacing:-13.600000pt;}
.ws5f{word-spacing:-13.552000pt;}
.ws39{word-spacing:-13.493333pt;}
.ws38{word-spacing:-13.434667pt;}
.ws63{word-spacing:-13.333333pt;}
.ws4e{word-spacing:-13.317333pt;}
.ws6e{word-spacing:-13.280000pt;}
.ws57{word-spacing:-13.258667pt;}
.ws0{word-spacing:-12.920000pt;}
.ws7a{word-spacing:-12.640000pt;}
.ws75{word-spacing:-10.840000pt;}
.ws1b{word-spacing:-10.666667pt;}
.ws76{word-spacing:-10.640000pt;}
.ws1c{word-spacing:-10.624000pt;}
.ws6f{word-spacing:-10.480000pt;}
.ws72{word-spacing:-10.440000pt;}
.ws71{word-spacing:-10.400000pt;}
.ws74{word-spacing:-10.320000pt;}
.ws77{word-spacing:-10.200000pt;}
.ws6b{word-spacing:-10.000000pt;}
.ws6d{word-spacing:-9.600000pt;}
.ws79{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.000000pt;}
.ws5c{word-spacing:-0.762667pt;}
.ws41{word-spacing:-0.704000pt;}
.ws30{word-spacing:-0.645333pt;}
.ws26{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.557333pt;}
.ws3b{word-spacing:-0.528000pt;}
.ws20{word-spacing:-0.469333pt;}
.ws2e{word-spacing:-0.410667pt;}
.wsa{word-spacing:-0.405333pt;}
.ws42{word-spacing:-0.352000pt;}
.wsf{word-spacing:-0.336000pt;}
.ws34{word-spacing:-0.293333pt;}
.ws7b{word-spacing:-0.266667pt;}
.ws25{word-spacing:-0.234667pt;}
.ws24{word-spacing:-0.176000pt;}
.ws8{word-spacing:-0.152000pt;}
.ws2a{word-spacing:-0.117333pt;}
.ws65{word-spacing:-0.106667pt;}
.ws32{word-spacing:-0.058667pt;}
.ws7{word-spacing:0.000000pt;}
.wsb{word-spacing:0.050667pt;}
.ws81{word-spacing:0.053333pt;}
.ws3f{word-spacing:0.058667pt;}
.ws49{word-spacing:0.117333pt;}
.ws28{word-spacing:0.176000pt;}
.ws7c{word-spacing:0.213333pt;}
.ws2f{word-spacing:0.234667pt;}
.ws1e{word-spacing:0.293333pt;}
.ws6c{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.352000pt;}
.ws35{word-spacing:0.410667pt;}
.ws64{word-spacing:0.426667pt;}
.wse{word-spacing:0.432000pt;}
.ws31{word-spacing:0.469333pt;}
.ws7f{word-spacing:0.480000pt;}
.ws2d{word-spacing:0.528000pt;}
.ws33{word-spacing:0.586667pt;}
.ws4f{word-spacing:0.645333pt;}
.ws10{word-spacing:0.672000pt;}
.ws2c{word-spacing:0.704000pt;}
.ws21{word-spacing:0.762667pt;}
.ws6{word-spacing:0.810667pt;}
.ws3e{word-spacing:0.821333pt;}
.ws7d{word-spacing:0.853333pt;}
.ws3{word-spacing:0.861333pt;}
.ws29{word-spacing:0.880000pt;}
.ws7e{word-spacing:0.906667pt;}
.ws40{word-spacing:0.938667pt;}
.ws22{word-spacing:0.997333pt;}
.ws1{word-spacing:1.008000pt;}
.ws27{word-spacing:1.056000pt;}
.wsc{word-spacing:1.104000pt;}
.ws4{word-spacing:1.114667pt;}
.ws80{word-spacing:1.120000pt;}
.wsd{word-spacing:1.152000pt;}
.ws5{word-spacing:1.165333pt;}
.ws48{word-spacing:1.173333pt;}
.ws3c{word-spacing:1.232000pt;}
.ws66{word-spacing:1.280000pt;}
.ws1f{word-spacing:1.290667pt;}
.ws23{word-spacing:1.349333pt;}
.ws3d{word-spacing:1.408000pt;}
.ws1d{word-spacing:1.466667pt;}
.ws69{word-spacing:2.757333pt;}
.ws6a{word-spacing:4.810667pt;}
.ws67{word-spacing:6.688000pt;}
.ws5e{word-spacing:20.533333pt;}
.ws50{word-spacing:21.354667pt;}
.ws56{word-spacing:22.234667pt;}
.ws60{word-spacing:26.752000pt;}
.ws1a{word-spacing:31.744000pt;}
._b{margin-left:-7.802667pt;}
._3{margin-left:-6.536000pt;}
._8{margin-left:-5.120000pt;}
._a{margin-left:-4.106667pt;}
._6{margin-left:-3.034667pt;}
._2{margin-left:-2.128000pt;}
._1{margin-left:-1.165333pt;}
._0{width:1.368000pt;}
._5{width:2.698667pt;}
._e{width:5.397333pt;}
._c{width:13.368000pt;}
._d{width:21.354667pt;}
._f{width:26.666667pt;}
._4{width:42.368000pt;}
._9{width:417.536000pt;}
._7{width:1018.581333pt;}
.fs2{font-size:36.000000pt;}
.fs8{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:43.696000pt;}
.y122{bottom:43.702667pt;}
.yfc{bottom:43.717333pt;}
.yd7{bottom:43.732000pt;}
.y7a{bottom:43.746667pt;}
.yb8{bottom:43.820000pt;}
.y1f{bottom:44.466667pt;}
.y160{bottom:45.120000pt;}
.y15b{bottom:45.180000pt;}
.y9c{bottom:45.420000pt;}
.y1e{bottom:57.138667pt;}
.y4d{bottom:59.022667pt;}
.y121{bottom:59.029333pt;}
.yfb{bottom:59.044000pt;}
.yd6{bottom:59.058667pt;}
.y79{bottom:59.073333pt;}
.y15f{bottom:59.120000pt;}
.yb7{bottom:59.146667pt;}
.y15a{bottom:60.506667pt;}
.y9b{bottom:60.746667pt;}
.y1d{bottom:69.810667pt;}
.y15e{bottom:73.120000pt;}
.y4c{bottom:74.349333pt;}
.y120{bottom:74.356000pt;}
.yfa{bottom:74.370667pt;}
.yd5{bottom:74.385333pt;}
.y78{bottom:74.400000pt;}
.yb6{bottom:74.473333pt;}
.y159{bottom:75.833333pt;}
.y9a{bottom:76.073333pt;}
.y1c{bottom:82.482667pt;}
.y15d{bottom:87.120000pt;}
.y4b{bottom:89.676000pt;}
.y11f{bottom:89.682667pt;}
.yf9{bottom:89.697333pt;}
.yd4{bottom:89.712000pt;}
.y77{bottom:89.726667pt;}
.y158{bottom:91.160000pt;}
.y99{bottom:91.400000pt;}
.y1b{bottom:95.154667pt;}
.yb5{bottom:97.470667pt;}
.y4a{bottom:105.002667pt;}
.y11e{bottom:105.009333pt;}
.yf8{bottom:105.024000pt;}
.yd3{bottom:105.038667pt;}
.y76{bottom:105.053333pt;}
.y157{bottom:106.486667pt;}
.y98{bottom:106.726667pt;}
.y1a{bottom:107.805333pt;}
.y15c{bottom:112.694667pt;}
.yb4{bottom:112.797333pt;}
.y49{bottom:120.329333pt;}
.y12d{bottom:120.336000pt;}
.yf7{bottom:120.350667pt;}
.yd2{bottom:120.365333pt;}
.y75{bottom:120.380000pt;}
.y19{bottom:120.477333pt;}
.y156{bottom:121.813333pt;}
.y97{bottom:122.053333pt;}
.y11d{bottom:130.338667pt;}
.y18{bottom:133.149333pt;}
.y48{bottom:135.656000pt;}
.y12c{bottom:135.662667pt;}
.yf6{bottom:135.677333pt;}
.yd1{bottom:135.692000pt;}
.y74{bottom:135.706667pt;}
.y155{bottom:137.140000pt;}
.y96{bottom:137.380000pt;}
.y11c{bottom:145.665333pt;}
.y17{bottom:145.821333pt;}
.y47{bottom:150.982667pt;}
.y12b{bottom:150.989333pt;}
.yf5{bottom:151.004000pt;}
.yd0{bottom:151.018667pt;}
.y73{bottom:151.033333pt;}
.yb3{bottom:151.136000pt;}
.y154{bottom:152.466667pt;}
.y95{bottom:152.706667pt;}
.y16{bottom:158.493333pt;}
.y11b{bottom:160.992000pt;}
.y46{bottom:166.309333pt;}
.yf4{bottom:166.330667pt;}
.ycf{bottom:166.345333pt;}
.y72{bottom:166.360000pt;}
.yb2{bottom:166.462667pt;}
.y153{bottom:167.793333pt;}
.y94{bottom:168.033333pt;}
.y12a{bottom:173.986667pt;}
.y11a{bottom:176.318667pt;}
.y45{bottom:181.636000pt;}
.yf3{bottom:181.657333pt;}
.yce{bottom:181.672000pt;}
.y71{bottom:181.686667pt;}
.yb1{bottom:181.789333pt;}
.y152{bottom:183.120000pt;}
.y93{bottom:183.360000pt;}
.y129{bottom:189.313333pt;}
.y119{bottom:191.645333pt;}
.y44{bottom:196.962667pt;}
.yf2{bottom:196.984000pt;}
.ycd{bottom:196.998667pt;}
.y70{bottom:197.013333pt;}
.yb0{bottom:197.116000pt;}
.y92{bottom:198.686667pt;}
.y15{bottom:204.160000pt;}
.y118{bottom:206.972000pt;}
.y151{bottom:211.680000pt;}
.y43{bottom:212.289333pt;}
.yf1{bottom:212.310667pt;}
.ycc{bottom:212.325333pt;}
.y6f{bottom:212.340000pt;}
.yaf{bottom:212.442667pt;}
.y91{bottom:214.013333pt;}
.y117{bottom:222.298667pt;}
.y14{bottom:225.040667pt;}
.y150{bottom:225.680000pt;}
.y42{bottom:227.616000pt;}
.yf0{bottom:227.637333pt;}
.ycb{bottom:227.652000pt;}
.y6e{bottom:227.666667pt;}
.yae{bottom:227.769333pt;}
.y90{bottom:229.340000pt;}
.y116{bottom:237.625333pt;}
.y13{bottom:238.378667pt;}
.y14f{bottom:239.680000pt;}
.y41{bottom:242.942667pt;}
.yef{bottom:242.964000pt;}
.yca{bottom:242.978667pt;}
.y6d{bottom:242.993333pt;}
.yad{bottom:243.096000pt;}
.y8f{bottom:244.666667pt;}
.y12{bottom:251.716667pt;}
.y115{bottom:252.952000pt;}
.y14e{bottom:253.680000pt;}
.y40{bottom:258.269333pt;}
.yee{bottom:258.290667pt;}
.yc9{bottom:258.305333pt;}
.y6c{bottom:258.320000pt;}
.yac{bottom:258.422667pt;}
.y8e{bottom:259.993333pt;}
.y11{bottom:265.054667pt;}
.y14d{bottom:267.680000pt;}
.y114{bottom:268.278667pt;}
.y3f{bottom:273.596000pt;}
.yed{bottom:273.617333pt;}
.yc8{bottom:273.632000pt;}
.y6b{bottom:273.646667pt;}
.yab{bottom:273.749333pt;}
.y8d{bottom:275.320000pt;}
.y10{bottom:278.392667pt;}
.y113{bottom:283.605333pt;}
.y3e{bottom:288.922667pt;}
.yec{bottom:288.944000pt;}
.yc7{bottom:288.958667pt;}
.y6a{bottom:288.973333pt;}
.yaa{bottom:289.076000pt;}
.y8c{bottom:290.646667pt;}
.y14c{bottom:291.320000pt;}
.y112{bottom:298.932000pt;}
.yf{bottom:299.280000pt;}
.y3d{bottom:304.249333pt;}
.yeb{bottom:304.270667pt;}
.yc6{bottom:304.285333pt;}
.y69{bottom:304.300000pt;}
.ya9{bottom:304.402667pt;}
.y8b{bottom:305.973333pt;}
.y14b{bottom:306.646667pt;}
.y111{bottom:314.258667pt;}
.y3c{bottom:319.576000pt;}
.yea{bottom:319.597333pt;}
.yc5{bottom:319.612000pt;}
.y68{bottom:319.626667pt;}
.y8a{bottom:321.300000pt;}
.y14a{bottom:321.973333pt;}
.ye{bottom:323.930000pt;}
.ya8{bottom:324.804000pt;}
.y110{bottom:329.585333pt;}
.y3b{bottom:334.902667pt;}
.ye9{bottom:334.924000pt;}
.yc4{bottom:334.938667pt;}
.y67{bottom:334.953333pt;}
.y89{bottom:336.626667pt;}
.y149{bottom:337.300000pt;}
.ya7{bottom:340.130667pt;}
.yd{bottom:342.600667pt;}
.y10f{bottom:344.912000pt;}
.y3a{bottom:350.229333pt;}
.ye8{bottom:350.250667pt;}
.yc3{bottom:350.265333pt;}
.y66{bottom:350.280000pt;}
.y88{bottom:351.953333pt;}
.y148{bottom:352.626667pt;}
.ya6{bottom:355.457333pt;}
.yc{bottom:355.938667pt;}
.y39{bottom:365.556000pt;}
.ye7{bottom:365.577333pt;}
.yc2{bottom:365.592000pt;}
.y65{bottom:365.606667pt;}
.y87{bottom:367.280000pt;}
.y147{bottom:367.953333pt;}
.yb{bottom:369.276667pt;}
.y10e{bottom:370.241333pt;}
.ya5{bottom:370.784000pt;}
.y38{bottom:380.882667pt;}
.ye6{bottom:380.904000pt;}
.yc1{bottom:380.918667pt;}
.y64{bottom:380.933333pt;}
.y86{bottom:382.606667pt;}
.ya{bottom:382.614667pt;}
.y146{bottom:383.280000pt;}
.y10d{bottom:385.568000pt;}
.ya4{bottom:386.110667pt;}
.y9{bottom:395.952667pt;}
.y37{bottom:396.209333pt;}
.ye5{bottom:396.230667pt;}
.yc0{bottom:396.245333pt;}
.y63{bottom:396.260000pt;}
.y85{bottom:397.933333pt;}
.y145{bottom:398.606667pt;}
.y10c{bottom:400.894667pt;}
.ya3{bottom:401.437333pt;}
.y36{bottom:411.536000pt;}
.ye4{bottom:411.557333pt;}
.ybf{bottom:411.572000pt;}
.y62{bottom:411.586667pt;}
.y84{bottom:413.260000pt;}
.y144{bottom:413.933333pt;}
.y10b{bottom:416.221333pt;}
.ya2{bottom:416.764000pt;}
.y8{bottom:416.840000pt;}
.y35{bottom:426.862667pt;}
.ye3{bottom:426.884000pt;}
.ybe{bottom:426.898667pt;}
.y61{bottom:426.913333pt;}
.y83{bottom:428.586667pt;}
.y143{bottom:429.260000pt;}
.y10a{bottom:431.548000pt;}
.ya1{bottom:432.090667pt;}
.y7{bottom:441.484000pt;}
.y34{bottom:442.189333pt;}
.ye2{bottom:442.210667pt;}
.ybd{bottom:442.225333pt;}
.y60{bottom:442.240000pt;}
.y82{bottom:443.913333pt;}
.y142{bottom:444.586667pt;}
.y109{bottom:446.874667pt;}
.yfd{bottom:449.881333pt;}
.ya0{bottom:452.492000pt;}
.y33{bottom:457.516000pt;}
.ye1{bottom:457.537333pt;}
.ybc{bottom:457.552000pt;}
.y5f{bottom:457.566667pt;}
.y81{bottom:459.240000pt;}
.y141{bottom:459.913333pt;}
.y6{bottom:460.154667pt;}
.y108{bottom:462.201333pt;}
.y9f{bottom:467.818667pt;}
.y32{bottom:472.842667pt;}
.ye0{bottom:472.864000pt;}
.ybb{bottom:472.878667pt;}
.y5e{bottom:472.893333pt;}
.y5{bottom:473.492667pt;}
.y80{bottom:474.566667pt;}
.y140{bottom:475.240000pt;}
.y107{bottom:477.528000pt;}
.y9e{bottom:483.145333pt;}
.y4{bottom:486.830667pt;}
.y31{bottom:488.169333pt;}
.y128{bottom:488.190667pt;}
.yba{bottom:488.205333pt;}
.y5d{bottom:488.220000pt;}
.y7f{bottom:489.893333pt;}
.y13f{bottom:490.566667pt;}
.y106{bottom:492.854667pt;}
.y9d{bottom:498.472000pt;}
.y3{bottom:500.168667pt;}
.y30{bottom:503.496000pt;}
.y127{bottom:503.517333pt;}
.yb9{bottom:503.532000pt;}
.y5c{bottom:503.546667pt;}
.y13e{bottom:505.893333pt;}
.y2{bottom:513.506667pt;}
.y7e{bottom:516.560000pt;}
.y2f{bottom:518.822667pt;}
.y126{bottom:518.844000pt;}
.ydf{bottom:518.858667pt;}
.y5b{bottom:518.873333pt;}
.y13d{bottom:521.220000pt;}
.y16e{bottom:522.120000pt;}
.y105{bottom:523.522667pt;}
.y7d{bottom:530.560000pt;}
.y2e{bottom:534.149333pt;}
.y125{bottom:534.170667pt;}
.yde{bottom:534.185333pt;}
.y5a{bottom:534.200000pt;}
.y16d{bottom:536.120000pt;}
.y13c{bottom:536.546667pt;}
.y104{bottom:538.849333pt;}
.y1{bottom:540.173333pt;}
.y7c{bottom:544.560000pt;}
.ydd{bottom:549.512000pt;}
.y59{bottom:549.526667pt;}
.y16c{bottom:550.120000pt;}
.y13b{bottom:551.873333pt;}
.y103{bottom:554.176000pt;}
.y7b{bottom:558.560000pt;}
.y16b{bottom:564.120000pt;}
.y2d{bottom:564.817333pt;}
.ydc{bottom:564.838667pt;}
.y58{bottom:564.853333pt;}
.y13a{bottom:567.200000pt;}
.y102{bottom:569.502667pt;}
.y16a{bottom:578.120000pt;}
.ydb{bottom:580.165333pt;}
.y57{bottom:580.180000pt;}
.y139{bottom:582.526667pt;}
.y101{bottom:584.829333pt;}
.y169{bottom:592.120000pt;}
.y2c{bottom:595.485333pt;}
.yda{bottom:595.492000pt;}
.y56{bottom:595.506667pt;}
.y138{bottom:597.853333pt;}
.y100{bottom:600.156000pt;}
.y168{bottom:606.120000pt;}
.y2b{bottom:610.812000pt;}
.yd9{bottom:610.818667pt;}
.y55{bottom:610.833333pt;}
.y137{bottom:613.180000pt;}
.yff{bottom:615.482667pt;}
.y167{bottom:620.120000pt;}
.y2a{bottom:626.138667pt;}
.yd8{bottom:626.145333pt;}
.y54{bottom:626.160000pt;}
.y136{bottom:628.506667pt;}
.yfe{bottom:630.809333pt;}
.y166{bottom:634.120000pt;}
.y24{bottom:637.426667pt;}
.y29{bottom:641.465333pt;}
.y124{bottom:641.472000pt;}
.y53{bottom:641.486667pt;}
.y135{bottom:643.833333pt;}
.y165{bottom:648.120000pt;}
.y23{bottom:653.426667pt;}
.y28{bottom:656.792000pt;}
.y123{bottom:656.798667pt;}
.y52{bottom:656.813333pt;}
.y134{bottom:659.160000pt;}
.y164{bottom:662.120000pt;}
.y27{bottom:672.118667pt;}
.y12f{bottom:672.125333pt;}
.y51{bottom:672.140000pt;}
.y133{bottom:674.486667pt;}
.y163{bottom:676.120000pt;}
.y12e{bottom:687.452000pt;}
.y50{bottom:687.466667pt;}
.y132{bottom:689.813333pt;}
.y162{bottom:690.120000pt;}
.y22{bottom:693.426667pt;}
.y26{bottom:702.786667pt;}
.y4f{bottom:702.793333pt;}
.y161{bottom:704.120000pt;}
.y131{bottom:705.140000pt;}
.y21{bottom:714.760000pt;}
.y25{bottom:718.120000pt;}
.y130{bottom:720.466667pt;}
.y20{bottom:760.093333pt;}
.h5{height:45.525333pt;}
.h3{height:51.216000pt;}
.h2{height:52.032000pt;}
.h4{height:52.117333pt;}
.h1{height:54.061333pt;}
.ha{height:56.906667pt;}
.hb{height:57.813333pt;}
.h8{height:62.597333pt;}
.h9{height:63.594667pt;}
.h7{height:68.288000pt;}
.h6{height:91.050667pt;}
.h0{height:801.333333pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x1{left:62.400000pt;}
.x5{left:63.480000pt;}
.x2{left:77.522667pt;}
.x6{left:78.426667pt;}
.x8{left:82.390667pt;}
.x7{left:83.428000pt;}
.x9{left:86.262667pt;}
.x3{left:92.642667pt;}
.xb{left:102.405333pt;}
.xa{left:103.480000pt;}
.x4{left:374.200000pt;}
}




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