
    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_4ec80d491bbb654eed88d9a9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_795527f03759849696e4d792.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e8121d1dc53931dff8fc66bb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_cf4c1e9836194efcd412d3ae.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_7bf40eabf7e0366352dfba4a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_846bd2214459a9926bdc9162.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_31b905b6959e2768d2b8fdaf.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944824;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_7545766d889f9d55b60d098b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_ff8cd363c63d40f339b191af.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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_f7873e6610ad980ff1f54f2c.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4c9f6fd7294b06b2e71ddcd4.woff')format("woff");}.ff11{font-family:ff11;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.483600px;}
.ls8{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.089400px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.078000px;}
.ls3{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.984000px;}
.ls7{letter-spacing:40.625280px;}
.ls6{letter-spacing:40.637280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-83.520000px;}
.ws4{word-spacing:-60.480000px;}
.ws0{word-spacing:-19.010880px;}
.ws8{word-spacing:-17.890800px;}
.wsa{word-spacing:-17.544000px;}
.wsb{word-spacing:-17.172000px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.416000px;}
.ws9{word-spacing:-16.102200px;}
.ws2{word-spacing:-14.650800px;}
.ws6{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.350600px;}
.ws7{word-spacing:0.000000px;}
._b{margin-left:-2.898240px;}
._2{margin-left:-1.722240px;}
._0{width:1.085760px;}
._1{width:2.589120px;}
._4{width:4.101120px;}
._a{width:5.636160px;}
._9{width:6.776640px;}
._18{width:8.738880px;}
._8{width:9.829920px;}
._7{width:11.327040px;}
._13{width:12.556800px;}
._11{width:13.752000px;}
._10{width:14.904000px;}
._28{width:17.775840px;}
._d{width:18.928320px;}
._20{width:20.324640px;}
._16{width:21.461760px;}
._54{width:22.469760px;}
._6{width:23.581440px;}
._c{width:25.118880px;}
._5{width:26.602560px;}
._1f{width:27.888960px;}
._1e{width:29.846400px;}
._25{width:31.031040px;}
._24{width:32.258880px;}
._17{width:33.716160px;}
._27{width:35.239680px;}
._2e{width:36.974400px;}
._32{width:38.727840px;}
._44{width:39.922560px;}
._12{width:40.938240px;}
._e{width:42.393600px;}
._f{width:44.774400px;}
._38{width:45.884160px;}
._2c{width:46.983360px;}
._19{width:48.016320px;}
._37{width:49.065600px;}
._15{width:50.524800px;}
._14{width:51.733440px;}
._2d{width:53.376000px;}
._3d{width:54.460800px;}
._34{width:55.913280px;}
._2f{width:57.562560px;}
._2b{width:58.754880px;}
._2a{width:59.788800px;}
._3a{width:60.940800px;}
._4d{width:62.530560px;}
._26{width:64.186560px;}
._1d{width:65.549760px;}
._1c{width:66.762240px;}
._50{width:67.832640px;}
._49{width:68.926080px;}
._4a{width:70.545600px;}
._1b{width:72.135360px;}
._1a{width:73.460160px;}
._47{width:74.784960px;}
._3f{width:76.143360px;}
._3e{width:77.833920px;}
._36{width:79.130880px;}
._35{width:80.547840px;}
._48{width:81.716160px;}
._4c{width:83.293440px;}
._4b{width:85.022400px;}
._4e{width:86.045760px;}
._39{width:89.359680px;}
._31{width:90.444000px;}
._30{width:92.007360px;}
._43{width:93.541440px;}
._4f{width:95.183040px;}
._40{width:96.535680px;}
._3b{width:99.882240px;}
._29{width:101.943360px;}
._33{width:104.567040px;}
._3c{width:106.630080px;}
._55{width:108.162720px;}
._45{width:114.900480px;}
._42{width:133.672320px;}
._41{width:134.798400px;}
._23{width:154.875840px;}
._21{width:190.783200px;}
._22{width:197.745600px;}
._3{width:199.596000px;}
._52{width:212.728320px;}
._53{width:214.575360px;}
._46{width:219.811200px;}
._51{width:675.539520px;}
._56{width:847.896000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs5{font-size:24.480000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:93.600000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1c{bottom:1.425000px;}
.y13{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.y7b{bottom:3.945000px;}
.y74{bottom:3.960000px;}
.y92{bottom:3.975000px;}
.y7f{bottom:4.305000px;}
.y78{bottom:4.320000px;}
.y82{bottom:4.350000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y11{bottom:7.920000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y7a{bottom:23.025000px;}
.y89{bottom:23.040000px;}
.y91{bottom:23.055000px;}
.y81{bottom:23.070000px;}
.y7e{bottom:23.385000px;}
.y77{bottom:23.400000px;}
.y19{bottom:26.265000px;}
.y5{bottom:33.120000px;}
.y10{bottom:33.840000px;}
.y84{bottom:42.105000px;}
.y76{bottom:42.120000px;}
.y8b{bottom:42.150000px;}
.y7d{bottom:42.465000px;}
.y18{bottom:47.865000px;}
.y1{bottom:51.120000px;}
.y87{bottom:61.230000px;}
.y17{bottom:70.545000px;}
.y42{bottom:75.240000px;}
.y16{bottom:93.255000px;}
.y3d{bottom:112.716000px;}
.y15{bottom:115.935000px;}
.y98{bottom:128.556000px;}
.y6d{bottom:134.316000px;}
.y3c{bottom:137.196000px;}
.y97{bottom:153.390000px;}
.y6c{bottom:158.790000px;}
.y3b{bottom:162.030000px;}
.y96{bottom:168.885000px;}
.y6b{bottom:183.630000px;}
.y3a{bottom:186.510000px;}
.y95{bottom:207.450000px;}
.y6a{bottom:208.155000px;}
.y39{bottom:211.395000px;}
.y69{bottom:232.995000px;}
.y38{bottom:235.875000px;}
.y94{bottom:246.330000px;}
.y68{bottom:257.475000px;}
.y3f{bottom:260.355000px;}
.y37{bottom:260.715000px;}
.y67{bottom:282.315000px;}
.y93{bottom:284.850000px;}
.y36{bottom:285.195000px;}
.y66{bottom:306.795000px;}
.y35{bottom:310.035000px;}
.y90{bottom:323.730000px;}
.y6f{bottom:331.305000px;}
.y65{bottom:331.665000px;}
.y34{bottom:334.545000px;}
.y64{bottom:356.145000px;}
.y33{bottom:359.385000px;}
.y8f{bottom:362.265000px;}
.y6e{bottom:363.705000px;}
.y63{bottom:380.985000px;}
.y32{bottom:383.865000px;}
.y8e{bottom:401.145000px;}
.y9b{bottom:405.105000px;}
.y62{bottom:405.465000px;}
.y31{bottom:408.705000px;}
.y61{bottom:430.305000px;}
.y30{bottom:433.185000px;}
.y60{bottom:454.830000px;}
.y2f{bottom:458.070000px;}
.y8d{bottom:458.790000px;}
.y5f{bottom:479.670000px;}
.y2e{bottom:482.550000px;}
.y8c{bottom:497.310000px;}
.y5e{bottom:504.150000px;}
.y2d{bottom:507.030000px;}
.y3e{bottom:507.390000px;}
.y5d{bottom:528.990000px;}
.y2c{bottom:532.230000px;}
.y8a{bottom:536.190000px;}
.y5c{bottom:553.470000px;}
.y2b{bottom:555.630000px;}
.y2a{bottom:577.620000px;}
.y5b{bottom:578.340000px;}
.y29{bottom:602.100000px;}
.y9c{bottom:602.460000px;}
.y5a{bottom:602.820000px;}
.y88{bottom:612.900000px;}
.y28{bottom:623.700000px;}
.y72{bottom:627.300000px;}
.y59{bottom:627.660000px;}
.y27{bottom:645.660000px;}
.y86{bottom:651.420000px;}
.y58{bottom:652.140000px;}
.y26{bottom:667.620000px;}
.y57{bottom:676.980000px;}
.y25{bottom:689.220000px;}
.y56{bottom:701.490000px;}
.y24{bottom:711.210000px;}
.y55{bottom:726.330000px;}
.y85{bottom:728.145000px;}
.y23{bottom:732.810000px;}
.y54{bottom:750.810000px;}
.y22{bottom:754.770000px;}
.y83{bottom:767.025000px;}
.y53{bottom:775.650000px;}
.y21{bottom:776.730000px;}
.y20{bottom:798.330000px;}
.y52{bottom:800.130000px;}
.y1f{bottom:820.290000px;}
.y80{bottom:824.625000px;}
.y51{bottom:824.970000px;}
.y1e{bottom:841.935000px;}
.y50{bottom:849.495000px;}
.y1d{bottom:861.375000px;}
.y7c{bottom:863.190000px;}
.y1b{bottom:869.670000px;}
.y4f{bottom:874.335000px;}
.y14{bottom:876.870000px;}
.y1a{bottom:880.489792px;}
.y4e{bottom:899.175000px;}
.y79{bottom:921.150000px;}
.y4d{bottom:923.655000px;}
.y9a{bottom:948.135000px;}
.y4c{bottom:948.495000px;}
.y75{bottom:959.685000px;}
.y99{bottom:972.645000px;}
.y4b{bottom:973.005000px;}
.y4a{bottom:997.845000px;}
.y73{bottom:1017.285000px;}
.y12{bottom:1018.365000px;}
.y49{bottom:1022.325000px;}
.yf{bottom:1024.845000px;}
.y71{bottom:1046.805000px;}
.y48{bottom:1047.165000px;}
.y70{bottom:1071.285000px;}
.y47{bottom:1071.645000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y46{bottom:1096.530000px;}
.y2{bottom:1106.250000px;}
.y45{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.y44{bottom:1145.850000px;}
.y4{bottom:1156.650000px;}
.y43{bottom:1170.330000px;}
.y41{bottom:1187.250000px;}
.y40{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.857187px;}
.h17{height:18.120938px;}
.h22{height:19.065000px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1e{height:30.480469px;}
.h18{height:36.861328px;}
.h2a{height:37.785000px;}
.h24{height:37.800000px;}
.h26{height:37.821000px;}
.h27{height:38.145000px;}
.h20{height:40.985156px;}
.h1c{height:46.251562px;}
.he{height:51.870000px;}
.h5{height:52.950000px;}
.h9{height:56.084062px;}
.h23{height:56.865000px;}
.h2b{height:56.910000px;}
.h25{height:57.225000px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h15{height:63.984375px;}
.h19{height:64.978594px;}
.h1a{height:65.010937px;}
.h1f{height:65.884219px;}
.h1b{height:66.757500px;}
.h14{height:67.803750px;}
.h21{height:68.084282px;}
.h6{height:70.714687px;}
.h1d{height:71.225156px;}
.h13{height:72.562500px;}
.h29{height:75.990000px;}
.h28{height:75.996000px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.350000px;}
.h12{height:141.480000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:48.270000px;}
.wf{width:56.865000px;}
.wa{width:73.440000px;}
.w9{width:75.630000px;}
.wd{width:84.240000px;}
.wc{width:84.261000px;}
.wb{width:84.636000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w8{width:265.050000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w10{width:777.510000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.266500px;}
.x28{left:9.720000px;}
.x5{left:11.145000px;}
.x2a{left:15.120000px;}
.x10{left:20.520000px;}
.x27{left:28.440000px;}
.x29{left:29.535000px;}
.x2b{left:32.400000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x12{left:51.865500px;}
.x9{left:53.295000px;}
.x20{left:58.009500px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x2f{left:123.516000px;}
.x1d{left:134.352000px;}
.x16{left:136.135500px;}
.x2e{left:150.555000px;}
.x13{left:158.095500px;}
.x1a{left:162.075000px;}
.x4{left:168.930000px;}
.x6{left:208.860000px;}
.x14{left:226.900500px;}
.x17{left:236.260500px;}
.x1f{left:248.505000px;}
.x15{left:272.980500px;}
.x21{left:323.790000px;}
.x18{left:325.030998px;}
.x11{left:335.650500px;}
.x22{left:400.140000px;}
.xa{left:445.860000px;}
.x1b{left:473.580000px;}
.x2c{left:489.090000px;}
.x1e{left:499.890000px;}
.x2d{left:516.090000px;}
.x1c{left:527.610000px;}
.x23{left:559.665000px;}
.x24{left:644.670000px;}
.x7{left:722.445000px;}
.x25{left:729.645000px;}
.x1{left:773.610000px;}
.x26{left:778.650000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.429867pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.079467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.069333pt;}
.ls3{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.874667pt;}
.ls7{letter-spacing:36.111360pt;}
.ls6{letter-spacing:36.122027pt;}
.ws1{word-spacing:-74.240000pt;}
.ws4{word-spacing:-53.760000pt;}
.ws0{word-spacing:-16.898560pt;}
.ws8{word-spacing:-15.902933pt;}
.wsa{word-spacing:-15.594667pt;}
.wsb{word-spacing:-15.264000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws9{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.022933pt;}
.ws6{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.200533pt;}
.ws7{word-spacing:0.000000pt;}
._b{margin-left:-2.576213pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.965120pt;}
._1{width:2.301440pt;}
._4{width:3.645440pt;}
._a{width:5.009920pt;}
._9{width:6.023680pt;}
._18{width:7.767893pt;}
._8{width:8.737707pt;}
._7{width:10.068480pt;}
._13{width:11.161600pt;}
._11{width:12.224000pt;}
._10{width:13.248000pt;}
._28{width:15.800747pt;}
._d{width:16.825173pt;}
._20{width:18.066347pt;}
._16{width:19.077120pt;}
._54{width:19.973120pt;}
._6{width:20.961280pt;}
._c{width:22.327893pt;}
._5{width:23.646720pt;}
._1f{width:24.790187pt;}
._1e{width:26.530133pt;}
._25{width:27.583147pt;}
._24{width:28.674560pt;}
._17{width:29.969920pt;}
._27{width:31.324160pt;}
._2e{width:32.866133pt;}
._32{width:34.424747pt;}
._44{width:35.486720pt;}
._12{width:36.389547pt;}
._e{width:37.683200pt;}
._f{width:39.799467pt;}
._38{width:40.785920pt;}
._2c{width:41.762987pt;}
._19{width:42.681173pt;}
._37{width:43.613867pt;}
._15{width:44.910933pt;}
._14{width:45.985280pt;}
._2d{width:47.445333pt;}
._3d{width:48.409600pt;}
._34{width:49.700693pt;}
._2f{width:51.166720pt;}
._2b{width:52.226560pt;}
._2a{width:53.145600pt;}
._3a{width:54.169600pt;}
._4d{width:55.582720pt;}
._26{width:57.054720pt;}
._1d{width:58.266453pt;}
._1c{width:59.344213pt;}
._50{width:60.295680pt;}
._49{width:61.267627pt;}
._4a{width:62.707200pt;}
._1b{width:64.120320pt;}
._1a{width:65.297920pt;}
._47{width:66.475520pt;}
._3f{width:67.682987pt;}
._3e{width:69.185707pt;}
._36{width:70.338560pt;}
._35{width:71.598080pt;}
._48{width:72.636587pt;}
._4c{width:74.038613pt;}
._4b{width:75.575467pt;}
._4e{width:76.485120pt;}
._39{width:79.430827pt;}
._31{width:80.394667pt;}
._30{width:81.784320pt;}
._43{width:83.147947pt;}
._4f{width:84.607147pt;}
._40{width:85.809493pt;}
._3b{width:88.784213pt;}
._29{width:90.616320pt;}
._33{width:92.948480pt;}
._3c{width:94.782293pt;}
._55{width:96.144640pt;}
._45{width:102.133760pt;}
._42{width:118.819840pt;}
._41{width:119.820800pt;}
._23{width:137.667413pt;}
._21{width:169.585067pt;}
._22{width:175.773867pt;}
._3{width:177.418667pt;}
._52{width:189.091840pt;}
._53{width:190.733653pt;}
._46{width:195.387733pt;}
._51{width:600.479573pt;}
._56{width:753.685333pt;}
.fs4{font-size:16.640000pt;}
.fs5{font-size:21.760000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:83.200000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1c{bottom:1.266667pt;}
.y13{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.y7b{bottom:3.506667pt;}
.y74{bottom:3.520000pt;}
.y92{bottom:3.533333pt;}
.y7f{bottom:3.826667pt;}
.y78{bottom:3.840000pt;}
.y82{bottom:3.866667pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y11{bottom:7.040000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y7a{bottom:20.466667pt;}
.y89{bottom:20.480000pt;}
.y91{bottom:20.493333pt;}
.y81{bottom:20.506667pt;}
.y7e{bottom:20.786667pt;}
.y77{bottom:20.800000pt;}
.y19{bottom:23.346667pt;}
.y5{bottom:29.440000pt;}
.y10{bottom:30.080000pt;}
.y84{bottom:37.426667pt;}
.y76{bottom:37.440000pt;}
.y8b{bottom:37.466667pt;}
.y7d{bottom:37.746667pt;}
.y18{bottom:42.546667pt;}
.y1{bottom:45.440000pt;}
.y87{bottom:54.426667pt;}
.y17{bottom:62.706667pt;}
.y42{bottom:66.880000pt;}
.y16{bottom:82.893333pt;}
.y3d{bottom:100.192000pt;}
.y15{bottom:103.053333pt;}
.y98{bottom:114.272000pt;}
.y6d{bottom:119.392000pt;}
.y3c{bottom:121.952000pt;}
.y97{bottom:136.346667pt;}
.y6c{bottom:141.146667pt;}
.y3b{bottom:144.026667pt;}
.y96{bottom:150.120000pt;}
.y6b{bottom:163.226667pt;}
.y3a{bottom:165.786667pt;}
.y95{bottom:184.400000pt;}
.y6a{bottom:185.026667pt;}
.y39{bottom:187.906667pt;}
.y69{bottom:207.106667pt;}
.y38{bottom:209.666667pt;}
.y94{bottom:218.960000pt;}
.y68{bottom:228.866667pt;}
.y3f{bottom:231.426667pt;}
.y37{bottom:231.746667pt;}
.y67{bottom:250.946667pt;}
.y93{bottom:253.200000pt;}
.y36{bottom:253.506667pt;}
.y66{bottom:272.706667pt;}
.y35{bottom:275.586667pt;}
.y90{bottom:287.760000pt;}
.y6f{bottom:294.493333pt;}
.y65{bottom:294.813333pt;}
.y34{bottom:297.373333pt;}
.y64{bottom:316.573333pt;}
.y33{bottom:319.453333pt;}
.y8f{bottom:322.013333pt;}
.y6e{bottom:323.293333pt;}
.y63{bottom:338.653333pt;}
.y32{bottom:341.213333pt;}
.y8e{bottom:356.573333pt;}
.y9b{bottom:360.093333pt;}
.y62{bottom:360.413333pt;}
.y31{bottom:363.293333pt;}
.y61{bottom:382.493333pt;}
.y30{bottom:385.053333pt;}
.y60{bottom:404.293333pt;}
.y2f{bottom:407.173333pt;}
.y8d{bottom:407.813333pt;}
.y5f{bottom:426.373333pt;}
.y2e{bottom:428.933333pt;}
.y8c{bottom:442.053333pt;}
.y5e{bottom:448.133333pt;}
.y2d{bottom:450.693333pt;}
.y3e{bottom:451.013333pt;}
.y5d{bottom:470.213333pt;}
.y2c{bottom:473.093333pt;}
.y8a{bottom:476.613333pt;}
.y5c{bottom:491.973333pt;}
.y2b{bottom:493.893333pt;}
.y2a{bottom:513.440000pt;}
.y5b{bottom:514.080000pt;}
.y29{bottom:535.200000pt;}
.y9c{bottom:535.520000pt;}
.y5a{bottom:535.840000pt;}
.y88{bottom:544.800000pt;}
.y28{bottom:554.400000pt;}
.y72{bottom:557.600000pt;}
.y59{bottom:557.920000pt;}
.y27{bottom:573.920000pt;}
.y86{bottom:579.040000pt;}
.y58{bottom:579.680000pt;}
.y26{bottom:593.440000pt;}
.y57{bottom:601.760000pt;}
.y25{bottom:612.640000pt;}
.y56{bottom:623.546667pt;}
.y24{bottom:632.186667pt;}
.y55{bottom:645.626667pt;}
.y85{bottom:647.240000pt;}
.y23{bottom:651.386667pt;}
.y54{bottom:667.386667pt;}
.y22{bottom:670.906667pt;}
.y83{bottom:681.800000pt;}
.y53{bottom:689.466667pt;}
.y21{bottom:690.426667pt;}
.y20{bottom:709.626667pt;}
.y52{bottom:711.226667pt;}
.y1f{bottom:729.146667pt;}
.y80{bottom:733.000000pt;}
.y51{bottom:733.306667pt;}
.y1e{bottom:748.386667pt;}
.y50{bottom:755.106667pt;}
.y1d{bottom:765.666667pt;}
.y7c{bottom:767.280000pt;}
.y1b{bottom:773.040000pt;}
.y4f{bottom:777.186667pt;}
.y14{bottom:779.440000pt;}
.y1a{bottom:782.657593pt;}
.y4e{bottom:799.266667pt;}
.y79{bottom:818.800000pt;}
.y4d{bottom:821.026667pt;}
.y9a{bottom:842.786667pt;}
.y4c{bottom:843.106667pt;}
.y75{bottom:853.053333pt;}
.y99{bottom:864.573333pt;}
.y4b{bottom:864.893333pt;}
.y4a{bottom:886.973333pt;}
.y73{bottom:904.253333pt;}
.y12{bottom:905.213333pt;}
.y49{bottom:908.733333pt;}
.yf{bottom:910.973333pt;}
.y71{bottom:930.493333pt;}
.y48{bottom:930.813333pt;}
.y70{bottom:952.253333pt;}
.y47{bottom:952.573333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y46{bottom:974.693333pt;}
.y2{bottom:983.333333pt;}
.y45{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.y44{bottom:1018.533333pt;}
.y4{bottom:1028.133333pt;}
.y43{bottom:1040.293333pt;}
.y41{bottom:1055.333333pt;}
.y40{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:12.317500pt;}
.h17{height:16.107500pt;}
.h22{height:16.946667pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1e{height:27.093750pt;}
.h18{height:32.765625pt;}
.h2a{height:33.586667pt;}
.h24{height:33.600000pt;}
.h26{height:33.618667pt;}
.h27{height:33.906667pt;}
.h20{height:36.431250pt;}
.h1c{height:41.112500pt;}
.he{height:46.106667pt;}
.h5{height:47.066667pt;}
.h9{height:49.852500pt;}
.h23{height:50.546667pt;}
.h2b{height:50.586667pt;}
.h25{height:50.866667pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h15{height:56.875000pt;}
.h19{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h1f{height:58.563750pt;}
.h1b{height:59.340000pt;}
.h14{height:60.270000pt;}
.h21{height:60.519362pt;}
.h6{height:62.857500pt;}
.h1d{height:63.311250pt;}
.h13{height:64.500000pt;}
.h29{height:67.546667pt;}
.h28{height:67.552000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:91.866667pt;}
.h12{height:125.760000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:42.906667pt;}
.wf{width:50.546667pt;}
.wa{width:65.280000pt;}
.w9{width:67.226667pt;}
.wd{width:74.880000pt;}
.wc{width:74.898667pt;}
.wb{width:75.232000pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w8{width:235.600000pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w10{width:691.120000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.348000pt;}
.x28{left:8.640000pt;}
.x5{left:9.906667pt;}
.x2a{left:13.440000pt;}
.x10{left:18.240000pt;}
.x27{left:25.280000pt;}
.x29{left:26.253333pt;}
.x2b{left:28.800000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x12{left:46.102667pt;}
.x9{left:47.373333pt;}
.x20{left:51.564000pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x2f{left:109.792000pt;}
.x1d{left:119.424000pt;}
.x16{left:121.009333pt;}
.x2e{left:133.826667pt;}
.x13{left:140.529333pt;}
.x1a{left:144.066667pt;}
.x4{left:150.160000pt;}
.x6{left:185.653333pt;}
.x14{left:201.689333pt;}
.x17{left:210.009333pt;}
.x1f{left:220.893333pt;}
.x15{left:242.649333pt;}
.x21{left:287.813333pt;}
.x18{left:288.916443pt;}
.x11{left:298.356000pt;}
.x22{left:355.680000pt;}
.xa{left:396.320000pt;}
.x1b{left:420.960000pt;}
.x2c{left:434.746667pt;}
.x1e{left:444.346667pt;}
.x2d{left:458.746667pt;}
.x1c{left:468.986667pt;}
.x23{left:497.480000pt;}
.x24{left:573.040000pt;}
.x7{left:642.173333pt;}
.x25{left:648.573333pt;}
.x1{left:687.653333pt;}
.x26{left:692.133333pt;}
}




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