
    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_9ad68af63c6fb8012a0905d3.woff2')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_ac094064bad236a91dbd5bb9.woff2')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_319e0d7e113a267cedc845c4.woff2')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_c08c937917fef5e81f57eb5f.woff2')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_de13f166f00e91b7f8321921.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_26e63c138733df49cfe61efc.woff2')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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.ls2{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.093000px;}
.ls0{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls9{letter-spacing:43.122720px;}
.ls7{letter-spacing:73.362720px;}
.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;}
}
.ws3{word-spacing:-23.921280px;}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws9{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._2{width:1.053360px;}
._1{width:2.688000px;}
._b{width:3.929040px;}
._6{width:5.602320px;}
._3{width:6.932160px;}
._5{width:8.200080px;}
._9{width:9.339120px;}
._11{width:10.719360px;}
._10{width:12.011760px;}
._7{width:13.908240px;}
._a{width:16.148880px;}
._f{width:17.154960px;}
._c{width:18.342480px;}
._d{width:19.492800px;}
._e{width:20.796480px;}
._12{width:21.916800px;}
._13{width:23.806800px;}
._4{width:25.181280px;}
._8{width:29.122560px;}
._1b{width:47.389680px;}
._1a{width:48.823920px;}
._19{width:74.363760px;}
._18{width:98.686080px;}
._14{width:116.315280px;}
._16{width:126.930240px;}
._15{width:128.244960px;}
._17{width:169.240320px;}
.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.160000px;}
.y9{bottom:57.780000px;}
.y8{bottom:78.516000px;}
.y3f{bottom:99.216000px;}
.y3c{bottom:119.196000px;}
.y67{bottom:126.576000px;}
.yb8{bottom:128.916000px;}
.y89{bottom:135.936000px;}
.y3b{bottom:136.296000px;}
.y66{bottom:143.856000px;}
.yb7{bottom:146.196000px;}
.ydd{bottom:149.076000px;}
.y88{bottom:153.210000px;}
.y3a{bottom:153.570000px;}
.y65{bottom:161.130000px;}
.yb6{bottom:163.470000px;}
.ydc{bottom:166.350000px;}
.y87{bottom:170.490000px;}
.y39{bottom:170.850000px;}
.y64{bottom:178.410000px;}
.yb5{bottom:180.570000px;}
.ydb{bottom:183.630000px;}
.y86{bottom:187.770000px;}
.y38{bottom:188.130000px;}
.y63{bottom:195.690000px;}
.yb4{bottom:197.850000px;}
.yda{bottom:200.910000px;}
.y85{bottom:204.870000px;}
.y37{bottom:205.410000px;}
.y62{bottom:212.790000px;}
.yb3{bottom:215.130000px;}
.yd9{bottom:218.190000px;}
.y84{bottom:222.150000px;}
.y36{bottom:222.510000px;}
.y61{bottom:230.070000px;}
.yb2{bottom:232.410000px;}
.yd8{bottom:235.470000px;}
.y83{bottom:239.430000px;}
.y35{bottom:239.790000px;}
.y60{bottom:247.350000px;}
.yb1{bottom:249.690000px;}
.yd7{bottom:252.570000px;}
.y82{bottom:256.710000px;}
.y34{bottom:257.070000px;}
.y5f{bottom:264.630000px;}
.yb0{bottom:266.790000px;}
.yd6{bottom:269.850000px;}
.y81{bottom:273.990000px;}
.y33{bottom:274.350000px;}
.y5e{bottom:281.910000px;}
.yaf{bottom:284.070000px;}
.yd5{bottom:287.130000px;}
.y80{bottom:291.090000px;}
.y32{bottom:291.630000px;}
.y5d{bottom:299.190000px;}
.yae{bottom:301.350000px;}
.yd4{bottom:304.410000px;}
.y7f{bottom:308.370000px;}
.y31{bottom:308.910000px;}
.y5c{bottom:316.290000px;}
.yad{bottom:318.630000px;}
.yd3{bottom:321.690000px;}
.y7e{bottom:325.650000px;}
.y30{bottom:326.010000px;}
.y5b{bottom:333.570000px;}
.yac{bottom:335.910000px;}
.yd2{bottom:339.015000px;}
.y7d{bottom:342.975000px;}
.y2f{bottom:343.335000px;}
.y5a{bottom:350.895000px;}
.yab{bottom:353.235000px;}
.yd1{bottom:356.115000px;}
.y7c{bottom:360.255000px;}
.y2e{bottom:360.615000px;}
.y59{bottom:368.175000px;}
.yaa{bottom:370.335000px;}
.yd0{bottom:373.395000px;}
.y7b{bottom:377.535000px;}
.y2d{bottom:377.895000px;}
.y58{bottom:385.455000px;}
.ya9{bottom:387.615000px;}
.ycf{bottom:390.675000px;}
.y7a{bottom:394.635000px;}
.y2c{bottom:395.175000px;}
.y57{bottom:402.735000px;}
.ya8{bottom:404.895000px;}
.yce{bottom:407.955000px;}
.y79{bottom:411.915000px;}
.y2b{bottom:412.455000px;}
.y56{bottom:416.595000px;}
.ya7{bottom:422.175000px;}
.ycd{bottom:425.235000px;}
.y78{bottom:429.195000px;}
.y2a{bottom:429.555000px;}
.ya6{bottom:439.455000px;}
.ycc{bottom:442.515000px;}
.y77{bottom:446.475000px;}
.y29{bottom:446.835000px;}
.ya5{bottom:456.735000px;}
.ycb{bottom:459.615000px;}
.y76{bottom:463.755000px;}
.y28{bottom:464.115000px;}
.ya4{bottom:473.835000px;}
.yca{bottom:476.895000px;}
.y75{bottom:481.035000px;}
.y27{bottom:481.395000px;}
.ya3{bottom:491.115000px;}
.yc9{bottom:494.175000px;}
.y74{bottom:498.135000px;}
.y26{bottom:498.675000px;}
.ya2{bottom:508.395000px;}
.yc8{bottom:511.455000px;}
.y73{bottom:515.415000px;}
.y25{bottom:515.775000px;}
.ya1{bottom:525.675000px;}
.yc7{bottom:528.735000px;}
.y72{bottom:532.695000px;}
.y24{bottom:533.055000px;}
.ya0{bottom:542.955000px;}
.yc6{bottom:545.835000px;}
.y23{bottom:548.715000px;}
.y71{bottom:549.975000px;}
.y22{bottom:558.975000px;}
.y9f{bottom:560.235000px;}
.yc5{bottom:563.115000px;}
.y70{bottom:567.255000px;}
.y21{bottom:576.255000px;}
.y9e{bottom:577.335000px;}
.yc4{bottom:580.395000px;}
.y6f{bottom:584.355000px;}
.y20{bottom:593.535000px;}
.y9d{bottom:594.615000px;}
.yc3{bottom:597.675000px;}
.y6e{bottom:601.635000px;}
.y1f{bottom:610.845000px;}
.y9c{bottom:611.925000px;}
.yc2{bottom:614.985000px;}
.y6d{bottom:618.945000px;}
.y1e{bottom:627.945000px;}
.y9b{bottom:629.205000px;}
.yc1{bottom:632.265000px;}
.y6c{bottom:636.225000px;}
.y1d{bottom:645.225000px;}
.y9a{bottom:646.485000px;}
.yc0{bottom:649.365000px;}
.y6b{bottom:653.505000px;}
.y1c{bottom:662.505000px;}
.y99{bottom:663.585000px;}
.ybf{bottom:666.645000px;}
.y6a{bottom:670.785000px;}
.y1b{bottom:679.785000px;}
.y98{bottom:680.865000px;}
.ybe{bottom:683.925000px;}
.y69{bottom:687.885000px;}
.y1a{bottom:697.065000px;}
.y97{bottom:698.145000px;}
.ybd{bottom:701.205000px;}
.y68{bottom:701.925000px;}
.y19{bottom:714.165000px;}
.y96{bottom:715.425000px;}
.ybc{bottom:718.485000px;}
.y18{bottom:731.445000px;}
.y95{bottom:732.705000px;}
.ybb{bottom:735.765000px;}
.y17{bottom:748.725000px;}
.y94{bottom:749.985000px;}
.yba{bottom:752.865000px;}
.y16{bottom:766.005000px;}
.y93{bottom:767.085000px;}
.yb9{bottom:770.145000px;}
.y15{bottom:783.285000px;}
.y92{bottom:784.365000px;}
.y55{bottom:787.425000px;}
.y14{bottom:800.565000px;}
.y91{bottom:801.645000px;}
.y54{bottom:804.705000px;}
.y13{bottom:817.665000px;}
.y90{bottom:818.925000px;}
.y53{bottom:821.985000px;}
.y12{bottom:834.945000px;}
.y8f{bottom:836.205000px;}
.y52{bottom:839.265000px;}
.y11{bottom:852.225000px;}
.y8e{bottom:853.485000px;}
.y51{bottom:856.365000px;}
.y8d{bottom:870.630000px;}
.y10{bottom:872.070000px;}
.y50{bottom:873.690000px;}
.y8c{bottom:887.910000px;}
.y4f{bottom:890.970000px;}
.yf{bottom:891.870000px;}
.y8b{bottom:905.190000px;}
.y4e{bottom:908.250000px;}
.ye{bottom:909.150000px;}
.y8a{bottom:919.230000px;}
.y4d{bottom:925.530000px;}
.yd{bottom:927.150000px;}
.y4c{bottom:942.630000px;}
.yc{bottom:947.850000px;}
.y4b{bottom:959.910000px;}
.yb{bottom:969.810000px;}
.y4a{bottom:977.190000px;}
.y49{bottom:994.470000px;}
.ya{bottom:997.530000px;}
.y48{bottom:1011.750000px;}
.y7{bottom:1023.810000px;}
.y47{bottom:1029.030000px;}
.y5{bottom:1040.550000px;}
.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:45.461953px;}
.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:108.756000px;}
.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:42.300000px;}
.x6{left:62.310000px;}
.x11{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x10{left:110.195987px;}
.x1f{left:151.229987px;}
.x4{left:182.559000px;}
.x17{left:196.769987px;}
.x1a{left:205.409987px;}
.xb{left:210.629987px;}
.x14{left:229.349987px;}
.x2{left:240.519000px;}
.x16{left:296.714987px;}
.x1c{left:297.974987px;}
.x19{left:323.174987px;}
.x1d{left:330.914987px;}
.x5{left:352.695000px;}
.xf{left:355.034987px;}
.xd{left:379.514987px;}
.x12{left:386.534987px;}
.x1e{left:395.714987px;}
.x13{left:433.004987px;}
.xa{left:445.604987px;}
.xc{left:452.264987px;}
.xe{left:459.104987px;}
.x1b{left:590.909987px;}
.x18{left:598.109987px;}
.x15{left:600.989987px;}
.x7{left:618.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.082667pt;}
.ls0{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls9{letter-spacing:38.331307pt;}
.ls7{letter-spacing:65.211307pt;}
.ws3{word-spacing:-21.263360pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.936320pt;}
._1{width:2.389333pt;}
._b{width:3.492480pt;}
._6{width:4.979840pt;}
._3{width:6.161920pt;}
._5{width:7.288960pt;}
._9{width:8.301440pt;}
._11{width:9.528320pt;}
._10{width:10.677120pt;}
._7{width:12.362880pt;}
._a{width:14.354560pt;}
._f{width:15.248853pt;}
._c{width:16.304427pt;}
._d{width:17.326933pt;}
._e{width:18.485760pt;}
._12{width:19.481600pt;}
._13{width:21.161600pt;}
._4{width:22.383360pt;}
._8{width:25.886720pt;}
._1b{width:42.124160pt;}
._1a{width:43.399040pt;}
._19{width:66.101120pt;}
._18{width:87.720960pt;}
._14{width:103.391360pt;}
._16{width:112.826880pt;}
._15{width:113.995520pt;}
._17{width:150.435840pt;}
.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:41.920000pt;}
.y9{bottom:51.360000pt;}
.y8{bottom:69.792000pt;}
.y3f{bottom:88.192000pt;}
.y3c{bottom:105.952000pt;}
.y67{bottom:112.512000pt;}
.yb8{bottom:114.592000pt;}
.y89{bottom:120.832000pt;}
.y3b{bottom:121.152000pt;}
.y66{bottom:127.872000pt;}
.yb7{bottom:129.952000pt;}
.ydd{bottom:132.512000pt;}
.y88{bottom:136.186667pt;}
.y3a{bottom:136.506667pt;}
.y65{bottom:143.226667pt;}
.yb6{bottom:145.306667pt;}
.ydc{bottom:147.866667pt;}
.y87{bottom:151.546667pt;}
.y39{bottom:151.866667pt;}
.y64{bottom:158.586667pt;}
.yb5{bottom:160.506667pt;}
.ydb{bottom:163.226667pt;}
.y86{bottom:166.906667pt;}
.y38{bottom:167.226667pt;}
.y63{bottom:173.946667pt;}
.yb4{bottom:175.866667pt;}
.yda{bottom:178.586667pt;}
.y85{bottom:182.106667pt;}
.y37{bottom:182.586667pt;}
.y62{bottom:189.146667pt;}
.yb3{bottom:191.226667pt;}
.yd9{bottom:193.946667pt;}
.y84{bottom:197.466667pt;}
.y36{bottom:197.786667pt;}
.y61{bottom:204.506667pt;}
.yb2{bottom:206.586667pt;}
.yd8{bottom:209.306667pt;}
.y83{bottom:212.826667pt;}
.y35{bottom:213.146667pt;}
.y60{bottom:219.866667pt;}
.yb1{bottom:221.946667pt;}
.yd7{bottom:224.506667pt;}
.y82{bottom:228.186667pt;}
.y34{bottom:228.506667pt;}
.y5f{bottom:235.226667pt;}
.yb0{bottom:237.146667pt;}
.yd6{bottom:239.866667pt;}
.y81{bottom:243.546667pt;}
.y33{bottom:243.866667pt;}
.y5e{bottom:250.586667pt;}
.yaf{bottom:252.506667pt;}
.yd5{bottom:255.226667pt;}
.y80{bottom:258.746667pt;}
.y32{bottom:259.226667pt;}
.y5d{bottom:265.946667pt;}
.yae{bottom:267.866667pt;}
.yd4{bottom:270.586667pt;}
.y7f{bottom:274.106667pt;}
.y31{bottom:274.586667pt;}
.y5c{bottom:281.146667pt;}
.yad{bottom:283.226667pt;}
.yd3{bottom:285.946667pt;}
.y7e{bottom:289.466667pt;}
.y30{bottom:289.786667pt;}
.y5b{bottom:296.506667pt;}
.yac{bottom:298.586667pt;}
.yd2{bottom:301.346667pt;}
.y7d{bottom:304.866667pt;}
.y2f{bottom:305.186667pt;}
.y5a{bottom:311.906667pt;}
.yab{bottom:313.986667pt;}
.yd1{bottom:316.546667pt;}
.y7c{bottom:320.226667pt;}
.y2e{bottom:320.546667pt;}
.y59{bottom:327.266667pt;}
.yaa{bottom:329.186667pt;}
.yd0{bottom:331.906667pt;}
.y7b{bottom:335.586667pt;}
.y2d{bottom:335.906667pt;}
.y58{bottom:342.626667pt;}
.ya9{bottom:344.546667pt;}
.ycf{bottom:347.266667pt;}
.y7a{bottom:350.786667pt;}
.y2c{bottom:351.266667pt;}
.y57{bottom:357.986667pt;}
.ya8{bottom:359.906667pt;}
.yce{bottom:362.626667pt;}
.y79{bottom:366.146667pt;}
.y2b{bottom:366.626667pt;}
.y56{bottom:370.306667pt;}
.ya7{bottom:375.266667pt;}
.ycd{bottom:377.986667pt;}
.y78{bottom:381.506667pt;}
.y2a{bottom:381.826667pt;}
.ya6{bottom:390.626667pt;}
.ycc{bottom:393.346667pt;}
.y77{bottom:396.866667pt;}
.y29{bottom:397.186667pt;}
.ya5{bottom:405.986667pt;}
.ycb{bottom:408.546667pt;}
.y76{bottom:412.226667pt;}
.y28{bottom:412.546667pt;}
.ya4{bottom:421.186667pt;}
.yca{bottom:423.906667pt;}
.y75{bottom:427.586667pt;}
.y27{bottom:427.906667pt;}
.ya3{bottom:436.546667pt;}
.yc9{bottom:439.266667pt;}
.y74{bottom:442.786667pt;}
.y26{bottom:443.266667pt;}
.ya2{bottom:451.906667pt;}
.yc8{bottom:454.626667pt;}
.y73{bottom:458.146667pt;}
.y25{bottom:458.466667pt;}
.ya1{bottom:467.266667pt;}
.yc7{bottom:469.986667pt;}
.y72{bottom:473.506667pt;}
.y24{bottom:473.826667pt;}
.ya0{bottom:482.626667pt;}
.yc6{bottom:485.186667pt;}
.y23{bottom:487.746667pt;}
.y71{bottom:488.866667pt;}
.y22{bottom:496.866667pt;}
.y9f{bottom:497.986667pt;}
.yc5{bottom:500.546667pt;}
.y70{bottom:504.226667pt;}
.y21{bottom:512.226667pt;}
.y9e{bottom:513.186667pt;}
.yc4{bottom:515.906667pt;}
.y6f{bottom:519.426667pt;}
.y20{bottom:527.586667pt;}
.y9d{bottom:528.546667pt;}
.yc3{bottom:531.266667pt;}
.y6e{bottom:534.786667pt;}
.y1f{bottom:542.973333pt;}
.y9c{bottom:543.933333pt;}
.yc2{bottom:546.653333pt;}
.y6d{bottom:550.173333pt;}
.y1e{bottom:558.173333pt;}
.y9b{bottom:559.293333pt;}
.yc1{bottom:562.013333pt;}
.y6c{bottom:565.533333pt;}
.y1d{bottom:573.533333pt;}
.y9a{bottom:574.653333pt;}
.yc0{bottom:577.213333pt;}
.y6b{bottom:580.893333pt;}
.y1c{bottom:588.893333pt;}
.y99{bottom:589.853333pt;}
.ybf{bottom:592.573333pt;}
.y6a{bottom:596.253333pt;}
.y1b{bottom:604.253333pt;}
.y98{bottom:605.213333pt;}
.ybe{bottom:607.933333pt;}
.y69{bottom:611.453333pt;}
.y1a{bottom:619.613333pt;}
.y97{bottom:620.573333pt;}
.ybd{bottom:623.293333pt;}
.y68{bottom:623.933333pt;}
.y19{bottom:634.813333pt;}
.y96{bottom:635.933333pt;}
.ybc{bottom:638.653333pt;}
.y18{bottom:650.173333pt;}
.y95{bottom:651.293333pt;}
.ybb{bottom:654.013333pt;}
.y17{bottom:665.533333pt;}
.y94{bottom:666.653333pt;}
.yba{bottom:669.213333pt;}
.y16{bottom:680.893333pt;}
.y93{bottom:681.853333pt;}
.yb9{bottom:684.573333pt;}
.y15{bottom:696.253333pt;}
.y92{bottom:697.213333pt;}
.y55{bottom:699.933333pt;}
.y14{bottom:711.613333pt;}
.y91{bottom:712.573333pt;}
.y54{bottom:715.293333pt;}
.y13{bottom:726.813333pt;}
.y90{bottom:727.933333pt;}
.y53{bottom:730.653333pt;}
.y12{bottom:742.173333pt;}
.y8f{bottom:743.293333pt;}
.y52{bottom:746.013333pt;}
.y11{bottom:757.533333pt;}
.y8e{bottom:758.653333pt;}
.y51{bottom:761.213333pt;}
.y8d{bottom:773.893333pt;}
.y10{bottom:775.173333pt;}
.y50{bottom:776.613333pt;}
.y8c{bottom:789.253333pt;}
.y4f{bottom:791.973333pt;}
.yf{bottom:792.773333pt;}
.y8b{bottom:804.613333pt;}
.y4e{bottom:807.333333pt;}
.ye{bottom:808.133333pt;}
.y8a{bottom:817.093333pt;}
.y4d{bottom:822.693333pt;}
.yd{bottom:824.133333pt;}
.y4c{bottom:837.893333pt;}
.yc{bottom:842.533333pt;}
.y4b{bottom:853.253333pt;}
.yb{bottom:862.053333pt;}
.y4a{bottom:868.613333pt;}
.y49{bottom:883.973333pt;}
.ya{bottom:886.693333pt;}
.y48{bottom:899.333333pt;}
.y7{bottom:910.053333pt;}
.y47{bottom:914.693333pt;}
.y5{bottom:924.933333pt;}
.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:40.410625pt;}
.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:96.672000pt;}
.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:37.600000pt;}
.x6{left:55.386667pt;}
.x11{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x10{left:97.951988pt;}
.x1f{left:134.426655pt;}
.x4{left:162.274667pt;}
.x17{left:174.906655pt;}
.x1a{left:182.586655pt;}
.xb{left:187.226655pt;}
.x14{left:203.866655pt;}
.x2{left:213.794667pt;}
.x16{left:263.746655pt;}
.x1c{left:264.866655pt;}
.x19{left:287.266655pt;}
.x1d{left:294.146655pt;}
.x5{left:313.506667pt;}
.xf{left:315.586655pt;}
.xd{left:337.346655pt;}
.x12{left:343.586655pt;}
.x1e{left:351.746655pt;}
.x13{left:384.893322pt;}
.xa{left:396.093322pt;}
.xc{left:402.013322pt;}
.xe{left:408.093322pt;}
.x1b{left:525.253322pt;}
.x18{left:531.653322pt;}
.x15{left:534.213322pt;}
.x7{left:549.733333pt;}
}




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