
    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_a94999725e0be8375115ffa4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a891d71209de8d4a48fa9b5d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f35cbf64ba5310f0f974d434.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0b814e5a5eed00443ceb252e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5fb1d5a76f98e9a6c67eb7ca.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_64564424a3b3a539aea17ce6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.705000;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_d99e64d8f31e690086365a0b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683000;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_14ac01ecc55f730f60700094.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c978a790dc250b65d35c3b26.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_06b368dce7ab7c96a3a948bc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.389000;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_b6077ed25b55706f85f52825.woff')format("woff");}.ffb{font-family:ffb;line-height:0.929000;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_7701cfcc6d3afba8a2257231.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fca386a0fcd4bba0ee04b1e5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.714000;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_78149a9a8444f2dac6e851e6.woff')format("woff");}.ffe{font-family:ffe;line-height:2.222000;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_ba1bafb3fe4212f2a1363758.woff')format("woff");}.fff{font-family:fff;line-height:0.046000;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.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);}
.md{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.mc{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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);}
.v7{vertical-align:-19.350000px;}
.v3{vertical-align:-10.134000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.548000px;}
.v5{vertical-align:22.572000px;}
.vb{vertical-align:23.754000px;}
.v6{vertical-align:27.030000px;}
.v4{vertical-align:32.244000px;}
.v9{vertical-align:34.152000px;}
.v8{vertical-align:44.280000px;}
.va{vertical-align:128.364000px;}
.ls16{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000680px;}
.ls39{letter-spacing:0.001799px;}
.ls2e{letter-spacing:0.005910px;}
.ls8{letter-spacing:0.006015px;}
.ls25{letter-spacing:0.015120px;}
.ls28{letter-spacing:0.022435px;}
.ls30{letter-spacing:0.023302px;}
.ls20{letter-spacing:0.261818px;}
.ls6{letter-spacing:2.356366px;}
.ls3b{letter-spacing:2.487275px;}
.ls19{letter-spacing:2.988599px;}
.ls2a{letter-spacing:2.990367px;}
.ls10{letter-spacing:3.272730px;}
.ls22{letter-spacing:3.469094px;}
.ls14{letter-spacing:3.665458px;}
.ls13{letter-spacing:3.730912px;}
.lsb{letter-spacing:3.796367px;}
.lsd{letter-spacing:5.105459px;}
.ls7{letter-spacing:5.301823px;}
.ls3a{letter-spacing:5.976599px;}
.ls3e{letter-spacing:6.545460px;}
.lse{letter-spacing:7.265461px;}
.lsf{letter-spacing:7.330915px;}
.ls4{letter-spacing:9.922750px;}
.ls3{letter-spacing:9.982525px;}
.lsc{letter-spacing:10.865464px;}
.ls1d{letter-spacing:11.192737px;}
.ls40{letter-spacing:13.025465px;}
.ls29{letter-spacing:13.904367px;}
.ls1e{letter-spacing:14.400012px;}
.ls11{letter-spacing:14.530921px;}
.ls12{letter-spacing:14.596376px;}
.ls27{letter-spacing:16.252571px;}
.lsa{letter-spacing:16.258571px;}
.ls1{letter-spacing:16.557841px;}
.ls0{letter-spacing:16.617617px;}
.ls37{letter-spacing:16.887287px;}
.ls21{letter-spacing:17.534915px;}
.ls1c{letter-spacing:18.130924px;}
.ls1b{letter-spacing:18.196379px;}
.ls26{letter-spacing:21.170367px;}
.ls23{letter-spacing:21.170915px;}
.ls9{letter-spacing:21.176367px;}
.ls2{letter-spacing:21.625295px;}
.ls33{letter-spacing:21.796382px;}
.ls35{letter-spacing:24.218202px;}
.ls31{letter-spacing:24.806367px;}
.ls17{letter-spacing:25.349412px;}
.ls15{letter-spacing:25.396385px;}
.ls5{letter-spacing:32.727300px;}
.ls3d{letter-spacing:37.173768px;}
.ls1a{letter-spacing:44.616240px;}
.ls2c{letter-spacing:54.589136px;}
.ls36{letter-spacing:71.215622px;}
.ls2f{letter-spacing:117.999748px;}
.ls1f{letter-spacing:141.840118px;}
.ls32{letter-spacing:367.003942px;}
.ls3f{letter-spacing:418.385803px;}
.ls34{letter-spacing:541.767724px;}
.ls2b{letter-spacing:558.065920px;}
.ls2d{letter-spacing:712.931503px;}
.ls24{letter-spacing:720.720601px;}
.ls38{letter-spacing:960.088073px;}
.ls3c{letter-spacing:1079.215445px;}
.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;}
}
.ws1c{word-spacing:-65.454600px;}
.ws22{word-spacing:-54.589136px;}
.ws39{word-spacing:-47.323676px;}
.ws1a{word-spacing:-42.637126px;}
.ws7{word-spacing:-38.937826px;}
.ws23{word-spacing:-33.211407px;}
.ws41{word-spacing:-24.440748px;}
.ws45{word-spacing:-20.906199px;}
.ws18{word-spacing:-18.183288px;}
.ws21{word-spacing:-9.678469px;}
.ws19{word-spacing:-7.252370px;}
.ws20{word-spacing:-6.042469px;}
.ws38{word-spacing:-2.932366px;}
.ws25{word-spacing:-2.408729px;}
.ws10{word-spacing:-0.800993px;}
.wsf{word-spacing:-0.705352px;}
.ws12{word-spacing:-0.086077px;}
.ws3a{word-spacing:-0.065455px;}
.wsa{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.052364px;}
.ws1b{word-spacing:0.000000px;}
.ws16{word-spacing:0.013091px;}
.ws29{word-spacing:0.274909px;}
.ws3{word-spacing:0.890183px;}
.ws3e{word-spacing:0.929455px;}
.ws44{word-spacing:1.060365px;}
.ws33{word-spacing:1.584001px;}
.ws36{word-spacing:1.649456px;}
.ws3b{word-spacing:2.565820px;}
.ws4b{word-spacing:2.893093px;}
.ws9{word-spacing:2.940960px;}
.ws30{word-spacing:3.220366px;}
.wsd{word-spacing:3.239838px;}
.ws8{word-spacing:3.299613px;}
.ws2e{word-spacing:3.351276px;}
.ws43{word-spacing:3.416730px;}
.ws4d{word-spacing:3.478940px;}
.ws2c{word-spacing:3.482185px;}
.ws4a{word-spacing:3.547639px;}
.ws5{word-spacing:3.613094px;}
.wsc{word-spacing:3.658267px;}
.ws15{word-spacing:3.678549px;}
.ws2a{word-spacing:3.744003px;}
.ws11{word-spacing:3.801728px;}
.ws34{word-spacing:3.874912px;}
.ws1d{word-spacing:4.005822px;}
.ws42{word-spacing:4.071276px;}
.ws2{word-spacing:4.162913px;}
.ws13{word-spacing:4.228367px;}
.ws48{word-spacing:4.791277px;}
.ws46{word-spacing:4.856731px;}
.ws49{word-spacing:5.969460px;}
.ws3d{word-spacing:6.231278px;}
.ws37{word-spacing:6.624006px;}
.ws2f{word-spacing:7.409461px;}
.ws3c{word-spacing:7.605825px;}
.ws4{word-spacing:8.221098px;}
.ws1e{word-spacing:8.325825px;}
.ws6{word-spacing:9.934705px;}
.ws32{word-spacing:13.627648px;}
.ws1f{word-spacing:19.060380px;}
.ws3f{word-spacing:22.464019px;}
.ws4c{word-spacing:22.712746px;}
.ws1{word-spacing:23.312640px;}
.ws31{word-spacing:23.367292px;}
.ws2b{word-spacing:24.754930px;}
.wse{word-spacing:26.241488px;}
.ws35{word-spacing:27.229114px;}
.ws47{word-spacing:27.883660px;}
.ws26{word-spacing:28.354933px;}
.ws40{word-spacing:32.020718px;}
.ws14{word-spacing:32.192873px;}
.wsb{word-spacing:33.055907px;}
.ws0{word-spacing:38.631358px;}
.ws24{word-spacing:99.202992px;}
.ws27{word-spacing:121.758647px;}
.ws28{word-spacing:162.131044px;}
.ws2d{word-spacing:754.442811px;}
._1{margin-left:-9.709486px;}
._1f{margin-left:-8.091257px;}
._6{margin-left:-5.861851px;}
._23{margin-left:-4.551867px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.936742px;}
._3{width:2.008474px;}
._18{width:3.202064px;}
._1e{width:5.745887px;}
._4{width:16.611267px;}
._20{width:21.796382px;}
._13{width:22.909110px;}
._7{width:25.785312px;}
._5{width:27.747872px;}
._19{width:29.061842px;}
._24{width:30.370934px;}
._a{width:33.447301px;}
._22{width:36.327303px;}
._1a{width:39.035303px;}
._1b{width:43.038600px;}
._8{width:60.545505px;}
._17{width:96.836850px;}
._21{width:141.840118px;}
._14{width:363.907133px;}
._1d{width:553.353188px;}
._d{width:654.615740px;}
._12{width:678.141938px;}
._1c{width:759.076996px;}
._c{width:791.287112px;}
._10{width:819.857424px;}
._f{width:840.518467px;}
._11{width:843.781701px;}
._b{width:1236.386282px;}
._15{width:1295.350819px;}
._e{width:1325.069375px;}
._16{width:1406.398213px;}
._9{width:1893.333483px;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y22{bottom:63.168000px;}
.y21{bottom:126.205500px;}
.y20{bottom:154.002000px;}
.y5c{bottom:163.636500px;}
.y1f{bottom:181.797000px;}
.y3e{bottom:182.340000px;}
.y5b{bottom:183.960000px;}
.y3d{bottom:202.663500px;}
.y5a{bottom:204.283500px;}
.y1e{bottom:209.593500px;}
.y3c{bottom:231.204000px;}
.y59{bottom:232.824000px;}
.y1d{bottom:237.388500px;}
.y7a{bottom:241.156500px;}
.y79{bottom:259.090500px;}
.y1c{bottom:271.255500px;}
.y3b{bottom:291.069000px;}
.y58{bottom:292.689000px;}
.y78{bottom:293.227500px;}
.y1b{bottom:309.651000px;}
.y57{bottom:313.014000px;}
.y3a{bottom:314.550000px;}
.y39{bottom:325.774500px;}
.y56{bottom:333.337500px;}
.y77{bottom:344.785500px;}
.y1a{bottom:360.328500px;}
.y76{bottom:365.109000px;}
.y55{bottom:369.865500px;}
.y38{bottom:371.001000px;}
.y75{bottom:385.432500px;}
.y19{bottom:397.015500px;}
.y74{bottom:413.229000px;}
.y54{bottom:421.186500px;}
.y37{bottom:422.322000px;}
.y73{bottom:433.552500px;}
.y18{bottom:433.702500px;}
.y53{bottom:441.511500px;}
.y36{bottom:442.647000px;}
.y72{bottom:453.876000px;}
.y52{bottom:461.835000px;}
.y35{bottom:462.970500px;}
.y17{bottom:470.391000px;}
.y71{bottom:481.672500px;}
.y51{bottom:490.374000px;}
.y34{bottom:491.509500px;}
.y70{bottom:501.996000px;}
.y16{bottom:507.078000px;}
.y6f{bottom:522.319500px;}
.y50{bottom:540.423000px;}
.y15{bottom:543.765000px;}
.y4f{bottom:550.240500px;}
.y33{bottom:551.376000px;}
.y6e{bottom:558.847500px;}
.y14{bottom:580.453500px;}
.y32{bottom:587.904000px;}
.y4e{bottom:594.537000px;}
.y13{bottom:617.140500px;}
.y6d{bottom:621.606000px;}
.y4d{bottom:631.065000px;}
.y31{bottom:639.226500px;}
.y6c{bottom:652.390500px;}
.y12{bottom:653.827500px;}
.y30{bottom:659.550000px;}
.y6b{bottom:672.714000px;}
.y2f{bottom:679.873500px;}
.y4c{bottom:682.387500px;}
.y11{bottom:690.516000px;}
.y6a{bottom:700.510500px;}
.y4b{bottom:702.711000px;}
.y2e{bottom:708.412500px;}
.y4a{bottom:723.034500px;}
.y10{bottom:727.203000px;}
.y69{bottom:728.305500px;}
.y49{bottom:751.573500px;}
.y68{bottom:756.102000px;}
.yf{bottom:763.890000px;}
.y2d{bottom:768.279000px;}
.y67{bottom:776.425500px;}
.ye{bottom:800.578500px;}
.y2c{bottom:805.041000px;}
.y66{bottom:810.246000px;}
.y48{bottom:811.440000px;}
.y2b{bottom:841.569000px;}
.y47{bottom:848.202000px;}
.y65{bottom:850.137000px;}
.yd{bottom:851.254500px;}
.yc{bottom:869.187000px;}
.y46{bottom:884.731500px;}
.yb{bottom:887.121000px;}
.y2a{bottom:892.891500px;}
.y64{bottom:901.458000px;}
.ya{bottom:905.053500px;}
.y29{bottom:913.215000px;}
.y63{bottom:921.781500px;}
.y9{bottom:922.986000px;}
.y28{bottom:933.538500px;}
.y45{bottom:936.052500px;}
.y8{bottom:940.918500px;}
.y62{bottom:942.106500px;}
.y44{bottom:956.376000px;}
.y27{bottom:962.079000px;}
.y7{bottom:962.584500px;}
.y61{bottom:970.645500px;}
.y43{bottom:976.699500px;}
.y6{bottom:992.842500px;}
.y42{bottom:1005.240000px;}
.y60{bottom:1019.287500px;}
.y5{bottom:1019.740500px;}
.y26{bottom:1021.944000px;}
.y5f{bottom:1041.582000px;}
.y4{bottom:1043.053500px;}
.y25{bottom:1058.473500px;}
.y41{bottom:1065.106500px;}
.y3{bottom:1072.344000px;}
.y5e{bottom:1074.969000px;}
.y40{bottom:1101.868500px;}
.y2{bottom:1110.600000px;}
.y5d{bottom:1111.497000px;}
.y24{bottom:1118.049000px;}
.y23{bottom:1123.692000px;}
.y1{bottom:1136.902500px;}
.y3f{bottom:1138.396500px;}
.h5{height:44.831700px;}
.hb{height:46.145493px;}
.h4{height:49.090950px;}
.h3{height:51.216077px;}
.hf{height:57.897908px;}
.ha{height:62.895450px;}
.h6{height:64.557900px;}
.h7{height:65.638950px;}
.h8{height:68.109450px;}
.h9{height:71.662950px;}
.h2{height:77.469300px;}
.hc{height:93.370950px;}
.hd{height:93.988950px;}
.he{height:128.364000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x2{left:121.521000px;}
.x35{left:132.592500px;}
.x1{left:135.061500px;}
.x33{left:142.114500px;}
.xa{left:146.707500px;}
.x8{left:148.909500px;}
.x31{left:156.418500px;}
.x34{left:163.024500px;}
.x29{left:186.351000px;}
.x2a{left:198.624000px;}
.x1c{left:213.763500px;}
.xd{left:216.291000px;}
.x1e{left:218.752500px;}
.x32{left:233.388000px;}
.x1d{left:235.569000px;}
.x2b{left:255.795000px;}
.x22{left:262.434000px;}
.x11{left:266.512500px;}
.x6{left:275.773500px;}
.x2c{left:279.061500px;}
.x3{left:296.185500px;}
.x13{left:305.221500px;}
.xe{left:307.179000px;}
.xb{left:310.725000px;}
.x1a{left:320.149500px;}
.x4{left:336.241500px;}
.xf{left:342.550500px;}
.x2d{left:359.362500px;}
.x5{left:363.582000px;}
.x23{left:367.003500px;}
.x1b{left:391.080000px;}
.x30{left:396.792000px;}
.x7{left:413.811000px;}
.x25{left:416.853000px;}
.x26{left:427.831500px;}
.x27{left:434.067000px;}
.x1f{left:436.465500px;}
.xc{left:442.366500px;}
.x28{left:446.340000px;}
.x20{left:480.973500px;}
.x24{left:482.788500px;}
.x21{left:504.822000px;}
.x2e{left:555.397500px;}
.x2f{left:579.556500px;}
.x12{left:589.359000px;}
.x10{left:590.631000px;}
.x14{left:649.383000px;}
.x15{left:657.859500px;}
.x16{left:664.351500px;}
.x17{left:687.601500px;}
.x18{left:703.216500px;}
.x19{left:716.449500px;}
@media print{
.v7{vertical-align:-17.200000pt;}
.v3{vertical-align:-9.008000pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.709333pt;}
.v5{vertical-align:20.064000pt;}
.vb{vertical-align:21.114667pt;}
.v6{vertical-align:24.026667pt;}
.v4{vertical-align:28.661333pt;}
.v9{vertical-align:30.357333pt;}
.v8{vertical-align:39.360000pt;}
.va{vertical-align:114.101333pt;}
.ls16{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000605pt;}
.ls39{letter-spacing:0.001599pt;}
.ls2e{letter-spacing:0.005253pt;}
.ls8{letter-spacing:0.005346pt;}
.ls25{letter-spacing:0.013440pt;}
.ls28{letter-spacing:0.019942pt;}
.ls30{letter-spacing:0.020713pt;}
.ls20{letter-spacing:0.232727pt;}
.ls6{letter-spacing:2.094547pt;}
.ls3b{letter-spacing:2.210911pt;}
.ls19{letter-spacing:2.656532pt;}
.ls2a{letter-spacing:2.658104pt;}
.ls10{letter-spacing:2.909093pt;}
.ls22{letter-spacing:3.083639pt;}
.ls14{letter-spacing:3.258185pt;}
.ls13{letter-spacing:3.316366pt;}
.lsb{letter-spacing:3.374548pt;}
.lsd{letter-spacing:4.538186pt;}
.ls7{letter-spacing:4.712731pt;}
.ls3a{letter-spacing:5.312532pt;}
.ls3e{letter-spacing:5.818187pt;}
.lse{letter-spacing:6.458187pt;}
.lsf{letter-spacing:6.516369pt;}
.ls4{letter-spacing:8.820222pt;}
.ls3{letter-spacing:8.873356pt;}
.lsc{letter-spacing:9.658190pt;}
.ls1d{letter-spacing:9.949099pt;}
.ls40{letter-spacing:11.578191pt;}
.ls29{letter-spacing:12.359437pt;}
.ls1e{letter-spacing:12.800011pt;}
.ls11{letter-spacing:12.916374pt;}
.ls12{letter-spacing:12.974556pt;}
.ls27{letter-spacing:14.446730pt;}
.lsa{letter-spacing:14.452063pt;}
.ls1{letter-spacing:14.718081pt;}
.ls0{letter-spacing:14.771215pt;}
.ls37{letter-spacing:15.010922pt;}
.ls21{letter-spacing:15.586591pt;}
.ls1c{letter-spacing:16.116377pt;}
.ls1b{letter-spacing:16.174559pt;}
.ls26{letter-spacing:18.818104pt;}
.ls23{letter-spacing:18.818591pt;}
.ls9{letter-spacing:18.823437pt;}
.ls2{letter-spacing:19.222484pt;}
.ls33{letter-spacing:19.374562pt;}
.ls35{letter-spacing:21.527291pt;}
.ls31{letter-spacing:22.050104pt;}
.ls17{letter-spacing:22.532811pt;}
.ls15{letter-spacing:22.574564pt;}
.ls5{letter-spacing:29.090933pt;}
.ls3d{letter-spacing:33.043349pt;}
.ls1a{letter-spacing:39.658880pt;}
.ls2c{letter-spacing:48.523677pt;}
.ls36{letter-spacing:63.302775pt;}
.ls2f{letter-spacing:104.888665pt;}
.ls1f{letter-spacing:126.080105pt;}
.ls32{letter-spacing:326.225726pt;}
.ls3f{letter-spacing:371.898492pt;}
.ls34{letter-spacing:481.571310pt;}
.ls2b{letter-spacing:496.058595pt;}
.ls2d{letter-spacing:633.716892pt;}
.ls24{letter-spacing:640.640534pt;}
.ls38{letter-spacing:853.411620pt;}
.ls3c{letter-spacing:959.302618pt;}
.ws1c{word-spacing:-58.181867pt;}
.ws22{word-spacing:-48.523677pt;}
.ws39{word-spacing:-42.065490pt;}
.ws1a{word-spacing:-37.899668pt;}
.ws7{word-spacing:-34.611401pt;}
.ws23{word-spacing:-29.521250pt;}
.ws41{word-spacing:-21.725109pt;}
.ws45{word-spacing:-18.583288pt;}
.ws18{word-spacing:-16.162923pt;}
.ws21{word-spacing:-8.603084pt;}
.ws19{word-spacing:-6.446551pt;}
.ws20{word-spacing:-5.371084pt;}
.ws38{word-spacing:-2.606548pt;}
.ws25{word-spacing:-2.141093pt;}
.ws10{word-spacing:-0.711994pt;}
.wsf{word-spacing:-0.626980pt;}
.ws12{word-spacing:-0.076513pt;}
.ws3a{word-spacing:-0.058182pt;}
.wsa{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.046545pt;}
.ws1b{word-spacing:0.000000pt;}
.ws16{word-spacing:0.011636pt;}
.ws29{word-spacing:0.244364pt;}
.ws3{word-spacing:0.791273pt;}
.ws3e{word-spacing:0.826183pt;}
.ws44{word-spacing:0.942546pt;}
.ws33{word-spacing:1.408001pt;}
.ws36{word-spacing:1.466183pt;}
.ws3b{word-spacing:2.280729pt;}
.ws4b{word-spacing:2.571639pt;}
.ws9{word-spacing:2.614186pt;}
.ws30{word-spacing:2.862548pt;}
.wsd{word-spacing:2.879856pt;}
.ws8{word-spacing:2.932989pt;}
.ws2e{word-spacing:2.978912pt;}
.ws43{word-spacing:3.037093pt;}
.ws4d{word-spacing:3.092391pt;}
.ws2c{word-spacing:3.095275pt;}
.ws4a{word-spacing:3.153457pt;}
.ws5{word-spacing:3.211639pt;}
.wsc{word-spacing:3.251793pt;}
.ws15{word-spacing:3.269821pt;}
.ws2a{word-spacing:3.328003pt;}
.ws11{word-spacing:3.379314pt;}
.ws34{word-spacing:3.444367pt;}
.ws1d{word-spacing:3.560730pt;}
.ws42{word-spacing:3.618912pt;}
.ws2{word-spacing:3.700367pt;}
.ws13{word-spacing:3.758549pt;}
.ws48{word-spacing:4.258913pt;}
.ws46{word-spacing:4.317095pt;}
.ws49{word-spacing:5.306186pt;}
.ws3d{word-spacing:5.538914pt;}
.ws37{word-spacing:5.888005pt;}
.ws2f{word-spacing:6.586187pt;}
.ws3c{word-spacing:6.760733pt;}
.ws4{word-spacing:7.307642pt;}
.ws1e{word-spacing:7.400733pt;}
.ws6{word-spacing:8.830849pt;}
.ws32{word-spacing:12.113465pt;}
.ws1f{word-spacing:16.942560pt;}
.ws3f{word-spacing:19.968017pt;}
.ws4c{word-spacing:20.189108pt;}
.ws1{word-spacing:20.722347pt;}
.ws31{word-spacing:20.770926pt;}
.ws2b{word-spacing:22.004382pt;}
.wse{word-spacing:23.325767pt;}
.ws35{word-spacing:24.203657pt;}
.ws47{word-spacing:24.785475pt;}
.ws26{word-spacing:25.204385pt;}
.ws40{word-spacing:28.462861pt;}
.ws14{word-spacing:28.615887pt;}
.wsb{word-spacing:29.383028pt;}
.ws0{word-spacing:34.338985pt;}
.ws24{word-spacing:88.180437pt;}
.ws27{word-spacing:108.229908pt;}
.ws28{word-spacing:144.116484pt;}
.ws2d{word-spacing:670.615832pt;}
._1{margin-left:-8.630654pt;}
._1f{margin-left:-7.192228pt;}
._6{margin-left:-5.210534pt;}
._23{margin-left:-4.046104pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.721549pt;}
._3{width:1.785310pt;}
._18{width:2.846279pt;}
._1e{width:5.107455pt;}
._4{width:14.765571pt;}
._20{width:19.374562pt;}
._13{width:20.363653pt;}
._7{width:22.920277pt;}
._5{width:24.664775pt;}
._19{width:25.832749pt;}
._24{width:26.996386pt;}
._a{width:29.730934pt;}
._22{width:32.290936pt;}
._1a{width:34.698047pt;}
._1b{width:38.256533pt;}
._8{width:53.818227pt;}
._17{width:86.077200pt;}
._21{width:126.080105pt;}
._14{width:323.473007pt;}
._1d{width:491.869501pt;}
._d{width:581.880658pt;}
._12{width:602.792834pt;}
._1c{width:674.735108pt;}
._c{width:703.366322pt;}
._10{width:728.762155pt;}
._f{width:747.127526pt;}
._11{width:750.028179pt;}
._b{width:1099.010028pt;}
._15{width:1151.422950pt;}
._e{width:1177.839444pt;}
._16{width:1250.131745pt;}
._9{width:1682.963096pt;}
.fs7{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:56.149333pt;}
.y21{bottom:112.182667pt;}
.y20{bottom:136.890667pt;}
.y5c{bottom:145.454667pt;}
.y1f{bottom:161.597333pt;}
.y3e{bottom:162.080000pt;}
.y5b{bottom:163.520000pt;}
.y3d{bottom:180.145333pt;}
.y5a{bottom:181.585333pt;}
.y1e{bottom:186.305333pt;}
.y3c{bottom:205.514667pt;}
.y59{bottom:206.954667pt;}
.y1d{bottom:211.012000pt;}
.y7a{bottom:214.361333pt;}
.y79{bottom:230.302667pt;}
.y1c{bottom:241.116000pt;}
.y3b{bottom:258.728000pt;}
.y58{bottom:260.168000pt;}
.y78{bottom:260.646667pt;}
.y1b{bottom:275.245333pt;}
.y57{bottom:278.234667pt;}
.y3a{bottom:279.600000pt;}
.y39{bottom:289.577333pt;}
.y56{bottom:296.300000pt;}
.y77{bottom:306.476000pt;}
.y1a{bottom:320.292000pt;}
.y76{bottom:324.541333pt;}
.y55{bottom:328.769333pt;}
.y38{bottom:329.778667pt;}
.y75{bottom:342.606667pt;}
.y19{bottom:352.902667pt;}
.y74{bottom:367.314667pt;}
.y54{bottom:374.388000pt;}
.y37{bottom:375.397333pt;}
.y73{bottom:385.380000pt;}
.y18{bottom:385.513333pt;}
.y53{bottom:392.454667pt;}
.y36{bottom:393.464000pt;}
.y72{bottom:403.445333pt;}
.y52{bottom:410.520000pt;}
.y35{bottom:411.529333pt;}
.y17{bottom:418.125333pt;}
.y71{bottom:428.153333pt;}
.y51{bottom:435.888000pt;}
.y34{bottom:436.897333pt;}
.y70{bottom:446.218667pt;}
.y16{bottom:450.736000pt;}
.y6f{bottom:464.284000pt;}
.y50{bottom:480.376000pt;}
.y15{bottom:483.346667pt;}
.y4f{bottom:489.102667pt;}
.y33{bottom:490.112000pt;}
.y6e{bottom:496.753333pt;}
.y14{bottom:515.958667pt;}
.y32{bottom:522.581333pt;}
.y4e{bottom:528.477333pt;}
.y13{bottom:548.569333pt;}
.y6d{bottom:552.538667pt;}
.y4d{bottom:560.946667pt;}
.y31{bottom:568.201333pt;}
.y6c{bottom:579.902667pt;}
.y12{bottom:581.180000pt;}
.y30{bottom:586.266667pt;}
.y6b{bottom:597.968000pt;}
.y2f{bottom:604.332000pt;}
.y4c{bottom:606.566667pt;}
.y11{bottom:613.792000pt;}
.y6a{bottom:622.676000pt;}
.y4b{bottom:624.632000pt;}
.y2e{bottom:629.700000pt;}
.y4a{bottom:642.697333pt;}
.y10{bottom:646.402667pt;}
.y69{bottom:647.382667pt;}
.y49{bottom:668.065333pt;}
.y68{bottom:672.090667pt;}
.yf{bottom:679.013333pt;}
.y2d{bottom:682.914667pt;}
.y67{bottom:690.156000pt;}
.ye{bottom:711.625333pt;}
.y2c{bottom:715.592000pt;}
.y66{bottom:720.218667pt;}
.y48{bottom:721.280000pt;}
.y2b{bottom:748.061333pt;}
.y47{bottom:753.957333pt;}
.y65{bottom:755.677333pt;}
.yd{bottom:756.670667pt;}
.yc{bottom:772.610667pt;}
.y46{bottom:786.428000pt;}
.yb{bottom:788.552000pt;}
.y2a{bottom:793.681333pt;}
.y64{bottom:801.296000pt;}
.ya{bottom:804.492000pt;}
.y29{bottom:811.746667pt;}
.y63{bottom:819.361333pt;}
.y9{bottom:820.432000pt;}
.y28{bottom:829.812000pt;}
.y45{bottom:832.046667pt;}
.y8{bottom:836.372000pt;}
.y62{bottom:837.428000pt;}
.y44{bottom:850.112000pt;}
.y27{bottom:855.181333pt;}
.y7{bottom:855.630667pt;}
.y61{bottom:862.796000pt;}
.y43{bottom:868.177333pt;}
.y6{bottom:882.526667pt;}
.y42{bottom:893.546667pt;}
.y60{bottom:906.033333pt;}
.y5{bottom:906.436000pt;}
.y26{bottom:908.394667pt;}
.y5f{bottom:925.850667pt;}
.y4{bottom:927.158667pt;}
.y25{bottom:940.865333pt;}
.y41{bottom:946.761333pt;}
.y3{bottom:953.194667pt;}
.y5e{bottom:955.528000pt;}
.y40{bottom:979.438667pt;}
.y2{bottom:987.200000pt;}
.y5d{bottom:987.997333pt;}
.y24{bottom:993.821333pt;}
.y23{bottom:998.837333pt;}
.y1{bottom:1010.580000pt;}
.y3f{bottom:1011.908000pt;}
.h5{height:39.850400pt;}
.hb{height:41.018216pt;}
.h4{height:43.636400pt;}
.h3{height:45.525402pt;}
.hf{height:51.464807pt;}
.ha{height:55.907067pt;}
.h6{height:57.384800pt;}
.h7{height:58.345733pt;}
.h8{height:60.541733pt;}
.h9{height:63.700400pt;}
.h2{height:68.861600pt;}
.hc{height:82.996400pt;}
.hd{height:83.545733pt;}
.he{height:114.101333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x2{left:108.018667pt;}
.x35{left:117.860000pt;}
.x1{left:120.054667pt;}
.x33{left:126.324000pt;}
.xa{left:130.406667pt;}
.x8{left:132.364000pt;}
.x31{left:139.038667pt;}
.x34{left:144.910667pt;}
.x29{left:165.645333pt;}
.x2a{left:176.554667pt;}
.x1c{left:190.012000pt;}
.xd{left:192.258667pt;}
.x1e{left:194.446667pt;}
.x32{left:207.456000pt;}
.x1d{left:209.394667pt;}
.x2b{left:227.373333pt;}
.x22{left:233.274667pt;}
.x11{left:236.900000pt;}
.x6{left:245.132000pt;}
.x2c{left:248.054667pt;}
.x3{left:263.276000pt;}
.x13{left:271.308000pt;}
.xe{left:273.048000pt;}
.xb{left:276.200000pt;}
.x1a{left:284.577333pt;}
.x4{left:298.881333pt;}
.xf{left:304.489333pt;}
.x2d{left:319.433333pt;}
.x5{left:323.184000pt;}
.x23{left:326.225333pt;}
.x1b{left:347.626667pt;}
.x30{left:352.704000pt;}
.x7{left:367.832000pt;}
.x25{left:370.536000pt;}
.x26{left:380.294667pt;}
.x27{left:385.837333pt;}
.x1f{left:387.969333pt;}
.xc{left:393.214667pt;}
.x28{left:396.746667pt;}
.x20{left:427.532000pt;}
.x24{left:429.145333pt;}
.x21{left:448.730667pt;}
.x2e{left:493.686667pt;}
.x2f{left:515.161333pt;}
.x12{left:523.874667pt;}
.x10{left:525.005333pt;}
.x14{left:577.229333pt;}
.x15{left:584.764000pt;}
.x16{left:590.534667pt;}
.x17{left:611.201333pt;}
.x18{left:625.081333pt;}
.x19{left:636.844000pt;}
}




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