
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')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_278a1700531e253f81441776.woff2')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_e0e41bfd5f8799d1c8336a60.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7d16300e17e9ce7c55854743.woff2')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_9428b7a2c21a1546db365278.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ecd9321245ff07f82546b99c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5c4e6f89714f40e2f2064050.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')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_46448410d19f8472eca100d9.woff2')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_8409f150eff66ecfcad1452d.woff2')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_4701ff706628bec71966c2bf.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.ls15{letter-spacing:-9.107269px;}
.ls3a{letter-spacing:-8.640000px;}
.ls28{letter-spacing:-8.095350px;}
.ls40{letter-spacing:-2.034000px;}
.ls20{letter-spacing:-1.308000px;}
.ls21{letter-spacing:-1.242000px;}
.ls47{letter-spacing:-1.206000px;}
.ls1c{letter-spacing:-1.024568px;}
.ls39{letter-spacing:-0.972000px;}
.ls27{letter-spacing:-0.853806px;}
.ls38{letter-spacing:-0.822000px;}
.ls11{letter-spacing:-0.702000px;}
.ls24{letter-spacing:-0.630000px;}
.ls1b{letter-spacing:-0.603989px;}
.ls41{letter-spacing:-0.593400px;}
.ls48{letter-spacing:-0.573000px;}
.ls45{letter-spacing:-0.555600px;}
.ls18{letter-spacing:-0.534420px;}
.ls22{letter-spacing:-0.507000px;}
.ls46{letter-spacing:-0.466800px;}
.ls3b{letter-spacing:-0.316800px;}
.ls25{letter-spacing:-0.234006px;}
.ls12{letter-spacing:-0.089400px;}
.ls29{letter-spacing:-0.082218px;}
.ls23{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.033393px;}
.ls1e{letter-spacing:-0.031680px;}
.ls17{letter-spacing:-0.021250px;}
.lsd{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020160px;}
.ls1d{letter-spacing:0.094235px;}
.ls3f{letter-spacing:0.097800px;}
.ls3c{letter-spacing:0.135600px;}
.ls13{letter-spacing:0.136609px;}
.ls43{letter-spacing:0.140160px;}
.ls44{letter-spacing:0.150000px;}
.ls2a{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.391800px;}
.ls31{letter-spacing:0.397200px;}
.ls36{letter-spacing:0.423360px;}
.ls30{letter-spacing:0.466560px;}
.ls10{letter-spacing:0.466800px;}
.ls2{letter-spacing:0.491793px;}
.ls14{letter-spacing:0.492045px;}
.ls33{letter-spacing:0.596400px;}
.ls42{letter-spacing:0.618000px;}
.ls3{letter-spacing:0.618282px;}
.ls1a{letter-spacing:0.628655px;}
.ls32{letter-spacing:0.636000px;}
.ls0{letter-spacing:0.646560px;}
.lsc{letter-spacing:0.661795px;}
.ls26{letter-spacing:0.664072px;}
.ls4{letter-spacing:0.681527px;}
.ls1{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.738000px;}
.ls35{letter-spacing:0.933120px;}
.ls34{letter-spacing:1.113120px;}
.lse{letter-spacing:1.260000px;}
.ls3d{letter-spacing:1.422000px;}
.ls3e{letter-spacing:1.536000px;}
.ls19{letter-spacing:1.619070px;}
.ls6{letter-spacing:2.009671px;}
.ls8{letter-spacing:2.136160px;}
.lsa{letter-spacing:2.199405px;}
.ls37{letter-spacing:3.346560px;}
.ls7{letter-spacing:3.527549px;}
.ls9{letter-spacing:3.717283px;}
.ls2c{letter-spacing:5.031360px;}
.ls2b{letter-spacing:5.151360px;}
.ls2d{letter-spacing:6.226560px;}
.ls2f{letter-spacing:7.666560px;}
.ls5{letter-spacing:8.081183px;}
.ls2e{letter-spacing:906.538560px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(34,34,34),0 0.015em rgb(34,34,34),0.015em 0 rgb(34,34,34),0 -0.015em  rgb(34,34,34);}
.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(34,34,34);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;}
}
.ws1{word-spacing:-23.218560px;}
.ws3{word-spacing:-19.293120px;}
.wsd{word-spacing:-18.786120px;}
.wsb{word-spacing:-18.399718px;}
.ws14{word-spacing:-18.349440px;}
.ws1c{word-spacing:-17.449440px;}
.ws18{word-spacing:-17.431440px;}
.wse{word-spacing:-17.409840px;}
.wsf{word-spacing:-17.210640px;}
.ws7{word-spacing:-17.205240px;}
.ws19{word-spacing:-16.963440px;}
.ws13{word-spacing:-16.949040px;}
.ws15{word-spacing:-16.911240px;}
.ws2{word-spacing:-16.813440px;}
.ws0{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.496640px;}
.ws8{word-spacing:-16.306440px;}
.ws1a{word-spacing:-16.257840px;}
.ws1b{word-spacing:-16.240440px;}
.ws17{word-spacing:-16.220040px;}
.ws10{word-spacing:-15.991440px;}
.ws4{word-spacing:-15.120000px;}
.ws16{word-spacing:-14.779440px;}
.wsa{word-spacing:-13.050000px;}
.ws5{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws9{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
.ws11{word-spacing:9.086400px;}
._15{margin-left:-13.914311px;}
._7{margin-left:-11.108160px;}
._e{margin-left:-9.289150px;}
._12{margin-left:-8.268325px;}
._11{margin-left:-3.134924px;}
._5{margin-left:-2.119680px;}
._6{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._b{width:5.178240px;}
._9{width:6.232320px;}
._a{width:7.649280px;}
._f{width:9.052625px;}
._10{width:10.126613px;}
._8{width:11.442240px;}
._13{width:13.072320px;}
._14{width:14.969265px;}
._d{width:17.418373px;}
._c{width:18.955975px;}
._3{width:118.920000px;}
._4{width:382.500000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fsa{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fsb{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs7{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsc{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:2.875500px;}
.y81{bottom:4.305000px;}
.y5{bottom:4.320000px;}
.ya8{bottom:5.385000px;}
.y61{bottom:5.400000px;}
.ye1{bottom:5.760000px;}
.y83{bottom:6.825000px;}
.y9e{bottom:6.835500px;}
.y89{bottom:6.840000px;}
.y4c{bottom:7.170000px;}
.y84{bottom:7.185000px;}
.y9d{bottom:7.195500px;}
.y35{bottom:7.200000px;}
.y87{bottom:7.560000px;}
.y6a{bottom:8.985000px;}
.y66{bottom:9.000000px;}
.yae{bottom:9.030000px;}
.ye6{bottom:9.045000px;}
.yab{bottom:9.345000px;}
.y63{bottom:9.360000px;}
.y68{bottom:9.375000px;}
.y2{bottom:10.080000px;}
.y3e{bottom:10.795500px;}
.y6c{bottom:11.865000px;}
.ye3{bottom:11.880000px;}
.yaf{bottom:11.910000px;}
.ye7{bottom:11.925000px;}
.yac{bottom:12.225000px;}
.y64{bottom:12.240000px;}
.y4a{bottom:14.755500px;}
.y4{bottom:23.400000px;}
.y34{bottom:33.480000px;}
.y49{bottom:38.155500px;}
.y3d{bottom:40.315500px;}
.y3{bottom:47.880000px;}
.y3c{bottom:52.231500px;}
.y7{bottom:57.636000px;}
.y33{bottom:59.400000px;}
.y48{bottom:60.514500px;}
.y3b{bottom:65.194500px;}
.y3a{bottom:78.154500px;}
.y47{bottom:79.594500px;}
.y32{bottom:85.680000px;}
.y36{bottom:96.880500px;}
.y46{bottom:97.234500px;}
.y39{bottom:99.754500px;}
.y45{bottom:103.354500px;}
.y9f{bottom:104.076000px;}
.yca{bottom:111.276000px;}
.y31{bottom:111.645000px;}
.y70{bottom:114.876000px;}
.yf1{bottom:118.476000px;}
.y44{bottom:119.194500px;}
.y9c{bottom:124.240500px;}
.y43{bottom:134.674500px;}
.y30{bottom:135.045000px;}
.yc9{bottom:137.556000px;}
.y6f{bottom:140.796000px;}
.yf0{bottom:144.432000px;}
.y42{bottom:150.514500px;}
.y9b{bottom:150.930000px;}
.y38{bottom:162.034500px;}
.yc8{bottom:163.515000px;}
.y2f{bottom:164.205000px;}
.y41{bottom:165.994500px;}
.y6e{bottom:167.115000px;}
.yef{bottom:170.715000px;}
.y37{bottom:172.834500px;}
.y9a{bottom:177.930000px;}
.y40{bottom:181.144500px;}
.y2e{bottom:184.365000px;}
.yc7{bottom:186.915000px;}
.y6d{bottom:193.395000px;}
.yee{bottom:196.995000px;}
.y99{bottom:204.930000px;}
.y2d{bottom:207.405000px;}
.y6b{bottom:213.210000px;}
.yc6{bottom:216.075000px;}
.yed{bottom:220.035000px;}
.y2c{bottom:230.445000px;}
.y98{bottom:231.570000px;}
.yc5{bottom:236.235000px;}
.y69{bottom:242.010000px;}
.yec{bottom:249.195000px;}
.y2b{bottom:253.515000px;}
.y97{bottom:258.570000px;}
.yc4{bottom:259.275000px;}
.yeb{bottom:269.355000px;}
.y67{bottom:270.810000px;}
.y2a{bottom:276.915000px;}
.yc3{bottom:282.345000px;}
.y96{bottom:285.585000px;}
.y1d{bottom:288.795000px;}
.yea{bottom:292.425000px;}
.yf{bottom:299.265000px;}
.y29{bottom:299.595000px;}
.y65{bottom:299.985000px;}
.yc2{bottom:305.385000px;}
.y95{bottom:312.225000px;}
.y1c{bottom:312.915000px;}
.y28{bottom:322.995000px;}
.y62{bottom:328.785000px;}
.y1b{bottom:337.035000px;}
.y94{bottom:340.305000px;}
.ye9{bottom:341.025000px;}
.y27{bottom:346.035000px;}
.yc1{bottom:351.465000px;}
.y60{bottom:357.945000px;}
.y1a{bottom:361.515000px;}
.y93{bottom:363.705000px;}
.y26{bottom:369.435000px;}
.ye8{bottom:370.185000px;}
.yc0{bottom:377.745000px;}
.y92{bottom:383.505000px;}
.y19{bottom:385.665000px;}
.y5f{bottom:387.465000px;}
.ye5{bottom:398.985000px;}
.y25{bottom:401.145000px;}
.y91{bottom:403.665000px;}
.ybf{bottom:404.025000px;}
.y18{bottom:409.785000px;}
.y5e{bottom:410.550000px;}
.y24{bottom:427.425000px;}
.ye4{bottom:427.830000px;}
.ybe{bottom:429.990000px;}
.y5d{bottom:430.710000px;}
.y90{bottom:432.870000px;}
.y17{bottom:433.905000px;}
.y5c{bottom:450.870000px;}
.y23{bottom:453.345000px;}
.y8f{bottom:455.910000px;}
.ybd{bottom:456.270000px;}
.ye2{bottom:456.990000px;}
.y16{bottom:458.025000px;}
.y5b{bottom:473.910000px;}
.y22{bottom:479.625000px;}
.y8e{bottom:481.830000px;}
.y15{bottom:482.145000px;}
.ybc{bottom:482.190000px;}
.ye0{bottom:485.790000px;}
.y5a{bottom:499.830000px;}
.ybb{bottom:505.590000px;}
.y21{bottom:505.950000px;}
.y14{bottom:506.310000px;}
.y8d{bottom:508.110000px;}
.ydf{bottom:515.310000px;}
.y59{bottom:523.230000px;}
.yba{bottom:528.630000px;}
.y13{bottom:530.430000px;}
.y20{bottom:531.870000px;}
.y8c{bottom:534.030000px;}
.yde{bottom:538.740000px;}
.y58{bottom:552.420000px;}
.y12{bottom:554.550000px;}
.yb9{bottom:554.580000px;}
.y1f{bottom:558.150000px;}
.y8b{bottom:560.340000px;}
.ydd{bottom:561.780000px;}
.y57{bottom:575.460000px;}
.yb8{bottom:577.980000px;}
.y11{bottom:578.670000px;}
.y8a{bottom:580.140000px;}
.y1e{bottom:584.070000px;}
.ydc{bottom:587.700000px;}
.yb7{bottom:601.020000px;}
.y56{bottom:601.380000px;}
.y10{bottom:602.790000px;}
.y88{bottom:607.140000px;}
.ydb{bottom:611.100000px;}
.y55{bottom:624.780000px;}
.yb6{bottom:626.940000px;}
.yda{bottom:631.260000px;}
.y86{bottom:633.780000px;}
.yb5{bottom:650.340000px;}
.y54{bottom:653.940000px;}
.y85{bottom:660.780000px;}
.yd9{bottom:663.300000px;}
.yb4{bottom:670.530000px;}
.y53{bottom:674.130000px;}
.y82{bottom:687.825000px;}
.yd8{bottom:689.250000px;}
.yb3{bottom:693.570000px;}
.y52{bottom:693.930000px;}
.yb2{bottom:713.385000px;}
.y51{bottom:714.090000px;}
.y80{bottom:714.465000px;}
.yd7{bottom:715.530000px;}
.y50{bottom:734.250000px;}
.yd6{bottom:741.450000px;}
.yb1{bottom:742.185000px;}
.y7f{bottom:742.530000px;}
.y4f{bottom:759.450000px;}
.y7e{bottom:765.930000px;}
.yd5{bottom:767.730000px;}
.yb0{bottom:771.345000px;}
.y7d{bottom:788.610000px;}
.yd4{bottom:793.650000px;}
.yad{bottom:800.145000px;}
.y7c{bottom:814.935000px;}
.yd3{bottom:819.975000px;}
.yaa{bottom:828.990000px;}
.y7b{bottom:838.335000px;}
.yd2{bottom:846.255000px;}
.ya9{bottom:858.150000px;}
.y7a{bottom:861.015000px;}
.yd1{bottom:869.295000px;}
.yf2{bottom:875.055000px;}
.ya7{bottom:886.950000px;}
.y79{bottom:887.295000px;}
.yd0{bottom:901.335000px;}
.y78{bottom:913.575000px;}
.ye{bottom:914.295000px;}
.ya6{bottom:916.455000px;}
.yd{bottom:919.695000px;}
.ycf{bottom:927.615000px;}
.y77{bottom:939.525000px;}
.yc{bottom:940.245000px;}
.ya5{bottom:942.765000px;}
.yce{bottom:953.565000px;}
.y76{bottom:965.805000px;}
.yb{bottom:966.165000px;}
.ya4{bottom:968.685000px;}
.ycd{bottom:979.845000px;}
.y75{bottom:991.725000px;}
.ya3{bottom:992.085000px;}
.ya{bottom:995.685000px;}
.ycc{bottom:1005.765000px;}
.y74{bottom:1015.125000px;}
.ya2{bottom:1021.245000px;}
.ycb{bottom:1032.045000px;}
.y9{bottom:1032.405000px;}
.y73{bottom:1035.285000px;}
.ya1{bottom:1041.405000px;}
.y4e{bottom:1055.085000px;}
.y72{bottom:1058.325000px;}
.ya0{bottom:1061.565000px;}
.y8{bottom:1072.050000px;}
.y4b{bottom:1075.320000px;}
.y71{bottom:1084.290000px;}
.y4d{bottom:1087.530000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h14{height:5.650313px;}
.h1c{height:20.145000px;}
.h18{height:21.585000px;}
.h24{height:21.945000px;}
.h1d{height:25.905000px;}
.h20{height:25.920000px;}
.h22{height:25.951500px;}
.h21{height:26.265000px;}
.h1f{height:26.280000px;}
.h1e{height:26.316000px;}
.h16{height:27.720000px;}
.h1a{height:28.065000px;}
.h23{height:28.101000px;}
.h25{height:28.110000px;}
.h19{height:28.425000px;}
.h1b{height:28.440000px;}
.h11{height:29.678906px;}
.h10{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h12{height:53.677969px;}
.h13{height:55.147500px;}
.h7{height:57.290625px;}
.h6{height:59.357813px;}
.ha{height:60.952500px;}
.h15{height:61.143509px;}
.h17{height:63.565031px;}
.h9{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.he{height:67.579668px;}
.h2{height:84.990000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.hf{height:201.645000px;}
.hb{height:612.150000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:50.025000px;}
.w19{width:53.265000px;}
.w12{width:56.857500px;}
.w1e{width:61.230000px;}
.wd{width:65.880000px;}
.w20{width:69.156000px;}
.wa{width:73.425000px;}
.wc{width:73.440000px;}
.w1b{width:80.316000px;}
.we{width:80.670000px;}
.w16{width:82.101000px;}
.w21{width:84.621000px;}
.w15{width:84.996000px;}
.wb{width:87.141000px;}
.w1c{width:100.821000px;}
.w2{width:103.702500px;}
.w13{width:118.845000px;}
.w17{width:121.005000px;}
.w10{width:124.605000px;}
.w4{width:132.502500px;}
.w8{width:137.565000px;}
.w1f{width:138.990000px;}
.w9{width:141.192000px;}
.w11{width:147.285000px;}
.w14{width:153.030000px;}
.w1a{width:161.355000px;}
.w6{width:163.080000px;}
.w18{width:176.445000px;}
.wf{width:184.035000px;}
.w22{width:200.955000px;}
.w1d{width:215.355000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.265000px;}
.x24{left:10.425000px;}
.x4{left:13.305000px;}
.x29{left:15.825000px;}
.x14{left:16.906500px;}
.x19{left:18.346500px;}
.x15{left:19.426500px;}
.x2c{left:20.505000px;}
.x27{left:22.320000px;}
.x34{left:23.760000px;}
.x41{left:24.870000px;}
.x45{left:27.750000px;}
.x6{left:28.785000px;}
.x2f{left:30.630000px;}
.x2e{left:34.950000px;}
.x30{left:37.815000px;}
.x3a{left:39.270000px;}
.x37{left:41.790000px;}
.xf{left:43.906500px;}
.x2d{left:45.375000px;}
.x1a{left:47.542500px;}
.x10{left:50.782500px;}
.x13{left:53.302500px;}
.xe{left:55.102500px;}
.x1c{left:57.262500px;}
.x17{left:62.295000px;}
.x43{left:63.720000px;}
.x1b{left:66.265500px;}
.x44{left:68.040000px;}
.x39{left:73.110000px;}
.x12{left:75.985500px;}
.x38{left:77.070000px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x20{left:87.855000px;}
.x1e{left:90.735000px;}
.x2{left:95.425500px;}
.x1d{left:102.985500px;}
.x18{left:106.945500px;}
.x11{left:124.585500px;}
.x1f{left:133.260000px;}
.x3c{left:136.534500px;}
.x22{left:140.472000px;}
.x23{left:163.530000px;}
.x3{left:182.250000px;}
.x3d{left:194.130000px;}
.x25{left:214.290000px;}
.x32{left:217.890000px;}
.x16{left:218.970000px;}
.x47{left:247.785000px;}
.x4c{left:268.665000px;}
.x33{left:284.505000px;}
.x48{left:301.785000px;}
.xb{left:306.105000px;}
.x3e{left:313.710000px;}
.x4d{left:330.630000px;}
.x26{left:352.590000px;}
.x3b{left:354.750000px;}
.x35{left:365.910000px;}
.x46{left:370.590000px;}
.x4b{left:374.190000px;}
.x31{left:389.670000px;}
.x49{left:463.860000px;}
.x3f{left:467.460000px;}
.x4e{left:470.340000px;}
.x28{left:494.505000px;}
.x4f{left:540.225000px;}
.x4a{left:544.905000px;}
.x36{left:550.665000px;}
.x40{left:553.185000px;}
.x2a{left:568.665000px;}
.xc{left:610.095000px;}
.x42{left:636.030000px;}
.x2b{left:656.550000px;}
.x21{left:687.525000px;}
.xa{left:706.245000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.ls15{letter-spacing:-8.095350pt;}
.ls3a{letter-spacing:-7.680000pt;}
.ls28{letter-spacing:-7.195867pt;}
.ls40{letter-spacing:-1.808000pt;}
.ls20{letter-spacing:-1.162667pt;}
.ls21{letter-spacing:-1.104000pt;}
.ls47{letter-spacing:-1.072000pt;}
.ls1c{letter-spacing:-0.910727pt;}
.ls39{letter-spacing:-0.864000pt;}
.ls27{letter-spacing:-0.758939pt;}
.ls38{letter-spacing:-0.730667pt;}
.ls11{letter-spacing:-0.624000pt;}
.ls24{letter-spacing:-0.560000pt;}
.ls1b{letter-spacing:-0.536879pt;}
.ls41{letter-spacing:-0.527467pt;}
.ls48{letter-spacing:-0.509333pt;}
.ls45{letter-spacing:-0.493867pt;}
.ls18{letter-spacing:-0.475040pt;}
.ls22{letter-spacing:-0.450667pt;}
.ls46{letter-spacing:-0.414933pt;}
.ls3b{letter-spacing:-0.281600pt;}
.ls25{letter-spacing:-0.208006pt;}
.ls12{letter-spacing:-0.079467pt;}
.ls29{letter-spacing:-0.073083pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.029683pt;}
.ls1e{letter-spacing:-0.028160pt;}
.ls17{letter-spacing:-0.018889pt;}
.lsd{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017920pt;}
.ls1d{letter-spacing:0.083764pt;}
.ls3f{letter-spacing:0.086933pt;}
.ls3c{letter-spacing:0.120533pt;}
.ls13{letter-spacing:0.121430pt;}
.ls43{letter-spacing:0.124587pt;}
.ls44{letter-spacing:0.133333pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.348267pt;}
.ls31{letter-spacing:0.353067pt;}
.ls36{letter-spacing:0.376320pt;}
.ls30{letter-spacing:0.414720pt;}
.ls10{letter-spacing:0.414933pt;}
.ls2{letter-spacing:0.437149pt;}
.ls14{letter-spacing:0.437374pt;}
.ls33{letter-spacing:0.530133pt;}
.ls42{letter-spacing:0.549333pt;}
.ls3{letter-spacing:0.549584pt;}
.ls1a{letter-spacing:0.558804pt;}
.ls32{letter-spacing:0.565333pt;}
.ls0{letter-spacing:0.574720pt;}
.lsc{letter-spacing:0.588262pt;}
.ls26{letter-spacing:0.590286pt;}
.ls4{letter-spacing:0.605802pt;}
.ls1{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.656000pt;}
.ls35{letter-spacing:0.829440pt;}
.ls34{letter-spacing:0.989440pt;}
.lse{letter-spacing:1.120000pt;}
.ls3d{letter-spacing:1.264000pt;}
.ls3e{letter-spacing:1.365333pt;}
.ls19{letter-spacing:1.439173pt;}
.ls6{letter-spacing:1.786374pt;}
.ls8{letter-spacing:1.898809pt;}
.lsa{letter-spacing:1.955027pt;}
.ls37{letter-spacing:2.974720pt;}
.ls7{letter-spacing:3.135599pt;}
.ls9{letter-spacing:3.304252pt;}
.ls2c{letter-spacing:4.472320pt;}
.ls2b{letter-spacing:4.578987pt;}
.ls2d{letter-spacing:5.534720pt;}
.ls2f{letter-spacing:6.814720pt;}
.ls5{letter-spacing:7.183274pt;}
.ls2e{letter-spacing:805.812053pt;}
.ws1{word-spacing:-20.638720pt;}
.ws3{word-spacing:-17.149440pt;}
.wsd{word-spacing:-16.698773pt;}
.wsb{word-spacing:-16.355305pt;}
.ws14{word-spacing:-16.310613pt;}
.ws1c{word-spacing:-15.510613pt;}
.ws18{word-spacing:-15.494613pt;}
.wse{word-spacing:-15.475413pt;}
.wsf{word-spacing:-15.298347pt;}
.ws7{word-spacing:-15.293547pt;}
.ws19{word-spacing:-15.078613pt;}
.ws13{word-spacing:-15.065813pt;}
.ws15{word-spacing:-15.032213pt;}
.ws2{word-spacing:-14.945280pt;}
.ws0{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.663680pt;}
.ws8{word-spacing:-14.494613pt;}
.ws1a{word-spacing:-14.451413pt;}
.ws1b{word-spacing:-14.435947pt;}
.ws17{word-spacing:-14.417813pt;}
.ws10{word-spacing:-14.214613pt;}
.ws4{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.137280pt;}
.wsa{word-spacing:-11.600000pt;}
.ws5{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws9{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
.ws11{word-spacing:8.076800pt;}
._15{margin-left:-12.368276pt;}
._7{margin-left:-9.873920pt;}
._e{margin-left:-8.257022pt;}
._12{margin-left:-7.349622pt;}
._11{margin-left:-2.786599pt;}
._5{margin-left:-1.884160pt;}
._6{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._b{width:4.602880pt;}
._9{width:5.539840pt;}
._a{width:6.799360pt;}
._f{width:8.046778pt;}
._10{width:9.001434pt;}
._8{width:10.170880pt;}
._13{width:11.619840pt;}
._14{width:13.306013pt;}
._d{width:15.482999pt;}
._c{width:16.849755pt;}
._3{width:105.706667pt;}
._4{width:340.000000pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fsa{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fsb{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs7{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsc{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.556000pt;}
.y81{bottom:3.826667pt;}
.y5{bottom:3.840000pt;}
.ya8{bottom:4.786667pt;}
.y61{bottom:4.800000pt;}
.ye1{bottom:5.120000pt;}
.y83{bottom:6.066667pt;}
.y9e{bottom:6.076000pt;}
.y89{bottom:6.080000pt;}
.y4c{bottom:6.373333pt;}
.y84{bottom:6.386667pt;}
.y9d{bottom:6.396000pt;}
.y35{bottom:6.400000pt;}
.y87{bottom:6.720000pt;}
.y6a{bottom:7.986667pt;}
.y66{bottom:8.000000pt;}
.yae{bottom:8.026667pt;}
.ye6{bottom:8.040000pt;}
.yab{bottom:8.306667pt;}
.y63{bottom:8.320000pt;}
.y68{bottom:8.333333pt;}
.y2{bottom:8.960000pt;}
.y3e{bottom:9.596000pt;}
.y6c{bottom:10.546667pt;}
.ye3{bottom:10.560000pt;}
.yaf{bottom:10.586667pt;}
.ye7{bottom:10.600000pt;}
.yac{bottom:10.866667pt;}
.y64{bottom:10.880000pt;}
.y4a{bottom:13.116000pt;}
.y4{bottom:20.800000pt;}
.y34{bottom:29.760000pt;}
.y49{bottom:33.916000pt;}
.y3d{bottom:35.836000pt;}
.y3{bottom:42.560000pt;}
.y3c{bottom:46.428000pt;}
.y7{bottom:51.232000pt;}
.y33{bottom:52.800000pt;}
.y48{bottom:53.790667pt;}
.y3b{bottom:57.950667pt;}
.y3a{bottom:69.470667pt;}
.y47{bottom:70.750667pt;}
.y32{bottom:76.160000pt;}
.y36{bottom:86.116000pt;}
.y46{bottom:86.430667pt;}
.y39{bottom:88.670667pt;}
.y45{bottom:91.870667pt;}
.y9f{bottom:92.512000pt;}
.yca{bottom:98.912000pt;}
.y31{bottom:99.240000pt;}
.y70{bottom:102.112000pt;}
.yf1{bottom:105.312000pt;}
.y44{bottom:105.950667pt;}
.y9c{bottom:110.436000pt;}
.y43{bottom:119.710667pt;}
.y30{bottom:120.040000pt;}
.yc9{bottom:122.272000pt;}
.y6f{bottom:125.152000pt;}
.yf0{bottom:128.384000pt;}
.y42{bottom:133.790667pt;}
.y9b{bottom:134.160000pt;}
.y38{bottom:144.030667pt;}
.yc8{bottom:145.346667pt;}
.y2f{bottom:145.960000pt;}
.y41{bottom:147.550667pt;}
.y6e{bottom:148.546667pt;}
.yef{bottom:151.746667pt;}
.y37{bottom:153.630667pt;}
.y9a{bottom:158.160000pt;}
.y40{bottom:161.017333pt;}
.y2e{bottom:163.880000pt;}
.yc7{bottom:166.146667pt;}
.y6d{bottom:171.906667pt;}
.yee{bottom:175.106667pt;}
.y99{bottom:182.160000pt;}
.y2d{bottom:184.360000pt;}
.y6b{bottom:189.520000pt;}
.yc6{bottom:192.066667pt;}
.yed{bottom:195.586667pt;}
.y2c{bottom:204.840000pt;}
.y98{bottom:205.840000pt;}
.yc5{bottom:209.986667pt;}
.y69{bottom:215.120000pt;}
.yec{bottom:221.506667pt;}
.y2b{bottom:225.346667pt;}
.y97{bottom:229.840000pt;}
.yc4{bottom:230.466667pt;}
.yeb{bottom:239.426667pt;}
.y67{bottom:240.720000pt;}
.y2a{bottom:246.146667pt;}
.yc3{bottom:250.973333pt;}
.y96{bottom:253.853333pt;}
.y1d{bottom:256.706667pt;}
.yea{bottom:259.933333pt;}
.yf{bottom:266.013333pt;}
.y29{bottom:266.306667pt;}
.y65{bottom:266.653333pt;}
.yc2{bottom:271.453333pt;}
.y95{bottom:277.533333pt;}
.y1c{bottom:278.146667pt;}
.y28{bottom:287.106667pt;}
.y62{bottom:292.253333pt;}
.y1b{bottom:299.586667pt;}
.y94{bottom:302.493333pt;}
.ye9{bottom:303.133333pt;}
.y27{bottom:307.586667pt;}
.yc1{bottom:312.413333pt;}
.y60{bottom:318.173333pt;}
.y1a{bottom:321.346667pt;}
.y93{bottom:323.293333pt;}
.y26{bottom:328.386667pt;}
.ye8{bottom:329.053333pt;}
.yc0{bottom:335.773333pt;}
.y92{bottom:340.893333pt;}
.y19{bottom:342.813333pt;}
.y5f{bottom:344.413333pt;}
.ye5{bottom:354.653333pt;}
.y25{bottom:356.573333pt;}
.y91{bottom:358.813333pt;}
.ybf{bottom:359.133333pt;}
.y18{bottom:364.253333pt;}
.y5e{bottom:364.933333pt;}
.y24{bottom:379.933333pt;}
.ye4{bottom:380.293333pt;}
.ybe{bottom:382.213333pt;}
.y5d{bottom:382.853333pt;}
.y90{bottom:384.773333pt;}
.y17{bottom:385.693333pt;}
.y5c{bottom:400.773333pt;}
.y23{bottom:402.973333pt;}
.y8f{bottom:405.253333pt;}
.ybd{bottom:405.573333pt;}
.ye2{bottom:406.213333pt;}
.y16{bottom:407.133333pt;}
.y5b{bottom:421.253333pt;}
.y22{bottom:426.333333pt;}
.y8e{bottom:428.293333pt;}
.y15{bottom:428.573333pt;}
.ybc{bottom:428.613333pt;}
.ye0{bottom:431.813333pt;}
.y5a{bottom:444.293333pt;}
.ybb{bottom:449.413333pt;}
.y21{bottom:449.733333pt;}
.y14{bottom:450.053333pt;}
.y8d{bottom:451.653333pt;}
.ydf{bottom:458.053333pt;}
.y59{bottom:465.093333pt;}
.yba{bottom:469.893333pt;}
.y13{bottom:471.493333pt;}
.y20{bottom:472.773333pt;}
.y8c{bottom:474.693333pt;}
.yde{bottom:478.880000pt;}
.y58{bottom:491.040000pt;}
.y12{bottom:492.933333pt;}
.yb9{bottom:492.960000pt;}
.y1f{bottom:496.133333pt;}
.y8b{bottom:498.080000pt;}
.ydd{bottom:499.360000pt;}
.y57{bottom:511.520000pt;}
.yb8{bottom:513.760000pt;}
.y11{bottom:514.373333pt;}
.y8a{bottom:515.680000pt;}
.y1e{bottom:519.173333pt;}
.ydc{bottom:522.400000pt;}
.yb7{bottom:534.240000pt;}
.y56{bottom:534.560000pt;}
.y10{bottom:535.813333pt;}
.y88{bottom:539.680000pt;}
.ydb{bottom:543.200000pt;}
.y55{bottom:555.360000pt;}
.yb6{bottom:557.280000pt;}
.yda{bottom:561.120000pt;}
.y86{bottom:563.360000pt;}
.yb5{bottom:578.080000pt;}
.y54{bottom:581.280000pt;}
.y85{bottom:587.360000pt;}
.yd9{bottom:589.600000pt;}
.yb4{bottom:596.026667pt;}
.y53{bottom:599.226667pt;}
.y82{bottom:611.400000pt;}
.yd8{bottom:612.666667pt;}
.yb3{bottom:616.506667pt;}
.y52{bottom:616.826667pt;}
.yb2{bottom:634.120000pt;}
.y51{bottom:634.746667pt;}
.y80{bottom:635.080000pt;}
.yd7{bottom:636.026667pt;}
.y50{bottom:652.666667pt;}
.yd6{bottom:659.066667pt;}
.yb1{bottom:659.720000pt;}
.y7f{bottom:660.026667pt;}
.y4f{bottom:675.066667pt;}
.y7e{bottom:680.826667pt;}
.yd5{bottom:682.426667pt;}
.yb0{bottom:685.640000pt;}
.y7d{bottom:700.986667pt;}
.yd4{bottom:705.466667pt;}
.yad{bottom:711.240000pt;}
.y7c{bottom:724.386667pt;}
.yd3{bottom:728.866667pt;}
.yaa{bottom:736.880000pt;}
.y7b{bottom:745.186667pt;}
.yd2{bottom:752.226667pt;}
.ya9{bottom:762.800000pt;}
.y7a{bottom:765.346667pt;}
.yd1{bottom:772.706667pt;}
.yf2{bottom:777.826667pt;}
.ya7{bottom:788.400000pt;}
.y79{bottom:788.706667pt;}
.yd0{bottom:801.186667pt;}
.y78{bottom:812.066667pt;}
.ye{bottom:812.706667pt;}
.ya6{bottom:814.626667pt;}
.yd{bottom:817.506667pt;}
.ycf{bottom:824.546667pt;}
.y77{bottom:835.133333pt;}
.yc{bottom:835.773333pt;}
.ya5{bottom:838.013333pt;}
.yce{bottom:847.613333pt;}
.y76{bottom:858.493333pt;}
.yb{bottom:858.813333pt;}
.ya4{bottom:861.053333pt;}
.ycd{bottom:870.973333pt;}
.y75{bottom:881.533333pt;}
.ya3{bottom:881.853333pt;}
.ya{bottom:885.053333pt;}
.ycc{bottom:894.013333pt;}
.y74{bottom:902.333333pt;}
.ya2{bottom:907.773333pt;}
.ycb{bottom:917.373333pt;}
.y9{bottom:917.693333pt;}
.y73{bottom:920.253333pt;}
.ya1{bottom:925.693333pt;}
.y4e{bottom:937.853333pt;}
.y72{bottom:940.733333pt;}
.ya0{bottom:943.613333pt;}
.y8{bottom:952.933333pt;}
.y4b{bottom:955.840000pt;}
.y71{bottom:963.813333pt;}
.y4d{bottom:966.693333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h14{height:5.022500pt;}
.h1c{height:17.906667pt;}
.h18{height:19.186667pt;}
.h24{height:19.506667pt;}
.h1d{height:23.026667pt;}
.h20{height:23.040000pt;}
.h22{height:23.068000pt;}
.h21{height:23.346667pt;}
.h1f{height:23.360000pt;}
.h1e{height:23.392000pt;}
.h16{height:24.640000pt;}
.h1a{height:24.946667pt;}
.h23{height:24.978667pt;}
.h25{height:24.986667pt;}
.h19{height:25.266667pt;}
.h1b{height:25.280000pt;}
.h11{height:26.381250pt;}
.h10{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h12{height:47.713750pt;}
.h13{height:49.020000pt;}
.h7{height:50.925000pt;}
.h6{height:52.762500pt;}
.ha{height:54.180000pt;}
.h15{height:54.349786pt;}
.h17{height:56.502250pt;}
.h9{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.he{height:60.070816pt;}
.h2{height:75.546667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.hf{height:179.240000pt;}
.hb{height:544.133333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:44.466667pt;}
.w19{width:47.346667pt;}
.w12{width:50.540000pt;}
.w1e{width:54.426667pt;}
.wd{width:58.560000pt;}
.w20{width:61.472000pt;}
.wa{width:65.266667pt;}
.wc{width:65.280000pt;}
.w1b{width:71.392000pt;}
.we{width:71.706667pt;}
.w16{width:72.978667pt;}
.w21{width:75.218667pt;}
.w15{width:75.552000pt;}
.wb{width:77.458667pt;}
.w1c{width:89.618667pt;}
.w2{width:92.180000pt;}
.w13{width:105.640000pt;}
.w17{width:107.560000pt;}
.w10{width:110.760000pt;}
.w4{width:117.780000pt;}
.w8{width:122.280000pt;}
.w1f{width:123.546667pt;}
.w9{width:125.504000pt;}
.w11{width:130.920000pt;}
.w14{width:136.026667pt;}
.w1a{width:143.426667pt;}
.w6{width:144.960000pt;}
.w18{width:156.840000pt;}
.wf{width:163.586667pt;}
.w22{width:178.626667pt;}
.w1d{width:191.426667pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.346667pt;}
.x24{left:9.266667pt;}
.x4{left:11.826667pt;}
.x29{left:14.066667pt;}
.x14{left:15.028000pt;}
.x19{left:16.308000pt;}
.x15{left:17.268000pt;}
.x2c{left:18.226667pt;}
.x27{left:19.840000pt;}
.x34{left:21.120000pt;}
.x41{left:22.106667pt;}
.x45{left:24.666667pt;}
.x6{left:25.586667pt;}
.x2f{left:27.226667pt;}
.x2e{left:31.066667pt;}
.x30{left:33.613333pt;}
.x3a{left:34.906667pt;}
.x37{left:37.146667pt;}
.xf{left:39.028000pt;}
.x2d{left:40.333333pt;}
.x1a{left:42.260000pt;}
.x10{left:45.140000pt;}
.x13{left:47.380000pt;}
.xe{left:48.980000pt;}
.x1c{left:50.900000pt;}
.x17{left:55.373333pt;}
.x43{left:56.640000pt;}
.x1b{left:58.902667pt;}
.x44{left:60.480000pt;}
.x39{left:64.986667pt;}
.x12{left:67.542667pt;}
.x38{left:68.506667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x20{left:78.093333pt;}
.x1e{left:80.653333pt;}
.x2{left:84.822667pt;}
.x1d{left:91.542667pt;}
.x18{left:95.062667pt;}
.x11{left:110.742667pt;}
.x1f{left:118.453333pt;}
.x3c{left:121.364000pt;}
.x22{left:124.864000pt;}
.x23{left:145.360000pt;}
.x3{left:162.000000pt;}
.x3d{left:172.560000pt;}
.x25{left:190.480000pt;}
.x32{left:193.680000pt;}
.x16{left:194.640000pt;}
.x47{left:220.253333pt;}
.x4c{left:238.813333pt;}
.x33{left:252.893333pt;}
.x48{left:268.253333pt;}
.xb{left:272.093333pt;}
.x3e{left:278.853333pt;}
.x4d{left:293.893333pt;}
.x26{left:313.413333pt;}
.x3b{left:315.333333pt;}
.x35{left:325.253333pt;}
.x46{left:329.413333pt;}
.x4b{left:332.613333pt;}
.x31{left:346.373333pt;}
.x49{left:412.320000pt;}
.x3f{left:415.520000pt;}
.x4e{left:418.080000pt;}
.x28{left:439.560000pt;}
.x4f{left:480.200000pt;}
.x4a{left:484.360000pt;}
.x36{left:489.480000pt;}
.x40{left:491.720000pt;}
.x2a{left:505.480000pt;}
.xc{left:542.306667pt;}
.x42{left:565.360000pt;}
.x2b{left:583.600000pt;}
.x21{left:611.133333pt;}
.xa{left:627.773333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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