
    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_cdab030251f8e83cdd1b7f84.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b5c04d17fb1c6ec381c50d23.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_4d55d0c139c79690dcb09ece.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_23223b50aadc10dc64d621f6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1ffb3e603622ff2997bf46fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_014e1c7cd277768a64b682d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:77.760000px;}
.ls14{letter-spacing:-1.890000px;}
.ls7{letter-spacing:-1.620000px;}
.lsd{letter-spacing:-0.586800px;}
.ls12{letter-spacing:-0.500400px;}
.ls13{letter-spacing:-0.452400px;}
.ls11{letter-spacing:-0.437400px;}
.ls9{letter-spacing:-0.357000px;}
.lsa{letter-spacing:-0.213000px;}
.lsf{letter-spacing:-0.086400px;}
.lse{letter-spacing:-0.025920px;}
.ls10{letter-spacing:-0.017280px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.ls16{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.146400px;}
.lsb{letter-spacing:0.178800px;}
.ls0{letter-spacing:0.423360px;}
.lsc{letter-spacing:0.426600px;}
.ls1{letter-spacing:0.460800px;}
.ls2{letter-spacing:0.466800px;}
.ls4{letter-spacing:106.248000px;}
.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;}
}
.wsb{word-spacing:-30.024000px;}
.ws1b{word-spacing:-23.258592px;}
.ws16{word-spacing:-23.218560px;}
.ws3d{word-spacing:-22.861560px;}
.ws30{word-spacing:-22.821192px;}
.ws25{word-spacing:-20.016000px;}
.ws2b{word-spacing:-17.280240px;}
.ws28{word-spacing:-16.853472px;}
.ws27{word-spacing:-16.813440px;}
.ws47{word-spacing:-11.609280px;}
.ws5d{word-spacing:-10.152000px;}
.ws5e{word-spacing:-10.008000px;}
.ws23{word-spacing:-0.893520px;}
.ws5c{word-spacing:-0.684000px;}
.ws2a{word-spacing:-0.426960px;}
.ws2f{word-spacing:-0.118368px;}
.ws5f{word-spacing:0.000000px;}
.ws42{word-spacing:0.367680px;}
.ws34{word-spacing:0.713880px;}
.ws3e{word-spacing:0.869760px;}
.ws1a{word-spacing:0.904224px;}
.wsa{word-spacing:0.940800px;}
.ws33{word-spacing:0.981120px;}
.ws3c{word-spacing:1.059840px;}
.ws11{word-spacing:1.539840px;}
.ws5b{word-spacing:1.762080px;}
.ws20{word-spacing:1.986480px;}
.ws10{word-spacing:2.153760px;}
.ws39{word-spacing:2.193600px;}
.ws22{word-spacing:2.216640px;}
.ws3f{word-spacing:2.273760px;}
.ws46{word-spacing:2.347200px;}
.ws1d{word-spacing:2.357760px;}
.ws1f{word-spacing:2.381760px;}
.ws21{word-spacing:2.544960px;}
.ws1e{word-spacing:2.780640px;}
.ws40{word-spacing:3.684960px;}
.ws2e{word-spacing:3.781632px;}
.ws2d{word-spacing:3.809712px;}
.ws55{word-spacing:3.962160px;}
.ws54{word-spacing:3.988800px;}
.ws24{word-spacing:4.075680px;}
.ws4f{word-spacing:4.159200px;}
.ws3a{word-spacing:4.493280px;}
.ws35{word-spacing:4.498200px;}
.ws57{word-spacing:5.033880px;}
.ws58{word-spacing:5.286720px;}
.ws56{word-spacing:5.859360px;}
.ws41{word-spacing:9.178560px;}
.ws49{word-spacing:9.376320px;}
.ws53{word-spacing:9.415872px;}
.ws51{word-spacing:9.427536px;}
.ws48{word-spacing:10.258200px;}
.ws50{word-spacing:10.443240px;}
.ws52{word-spacing:11.027016px;}
.ws18{word-spacing:11.638560px;}
.ws12{word-spacing:11.710080px;}
.ws13{word-spacing:12.042480px;}
.ws15{word-spacing:12.186480px;}
.ws14{word-spacing:12.504960px;}
.ws17{word-spacing:13.138200px;}
.ws19{word-spacing:13.258200px;}
.ws44{word-spacing:14.018880px;}
.ws45{word-spacing:15.113880px;}
.ws37{word-spacing:17.538240px;}
.ws38{word-spacing:18.586200px;}
.ws36{word-spacing:19.018080px;}
.ws5a{word-spacing:19.622880px;}
.ws59{word-spacing:21.017880px;}
.ws9{word-spacing:21.299520px;}
.ws7{word-spacing:21.884160px;}
.ws8{word-spacing:22.061880px;}
.wsf{word-spacing:29.848320px;}
.ws31{word-spacing:30.538200px;}
.ws4e{word-spacing:31.415520px;}
.ws32{word-spacing:31.486080px;}
.ws4b{word-spacing:51.669120px;}
.ws43{word-spacing:52.744320px;}
.ws4c{word-spacing:53.071680px;}
.ws4d{word-spacing:55.181880px;}
.ws3b{word-spacing:60.052800px;}
.ws1c{word-spacing:62.393280px;}
.ws1{word-spacing:63.297120px;}
.ws2{word-spacing:63.658080px;}
.ws4{word-spacing:64.396800px;}
.ws6{word-spacing:64.548000px;}
.ws3{word-spacing:64.692000px;}
.ws5{word-spacing:64.926240px;}
.ws0{word-spacing:66.601440px;}
.wse{word-spacing:101.622720px;}
.ws4a{word-spacing:128.706480px;}
.ws26{word-spacing:145.799040px;}
.wsd{word-spacing:178.384800px;}
.wsc{word-spacing:180.785280px;}
.ws2c{word-spacing:654.232560px;}
.ws29{word-spacing:689.279784px;}
._e{margin-left:-5.339520px;}
._7{margin-left:-3.850560px;}
._6{margin-left:-2.260800px;}
._1{margin-left:-1.252800px;}
._0{width:1.002240px;}
._4{width:2.280960px;}
._15{width:3.392640px;}
._5{width:4.440960px;}
._14{width:6.744960px;}
._16{width:13.453920px;}
._12{width:14.785920px;}
._3{width:25.531200px;}
._9{width:27.989760px;}
._19{width:34.055088px;}
._17{width:35.072640px;}
._13{width:42.033600px;}
._1a{width:44.020800px;}
._2{width:45.563040px;}
._18{width:77.061600px;}
._8{width:87.009120px;}
._f{width:89.944320px;}
._11{width:104.344320px;}
._b{width:113.491200px;}
._c{width:155.541648px;}
._10{width:159.380160px;}
._a{width:165.126720px;}
._d{width:179.958000px;}
.fc4{color:transparent;}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(14,40,65);}
.fsc{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fsa{font-size:47.520000px;}
.fs7{font-size:60.480000px;}
.fs8{font-size:60.624000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs9{font-size:77.904000px;}
.fs0{font-size:83.520000px;}
.fs5{font-size:83.664000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:8.064000px;}
.y60{bottom:18.864000px;}
.y5f{bottom:29.664000px;}
.y54{bottom:50.184000px;}
.y3a{bottom:62.565000px;}
.y26{bottom:62.640000px;}
.y53{bottom:62.784000px;}
.y1f{bottom:62.820000px;}
.y1a{bottom:75.165000px;}
.y52{bottom:75.384000px;}
.y51{bottom:87.984000px;}
.y3b{bottom:93.708000px;}
.y23{bottom:120.240000px;}
.y34{bottom:120.345000px;}
.y2b{bottom:120.390000px;}
.y18{bottom:127.908000px;}
.y22{bottom:139.680000px;}
.y2a{bottom:139.830000px;}
.y1c{bottom:139.965000px;}
.y17{bottom:153.105000px;}
.y5e{bottom:154.185000px;}
.y16{bottom:178.305000px;}
.y15{bottom:203.505000px;}
.yb{bottom:211.710000px;}
.y14{bottom:228.750000px;}
.ya{bottom:236.910000px;}
.y13{bottom:253.950000px;}
.ye{bottom:276.990000px;}
.yf{bottom:310.500000px;}
.y50{bottom:327.855000px;}
.y4f{bottom:353.055000px;}
.y4b{bottom:363.390000px;}
.y4e{bottom:378.255000px;}
.y4a{bottom:410.655000px;}
.y4c{bottom:454.065000px;}
.y3e{bottom:503.205000px;}
.y49{bottom:548.925000px;}
.y48{bottom:574.125000px;}
.y4d{bottom:575.130000px;}
.y47{bottom:599.325000px;}
.y9{bottom:615.600000px;}
.y46{bottom:624.570000px;}
.y8{bottom:640.800000px;}
.y45{bottom:649.770000px;}
.y7{bottom:666.000000px;}
.y44{bottom:674.970000px;}
.y6{bottom:691.200000px;}
.y43{bottom:700.170000px;}
.y42{bottom:725.370000px;}
.yd{bottom:736.020000px;}
.y41{bottom:750.570000px;}
.y40{bottom:775.800000px;}
.y5d{bottom:779.430000px;}
.y5c{bottom:804.630000px;}
.y3d{bottom:827.100000px;}
.y5b{bottom:829.830000px;}
.y5a{bottom:855.075000px;}
.y3f{bottom:876.810000px;}
.y36{bottom:886.680000px;}
.y59{bottom:898.485000px;}
.y39{bottom:906.120000px;}
.y3c{bottom:922.065000px;}
.y32{bottom:925.200000px;}
.y58{bottom:945.900000px;}
.y30{bottom:963.720000px;}
.y38{bottom:968.685000px;}
.y57{bottom:971.100000px;}
.y37{bottom:987.945000px;}
.y56{bottom:996.300000px;}
.y2d{bottom:1002.240000px;}
.y55{bottom:1021.500000px;}
.y35{bottom:1026.465000px;}
.y29{bottom:1040.760000px;}
.y33{bottom:1065.030000px;}
.yc{bottom:1075.035000px;}
.y31{bottom:1084.110000px;}
.y2f{bottom:1103.550000px;}
.y2e{bottom:1122.630000px;}
.y4{bottom:1124.670000px;}
.y21{bottom:1137.240000px;}
.y2c{bottom:1142.070000px;}
.y3{bottom:1148.430000px;}
.y2{bottom:1173.630000px;}
.y25{bottom:1175.760000px;}
.y1{bottom:1198.830000px;}
.y28{bottom:1199.850000px;}
.y1b{bottom:1206.360000px;}
.y27{bottom:1219.140000px;}
.y1e{bottom:1233.360000px;}
.y5{bottom:1247.865000px;}
.y19{bottom:1268.280000px;}
.y24{bottom:1277.280000px;}
.y20{bottom:1296.180000px;}
.y12{bottom:1307.625000px;}
.y1d{bottom:1326.885000px;}
.y11{bottom:1327.425000px;}
.y10{bottom:1347.225000px;}
.h13{height:37.437188px;}
.h15{height:37.546875px;}
.h14{height:43.554375px;}
.h12{height:49.561875px;}
.hb{height:63.078750px;}
.hf{height:63.228937px;}
.h5{height:69.086250px;}
.h6{height:69.236437px;}
.h11{height:74.874375px;}
.h9{height:75.093750px;}
.h4{height:81.101250px;}
.h10{height:81.251437px;}
.h2{height:87.108750px;}
.h7{height:87.258937px;}
.h3{height:112.640625px;}
.he{height:135.000000px;}
.hd{height:135.360000px;}
.hc{height:140.838750px;}
.h8{height:162.000000px;}
.ha{height:270.000000px;}
.h0{height:1530.720000px;}
.h1{height:1530.750000px;}
.w4{width:96.840000px;}
.w5{width:97.200000px;}
.w3{width:201.240000px;}
.w2{width:862.919987px;}
.w0{width:862.920000px;}
.w1{width:863.250000px;}
.x0{left:0.000000px;}
.xc{left:8.430000px;}
.x1a{left:12.270000px;}
.xe{left:14.070000px;}
.x28{left:27.395987px;}
.x1{left:28.619987px;}
.x3{left:32.219987px;}
.x14{left:33.870000px;}
.x9{left:36.143987px;}
.x25{left:40.319987px;}
.x4{left:42.083987px;}
.x1c{left:44.819987px;}
.x7{left:85.643987px;}
.x29{left:98.783987px;}
.x2{left:145.115987px;}
.x6{left:147.023987px;}
.x24{left:159.989987px;}
.x5{left:167.969987px;}
.x27{left:179.129987px;}
.xb{left:447.480000px;}
.x26{left:450.749987px;}
.x20{left:455.294987px;}
.xa{left:457.094987px;}
.x21{left:460.049987px;}
.x19{left:468.149987px;}
.x13{left:472.469987px;}
.x22{left:493.919987px;}
.x18{left:565.739987px;}
.x8{left:570.494987px;}
.x1d{left:603.359987px;}
.x23{left:605.954987px;}
.x1f{left:609.404987px;}
.x1e{left:611.639987px;}
.xd{left:648.360000px;}
.x12{left:658.829987px;}
.x15{left:660.269987px;}
.x11{left:671.069987px;}
.xf{left:674.309987px;}
.x16{left:744.840000px;}
.x1b{left:755.609987px;}
.x17{left:757.049987px;}
.x10{left:771.089987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:69.120000pt;}
.ls14{letter-spacing:-1.680000pt;}
.ls7{letter-spacing:-1.440000pt;}
.lsd{letter-spacing:-0.521600pt;}
.ls12{letter-spacing:-0.444800pt;}
.ls13{letter-spacing:-0.402133pt;}
.ls11{letter-spacing:-0.388800pt;}
.ls9{letter-spacing:-0.317333pt;}
.lsa{letter-spacing:-0.189333pt;}
.lsf{letter-spacing:-0.076800pt;}
.lse{letter-spacing:-0.023040pt;}
.ls10{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.ls16{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.130133pt;}
.lsb{letter-spacing:0.158933pt;}
.ls0{letter-spacing:0.376320pt;}
.lsc{letter-spacing:0.379200pt;}
.ls1{letter-spacing:0.409600pt;}
.ls2{letter-spacing:0.414933pt;}
.ls4{letter-spacing:94.442667pt;}
.wsb{word-spacing:-26.688000pt;}
.ws1b{word-spacing:-20.674304pt;}
.ws16{word-spacing:-20.638720pt;}
.ws3d{word-spacing:-20.321387pt;}
.ws30{word-spacing:-20.285504pt;}
.ws25{word-spacing:-17.792000pt;}
.ws2b{word-spacing:-15.360213pt;}
.ws28{word-spacing:-14.980864pt;}
.ws27{word-spacing:-14.945280pt;}
.ws47{word-spacing:-10.319360pt;}
.ws5d{word-spacing:-9.024000pt;}
.ws5e{word-spacing:-8.896000pt;}
.ws23{word-spacing:-0.794240pt;}
.ws5c{word-spacing:-0.608000pt;}
.ws2a{word-spacing:-0.379520pt;}
.ws2f{word-spacing:-0.105216pt;}
.ws5f{word-spacing:0.000000pt;}
.ws42{word-spacing:0.326827pt;}
.ws34{word-spacing:0.634560pt;}
.ws3e{word-spacing:0.773120pt;}
.ws1a{word-spacing:0.803755pt;}
.wsa{word-spacing:0.836267pt;}
.ws33{word-spacing:0.872107pt;}
.ws3c{word-spacing:0.942080pt;}
.ws11{word-spacing:1.368747pt;}
.ws5b{word-spacing:1.566293pt;}
.ws20{word-spacing:1.765760pt;}
.ws10{word-spacing:1.914453pt;}
.ws39{word-spacing:1.949867pt;}
.ws22{word-spacing:1.970347pt;}
.ws3f{word-spacing:2.021120pt;}
.ws46{word-spacing:2.086400pt;}
.ws1d{word-spacing:2.095787pt;}
.ws1f{word-spacing:2.117120pt;}
.ws21{word-spacing:2.262187pt;}
.ws1e{word-spacing:2.471680pt;}
.ws40{word-spacing:3.275520pt;}
.ws2e{word-spacing:3.361451pt;}
.ws2d{word-spacing:3.386411pt;}
.ws55{word-spacing:3.521920pt;}
.ws54{word-spacing:3.545600pt;}
.ws24{word-spacing:3.622827pt;}
.ws4f{word-spacing:3.697067pt;}
.ws3a{word-spacing:3.994027pt;}
.ws35{word-spacing:3.998400pt;}
.ws57{word-spacing:4.474560pt;}
.ws58{word-spacing:4.699307pt;}
.ws56{word-spacing:5.208320pt;}
.ws41{word-spacing:8.158720pt;}
.ws49{word-spacing:8.334507pt;}
.ws53{word-spacing:8.369664pt;}
.ws51{word-spacing:8.380032pt;}
.ws48{word-spacing:9.118400pt;}
.ws50{word-spacing:9.282880pt;}
.ws52{word-spacing:9.801792pt;}
.ws18{word-spacing:10.345387pt;}
.ws12{word-spacing:10.408960pt;}
.ws13{word-spacing:10.704427pt;}
.ws15{word-spacing:10.832427pt;}
.ws14{word-spacing:11.115520pt;}
.ws17{word-spacing:11.678400pt;}
.ws19{word-spacing:11.785067pt;}
.ws44{word-spacing:12.461227pt;}
.ws45{word-spacing:13.434560pt;}
.ws37{word-spacing:15.589547pt;}
.ws38{word-spacing:16.521067pt;}
.ws36{word-spacing:16.904960pt;}
.ws5a{word-spacing:17.442560pt;}
.ws59{word-spacing:18.682560pt;}
.ws9{word-spacing:18.932907pt;}
.ws7{word-spacing:19.452587pt;}
.ws8{word-spacing:19.610560pt;}
.wsf{word-spacing:26.531840pt;}
.ws31{word-spacing:27.145067pt;}
.ws4e{word-spacing:27.924907pt;}
.ws32{word-spacing:27.987627pt;}
.ws4b{word-spacing:45.928107pt;}
.ws43{word-spacing:46.883840pt;}
.ws4c{word-spacing:47.174827pt;}
.ws4d{word-spacing:49.050560pt;}
.ws3b{word-spacing:53.380267pt;}
.ws1c{word-spacing:55.460693pt;}
.ws1{word-spacing:56.264107pt;}
.ws2{word-spacing:56.584960pt;}
.ws4{word-spacing:57.241600pt;}
.ws6{word-spacing:57.376000pt;}
.ws3{word-spacing:57.504000pt;}
.ws5{word-spacing:57.712213pt;}
.ws0{word-spacing:59.201280pt;}
.wse{word-spacing:90.331307pt;}
.ws4a{word-spacing:114.405760pt;}
.ws26{word-spacing:129.599147pt;}
.wsd{word-spacing:158.564267pt;}
.wsc{word-spacing:160.698027pt;}
.ws2c{word-spacing:581.540053pt;}
.ws29{word-spacing:612.693141pt;}
._e{margin-left:-4.746240pt;}
._7{margin-left:-3.422720pt;}
._6{margin-left:-2.009600pt;}
._1{margin-left:-1.113600pt;}
._0{width:0.890880pt;}
._4{width:2.027520pt;}
._15{width:3.015680pt;}
._5{width:3.947520pt;}
._14{width:5.995520pt;}
._16{width:11.959040pt;}
._12{width:13.143040pt;}
._3{width:22.694400pt;}
._9{width:24.879787pt;}
._19{width:30.271189pt;}
._17{width:31.175680pt;}
._13{width:37.363200pt;}
._1a{width:39.129600pt;}
._2{width:40.500480pt;}
._18{width:68.499200pt;}
._8{width:77.341440pt;}
._f{width:79.950507pt;}
._11{width:92.750507pt;}
._b{width:100.881067pt;}
._c{width:138.259243pt;}
._10{width:141.671253pt;}
._a{width:146.779307pt;}
._d{width:159.962667pt;}
.fsc{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fsa{font-size:42.240000pt;}
.fs7{font-size:53.760000pt;}
.fs8{font-size:53.888000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs9{font-size:69.248000pt;}
.fs0{font-size:74.240000pt;}
.fs5{font-size:74.368000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:7.168000pt;}
.y60{bottom:16.768000pt;}
.y5f{bottom:26.368000pt;}
.y54{bottom:44.608000pt;}
.y3a{bottom:55.613333pt;}
.y26{bottom:55.680000pt;}
.y53{bottom:55.808000pt;}
.y1f{bottom:55.840000pt;}
.y1a{bottom:66.813333pt;}
.y52{bottom:67.008000pt;}
.y51{bottom:78.208000pt;}
.y3b{bottom:83.296000pt;}
.y23{bottom:106.880000pt;}
.y34{bottom:106.973333pt;}
.y2b{bottom:107.013333pt;}
.y18{bottom:113.696000pt;}
.y22{bottom:124.160000pt;}
.y2a{bottom:124.293333pt;}
.y1c{bottom:124.413333pt;}
.y17{bottom:136.093333pt;}
.y5e{bottom:137.053333pt;}
.y16{bottom:158.493333pt;}
.y15{bottom:180.893333pt;}
.yb{bottom:188.186667pt;}
.y14{bottom:203.333333pt;}
.ya{bottom:210.586667pt;}
.y13{bottom:225.733333pt;}
.ye{bottom:246.213333pt;}
.yf{bottom:276.000000pt;}
.y50{bottom:291.426667pt;}
.y4f{bottom:313.826667pt;}
.y4b{bottom:323.013333pt;}
.y4e{bottom:336.226667pt;}
.y4a{bottom:365.026667pt;}
.y4c{bottom:403.613333pt;}
.y3e{bottom:447.293333pt;}
.y49{bottom:487.933333pt;}
.y48{bottom:510.333333pt;}
.y4d{bottom:511.226667pt;}
.y47{bottom:532.733333pt;}
.y9{bottom:547.200000pt;}
.y46{bottom:555.173333pt;}
.y8{bottom:569.600000pt;}
.y45{bottom:577.573333pt;}
.y7{bottom:592.000000pt;}
.y44{bottom:599.973333pt;}
.y6{bottom:614.400000pt;}
.y43{bottom:622.373333pt;}
.y42{bottom:644.773333pt;}
.yd{bottom:654.240000pt;}
.y41{bottom:667.173333pt;}
.y40{bottom:689.600000pt;}
.y5d{bottom:692.826667pt;}
.y5c{bottom:715.226667pt;}
.y3d{bottom:735.200000pt;}
.y5b{bottom:737.626667pt;}
.y5a{bottom:760.066667pt;}
.y3f{bottom:779.386667pt;}
.y36{bottom:788.160000pt;}
.y59{bottom:798.653333pt;}
.y39{bottom:805.440000pt;}
.y3c{bottom:819.613333pt;}
.y32{bottom:822.400000pt;}
.y58{bottom:840.800000pt;}
.y30{bottom:856.640000pt;}
.y38{bottom:861.053333pt;}
.y57{bottom:863.200000pt;}
.y37{bottom:878.173333pt;}
.y56{bottom:885.600000pt;}
.y2d{bottom:890.880000pt;}
.y55{bottom:908.000000pt;}
.y35{bottom:912.413333pt;}
.y29{bottom:925.120000pt;}
.y33{bottom:946.693333pt;}
.yc{bottom:955.586667pt;}
.y31{bottom:963.653333pt;}
.y2f{bottom:980.933333pt;}
.y2e{bottom:997.893333pt;}
.y4{bottom:999.706667pt;}
.y21{bottom:1010.880000pt;}
.y2c{bottom:1015.173333pt;}
.y3{bottom:1020.826667pt;}
.y2{bottom:1043.226667pt;}
.y25{bottom:1045.120000pt;}
.y1{bottom:1065.626667pt;}
.y28{bottom:1066.533333pt;}
.y1b{bottom:1072.320000pt;}
.y27{bottom:1083.680000pt;}
.y1e{bottom:1096.320000pt;}
.y5{bottom:1109.213333pt;}
.y19{bottom:1127.360000pt;}
.y24{bottom:1135.360000pt;}
.y20{bottom:1152.160000pt;}
.y12{bottom:1162.333333pt;}
.y1d{bottom:1179.453333pt;}
.y11{bottom:1179.933333pt;}
.y10{bottom:1197.533333pt;}
.h13{height:33.277500pt;}
.h15{height:33.375000pt;}
.h14{height:38.715000pt;}
.h12{height:44.055000pt;}
.hb{height:56.070000pt;}
.hf{height:56.203500pt;}
.h5{height:61.410000pt;}
.h6{height:61.543500pt;}
.h11{height:66.555000pt;}
.h9{height:66.750000pt;}
.h4{height:72.090000pt;}
.h10{height:72.223500pt;}
.h2{height:77.430000pt;}
.h7{height:77.563500pt;}
.h3{height:100.125000pt;}
.he{height:120.000000pt;}
.hd{height:120.320000pt;}
.hc{height:125.190000pt;}
.h8{height:144.000000pt;}
.ha{height:240.000000pt;}
.h0{height:1360.640000pt;}
.h1{height:1360.666667pt;}
.w4{width:86.080000pt;}
.w5{width:86.400000pt;}
.w3{width:178.880000pt;}
.w2{width:767.039989pt;}
.w0{width:767.040000pt;}
.w1{width:767.333333pt;}
.x0{left:0.000000pt;}
.xc{left:7.493333pt;}
.x1a{left:10.906667pt;}
.xe{left:12.506667pt;}
.x28{left:24.351989pt;}
.x1{left:25.439989pt;}
.x3{left:28.639989pt;}
.x14{left:30.106667pt;}
.x9{left:32.127989pt;}
.x25{left:35.839989pt;}
.x4{left:37.407989pt;}
.x1c{left:39.839989pt;}
.x7{left:76.127989pt;}
.x29{left:87.807989pt;}
.x2{left:128.991989pt;}
.x6{left:130.687989pt;}
.x24{left:142.213322pt;}
.x5{left:149.306655pt;}
.x27{left:159.226655pt;}
.xb{left:397.760000pt;}
.x26{left:400.666655pt;}
.x20{left:404.706655pt;}
.xa{left:406.306655pt;}
.x21{left:408.933322pt;}
.x19{left:416.133322pt;}
.x13{left:419.973322pt;}
.x22{left:439.039989pt;}
.x18{left:502.879989pt;}
.x8{left:507.106655pt;}
.x1d{left:536.319989pt;}
.x23{left:538.626655pt;}
.x1f{left:541.693322pt;}
.x1e{left:543.679989pt;}
.xd{left:576.320000pt;}
.x12{left:585.626655pt;}
.x15{left:586.906655pt;}
.x11{left:596.506655pt;}
.xf{left:599.386655pt;}
.x16{left:662.080000pt;}
.x1b{left:671.653322pt;}
.x17{left:672.933322pt;}
.x10{left:685.413322pt;}
}




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