
    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_8a6354a5c739e6834d3eca05.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_84660b449bd7f7ca6039e01b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4df2b70ac579a58e46266ef1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1d52ecfcaeeeb11f234742f0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_89e94191913f824e0f74e60c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_c0a85598a6b23b5b7989543d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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;}
.ls1c{letter-spacing:-1.854000px;}
.ls33{letter-spacing:-1.026000px;}
.ls3d{letter-spacing:-0.810000px;}
.ls15{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.612000px;}
.ls2b{letter-spacing:-0.596400px;}
.ls3c{letter-spacing:-0.540000px;}
.ls35{letter-spacing:-0.443400px;}
.lse{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.269400px;}
.ls20{letter-spacing:-0.262200px;}
.ls13{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.158400px;}
.ls1e{letter-spacing:-0.147000px;}
.ls12{letter-spacing:-0.054000px;}
.lsb{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.045360px;}
.lsa{letter-spacing:0.053280px;}
.ls32{letter-spacing:0.066000px;}
.ls3a{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.109200px;}
.ls34{letter-spacing:0.123600px;}
.ls3e{letter-spacing:0.126000px;}
.ls3b{letter-spacing:0.162000px;}
.ls37{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.201600px;}
.ls0{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.207600px;}
.ls10{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.262080px;}
.lsd{letter-spacing:0.269400px;}
.ls29{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.383040px;}
.ls1d{letter-spacing:0.720000px;}
.ls1b{letter-spacing:1.440000px;}
.ls2e{letter-spacing:2.880000px;}
.ls23{letter-spacing:3.600000px;}
.ls19{letter-spacing:4.320000px;}
.ls6{letter-spacing:5.916000px;}
.ls5{letter-spacing:5.940000px;}
.ls17{letter-spacing:7.920000px;}
.ls36{letter-spacing:9.540000px;}
.ls25{letter-spacing:10.080000px;}
.ls21{letter-spacing:10.800000px;}
.ls2f{letter-spacing:11.520000px;}
.ls26{letter-spacing:17.280000px;}
.ls18{letter-spacing:18.000000px;}
.ls30{letter-spacing:21.600000px;}
.ls16{letter-spacing:23.760000px;}
.ls3{letter-spacing:25.560000px;}
.ls1a{letter-spacing:30.240000px;}
.ls22{letter-spacing:36.720000px;}
.ls24{letter-spacing:38.880000px;}
.ls31{letter-spacing:39.600000px;}
.ls38{letter-spacing:47.700000px;}
.ls2c{letter-spacing:49.080000px;}
.ls39{letter-spacing:52.740000px;}
.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;}
}
.wse{word-spacing:-16.767600px;}
.ws13{word-spacing:-16.761600px;}
.ws19{word-spacing:-16.683600px;}
.ws6{word-spacing:-16.669200px;}
.ws17{word-spacing:-16.626000px;}
.ws7{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.413000px;}
.ws11{word-spacing:-16.401600px;}
.ws12{word-spacing:-16.297800px;}
.ws14{word-spacing:-16.254600px;}
.ws1a{word-spacing:-16.116600px;}
.ws16{word-spacing:-15.963600px;}
.ws15{word-spacing:-15.948000px;}
.ws18{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws21{word-spacing:-14.940000px;}
.ws22{word-spacing:-14.400000px;}
.wsd{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.716000px;}
.ws1c{word-spacing:-13.662000px;}
.ws1f{word-spacing:-13.626000px;}
.ws9{word-spacing:-13.608000px;}
.ws1b{word-spacing:-13.590000px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.446000px;}
.wsc{word-spacing:-13.284000px;}
.ws1d{word-spacing:-13.140000px;}
.ws20{word-spacing:-12.888000px;}
.ws1e{word-spacing:-12.690000px;}
.ws3{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.ws5{word-spacing:-11.700000px;}
.wsf{word-spacing:0.000000px;}
._1a{margin-left:-3.039240px;}
._1{margin-left:-1.663800px;}
._0{width:1.180080px;}
._11{width:3.132000px;}
._e{width:4.482000px;}
._5{width:5.508000px;}
._37{width:6.698040px;}
._1d{width:8.015040px;}
._2c{width:9.018960px;}
._28{width:10.067640px;}
._1c{width:11.666040px;}
._2a{width:12.951840px;}
._32{width:14.093880px;}
._f{width:15.480000px;}
._b{width:16.884000px;}
._c{width:17.958000px;}
._d{width:19.045920px;}
._10{width:20.304000px;}
._14{width:21.435000px;}
._4{width:23.004000px;}
._2{width:24.840000px;}
._3{width:26.023920px;}
._38{width:27.112320px;}
._21{width:28.284480px;}
._22{width:30.090720px;}
._30{width:31.993920px;}
._31{width:33.116640px;}
._3a{width:34.908480px;}
._33{width:35.968320px;}
._6{width:37.314000px;}
._7{width:38.401920px;}
._29{width:39.479040px;}
._1e{width:41.135040px;}
._1f{width:42.178080px;}
._3d{width:43.655880px;}
._16{width:45.444720px;}
._15{width:47.027520px;}
._2f{width:48.900600px;}
._27{width:50.697000px;}
._26{width:51.733440px;}
._20{width:52.859520px;}
._23{width:54.979200px;}
._24{width:56.120880px;}
._2e{width:57.592680px;}
._8{width:60.372000px;}
._9{width:62.490000px;}
._39{width:63.685560px;}
._a{width:65.124000px;}
._19{width:66.645240px;}
._2d{width:68.633280px;}
._36{width:69.883200px;}
._35{width:76.043520px;}
._34{width:77.707320px;}
._3b{width:81.144000px;}
._13{width:82.203840px;}
._12{width:83.308560px;}
._17{width:88.629600px;}
._18{width:89.652960px;}
._3c{width:96.577920px;}
._1b{width:98.484480px;}
._25{width:141.621120px;}
._2b{width:208.457280px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.880000px;}
.y2f{bottom:88.740000px;}
.y56{bottom:90.360000px;}
.y2e{bottom:107.676000px;}
.y55{bottom:109.476000px;}
.y2d{bottom:126.756000px;}
.y54{bottom:128.376000px;}
.y2c{bottom:145.656000px;}
.y53{bottom:147.456000px;}
.y2b{bottom:164.550000px;}
.y52{bottom:166.350000px;}
.y2a{bottom:183.630000px;}
.y51{bottom:185.250000px;}
.y29{bottom:202.530000px;}
.y50{bottom:204.330000px;}
.y28{bottom:220.350000px;}
.y4f{bottom:223.230000px;}
.y27{bottom:234.570000px;}
.y4e{bottom:242.310000px;}
.y26{bottom:250.050000px;}
.y4d{bottom:261.210000px;}
.y25{bottom:265.710000px;}
.y4c{bottom:280.155000px;}
.y24{bottom:281.235000px;}
.y23{bottom:296.715000px;}
.y4b{bottom:299.235000px;}
.y22{bottom:312.195000px;}
.y4a{bottom:318.135000px;}
.y21{bottom:327.855000px;}
.y49{bottom:337.215000px;}
.y74{bottom:342.975000px;}
.y20{bottom:343.335000px;}
.y48{bottom:356.115000px;}
.y73{bottom:357.375000px;}
.y1f{bottom:358.815000px;}
.y1e{bottom:374.295000px;}
.y72{bottom:374.655000px;}
.y47{bottom:375.195000px;}
.y1d{bottom:389.955000px;}
.y71{bottom:391.575000px;}
.y46{bottom:394.095000px;}
.y1c{bottom:405.435000px;}
.y70{bottom:407.055000px;}
.y45{bottom:412.995000px;}
.y1b{bottom:420.915000px;}
.y6f{bottom:422.715000px;}
.y44{bottom:432.075000px;}
.y1a{bottom:436.395000px;}
.y6e{bottom:438.195000px;}
.y43{bottom:450.975000px;}
.y19{bottom:452.055000px;}
.y6d{bottom:453.675000px;}
.y18{bottom:467.565000px;}
.y6c{bottom:469.185000px;}
.y42{bottom:470.085000px;}
.y17{bottom:483.045000px;}
.y6b{bottom:484.845000px;}
.y41{bottom:488.985000px;}
.y16{bottom:498.525000px;}
.y6a{bottom:500.325000px;}
.y40{bottom:507.885000px;}
.y15{bottom:514.185000px;}
.y69{bottom:515.805000px;}
.y3f{bottom:526.965000px;}
.y14{bottom:529.665000px;}
.y68{bottom:531.285000px;}
.y13{bottom:545.145000px;}
.y3e{bottom:545.865000px;}
.y67{bottom:546.945000px;}
.y12{bottom:560.625000px;}
.y66{bottom:562.425000px;}
.y3d{bottom:564.945000px;}
.y11{bottom:576.285000px;}
.y65{bottom:578.085000px;}
.y3c{bottom:583.845000px;}
.y10{bottom:591.765000px;}
.y64{bottom:593.565000px;}
.y3b{bottom:602.745000px;}
.yf{bottom:607.245000px;}
.y63{bottom:609.225000px;}
.y3a{bottom:621.825000px;}
.ye{bottom:622.725000px;}
.y62{bottom:624.525000px;}
.yd{bottom:638.250000px;}
.y61{bottom:640.050000px;}
.y39{bottom:640.770000px;}
.yc{bottom:653.910000px;}
.y60{bottom:655.530000px;}
.y38{bottom:659.850000px;}
.yb{bottom:669.390000px;}
.y5f{bottom:671.190000px;}
.y37{bottom:678.750000px;}
.ya{bottom:685.590000px;}
.y5e{bottom:686.670000px;}
.y36{bottom:697.650000px;}
.y5d{bottom:702.150000px;}
.y9{bottom:704.670000px;}
.y35{bottom:716.730000px;}
.y5c{bottom:717.630000px;}
.y8{bottom:723.570000px;}
.y5b{bottom:733.290000px;}
.y34{bottom:735.630000px;}
.y7{bottom:742.650000px;}
.y5a{bottom:748.770000px;}
.y33{bottom:754.710000px;}
.y6{bottom:761.550000px;}
.y59{bottom:764.250000px;}
.y32{bottom:773.610000px;}
.y5{bottom:777.570000px;}
.y58{bottom:779.730000px;}
.y4{bottom:782.790000px;}
.y31{bottom:792.690000px;}
.y57{bottom:795.390000px;}
.y3{bottom:796.650000px;}
.y30{bottom:824.580000px;}
.y1{bottom:825.840000px;}
.h5{height:12.335625px;}
.hb{height:39.049805px;}
.h4{height:47.344922px;}
.hc{height:47.901094px;}
.h9{height:52.998047px;}
.ha{height:54.421875px;}
.hd{height:58.621992px;}
.h6{height:58.833281px;}
.h2{height:60.226875px;}
.h8{height:65.010937px;}
.h7{height:66.757500px;}
.h3{height:70.664062px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x3{left:84.995991px;}
.x1{left:98.855991px;}
.x4{left:100.115991px;}
.xa{left:131.795991px;}
.x5{left:145.475991px;}
.x6{left:220.754991px;}
.xb{left:228.674991px;}
.x8{left:268.634991px;}
.x2{left:301.214991px;}
.x7{left:314.714991px;}
.x9{left:329.654991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-1.648000pt;}
.ls33{letter-spacing:-0.912000pt;}
.ls3d{letter-spacing:-0.720000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.544000pt;}
.ls2b{letter-spacing:-0.530133pt;}
.ls3c{letter-spacing:-0.480000pt;}
.ls35{letter-spacing:-0.394133pt;}
.lse{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.239467pt;}
.ls20{letter-spacing:-0.233067pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.140800pt;}
.ls1e{letter-spacing:-0.130667pt;}
.ls12{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.040320pt;}
.lsa{letter-spacing:0.047360pt;}
.ls32{letter-spacing:0.058667pt;}
.ls3a{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls34{letter-spacing:0.109867pt;}
.ls3e{letter-spacing:0.112000pt;}
.ls3b{letter-spacing:0.144000pt;}
.ls37{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.179200pt;}
.ls0{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.184533pt;}
.ls10{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.232960pt;}
.lsd{letter-spacing:0.239467pt;}
.ls29{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.340480pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls2e{letter-spacing:2.560000pt;}
.ls23{letter-spacing:3.200000pt;}
.ls19{letter-spacing:3.840000pt;}
.ls6{letter-spacing:5.258667pt;}
.ls5{letter-spacing:5.280000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls36{letter-spacing:8.480000pt;}
.ls25{letter-spacing:8.960000pt;}
.ls21{letter-spacing:9.600000pt;}
.ls2f{letter-spacing:10.240000pt;}
.ls26{letter-spacing:15.360000pt;}
.ls18{letter-spacing:16.000000pt;}
.ls30{letter-spacing:19.200000pt;}
.ls16{letter-spacing:21.120000pt;}
.ls3{letter-spacing:22.720000pt;}
.ls1a{letter-spacing:26.880000pt;}
.ls22{letter-spacing:32.640000pt;}
.ls24{letter-spacing:34.560000pt;}
.ls31{letter-spacing:35.200000pt;}
.ls38{letter-spacing:42.400000pt;}
.ls2c{letter-spacing:43.626667pt;}
.ls39{letter-spacing:46.880000pt;}
.wse{word-spacing:-14.904533pt;}
.ws13{word-spacing:-14.899200pt;}
.ws19{word-spacing:-14.829867pt;}
.ws6{word-spacing:-14.817067pt;}
.ws17{word-spacing:-14.778667pt;}
.ws7{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.589333pt;}
.ws11{word-spacing:-14.579200pt;}
.ws12{word-spacing:-14.486933pt;}
.ws14{word-spacing:-14.448533pt;}
.ws1a{word-spacing:-14.325867pt;}
.ws16{word-spacing:-14.189867pt;}
.ws15{word-spacing:-14.176000pt;}
.ws18{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws21{word-spacing:-13.280000pt;}
.ws22{word-spacing:-12.800000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.192000pt;}
.ws1c{word-spacing:-12.144000pt;}
.ws1f{word-spacing:-12.112000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws1b{word-spacing:-12.080000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.952000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws1d{word-spacing:-11.680000pt;}
.ws20{word-spacing:-11.456000pt;}
.ws1e{word-spacing:-11.280000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.ws5{word-spacing:-10.400000pt;}
.wsf{word-spacing:0.000000pt;}
._1a{margin-left:-2.701547pt;}
._1{margin-left:-1.478933pt;}
._0{width:1.048960pt;}
._11{width:2.784000pt;}
._e{width:3.984000pt;}
._5{width:4.896000pt;}
._37{width:5.953813pt;}
._1d{width:7.124480pt;}
._2c{width:8.016853pt;}
._28{width:8.949013pt;}
._1c{width:10.369813pt;}
._2a{width:11.512747pt;}
._32{width:12.527893pt;}
._f{width:13.760000pt;}
._b{width:15.008000pt;}
._c{width:15.962667pt;}
._d{width:16.929707pt;}
._10{width:18.048000pt;}
._14{width:19.053333pt;}
._4{width:20.448000pt;}
._2{width:22.080000pt;}
._3{width:23.132373pt;}
._38{width:24.099840pt;}
._21{width:25.141760pt;}
._22{width:26.747307pt;}
._30{width:28.439040pt;}
._31{width:29.437013pt;}
._3a{width:31.029760pt;}
._33{width:31.971840pt;}
._6{width:33.168000pt;}
._7{width:34.135040pt;}
._29{width:35.092480pt;}
._1e{width:36.564480pt;}
._1f{width:37.491627pt;}
._3d{width:38.805227pt;}
._16{width:40.395307pt;}
._15{width:41.802240pt;}
._2f{width:43.467200pt;}
._27{width:45.064000pt;}
._26{width:45.985280pt;}
._20{width:46.986240pt;}
._23{width:48.870400pt;}
._24{width:49.885227pt;}
._2e{width:51.193493pt;}
._8{width:53.664000pt;}
._9{width:55.546667pt;}
._39{width:56.609387pt;}
._a{width:57.888000pt;}
._19{width:59.240213pt;}
._2d{width:61.007360pt;}
._36{width:62.118400pt;}
._35{width:67.594240pt;}
._34{width:69.073173pt;}
._3b{width:72.128000pt;}
._13{width:73.070080pt;}
._12{width:74.052053pt;}
._17{width:78.781867pt;}
._18{width:79.691520pt;}
._3c{width:85.847040pt;}
._1b{width:87.541760pt;}
._25{width:125.885440pt;}
._2b{width:185.295360pt;}
.fs3{font-size:10.880000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.560000pt;}
.y2f{bottom:78.880000pt;}
.y56{bottom:80.320000pt;}
.y2e{bottom:95.712000pt;}
.y55{bottom:97.312000pt;}
.y2d{bottom:112.672000pt;}
.y54{bottom:114.112000pt;}
.y2c{bottom:129.472000pt;}
.y53{bottom:131.072000pt;}
.y2b{bottom:146.266667pt;}
.y52{bottom:147.866667pt;}
.y2a{bottom:163.226667pt;}
.y51{bottom:164.666667pt;}
.y29{bottom:180.026667pt;}
.y50{bottom:181.626667pt;}
.y28{bottom:195.866667pt;}
.y4f{bottom:198.426667pt;}
.y27{bottom:208.506667pt;}
.y4e{bottom:215.386667pt;}
.y26{bottom:222.266667pt;}
.y4d{bottom:232.186667pt;}
.y25{bottom:236.186667pt;}
.y4c{bottom:249.026667pt;}
.y24{bottom:249.986667pt;}
.y23{bottom:263.746667pt;}
.y4b{bottom:265.986667pt;}
.y22{bottom:277.506667pt;}
.y4a{bottom:282.786667pt;}
.y21{bottom:291.426667pt;}
.y49{bottom:299.746667pt;}
.y74{bottom:304.866667pt;}
.y20{bottom:305.186667pt;}
.y48{bottom:316.546667pt;}
.y73{bottom:317.666667pt;}
.y1f{bottom:318.946667pt;}
.y1e{bottom:332.706667pt;}
.y72{bottom:333.026667pt;}
.y47{bottom:333.506667pt;}
.y1d{bottom:346.626667pt;}
.y71{bottom:348.066667pt;}
.y46{bottom:350.306667pt;}
.y1c{bottom:360.386667pt;}
.y70{bottom:361.826667pt;}
.y45{bottom:367.106667pt;}
.y1b{bottom:374.146667pt;}
.y6f{bottom:375.746667pt;}
.y44{bottom:384.066667pt;}
.y1a{bottom:387.906667pt;}
.y6e{bottom:389.506667pt;}
.y43{bottom:400.866667pt;}
.y19{bottom:401.826667pt;}
.y6d{bottom:403.266667pt;}
.y18{bottom:415.613333pt;}
.y6c{bottom:417.053333pt;}
.y42{bottom:417.853333pt;}
.y17{bottom:429.373333pt;}
.y6b{bottom:430.973333pt;}
.y41{bottom:434.653333pt;}
.y16{bottom:443.133333pt;}
.y6a{bottom:444.733333pt;}
.y40{bottom:451.453333pt;}
.y15{bottom:457.053333pt;}
.y69{bottom:458.493333pt;}
.y3f{bottom:468.413333pt;}
.y14{bottom:470.813333pt;}
.y68{bottom:472.253333pt;}
.y13{bottom:484.573333pt;}
.y3e{bottom:485.213333pt;}
.y67{bottom:486.173333pt;}
.y12{bottom:498.333333pt;}
.y66{bottom:499.933333pt;}
.y3d{bottom:502.173333pt;}
.y11{bottom:512.253333pt;}
.y65{bottom:513.853333pt;}
.y3c{bottom:518.973333pt;}
.y10{bottom:526.013333pt;}
.y64{bottom:527.613333pt;}
.y3b{bottom:535.773333pt;}
.yf{bottom:539.773333pt;}
.y63{bottom:541.533333pt;}
.y3a{bottom:552.733333pt;}
.ye{bottom:553.533333pt;}
.y62{bottom:555.133333pt;}
.yd{bottom:567.333333pt;}
.y61{bottom:568.933333pt;}
.y39{bottom:569.573333pt;}
.yc{bottom:581.253333pt;}
.y60{bottom:582.693333pt;}
.y38{bottom:586.533333pt;}
.yb{bottom:595.013333pt;}
.y5f{bottom:596.613333pt;}
.y37{bottom:603.333333pt;}
.ya{bottom:609.413333pt;}
.y5e{bottom:610.373333pt;}
.y36{bottom:620.133333pt;}
.y5d{bottom:624.133333pt;}
.y9{bottom:626.373333pt;}
.y35{bottom:637.093333pt;}
.y5c{bottom:637.893333pt;}
.y8{bottom:643.173333pt;}
.y5b{bottom:651.813333pt;}
.y34{bottom:653.893333pt;}
.y7{bottom:660.133333pt;}
.y5a{bottom:665.573333pt;}
.y33{bottom:670.853333pt;}
.y6{bottom:676.933333pt;}
.y59{bottom:679.333333pt;}
.y32{bottom:687.653333pt;}
.y5{bottom:691.173333pt;}
.y58{bottom:693.093333pt;}
.y4{bottom:695.813333pt;}
.y31{bottom:704.613333pt;}
.y57{bottom:707.013333pt;}
.y3{bottom:708.133333pt;}
.y30{bottom:732.960000pt;}
.y1{bottom:734.080000pt;}
.h5{height:10.965000pt;}
.hb{height:34.710938pt;}
.h4{height:42.084375pt;}
.hc{height:42.578750pt;}
.h9{height:47.109375pt;}
.ha{height:48.375000pt;}
.hd{height:52.108438pt;}
.h6{height:52.296250pt;}
.h2{height:53.535000pt;}
.h8{height:57.787500pt;}
.h7{height:59.340000pt;}
.h3{height:62.812500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551992pt;}
.x1{left:87.871992pt;}
.x4{left:88.991992pt;}
.xa{left:117.151992pt;}
.x5{left:129.311992pt;}
.x6{left:196.226658pt;}
.xb{left:203.266658pt;}
.x8{left:238.786658pt;}
.x2{left:267.746658pt;}
.x7{left:279.746658pt;}
.x9{left:293.026658pt;}
}




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