
    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_1b5669ac72917291f5c62b24.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001953;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_f2ecd04b1b15a4c55b870a3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_3245598ff3cfc17e74540098.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930176;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_1a85738267f73e86149a1eb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_958ed957603a3b44606529c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af106741052c537b448f318f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a5d3dc85d9047f6ac569c4c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2484c45c6e281db9a0a538d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9645884229d81de27001657d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b3d63118c9b616f3e8df6af1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9822b992a9444004fa7d89e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_28e938cc967c61828c60822b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-20.016000px;}
.ls1b{letter-spacing:-0.036000px;}
.ls1a{letter-spacing:-0.028800px;}
.ls20{letter-spacing:-0.014400px;}
.ls1e{letter-spacing:-0.007200px;}
.lsa{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.005400px;}
.ls21{letter-spacing:0.007200px;}
.ls1c{letter-spacing:0.010800px;}
.ls28{letter-spacing:0.010980px;}
.ls2b{letter-spacing:0.011400px;}
.ls9{letter-spacing:0.014400px;}
.ls25{letter-spacing:0.014580px;}
.ls8{letter-spacing:0.021600px;}
.ls19{letter-spacing:0.028800px;}
.ls1f{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.221160px;}
.ls0{letter-spacing:0.221760px;}
.ls18{letter-spacing:0.266112px;}
.ls3{letter-spacing:0.302760px;}
.ls10{letter-spacing:0.377856px;}
.ls17{letter-spacing:0.389664px;}
.lsc{letter-spacing:0.419184px;}
.ls11{letter-spacing:0.430992px;}
.ls12{letter-spacing:0.460512px;}
.ls4{letter-spacing:0.478224px;}
.ls5{letter-spacing:0.484128px;}
.ls2{letter-spacing:0.490032px;}
.lsb{letter-spacing:0.501840px;}
.ls14{letter-spacing:0.503712px;}
.lsf{letter-spacing:0.507744px;}
.ls16{letter-spacing:0.513216px;}
.lse{letter-spacing:0.525456px;}
.lsd{letter-spacing:0.537264px;}
.ls13{letter-spacing:0.566784px;}
.ls15{letter-spacing:0.589248px;}
.ls1d{letter-spacing:1.588800px;}
.ls7{letter-spacing:2.010600px;}
.ls29{letter-spacing:2.746200px;}
.ls27{letter-spacing:12.795000px;}
.ls24{letter-spacing:13.987200px;}
.ls26{letter-spacing:15.619200px;}
.ls2c{letter-spacing:16.560600px;}
.ls2d{letter-spacing:17.775000px;}
.ls2e{letter-spacing:20.653800px;}
.ls22{letter-spacing:30.147000px;}
.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;}
}
.wsf{word-spacing:-0.684288px;}
.wsb{word-spacing:-0.625824px;}
.ws10{word-spacing:-0.608256px;}
.wse{word-spacing:-0.598752px;}
.ws2{word-spacing:-0.596304px;}
.ws3{word-spacing:-0.584496px;}
.ws4{word-spacing:-0.566784px;}
.ws0{word-spacing:-0.560880px;}
.ws5{word-spacing:-0.549072px;}
.wsc{word-spacing:-0.543168px;}
.ws8{word-spacing:-0.537264px;}
.ws9{word-spacing:-0.519552px;}
.ws7{word-spacing:-0.490032px;}
.ws11{word-spacing:-0.484704px;}
.ws1{word-spacing:-0.478224px;}
.ws6{word-spacing:-0.436896px;}
.ws12{word-spacing:-0.361152px;}
.wsc1{word-spacing:-0.115200px;}
.ws28{word-spacing:-0.108000px;}
.ws13{word-spacing:-0.100800px;}
.ws30{word-spacing:-0.093600px;}
.ws1e{word-spacing:-0.086400px;}
.ws43{word-spacing:-0.079200px;}
.wsd{word-spacing:-0.072000px;}
.ws27{word-spacing:-0.064800px;}
.wsa{word-spacing:-0.059040px;}
.ws29{word-spacing:-0.057600px;}
.ws19{word-spacing:-0.043200px;}
.ws1a{word-spacing:-0.036000px;}
.ws22{word-spacing:0.000000px;}
.wsdb{word-spacing:9.820800px;}
.wsc8{word-spacing:10.029600px;}
.ws3a{word-spacing:10.317600px;}
.ws81{word-spacing:10.785600px;}
.ws3e{word-spacing:10.843200px;}
.ws3d{word-spacing:10.850400px;}
.ws37{word-spacing:10.908000px;}
.ws75{word-spacing:10.987200px;}
.wsb8{word-spacing:11.124000px;}
.ws55{word-spacing:11.196000px;}
.wsd5{word-spacing:11.217600px;}
.wsd6{word-spacing:11.253600px;}
.ws7f{word-spacing:11.383200px;}
.wsa9{word-spacing:11.440800px;}
.ws60{word-spacing:11.635200px;}
.ws6d{word-spacing:11.822400px;}
.ws23{word-spacing:11.894400px;}
.wsa4{word-spacing:11.901600px;}
.ws7b{word-spacing:11.908800px;}
.wsb4{word-spacing:11.923200px;}
.ws36{word-spacing:12.009600px;}
.ws14{word-spacing:12.038400px;}
.ws9f{word-spacing:12.074400px;}
.wsb1{word-spacing:12.168000px;}
.ws24{word-spacing:12.196800px;}
.ws7e{word-spacing:12.232800px;}
.wsdc{word-spacing:12.254400px;}
.wsb3{word-spacing:12.376800px;}
.wsa3{word-spacing:12.477600px;}
.ws69{word-spacing:12.480600px;}
.ws4b{word-spacing:12.542400px;}
.ws83{word-spacing:12.722400px;}
.wsc5{word-spacing:12.751200px;}
.wsa7{word-spacing:12.830400px;}
.ws5a{word-spacing:12.880800px;}
.ws9c{word-spacing:12.895200px;}
.ws59{word-spacing:13.003200px;}
.ws33{word-spacing:13.046400px;}
.ws7d{word-spacing:13.060800px;}
.ws25{word-spacing:13.089600px;}
.ws76{word-spacing:13.464000px;}
.ws4d{word-spacing:13.680000px;}
.ws31{word-spacing:13.730400px;}
.wsba{word-spacing:13.795200px;}
.wsa5{word-spacing:13.824000px;}
.ws68{word-spacing:13.910400px;}
.ws66{word-spacing:13.917600px;}
.ws67{word-spacing:13.996800px;}
.ws57{word-spacing:14.011200px;}
.ws26{word-spacing:14.047200px;}
.wsa2{word-spacing:14.083200px;}
.ws8f{word-spacing:14.155200px;}
.ws79{word-spacing:14.191200px;}
.ws95{word-spacing:14.205600px;}
.ws91{word-spacing:14.241600px;}
.wsa1{word-spacing:14.414400px;}
.ws6c{word-spacing:14.457600px;}
.ws3f{word-spacing:14.558400px;}
.ws3b{word-spacing:14.587200px;}
.wsaa{word-spacing:14.608800px;}
.wsd7{word-spacing:14.666400px;}
.ws9b{word-spacing:14.738400px;}
.wsb6{word-spacing:14.788800px;}
.ws80{word-spacing:14.932800px;}
.ws42{word-spacing:15.004800px;}
.ws8d{word-spacing:15.019200px;}
.ws92{word-spacing:15.033600px;}
.ws40{word-spacing:15.048000px;}
.ws2e{word-spacing:15.192000px;}
.ws98{word-spacing:15.242400px;}
.ws99{word-spacing:15.314400px;}
.wsbf{word-spacing:15.321600px;}
.ws35{word-spacing:15.336000px;}
.wsc4{word-spacing:15.544800px;}
.wsc2{word-spacing:15.552000px;}
.wsc3{word-spacing:15.580800px;}
.ws6f{word-spacing:15.710400px;}
.ws6b{word-spacing:15.919200px;}
.wsa8{word-spacing:16.048800px;}
.ws78{word-spacing:16.077600px;}
.wsbe{word-spacing:16.430400px;}
.ws8c{word-spacing:16.452000px;}
.wsc0{word-spacing:16.459200px;}
.wsd1{word-spacing:16.488000px;}
.ws34{word-spacing:16.531200px;}
.ws97{word-spacing:16.610400px;}
.wscc{word-spacing:16.704000px;}
.ws70{word-spacing:16.768800px;}
.ws71{word-spacing:16.783200px;}
.wsbb{word-spacing:16.797600px;}
.ws77{word-spacing:16.804800px;}
.wsaf{word-spacing:16.963200px;}
.wsae{word-spacing:16.992000px;}
.ws65{word-spacing:17.085600px;}
.ws89{word-spacing:17.107200px;}
.ws62{word-spacing:17.352000px;}
.ws64{word-spacing:17.424000px;}
.ws38{word-spacing:17.517600px;}
.ws15{word-spacing:17.568000px;}
.ws7a{word-spacing:17.704800px;}
.wsd8{word-spacing:17.740800px;}
.wsd9{word-spacing:17.741400px;}
.ws2f{word-spacing:17.827200px;}
.ws82{word-spacing:17.935200px;}
.ws88{word-spacing:18.122400px;}
.wscf{word-spacing:18.129600px;}
.ws8e{word-spacing:18.576000px;}
.ws84{word-spacing:18.640800px;}
.ws86{word-spacing:18.763200px;}
.ws4c{word-spacing:18.770400px;}
.ws2d{word-spacing:18.878400px;}
.ws54{word-spacing:18.907200px;}
.ws8a{word-spacing:18.972000px;}
.ws85{word-spacing:18.979200px;}
.wsda{word-spacing:19.015200px;}
.ws48{word-spacing:19.044000px;}
.ws45{word-spacing:19.072800px;}
.ws44{word-spacing:19.087200px;}
.ws32{word-spacing:19.152000px;}
.wscb{word-spacing:19.296000px;}
.ws3c{word-spacing:19.612800px;}
.ws4e{word-spacing:19.958400px;}
.ws61{word-spacing:20.037600px;}
.ws41{word-spacing:20.059200px;}
.wsca{word-spacing:20.160000px;}
.ws8b{word-spacing:20.167200px;}
.ws53{word-spacing:20.174400px;}
.ws6a{word-spacing:20.296800px;}
.ws52{word-spacing:20.325600px;}
.ws9e{word-spacing:20.469600px;}
.wsd3{word-spacing:20.584800px;}
.ws20{word-spacing:20.696400px;}
.ws21{word-spacing:20.743200px;}
.ws1f{word-spacing:20.750400px;}
.ws72{word-spacing:21.031200px;}
.ws47{word-spacing:21.153600px;}
.wsac{word-spacing:21.254400px;}
.ws6e{word-spacing:21.290400px;}
.ws87{word-spacing:21.297600px;}
.ws9a{word-spacing:21.679200px;}
.ws1d{word-spacing:21.715200px;}
.ws56{word-spacing:22.507200px;}
.ws93{word-spacing:23.061600px;}
.ws5b{word-spacing:23.932800px;}
.ws63{word-spacing:23.947200px;}
.wsb7{word-spacing:24.069600px;}
.ws18{word-spacing:24.076800px;}
.ws17{word-spacing:24.141600px;}
.ws73{word-spacing:24.350400px;}
.ws49{word-spacing:24.379200px;}
.ws5f{word-spacing:24.631200px;}
.ws74{word-spacing:24.645600px;}
.wsd4{word-spacing:25.077600px;}
.wsbd{word-spacing:25.387200px;}
.ws94{word-spacing:25.473600px;}
.ws1b{word-spacing:25.488000px;}
.ws1c{word-spacing:25.536000px;}
.ws51{word-spacing:25.732800px;}
.wsd2{word-spacing:26.035200px;}
.ws4f{word-spacing:26.164800px;}
.wsa6{word-spacing:26.503200px;}
.wsab{word-spacing:26.524800px;}
.ws39{word-spacing:26.956800px;}
.wsb9{word-spacing:27.007200px;}
.ws58{word-spacing:27.187200px;}
.wsbc{word-spacing:27.309600px;}
.ws7c{word-spacing:28.648800px;}
.ws5c{word-spacing:28.706400px;}
.wsa0{word-spacing:28.900800px;}
.wscd{word-spacing:29.037600px;}
.wsdd{word-spacing:29.253600px;}
.ws9d{word-spacing:29.757600px;}
.ws50{word-spacing:29.858400px;}
.ws16{word-spacing:29.916000px;}
.ws5e{word-spacing:30.074400px;}
.wsce{word-spacing:30.196800px;}
.ws96{word-spacing:30.297600px;}
.ws90{word-spacing:30.794400px;}
.ws2c{word-spacing:30.916800px;}
.wsc9{word-spacing:32.270400px;}
.ws46{word-spacing:32.472000px;}
.ws2b{word-spacing:32.918400px;}
.wsb5{word-spacing:33.408000px;}
.wsb2{word-spacing:35.186400px;}
.wsb0{word-spacing:37.382400px;}
.ws4a{word-spacing:38.181600px;}
.ws2a{word-spacing:38.196000px;}
.wsad{word-spacing:38.534400px;}
.ws5d{word-spacing:39.247200px;}
.wsd0{word-spacing:42.588000px;}
.wsc7{word-spacing:544.147200px;}
.wsc6{word-spacing:544.240800px;}
._a{margin-left:-19.923900px;}
._0{margin-left:-1.003680px;}
._1{width:1.140480px;}
._9{width:2.142720px;}
._2{width:3.146400px;}
._3{width:4.564800px;}
._4{width:6.285600px;}
._5{width:7.596000px;}
._7{width:8.884800px;}
._6{width:10.281600px;}
._8{width:11.383200px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(164,183,70);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.520000px;}
.fs1{font-size:59.040000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y1{bottom:18.000000px;}
.yd{bottom:40.080030px;}
.y4b{bottom:99.120030px;}
.yb6{bottom:99.840030px;}
.yb3{bottom:100.920015px;}
.ydd{bottom:104.160030px;}
.y2e{bottom:111.360015px;}
.yc8{bottom:118.920015px;}
.y63{bottom:125.040030px;}
.yb7{bottom:127.920015px;}
.y4a{bottom:131.880015px;}
.y2d{bottom:133.320000px;}
.ya8{bottom:133.680000px;}
.ydc{bottom:136.920000px;}
.y71{bottom:143.040000px;}
.y8b{bottom:145.920000px;}
.yf1{bottom:151.680000px;}
.yc7{bottom:152.040000px;}
.y99{bottom:154.920000px;}
.y2c{bottom:155.280000px;}
.y62{bottom:157.800000px;}
.y86{bottom:161.040000px;}
.y49{bottom:165.000000px;}
.ya7{bottom:166.800000px;}
.ye7{bottom:169.680000px;}
.y70{bottom:175.800000px;}
.y8a{bottom:179.040000px;}
.ybe{bottom:184.800000px;}
.ydb{bottom:188.040000px;}
.y61{bottom:190.920000px;}
.y2b{bottom:193.080000px;}
.y85{bottom:193.800000px;}
.y48{bottom:197.760000px;}
.ya6{bottom:199.920000px;}
.y98{bottom:205.680000px;}
.y6f{bottom:208.920000px;}
.y89{bottom:211.800000px;}
.ybd{bottom:217.920000px;}
.ye6{bottom:220.800000px;}
.y84{bottom:226.920000px;}
.y2a{bottom:232.680000px;}
.yda{bottom:235.920000px;}
.y60{bottom:241.680000px;}
.y88{bottom:244.920000px;}
.y47{bottom:248.880000px;}
.yb2{bottom:250.680000px;}
.ye5{bottom:253.920000px;}
.y29{bottom:254.640000px;}
.y97{bottom:256.800000px;}
.y83{bottom:259.680000px;}
.ya5{bottom:265.800000px;}
.yd9{bottom:268.680000px;}
.y5f{bottom:274.800000px;}
.y28{bottom:276.600000px;}
.y87{bottom:277.680000px;}
.y46{bottom:281.640000px;}
.yb1{bottom:283.800000px;}
.yf5{bottom:286.680000px;}
.y6e{bottom:292.800000px;}
.ya4{bottom:298.560000px;}
.y27{bottom:298.920000px;}
.ybc{bottom:301.800000px;}
.yb5{bottom:304.680000px;}
.y5e{bottom:307.920000px;}
.y82{bottom:310.800000px;}
.y45{bottom:314.760000px;}
.yb0{bottom:316.560000px;}
.yf0{bottom:319.800000px;}
.y26{bottom:320.880000px;}
.y6d{bottom:325.920000px;}
.yc6{bottom:331.680000px;}
.yd8{bottom:334.920000px;}
.ye4{bottom:337.800000px;}
.y5d{bottom:340.680000px;}
.y25{bottom:342.840000px;}
.y81{bottom:343.920000px;}
.y44{bottom:347.880000px;}
.ya3{bottom:349.680000px;}
.ybb{bottom:352.560000px;}
.yb4{bottom:355.800000px;}
.y6c{bottom:358.680000px;}
.y24{bottom:364.800000px;}
.yd7{bottom:367.680000px;}
.yf4{bottom:370.560000px;}
.y5c{bottom:373.800000px;}
.y80{bottom:376.680000px;}
.y43{bottom:380.640000px;}
.yef{bottom:385.680000px;}
.y23{bottom:386.760000px;}
.ye3{bottom:388.560000px;}
.y75{bottom:391.800000px;}
.yc5{bottom:397.560000px;}
.ya2{bottom:400.440000px;}
.yd6{bottom:400.800000px;}
.yba{bottom:403.680000px;}
.y93{bottom:406.560000px;}
.y22{bottom:408.720000px;}
.y6b{bottom:409.800000px;}
.y42{bottom:413.760000px;}
.yee{bottom:418.440000px;}
.ye2{bottom:421.680000px;}
.y5b{bottom:424.560000px;}
.y21{bottom:430.680000px;}
.yaf{bottom:433.560000px;}
.yf3{bottom:436.440000px;}
.y92{bottom:439.680000px;}
.y6a{bottom:442.560000px;}
.ya1{bottom:451.560000px;}
.y20{bottom:452.640000px;}
.yb9{bottom:454.440000px;}
.y5a{bottom:457.680000px;}
.y7f{bottom:460.560000px;}
.y41{bottom:464.520000px;}
.yae{bottom:466.320000px;}
.yd5{bottom:466.680000px;}
.yed{bottom:469.560000px;}
.y1f{bottom:474.600000px;}
.y69{bottom:475.680000px;}
.yc4{bottom:478.560000px;}
.ye1{bottom:487.560000px;}
.y59{bottom:490.440000px;}
.y7e{bottom:493.680000px;}
.y1e{bottom:496.560000px;}
.y40{bottom:497.640000px;}
.yd4{bottom:499.440000px;}
.ya0{bottom:502.320000px;}
.yb8{bottom:505.560000px;}
.y68{bottom:508.440000px;}
.yc3{bottom:511.680000px;}
.yad{bottom:517.440000px;}
.y1d{bottom:518.520000px;}
.yf2{bottom:520.320000px;}
.y58{bottom:523.560000px;}
.y7d{bottom:526.440000px;}
.y3f{bottom:530.400000px;}
.yd3{bottom:532.560000px;}
.ye0{bottom:538.320000px;}
.y1c{bottom:540.480000px;}
.y67{bottom:541.560000px;}
.yc2{bottom:544.440000px;}
.y9f{bottom:553.440000px;}
.y57{bottom:556.320000px;}
.y7c{bottom:559.560000px;}
.y1b{bottom:562.440000px;}
.y3e{bottom:563.520000px;}
.ydf{bottom:571.440000px;}
.y66{bottom:574.320000px;}
.yc1{bottom:577.560000px;}
.yd2{bottom:580.440000px;}
.yec{bottom:586.560000px;}
.y91{bottom:589.440000px;}
.y7b{bottom:592.320000px;}
.y3d{bottom:596.280000px;}
.y1a{bottom:600.240000px;}
.y9e{bottom:604.560000px;}
.y56{bottom:607.440000px;}
.yc0{bottom:610.320000px;}
.yd1{bottom:613.560000px;}
.yeb{bottom:619.320000px;}
.y90{bottom:622.560000px;}
.y65{bottom:625.440000px;}
.y3c{bottom:629.400000px;}
.yac{bottom:634.440000px;}
.yde{bottom:637.320000px;}
.y74{bottom:640.560000px;}
.y19{bottom:641.640000px;}
.y7a{bottom:643.440000px;}
.yd0{bottom:646.320000px;}
.y8f{bottom:655.320000px;}
.y55{bottom:658.560000px;}
.y3b{bottom:662.520000px;}
.yea{bottom:670.440000px;}
.y18{bottom:671.160000px;}
.y96{bottom:673.320000px;}
.ybf{bottom:676.200000px;}
.y79{bottom:676.560000px;}
.ycf{bottom:679.440000px;}
.yab{bottom:685.200000px;}
.y8e{bottom:688.440000px;}
.y54{bottom:691.320000px;}
.y17{bottom:698.520000px;}
.ye9{bottom:703.200000px;}
.y95{bottom:706.440000px;}
.y78{bottom:709.320000px;}
.yce{bottom:712.200000px;}
.y3a{bottom:713.280000px;}
.y16{bottom:720.480000px;}
.y8d{bottom:721.200000px;}
.y53{bottom:724.440000px;}
.yaa{bottom:736.320000px;}
.y94{bottom:739.200000px;}
.y15{bottom:742.440000px;}
.ycd{bottom:745.320000px;}
.y39{bottom:752.880000px;}
.ye8{bottom:754.320000px;}
.y52{bottom:757.200000px;}
.y14{bottom:764.400000px;}
.y8c{bottom:772.320000px;}
.y38{bottom:774.840000px;}
.y77{bottom:775.200000px;}
.ya9{bottom:787.080000px;}
.y13{bottom:788.160000px;}
.y51{bottom:790.320000px;}
.ycc{bottom:793.200000px;}
.y37{bottom:796.800000px;}
.y9d{bottom:805.080000px;}
.y76{bottom:808.320000px;}
.y12{bottom:817.680000px;}
.y36{bottom:818.760000px;}
.y64{bottom:823.080000px;}
.ycb{bottom:826.320000px;}
.y9c{bottom:838.200000px;}
.y35{bottom:840.720000px;}
.y50{bottom:841.080000px;}
.y11{bottom:846.840000px;}
.y73{bottom:856.200000px;}
.yca{bottom:859.080000px;}
.y34{bottom:862.680000px;}
.y9b{bottom:870.960000px;}
.y4f{bottom:874.200000px;}
.y10{bottom:874.920000px;}
.y33{bottom:884.640000px;}
.y72{bottom:888.960000px;}
.yc9{bottom:892.200000px;}
.y32{bottom:906.600000px;}
.y4e{bottom:906.960000px;}
.yf{bottom:921.000000px;}
.y9a{bottom:922.080000px;}
.y31{bottom:928.560000px;}
.y4d{bottom:940.080000px;}
.ye{bottom:949.440000px;}
.y30{bottom:950.520000px;}
.y2f{bottom:972.840000px;}
.y4c{bottom:973.200000px;}
.yc{bottom:994.800000px;}
.yb{bottom:1015.320000px;}
.ya{bottom:1048.800000px;}
.y9{bottom:1067.160000px;}
.y8{bottom:1085.520000px;}
.y7{bottom:1103.880000px;}
.y6{bottom:1122.240000px;}
.y5{bottom:1140.240000px;}
.y4{bottom:1158.600000px;}
.y3{bottom:1176.960000px;}
.y2{bottom:1194.600000px;}
.h2{height:39.190078px;}
.h3{height:48.690703px;}
.h8{height:49.289063px;}
.h7{height:49.886719px;}
.h4{height:59.378906px;}
.h5{height:68.449219px;}
.h6{height:78.380156px;}
.h1{height:1227.000000px;}
.h0{height:1263.000000px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.000000px;}
.xe{left:88.200075px;}
.xa{left:89.301630px;}
.xc{left:104.430540px;}
.x1f{left:115.368525px;}
.x1a{left:165.584850px;}
.x1c{left:167.733750px;}
.xb{left:206.594550px;}
.x1e{left:207.820650px;}
.x18{left:210.246450px;}
.x5{left:228.853650px;}
.x13{left:261.710850px;}
.x6{left:263.632650px;}
.x12{left:295.689300px;}
.x15{left:300.989100px;}
.x7{left:303.465450px;}
.xd{left:311.049750px;}
.x10{left:314.243100px;}
.x11{left:323.664900px;}
.x14{left:329.527200px;}
.xf{left:344.969550px;}
.x8{left:372.111600px;}
.x4{left:428.325000px;}
.x16{left:679.680150px;}
.x19{left:687.239850px;}
.x20{left:698.760150px;}
.x1b{left:730.799850px;}
.x1d{left:747.000000px;}
.x17{left:750.204000px;}
.x9{left:759.327000px;}
.x3{left:768.450000px;}
.x2{left:832.425000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-17.792000pt;}
.ls1b{letter-spacing:-0.032000pt;}
.ls1a{letter-spacing:-0.025600pt;}
.ls20{letter-spacing:-0.012800pt;}
.ls1e{letter-spacing:-0.006400pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.004800pt;}
.ls21{letter-spacing:0.006400pt;}
.ls1c{letter-spacing:0.009600pt;}
.ls28{letter-spacing:0.009760pt;}
.ls2b{letter-spacing:0.010133pt;}
.ls9{letter-spacing:0.012800pt;}
.ls25{letter-spacing:0.012960pt;}
.ls8{letter-spacing:0.019200pt;}
.ls19{letter-spacing:0.025600pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.196587pt;}
.ls0{letter-spacing:0.197120pt;}
.ls18{letter-spacing:0.236544pt;}
.ls3{letter-spacing:0.269120pt;}
.ls10{letter-spacing:0.335872pt;}
.ls17{letter-spacing:0.346368pt;}
.lsc{letter-spacing:0.372608pt;}
.ls11{letter-spacing:0.383104pt;}
.ls12{letter-spacing:0.409344pt;}
.ls4{letter-spacing:0.425088pt;}
.ls5{letter-spacing:0.430336pt;}
.ls2{letter-spacing:0.435584pt;}
.lsb{letter-spacing:0.446080pt;}
.ls14{letter-spacing:0.447744pt;}
.lsf{letter-spacing:0.451328pt;}
.ls16{letter-spacing:0.456192pt;}
.lse{letter-spacing:0.467072pt;}
.lsd{letter-spacing:0.477568pt;}
.ls13{letter-spacing:0.503808pt;}
.ls15{letter-spacing:0.523776pt;}
.ls1d{letter-spacing:1.412267pt;}
.ls7{letter-spacing:1.787200pt;}
.ls29{letter-spacing:2.441067pt;}
.ls27{letter-spacing:11.373333pt;}
.ls24{letter-spacing:12.433067pt;}
.ls26{letter-spacing:13.883733pt;}
.ls2c{letter-spacing:14.720533pt;}
.ls2d{letter-spacing:15.800000pt;}
.ls2e{letter-spacing:18.358933pt;}
.ls22{letter-spacing:26.797333pt;}
.wsf{word-spacing:-0.608256pt;}
.wsb{word-spacing:-0.556288pt;}
.ws10{word-spacing:-0.540672pt;}
.wse{word-spacing:-0.532224pt;}
.ws2{word-spacing:-0.530048pt;}
.ws3{word-spacing:-0.519552pt;}
.ws4{word-spacing:-0.503808pt;}
.ws0{word-spacing:-0.498560pt;}
.ws5{word-spacing:-0.488064pt;}
.wsc{word-spacing:-0.482816pt;}
.ws8{word-spacing:-0.477568pt;}
.ws9{word-spacing:-0.461824pt;}
.ws7{word-spacing:-0.435584pt;}
.ws11{word-spacing:-0.430848pt;}
.ws1{word-spacing:-0.425088pt;}
.ws6{word-spacing:-0.388352pt;}
.ws12{word-spacing:-0.321024pt;}
.wsc1{word-spacing:-0.102400pt;}
.ws28{word-spacing:-0.096000pt;}
.ws13{word-spacing:-0.089600pt;}
.ws30{word-spacing:-0.083200pt;}
.ws1e{word-spacing:-0.076800pt;}
.ws43{word-spacing:-0.070400pt;}
.wsd{word-spacing:-0.064000pt;}
.ws27{word-spacing:-0.057600pt;}
.wsa{word-spacing:-0.052480pt;}
.ws29{word-spacing:-0.051200pt;}
.ws19{word-spacing:-0.038400pt;}
.ws1a{word-spacing:-0.032000pt;}
.ws22{word-spacing:0.000000pt;}
.wsdb{word-spacing:8.729600pt;}
.wsc8{word-spacing:8.915200pt;}
.ws3a{word-spacing:9.171200pt;}
.ws81{word-spacing:9.587200pt;}
.ws3e{word-spacing:9.638400pt;}
.ws3d{word-spacing:9.644800pt;}
.ws37{word-spacing:9.696000pt;}
.ws75{word-spacing:9.766400pt;}
.wsb8{word-spacing:9.888000pt;}
.ws55{word-spacing:9.952000pt;}
.wsd5{word-spacing:9.971200pt;}
.wsd6{word-spacing:10.003200pt;}
.ws7f{word-spacing:10.118400pt;}
.wsa9{word-spacing:10.169600pt;}
.ws60{word-spacing:10.342400pt;}
.ws6d{word-spacing:10.508800pt;}
.ws23{word-spacing:10.572800pt;}
.wsa4{word-spacing:10.579200pt;}
.ws7b{word-spacing:10.585600pt;}
.wsb4{word-spacing:10.598400pt;}
.ws36{word-spacing:10.675200pt;}
.ws14{word-spacing:10.700800pt;}
.ws9f{word-spacing:10.732800pt;}
.wsb1{word-spacing:10.816000pt;}
.ws24{word-spacing:10.841600pt;}
.ws7e{word-spacing:10.873600pt;}
.wsdc{word-spacing:10.892800pt;}
.wsb3{word-spacing:11.001600pt;}
.wsa3{word-spacing:11.091200pt;}
.ws69{word-spacing:11.093867pt;}
.ws4b{word-spacing:11.148800pt;}
.ws83{word-spacing:11.308800pt;}
.wsc5{word-spacing:11.334400pt;}
.wsa7{word-spacing:11.404800pt;}
.ws5a{word-spacing:11.449600pt;}
.ws9c{word-spacing:11.462400pt;}
.ws59{word-spacing:11.558400pt;}
.ws33{word-spacing:11.596800pt;}
.ws7d{word-spacing:11.609600pt;}
.ws25{word-spacing:11.635200pt;}
.ws76{word-spacing:11.968000pt;}
.ws4d{word-spacing:12.160000pt;}
.ws31{word-spacing:12.204800pt;}
.wsba{word-spacing:12.262400pt;}
.wsa5{word-spacing:12.288000pt;}
.ws68{word-spacing:12.364800pt;}
.ws66{word-spacing:12.371200pt;}
.ws67{word-spacing:12.441600pt;}
.ws57{word-spacing:12.454400pt;}
.ws26{word-spacing:12.486400pt;}
.wsa2{word-spacing:12.518400pt;}
.ws8f{word-spacing:12.582400pt;}
.ws79{word-spacing:12.614400pt;}
.ws95{word-spacing:12.627200pt;}
.ws91{word-spacing:12.659200pt;}
.wsa1{word-spacing:12.812800pt;}
.ws6c{word-spacing:12.851200pt;}
.ws3f{word-spacing:12.940800pt;}
.ws3b{word-spacing:12.966400pt;}
.wsaa{word-spacing:12.985600pt;}
.wsd7{word-spacing:13.036800pt;}
.ws9b{word-spacing:13.100800pt;}
.wsb6{word-spacing:13.145600pt;}
.ws80{word-spacing:13.273600pt;}
.ws42{word-spacing:13.337600pt;}
.ws8d{word-spacing:13.350400pt;}
.ws92{word-spacing:13.363200pt;}
.ws40{word-spacing:13.376000pt;}
.ws2e{word-spacing:13.504000pt;}
.ws98{word-spacing:13.548800pt;}
.ws99{word-spacing:13.612800pt;}
.wsbf{word-spacing:13.619200pt;}
.ws35{word-spacing:13.632000pt;}
.wsc4{word-spacing:13.817600pt;}
.wsc2{word-spacing:13.824000pt;}
.wsc3{word-spacing:13.849600pt;}
.ws6f{word-spacing:13.964800pt;}
.ws6b{word-spacing:14.150400pt;}
.wsa8{word-spacing:14.265600pt;}
.ws78{word-spacing:14.291200pt;}
.wsbe{word-spacing:14.604800pt;}
.ws8c{word-spacing:14.624000pt;}
.wsc0{word-spacing:14.630400pt;}
.wsd1{word-spacing:14.656000pt;}
.ws34{word-spacing:14.694400pt;}
.ws97{word-spacing:14.764800pt;}
.wscc{word-spacing:14.848000pt;}
.ws70{word-spacing:14.905600pt;}
.ws71{word-spacing:14.918400pt;}
.wsbb{word-spacing:14.931200pt;}
.ws77{word-spacing:14.937600pt;}
.wsaf{word-spacing:15.078400pt;}
.wsae{word-spacing:15.104000pt;}
.ws65{word-spacing:15.187200pt;}
.ws89{word-spacing:15.206400pt;}
.ws62{word-spacing:15.424000pt;}
.ws64{word-spacing:15.488000pt;}
.ws38{word-spacing:15.571200pt;}
.ws15{word-spacing:15.616000pt;}
.ws7a{word-spacing:15.737600pt;}
.wsd8{word-spacing:15.769600pt;}
.wsd9{word-spacing:15.770133pt;}
.ws2f{word-spacing:15.846400pt;}
.ws82{word-spacing:15.942400pt;}
.ws88{word-spacing:16.108800pt;}
.wscf{word-spacing:16.115200pt;}
.ws8e{word-spacing:16.512000pt;}
.ws84{word-spacing:16.569600pt;}
.ws86{word-spacing:16.678400pt;}
.ws4c{word-spacing:16.684800pt;}
.ws2d{word-spacing:16.780800pt;}
.ws54{word-spacing:16.806400pt;}
.ws8a{word-spacing:16.864000pt;}
.ws85{word-spacing:16.870400pt;}
.wsda{word-spacing:16.902400pt;}
.ws48{word-spacing:16.928000pt;}
.ws45{word-spacing:16.953600pt;}
.ws44{word-spacing:16.966400pt;}
.ws32{word-spacing:17.024000pt;}
.wscb{word-spacing:17.152000pt;}
.ws3c{word-spacing:17.433600pt;}
.ws4e{word-spacing:17.740800pt;}
.ws61{word-spacing:17.811200pt;}
.ws41{word-spacing:17.830400pt;}
.wsca{word-spacing:17.920000pt;}
.ws8b{word-spacing:17.926400pt;}
.ws53{word-spacing:17.932800pt;}
.ws6a{word-spacing:18.041600pt;}
.ws52{word-spacing:18.067200pt;}
.ws9e{word-spacing:18.195200pt;}
.wsd3{word-spacing:18.297600pt;}
.ws20{word-spacing:18.396800pt;}
.ws21{word-spacing:18.438400pt;}
.ws1f{word-spacing:18.444800pt;}
.ws72{word-spacing:18.694400pt;}
.ws47{word-spacing:18.803200pt;}
.wsac{word-spacing:18.892800pt;}
.ws6e{word-spacing:18.924800pt;}
.ws87{word-spacing:18.931200pt;}
.ws9a{word-spacing:19.270400pt;}
.ws1d{word-spacing:19.302400pt;}
.ws56{word-spacing:20.006400pt;}
.ws93{word-spacing:20.499200pt;}
.ws5b{word-spacing:21.273600pt;}
.ws63{word-spacing:21.286400pt;}
.wsb7{word-spacing:21.395200pt;}
.ws18{word-spacing:21.401600pt;}
.ws17{word-spacing:21.459200pt;}
.ws73{word-spacing:21.644800pt;}
.ws49{word-spacing:21.670400pt;}
.ws5f{word-spacing:21.894400pt;}
.ws74{word-spacing:21.907200pt;}
.wsd4{word-spacing:22.291200pt;}
.wsbd{word-spacing:22.566400pt;}
.ws94{word-spacing:22.643200pt;}
.ws1b{word-spacing:22.656000pt;}
.ws1c{word-spacing:22.698667pt;}
.ws51{word-spacing:22.873600pt;}
.wsd2{word-spacing:23.142400pt;}
.ws4f{word-spacing:23.257600pt;}
.wsa6{word-spacing:23.558400pt;}
.wsab{word-spacing:23.577600pt;}
.ws39{word-spacing:23.961600pt;}
.wsb9{word-spacing:24.006400pt;}
.ws58{word-spacing:24.166400pt;}
.wsbc{word-spacing:24.275200pt;}
.ws7c{word-spacing:25.465600pt;}
.ws5c{word-spacing:25.516800pt;}
.wsa0{word-spacing:25.689600pt;}
.wscd{word-spacing:25.811200pt;}
.wsdd{word-spacing:26.003200pt;}
.ws9d{word-spacing:26.451200pt;}
.ws50{word-spacing:26.540800pt;}
.ws16{word-spacing:26.592000pt;}
.ws5e{word-spacing:26.732800pt;}
.wsce{word-spacing:26.841600pt;}
.ws96{word-spacing:26.931200pt;}
.ws90{word-spacing:27.372800pt;}
.ws2c{word-spacing:27.481600pt;}
.wsc9{word-spacing:28.684800pt;}
.ws46{word-spacing:28.864000pt;}
.ws2b{word-spacing:29.260800pt;}
.wsb5{word-spacing:29.696000pt;}
.wsb2{word-spacing:31.276800pt;}
.wsb0{word-spacing:33.228800pt;}
.ws4a{word-spacing:33.939200pt;}
.ws2a{word-spacing:33.952000pt;}
.wsad{word-spacing:34.252800pt;}
.ws5d{word-spacing:34.886400pt;}
.wsd0{word-spacing:37.856000pt;}
.wsc7{word-spacing:483.686400pt;}
.wsc6{word-spacing:483.769600pt;}
._a{margin-left:-17.710133pt;}
._0{margin-left:-0.892160pt;}
._1{width:1.013760pt;}
._9{width:1.904640pt;}
._2{width:2.796800pt;}
._3{width:4.057600pt;}
._4{width:5.587200pt;}
._5{width:6.752000pt;}
._7{width:7.897600pt;}
._6{width:9.139200pt;}
._8{width:10.118400pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:52.480000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:16.000000pt;}
.yd{bottom:35.626693pt;}
.y4b{bottom:88.106693pt;}
.yb6{bottom:88.746693pt;}
.yb3{bottom:89.706680pt;}
.ydd{bottom:92.586693pt;}
.y2e{bottom:98.986680pt;}
.yc8{bottom:105.706680pt;}
.y63{bottom:111.146693pt;}
.yb7{bottom:113.706680pt;}
.y4a{bottom:117.226680pt;}
.y2d{bottom:118.506667pt;}
.ya8{bottom:118.826667pt;}
.ydc{bottom:121.706667pt;}
.y71{bottom:127.146667pt;}
.y8b{bottom:129.706667pt;}
.yf1{bottom:134.826667pt;}
.yc7{bottom:135.146667pt;}
.y99{bottom:137.706667pt;}
.y2c{bottom:138.026667pt;}
.y62{bottom:140.266667pt;}
.y86{bottom:143.146667pt;}
.y49{bottom:146.666667pt;}
.ya7{bottom:148.266667pt;}
.ye7{bottom:150.826667pt;}
.y70{bottom:156.266667pt;}
.y8a{bottom:159.146667pt;}
.ybe{bottom:164.266667pt;}
.ydb{bottom:167.146667pt;}
.y61{bottom:169.706667pt;}
.y2b{bottom:171.626667pt;}
.y85{bottom:172.266667pt;}
.y48{bottom:175.786667pt;}
.ya6{bottom:177.706667pt;}
.y98{bottom:182.826667pt;}
.y6f{bottom:185.706667pt;}
.y89{bottom:188.266667pt;}
.ybd{bottom:193.706667pt;}
.ye6{bottom:196.266667pt;}
.y84{bottom:201.706667pt;}
.y2a{bottom:206.826667pt;}
.yda{bottom:209.706667pt;}
.y60{bottom:214.826667pt;}
.y88{bottom:217.706667pt;}
.y47{bottom:221.226667pt;}
.yb2{bottom:222.826667pt;}
.ye5{bottom:225.706667pt;}
.y29{bottom:226.346667pt;}
.y97{bottom:228.266667pt;}
.y83{bottom:230.826667pt;}
.ya5{bottom:236.266667pt;}
.yd9{bottom:238.826667pt;}
.y5f{bottom:244.266667pt;}
.y28{bottom:245.866667pt;}
.y87{bottom:246.826667pt;}
.y46{bottom:250.346667pt;}
.yb1{bottom:252.266667pt;}
.yf5{bottom:254.826667pt;}
.y6e{bottom:260.266667pt;}
.ya4{bottom:265.386667pt;}
.y27{bottom:265.706667pt;}
.ybc{bottom:268.266667pt;}
.yb5{bottom:270.826667pt;}
.y5e{bottom:273.706667pt;}
.y82{bottom:276.266667pt;}
.y45{bottom:279.786667pt;}
.yb0{bottom:281.386667pt;}
.yf0{bottom:284.266667pt;}
.y26{bottom:285.226667pt;}
.y6d{bottom:289.706667pt;}
.yc6{bottom:294.826667pt;}
.yd8{bottom:297.706667pt;}
.ye4{bottom:300.266667pt;}
.y5d{bottom:302.826667pt;}
.y25{bottom:304.746667pt;}
.y81{bottom:305.706667pt;}
.y44{bottom:309.226667pt;}
.ya3{bottom:310.826667pt;}
.ybb{bottom:313.386667pt;}
.yb4{bottom:316.266667pt;}
.y6c{bottom:318.826667pt;}
.y24{bottom:324.266667pt;}
.yd7{bottom:326.826667pt;}
.yf4{bottom:329.386667pt;}
.y5c{bottom:332.266667pt;}
.y80{bottom:334.826667pt;}
.y43{bottom:338.346667pt;}
.yef{bottom:342.826667pt;}
.y23{bottom:343.786667pt;}
.ye3{bottom:345.386667pt;}
.y75{bottom:348.266667pt;}
.yc5{bottom:353.386667pt;}
.ya2{bottom:355.946667pt;}
.yd6{bottom:356.266667pt;}
.yba{bottom:358.826667pt;}
.y93{bottom:361.386667pt;}
.y22{bottom:363.306667pt;}
.y6b{bottom:364.266667pt;}
.y42{bottom:367.786667pt;}
.yee{bottom:371.946667pt;}
.ye2{bottom:374.826667pt;}
.y5b{bottom:377.386667pt;}
.y21{bottom:382.826667pt;}
.yaf{bottom:385.386667pt;}
.yf3{bottom:387.946667pt;}
.y92{bottom:390.826667pt;}
.y6a{bottom:393.386667pt;}
.ya1{bottom:401.386667pt;}
.y20{bottom:402.346667pt;}
.yb9{bottom:403.946667pt;}
.y5a{bottom:406.826667pt;}
.y7f{bottom:409.386667pt;}
.y41{bottom:412.906667pt;}
.yae{bottom:414.506667pt;}
.yd5{bottom:414.826667pt;}
.yed{bottom:417.386667pt;}
.y1f{bottom:421.866667pt;}
.y69{bottom:422.826667pt;}
.yc4{bottom:425.386667pt;}
.ye1{bottom:433.386667pt;}
.y59{bottom:435.946667pt;}
.y7e{bottom:438.826667pt;}
.y1e{bottom:441.386667pt;}
.y40{bottom:442.346667pt;}
.yd4{bottom:443.946667pt;}
.ya0{bottom:446.506667pt;}
.yb8{bottom:449.386667pt;}
.y68{bottom:451.946667pt;}
.yc3{bottom:454.826667pt;}
.yad{bottom:459.946667pt;}
.y1d{bottom:460.906667pt;}
.yf2{bottom:462.506667pt;}
.y58{bottom:465.386667pt;}
.y7d{bottom:467.946667pt;}
.y3f{bottom:471.466667pt;}
.yd3{bottom:473.386667pt;}
.ye0{bottom:478.506667pt;}
.y1c{bottom:480.426667pt;}
.y67{bottom:481.386667pt;}
.yc2{bottom:483.946667pt;}
.y9f{bottom:491.946667pt;}
.y57{bottom:494.506667pt;}
.y7c{bottom:497.386667pt;}
.y1b{bottom:499.946667pt;}
.y3e{bottom:500.906667pt;}
.ydf{bottom:507.946667pt;}
.y66{bottom:510.506667pt;}
.yc1{bottom:513.386667pt;}
.yd2{bottom:515.946667pt;}
.yec{bottom:521.386667pt;}
.y91{bottom:523.946667pt;}
.y7b{bottom:526.506667pt;}
.y3d{bottom:530.026667pt;}
.y1a{bottom:533.546667pt;}
.y9e{bottom:537.386667pt;}
.y56{bottom:539.946667pt;}
.yc0{bottom:542.506667pt;}
.yd1{bottom:545.386667pt;}
.yeb{bottom:550.506667pt;}
.y90{bottom:553.386667pt;}
.y65{bottom:555.946667pt;}
.y3c{bottom:559.466667pt;}
.yac{bottom:563.946667pt;}
.yde{bottom:566.506667pt;}
.y74{bottom:569.386667pt;}
.y19{bottom:570.346667pt;}
.y7a{bottom:571.946667pt;}
.yd0{bottom:574.506667pt;}
.y8f{bottom:582.506667pt;}
.y55{bottom:585.386667pt;}
.y3b{bottom:588.906667pt;}
.yea{bottom:595.946667pt;}
.y18{bottom:596.586667pt;}
.y96{bottom:598.506667pt;}
.ybf{bottom:601.066667pt;}
.y79{bottom:601.386667pt;}
.ycf{bottom:603.946667pt;}
.yab{bottom:609.066667pt;}
.y8e{bottom:611.946667pt;}
.y54{bottom:614.506667pt;}
.y17{bottom:620.906667pt;}
.ye9{bottom:625.066667pt;}
.y95{bottom:627.946667pt;}
.y78{bottom:630.506667pt;}
.yce{bottom:633.066667pt;}
.y3a{bottom:634.026667pt;}
.y16{bottom:640.426667pt;}
.y8d{bottom:641.066667pt;}
.y53{bottom:643.946667pt;}
.yaa{bottom:654.506667pt;}
.y94{bottom:657.066667pt;}
.y15{bottom:659.946667pt;}
.ycd{bottom:662.506667pt;}
.y39{bottom:669.226667pt;}
.ye8{bottom:670.506667pt;}
.y52{bottom:673.066667pt;}
.y14{bottom:679.466667pt;}
.y8c{bottom:686.506667pt;}
.y38{bottom:688.746667pt;}
.y77{bottom:689.066667pt;}
.ya9{bottom:699.626667pt;}
.y13{bottom:700.586667pt;}
.y51{bottom:702.506667pt;}
.ycc{bottom:705.066667pt;}
.y37{bottom:708.266667pt;}
.y9d{bottom:715.626667pt;}
.y76{bottom:718.506667pt;}
.y12{bottom:726.826667pt;}
.y36{bottom:727.786667pt;}
.y64{bottom:731.626667pt;}
.ycb{bottom:734.506667pt;}
.y9c{bottom:745.066667pt;}
.y35{bottom:747.306667pt;}
.y50{bottom:747.626667pt;}
.y11{bottom:752.746667pt;}
.y73{bottom:761.066667pt;}
.yca{bottom:763.626667pt;}
.y34{bottom:766.826667pt;}
.y9b{bottom:774.186667pt;}
.y4f{bottom:777.066667pt;}
.y10{bottom:777.706667pt;}
.y33{bottom:786.346667pt;}
.y72{bottom:790.186667pt;}
.yc9{bottom:793.066667pt;}
.y32{bottom:805.866667pt;}
.y4e{bottom:806.186667pt;}
.yf{bottom:818.666667pt;}
.y9a{bottom:819.626667pt;}
.y31{bottom:825.386667pt;}
.y4d{bottom:835.626667pt;}
.ye{bottom:843.946667pt;}
.y30{bottom:844.906667pt;}
.y2f{bottom:864.746667pt;}
.y4c{bottom:865.066667pt;}
.yc{bottom:884.266667pt;}
.yb{bottom:902.506667pt;}
.ya{bottom:932.266667pt;}
.y9{bottom:948.586667pt;}
.y8{bottom:964.906667pt;}
.y7{bottom:981.226667pt;}
.y6{bottom:997.546667pt;}
.y5{bottom:1013.546667pt;}
.y4{bottom:1029.866667pt;}
.y3{bottom:1046.186667pt;}
.y2{bottom:1061.866667pt;}
.h2{height:34.835625pt;}
.h3{height:43.280625pt;}
.h8{height:43.812500pt;}
.h7{height:44.343750pt;}
.h4{height:52.781250pt;}
.h5{height:60.843750pt;}
.h6{height:69.671250pt;}
.h1{height:1090.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.000000pt;}
.xe{left:78.400067pt;}
.xa{left:79.379227pt;}
.xc{left:92.827147pt;}
.x1f{left:102.549800pt;}
.x1a{left:147.186533pt;}
.x1c{left:149.096667pt;}
.xb{left:183.639600pt;}
.x1e{left:184.729467pt;}
.x18{left:186.885733pt;}
.x5{left:203.425467pt;}
.x13{left:232.631867pt;}
.x6{left:234.340133pt;}
.x12{left:262.834933pt;}
.x15{left:267.545867pt;}
.x7{left:269.747067pt;}
.xd{left:276.488667pt;}
.x10{left:279.327200pt;}
.x11{left:287.702133pt;}
.x14{left:292.913067pt;}
.xf{left:306.639600pt;}
.x8{left:330.765867pt;}
.x4{left:380.733333pt;}
.x16{left:604.160133pt;}
.x19{left:610.879867pt;}
.x20{left:621.120133pt;}
.x1b{left:649.599867pt;}
.x1d{left:664.000000pt;}
.x17{left:666.848000pt;}
.x9{left:674.957333pt;}
.x3{left:683.066667pt;}
.x2{left:739.933333pt;}
}




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