
    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_0abb1ce564c6fab75b730b6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_f472f8e8686bf864c9145555.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_ebf57c10093f41e305a85ded.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_8196d12b8f4071a8f021c4ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_cd31382b851e054c6052caff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_11776ed8009c0745ef16805f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986328;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_a966f4f6fdaa7bbf589797ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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:-28.800000px;}
.v3{vertical-align:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:25.200000px;}
.v1{vertical-align:28.800000px;}
.lse{letter-spacing:-5.490000px;}
.ls15{letter-spacing:-2.292000px;}
.lsf{letter-spacing:-2.094000px;}
.ls10{letter-spacing:-1.062000px;}
.ls1a{letter-spacing:-0.292800px;}
.ls14{letter-spacing:-0.242400px;}
.ls1d{letter-spacing:-0.214800px;}
.ls12{letter-spacing:-0.200400px;}
.ls21{letter-spacing:-0.181200px;}
.ls16{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.133800px;}
.lsd{letter-spacing:-0.098400px;}
.ls11{letter-spacing:-0.062400px;}
.ls1e{letter-spacing:-0.061800px;}
.ls19{letter-spacing:-0.037440px;}
.lsc{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018720px;}
.ls0{letter-spacing:0.020880px;}
.ls23{letter-spacing:0.090600px;}
.ls1f{letter-spacing:0.141000px;}
.ls8{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.189600px;}
.ls1c{letter-spacing:0.225600px;}
.ls22{letter-spacing:0.269400px;}
.ls18{letter-spacing:0.341400px;}
.ls13{letter-spacing:0.350400px;}
.ls3{letter-spacing:14.855040px;}
.ls4{letter-spacing:22.775040px;}
.ls6{letter-spacing:24.207840px;}
.ls1{letter-spacing:27.095040px;}
.ls2{letter-spacing:27.215040px;}
.ls9{letter-spacing:36.748080px;}
.lsb{letter-spacing:58.176000px;}
.ls5{letter-spacing:98.244000px;}
.lsa{letter-spacing:101.844000px;}
.ls7{letter-spacing:128.484000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2b{word-spacing:-84.240000px;}
.ws4{word-spacing:-52.673760px;}
.ws29{word-spacing:-47.580480px;}
.ws27{word-spacing:-39.495456px;}
.ws26{word-spacing:-39.456000px;}
.ws4e{word-spacing:-36.102240px;}
.ws42{word-spacing:-32.945760px;}
.ws1b{word-spacing:-26.238240px;}
.ws40{word-spacing:-26.023440px;}
.ws34{word-spacing:-23.418720px;}
.ws4d{word-spacing:-18.149760px;}
.ws8{word-spacing:-17.557920px;}
.ws4b{word-spacing:-16.563840px;}
.ws36{word-spacing:-14.006880px;}
.ws54{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.393440px;}
.wsc{word-spacing:-11.808864px;}
.ws2{word-spacing:-10.351680px;}
.ws5{word-spacing:-9.429840px;}
.ws1{word-spacing:-8.745120px;}
.ws22{word-spacing:-5.346000px;}
.ws3{word-spacing:-3.885120px;}
.wsd{word-spacing:-3.822048px;}
.ws9{word-spacing:-3.818160px;}
.ws11{word-spacing:-3.321360px;}
.ws24{word-spacing:-3.265200px;}
.ws21{word-spacing:-2.669040px;}
.ws20{word-spacing:-2.570400px;}
.ws32{word-spacing:-2.016960px;}
.wsb{word-spacing:-1.985040px;}
.wsa{word-spacing:-1.948608px;}
.ws23{word-spacing:-1.696320px;}
.ws7{word-spacing:-1.658160px;}
.ws10{word-spacing:-1.481040px;}
.ws1d{word-spacing:-1.328400px;}
.ws6{word-spacing:-1.184400px;}
.ws33{word-spacing:-1.061280px;}
.ws51{word-spacing:-0.991800px;}
.ws3a{word-spacing:-0.544320px;}
.ws1c{word-spacing:-0.542880px;}
.ws4c{word-spacing:-0.542160px;}
.ws55{word-spacing:-0.485280px;}
.ws3c{word-spacing:-0.250920px;}
.ws4f{word-spacing:-0.216000px;}
.ws39{word-spacing:-0.100080px;}
.ws56{word-spacing:0.000000px;}
.ws37{word-spacing:0.020880px;}
.ws4a{word-spacing:0.055440px;}
.ws3f{word-spacing:0.131520px;}
.ws3e{word-spacing:0.177120px;}
.ws3b{word-spacing:0.314400px;}
.ws38{word-spacing:0.387000px;}
.ws3d{word-spacing:0.501840px;}
.ws35{word-spacing:0.532800px;}
.ws25{word-spacing:0.576000px;}
.ws43{word-spacing:0.608400px;}
.ws50{word-spacing:0.847440px;}
.ws52{word-spacing:0.930240px;}
.ws41{word-spacing:1.051200px;}
.ws28{word-spacing:1.152000px;}
.ws53{word-spacing:1.846800px;}
.wse{word-spacing:2.070000px;}
.ws18{word-spacing:3.702240px;}
.ws1a{word-spacing:4.170960px;}
.ws19{word-spacing:4.975920px;}
.ws49{word-spacing:5.690880px;}
.ws31{word-spacing:8.138640px;}
.wsf{word-spacing:10.121760px;}
.ws1f{word-spacing:10.762560px;}
.ws1e{word-spacing:10.953360px;}
.ws47{word-spacing:12.020040px;}
.ws48{word-spacing:12.048480px;}
.ws46{word-spacing:12.340800px;}
.ws45{word-spacing:12.411000px;}
.ws2d{word-spacing:12.580920px;}
.ws44{word-spacing:12.692160px;}
.ws2c{word-spacing:12.903840px;}
.ws2a{word-spacing:13.108800px;}
.ws2e{word-spacing:13.266000px;}
.ws2f{word-spacing:15.498720px;}
.ws30{word-spacing:15.966720px;}
.ws12{word-spacing:16.945920px;}
.ws14{word-spacing:17.336160px;}
.ws13{word-spacing:17.850960px;}
.ws15{word-spacing:26.155440px;}
.ws17{word-spacing:26.825760px;}
.ws16{word-spacing:27.210960px;}
._b{margin-left:-8.006256px;}
._2{margin-left:-6.728400px;}
._16{margin-left:-5.365440px;}
._7{margin-left:-4.361760px;}
._0{margin-left:-3.268080px;}
._3{margin-left:-1.922400px;}
._11{width:1.056240px;}
._4{width:3.114960px;}
._5{width:4.535520px;}
._f{width:9.519840px;}
._19{width:11.903760px;}
._1a{width:14.748480px;}
._e{width:16.339920px;}
._18{width:18.126720px;}
._10{width:20.131920px;}
._12{width:21.810000px;}
._c{width:23.720400px;}
._a{width:24.960000px;}
._17{width:27.840720px;}
._14{width:31.329360px;}
._d{width:33.061200px;}
._15{width:37.077600px;}
._8{width:38.609280px;}
._9{width:39.894240px;}
._1{width:42.217200px;}
._6{width:44.784720px;}
._13{width:53.676720px;}
.fc2{color:rgb(0,152,216);}
.fc3{color:rgb(28,28,28);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:48.240000px;}
.fsd{font-size:51.120000px;}
.fs5{font-size:56.160000px;}
.fse{font-size:59.760000px;}
.fs3{font-size:64.080000px;}
.fsf{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:95.904000px;}
.fsa{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs8{font-size:120.240000px;}
.fs10{font-size:131.760000px;}
.fsb{font-size:144.000000px;}
.fsc{font-size:144.144000px;}
.fs1{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:36.648000px;}
.y3d{bottom:48.348000px;}
.y4e{bottom:55.728000px;}
.y3c{bottom:66.348000px;}
.y4d{bottom:70.128000px;}
.y3b{bottom:84.348000px;}
.y49{bottom:114.480000px;}
.y46{bottom:117.108000px;}
.y45{bottom:136.908000px;}
.y44{bottom:156.705000px;}
.y43{bottom:176.505000px;}
.y28{bottom:182.130000px;}
.y42{bottom:196.305000px;}
.y41{bottom:216.105000px;}
.y4c{bottom:217.110000px;}
.y40{bottom:235.905000px;}
.y4b{bottom:253.110000px;}
.y3f{bottom:255.705000px;}
.y4a{bottom:288.930000px;}
.y39{bottom:293.910000px;}
.y38{bottom:355.830000px;}
.y23{bottom:364.575000px;}
.y37{bottom:400.830000px;}
.y22{bottom:407.775000px;}
.y36{bottom:445.830000px;}
.y21{bottom:451.005000px;}
.y35{bottom:490.830000px;}
.y20{bottom:494.205000px;}
.y34{bottom:535.830000px;}
.y1f{bottom:537.405000px;}
.y33{bottom:580.830000px;}
.y32{bottom:625.830000px;}
.y27{bottom:627.225000px;}
.y26{bottom:652.425000px;}
.y31{bottom:670.830000px;}
.y25{bottom:677.625000px;}
.y24{bottom:702.825000px;}
.y30{bottom:715.830000px;}
.y2f{bottom:763.275000px;}
.y2a{bottom:763.665000px;}
.y13{bottom:853.305000px;}
.y12{bottom:896.505000px;}
.y11{bottom:939.705000px;}
.y10{bottom:987.405000px;}
.yf{bottom:1035.105000px;}
.ye{bottom:1082.850000px;}
.y48{bottom:1089.900000px;}
.y3e{bottom:1150.230000px;}
.yd{bottom:1198.050000px;}
.yc{bottom:1245.750000px;}
.y2e{bottom:1292.010000px;}
.yb{bottom:1293.450000px;}
.y2d{bottom:1335.210000px;}
.ya{bottom:1336.650000px;}
.y2c{bottom:1378.410000px;}
.y9{bottom:1379.850000px;}
.y2b{bottom:1421.610000px;}
.y8{bottom:1423.050000px;}
.y1e{bottom:1483.635000px;}
.y29{bottom:1496.985000px;}
.y1d{bottom:1520.565000px;}
.y3a{bottom:1591.770000px;}
.y19{bottom:1649.520000px;}
.y1b{bottom:1668.885000px;}
.y1a{bottom:1690.485000px;}
.y18{bottom:1692.720000px;}
.y17{bottom:1735.920000px;}
.y16{bottom:1779.120000px;}
.y15{bottom:1822.320000px;}
.y14{bottom:1888.950000px;}
.y1c{bottom:1934.610000px;}
.y7{bottom:2036.625000px;}
.y6{bottom:2057.685000px;}
.y5{bottom:2101.140000px;}
.y4{bottom:2129.940000px;}
.y3{bottom:2180.700000px;}
.y2{bottom:2231.100000px;}
.y1{bottom:2284.380000px;}
.h12{height:38.389922px;}
.h16{height:44.878359px;}
.h18{height:49.744687px;}
.h1c{height:50.312812px;}
.ha{height:54.070312px;}
.h17{height:59.415469px;}
.h5{height:62.659687px;}
.h6{height:71.913516px;}
.h7{height:72.007031px;}
.h8{height:72.021656px;}
.h4{height:76.922578px;}
.h1b{height:81.105469px;}
.h13{height:81.210938px;}
.h9{height:85.894102px;}
.h11{height:87.859687px;}
.h15{height:90.414844px;}
.h19{height:99.077344px;}
.hf{height:108.140625px;}
.he{height:108.281250px;}
.h10{height:108.389531px;}
.hd{height:112.640625px;}
.hc{height:112.790813px;}
.hb{height:125.406562px;}
.h3{height:126.147656px;}
.h2{height:144.555469px;}
.h1a{height:251.640000px;}
.h14{height:1949.220000px;}
.h1{height:2374.500000px;}
.h0{height:2374.560000px;}
.w4{width:374.580000px;}
.w3{width:862.200000px;}
.w1{width:1780.500000px;}
.w2{width:1780.559973px;}
.w0{width:1780.560000px;}
.x0{left:0.000000px;}
.x1a{left:10.980000px;}
.x24{left:34.560000px;}
.xc{left:39.239973px;}
.x18{left:48.815973px;}
.x11{left:75.563973px;}
.x2{left:77.363973px;}
.x7{left:92.087973px;}
.x6{left:101.087973px;}
.x1{left:107.243973px;}
.x17{left:126.755973px;}
.xf{left:156.164973px;}
.x20{left:221.684973px;}
.x14{left:236.369973px;}
.x4{left:250.379973px;}
.x5{left:261.179973px;}
.x12{left:293.654973px;}
.x25{left:314.129973px;}
.x3{left:328.139973px;}
.x26{left:331.769973px;}
.x27{left:334.469973px;}
.x13{left:341.534973px;}
.x10{left:358.559973px;}
.x15{left:374.219973px;}
.x1f{left:488.624973px;}
.x28{left:833.114973px;}
.x8{left:910.829973px;}
.xb{left:916.379973px;}
.xd{left:918.929973px;}
.x22{left:938.519973px;}
.x1c{left:941.219973px;}
.x1b{left:942.659973px;}
.x19{left:1038.884973px;}
.x16{left:1077.659973px;}
.xa{left:1127.954973px;}
.x21{left:1180.769973px;}
.x9{left:1205.894973px;}
.x1d{left:1207.289973px;}
.x1e{left:1267.664973px;}
.xe{left:1354.784973px;}
.x23{left:1356.449973px;}
@media print{
.v2{vertical-align:-25.600000pt;}
.v3{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:22.400000pt;}
.v1{vertical-align:25.600000pt;}
.lse{letter-spacing:-4.880000pt;}
.ls15{letter-spacing:-2.037333pt;}
.lsf{letter-spacing:-1.861333pt;}
.ls10{letter-spacing:-0.944000pt;}
.ls1a{letter-spacing:-0.260267pt;}
.ls14{letter-spacing:-0.215467pt;}
.ls1d{letter-spacing:-0.190933pt;}
.ls12{letter-spacing:-0.178133pt;}
.ls21{letter-spacing:-0.161067pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.118933pt;}
.lsd{letter-spacing:-0.087467pt;}
.ls11{letter-spacing:-0.055467pt;}
.ls1e{letter-spacing:-0.054933pt;}
.ls19{letter-spacing:-0.033280pt;}
.lsc{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016640pt;}
.ls0{letter-spacing:0.018560pt;}
.ls23{letter-spacing:0.080533pt;}
.ls1f{letter-spacing:0.125333pt;}
.ls8{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.168533pt;}
.ls1c{letter-spacing:0.200533pt;}
.ls22{letter-spacing:0.239467pt;}
.ls18{letter-spacing:0.303467pt;}
.ls13{letter-spacing:0.311467pt;}
.ls3{letter-spacing:13.204480pt;}
.ls4{letter-spacing:20.244480pt;}
.ls6{letter-spacing:21.518080pt;}
.ls1{letter-spacing:24.084480pt;}
.ls2{letter-spacing:24.191147pt;}
.ls9{letter-spacing:32.664960pt;}
.lsb{letter-spacing:51.712000pt;}
.ls5{letter-spacing:87.328000pt;}
.lsa{letter-spacing:90.528000pt;}
.ls7{letter-spacing:114.208000pt;}
.ws2b{word-spacing:-74.880000pt;}
.ws4{word-spacing:-46.821120pt;}
.ws29{word-spacing:-42.293760pt;}
.ws27{word-spacing:-35.107072pt;}
.ws26{word-spacing:-35.072000pt;}
.ws4e{word-spacing:-32.090880pt;}
.ws42{word-spacing:-29.285120pt;}
.ws1b{word-spacing:-23.322880pt;}
.ws40{word-spacing:-23.131947pt;}
.ws34{word-spacing:-20.816640pt;}
.ws4d{word-spacing:-16.133120pt;}
.ws8{word-spacing:-15.607040pt;}
.ws4b{word-spacing:-14.723413pt;}
.ws36{word-spacing:-12.450560pt;}
.ws54{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.905280pt;}
.wsc{word-spacing:-10.496768pt;}
.ws2{word-spacing:-9.201493pt;}
.ws5{word-spacing:-8.382080pt;}
.ws1{word-spacing:-7.773440pt;}
.ws22{word-spacing:-4.752000pt;}
.ws3{word-spacing:-3.453440pt;}
.wsd{word-spacing:-3.397376pt;}
.ws9{word-spacing:-3.393920pt;}
.ws11{word-spacing:-2.952320pt;}
.ws24{word-spacing:-2.902400pt;}
.ws21{word-spacing:-2.372480pt;}
.ws20{word-spacing:-2.284800pt;}
.ws32{word-spacing:-1.792853pt;}
.wsb{word-spacing:-1.764480pt;}
.wsa{word-spacing:-1.732096pt;}
.ws23{word-spacing:-1.507840pt;}
.ws7{word-spacing:-1.473920pt;}
.ws10{word-spacing:-1.316480pt;}
.ws1d{word-spacing:-1.180800pt;}
.ws6{word-spacing:-1.052800pt;}
.ws33{word-spacing:-0.943360pt;}
.ws51{word-spacing:-0.881600pt;}
.ws3a{word-spacing:-0.483840pt;}
.ws1c{word-spacing:-0.482560pt;}
.ws4c{word-spacing:-0.481920pt;}
.ws55{word-spacing:-0.431360pt;}
.ws3c{word-spacing:-0.223040pt;}
.ws4f{word-spacing:-0.192000pt;}
.ws39{word-spacing:-0.088960pt;}
.ws56{word-spacing:0.000000pt;}
.ws37{word-spacing:0.018560pt;}
.ws4a{word-spacing:0.049280pt;}
.ws3f{word-spacing:0.116907pt;}
.ws3e{word-spacing:0.157440pt;}
.ws3b{word-spacing:0.279467pt;}
.ws38{word-spacing:0.344000pt;}
.ws3d{word-spacing:0.446080pt;}
.ws35{word-spacing:0.473600pt;}
.ws25{word-spacing:0.512000pt;}
.ws43{word-spacing:0.540800pt;}
.ws50{word-spacing:0.753280pt;}
.ws52{word-spacing:0.826880pt;}
.ws41{word-spacing:0.934400pt;}
.ws28{word-spacing:1.024000pt;}
.ws53{word-spacing:1.641600pt;}
.wse{word-spacing:1.840000pt;}
.ws18{word-spacing:3.290880pt;}
.ws1a{word-spacing:3.707520pt;}
.ws19{word-spacing:4.423040pt;}
.ws49{word-spacing:5.058560pt;}
.ws31{word-spacing:7.234347pt;}
.wsf{word-spacing:8.997120pt;}
.ws1f{word-spacing:9.566720pt;}
.ws1e{word-spacing:9.736320pt;}
.ws47{word-spacing:10.684480pt;}
.ws48{word-spacing:10.709760pt;}
.ws46{word-spacing:10.969600pt;}
.ws45{word-spacing:11.032000pt;}
.ws2d{word-spacing:11.183040pt;}
.ws44{word-spacing:11.281920pt;}
.ws2c{word-spacing:11.470080pt;}
.ws2a{word-spacing:11.652267pt;}
.ws2e{word-spacing:11.792000pt;}
.ws2f{word-spacing:13.776640pt;}
.ws30{word-spacing:14.192640pt;}
.ws12{word-spacing:15.063040pt;}
.ws14{word-spacing:15.409920pt;}
.ws13{word-spacing:15.867520pt;}
.ws15{word-spacing:23.249280pt;}
.ws17{word-spacing:23.845120pt;}
.ws16{word-spacing:24.187520pt;}
._b{margin-left:-7.116672pt;}
._2{margin-left:-5.980800pt;}
._16{margin-left:-4.769280pt;}
._7{margin-left:-3.877120pt;}
._0{margin-left:-2.904960pt;}
._3{margin-left:-1.708800pt;}
._11{width:0.938880pt;}
._4{width:2.768853pt;}
._5{width:4.031573pt;}
._f{width:8.462080pt;}
._19{width:10.581120pt;}
._1a{width:13.109760pt;}
._e{width:14.524373pt;}
._18{width:16.112640pt;}
._10{width:17.895040pt;}
._12{width:19.386667pt;}
._c{width:21.084800pt;}
._a{width:22.186667pt;}
._17{width:24.747307pt;}
._14{width:27.848320pt;}
._d{width:29.387733pt;}
._15{width:32.957867pt;}
._8{width:34.319360pt;}
._9{width:35.461547pt;}
._1{width:37.526400pt;}
._6{width:39.808640pt;}
._13{width:47.712640pt;}
.fs11{font-size:42.880000pt;}
.fsd{font-size:45.440000pt;}
.fs5{font-size:49.920000pt;}
.fse{font-size:53.120000pt;}
.fs3{font-size:56.960000pt;}
.fsf{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:85.248000pt;}
.fsa{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs8{font-size:106.880000pt;}
.fs10{font-size:117.120000pt;}
.fsb{font-size:128.000000pt;}
.fsc{font-size:128.128000pt;}
.fs1{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:32.576000pt;}
.y3d{bottom:42.976000pt;}
.y4e{bottom:49.536000pt;}
.y3c{bottom:58.976000pt;}
.y4d{bottom:62.336000pt;}
.y3b{bottom:74.976000pt;}
.y49{bottom:101.760000pt;}
.y46{bottom:104.096000pt;}
.y45{bottom:121.696000pt;}
.y44{bottom:139.293333pt;}
.y43{bottom:156.893333pt;}
.y28{bottom:161.893333pt;}
.y42{bottom:174.493333pt;}
.y41{bottom:192.093333pt;}
.y4c{bottom:192.986667pt;}
.y40{bottom:209.693333pt;}
.y4b{bottom:224.986667pt;}
.y3f{bottom:227.293333pt;}
.y4a{bottom:256.826667pt;}
.y39{bottom:261.253333pt;}
.y38{bottom:316.293333pt;}
.y23{bottom:324.066667pt;}
.y37{bottom:356.293333pt;}
.y22{bottom:362.466667pt;}
.y36{bottom:396.293333pt;}
.y21{bottom:400.893333pt;}
.y35{bottom:436.293333pt;}
.y20{bottom:439.293333pt;}
.y34{bottom:476.293333pt;}
.y1f{bottom:477.693333pt;}
.y33{bottom:516.293333pt;}
.y32{bottom:556.293333pt;}
.y27{bottom:557.533333pt;}
.y26{bottom:579.933333pt;}
.y31{bottom:596.293333pt;}
.y25{bottom:602.333333pt;}
.y24{bottom:624.733333pt;}
.y30{bottom:636.293333pt;}
.y2f{bottom:678.466667pt;}
.y2a{bottom:678.813333pt;}
.y13{bottom:758.493333pt;}
.y12{bottom:796.893333pt;}
.y11{bottom:835.293333pt;}
.y10{bottom:877.693333pt;}
.yf{bottom:920.093333pt;}
.ye{bottom:962.533333pt;}
.y48{bottom:968.800000pt;}
.y3e{bottom:1022.426667pt;}
.yd{bottom:1064.933333pt;}
.yc{bottom:1107.333333pt;}
.y2e{bottom:1148.453333pt;}
.yb{bottom:1149.733333pt;}
.y2d{bottom:1186.853333pt;}
.ya{bottom:1188.133333pt;}
.y2c{bottom:1225.253333pt;}
.y9{bottom:1226.533333pt;}
.y2b{bottom:1263.653333pt;}
.y8{bottom:1264.933333pt;}
.y1e{bottom:1318.786667pt;}
.y29{bottom:1330.653333pt;}
.y1d{bottom:1351.613333pt;}
.y3a{bottom:1414.906667pt;}
.y19{bottom:1466.240000pt;}
.y1b{bottom:1483.453333pt;}
.y1a{bottom:1502.653333pt;}
.y18{bottom:1504.640000pt;}
.y17{bottom:1543.040000pt;}
.y16{bottom:1581.440000pt;}
.y15{bottom:1619.840000pt;}
.y14{bottom:1679.066667pt;}
.y1c{bottom:1719.653333pt;}
.y7{bottom:1810.333333pt;}
.y6{bottom:1829.053333pt;}
.y5{bottom:1867.680000pt;}
.y4{bottom:1893.280000pt;}
.y3{bottom:1938.400000pt;}
.y2{bottom:1983.200000pt;}
.y1{bottom:2030.560000pt;}
.h12{height:34.124375pt;}
.h16{height:39.891875pt;}
.h18{height:44.217500pt;}
.h1c{height:44.722500pt;}
.ha{height:48.062500pt;}
.h17{height:52.813750pt;}
.h5{height:55.697500pt;}
.h6{height:63.923125pt;}
.h7{height:64.006250pt;}
.h8{height:64.019250pt;}
.h4{height:68.375625pt;}
.h1b{height:72.093750pt;}
.h13{height:72.187500pt;}
.h9{height:76.350312pt;}
.h11{height:78.097500pt;}
.h15{height:80.368750pt;}
.h19{height:88.068750pt;}
.hf{height:96.125000pt;}
.he{height:96.250000pt;}
.h10{height:96.346250pt;}
.hd{height:100.125000pt;}
.hc{height:100.258500pt;}
.hb{height:111.472500pt;}
.h3{height:112.131250pt;}
.h2{height:128.493750pt;}
.h1a{height:223.680000pt;}
.h14{height:1732.640000pt;}
.h1{height:2110.666667pt;}
.h0{height:2110.720000pt;}
.w4{width:332.960000pt;}
.w3{width:766.400000pt;}
.w1{width:1582.666667pt;}
.w2{width:1582.719976pt;}
.w0{width:1582.720000pt;}
.x0{left:0.000000pt;}
.x1a{left:9.760000pt;}
.x24{left:30.720000pt;}
.xc{left:34.879976pt;}
.x18{left:43.391976pt;}
.x11{left:67.167976pt;}
.x2{left:68.767976pt;}
.x7{left:81.855976pt;}
.x6{left:89.855976pt;}
.x1{left:95.327976pt;}
.x17{left:112.671976pt;}
.xf{left:138.813310pt;}
.x20{left:197.053310pt;}
.x14{left:210.106643pt;}
.x4{left:222.559976pt;}
.x5{left:232.159976pt;}
.x12{left:261.026643pt;}
.x25{left:279.226643pt;}
.x3{left:291.679976pt;}
.x26{left:294.906643pt;}
.x27{left:297.306643pt;}
.x13{left:303.586643pt;}
.x10{left:318.719976pt;}
.x15{left:332.639976pt;}
.x1f{left:434.333310pt;}
.x28{left:740.546643pt;}
.x8{left:809.626643pt;}
.xb{left:814.559976pt;}
.xd{left:816.826643pt;}
.x22{left:834.239976pt;}
.x1c{left:836.639976pt;}
.x1b{left:837.919976pt;}
.x19{left:923.453310pt;}
.x16{left:957.919976pt;}
.xa{left:1002.626643pt;}
.x21{left:1049.573310pt;}
.x9{left:1071.906643pt;}
.x1d{left:1073.146643pt;}
.x1e{left:1126.813310pt;}
.xe{left:1204.253310pt;}
.x23{left:1205.733310pt;}
}




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