
    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_dd12c785b865b3632a53bb35.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.843262;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_51957f1ed311eee5c0d05990.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_1cf857f0e505e82bb8bc66c2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5aa4cd28848790ca39046aff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m1{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);}
.v2{vertical-align:-25.284000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.856000px;}
.ls27{letter-spacing:-2.884200px;}
.ls2a{letter-spacing:-1.544400px;}
.ls1e{letter-spacing:-1.053000px;}
.ls29{letter-spacing:-0.950400px;}
.ls7{letter-spacing:-0.943800px;}
.ls25{letter-spacing:-0.937200px;}
.ls23{letter-spacing:-0.930600px;}
.ls2d{letter-spacing:-0.806400px;}
.ls2c{letter-spacing:-0.796950px;}
.ls2e{letter-spacing:-0.793800px;}
.ls9{letter-spacing:-0.627000px;}
.ls28{letter-spacing:-0.620400px;}
.ls8{letter-spacing:-0.613800px;}
.ls16{letter-spacing:-0.600600px;}
.ls2b{letter-spacing:-0.413100px;}
.ls18{letter-spacing:-0.303600px;}
.ls17{letter-spacing:-0.297000px;}
.ls22{letter-spacing:-0.290400px;}
.ls12{letter-spacing:-0.283800px;}
.ls31{letter-spacing:-0.270600px;}
.ls13{letter-spacing:-0.264000px;}
.ls15{letter-spacing:-0.253800px;}
.ls24{letter-spacing:-0.085800px;}
.ls37{letter-spacing:-0.046200px;}
.ls19{letter-spacing:-0.039600px;}
.ls1a{letter-spacing:-0.033000px;}
.ls1b{letter-spacing:-0.026400px;}
.ls1d{letter-spacing:-0.021600px;}
.ls6{letter-spacing:-0.019800px;}
.ls36{letter-spacing:-0.016800px;}
.ls1f{letter-spacing:-0.016200px;}
.ls3{letter-spacing:-0.013200px;}
.ls35{letter-spacing:-0.012600px;}
.ls20{letter-spacing:-0.012150px;}
.lsd{letter-spacing:-0.010800px;}
.ls34{letter-spacing:-0.008400px;}
.lsb{letter-spacing:-0.008100px;}
.ls5{letter-spacing:-0.006600px;}
.ls30{letter-spacing:-0.005521px;}
.lse{letter-spacing:-0.005400px;}
.lsa{letter-spacing:-0.004050px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.005400px;}
.ls14{letter-spacing:0.006600px;}
.ls33{letter-spacing:0.008400px;}
.lsf{letter-spacing:0.013200px;}
.ls2{letter-spacing:0.016562px;}
.ls1{letter-spacing:0.018000px;}
.ls2f{letter-spacing:0.019800px;}
.ls21{letter-spacing:0.026400px;}
.ls10{letter-spacing:0.475200px;}
.ls11{letter-spacing:0.825000px;}
.ls38{letter-spacing:1.234200px;}
.ls0{letter-spacing:18.132000px;}
.ls32{letter-spacing:56.994000px;}
.ls26{letter-spacing:61.644000px;}
.ls1c{letter-spacing:65.934000px;}
.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;}
}
.ws0{word-spacing:-13.500000px;}
.ws51{word-spacing:-13.494600px;}
.ws4f{word-spacing:-13.489200px;}
.ws54{word-spacing:-13.483800px;}
.ws50{word-spacing:-12.447000px;}
.wsa7{word-spacing:-10.491600px;}
.ws86{word-spacing:-10.125000px;}
.ws4{word-spacing:-10.120950px;}
.ws87{word-spacing:-10.116900px;}
.ws53{word-spacing:-10.112850px;}
.ws88{word-spacing:-9.711900px;}
.ws8a{word-spacing:-7.081200px;}
.ws1e{word-spacing:-2.428800px;}
.ws64{word-spacing:-2.422200px;}
.ws41{word-spacing:-2.376000px;}
.ws94{word-spacing:-2.362800px;}
.ws91{word-spacing:-2.290200px;}
.ws82{word-spacing:-2.217600px;}
.ws72{word-spacing:-2.085600px;}
.ws73{word-spacing:-1.966800px;}
.ws92{word-spacing:-1.834800px;}
.ws31{word-spacing:-1.768800px;}
.ws38{word-spacing:-1.702800px;}
.wsbc{word-spacing:-1.570800px;}
.ws66{word-spacing:-1.557600px;}
.wsba{word-spacing:-1.511400px;}
.wsd4{word-spacing:-1.445400px;}
.ws29{word-spacing:-1.432200px;}
.ws2e{word-spacing:-1.386000px;}
.ws61{word-spacing:-1.372800px;}
.ws76{word-spacing:-1.306800px;}
.ws5e{word-spacing:-1.293600px;}
.ws9d{word-spacing:-1.247400px;}
.ws39{word-spacing:-1.023000px;}
.ws5a{word-spacing:-0.976800px;}
.ws1a{word-spacing:-0.970200px;}
.wsa4{word-spacing:-0.963600px;}
.ws97{word-spacing:-0.917400px;}
.ws3f{word-spacing:-0.844800px;}
.ws56{word-spacing:-0.831600px;}
.ws3d{word-spacing:-0.752400px;}
.wsc7{word-spacing:-0.719400px;}
.wsd5{word-spacing:-0.712800px;}
.ws58{word-spacing:-0.679800px;}
.ws70{word-spacing:-0.653400px;}
.ws47{word-spacing:-0.521400px;}
.ws3b{word-spacing:-0.514800px;}
.wsab{word-spacing:-0.455400px;}
.ws6f{word-spacing:-0.448800px;}
.ws27{word-spacing:-0.382800px;}
.wsa1{word-spacing:-0.369600px;}
.ws3e{word-spacing:-0.290400px;}
.wsb6{word-spacing:-0.283800px;}
.ws7d{word-spacing:-0.237600px;}
.ws44{word-spacing:-0.231000px;}
.ws4e{word-spacing:-0.224400px;}
.ws84{word-spacing:-0.171600px;}
.wsb5{word-spacing:-0.165000px;}
.ws69{word-spacing:-0.158400px;}
.ws7f{word-spacing:-0.118800px;}
.ws45{word-spacing:-0.105600px;}
.wsb1{word-spacing:-0.052800px;}
.ws5{word-spacing:0.000000px;}
.ws25{word-spacing:0.013200px;}
.ws83{word-spacing:0.072600px;}
.ws9b{word-spacing:0.079200px;}
.ws79{word-spacing:0.125400px;}
.ws71{word-spacing:0.132000px;}
.ws65{word-spacing:0.138600px;}
.ws36{word-spacing:0.204600px;}
.wsa2{word-spacing:0.244200px;}
.ws74{word-spacing:0.250800px;}
.ws4d{word-spacing:0.257400px;}
.ws5d{word-spacing:0.264000px;}
.ws5c{word-spacing:0.303600px;}
.ws1c{word-spacing:0.343200px;}
.ws10{word-spacing:0.349800px;}
.ws7e{word-spacing:0.481800px;}
.ws4a{word-spacing:0.541200px;}
.wsac{word-spacing:0.561000px;}
.wsc8{word-spacing:0.600600px;}
.ws6d{word-spacing:0.607200px;}
.wsce{word-spacing:0.660000px;}
.ws6e{word-spacing:0.673200px;}
.ws80{word-spacing:0.805200px;}
.wsb0{word-spacing:0.871200px;}
.wsf{word-spacing:0.937200px;}
.ws46{word-spacing:0.943800px;}
.ws67{word-spacing:1.003200px;}
.wsa0{word-spacing:1.009800px;}
.wsa8{word-spacing:1.041600px;}
.wsa9{word-spacing:1.058400px;}
.ws9c{word-spacing:1.062600px;}
.ws1f{word-spacing:1.069200px;}
.ws28{word-spacing:1.128600px;}
.ws6c{word-spacing:1.181400px;}
.wsc3{word-spacing:1.194600px;}
.ws85{word-spacing:1.201200px;}
.wscf{word-spacing:1.326600px;}
.ws3a{word-spacing:1.333200px;}
.ws32{word-spacing:1.333800px;}
.ws17{word-spacing:1.350000px;}
.ws33{word-spacing:1.355400px;}
.ws18{word-spacing:1.360800px;}
.wsaa{word-spacing:1.366200px;}
.ws37{word-spacing:1.399200px;}
.ws24{word-spacing:1.465200px;}
.ws9a{word-spacing:1.590600px;}
.ws95{word-spacing:1.597200px;}
.wsbd{word-spacing:1.643400px;}
.ws7{word-spacing:1.650000px;}
.ws8{word-spacing:1.656600px;}
.ws6{word-spacing:1.663200px;}
.ws16{word-spacing:1.669800px;}
.ws9f{word-spacing:1.735800px;}
.ws7c{word-spacing:1.808400px;}
.ws81{word-spacing:1.927200px;}
.wsb3{word-spacing:1.993200px;}
.ws12{word-spacing:1.999800px;}
.ws34{word-spacing:2.118600px;}
.ws60{word-spacing:2.125200px;}
.wsb{word-spacing:2.191200px;}
.ws4b{word-spacing:2.257200px;}
.ws5f{word-spacing:2.316600px;}
.wsd1{word-spacing:2.382600px;}
.wsd2{word-spacing:2.389200px;}
.wsa3{word-spacing:2.448600px;}
.ws78{word-spacing:2.653200px;}
.wsc2{word-spacing:2.712600px;}
.ws3c{word-spacing:2.719200px;}
.ws9{word-spacing:2.785200px;}
.ws8e{word-spacing:2.851200px;}
.ws21{word-spacing:2.910600px;}
.ws6a{word-spacing:2.983200px;}
.ws7a{word-spacing:3.181200px;}
.ws57{word-spacing:3.247200px;}
.wsb7{word-spacing:3.306600px;}
.wsb2{word-spacing:3.313200px;}
.ws5b{word-spacing:3.372600px;}
.ws59{word-spacing:3.445200px;}
.wsb4{word-spacing:3.577200px;}
.wsc1{word-spacing:3.643200px;}
.ws89{word-spacing:3.723150px;}
.ws9e{word-spacing:3.841200px;}
.ws90{word-spacing:3.973200px;}
.wsa{word-spacing:4.039200px;}
.wsd0{word-spacing:4.230600px;}
.wse{word-spacing:4.237200px;}
.ws75{word-spacing:4.303200px;}
.ws6b{word-spacing:4.362600px;}
.ws43{word-spacing:4.369200px;}
.ws2a{word-spacing:4.494600px;}
.ws2d{word-spacing:4.501200px;}
.ws77{word-spacing:4.534200px;}
.wsc6{word-spacing:4.554000px;}
.wsc5{word-spacing:4.560600px;}
.wsc4{word-spacing:4.567200px;}
.wsae{word-spacing:4.699200px;}
.ws8d{word-spacing:4.706100px;}
.ws2{word-spacing:4.742550px;}
.ws3{word-spacing:4.746600px;}
.ws8c{word-spacing:4.750650px;}
.ws2f{word-spacing:4.758600px;}
.ws8b{word-spacing:4.760400px;}
.wsad{word-spacing:4.765200px;}
.ws1{word-spacing:4.777050px;}
.ws2c{word-spacing:4.897200px;}
.ws93{word-spacing:5.022600px;}
.ws99{word-spacing:5.029200px;}
.ws96{word-spacing:5.068800px;}
.ws8f{word-spacing:5.161200px;}
.ws48{word-spacing:5.293200px;}
.wsbe{word-spacing:5.425200px;}
.ws68{word-spacing:5.484600px;}
.ws30{word-spacing:5.557200px;}
.wsca{word-spacing:5.590200px;}
.ws49{word-spacing:5.755200px;}
.ws11{word-spacing:5.761800px;}
.wsaf{word-spacing:5.821200px;}
.wscc{word-spacing:5.874000px;}
.wscd{word-spacing:5.887200px;}
.wsd{word-spacing:6.151200px;}
.ws22{word-spacing:6.342600px;}
.ws42{word-spacing:6.547200px;}
.ws7b{word-spacing:7.339200px;}
.ws23{word-spacing:7.603200px;}
.ws15{word-spacing:7.682400px;}
.ws4c{word-spacing:8.197200px;}
.wsb8{word-spacing:8.916600px;}
.wscb{word-spacing:8.923200px;}
.ws63{word-spacing:8.989200px;}
.ws35{word-spacing:9.246600px;}
.ws62{word-spacing:9.385200px;}
.ws13{word-spacing:9.860400px;}
.ws26{word-spacing:10.104600px;}
.ws40{word-spacing:11.101200px;}
.ws14{word-spacing:11.583000px;}
.wsb9{word-spacing:11.688600px;}
.wsc0{word-spacing:11.695200px;}
.ws1b{word-spacing:12.612600px;}
.ws98{word-spacing:15.589200px;}
.wsbf{word-spacing:15.853200px;}
.wsc{word-spacing:17.562600px;}
.wsbb{word-spacing:17.754000px;}
.wsc9{word-spacing:18.625200px;}
.ws1d{word-spacing:21.001200px;}
.ws2b{word-spacing:23.925000px;}
.ws19{word-spacing:24.274800px;}
.ws20{word-spacing:24.281400px;}
.wsa5{word-spacing:28.131600px;}
.wsd3{word-spacing:30.247800px;}
.ws55{word-spacing:672.550800px;}
.wsa6{word-spacing:854.901000px;}
.ws52{word-spacing:1163.300400px;}
._9{margin-left:-837.512400px;}
._11{margin-left:-9.174000px;}
._10{margin-left:-7.392000px;}
._8{margin-left:-6.270000px;}
._1{margin-left:-4.884000px;}
._5{margin-left:-3.630000px;}
._2{margin-left:-2.442000px;}
._0{margin-left:-1.254000px;}
._4{width:1.320000px;}
._3{width:2.706000px;}
._6{width:6.336000px;}
._7{width:8.910000px;}
._12{width:15.404400px;}
._a{width:17.886000px;}
._b{width:61.644000px;}
._c{width:112.266000px;}
._d{width:124.404000px;}
._e{width:131.670000px;}
._f{width:449.064000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.500000px;}
.fs3{font-size:40.500000px;}
.fs5{font-size:42.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:55.206381px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:63.208500px;}
.y1{bottom:63.486000px;}
.y1e{bottom:109.927500px;}
.y1d{bottom:126.424500px;}
.y110{bottom:139.511250px;}
.yef{bottom:140.499000px;}
.y1c{bottom:142.921500px;}
.ya5{bottom:144.399000px;}
.ycc{bottom:149.361000px;}
.y7c{bottom:155.467500px;}
.y10f{bottom:159.014250px;}
.y42{bottom:159.047250px;}
.ya4{bottom:163.902000px;}
.ycb{bottom:168.864000px;}
.y67{bottom:178.517100px;}
.yee{bottom:178.517250px;}
.y41{bottom:178.550250px;}
.ya3{bottom:183.405000px;}
.yca{bottom:188.367000px;}
.y101{bottom:196.815000px;}
.y66{bottom:198.020100px;}
.yed{bottom:198.020250px;}
.y40{bottom:198.053250px;}
.y20{bottom:200.812500px;}
.ya2{bottom:202.908000px;}
.yc9{bottom:207.870000px;}
.y65{bottom:217.523100px;}
.yec{bottom:217.523250px;}
.y3f{bottom:217.556250px;}
.y1f{bottom:220.315500px;}
.ya1{bottom:222.411000px;}
.yc8{bottom:227.373000px;}
.y64{bottom:237.026100px;}
.yeb{bottom:237.026250px;}
.y3e{bottom:237.059250px;}
.yc7{bottom:246.876000px;}
.y63{bottom:256.529100px;}
.yea{bottom:256.529250px;}
.y3d{bottom:256.562250px;}
.ya0{bottom:261.417000px;}
.y7e{bottom:263.468250px;}
.y18{bottom:265.369500px;}
.yc6{bottom:266.379000px;}
.y7f{bottom:271.722000px;}
.y62{bottom:276.032100px;}
.ye9{bottom:276.032250px;}
.y3c{bottom:276.065250px;}
.y7d{bottom:279.972000px;}
.y9f{bottom:280.920000px;}
.y17{bottom:284.872500px;}
.yc5{bottom:285.882000px;}
.y61{bottom:295.535100px;}
.ye8{bottom:295.535250px;}
.y3b{bottom:295.568250px;}
.y9e{bottom:300.423000px;}
.y10c{bottom:301.143000px;}
.y16{bottom:304.375500px;}
.yc4{bottom:305.385000px;}
.y60{bottom:315.038100px;}
.ye7{bottom:315.038250px;}
.y3a{bottom:315.071250px;}
.y9d{bottom:319.926000px;}
.y15{bottom:323.878500px;}
.yc3{bottom:324.888000px;}
.y5f{bottom:334.541100px;}
.ye6{bottom:334.541250px;}
.y39{bottom:334.574250px;}
.y9c{bottom:339.429000px;}
.y14{bottom:343.381500px;}
.y5e{bottom:354.044100px;}
.ye5{bottom:354.044250px;}
.y38{bottom:354.077250px;}
.y9b{bottom:358.932000px;}
.y6e{bottom:359.217000px;}
.y13{bottom:362.884500px;}
.y5d{bottom:373.547100px;}
.ye4{bottom:373.547250px;}
.y37{bottom:373.580250px;}
.y9a{bottom:378.435000px;}
.y6d{bottom:378.720000px;}
.yc2{bottom:378.892500px;}
.y5c{bottom:393.050100px;}
.ye3{bottom:393.050250px;}
.y36{bottom:393.083250px;}
.y99{bottom:397.938000px;}
.y6c{bottom:398.223000px;}
.y12{bottom:401.890500px;}
.y5b{bottom:412.553100px;}
.ye2{bottom:412.553250px;}
.y35{bottom:412.586250px;}
.y98{bottom:417.441000px;}
.y6b{bottom:417.726000px;}
.y11{bottom:421.393500px;}
.y5a{bottom:432.056100px;}
.y10e{bottom:432.056250px;}
.y34{bottom:432.089250px;}
.y97{bottom:436.944000px;}
.y6a{bottom:437.229000px;}
.y10b{bottom:438.256500px;}
.ybf{bottom:447.058500px;}
.yb1{bottom:449.505000px;}
.yaa{bottom:449.931000px;}
.y80{bottom:451.559100px;}
.ye1{bottom:451.559250px;}
.y33{bottom:451.592250px;}
.y96{bottom:456.447000px;}
.y69{bottom:456.732000px;}
.y59{bottom:471.062100px;}
.ye0{bottom:471.062250px;}
.y32{bottom:471.095250px;}
.y95{bottom:475.950000px;}
.y10{bottom:479.886000px;}
.y100{bottom:483.538500px;}
.yad{bottom:490.380000px;}
.y58{bottom:490.565100px;}
.ydf{bottom:490.565250px;}
.y31{bottom:490.598250px;}
.y68{bottom:491.233500px;}
.yb0{bottom:493.368000px;}
.y94{bottom:495.453000px;}
.y57{bottom:510.068100px;}
.yde{bottom:510.068250px;}
.y30{bottom:510.101250px;}
.y93{bottom:514.956000px;}
.yf{bottom:518.892000px;}
.yac{bottom:521.107500px;}
.yff{bottom:521.653500px;}
.yb7{bottom:523.531125px;}
.ybe{bottom:528.988500px;}
.y56{bottom:529.571100px;}
.ydd{bottom:529.571250px;}
.y2f{bottom:529.604250px;}
.y92{bottom:534.459000px;}
.ye{bottom:538.395000px;}
.y79{bottom:542.647500px;}
.y10d{bottom:543.124500px;}
.yfe{bottom:548.649000px;}
.y55{bottom:549.074100px;}
.ydc{bottom:549.074250px;}
.y91{bottom:553.962000px;}
.yab{bottom:554.199000px;}
.yaf{bottom:554.593500px;}
.yd{bottom:557.898000px;}
.y10a{bottom:559.437000px;}
.y78{bottom:563.397000px;}
.y54{bottom:568.577100px;}
.ydb{bottom:568.577250px;}
.y90{bottom:573.465000px;}
.y109{bottom:574.318500px;}
.yc{bottom:577.401000px;}
.y77{bottom:584.146500px;}
.y53{bottom:588.080100px;}
.yda{bottom:588.080250px;}
.y2e{bottom:588.096750px;}
.y8f{bottom:592.968000px;}
.yb{bottom:596.904000px;}
.yb6{bottom:599.701500px;}
.ybc{bottom:599.895000px;}
.y76{bottom:604.896000px;}
.y52{bottom:607.583100px;}
.yd9{bottom:607.583250px;}
.y2d{bottom:607.599750px;}
.ya{bottom:616.407000px;}
.y75{bottom:625.645500px;}
.y51{bottom:627.086100px;}
.yd8{bottom:627.086250px;}
.y8e{bottom:627.468000px;}
.ybb{bottom:629.047500px;}
.yb4{bottom:631.128000px;}
.yc1{bottom:631.576500px;}
.y9{bottom:635.910000px;}
.y74{bottom:646.395000px;}
.y50{bottom:646.589100px;}
.yd7{bottom:646.589250px;}
.y2c{bottom:646.605750px;}
.y8{bottom:655.413000px;}
.y108{bottom:658.293000px;}
.ybd{bottom:661.350000px;}
.yb5{bottom:661.720500px;}
.y8d{bottom:666.055500px;}
.y87{bottom:666.069000px;}
.y8a{bottom:666.082500px;}
.y4f{bottom:666.092100px;}
.yd6{bottom:666.092250px;}
.y2b{bottom:666.108750px;}
.y105{bottom:677.704500px;}
.y73{bottom:681.220650px;}
.y8c{bottom:682.552500px;}
.y86{bottom:682.566000px;}
.y89{bottom:682.579500px;}
.yf7{bottom:682.587000px;}
.y4e{bottom:685.595100px;}
.yd5{bottom:685.595250px;}
.y2a{bottom:685.611750px;}
.yf5{bottom:688.372500px;}
.yba{bottom:691.245750px;}
.yfd{bottom:691.564500px;}
.y104{bottom:694.011000px;}
.y7{bottom:694.413000px;}
.y72{bottom:697.717650px;}
.yfc{bottom:699.313500px;}
.y4d{bottom:705.098100px;}
.yd4{bottom:705.098250px;}
.y29{bottom:705.114750px;}
.yb9{bottom:706.251000px;}
.yfb{bottom:711.546000px;}
.y6{bottom:713.916000px;}
.y88{bottom:715.573500px;}
.y103{bottom:718.266000px;}
.yf6{bottom:719.736000px;}
.yfa{bottom:721.332000px;}
.yb2{bottom:722.961000px;}
.y4c{bottom:724.601100px;}
.yd3{bottom:724.601250px;}
.y28{bottom:724.617750px;}
.yf9{bottom:731.317500px;}
.y8b{bottom:732.057000px;}
.y85{bottom:732.070500px;}
.y5{bottom:733.419000px;}
.yc0{bottom:737.082000px;}
.yb8{bottom:737.472000px;}
.y102{bottom:738.384000px;}
.y7a{bottom:742.285500px;}
.y7b{bottom:742.806000px;}
.yf4{bottom:743.791500px;}
.y4b{bottom:744.104100px;}
.yd2{bottom:744.104250px;}
.y27{bottom:744.120750px;}
.yf8{bottom:747.214500px;}
.y84{bottom:748.567500px;}
.y4{bottom:752.910000px;}
.yb3{bottom:763.467000px;}
.y4a{bottom:763.607100px;}
.yd1{bottom:763.607250px;}
.y26{bottom:763.623750px;}
.yae{bottom:765.991500px;}
.yf3{bottom:766.797000px;}
.yf1{bottom:780.699000px;}
.y83{bottom:781.561500px;}
.y107{bottom:782.665500px;}
.y49{bottom:783.110100px;}
.yd0{bottom:783.110250px;}
.y71{bottom:786.898650px;}
.y3{bottom:791.916000px;}
.yf2{bottom:796.428000px;}
.y48{bottom:802.613100px;}
.ycf{bottom:802.613250px;}
.y25{bottom:802.629750px;}
.ya8{bottom:804.820875px;}
.ya9{bottom:808.182375px;}
.ya6{bottom:808.192500px;}
.y2{bottom:811.419000px;}
.y70{bottom:812.251650px;}
.y82{bottom:814.555500px;}
.ya7{bottom:821.324625px;}
.y47{bottom:822.116100px;}
.yce{bottom:822.116250px;}
.y24{bottom:822.132750px;}
.y106{bottom:837.940500px;}
.y46{bottom:841.619100px;}
.ycd{bottom:841.619250px;}
.y45{bottom:861.122100px;}
.y81{bottom:861.122250px;}
.yf0{bottom:874.082700px;}
.y44{bottom:880.625100px;}
.y23{bottom:880.625250px;}
.y6f{bottom:882.586650px;}
.y1a{bottom:889.383900px;}
.y19{bottom:905.883900px;}
.y1b{bottom:939.617400px;}
.y43{bottom:943.523550px;}
.y21{bottom:943.774950px;}
.hb{height:33.934570px;}
.he{height:35.150391px;}
.hd{height:35.191406px;}
.h9{height:35.991211px;}
.h2{height:37.900474px;}
.hc{height:43.989258px;}
.h8{height:45.193359px;}
.ha{height:45.246094px;}
.h7{height:55.236328px;}
.h3{height:55.300781px;}
.h5{height:63.013359px;}
.h6{height:63.037359px;}
.h4{height:63.049359px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:86.539350px;}
.x18{left:88.483950px;}
.xa{left:99.295050px;}
.x12{left:104.748000px;}
.xe{left:107.799150px;}
.x34{left:111.562350px;}
.x2{left:113.469150px;}
.x8{left:120.555000px;}
.x3f{left:121.701000px;}
.x17{left:127.605000px;}
.x13{left:129.210000px;}
.x35{left:133.980150px;}
.x9{left:135.438000px;}
.x33{left:137.453250px;}
.x1c{left:138.872100px;}
.x36{left:141.832050px;}
.xf{left:143.043150px;}
.x3{left:150.610650px;}
.x5{left:152.865000px;}
.x3c{left:153.894000px;}
.x6{left:163.719000px;}
.x4{left:169.305150px;}
.x3d{left:175.902000px;}
.x3e{left:193.752000px;}
.x38{left:216.127500px;}
.x7{left:230.478000px;}
.xd{left:242.476500px;}
.x1e{left:256.620000px;}
.x27{left:278.400000px;}
.x26{left:287.893500px;}
.x41{left:291.199500px;}
.x16{left:292.939500px;}
.x2f{left:296.455500px;}
.x31{left:300.408000px;}
.x30{left:301.954125px;}
.x28{left:306.637500px;}
.x11{left:309.300000px;}
.x24{left:311.568000px;}
.x1d{left:312.712500px;}
.x10{left:314.848500px;}
.x32{left:317.425500px;}
.x1b{left:323.235000px;}
.x25{left:332.527500px;}
.x40{left:335.278500px;}
.x39{left:384.684000px;}
.x20{left:433.749000px;}
.x3b{left:440.596500px;}
.x3a{left:449.343000px;}
.x14{left:474.972000px;}
.x1f{left:482.389500px;}
.x15{left:483.585000px;}
.x2a{left:512.470500px;}
.x23{left:517.378875px;}
.x2e{left:519.867000px;}
.x29{left:525.994500px;}
.x2c{left:530.859000px;}
.x22{left:531.867750px;}
.x2b{left:535.437000px;}
.x2d{left:539.028000px;}
.x19{left:547.217325px;}
.xb{left:549.614550px;}
.x1a{left:551.236950px;}
.x21{left:613.249500px;}
.x1{left:614.397000px;}
.x42{left:615.900000px;}
.x37{left:617.277000px;}
@media print{
.v2{vertical-align:-22.474667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.872000pt;}
.ls27{letter-spacing:-2.563733pt;}
.ls2a{letter-spacing:-1.372800pt;}
.ls1e{letter-spacing:-0.936000pt;}
.ls29{letter-spacing:-0.844800pt;}
.ls7{letter-spacing:-0.838933pt;}
.ls25{letter-spacing:-0.833067pt;}
.ls23{letter-spacing:-0.827200pt;}
.ls2d{letter-spacing:-0.716800pt;}
.ls2c{letter-spacing:-0.708400pt;}
.ls2e{letter-spacing:-0.705600pt;}
.ls9{letter-spacing:-0.557333pt;}
.ls28{letter-spacing:-0.551467pt;}
.ls8{letter-spacing:-0.545600pt;}
.ls16{letter-spacing:-0.533867pt;}
.ls2b{letter-spacing:-0.367200pt;}
.ls18{letter-spacing:-0.269867pt;}
.ls17{letter-spacing:-0.264000pt;}
.ls22{letter-spacing:-0.258133pt;}
.ls12{letter-spacing:-0.252267pt;}
.ls31{letter-spacing:-0.240533pt;}
.ls13{letter-spacing:-0.234667pt;}
.ls15{letter-spacing:-0.225600pt;}
.ls24{letter-spacing:-0.076267pt;}
.ls37{letter-spacing:-0.041067pt;}
.ls19{letter-spacing:-0.035200pt;}
.ls1a{letter-spacing:-0.029333pt;}
.ls1b{letter-spacing:-0.023467pt;}
.ls1d{letter-spacing:-0.019200pt;}
.ls6{letter-spacing:-0.017600pt;}
.ls36{letter-spacing:-0.014933pt;}
.ls1f{letter-spacing:-0.014400pt;}
.ls3{letter-spacing:-0.011733pt;}
.ls35{letter-spacing:-0.011200pt;}
.ls20{letter-spacing:-0.010800pt;}
.lsd{letter-spacing:-0.009600pt;}
.ls34{letter-spacing:-0.007467pt;}
.lsb{letter-spacing:-0.007200pt;}
.ls5{letter-spacing:-0.005867pt;}
.ls30{letter-spacing:-0.004907pt;}
.lse{letter-spacing:-0.004800pt;}
.lsa{letter-spacing:-0.003600pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.004800pt;}
.ls14{letter-spacing:0.005867pt;}
.ls33{letter-spacing:0.007467pt;}
.lsf{letter-spacing:0.011733pt;}
.ls2{letter-spacing:0.014722pt;}
.ls1{letter-spacing:0.016000pt;}
.ls2f{letter-spacing:0.017600pt;}
.ls21{letter-spacing:0.023467pt;}
.ls10{letter-spacing:0.422400pt;}
.ls11{letter-spacing:0.733333pt;}
.ls38{letter-spacing:1.097067pt;}
.ls0{letter-spacing:16.117333pt;}
.ls32{letter-spacing:50.661333pt;}
.ls26{letter-spacing:54.794667pt;}
.ls1c{letter-spacing:58.608000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws51{word-spacing:-11.995200pt;}
.ws4f{word-spacing:-11.990400pt;}
.ws54{word-spacing:-11.985600pt;}
.ws50{word-spacing:-11.064000pt;}
.wsa7{word-spacing:-9.325867pt;}
.ws86{word-spacing:-9.000000pt;}
.ws4{word-spacing:-8.996400pt;}
.ws87{word-spacing:-8.992800pt;}
.ws53{word-spacing:-8.989200pt;}
.ws88{word-spacing:-8.632800pt;}
.ws8a{word-spacing:-6.294400pt;}
.ws1e{word-spacing:-2.158933pt;}
.ws64{word-spacing:-2.153067pt;}
.ws41{word-spacing:-2.112000pt;}
.ws94{word-spacing:-2.100267pt;}
.ws91{word-spacing:-2.035733pt;}
.ws82{word-spacing:-1.971200pt;}
.ws72{word-spacing:-1.853867pt;}
.ws73{word-spacing:-1.748267pt;}
.ws92{word-spacing:-1.630933pt;}
.ws31{word-spacing:-1.572267pt;}
.ws38{word-spacing:-1.513600pt;}
.wsbc{word-spacing:-1.396267pt;}
.ws66{word-spacing:-1.384533pt;}
.wsba{word-spacing:-1.343467pt;}
.wsd4{word-spacing:-1.284800pt;}
.ws29{word-spacing:-1.273067pt;}
.ws2e{word-spacing:-1.232000pt;}
.ws61{word-spacing:-1.220267pt;}
.ws76{word-spacing:-1.161600pt;}
.ws5e{word-spacing:-1.149867pt;}
.ws9d{word-spacing:-1.108800pt;}
.ws39{word-spacing:-0.909333pt;}
.ws5a{word-spacing:-0.868267pt;}
.ws1a{word-spacing:-0.862400pt;}
.wsa4{word-spacing:-0.856533pt;}
.ws97{word-spacing:-0.815467pt;}
.ws3f{word-spacing:-0.750933pt;}
.ws56{word-spacing:-0.739200pt;}
.ws3d{word-spacing:-0.668800pt;}
.wsc7{word-spacing:-0.639467pt;}
.wsd5{word-spacing:-0.633600pt;}
.ws58{word-spacing:-0.604267pt;}
.ws70{word-spacing:-0.580800pt;}
.ws47{word-spacing:-0.463467pt;}
.ws3b{word-spacing:-0.457600pt;}
.wsab{word-spacing:-0.404800pt;}
.ws6f{word-spacing:-0.398933pt;}
.ws27{word-spacing:-0.340267pt;}
.wsa1{word-spacing:-0.328533pt;}
.ws3e{word-spacing:-0.258133pt;}
.wsb6{word-spacing:-0.252267pt;}
.ws7d{word-spacing:-0.211200pt;}
.ws44{word-spacing:-0.205333pt;}
.ws4e{word-spacing:-0.199467pt;}
.ws84{word-spacing:-0.152533pt;}
.wsb5{word-spacing:-0.146667pt;}
.ws69{word-spacing:-0.140800pt;}
.ws7f{word-spacing:-0.105600pt;}
.ws45{word-spacing:-0.093867pt;}
.wsb1{word-spacing:-0.046933pt;}
.ws5{word-spacing:0.000000pt;}
.ws25{word-spacing:0.011733pt;}
.ws83{word-spacing:0.064533pt;}
.ws9b{word-spacing:0.070400pt;}
.ws79{word-spacing:0.111467pt;}
.ws71{word-spacing:0.117333pt;}
.ws65{word-spacing:0.123200pt;}
.ws36{word-spacing:0.181867pt;}
.wsa2{word-spacing:0.217067pt;}
.ws74{word-spacing:0.222933pt;}
.ws4d{word-spacing:0.228800pt;}
.ws5d{word-spacing:0.234667pt;}
.ws5c{word-spacing:0.269867pt;}
.ws1c{word-spacing:0.305067pt;}
.ws10{word-spacing:0.310933pt;}
.ws7e{word-spacing:0.428267pt;}
.ws4a{word-spacing:0.481067pt;}
.wsac{word-spacing:0.498667pt;}
.wsc8{word-spacing:0.533867pt;}
.ws6d{word-spacing:0.539733pt;}
.wsce{word-spacing:0.586667pt;}
.ws6e{word-spacing:0.598400pt;}
.ws80{word-spacing:0.715733pt;}
.wsb0{word-spacing:0.774400pt;}
.wsf{word-spacing:0.833067pt;}
.ws46{word-spacing:0.838933pt;}
.ws67{word-spacing:0.891733pt;}
.wsa0{word-spacing:0.897600pt;}
.wsa8{word-spacing:0.925867pt;}
.wsa9{word-spacing:0.940800pt;}
.ws9c{word-spacing:0.944533pt;}
.ws1f{word-spacing:0.950400pt;}
.ws28{word-spacing:1.003200pt;}
.ws6c{word-spacing:1.050133pt;}
.wsc3{word-spacing:1.061867pt;}
.ws85{word-spacing:1.067733pt;}
.wscf{word-spacing:1.179200pt;}
.ws3a{word-spacing:1.185067pt;}
.ws32{word-spacing:1.185600pt;}
.ws17{word-spacing:1.200000pt;}
.ws33{word-spacing:1.204800pt;}
.ws18{word-spacing:1.209600pt;}
.wsaa{word-spacing:1.214400pt;}
.ws37{word-spacing:1.243733pt;}
.ws24{word-spacing:1.302400pt;}
.ws9a{word-spacing:1.413867pt;}
.ws95{word-spacing:1.419733pt;}
.wsbd{word-spacing:1.460800pt;}
.ws7{word-spacing:1.466667pt;}
.ws8{word-spacing:1.472533pt;}
.ws6{word-spacing:1.478400pt;}
.ws16{word-spacing:1.484267pt;}
.ws9f{word-spacing:1.542933pt;}
.ws7c{word-spacing:1.607467pt;}
.ws81{word-spacing:1.713067pt;}
.wsb3{word-spacing:1.771733pt;}
.ws12{word-spacing:1.777600pt;}
.ws34{word-spacing:1.883200pt;}
.ws60{word-spacing:1.889067pt;}
.wsb{word-spacing:1.947733pt;}
.ws4b{word-spacing:2.006400pt;}
.ws5f{word-spacing:2.059200pt;}
.wsd1{word-spacing:2.117867pt;}
.wsd2{word-spacing:2.123733pt;}
.wsa3{word-spacing:2.176533pt;}
.ws78{word-spacing:2.358400pt;}
.wsc2{word-spacing:2.411200pt;}
.ws3c{word-spacing:2.417067pt;}
.ws9{word-spacing:2.475733pt;}
.ws8e{word-spacing:2.534400pt;}
.ws21{word-spacing:2.587200pt;}
.ws6a{word-spacing:2.651733pt;}
.ws7a{word-spacing:2.827733pt;}
.ws57{word-spacing:2.886400pt;}
.wsb7{word-spacing:2.939200pt;}
.wsb2{word-spacing:2.945067pt;}
.ws5b{word-spacing:2.997867pt;}
.ws59{word-spacing:3.062400pt;}
.wsb4{word-spacing:3.179733pt;}
.wsc1{word-spacing:3.238400pt;}
.ws89{word-spacing:3.309467pt;}
.ws9e{word-spacing:3.414400pt;}
.ws90{word-spacing:3.531733pt;}
.wsa{word-spacing:3.590400pt;}
.wsd0{word-spacing:3.760533pt;}
.wse{word-spacing:3.766400pt;}
.ws75{word-spacing:3.825067pt;}
.ws6b{word-spacing:3.877867pt;}
.ws43{word-spacing:3.883733pt;}
.ws2a{word-spacing:3.995200pt;}
.ws2d{word-spacing:4.001067pt;}
.ws77{word-spacing:4.030400pt;}
.wsc6{word-spacing:4.048000pt;}
.wsc5{word-spacing:4.053867pt;}
.wsc4{word-spacing:4.059733pt;}
.wsae{word-spacing:4.177067pt;}
.ws8d{word-spacing:4.183200pt;}
.ws2{word-spacing:4.215600pt;}
.ws3{word-spacing:4.219200pt;}
.ws8c{word-spacing:4.222800pt;}
.ws2f{word-spacing:4.229867pt;}
.ws8b{word-spacing:4.231467pt;}
.wsad{word-spacing:4.235733pt;}
.ws1{word-spacing:4.246267pt;}
.ws2c{word-spacing:4.353067pt;}
.ws93{word-spacing:4.464533pt;}
.ws99{word-spacing:4.470400pt;}
.ws96{word-spacing:4.505600pt;}
.ws8f{word-spacing:4.587733pt;}
.ws48{word-spacing:4.705067pt;}
.wsbe{word-spacing:4.822400pt;}
.ws68{word-spacing:4.875200pt;}
.ws30{word-spacing:4.939733pt;}
.wsca{word-spacing:4.969067pt;}
.ws49{word-spacing:5.115733pt;}
.ws11{word-spacing:5.121600pt;}
.wsaf{word-spacing:5.174400pt;}
.wscc{word-spacing:5.221333pt;}
.wscd{word-spacing:5.233067pt;}
.wsd{word-spacing:5.467733pt;}
.ws22{word-spacing:5.637867pt;}
.ws42{word-spacing:5.819733pt;}
.ws7b{word-spacing:6.523733pt;}
.ws23{word-spacing:6.758400pt;}
.ws15{word-spacing:6.828800pt;}
.ws4c{word-spacing:7.286400pt;}
.wsb8{word-spacing:7.925867pt;}
.wscb{word-spacing:7.931733pt;}
.ws63{word-spacing:7.990400pt;}
.ws35{word-spacing:8.219200pt;}
.ws62{word-spacing:8.342400pt;}
.ws13{word-spacing:8.764800pt;}
.ws26{word-spacing:8.981867pt;}
.ws40{word-spacing:9.867733pt;}
.ws14{word-spacing:10.296000pt;}
.wsb9{word-spacing:10.389867pt;}
.wsc0{word-spacing:10.395733pt;}
.ws1b{word-spacing:11.211200pt;}
.ws98{word-spacing:13.857067pt;}
.wsbf{word-spacing:14.091733pt;}
.wsc{word-spacing:15.611200pt;}
.wsbb{word-spacing:15.781333pt;}
.wsc9{word-spacing:16.555733pt;}
.ws1d{word-spacing:18.667733pt;}
.ws2b{word-spacing:21.266667pt;}
.ws19{word-spacing:21.577600pt;}
.ws20{word-spacing:21.583467pt;}
.wsa5{word-spacing:25.005867pt;}
.wsd3{word-spacing:26.886933pt;}
.ws55{word-spacing:597.822933pt;}
.wsa6{word-spacing:759.912000pt;}
.ws52{word-spacing:1034.044800pt;}
._9{margin-left:-744.455467pt;}
._11{margin-left:-8.154667pt;}
._10{margin-left:-6.570667pt;}
._8{margin-left:-5.573333pt;}
._1{margin-left:-4.341333pt;}
._5{margin-left:-3.226667pt;}
._2{margin-left:-2.170667pt;}
._0{margin-left:-1.114667pt;}
._4{width:1.173333pt;}
._3{width:2.405333pt;}
._6{width:5.632000pt;}
._7{width:7.920000pt;}
._12{width:13.692800pt;}
._a{width:15.898667pt;}
._b{width:54.794667pt;}
._c{width:99.792000pt;}
._d{width:110.581333pt;}
._e{width:117.040000pt;}
._f{width:399.168000pt;}
.fs4{font-size:28.000000pt;}
.fs3{font-size:36.000000pt;}
.fs5{font-size:37.333333pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:49.072339pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:56.185333pt;}
.y1{bottom:56.432000pt;}
.y1e{bottom:97.713333pt;}
.y1d{bottom:112.377333pt;}
.y110{bottom:124.010000pt;}
.yef{bottom:124.888000pt;}
.y1c{bottom:127.041333pt;}
.ya5{bottom:128.354667pt;}
.ycc{bottom:132.765333pt;}
.y7c{bottom:138.193333pt;}
.y10f{bottom:141.346000pt;}
.y42{bottom:141.375333pt;}
.ya4{bottom:145.690667pt;}
.ycb{bottom:150.101333pt;}
.y67{bottom:158.681867pt;}
.yee{bottom:158.682000pt;}
.y41{bottom:158.711333pt;}
.ya3{bottom:163.026667pt;}
.yca{bottom:167.437333pt;}
.y101{bottom:174.946667pt;}
.y66{bottom:176.017867pt;}
.yed{bottom:176.018000pt;}
.y40{bottom:176.047333pt;}
.y20{bottom:178.500000pt;}
.ya2{bottom:180.362667pt;}
.yc9{bottom:184.773333pt;}
.y65{bottom:193.353867pt;}
.yec{bottom:193.354000pt;}
.y3f{bottom:193.383333pt;}
.y1f{bottom:195.836000pt;}
.ya1{bottom:197.698667pt;}
.yc8{bottom:202.109333pt;}
.y64{bottom:210.689867pt;}
.yeb{bottom:210.690000pt;}
.y3e{bottom:210.719333pt;}
.yc7{bottom:219.445333pt;}
.y63{bottom:228.025867pt;}
.yea{bottom:228.026000pt;}
.y3d{bottom:228.055333pt;}
.ya0{bottom:232.370667pt;}
.y7e{bottom:234.194000pt;}
.y18{bottom:235.884000pt;}
.yc6{bottom:236.781333pt;}
.y7f{bottom:241.530667pt;}
.y62{bottom:245.361867pt;}
.ye9{bottom:245.362000pt;}
.y3c{bottom:245.391333pt;}
.y7d{bottom:248.864000pt;}
.y9f{bottom:249.706667pt;}
.y17{bottom:253.220000pt;}
.yc5{bottom:254.117333pt;}
.y61{bottom:262.697867pt;}
.ye8{bottom:262.698000pt;}
.y3b{bottom:262.727333pt;}
.y9e{bottom:267.042667pt;}
.y10c{bottom:267.682667pt;}
.y16{bottom:270.556000pt;}
.yc4{bottom:271.453333pt;}
.y60{bottom:280.033867pt;}
.ye7{bottom:280.034000pt;}
.y3a{bottom:280.063333pt;}
.y9d{bottom:284.378667pt;}
.y15{bottom:287.892000pt;}
.yc3{bottom:288.789333pt;}
.y5f{bottom:297.369867pt;}
.ye6{bottom:297.370000pt;}
.y39{bottom:297.399333pt;}
.y9c{bottom:301.714667pt;}
.y14{bottom:305.228000pt;}
.y5e{bottom:314.705867pt;}
.ye5{bottom:314.706000pt;}
.y38{bottom:314.735333pt;}
.y9b{bottom:319.050667pt;}
.y6e{bottom:319.304000pt;}
.y13{bottom:322.564000pt;}
.y5d{bottom:332.041867pt;}
.ye4{bottom:332.042000pt;}
.y37{bottom:332.071333pt;}
.y9a{bottom:336.386667pt;}
.y6d{bottom:336.640000pt;}
.yc2{bottom:336.793333pt;}
.y5c{bottom:349.377867pt;}
.ye3{bottom:349.378000pt;}
.y36{bottom:349.407333pt;}
.y99{bottom:353.722667pt;}
.y6c{bottom:353.976000pt;}
.y12{bottom:357.236000pt;}
.y5b{bottom:366.713867pt;}
.ye2{bottom:366.714000pt;}
.y35{bottom:366.743333pt;}
.y98{bottom:371.058667pt;}
.y6b{bottom:371.312000pt;}
.y11{bottom:374.572000pt;}
.y5a{bottom:384.049867pt;}
.y10e{bottom:384.050000pt;}
.y34{bottom:384.079333pt;}
.y97{bottom:388.394667pt;}
.y6a{bottom:388.648000pt;}
.y10b{bottom:389.561333pt;}
.ybf{bottom:397.385333pt;}
.yb1{bottom:399.560000pt;}
.yaa{bottom:399.938667pt;}
.y80{bottom:401.385867pt;}
.ye1{bottom:401.386000pt;}
.y33{bottom:401.415333pt;}
.y96{bottom:405.730667pt;}
.y69{bottom:405.984000pt;}
.y59{bottom:418.721867pt;}
.ye0{bottom:418.722000pt;}
.y32{bottom:418.751333pt;}
.y95{bottom:423.066667pt;}
.y10{bottom:426.565333pt;}
.y100{bottom:429.812000pt;}
.yad{bottom:435.893333pt;}
.y58{bottom:436.057867pt;}
.ydf{bottom:436.058000pt;}
.y31{bottom:436.087333pt;}
.y68{bottom:436.652000pt;}
.yb0{bottom:438.549333pt;}
.y94{bottom:440.402667pt;}
.y57{bottom:453.393867pt;}
.yde{bottom:453.394000pt;}
.y30{bottom:453.423333pt;}
.y93{bottom:457.738667pt;}
.yf{bottom:461.237333pt;}
.yac{bottom:463.206667pt;}
.yff{bottom:463.692000pt;}
.yb7{bottom:465.361000pt;}
.ybe{bottom:470.212000pt;}
.y56{bottom:470.729867pt;}
.ydd{bottom:470.730000pt;}
.y2f{bottom:470.759333pt;}
.y92{bottom:475.074667pt;}
.ye{bottom:478.573333pt;}
.y79{bottom:482.353333pt;}
.y10d{bottom:482.777333pt;}
.yfe{bottom:487.688000pt;}
.y55{bottom:488.065867pt;}
.ydc{bottom:488.066000pt;}
.y91{bottom:492.410667pt;}
.yab{bottom:492.621333pt;}
.yaf{bottom:492.972000pt;}
.yd{bottom:495.909333pt;}
.y10a{bottom:497.277333pt;}
.y78{bottom:500.797333pt;}
.y54{bottom:505.401867pt;}
.ydb{bottom:505.402000pt;}
.y90{bottom:509.746667pt;}
.y109{bottom:510.505333pt;}
.yc{bottom:513.245333pt;}
.y77{bottom:519.241333pt;}
.y53{bottom:522.737867pt;}
.yda{bottom:522.738000pt;}
.y2e{bottom:522.752667pt;}
.y8f{bottom:527.082667pt;}
.yb{bottom:530.581333pt;}
.yb6{bottom:533.068000pt;}
.ybc{bottom:533.240000pt;}
.y76{bottom:537.685333pt;}
.y52{bottom:540.073867pt;}
.yd9{bottom:540.074000pt;}
.y2d{bottom:540.088667pt;}
.ya{bottom:547.917333pt;}
.y75{bottom:556.129333pt;}
.y51{bottom:557.409867pt;}
.yd8{bottom:557.410000pt;}
.y8e{bottom:557.749333pt;}
.ybb{bottom:559.153333pt;}
.yb4{bottom:561.002667pt;}
.yc1{bottom:561.401333pt;}
.y9{bottom:565.253333pt;}
.y74{bottom:574.573333pt;}
.y50{bottom:574.745867pt;}
.yd7{bottom:574.746000pt;}
.y2c{bottom:574.760667pt;}
.y8{bottom:582.589333pt;}
.y108{bottom:585.149333pt;}
.ybd{bottom:587.866667pt;}
.yb5{bottom:588.196000pt;}
.y8d{bottom:592.049333pt;}
.y87{bottom:592.061333pt;}
.y8a{bottom:592.073333pt;}
.y4f{bottom:592.081867pt;}
.yd6{bottom:592.082000pt;}
.y2b{bottom:592.096667pt;}
.y105{bottom:602.404000pt;}
.y73{bottom:605.529467pt;}
.y8c{bottom:606.713333pt;}
.y86{bottom:606.725333pt;}
.y89{bottom:606.737333pt;}
.yf7{bottom:606.744000pt;}
.y4e{bottom:609.417867pt;}
.yd5{bottom:609.418000pt;}
.y2a{bottom:609.432667pt;}
.yf5{bottom:611.886667pt;}
.yba{bottom:614.440667pt;}
.yfd{bottom:614.724000pt;}
.y104{bottom:616.898667pt;}
.y7{bottom:617.256000pt;}
.y72{bottom:620.193467pt;}
.yfc{bottom:621.612000pt;}
.y4d{bottom:626.753867pt;}
.yd4{bottom:626.754000pt;}
.y29{bottom:626.768667pt;}
.yb9{bottom:627.778667pt;}
.yfb{bottom:632.485333pt;}
.y6{bottom:634.592000pt;}
.y88{bottom:636.065333pt;}
.y103{bottom:638.458667pt;}
.yf6{bottom:639.765333pt;}
.yfa{bottom:641.184000pt;}
.yb2{bottom:642.632000pt;}
.y4c{bottom:644.089867pt;}
.yd3{bottom:644.090000pt;}
.y28{bottom:644.104667pt;}
.yf9{bottom:650.060000pt;}
.y8b{bottom:650.717333pt;}
.y85{bottom:650.729333pt;}
.y5{bottom:651.928000pt;}
.yc0{bottom:655.184000pt;}
.yb8{bottom:655.530667pt;}
.y102{bottom:656.341333pt;}
.y7a{bottom:659.809333pt;}
.y7b{bottom:660.272000pt;}
.yf4{bottom:661.148000pt;}
.y4b{bottom:661.425867pt;}
.yd2{bottom:661.426000pt;}
.y27{bottom:661.440667pt;}
.yf8{bottom:664.190667pt;}
.y84{bottom:665.393333pt;}
.y4{bottom:669.253333pt;}
.yb3{bottom:678.637333pt;}
.y4a{bottom:678.761867pt;}
.yd1{bottom:678.762000pt;}
.y26{bottom:678.776667pt;}
.yae{bottom:680.881333pt;}
.yf3{bottom:681.597333pt;}
.yf1{bottom:693.954667pt;}
.y83{bottom:694.721333pt;}
.y107{bottom:695.702667pt;}
.y49{bottom:696.097867pt;}
.yd0{bottom:696.098000pt;}
.y71{bottom:699.465467pt;}
.y3{bottom:703.925333pt;}
.yf2{bottom:707.936000pt;}
.y48{bottom:713.433867pt;}
.ycf{bottom:713.434000pt;}
.y25{bottom:713.448667pt;}
.ya8{bottom:715.396333pt;}
.ya9{bottom:718.384333pt;}
.ya6{bottom:718.393333pt;}
.y2{bottom:721.261333pt;}
.y70{bottom:722.001467pt;}
.y82{bottom:724.049333pt;}
.ya7{bottom:730.066333pt;}
.y47{bottom:730.769867pt;}
.yce{bottom:730.770000pt;}
.y24{bottom:730.784667pt;}
.y106{bottom:744.836000pt;}
.y46{bottom:748.105867pt;}
.ycd{bottom:748.106000pt;}
.y45{bottom:765.441867pt;}
.y81{bottom:765.442000pt;}
.yf0{bottom:776.962400pt;}
.y44{bottom:782.777867pt;}
.y23{bottom:782.778000pt;}
.y6f{bottom:784.521467pt;}
.y1a{bottom:790.563467pt;}
.y19{bottom:805.230133pt;}
.y1b{bottom:835.215467pt;}
.y43{bottom:838.687600pt;}
.y21{bottom:838.911067pt;}
.hb{height:30.164062pt;}
.he{height:31.244792pt;}
.hd{height:31.281250pt;}
.h9{height:31.992188pt;}
.h2{height:33.689311pt;}
.hc{height:39.101562pt;}
.h8{height:40.171875pt;}
.ha{height:40.218750pt;}
.h7{height:49.098958pt;}
.h3{height:49.156250pt;}
.h5{height:56.011875pt;}
.h6{height:56.033208pt;}
.h4{height:56.043875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:76.923867pt;}
.x18{left:78.652400pt;}
.xa{left:88.262267pt;}
.x12{left:93.109333pt;}
.xe{left:95.821467pt;}
.x34{left:99.166533pt;}
.x2{left:100.861467pt;}
.x8{left:107.160000pt;}
.x3f{left:108.178667pt;}
.x17{left:113.426667pt;}
.x13{left:114.853333pt;}
.x35{left:119.093467pt;}
.x9{left:120.389333pt;}
.x33{left:122.180667pt;}
.x1c{left:123.441867pt;}
.x36{left:126.072933pt;}
.xf{left:127.149467pt;}
.x3{left:133.876133pt;}
.x5{left:135.880000pt;}
.x3c{left:136.794667pt;}
.x6{left:145.528000pt;}
.x4{left:150.493467pt;}
.x3d{left:156.357333pt;}
.x3e{left:172.224000pt;}
.x38{left:192.113333pt;}
.x7{left:204.869333pt;}
.xd{left:215.534667pt;}
.x1e{left:228.106667pt;}
.x27{left:247.466667pt;}
.x26{left:255.905333pt;}
.x41{left:258.844000pt;}
.x16{left:260.390667pt;}
.x2f{left:263.516000pt;}
.x31{left:267.029333pt;}
.x30{left:268.403667pt;}
.x28{left:272.566667pt;}
.x11{left:274.933333pt;}
.x24{left:276.949333pt;}
.x1d{left:277.966667pt;}
.x10{left:279.865333pt;}
.x32{left:282.156000pt;}
.x1b{left:287.320000pt;}
.x25{left:295.580000pt;}
.x40{left:298.025333pt;}
.x39{left:341.941333pt;}
.x20{left:385.554667pt;}
.x3b{left:391.641333pt;}
.x3a{left:399.416000pt;}
.x14{left:422.197333pt;}
.x1f{left:428.790667pt;}
.x15{left:429.853333pt;}
.x2a{left:455.529333pt;}
.x23{left:459.892333pt;}
.x2e{left:462.104000pt;}
.x29{left:467.550667pt;}
.x2c{left:471.874667pt;}
.x22{left:472.771333pt;}
.x2b{left:475.944000pt;}
.x2d{left:479.136000pt;}
.x19{left:486.415400pt;}
.xb{left:488.546267pt;}
.x1a{left:489.988400pt;}
.x21{left:545.110667pt;}
.x1{left:546.130667pt;}
.x42{left:547.466667pt;}
.x37{left:548.690667pt;}
}




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