
    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_84f8653f0c51206a96a36399.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.908000;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_55019ecff5aacee8d5e75340.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990000;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_7b54a71f74a184ac10c23347.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_30f1b565cc9cc4d2d88af491.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.628000;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_e997d221d2c0d329dfc3296d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.206000px;}
.v1{vertical-align:156.000000px;}
.ls4{letter-spacing:-5.250000px;}
.ls3{letter-spacing:-3.750000px;}
.ls6{letter-spacing:-1.092000px;}
.ls7{letter-spacing:-0.813667px;}
.ls5{letter-spacing:-0.756000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000024px;}
.ls8{letter-spacing:0.000084px;}
.lsa{letter-spacing:0.000240px;}
.ls0{letter-spacing:0.333000px;}
.ls1{letter-spacing:0.888000px;}
.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;}
}
.ws3{word-spacing:-21.336146px;}
.ws0{word-spacing:-19.992000px;}
.ws85{word-spacing:-17.319000px;}
.ws1{word-spacing:-14.818500px;}
.ws2e{word-spacing:-14.084400px;}
.wse5{word-spacing:-13.036800px;}
.wsb6{word-spacing:-12.499200px;}
.ws116{word-spacing:-11.325600px;}
.ws117{word-spacing:-10.483200px;}
.wsf{word-spacing:-8.168952px;}
.ws31{word-spacing:-4.365000px;}
.wsea{word-spacing:-4.248600px;}
.ws101{word-spacing:-4.074000px;}
.wsc6{word-spacing:-3.783000px;}
.ws69{word-spacing:-3.608400px;}
.ws102{word-spacing:-3.375600px;}
.wsf4{word-spacing:-3.259200px;}
.ws7b{word-spacing:-2.968200px;}
.ws110{word-spacing:-2.910000px;}
.wsd2{word-spacing:-2.851800px;}
.wsf1{word-spacing:-2.793600px;}
.ws10b{word-spacing:-2.735400px;}
.ws20{word-spacing:-2.677200px;}
.wscc{word-spacing:-2.619000px;}
.wsc5{word-spacing:-2.560800px;}
.ws56{word-spacing:-2.502600px;}
.ws10d{word-spacing:-2.444400px;}
.wsb0{word-spacing:-2.386200px;}
.ws77{word-spacing:-2.328000px;}
.wseb{word-spacing:-2.269800px;}
.ws1e{word-spacing:-2.211600px;}
.ws29{word-spacing:-2.153400px;}
.wsd7{word-spacing:-2.095200px;}
.ws9e{word-spacing:-2.037000px;}
.ws7f{word-spacing:-1.978800px;}
.ws4b{word-spacing:-1.920600px;}
.wsd1{word-spacing:-1.804200px;}
.ws3c{word-spacing:-1.746000px;}
.wse6{word-spacing:-1.629600px;}
.wsbd{word-spacing:-1.571400px;}
.ws10c{word-spacing:-1.513200px;}
.ws7d{word-spacing:-1.455000px;}
.ws47{word-spacing:-1.396800px;}
.wsce{word-spacing:-1.338600px;}
.ws2a{word-spacing:-1.280400px;}
.wsed{word-spacing:-1.222200px;}
.ws71{word-spacing:-0.931200px;}
.ws17{word-spacing:-0.873000px;}
.ws6f{word-spacing:-0.814800px;}
.wsd5{word-spacing:-0.756600px;}
.ws30{word-spacing:-0.698400px;}
.ws59{word-spacing:-0.640200px;}
.ws41{word-spacing:-0.582000px;}
.wsd9{word-spacing:-0.523800px;}
.ws1d{word-spacing:-0.465600px;}
.wsf9{word-spacing:-0.407400px;}
.ws1a{word-spacing:-0.349200px;}
.ws2{word-spacing:-0.309004px;}
.ws5a{word-spacing:-0.291000px;}
.ws24{word-spacing:-0.232800px;}
.ws9{word-spacing:-0.174600px;}
.wsd3{word-spacing:-0.111600px;}
.wsa7{word-spacing:-0.058200px;}
.ws4{word-spacing:0.000000px;}
.wsa6{word-spacing:0.058200px;}
.ws94{word-spacing:0.116400px;}
.ws80{word-spacing:0.174600px;}
.ws63{word-spacing:0.232800px;}
.wsde{word-spacing:0.291000px;}
.ws5b{word-spacing:0.349200px;}
.wsb7{word-spacing:0.407400px;}
.ws18{word-spacing:0.465600px;}
.wsa8{word-spacing:0.523800px;}
.ws114{word-spacing:0.582000px;}
.ws113{word-spacing:0.640200px;}
.ws106{word-spacing:0.698400px;}
.wsf0{word-spacing:0.756600px;}
.ws73{word-spacing:0.814800px;}
.ws5d{word-spacing:0.873000px;}
.ws5{word-spacing:0.900000px;}
.ws4c{word-spacing:0.931200px;}
.ws6a{word-spacing:0.989400px;}
.ws7{word-spacing:1.008000px;}
.ws10f{word-spacing:1.047600px;}
.wse9{word-spacing:1.164000px;}
.ws9d{word-spacing:1.222200px;}
.wsbf{word-spacing:1.280400px;}
.ws25{word-spacing:1.338600px;}
.wsad{word-spacing:1.396800px;}
.wsec{word-spacing:1.455000px;}
.wse2{word-spacing:1.513200px;}
.ws46{word-spacing:1.571400px;}
.ws34{word-spacing:1.629600px;}
.ws10{word-spacing:1.687800px;}
.ws3d{word-spacing:1.746000px;}
.ws3f{word-spacing:1.804200px;}
.ws70{word-spacing:1.862400px;}
.ws1b{word-spacing:1.920600px;}
.ws45{word-spacing:1.978800px;}
.ws8e{word-spacing:2.037000px;}
.ws37{word-spacing:2.095200px;}
.ws32{word-spacing:2.211600px;}
.wsc1{word-spacing:2.269800px;}
.ws97{word-spacing:2.328000px;}
.ws86{word-spacing:2.386200px;}
.ws68{word-spacing:2.444400px;}
.wsd8{word-spacing:2.502600px;}
.ws92{word-spacing:2.560800px;}
.ws8d{word-spacing:2.619000px;}
.ws88{word-spacing:2.677200px;}
.ws38{word-spacing:2.735400px;}
.ws7a{word-spacing:2.793600px;}
.wsd{word-spacing:2.851800px;}
.ws42{word-spacing:2.910000px;}
.ws1f{word-spacing:2.968200px;}
.wsca{word-spacing:3.026400px;}
.ws33{word-spacing:3.084600px;}
.wscd{word-spacing:3.142800px;}
.ws8a{word-spacing:3.201000px;}
.ws87{word-spacing:3.259200px;}
.ws21{word-spacing:3.317400px;}
.ws5e{word-spacing:3.375600px;}
.wsb5{word-spacing:3.433800px;}
.wse0{word-spacing:3.492000px;}
.wsa5{word-spacing:3.550200px;}
.ws72{word-spacing:3.608400px;}
.ws62{word-spacing:3.666600px;}
.ws1c{word-spacing:3.724800px;}
.ws22{word-spacing:3.783000px;}
.ws6d{word-spacing:3.841200px;}
.wsd0{word-spacing:3.899400px;}
.ws83{word-spacing:3.957600px;}
.ws3b{word-spacing:4.015800px;}
.wsdf{word-spacing:4.074000px;}
.ws75{word-spacing:4.132200px;}
.ws16{word-spacing:4.190400px;}
.ws82{word-spacing:4.248600px;}
.ws3e{word-spacing:4.306800px;}
.wsab{word-spacing:4.365000px;}
.wsfe{word-spacing:4.481400px;}
.ws39{word-spacing:4.539600px;}
.wse8{word-spacing:4.597800px;}
.wscb{word-spacing:4.656000px;}
.wsf6{word-spacing:4.714200px;}
.ws67{word-spacing:4.772400px;}
.ws58{word-spacing:4.830600px;}
.ws79{word-spacing:4.888800px;}
.wsbb{word-spacing:4.947000px;}
.ws55{word-spacing:5.005200px;}
.wsa2{word-spacing:5.063400px;}
.wsb8{word-spacing:5.121600px;}
.ws4a{word-spacing:5.179800px;}
.ws3a{word-spacing:5.238000px;}
.ws6{word-spacing:5.250000px;}
.ws4d{word-spacing:5.296200px;}
.ws7e{word-spacing:5.354400px;}
.wsf5{word-spacing:5.412600px;}
.ws26{word-spacing:5.470800px;}
.ws78{word-spacing:5.529000px;}
.wsa0{word-spacing:5.587200px;}
.ws19{word-spacing:5.645400px;}
.ws7c{word-spacing:5.703600px;}
.ws89{word-spacing:5.761800px;}
.ws5c{word-spacing:5.820000px;}
.ws4e{word-spacing:5.878200px;}
.ws74{word-spacing:5.936400px;}
.ws52{word-spacing:5.994600px;}
.ws66{word-spacing:6.111000px;}
.wscf{word-spacing:6.169200px;}
.ws64{word-spacing:6.227400px;}
.ws27{word-spacing:6.285600px;}
.ws6c{word-spacing:6.343800px;}
.ws53{word-spacing:6.460200px;}
.wsb4{word-spacing:6.576600px;}
.wsb9{word-spacing:6.634800px;}
.ws49{word-spacing:6.693000px;}
.ws43{word-spacing:6.751200px;}
.wsaf{word-spacing:6.867600px;}
.ws8b{word-spacing:6.984000px;}
.ws9f{word-spacing:7.042200px;}
.ws54{word-spacing:7.158600px;}
.ws14{word-spacing:7.216800px;}
.ws23{word-spacing:7.275000px;}
.ws40{word-spacing:7.333200px;}
.ws4f{word-spacing:7.391400px;}
.wsc9{word-spacing:7.449600px;}
.ws48{word-spacing:7.507800px;}
.ws36{word-spacing:7.566000px;}
.wsfa{word-spacing:7.624200px;}
.ws76{word-spacing:7.740600px;}
.wsdc{word-spacing:7.798800px;}
.wsa4{word-spacing:7.857000px;}
.ws15{word-spacing:7.973400px;}
.ws2f{word-spacing:8.031600px;}
.wsfc{word-spacing:8.089800px;}
.wsfd{word-spacing:8.148000px;}
.ws57{word-spacing:8.206200px;}
.wsc7{word-spacing:8.264400px;}
.ws90{word-spacing:8.322600px;}
.wsa{word-spacing:8.439000px;}
.ws93{word-spacing:8.497200px;}
.ws60{word-spacing:8.555400px;}
.wsc4{word-spacing:8.671800px;}
.ws8f{word-spacing:8.730000px;}
.wsda{word-spacing:8.788200px;}
.ws51{word-spacing:8.846400px;}
.wsdb{word-spacing:8.904600px;}
.wsc2{word-spacing:9.021000px;}
.ws2b{word-spacing:9.079200px;}
.ws95{word-spacing:9.253800px;}
.ws6e{word-spacing:9.312000px;}
.ws112{word-spacing:9.370200px;}
.ws11{word-spacing:9.486600px;}
.wsdd{word-spacing:9.603000px;}
.wsb{word-spacing:9.661200px;}
.ws96{word-spacing:9.777600px;}
.ws61{word-spacing:9.835800px;}
.wse1{word-spacing:9.894000px;}
.wsf8{word-spacing:10.126800px;}
.wsba{word-spacing:10.185000px;}
.ws13{word-spacing:10.243200px;}
.ws12{word-spacing:10.301400px;}
.ws35{word-spacing:10.359600px;}
.ws6b{word-spacing:10.417800px;}
.wsae{word-spacing:10.534200px;}
.wsf2{word-spacing:10.708800px;}
.ws8{word-spacing:10.825200px;}
.wsf3{word-spacing:10.941600px;}
.ws81{word-spacing:10.999800px;}
.wsbe{word-spacing:11.232600px;}
.ws108{word-spacing:11.290800px;}
.ws44{word-spacing:11.349000px;}
.wsfb{word-spacing:11.465400px;}
.wsff{word-spacing:11.523600px;}
.ws10e{word-spacing:11.640000px;}
.wsac{word-spacing:11.814600px;}
.ws65{word-spacing:11.872800px;}
.ws9c{word-spacing:11.989200px;}
.ws91{word-spacing:12.047400px;}
.ws10a{word-spacing:12.280200px;}
.wsb1{word-spacing:12.454800px;}
.ws111{word-spacing:12.571200px;}
.wsa1{word-spacing:12.745800px;}
.wsbc{word-spacing:12.978600px;}
.wsc{word-spacing:13.211400px;}
.wse7{word-spacing:13.444200px;}
.ws28{word-spacing:13.502400px;}
.wsb2{word-spacing:13.851600px;}
.wsc3{word-spacing:14.026200px;}
.ws105{word-spacing:14.142600px;}
.ws103{word-spacing:14.259000px;}
.ws109{word-spacing:14.491800px;}
.wsc8{word-spacing:14.608200px;}
.wsaa{word-spacing:15.132000px;}
.ws5f{word-spacing:15.423000px;}
.ws104{word-spacing:15.481200px;}
.wsa3{word-spacing:15.655800px;}
.wsb3{word-spacing:15.772200px;}
.wse3{word-spacing:16.005000px;}
.ws2d{word-spacing:16.412400px;}
.ws8c{word-spacing:16.528800px;}
.wsee{word-spacing:17.052600px;}
.wsd4{word-spacing:17.809200px;}
.ws100{word-spacing:20.195400px;}
.ws2c{word-spacing:23.978400px;}
.wsef{word-spacing:27.354000px;}
.ws84{word-spacing:70.822800px;}
.wse{word-spacing:71.482800px;}
.wsa9{word-spacing:73.522800px;}
.wsc0{word-spacing:74.242800px;}
.ws50{word-spacing:77.782800px;}
.wsf7{word-spacing:83.722800px;}
.wsd6{word-spacing:84.382800px;}
.ws107{word-spacing:86.422800px;}
.ws115{word-spacing:87.142800px;}
.wse4{word-spacing:90.682800px;}
.ws9b{word-spacing:124.444200px;}
.ws99{word-spacing:187.468200px;}
.ws98{word-spacing:399.535200px;}
.ws9a{word-spacing:553.994400px;}
._11{margin-left:-41.438400px;}
._10{margin-left:-20.952000px;}
._12{margin-left:-15.549600px;}
._b{margin-left:-6.693000px;}
._a{margin-left:-4.947000px;}
._9{margin-left:-3.799020px;}
._2{margin-left:-2.760000px;}
._0{margin-left:-1.444800px;}
._3{width:1.275000px;}
._1{width:2.587200px;}
._4{width:5.955000px;}
._f{width:17.537748px;}
._8{width:28.750800px;}
._7{width:46.443600px;}
._5{width:51.390600px;}
._6{width:52.729200px;}
._15{width:81.525600px;}
._16{width:83.070000px;}
._14{width:86.158800px;}
._13{width:91.494000px;}
._d{width:205.857000px;}
._c{width:269.932200px;}
._e{width:323.498400px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.756000px;}
.fsc{font-size:46.800000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs4{font-size:55.500000px;}
.fsb{font-size:55.800000px;}
.fs6{font-size:58.200000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:69.000000px;}
.fs3{font-size:84.000000px;}
.fs7{font-size:90.407400px;}
.fs2{font-size:150.000000px;}
.fs5{font-size:309.003600px;}
.y0{bottom:0.000000px;}
.yaf{bottom:78.197250px;}
.y20{bottom:91.216500px;}
.yae{bottom:91.847400px;}
.ye5{bottom:94.177650px;}
.yad{bottom:105.497250px;}
.ye4{bottom:107.827650px;}
.y1f{bottom:110.716500px;}
.yac{bottom:119.147400px;}
.ye3{bottom:125.304450px;}
.y1e{bottom:130.216500px;}
.yab{bottom:136.624200px;}
.ye2{bottom:138.954450px;}
.y1c{bottom:149.716500px;}
.yaa{bottom:150.274050px;}
.ye1{bottom:156.431250px;}
.ya9{bottom:167.750850px;}
.y1d{bottom:169.216500px;}
.ye0{bottom:170.081250px;}
.ya8{bottom:181.400850px;}
.ydf{bottom:183.731250px;}
.y47{bottom:188.716500px;}
.ya7{bottom:198.877650px;}
.yde{bottom:201.207900px;}
.y46{bottom:208.216500px;}
.ya6{bottom:212.527650px;}
.ydd{bottom:214.857900px;}
.y10c{bottom:218.684700px;}
.y45{bottom:227.716500px;}
.ydc{bottom:228.508050px;}
.ya5{bottom:230.004450px;}
.y10b{bottom:232.334700px;}
.y1b{bottom:234.931200px;}
.ydb{bottom:245.984700px;}
.y44{bottom:247.216500px;}
.ya4{bottom:247.481250px;}
.y10a{bottom:249.811500px;}
.yda{bottom:259.634700px;}
.ya3{bottom:261.131250px;}
.y48{bottom:266.716500px;}
.y109{bottom:267.288300px;}
.y7d{bottom:272.098950px;}
.y1a{bottom:273.666000px;}
.yd9{bottom:277.111500px;}
.ya2{bottom:278.607900px;}
.y108{bottom:280.938300px;}
.y7c{bottom:285.748950px;}
.y43{bottom:286.216500px;}
.yd8{bottom:290.761500px;}
.y19{bottom:291.141000px;}
.ya1{bottom:292.258050px;}
.y107{bottom:298.415100px;}
.y7b{bottom:299.398950px;}
.y42{bottom:305.716500px;}
.yd7{bottom:308.238300px;}
.y18{bottom:308.616000px;}
.ya0{bottom:309.734700px;}
.y106{bottom:312.065100px;}
.y7a{bottom:313.048950px;}
.yd6{bottom:321.888300px;}
.y9f{bottom:323.384700px;}
.y41{bottom:325.216500px;}
.y105{bottom:325.715100px;}
.y17{bottom:326.091000px;}
.y79{bottom:326.698950px;}
.yd5{bottom:339.365100px;}
.y9e{bottom:340.861500px;}
.y104{bottom:343.191900px;}
.y16{bottom:343.566000px;}
.y78{bottom:344.175750px;}
.y40{bottom:344.716500px;}
.yd4{bottom:353.015100px;}
.y9d{bottom:354.511500px;}
.y77{bottom:357.825600px;}
.y103{bottom:360.668550px;}
.y15{bottom:361.041000px;}
.y3f{bottom:364.216500px;}
.yd3{bottom:366.665100px;}
.y76{bottom:371.475750px;}
.y9c{bottom:371.988300px;}
.y102{bottom:374.318550px;}
.y14{bottom:378.516000px;}
.y3e{bottom:383.716500px;}
.yd2{bottom:384.141750px;}
.y9b{bottom:385.638300px;}
.y75{bottom:388.952400px;}
.y101{bottom:391.795350px;}
.y13{bottom:395.991000px;}
.yd1{bottom:397.791750px;}
.y9a{bottom:399.288300px;}
.y74{bottom:402.602400px;}
.y3d{bottom:403.216500px;}
.y100{bottom:405.445350px;}
.y99{bottom:412.938300px;}
.y12{bottom:413.466000px;}
.yd0{bottom:415.268550px;}
.y73{bottom:416.252400px;}
.yff{bottom:419.095350px;}
.y3c{bottom:422.716500px;}
.ycf{bottom:428.918550px;}
.y72{bottom:429.902400px;}
.y98{bottom:430.415100px;}
.y11{bottom:430.941000px;}
.yfe{bottom:432.745350px;}
.y3b{bottom:442.216500px;}
.y71{bottom:443.552400px;}
.y97{bottom:444.065100px;}
.yce{bottom:446.395350px;}
.y10{bottom:448.416000px;}
.yfd{bottom:450.222150px;}
.y70{bottom:457.202400px;}
.ycd{bottom:460.045350px;}
.y96{bottom:461.541750px;}
.y3a{bottom:461.716500px;}
.yfc{bottom:463.872150px;}
.yf{bottom:465.891000px;}
.y6f{bottom:470.852400px;}
.y95{bottom:475.191900px;}
.ycc{bottom:477.522150px;}
.y39{bottom:481.216500px;}
.yfb{bottom:481.348950px;}
.ye{bottom:483.366000px;}
.y6e{bottom:484.502400px;}
.y94{bottom:488.841900px;}
.ycb{bottom:494.998950px;}
.y6d{bottom:498.152400px;}
.y38{bottom:500.716500px;}
.yd{bottom:500.841000px;}
.y93{bottom:506.318550px;}
.yca{bottom:508.648950px;}
.y6c{bottom:511.802400px;}
.yfa{bottom:512.475750px;}
.yc{bottom:518.316000px;}
.y37{bottom:520.216500px;}
.y92{bottom:523.795350px;}
.yc9{bottom:526.125750px;}
.y6b{bottom:529.279200px;}
.yb{bottom:535.791000px;}
.y91{bottom:537.445350px;}
.y4f{bottom:537.536100px;}
.y36{bottom:539.716500px;}
.yc8{bottom:539.775750px;}
.y6a{bottom:542.929200px;}
.y90{bottom:551.095350px;}
.y4e{bottom:552.536100px;}
.ya{bottom:553.266000px;}
.yc7{bottom:553.425600px;}
.y69{bottom:556.579200px;}
.yf9{bottom:557.252400px;}
.y35{bottom:559.216500px;}
.y8f{bottom:564.745350px;}
.yc6{bottom:567.075750px;}
.y68{bottom:570.229200px;}
.y9{bottom:570.741000px;}
.yf8{bottom:570.902400px;}
.y34{bottom:578.716500px;}
.y4d{bottom:579.119850px;}
.y8e{bottom:582.222150px;}
.y67{bottom:583.879200px;}
.yc5{bottom:584.552550px;}
.y8{bottom:588.216000px;}
.y8d{bottom:595.872150px;}
.y66{bottom:597.529200px;}
.yc4{bottom:598.202400px;}
.y33{bottom:598.216500px;}
.yf7{bottom:602.029200px;}
.y7{bottom:605.691000px;}
.y4c{bottom:605.703600px;}
.y8c{bottom:609.522150px;}
.y65{bottom:611.179200px;}
.yc3{bottom:611.852400px;}
.yf6{bottom:615.679200px;}
.y32{bottom:617.716500px;}
.y64{bottom:624.829200px;}
.y8b{bottom:626.998950px;}
.yc2{bottom:629.329200px;}
.y4b{bottom:632.287350px;}
.y31{bottom:637.216500px;}
.y63{bottom:638.479200px;}
.y8a{bottom:640.648950px;}
.y6{bottom:642.677700px;}
.yc1{bottom:642.979200px;}
.yf5{bottom:646.806000px;}
.y4a{bottom:647.287350px;}
.y62{bottom:652.129200px;}
.yc0{bottom:656.629200px;}
.y30{bottom:656.716500px;}
.y89{bottom:658.125750px;}
.yf4{bottom:660.456000px;}
.y5{bottom:665.177700px;}
.y61{bottom:665.779200px;}
.y88{bottom:671.775750px;}
.ybf{bottom:674.106000px;}
.y49{bottom:675.997050px;}
.y2f{bottom:676.216500px;}
.yf3{bottom:677.932800px;}
.y60{bottom:679.429200px;}
.ybe{bottom:687.756000px;}
.y87{bottom:689.252400px;}
.yf2{bottom:691.582800px;}
.y2e{bottom:695.716500px;}
.y5f{bottom:696.906000px;}
.ybd{bottom:701.406000px;}
.y4{bottom:702.181800px;}
.y86{bottom:702.902400px;}
.yf1{bottom:705.232800px;}
.y50{bottom:709.258650px;}
.y5e{bottom:710.556000px;}
.y2d{bottom:715.216500px;}
.ybc{bottom:718.882800px;}
.y85{bottom:720.379200px;}
.yf0{bottom:722.709600px;}
.y5d{bottom:728.032800px;}
.ybb{bottom:732.532800px;}
.y84{bottom:734.029200px;}
.y2c{bottom:734.716500px;}
.yef{bottom:736.359600px;}
.y3{bottom:739.681800px;}
.y5c{bottom:741.682800px;}
.yba{bottom:746.182800px;}
.yee{bottom:750.009450px;}
.y83{bottom:751.506000px;}
.y2b{bottom:754.216500px;}
.y5b{bottom:755.332800px;}
.yb9{bottom:763.659600px;}
.y82{bottom:765.156000px;}
.yed{bottom:767.486250px;}
.y5a{bottom:768.982800px;}
.y2a{bottom:773.716500px;}
.yb8{bottom:777.309600px;}
.yec{bottom:781.136400px;}
.y59{bottom:782.632800px;}
.y29{bottom:793.216500px;}
.yb7{bottom:794.786250px;}
.y58{bottom:800.109600px;}
.yb6{bottom:808.436250px;}
.yeb{bottom:812.263050px;}
.y28{bottom:812.716500px;}
.y57{bottom:813.759450px;}
.yb5{bottom:822.086400px;}
.yea{bottom:825.913050px;}
.y56{bottom:827.409600px;}
.y81{bottom:831.236250px;}
.y27{bottom:832.216500px;}
.yb4{bottom:839.563050px;}
.y55{bottom:841.059600px;}
.ye9{bottom:843.389850px;}
.y80{bottom:844.886400px;}
.y26{bottom:851.716500px;}
.yb3{bottom:853.213050px;}
.ye8{bottom:857.039850px;}
.y54{bottom:858.536250px;}
.y7f{bottom:862.363200px;}
.yb2{bottom:870.689850px;}
.y25{bottom:871.216500px;}
.y53{bottom:872.186250px;}
.ye7{bottom:874.516650px;}
.y7e{bottom:876.013050px;}
.yb1{bottom:884.339850px;}
.ye6{bottom:888.166650px;}
.y52{bottom:889.663050px;}
.y24{bottom:890.716500px;}
.yb0{bottom:901.816650px;}
.y23{bottom:910.216500px;}
.y51{bottom:915.466650px;}
.y21{bottom:942.925800px;}
.y2{bottom:983.818350px;}
.y22{bottom:983.865900px;}
.y1{bottom:984.053850px;}
.h12{height:33.321600px;}
.hd{height:33.504000px;}
.hc{height:34.176000px;}
.he{height:36.312000px;}
.h13{height:37.440000px;}
.h3{height:38.400000px;}
.h6{height:38.739000px;}
.h7{height:39.516000px;}
.hf{height:40.064400px;}
.h10{height:41.438400px;}
.h11{height:41.787600px;}
.h2{height:42.720000px;}
.h9{height:46.560000px;}
.hb{height:49.128000px;}
.h5{height:59.808000px;}
.ha{height:63.104365px;}
.h4{height:106.800000px;}
.h8{height:202.560000px;}
.h1{height:1050.000000px;}
.h0{height:1050.235500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:48.047250px;}
.x8{left:78.661500px;}
.x9{left:95.669250px;}
.xa{left:99.921300px;}
.x19{left:108.425250px;}
.x18{left:126.496050px;}
.x5{left:133.357500px;}
.x16{left:138.189000px;}
.x3{left:140.314950px;}
.x17{left:143.503950px;}
.xe{left:145.629900px;}
.x12{left:150.944850px;}
.x2{left:155.196900px;}
.xc{left:157.322850px;}
.x13{left:161.574750px;}
.xf{left:162.637800px;}
.x1a{left:170.078700px;}
.x6{left:175.304700px;}
.x4{left:182.834700px;}
.x10{left:275.700000px;}
.x11{left:462.786600px;}
.x14{left:652.500300px;}
.xd{left:653.715300px;}
.xb{left:655.215300px;}
.x15{left:656.940300px;}
.x1{left:658.530150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.072000pt;}
.v1{vertical-align:138.666667pt;}
.ls4{letter-spacing:-4.666667pt;}
.ls3{letter-spacing:-3.333333pt;}
.ls6{letter-spacing:-0.970667pt;}
.ls7{letter-spacing:-0.723259pt;}
.ls5{letter-spacing:-0.672000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000021pt;}
.ls8{letter-spacing:0.000075pt;}
.lsa{letter-spacing:0.000213pt;}
.ls0{letter-spacing:0.296000pt;}
.ls1{letter-spacing:0.789333pt;}
.ws3{word-spacing:-18.965463pt;}
.ws0{word-spacing:-17.770667pt;}
.ws85{word-spacing:-15.394667pt;}
.ws1{word-spacing:-13.172000pt;}
.ws2e{word-spacing:-12.519467pt;}
.wse5{word-spacing:-11.588267pt;}
.wsb6{word-spacing:-11.110400pt;}
.ws116{word-spacing:-10.067200pt;}
.ws117{word-spacing:-9.318400pt;}
.wsf{word-spacing:-7.261291pt;}
.ws31{word-spacing:-3.880000pt;}
.wsea{word-spacing:-3.776533pt;}
.ws101{word-spacing:-3.621333pt;}
.wsc6{word-spacing:-3.362667pt;}
.ws69{word-spacing:-3.207467pt;}
.ws102{word-spacing:-3.000533pt;}
.wsf4{word-spacing:-2.897067pt;}
.ws7b{word-spacing:-2.638400pt;}
.ws110{word-spacing:-2.586667pt;}
.wsd2{word-spacing:-2.534933pt;}
.wsf1{word-spacing:-2.483200pt;}
.ws10b{word-spacing:-2.431467pt;}
.ws20{word-spacing:-2.379733pt;}
.wscc{word-spacing:-2.328000pt;}
.wsc5{word-spacing:-2.276267pt;}
.ws56{word-spacing:-2.224533pt;}
.ws10d{word-spacing:-2.172800pt;}
.wsb0{word-spacing:-2.121067pt;}
.ws77{word-spacing:-2.069333pt;}
.wseb{word-spacing:-2.017600pt;}
.ws1e{word-spacing:-1.965867pt;}
.ws29{word-spacing:-1.914133pt;}
.wsd7{word-spacing:-1.862400pt;}
.ws9e{word-spacing:-1.810667pt;}
.ws7f{word-spacing:-1.758933pt;}
.ws4b{word-spacing:-1.707200pt;}
.wsd1{word-spacing:-1.603733pt;}
.ws3c{word-spacing:-1.552000pt;}
.wse6{word-spacing:-1.448533pt;}
.wsbd{word-spacing:-1.396800pt;}
.ws10c{word-spacing:-1.345067pt;}
.ws7d{word-spacing:-1.293333pt;}
.ws47{word-spacing:-1.241600pt;}
.wsce{word-spacing:-1.189867pt;}
.ws2a{word-spacing:-1.138133pt;}
.wsed{word-spacing:-1.086400pt;}
.ws71{word-spacing:-0.827733pt;}
.ws17{word-spacing:-0.776000pt;}
.ws6f{word-spacing:-0.724267pt;}
.wsd5{word-spacing:-0.672533pt;}
.ws30{word-spacing:-0.620800pt;}
.ws59{word-spacing:-0.569067pt;}
.ws41{word-spacing:-0.517333pt;}
.wsd9{word-spacing:-0.465600pt;}
.ws1d{word-spacing:-0.413867pt;}
.wsf9{word-spacing:-0.362133pt;}
.ws1a{word-spacing:-0.310400pt;}
.ws2{word-spacing:-0.274670pt;}
.ws5a{word-spacing:-0.258667pt;}
.ws24{word-spacing:-0.206933pt;}
.ws9{word-spacing:-0.155200pt;}
.wsd3{word-spacing:-0.099200pt;}
.wsa7{word-spacing:-0.051733pt;}
.ws4{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.051733pt;}
.ws94{word-spacing:0.103467pt;}
.ws80{word-spacing:0.155200pt;}
.ws63{word-spacing:0.206933pt;}
.wsde{word-spacing:0.258667pt;}
.ws5b{word-spacing:0.310400pt;}
.wsb7{word-spacing:0.362133pt;}
.ws18{word-spacing:0.413867pt;}
.wsa8{word-spacing:0.465600pt;}
.ws114{word-spacing:0.517333pt;}
.ws113{word-spacing:0.569067pt;}
.ws106{word-spacing:0.620800pt;}
.wsf0{word-spacing:0.672533pt;}
.ws73{word-spacing:0.724267pt;}
.ws5d{word-spacing:0.776000pt;}
.ws5{word-spacing:0.800000pt;}
.ws4c{word-spacing:0.827733pt;}
.ws6a{word-spacing:0.879467pt;}
.ws7{word-spacing:0.896000pt;}
.ws10f{word-spacing:0.931200pt;}
.wse9{word-spacing:1.034667pt;}
.ws9d{word-spacing:1.086400pt;}
.wsbf{word-spacing:1.138133pt;}
.ws25{word-spacing:1.189867pt;}
.wsad{word-spacing:1.241600pt;}
.wsec{word-spacing:1.293333pt;}
.wse2{word-spacing:1.345067pt;}
.ws46{word-spacing:1.396800pt;}
.ws34{word-spacing:1.448533pt;}
.ws10{word-spacing:1.500267pt;}
.ws3d{word-spacing:1.552000pt;}
.ws3f{word-spacing:1.603733pt;}
.ws70{word-spacing:1.655467pt;}
.ws1b{word-spacing:1.707200pt;}
.ws45{word-spacing:1.758933pt;}
.ws8e{word-spacing:1.810667pt;}
.ws37{word-spacing:1.862400pt;}
.ws32{word-spacing:1.965867pt;}
.wsc1{word-spacing:2.017600pt;}
.ws97{word-spacing:2.069333pt;}
.ws86{word-spacing:2.121067pt;}
.ws68{word-spacing:2.172800pt;}
.wsd8{word-spacing:2.224533pt;}
.ws92{word-spacing:2.276267pt;}
.ws8d{word-spacing:2.328000pt;}
.ws88{word-spacing:2.379733pt;}
.ws38{word-spacing:2.431467pt;}
.ws7a{word-spacing:2.483200pt;}
.wsd{word-spacing:2.534933pt;}
.ws42{word-spacing:2.586667pt;}
.ws1f{word-spacing:2.638400pt;}
.wsca{word-spacing:2.690133pt;}
.ws33{word-spacing:2.741867pt;}
.wscd{word-spacing:2.793600pt;}
.ws8a{word-spacing:2.845333pt;}
.ws87{word-spacing:2.897067pt;}
.ws21{word-spacing:2.948800pt;}
.ws5e{word-spacing:3.000533pt;}
.wsb5{word-spacing:3.052267pt;}
.wse0{word-spacing:3.104000pt;}
.wsa5{word-spacing:3.155733pt;}
.ws72{word-spacing:3.207467pt;}
.ws62{word-spacing:3.259200pt;}
.ws1c{word-spacing:3.310933pt;}
.ws22{word-spacing:3.362667pt;}
.ws6d{word-spacing:3.414400pt;}
.wsd0{word-spacing:3.466133pt;}
.ws83{word-spacing:3.517867pt;}
.ws3b{word-spacing:3.569600pt;}
.wsdf{word-spacing:3.621333pt;}
.ws75{word-spacing:3.673067pt;}
.ws16{word-spacing:3.724800pt;}
.ws82{word-spacing:3.776533pt;}
.ws3e{word-spacing:3.828267pt;}
.wsab{word-spacing:3.880000pt;}
.wsfe{word-spacing:3.983467pt;}
.ws39{word-spacing:4.035200pt;}
.wse8{word-spacing:4.086933pt;}
.wscb{word-spacing:4.138667pt;}
.wsf6{word-spacing:4.190400pt;}
.ws67{word-spacing:4.242133pt;}
.ws58{word-spacing:4.293867pt;}
.ws79{word-spacing:4.345600pt;}
.wsbb{word-spacing:4.397333pt;}
.ws55{word-spacing:4.449067pt;}
.wsa2{word-spacing:4.500800pt;}
.wsb8{word-spacing:4.552533pt;}
.ws4a{word-spacing:4.604267pt;}
.ws3a{word-spacing:4.656000pt;}
.ws6{word-spacing:4.666667pt;}
.ws4d{word-spacing:4.707733pt;}
.ws7e{word-spacing:4.759467pt;}
.wsf5{word-spacing:4.811200pt;}
.ws26{word-spacing:4.862933pt;}
.ws78{word-spacing:4.914667pt;}
.wsa0{word-spacing:4.966400pt;}
.ws19{word-spacing:5.018133pt;}
.ws7c{word-spacing:5.069867pt;}
.ws89{word-spacing:5.121600pt;}
.ws5c{word-spacing:5.173333pt;}
.ws4e{word-spacing:5.225067pt;}
.ws74{word-spacing:5.276800pt;}
.ws52{word-spacing:5.328533pt;}
.ws66{word-spacing:5.432000pt;}
.wscf{word-spacing:5.483733pt;}
.ws64{word-spacing:5.535467pt;}
.ws27{word-spacing:5.587200pt;}
.ws6c{word-spacing:5.638933pt;}
.ws53{word-spacing:5.742400pt;}
.wsb4{word-spacing:5.845867pt;}
.wsb9{word-spacing:5.897600pt;}
.ws49{word-spacing:5.949333pt;}
.ws43{word-spacing:6.001067pt;}
.wsaf{word-spacing:6.104533pt;}
.ws8b{word-spacing:6.208000pt;}
.ws9f{word-spacing:6.259733pt;}
.ws54{word-spacing:6.363200pt;}
.ws14{word-spacing:6.414933pt;}
.ws23{word-spacing:6.466667pt;}
.ws40{word-spacing:6.518400pt;}
.ws4f{word-spacing:6.570133pt;}
.wsc9{word-spacing:6.621867pt;}
.ws48{word-spacing:6.673600pt;}
.ws36{word-spacing:6.725333pt;}
.wsfa{word-spacing:6.777067pt;}
.ws76{word-spacing:6.880533pt;}
.wsdc{word-spacing:6.932267pt;}
.wsa4{word-spacing:6.984000pt;}
.ws15{word-spacing:7.087467pt;}
.ws2f{word-spacing:7.139200pt;}
.wsfc{word-spacing:7.190933pt;}
.wsfd{word-spacing:7.242667pt;}
.ws57{word-spacing:7.294400pt;}
.wsc7{word-spacing:7.346133pt;}
.ws90{word-spacing:7.397867pt;}
.wsa{word-spacing:7.501333pt;}
.ws93{word-spacing:7.553067pt;}
.ws60{word-spacing:7.604800pt;}
.wsc4{word-spacing:7.708267pt;}
.ws8f{word-spacing:7.760000pt;}
.wsda{word-spacing:7.811733pt;}
.ws51{word-spacing:7.863467pt;}
.wsdb{word-spacing:7.915200pt;}
.wsc2{word-spacing:8.018667pt;}
.ws2b{word-spacing:8.070400pt;}
.ws95{word-spacing:8.225600pt;}
.ws6e{word-spacing:8.277333pt;}
.ws112{word-spacing:8.329067pt;}
.ws11{word-spacing:8.432533pt;}
.wsdd{word-spacing:8.536000pt;}
.wsb{word-spacing:8.587733pt;}
.ws96{word-spacing:8.691200pt;}
.ws61{word-spacing:8.742933pt;}
.wse1{word-spacing:8.794667pt;}
.wsf8{word-spacing:9.001600pt;}
.wsba{word-spacing:9.053333pt;}
.ws13{word-spacing:9.105067pt;}
.ws12{word-spacing:9.156800pt;}
.ws35{word-spacing:9.208533pt;}
.ws6b{word-spacing:9.260267pt;}
.wsae{word-spacing:9.363733pt;}
.wsf2{word-spacing:9.518933pt;}
.ws8{word-spacing:9.622400pt;}
.wsf3{word-spacing:9.725867pt;}
.ws81{word-spacing:9.777600pt;}
.wsbe{word-spacing:9.984533pt;}
.ws108{word-spacing:10.036267pt;}
.ws44{word-spacing:10.088000pt;}
.wsfb{word-spacing:10.191467pt;}
.wsff{word-spacing:10.243200pt;}
.ws10e{word-spacing:10.346667pt;}
.wsac{word-spacing:10.501867pt;}
.ws65{word-spacing:10.553600pt;}
.ws9c{word-spacing:10.657067pt;}
.ws91{word-spacing:10.708800pt;}
.ws10a{word-spacing:10.915733pt;}
.wsb1{word-spacing:11.070933pt;}
.ws111{word-spacing:11.174400pt;}
.wsa1{word-spacing:11.329600pt;}
.wsbc{word-spacing:11.536533pt;}
.wsc{word-spacing:11.743467pt;}
.wse7{word-spacing:11.950400pt;}
.ws28{word-spacing:12.002133pt;}
.wsb2{word-spacing:12.312533pt;}
.wsc3{word-spacing:12.467733pt;}
.ws105{word-spacing:12.571200pt;}
.ws103{word-spacing:12.674667pt;}
.ws109{word-spacing:12.881600pt;}
.wsc8{word-spacing:12.985067pt;}
.wsaa{word-spacing:13.450667pt;}
.ws5f{word-spacing:13.709333pt;}
.ws104{word-spacing:13.761067pt;}
.wsa3{word-spacing:13.916267pt;}
.wsb3{word-spacing:14.019733pt;}
.wse3{word-spacing:14.226667pt;}
.ws2d{word-spacing:14.588800pt;}
.ws8c{word-spacing:14.692267pt;}
.wsee{word-spacing:15.157867pt;}
.wsd4{word-spacing:15.830400pt;}
.ws100{word-spacing:17.951467pt;}
.ws2c{word-spacing:21.314133pt;}
.wsef{word-spacing:24.314667pt;}
.ws84{word-spacing:62.953600pt;}
.wse{word-spacing:63.540267pt;}
.wsa9{word-spacing:65.353600pt;}
.wsc0{word-spacing:65.993600pt;}
.ws50{word-spacing:69.140267pt;}
.wsf7{word-spacing:74.420267pt;}
.wsd6{word-spacing:75.006933pt;}
.ws107{word-spacing:76.820267pt;}
.ws115{word-spacing:77.460267pt;}
.wse4{word-spacing:80.606933pt;}
.ws9b{word-spacing:110.617067pt;}
.ws99{word-spacing:166.638400pt;}
.ws98{word-spacing:355.142400pt;}
.ws9a{word-spacing:492.439467pt;}
._11{margin-left:-36.834133pt;}
._10{margin-left:-18.624000pt;}
._12{margin-left:-13.821867pt;}
._b{margin-left:-5.949333pt;}
._a{margin-left:-4.397333pt;}
._9{margin-left:-3.376907pt;}
._2{margin-left:-2.453333pt;}
._0{margin-left:-1.284267pt;}
._3{width:1.133333pt;}
._1{width:2.299733pt;}
._4{width:5.293333pt;}
._f{width:15.589109pt;}
._8{width:25.556267pt;}
._7{width:41.283200pt;}
._5{width:45.680533pt;}
._6{width:46.870400pt;}
._15{width:72.467200pt;}
._16{width:73.840000pt;}
._14{width:76.585600pt;}
._13{width:81.328000pt;}
._d{width:182.984000pt;}
._c{width:239.939733pt;}
._e{width:287.554133pt;}
.fs8{font-size:30.005333pt;}
.fsc{font-size:41.600000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs4{font-size:49.333333pt;}
.fsb{font-size:49.600000pt;}
.fs6{font-size:51.733333pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:61.333333pt;}
.fs3{font-size:74.666667pt;}
.fs7{font-size:80.362133pt;}
.fs2{font-size:133.333333pt;}
.fs5{font-size:274.669867pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:69.508667pt;}
.y20{bottom:81.081333pt;}
.yae{bottom:81.642133pt;}
.ye5{bottom:83.713467pt;}
.yad{bottom:93.775333pt;}
.ye4{bottom:95.846800pt;}
.y1f{bottom:98.414667pt;}
.yac{bottom:105.908800pt;}
.ye3{bottom:111.381733pt;}
.y1e{bottom:115.748000pt;}
.yab{bottom:121.443733pt;}
.ye2{bottom:123.515067pt;}
.y1c{bottom:133.081333pt;}
.yaa{bottom:133.576933pt;}
.ye1{bottom:139.050000pt;}
.ya9{bottom:149.111867pt;}
.y1d{bottom:150.414667pt;}
.ye0{bottom:151.183333pt;}
.ya8{bottom:161.245200pt;}
.ydf{bottom:163.316667pt;}
.y47{bottom:167.748000pt;}
.ya7{bottom:176.780133pt;}
.yde{bottom:178.851467pt;}
.y46{bottom:185.081333pt;}
.ya6{bottom:188.913467pt;}
.ydd{bottom:190.984800pt;}
.y10c{bottom:194.386400pt;}
.y45{bottom:202.414667pt;}
.ydc{bottom:203.118267pt;}
.ya5{bottom:204.448400pt;}
.y10b{bottom:206.519733pt;}
.y1b{bottom:208.827733pt;}
.ydb{bottom:218.653067pt;}
.y44{bottom:219.748000pt;}
.ya4{bottom:219.983333pt;}
.y10a{bottom:222.054667pt;}
.yda{bottom:230.786400pt;}
.ya3{bottom:232.116667pt;}
.y48{bottom:237.081333pt;}
.y109{bottom:237.589600pt;}
.y7d{bottom:241.865733pt;}
.y1a{bottom:243.258667pt;}
.yd9{bottom:246.321333pt;}
.ya2{bottom:247.651467pt;}
.y108{bottom:249.722933pt;}
.y7c{bottom:253.999067pt;}
.y43{bottom:254.414667pt;}
.yd8{bottom:258.454667pt;}
.y19{bottom:258.792000pt;}
.ya1{bottom:259.784933pt;}
.y107{bottom:265.257867pt;}
.y7b{bottom:266.132400pt;}
.y42{bottom:271.748000pt;}
.yd7{bottom:273.989600pt;}
.y18{bottom:274.325333pt;}
.ya0{bottom:275.319733pt;}
.y106{bottom:277.391200pt;}
.y7a{bottom:278.265733pt;}
.yd6{bottom:286.122933pt;}
.y9f{bottom:287.453067pt;}
.y41{bottom:289.081333pt;}
.y105{bottom:289.524533pt;}
.y17{bottom:289.858667pt;}
.y79{bottom:290.399067pt;}
.yd5{bottom:301.657867pt;}
.y9e{bottom:302.988000pt;}
.y104{bottom:305.059467pt;}
.y16{bottom:305.392000pt;}
.y78{bottom:305.934000pt;}
.y40{bottom:306.414667pt;}
.yd4{bottom:313.791200pt;}
.y9d{bottom:315.121333pt;}
.y77{bottom:318.067200pt;}
.y103{bottom:320.594267pt;}
.y15{bottom:320.925333pt;}
.y3f{bottom:323.748000pt;}
.yd3{bottom:325.924533pt;}
.y76{bottom:330.200667pt;}
.y9c{bottom:330.656267pt;}
.y102{bottom:332.727600pt;}
.y14{bottom:336.458667pt;}
.y3e{bottom:341.081333pt;}
.yd2{bottom:341.459333pt;}
.y9b{bottom:342.789600pt;}
.y75{bottom:345.735467pt;}
.y101{bottom:348.262533pt;}
.y13{bottom:351.992000pt;}
.yd1{bottom:353.592667pt;}
.y9a{bottom:354.922933pt;}
.y74{bottom:357.868800pt;}
.y3d{bottom:358.414667pt;}
.y100{bottom:360.395867pt;}
.y99{bottom:367.056267pt;}
.y12{bottom:367.525333pt;}
.yd0{bottom:369.127600pt;}
.y73{bottom:370.002133pt;}
.yff{bottom:372.529200pt;}
.y3c{bottom:375.748000pt;}
.ycf{bottom:381.260933pt;}
.y72{bottom:382.135467pt;}
.y98{bottom:382.591200pt;}
.y11{bottom:383.058667pt;}
.yfe{bottom:384.662533pt;}
.y3b{bottom:393.081333pt;}
.y71{bottom:394.268800pt;}
.y97{bottom:394.724533pt;}
.yce{bottom:396.795867pt;}
.y10{bottom:398.592000pt;}
.yfd{bottom:400.197467pt;}
.y70{bottom:406.402133pt;}
.ycd{bottom:408.929200pt;}
.y96{bottom:410.259333pt;}
.y3a{bottom:410.414667pt;}
.yfc{bottom:412.330800pt;}
.yf{bottom:414.125333pt;}
.y6f{bottom:418.535467pt;}
.y95{bottom:422.392800pt;}
.ycc{bottom:424.464133pt;}
.y39{bottom:427.748000pt;}
.yfb{bottom:427.865733pt;}
.ye{bottom:429.658667pt;}
.y6e{bottom:430.668800pt;}
.y94{bottom:434.526133pt;}
.ycb{bottom:439.999067pt;}
.y6d{bottom:442.802133pt;}
.y38{bottom:445.081333pt;}
.yd{bottom:445.192000pt;}
.y93{bottom:450.060933pt;}
.yca{bottom:452.132400pt;}
.y6c{bottom:454.935467pt;}
.yfa{bottom:455.534000pt;}
.yc{bottom:460.725333pt;}
.y37{bottom:462.414667pt;}
.y92{bottom:465.595867pt;}
.yc9{bottom:467.667333pt;}
.y6b{bottom:470.470400pt;}
.yb{bottom:476.258667pt;}
.y91{bottom:477.729200pt;}
.y4f{bottom:477.809867pt;}
.y36{bottom:479.748000pt;}
.yc8{bottom:479.800667pt;}
.y6a{bottom:482.603733pt;}
.y90{bottom:489.862533pt;}
.y4e{bottom:491.143200pt;}
.ya{bottom:491.792000pt;}
.yc7{bottom:491.933867pt;}
.y69{bottom:494.737067pt;}
.yf9{bottom:495.335467pt;}
.y35{bottom:497.081333pt;}
.y8f{bottom:501.995867pt;}
.yc6{bottom:504.067333pt;}
.y68{bottom:506.870400pt;}
.y9{bottom:507.325333pt;}
.yf8{bottom:507.468800pt;}
.y34{bottom:514.414667pt;}
.y4d{bottom:514.773200pt;}
.y8e{bottom:517.530800pt;}
.y67{bottom:519.003733pt;}
.yc5{bottom:519.602267pt;}
.y8{bottom:522.858667pt;}
.y8d{bottom:529.664133pt;}
.y66{bottom:531.137067pt;}
.yc4{bottom:531.735467pt;}
.y33{bottom:531.748000pt;}
.yf7{bottom:535.137067pt;}
.y7{bottom:538.392000pt;}
.y4c{bottom:538.403200pt;}
.y8c{bottom:541.797467pt;}
.y65{bottom:543.270400pt;}
.yc3{bottom:543.868800pt;}
.yf6{bottom:547.270400pt;}
.y32{bottom:549.081333pt;}
.y64{bottom:555.403733pt;}
.y8b{bottom:557.332400pt;}
.yc2{bottom:559.403733pt;}
.y4b{bottom:562.033200pt;}
.y31{bottom:566.414667pt;}
.y63{bottom:567.537067pt;}
.y8a{bottom:569.465733pt;}
.y6{bottom:571.269067pt;}
.yc1{bottom:571.537067pt;}
.yf5{bottom:574.938667pt;}
.y4a{bottom:575.366533pt;}
.y62{bottom:579.670400pt;}
.yc0{bottom:583.670400pt;}
.y30{bottom:583.748000pt;}
.y89{bottom:585.000667pt;}
.yf4{bottom:587.072000pt;}
.y5{bottom:591.269067pt;}
.y61{bottom:591.803733pt;}
.y88{bottom:597.134000pt;}
.ybf{bottom:599.205333pt;}
.y49{bottom:600.886267pt;}
.y2f{bottom:601.081333pt;}
.yf3{bottom:602.606933pt;}
.y60{bottom:603.937067pt;}
.ybe{bottom:611.338667pt;}
.y87{bottom:612.668800pt;}
.yf2{bottom:614.740267pt;}
.y2e{bottom:618.414667pt;}
.y5f{bottom:619.472000pt;}
.ybd{bottom:623.472000pt;}
.y4{bottom:624.161600pt;}
.y86{bottom:624.802133pt;}
.yf1{bottom:626.873600pt;}
.y50{bottom:630.452133pt;}
.y5e{bottom:631.605333pt;}
.y2d{bottom:635.748000pt;}
.ybc{bottom:639.006933pt;}
.y85{bottom:640.337067pt;}
.yf0{bottom:642.408533pt;}
.y5d{bottom:647.140267pt;}
.ybb{bottom:651.140267pt;}
.y84{bottom:652.470400pt;}
.y2c{bottom:653.081333pt;}
.yef{bottom:654.541867pt;}
.y3{bottom:657.494933pt;}
.y5c{bottom:659.273600pt;}
.yba{bottom:663.273600pt;}
.yee{bottom:666.675067pt;}
.y83{bottom:668.005333pt;}
.y2b{bottom:670.414667pt;}
.y5b{bottom:671.406933pt;}
.yb9{bottom:678.808533pt;}
.y82{bottom:680.138667pt;}
.yed{bottom:682.210000pt;}
.y5a{bottom:683.540267pt;}
.y2a{bottom:687.748000pt;}
.yb8{bottom:690.941867pt;}
.yec{bottom:694.343467pt;}
.y59{bottom:695.673600pt;}
.y29{bottom:705.081333pt;}
.yb7{bottom:706.476667pt;}
.y58{bottom:711.208533pt;}
.yb6{bottom:718.610000pt;}
.yeb{bottom:722.011600pt;}
.y28{bottom:722.414667pt;}
.y57{bottom:723.341733pt;}
.yb5{bottom:730.743467pt;}
.yea{bottom:734.144933pt;}
.y56{bottom:735.475200pt;}
.y81{bottom:738.876667pt;}
.y27{bottom:739.748000pt;}
.yb4{bottom:746.278267pt;}
.y55{bottom:747.608533pt;}
.ye9{bottom:749.679867pt;}
.y80{bottom:751.010133pt;}
.y26{bottom:757.081333pt;}
.yb3{bottom:758.411600pt;}
.ye8{bottom:761.813200pt;}
.y54{bottom:763.143333pt;}
.y7f{bottom:766.545067pt;}
.yb2{bottom:773.946533pt;}
.y25{bottom:774.414667pt;}
.y53{bottom:775.276667pt;}
.ye7{bottom:777.348133pt;}
.y7e{bottom:778.678267pt;}
.yb1{bottom:786.079867pt;}
.ye6{bottom:789.481467pt;}
.y52{bottom:790.811600pt;}
.y24{bottom:791.748000pt;}
.yb0{bottom:801.614800pt;}
.y23{bottom:809.081333pt;}
.y51{bottom:813.748133pt;}
.y21{bottom:838.156267pt;}
.y2{bottom:874.505200pt;}
.y22{bottom:874.547467pt;}
.y1{bottom:874.714533pt;}
.h12{height:29.619200pt;}
.hd{height:29.781333pt;}
.hc{height:30.378667pt;}
.he{height:32.277333pt;}
.h13{height:33.280000pt;}
.h3{height:34.133333pt;}
.h6{height:34.434667pt;}
.h7{height:35.125333pt;}
.hf{height:35.612800pt;}
.h10{height:36.834133pt;}
.h11{height:37.144533pt;}
.h2{height:37.973333pt;}
.h9{height:41.386667pt;}
.hb{height:43.669333pt;}
.h5{height:53.162667pt;}
.ha{height:56.092769pt;}
.h4{height:94.933333pt;}
.h8{height:180.053333pt;}
.h1{height:933.333333pt;}
.h0{height:933.542667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:42.708667pt;}
.x8{left:69.921333pt;}
.x9{left:85.039333pt;}
.xa{left:88.818933pt;}
.x19{left:96.378000pt;}
.x18{left:112.440933pt;}
.x5{left:118.540000pt;}
.x16{left:122.834667pt;}
.x3{left:124.724400pt;}
.x17{left:127.559067pt;}
.xe{left:129.448800pt;}
.x12{left:134.173200pt;}
.x2{left:137.952800pt;}
.xc{left:139.842533pt;}
.x13{left:143.622000pt;}
.xf{left:144.566933pt;}
.x1a{left:151.181067pt;}
.x6{left:155.826400pt;}
.x4{left:162.519733pt;}
.x10{left:245.066667pt;}
.x11{left:411.365867pt;}
.x14{left:580.000267pt;}
.xd{left:581.080267pt;}
.xb{left:582.413600pt;}
.x15{left:583.946933pt;}
.x1{left:585.360133pt;}
}




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