
    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_75282b7a086f433bfa300ad8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e25e04d38766bdda8eb5cfd1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_b43232f22f6b840e122703e7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_620894ab3b059203d00a88b7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8e2a4f9221a9d1422f69ca13.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bb43f89be3e52e6c006caabb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_1907c345cd480e2d3e9c0f5a.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.093000px;}
.lsd{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.720000px;}
.lsb{letter-spacing:41.682720px;}
.ls9{letter-spacing:71.922720px;}
.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;}
}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws7{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.580000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._2{width:1.340640px;}
._1{width:2.688000px;}
._c{width:3.741360px;}
._5{width:4.745040px;}
._8{width:6.017760px;}
._9{width:7.059600px;}
._4{width:8.569440px;}
._3{width:9.595440px;}
._12{width:10.604160px;}
._a{width:11.627280px;}
._b{width:13.420080px;}
._d{width:15.955920px;}
._e{width:17.629200px;}
._14{width:19.234800px;}
._7{width:20.292480px;}
._6{width:21.308400px;}
._f{width:22.368240px;}
._13{width:23.605200px;}
._10{width:25.431840px;}
._11{width:26.593200px;}
._15{width:27.967680px;}
._18{width:32.346720px;}
._19{width:33.406560px;}
._16{width:67.605120px;}
._17{width:68.681520px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:30.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.y6{bottom:47.520000px;}
.y9{bottom:57.780000px;}
.y8{bottom:78.516000px;}
.y3f{bottom:99.216000px;}
.y3c{bottom:118.656000px;}
.y76{bottom:124.596000px;}
.y8b{bottom:135.396000px;}
.y3b{bottom:135.936000px;}
.yb2{bottom:137.736000px;}
.y75{bottom:141.876000px;}
.y8a{bottom:149.436000px;}
.yd1{bottom:149.976000px;}
.y3a{bottom:153.210000px;}
.yb1{bottom:155.010000px;}
.y74{bottom:159.150000px;}
.yd0{bottom:167.250000px;}
.y39{bottom:170.490000px;}
.yb0{bottom:172.290000px;}
.y73{bottom:176.430000px;}
.ycf{bottom:184.530000px;}
.y38{bottom:187.590000px;}
.yaf{bottom:189.570000px;}
.y72{bottom:190.470000px;}
.yce{bottom:201.810000px;}
.y37{bottom:204.870000px;}
.yae{bottom:206.850000px;}
.ycd{bottom:219.090000px;}
.y36{bottom:222.150000px;}
.yad{bottom:224.130000px;}
.ycc{bottom:236.190000px;}
.y71{bottom:237.810000px;}
.y35{bottom:239.430000px;}
.yac{bottom:241.230000px;}
.ycb{bottom:253.470000px;}
.y34{bottom:256.710000px;}
.yab{bottom:258.510000px;}
.y70{bottom:267.690000px;}
.yca{bottom:270.750000px;}
.y33{bottom:273.990000px;}
.yaa{bottom:275.790000px;}
.y6f{bottom:284.970000px;}
.yc9{bottom:288.030000px;}
.y32{bottom:291.090000px;}
.ya9{bottom:293.070000px;}
.y6e{bottom:302.070000px;}
.yc8{bottom:305.310000px;}
.y31{bottom:308.370000px;}
.ya8{bottom:310.350000px;}
.y6d{bottom:319.350000px;}
.yc7{bottom:322.590000px;}
.y30{bottom:325.650000px;}
.ya7{bottom:327.630000px;}
.y6c{bottom:336.675000px;}
.yc6{bottom:339.735000px;}
.y2f{bottom:342.975000px;}
.ya6{bottom:344.775000px;}
.y6b{bottom:353.955000px;}
.yc5{bottom:357.015000px;}
.y2e{bottom:360.255000px;}
.ya5{bottom:362.055000px;}
.y6a{bottom:371.235000px;}
.y89{bottom:373.575000px;}
.yc4{bottom:374.295000px;}
.y2d{bottom:377.355000px;}
.ya4{bottom:379.335000px;}
.y69{bottom:388.515000px;}
.y88{bottom:390.855000px;}
.yc3{bottom:391.575000px;}
.y2c{bottom:394.635000px;}
.ya3{bottom:396.615000px;}
.y68{bottom:405.615000px;}
.y87{bottom:408.135000px;}
.yc2{bottom:408.855000px;}
.y2b{bottom:411.915000px;}
.ya2{bottom:413.895000px;}
.y67{bottom:422.895000px;}
.y86{bottom:425.415000px;}
.yc1{bottom:426.135000px;}
.y2a{bottom:429.195000px;}
.ya1{bottom:430.995000px;}
.y66{bottom:440.175000px;}
.y85{bottom:442.695000px;}
.yc0{bottom:443.235000px;}
.y29{bottom:446.475000px;}
.ya0{bottom:448.275000px;}
.y65{bottom:457.455000px;}
.y84{bottom:459.795000px;}
.ybf{bottom:460.515000px;}
.y28{bottom:463.755000px;}
.y9f{bottom:465.555000px;}
.y64{bottom:474.735000px;}
.y83{bottom:477.075000px;}
.ybe{bottom:477.795000px;}
.y27{bottom:479.235000px;}
.y9e{bottom:482.835000px;}
.y26{bottom:489.495000px;}
.y63{bottom:491.835000px;}
.y82{bottom:494.355000px;}
.ybd{bottom:495.075000px;}
.y9d{bottom:500.115000px;}
.y25{bottom:506.775000px;}
.y62{bottom:509.115000px;}
.y81{bottom:511.635000px;}
.ybc{bottom:512.355000px;}
.y9c{bottom:517.395000px;}
.y24{bottom:524.055000px;}
.y61{bottom:526.395000px;}
.y80{bottom:528.915000px;}
.ybb{bottom:529.635000px;}
.y9b{bottom:534.495000px;}
.y23{bottom:541.335000px;}
.y60{bottom:543.675000px;}
.y7f{bottom:546.195000px;}
.yba{bottom:546.735000px;}
.y9a{bottom:551.775000px;}
.y22{bottom:558.615000px;}
.y5f{bottom:560.955000px;}
.y7e{bottom:563.295000px;}
.yb9{bottom:564.015000px;}
.y99{bottom:569.055000px;}
.y21{bottom:575.715000px;}
.y5e{bottom:578.235000px;}
.y7d{bottom:580.575000px;}
.yb8{bottom:581.295000px;}
.y98{bottom:586.335000px;}
.y20{bottom:592.995000px;}
.y5d{bottom:595.335000px;}
.y7c{bottom:597.855000px;}
.yb7{bottom:598.575000px;}
.y97{bottom:603.645000px;}
.y1f{bottom:610.305000px;}
.y5c{bottom:612.645000px;}
.y7b{bottom:615.165000px;}
.yb6{bottom:615.885000px;}
.y96{bottom:620.925000px;}
.y1e{bottom:627.585000px;}
.y5b{bottom:629.925000px;}
.y7a{bottom:632.445000px;}
.yb5{bottom:632.985000px;}
.y95{bottom:638.025000px;}
.y1d{bottom:644.865000px;}
.y5a{bottom:647.205000px;}
.y79{bottom:649.725000px;}
.yb4{bottom:650.265000px;}
.y94{bottom:655.305000px;}
.y1c{bottom:662.145000px;}
.yb3{bottom:664.305000px;}
.y59{bottom:664.485000px;}
.y78{bottom:666.825000px;}
.y93{bottom:672.585000px;}
.y1b{bottom:679.245000px;}
.y77{bottom:680.865000px;}
.y58{bottom:681.765000px;}
.y92{bottom:689.865000px;}
.y1a{bottom:696.525000px;}
.y57{bottom:698.865000px;}
.y91{bottom:707.145000px;}
.y56{bottom:712.905000px;}
.y19{bottom:713.805000px;}
.y90{bottom:724.425000px;}
.y18{bottom:731.085000px;}
.y8f{bottom:741.525000px;}
.y17{bottom:748.365000px;}
.yd4{bottom:752.865000px;}
.y8e{bottom:758.805000px;}
.y16{bottom:765.645000px;}
.yd3{bottom:770.145000px;}
.y55{bottom:772.125000px;}
.y8d{bottom:776.085000px;}
.y15{bottom:782.745000px;}
.yd2{bottom:787.425000px;}
.y8c{bottom:790.125000px;}
.y14{bottom:800.025000px;}
.y54{bottom:804.705000px;}
.y13{bottom:817.305000px;}
.y53{bottom:821.985000px;}
.y12{bottom:834.585000px;}
.y52{bottom:839.265000px;}
.y11{bottom:851.865000px;}
.y51{bottom:856.365000px;}
.y10{bottom:871.710000px;}
.y50{bottom:873.690000px;}
.y4f{bottom:890.970000px;}
.yf{bottom:891.510000px;}
.y4e{bottom:908.250000px;}
.ye{bottom:908.790000px;}
.y4d{bottom:925.530000px;}
.yd{bottom:926.790000px;}
.y4c{bottom:942.630000px;}
.yc{bottom:947.490000px;}
.y4b{bottom:959.910000px;}
.yb{bottom:969.450000px;}
.y4a{bottom:977.190000px;}
.y49{bottom:994.470000px;}
.ya{bottom:996.990000px;}
.y48{bottom:1011.750000px;}
.y7{bottom:1023.270000px;}
.y47{bottom:1029.030000px;}
.y5{bottom:1040.010000px;}
.y46{bottom:1046.130000px;}
.y45{bottom:1063.410000px;}
.y44{bottom:1080.690000px;}
.y43{bottom:1097.970000px;}
.y42{bottom:1115.250000px;}
.y41{bottom:1132.530000px;}
.y3{bottom:1149.300000px;}
.y40{bottom:1149.660000px;}
.y3e{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3d{bottom:1192.140000px;}
.hd{height:21.336328px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.hb{height:41.726953px;}
.ha{height:42.164648px;}
.hf{height:43.506914px;}
.hc{height:49.255313px;}
.h3{height:50.273438px;}
.h5{height:50.800781px;}
.he{height:52.171875px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h8{height:86.255508px;}
.h6{height:109.296000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:23.940000px;}
.x3{left:46.800000px;}
.x6{left:62.310000px;}
.x12{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x11{left:110.195987px;}
.xb{left:113.795987px;}
.x27{left:151.229987px;}
.x22{left:169.409987px;}
.x4{left:182.199000px;}
.x2{left:240.519000px;}
.x19{left:243.074987px;}
.x20{left:245.234987px;}
.x1c{left:248.294987px;}
.x16{left:260.894987px;}
.x1e{left:265.214987px;}
.x23{left:295.454987px;}
.x10{left:305.354987px;}
.x24{left:311.294987px;}
.xc{left:312.554987px;}
.x5{left:352.695000px;}
.xe{left:366.554987px;}
.x14{left:386.534987px;}
.x26{left:395.714987px;}
.x15{left:437.504987px;}
.x13{left:446.504987px;}
.xa{left:450.104987px;}
.xd{left:452.264987px;}
.xf{left:459.104987px;}
.x17{left:565.169987px;}
.x1f{left:602.969987px;}
.x7{left:618.450000px;}
.x25{left:620.429987px;}
.x21{left:642.209987px;}
.x1d{left:647.249987px;}
.x1a{left:663.809987px;}
.x18{left:668.129987px;}
.x1b{left:705.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.082667pt;}
.lsd{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsb{letter-spacing:37.051307pt;}
.ls9{letter-spacing:63.931307pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.960000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.191680pt;}
._1{width:2.389333pt;}
._c{width:3.325653pt;}
._5{width:4.217813pt;}
._8{width:5.349120pt;}
._9{width:6.275200pt;}
._4{width:7.617280pt;}
._3{width:8.529280pt;}
._12{width:9.425920pt;}
._a{width:10.335360pt;}
._b{width:11.928960pt;}
._d{width:14.183040pt;}
._e{width:15.670400pt;}
._14{width:17.097600pt;}
._7{width:18.037760pt;}
._6{width:18.940800pt;}
._f{width:19.882880pt;}
._13{width:20.982400pt;}
._10{width:22.606080pt;}
._11{width:23.638400pt;}
._15{width:24.860160pt;}
._18{width:28.752640pt;}
._19{width:29.694720pt;}
._16{width:60.093440pt;}
._17{width:61.050240pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.y6{bottom:42.240000pt;}
.y9{bottom:51.360000pt;}
.y8{bottom:69.792000pt;}
.y3f{bottom:88.192000pt;}
.y3c{bottom:105.472000pt;}
.y76{bottom:110.752000pt;}
.y8b{bottom:120.352000pt;}
.y3b{bottom:120.832000pt;}
.yb2{bottom:122.432000pt;}
.y75{bottom:126.112000pt;}
.y8a{bottom:132.832000pt;}
.yd1{bottom:133.312000pt;}
.y3a{bottom:136.186667pt;}
.yb1{bottom:137.786667pt;}
.y74{bottom:141.466667pt;}
.yd0{bottom:148.666667pt;}
.y39{bottom:151.546667pt;}
.yb0{bottom:153.146667pt;}
.y73{bottom:156.826667pt;}
.ycf{bottom:164.026667pt;}
.y38{bottom:166.746667pt;}
.yaf{bottom:168.506667pt;}
.y72{bottom:169.306667pt;}
.yce{bottom:179.386667pt;}
.y37{bottom:182.106667pt;}
.yae{bottom:183.866667pt;}
.ycd{bottom:194.746667pt;}
.y36{bottom:197.466667pt;}
.yad{bottom:199.226667pt;}
.ycc{bottom:209.946667pt;}
.y71{bottom:211.386667pt;}
.y35{bottom:212.826667pt;}
.yac{bottom:214.426667pt;}
.ycb{bottom:225.306667pt;}
.y34{bottom:228.186667pt;}
.yab{bottom:229.786667pt;}
.y70{bottom:237.946667pt;}
.yca{bottom:240.666667pt;}
.y33{bottom:243.546667pt;}
.yaa{bottom:245.146667pt;}
.y6f{bottom:253.306667pt;}
.yc9{bottom:256.026667pt;}
.y32{bottom:258.746667pt;}
.ya9{bottom:260.506667pt;}
.y6e{bottom:268.506667pt;}
.yc8{bottom:271.386667pt;}
.y31{bottom:274.106667pt;}
.ya8{bottom:275.866667pt;}
.y6d{bottom:283.866667pt;}
.yc7{bottom:286.746667pt;}
.y30{bottom:289.466667pt;}
.ya7{bottom:291.226667pt;}
.y6c{bottom:299.266667pt;}
.yc6{bottom:301.986667pt;}
.y2f{bottom:304.866667pt;}
.ya6{bottom:306.466667pt;}
.y6b{bottom:314.626667pt;}
.yc5{bottom:317.346667pt;}
.y2e{bottom:320.226667pt;}
.ya5{bottom:321.826667pt;}
.y6a{bottom:329.986667pt;}
.y89{bottom:332.066667pt;}
.yc4{bottom:332.706667pt;}
.y2d{bottom:335.426667pt;}
.ya4{bottom:337.186667pt;}
.y69{bottom:345.346667pt;}
.y88{bottom:347.426667pt;}
.yc3{bottom:348.066667pt;}
.y2c{bottom:350.786667pt;}
.ya3{bottom:352.546667pt;}
.y68{bottom:360.546667pt;}
.y87{bottom:362.786667pt;}
.yc2{bottom:363.426667pt;}
.y2b{bottom:366.146667pt;}
.ya2{bottom:367.906667pt;}
.y67{bottom:375.906667pt;}
.y86{bottom:378.146667pt;}
.yc1{bottom:378.786667pt;}
.y2a{bottom:381.506667pt;}
.ya1{bottom:383.106667pt;}
.y66{bottom:391.266667pt;}
.y85{bottom:393.506667pt;}
.yc0{bottom:393.986667pt;}
.y29{bottom:396.866667pt;}
.ya0{bottom:398.466667pt;}
.y65{bottom:406.626667pt;}
.y84{bottom:408.706667pt;}
.ybf{bottom:409.346667pt;}
.y28{bottom:412.226667pt;}
.y9f{bottom:413.826667pt;}
.y64{bottom:421.986667pt;}
.y83{bottom:424.066667pt;}
.ybe{bottom:424.706667pt;}
.y27{bottom:425.986667pt;}
.y9e{bottom:429.186667pt;}
.y26{bottom:435.106667pt;}
.y63{bottom:437.186667pt;}
.y82{bottom:439.426667pt;}
.ybd{bottom:440.066667pt;}
.y9d{bottom:444.546667pt;}
.y25{bottom:450.466667pt;}
.y62{bottom:452.546667pt;}
.y81{bottom:454.786667pt;}
.ybc{bottom:455.426667pt;}
.y9c{bottom:459.906667pt;}
.y24{bottom:465.826667pt;}
.y61{bottom:467.906667pt;}
.y80{bottom:470.146667pt;}
.ybb{bottom:470.786667pt;}
.y9b{bottom:475.106667pt;}
.y23{bottom:481.186667pt;}
.y60{bottom:483.266667pt;}
.y7f{bottom:485.506667pt;}
.yba{bottom:485.986667pt;}
.y9a{bottom:490.466667pt;}
.y22{bottom:496.546667pt;}
.y5f{bottom:498.626667pt;}
.y7e{bottom:500.706667pt;}
.yb9{bottom:501.346667pt;}
.y99{bottom:505.826667pt;}
.y21{bottom:511.746667pt;}
.y5e{bottom:513.986667pt;}
.y7d{bottom:516.066667pt;}
.yb8{bottom:516.706667pt;}
.y98{bottom:521.186667pt;}
.y20{bottom:527.106667pt;}
.y5d{bottom:529.186667pt;}
.y7c{bottom:531.426667pt;}
.yb7{bottom:532.066667pt;}
.y97{bottom:536.573333pt;}
.y1f{bottom:542.493333pt;}
.y5c{bottom:544.573333pt;}
.y7b{bottom:546.813333pt;}
.yb6{bottom:547.453333pt;}
.y96{bottom:551.933333pt;}
.y1e{bottom:557.853333pt;}
.y5b{bottom:559.933333pt;}
.y7a{bottom:562.173333pt;}
.yb5{bottom:562.653333pt;}
.y95{bottom:567.133333pt;}
.y1d{bottom:573.213333pt;}
.y5a{bottom:575.293333pt;}
.y79{bottom:577.533333pt;}
.yb4{bottom:578.013333pt;}
.y94{bottom:582.493333pt;}
.y1c{bottom:588.573333pt;}
.yb3{bottom:590.493333pt;}
.y59{bottom:590.653333pt;}
.y78{bottom:592.733333pt;}
.y93{bottom:597.853333pt;}
.y1b{bottom:603.773333pt;}
.y77{bottom:605.213333pt;}
.y58{bottom:606.013333pt;}
.y92{bottom:613.213333pt;}
.y1a{bottom:619.133333pt;}
.y57{bottom:621.213333pt;}
.y91{bottom:628.573333pt;}
.y56{bottom:633.693333pt;}
.y19{bottom:634.493333pt;}
.y90{bottom:643.933333pt;}
.y18{bottom:649.853333pt;}
.y8f{bottom:659.133333pt;}
.y17{bottom:665.213333pt;}
.yd4{bottom:669.213333pt;}
.y8e{bottom:674.493333pt;}
.y16{bottom:680.573333pt;}
.yd3{bottom:684.573333pt;}
.y55{bottom:686.333333pt;}
.y8d{bottom:689.853333pt;}
.y15{bottom:695.773333pt;}
.yd2{bottom:699.933333pt;}
.y8c{bottom:702.333333pt;}
.y14{bottom:711.133333pt;}
.y54{bottom:715.293333pt;}
.y13{bottom:726.493333pt;}
.y53{bottom:730.653333pt;}
.y12{bottom:741.853333pt;}
.y52{bottom:746.013333pt;}
.y11{bottom:757.213333pt;}
.y51{bottom:761.213333pt;}
.y10{bottom:774.853333pt;}
.y50{bottom:776.613333pt;}
.y4f{bottom:791.973333pt;}
.yf{bottom:792.453333pt;}
.y4e{bottom:807.333333pt;}
.ye{bottom:807.813333pt;}
.y4d{bottom:822.693333pt;}
.yd{bottom:823.813333pt;}
.y4c{bottom:837.893333pt;}
.yc{bottom:842.213333pt;}
.y4b{bottom:853.253333pt;}
.yb{bottom:861.733333pt;}
.y4a{bottom:868.613333pt;}
.y49{bottom:883.973333pt;}
.ya{bottom:886.213333pt;}
.y48{bottom:899.333333pt;}
.y7{bottom:909.573333pt;}
.y47{bottom:914.693333pt;}
.y5{bottom:924.453333pt;}
.y46{bottom:929.893333pt;}
.y45{bottom:945.253333pt;}
.y44{bottom:960.613333pt;}
.y43{bottom:975.973333pt;}
.y42{bottom:991.333333pt;}
.y41{bottom:1006.693333pt;}
.y3{bottom:1021.600000pt;}
.y40{bottom:1021.920000pt;}
.y3e{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3d{bottom:1059.680000pt;}
.hd{height:18.965625pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.hb{height:37.090625pt;}
.ha{height:37.479688pt;}
.hf{height:38.672812pt;}
.hc{height:43.782500pt;}
.h3{height:44.687500pt;}
.h5{height:45.156250pt;}
.he{height:46.375000pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h8{height:76.671562pt;}
.h6{height:97.152000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:21.280000pt;}
.x3{left:41.600000pt;}
.x6{left:55.386667pt;}
.x12{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x11{left:97.951988pt;}
.xb{left:101.151988pt;}
.x27{left:134.426655pt;}
.x22{left:150.586655pt;}
.x4{left:161.954667pt;}
.x2{left:213.794667pt;}
.x19{left:216.066655pt;}
.x20{left:217.986655pt;}
.x1c{left:220.706655pt;}
.x16{left:231.906655pt;}
.x1e{left:235.746655pt;}
.x23{left:262.626655pt;}
.x10{left:271.426655pt;}
.x24{left:276.706655pt;}
.xc{left:277.826655pt;}
.x5{left:313.506667pt;}
.xe{left:325.826655pt;}
.x14{left:343.586655pt;}
.x26{left:351.746655pt;}
.x15{left:388.893322pt;}
.x13{left:396.893322pt;}
.xa{left:400.093322pt;}
.xd{left:402.013322pt;}
.xf{left:408.093322pt;}
.x17{left:502.373322pt;}
.x1f{left:535.973322pt;}
.x7{left:549.733333pt;}
.x25{left:551.493322pt;}
.x21{left:570.853322pt;}
.x1d{left:575.333322pt;}
.x1a{left:590.053322pt;}
.x18{left:593.893322pt;}
.x1b{left:627.173322pt;}
}




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