
    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_ecf6fc110409bdb6df4df12b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_fcead9f1c0ca794525be13ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.044000;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_4befef23207bea57ed51bb5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_899b3fed465094aed033db40.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.688000;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_d473a8ca8fc05041fb881a15.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_9d1d243ad7d863aaef626cee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_eddd95a9acfadaa77fac9656.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_80cafa8e8430e1f170c748c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.431000;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_46c70f5b2636f31b049e7e36.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_e977917bbc3cc8d8edb88b18.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_a4b911a63394a9387a9e41ec.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922000;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_c82ed7ec10e131a5eb4ad3d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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:ffd;src:url('chunks/assets/font_6e17557cae4181d6d939df20.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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:ffe;src:url('chunks/assets/font_9baad3f20ad6151975f05452.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910000;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:fff;src:url('chunks/assets/font_718e7607a3f9d75fa8293766.woff2')format("woff");}.fff{font-family:fff;line-height:0.356000;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:ff10;src:url('chunks/assets/font_64a2f39acfae3418aa71679a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.429000;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:ff11;src:url('chunks/assets/font_ad7a1ac39310ca9265ca72f6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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:ff12;src:url('chunks/assets/font_01f7e9b956c1c6b6ca7af7f2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.001000;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:ff13;src:url('chunks/assets/font_c54e977232ffdb95e56dfcc4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.044000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.870000px;}
.v4{vertical-align:21.696000px;}
.v1{vertical-align:22.854000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:18.432367px;}
.ls1{letter-spacing:19.920532px;}
.ls4{letter-spacing:26.923409px;}
.ls3{letter-spacing:29.971409px;}
.ls5{letter-spacing:34.831409px;}
.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;}
}
.ws23{word-spacing:-16.605662px;}
.ws14{word-spacing:-14.111859px;}
.wsaa{word-spacing:-13.750871px;}
.wsc{word-spacing:-13.202127px;}
.wsd0{word-spacing:-2.856707px;}
.ws95{word-spacing:-2.618171px;}
.ws82{word-spacing:-2.558396px;}
.wsb8{word-spacing:-2.501626px;}
.wsac{word-spacing:-2.080191px;}
.ws4c{word-spacing:-2.020415px;}
.wsaf{word-spacing:-2.017440px;}
.ws1c{word-spacing:-1.900864px;}
.wsbd{word-spacing:-1.856045px;}
.wsbe{word-spacing:-1.694650px;}
.wsca{word-spacing:-1.479456px;}
.ws42{word-spacing:-1.303108px;}
.ws41{word-spacing:-1.243332px;}
.ws67{word-spacing:-1.123781px;}
.ws2e{word-spacing:-1.004230px;}
.ws9e{word-spacing:-0.944454px;}
.ws39{word-spacing:-0.526025px;}
.wscf{word-spacing:-0.511085px;}
.ws7f{word-spacing:-0.466250px;}
.ws88{word-spacing:-0.406474px;}
.wsb9{word-spacing:-0.403488px;}
.ws70{word-spacing:-0.167372px;}
.wsc3{word-spacing:-0.134496px;}
.wsb1{word-spacing:-0.080698px;}
.wsd6{word-spacing:-0.061527px;}
.ws19{word-spacing:-0.059776px;}
.wsb3{word-spacing:-0.053798px;}
.ws40{word-spacing:0.000000px;}
.ws4a{word-spacing:0.011955px;}
.wsc4{word-spacing:0.080698px;}
.ws53{word-spacing:0.310833px;}
.wsce{word-spacing:0.349690px;}
.ws3b{word-spacing:0.490160px;}
.ws54{word-spacing:0.609711px;}
.wsb5{word-spacing:0.672480px;}
.wsb0{word-spacing:0.726278px;}
.ws3d{word-spacing:0.848814px;}
.ws85{word-spacing:0.932877px;}
.ws17{word-spacing:0.968365px;}
.wsa3{word-spacing:1.087916px;}
.ws4f{word-spacing:1.207467px;}
.ws5e{word-spacing:1.267243px;}
.ws7e{word-spacing:1.327018px;}
.ws6f{word-spacing:1.386794px;}
.ws4b{word-spacing:1.506345px;}
.ws3a{word-spacing:1.566121px;}
.ws76{word-spacing:1.625896px;}
.ws69{word-spacing:1.864999px;}
.ws96{word-spacing:1.918849px;}
.ws83{word-spacing:1.924774px;}
.ws8a{word-spacing:1.984550px;}
.ws12{word-spacing:2.003683px;}
.ws1e{word-spacing:2.402979px;}
.ws2b{word-spacing:2.462755px;}
.ws79{word-spacing:2.582306px;}
.ws77{word-spacing:2.583774px;}
.ws3e{word-spacing:2.701857px;}
.ws60{word-spacing:2.761633px;}
.wsdc{word-spacing:2.770618px;}
.ws10{word-spacing:2.816633px;}
.ws3c{word-spacing:2.881184px;}
.wsbb{word-spacing:2.932013px;}
.ws87{word-spacing:3.000735px;}
.ws1{word-spacing:3.039610px;}
.ws51{word-spacing:3.060511px;}
.wsc0{word-spacing:3.063185px;}
.ws3{word-spacing:3.066125px;}
.wsb2{word-spacing:3.085142px;}
.ws0{word-spacing:3.093408px;}
.ws20{word-spacing:3.239838px;}
.ws1f{word-spacing:3.299613px;}
.wsa9{word-spacing:3.359389px;}
.wsda{word-spacing:3.416198px;}
.ws30{word-spacing:3.658267px;}
.ws21{word-spacing:3.718042px;}
.ws8e{word-spacing:3.777818px;}
.wsa6{word-spacing:3.837594px;}
.wsdd{word-spacing:3.954182px;}
.ws32{word-spacing:3.957145px;}
.ws33{word-spacing:4.016920px;}
.wsc2{word-spacing:4.061779px;}
.ws9c{word-spacing:4.196247px;}
.ws7{word-spacing:4.228554px;}
.ws6a{word-spacing:4.256023px;}
.wsc8{word-spacing:4.330771px;}
.ws47{word-spacing:4.495125px;}
.ws6b{word-spacing:4.554901px;}
.ws5c{word-spacing:4.592722px;}
.ws5d{word-spacing:4.614676px;}
.wsb6{word-spacing:4.653562px;}
.wsf{word-spacing:4.681637px;}
.wsc9{word-spacing:4.707360px;}
.ws74{word-spacing:4.734228px;}
.ws15{word-spacing:4.805970px;}
.wsa5{word-spacing:4.853779px;}
.ws56{word-spacing:4.973330px;}
.wsbf{word-spacing:5.083949px;}
.ws6e{word-spacing:5.124612px;}
.ws6c{word-spacing:5.152657px;}
.ws91{word-spacing:5.212432px;}
.ws64{word-spacing:5.272208px;}
.ws1a{word-spacing:5.391759px;}
.ws58{word-spacing:5.630862px;}
.ws5a{word-spacing:5.642938px;}
.wsdb{word-spacing:5.675731px;}
.ws6{word-spacing:5.684660px;}
.ws92{word-spacing:5.750413px;}
.ws94{word-spacing:5.869964px;}
.wsab{word-spacing:5.939343px;}
.ws8f{word-spacing:5.989515px;}
.ws66{word-spacing:6.049291px;}
.ws2d{word-spacing:6.168842px;}
.wsbc{word-spacing:6.213715px;}
.ws7a{word-spacing:6.288393px;}
.ws34{word-spacing:6.348169px;}
.ws61{word-spacing:6.587271px;}
.ws1d{word-spacing:6.647047px;}
.ws50{word-spacing:6.766598px;}
.ws8d{word-spacing:6.826374px;}
.ws4d{word-spacing:6.886149px;}
.ws80{word-spacing:6.945925px;}
.wsc1{word-spacing:6.966893px;}
.ws43{word-spacing:7.005700px;}
.ws1b{word-spacing:7.065476px;}
.ws7c{word-spacing:7.304578px;}
.wsae{word-spacing:7.343482px;}
.ws48{word-spacing:7.364354px;}
.ws27{word-spacing:7.424130px;}
.ws24{word-spacing:7.483905px;}
.ws86{word-spacing:7.723008px;}
.ws28{word-spacing:7.842559px;}
.wsba{word-spacing:8.042861px;}
.ws93{word-spacing:8.141437px;}
.wsd9{word-spacing:8.150458px;}
.ws16{word-spacing:8.201212px;}
.ws2a{word-spacing:8.380539px;}
.ws5{word-spacing:8.556074px;}
.wsc6{word-spacing:8.634643px;}
.ws55{word-spacing:8.739193px;}
.ws8b{word-spacing:8.858744px;}
.ws9f{word-spacing:8.918520px;}
.ws52{word-spacing:8.978295px;}
.ws5b{word-spacing:9.038071px;}
.ws73{word-spacing:9.097846px;}
.ws38{word-spacing:9.217398px;}
.ws36{word-spacing:9.277173px;}
.wsa0{word-spacing:9.396724px;}
.wsa7{word-spacing:9.516276px;}
.wsa2{word-spacing:9.635827px;}
.wsc5{word-spacing:9.656813px;}
.ws63{word-spacing:9.874929px;}
.ws5f{word-spacing:9.994480px;}
.ws37{word-spacing:10.054256px;}
.ws7d{word-spacing:10.114032px;}
.wsc7{word-spacing:10.140998px;}
.wsd3{word-spacing:10.152008px;}
.ws8c{word-spacing:10.233583px;}
.wsb7{word-spacing:10.248595px;}
.ws65{word-spacing:10.353134px;}
.ws90{word-spacing:10.412910px;}
.ws9d{word-spacing:10.472685px;}
.ws7b{word-spacing:10.532461px;}
.ws26{word-spacing:10.592236px;}
.ws72{word-spacing:10.652012px;}
.wsa4{word-spacing:10.711788px;}
.ws57{word-spacing:10.771563px;}
.ws29{word-spacing:11.010666px;}
.wscd{word-spacing:11.324563px;}
.ws68{word-spacing:11.369319px;}
.ws98{word-spacing:11.429095px;}
.ws89{word-spacing:11.548646px;}
.ws31{word-spacing:11.608422px;}
.wsa{word-spacing:11.652733px;}
.ws81{word-spacing:11.787748px;}
.ws8{word-spacing:11.814129px;}
.ws9b{word-spacing:11.907300px;}
.wsa8{word-spacing:12.026851px;}
.ws62{word-spacing:12.146402px;}
.ws99{word-spacing:12.385504px;}
.wsa1{word-spacing:12.445280px;}
.ws25{word-spacing:12.624607px;}
.wsb{word-spacing:12.836298px;}
.ws9{word-spacing:14.127460px;}
.wsd1{word-spacing:14.256576px;}
.ws2f{word-spacing:14.298324px;}
.wsb4{word-spacing:14.444870px;}
.wscc{word-spacing:14.767661px;}
.ws9a{word-spacing:15.254733px;}
.ws13{word-spacing:16.057389px;}
.ws49{word-spacing:16.535173px;}
.wsd7{word-spacing:17.295110px;}
.ws84{word-spacing:17.832019px;}
.wse{word-spacing:18.345254px;}
.ws4{word-spacing:18.373175px;}
.wsd{word-spacing:18.399053px;}
.ws18{word-spacing:19.128192px;}
.ws78{word-spacing:19.156507px;}
.ws3f{word-spacing:19.259698px;}
.ws2{word-spacing:19.690214px;}
.ws2c{word-spacing:19.885198px;}
.ws97{word-spacing:20.024826px;}
.ws22{word-spacing:20.267173px;}
.wsd8{word-spacing:20.304017px;}
.ws6d{word-spacing:21.695173px;}
.ws59{word-spacing:22.193173px;}
.ws46{word-spacing:22.415850px;}
.wsd2{word-spacing:22.810522px;}
.ws75{word-spacing:22.901173px;}
.ws71{word-spacing:23.573173px;}
.ws4e{word-spacing:24.627547px;}
.ws44{word-spacing:24.687323px;}
.ws45{word-spacing:25.344854px;}
.ws11{word-spacing:25.344918px;}
.ws35{word-spacing:25.865173px;}
.wsad{word-spacing:26.172922px;}
.wscb{word-spacing:32.305939px;}
.wsd5{word-spacing:206.301117px;}
.wsd4{word-spacing:206.670281px;}
._23{margin-left:-1400.847894px;}
._7{margin-left:-47.093279px;}
._6{margin-left:-45.620911px;}
._14{margin-left:-31.609349px;}
._13{margin-left:-30.463512px;}
._11{margin-left:-29.316345px;}
._0{margin-left:-27.706176px;}
._f{margin-left:-25.740955px;}
._10{margin-left:-23.326357px;}
._a{margin-left:-22.116972px;}
._c{margin-left:-20.364061px;}
._15{margin-left:-11.436050px;}
._9{margin-left:-7.073123px;}
._18{margin-left:-5.999604px;}
._e{margin-left:-4.680461px;}
._4{margin-left:-2.831497px;}
._1{margin-left:-1.721549px;}
._3{width:1.721549px;}
._8{width:2.754470px;}
._12{width:5.061131px;}
._1c{width:6.649284px;}
._16{width:9.982525px;}
._1a{width:19.374211px;}
._19{width:20.742133px;}
._5{width:23.225073px;}
._2{width:24.593384px;}
._1b{width:27.437000px;}
._17{width:28.773595px;}
._21{width:32.024210px;}
._24{width:33.677798px;}
._1e{width:38.329781px;}
._1d{width:43.469107px;}
._1f{width:49.412251px;}
._20{width:95.384563px;}
._b{width:100.460943px;}
._d{width:107.787917px;}
._22{width:1546.181652px;}
.fc3{color:transparent;}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs3{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs7{font-size:50.570496px;}
.fs0{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs6{font-size:61.527324px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ye7{bottom:7.963680px;}
.ye2{bottom:33.343680px;}
.ydc{bottom:60.343770px;}
.ye6{bottom:70.938510px;}
.ye5{bottom:75.571770px;}
.ye4{bottom:92.491770px;}
.ydd{bottom:117.447360px;}
.y48{bottom:132.439500px;}
.y47{bottom:135.657000px;}
.yde{bottom:174.550950px;}
.y7e{bottom:180.487500px;}
.y46{bottom:180.489000px;}
.y32{bottom:188.967000px;}
.y7d{bottom:198.420000px;}
.y45{bottom:198.421500px;}
.y31{bottom:204.169500px;}
.y94{bottom:216.352500px;}
.y7c{bottom:216.354000px;}
.y44{bottom:221.890500px;}
.ydf{bottom:231.654540px;}
.y93{bottom:234.285000px;}
.y7b{bottom:234.286500px;}
.y43{bottom:239.823000px;}
.y7a{bottom:252.219000px;}
.y42{bottom:257.755500px;}
.y30{bottom:263.292000px;}
.y79{bottom:270.151500px;}
.y41{bottom:275.688000px;}
.y2f{bottom:281.224500px;}
.y78{bottom:288.084000px;}
.ye0{bottom:288.758130px;}
.y40{bottom:293.622000px;}
.y2e{bottom:299.158500px;}
.y92{bottom:306.016500px;}
.y77{bottom:306.018000px;}
.y3f{bottom:311.554500px;}
.y2d{bottom:317.091000px;}
.y91{bottom:323.949000px;}
.y76{bottom:323.950500px;}
.y3e{bottom:329.487000px;}
.y2c{bottom:335.023500px;}
.y75{bottom:341.883000px;}
.ye1{bottom:345.791220px;}
.y3d{bottom:347.419500px;}
.y2b{bottom:352.956000px;}
.y74{bottom:359.815500px;}
.y3c{bottom:365.352000px;}
.y2a{bottom:370.888500px;}
.ye3{bottom:372.861810px;}
.y73{bottom:377.748000px;}
.yae{bottom:378.387000px;}
.y3b{bottom:383.284500px;}
.y29{bottom:388.822500px;}
.yad{bottom:394.078500px;}
.y72{bottom:395.680500px;}
.ye8{bottom:398.171310px;}
.y3a{bottom:401.218500px;}
.y28{bottom:406.755000px;}
.yac{bottom:409.768500px;}
.y90{bottom:413.613000px;}
.y71{bottom:413.614500px;}
.y39{bottom:419.151000px;}
.y27{bottom:424.687500px;}
.yab{bottom:425.460000px;}
.y8f{bottom:431.545500px;}
.y70{bottom:431.547000px;}
.y38{bottom:437.083500px;}
.yaa{bottom:441.151500px;}
.y26{bottom:442.620000px;}
.yda{bottom:445.743000px;}
.y6f{bottom:449.479500px;}
.y37{bottom:455.016000px;}
.ya9{bottom:456.843000px;}
.y25{bottom:460.552500px;}
.yd9{bottom:461.434500px;}
.y6e{bottom:467.412000px;}
.y36{bottom:472.948500px;}
.yd8{bottom:477.126000px;}
.y24{bottom:478.485000px;}
.y6d{bottom:485.344500px;}
.ya8{bottom:489.541500px;}
.y35{bottom:490.882500px;}
.yd7{bottom:492.816000px;}
.y23{bottom:496.419000px;}
.y6c{bottom:503.277000px;}
.yd6{bottom:508.507500px;}
.y34{bottom:508.815000px;}
.y22{bottom:514.351500px;}
.y8e{bottom:521.209500px;}
.y6b{bottom:522.207000px;}
.yd5{bottom:524.199000px;}
.y33{bottom:526.747500px;}
.y21{bottom:532.284000px;}
.y8d{bottom:539.142000px;}
.ya7{bottom:539.248500px;}
.yd4{bottom:539.890500px;}
.y6a{bottom:540.139500px;}
.y20{bottom:550.216500px;}
.yd3{bottom:555.580500px;}
.y8c{bottom:557.076000px;}
.y69{bottom:558.072000px;}
.y1f{bottom:568.149000px;}
.yd2{bottom:571.272000px;}
.ya6{bottom:574.188000px;}
.y8b{bottom:575.008500px;}
.y68{bottom:576.004500px;}
.y1e{bottom:586.081500px;}
.yd1{bottom:586.963500px;}
.y8a{bottom:592.941000px;}
.y67{bottom:593.937000px;}
.yd0{bottom:602.655000px;}
.y89{bottom:610.873500px;}
.y66{bottom:611.871000px;}
.ycf{bottom:618.346500px;}
.ya5{bottom:623.896500px;}
.y65{bottom:629.803500px;}
.y1d{bottom:633.238500px;}
.yce{bottom:634.036500px;}
.yee{bottom:641.230500px;}
.y64{bottom:647.736000px;}
.ycd{bottom:649.728000px;}
.yed{bottom:656.922000px;}
.ya4{bottom:658.836000px;}
.ycc{bottom:665.419500px;}
.y63{bottom:665.668500px;}
.yec{bottom:672.613500px;}
.ycb{bottom:681.111000px;}
.y1c{bottom:683.160000px;}
.y62{bottom:683.601000px;}
.yeb{bottom:688.305000px;}
.yca{bottom:696.801000px;}
.y1b{bottom:697.356000px;}
.y88{bottom:701.533500px;}
.y61{bottom:701.535000px;}
.yea{bottom:703.996500px;}
.ya3{bottom:708.543000px;}
.y1a{bottom:711.553500px;}
.yc9{bottom:712.492500px;}
.y87{bottom:719.466000px;}
.y60{bottom:719.467500px;}
.ye9{bottom:719.686500px;}
.y19{bottom:725.749500px;}
.yc8{bottom:728.184000px;}
.y5f{bottom:737.400000px;}
.ya2{bottom:743.484000px;}
.yc7{bottom:743.875500px;}
.ydb{bottom:746.212500px;}
.y5e{bottom:755.332500px;}
.yc6{bottom:759.567000px;}
.y18{bottom:764.604000px;}
.y5d{bottom:773.265000px;}
.yc5{bottom:775.257000px;}
.y17{bottom:778.801500px;}
.yc4{bottom:790.948500px;}
.y86{bottom:791.197500px;}
.y5c{bottom:792.195000px;}
.y16{bottom:792.997500px;}
.ya1{bottom:793.191000px;}
.yc3{bottom:806.640000px;}
.y15{bottom:807.195000px;}
.y85{bottom:809.130000px;}
.y5b{bottom:810.127500px;}
.ya0{bottom:811.123500px;}
.y14{bottom:821.391000px;}
.yc2{bottom:822.331500px;}
.y5a{bottom:828.060000px;}
.y9f{bottom:829.056000px;}
.y13{bottom:835.588500px;}
.yc1{bottom:838.021500px;}
.y59{bottom:845.992500px;}
.y9e{bottom:846.988500px;}
.y12{bottom:849.784500px;}
.yc0{bottom:853.713000px;}
.y58{bottom:863.925000px;}
.y11{bottom:863.982000px;}
.y9d{bottom:864.921000px;}
.ybf{bottom:869.404500px;}
.y10{bottom:878.178000px;}
.y57{bottom:881.857500px;}
.y9c{bottom:882.855000px;}
.ybe{bottom:885.096000px;}
.y84{bottom:899.790000px;}
.y56{bottom:899.791500px;}
.y9b{bottom:900.787500px;}
.yf{bottom:902.836500px;}
.ybd{bottom:916.477500px;}
.ye{bottom:917.032500px;}
.y83{bottom:917.722500px;}
.y55{bottom:917.724000px;}
.y9a{bottom:918.720000px;}
.ybc{bottom:932.169000px;}
.y54{bottom:935.656500px;}
.y99{bottom:936.652500px;}
.yd{bottom:946.473000px;}
.ybb{bottom:947.860500px;}
.y53{bottom:953.589000px;}
.y98{bottom:954.585000px;}
.yc{bottom:962.163000px;}
.yba{bottom:963.552000px;}
.y52{bottom:971.521500px;}
.y97{bottom:972.517500px;}
.yb9{bottom:979.242000px;}
.y51{bottom:989.454000px;}
.y96{bottom:990.451500px;}
.yb{bottom:993.247500px;}
.yb8{bottom:994.933500px;}
.y82{bottom:1007.386500px;}
.y50{bottom:1007.388000px;}
.y95{bottom:1008.384000px;}
.ya{bottom:1008.937500px;}
.yb7{bottom:1012.866000px;}
.y9{bottom:1024.629000px;}
.y4f{bottom:1025.320500px;}
.y81{bottom:1026.316500px;}
.yb6{bottom:1028.557500px;}
.y8{bottom:1040.320500px;}
.y4e{bottom:1044.249000px;}
.y7{bottom:1056.012000px;}
.yb5{bottom:1059.940500px;}
.y4d{bottom:1062.181500px;}
.yb4{bottom:1075.632000px;}
.y80{bottom:1080.114000px;}
.y4c{bottom:1080.115500px;}
.y6{bottom:1081.609500px;}
.yb3{bottom:1091.322000px;}
.y7f{bottom:1098.046500px;}
.y4b{bottom:1098.048000px;}
.yb2{bottom:1107.013500px;}
.y5{bottom:1110.301500px;}
.y4a{bottom:1115.980500px;}
.yb1{bottom:1122.705000px;}
.y4{bottom:1133.913000px;}
.yb0{bottom:1138.396500px;}
.y49{bottom:1151.845500px;}
.yaf{bottom:1154.086500px;}
.y3{bottom:1169.778000px;}
.y2{bottom:1192.941000px;}
.y1{bottom:1208.632500px;}
.hc{height:26.899200px;}
.h9{height:33.187496px;}
.ha{height:34.191729px;}
.h8{height:35.865450px;}
.h11{height:37.927872px;}
.h7{height:38.519654px;}
.h15{height:39.090993px;}
.h3{height:40.348800px;}
.h2{height:41.586163px;}
.he{height:42.141798px;}
.h5{height:42.799330px;}
.hb{height:44.831700px;}
.h13{height:46.145493px;}
.h14{height:46.207020px;}
.h6{height:49.753200px;}
.hf{height:51.221654px;}
.h10{height:51.227654px;}
.hd{height:57.701700px;}
.h4{height:61.631275px;}
.h12{height:438.510000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:638.730000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:17.567190px;}
.x11{left:24.584760px;}
.x12{left:32.276310px;}
.x13{left:39.966450px;}
.x8{left:77.763000px;}
.x3{left:81.000000px;}
.x7{left:83.242500px;}
.x15{left:94.926840px;}
.x6{left:95.944500px;}
.x14{left:117.204840px;}
.x4{left:135.000000px;}
.x10{left:142.705500px;}
.xd{left:160.240500px;}
.xf{left:162.145500px;}
.x5{left:163.192500px;}
.x2{left:177.531000px;}
.xb{left:199.389000px;}
.xe{left:253.864500px;}
.x19{left:255.874110px;}
.x1a{left:267.819630px;}
.x16{left:286.982940px;}
.x1{left:302.959500px;}
.x17{left:310.873980px;}
.x9{left:475.521000px;}
.xa{left:490.464000px;}
.xc{left:835.669500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.440000pt;}
.v4{vertical-align:19.285333pt;}
.v1{vertical-align:20.314667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:16.384326pt;}
.ls1{letter-spacing:17.707139pt;}
.ls4{letter-spacing:23.931919pt;}
.ls3{letter-spacing:26.641253pt;}
.ls5{letter-spacing:30.961253pt;}
.ws23{word-spacing:-14.760588pt;}
.ws14{word-spacing:-12.543875pt;}
.wsaa{word-spacing:-12.222996pt;}
.wsc{word-spacing:-11.735224pt;}
.wsd0{word-spacing:-2.539295pt;}
.ws95{word-spacing:-2.327263pt;}
.ws82{word-spacing:-2.274129pt;}
.wsb8{word-spacing:-2.223667pt;}
.wsac{word-spacing:-1.849059pt;}
.ws4c{word-spacing:-1.795925pt;}
.wsaf{word-spacing:-1.793280pt;}
.ws1c{word-spacing:-1.689657pt;}
.wsbd{word-spacing:-1.649818pt;}
.wsbe{word-spacing:-1.506355pt;}
.wsca{word-spacing:-1.315072pt;}
.ws42{word-spacing:-1.158318pt;}
.ws41{word-spacing:-1.105184pt;}
.ws67{word-spacing:-0.998917pt;}
.ws2e{word-spacing:-0.892649pt;}
.ws9e{word-spacing:-0.839515pt;}
.ws39{word-spacing:-0.467578pt;}
.wscf{word-spacing:-0.454298pt;}
.ws7f{word-spacing:-0.414444pt;}
.ws88{word-spacing:-0.361310pt;}
.wsb9{word-spacing:-0.358656pt;}
.ws70{word-spacing:-0.148775pt;}
.wsc3{word-spacing:-0.119552pt;}
.wsb1{word-spacing:-0.071731pt;}
.wsd6{word-spacing:-0.054691pt;}
.ws19{word-spacing:-0.053134pt;}
.wsb3{word-spacing:-0.047821pt;}
.ws40{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.010627pt;}
.wsc4{word-spacing:0.071731pt;}
.ws53{word-spacing:0.276296pt;}
.wsce{word-spacing:0.310835pt;}
.ws3b{word-spacing:0.435698pt;}
.ws54{word-spacing:0.541965pt;}
.wsb5{word-spacing:0.597760pt;}
.wsb0{word-spacing:0.645581pt;}
.ws3d{word-spacing:0.754501pt;}
.ws85{word-spacing:0.829224pt;}
.ws17{word-spacing:0.860769pt;}
.wsa3{word-spacing:0.967036pt;}
.ws4f{word-spacing:1.073304pt;}
.ws5e{word-spacing:1.126438pt;}
.ws7e{word-spacing:1.179572pt;}
.ws6f{word-spacing:1.232706pt;}
.ws4b{word-spacing:1.338973pt;}
.ws3a{word-spacing:1.392107pt;}
.ws76{word-spacing:1.445241pt;}
.ws69{word-spacing:1.657777pt;}
.ws96{word-spacing:1.705644pt;}
.ws83{word-spacing:1.710911pt;}
.ws8a{word-spacing:1.764044pt;}
.ws12{word-spacing:1.781052pt;}
.ws1e{word-spacing:2.135981pt;}
.ws2b{word-spacing:2.189115pt;}
.ws79{word-spacing:2.295383pt;}
.ws77{word-spacing:2.296688pt;}
.ws3e{word-spacing:2.401651pt;}
.ws60{word-spacing:2.454785pt;}
.wsdc{word-spacing:2.462771pt;}
.ws10{word-spacing:2.503674pt;}
.ws3c{word-spacing:2.561052pt;}
.wsbb{word-spacing:2.606234pt;}
.ws87{word-spacing:2.667320pt;}
.ws1{word-spacing:2.701875pt;}
.ws51{word-spacing:2.720454pt;}
.wsc0{word-spacing:2.722831pt;}
.ws3{word-spacing:2.725444pt;}
.wsb2{word-spacing:2.742349pt;}
.ws0{word-spacing:2.749696pt;}
.ws20{word-spacing:2.879856pt;}
.ws1f{word-spacing:2.932989pt;}
.wsa9{word-spacing:2.986123pt;}
.wsda{word-spacing:3.036621pt;}
.ws30{word-spacing:3.251793pt;}
.ws21{word-spacing:3.304927pt;}
.ws8e{word-spacing:3.358060pt;}
.wsa6{word-spacing:3.411194pt;}
.wsdd{word-spacing:3.514829pt;}
.ws32{word-spacing:3.517462pt;}
.ws33{word-spacing:3.570596pt;}
.wsc2{word-spacing:3.610470pt;}
.ws9c{word-spacing:3.729997pt;}
.ws7{word-spacing:3.758715pt;}
.ws6a{word-spacing:3.783131pt;}
.wsc8{word-spacing:3.849574pt;}
.ws47{word-spacing:3.995667pt;}
.ws6b{word-spacing:4.048801pt;}
.ws5c{word-spacing:4.082420pt;}
.ws5d{word-spacing:4.101935pt;}
.wsb6{word-spacing:4.136499pt;}
.wsf{word-spacing:4.161455pt;}
.wsc9{word-spacing:4.184320pt;}
.ws74{word-spacing:4.208202pt;}
.ws15{word-spacing:4.271974pt;}
.wsa5{word-spacing:4.314470pt;}
.ws56{word-spacing:4.420738pt;}
.wsbf{word-spacing:4.519066pt;}
.ws6e{word-spacing:4.555210pt;}
.ws6c{word-spacing:4.580139pt;}
.ws91{word-spacing:4.633273pt;}
.ws64{word-spacing:4.686407pt;}
.ws1a{word-spacing:4.792675pt;}
.ws58{word-spacing:5.005210pt;}
.ws5a{word-spacing:5.015945pt;}
.wsdb{word-spacing:5.045094pt;}
.ws6{word-spacing:5.053031pt;}
.ws92{word-spacing:5.111478pt;}
.ws94{word-spacing:5.217746pt;}
.wsab{word-spacing:5.279416pt;}
.ws8f{word-spacing:5.324013pt;}
.ws66{word-spacing:5.377147pt;}
.ws2d{word-spacing:5.483415pt;}
.wsbc{word-spacing:5.523302pt;}
.ws7a{word-spacing:5.589683pt;}
.ws34{word-spacing:5.642817pt;}
.ws61{word-spacing:5.855352pt;}
.ws1d{word-spacing:5.908486pt;}
.ws50{word-spacing:6.014754pt;}
.ws8d{word-spacing:6.067888pt;}
.ws4d{word-spacing:6.121021pt;}
.ws80{word-spacing:6.174155pt;}
.wsc1{word-spacing:6.192794pt;}
.ws43{word-spacing:6.227289pt;}
.ws1b{word-spacing:6.280423pt;}
.ws7c{word-spacing:6.492959pt;}
.wsae{word-spacing:6.527539pt;}
.ws48{word-spacing:6.546092pt;}
.ws27{word-spacing:6.599226pt;}
.ws24{word-spacing:6.652360pt;}
.ws86{word-spacing:6.864896pt;}
.ws28{word-spacing:6.971163pt;}
.wsba{word-spacing:7.149210pt;}
.ws93{word-spacing:7.236833pt;}
.wsd9{word-spacing:7.244851pt;}
.ws16{word-spacing:7.289967pt;}
.ws2a{word-spacing:7.449368pt;}
.ws5{word-spacing:7.605399pt;}
.wsc6{word-spacing:7.675238pt;}
.ws55{word-spacing:7.768171pt;}
.ws8b{word-spacing:7.874439pt;}
.ws9f{word-spacing:7.927573pt;}
.ws52{word-spacing:7.980707pt;}
.ws5b{word-spacing:8.033841pt;}
.ws73{word-spacing:8.086975pt;}
.ws38{word-spacing:8.193242pt;}
.ws36{word-spacing:8.246376pt;}
.wsa0{word-spacing:8.352644pt;}
.wsa7{word-spacing:8.458912pt;}
.wsa2{word-spacing:8.565179pt;}
.wsc5{word-spacing:8.583834pt;}
.ws63{word-spacing:8.777715pt;}
.ws5f{word-spacing:8.883983pt;}
.ws37{word-spacing:8.937116pt;}
.ws7d{word-spacing:8.990250pt;}
.wsc7{word-spacing:9.014221pt;}
.wsd3{word-spacing:9.024008pt;}
.ws8c{word-spacing:9.096518pt;}
.wsb7{word-spacing:9.109862pt;}
.ws65{word-spacing:9.202786pt;}
.ws90{word-spacing:9.255920pt;}
.ws9d{word-spacing:9.309053pt;}
.ws7b{word-spacing:9.362187pt;}
.ws26{word-spacing:9.415321pt;}
.ws72{word-spacing:9.468455pt;}
.wsa4{word-spacing:9.521589pt;}
.ws57{word-spacing:9.574723pt;}
.ws29{word-spacing:9.787258pt;}
.wscd{word-spacing:10.066278pt;}
.ws68{word-spacing:10.106061pt;}
.ws98{word-spacing:10.159195pt;}
.ws89{word-spacing:10.265463pt;}
.ws31{word-spacing:10.318597pt;}
.wsa{word-spacing:10.357985pt;}
.ws81{word-spacing:10.477999pt;}
.ws8{word-spacing:10.501448pt;}
.ws9b{word-spacing:10.584266pt;}
.wsa8{word-spacing:10.690534pt;}
.ws62{word-spacing:10.796802pt;}
.ws99{word-spacing:11.009337pt;}
.wsa1{word-spacing:11.062471pt;}
.ws25{word-spacing:11.221873pt;}
.wsb{word-spacing:11.410043pt;}
.ws9{word-spacing:12.557742pt;}
.wsd1{word-spacing:12.672512pt;}
.ws2f{word-spacing:12.709621pt;}
.wsb4{word-spacing:12.839885pt;}
.wscc{word-spacing:13.126810pt;}
.ws9a{word-spacing:13.559763pt;}
.ws13{word-spacing:14.273235pt;}
.ws49{word-spacing:14.697932pt;}
.wsd7{word-spacing:15.373431pt;}
.ws84{word-spacing:15.850684pt;}
.wse{word-spacing:16.306893pt;}
.ws4{word-spacing:16.331711pt;}
.wsd{word-spacing:16.354714pt;}
.ws18{word-spacing:17.002837pt;}
.ws78{word-spacing:17.028007pt;}
.ws3f{word-spacing:17.119732pt;}
.ws2{word-spacing:17.502413pt;}
.ws2c{word-spacing:17.675732pt;}
.ws97{word-spacing:17.799845pt;}
.ws22{word-spacing:18.015265pt;}
.wsd8{word-spacing:18.048015pt;}
.ws6d{word-spacing:19.284599pt;}
.ws59{word-spacing:19.727265pt;}
.ws46{word-spacing:19.925200pt;}
.wsd2{word-spacing:20.276019pt;}
.ws75{word-spacing:20.356599pt;}
.ws71{word-spacing:20.953932pt;}
.ws4e{word-spacing:21.891153pt;}
.ws44{word-spacing:21.944287pt;}
.ws45{word-spacing:22.528759pt;}
.ws11{word-spacing:22.528816pt;}
.ws35{word-spacing:22.991265pt;}
.wsad{word-spacing:23.264819pt;}
.wscb{word-spacing:28.716390pt;}
.wsd5{word-spacing:183.378771pt;}
.wsd4{word-spacing:183.706917pt;}
._23{margin-left:-1245.198128pt;}
._7{margin-left:-41.860692pt;}
._6{margin-left:-40.551921pt;}
._14{margin-left:-28.097199pt;}
._13{margin-left:-27.078678pt;}
._11{margin-left:-26.058973pt;}
._0{margin-left:-24.627712pt;}
._f{margin-left:-22.880849pt;}
._10{margin-left:-20.734539pt;}
._a{margin-left:-19.659531pt;}
._c{margin-left:-18.101388pt;}
._15{margin-left:-10.165377pt;}
._9{margin-left:-6.287220pt;}
._18{margin-left:-5.332981pt;}
._e{margin-left:-4.160410pt;}
._4{margin-left:-2.516886pt;}
._1{margin-left:-1.530266pt;}
._3{width:1.530266pt;}
._8{width:2.448418pt;}
._12{width:4.498783pt;}
._1c{width:5.910475pt;}
._16{width:8.873356pt;}
._1a{width:17.221521pt;}
._19{width:18.437452pt;}
._5{width:20.644509pt;}
._2{width:21.860785pt;}
._1b{width:24.388445pt;}
._17{width:25.576529pt;}
._21{width:28.465964pt;}
._24{width:29.935821pt;}
._1e{width:34.070916pt;}
._1d{width:38.639206pt;}
._1f{width:43.922001pt;}
._20{width:84.786278pt;}
._b{width:89.298616pt;}
._d{width:95.811482pt;}
._22{width:1374.383691pt;}
.fs3{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs7{font-size:44.951552pt;}
.fs0{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs6{font-size:54.690955pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ye7{bottom:7.078827pt;}
.ye2{bottom:29.638827pt;}
.ydc{bottom:53.638907pt;}
.ye6{bottom:63.056453pt;}
.ye5{bottom:67.174907pt;}
.ye4{bottom:82.214907pt;}
.ydd{bottom:104.397653pt;}
.y48{bottom:117.724000pt;}
.y47{bottom:120.584000pt;}
.yde{bottom:155.156400pt;}
.y7e{bottom:160.433333pt;}
.y46{bottom:160.434667pt;}
.y32{bottom:167.970667pt;}
.y7d{bottom:176.373333pt;}
.y45{bottom:176.374667pt;}
.y31{bottom:181.484000pt;}
.y94{bottom:192.313333pt;}
.y7c{bottom:192.314667pt;}
.y44{bottom:197.236000pt;}
.ydf{bottom:205.915147pt;}
.y93{bottom:208.253333pt;}
.y7b{bottom:208.254667pt;}
.y43{bottom:213.176000pt;}
.y7a{bottom:224.194667pt;}
.y42{bottom:229.116000pt;}
.y30{bottom:234.037333pt;}
.y79{bottom:240.134667pt;}
.y41{bottom:245.056000pt;}
.y2f{bottom:249.977333pt;}
.y78{bottom:256.074667pt;}
.ye0{bottom:256.673893pt;}
.y40{bottom:260.997333pt;}
.y2e{bottom:265.918667pt;}
.y92{bottom:272.014667pt;}
.y77{bottom:272.016000pt;}
.y3f{bottom:276.937333pt;}
.y2d{bottom:281.858667pt;}
.y91{bottom:287.954667pt;}
.y76{bottom:287.956000pt;}
.y3e{bottom:292.877333pt;}
.y2c{bottom:297.798667pt;}
.y75{bottom:303.896000pt;}
.ye1{bottom:307.369973pt;}
.y3d{bottom:308.817333pt;}
.y2b{bottom:313.738667pt;}
.y74{bottom:319.836000pt;}
.y3c{bottom:324.757333pt;}
.y2a{bottom:329.678667pt;}
.ye3{bottom:331.432720pt;}
.y73{bottom:335.776000pt;}
.yae{bottom:336.344000pt;}
.y3b{bottom:340.697333pt;}
.y29{bottom:345.620000pt;}
.yad{bottom:350.292000pt;}
.y72{bottom:351.716000pt;}
.ye8{bottom:353.930053pt;}
.y3a{bottom:356.638667pt;}
.y28{bottom:361.560000pt;}
.yac{bottom:364.238667pt;}
.y90{bottom:367.656000pt;}
.y71{bottom:367.657333pt;}
.y39{bottom:372.578667pt;}
.y27{bottom:377.500000pt;}
.yab{bottom:378.186667pt;}
.y8f{bottom:383.596000pt;}
.y70{bottom:383.597333pt;}
.y38{bottom:388.518667pt;}
.yaa{bottom:392.134667pt;}
.y26{bottom:393.440000pt;}
.yda{bottom:396.216000pt;}
.y6f{bottom:399.537333pt;}
.y37{bottom:404.458667pt;}
.ya9{bottom:406.082667pt;}
.y25{bottom:409.380000pt;}
.yd9{bottom:410.164000pt;}
.y6e{bottom:415.477333pt;}
.y36{bottom:420.398667pt;}
.yd8{bottom:424.112000pt;}
.y24{bottom:425.320000pt;}
.y6d{bottom:431.417333pt;}
.ya8{bottom:435.148000pt;}
.y35{bottom:436.340000pt;}
.yd7{bottom:438.058667pt;}
.y23{bottom:441.261333pt;}
.y6c{bottom:447.357333pt;}
.yd6{bottom:452.006667pt;}
.y34{bottom:452.280000pt;}
.y22{bottom:457.201333pt;}
.y8e{bottom:463.297333pt;}
.y6b{bottom:464.184000pt;}
.yd5{bottom:465.954667pt;}
.y33{bottom:468.220000pt;}
.y21{bottom:473.141333pt;}
.y8d{bottom:479.237333pt;}
.ya7{bottom:479.332000pt;}
.yd4{bottom:479.902667pt;}
.y6a{bottom:480.124000pt;}
.y20{bottom:489.081333pt;}
.yd3{bottom:493.849333pt;}
.y8c{bottom:495.178667pt;}
.y69{bottom:496.064000pt;}
.y1f{bottom:505.021333pt;}
.yd2{bottom:507.797333pt;}
.ya6{bottom:510.389333pt;}
.y8b{bottom:511.118667pt;}
.y68{bottom:512.004000pt;}
.y1e{bottom:520.961333pt;}
.yd1{bottom:521.745333pt;}
.y8a{bottom:527.058667pt;}
.y67{bottom:527.944000pt;}
.yd0{bottom:535.693333pt;}
.y89{bottom:542.998667pt;}
.y66{bottom:543.885333pt;}
.ycf{bottom:549.641333pt;}
.ya5{bottom:554.574667pt;}
.y65{bottom:559.825333pt;}
.y1d{bottom:562.878667pt;}
.yce{bottom:563.588000pt;}
.yee{bottom:569.982667pt;}
.y64{bottom:575.765333pt;}
.ycd{bottom:577.536000pt;}
.yed{bottom:583.930667pt;}
.ya4{bottom:585.632000pt;}
.ycc{bottom:591.484000pt;}
.y63{bottom:591.705333pt;}
.yec{bottom:597.878667pt;}
.ycb{bottom:605.432000pt;}
.y1c{bottom:607.253333pt;}
.y62{bottom:607.645333pt;}
.yeb{bottom:611.826667pt;}
.yca{bottom:619.378667pt;}
.y1b{bottom:619.872000pt;}
.y88{bottom:623.585333pt;}
.y61{bottom:623.586667pt;}
.yea{bottom:625.774667pt;}
.ya3{bottom:629.816000pt;}
.y1a{bottom:632.492000pt;}
.yc9{bottom:633.326667pt;}
.y87{bottom:639.525333pt;}
.y60{bottom:639.526667pt;}
.ye9{bottom:639.721333pt;}
.y19{bottom:645.110667pt;}
.yc8{bottom:647.274667pt;}
.y5f{bottom:655.466667pt;}
.ya2{bottom:660.874667pt;}
.yc7{bottom:661.222667pt;}
.ydb{bottom:663.300000pt;}
.y5e{bottom:671.406667pt;}
.yc6{bottom:675.170667pt;}
.y18{bottom:679.648000pt;}
.y5d{bottom:687.346667pt;}
.yc5{bottom:689.117333pt;}
.y17{bottom:692.268000pt;}
.yc4{bottom:703.065333pt;}
.y86{bottom:703.286667pt;}
.y5c{bottom:704.173333pt;}
.y16{bottom:704.886667pt;}
.ya1{bottom:705.058667pt;}
.yc3{bottom:717.013333pt;}
.y15{bottom:717.506667pt;}
.y85{bottom:719.226667pt;}
.y5b{bottom:720.113333pt;}
.ya0{bottom:720.998667pt;}
.y14{bottom:730.125333pt;}
.yc2{bottom:730.961333pt;}
.y5a{bottom:736.053333pt;}
.y9f{bottom:736.938667pt;}
.y13{bottom:742.745333pt;}
.yc1{bottom:744.908000pt;}
.y59{bottom:751.993333pt;}
.y9e{bottom:752.878667pt;}
.y12{bottom:755.364000pt;}
.yc0{bottom:758.856000pt;}
.y58{bottom:767.933333pt;}
.y11{bottom:767.984000pt;}
.y9d{bottom:768.818667pt;}
.ybf{bottom:772.804000pt;}
.y10{bottom:780.602667pt;}
.y57{bottom:783.873333pt;}
.y9c{bottom:784.760000pt;}
.ybe{bottom:786.752000pt;}
.y84{bottom:799.813333pt;}
.y56{bottom:799.814667pt;}
.y9b{bottom:800.700000pt;}
.yf{bottom:802.521333pt;}
.ybd{bottom:814.646667pt;}
.ye{bottom:815.140000pt;}
.y83{bottom:815.753333pt;}
.y55{bottom:815.754667pt;}
.y9a{bottom:816.640000pt;}
.ybc{bottom:828.594667pt;}
.y54{bottom:831.694667pt;}
.y99{bottom:832.580000pt;}
.yd{bottom:841.309333pt;}
.ybb{bottom:842.542667pt;}
.y53{bottom:847.634667pt;}
.y98{bottom:848.520000pt;}
.yc{bottom:855.256000pt;}
.yba{bottom:856.490667pt;}
.y52{bottom:863.574667pt;}
.y97{bottom:864.460000pt;}
.yb9{bottom:870.437333pt;}
.y51{bottom:879.514667pt;}
.y96{bottom:880.401333pt;}
.yb{bottom:882.886667pt;}
.yb8{bottom:884.385333pt;}
.y82{bottom:895.454667pt;}
.y50{bottom:895.456000pt;}
.y95{bottom:896.341333pt;}
.ya{bottom:896.833333pt;}
.yb7{bottom:900.325333pt;}
.y9{bottom:910.781333pt;}
.y4f{bottom:911.396000pt;}
.y81{bottom:912.281333pt;}
.yb6{bottom:914.273333pt;}
.y8{bottom:924.729333pt;}
.y4e{bottom:928.221333pt;}
.y7{bottom:938.677333pt;}
.yb5{bottom:942.169333pt;}
.y4d{bottom:944.161333pt;}
.yb4{bottom:956.117333pt;}
.y80{bottom:960.101333pt;}
.y4c{bottom:960.102667pt;}
.y6{bottom:961.430667pt;}
.yb3{bottom:970.064000pt;}
.y7f{bottom:976.041333pt;}
.y4b{bottom:976.042667pt;}
.yb2{bottom:984.012000pt;}
.y5{bottom:986.934667pt;}
.y4a{bottom:991.982667pt;}
.yb1{bottom:997.960000pt;}
.y4{bottom:1007.922667pt;}
.yb0{bottom:1011.908000pt;}
.y49{bottom:1023.862667pt;}
.yaf{bottom:1025.854667pt;}
.y3{bottom:1039.802667pt;}
.y2{bottom:1060.392000pt;}
.y1{bottom:1074.340000pt;}
.hc{height:23.910400pt;}
.h9{height:29.499997pt;}
.ha{height:30.392648pt;}
.h8{height:31.880400pt;}
.h11{height:33.713664pt;}
.h7{height:34.239693pt;}
.h15{height:34.747550pt;}
.h3{height:35.865600pt;}
.h2{height:36.965478pt;}
.he{height:37.459376pt;}
.h5{height:38.043849pt;}
.hb{height:39.850400pt;}
.h13{height:41.018216pt;}
.h14{height:41.072907pt;}
.h6{height:44.225067pt;}
.hf{height:45.530359pt;}
.h10{height:45.535693pt;}
.hd{height:51.290400pt;}
.h4{height:54.783356pt;}
.h12{height:389.786667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:567.760000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:15.615280pt;}
.x11{left:21.853120pt;}
.x12{left:28.690053pt;}
.x13{left:35.525733pt;}
.x8{left:69.122667pt;}
.x3{left:72.000000pt;}
.x7{left:73.993333pt;}
.x15{left:84.379413pt;}
.x6{left:85.284000pt;}
.x14{left:104.182080pt;}
.x4{left:120.000000pt;}
.x10{left:126.849333pt;}
.xd{left:142.436000pt;}
.xf{left:144.129333pt;}
.x5{left:145.060000pt;}
.x2{left:157.805333pt;}
.xb{left:177.234667pt;}
.xe{left:225.657333pt;}
.x19{left:227.443653pt;}
.x1a{left:238.061893pt;}
.x16{left:255.095947pt;}
.x1{left:269.297333pt;}
.x17{left:276.332427pt;}
.x9{left:422.685333pt;}
.xa{left:435.968000pt;}
.xc{left:742.817333pt;}
}




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