
    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_e590f8d343b9fe42343c2e66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_d4bb4946754ee657549b189a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_17366cfc91979f01ee846429.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911000;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_5321a88802413e1ba5c867ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_cadec7e1ca2801a10e2d19d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_e0050bbd9e5c429668a4401c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_58a04c83a377c58904fbc55e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.955000;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;}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,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);}
.m5{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.185400px;}
.ls9{letter-spacing:-0.421200px;}
.ls8{letter-spacing:-0.411600px;}
.lsa{letter-spacing:-0.294000px;}
.ls5{letter-spacing:-0.234000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.320000px;}
.ls7{letter-spacing:4.399200px;}
.lsb{letter-spacing:5.850000px;}
.ls4{letter-spacing:7.815600px;}
.ls6{letter-spacing:52.154545px;}
.ls2{letter-spacing:1221.935400px;}
.ls0{letter-spacing:2288.719200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.000000px;}
.ws9b{word-spacing:-17.110800px;}
.ws17{word-spacing:-9.360000px;}
.ws18{word-spacing:-9.126000px;}
.ws1{word-spacing:-9.120000px;}
.ws8b{word-spacing:-3.469200px;}
.wsbe{word-spacing:-3.410400px;}
.ws76{word-spacing:-3.292800px;}
.ws42{word-spacing:-3.234000px;}
.ws22{word-spacing:-3.175200px;}
.ws9f{word-spacing:-3.116400px;}
.ws40{word-spacing:-2.881200px;}
.wsa{word-spacing:-2.822400px;}
.ws36{word-spacing:-2.763600px;}
.ws6b{word-spacing:-2.704800px;}
.ws55{word-spacing:-2.646000px;}
.ws4a{word-spacing:-2.587200px;}
.wsd{word-spacing:-2.528400px;}
.ws77{word-spacing:-2.410800px;}
.wsac{word-spacing:-2.352000px;}
.ws7{word-spacing:-2.175600px;}
.ws37{word-spacing:-2.058000px;}
.wsc{word-spacing:-1.999200px;}
.ws4{word-spacing:-1.940400px;}
.ws24{word-spacing:-1.822800px;}
.ws51{word-spacing:-1.764000px;}
.ws91{word-spacing:-1.705200px;}
.ws6{word-spacing:-1.646400px;}
.wsb6{word-spacing:-1.587600px;}
.ws4b{word-spacing:-1.528800px;}
.ws5{word-spacing:-1.470000px;}
.ws56{word-spacing:-1.352400px;}
.wse{word-spacing:-1.234800px;}
.ws84{word-spacing:-1.216800px;}
.wsae{word-spacing:-1.176000px;}
.ws87{word-spacing:-1.170000px;}
.ws6d{word-spacing:-1.117200px;}
.ws21{word-spacing:-0.999600px;}
.ws6f{word-spacing:-0.882000px;}
.ws6e{word-spacing:-0.823200px;}
.wsb2{word-spacing:-0.764400px;}
.ws7f{word-spacing:-0.705600px;}
.ws75{word-spacing:-0.646800px;}
.ws13{word-spacing:-0.529200px;}
.wsc1{word-spacing:-0.501600px;}
.ws20{word-spacing:-0.470400px;}
.ws61{word-spacing:-0.421200px;}
.ws49{word-spacing:-0.411600px;}
.ws94{word-spacing:-0.374400px;}
.ws47{word-spacing:-0.352800px;}
.ws83{word-spacing:-0.327600px;}
.ws5a{word-spacing:-0.294000px;}
.ws35{word-spacing:-0.235200px;}
.ws3c{word-spacing:-0.117600px;}
.ws2{word-spacing:0.000000px;}
.ws4c{word-spacing:0.058800px;}
.ws72{word-spacing:0.117600px;}
.ws78{word-spacing:0.176400px;}
.ws60{word-spacing:0.187200px;}
.ws2e{word-spacing:0.234000px;}
.ws53{word-spacing:0.235200px;}
.ws45{word-spacing:0.294000px;}
.wsa6{word-spacing:0.352800px;}
.ws62{word-spacing:0.374400px;}
.wsa1{word-spacing:0.411600px;}
.ws98{word-spacing:0.421200px;}
.wsb{word-spacing:0.470400px;}
.ws85{word-spacing:0.514800px;}
.ws3d{word-spacing:0.588000px;}
.ws10{word-spacing:0.646800px;}
.ws71{word-spacing:0.705600px;}
.wsab{word-spacing:0.764400px;}
.wsb1{word-spacing:0.823200px;}
.wsa3{word-spacing:0.889200px;}
.ws15{word-spacing:0.940800px;}
.ws5e{word-spacing:0.982800px;}
.ws3{word-spacing:0.999600px;}
.ws93{word-spacing:1.058400px;}
.ws2b{word-spacing:1.094400px;}
.wsb5{word-spacing:1.117200px;}
.ws8c{word-spacing:1.176000px;}
.ws9a{word-spacing:1.216800px;}
.ws9{word-spacing:1.234800px;}
.ws2a{word-spacing:1.368000px;}
.ws95{word-spacing:1.404000px;}
.wsa0{word-spacing:1.470000px;}
.wsc2{word-spacing:1.596000px;}
.ws65{word-spacing:1.646400px;}
.wsb4{word-spacing:1.731600px;}
.wsad{word-spacing:1.764000px;}
.ws57{word-spacing:1.822800px;}
.ws64{word-spacing:1.881600px;}
.ws44{word-spacing:1.940400px;}
.ws63{word-spacing:1.965600px;}
.ws12{word-spacing:2.058000px;}
.wsa5{word-spacing:2.116800px;}
.ws96{word-spacing:2.152800px;}
.ws1a{word-spacing:2.234400px;}
.ws1c{word-spacing:2.293200px;}
.wsc6{word-spacing:2.325600px;}
.ws1e{word-spacing:2.352000px;}
.ws7b{word-spacing:2.410800px;}
.ws90{word-spacing:2.469600px;}
.ws99{word-spacing:2.527200px;}
.ws7c{word-spacing:2.528400px;}
.ws5f{word-spacing:2.574000px;}
.ws73{word-spacing:2.646000px;}
.ws39{word-spacing:2.704800px;}
.ws50{word-spacing:2.763600px;}
.ws38{word-spacing:2.822400px;}
.ws1d{word-spacing:2.881200px;}
.ws2d{word-spacing:2.901600px;}
.ws32{word-spacing:2.940000px;}
.ws31{word-spacing:2.948400px;}
.ws11{word-spacing:2.998800px;}
.ws66{word-spacing:3.116400px;}
.ws33{word-spacing:3.175200px;}
.ws1f{word-spacing:3.234000px;}
.ws43{word-spacing:3.292800px;}
.ws52{word-spacing:3.351600px;}
.ws86{word-spacing:3.369600px;}
.wsaf{word-spacing:3.410400px;}
.ws68{word-spacing:3.469200px;}
.ws3f{word-spacing:3.528000px;}
.wsa9{word-spacing:3.586800px;}
.wsb8{word-spacing:3.645600px;}
.ws82{word-spacing:3.744000px;}
.wsb9{word-spacing:3.880800px;}
.ws8e{word-spacing:3.939600px;}
.wsc4{word-spacing:3.967200px;}
.ws16{word-spacing:3.998400px;}
.ws7e{word-spacing:4.057200px;}
.ws28{word-spacing:4.058400px;}
.wsa8{word-spacing:4.116000px;}
.ws14{word-spacing:4.292400px;}
.ws97{word-spacing:4.305600px;}
.ws67{word-spacing:4.351200px;}
.ws92{word-spacing:4.410000px;}
.ws5c{word-spacing:4.446000px;}
.wsa7{word-spacing:4.645200px;}
.ws9c{word-spacing:4.704000px;}
.ws30{word-spacing:4.726800px;}
.ws3e{word-spacing:4.762800px;}
.ws26{word-spacing:4.788000px;}
.ws8d{word-spacing:4.821600px;}
.ws70{word-spacing:4.880400px;}
.ws46{word-spacing:4.924800px;}
.ws7d{word-spacing:4.939200px;}
.ws48{word-spacing:4.998000px;}
.ws29{word-spacing:5.016000px;}
.ws8{word-spacing:5.056800px;}
.ws81{word-spacing:5.115600px;}
.ws6c{word-spacing:5.350800px;}
.ws74{word-spacing:5.409600px;}
.ws80{word-spacing:5.468400px;}
.wsa4{word-spacing:5.569200px;}
.ws4f{word-spacing:5.586000px;}
.ws5d{word-spacing:5.616000px;}
.ws23{word-spacing:5.644800px;}
.ws8f{word-spacing:5.762400px;}
.wsb3{word-spacing:5.850000px;}
.wsbc{word-spacing:5.997600px;}
.wsbf{word-spacing:6.115200px;}
.ws34{word-spacing:6.174000px;}
.ws9e{word-spacing:6.350400px;}
.wsf{word-spacing:6.409200px;}
.ws2f{word-spacing:6.505200px;}
.ws58{word-spacing:6.644400px;}
.ws4d{word-spacing:6.762000px;}
.ws69{word-spacing:7.173600px;}
.wsba{word-spacing:7.232400px;}
.ws79{word-spacing:7.291200px;}
.ws1b{word-spacing:7.408800px;}
.ws6a{word-spacing:7.467600px;}
.wsc3{word-spacing:7.478400px;}
.ws3a{word-spacing:7.526400px;}
.ws89{word-spacing:7.585200px;}
.ws27{word-spacing:7.615200px;}
.ws9d{word-spacing:7.702800px;}
.wsa2{word-spacing:7.938000px;}
.ws2c{word-spacing:8.049600px;}
.wsc0{word-spacing:8.173200px;}
.ws59{word-spacing:8.232000px;}
.ws8a{word-spacing:8.290800px;}
.wsbd{word-spacing:8.349600px;}
.ws3b{word-spacing:8.408400px;}
.ws7a{word-spacing:8.467200px;}
.ws54{word-spacing:8.526000px;}
.ws4e{word-spacing:8.584800px;}
.wsbb{word-spacing:8.643600px;}
.wsb7{word-spacing:8.937600px;}
.wsb0{word-spacing:9.231600px;}
.ws88{word-spacing:9.349200px;}
.ws5b{word-spacing:9.643200px;}
.wsaa{word-spacing:9.937200px;}
.ws41{word-spacing:10.054800px;}
.wsc5{word-spacing:53.032800px;}
.ws25{word-spacing:53.944800px;}
.ws19{word-spacing:1608.129600px;}
._b{margin-left:-1608.112800px;}
._c{margin-left:-9.637491px;}
._9{margin-left:-7.674000px;}
._a{margin-left:-6.645600px;}
._6{margin-left:-5.587200px;}
._8{margin-left:-4.336800px;}
._7{margin-left:-3.328680px;}
._4{margin-left:-2.280000px;}
._3{margin-left:-1.014000px;}
._2{width:1.254000px;}
._0{width:2.574000px;}
._1{width:3.623400px;}
._e{width:4.773900px;}
._5{width:10.995600px;}
._10{width:49.039800px;}
._f{width:53.032531px;}
._d{width:1034.083200px;}
.fc4{color:rgb(0,80,152);}
.fc3{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fsa{font-size:26.584800px;}
.fs6{font-size:34.280400px;}
.fs5{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs7{font-size:46.800000px;}
.fs4{font-size:58.800000px;}
.fs9{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs8{font-size:81.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:77.698800px;}
.y87{bottom:142.413900px;}
.y8a{bottom:142.857150px;}
.yd3{bottom:142.864800px;}
.y80{bottom:142.876800px;}
.ya8{bottom:142.894800px;}
.y1c{bottom:142.900800px;}
.yf6{bottom:142.918800px;}
.yba{bottom:142.936800px;}
.y10e{bottom:142.944150px;}
.y5e{bottom:142.948950px;}
.y86{bottom:158.618400px;}
.y33{bottom:158.694150px;}
.y34{bottom:158.698950px;}
.y89{bottom:159.061650px;}
.y5d{bottom:164.204100px;}
.yd2{bottom:164.620800px;}
.y7f{bottom:164.632800px;}
.ya7{bottom:164.650800px;}
.y1b{bottom:164.656800px;}
.yf5{bottom:164.674800px;}
.ye6{bottom:164.680800px;}
.yb9{bottom:164.692800px;}
.yf9{bottom:166.520850px;}
.y32{bottom:174.448950px;}
.y85{bottom:174.822900px;}
.y88{bottom:175.266150px;}
.y5c{bottom:179.958900px;}
.yf8{bottom:182.725350px;}
.yb7{bottom:186.364800px;}
.yd1{bottom:186.376800px;}
.y7e{bottom:186.388800px;}
.ya6{bottom:186.406800px;}
.y1a{bottom:186.412800px;}
.yf4{bottom:186.430800px;}
.ye5{bottom:186.436800px;}
.yb8{bottom:186.448800px;}
.y31{bottom:190.198950px;}
.y84{bottom:191.027400px;}
.yf7{bottom:198.929850px;}
.y30{bottom:205.934550px;}
.y10d{bottom:206.955150px;}
.y83{bottom:207.231900px;}
.yb6{bottom:208.120800px;}
.yd0{bottom:208.132800px;}
.y7d{bottom:208.144800px;}
.ya5{bottom:208.162800px;}
.y19{bottom:208.168800px;}
.yf3{bottom:208.186800px;}
.ye4{bottom:208.192800px;}
.y2f{bottom:221.689350px;}
.y82{bottom:223.436400px;}
.y10c{bottom:223.450950px;}
.yb5{bottom:229.876800px;}
.ycf{bottom:229.888800px;}
.y7c{bottom:229.900800px;}
.ya4{bottom:229.918800px;}
.y18{bottom:229.924800px;}
.y5b{bottom:229.930800px;}
.ye2{bottom:229.936800px;}
.yf2{bottom:229.942800px;}
.ye3{bottom:229.948800px;}
.y2e{bottom:237.444150px;}
.y81{bottom:239.640900px;}
.y10b{bottom:239.946750px;}
.y10a{bottom:239.951100px;}
.yb4{bottom:251.632800px;}
.yce{bottom:251.644800px;}
.y7b{bottom:251.656800px;}
.ya3{bottom:251.674800px;}
.y17{bottom:251.680800px;}
.y5a{bottom:251.686800px;}
.ye1{bottom:251.692800px;}
.yf1{bottom:251.698800px;}
.y109{bottom:252.650550px;}
.y2d{bottom:253.198950px;}
.yb3{bottom:273.388800px;}
.yf0{bottom:273.394800px;}
.ycd{bottom:273.400800px;}
.y7a{bottom:273.412800px;}
.ya2{bottom:273.430800px;}
.y16{bottom:273.436800px;}
.y59{bottom:273.442800px;}
.ye0{bottom:273.448800px;}
.yb2{bottom:295.144800px;}
.yef{bottom:295.150800px;}
.y56{bottom:295.156800px;}
.y79{bottom:295.168800px;}
.y2c{bottom:295.186800px;}
.y15{bottom:295.192800px;}
.y58{bottom:295.198800px;}
.y57{bottom:300.093900px;}
.yb1{bottom:316.900800px;}
.yee{bottom:316.906800px;}
.y55{bottom:316.912800px;}
.y78{bottom:316.924800px;}
.y2b{bottom:316.942800px;}
.y14{bottom:316.948800px;}
.yb0{bottom:338.656800px;}
.yed{bottom:338.662800px;}
.y54{bottom:338.668800px;}
.y77{bottom:338.680800px;}
.y13{bottom:338.692800px;}
.y2a{bottom:338.698800px;}
.y108{bottom:355.446750px;}
.y107{bottom:355.459350px;}
.y28{bottom:360.382800px;}
.yaf{bottom:360.412800px;}
.yec{bottom:360.418800px;}
.y53{bottom:360.424800px;}
.y76{bottom:360.436800px;}
.y12{bottom:360.448800px;}
.y29{bottom:365.343900px;}
.y106{bottom:371.955150px;}
.y11{bottom:382.132800px;}
.y27{bottom:382.138800px;}
.yae{bottom:382.168800px;}
.yeb{bottom:382.174800px;}
.y52{bottom:382.180800px;}
.y75{bottom:382.192800px;}
.ya1{bottom:382.198800px;}
.y105{bottom:388.450950px;}
.y10{bottom:403.888800px;}
.y26{bottom:403.894800px;}
.yad{bottom:403.924800px;}
.yea{bottom:403.930800px;}
.y51{bottom:403.936800px;}
.y74{bottom:403.948800px;}
.y104{bottom:404.946750px;}
.yf{bottom:425.644800px;}
.y25{bottom:425.650800px;}
.yac{bottom:425.680800px;}
.ye9{bottom:425.686800px;}
.y50{bottom:425.692800px;}
.y73{bottom:425.698800px;}
.ya0{bottom:447.322800px;}
.y72{bottom:447.370800px;}
.ye{bottom:447.400800px;}
.y24{bottom:447.406800px;}
.yab{bottom:447.436800px;}
.ye8{bottom:447.442800px;}
.y4f{bottom:447.448800px;}
.y9f{bottom:469.078800px;}
.y71{bottom:469.126800px;}
.ycc{bottom:469.150800px;}
.yd{bottom:469.156800px;}
.y23{bottom:469.162800px;}
.ydf{bottom:469.174800px;}
.yaa{bottom:469.192800px;}
.y4d{bottom:469.198800px;}
.y4e{bottom:474.093900px;}
.y103{bottom:480.696750px;}
.y102{bottom:480.705150px;}
.y9e{bottom:490.834800px;}
.y70{bottom:490.882800px;}
.ycb{bottom:490.906800px;}
.yc{bottom:490.912800px;}
.y22{bottom:490.918800px;}
.yde{bottom:490.930800px;}
.y4c{bottom:490.936800px;}
.ya9{bottom:490.948800px;}
.y101{bottom:497.200950px;}
.y9d{bottom:512.590800px;}
.y6f{bottom:512.638800px;}
.yca{bottom:512.662800px;}
.yb{bottom:512.668800px;}
.y21{bottom:512.674800px;}
.ydd{bottom:512.686800px;}
.y4b{bottom:512.692800px;}
.y100{bottom:513.696750px;}
.y9c{bottom:534.346800px;}
.y6e{bottom:534.394800px;}
.yc9{bottom:534.418800px;}
.ya{bottom:534.424800px;}
.y20{bottom:534.430800px;}
.ydc{bottom:534.442800px;}
.y4a{bottom:534.448800px;}
.y9b{bottom:556.102800px;}
.y6d{bottom:556.150800px;}
.yc8{bottom:556.174800px;}
.y9{bottom:556.180800px;}
.y1f{bottom:556.186800px;}
.ydb{bottom:556.198800px;}
.yc3{bottom:557.475750px;}
.yc2{bottom:573.680250px;}
.y9a{bottom:577.858800px;}
.y6c{bottom:577.906800px;}
.yc7{bottom:577.930800px;}
.y8{bottom:577.936800px;}
.y1e{bottom:577.942800px;}
.y49{bottom:577.948800px;}
.yc1{bottom:589.884750px;}
.y99{bottom:599.614800px;}
.y6b{bottom:599.662800px;}
.yc6{bottom:599.686800px;}
.y7{bottom:599.692800px;}
.y1d{bottom:599.698800px;}
.yc0{bottom:606.089250px;}
.y98{bottom:621.370800px;}
.y6a{bottom:621.418800px;}
.yc5{bottom:621.442800px;}
.y6{bottom:621.448800px;}
.ye7{bottom:622.284750px;}
.ybf{bottom:622.293750px;}
.ybd{bottom:638.489250px;}
.ybe{bottom:638.498250px;}
.y97{bottom:643.126800px;}
.y48{bottom:643.150800px;}
.y69{bottom:643.174800px;}
.yc4{bottom:643.198800px;}
.ybc{bottom:654.693750px;}
.yff{bottom:664.870800px;}
.y96{bottom:664.882800px;}
.y47{bottom:664.906800px;}
.y3a{bottom:664.926450px;}
.y68{bottom:664.930800px;}
.ybb{bottom:670.898250px;}
.y39{bottom:681.130950px;}
.yfe{bottom:686.626800px;}
.y95{bottom:686.638800px;}
.y46{bottom:686.662800px;}
.y67{bottom:686.686800px;}
.y38{bottom:697.335450px;}
.yfd{bottom:708.382800px;}
.y94{bottom:708.394800px;}
.y45{bottom:708.418800px;}
.y66{bottom:708.442800px;}
.yda{bottom:709.332750px;}
.y37{bottom:713.539950px;}
.yd9{bottom:725.537250px;}
.y36{bottom:729.744450px;}
.yfc{bottom:730.138800px;}
.y93{bottom:730.150800px;}
.y44{bottom:730.174800px;}
.y65{bottom:730.198800px;}
.yd8{bottom:741.741750px;}
.y35{bottom:745.948950px;}
.yfb{bottom:751.894800px;}
.y92{bottom:751.906800px;}
.y43{bottom:751.930800px;}
.y64{bottom:751.942800px;}
.yd7{bottom:757.946250px;}
.y63{bottom:773.650800px;}
.y91{bottom:773.662800px;}
.y42{bottom:773.686800px;}
.y5{bottom:773.698800px;}
.yd6{bottom:774.150750px;}
.yd5{bottom:790.355250px;}
.y62{bottom:795.406800px;}
.y90{bottom:795.418800px;}
.y41{bottom:795.442800px;}
.yd4{bottom:806.559750px;}
.y61{bottom:817.162800px;}
.y8f{bottom:817.174800px;}
.y3f{bottom:817.186800px;}
.y40{bottom:817.198800px;}
.y4{bottom:818.698800px;}
.y60{bottom:838.918800px;}
.y8e{bottom:838.930800px;}
.y3e{bottom:838.942800px;}
.y5f{bottom:860.674800px;}
.y8d{bottom:860.686800px;}
.y3{bottom:860.698800px;}
.y3d{bottom:882.430800px;}
.y8c{bottom:882.442800px;}
.y3c{bottom:904.186800px;}
.y8b{bottom:904.198800px;}
.y3b{bottom:925.942800px;}
.y2{bottom:947.698800px;}
.yfa{bottom:952.593900px;}
.h7{height:24.819010px;}
.hc{height:33.014400px;}
.hd{height:33.470400px;}
.ha{height:34.351200px;}
.h2{height:36.799200px;}
.h8{height:37.767600px;}
.hb{height:44.040000px;}
.h3{height:47.718000px;}
.h6{height:49.921200px;}
.he{height:51.984600px;}
.h9{height:58.644000px;}
.h5{height:67.788000px;}
.h4{height:86.880000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x13{left:125.761050px;}
.x3{left:131.815560px;}
.x7{left:137.727000px;}
.x21{left:142.714800px;}
.x2{left:144.567000px;}
.x1d{left:148.501950px;}
.xb{left:203.539350px;}
.xc{left:245.014350px;}
.x1e{left:283.429500px;}
.x1f{left:287.785650px;}
.x17{left:295.927200px;}
.x11{left:316.708050px;}
.x14{left:320.755200px;}
.xf{left:344.457000px;}
.x10{left:348.992250px;}
.x12{left:358.902750px;}
.x15{left:362.758650px;}
.xa{left:429.448800px;}
.x8{left:445.019100px;}
.x18{left:452.964600px;}
.xd{left:473.544000px;}
.xe{left:478.125450px;}
.x19{left:495.709050px;}
.x20{left:521.675100px;}
.x9{left:553.526100px;}
.x16{left:575.862150px;}
.x1b{left:594.162450px;}
.x1c{left:598.605000px;}
.x1a{left:658.466700px;}
.x4{left:679.489800px;}
.x5{left:692.880150px;}
.x6{left:697.322850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.498133pt;}
.ls9{letter-spacing:-0.374400pt;}
.ls8{letter-spacing:-0.365867pt;}
.lsa{letter-spacing:-0.261333pt;}
.ls5{letter-spacing:-0.208000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.173333pt;}
.ls7{letter-spacing:3.910400pt;}
.lsb{letter-spacing:5.200000pt;}
.ls4{letter-spacing:6.947200pt;}
.ls6{letter-spacing:46.359596pt;}
.ls2{letter-spacing:1086.164800pt;}
.ls0{letter-spacing:2034.417067pt;}
.ws0{word-spacing:-21.333333pt;}
.ws9b{word-spacing:-15.209600pt;}
.ws17{word-spacing:-8.320000pt;}
.ws18{word-spacing:-8.112000pt;}
.ws1{word-spacing:-8.106667pt;}
.ws8b{word-spacing:-3.083733pt;}
.wsbe{word-spacing:-3.031467pt;}
.ws76{word-spacing:-2.926933pt;}
.ws42{word-spacing:-2.874667pt;}
.ws22{word-spacing:-2.822400pt;}
.ws9f{word-spacing:-2.770133pt;}
.ws40{word-spacing:-2.561067pt;}
.wsa{word-spacing:-2.508800pt;}
.ws36{word-spacing:-2.456533pt;}
.ws6b{word-spacing:-2.404267pt;}
.ws55{word-spacing:-2.352000pt;}
.ws4a{word-spacing:-2.299733pt;}
.wsd{word-spacing:-2.247467pt;}
.ws77{word-spacing:-2.142933pt;}
.wsac{word-spacing:-2.090667pt;}
.ws7{word-spacing:-1.933867pt;}
.ws37{word-spacing:-1.829333pt;}
.wsc{word-spacing:-1.777067pt;}
.ws4{word-spacing:-1.724800pt;}
.ws24{word-spacing:-1.620267pt;}
.ws51{word-spacing:-1.568000pt;}
.ws91{word-spacing:-1.515733pt;}
.ws6{word-spacing:-1.463467pt;}
.wsb6{word-spacing:-1.411200pt;}
.ws4b{word-spacing:-1.358933pt;}
.ws5{word-spacing:-1.306667pt;}
.ws56{word-spacing:-1.202133pt;}
.wse{word-spacing:-1.097600pt;}
.ws84{word-spacing:-1.081600pt;}
.wsae{word-spacing:-1.045333pt;}
.ws87{word-spacing:-1.040000pt;}
.ws6d{word-spacing:-0.993067pt;}
.ws21{word-spacing:-0.888533pt;}
.ws6f{word-spacing:-0.784000pt;}
.ws6e{word-spacing:-0.731733pt;}
.wsb2{word-spacing:-0.679467pt;}
.ws7f{word-spacing:-0.627200pt;}
.ws75{word-spacing:-0.574933pt;}
.ws13{word-spacing:-0.470400pt;}
.wsc1{word-spacing:-0.445867pt;}
.ws20{word-spacing:-0.418133pt;}
.ws61{word-spacing:-0.374400pt;}
.ws49{word-spacing:-0.365867pt;}
.ws94{word-spacing:-0.332800pt;}
.ws47{word-spacing:-0.313600pt;}
.ws83{word-spacing:-0.291200pt;}
.ws5a{word-spacing:-0.261333pt;}
.ws35{word-spacing:-0.209067pt;}
.ws3c{word-spacing:-0.104533pt;}
.ws2{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.052267pt;}
.ws72{word-spacing:0.104533pt;}
.ws78{word-spacing:0.156800pt;}
.ws60{word-spacing:0.166400pt;}
.ws2e{word-spacing:0.208000pt;}
.ws53{word-spacing:0.209067pt;}
.ws45{word-spacing:0.261333pt;}
.wsa6{word-spacing:0.313600pt;}
.ws62{word-spacing:0.332800pt;}
.wsa1{word-spacing:0.365867pt;}
.ws98{word-spacing:0.374400pt;}
.wsb{word-spacing:0.418133pt;}
.ws85{word-spacing:0.457600pt;}
.ws3d{word-spacing:0.522667pt;}
.ws10{word-spacing:0.574933pt;}
.ws71{word-spacing:0.627200pt;}
.wsab{word-spacing:0.679467pt;}
.wsb1{word-spacing:0.731733pt;}
.wsa3{word-spacing:0.790400pt;}
.ws15{word-spacing:0.836267pt;}
.ws5e{word-spacing:0.873600pt;}
.ws3{word-spacing:0.888533pt;}
.ws93{word-spacing:0.940800pt;}
.ws2b{word-spacing:0.972800pt;}
.wsb5{word-spacing:0.993067pt;}
.ws8c{word-spacing:1.045333pt;}
.ws9a{word-spacing:1.081600pt;}
.ws9{word-spacing:1.097600pt;}
.ws2a{word-spacing:1.216000pt;}
.ws95{word-spacing:1.248000pt;}
.wsa0{word-spacing:1.306667pt;}
.wsc2{word-spacing:1.418667pt;}
.ws65{word-spacing:1.463467pt;}
.wsb4{word-spacing:1.539200pt;}
.wsad{word-spacing:1.568000pt;}
.ws57{word-spacing:1.620267pt;}
.ws64{word-spacing:1.672533pt;}
.ws44{word-spacing:1.724800pt;}
.ws63{word-spacing:1.747200pt;}
.ws12{word-spacing:1.829333pt;}
.wsa5{word-spacing:1.881600pt;}
.ws96{word-spacing:1.913600pt;}
.ws1a{word-spacing:1.986133pt;}
.ws1c{word-spacing:2.038400pt;}
.wsc6{word-spacing:2.067200pt;}
.ws1e{word-spacing:2.090667pt;}
.ws7b{word-spacing:2.142933pt;}
.ws90{word-spacing:2.195200pt;}
.ws99{word-spacing:2.246400pt;}
.ws7c{word-spacing:2.247467pt;}
.ws5f{word-spacing:2.288000pt;}
.ws73{word-spacing:2.352000pt;}
.ws39{word-spacing:2.404267pt;}
.ws50{word-spacing:2.456533pt;}
.ws38{word-spacing:2.508800pt;}
.ws1d{word-spacing:2.561067pt;}
.ws2d{word-spacing:2.579200pt;}
.ws32{word-spacing:2.613333pt;}
.ws31{word-spacing:2.620800pt;}
.ws11{word-spacing:2.665600pt;}
.ws66{word-spacing:2.770133pt;}
.ws33{word-spacing:2.822400pt;}
.ws1f{word-spacing:2.874667pt;}
.ws43{word-spacing:2.926933pt;}
.ws52{word-spacing:2.979200pt;}
.ws86{word-spacing:2.995200pt;}
.wsaf{word-spacing:3.031467pt;}
.ws68{word-spacing:3.083733pt;}
.ws3f{word-spacing:3.136000pt;}
.wsa9{word-spacing:3.188267pt;}
.wsb8{word-spacing:3.240533pt;}
.ws82{word-spacing:3.328000pt;}
.wsb9{word-spacing:3.449600pt;}
.ws8e{word-spacing:3.501867pt;}
.wsc4{word-spacing:3.526400pt;}
.ws16{word-spacing:3.554133pt;}
.ws7e{word-spacing:3.606400pt;}
.ws28{word-spacing:3.607467pt;}
.wsa8{word-spacing:3.658667pt;}
.ws14{word-spacing:3.815467pt;}
.ws97{word-spacing:3.827200pt;}
.ws67{word-spacing:3.867733pt;}
.ws92{word-spacing:3.920000pt;}
.ws5c{word-spacing:3.952000pt;}
.wsa7{word-spacing:4.129067pt;}
.ws9c{word-spacing:4.181333pt;}
.ws30{word-spacing:4.201600pt;}
.ws3e{word-spacing:4.233600pt;}
.ws26{word-spacing:4.256000pt;}
.ws8d{word-spacing:4.285867pt;}
.ws70{word-spacing:4.338133pt;}
.ws46{word-spacing:4.377600pt;}
.ws7d{word-spacing:4.390400pt;}
.ws48{word-spacing:4.442667pt;}
.ws29{word-spacing:4.458667pt;}
.ws8{word-spacing:4.494933pt;}
.ws81{word-spacing:4.547200pt;}
.ws6c{word-spacing:4.756267pt;}
.ws74{word-spacing:4.808533pt;}
.ws80{word-spacing:4.860800pt;}
.wsa4{word-spacing:4.950400pt;}
.ws4f{word-spacing:4.965333pt;}
.ws5d{word-spacing:4.992000pt;}
.ws23{word-spacing:5.017600pt;}
.ws8f{word-spacing:5.122133pt;}
.wsb3{word-spacing:5.200000pt;}
.wsbc{word-spacing:5.331200pt;}
.wsbf{word-spacing:5.435733pt;}
.ws34{word-spacing:5.488000pt;}
.ws9e{word-spacing:5.644800pt;}
.wsf{word-spacing:5.697067pt;}
.ws2f{word-spacing:5.782400pt;}
.ws58{word-spacing:5.906133pt;}
.ws4d{word-spacing:6.010667pt;}
.ws69{word-spacing:6.376533pt;}
.wsba{word-spacing:6.428800pt;}
.ws79{word-spacing:6.481067pt;}
.ws1b{word-spacing:6.585600pt;}
.ws6a{word-spacing:6.637867pt;}
.wsc3{word-spacing:6.647467pt;}
.ws3a{word-spacing:6.690133pt;}
.ws89{word-spacing:6.742400pt;}
.ws27{word-spacing:6.769067pt;}
.ws9d{word-spacing:6.846933pt;}
.wsa2{word-spacing:7.056000pt;}
.ws2c{word-spacing:7.155200pt;}
.wsc0{word-spacing:7.265067pt;}
.ws59{word-spacing:7.317333pt;}
.ws8a{word-spacing:7.369600pt;}
.wsbd{word-spacing:7.421867pt;}
.ws3b{word-spacing:7.474133pt;}
.ws7a{word-spacing:7.526400pt;}
.ws54{word-spacing:7.578667pt;}
.ws4e{word-spacing:7.630933pt;}
.wsbb{word-spacing:7.683200pt;}
.wsb7{word-spacing:7.944533pt;}
.wsb0{word-spacing:8.205867pt;}
.ws88{word-spacing:8.310400pt;}
.ws5b{word-spacing:8.571733pt;}
.wsaa{word-spacing:8.833067pt;}
.ws41{word-spacing:8.937600pt;}
.wsc5{word-spacing:47.140267pt;}
.ws25{word-spacing:47.950933pt;}
.ws19{word-spacing:1429.448533pt;}
._b{margin-left:-1429.433600pt;}
._c{margin-left:-8.566659pt;}
._9{margin-left:-6.821333pt;}
._a{margin-left:-5.907200pt;}
._6{margin-left:-4.966400pt;}
._8{margin-left:-3.854933pt;}
._7{margin-left:-2.958827pt;}
._4{margin-left:-2.026667pt;}
._3{margin-left:-0.901333pt;}
._2{width:1.114667pt;}
._0{width:2.288000pt;}
._1{width:3.220800pt;}
._e{width:4.243467pt;}
._5{width:9.773867pt;}
._10{width:43.590933pt;}
._f{width:47.140027pt;}
._d{width:919.185067pt;}
.fsa{font-size:23.630933pt;}
.fs6{font-size:30.471467pt;}
.fs5{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs7{font-size:41.600000pt;}
.fs4{font-size:52.266667pt;}
.fs9{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs8{font-size:72.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:69.065600pt;}
.y87{bottom:126.590133pt;}
.y8a{bottom:126.984133pt;}
.yd3{bottom:126.990933pt;}
.y80{bottom:127.001600pt;}
.ya8{bottom:127.017600pt;}
.y1c{bottom:127.022933pt;}
.yf6{bottom:127.038933pt;}
.yba{bottom:127.054933pt;}
.y10e{bottom:127.061467pt;}
.y5e{bottom:127.065733pt;}
.y86{bottom:140.994133pt;}
.y33{bottom:141.061467pt;}
.y34{bottom:141.065733pt;}
.y89{bottom:141.388133pt;}
.y5d{bottom:145.959200pt;}
.yd2{bottom:146.329600pt;}
.y7f{bottom:146.340267pt;}
.ya7{bottom:146.356267pt;}
.y1b{bottom:146.361600pt;}
.yf5{bottom:146.377600pt;}
.ye6{bottom:146.382933pt;}
.yb9{bottom:146.393600pt;}
.yf9{bottom:148.018533pt;}
.y32{bottom:155.065733pt;}
.y85{bottom:155.398133pt;}
.y88{bottom:155.792133pt;}
.y5c{bottom:159.963467pt;}
.yf8{bottom:162.422533pt;}
.yb7{bottom:165.657600pt;}
.yd1{bottom:165.668267pt;}
.y7e{bottom:165.678933pt;}
.ya6{bottom:165.694933pt;}
.y1a{bottom:165.700267pt;}
.yf4{bottom:165.716267pt;}
.ye5{bottom:165.721600pt;}
.yb8{bottom:165.732267pt;}
.y31{bottom:169.065733pt;}
.y84{bottom:169.802133pt;}
.yf7{bottom:176.826533pt;}
.y30{bottom:183.052933pt;}
.y10d{bottom:183.960133pt;}
.y83{bottom:184.206133pt;}
.yb6{bottom:184.996267pt;}
.yd0{bottom:185.006933pt;}
.y7d{bottom:185.017600pt;}
.ya5{bottom:185.033600pt;}
.y19{bottom:185.038933pt;}
.yf3{bottom:185.054933pt;}
.ye4{bottom:185.060267pt;}
.y2f{bottom:197.057200pt;}
.y82{bottom:198.610133pt;}
.y10c{bottom:198.623067pt;}
.yb5{bottom:204.334933pt;}
.ycf{bottom:204.345600pt;}
.y7c{bottom:204.356267pt;}
.ya4{bottom:204.372267pt;}
.y18{bottom:204.377600pt;}
.y5b{bottom:204.382933pt;}
.ye2{bottom:204.388267pt;}
.yf2{bottom:204.393600pt;}
.ye3{bottom:204.398933pt;}
.y2e{bottom:211.061467pt;}
.y81{bottom:213.014133pt;}
.y10b{bottom:213.286000pt;}
.y10a{bottom:213.289867pt;}
.yb4{bottom:223.673600pt;}
.yce{bottom:223.684267pt;}
.y7b{bottom:223.694933pt;}
.ya3{bottom:223.710933pt;}
.y17{bottom:223.716267pt;}
.y5a{bottom:223.721600pt;}
.ye1{bottom:223.726933pt;}
.yf1{bottom:223.732267pt;}
.y109{bottom:224.578267pt;}
.y2d{bottom:225.065733pt;}
.yb3{bottom:243.012267pt;}
.yf0{bottom:243.017600pt;}
.ycd{bottom:243.022933pt;}
.y7a{bottom:243.033600pt;}
.ya2{bottom:243.049600pt;}
.y16{bottom:243.054933pt;}
.y59{bottom:243.060267pt;}
.ye0{bottom:243.065600pt;}
.yb2{bottom:262.350933pt;}
.yef{bottom:262.356267pt;}
.y56{bottom:262.361600pt;}
.y79{bottom:262.372267pt;}
.y2c{bottom:262.388267pt;}
.y15{bottom:262.393600pt;}
.y58{bottom:262.398933pt;}
.y57{bottom:266.750133pt;}
.yb1{bottom:281.689600pt;}
.yee{bottom:281.694933pt;}
.y55{bottom:281.700267pt;}
.y78{bottom:281.710933pt;}
.y2b{bottom:281.726933pt;}
.y14{bottom:281.732267pt;}
.yb0{bottom:301.028267pt;}
.yed{bottom:301.033600pt;}
.y54{bottom:301.038933pt;}
.y77{bottom:301.049600pt;}
.y13{bottom:301.060267pt;}
.y2a{bottom:301.065600pt;}
.y108{bottom:315.952667pt;}
.y107{bottom:315.963867pt;}
.y28{bottom:320.340267pt;}
.yaf{bottom:320.366933pt;}
.yec{bottom:320.372267pt;}
.y53{bottom:320.377600pt;}
.y76{bottom:320.388267pt;}
.y12{bottom:320.398933pt;}
.y29{bottom:324.750133pt;}
.y106{bottom:330.626800pt;}
.y11{bottom:339.673600pt;}
.y27{bottom:339.678933pt;}
.yae{bottom:339.705600pt;}
.yeb{bottom:339.710933pt;}
.y52{bottom:339.716267pt;}
.y75{bottom:339.726933pt;}
.ya1{bottom:339.732267pt;}
.y105{bottom:345.289733pt;}
.y10{bottom:359.012267pt;}
.y26{bottom:359.017600pt;}
.yad{bottom:359.044267pt;}
.yea{bottom:359.049600pt;}
.y51{bottom:359.054933pt;}
.y74{bottom:359.065600pt;}
.y104{bottom:359.952667pt;}
.yf{bottom:378.350933pt;}
.y25{bottom:378.356267pt;}
.yac{bottom:378.382933pt;}
.ye9{bottom:378.388267pt;}
.y50{bottom:378.393600pt;}
.y73{bottom:378.398933pt;}
.ya0{bottom:397.620267pt;}
.y72{bottom:397.662933pt;}
.ye{bottom:397.689600pt;}
.y24{bottom:397.694933pt;}
.yab{bottom:397.721600pt;}
.ye8{bottom:397.726933pt;}
.y4f{bottom:397.732267pt;}
.y9f{bottom:416.958933pt;}
.y71{bottom:417.001600pt;}
.ycc{bottom:417.022933pt;}
.yd{bottom:417.028267pt;}
.y23{bottom:417.033600pt;}
.ydf{bottom:417.044267pt;}
.yaa{bottom:417.060267pt;}
.y4d{bottom:417.065600pt;}
.y4e{bottom:421.416800pt;}
.y103{bottom:427.286000pt;}
.y102{bottom:427.293467pt;}
.y9e{bottom:436.297600pt;}
.y70{bottom:436.340267pt;}
.ycb{bottom:436.361600pt;}
.yc{bottom:436.366933pt;}
.y22{bottom:436.372267pt;}
.yde{bottom:436.382933pt;}
.y4c{bottom:436.388267pt;}
.ya9{bottom:436.398933pt;}
.y101{bottom:441.956400pt;}
.y9d{bottom:455.636267pt;}
.y6f{bottom:455.678933pt;}
.yca{bottom:455.700267pt;}
.yb{bottom:455.705600pt;}
.y21{bottom:455.710933pt;}
.ydd{bottom:455.721600pt;}
.y4b{bottom:455.726933pt;}
.y100{bottom:456.619333pt;}
.y9c{bottom:474.974933pt;}
.y6e{bottom:475.017600pt;}
.yc9{bottom:475.038933pt;}
.ya{bottom:475.044267pt;}
.y20{bottom:475.049600pt;}
.ydc{bottom:475.060267pt;}
.y4a{bottom:475.065600pt;}
.y9b{bottom:494.313600pt;}
.y6d{bottom:494.356267pt;}
.yc8{bottom:494.377600pt;}
.y9{bottom:494.382933pt;}
.y1f{bottom:494.388267pt;}
.ydb{bottom:494.398933pt;}
.yc3{bottom:495.534000pt;}
.yc2{bottom:509.938000pt;}
.y9a{bottom:513.652267pt;}
.y6c{bottom:513.694933pt;}
.yc7{bottom:513.716267pt;}
.y8{bottom:513.721600pt;}
.y1e{bottom:513.726933pt;}
.y49{bottom:513.732267pt;}
.yc1{bottom:524.342000pt;}
.y99{bottom:532.990933pt;}
.y6b{bottom:533.033600pt;}
.yc6{bottom:533.054933pt;}
.y7{bottom:533.060267pt;}
.y1d{bottom:533.065600pt;}
.yc0{bottom:538.746000pt;}
.y98{bottom:552.329600pt;}
.y6a{bottom:552.372267pt;}
.yc5{bottom:552.393600pt;}
.y6{bottom:552.398933pt;}
.ye7{bottom:553.142000pt;}
.ybf{bottom:553.150000pt;}
.ybd{bottom:567.546000pt;}
.ybe{bottom:567.554000pt;}
.y97{bottom:571.668267pt;}
.y48{bottom:571.689600pt;}
.y69{bottom:571.710933pt;}
.yc4{bottom:571.732267pt;}
.ybc{bottom:581.950000pt;}
.yff{bottom:590.996267pt;}
.y96{bottom:591.006933pt;}
.y47{bottom:591.028267pt;}
.y3a{bottom:591.045733pt;}
.y68{bottom:591.049600pt;}
.ybb{bottom:596.354000pt;}
.y39{bottom:605.449733pt;}
.yfe{bottom:610.334933pt;}
.y95{bottom:610.345600pt;}
.y46{bottom:610.366933pt;}
.y67{bottom:610.388267pt;}
.y38{bottom:619.853733pt;}
.yfd{bottom:629.673600pt;}
.y94{bottom:629.684267pt;}
.y45{bottom:629.705600pt;}
.y66{bottom:629.726933pt;}
.yda{bottom:630.518000pt;}
.y37{bottom:634.257733pt;}
.yd9{bottom:644.922000pt;}
.y36{bottom:648.661733pt;}
.yfc{bottom:649.012267pt;}
.y93{bottom:649.022933pt;}
.y44{bottom:649.044267pt;}
.y65{bottom:649.065600pt;}
.yd8{bottom:659.326000pt;}
.y35{bottom:663.065733pt;}
.yfb{bottom:668.350933pt;}
.y92{bottom:668.361600pt;}
.y43{bottom:668.382933pt;}
.y64{bottom:668.393600pt;}
.yd7{bottom:673.730000pt;}
.y63{bottom:687.689600pt;}
.y91{bottom:687.700267pt;}
.y42{bottom:687.721600pt;}
.y5{bottom:687.732267pt;}
.yd6{bottom:688.134000pt;}
.yd5{bottom:702.538000pt;}
.y62{bottom:707.028267pt;}
.y90{bottom:707.038933pt;}
.y41{bottom:707.060267pt;}
.yd4{bottom:716.942000pt;}
.y61{bottom:726.366933pt;}
.y8f{bottom:726.377600pt;}
.y3f{bottom:726.388267pt;}
.y40{bottom:726.398933pt;}
.y4{bottom:727.732267pt;}
.y60{bottom:745.705600pt;}
.y8e{bottom:745.716267pt;}
.y3e{bottom:745.726933pt;}
.y5f{bottom:765.044267pt;}
.y8d{bottom:765.054933pt;}
.y3{bottom:765.065600pt;}
.y3d{bottom:784.382933pt;}
.y8c{bottom:784.393600pt;}
.y3c{bottom:803.721600pt;}
.y8b{bottom:803.732267pt;}
.y3b{bottom:823.060267pt;}
.y2{bottom:842.398933pt;}
.yfa{bottom:846.750133pt;}
.h7{height:22.061342pt;}
.hc{height:29.346133pt;}
.hd{height:29.751467pt;}
.ha{height:30.534400pt;}
.h2{height:32.710400pt;}
.h8{height:33.571200pt;}
.hb{height:39.146667pt;}
.h3{height:42.416000pt;}
.h6{height:44.374400pt;}
.he{height:46.208533pt;}
.h9{height:52.128000pt;}
.h5{height:60.256000pt;}
.h4{height:77.226667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x13{left:111.787600pt;}
.x3{left:117.169387pt;}
.x7{left:122.424000pt;}
.x21{left:126.857600pt;}
.x2{left:128.504000pt;}
.x1d{left:132.001733pt;}
.xb{left:180.923867pt;}
.xc{left:217.790533pt;}
.x1e{left:251.937333pt;}
.x1f{left:255.809467pt;}
.x17{left:263.046400pt;}
.x11{left:281.518267pt;}
.x14{left:285.115733pt;}
.xf{left:306.184000pt;}
.x10{left:310.215333pt;}
.x12{left:319.024667pt;}
.x15{left:322.452133pt;}
.xa{left:381.732267pt;}
.x8{left:395.572533pt;}
.x18{left:402.635200pt;}
.xd{left:420.928000pt;}
.xe{left:425.000400pt;}
.x19{left:440.630267pt;}
.x20{left:463.711200pt;}
.x9{left:492.023200pt;}
.x16{left:511.877467pt;}
.x1b{left:528.144400pt;}
.x1c{left:532.093333pt;}
.x1a{left:585.303733pt;}
.x4{left:603.990933pt;}
.x5{left:615.893467pt;}
.x6{left:619.842533pt;}
}




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