
    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_b467e63b154cce98414f8a13.woff')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a83d875a653d0e6d4d46d4ef.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_626b19b37e37a16766e3aa72.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ad89cff8d507448c36f57a56.woff')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_7b8d0f0504ff4b26e1f6044d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.331055;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_b00641603297909d98e0ab17.woff')format("woff");}.ff7{font-family:ff7;line-height:1.331055;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_843600ef90a07b4c90599473.woff')format("woff");}.ff8{font-family:ff8;line-height:1.331543;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_7ffd22f7a899e62f7a1b0bca.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_8076934025e978530b0ceefe.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_23f4e57b2d9f5ade4a31d453.woff')format("woff");}.ffc{font-family:ffc;line-height:0.869141;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_ded9ef3aa0abc20a5eb28828.woff')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_32fc50b20011d169d037bc82.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c11cbc2d8d74c1cc179c46cd.woff')format("woff");}.fff{font-family:fff;line-height:1.162109;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_f71ef765984442ce160c89cb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.739746;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.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);}
.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);}
.v1{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-8.880000px;}
.ls1b{letter-spacing:-8.348330px;}
.ls14{letter-spacing:-0.810000px;}
.ls45{letter-spacing:-0.708000px;}
.ls16{letter-spacing:-0.645098px;}
.ls49{letter-spacing:-0.460200px;}
.ls1c{letter-spacing:-0.360496px;}
.ls1d{letter-spacing:-0.341523px;}
.lsf{letter-spacing:-0.280200px;}
.ls15{letter-spacing:-0.226200px;}
.ls12{letter-spacing:-0.157800px;}
.ls50{letter-spacing:-0.112576px;}
.ls44{letter-spacing:-0.109200px;}
.ls1a{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.106800px;}
.ls2e{letter-spacing:-0.097800px;}
.ls19{letter-spacing:-0.072000px;}
.ls47{letter-spacing:-0.056161px;}
.lsd{letter-spacing:-0.053280px;}
.ls18{letter-spacing:-0.026640px;}
.ls37{letter-spacing:-0.018000px;}
.ls11{letter-spacing:-0.017280px;}
.lsb{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.018000px;}
.ls2f{letter-spacing:0.036000px;}
.ls30{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.094867px;}
.ls31{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.113841px;}
.ls2{letter-spacing:0.126720px;}
.ls46{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.198000px;}
.ls1e{letter-spacing:0.208708px;}
.ls34{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.227682px;}
.ls27{letter-spacing:0.259920px;}
.ls4d{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.274800px;}
.ls24{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.338400px;}
.ls0{letter-spacing:0.360000px;}
.ls4f{letter-spacing:0.379470px;}
.ls25{letter-spacing:0.403920px;}
.ls43{letter-spacing:0.439920px;}
.ls10{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.666720px;}
.ls48{letter-spacing:0.696000px;}
.ls36{letter-spacing:0.828000px;}
.ls7{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.386720px;}
.ls3d{letter-spacing:2.106720px;}
.ls2c{letter-spacing:2.826720px;}
.ls32{letter-spacing:4.266720px;}
.ls21{letter-spacing:4.986720px;}
.ls20{letter-spacing:5.166720px;}
.ls1f{letter-spacing:5.706720px;}
.ls22{letter-spacing:5.886720px;}
.ls40{letter-spacing:6.426720px;}
.ls3f{letter-spacing:7.146720px;}
.ls41{letter-spacing:7.326720px;}
.ls29{letter-spacing:7.866720px;}
.ls9{letter-spacing:8.462170px;}
.ls38{letter-spacing:8.562720px;}
.ls3a{letter-spacing:8.586720px;}
.ls28{letter-spacing:9.306720px;}
.ls39{letter-spacing:10.026720px;}
.ls4c{letter-spacing:10.746720px;}
.ls42{letter-spacing:12.186720px;}
.ls2b{letter-spacing:13.626720px;}
.ls2a{letter-spacing:15.066720px;}
.ls6{letter-spacing:16.506720px;}
.ls5{letter-spacing:17.226720px;}
.ls3c{letter-spacing:17.946720px;}
.ls4b{letter-spacing:20.106720px;}
.ls4{letter-spacing:22.266720px;}
.ls4a{letter-spacing:22.986720px;}
.ls26{letter-spacing:41.706720px;}
.ls4e{letter-spacing:46.026720px;}
.ls3e{letter-spacing:97.146720px;}
.ls3b{letter-spacing:197.729280px;}
.ls3{letter-spacing:199.566720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(32,33,36),0 0.015em rgb(32,33,36),0.015em 0 rgb(32,33,36),0 -0.015em  rgb(32,33,36);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(32,33,36);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-54.000000px;}
.ws16{word-spacing:-35.298000px;}
.wsa{word-spacing:-35.234400px;}
.ws21{word-spacing:-35.103600px;}
.ws4{word-spacing:-34.959600px;}
.ws9{word-spacing:-34.801800px;}
.ws6{word-spacing:-34.679400px;}
.ws14{word-spacing:-33.507159px;}
.ws11{word-spacing:-33.298451px;}
.ws13{word-spacing:-32.956928px;}
.ws12{word-spacing:-32.937955px;}
.ws2{word-spacing:-23.418720px;}
.ws17{word-spacing:-18.414720px;}
.ws1f{word-spacing:-18.305520px;}
.ws20{word-spacing:-17.706720px;}
.ws22{word-spacing:-17.511760px;}
.ws23{word-spacing:-17.455598px;}
.ws1e{word-spacing:-16.951680px;}
.ws7{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.506480px;}
.ws1{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.228000px;}
.ws1a{word-spacing:-15.102000px;}
.ws18{word-spacing:-15.048000px;}
.wsd{word-spacing:-15.012000px;}
.ws1d{word-spacing:-14.994000px;}
.wsf{word-spacing:-13.392000px;}
.ws1b{word-spacing:-12.186000px;}
.ws8{word-spacing:-10.791360px;}
.wsc{word-spacing:-10.440000px;}
.wsb{word-spacing:-10.213800px;}
.wse{word-spacing:-8.928000px;}
.ws10{word-spacing:-8.272436px;}
.ws3{word-spacing:-7.859520px;}
.ws15{word-spacing:0.000000px;}
._19{margin-left:-18.745920px;}
._15{margin-left:-15.120000px;}
._2{margin-left:-12.553200px;}
._1a{margin-left:-9.737280px;}
._4{margin-left:-8.511840px;}
._d{margin-left:-7.270560px;}
._1d{margin-left:-5.098320px;}
._6{margin-left:-4.081440px;}
._c{margin-left:-2.367120px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._8{width:2.072160px;}
._9{width:3.672000px;}
._7{width:5.097600px;}
._e{width:6.592320px;}
._a{width:7.989840px;}
._5{width:9.322560px;}
._13{width:10.697040px;}
._3{width:12.130560px;}
._b{width:13.338000px;}
._14{width:15.097680px;}
._f{width:17.172000px;}
._12{width:18.436080px;}
._1c{width:19.535280px;}
._1e{width:20.535373px;}
._10{width:22.230720px;}
._11{width:23.588880px;}
._17{width:26.262000px;}
._1f{width:67.887360px;}
._16{width:71.208000px;}
._18{width:130.492800px;}
._1b{width:344.440080px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc8{color:rgb(34,34,34);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(32,33,36);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsc{font-size:12.240000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs9{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fsd{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y37{bottom:0.345000px;}
.y43{bottom:2.700000px;}
.y5{bottom:4.140000px;}
.y51{bottom:5.010000px;}
.yaa{bottom:6.585000px;}
.y36{bottom:8.805000px;}
.y2{bottom:9.900000px;}
.y42{bottom:10.260000px;}
.y4f{bottom:13.140000px;}
.ya5{bottom:14.040000px;}
.y80{bottom:17.100000px;}
.ybd{bottom:17.280000px;}
.ydc{bottom:18.360000px;}
.ya3{bottom:19.980000px;}
.y9b{bottom:20.145000px;}
.y87{bottom:20.160000px;}
.yc7{bottom:20.190000px;}
.y98{bottom:20.325000px;}
.y82{bottom:20.340000px;}
.y84{bottom:20.385000px;}
.ye5{bottom:21.060000px;}
.ydf{bottom:21.105000px;}
.ybe{bottom:21.960000px;}
.ye6{bottom:22.680000px;}
.ye0{bottom:22.725000px;}
.yc0{bottom:22.860000px;}
.yc8{bottom:22.890000px;}
.yca{bottom:23.025000px;}
.y4{bottom:23.070000px;}
.y96{bottom:26.085000px;}
.y35{bottom:31.845000px;}
.y9c{bottom:32.565000px;}
.ya0{bottom:32.760000px;}
.y9d{bottom:32.925000px;}
.ya1{bottom:32.940000px;}
.y94{bottom:35.805000px;}
.y4e{bottom:36.540000px;}
.ybc{bottom:36.720000px;}
.y86{bottom:38.880000px;}
.yc2{bottom:39.600000px;}
.yc4{bottom:39.780000px;}
.y41{bottom:40.320000px;}
.ydd{bottom:40.680000px;}
.ydb{bottom:42.300000px;}
.yc3{bottom:42.480000px;}
.ye2{bottom:44.820000px;}
.y9a{bottom:45.345000px;}
.yad{bottom:45.360000px;}
.y9f{bottom:45.390000px;}
.y95{bottom:45.705000px;}
.ye3{bottom:46.440000px;}
.y3{bottom:48.090000px;}
.y40{bottom:51.480000px;}
.y97{bottom:54.525000px;}
.y34{bottom:54.885000px;}
.ybb{bottom:56.160000px;}
.y7{bottom:57.600000px;}
.y4d{bottom:58.860000px;}
.ya8{bottom:61.050000px;}
.y3f{bottom:62.640000px;}
.y3e{bottom:74.160000px;}
.y4c{bottom:77.940000px;}
.y33{bottom:81.165000px;}
.y3d{bottom:87.300000px;}
.ya4{bottom:93.060000px;}
.y38{bottom:94.860000px;}
.yd6{bottom:97.020000px;}
.y3c{bottom:100.260000px;}
.y101{bottom:100.800000px;}
.y4b{bottom:101.340000px;}
.y32{bottom:107.265000px;}
.y7b{bottom:109.260000px;}
.y128{bottom:117.720000px;}
.y4a{bottom:119.370000px;}
.y3b{bottom:122.070000px;}
.yd5{bottom:123.300000px;}
.y100{bottom:126.900000px;}
.y49{bottom:127.110000px;}
.ya2{bottom:131.220000px;}
.y7a{bottom:131.400000px;}
.y31{bottom:133.410000px;}
.y48{bottom:143.130000px;}
.y127{bottom:143.820000px;}
.yd4{bottom:149.400000px;}
.yff{bottom:153.000000px;}
.y79{bottom:153.540000px;}
.y30{bottom:156.630000px;}
.y47{bottom:158.610000px;}
.ya7{bottom:160.125000px;}
.ya9{bottom:168.480000px;}
.y9e{bottom:169.380000px;}
.y126{bottom:169.920000px;}
.y46{bottom:174.090000px;}
.yd3{bottom:175.500000px;}
.y78{bottom:175.680000px;}
.yfe{bottom:176.220000px;}
.y2f{bottom:179.670000px;}
.y3a{bottom:184.350000px;}
.y45{bottom:189.570000px;}
.y39{bottom:194.970000px;}
.y125{bottom:196.020000px;}
.yfd{bottom:196.200000px;}
.y77{bottom:197.820000px;}
.yd2{bottom:201.600000px;}
.y44{bottom:204.870000px;}
.y2e{bottom:205.770000px;}
.yfc{bottom:219.270000px;}
.y76{bottom:219.810000px;}
.y124{bottom:222.330000px;}
.yd1{bottom:224.850000px;}
.y2d{bottom:231.870000px;}
.y99{bottom:232.965000px;}
.y1f{bottom:234.930000px;}
.y75{bottom:241.950000px;}
.yfb{bottom:245.550000px;}
.yd0{bottom:247.890000px;}
.y123{bottom:248.430000px;}
.y2c{bottom:257.970000px;}
.y1e{bottom:259.050000px;}
.y74{bottom:266.430000px;}
.yfa{bottom:268.590000px;}
.ycf{bottom:273.990000px;}
.y122{bottom:274.530000px;}
.y1d{bottom:283.170000px;}
.y2b{bottom:284.070000px;}
.yf9{bottom:291.630000px;}
.y73{bottom:292.710000px;}
.y93{bottom:296.325000px;}
.yce{bottom:300.090000px;}
.y121{bottom:300.630000px;}
.y1c{bottom:307.290000px;}
.y2a{bottom:310.350000px;}
.y72{bottom:315.750000px;}
.yf8{bottom:317.910000px;}
.y11{bottom:319.725000px;}
.ycd{bottom:323.310000px;}
.y120{bottom:326.730000px;}
.y1b{bottom:331.410000px;}
.y29{bottom:336.450000px;}
.y71{bottom:338.790000px;}
.ycc{bottom:344.010000px;}
.y11f{bottom:353.010000px;}
.y1a{bottom:355.530000px;}
.y28{bottom:359.700000px;}
.ycb{bottom:362.205000px;}
.y70{bottom:365.070000px;}
.yf7{bottom:367.050000px;}
.y92{bottom:370.650000px;}
.y11e{bottom:379.110000px;}
.y19{bottom:379.860000px;}
.y27{bottom:382.020000px;}
.yf6{bottom:390.270000px;}
.y6f{bottom:391.170000px;}
.y91{bottom:392.790000px;}
.yc9{bottom:400.365000px;}
.y18{bottom:403.980000px;}
.y11d{bottom:405.210000px;}
.y26{bottom:405.600000px;}
.y90{bottom:414.930000px;}
.yf5{bottom:416.370000px;}
.y6e{bottom:417.270000px;}
.y17{bottom:428.100000px;}
.y25{bottom:429.000000px;}
.y11c{bottom:431.310000px;}
.yc6{bottom:438.525000px;}
.y8f{bottom:439.410000px;}
.y6d{bottom:440.310000px;}
.yf4{bottom:442.515000px;}
.y16{bottom:452.220000px;}
.y24{bottom:452.580000px;}
.y11b{bottom:457.455000px;}
.y8e{bottom:462.675000px;}
.y6c{bottom:466.635000px;}
.yf3{bottom:468.615000px;}
.y23{bottom:476.160000px;}
.y15{bottom:476.340000px;}
.yc5{bottom:476.715000px;}
.y11a{bottom:483.555000px;}
.y8d{bottom:485.715000px;}
.y6b{bottom:489.675000px;}
.yf2{bottom:494.715000px;}
.y22{bottom:499.560000px;}
.y14{bottom:500.460000px;}
.y119{bottom:506.775000px;}
.y8c{bottom:508.755000px;}
.y6a{bottom:512.715000px;}
.yc1{bottom:514.695000px;}
.yf1{bottom:520.995000px;}
.y21{bottom:523.140000px;}
.y13{bottom:524.580000px;}
.y118{bottom:527.475000px;}
.y8b{bottom:531.975000px;}
.y69{bottom:535.935000px;}
.y20{bottom:544.020000px;}
.yf0{bottom:547.095000px;}
.y12{bottom:548.880000px;}
.y117{bottom:551.955000px;}
.y8a{bottom:558.075000px;}
.y68{bottom:558.975000px;}
.yef{bottom:570.135000px;}
.ybf{bottom:572.475000px;}
.y116{bottom:578.055000px;}
.y67{bottom:582.195000px;}
.y89{bottom:584.175000px;}
.yee{bottom:593.355000px;}
.y115{bottom:601.815000px;}
.y88{bottom:603.255000px;}
.ya6{bottom:603.360000px;}
.y66{bottom:605.235000px;}
.yba{bottom:610.455000px;}
.yed{bottom:619.455000px;}
.y114{bottom:626.295000px;}
.y65{bottom:631.335000px;}
.yec{bottom:645.555000px;}
.y113{bottom:652.395000px;}
.y64{bottom:654.555000px;}
.yeb{bottom:671.655000px;}
.y112{bottom:676.185000px;}
.y63{bottom:677.625000px;}
.yb9{bottom:686.445000px;}
.yea{bottom:697.785000px;}
.y62{bottom:700.665000px;}
.yb8{bottom:708.585000px;}
.y61{bottom:723.885000px;}
.ye9{bottom:724.065000px;}
.y111{bottom:726.945000px;}
.yb7{bottom:730.725000px;}
.y60{bottom:746.925000px;}
.ye8{bottom:750.165000px;}
.yb6{bottom:752.325000px;}
.y110{bottom:753.045000px;}
.y5f{bottom:770.145000px;}
.yb5{bottom:775.365000px;}
.ye7{bottom:776.265000px;}
.y10f{bottom:776.805000px;}
.y132{bottom:786.885000px;}
.y5e{bottom:793.185000px;}
.ye4{bottom:796.065000px;}
.y10e{bottom:801.285000px;}
.yb4{bottom:801.465000px;}
.y5d{bottom:819.285000px;}
.y10d{bottom:824.505000px;}
.yb3{bottom:827.565000px;}
.y131{bottom:828.645000px;}
.y85{bottom:831.345000px;}
.ye1{bottom:837.105000px;}
.y10c{bottom:844.485000px;}
.y5c{bottom:845.565000px;}
.yb2{bottom:853.665000px;}
.y10b{bottom:864.645000px;}
.y5b{bottom:871.665000px;}
.y130{bottom:875.625000px;}
.yb1{bottom:879.945000px;}
.y10{bottom:880.665000px;}
.yf{bottom:886.425000px;}
.y10a{bottom:887.685000px;}
.y5a{bottom:897.765000px;}
.y12f{bottom:901.725000px;}
.yde{bottom:901.905000px;}
.yb0{bottom:906.045000px;}
.y83{bottom:906.765000px;}
.ye{bottom:913.290000px;}
.y109{bottom:913.830000px;}
.y59{bottom:923.910000px;}
.yaf{bottom:925.890000px;}
.y12e{bottom:927.870000px;}
.yd{bottom:935.610000px;}
.y108{bottom:939.930000px;}
.yda{bottom:942.810000px;}
.y81{bottom:944.970000px;}
.y58{bottom:950.010000px;}
.y12d{bottom:953.970000px;}
.yc{bottom:961.890000px;}
.yae{bottom:964.050000px;}
.y107{bottom:966.210000px;}
.y57{bottom:973.230000px;}
.y12c{bottom:980.250000px;}
.y7f{bottom:983.130000px;}
.yb{bottom:987.990000px;}
.y106{bottom:992.310000px;}
.y56{bottom:993.390000px;}
.yac{bottom:1002.210000px;}
.y12b{bottom:1006.350000px;}
.yd9{bottom:1010.310000px;}
.ya{bottom:1012.830000px;}
.y55{bottom:1013.370000px;}
.y105{bottom:1018.410000px;}
.y7e{bottom:1020.030000px;}
.y12a{bottom:1032.450000px;}
.y54{bottom:1036.410000px;}
.y9{bottom:1040.910000px;}
.y7d{bottom:1042.170000px;}
.y104{bottom:1044.510000px;}
.y129{bottom:1058.550000px;}
.yd8{bottom:1060.170000px;}
.y53{bottom:1062.690000px;}
.y7c{bottom:1064.310000px;}
.yab{bottom:1065.750000px;}
.y103{bottom:1067.730000px;}
.y8{bottom:1072.230000px;}
.y50{bottom:1075.680000px;}
.yd7{bottom:1084.650000px;}
.y52{bottom:1086.270000px;}
.y102{bottom:1087.710000px;}
.y6{bottom:1108.410000px;}
.y1{bottom:1123.890000px;}
.hb{height:4.165313px;}
.h11{height:5.653125px;}
.h17{height:12.006914px;}
.h27{height:24.480000px;}
.h1a{height:27.540000px;}
.h14{height:29.678906px;}
.h1c{height:31.485000px;}
.h13{height:35.332031px;}
.h29{height:37.245000px;}
.h23{height:37.258500px;}
.h2c{height:37.281000px;}
.h1d{height:37.425000px;}
.h24{height:37.438500px;}
.h1e{height:37.462500px;}
.h30{height:40.140000px;}
.h2e{height:40.162500px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.ha{height:48.049102px;}
.h15{height:52.971680px;}
.h26{height:53.709961px;}
.h16{height:54.421875px;}
.h28{height:55.872070px;}
.h2b{height:56.865000px;}
.hf{height:57.243164px;}
.h7{height:57.324375px;}
.h18{height:58.621992px;}
.h6{height:58.651172px;}
.h2d{height:59.745000px;}
.h10{height:60.338990px;}
.h21{height:62.625000px;}
.h22{height:62.676000px;}
.h9{height:63.349102px;}
.h2f{height:63.900000px;}
.h1b{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h31{height:66.775148px;}
.h20{height:68.925000px;}
.h19{height:70.218281px;}
.h2a{height:70.590000px;}
.h1f{height:74.700000px;}
.h2{height:84.990000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h12{height:224.130000px;}
.h25{height:227.160000px;}
.hc{height:558.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:63.165000px;}
.w17{width:84.621000px;}
.wb{width:100.296000px;}
.w13{width:100.641000px;}
.w14{width:101.865000px;}
.w2{width:104.074500px;}
.wc{width:106.041000px;}
.w9{width:123.141000px;}
.w7{width:132.501000px;}
.w4{width:132.694500px;}
.w12{width:137.556000px;}
.w8{width:150.330000px;}
.w6{width:162.720000px;}
.w16{width:169.950000px;}
.w15{width:171.375000px;}
.wf{width:191.160000px;}
.w11{width:222.135000px;}
.wa{width:247.335000px;}
.w10{width:263.160000px;}
.we{width:408.240000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:6.876000px;}
.x19{left:8.134500px;}
.x4{left:12.765000px;}
.x42{left:13.860000px;}
.x18{left:16.054500px;}
.x32{left:18.214500px;}
.x16{left:19.654500px;}
.x47{left:23.250000px;}
.x17{left:26.134500px;}
.x34{left:29.194500px;}
.x10{left:33.334500px;}
.x6{left:35.985000px;}
.x46{left:40.485000px;}
.x44{left:42.105000px;}
.x1b{left:44.985000px;}
.x40{left:46.110000px;}
.x33{left:47.734500px;}
.x11{left:50.794500px;}
.xf{left:55.114500px;}
.x36{left:57.094500px;}
.x1c{left:62.130000px;}
.x35{left:66.268500px;}
.x45{left:67.710000px;}
.x24{left:69.870000px;}
.x14{left:73.288500px;}
.x1{left:78.301500px;}
.x15{left:79.588500px;}
.x13{left:82.468500px;}
.x7{left:86.400000px;}
.x2{left:95.788500px;}
.x25{left:97.590000px;}
.x37{left:102.808500px;}
.x31{left:106.768500px;}
.x3e{left:113.436000px;}
.x12{left:124.588500px;}
.x59{left:135.756000px;}
.x5{left:141.330000px;}
.x50{left:152.565000px;}
.x2d{left:154.830000px;}
.x2e{left:162.390000px;}
.x53{left:164.385000px;}
.x5b{left:165.990000px;}
.x3d{left:180.210000px;}
.x3{left:182.385000px;}
.x4f{left:184.830000px;}
.x49{left:187.065000px;}
.x5a{left:188.310000px;}
.x52{left:200.130000px;}
.x1a{left:219.105000px;}
.x3b{left:223.800000px;}
.x56{left:232.785000px;}
.x4d{left:241.740000px;}
.x3f{left:242.865000px;}
.x4e{left:251.250000px;}
.x51{left:255.240000px;}
.x5c{left:267.915000px;}
.x39{left:277.260000px;}
.x2f{left:281.220000px;}
.x3a{left:283.740000px;}
.x1d{left:288.600000px;}
.x1e{left:296.880000px;}
.x2a{left:303.540000px;}
.x60{left:309.135000px;}
.x22{left:331.620000px;}
.x69{left:337.035000px;}
.x2b{left:338.640000px;}
.x23{left:342.420000px;}
.x30{left:359.160000px;}
.x41{left:376.095000px;}
.x54{left:387.255000px;}
.x66{left:390.495000px;}
.x57{left:404.895000px;}
.x38{left:411.765000px;}
.x26{left:418.425000px;}
.x27{left:427.425000px;}
.x4a{left:435.135000px;}
.x63{left:473.865000px;}
.xb{left:485.385000px;}
.xc{left:493.845000px;}
.x61{left:503.205000px;}
.x28{left:525.525000px;}
.x43{left:527.160000px;}
.x2c{left:530.745000px;}
.x29{left:534.345000px;}
.x4b{left:536.160000px;}
.x6c{left:541.545000px;}
.x5e{left:547.305000px;}
.xa{left:560.085000px;}
.x1f{left:561.345000px;}
.x20{left:569.625000px;}
.x58{left:575.760000px;}
.x6a{left:578.445000px;}
.x21{left:584.775000px;}
.xd{left:601.305000px;}
.x62{left:604.725000px;}
.x5d{left:605.985000px;}
.x55{left:627.090000px;}
.x4c{left:642.930000px;}
.x65{left:647.250000px;}
.x48{left:651.390000px;}
.x5f{left:669.750000px;}
.x68{left:680.730000px;}
.x64{left:688.290000px;}
.x6b{left:708.810000px;}
.x9{left:766.050000px;}
.x8{left:784.230000px;}
.x67{left:802.620000px;}
.xe{left:806.760000px;}
@media print{
.v1{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-7.893333pt;}
.ls1b{letter-spacing:-7.420737pt;}
.ls14{letter-spacing:-0.720000pt;}
.ls45{letter-spacing:-0.629333pt;}
.ls16{letter-spacing:-0.573421pt;}
.ls49{letter-spacing:-0.409067pt;}
.ls1c{letter-spacing:-0.320441pt;}
.ls1d{letter-spacing:-0.303576pt;}
.lsf{letter-spacing:-0.249067pt;}
.ls15{letter-spacing:-0.201067pt;}
.ls12{letter-spacing:-0.140267pt;}
.ls50{letter-spacing:-0.100068pt;}
.ls44{letter-spacing:-0.097067pt;}
.ls1a{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls2e{letter-spacing:-0.086933pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls47{letter-spacing:-0.049921pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls18{letter-spacing:-0.023680pt;}
.ls37{letter-spacing:-0.016000pt;}
.ls11{letter-spacing:-0.015360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.016000pt;}
.ls2f{letter-spacing:0.032000pt;}
.ls30{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.084327pt;}
.ls31{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.101192pt;}
.ls2{letter-spacing:0.112640pt;}
.ls46{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.176000pt;}
.ls1e{letter-spacing:0.185518pt;}
.ls34{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.202384pt;}
.ls27{letter-spacing:0.231040pt;}
.ls4d{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.244267pt;}
.ls24{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.300800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4f{letter-spacing:0.337306pt;}
.ls25{letter-spacing:0.359040pt;}
.ls43{letter-spacing:0.391040pt;}
.ls10{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.592640pt;}
.ls48{letter-spacing:0.618667pt;}
.ls36{letter-spacing:0.736000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.232640pt;}
.ls3d{letter-spacing:1.872640pt;}
.ls2c{letter-spacing:2.512640pt;}
.ls32{letter-spacing:3.792640pt;}
.ls21{letter-spacing:4.432640pt;}
.ls20{letter-spacing:4.592640pt;}
.ls1f{letter-spacing:5.072640pt;}
.ls22{letter-spacing:5.232640pt;}
.ls40{letter-spacing:5.712640pt;}
.ls3f{letter-spacing:6.352640pt;}
.ls41{letter-spacing:6.512640pt;}
.ls29{letter-spacing:6.992640pt;}
.ls9{letter-spacing:7.521929pt;}
.ls38{letter-spacing:7.611307pt;}
.ls3a{letter-spacing:7.632640pt;}
.ls28{letter-spacing:8.272640pt;}
.ls39{letter-spacing:8.912640pt;}
.ls4c{letter-spacing:9.552640pt;}
.ls42{letter-spacing:10.832640pt;}
.ls2b{letter-spacing:12.112640pt;}
.ls2a{letter-spacing:13.392640pt;}
.ls6{letter-spacing:14.672640pt;}
.ls5{letter-spacing:15.312640pt;}
.ls3c{letter-spacing:15.952640pt;}
.ls4b{letter-spacing:17.872640pt;}
.ls4{letter-spacing:19.792640pt;}
.ls4a{letter-spacing:20.432640pt;}
.ls26{letter-spacing:37.072640pt;}
.ls4e{letter-spacing:40.912640pt;}
.ls3e{letter-spacing:86.352640pt;}
.ls3b{letter-spacing:175.759360pt;}
.ls3{letter-spacing:177.392640pt;}
.ws1c{word-spacing:-48.000000pt;}
.ws16{word-spacing:-31.376000pt;}
.wsa{word-spacing:-31.319467pt;}
.ws21{word-spacing:-31.203200pt;}
.ws4{word-spacing:-31.075200pt;}
.ws9{word-spacing:-30.934933pt;}
.ws6{word-spacing:-30.826133pt;}
.ws14{word-spacing:-29.784141pt;}
.ws11{word-spacing:-29.598623pt;}
.ws13{word-spacing:-29.295047pt;}
.ws12{word-spacing:-29.278182pt;}
.ws2{word-spacing:-20.816640pt;}
.ws17{word-spacing:-16.368640pt;}
.ws1f{word-spacing:-16.271573pt;}
.ws20{word-spacing:-15.739307pt;}
.ws22{word-spacing:-15.566009pt;}
.ws23{word-spacing:-15.516087pt;}
.ws1e{word-spacing:-15.068160pt;}
.ws7{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.672427pt;}
.ws1{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.536000pt;}
.ws1a{word-spacing:-13.424000pt;}
.ws18{word-spacing:-13.376000pt;}
.wsd{word-spacing:-13.344000pt;}
.ws1d{word-spacing:-13.328000pt;}
.wsf{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-10.832000pt;}
.ws8{word-spacing:-9.592320pt;}
.wsc{word-spacing:-9.280000pt;}
.wsb{word-spacing:-9.078933pt;}
.wse{word-spacing:-7.936000pt;}
.ws10{word-spacing:-7.353276pt;}
.ws3{word-spacing:-6.986240pt;}
.ws15{word-spacing:0.000000pt;}
._19{margin-left:-16.663040pt;}
._15{margin-left:-13.440000pt;}
._2{margin-left:-11.158400pt;}
._1a{margin-left:-8.655360pt;}
._4{margin-left:-7.566080pt;}
._d{margin-left:-6.462720pt;}
._1d{margin-left:-4.531840pt;}
._6{margin-left:-3.627947pt;}
._c{margin-left:-2.104107pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._8{width:1.841920pt;}
._9{width:3.264000pt;}
._7{width:4.531200pt;}
._e{width:5.859840pt;}
._a{width:7.102080pt;}
._5{width:8.286720pt;}
._13{width:9.508480pt;}
._3{width:10.782720pt;}
._b{width:11.856000pt;}
._14{width:13.420160pt;}
._f{width:15.264000pt;}
._12{width:16.387627pt;}
._1c{width:17.364693pt;}
._1e{width:18.253665pt;}
._10{width:19.760640pt;}
._11{width:20.967893pt;}
._17{width:23.344000pt;}
._1f{width:60.344320pt;}
._16{width:63.296000pt;}
._18{width:115.993600pt;}
._1b{width:306.168960pt;}
.fs6{font-size:5.120000pt;}
.fsc{font-size:10.880000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs9{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fsd{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:0.306667pt;}
.y43{bottom:2.400000pt;}
.y5{bottom:3.680000pt;}
.y51{bottom:4.453333pt;}
.yaa{bottom:5.853333pt;}
.y36{bottom:7.826667pt;}
.y2{bottom:8.800000pt;}
.y42{bottom:9.120000pt;}
.y4f{bottom:11.680000pt;}
.ya5{bottom:12.480000pt;}
.y80{bottom:15.200000pt;}
.ybd{bottom:15.360000pt;}
.ydc{bottom:16.320000pt;}
.ya3{bottom:17.760000pt;}
.y9b{bottom:17.906667pt;}
.y87{bottom:17.920000pt;}
.yc7{bottom:17.946667pt;}
.y98{bottom:18.066667pt;}
.y82{bottom:18.080000pt;}
.y84{bottom:18.120000pt;}
.ye5{bottom:18.720000pt;}
.ydf{bottom:18.760000pt;}
.ybe{bottom:19.520000pt;}
.ye6{bottom:20.160000pt;}
.ye0{bottom:20.200000pt;}
.yc0{bottom:20.320000pt;}
.yc8{bottom:20.346667pt;}
.yca{bottom:20.466667pt;}
.y4{bottom:20.506667pt;}
.y96{bottom:23.186667pt;}
.y35{bottom:28.306667pt;}
.y9c{bottom:28.946667pt;}
.ya0{bottom:29.120000pt;}
.y9d{bottom:29.266667pt;}
.ya1{bottom:29.280000pt;}
.y94{bottom:31.826667pt;}
.y4e{bottom:32.480000pt;}
.ybc{bottom:32.640000pt;}
.y86{bottom:34.560000pt;}
.yc2{bottom:35.200000pt;}
.yc4{bottom:35.360000pt;}
.y41{bottom:35.840000pt;}
.ydd{bottom:36.160000pt;}
.ydb{bottom:37.600000pt;}
.yc3{bottom:37.760000pt;}
.ye2{bottom:39.840000pt;}
.y9a{bottom:40.306667pt;}
.yad{bottom:40.320000pt;}
.y9f{bottom:40.346667pt;}
.y95{bottom:40.626667pt;}
.ye3{bottom:41.280000pt;}
.y3{bottom:42.746667pt;}
.y40{bottom:45.760000pt;}
.y97{bottom:48.466667pt;}
.y34{bottom:48.786667pt;}
.ybb{bottom:49.920000pt;}
.y7{bottom:51.200000pt;}
.y4d{bottom:52.320000pt;}
.ya8{bottom:54.266667pt;}
.y3f{bottom:55.680000pt;}
.y3e{bottom:65.920000pt;}
.y4c{bottom:69.280000pt;}
.y33{bottom:72.146667pt;}
.y3d{bottom:77.600000pt;}
.ya4{bottom:82.720000pt;}
.y38{bottom:84.320000pt;}
.yd6{bottom:86.240000pt;}
.y3c{bottom:89.120000pt;}
.y101{bottom:89.600000pt;}
.y4b{bottom:90.080000pt;}
.y32{bottom:95.346667pt;}
.y7b{bottom:97.120000pt;}
.y128{bottom:104.640000pt;}
.y4a{bottom:106.106667pt;}
.y3b{bottom:108.506667pt;}
.yd5{bottom:109.600000pt;}
.y100{bottom:112.800000pt;}
.y49{bottom:112.986667pt;}
.ya2{bottom:116.640000pt;}
.y7a{bottom:116.800000pt;}
.y31{bottom:118.586667pt;}
.y48{bottom:127.226667pt;}
.y127{bottom:127.840000pt;}
.yd4{bottom:132.800000pt;}
.yff{bottom:136.000000pt;}
.y79{bottom:136.480000pt;}
.y30{bottom:139.226667pt;}
.y47{bottom:140.986667pt;}
.ya7{bottom:142.333333pt;}
.ya9{bottom:149.760000pt;}
.y9e{bottom:150.560000pt;}
.y126{bottom:151.040000pt;}
.y46{bottom:154.746667pt;}
.yd3{bottom:156.000000pt;}
.y78{bottom:156.160000pt;}
.yfe{bottom:156.640000pt;}
.y2f{bottom:159.706667pt;}
.y3a{bottom:163.866667pt;}
.y45{bottom:168.506667pt;}
.y39{bottom:173.306667pt;}
.y125{bottom:174.240000pt;}
.yfd{bottom:174.400000pt;}
.y77{bottom:175.840000pt;}
.yd2{bottom:179.200000pt;}
.y44{bottom:182.106667pt;}
.y2e{bottom:182.906667pt;}
.yfc{bottom:194.906667pt;}
.y76{bottom:195.386667pt;}
.y124{bottom:197.626667pt;}
.yd1{bottom:199.866667pt;}
.y2d{bottom:206.106667pt;}
.y99{bottom:207.080000pt;}
.y1f{bottom:208.826667pt;}
.y75{bottom:215.066667pt;}
.yfb{bottom:218.266667pt;}
.yd0{bottom:220.346667pt;}
.y123{bottom:220.826667pt;}
.y2c{bottom:229.306667pt;}
.y1e{bottom:230.266667pt;}
.y74{bottom:236.826667pt;}
.yfa{bottom:238.746667pt;}
.ycf{bottom:243.546667pt;}
.y122{bottom:244.026667pt;}
.y1d{bottom:251.706667pt;}
.y2b{bottom:252.506667pt;}
.yf9{bottom:259.226667pt;}
.y73{bottom:260.186667pt;}
.y93{bottom:263.400000pt;}
.yce{bottom:266.746667pt;}
.y121{bottom:267.226667pt;}
.y1c{bottom:273.146667pt;}
.y2a{bottom:275.866667pt;}
.y72{bottom:280.666667pt;}
.yf8{bottom:282.586667pt;}
.y11{bottom:284.200000pt;}
.ycd{bottom:287.386667pt;}
.y120{bottom:290.426667pt;}
.y1b{bottom:294.586667pt;}
.y29{bottom:299.066667pt;}
.y71{bottom:301.146667pt;}
.ycc{bottom:305.786667pt;}
.y11f{bottom:313.786667pt;}
.y1a{bottom:316.026667pt;}
.y28{bottom:319.733333pt;}
.ycb{bottom:321.960000pt;}
.y70{bottom:324.506667pt;}
.yf7{bottom:326.266667pt;}
.y92{bottom:329.466667pt;}
.y11e{bottom:336.986667pt;}
.y19{bottom:337.653333pt;}
.y27{bottom:339.573333pt;}
.yf6{bottom:346.906667pt;}
.y6f{bottom:347.706667pt;}
.y91{bottom:349.146667pt;}
.yc9{bottom:355.880000pt;}
.y18{bottom:359.093333pt;}
.y11d{bottom:360.186667pt;}
.y26{bottom:360.533333pt;}
.y90{bottom:368.826667pt;}
.yf5{bottom:370.106667pt;}
.y6e{bottom:370.906667pt;}
.y17{bottom:380.533333pt;}
.y25{bottom:381.333333pt;}
.y11c{bottom:383.386667pt;}
.yc6{bottom:389.800000pt;}
.y8f{bottom:390.586667pt;}
.y6d{bottom:391.386667pt;}
.yf4{bottom:393.346667pt;}
.y16{bottom:401.973333pt;}
.y24{bottom:402.293333pt;}
.y11b{bottom:406.626667pt;}
.y8e{bottom:411.266667pt;}
.y6c{bottom:414.786667pt;}
.yf3{bottom:416.546667pt;}
.y23{bottom:423.253333pt;}
.y15{bottom:423.413333pt;}
.yc5{bottom:423.746667pt;}
.y11a{bottom:429.826667pt;}
.y8d{bottom:431.746667pt;}
.y6b{bottom:435.266667pt;}
.yf2{bottom:439.746667pt;}
.y22{bottom:444.053333pt;}
.y14{bottom:444.853333pt;}
.y119{bottom:450.466667pt;}
.y8c{bottom:452.226667pt;}
.y6a{bottom:455.746667pt;}
.yc1{bottom:457.506667pt;}
.yf1{bottom:463.106667pt;}
.y21{bottom:465.013333pt;}
.y13{bottom:466.293333pt;}
.y118{bottom:468.866667pt;}
.y8b{bottom:472.866667pt;}
.y69{bottom:476.386667pt;}
.y20{bottom:483.573333pt;}
.yf0{bottom:486.306667pt;}
.y12{bottom:487.893333pt;}
.y117{bottom:490.626667pt;}
.y8a{bottom:496.066667pt;}
.y68{bottom:496.866667pt;}
.yef{bottom:506.786667pt;}
.ybf{bottom:508.866667pt;}
.y116{bottom:513.826667pt;}
.y67{bottom:517.506667pt;}
.y89{bottom:519.266667pt;}
.yee{bottom:527.426667pt;}
.y115{bottom:534.946667pt;}
.y88{bottom:536.226667pt;}
.ya6{bottom:536.320000pt;}
.y66{bottom:537.986667pt;}
.yba{bottom:542.626667pt;}
.yed{bottom:550.626667pt;}
.y114{bottom:556.706667pt;}
.y65{bottom:561.186667pt;}
.yec{bottom:573.826667pt;}
.y113{bottom:579.906667pt;}
.y64{bottom:581.826667pt;}
.yeb{bottom:597.026667pt;}
.y112{bottom:601.053333pt;}
.y63{bottom:602.333333pt;}
.yb9{bottom:610.173333pt;}
.yea{bottom:620.253333pt;}
.y62{bottom:622.813333pt;}
.yb8{bottom:629.853333pt;}
.y61{bottom:643.453333pt;}
.ye9{bottom:643.613333pt;}
.y111{bottom:646.173333pt;}
.yb7{bottom:649.533333pt;}
.y60{bottom:663.933333pt;}
.ye8{bottom:666.813333pt;}
.yb6{bottom:668.733333pt;}
.y110{bottom:669.373333pt;}
.y5f{bottom:684.573333pt;}
.yb5{bottom:689.213333pt;}
.ye7{bottom:690.013333pt;}
.y10f{bottom:690.493333pt;}
.y132{bottom:699.453333pt;}
.y5e{bottom:705.053333pt;}
.ye4{bottom:707.613333pt;}
.y10e{bottom:712.253333pt;}
.yb4{bottom:712.413333pt;}
.y5d{bottom:728.253333pt;}
.y10d{bottom:732.893333pt;}
.yb3{bottom:735.613333pt;}
.y131{bottom:736.573333pt;}
.y85{bottom:738.973333pt;}
.ye1{bottom:744.093333pt;}
.y10c{bottom:750.653333pt;}
.y5c{bottom:751.613333pt;}
.yb2{bottom:758.813333pt;}
.y10b{bottom:768.573333pt;}
.y5b{bottom:774.813333pt;}
.y130{bottom:778.333333pt;}
.yb1{bottom:782.173333pt;}
.y10{bottom:782.813333pt;}
.yf{bottom:787.933333pt;}
.y10a{bottom:789.053333pt;}
.y5a{bottom:798.013333pt;}
.y12f{bottom:801.533333pt;}
.yde{bottom:801.693333pt;}
.yb0{bottom:805.373333pt;}
.y83{bottom:806.013333pt;}
.ye{bottom:811.813333pt;}
.y109{bottom:812.293333pt;}
.y59{bottom:821.253333pt;}
.yaf{bottom:823.013333pt;}
.y12e{bottom:824.773333pt;}
.yd{bottom:831.653333pt;}
.y108{bottom:835.493333pt;}
.yda{bottom:838.053333pt;}
.y81{bottom:839.973333pt;}
.y58{bottom:844.453333pt;}
.y12d{bottom:847.973333pt;}
.yc{bottom:855.013333pt;}
.yae{bottom:856.933333pt;}
.y107{bottom:858.853333pt;}
.y57{bottom:865.093333pt;}
.y12c{bottom:871.333333pt;}
.y7f{bottom:873.893333pt;}
.yb{bottom:878.213333pt;}
.y106{bottom:882.053333pt;}
.y56{bottom:883.013333pt;}
.yac{bottom:890.853333pt;}
.y12b{bottom:894.533333pt;}
.yd9{bottom:898.053333pt;}
.ya{bottom:900.293333pt;}
.y55{bottom:900.773333pt;}
.y105{bottom:905.253333pt;}
.y7e{bottom:906.693333pt;}
.y12a{bottom:917.733333pt;}
.y54{bottom:921.253333pt;}
.y9{bottom:925.253333pt;}
.y7d{bottom:926.373333pt;}
.y104{bottom:928.453333pt;}
.y129{bottom:940.933333pt;}
.yd8{bottom:942.373333pt;}
.y53{bottom:944.613333pt;}
.y7c{bottom:946.053333pt;}
.yab{bottom:947.333333pt;}
.y103{bottom:949.093333pt;}
.y8{bottom:953.093333pt;}
.y50{bottom:956.160000pt;}
.yd7{bottom:964.133333pt;}
.y52{bottom:965.573333pt;}
.y102{bottom:966.853333pt;}
.y6{bottom:985.253333pt;}
.y1{bottom:999.013333pt;}
.hb{height:3.702500pt;}
.h11{height:5.025000pt;}
.h17{height:10.672812pt;}
.h27{height:21.760000pt;}
.h1a{height:24.480000pt;}
.h14{height:26.381250pt;}
.h1c{height:27.986667pt;}
.h13{height:31.406250pt;}
.h29{height:33.106667pt;}
.h23{height:33.118667pt;}
.h2c{height:33.138667pt;}
.h1d{height:33.266667pt;}
.h24{height:33.278667pt;}
.h1e{height:33.300000pt;}
.h30{height:35.680000pt;}
.h2e{height:35.700000pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.ha{height:42.710313pt;}
.h15{height:47.085938pt;}
.h26{height:47.742188pt;}
.h16{height:48.375000pt;}
.h28{height:49.664062pt;}
.h2b{height:50.546667pt;}
.hf{height:50.882812pt;}
.h7{height:50.955000pt;}
.h18{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2d{height:53.106667pt;}
.h10{height:53.634657pt;}
.h21{height:55.666667pt;}
.h22{height:55.712000pt;}
.h9{height:56.310313pt;}
.h2f{height:56.800000pt;}
.h1b{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h31{height:59.355688pt;}
.h20{height:61.266667pt;}
.h19{height:62.416250pt;}
.h2a{height:62.746667pt;}
.h1f{height:66.400000pt;}
.h2{height:75.546667pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h12{height:199.226667pt;}
.h25{height:201.920000pt;}
.hc{height:496.373333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:56.146667pt;}
.w17{width:75.218667pt;}
.wb{width:89.152000pt;}
.w13{width:89.458667pt;}
.w14{width:90.546667pt;}
.w2{width:92.510667pt;}
.wc{width:94.258667pt;}
.w9{width:109.458667pt;}
.w7{width:117.778667pt;}
.w4{width:117.950667pt;}
.w12{width:122.272000pt;}
.w8{width:133.626667pt;}
.w6{width:144.640000pt;}
.w16{width:151.066667pt;}
.w15{width:152.333333pt;}
.wf{width:169.920000pt;}
.w11{width:197.453333pt;}
.wa{width:219.853333pt;}
.w10{width:233.920000pt;}
.we{width:362.880000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:6.112000pt;}
.x19{left:7.230667pt;}
.x4{left:11.346667pt;}
.x42{left:12.320000pt;}
.x18{left:14.270667pt;}
.x32{left:16.190667pt;}
.x16{left:17.470667pt;}
.x47{left:20.666667pt;}
.x17{left:23.230667pt;}
.x34{left:25.950667pt;}
.x10{left:29.630667pt;}
.x6{left:31.986667pt;}
.x46{left:35.986667pt;}
.x44{left:37.426667pt;}
.x1b{left:39.986667pt;}
.x40{left:40.986667pt;}
.x33{left:42.430667pt;}
.x11{left:45.150667pt;}
.xf{left:48.990667pt;}
.x36{left:50.750667pt;}
.x1c{left:55.226667pt;}
.x35{left:58.905333pt;}
.x45{left:60.186667pt;}
.x24{left:62.106667pt;}
.x14{left:65.145333pt;}
.x1{left:69.601333pt;}
.x15{left:70.745333pt;}
.x13{left:73.305333pt;}
.x7{left:76.800000pt;}
.x2{left:85.145333pt;}
.x25{left:86.746667pt;}
.x37{left:91.385333pt;}
.x31{left:94.905333pt;}
.x3e{left:100.832000pt;}
.x12{left:110.745333pt;}
.x59{left:120.672000pt;}
.x5{left:125.626667pt;}
.x50{left:135.613333pt;}
.x2d{left:137.626667pt;}
.x2e{left:144.346667pt;}
.x53{left:146.120000pt;}
.x5b{left:147.546667pt;}
.x3d{left:160.186667pt;}
.x3{left:162.120000pt;}
.x4f{left:164.293333pt;}
.x49{left:166.280000pt;}
.x5a{left:167.386667pt;}
.x52{left:177.893333pt;}
.x1a{left:194.760000pt;}
.x3b{left:198.933333pt;}
.x56{left:206.920000pt;}
.x4d{left:214.880000pt;}
.x3f{left:215.880000pt;}
.x4e{left:223.333333pt;}
.x51{left:226.880000pt;}
.x5c{left:238.146667pt;}
.x39{left:246.453333pt;}
.x2f{left:249.973333pt;}
.x3a{left:252.213333pt;}
.x1d{left:256.533333pt;}
.x1e{left:263.893333pt;}
.x2a{left:269.813333pt;}
.x60{left:274.786667pt;}
.x22{left:294.773333pt;}
.x69{left:299.586667pt;}
.x2b{left:301.013333pt;}
.x23{left:304.373333pt;}
.x30{left:319.253333pt;}
.x41{left:334.306667pt;}
.x54{left:344.226667pt;}
.x66{left:347.106667pt;}
.x57{left:359.906667pt;}
.x38{left:366.013333pt;}
.x26{left:371.933333pt;}
.x27{left:379.933333pt;}
.x4a{left:386.786667pt;}
.x63{left:421.213333pt;}
.xb{left:431.453333pt;}
.xc{left:438.973333pt;}
.x61{left:447.293333pt;}
.x28{left:467.133333pt;}
.x43{left:468.586667pt;}
.x2c{left:471.773333pt;}
.x29{left:474.973333pt;}
.x4b{left:476.586667pt;}
.x6c{left:481.373333pt;}
.x5e{left:486.493333pt;}
.xa{left:497.853333pt;}
.x1f{left:498.973333pt;}
.x20{left:506.333333pt;}
.x58{left:511.786667pt;}
.x6a{left:514.173333pt;}
.x21{left:519.800000pt;}
.xd{left:534.493333pt;}
.x62{left:537.533333pt;}
.x5d{left:538.653333pt;}
.x55{left:557.413333pt;}
.x4c{left:571.493333pt;}
.x65{left:575.333333pt;}
.x48{left:579.013333pt;}
.x5f{left:595.333333pt;}
.x68{left:605.093333pt;}
.x64{left:611.813333pt;}
.x6b{left:630.053333pt;}
.x9{left:680.933333pt;}
.x8{left:697.093333pt;}
.x67{left:713.440000pt;}
.xe{left:717.120000pt;}
}




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