
    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_681fe801920e44b8ecd13b77.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_03712f62bea9ded6c90fc429.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.689941;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_2e9ca11fccc2c297c6a8b682.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.920410;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_90e705b1566378244c6d1a86.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_b62828f181cb8602f14c8b1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_fffe9b01fd35ebd7688e8e10.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_71d403573c6861303c3047d1.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b55404037de0627440e73fa6.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v2{vertical-align:-11.880000px;}
.v3{vertical-align:-6.087960px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.227280px;}
.ls13{letter-spacing:-0.162000px;}
.lsd{letter-spacing:-0.131760px;}
.lsb{letter-spacing:-0.119880px;}
.ls18{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.065880px;}
.lsa{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.006588px;}
.ls8{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.045720px;}
.ls36{letter-spacing:0.046116px;}
.lse{letter-spacing:0.065880px;}
.ls10{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.085644px;}
.ls1{letter-spacing:0.093240px;}
.ls19{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.125172px;}
.ls38{letter-spacing:0.131760px;}
.ls0{letter-spacing:0.135000px;}
.ls15{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.197640px;}
.ls14{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.230580px;}
.ls34{letter-spacing:0.237168px;}
.ls4{letter-spacing:0.263520px;}
.ls12{letter-spacing:0.329400px;}
.ls2e{letter-spacing:0.395280px;}
.ls39{letter-spacing:0.527040px;}
.ls2c{letter-spacing:0.744444px;}
.ls1b{letter-spacing:1.218780px;}
.ls3{letter-spacing:2.635200px;}
.ls22{letter-spacing:3.010716px;}
.ls17{letter-spacing:3.780000px;}
.ls23{letter-spacing:4.018680px;}
.ls2d{letter-spacing:4.743360px;}
.ls1d{letter-spacing:5.468040px;}
.ls1c{letter-spacing:5.685444px;}
.ls25{letter-spacing:7.722000px;}
.ls9{letter-spacing:8.100000px;}
.ls16{letter-spacing:9.420840px;}
.ls33{letter-spacing:9.816120px;}
.ls21{letter-spacing:10.540800px;}
.ls2a{letter-spacing:10.870200px;}
.ls32{letter-spacing:11.285244px;}
.ls2b{letter-spacing:13.452696px;}
.ls6{letter-spacing:15.218280px;}
.ls28{letter-spacing:15.942960px;}
.ls7{letter-spacing:16.997040px;}
.ls26{letter-spacing:17.392320px;}
.ls31{letter-spacing:17.721720px;}
.ls37{letter-spacing:19.012968px;}
.ls24{letter-spacing:22.140000px;}
.ls35{letter-spacing:27.847476px;}
.ls27{letter-spacing:34.257600px;}
.ls29{letter-spacing:36.826920px;}
.ls20{letter-spacing:44.337240px;}
.ls2f{letter-spacing:59.423760px;}
.ls1a{letter-spacing:1125.900000px;}
.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;}
}
.ws80{word-spacing:-65.880000px;}
.wsa7{word-spacing:-17.928000px;}
.ws1{word-spacing:-16.535880px;}
.ws0{word-spacing:-16.470000px;}
.ws29{word-spacing:-16.404120px;}
.ws2{word-spacing:-16.338240px;}
.ws43{word-spacing:-13.392000px;}
.ws44{word-spacing:-13.338000px;}
.wsb8{word-spacing:-0.527040px;}
.ws7a{word-spacing:-0.395280px;}
.ws1d{word-spacing:-0.329400px;}
.wsb{word-spacing:-0.263520px;}
.ws18{word-spacing:-0.197640px;}
.ws55{word-spacing:-0.162000px;}
.ws28{word-spacing:-0.131760px;}
.ws42{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.072000px;}
.wsc{word-spacing:-0.065880px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:0.065880px;}
.ws13{word-spacing:0.072000px;}
.ws2a{word-spacing:0.108000px;}
.ws4{word-spacing:0.119880px;}
.ws8{word-spacing:0.131760px;}
.ws27{word-spacing:0.162000px;}
.ws4d{word-spacing:0.197640px;}
.ws2b{word-spacing:0.270000px;}
.ws3b{word-spacing:0.395280px;}
.wsa6{word-spacing:0.461160px;}
.ws3c{word-spacing:0.527040px;}
.ws2c{word-spacing:0.592920px;}
.wsae{word-spacing:0.790560px;}
.ws71{word-spacing:0.856440px;}
.ws40{word-spacing:0.922320px;}
.ws6c{word-spacing:1.119960px;}
.wsa3{word-spacing:1.317600px;}
.ws3d{word-spacing:1.449360px;}
.ws3e{word-spacing:1.647000px;}
.wsb4{word-spacing:1.844640px;}
.ws79{word-spacing:1.976400px;}
.ws67{word-spacing:2.042280px;}
.ws8b{word-spacing:2.174040px;}
.wsb7{word-spacing:2.305800px;}
.ws9a{word-spacing:2.371680px;}
.ws7{word-spacing:2.569320px;}
.ws23{word-spacing:2.701080px;}
.ws59{word-spacing:2.898720px;}
.ws4e{word-spacing:3.030480px;}
.ws6{word-spacing:3.096360px;}
.ws5f{word-spacing:3.425760px;}
.ws17{word-spacing:3.491640px;}
.ws9b{word-spacing:3.623400px;}
.ws91{word-spacing:3.821040px;}
.ws51{word-spacing:4.150440px;}
.ws50{word-spacing:4.216320px;}
.wsb9{word-spacing:4.348080px;}
.ws84{word-spacing:4.545720px;}
.wse{word-spacing:4.677480px;}
.ws7b{word-spacing:4.743360px;}
.ws8c{word-spacing:4.809240px;}
.ws62{word-spacing:5.204520px;}
.ws7f{word-spacing:5.270400px;}
.ws83{word-spacing:5.533920px;}
.ws20{word-spacing:5.599800px;}
.ws70{word-spacing:5.995080px;}
.ws76{word-spacing:6.126840px;}
.wsab{word-spacing:6.192720px;}
.wsac{word-spacing:6.324480px;}
.ws60{word-spacing:6.653880px;}
.ws4c{word-spacing:6.719760px;}
.ws54{word-spacing:6.750000px;}
.ws8a{word-spacing:6.851520px;}
.ws1f{word-spacing:6.983280px;}
.ws7d{word-spacing:7.049160px;}
.ws52{word-spacing:7.246800px;}
.ws7c{word-spacing:7.444440px;}
.wsaf{word-spacing:7.576200px;}
.ws5{word-spacing:7.707960px;}
.ws25{word-spacing:7.884000px;}
.ws2d{word-spacing:8.169120px;}
.ws24{word-spacing:8.262000px;}
.ws32{word-spacing:8.300880px;}
.ws69{word-spacing:8.498520px;}
.ws5b{word-spacing:8.696160px;}
.ws92{word-spacing:8.827920px;}
.ws30{word-spacing:8.893800px;}
.ws68{word-spacing:9.025560px;}
.ws85{word-spacing:9.157320px;}
.ws38{word-spacing:9.420840px;}
.ws6e{word-spacing:9.486720px;}
.ws1e{word-spacing:9.552600px;}
.ws64{word-spacing:9.882000px;}
.wsd{word-spacing:9.947880px;}
.ws6f{word-spacing:10.211400px;}
.wsa1{word-spacing:10.277280px;}
.ws63{word-spacing:10.606680px;}
.ws31{word-spacing:10.672560px;}
.ws1b{word-spacing:11.001960px;}
.wsa0{word-spacing:11.199600px;}
.ws9f{word-spacing:11.397240px;}
.ws33{word-spacing:11.726640px;}
.ws3f{word-spacing:12.121920px;}
.ws5c{word-spacing:12.451320px;}
.ws6d{word-spacing:12.648960px;}
.ws8e{word-spacing:13.110120px;}
.wsf{word-spacing:13.505400px;}
.ws10{word-spacing:13.571280px;}
.wsbc{word-spacing:13.900680px;}
.ws47{word-spacing:14.295960px;}
.ws5e{word-spacing:14.427720px;}
.ws15{word-spacing:15.284160px;}
.ws78{word-spacing:15.350040px;}
.ws26{word-spacing:15.498000px;}
.ws61{word-spacing:15.613560px;}
.ws9c{word-spacing:15.679440px;}
.ws45{word-spacing:15.877080px;}
.ws6a{word-spacing:16.008840px;}
.ws46{word-spacing:16.074720px;}
.ws37{word-spacing:16.338240px;}
.wsba{word-spacing:16.601760px;}
.ws19{word-spacing:16.733520px;}
.ws1a{word-spacing:16.799400px;}
.ws34{word-spacing:16.931160px;}
.ws66{word-spacing:17.128800px;}
.ws58{word-spacing:17.524080px;}
.ws9e{word-spacing:17.721720px;}
.ws8d{word-spacing:17.853480px;}
.ws53{word-spacing:18.051120px;}
.ws21{word-spacing:18.182880px;}
.ws22{word-spacing:18.248760px;}
.ws6b{word-spacing:18.380520px;}
.ws3a{word-spacing:18.578160px;}
.ws86{word-spacing:18.775800px;}
.wsbd{word-spacing:18.973440px;}
.ws75{word-spacing:19.105200px;}
.wsa2{word-spacing:19.302840px;}
.ws9d{word-spacing:19.698120px;}
.ws72{word-spacing:20.291040px;}
.wsb2{word-spacing:20.883960px;}
.ws8f{word-spacing:21.015720px;}
.ws4f{word-spacing:21.081600px;}
.ws90{word-spacing:21.279240px;}
.ws7e{word-spacing:21.740400px;}
.ws56{word-spacing:22.248000px;}
.ws57{word-spacing:22.302000px;}
.ws1c{word-spacing:22.530960px;}
.wsa4{word-spacing:22.728600px;}
.wsa5{word-spacing:22.860360px;}
.ws4b{word-spacing:23.255640px;}
.ws41{word-spacing:23.328000px;}
.ws81{word-spacing:23.585040px;}
.ws95{word-spacing:23.650920px;}
.wsa8{word-spacing:23.782680px;}
.wsa9{word-spacing:23.980320px;}
.ws97{word-spacing:24.177960px;}
.ws96{word-spacing:24.375600px;}
.ws4a{word-spacing:25.956720px;}
.ws99{word-spacing:26.154360px;}
.ws2f{word-spacing:27.208440px;}
.ws9{word-spacing:27.406080px;}
.wsb1{word-spacing:27.735480px;}
.wsb0{word-spacing:27.933120px;}
.ws39{word-spacing:28.657800px;}
.ws93{word-spacing:29.184840px;}
.ws89{word-spacing:29.580120px;}
.ws88{word-spacing:29.777760px;}
.ws87{word-spacing:30.107160px;}
.ws11{word-spacing:30.436560px;}
.ws49{word-spacing:30.634200px;}
.ws48{word-spacing:30.831840px;}
.ws35{word-spacing:31.161240px;}
.ws73{word-spacing:32.215320px;}
.ws2e{word-spacing:32.281200px;}
.wsaa{word-spacing:33.005880px;}
.ws94{word-spacing:33.862320px;}
.ws5d{word-spacing:34.455240px;}
.wsbb{word-spacing:35.838720px;}
.ws65{word-spacing:36.563400px;}
.wsb3{word-spacing:39.132720px;}
.ws74{word-spacing:39.462120px;}
.ws12{word-spacing:40.186800px;}
.ws5a{word-spacing:40.911480px;}
.ws36{word-spacing:41.767920px;}
.wsb6{word-spacing:42.558480px;}
.wsb5{word-spacing:42.690240px;}
.ws77{word-spacing:43.085520px;}
.ws16{word-spacing:46.116000px;}
.ws82{word-spacing:47.367720px;}
.ws98{word-spacing:65.748240px;}
.wsad{word-spacing:446.402880px;}
._c{margin-left:-6.653880px;}
._18{margin-left:-2.437560px;}
._2{margin-left:-1.014552px;}
._0{width:1.078920px;}
._4{width:2.363040px;}
._3{width:3.392820px;}
._15{width:4.446252px;}
._6{width:5.507568px;}
._7{width:6.534756px;}
._a{width:7.612272px;}
._5{width:9.486720px;}
._16{width:10.563912px;}
._f{width:11.713464px;}
._10{width:13.617396px;}
._9{width:15.459984px;}
._b{width:17.523540px;}
._1e{width:18.588852px;}
._14{width:19.864332px;}
._11{width:21.796128px;}
._12{width:23.467968px;}
._1b{width:24.746040px;}
._17{width:25.890840px;}
._1{width:28.196640px;}
._20{width:29.744820px;}
._8{width:31.086720px;}
._e{width:32.985576px;}
._1a{width:34.641216px;}
._1f{width:35.780940px;}
._23{width:36.804132px;}
._24{width:38.374668px;}
._19{width:40.816656px;}
._13{width:41.973660px;}
._25{width:43.324200px;}
._26{width:44.653464px;}
._1d{width:47.249136px;}
._1c{width:48.467916px;}
._21{width:53.823960px;}
._22{width:55.007748px;}
._28{width:163.553688px;}
._27{width:174.496356px;}
._d{width:1491.048000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.120000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.fs2{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y51{bottom:233.275500px;}
.yae{bottom:245.860290px;}
.ycf{bottom:246.229380px;}
.y22{bottom:248.211000px;}
.y70{bottom:248.215500px;}
.y50{bottom:248.395500px;}
.y21{bottom:263.425500px;}
.yad{bottom:264.405510px;}
.yce{bottom:264.774600px;}
.y6f{bottom:266.400000px;}
.y4f{bottom:266.580000px;}
.y6e{bottom:278.635500px;}
.y52{bottom:279.720000px;}
.y20{bottom:281.610000px;}
.yf8{bottom:282.202920px;}
.yac{bottom:282.950730px;}
.ycd{bottom:283.319820px;}
.y6d{bottom:293.850000px;}
.y23{bottom:294.750000px;}
.yf7{bottom:300.748140px;}
.yab{bottom:301.495950px;}
.y4e{bottom:301.907700px;}
.ycc{bottom:301.947390px;}
.y6c{bottom:311.940000px;}
.yf6{bottom:319.293360px;}
.yaa{bottom:320.123520px;}
.y4d{bottom:320.452920px;}
.ycb{bottom:320.492610px;}
.y6b{bottom:324.171000px;}
.y1f{bottom:327.189870px;}
.yf5{bottom:337.920930px;}
.ya9{bottom:338.668740px;}
.y4c{bottom:338.998140px;}
.yca{bottom:339.037830px;}
.y85{bottom:339.064290px;}
.y6a{bottom:339.385500px;}
.y1e{bottom:345.735090px;}
.y69{bottom:354.600000px;}
.yf4{bottom:356.466150px;}
.ya8{bottom:357.213960px;}
.y4b{bottom:357.543360px;}
.yc9{bottom:357.583050px;}
.y84{bottom:357.609510px;}
.y1d{bottom:364.280310px;}
.y71{bottom:370.620000px;}
.yf3{bottom:375.011370px;}
.ya7{bottom:375.759180px;}
.y4a{bottom:376.170930px;}
.yc8{bottom:376.210620px;}
.y83{bottom:376.237080px;}
.y1c{bottom:382.825530px;}
.yf2{bottom:393.556590px;}
.ya6{bottom:394.386750px;}
.y49{bottom:394.716150px;}
.yc7{bottom:394.755840px;}
.y82{bottom:394.782300px;}
.y1b{bottom:401.453100px;}
.yf1{bottom:412.184160px;}
.ya5{bottom:412.931970px;}
.y48{bottom:413.261370px;}
.yc6{bottom:413.301060px;}
.y81{bottom:413.327520px;}
.y1a{bottom:419.998320px;}
.yf0{bottom:430.729380px;}
.ya4{bottom:431.477190px;}
.y47{bottom:431.806590px;}
.yc5{bottom:431.846280px;}
.y68{bottom:431.867520px;}
.y80{bottom:431.872740px;}
.y19{bottom:438.543540px;}
.yef{bottom:449.274600px;}
.ya3{bottom:450.022410px;}
.y46{bottom:450.434160px;}
.yc4{bottom:450.473850px;}
.y67{bottom:450.495090px;}
.y7f{bottom:450.500310px;}
.y18{bottom:457.088760px;}
.yee{bottom:467.819820px;}
.ya2{bottom:468.649980px;}
.y45{bottom:468.979380px;}
.yc3{bottom:469.019070px;}
.y66{bottom:469.040310px;}
.y7e{bottom:469.045530px;}
.y17{bottom:475.716330px;}
.yed{bottom:486.447390px;}
.ya1{bottom:487.195200px;}
.y44{bottom:487.524600px;}
.yc2{bottom:487.564290px;}
.y65{bottom:487.585530px;}
.y7d{bottom:487.590750px;}
.y16{bottom:494.261550px;}
.yec{bottom:504.992610px;}
.ya0{bottom:505.740420px;}
.y43{bottom:506.069820px;}
.yc1{bottom:506.109510px;}
.y64{bottom:506.130750px;}
.y7c{bottom:506.135970px;}
.y15{bottom:512.806770px;}
.yeb{bottom:523.537830px;}
.y9f{bottom:524.285640px;}
.y42{bottom:524.697390px;}
.yc0{bottom:524.737080px;}
.y63{bottom:524.758320px;}
.y7b{bottom:524.763540px;}
.y14{bottom:531.351990px;}
.yea{bottom:542.083050px;}
.y9e{bottom:542.913210px;}
.y41{bottom:543.242610px;}
.ybf{bottom:543.282300px;}
.y62{bottom:543.303540px;}
.y7a{bottom:543.308760px;}
.y13{bottom:549.979560px;}
.ye9{bottom:560.710620px;}
.y9d{bottom:561.458430px;}
.y40{bottom:561.787830px;}
.ybe{bottom:561.827520px;}
.y61{bottom:561.848760px;}
.y79{bottom:561.853980px;}
.y12{bottom:568.524780px;}
.ye8{bottom:579.255840px;}
.y9c{bottom:580.003650px;}
.y3f{bottom:580.333050px;}
.ybd{bottom:580.372740px;}
.y60{bottom:580.393980px;}
.y78{bottom:580.399200px;}
.y11{bottom:587.070000px;}
.ye7{bottom:597.801060px;}
.y9b{bottom:598.548870px;}
.y3e{bottom:598.960620px;}
.ybc{bottom:599.000310px;}
.y5f{bottom:599.021550px;}
.y77{bottom:599.026770px;}
.ye6{bottom:616.346280px;}
.y9a{bottom:617.176440px;}
.y3d{bottom:617.505840px;}
.ybb{bottom:617.545530px;}
.y5e{bottom:617.566770px;}
.y76{bottom:617.571990px;}
.y10{bottom:624.060000px;}
.ye5{bottom:634.973850px;}
.y99{bottom:635.721660px;}
.y3c{bottom:636.051060px;}
.yba{bottom:636.090750px;}
.y5d{bottom:636.111990px;}
.y75{bottom:636.117210px;}
.ye4{bottom:653.519070px;}
.y98{bottom:654.266880px;}
.y3b{bottom:654.596280px;}
.yb9{bottom:654.635970px;}
.y5c{bottom:654.657210px;}
.y74{bottom:654.662430px;}
.ye3{bottom:672.064290px;}
.y97{bottom:672.812100px;}
.y3a{bottom:673.223850px;}
.yb8{bottom:673.263540px;}
.y5b{bottom:673.284780px;}
.y73{bottom:673.290000px;}
.yf{bottom:679.833180px;}
.ye2{bottom:690.609510px;}
.y96{bottom:691.439670px;}
.y39{bottom:691.769070px;}
.yb7{bottom:691.808760px;}
.y5a{bottom:691.821990px;}
.ye{bottom:698.460750px;}
.ye1{bottom:709.237080px;}
.y95{bottom:709.984890px;}
.y72{bottom:710.280000px;}
.y38{bottom:710.314290px;}
.yb6{bottom:710.353980px;}
.y59{bottom:710.367210px;}
.yd{bottom:717.005970px;}
.ye0{bottom:727.782300px;}
.y94{bottom:728.530110px;}
.y37{bottom:728.859510px;}
.yb5{bottom:728.899200px;}
.y58{bottom:728.912430px;}
.yc{bottom:735.551190px;}
.ydf{bottom:746.327520px;}
.y36{bottom:747.487080px;}
.yb4{bottom:747.526770px;}
.y57{bottom:747.529560px;}
.y93{bottom:749.496420px;}
.yb{bottom:754.096410px;}
.yde{bottom:764.872740px;}
.y35{bottom:766.032300px;}
.yb3{bottom:766.071990px;}
.y56{bottom:766.074780px;}
.y92{bottom:768.041640px;}
.ya{bottom:772.723980px;}
.ydd{bottom:783.500310px;}
.y34{bottom:784.577520px;}
.yb2{bottom:784.617210px;}
.y55{bottom:784.620000px;}
.y91{bottom:789.007950px;}
.y9{bottom:791.269200px;}
.ydc{bottom:802.045530px;}
.y33{bottom:803.122740px;}
.yb1{bottom:803.162430px;}
.y90{bottom:807.553170px;}
.y8{bottom:809.814420px;}
.ydb{bottom:820.590750px;}
.y54{bottom:821.610000px;}
.y32{bottom:821.750310px;}
.yb0{bottom:821.790000px;}
.y7{bottom:828.359640px;}
.y8f{bottom:828.437130px;}
.yda{bottom:839.135970px;}
.y31{bottom:840.295530px;}
.y6{bottom:846.987210px;}
.y8e{bottom:847.064700px;}
.yd9{bottom:857.763540px;}
.yaf{bottom:858.780000px;}
.y30{bottom:858.840750px;}
.y5{bottom:865.532430px;}
.y8d{bottom:867.948660px;}
.yd8{bottom:876.308760px;}
.y2f{bottom:877.385970px;}
.y4{bottom:884.160000px;}
.y8c{bottom:886.576230px;}
.yd7{bottom:894.853980px;}
.y2e{bottom:896.013540px;}
.y8b{bottom:907.460190px;}
.yd6{bottom:913.399200px;}
.y2d{bottom:914.558760px;}
.y8a{bottom:926.087760px;}
.yd5{bottom:932.026770px;}
.y2c{bottom:933.103980px;}
.y89{bottom:946.971720px;}
.y3{bottom:948.780000px;}
.yd4{bottom:950.571990px;}
.y2b{bottom:951.649200px;}
.y88{bottom:965.516940px;}
.yd3{bottom:969.117210px;}
.y2a{bottom:970.276770px;}
.y2{bottom:973.260000px;}
.y87{bottom:986.483250px;}
.yd2{bottom:987.662430px;}
.y29{bottom:988.821990px;}
.y86{bottom:1005.028470px;}
.yd1{bottom:1006.290000px;}
.y28{bottom:1007.367210px;}
.y27{bottom:1025.912430px;}
.y1{bottom:1031.670000px;}
.yd0{bottom:1043.280000px;}
.y26{bottom:1044.540000px;}
.y25{bottom:1072.440000px;}
.y53{bottom:1076.850000px;}
.y24{bottom:1093.860000px;}
.h8{height:33.313359px;}
.ha{height:43.909277px;}
.h9{height:45.193359px;}
.h5{height:55.135898px;}
.he{height:55.177658px;}
.h6{height:55.243178px;}
.hb{height:55.665098px;}
.hd{height:59.238281px;}
.h7{height:64.064355px;}
.hf{height:68.710781px;}
.h2{height:70.200352px;}
.h4{height:70.664062px;}
.h10{height:70.854863px;}
.h11{height:72.647460px;}
.hc{height:72.658620px;}
.h3{height:79.900488px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:178.560000px;}
.x6{left:195.557040px;}
.x4{left:205.562880px;}
.x5{left:232.565940px;}
.x2{left:288.810000px;}
.x1{left:394.110000px;}
@media print{
.v2{vertical-align:-10.560000pt;}
.v3{vertical-align:-5.411520pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.535360pt;}
.ls13{letter-spacing:-0.144000pt;}
.lsd{letter-spacing:-0.117120pt;}
.lsb{letter-spacing:-0.106560pt;}
.ls18{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.058560pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.005856pt;}
.ls8{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.040640pt;}
.ls36{letter-spacing:0.040992pt;}
.lse{letter-spacing:0.058560pt;}
.ls10{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.076128pt;}
.ls1{letter-spacing:0.082880pt;}
.ls19{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.111264pt;}
.ls38{letter-spacing:0.117120pt;}
.ls0{letter-spacing:0.120000pt;}
.ls15{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.175680pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.204960pt;}
.ls34{letter-spacing:0.210816pt;}
.ls4{letter-spacing:0.234240pt;}
.ls12{letter-spacing:0.292800pt;}
.ls2e{letter-spacing:0.351360pt;}
.ls39{letter-spacing:0.468480pt;}
.ls2c{letter-spacing:0.661728pt;}
.ls1b{letter-spacing:1.083360pt;}
.ls3{letter-spacing:2.342400pt;}
.ls22{letter-spacing:2.676192pt;}
.ls17{letter-spacing:3.360000pt;}
.ls23{letter-spacing:3.572160pt;}
.ls2d{letter-spacing:4.216320pt;}
.ls1d{letter-spacing:4.860480pt;}
.ls1c{letter-spacing:5.053728pt;}
.ls25{letter-spacing:6.864000pt;}
.ls9{letter-spacing:7.200000pt;}
.ls16{letter-spacing:8.374080pt;}
.ls33{letter-spacing:8.725440pt;}
.ls21{letter-spacing:9.369600pt;}
.ls2a{letter-spacing:9.662400pt;}
.ls32{letter-spacing:10.031328pt;}
.ls2b{letter-spacing:11.957952pt;}
.ls6{letter-spacing:13.527360pt;}
.ls28{letter-spacing:14.171520pt;}
.ls7{letter-spacing:15.108480pt;}
.ls26{letter-spacing:15.459840pt;}
.ls31{letter-spacing:15.752640pt;}
.ls37{letter-spacing:16.900416pt;}
.ls24{letter-spacing:19.680000pt;}
.ls35{letter-spacing:24.753312pt;}
.ls27{letter-spacing:30.451200pt;}
.ls29{letter-spacing:32.735040pt;}
.ls20{letter-spacing:39.410880pt;}
.ls2f{letter-spacing:52.821120pt;}
.ls1a{letter-spacing:1000.800000pt;}
.ws80{word-spacing:-58.560000pt;}
.wsa7{word-spacing:-15.936000pt;}
.ws1{word-spacing:-14.698560pt;}
.ws0{word-spacing:-14.640000pt;}
.ws29{word-spacing:-14.581440pt;}
.ws2{word-spacing:-14.522880pt;}
.ws43{word-spacing:-11.904000pt;}
.ws44{word-spacing:-11.856000pt;}
.wsb8{word-spacing:-0.468480pt;}
.ws7a{word-spacing:-0.351360pt;}
.ws1d{word-spacing:-0.292800pt;}
.wsb{word-spacing:-0.234240pt;}
.ws18{word-spacing:-0.175680pt;}
.ws55{word-spacing:-0.144000pt;}
.ws28{word-spacing:-0.117120pt;}
.ws42{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.064000pt;}
.wsc{word-spacing:-0.058560pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:0.058560pt;}
.ws13{word-spacing:0.064000pt;}
.ws2a{word-spacing:0.096000pt;}
.ws4{word-spacing:0.106560pt;}
.ws8{word-spacing:0.117120pt;}
.ws27{word-spacing:0.144000pt;}
.ws4d{word-spacing:0.175680pt;}
.ws2b{word-spacing:0.240000pt;}
.ws3b{word-spacing:0.351360pt;}
.wsa6{word-spacing:0.409920pt;}
.ws3c{word-spacing:0.468480pt;}
.ws2c{word-spacing:0.527040pt;}
.wsae{word-spacing:0.702720pt;}
.ws71{word-spacing:0.761280pt;}
.ws40{word-spacing:0.819840pt;}
.ws6c{word-spacing:0.995520pt;}
.wsa3{word-spacing:1.171200pt;}
.ws3d{word-spacing:1.288320pt;}
.ws3e{word-spacing:1.464000pt;}
.wsb4{word-spacing:1.639680pt;}
.ws79{word-spacing:1.756800pt;}
.ws67{word-spacing:1.815360pt;}
.ws8b{word-spacing:1.932480pt;}
.wsb7{word-spacing:2.049600pt;}
.ws9a{word-spacing:2.108160pt;}
.ws7{word-spacing:2.283840pt;}
.ws23{word-spacing:2.400960pt;}
.ws59{word-spacing:2.576640pt;}
.ws4e{word-spacing:2.693760pt;}
.ws6{word-spacing:2.752320pt;}
.ws5f{word-spacing:3.045120pt;}
.ws17{word-spacing:3.103680pt;}
.ws9b{word-spacing:3.220800pt;}
.ws91{word-spacing:3.396480pt;}
.ws51{word-spacing:3.689280pt;}
.ws50{word-spacing:3.747840pt;}
.wsb9{word-spacing:3.864960pt;}
.ws84{word-spacing:4.040640pt;}
.wse{word-spacing:4.157760pt;}
.ws7b{word-spacing:4.216320pt;}
.ws8c{word-spacing:4.274880pt;}
.ws62{word-spacing:4.626240pt;}
.ws7f{word-spacing:4.684800pt;}
.ws83{word-spacing:4.919040pt;}
.ws20{word-spacing:4.977600pt;}
.ws70{word-spacing:5.328960pt;}
.ws76{word-spacing:5.446080pt;}
.wsab{word-spacing:5.504640pt;}
.wsac{word-spacing:5.621760pt;}
.ws60{word-spacing:5.914560pt;}
.ws4c{word-spacing:5.973120pt;}
.ws54{word-spacing:6.000000pt;}
.ws8a{word-spacing:6.090240pt;}
.ws1f{word-spacing:6.207360pt;}
.ws7d{word-spacing:6.265920pt;}
.ws52{word-spacing:6.441600pt;}
.ws7c{word-spacing:6.617280pt;}
.wsaf{word-spacing:6.734400pt;}
.ws5{word-spacing:6.851520pt;}
.ws25{word-spacing:7.008000pt;}
.ws2d{word-spacing:7.261440pt;}
.ws24{word-spacing:7.344000pt;}
.ws32{word-spacing:7.378560pt;}
.ws69{word-spacing:7.554240pt;}
.ws5b{word-spacing:7.729920pt;}
.ws92{word-spacing:7.847040pt;}
.ws30{word-spacing:7.905600pt;}
.ws68{word-spacing:8.022720pt;}
.ws85{word-spacing:8.139840pt;}
.ws38{word-spacing:8.374080pt;}
.ws6e{word-spacing:8.432640pt;}
.ws1e{word-spacing:8.491200pt;}
.ws64{word-spacing:8.784000pt;}
.wsd{word-spacing:8.842560pt;}
.ws6f{word-spacing:9.076800pt;}
.wsa1{word-spacing:9.135360pt;}
.ws63{word-spacing:9.428160pt;}
.ws31{word-spacing:9.486720pt;}
.ws1b{word-spacing:9.779520pt;}
.wsa0{word-spacing:9.955200pt;}
.ws9f{word-spacing:10.130880pt;}
.ws33{word-spacing:10.423680pt;}
.ws3f{word-spacing:10.775040pt;}
.ws5c{word-spacing:11.067840pt;}
.ws6d{word-spacing:11.243520pt;}
.ws8e{word-spacing:11.653440pt;}
.wsf{word-spacing:12.004800pt;}
.ws10{word-spacing:12.063360pt;}
.wsbc{word-spacing:12.356160pt;}
.ws47{word-spacing:12.707520pt;}
.ws5e{word-spacing:12.824640pt;}
.ws15{word-spacing:13.585920pt;}
.ws78{word-spacing:13.644480pt;}
.ws26{word-spacing:13.776000pt;}
.ws61{word-spacing:13.878720pt;}
.ws9c{word-spacing:13.937280pt;}
.ws45{word-spacing:14.112960pt;}
.ws6a{word-spacing:14.230080pt;}
.ws46{word-spacing:14.288640pt;}
.ws37{word-spacing:14.522880pt;}
.wsba{word-spacing:14.757120pt;}
.ws19{word-spacing:14.874240pt;}
.ws1a{word-spacing:14.932800pt;}
.ws34{word-spacing:15.049920pt;}
.ws66{word-spacing:15.225600pt;}
.ws58{word-spacing:15.576960pt;}
.ws9e{word-spacing:15.752640pt;}
.ws8d{word-spacing:15.869760pt;}
.ws53{word-spacing:16.045440pt;}
.ws21{word-spacing:16.162560pt;}
.ws22{word-spacing:16.221120pt;}
.ws6b{word-spacing:16.338240pt;}
.ws3a{word-spacing:16.513920pt;}
.ws86{word-spacing:16.689600pt;}
.wsbd{word-spacing:16.865280pt;}
.ws75{word-spacing:16.982400pt;}
.wsa2{word-spacing:17.158080pt;}
.ws9d{word-spacing:17.509440pt;}
.ws72{word-spacing:18.036480pt;}
.wsb2{word-spacing:18.563520pt;}
.ws8f{word-spacing:18.680640pt;}
.ws4f{word-spacing:18.739200pt;}
.ws90{word-spacing:18.914880pt;}
.ws7e{word-spacing:19.324800pt;}
.ws56{word-spacing:19.776000pt;}
.ws57{word-spacing:19.824000pt;}
.ws1c{word-spacing:20.027520pt;}
.wsa4{word-spacing:20.203200pt;}
.wsa5{word-spacing:20.320320pt;}
.ws4b{word-spacing:20.671680pt;}
.ws41{word-spacing:20.736000pt;}
.ws81{word-spacing:20.964480pt;}
.ws95{word-spacing:21.023040pt;}
.wsa8{word-spacing:21.140160pt;}
.wsa9{word-spacing:21.315840pt;}
.ws97{word-spacing:21.491520pt;}
.ws96{word-spacing:21.667200pt;}
.ws4a{word-spacing:23.072640pt;}
.ws99{word-spacing:23.248320pt;}
.ws2f{word-spacing:24.185280pt;}
.ws9{word-spacing:24.360960pt;}
.wsb1{word-spacing:24.653760pt;}
.wsb0{word-spacing:24.829440pt;}
.ws39{word-spacing:25.473600pt;}
.ws93{word-spacing:25.942080pt;}
.ws89{word-spacing:26.293440pt;}
.ws88{word-spacing:26.469120pt;}
.ws87{word-spacing:26.761920pt;}
.ws11{word-spacing:27.054720pt;}
.ws49{word-spacing:27.230400pt;}
.ws48{word-spacing:27.406080pt;}
.ws35{word-spacing:27.698880pt;}
.ws73{word-spacing:28.635840pt;}
.ws2e{word-spacing:28.694400pt;}
.wsaa{word-spacing:29.338560pt;}
.ws94{word-spacing:30.099840pt;}
.ws5d{word-spacing:30.626880pt;}
.wsbb{word-spacing:31.856640pt;}
.ws65{word-spacing:32.500800pt;}
.wsb3{word-spacing:34.784640pt;}
.ws74{word-spacing:35.077440pt;}
.ws12{word-spacing:35.721600pt;}
.ws5a{word-spacing:36.365760pt;}
.ws36{word-spacing:37.127040pt;}
.wsb6{word-spacing:37.829760pt;}
.wsb5{word-spacing:37.946880pt;}
.ws77{word-spacing:38.298240pt;}
.ws16{word-spacing:40.992000pt;}
.ws82{word-spacing:42.104640pt;}
.ws98{word-spacing:58.442880pt;}
.wsad{word-spacing:396.802560pt;}
._c{margin-left:-5.914560pt;}
._18{margin-left:-2.166720pt;}
._2{margin-left:-0.901824pt;}
._0{width:0.959040pt;}
._4{width:2.100480pt;}
._3{width:3.015840pt;}
._15{width:3.952224pt;}
._6{width:4.895616pt;}
._7{width:5.808672pt;}
._a{width:6.766464pt;}
._5{width:8.432640pt;}
._16{width:9.390144pt;}
._f{width:10.411968pt;}
._10{width:12.104352pt;}
._9{width:13.742208pt;}
._b{width:15.576480pt;}
._1e{width:16.523424pt;}
._14{width:17.657184pt;}
._11{width:19.374336pt;}
._12{width:20.860416pt;}
._1b{width:21.996480pt;}
._17{width:23.014080pt;}
._1{width:25.063680pt;}
._20{width:26.439840pt;}
._8{width:27.632640pt;}
._e{width:29.320512pt;}
._1a{width:30.792192pt;}
._1f{width:31.805280pt;}
._23{width:32.714784pt;}
._24{width:34.110816pt;}
._19{width:36.281472pt;}
._13{width:37.309920pt;}
._25{width:38.510400pt;}
._26{width:39.691968pt;}
._1d{width:41.999232pt;}
._1c{width:43.082592pt;}
._21{width:47.843520pt;}
._22{width:48.895776pt;}
._28{width:145.381056pt;}
._27{width:155.107872pt;}
._d{width:1325.376000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.440000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.fs2{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:207.356000pt;}
.yae{bottom:218.542480pt;}
.ycf{bottom:218.870560pt;}
.y22{bottom:220.632000pt;}
.y70{bottom:220.636000pt;}
.y50{bottom:220.796000pt;}
.y21{bottom:234.156000pt;}
.yad{bottom:235.027120pt;}
.yce{bottom:235.355200pt;}
.y6f{bottom:236.800000pt;}
.y4f{bottom:236.960000pt;}
.y6e{bottom:247.676000pt;}
.y52{bottom:248.640000pt;}
.y20{bottom:250.320000pt;}
.yf8{bottom:250.847040pt;}
.yac{bottom:251.511760pt;}
.ycd{bottom:251.839840pt;}
.y6d{bottom:261.200000pt;}
.y23{bottom:262.000000pt;}
.yf7{bottom:267.331680pt;}
.yab{bottom:267.996400pt;}
.y4e{bottom:268.362400pt;}
.ycc{bottom:268.397680pt;}
.y6c{bottom:277.280000pt;}
.yf6{bottom:283.816320pt;}
.yaa{bottom:284.554240pt;}
.y4d{bottom:284.847040pt;}
.ycb{bottom:284.882320pt;}
.y6b{bottom:288.152000pt;}
.y1f{bottom:290.835440pt;}
.yf5{bottom:300.374160pt;}
.ya9{bottom:301.038880pt;}
.y4c{bottom:301.331680pt;}
.yca{bottom:301.366960pt;}
.y85{bottom:301.390480pt;}
.y6a{bottom:301.676000pt;}
.y1e{bottom:307.320080pt;}
.y69{bottom:315.200000pt;}
.yf4{bottom:316.858800pt;}
.ya8{bottom:317.523520pt;}
.y4b{bottom:317.816320pt;}
.yc9{bottom:317.851600pt;}
.y84{bottom:317.875120pt;}
.y1d{bottom:323.804720pt;}
.y71{bottom:329.440000pt;}
.yf3{bottom:333.343440pt;}
.ya7{bottom:334.008160pt;}
.y4a{bottom:334.374160pt;}
.yc8{bottom:334.409440pt;}
.y83{bottom:334.432960pt;}
.y1c{bottom:340.289360pt;}
.yf2{bottom:349.828080pt;}
.ya6{bottom:350.566000pt;}
.y49{bottom:350.858800pt;}
.yc7{bottom:350.894080pt;}
.y82{bottom:350.917600pt;}
.y1b{bottom:356.847200pt;}
.yf1{bottom:366.385920pt;}
.ya5{bottom:367.050640pt;}
.y48{bottom:367.343440pt;}
.yc6{bottom:367.378720pt;}
.y81{bottom:367.402240pt;}
.y1a{bottom:373.331840pt;}
.yf0{bottom:382.870560pt;}
.ya4{bottom:383.535280pt;}
.y47{bottom:383.828080pt;}
.yc5{bottom:383.863360pt;}
.y68{bottom:383.882240pt;}
.y80{bottom:383.886880pt;}
.y19{bottom:389.816480pt;}
.yef{bottom:399.355200pt;}
.ya3{bottom:400.019920pt;}
.y46{bottom:400.385920pt;}
.yc4{bottom:400.421200pt;}
.y67{bottom:400.440080pt;}
.y7f{bottom:400.444720pt;}
.y18{bottom:406.301120pt;}
.yee{bottom:415.839840pt;}
.ya2{bottom:416.577760pt;}
.y45{bottom:416.870560pt;}
.yc3{bottom:416.905840pt;}
.y66{bottom:416.924720pt;}
.y7e{bottom:416.929360pt;}
.y17{bottom:422.858960pt;}
.yed{bottom:432.397680pt;}
.ya1{bottom:433.062400pt;}
.y44{bottom:433.355200pt;}
.yc2{bottom:433.390480pt;}
.y65{bottom:433.409360pt;}
.y7d{bottom:433.414000pt;}
.y16{bottom:439.343600pt;}
.yec{bottom:448.882320pt;}
.ya0{bottom:449.547040pt;}
.y43{bottom:449.839840pt;}
.yc1{bottom:449.875120pt;}
.y64{bottom:449.894000pt;}
.y7c{bottom:449.898640pt;}
.y15{bottom:455.828240pt;}
.yeb{bottom:465.366960pt;}
.y9f{bottom:466.031680pt;}
.y42{bottom:466.397680pt;}
.yc0{bottom:466.432960pt;}
.y63{bottom:466.451840pt;}
.y7b{bottom:466.456480pt;}
.y14{bottom:472.312880pt;}
.yea{bottom:481.851600pt;}
.y9e{bottom:482.589520pt;}
.y41{bottom:482.882320pt;}
.ybf{bottom:482.917600pt;}
.y62{bottom:482.936480pt;}
.y7a{bottom:482.941120pt;}
.y13{bottom:488.870720pt;}
.ye9{bottom:498.409440pt;}
.y9d{bottom:499.074160pt;}
.y40{bottom:499.366960pt;}
.ybe{bottom:499.402240pt;}
.y61{bottom:499.421120pt;}
.y79{bottom:499.425760pt;}
.y12{bottom:505.355360pt;}
.ye8{bottom:514.894080pt;}
.y9c{bottom:515.558800pt;}
.y3f{bottom:515.851600pt;}
.ybd{bottom:515.886880pt;}
.y60{bottom:515.905760pt;}
.y78{bottom:515.910400pt;}
.y11{bottom:521.840000pt;}
.ye7{bottom:531.378720pt;}
.y9b{bottom:532.043440pt;}
.y3e{bottom:532.409440pt;}
.ybc{bottom:532.444720pt;}
.y5f{bottom:532.463600pt;}
.y77{bottom:532.468240pt;}
.ye6{bottom:547.863360pt;}
.y9a{bottom:548.601280pt;}
.y3d{bottom:548.894080pt;}
.ybb{bottom:548.929360pt;}
.y5e{bottom:548.948240pt;}
.y76{bottom:548.952880pt;}
.y10{bottom:554.720000pt;}
.ye5{bottom:564.421200pt;}
.y99{bottom:565.085920pt;}
.y3c{bottom:565.378720pt;}
.yba{bottom:565.414000pt;}
.y5d{bottom:565.432880pt;}
.y75{bottom:565.437520pt;}
.ye4{bottom:580.905840pt;}
.y98{bottom:581.570560pt;}
.y3b{bottom:581.863360pt;}
.yb9{bottom:581.898640pt;}
.y5c{bottom:581.917520pt;}
.y74{bottom:581.922160pt;}
.ye3{bottom:597.390480pt;}
.y97{bottom:598.055200pt;}
.y3a{bottom:598.421200pt;}
.yb8{bottom:598.456480pt;}
.y5b{bottom:598.475360pt;}
.y73{bottom:598.480000pt;}
.yf{bottom:604.296160pt;}
.ye2{bottom:613.875120pt;}
.y96{bottom:614.613040pt;}
.y39{bottom:614.905840pt;}
.yb7{bottom:614.941120pt;}
.y5a{bottom:614.952880pt;}
.ye{bottom:620.854000pt;}
.ye1{bottom:630.432960pt;}
.y95{bottom:631.097680pt;}
.y72{bottom:631.360000pt;}
.y38{bottom:631.390480pt;}
.yb6{bottom:631.425760pt;}
.y59{bottom:631.437520pt;}
.yd{bottom:637.338640pt;}
.ye0{bottom:646.917600pt;}
.y94{bottom:647.582320pt;}
.y37{bottom:647.875120pt;}
.yb5{bottom:647.910400pt;}
.y58{bottom:647.922160pt;}
.yc{bottom:653.823280pt;}
.ydf{bottom:663.402240pt;}
.y36{bottom:664.432960pt;}
.yb4{bottom:664.468240pt;}
.y57{bottom:664.470720pt;}
.y93{bottom:666.219040pt;}
.yb{bottom:670.307920pt;}
.yde{bottom:679.886880pt;}
.y35{bottom:680.917600pt;}
.yb3{bottom:680.952880pt;}
.y56{bottom:680.955360pt;}
.y92{bottom:682.703680pt;}
.ya{bottom:686.865760pt;}
.ydd{bottom:696.444720pt;}
.y34{bottom:697.402240pt;}
.yb2{bottom:697.437520pt;}
.y55{bottom:697.440000pt;}
.y91{bottom:701.340400pt;}
.y9{bottom:703.350400pt;}
.ydc{bottom:712.929360pt;}
.y33{bottom:713.886880pt;}
.yb1{bottom:713.922160pt;}
.y90{bottom:717.825040pt;}
.y8{bottom:719.835040pt;}
.ydb{bottom:729.414000pt;}
.y54{bottom:730.320000pt;}
.y32{bottom:730.444720pt;}
.yb0{bottom:730.480000pt;}
.y7{bottom:736.319680pt;}
.y8f{bottom:736.388560pt;}
.yda{bottom:745.898640pt;}
.y31{bottom:746.929360pt;}
.y6{bottom:752.877520pt;}
.y8e{bottom:752.946400pt;}
.yd9{bottom:762.456480pt;}
.yaf{bottom:763.360000pt;}
.y30{bottom:763.414000pt;}
.y5{bottom:769.362160pt;}
.y8d{bottom:771.509920pt;}
.yd8{bottom:778.941120pt;}
.y2f{bottom:779.898640pt;}
.y4{bottom:785.920000pt;}
.y8c{bottom:788.067760pt;}
.yd7{bottom:795.425760pt;}
.y2e{bottom:796.456480pt;}
.y8b{bottom:806.631280pt;}
.yd6{bottom:811.910400pt;}
.y2d{bottom:812.941120pt;}
.y8a{bottom:823.189120pt;}
.yd5{bottom:828.468240pt;}
.y2c{bottom:829.425760pt;}
.y89{bottom:841.752640pt;}
.y3{bottom:843.360000pt;}
.yd4{bottom:844.952880pt;}
.y2b{bottom:845.910400pt;}
.y88{bottom:858.237280pt;}
.yd3{bottom:861.437520pt;}
.y2a{bottom:862.468240pt;}
.y2{bottom:865.120000pt;}
.y87{bottom:876.874000pt;}
.yd2{bottom:877.922160pt;}
.y29{bottom:878.952880pt;}
.y86{bottom:893.358640pt;}
.yd1{bottom:894.480000pt;}
.y28{bottom:895.437520pt;}
.y27{bottom:911.922160pt;}
.y1{bottom:917.040000pt;}
.yd0{bottom:927.360000pt;}
.y26{bottom:928.480000pt;}
.y25{bottom:953.280000pt;}
.y53{bottom:957.200000pt;}
.y24{bottom:972.320000pt;}
.h8{height:29.611875pt;}
.ha{height:39.030469pt;}
.h9{height:40.171875pt;}
.h5{height:49.009687pt;}
.he{height:49.046807pt;}
.h6{height:49.105048pt;}
.hb{height:49.480087pt;}
.hd{height:52.656250pt;}
.h7{height:56.946094pt;}
.hf{height:61.076250pt;}
.h2{height:62.400312pt;}
.h4{height:62.812500pt;}
.h10{height:62.982100pt;}
.h11{height:64.575520pt;}
.hc{height:64.585440pt;}
.h3{height:71.022656pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:158.720000pt;}
.x6{left:173.828480pt;}
.x4{left:182.722560pt;}
.x5{left:206.725280pt;}
.x2{left:256.720000pt;}
.x1{left:350.320000pt;}
}




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