
    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_58e3bb33727cdc0be343cf9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.177667;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_6846577e3d0ee2016645c363.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994000;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_0b0a74d8dbf6daa3d0f2a4a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.122000;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_23fb6b829dc330c51746be0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_59408529950e9a3f654f158d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_23fb6b829dc330c51746be0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_9cc4b884ddab088655c1cc18.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097000;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_3bd9bd89dad9e91dc41b3945.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_ef47171fde9b64f3cd0e81bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_445bc26a9647bfd9d6023ecd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.950000;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_59408529950e9a3f654f158d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_acea53b95b29c5876ca566ab.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.177667;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_07331eb445827de1b7595a25.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.015625;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_4cdbfb9ef1c12ea5ae13cb7b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.024902;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_c779e38e47f987492b8c50b9.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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;}
.m1{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);}
.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);}
.m2{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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.051600px;}
.lse{letter-spacing:-0.967500px;}
.lsf{letter-spacing:-0.838500px;}
.lsb{letter-spacing:-0.645000px;}
.lsc{letter-spacing:-0.580500px;}
.ls26{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.322500px;}
.ls18{letter-spacing:-0.193500px;}
.ls6{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.006600px;}
.ls2a{letter-spacing:0.008400px;}
.ls25{letter-spacing:0.013200px;}
.lsa{letter-spacing:0.032250px;}
.ls1b{letter-spacing:0.064500px;}
.ls9{letter-spacing:0.129000px;}
.ls1f{letter-spacing:0.162000px;}
.ls1d{letter-spacing:0.193500px;}
.ls4{letter-spacing:0.210000px;}
.ls17{letter-spacing:0.225750px;}
.ls7{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.258000px;}
.ls11{letter-spacing:0.322500px;}
.ls16{letter-spacing:0.451500px;}
.ls22{letter-spacing:0.475200px;}
.ls1{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.516000px;}
.ls24{letter-spacing:0.546000px;}
.ls1c{letter-spacing:0.580500px;}
.ls14{letter-spacing:0.598153px;}
.ls3{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.645000px;}
.ls1a{letter-spacing:0.709500px;}
.ls2{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.838500px;}
.ls13{letter-spacing:0.967500px;}
.ls21{letter-spacing:1.026000px;}
.ls15{letter-spacing:1.032000px;}
.ls20{letter-spacing:1.620000px;}
.ls29{letter-spacing:1.635000px;}
.ls2b{letter-spacing:2.053800px;}
.ls2c{letter-spacing:2.436000px;}
.ls28{letter-spacing:5.688000px;}
.ls23{letter-spacing:6.154800px;}
.ls5{letter-spacing:9.990000px;}
.ls12{letter-spacing:1459.270800px;}
.ls0{letter-spacing:2130.501600px;}
.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;}
}
.ws6e{word-spacing:-12.312000px;}
.ws0{word-spacing:-10.032000px;}
.ws14{word-spacing:-9.552000px;}
.ws32{word-spacing:-8.955000px;}
.ws59{word-spacing:-8.618400px;}
.ws33{word-spacing:-6.264918px;}
.ws43{word-spacing:-0.967500px;}
.wsa{word-spacing:-0.720000px;}
.ws5c{word-spacing:-0.645000px;}
.ws4{word-spacing:-0.480000px;}
.ws25{word-spacing:-0.258000px;}
.wsc{word-spacing:-0.240000px;}
.ws5e{word-spacing:-0.162000px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.042000px;}
.ws6{word-spacing:0.096000px;}
.ws29{word-spacing:0.193500px;}
.ws16{word-spacing:0.322500px;}
.ws63{word-spacing:0.378000px;}
.ws2c{word-spacing:0.387000px;}
.ws23{word-spacing:0.451500px;}
.ws68{word-spacing:0.540000px;}
.ws28{word-spacing:0.580500px;}
.ws75{word-spacing:0.588000px;}
.ws4f{word-spacing:0.645000px;}
.ws3c{word-spacing:0.774000px;}
.ws57{word-spacing:0.838500px;}
.wsf{word-spacing:0.864000px;}
.ws17{word-spacing:0.903000px;}
.ws73{word-spacing:0.924000px;}
.ws21{word-spacing:0.967500px;}
.ws35{word-spacing:1.032000px;}
.ws9{word-spacing:1.056000px;}
.ws50{word-spacing:1.161000px;}
.ws27{word-spacing:1.225500px;}
.ws34{word-spacing:1.290000px;}
.ws61{word-spacing:1.350000px;}
.ws56{word-spacing:1.354500px;}
.ws71{word-spacing:1.470000px;}
.ws5{word-spacing:1.488000px;}
.ws1d{word-spacing:1.548000px;}
.ws6f{word-spacing:1.722000px;}
.ws64{word-spacing:1.782000px;}
.ws2a{word-spacing:1.870500px;}
.ws10{word-spacing:1.968000px;}
.ws76{word-spacing:1.974000px;}
.ws6c{word-spacing:2.016000px;}
.ws62{word-spacing:2.052000px;}
.ws3d{word-spacing:2.064000px;}
.ws3e{word-spacing:2.128500px;}
.wse{word-spacing:2.160000px;}
.ws11{word-spacing:2.208000px;}
.ws55{word-spacing:2.322000px;}
.ws30{word-spacing:2.386500px;}
.ws53{word-spacing:2.451000px;}
.ws67{word-spacing:2.484000px;}
.ws18{word-spacing:2.515500px;}
.ws2e{word-spacing:2.580000px;}
.wsd{word-spacing:2.592000px;}
.ws78{word-spacing:2.604000px;}
.ws36{word-spacing:2.644500px;}
.ws54{word-spacing:2.709000px;}
.ws44{word-spacing:2.773500px;}
.ws5b{word-spacing:2.838000px;}
.ws52{word-spacing:2.902500px;}
.ws6d{word-spacing:2.940000px;}
.ws49{word-spacing:2.967000px;}
.ws4c{word-spacing:3.031500px;}
.ws15{word-spacing:3.096000px;}
.ws4a{word-spacing:3.132000px;}
.ws7a{word-spacing:3.192000px;}
.ws2f{word-spacing:3.354000px;}
.ws38{word-spacing:3.418500px;}
.ws3f{word-spacing:3.547500px;}
.ws7d{word-spacing:3.570000px;}
.ws60{word-spacing:3.672000px;}
.ws47{word-spacing:3.676500px;}
.ws22{word-spacing:3.741000px;}
.ws8{word-spacing:3.744000px;}
.ws6b{word-spacing:3.780000px;}
.ws4b{word-spacing:3.805500px;}
.ws69{word-spacing:3.888000px;}
.ws7f{word-spacing:3.906000px;}
.ws1c{word-spacing:3.934500px;}
.ws51{word-spacing:3.999000px;}
.ws58{word-spacing:4.063500px;}
.ws7e{word-spacing:4.074000px;}
.ws77{word-spacing:4.116000px;}
.ws40{word-spacing:4.192500px;}
.ws65{word-spacing:4.320000px;}
.ws31{word-spacing:4.386000px;}
.ws7{word-spacing:4.464000px;}
.ws70{word-spacing:4.494000px;}
.ws3a{word-spacing:4.515000px;}
.ws2d{word-spacing:4.579500px;}
.ws4d{word-spacing:4.644000px;}
.ws13{word-spacing:4.662000px;}
.ws5d{word-spacing:4.698000px;}
.wsb{word-spacing:4.752000px;}
.ws4e{word-spacing:4.773000px;}
.ws72{word-spacing:4.830000px;}
.ws46{word-spacing:4.837500px;}
.ws26{word-spacing:4.902000px;}
.ws37{word-spacing:4.966500px;}
.ws24{word-spacing:5.031000px;}
.ws1a{word-spacing:5.289000px;}
.ws66{word-spacing:5.346000px;}
.ws1f{word-spacing:5.353500px;}
.ws5f{word-spacing:5.400000px;}
.ws1b{word-spacing:5.418000px;}
.ws41{word-spacing:5.611500px;}
.ws7c{word-spacing:5.670000px;}
.ws48{word-spacing:5.676000px;}
.ws3b{word-spacing:5.740500px;}
.ws79{word-spacing:5.796000px;}
.ws20{word-spacing:5.805000px;}
.ws2b{word-spacing:5.869500px;}
.ws39{word-spacing:6.063000px;}
.ws5a{word-spacing:6.127500px;}
.ws42{word-spacing:6.256500px;}
.ws45{word-spacing:6.321000px;}
.ws1e{word-spacing:6.385500px;}
.ws19{word-spacing:6.450000px;}
.ws74{word-spacing:7.098000px;}
.ws7b{word-spacing:7.224000px;}
.ws6a{word-spacing:7.392000px;}
.ws80{word-spacing:8.190000px;}
.ws3{word-spacing:10.656000px;}
.ws2{word-spacing:13.344000px;}
._7{margin-left:-14.616000px;}
._0{margin-left:-13.348800px;}
._8{margin-left:-11.676000px;}
._6{margin-left:-1.449000px;}
._2{width:1.248000px;}
._c{width:2.580000px;}
._5{width:4.263000px;}
._d{width:5.734050px;}
._4{width:6.762000px;}
._13{width:7.993200px;}
._3{width:11.634000px;}
._1{width:14.016000px;}
._e{width:17.286000px;}
._b{width:19.414500px;}
._f{width:21.112500px;}
._12{width:27.174000px;}
._10{width:30.347748px;}
._9{width:263.184000px;}
._11{width:994.980000px;}
._a{width:1579.440000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:25.200000px;}
.fs9{font-size:31.482000px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:37.603800px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:64.500000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:56.003550px;}
.y1{bottom:56.123550px;}
.y26{bottom:110.549700px;}
.y7f{bottom:110.554200px;}
.yb8{bottom:111.930750px;}
.y52{bottom:112.067250px;}
.y92{bottom:112.067325px;}
.y25{bottom:122.551200px;}
.yb7{bottom:124.719750px;}
.y51{bottom:129.659625px;}
.y91{bottom:129.659700px;}
.y7e{bottom:131.033700px;}
.yb6{bottom:137.508750px;}
.y24{bottom:138.791400px;}
.y50{bottom:147.252000px;}
.y90{bottom:147.252075px;}
.y23{bottom:154.226400px;}
.yb5{bottom:155.918100px;}
.y8f{bottom:164.844450px;}
.yb4{bottom:168.707100px;}
.y22{bottom:174.207900px;}
.yb3{bottom:181.496100px;}
.y7d{bottom:182.330175px;}
.y4f{bottom:182.436750px;}
.y8e{bottom:182.436825px;}
.y21{bottom:185.390400px;}
.yb2{bottom:194.285100px;}
.y20{bottom:196.572900px;}
.y7c{bottom:199.922550px;}
.y8d{bottom:200.029200px;}
.yb1{bottom:207.074100px;}
.y1f{bottom:212.007900px;}
.y7b{bottom:217.514925px;}
.y8c{bottom:217.621575px;}
.y1e{bottom:223.190400px;}
.y7a{bottom:235.107300px;}
.y8b{bottom:235.213950px;}
.y4e{bottom:235.230000px;}
.y1d{bottom:252.436200px;}
.yb0{bottom:252.522300px;}
.y79{bottom:252.699675px;}
.y8a{bottom:252.806325px;}
.y4d{bottom:252.822375px;}
.y1c{bottom:266.824200px;}
.yaf{bottom:268.681800px;}
.y78{bottom:270.292050px;}
.y89{bottom:270.398700px;}
.y4c{bottom:270.414750px;}
.yae{bottom:284.841300px;}
.y77{bottom:287.884425px;}
.y88{bottom:287.991075px;}
.y4b{bottom:288.007125px;}
.y1b{bottom:288.412200px;}
.yad{bottom:301.000800px;}
.y1a{bottom:302.800200px;}
.y76{bottom:305.476800px;}
.y87{bottom:305.583450px;}
.y4a{bottom:305.599500px;}
.yac{bottom:317.160300px;}
.y19{bottom:317.188200px;}
.y75{bottom:323.069175px;}
.y86{bottom:323.175825px;}
.y49{bottom:323.191875px;}
.y18{bottom:331.576200px;}
.yab{bottom:333.319800px;}
.y74{bottom:340.661550px;}
.y85{bottom:340.768200px;}
.y48{bottom:340.784250px;}
.y17{bottom:345.964200px;}
.yaa{bottom:349.479300px;}
.y73{bottom:358.253925px;}
.y84{bottom:358.360575px;}
.y47{bottom:358.376625px;}
.ya9{bottom:365.638800px;}
.y16{bottom:374.752200px;}
.y72{bottom:375.846300px;}
.y83{bottom:375.952950px;}
.y46{bottom:375.969000px;}
.ya8{bottom:381.798300px;}
.y15{bottom:389.140200px;}
.y71{bottom:393.438675px;}
.y82{bottom:393.545325px;}
.y45{bottom:393.561375px;}
.ya7{bottom:397.957800px;}
.y14{bottom:410.728200px;}
.y70{bottom:411.031050px;}
.y81{bottom:411.137700px;}
.y44{bottom:411.153750px;}
.ya6{bottom:414.117300px;}
.y13{bottom:425.116200px;}
.y6f{bottom:428.623425px;}
.y80{bottom:428.730075px;}
.y43{bottom:428.746125px;}
.ya5{bottom:430.276800px;}
.y12{bottom:439.504200px;}
.y6e{bottom:446.322450px;}
.y42{bottom:446.338500px;}
.ya4{bottom:446.436300px;}
.y11{bottom:453.892200px;}
.ya3{bottom:462.595800px;}
.y6d{bottom:463.914825px;}
.y41{bottom:463.930875px;}
.y10{bottom:468.280200px;}
.ya2{bottom:478.755300px;}
.y6c{bottom:481.507200px;}
.y40{bottom:481.523250px;}
.ya1{bottom:494.914800px;}
.y6b{bottom:499.099575px;}
.y3f{bottom:499.115625px;}
.ya0{bottom:511.074300px;}
.y6a{bottom:516.691950px;}
.y3e{bottom:516.708000px;}
.y9f{bottom:527.233800px;}
.y69{bottom:534.284325px;}
.y3d{bottom:534.300375px;}
.yf{bottom:539.584950px;}
.y9e{bottom:543.393300px;}
.y68{bottom:551.876700px;}
.y3c{bottom:551.892750px;}
.ye{bottom:558.229350px;}
.y9d{bottom:559.552800px;}
.yd0{bottom:560.310750px;}
.y67{bottom:569.469075px;}
.y3b{bottom:569.485125px;}
.ycf{bottom:573.099750px;}
.y66{bottom:587.061450px;}
.y3a{bottom:587.077500px;}
.yce{bottom:591.508950px;}
.y9c{bottom:593.350200px;}
.yd{bottom:594.218400px;}
.ycd{bottom:604.297950px;}
.y65{bottom:604.653825px;}
.y39{bottom:604.669875px;}
.yc{bottom:612.862800px;}
.ycc{bottom:617.086950px;}
.y64{bottom:622.246200px;}
.y38{bottom:622.262250px;}
.ycb{bottom:629.875950px;}
.y63{bottom:639.838575px;}
.y37{bottom:639.854625px;}
.y9b{bottom:640.709325px;}
.yca{bottom:642.664950px;}
.yb{bottom:648.851850px;}
.y62{bottom:657.430950px;}
.y36{bottom:657.447000px;}
.y9a{bottom:658.301700px;}
.ya{bottom:667.496400px;}
.yc9{bottom:673.057500px;}
.y61{bottom:675.023325px;}
.y35{bottom:675.039375px;}
.y99{bottom:675.894075px;}
.yc8{bottom:685.846500px;}
.y60{bottom:692.615700px;}
.y34{bottom:692.631750px;}
.y98{bottom:693.486450px;}
.y9{bottom:703.485300px;}
.yc7{bottom:704.260200px;}
.y5f{bottom:710.208075px;}
.y33{bottom:710.224125px;}
.y97{bottom:711.078825px;}
.yc6{bottom:717.049200px;}
.y8{bottom:722.121750px;}
.y5e{bottom:727.800450px;}
.y32{bottom:727.816500px;}
.y96{bottom:728.671200px;}
.yc5{bottom:729.838200px;}
.yc4{bottom:742.627200px;}
.y5d{bottom:745.392825px;}
.y31{bottom:745.408875px;}
.y95{bottom:746.263575px;}
.yc3{bottom:755.416200px;}
.y5c{bottom:762.985200px;}
.y30{bottom:763.001250px;}
.y94{bottom:763.855950px;}
.y7{bottom:767.711250px;}
.yc2{bottom:768.205200px;}
.y5b{bottom:780.577575px;}
.y2f{bottom:780.593625px;}
.y6{bottom:798.090750px;}
.y5a{bottom:798.169950px;}
.y2e{bottom:798.186000px;}
.yc1{bottom:798.602400px;}
.y93{bottom:799.040700px;}
.yc0{bottom:811.391400px;}
.y59{bottom:815.762325px;}
.y2d{bottom:815.778375px;}
.ybf{bottom:824.180400px;}
.y58{bottom:833.354700px;}
.y2c{bottom:833.370750px;}
.ybe{bottom:842.594100px;}
.y57{bottom:850.947075px;}
.y2b{bottom:850.963125px;}
.ybd{bottom:855.383100px;}
.ybc{bottom:868.172100px;}
.y56{bottom:868.539450px;}
.y2a{bottom:868.555500px;}
.y3{bottom:872.507400px;}
.ybb{bottom:880.961100px;}
.y55{bottom:886.131825px;}
.yba{bottom:893.750100px;}
.y2{bottom:900.688050px;}
.y54{bottom:903.724200px;}
.y29{bottom:903.740250px;}
.yb9{bottom:906.539100px;}
.y27{bottom:948.916950px;}
.y53{bottom:949.402950px;}
.y5{bottom:952.869600px;}
.y4{bottom:966.369600px;}
.h10{height:27.468000px;}
.hb{height:30.828000px;}
.hc{height:31.206000px;}
.hd{height:31.500000px;}
.h13{height:34.371094px;}
.h4{height:35.664000px;}
.h12{height:36.017578px;}
.h2{height:37.875000px;}
.ha{height:38.352000px;}
.h9{height:40.400000px;}
.h8{height:42.925000px;}
.h11{height:45.450000px;}
.he{height:51.535500px;}
.h5{height:51.984000px;}
.h6{height:52.734000px;}
.hf{height:54.287500px;}
.h7{height:55.550000px;}
.h3{height:77.400000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xe{left:89.468100px;}
.x13{left:102.047250px;}
.x15{left:106.301850px;}
.xf{left:110.552100px;}
.x14{left:116.928750px;}
.xd{left:123.469050px;}
.x12{left:129.691575px;}
.x10{left:145.195650px;}
.x11{left:150.820650px;}
.x4{left:183.670500px;}
.x5{left:216.188250px;}
.xc{left:254.721450px;}
.x8{left:260.917500px;}
.x9{left:273.329400px;}
.xb{left:291.720600px;}
.xa{left:294.832650px;}
.x7{left:303.794850px;}
.x6{left:309.347250px;}
.x3{left:460.558800px;}
.x2{left:511.415400px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.712533pt;}
.lse{letter-spacing:-0.860000pt;}
.lsf{letter-spacing:-0.745333pt;}
.lsb{letter-spacing:-0.573333pt;}
.lsc{letter-spacing:-0.516000pt;}
.ls26{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.286667pt;}
.ls18{letter-spacing:-0.172000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.005867pt;}
.ls2a{letter-spacing:0.007467pt;}
.ls25{letter-spacing:0.011733pt;}
.lsa{letter-spacing:0.028667pt;}
.ls1b{letter-spacing:0.057333pt;}
.ls9{letter-spacing:0.114667pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls1d{letter-spacing:0.172000pt;}
.ls4{letter-spacing:0.186667pt;}
.ls17{letter-spacing:0.200667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.229333pt;}
.ls11{letter-spacing:0.286667pt;}
.ls16{letter-spacing:0.401333pt;}
.ls22{letter-spacing:0.422400pt;}
.ls1{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.458667pt;}
.ls24{letter-spacing:0.485333pt;}
.ls1c{letter-spacing:0.516000pt;}
.ls14{letter-spacing:0.531692pt;}
.ls3{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.573333pt;}
.ls1a{letter-spacing:0.630667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.745333pt;}
.ls13{letter-spacing:0.860000pt;}
.ls21{letter-spacing:0.912000pt;}
.ls15{letter-spacing:0.917333pt;}
.ls20{letter-spacing:1.440000pt;}
.ls29{letter-spacing:1.453333pt;}
.ls2b{letter-spacing:1.825600pt;}
.ls2c{letter-spacing:2.165333pt;}
.ls28{letter-spacing:5.056000pt;}
.ls23{letter-spacing:5.470933pt;}
.ls5{letter-spacing:8.880000pt;}
.ls12{letter-spacing:1297.129600pt;}
.ls0{letter-spacing:1893.779200pt;}
.ws6e{word-spacing:-10.944000pt;}
.ws0{word-spacing:-8.917333pt;}
.ws14{word-spacing:-8.490667pt;}
.ws32{word-spacing:-7.960000pt;}
.ws59{word-spacing:-7.660800pt;}
.ws33{word-spacing:-5.568816pt;}
.ws43{word-spacing:-0.860000pt;}
.wsa{word-spacing:-0.640000pt;}
.ws5c{word-spacing:-0.573333pt;}
.ws4{word-spacing:-0.426667pt;}
.ws25{word-spacing:-0.229333pt;}
.wsc{word-spacing:-0.213333pt;}
.ws5e{word-spacing:-0.144000pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.037333pt;}
.ws6{word-spacing:0.085333pt;}
.ws29{word-spacing:0.172000pt;}
.ws16{word-spacing:0.286667pt;}
.ws63{word-spacing:0.336000pt;}
.ws2c{word-spacing:0.344000pt;}
.ws23{word-spacing:0.401333pt;}
.ws68{word-spacing:0.480000pt;}
.ws28{word-spacing:0.516000pt;}
.ws75{word-spacing:0.522667pt;}
.ws4f{word-spacing:0.573333pt;}
.ws3c{word-spacing:0.688000pt;}
.ws57{word-spacing:0.745333pt;}
.wsf{word-spacing:0.768000pt;}
.ws17{word-spacing:0.802667pt;}
.ws73{word-spacing:0.821333pt;}
.ws21{word-spacing:0.860000pt;}
.ws35{word-spacing:0.917333pt;}
.ws9{word-spacing:0.938667pt;}
.ws50{word-spacing:1.032000pt;}
.ws27{word-spacing:1.089333pt;}
.ws34{word-spacing:1.146667pt;}
.ws61{word-spacing:1.200000pt;}
.ws56{word-spacing:1.204000pt;}
.ws71{word-spacing:1.306667pt;}
.ws5{word-spacing:1.322667pt;}
.ws1d{word-spacing:1.376000pt;}
.ws6f{word-spacing:1.530667pt;}
.ws64{word-spacing:1.584000pt;}
.ws2a{word-spacing:1.662667pt;}
.ws10{word-spacing:1.749333pt;}
.ws76{word-spacing:1.754667pt;}
.ws6c{word-spacing:1.792000pt;}
.ws62{word-spacing:1.824000pt;}
.ws3d{word-spacing:1.834667pt;}
.ws3e{word-spacing:1.892000pt;}
.wse{word-spacing:1.920000pt;}
.ws11{word-spacing:1.962667pt;}
.ws55{word-spacing:2.064000pt;}
.ws30{word-spacing:2.121333pt;}
.ws53{word-spacing:2.178667pt;}
.ws67{word-spacing:2.208000pt;}
.ws18{word-spacing:2.236000pt;}
.ws2e{word-spacing:2.293333pt;}
.wsd{word-spacing:2.304000pt;}
.ws78{word-spacing:2.314667pt;}
.ws36{word-spacing:2.350667pt;}
.ws54{word-spacing:2.408000pt;}
.ws44{word-spacing:2.465333pt;}
.ws5b{word-spacing:2.522667pt;}
.ws52{word-spacing:2.580000pt;}
.ws6d{word-spacing:2.613333pt;}
.ws49{word-spacing:2.637333pt;}
.ws4c{word-spacing:2.694667pt;}
.ws15{word-spacing:2.752000pt;}
.ws4a{word-spacing:2.784000pt;}
.ws7a{word-spacing:2.837333pt;}
.ws2f{word-spacing:2.981333pt;}
.ws38{word-spacing:3.038667pt;}
.ws3f{word-spacing:3.153333pt;}
.ws7d{word-spacing:3.173333pt;}
.ws60{word-spacing:3.264000pt;}
.ws47{word-spacing:3.268000pt;}
.ws22{word-spacing:3.325333pt;}
.ws8{word-spacing:3.328000pt;}
.ws6b{word-spacing:3.360000pt;}
.ws4b{word-spacing:3.382667pt;}
.ws69{word-spacing:3.456000pt;}
.ws7f{word-spacing:3.472000pt;}
.ws1c{word-spacing:3.497333pt;}
.ws51{word-spacing:3.554667pt;}
.ws58{word-spacing:3.612000pt;}
.ws7e{word-spacing:3.621333pt;}
.ws77{word-spacing:3.658667pt;}
.ws40{word-spacing:3.726667pt;}
.ws65{word-spacing:3.840000pt;}
.ws31{word-spacing:3.898667pt;}
.ws7{word-spacing:3.968000pt;}
.ws70{word-spacing:3.994667pt;}
.ws3a{word-spacing:4.013333pt;}
.ws2d{word-spacing:4.070667pt;}
.ws4d{word-spacing:4.128000pt;}
.ws13{word-spacing:4.144000pt;}
.ws5d{word-spacing:4.176000pt;}
.wsb{word-spacing:4.224000pt;}
.ws4e{word-spacing:4.242667pt;}
.ws72{word-spacing:4.293333pt;}
.ws46{word-spacing:4.300000pt;}
.ws26{word-spacing:4.357333pt;}
.ws37{word-spacing:4.414667pt;}
.ws24{word-spacing:4.472000pt;}
.ws1a{word-spacing:4.701333pt;}
.ws66{word-spacing:4.752000pt;}
.ws1f{word-spacing:4.758667pt;}
.ws5f{word-spacing:4.800000pt;}
.ws1b{word-spacing:4.816000pt;}
.ws41{word-spacing:4.988000pt;}
.ws7c{word-spacing:5.040000pt;}
.ws48{word-spacing:5.045333pt;}
.ws3b{word-spacing:5.102667pt;}
.ws79{word-spacing:5.152000pt;}
.ws20{word-spacing:5.160000pt;}
.ws2b{word-spacing:5.217333pt;}
.ws39{word-spacing:5.389333pt;}
.ws5a{word-spacing:5.446667pt;}
.ws42{word-spacing:5.561333pt;}
.ws45{word-spacing:5.618667pt;}
.ws1e{word-spacing:5.676000pt;}
.ws19{word-spacing:5.733333pt;}
.ws74{word-spacing:6.309333pt;}
.ws7b{word-spacing:6.421333pt;}
.ws6a{word-spacing:6.570667pt;}
.ws80{word-spacing:7.280000pt;}
.ws3{word-spacing:9.472000pt;}
.ws2{word-spacing:11.861333pt;}
._7{margin-left:-12.992000pt;}
._0{margin-left:-11.865600pt;}
._8{margin-left:-10.378667pt;}
._6{margin-left:-1.288000pt;}
._2{width:1.109333pt;}
._c{width:2.293333pt;}
._5{width:3.789333pt;}
._d{width:5.096933pt;}
._4{width:6.010667pt;}
._13{width:7.105067pt;}
._3{width:10.341333pt;}
._1{width:12.458667pt;}
._e{width:15.365333pt;}
._b{width:17.257333pt;}
._f{width:18.766667pt;}
._12{width:24.154667pt;}
._10{width:26.975776pt;}
._9{width:233.941333pt;}
._11{width:884.426667pt;}
._a{width:1403.946667pt;}
.fsc{font-size:22.400000pt;}
.fs9{font-size:27.984000pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:33.425600pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:57.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:49.780933pt;}
.y1{bottom:49.887600pt;}
.y26{bottom:98.266400pt;}
.y7f{bottom:98.270400pt;}
.yb8{bottom:99.494000pt;}
.y52{bottom:99.615333pt;}
.y92{bottom:99.615400pt;}
.y25{bottom:108.934400pt;}
.yb7{bottom:110.862000pt;}
.y51{bottom:115.253000pt;}
.y91{bottom:115.253067pt;}
.y7e{bottom:116.474400pt;}
.yb6{bottom:122.230000pt;}
.y24{bottom:123.370133pt;}
.y50{bottom:130.890667pt;}
.y90{bottom:130.890733pt;}
.y23{bottom:137.090133pt;}
.yb5{bottom:138.593867pt;}
.y8f{bottom:146.528400pt;}
.yb4{bottom:149.961867pt;}
.y22{bottom:154.851467pt;}
.yb3{bottom:161.329867pt;}
.y7d{bottom:162.071267pt;}
.y4f{bottom:162.166000pt;}
.y8e{bottom:162.166067pt;}
.y21{bottom:164.791467pt;}
.yb2{bottom:172.697867pt;}
.y20{bottom:174.731467pt;}
.y7c{bottom:177.708933pt;}
.y8d{bottom:177.803733pt;}
.yb1{bottom:184.065867pt;}
.y1f{bottom:188.451467pt;}
.y7b{bottom:193.346600pt;}
.y8c{bottom:193.441400pt;}
.y1e{bottom:198.391467pt;}
.y7a{bottom:208.984267pt;}
.y8b{bottom:209.079067pt;}
.y4e{bottom:209.093333pt;}
.y1d{bottom:224.387733pt;}
.yb0{bottom:224.464267pt;}
.y79{bottom:224.621933pt;}
.y8a{bottom:224.716733pt;}
.y4d{bottom:224.731000pt;}
.y1c{bottom:237.177067pt;}
.yaf{bottom:238.828267pt;}
.y78{bottom:240.259600pt;}
.y89{bottom:240.354400pt;}
.y4c{bottom:240.368667pt;}
.yae{bottom:253.192267pt;}
.y77{bottom:255.897267pt;}
.y88{bottom:255.992067pt;}
.y4b{bottom:256.006333pt;}
.y1b{bottom:256.366400pt;}
.yad{bottom:267.556267pt;}
.y1a{bottom:269.155733pt;}
.y76{bottom:271.534933pt;}
.y87{bottom:271.629733pt;}
.y4a{bottom:271.644000pt;}
.yac{bottom:281.920267pt;}
.y19{bottom:281.945067pt;}
.y75{bottom:287.172600pt;}
.y86{bottom:287.267400pt;}
.y49{bottom:287.281667pt;}
.y18{bottom:294.734400pt;}
.yab{bottom:296.284267pt;}
.y74{bottom:302.810267pt;}
.y85{bottom:302.905067pt;}
.y48{bottom:302.919333pt;}
.y17{bottom:307.523733pt;}
.yaa{bottom:310.648267pt;}
.y73{bottom:318.447933pt;}
.y84{bottom:318.542733pt;}
.y47{bottom:318.557000pt;}
.ya9{bottom:325.012267pt;}
.y16{bottom:333.113067pt;}
.y72{bottom:334.085600pt;}
.y83{bottom:334.180400pt;}
.y46{bottom:334.194667pt;}
.ya8{bottom:339.376267pt;}
.y15{bottom:345.902400pt;}
.y71{bottom:349.723267pt;}
.y82{bottom:349.818067pt;}
.y45{bottom:349.832333pt;}
.ya7{bottom:353.740267pt;}
.y14{bottom:365.091733pt;}
.y70{bottom:365.360933pt;}
.y81{bottom:365.455733pt;}
.y44{bottom:365.470000pt;}
.ya6{bottom:368.104267pt;}
.y13{bottom:377.881067pt;}
.y6f{bottom:380.998600pt;}
.y80{bottom:381.093400pt;}
.y43{bottom:381.107667pt;}
.ya5{bottom:382.468267pt;}
.y12{bottom:390.670400pt;}
.y6e{bottom:396.731067pt;}
.y42{bottom:396.745333pt;}
.ya4{bottom:396.832267pt;}
.y11{bottom:403.459733pt;}
.ya3{bottom:411.196267pt;}
.y6d{bottom:412.368733pt;}
.y41{bottom:412.383000pt;}
.y10{bottom:416.249067pt;}
.ya2{bottom:425.560267pt;}
.y6c{bottom:428.006400pt;}
.y40{bottom:428.020667pt;}
.ya1{bottom:439.924267pt;}
.y6b{bottom:443.644067pt;}
.y3f{bottom:443.658333pt;}
.ya0{bottom:454.288267pt;}
.y6a{bottom:459.281733pt;}
.y3e{bottom:459.296000pt;}
.y9f{bottom:468.652267pt;}
.y69{bottom:474.919400pt;}
.y3d{bottom:474.933667pt;}
.yf{bottom:479.631067pt;}
.y9e{bottom:483.016267pt;}
.y68{bottom:490.557067pt;}
.y3c{bottom:490.571333pt;}
.ye{bottom:496.203867pt;}
.y9d{bottom:497.380267pt;}
.yd0{bottom:498.054000pt;}
.y67{bottom:506.194733pt;}
.y3b{bottom:506.209000pt;}
.ycf{bottom:509.422000pt;}
.y66{bottom:521.832400pt;}
.y3a{bottom:521.846667pt;}
.yce{bottom:525.785733pt;}
.y9c{bottom:527.422400pt;}
.yd{bottom:528.194133pt;}
.ycd{bottom:537.153733pt;}
.y65{bottom:537.470067pt;}
.y39{bottom:537.484333pt;}
.yc{bottom:544.766933pt;}
.ycc{bottom:548.521733pt;}
.y64{bottom:553.107733pt;}
.y38{bottom:553.122000pt;}
.ycb{bottom:559.889733pt;}
.y63{bottom:568.745400pt;}
.y37{bottom:568.759667pt;}
.y9b{bottom:569.519400pt;}
.yca{bottom:571.257733pt;}
.yb{bottom:576.757200pt;}
.y62{bottom:584.383067pt;}
.y36{bottom:584.397333pt;}
.y9a{bottom:585.157067pt;}
.ya{bottom:593.330133pt;}
.yc9{bottom:598.273333pt;}
.y61{bottom:600.020733pt;}
.y35{bottom:600.035000pt;}
.y99{bottom:600.794733pt;}
.yc8{bottom:609.641333pt;}
.y60{bottom:615.658400pt;}
.y34{bottom:615.672667pt;}
.y98{bottom:616.432400pt;}
.y9{bottom:625.320267pt;}
.yc7{bottom:626.009067pt;}
.y5f{bottom:631.296067pt;}
.y33{bottom:631.310333pt;}
.y97{bottom:632.070067pt;}
.yc6{bottom:637.377067pt;}
.y8{bottom:641.886000pt;}
.y5e{bottom:646.933733pt;}
.y32{bottom:646.948000pt;}
.y96{bottom:647.707733pt;}
.yc5{bottom:648.745067pt;}
.yc4{bottom:660.113067pt;}
.y5d{bottom:662.571400pt;}
.y31{bottom:662.585667pt;}
.y95{bottom:663.345400pt;}
.yc3{bottom:671.481067pt;}
.y5c{bottom:678.209067pt;}
.y30{bottom:678.223333pt;}
.y94{bottom:678.983067pt;}
.y7{bottom:682.410000pt;}
.yc2{bottom:682.849067pt;}
.y5b{bottom:693.846733pt;}
.y2f{bottom:693.861000pt;}
.y6{bottom:709.414000pt;}
.y5a{bottom:709.484400pt;}
.y2e{bottom:709.498667pt;}
.yc1{bottom:709.868800pt;}
.y93{bottom:710.258400pt;}
.yc0{bottom:721.236800pt;}
.y59{bottom:725.122067pt;}
.y2d{bottom:725.136333pt;}
.ybf{bottom:732.604800pt;}
.y58{bottom:740.759733pt;}
.y2c{bottom:740.774000pt;}
.ybe{bottom:748.972533pt;}
.y57{bottom:756.397400pt;}
.y2b{bottom:756.411667pt;}
.ybd{bottom:760.340533pt;}
.ybc{bottom:771.708533pt;}
.y56{bottom:772.035067pt;}
.y2a{bottom:772.049333pt;}
.y3{bottom:775.562133pt;}
.ybb{bottom:783.076533pt;}
.y55{bottom:787.672733pt;}
.yba{bottom:794.444533pt;}
.y2{bottom:800.611600pt;}
.y54{bottom:803.310400pt;}
.y29{bottom:803.324667pt;}
.yb9{bottom:805.812533pt;}
.y27{bottom:843.481733pt;}
.y53{bottom:843.913733pt;}
.y5{bottom:846.995200pt;}
.y4{bottom:858.995200pt;}
.h10{height:24.416000pt;}
.hb{height:27.402667pt;}
.hc{height:27.738667pt;}
.hd{height:28.000000pt;}
.h13{height:30.552083pt;}
.h4{height:31.701333pt;}
.h12{height:32.015625pt;}
.h2{height:33.666667pt;}
.ha{height:34.090667pt;}
.h9{height:35.911111pt;}
.h8{height:38.155556pt;}
.h11{height:40.400000pt;}
.he{height:45.809333pt;}
.h5{height:46.208000pt;}
.h6{height:46.874667pt;}
.hf{height:48.255556pt;}
.h7{height:49.377778pt;}
.h3{height:68.800000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xe{left:79.527200pt;}
.x13{left:90.708667pt;}
.x15{left:94.490533pt;}
.xf{left:98.268533pt;}
.x14{left:103.936667pt;}
.xd{left:109.750267pt;}
.x12{left:115.281400pt;}
.x10{left:129.062800pt;}
.x11{left:134.062800pt;}
.x4{left:163.262667pt;}
.x5{left:192.167333pt;}
.xc{left:226.419067pt;}
.x8{left:231.926667pt;}
.x9{left:242.959467pt;}
.xb{left:259.307200pt;}
.xa{left:262.073467pt;}
.x7{left:270.039867pt;}
.x6{left:274.975333pt;}
.x3{left:409.385600pt;}
.x2{left:454.591467pt;}
}




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