
    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_e868cbaff9afd10603591a91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_9db4c024b4a156d54cf0dfae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_f3266719f53c5371cc20a60a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_623ee4a37fa523d62954102a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9c0257aed91ac7671e9c7579.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102539;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_aedb16be8b394582217203bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8219670fcacfba0c578f6628.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls4d{letter-spacing:-0.936000px;}
.ls3d{letter-spacing:-0.720000px;}
.ls3a{letter-spacing:-0.648000px;}
.ls32{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.336960px;}
.lsa{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.168480px;}
.lsb{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.191520px;}
.ls46{letter-spacing:0.192960px;}
.ls18{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.336960px;}
.ls6{letter-spacing:0.383040px;}
.ls36{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.864000px;}
.ls2c{letter-spacing:1.440000px;}
.ls22{letter-spacing:2.160000px;}
.ls37{letter-spacing:2.880000px;}
.ls4{letter-spacing:3.600000px;}
.ls16{letter-spacing:4.320000px;}
.ls30{letter-spacing:5.760000px;}
.ls1d{letter-spacing:6.480000px;}
.ls1c{letter-spacing:7.200000px;}
.ls1b{letter-spacing:7.920000px;}
.ls21{letter-spacing:8.640000px;}
.ls12{letter-spacing:9.360000px;}
.ls15{letter-spacing:10.080000px;}
.ls26{letter-spacing:10.800000px;}
.ls34{letter-spacing:11.520000px;}
.ls44{letter-spacing:11.527200px;}
.ls1e{letter-spacing:12.240000px;}
.ls10{letter-spacing:12.960000px;}
.ls3b{letter-spacing:13.680000px;}
.ls41{letter-spacing:14.400000px;}
.ls14{letter-spacing:15.120000px;}
.ls27{letter-spacing:15.840000px;}
.ls2{letter-spacing:16.560000px;}
.ls13{letter-spacing:18.000000px;}
.ls3f{letter-spacing:18.720000px;}
.ls20{letter-spacing:19.440000px;}
.ls2f{letter-spacing:20.160000px;}
.ls4a{letter-spacing:20.880000px;}
.ls38{letter-spacing:21.600000px;}
.ls48{letter-spacing:23.040000px;}
.ls47{letter-spacing:24.480000px;}
.ls49{letter-spacing:25.200000px;}
.ls29{letter-spacing:25.920000px;}
.ls11{letter-spacing:27.360000px;}
.lse{letter-spacing:28.800000px;}
.ls3e{letter-spacing:29.520000px;}
.ls2b{letter-spacing:31.104000px;}
.ls40{letter-spacing:33.120000px;}
.ls2e{letter-spacing:35.280000px;}
.ls35{letter-spacing:36.720000px;}
.ls28{letter-spacing:37.440000px;}
.ls33{letter-spacing:38.160000px;}
.ls19{letter-spacing:38.880000px;}
.ls25{letter-spacing:41.760000px;}
.ls45{letter-spacing:43.920000px;}
.ls2d{letter-spacing:46.080000px;}
.ls39{letter-spacing:49.680000px;}
.ls0{letter-spacing:51.264000px;}
.ls3c{letter-spacing:53.424000px;}
.ls1a{letter-spacing:54.864000px;}
.ls4c{letter-spacing:59.904000px;}
.ls42{letter-spacing:74.304000px;}
.ls43{letter-spacing:77.904000px;}
.ls4b{letter-spacing:95.904000px;}
.ls1f{letter-spacing:116.064000px;}
.ls1{letter-spacing:194.400000px;}
.ls17{letter-spacing:846.000000px;}
.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:-20.891520px;}
.ws8b{word-spacing:-18.720000px;}
.ws22{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws43{word-spacing:-18.072000px;}
.ws16{word-spacing:-18.000000px;}
.ws71{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws8c{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.560000px;}
.ws46{word-spacing:-4.464000px;}
.ws45{word-spacing:-4.320000px;}
.ws87{word-spacing:-4.032000px;}
.ws5b{word-spacing:-3.744000px;}
.ws20{word-spacing:-3.600000px;}
.ws1f{word-spacing:-3.312000px;}
.ws12{word-spacing:-2.880000px;}
.ws51{word-spacing:-2.592000px;}
.ws77{word-spacing:-2.448000px;}
.ws57{word-spacing:-2.304000px;}
.ws17{word-spacing:-2.160000px;}
.ws39{word-spacing:-1.944000px;}
.ws35{word-spacing:-1.872000px;}
.ws1c{word-spacing:-1.440000px;}
.ws75{word-spacing:-1.008000px;}
.ws34{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.505440px;}
.ws5a{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.383040px;}
.ws2a{word-spacing:-0.336960px;}
.ws2d{word-spacing:-0.288000px;}
.ws74{word-spacing:-0.192960px;}
.ws8{word-spacing:-0.191520px;}
.wsb{word-spacing:-0.144000px;}
.ws19{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.ws50{word-spacing:0.072000px;}
.ws72{word-spacing:0.144000px;}
.ws25{word-spacing:0.216000px;}
.wse{word-spacing:0.288000px;}
.ws33{word-spacing:0.336960px;}
.ws52{word-spacing:0.576000px;}
.ws37{word-spacing:0.720000px;}
.ws89{word-spacing:0.936000px;}
.ws67{word-spacing:1.008000px;}
.wsa{word-spacing:1.296000px;}
.ws21{word-spacing:1.440000px;}
.ws76{word-spacing:1.728000px;}
.ws84{word-spacing:1.872000px;}
.ws66{word-spacing:2.016000px;}
.ws1d{word-spacing:2.160000px;}
.ws4c{word-spacing:2.448000px;}
.ws83{word-spacing:2.736000px;}
.wsc{word-spacing:2.880000px;}
.ws62{word-spacing:3.168000px;}
.ws15{word-spacing:3.600000px;}
.ws24{word-spacing:3.888000px;}
.ws3c{word-spacing:4.320000px;}
.ws29{word-spacing:4.608000px;}
.ws28{word-spacing:5.040000px;}
.ws31{word-spacing:5.760000px;}
.ws82{word-spacing:6.048000px;}
.ws40{word-spacing:6.480000px;}
.ws53{word-spacing:6.768000px;}
.ws5e{word-spacing:7.056000px;}
.ws1b{word-spacing:7.200000px;}
.ws78{word-spacing:7.776000px;}
.ws5f{word-spacing:7.848000px;}
.ws30{word-spacing:7.920000px;}
.ws2f{word-spacing:8.208000px;}
.wsd{word-spacing:8.640000px;}
.ws7e{word-spacing:9.072000px;}
.ws23{word-spacing:9.360000px;}
.ws65{word-spacing:9.792000px;}
.ws58{word-spacing:9.936000px;}
.ws1e{word-spacing:10.080000px;}
.ws7f{word-spacing:10.512000px;}
.ws13{word-spacing:10.656000px;}
.ws14{word-spacing:10.800000px;}
.ws7a{word-spacing:11.088000px;}
.ws5d{word-spacing:11.376000px;}
.ws3b{word-spacing:11.520000px;}
.ws5c{word-spacing:11.808000px;}
.ws32{word-spacing:11.952000px;}
.ws7d{word-spacing:12.240000px;}
.ws7b{word-spacing:12.528000px;}
.ws1a{word-spacing:12.960000px;}
.ws7c{word-spacing:13.392000px;}
.ws80{word-spacing:13.536000px;}
.ws4a{word-spacing:13.680000px;}
.ws61{word-spacing:13.968000px;}
.ws44{word-spacing:14.400000px;}
.ws70{word-spacing:14.688000px;}
.ws27{word-spacing:14.976000px;}
.ws6e{word-spacing:15.120000px;}
.ws6d{word-spacing:15.408000px;}
.ws54{word-spacing:15.696000px;}
.ws63{word-spacing:15.768000px;}
.ws8d{word-spacing:15.984000px;}
.ws6a{word-spacing:16.128000px;}
.ws11{word-spacing:16.560000px;}
.ws38{word-spacing:17.280000px;}
.ws88{word-spacing:17.568000px;}
.ws26{word-spacing:18.000000px;}
.ws4b{word-spacing:18.288000px;}
.ws6f{word-spacing:18.720000px;}
.ws36{word-spacing:19.440000px;}
.ws3d{word-spacing:20.160000px;}
.ws47{word-spacing:20.880000px;}
.ws85{word-spacing:21.168000px;}
.ws64{word-spacing:21.600000px;}
.ws10{word-spacing:22.320000px;}
.ws81{word-spacing:22.608000px;}
.ws2c{word-spacing:23.040000px;}
.ws56{word-spacing:23.328000px;}
.ws79{word-spacing:24.480000px;}
.ws42{word-spacing:24.768000px;}
.ws41{word-spacing:25.920000px;}
.ws86{word-spacing:26.208000px;}
.ws49{word-spacing:26.640000px;}
.ws48{word-spacing:26.928000px;}
.ws59{word-spacing:27.360000px;}
.ws3a{word-spacing:27.648000px;}
.ws18{word-spacing:28.800000px;}
.ws55{word-spacing:29.088000px;}
.ws6b{word-spacing:29.520000px;}
.ws6c{word-spacing:29.808000px;}
.ws69{word-spacing:31.680000px;}
.wsf{word-spacing:33.120000px;}
.ws2e{word-spacing:34.560000px;}
.ws4f{word-spacing:35.280000px;}
.ws8e{word-spacing:36.576000px;}
.ws60{word-spacing:36.720000px;}
.ws2b{word-spacing:38.880000px;}
.ws4d{word-spacing:39.600000px;}
.ws4e{word-spacing:40.320000px;}
.ws3e{word-spacing:41.760000px;}
.ws3f{word-spacing:42.768000px;}
.ws73{word-spacing:43.920000px;}
.ws8a{word-spacing:46.800000px;}
.ws68{word-spacing:91.440000px;}
._27{margin-left:-34.970688px;}
._32{margin-left:-20.387520px;}
._30{margin-left:-14.400000px;}
._20{margin-left:-12.549888px;}
._1d{margin-left:-8.393184px;}
._1f{margin-left:-7.344576px;}
._b{margin-left:-4.248000px;}
._6{margin-left:-2.579328px;}
._0{margin-left:-1.066464px;}
._1{width:1.010880px;}
._2{width:2.736000px;}
._3{width:3.813120px;}
._11{width:5.474880px;}
._12{width:6.732288px;}
._4{width:8.064000px;}
._5{width:9.072000px;}
._16{width:10.296000px;}
._f{width:11.664000px;}
._10{width:12.738240px;}
._1a{width:13.824000px;}
._c{width:14.904000px;}
._a{width:16.344000px;}
._14{width:19.008000px;}
._15{width:20.376000px;}
._8{width:21.600000px;}
._9{width:23.040000px;}
._13{width:24.045120px;}
._18{width:25.294176px;}
._19{width:26.712000px;}
._e{width:27.933120px;}
._d{width:29.016000px;}
._31{width:30.312000px;}
._2d{width:31.320000px;}
._7{width:33.120000px;}
._1e{width:34.532928px;}
._24{width:35.856000px;}
._23{width:36.891072px;}
._1b{width:38.218464px;}
._1c{width:39.757536px;}
._2f{width:40.996800px;}
._22{width:42.264000px;}
._2e{width:44.490240px;}
._26{width:46.111392px;}
._2a{width:50.400000px;}
._25{width:53.496000px;}
._2c{width:55.440000px;}
._21{width:66.960000px;}
._2b{width:92.088000px;}
._17{width:109.440000px;}
._29{width:126.000000px;}
._28{width:194.400000px;}
._33{width:846.000000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.ye6{bottom:110.880000px;}
.y45{bottom:116.100000px;}
.y100{bottom:118.440000px;}
.y105{bottom:126.360000px;}
.ycd{bottom:126.900000px;}
.yaf{bottom:129.060000px;}
.y12d{bottom:130.500000px;}
.y125{bottom:134.100000px;}
.y8e{bottom:138.420000px;}
.ye5{bottom:142.020000px;}
.y84{bottom:146.520000px;}
.y44{bottom:147.060000px;}
.yff{bottom:149.580000px;}
.y66{bottom:154.080000px;}
.ycc{bottom:158.040000px;}
.y104{bottom:158.760000px;}
.yae{bottom:159.840000px;}
.y14d{bottom:160.200000px;}
.y12c{bottom:161.460000px;}
.y124{bottom:165.060000px;}
.y22{bottom:167.400000px;}
.y8d{bottom:169.380000px;}
.ye4{bottom:172.980000px;}
.y83{bottom:177.480000px;}
.y43{bottom:178.200000px;}
.yfe{bottom:180.540000px;}
.y65{bottom:185.040000px;}
.ycb{bottom:189.000000px;}
.y14c{bottom:191.160000px;}
.y103{bottom:191.340000px;}
.yad{bottom:192.420000px;}
.y123{bottom:197.460000px;}
.y21{bottom:198.360000px;}
.y12b{bottom:200.160000px;}
.y8c{bottom:200.520000px;}
.ye3{bottom:203.940000px;}
.y82{bottom:208.620000px;}
.y42{bottom:209.160000px;}
.yfd{bottom:211.680000px;}
.y64{bottom:217.440000px;}
.yca{bottom:220.140000px;}
.y102{bottom:222.120000px;}
.y14b{bottom:222.300000px;}
.yac{bottom:223.380000px;}
.y20{bottom:229.500000px;}
.y122{bottom:229.860000px;}
.y8b{bottom:231.480000px;}
.ye2{bottom:235.080000px;}
.y81{bottom:239.580000px;}
.y41{bottom:240.300000px;}
.yfc{bottom:242.640000px;}
.y63{bottom:249.840000px;}
.yc9{bottom:251.100000px;}
.y14a{bottom:253.260000px;}
.yab{bottom:254.340000px;}
.y1f{bottom:260.460000px;}
.y121{bottom:261.000000px;}
.y101{bottom:262.260000px;}
.y8a{bottom:262.620000px;}
.ye1{bottom:266.040000px;}
.y80{bottom:270.720000px;}
.y40{bottom:271.260000px;}
.yfb{bottom:273.600000px;}
.y62{bottom:280.980000px;}
.yc8{bottom:282.240000px;}
.y149{bottom:284.400000px;}
.yaa{bottom:286.920000px;}
.y1e{bottom:291.600000px;}
.y120{bottom:291.960000px;}
.ye0{bottom:297.180000px;}
.y89{bottom:301.320000px;}
.y7f{bottom:301.680000px;}
.y3f{bottom:302.400000px;}
.yfa{bottom:304.740000px;}
.y61{bottom:311.940000px;}
.y148{bottom:315.360000px;}
.ya9{bottom:317.880000px;}
.y1d{bottom:322.560000px;}
.y11f{bottom:323.100000px;}
.yc7{bottom:328.140000px;}
.y7e{bottom:332.820000px;}
.y3e{bottom:333.360000px;}
.yf9{bottom:335.700000px;}
.y60{bottom:342.900000px;}
.y88{bottom:344.340000px;}
.y147{bottom:346.500000px;}
.ya8{bottom:348.840000px;}
.y1c{bottom:353.700000px;}
.y11e{bottom:354.060000px;}
.yc6{bottom:359.280000px;}
.y7d{bottom:363.780000px;}
.y3d{bottom:364.500000px;}
.yf8{bottom:366.840000px;}
.y5f{bottom:375.300000px;}
.y146{bottom:377.460000px;}
.ya7{bottom:379.980000px;}
.y1b{bottom:384.660000px;}
.y11d{bottom:385.200000px;}
.yc5{bottom:390.240000px;}
.y7c{bottom:394.920000px;}
.y3c{bottom:395.460000px;}
.yf7{bottom:397.800000px;}
.y5e{bottom:406.260000px;}
.y87{bottom:406.440000px;}
.y145{bottom:408.600000px;}
.ya6{bottom:410.940000px;}
.y1a{bottom:415.800000px;}
.y11c{bottom:416.160000px;}
.yc4{bottom:421.200000px;}
.ydf{bottom:421.380000px;}
.y7b{bottom:425.880000px;}
.y3b{bottom:426.600000px;}
.yf6{bottom:428.940000px;}
.y86{bottom:437.400000px;}
.y5d{bottom:438.660000px;}
.y144{bottom:439.560000px;}
.ya5{bottom:441.900000px;}
.y19{bottom:446.760000px;}
.y11b{bottom:447.300000px;}
.yde{bottom:452.340000px;}
.yc3{bottom:453.780000px;}
.y7a{bottom:457.020000px;}
.y3a{bottom:457.560000px;}
.y5c{bottom:469.800000px;}
.y143{bottom:470.700000px;}
.yf5{bottom:471.960000px;}
.ya4{bottom:474.480000px;}
.y85{bottom:476.820000px;}
.y18{bottom:477.900000px;}
.y11a{bottom:478.260000px;}
.ydd{bottom:483.480000px;}
.yc2{bottom:484.740000px;}
.y79{bottom:487.980000px;}
.y39{bottom:488.700000px;}
.y5b{bottom:500.760000px;}
.y142{bottom:501.660000px;}
.yf4{bottom:503.100000px;}
.ya3{bottom:505.440000px;}
.y17{bottom:508.860000px;}
.y119{bottom:509.400000px;}
.ydc{bottom:514.440000px;}
.yc1{bottom:515.880000px;}
.y78{bottom:519.120000px;}
.y38{bottom:519.660000px;}
.y5a{bottom:531.720000px;}
.y141{bottom:532.800000px;}
.yf3{bottom:534.060000px;}
.ya2{bottom:536.580000px;}
.y16{bottom:540.000000px;}
.y118{bottom:540.360000px;}
.ydb{bottom:545.580000px;}
.yc0{bottom:546.840000px;}
.y77{bottom:550.080000px;}
.y37{bottom:550.800000px;}
.y140{bottom:563.760000px;}
.y59{bottom:564.120000px;}
.yf2{bottom:565.200000px;}
.ya1{bottom:567.540000px;}
.y15{bottom:570.960000px;}
.y117{bottom:571.500000px;}
.yda{bottom:576.540000px;}
.ybf{bottom:577.800000px;}
.y76{bottom:581.220000px;}
.y36{bottom:581.760000px;}
.y13f{bottom:594.900000px;}
.y58{bottom:595.260000px;}
.yf1{bottom:596.160000px;}
.ya0{bottom:598.680000px;}
.y14{bottom:602.100000px;}
.y116{bottom:602.460000px;}
.yd9{bottom:607.680000px;}
.ybe{bottom:610.200000px;}
.y75{bottom:612.180000px;}
.y35{bottom:612.900000px;}
.y13e{bottom:625.860000px;}
.y57{bottom:626.220000px;}
.yf0{bottom:627.120000px;}
.y9f{bottom:629.640000px;}
.y13{bottom:633.060000px;}
.y115{bottom:633.600000px;}
.y12a{bottom:638.460000px;}
.yd8{bottom:638.640000px;}
.ybd{bottom:641.340000px;}
.y74{bottom:643.320000px;}
.y34{bottom:643.860000px;}
.y13d{bottom:656.820000px;}
.y56{bottom:657.360000px;}
.yef{bottom:658.260000px;}
.y9e{bottom:660.780000px;}
.y12{bottom:664.200000px;}
.y114{bottom:664.560000px;}
.yd7{bottom:669.780000px;}
.y129{bottom:670.860000px;}
.ybc{bottom:672.300000px;}
.y73{bottom:674.280000px;}
.y33{bottom:674.820000px;}
.y13c{bottom:687.960000px;}
.y55{bottom:688.320000px;}
.yee{bottom:689.220000px;}
.y9d{bottom:691.740000px;}
.y11{bottom:694.980000px;}
.y113{bottom:695.520000px;}
.yd6{bottom:700.560000px;}
.ybb{bottom:703.440000px;}
.y32{bottom:705.960000px;}
.y13b{bottom:718.920000px;}
.y72{bottom:720.180000px;}
.yed{bottom:720.360000px;}
.y54{bottom:720.720000px;}
.y9c{bottom:722.700000px;}
.y10{bottom:727.560000px;}
.y112{bottom:727.920000px;}
.yd5{bottom:733.140000px;}
.yba{bottom:734.400000px;}
.y31{bottom:736.920000px;}
.y13a{bottom:750.060000px;}
.yec{bottom:751.320000px;}
.y53{bottom:751.860000px;}
.y71{bottom:752.580000px;}
.y9b{bottom:754.920000px;}
.yf{bottom:758.520000px;}
.y111{bottom:758.880000px;}
.yd4{bottom:764.100000px;}
.yb9{bottom:765.540000px;}
.y30{bottom:768.060000px;}
.y139{bottom:781.020000px;}
.yeb{bottom:782.460000px;}
.y52{bottom:782.820000px;}
.y70{bottom:784.980000px;}
.y9a{bottom:787.500000px;}
.ye{bottom:789.480000px;}
.y110{bottom:791.280000px;}
.yd3{bottom:795.060000px;}
.yb8{bottom:796.500000px;}
.y2f{bottom:799.020000px;}
.y138{bottom:812.160000px;}
.yea{bottom:813.420000px;}
.y51{bottom:813.780000px;}
.y6f{bottom:817.380000px;}
.y99{bottom:818.460000px;}
.yd{bottom:821.880000px;}
.y10f{bottom:822.420000px;}
.y128{bottom:827.460000px;}
.yb7{bottom:827.640000px;}
.y2e{bottom:830.160000px;}
.y137{bottom:843.120000px;}
.ye9{bottom:844.560000px;}
.y50{bottom:846.180000px;}
.y6e{bottom:848.340000px;}
.y98{bottom:849.600000px;}
.yc{bottom:853.020000px;}
.y10e{bottom:853.380000px;}
.yb6{bottom:858.600000px;}
.y127{bottom:859.860000px;}
.y2d{bottom:861.120000px;}
.y136{bottom:874.260000px;}
.ye8{bottom:875.520000px;}
.y4f{bottom:877.320000px;}
.y97{bottom:880.380000px;}
.y6d{bottom:880.560000px;}
.yb{bottom:883.980000px;}
.y10d{bottom:884.340000px;}
.yb5{bottom:889.560000px;}
.yd2{bottom:889.740000px;}
.y126{bottom:891.000000px;}
.y2c{bottom:892.260000px;}
.y135{bottom:905.220000px;}
.y4e{bottom:908.280000px;}
.y96{bottom:912.780000px;}
.y6c{bottom:912.960000px;}
.ye7{bottom:914.220000px;}
.ya{bottom:915.120000px;}
.y10c{bottom:916.740000px;}
.yd1{bottom:920.700000px;}
.yb4{bottom:921.960000px;}
.y2b{bottom:923.220000px;}
.y134{bottom:936.360000px;}
.y4d{bottom:939.240000px;}
.y95{bottom:945.180000px;}
.y6b{bottom:945.360000px;}
.y9{bottom:946.080000px;}
.y10b{bottom:949.140000px;}
.yd0{bottom:951.660000px;}
.yb3{bottom:953.100000px;}
.y2a{bottom:954.360000px;}
.y133{bottom:967.320000px;}
.y4c{bottom:971.460000px;}
.y8{bottom:977.220000px;}
.y94{bottom:977.400000px;}
.y6a{bottom:977.580000px;}
.y10a{bottom:980.100000px;}
.yb2{bottom:984.060000px;}
.y29{bottom:985.320000px;}
.y132{bottom:998.460000px;}
.y4b{bottom:1004.040000px;}
.y7{bottom:1008.180000px;}
.y93{bottom:1009.800000px;}
.y69{bottom:1010.160000px;}
.y109{bottom:1012.320000px;}
.yb1{bottom:1015.200000px;}
.y28{bottom:1016.460000px;}
.y131{bottom:1029.420000px;}
.y4a{bottom:1035.000000px;}
.y92{bottom:1042.200000px;}
.y108{bottom:1044.720000px;}
.yb0{bottom:1045.980000px;}
.ycf{bottom:1046.160000px;}
.y27{bottom:1047.420000px;}
.y6{bottom:1047.600000px;}
.y130{bottom:1060.560000px;}
.y68{bottom:1061.458920px;}
.y49{bottom:1067.400000px;}
.y91{bottom:1074.420000px;}
.yce{bottom:1077.120000px;}
.y107{bottom:1077.300000px;}
.y26{bottom:1078.560000px;}
.y5{bottom:1089.180000px;}
.y12f{bottom:1091.520000px;}
.y67{bottom:1097.640000px;}
.y48{bottom:1098.540000px;}
.y90{bottom:1106.820000px;}
.y106{bottom:1108.080000px;}
.y25{bottom:1109.520000px;}
.y12e{bottom:1122.660000px;}
.y4{bottom:1129.140000px;}
.y47{bottom:1129.500000px;}
.y8f{bottom:1139.220000px;}
.y24{bottom:1140.660000px;}
.y46{bottom:1168.740000px;}
.y23{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.h3{height:58.671562px;}
.h2{height:63.175781px;}
.h7{height:63.773438px;}
.h5{height:64.160156px;}
.h6{height:75.067383px;}
.h4{height:85.333008px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200000px;}
.x6{left:126.543960px;}
.x5{left:133.200000px;}
.x8{left:138.060000px;}
.x9{left:142.380000px;}
.xa{left:148.680000px;}
.x4{left:159.300000px;}
.x7{left:170.100000px;}
.x3{left:295.380000px;}
.x1{left:437.400000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls4d{letter-spacing:-0.832000pt;}
.ls3d{letter-spacing:-0.640000pt;}
.ls3a{letter-spacing:-0.576000pt;}
.ls32{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.299520pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.149760pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.170240pt;}
.ls46{letter-spacing:0.171520pt;}
.ls18{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.299520pt;}
.ls6{letter-spacing:0.340480pt;}
.ls36{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.920000pt;}
.ls37{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.200000pt;}
.ls16{letter-spacing:3.840000pt;}
.ls30{letter-spacing:5.120000pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls21{letter-spacing:7.680000pt;}
.ls12{letter-spacing:8.320000pt;}
.ls15{letter-spacing:8.960000pt;}
.ls26{letter-spacing:9.600000pt;}
.ls34{letter-spacing:10.240000pt;}
.ls44{letter-spacing:10.246400pt;}
.ls1e{letter-spacing:10.880000pt;}
.ls10{letter-spacing:11.520000pt;}
.ls3b{letter-spacing:12.160000pt;}
.ls41{letter-spacing:12.800000pt;}
.ls14{letter-spacing:13.440000pt;}
.ls27{letter-spacing:14.080000pt;}
.ls2{letter-spacing:14.720000pt;}
.ls13{letter-spacing:16.000000pt;}
.ls3f{letter-spacing:16.640000pt;}
.ls20{letter-spacing:17.280000pt;}
.ls2f{letter-spacing:17.920000pt;}
.ls4a{letter-spacing:18.560000pt;}
.ls38{letter-spacing:19.200000pt;}
.ls48{letter-spacing:20.480000pt;}
.ls47{letter-spacing:21.760000pt;}
.ls49{letter-spacing:22.400000pt;}
.ls29{letter-spacing:23.040000pt;}
.ls11{letter-spacing:24.320000pt;}
.lse{letter-spacing:25.600000pt;}
.ls3e{letter-spacing:26.240000pt;}
.ls2b{letter-spacing:27.648000pt;}
.ls40{letter-spacing:29.440000pt;}
.ls2e{letter-spacing:31.360000pt;}
.ls35{letter-spacing:32.640000pt;}
.ls28{letter-spacing:33.280000pt;}
.ls33{letter-spacing:33.920000pt;}
.ls19{letter-spacing:34.560000pt;}
.ls25{letter-spacing:37.120000pt;}
.ls45{letter-spacing:39.040000pt;}
.ls2d{letter-spacing:40.960000pt;}
.ls39{letter-spacing:44.160000pt;}
.ls0{letter-spacing:45.568000pt;}
.ls3c{letter-spacing:47.488000pt;}
.ls1a{letter-spacing:48.768000pt;}
.ls4c{letter-spacing:53.248000pt;}
.ls42{letter-spacing:66.048000pt;}
.ls43{letter-spacing:69.248000pt;}
.ls4b{letter-spacing:85.248000pt;}
.ls1f{letter-spacing:103.168000pt;}
.ls1{letter-spacing:172.800000pt;}
.ls17{letter-spacing:752.000000pt;}
.ws1{word-spacing:-18.570240pt;}
.ws8b{word-spacing:-16.640000pt;}
.ws22{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws43{word-spacing:-16.064000pt;}
.ws16{word-spacing:-16.000000pt;}
.ws71{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws8c{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws46{word-spacing:-3.968000pt;}
.ws45{word-spacing:-3.840000pt;}
.ws87{word-spacing:-3.584000pt;}
.ws5b{word-spacing:-3.328000pt;}
.ws20{word-spacing:-3.200000pt;}
.ws1f{word-spacing:-2.944000pt;}
.ws12{word-spacing:-2.560000pt;}
.ws51{word-spacing:-2.304000pt;}
.ws77{word-spacing:-2.176000pt;}
.ws57{word-spacing:-2.048000pt;}
.ws17{word-spacing:-1.920000pt;}
.ws39{word-spacing:-1.728000pt;}
.ws35{word-spacing:-1.664000pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws75{word-spacing:-0.896000pt;}
.ws34{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.449280pt;}
.ws5a{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.340480pt;}
.ws2a{word-spacing:-0.299520pt;}
.ws2d{word-spacing:-0.256000pt;}
.ws74{word-spacing:-0.171520pt;}
.ws8{word-spacing:-0.170240pt;}
.wsb{word-spacing:-0.128000pt;}
.ws19{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.ws50{word-spacing:0.064000pt;}
.ws72{word-spacing:0.128000pt;}
.ws25{word-spacing:0.192000pt;}
.wse{word-spacing:0.256000pt;}
.ws33{word-spacing:0.299520pt;}
.ws52{word-spacing:0.512000pt;}
.ws37{word-spacing:0.640000pt;}
.ws89{word-spacing:0.832000pt;}
.ws67{word-spacing:0.896000pt;}
.wsa{word-spacing:1.152000pt;}
.ws21{word-spacing:1.280000pt;}
.ws76{word-spacing:1.536000pt;}
.ws84{word-spacing:1.664000pt;}
.ws66{word-spacing:1.792000pt;}
.ws1d{word-spacing:1.920000pt;}
.ws4c{word-spacing:2.176000pt;}
.ws83{word-spacing:2.432000pt;}
.wsc{word-spacing:2.560000pt;}
.ws62{word-spacing:2.816000pt;}
.ws15{word-spacing:3.200000pt;}
.ws24{word-spacing:3.456000pt;}
.ws3c{word-spacing:3.840000pt;}
.ws29{word-spacing:4.096000pt;}
.ws28{word-spacing:4.480000pt;}
.ws31{word-spacing:5.120000pt;}
.ws82{word-spacing:5.376000pt;}
.ws40{word-spacing:5.760000pt;}
.ws53{word-spacing:6.016000pt;}
.ws5e{word-spacing:6.272000pt;}
.ws1b{word-spacing:6.400000pt;}
.ws78{word-spacing:6.912000pt;}
.ws5f{word-spacing:6.976000pt;}
.ws30{word-spacing:7.040000pt;}
.ws2f{word-spacing:7.296000pt;}
.wsd{word-spacing:7.680000pt;}
.ws7e{word-spacing:8.064000pt;}
.ws23{word-spacing:8.320000pt;}
.ws65{word-spacing:8.704000pt;}
.ws58{word-spacing:8.832000pt;}
.ws1e{word-spacing:8.960000pt;}
.ws7f{word-spacing:9.344000pt;}
.ws13{word-spacing:9.472000pt;}
.ws14{word-spacing:9.600000pt;}
.ws7a{word-spacing:9.856000pt;}
.ws5d{word-spacing:10.112000pt;}
.ws3b{word-spacing:10.240000pt;}
.ws5c{word-spacing:10.496000pt;}
.ws32{word-spacing:10.624000pt;}
.ws7d{word-spacing:10.880000pt;}
.ws7b{word-spacing:11.136000pt;}
.ws1a{word-spacing:11.520000pt;}
.ws7c{word-spacing:11.904000pt;}
.ws80{word-spacing:12.032000pt;}
.ws4a{word-spacing:12.160000pt;}
.ws61{word-spacing:12.416000pt;}
.ws44{word-spacing:12.800000pt;}
.ws70{word-spacing:13.056000pt;}
.ws27{word-spacing:13.312000pt;}
.ws6e{word-spacing:13.440000pt;}
.ws6d{word-spacing:13.696000pt;}
.ws54{word-spacing:13.952000pt;}
.ws63{word-spacing:14.016000pt;}
.ws8d{word-spacing:14.208000pt;}
.ws6a{word-spacing:14.336000pt;}
.ws11{word-spacing:14.720000pt;}
.ws38{word-spacing:15.360000pt;}
.ws88{word-spacing:15.616000pt;}
.ws26{word-spacing:16.000000pt;}
.ws4b{word-spacing:16.256000pt;}
.ws6f{word-spacing:16.640000pt;}
.ws36{word-spacing:17.280000pt;}
.ws3d{word-spacing:17.920000pt;}
.ws47{word-spacing:18.560000pt;}
.ws85{word-spacing:18.816000pt;}
.ws64{word-spacing:19.200000pt;}
.ws10{word-spacing:19.840000pt;}
.ws81{word-spacing:20.096000pt;}
.ws2c{word-spacing:20.480000pt;}
.ws56{word-spacing:20.736000pt;}
.ws79{word-spacing:21.760000pt;}
.ws42{word-spacing:22.016000pt;}
.ws41{word-spacing:23.040000pt;}
.ws86{word-spacing:23.296000pt;}
.ws49{word-spacing:23.680000pt;}
.ws48{word-spacing:23.936000pt;}
.ws59{word-spacing:24.320000pt;}
.ws3a{word-spacing:24.576000pt;}
.ws18{word-spacing:25.600000pt;}
.ws55{word-spacing:25.856000pt;}
.ws6b{word-spacing:26.240000pt;}
.ws6c{word-spacing:26.496000pt;}
.ws69{word-spacing:28.160000pt;}
.wsf{word-spacing:29.440000pt;}
.ws2e{word-spacing:30.720000pt;}
.ws4f{word-spacing:31.360000pt;}
.ws8e{word-spacing:32.512000pt;}
.ws60{word-spacing:32.640000pt;}
.ws2b{word-spacing:34.560000pt;}
.ws4d{word-spacing:35.200000pt;}
.ws4e{word-spacing:35.840000pt;}
.ws3e{word-spacing:37.120000pt;}
.ws3f{word-spacing:38.016000pt;}
.ws73{word-spacing:39.040000pt;}
.ws8a{word-spacing:41.600000pt;}
.ws68{word-spacing:81.280000pt;}
._27{margin-left:-31.085056pt;}
._32{margin-left:-18.122240pt;}
._30{margin-left:-12.800000pt;}
._20{margin-left:-11.155456pt;}
._1d{margin-left:-7.460608pt;}
._1f{margin-left:-6.528512pt;}
._b{margin-left:-3.776000pt;}
._6{margin-left:-2.292736pt;}
._0{margin-left:-0.947968pt;}
._1{width:0.898560pt;}
._2{width:2.432000pt;}
._3{width:3.389440pt;}
._11{width:4.866560pt;}
._12{width:5.984256pt;}
._4{width:7.168000pt;}
._5{width:8.064000pt;}
._16{width:9.152000pt;}
._f{width:10.368000pt;}
._10{width:11.322880pt;}
._1a{width:12.288000pt;}
._c{width:13.248000pt;}
._a{width:14.528000pt;}
._14{width:16.896000pt;}
._15{width:18.112000pt;}
._8{width:19.200000pt;}
._9{width:20.480000pt;}
._13{width:21.373440pt;}
._18{width:22.483712pt;}
._19{width:23.744000pt;}
._e{width:24.829440pt;}
._d{width:25.792000pt;}
._31{width:26.944000pt;}
._2d{width:27.840000pt;}
._7{width:29.440000pt;}
._1e{width:30.695936pt;}
._24{width:31.872000pt;}
._23{width:32.792064pt;}
._1b{width:33.971968pt;}
._1c{width:35.340032pt;}
._2f{width:36.441600pt;}
._22{width:37.568000pt;}
._2e{width:39.546880pt;}
._26{width:40.987904pt;}
._2a{width:44.800000pt;}
._25{width:47.552000pt;}
._2c{width:49.280000pt;}
._21{width:59.520000pt;}
._2b{width:81.856000pt;}
._17{width:97.280000pt;}
._29{width:112.000000pt;}
._28{width:172.800000pt;}
._33{width:752.000000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.ye6{bottom:98.560000pt;}
.y45{bottom:103.200000pt;}
.y100{bottom:105.280000pt;}
.y105{bottom:112.320000pt;}
.ycd{bottom:112.800000pt;}
.yaf{bottom:114.720000pt;}
.y12d{bottom:116.000000pt;}
.y125{bottom:119.200000pt;}
.y8e{bottom:123.040000pt;}
.ye5{bottom:126.240000pt;}
.y84{bottom:130.240000pt;}
.y44{bottom:130.720000pt;}
.yff{bottom:132.960000pt;}
.y66{bottom:136.960000pt;}
.ycc{bottom:140.480000pt;}
.y104{bottom:141.120000pt;}
.yae{bottom:142.080000pt;}
.y14d{bottom:142.400000pt;}
.y12c{bottom:143.520000pt;}
.y124{bottom:146.720000pt;}
.y22{bottom:148.800000pt;}
.y8d{bottom:150.560000pt;}
.ye4{bottom:153.760000pt;}
.y83{bottom:157.760000pt;}
.y43{bottom:158.400000pt;}
.yfe{bottom:160.480000pt;}
.y65{bottom:164.480000pt;}
.ycb{bottom:168.000000pt;}
.y14c{bottom:169.920000pt;}
.y103{bottom:170.080000pt;}
.yad{bottom:171.040000pt;}
.y123{bottom:175.520000pt;}
.y21{bottom:176.320000pt;}
.y12b{bottom:177.920000pt;}
.y8c{bottom:178.240000pt;}
.ye3{bottom:181.280000pt;}
.y82{bottom:185.440000pt;}
.y42{bottom:185.920000pt;}
.yfd{bottom:188.160000pt;}
.y64{bottom:193.280000pt;}
.yca{bottom:195.680000pt;}
.y102{bottom:197.440000pt;}
.y14b{bottom:197.600000pt;}
.yac{bottom:198.560000pt;}
.y20{bottom:204.000000pt;}
.y122{bottom:204.320000pt;}
.y8b{bottom:205.760000pt;}
.ye2{bottom:208.960000pt;}
.y81{bottom:212.960000pt;}
.y41{bottom:213.600000pt;}
.yfc{bottom:215.680000pt;}
.y63{bottom:222.080000pt;}
.yc9{bottom:223.200000pt;}
.y14a{bottom:225.120000pt;}
.yab{bottom:226.080000pt;}
.y1f{bottom:231.520000pt;}
.y121{bottom:232.000000pt;}
.y101{bottom:233.120000pt;}
.y8a{bottom:233.440000pt;}
.ye1{bottom:236.480000pt;}
.y80{bottom:240.640000pt;}
.y40{bottom:241.120000pt;}
.yfb{bottom:243.200000pt;}
.y62{bottom:249.760000pt;}
.yc8{bottom:250.880000pt;}
.y149{bottom:252.800000pt;}
.yaa{bottom:255.040000pt;}
.y1e{bottom:259.200000pt;}
.y120{bottom:259.520000pt;}
.ye0{bottom:264.160000pt;}
.y89{bottom:267.840000pt;}
.y7f{bottom:268.160000pt;}
.y3f{bottom:268.800000pt;}
.yfa{bottom:270.880000pt;}
.y61{bottom:277.280000pt;}
.y148{bottom:280.320000pt;}
.ya9{bottom:282.560000pt;}
.y1d{bottom:286.720000pt;}
.y11f{bottom:287.200000pt;}
.yc7{bottom:291.680000pt;}
.y7e{bottom:295.840000pt;}
.y3e{bottom:296.320000pt;}
.yf9{bottom:298.400000pt;}
.y60{bottom:304.800000pt;}
.y88{bottom:306.080000pt;}
.y147{bottom:308.000000pt;}
.ya8{bottom:310.080000pt;}
.y1c{bottom:314.400000pt;}
.y11e{bottom:314.720000pt;}
.yc6{bottom:319.360000pt;}
.y7d{bottom:323.360000pt;}
.y3d{bottom:324.000000pt;}
.yf8{bottom:326.080000pt;}
.y5f{bottom:333.600000pt;}
.y146{bottom:335.520000pt;}
.ya7{bottom:337.760000pt;}
.y1b{bottom:341.920000pt;}
.y11d{bottom:342.400000pt;}
.yc5{bottom:346.880000pt;}
.y7c{bottom:351.040000pt;}
.y3c{bottom:351.520000pt;}
.yf7{bottom:353.600000pt;}
.y5e{bottom:361.120000pt;}
.y87{bottom:361.280000pt;}
.y145{bottom:363.200000pt;}
.ya6{bottom:365.280000pt;}
.y1a{bottom:369.600000pt;}
.y11c{bottom:369.920000pt;}
.yc4{bottom:374.400000pt;}
.ydf{bottom:374.560000pt;}
.y7b{bottom:378.560000pt;}
.y3b{bottom:379.200000pt;}
.yf6{bottom:381.280000pt;}
.y86{bottom:388.800000pt;}
.y5d{bottom:389.920000pt;}
.y144{bottom:390.720000pt;}
.ya5{bottom:392.800000pt;}
.y19{bottom:397.120000pt;}
.y11b{bottom:397.600000pt;}
.yde{bottom:402.080000pt;}
.yc3{bottom:403.360000pt;}
.y7a{bottom:406.240000pt;}
.y3a{bottom:406.720000pt;}
.y5c{bottom:417.600000pt;}
.y143{bottom:418.400000pt;}
.yf5{bottom:419.520000pt;}
.ya4{bottom:421.760000pt;}
.y85{bottom:423.840000pt;}
.y18{bottom:424.800000pt;}
.y11a{bottom:425.120000pt;}
.ydd{bottom:429.760000pt;}
.yc2{bottom:430.880000pt;}
.y79{bottom:433.760000pt;}
.y39{bottom:434.400000pt;}
.y5b{bottom:445.120000pt;}
.y142{bottom:445.920000pt;}
.yf4{bottom:447.200000pt;}
.ya3{bottom:449.280000pt;}
.y17{bottom:452.320000pt;}
.y119{bottom:452.800000pt;}
.ydc{bottom:457.280000pt;}
.yc1{bottom:458.560000pt;}
.y78{bottom:461.440000pt;}
.y38{bottom:461.920000pt;}
.y5a{bottom:472.640000pt;}
.y141{bottom:473.600000pt;}
.yf3{bottom:474.720000pt;}
.ya2{bottom:476.960000pt;}
.y16{bottom:480.000000pt;}
.y118{bottom:480.320000pt;}
.ydb{bottom:484.960000pt;}
.yc0{bottom:486.080000pt;}
.y77{bottom:488.960000pt;}
.y37{bottom:489.600000pt;}
.y140{bottom:501.120000pt;}
.y59{bottom:501.440000pt;}
.yf2{bottom:502.400000pt;}
.ya1{bottom:504.480000pt;}
.y15{bottom:507.520000pt;}
.y117{bottom:508.000000pt;}
.yda{bottom:512.480000pt;}
.ybf{bottom:513.600000pt;}
.y76{bottom:516.640000pt;}
.y36{bottom:517.120000pt;}
.y13f{bottom:528.800000pt;}
.y58{bottom:529.120000pt;}
.yf1{bottom:529.920000pt;}
.ya0{bottom:532.160000pt;}
.y14{bottom:535.200000pt;}
.y116{bottom:535.520000pt;}
.yd9{bottom:540.160000pt;}
.ybe{bottom:542.400000pt;}
.y75{bottom:544.160000pt;}
.y35{bottom:544.800000pt;}
.y13e{bottom:556.320000pt;}
.y57{bottom:556.640000pt;}
.yf0{bottom:557.440000pt;}
.y9f{bottom:559.680000pt;}
.y13{bottom:562.720000pt;}
.y115{bottom:563.200000pt;}
.y12a{bottom:567.520000pt;}
.yd8{bottom:567.680000pt;}
.ybd{bottom:570.080000pt;}
.y74{bottom:571.840000pt;}
.y34{bottom:572.320000pt;}
.y13d{bottom:583.840000pt;}
.y56{bottom:584.320000pt;}
.yef{bottom:585.120000pt;}
.y9e{bottom:587.360000pt;}
.y12{bottom:590.400000pt;}
.y114{bottom:590.720000pt;}
.yd7{bottom:595.360000pt;}
.y129{bottom:596.320000pt;}
.ybc{bottom:597.600000pt;}
.y73{bottom:599.360000pt;}
.y33{bottom:599.840000pt;}
.y13c{bottom:611.520000pt;}
.y55{bottom:611.840000pt;}
.yee{bottom:612.640000pt;}
.y9d{bottom:614.880000pt;}
.y11{bottom:617.760000pt;}
.y113{bottom:618.240000pt;}
.yd6{bottom:622.720000pt;}
.ybb{bottom:625.280000pt;}
.y32{bottom:627.520000pt;}
.y13b{bottom:639.040000pt;}
.y72{bottom:640.160000pt;}
.yed{bottom:640.320000pt;}
.y54{bottom:640.640000pt;}
.y9c{bottom:642.400000pt;}
.y10{bottom:646.720000pt;}
.y112{bottom:647.040000pt;}
.yd5{bottom:651.680000pt;}
.yba{bottom:652.800000pt;}
.y31{bottom:655.040000pt;}
.y13a{bottom:666.720000pt;}
.yec{bottom:667.840000pt;}
.y53{bottom:668.320000pt;}
.y71{bottom:668.960000pt;}
.y9b{bottom:671.040000pt;}
.yf{bottom:674.240000pt;}
.y111{bottom:674.560000pt;}
.yd4{bottom:679.200000pt;}
.yb9{bottom:680.480000pt;}
.y30{bottom:682.720000pt;}
.y139{bottom:694.240000pt;}
.yeb{bottom:695.520000pt;}
.y52{bottom:695.840000pt;}
.y70{bottom:697.760000pt;}
.y9a{bottom:700.000000pt;}
.ye{bottom:701.760000pt;}
.y110{bottom:703.360000pt;}
.yd3{bottom:706.720000pt;}
.yb8{bottom:708.000000pt;}
.y2f{bottom:710.240000pt;}
.y138{bottom:721.920000pt;}
.yea{bottom:723.040000pt;}
.y51{bottom:723.360000pt;}
.y6f{bottom:726.560000pt;}
.y99{bottom:727.520000pt;}
.yd{bottom:730.560000pt;}
.y10f{bottom:731.040000pt;}
.y128{bottom:735.520000pt;}
.yb7{bottom:735.680000pt;}
.y2e{bottom:737.920000pt;}
.y137{bottom:749.440000pt;}
.ye9{bottom:750.720000pt;}
.y50{bottom:752.160000pt;}
.y6e{bottom:754.080000pt;}
.y98{bottom:755.200000pt;}
.yc{bottom:758.240000pt;}
.y10e{bottom:758.560000pt;}
.yb6{bottom:763.200000pt;}
.y127{bottom:764.320000pt;}
.y2d{bottom:765.440000pt;}
.y136{bottom:777.120000pt;}
.ye8{bottom:778.240000pt;}
.y4f{bottom:779.840000pt;}
.y97{bottom:782.560000pt;}
.y6d{bottom:782.720000pt;}
.yb{bottom:785.760000pt;}
.y10d{bottom:786.080000pt;}
.yb5{bottom:790.720000pt;}
.yd2{bottom:790.880000pt;}
.y126{bottom:792.000000pt;}
.y2c{bottom:793.120000pt;}
.y135{bottom:804.640000pt;}
.y4e{bottom:807.360000pt;}
.y96{bottom:811.360000pt;}
.y6c{bottom:811.520000pt;}
.ye7{bottom:812.640000pt;}
.ya{bottom:813.440000pt;}
.y10c{bottom:814.880000pt;}
.yd1{bottom:818.400000pt;}
.yb4{bottom:819.520000pt;}
.y2b{bottom:820.640000pt;}
.y134{bottom:832.320000pt;}
.y4d{bottom:834.880000pt;}
.y95{bottom:840.160000pt;}
.y6b{bottom:840.320000pt;}
.y9{bottom:840.960000pt;}
.y10b{bottom:843.680000pt;}
.yd0{bottom:845.920000pt;}
.yb3{bottom:847.200000pt;}
.y2a{bottom:848.320000pt;}
.y133{bottom:859.840000pt;}
.y4c{bottom:863.520000pt;}
.y8{bottom:868.640000pt;}
.y94{bottom:868.800000pt;}
.y6a{bottom:868.960000pt;}
.y10a{bottom:871.200000pt;}
.yb2{bottom:874.720000pt;}
.y29{bottom:875.840000pt;}
.y132{bottom:887.520000pt;}
.y4b{bottom:892.480000pt;}
.y7{bottom:896.160000pt;}
.y93{bottom:897.600000pt;}
.y69{bottom:897.920000pt;}
.y109{bottom:899.840000pt;}
.yb1{bottom:902.400000pt;}
.y28{bottom:903.520000pt;}
.y131{bottom:915.040000pt;}
.y4a{bottom:920.000000pt;}
.y92{bottom:926.400000pt;}
.y108{bottom:928.640000pt;}
.yb0{bottom:929.760000pt;}
.ycf{bottom:929.920000pt;}
.y27{bottom:931.040000pt;}
.y6{bottom:931.200000pt;}
.y130{bottom:942.720000pt;}
.y68{bottom:943.519040pt;}
.y49{bottom:948.800000pt;}
.y91{bottom:955.040000pt;}
.yce{bottom:957.440000pt;}
.y107{bottom:957.600000pt;}
.y26{bottom:958.720000pt;}
.y5{bottom:968.160000pt;}
.y12f{bottom:970.240000pt;}
.y67{bottom:975.680000pt;}
.y48{bottom:976.480000pt;}
.y90{bottom:983.840000pt;}
.y106{bottom:984.960000pt;}
.y25{bottom:986.240000pt;}
.y12e{bottom:997.920000pt;}
.y4{bottom:1003.680000pt;}
.y47{bottom:1004.000000pt;}
.y8f{bottom:1012.640000pt;}
.y24{bottom:1013.920000pt;}
.y46{bottom:1038.880000pt;}
.y23{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.h3{height:52.152500pt;}
.h2{height:56.156250pt;}
.h7{height:56.687500pt;}
.h5{height:57.031250pt;}
.h6{height:66.726562pt;}
.h4{height:75.851562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400000pt;}
.x6{left:112.483520pt;}
.x5{left:118.400000pt;}
.x8{left:122.720000pt;}
.x9{left:126.560000pt;}
.xa{left:132.160000pt;}
.x4{left:141.600000pt;}
.x7{left:151.200000pt;}
.x3{left:262.560000pt;}
.x1{left:388.800000pt;}
}




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