
    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_25e9ec160dddd2133186e15f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_82ea5520c13c5732cb5f9c06.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080078;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_20c4ab5149956c8c569d2913.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_9e37405e6894a089f4bd2147.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_651673f0863105dcba721571.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_2af4360a7009f7c0501fe25d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_5e0f2e2179d2b91645c58970.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_8f9e7945febbd6ad5a9608cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_03b33f4e99db02b33e9dfacb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_ae4958bc8ca139e67a8ce2d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.960449;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_f983f3122b14f7ec739e24ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.874023;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_38912a8bb3d99a676807f0d3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.096680;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_13b252323e8169a4d16a2abd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.096680;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_a96da5ab82d5d0c167202eed.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.166504;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_f3df8ab4e6fd1805f997fe0a.woff2')format("woff");}.fff{font-family:fff;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_26e69f4a1469d3ace441e8b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6aee2fce19211b4806fc385f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_49d2afe681d8d024e01c1c77.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.690918;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:ff14;src:url('chunks/assets/font_065dbcb4a5a17e959cb5b16e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.029785;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:ff15;src:url('chunks/assets/font_336e181b85c2a95bf6b6c7f4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.971191;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:ff16;src:url('chunks/assets/font_b59dd18a57a542d9fdd7b4c7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.766602;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:ff17;src:url('chunks/assets/font_73da18552c0703a01312377e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.983398;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:ff18;src:url('chunks/assets/font_28a04c03ea728e9c1f24fe81.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.983398;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:ff19;src:url('chunks/assets/font_3ff68f931be4fba5e1a1bd35.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.128906;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:ff1a;src:url('chunks/assets/font_36effd25952af284c63d3889.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-82.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls29{letter-spacing:-0.720000px;}
.ls46{letter-spacing:-0.573000px;}
.ls3f{letter-spacing:-0.351600px;}
.ls3d{letter-spacing:-0.308400px;}
.lsc{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.233400px;}
.lsb{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.187200px;}
.ls15{letter-spacing:-0.144000px;}
.ls42{letter-spacing:-0.132600px;}
.ls1a{letter-spacing:-0.075000px;}
.ls11{letter-spacing:-0.072000px;}
.ls41{letter-spacing:-0.051840px;}
.ls7{letter-spacing:-0.041760px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.072000px;}
.ls45{letter-spacing:0.115200px;}
.ls44{letter-spacing:0.121200px;}
.ls6{letter-spacing:0.141000px;}
.ls43{letter-spacing:0.147000px;}
.ls20{letter-spacing:0.149760px;}
.ls19{letter-spacing:0.150000px;}
.ls3a{letter-spacing:0.155400px;}
.ls3{letter-spacing:0.169200px;}
.ls2{letter-spacing:0.169920px;}
.ls17{letter-spacing:0.186600px;}
.ls13{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.270600px;}
.ls1b{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.313800px;}
.ls3c{letter-spacing:0.316800px;}
.ls1{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.720000px;}
.ls2a{letter-spacing:2.088000px;}
.ls39{letter-spacing:3.185280px;}
.ls30{letter-spacing:3.528000px;}
.ls26{letter-spacing:4.968000px;}
.ls27{letter-spacing:5.688000px;}
.ls9{letter-spacing:7.128000px;}
.ls25{letter-spacing:9.288000px;}
.lse{letter-spacing:12.888000px;}
.ls3b{letter-spacing:15.425280px;}
.ls2d{letter-spacing:15.984000px;}
.lsf{letter-spacing:16.992000px;}
.ls2c{letter-spacing:17.424000px;}
.ls10{letter-spacing:17.928000px;}
.ls23{letter-spacing:21.024000px;}
.ls2e{letter-spacing:22.464000px;}
.ls1e{letter-spacing:24.624000px;}
.ls1f{letter-spacing:25.344000px;}
.ls24{letter-spacing:28.224000px;}
.ls28{letter-spacing:29.448000px;}
.ls38{letter-spacing:32.705280px;}
.ls1d{letter-spacing:33.984000px;}
.ls36{letter-spacing:34.145280px;}
.ls33{letter-spacing:34.865280px;}
.ls34{letter-spacing:35.585280px;}
.ls35{letter-spacing:37.025280px;}
.ls37{letter-spacing:38.465280px;}
.ls32{letter-spacing:43.505280px;}
.lsd{letter-spacing:51.264000px;}
.ls12{letter-spacing:195.048000px;}
.ls2b{letter-spacing:195.840000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.236400px;}
.wsb{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.856000px;}
.ws19{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.640000px;}
.ws6{word-spacing:-17.424000px;}
.ws5{word-spacing:-17.352000px;}
.ws9{word-spacing:-17.280000px;}
.ws13{word-spacing:-17.208000px;}
.ws10{word-spacing:-17.167080px;}
.ws7{word-spacing:-17.136000px;}
.ws12{word-spacing:-17.107200px;}
.wsf{word-spacing:-17.029440px;}
.wse{word-spacing:-16.980480px;}
.ws3{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.416000px;}
.ws16{word-spacing:-16.326600px;}
.ws1b{word-spacing:-16.280640px;}
.ws18{word-spacing:-16.272000px;}
.ws21{word-spacing:-16.269240px;}
.ws22{word-spacing:-16.179840px;}
.ws1e{word-spacing:-16.119240px;}
.ws25{word-spacing:-16.085040px;}
.ws26{word-spacing:-16.035840px;}
.ws1f{word-spacing:-15.978240px;}
.ws1c{word-spacing:-15.963840px;}
.ws23{word-spacing:-15.912000px;}
.ws24{word-spacing:-15.831240px;}
.wsd{word-spacing:-15.696000px;}
.ws1d{word-spacing:-15.655440px;}
.ws20{word-spacing:-15.612240px;}
.ws15{word-spacing:-15.226440px;}
.ws17{word-spacing:-14.970240px;}
.ws11{word-spacing:-14.402160px;}
.ws2{word-spacing:-10.398240px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-15.830640px;}
._a{margin-left:-11.309040px;}
._b{margin-left:-9.871440px;}
._1d{margin-left:-8.723760px;}
._c{margin-left:-4.942320px;}
._9{margin-left:-2.968560px;}
._2{margin-left:-1.883280px;}
._1{width:1.184160px;}
._0{width:2.343600px;}
._3{width:4.031280px;}
._6{width:5.061120px;}
._5{width:6.066720px;}
._7{width:7.920000px;}
._8{width:9.072000px;}
._d{width:10.335840px;}
._e{width:11.360640px;}
._11{width:12.416640px;}
._f{width:13.571280px;}
._16{width:15.121440px;}
._15{width:16.200000px;}
._22{width:17.656800px;}
._14{width:19.224000px;}
._12{width:20.520000px;}
._13{width:21.523200px;}
._10{width:24.696000px;}
._1c{width:25.739520px;}
._19{width:29.232000px;}
._18{width:31.032000px;}
._1e{width:58.536000px;}
._1f{width:59.544000px;}
._20{width:62.739840px;}
._21{width:68.950080px;}
._1b{width:177.696000px;}
._17{width:626.688000px;}
._1a{width:654.956640px;}
.fc8{color:rgb(0,51,102);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc1{color:rgb(23,54,93);}
.fc9{color:rgb(31,31,31);}
.fc7{color:rgb(102,102,102);}
.fc6{color:rgb(51,51,51);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fsb{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:69.822393px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:22.320000px;}
.y1{bottom:60.516000px;}
.y92{bottom:82.116000px;}
.y91{bottom:96.696000px;}
.y135{bottom:97.236000px;}
.yaf{bottom:99.216000px;}
.yd9{bottom:102.996000px;}
.y77{bottom:109.656000px;}
.y90{bottom:111.276000px;}
.y50{bottom:112.716000px;}
.yae{bottom:119.736000px;}
.yd8{bottom:122.076000px;}
.y8f{bottom:123.516000px;}
.y4f{bottom:133.056000px;}
.yd7{bottom:140.616000px;}
.y32{bottom:151.590000px;}
.y4e{bottom:153.570000px;}
.yad{bottom:158.610000px;}
.yd6{bottom:159.330000px;}
.y134{bottom:167.790000px;}
.y9f{bottom:168.510000px;}
.y4d{bottom:173.910000px;}
.yd5{bottom:178.410000px;}
.yac{bottom:182.010000px;}
.y133{bottom:186.690000px;}
.y31{bottom:189.750000px;}
.yd4{bottom:198.930000px;}
.y9e{bottom:203.970000px;}
.yab{bottom:205.050000px;}
.y132{bottom:207.210000px;}
.y4c{bottom:209.370000px;}
.y30{bottom:215.490000px;}
.yd3{bottom:219.450000px;}
.y9d{bottom:224.310000px;}
.y131{bottom:227.775000px;}
.y19{bottom:227.955000px;}
.y4b{bottom:229.935000px;}
.yaa{bottom:239.655000px;}
.yd2{bottom:239.835000px;}
.y112{bottom:244.875000px;}
.y18{bottom:246.855000px;}
.y4a{bottom:250.455000px;}
.ya9{bottom:260.175000px;}
.yd1{bottom:260.355000px;}
.y2f{bottom:261.795000px;}
.y130{bottom:263.235000px;}
.y111{bottom:265.395000px;}
.y17{bottom:267.555000px;}
.y67{bottom:271.875000px;}
.y9c{bottom:280.335000px;}
.ya8{bottom:280.695000px;}
.yd0{bottom:280.875000px;}
.y12f{bottom:283.575000px;}
.y49{bottom:285.915000px;}
.y16{bottom:288.255000px;}
.y66{bottom:292.395000px;}
.y9b{bottom:300.315000px;}
.ya7{bottom:301.035000px;}
.ycf{bottom:301.215000px;}
.y14d{bottom:303.915000px;}
.y8e{bottom:304.275000px;}
.y48{bottom:306.255000px;}
.y15{bottom:308.955000px;}
.y2e{bottom:309.855000px;}
.y12e{bottom:312.195000px;}
.y65{bottom:312.735000px;}
.y9a{bottom:313.815000px;}
.yfe{bottom:319.215000px;}
.yce{bottom:321.735000px;}
.y14c{bottom:322.455000px;}
.y8d{bottom:324.615000px;}
.y47{bottom:326.775000px;}
.y14{bottom:329.655000px;}
.y2d{bottom:331.275000px;}
.y64{bottom:334.695000px;}
.ya6{bottom:336.495000px;}
.yfd{bottom:339.555000px;}
.y14b{bottom:341.175000px;}
.y8c{bottom:345.135000px;}
.y46{bottom:347.115000px;}
.y2c{bottom:349.815000px;}
.y13{bottom:350.355000px;}
.y63{bottom:356.835000px;}
.ya5{bottom:357.015000px;}
.y12d{bottom:359.715000px;}
.y14a{bottom:359.895000px;}
.yfc{bottom:360.075000px;}
.ycd{bottom:360.615000px;}
.y8b{bottom:365.655000px;}
.y45{bottom:367.635000px;}
.y2b{bottom:368.535000px;}
.y12{bottom:371.055000px;}
.y62{bottom:377.355000px;}
.y149{bottom:378.615000px;}
.yfb{bottom:380.415000px;}
.yea{bottom:380.595000px;}
.ycc{bottom:383.835000px;}
.y8a{bottom:385.995000px;}
.y2a{bottom:387.255000px;}
.y12c{bottom:387.435000px;}
.y110{bottom:387.975000px;}
.y11{bottom:391.755000px;}
.y148{bottom:397.515000px;}
.y61{bottom:397.695000px;}
.ye9{bottom:401.115000px;}
.yfa{bottom:401.475000px;}
.y44{bottom:403.095000px;}
.y89{bottom:406.335000px;}
.ycb{bottom:407.055000px;}
.y10f{bottom:408.495000px;}
.ya4{bottom:408.855000px;}
.y10{bottom:412.455000px;}
.y29{bottom:414.435000px;}
.y147{bottom:416.235000px;}
.y11c{bottom:419.505000px;}
.y60{bottom:419.865000px;}
.yf9{bottom:421.125000px;}
.ye8{bottom:421.485000px;}
.y43{bottom:423.645000px;}
.y88{bottom:427.605000px;}
.y10e{bottom:429.045000px;}
.yf{bottom:433.185000px;}
.y12b{bottom:434.445000px;}
.y146{bottom:434.985000px;}
.y11b{bottom:439.845000px;}
.y5f{bottom:440.205000px;}
.yca{bottom:441.645000px;}
.ye7{bottom:442.005000px;}
.y42{bottom:443.985000px;}
.y76{bottom:445.605000px;}
.y87{bottom:448.665000px;}
.y10d{bottom:449.385000px;}
.y145{bottom:453.705000px;}
.ye{bottom:453.885000px;}
.y12a{bottom:454.965000px;}
.y11a{bottom:460.365000px;}
.y5e{bottom:460.725000px;}
.y28{bottom:460.905000px;}
.yf8{bottom:461.985000px;}
.yc9{bottom:462.165000px;}
.ye6{bottom:462.345000px;}
.y41{bottom:464.505000px;}
.y75{bottom:465.945000px;}
.y86{bottom:469.725000px;}
.y144{bottom:472.425000px;}
.y129{bottom:475.485000px;}
.y27{bottom:479.445000px;}
.y119{bottom:480.885000px;}
.yc8{bottom:482.505000px;}
.y5d{bottom:482.685000px;}
.ye5{bottom:482.865000px;}
.y40{bottom:485.025000px;}
.yd{bottom:489.525000px;}
.y10c{bottom:490.245000px;}
.y143{bottom:491.145000px;}
.y99{bottom:493.305000px;}
.y128{bottom:495.825000px;}
.y26{bottom:498.165000px;}
.y74{bottom:500.865000px;}
.y118{bottom:501.225000px;}
.yf7{bottom:503.025000px;}
.y5c{bottom:503.205000px;}
.ye4{bottom:503.385000px;}
.y3f{bottom:505.365000px;}
.y85{bottom:505.905000px;}
.y10b{bottom:509.325000px;}
.y98{bottom:509.685000px;}
.y142{bottom:509.865000px;}
.ybc{bottom:510.225000px;}
.yc7{bottom:517.965000px;}
.y73{bottom:520.125000px;}
.y117{bottom:521.745000px;}
.yf6{bottom:523.365000px;}
.y5b{bottom:523.725000px;}
.yc{bottom:524.805000px;}
.y25{bottom:525.525000px;}
.y3e{bottom:525.885000px;}
.y84{bottom:526.425000px;}
.y97{bottom:528.405000px;}
.y141{bottom:528.765000px;}
.y10a{bottom:529.845000px;}
.ybb{bottom:530.565000px;}
.y127{bottom:531.285000px;}
.yc6{bottom:538.485000px;}
.y72{bottom:540.465000px;}
.y116{bottom:542.265000px;}
.y96{bottom:542.985000px;}
.yb{bottom:544.605000px;}
.y5a{bottom:545.685000px;}
.y3d{bottom:546.225000px;}
.y83{bottom:546.765000px;}
.y140{bottom:547.485000px;}
.y109{bottom:550.185000px;}
.yba{bottom:551.085000px;}
.y126{bottom:551.805000px;}
.y95{bottom:557.565000px;}
.yf5{bottom:558.825000px;}
.yc5{bottom:559.005000px;}
.ye3{bottom:559.185000px;}
.y71{bottom:560.985000px;}
.y115{bottom:562.605000px;}
.y13f{bottom:566.205000px;}
.y3c{bottom:566.745000px;}
.y82{bottom:567.285000px;}
.y108{bottom:570.705000px;}
.yb9{bottom:571.605000px;}
.y24{bottom:571.965000px;}
.y94{bottom:572.145000px;}
.y125{bottom:572.325000px;}
.yc4{bottom:579.345000px;}
.ye2{bottom:579.705000px;}
.y70{bottom:581.505000px;}
.ya{bottom:582.405000px;}
.y93{bottom:584.385000px;}
.y13e{bottom:584.925000px;}
.y81{bottom:587.805000px;}
.y59{bottom:587.985000px;}
.y23{bottom:590.505000px;}
.y107{bottom:591.045000px;}
.yb8{bottom:591.945000px;}
.y124{bottom:592.665000px;}
.yf4{bottom:599.685000px;}
.ye1{bottom:600.045000px;}
.y6f{bottom:601.845000px;}
.y3b{bottom:602.205000px;}
.y9{bottom:602.565000px;}
.y13d{bottom:603.645000px;}
.y114{bottom:604.185000px;}
.y58{bottom:606.705000px;}
.y80{bottom:608.190000px;}
.y22{bottom:609.270000px;}
.y106{bottom:611.610000px;}
.y123{bottom:613.230000px;}
.yc3{bottom:614.850000px;}
.yf3{bottom:620.250000px;}
.ye0{bottom:620.610000px;}
.y6e{bottom:622.410000px;}
.y8{bottom:622.770000px;}
.y57{bottom:625.290000px;}
.yb7{bottom:627.450000px;}
.y21{bottom:627.810000px;}
.y7f{bottom:628.710000px;}
.y105{bottom:632.130000px;}
.y122{bottom:633.570000px;}
.yc2{bottom:636.990000px;}
.y3a{bottom:637.710000px;}
.yf2{bottom:640.770000px;}
.y13c{bottom:641.310000px;}
.y113{bottom:641.490000px;}
.y7{bottom:642.750000px;}
.y56{bottom:644.010000px;}
.y20{bottom:646.530000px;}
.yb6{bottom:647.970000px;}
.y7e{bottom:649.050000px;}
.y104{bottom:652.470000px;}
.y121{bottom:654.090000px;}
.y39{bottom:658.230000px;}
.yc1{bottom:659.130000px;}
.y13b{bottom:660.030000px;}
.ydf{bottom:660.210000px;}
.yf1{bottom:661.110000px;}
.y55{bottom:662.730000px;}
.y6{bottom:663.630000px;}
.yb5{bottom:668.490000px;}
.y7d{bottom:669.570000px;}
.y103{bottom:672.990000px;}
.y1f{bottom:673.890000px;}
.y120{bottom:674.610000px;}
.ya3{bottom:675.690000px;}
.y38{bottom:678.570000px;}
.y13a{bottom:678.750000px;}
.yc0{bottom:680.370000px;}
.yf0{bottom:681.630000px;}
.y6d{bottom:682.530000px;}
.yde{bottom:685.050000px;}
.yb4{bottom:689.370000px;}
.y7c{bottom:690.090000px;}
.y11f{bottom:694.950000px;}
.y5{bottom:698.910000px;}
.y54{bottom:702.510000px;}
.y6c{bottom:702.690000px;}
.ydd{bottom:708.090000px;}
.yb3{bottom:709.890000px;}
.y7b{bottom:710.430000px;}
.ya2{bottom:713.310000px;}
.y102{bottom:713.850000px;}
.y37{bottom:715.470000px;}
.yef{bottom:717.090000px;}
.ybf{bottom:717.450000px;}
.y139{bottom:719.250000px;}
.y1e{bottom:719.970000px;}
.y6b{bottom:723.930000px;}
.yb2{bottom:730.230000px;}
.y53{bottom:730.410000px;}
.y7a{bottom:730.950000px;}
.ydc{bottom:731.310000px;}
.ya1{bottom:733.650000px;}
.y36{bottom:734.370000px;}
.y11e{bottom:735.990000px;}
.ybe{bottom:736.170000px;}
.y101{bottom:737.070000px;}
.yee{bottom:737.430000px;}
.y4{bottom:737.790000px;}
.y1d{bottom:738.870000px;}
.y138{bottom:739.770000px;}
.y6a{bottom:742.470000px;}
.yb1{bottom:750.750000px;}
.y79{bottom:751.470000px;}
.y35{bottom:752.910000px;}
.ya0{bottom:754.170000px;}
.y100{bottom:756.330000px;}
.y1c{bottom:757.410000px;}
.yed{bottom:759.570000px;}
.y69{bottom:761.190000px;}
.y11d{bottom:764.430000px;}
.ybd{bottom:765.690000px;}
.y34{bottom:771.630000px;}
.ydb{bottom:771.810000px;}
.y1b{bottom:776.130000px;}
.y52{bottom:777.210000px;}
.yff{bottom:778.110000px;}
.y137{bottom:778.290000px;}
.yec{bottom:781.170000px;}
.y68{bottom:788.370000px;}
.yb0{bottom:789.270000px;}
.y3{bottom:791.970000px;}
.y78{bottom:792.330000px;}
.yeb{bottom:799.920000px;}
.y33{bottom:801.180000px;}
.y1a{bottom:803.520000px;}
.y51{bottom:812.700000px;}
.yda{bottom:812.880000px;}
.y136{bottom:813.420000px;}
.h16{height:38.158594px;}
.h11{height:39.477656px;}
.h14{height:50.035781px;}
.hb{height:52.177060px;}
.h2{height:53.302500px;}
.h18{height:54.208125px;}
.h12{height:56.754492px;}
.h15{height:57.937500px;}
.h9{height:59.738906px;}
.h1b{height:62.908594px;}
.hc{height:62.969707px;}
.h10{height:63.210938px;}
.h17{height:65.010937px;}
.h7{height:65.124096px;}
.he{height:65.671875px;}
.ha{height:67.901484px;}
.h1a{height:68.084282px;}
.h13{height:68.267813px;}
.hd{height:68.378906px;}
.h5{height:70.664062px;}
.hf{height:74.004654px;}
.h19{height:76.836094px;}
.h6{height:78.367500px;}
.h8{height:84.070547px;}
.h4{height:84.898125px;}
.h3{height:135.947109px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:10.620000px;}
.x3{left:21.060000px;}
.x2{left:53.100000px;}
.xd{left:63.720000px;}
.xc{left:80.100000px;}
.x8{left:106.200000px;}
.x17{left:133.200000px;}
.x5{left:151.590000px;}
.x9{left:172.110000px;}
.xa{left:181.290000px;}
.x4{left:182.550000px;}
.x11{left:214.050000px;}
.x15{left:589.575000px;}
.x12{left:643.935000px;}
.xf{left:662.295000px;}
.x14{left:666.075000px;}
.x18{left:669.315000px;}
.x13{left:684.435000px;}
.x6{left:686.055000px;}
.xb{left:715.605000px;}
.x10{left:753.765000px;}
.xe{left:755.025000px;}
.x16{left:1139.910000px;}
.x1{left:1148.370000px;}
@media print{
.v2{vertical-align:-72.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls46{letter-spacing:-0.509333pt;}
.ls3f{letter-spacing:-0.312533pt;}
.ls3d{letter-spacing:-0.274133pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.207467pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.166400pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls42{letter-spacing:-0.117867pt;}
.ls1a{letter-spacing:-0.066667pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls41{letter-spacing:-0.046080pt;}
.ls7{letter-spacing:-0.037120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.064000pt;}
.ls45{letter-spacing:0.102400pt;}
.ls44{letter-spacing:0.107733pt;}
.ls6{letter-spacing:0.125333pt;}
.ls43{letter-spacing:0.130667pt;}
.ls20{letter-spacing:0.133120pt;}
.ls19{letter-spacing:0.133333pt;}
.ls3a{letter-spacing:0.138133pt;}
.ls3{letter-spacing:0.150400pt;}
.ls2{letter-spacing:0.151040pt;}
.ls17{letter-spacing:0.165867pt;}
.ls13{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.240533pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.278933pt;}
.ls3c{letter-spacing:0.281600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:1.856000pt;}
.ls39{letter-spacing:2.831360pt;}
.ls30{letter-spacing:3.136000pt;}
.ls26{letter-spacing:4.416000pt;}
.ls27{letter-spacing:5.056000pt;}
.ls9{letter-spacing:6.336000pt;}
.ls25{letter-spacing:8.256000pt;}
.lse{letter-spacing:11.456000pt;}
.ls3b{letter-spacing:13.711360pt;}
.ls2d{letter-spacing:14.208000pt;}
.lsf{letter-spacing:15.104000pt;}
.ls2c{letter-spacing:15.488000pt;}
.ls10{letter-spacing:15.936000pt;}
.ls23{letter-spacing:18.688000pt;}
.ls2e{letter-spacing:19.968000pt;}
.ls1e{letter-spacing:21.888000pt;}
.ls1f{letter-spacing:22.528000pt;}
.ls24{letter-spacing:25.088000pt;}
.ls28{letter-spacing:26.176000pt;}
.ls38{letter-spacing:29.071360pt;}
.ls1d{letter-spacing:30.208000pt;}
.ls36{letter-spacing:30.351360pt;}
.ls33{letter-spacing:30.991360pt;}
.ls34{letter-spacing:31.631360pt;}
.ls35{letter-spacing:32.911360pt;}
.ls37{letter-spacing:34.191360pt;}
.ls32{letter-spacing:38.671360pt;}
.lsd{letter-spacing:45.568000pt;}
.ls12{letter-spacing:173.376000pt;}
.ls2b{letter-spacing:174.080000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws4{word-spacing:-18.876800pt;}
.wsb{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.872000pt;}
.ws19{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.680000pt;}
.ws6{word-spacing:-15.488000pt;}
.ws5{word-spacing:-15.424000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws13{word-spacing:-15.296000pt;}
.ws10{word-spacing:-15.259627pt;}
.ws7{word-spacing:-15.232000pt;}
.ws12{word-spacing:-15.206400pt;}
.wsf{word-spacing:-15.137280pt;}
.wse{word-spacing:-15.093760pt;}
.ws3{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.592000pt;}
.ws16{word-spacing:-14.512533pt;}
.ws1b{word-spacing:-14.471680pt;}
.ws18{word-spacing:-14.464000pt;}
.ws21{word-spacing:-14.461547pt;}
.ws22{word-spacing:-14.382080pt;}
.ws1e{word-spacing:-14.328213pt;}
.ws25{word-spacing:-14.297813pt;}
.ws26{word-spacing:-14.254080pt;}
.ws1f{word-spacing:-14.202880pt;}
.ws1c{word-spacing:-14.190080pt;}
.ws23{word-spacing:-14.144000pt;}
.ws24{word-spacing:-14.072213pt;}
.wsd{word-spacing:-13.952000pt;}
.ws1d{word-spacing:-13.915947pt;}
.ws20{word-spacing:-13.877547pt;}
.ws15{word-spacing:-13.534613pt;}
.ws17{word-spacing:-13.306880pt;}
.ws11{word-spacing:-12.801920pt;}
.ws2{word-spacing:-9.242880pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-14.071680pt;}
._a{margin-left:-10.052480pt;}
._b{margin-left:-8.774613pt;}
._1d{margin-left:-7.754453pt;}
._c{margin-left:-4.393173pt;}
._9{margin-left:-2.638720pt;}
._2{margin-left:-1.674027pt;}
._1{width:1.052587pt;}
._0{width:2.083200pt;}
._3{width:3.583360pt;}
._6{width:4.498773pt;}
._5{width:5.392640pt;}
._7{width:7.040000pt;}
._8{width:8.064000pt;}
._d{width:9.187413pt;}
._e{width:10.098347pt;}
._11{width:11.037013pt;}
._f{width:12.063360pt;}
._16{width:13.441280pt;}
._15{width:14.400000pt;}
._22{width:15.694933pt;}
._14{width:17.088000pt;}
._12{width:18.240000pt;}
._13{width:19.131733pt;}
._10{width:21.952000pt;}
._1c{width:22.879573pt;}
._19{width:25.984000pt;}
._18{width:27.584000pt;}
._1e{width:52.032000pt;}
._1f{width:52.928000pt;}
._20{width:55.768747pt;}
._21{width:61.288960pt;}
._1b{width:157.952000pt;}
._17{width:557.056000pt;}
._1a{width:582.183680pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fsb{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:62.064349pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:19.840000pt;}
.y1{bottom:53.792000pt;}
.y92{bottom:72.992000pt;}
.y91{bottom:85.952000pt;}
.y135{bottom:86.432000pt;}
.yaf{bottom:88.192000pt;}
.yd9{bottom:91.552000pt;}
.y77{bottom:97.472000pt;}
.y90{bottom:98.912000pt;}
.y50{bottom:100.192000pt;}
.yae{bottom:106.432000pt;}
.yd8{bottom:108.512000pt;}
.y8f{bottom:109.792000pt;}
.y4f{bottom:118.272000pt;}
.yd7{bottom:124.992000pt;}
.y32{bottom:134.746667pt;}
.y4e{bottom:136.506667pt;}
.yad{bottom:140.986667pt;}
.yd6{bottom:141.626667pt;}
.y134{bottom:149.146667pt;}
.y9f{bottom:149.786667pt;}
.y4d{bottom:154.586667pt;}
.yd5{bottom:158.586667pt;}
.yac{bottom:161.786667pt;}
.y133{bottom:165.946667pt;}
.y31{bottom:168.666667pt;}
.yd4{bottom:176.826667pt;}
.y9e{bottom:181.306667pt;}
.yab{bottom:182.266667pt;}
.y132{bottom:184.186667pt;}
.y4c{bottom:186.106667pt;}
.y30{bottom:191.546667pt;}
.yd3{bottom:195.066667pt;}
.y9d{bottom:199.386667pt;}
.y131{bottom:202.466667pt;}
.y19{bottom:202.626667pt;}
.y4b{bottom:204.386667pt;}
.yaa{bottom:213.026667pt;}
.yd2{bottom:213.186667pt;}
.y112{bottom:217.666667pt;}
.y18{bottom:219.426667pt;}
.y4a{bottom:222.626667pt;}
.ya9{bottom:231.266667pt;}
.yd1{bottom:231.426667pt;}
.y2f{bottom:232.706667pt;}
.y130{bottom:233.986667pt;}
.y111{bottom:235.906667pt;}
.y17{bottom:237.826667pt;}
.y67{bottom:241.666667pt;}
.y9c{bottom:249.186667pt;}
.ya8{bottom:249.506667pt;}
.yd0{bottom:249.666667pt;}
.y12f{bottom:252.066667pt;}
.y49{bottom:254.146667pt;}
.y16{bottom:256.226667pt;}
.y66{bottom:259.906667pt;}
.y9b{bottom:266.946667pt;}
.ya7{bottom:267.586667pt;}
.ycf{bottom:267.746667pt;}
.y14d{bottom:270.146667pt;}
.y8e{bottom:270.466667pt;}
.y48{bottom:272.226667pt;}
.y15{bottom:274.626667pt;}
.y2e{bottom:275.426667pt;}
.y12e{bottom:277.506667pt;}
.y65{bottom:277.986667pt;}
.y9a{bottom:278.946667pt;}
.yfe{bottom:283.746667pt;}
.yce{bottom:285.986667pt;}
.y14c{bottom:286.626667pt;}
.y8d{bottom:288.546667pt;}
.y47{bottom:290.466667pt;}
.y14{bottom:293.026667pt;}
.y2d{bottom:294.466667pt;}
.y64{bottom:297.506667pt;}
.ya6{bottom:299.106667pt;}
.yfd{bottom:301.826667pt;}
.y14b{bottom:303.266667pt;}
.y8c{bottom:306.786667pt;}
.y46{bottom:308.546667pt;}
.y2c{bottom:310.946667pt;}
.y13{bottom:311.426667pt;}
.y63{bottom:317.186667pt;}
.ya5{bottom:317.346667pt;}
.y12d{bottom:319.746667pt;}
.y14a{bottom:319.906667pt;}
.yfc{bottom:320.066667pt;}
.ycd{bottom:320.546667pt;}
.y8b{bottom:325.026667pt;}
.y45{bottom:326.786667pt;}
.y2b{bottom:327.586667pt;}
.y12{bottom:329.826667pt;}
.y62{bottom:335.426667pt;}
.y149{bottom:336.546667pt;}
.yfb{bottom:338.146667pt;}
.yea{bottom:338.306667pt;}
.ycc{bottom:341.186667pt;}
.y8a{bottom:343.106667pt;}
.y2a{bottom:344.226667pt;}
.y12c{bottom:344.386667pt;}
.y110{bottom:344.866667pt;}
.y11{bottom:348.226667pt;}
.y148{bottom:353.346667pt;}
.y61{bottom:353.506667pt;}
.ye9{bottom:356.546667pt;}
.yfa{bottom:356.866667pt;}
.y44{bottom:358.306667pt;}
.y89{bottom:361.186667pt;}
.ycb{bottom:361.826667pt;}
.y10f{bottom:363.106667pt;}
.ya4{bottom:363.426667pt;}
.y10{bottom:366.626667pt;}
.y29{bottom:368.386667pt;}
.y147{bottom:369.986667pt;}
.y11c{bottom:372.893333pt;}
.y60{bottom:373.213333pt;}
.yf9{bottom:374.333333pt;}
.ye8{bottom:374.653333pt;}
.y43{bottom:376.573333pt;}
.y88{bottom:380.093333pt;}
.y10e{bottom:381.373333pt;}
.yf{bottom:385.053333pt;}
.y12b{bottom:386.173333pt;}
.y146{bottom:386.653333pt;}
.y11b{bottom:390.973333pt;}
.y5f{bottom:391.293333pt;}
.yca{bottom:392.573333pt;}
.ye7{bottom:392.893333pt;}
.y42{bottom:394.653333pt;}
.y76{bottom:396.093333pt;}
.y87{bottom:398.813333pt;}
.y10d{bottom:399.453333pt;}
.y145{bottom:403.293333pt;}
.ye{bottom:403.453333pt;}
.y12a{bottom:404.413333pt;}
.y11a{bottom:409.213333pt;}
.y5e{bottom:409.533333pt;}
.y28{bottom:409.693333pt;}
.yf8{bottom:410.653333pt;}
.yc9{bottom:410.813333pt;}
.ye6{bottom:410.973333pt;}
.y41{bottom:412.893333pt;}
.y75{bottom:414.173333pt;}
.y86{bottom:417.533333pt;}
.y144{bottom:419.933333pt;}
.y129{bottom:422.653333pt;}
.y27{bottom:426.173333pt;}
.y119{bottom:427.453333pt;}
.yc8{bottom:428.893333pt;}
.y5d{bottom:429.053333pt;}
.ye5{bottom:429.213333pt;}
.y40{bottom:431.133333pt;}
.yd{bottom:435.133333pt;}
.y10c{bottom:435.773333pt;}
.y143{bottom:436.573333pt;}
.y99{bottom:438.493333pt;}
.y128{bottom:440.733333pt;}
.y26{bottom:442.813333pt;}
.y74{bottom:445.213333pt;}
.y118{bottom:445.533333pt;}
.yf7{bottom:447.133333pt;}
.y5c{bottom:447.293333pt;}
.ye4{bottom:447.453333pt;}
.y3f{bottom:449.213333pt;}
.y85{bottom:449.693333pt;}
.y10b{bottom:452.733333pt;}
.y98{bottom:453.053333pt;}
.y142{bottom:453.213333pt;}
.ybc{bottom:453.533333pt;}
.yc7{bottom:460.413333pt;}
.y73{bottom:462.333333pt;}
.y117{bottom:463.773333pt;}
.yf6{bottom:465.213333pt;}
.y5b{bottom:465.533333pt;}
.yc{bottom:466.493333pt;}
.y25{bottom:467.133333pt;}
.y3e{bottom:467.453333pt;}
.y84{bottom:467.933333pt;}
.y97{bottom:469.693333pt;}
.y141{bottom:470.013333pt;}
.y10a{bottom:470.973333pt;}
.ybb{bottom:471.613333pt;}
.y127{bottom:472.253333pt;}
.yc6{bottom:478.653333pt;}
.y72{bottom:480.413333pt;}
.y116{bottom:482.013333pt;}
.y96{bottom:482.653333pt;}
.yb{bottom:484.093333pt;}
.y5a{bottom:485.053333pt;}
.y3d{bottom:485.533333pt;}
.y83{bottom:486.013333pt;}
.y140{bottom:486.653333pt;}
.y109{bottom:489.053333pt;}
.yba{bottom:489.853333pt;}
.y126{bottom:490.493333pt;}
.y95{bottom:495.613333pt;}
.yf5{bottom:496.733333pt;}
.yc5{bottom:496.893333pt;}
.ye3{bottom:497.053333pt;}
.y71{bottom:498.653333pt;}
.y115{bottom:500.093333pt;}
.y13f{bottom:503.293333pt;}
.y3c{bottom:503.773333pt;}
.y82{bottom:504.253333pt;}
.y108{bottom:507.293333pt;}
.yb9{bottom:508.093333pt;}
.y24{bottom:508.413333pt;}
.y94{bottom:508.573333pt;}
.y125{bottom:508.733333pt;}
.yc4{bottom:514.973333pt;}
.ye2{bottom:515.293333pt;}
.y70{bottom:516.893333pt;}
.ya{bottom:517.693333pt;}
.y93{bottom:519.453333pt;}
.y13e{bottom:519.933333pt;}
.y81{bottom:522.493333pt;}
.y59{bottom:522.653333pt;}
.y23{bottom:524.893333pt;}
.y107{bottom:525.373333pt;}
.yb8{bottom:526.173333pt;}
.y124{bottom:526.813333pt;}
.yf4{bottom:533.053333pt;}
.ye1{bottom:533.373333pt;}
.y6f{bottom:534.973333pt;}
.y3b{bottom:535.293333pt;}
.y9{bottom:535.613333pt;}
.y13d{bottom:536.573333pt;}
.y114{bottom:537.053333pt;}
.y58{bottom:539.293333pt;}
.y80{bottom:540.613333pt;}
.y22{bottom:541.573333pt;}
.y106{bottom:543.653333pt;}
.y123{bottom:545.093333pt;}
.yc3{bottom:546.533333pt;}
.yf3{bottom:551.333333pt;}
.ye0{bottom:551.653333pt;}
.y6e{bottom:553.253333pt;}
.y8{bottom:553.573333pt;}
.y57{bottom:555.813333pt;}
.yb7{bottom:557.733333pt;}
.y21{bottom:558.053333pt;}
.y7f{bottom:558.853333pt;}
.y105{bottom:561.893333pt;}
.y122{bottom:563.173333pt;}
.yc2{bottom:566.213333pt;}
.y3a{bottom:566.853333pt;}
.yf2{bottom:569.573333pt;}
.y13c{bottom:570.053333pt;}
.y113{bottom:570.213333pt;}
.y7{bottom:571.333333pt;}
.y56{bottom:572.453333pt;}
.y20{bottom:574.693333pt;}
.yb6{bottom:575.973333pt;}
.y7e{bottom:576.933333pt;}
.y104{bottom:579.973333pt;}
.y121{bottom:581.413333pt;}
.y39{bottom:585.093333pt;}
.yc1{bottom:585.893333pt;}
.y13b{bottom:586.693333pt;}
.ydf{bottom:586.853333pt;}
.yf1{bottom:587.653333pt;}
.y55{bottom:589.093333pt;}
.y6{bottom:589.893333pt;}
.yb5{bottom:594.213333pt;}
.y7d{bottom:595.173333pt;}
.y103{bottom:598.213333pt;}
.y1f{bottom:599.013333pt;}
.y120{bottom:599.653333pt;}
.ya3{bottom:600.613333pt;}
.y38{bottom:603.173333pt;}
.y13a{bottom:603.333333pt;}
.yc0{bottom:604.773333pt;}
.yf0{bottom:605.893333pt;}
.y6d{bottom:606.693333pt;}
.yde{bottom:608.933333pt;}
.yb4{bottom:612.773333pt;}
.y7c{bottom:613.413333pt;}
.y11f{bottom:617.733333pt;}
.y5{bottom:621.253333pt;}
.y54{bottom:624.453333pt;}
.y6c{bottom:624.613333pt;}
.ydd{bottom:629.413333pt;}
.yb3{bottom:631.013333pt;}
.y7b{bottom:631.493333pt;}
.ya2{bottom:634.053333pt;}
.y102{bottom:634.533333pt;}
.y37{bottom:635.973333pt;}
.yef{bottom:637.413333pt;}
.ybf{bottom:637.733333pt;}
.y139{bottom:639.333333pt;}
.y1e{bottom:639.973333pt;}
.y6b{bottom:643.493333pt;}
.yb2{bottom:649.093333pt;}
.y53{bottom:649.253333pt;}
.y7a{bottom:649.733333pt;}
.ydc{bottom:650.053333pt;}
.ya1{bottom:652.133333pt;}
.y36{bottom:652.773333pt;}
.y11e{bottom:654.213333pt;}
.ybe{bottom:654.373333pt;}
.y101{bottom:655.173333pt;}
.yee{bottom:655.493333pt;}
.y4{bottom:655.813333pt;}
.y1d{bottom:656.773333pt;}
.y138{bottom:657.573333pt;}
.y6a{bottom:659.973333pt;}
.yb1{bottom:667.333333pt;}
.y79{bottom:667.973333pt;}
.y35{bottom:669.253333pt;}
.ya0{bottom:670.373333pt;}
.y100{bottom:672.293333pt;}
.y1c{bottom:673.253333pt;}
.yed{bottom:675.173333pt;}
.y69{bottom:676.613333pt;}
.y11d{bottom:679.493333pt;}
.ybd{bottom:680.613333pt;}
.y34{bottom:685.893333pt;}
.ydb{bottom:686.053333pt;}
.y1b{bottom:689.893333pt;}
.y52{bottom:690.853333pt;}
.yff{bottom:691.653333pt;}
.y137{bottom:691.813333pt;}
.yec{bottom:694.373333pt;}
.y68{bottom:700.773333pt;}
.yb0{bottom:701.573333pt;}
.y3{bottom:703.973333pt;}
.y78{bottom:704.293333pt;}
.yeb{bottom:711.040000pt;}
.y33{bottom:712.160000pt;}
.y1a{bottom:714.240000pt;}
.y51{bottom:722.400000pt;}
.yda{bottom:722.560000pt;}
.y136{bottom:723.040000pt;}
.h16{height:33.918750pt;}
.h11{height:35.091250pt;}
.h14{height:44.476250pt;}
.hb{height:46.379609pt;}
.h2{height:47.380000pt;}
.h18{height:48.185000pt;}
.h12{height:50.448438pt;}
.h15{height:51.500000pt;}
.h9{height:53.101250pt;}
.h1b{height:55.918750pt;}
.hc{height:55.973072pt;}
.h10{height:56.187500pt;}
.h17{height:57.787500pt;}
.h7{height:57.888085pt;}
.he{height:58.375000pt;}
.ha{height:60.356875pt;}
.h1a{height:60.519362pt;}
.h13{height:60.682500pt;}
.hd{height:60.781250pt;}
.h5{height:62.812500pt;}
.hf{height:65.781915pt;}
.h19{height:68.298750pt;}
.h6{height:69.660000pt;}
.h8{height:74.729375pt;}
.h4{height:75.465000pt;}
.h3{height:120.841875pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:9.440000pt;}
.x3{left:18.720000pt;}
.x2{left:47.200000pt;}
.xd{left:56.640000pt;}
.xc{left:71.200000pt;}
.x8{left:94.400000pt;}
.x17{left:118.400000pt;}
.x5{left:134.746667pt;}
.x9{left:152.986667pt;}
.xa{left:161.146667pt;}
.x4{left:162.266667pt;}
.x11{left:190.266667pt;}
.x15{left:524.066667pt;}
.x12{left:572.386667pt;}
.xf{left:588.706667pt;}
.x14{left:592.066667pt;}
.x18{left:594.946667pt;}
.x13{left:608.386667pt;}
.x6{left:609.826667pt;}
.xb{left:636.093333pt;}
.x10{left:670.013333pt;}
.xe{left:671.133333pt;}
.x16{left:1013.253333pt;}
.x1{left:1020.773333pt;}
}




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