
    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_b6f64b600f325f54c80b5c2b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_beee79be1af4eff367d67e84.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_a188d5bc90332bb1f0e7f866.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_abe012fe66a222396cf265d9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6065ca7fbdc81c6c632bcf3f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.129395;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_330dd86b1944fea84ae44294.woff')format("woff");}.ff6{font-family:ff6;line-height:1.110840;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_6af95eed751eabc10740d669.woff')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_f2d98c987d71953cad9e949c.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-65.520000px;}
.v2{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-9.884160px;}
.ls25{letter-spacing:-7.856640px;}
.ls1a{letter-spacing:-5.448960px;}
.ls22{letter-spacing:-4.688640px;}
.ls20{letter-spacing:-3.484800px;}
.ls19{letter-spacing:-3.240000px;}
.ls1c{letter-spacing:-2.407680px;}
.ls1d{letter-spacing:-2.280960px;}
.lsc{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.696960px;}
.lse{letter-spacing:-0.457800px;}
.ls10{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.385800px;}
.ls9{letter-spacing:-0.334200px;}
.ls8{letter-spacing:-0.305400px;}
.ls23{letter-spacing:-0.190080px;}
.lsa{letter-spacing:-0.051840px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.109200px;}
.ls18{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.ls1b{letter-spacing:2.027520px;}
.ls17{letter-spacing:5.040000px;}
.ls21{letter-spacing:7.032960px;}
.ls24{letter-spacing:7.856640px;}
.ls13{letter-spacing:10.080000px;}
.ls12{letter-spacing:10.800000px;}
.ls14{letter-spacing:12.960000px;}
.ls15{letter-spacing:17.585280px;}
.ls16{letter-spacing:18.385920px;}
.ls1{letter-spacing:29.185920px;}
.ls11{letter-spacing:48.186720px;}
.ls3{letter-spacing:118.416000px;}
.ls4{letter-spacing:119.136000px;}
.ls2{letter-spacing:275.580000px;}
.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:-59.760000px;}
.wsf{word-spacing:-37.756800px;}
.ws3{word-spacing:-36.115200px;}
.ws7{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.wsd{word-spacing:-16.145400px;}
.wsb{word-spacing:-16.102200px;}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.788160px;}
.ws13{word-spacing:-15.649920px;}
.ws4{word-spacing:-15.505800px;}
.ws6{word-spacing:-15.454200px;}
.ws11{word-spacing:-15.143040px;}
.wsa{word-spacing:-15.120000px;}
.ws0{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.559040px;}
.ws10{word-spacing:-5.955840px;}
.ws9{word-spacing:0.000000px;}
._b{margin-left:-5.207520px;}
._e{margin-left:-3.779760px;}
._7{margin-left:-2.518080px;}
._2{margin-left:-1.205280px;}
._3{width:1.082880px;}
._f{width:2.427840px;}
._d{width:4.250880px;}
._c{width:5.702400px;}
._4{width:6.818880px;}
._6{width:7.870080px;}
._5{width:8.894400px;}
._11{width:10.134720px;}
._1{width:12.024480px;}
._0{width:13.344960px;}
._8{width:16.980480px;}
._9{width:18.120960px;}
._10{width:19.436640px;}
._12{width:36.000000px;}
._a{width:485.355840px;}
.fc3{color:rgb(44,45,46);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:208.650000px;}
.y8b{bottom:229.890000px;}
.y5e{bottom:230.430000px;}
.y30{bottom:230.970000px;}
.yac{bottom:231.330000px;}
.y8a{bottom:248.790000px;}
.yab{bottom:249.330000px;}
.y5d{bottom:249.510000px;}
.y2f{bottom:249.870000px;}
.yaa{bottom:267.330000px;}
.y89{bottom:267.510000px;}
.y5c{bottom:268.410000px;}
.y2e{bottom:268.590000px;}
.ya9{bottom:285.150000px;}
.y88{bottom:286.410000px;}
.y2d{bottom:287.490000px;}
.ya8{bottom:303.150000px;}
.y87{bottom:305.130000px;}
.y2c{bottom:306.390000px;}
.ya7{bottom:321.150000px;}
.y86{bottom:324.030000px;}
.y2b{bottom:325.110000px;}
.y5b{bottom:325.290000px;}
.ya6{bottom:339.150000px;}
.y85{bottom:342.930000px;}
.y2a{bottom:344.010000px;}
.y5a{bottom:344.370000px;}
.ya5{bottom:355.710000px;}
.y84{bottom:361.650000px;}
.y29{bottom:362.730000px;}
.y59{bottom:363.270000px;}
.ya4{bottom:367.590000px;}
.y83{bottom:380.550000px;}
.y28{bottom:381.630000px;}
.y58{bottom:382.350000px;}
.ya3{bottom:386.310000px;}
.y82{bottom:399.315000px;}
.y27{bottom:400.395000px;}
.y57{bottom:401.295000px;}
.ya2{bottom:405.255000px;}
.y81{bottom:418.215000px;}
.y26{bottom:419.295000px;}
.y56{bottom:420.195000px;}
.ya1{bottom:423.975000px;}
.y80{bottom:437.115000px;}
.y25{bottom:438.015000px;}
.y55{bottom:439.275000px;}
.ya0{bottom:442.875000px;}
.y7f{bottom:456.015000px;}
.y24{bottom:456.915000px;}
.y54{bottom:458.175000px;}
.y9f{bottom:461.595000px;}
.y7e{bottom:474.915000px;}
.y23{bottom:475.635000px;}
.y53{bottom:477.255000px;}
.y9e{bottom:480.495000px;}
.y7d{bottom:493.995000px;}
.y22{bottom:494.535000px;}
.y52{bottom:496.155000px;}
.y9d{bottom:499.215000px;}
.y7c{bottom:512.895000px;}
.y21{bottom:513.255000px;}
.y51{bottom:515.235000px;}
.y9c{bottom:518.115000px;}
.y7b{bottom:531.975000px;}
.y20{bottom:532.155000px;}
.y50{bottom:534.135000px;}
.y9b{bottom:536.835000px;}
.y1f{bottom:550.875000px;}
.y4f{bottom:553.035000px;}
.y9a{bottom:555.735000px;}
.y1e{bottom:569.775000px;}
.y4e{bottom:572.115000px;}
.y99{bottom:574.455000px;}
.y1d{bottom:588.675000px;}
.y7a{bottom:588.855000px;}
.y4d{bottom:591.015000px;}
.y98{bottom:593.355000px;}
.y1c{bottom:607.575000px;}
.y79{bottom:607.755000px;}
.y4c{bottom:610.095000px;}
.y97{bottom:612.075000px;}
.y1b{bottom:626.655000px;}
.y78{bottom:626.835000px;}
.y4b{bottom:628.995000px;}
.y96{bottom:630.975000px;}
.y1a{bottom:645.585000px;}
.y77{bottom:645.765000px;}
.y4a{bottom:647.925000px;}
.y95{bottom:649.905000px;}
.y19{bottom:664.485000px;}
.y76{bottom:664.665000px;}
.y49{bottom:667.005000px;}
.y94{bottom:668.625000px;}
.y75{bottom:683.745000px;}
.y48{bottom:685.905000px;}
.y93{bottom:687.525000px;}
.y18{bottom:700.845000px;}
.y74{bottom:702.645000px;}
.y47{bottom:704.985000px;}
.y92{bottom:706.245000px;}
.y17{bottom:712.545000px;}
.y73{bottom:721.725000px;}
.y46{bottom:723.885000px;}
.y91{bottom:725.145000px;}
.y16{bottom:730.365000px;}
.y72{bottom:740.625000px;}
.y45{bottom:742.785000px;}
.y90{bottom:743.865000px;}
.y15{bottom:748.005000px;}
.y71{bottom:759.705000px;}
.y44{bottom:761.865000px;}
.y8f{bottom:762.765000px;}
.y14{bottom:765.825000px;}
.y70{bottom:778.605000px;}
.y43{bottom:780.765000px;}
.y8e{bottom:781.485000px;}
.y13{bottom:783.465000px;}
.y6f{bottom:797.505000px;}
.y42{bottom:799.845000px;}
.y8d{bottom:800.385000px;}
.y12{bottom:801.285000px;}
.y6e{bottom:816.585000px;}
.y41{bottom:818.745000px;}
.y11{bottom:819.105000px;}
.yb7{bottom:833.505000px;}
.y6d{bottom:835.485000px;}
.y10{bottom:836.745000px;}
.y40{bottom:837.645000px;}
.y8c{bottom:838.005000px;}
.yb6{bottom:851.505000px;}
.yf{bottom:854.565000px;}
.y3f{bottom:856.725000px;}
.yb5{bottom:869.505000px;}
.y6c{bottom:873.465000px;}
.y3e{bottom:875.625000px;}
.yb4{bottom:887.325000px;}
.ye{bottom:888.585000px;}
.y6b{bottom:892.365000px;}
.y3d{bottom:894.390000px;}
.yd{bottom:900.330000px;}
.yb3{bottom:905.370000px;}
.y6a{bottom:911.490000px;}
.y3c{bottom:913.290000px;}
.yc{bottom:918.150000px;}
.yb2{bottom:923.370000px;}
.y69{bottom:930.390000px;}
.y3b{bottom:932.010000px;}
.yb{bottom:936.150000px;}
.yb1{bottom:941.370000px;}
.y68{bottom:949.470000px;}
.y3a{bottom:950.910000px;}
.yb0{bottom:959.190000px;}
.y67{bottom:968.370000px;}
.y39{bottom:969.630000px;}
.yaf{bottom:977.190000px;}
.ya{bottom:981.870000px;}
.y66{bottom:987.270000px;}
.y38{bottom:988.530000px;}
.y9{bottom:993.750000px;}
.yae{bottom:995.190000px;}
.y65{bottom:1006.350000px;}
.y37{bottom:1007.430000px;}
.y8{bottom:1012.470000px;}
.yad{bottom:1013.190000px;}
.y64{bottom:1025.250000px;}
.y36{bottom:1026.150000px;}
.y7{bottom:1031.190000px;}
.y63{bottom:1044.330000px;}
.y35{bottom:1045.050000px;}
.y6{bottom:1049.010000px;}
.y62{bottom:1063.230000px;}
.y34{bottom:1063.770000px;}
.y5{bottom:1067.010000px;}
.y61{bottom:1082.130000px;}
.y33{bottom:1082.670000px;}
.y4{bottom:1085.010000px;}
.y60{bottom:1101.210000px;}
.y32{bottom:1101.390000px;}
.y3{bottom:1103.010000px;}
.y5f{bottom:1120.110000px;}
.y31{bottom:1120.290000px;}
.y2{bottom:1120.830000px;}
.hb{height:35.314453px;}
.h7{height:35.332031px;}
.ha{height:36.281250px;}
.h2{height:52.998047px;}
.hc{height:59.383125px;}
.h9{height:62.153438px;}
.h4{height:62.184375px;}
.h8{height:63.855000px;}
.hf{height:64.978594px;}
.h5{height:65.010937px;}
.h3{height:65.124096px;}
.h6{height:66.757500px;}
.h10{height:68.084282px;}
.h0{height:1025.652000px;}
.h1{height:1026.000000px;}
.he{height:1263.000000px;}
.hd{height:1263.060000px;}
.w0{width:891.645000px;}
.w1{width:891.750000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:139.101000px;}
.xa{left:140.435987px;}
.x2{left:147.561000px;}
.xc{left:151.049987px;}
.x3{left:171.135000px;}
.xb{left:172.469987px;}
.x4{left:193.095000px;}
.x1{left:435.090000px;}
.x9{left:436.424987px;}
.xd{left:462.704987px;}
.x7{left:534.630000px;}
.x6{left:558.210000px;}
.x8{left:590.115000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-58.240000pt;}
.v2{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-8.785920pt;}
.ls25{letter-spacing:-6.983680pt;}
.ls1a{letter-spacing:-4.843520pt;}
.ls22{letter-spacing:-4.167680pt;}
.ls20{letter-spacing:-3.097600pt;}
.ls19{letter-spacing:-2.880000pt;}
.ls1c{letter-spacing:-2.140160pt;}
.ls1d{letter-spacing:-2.027520pt;}
.lsc{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.619520pt;}
.lse{letter-spacing:-0.406933pt;}
.ls10{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.342933pt;}
.ls9{letter-spacing:-0.297067pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls23{letter-spacing:-0.168960pt;}
.lsa{letter-spacing:-0.046080pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls18{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:1.802240pt;}
.ls17{letter-spacing:4.480000pt;}
.ls21{letter-spacing:6.251520pt;}
.ls24{letter-spacing:6.983680pt;}
.ls13{letter-spacing:8.960000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls14{letter-spacing:11.520000pt;}
.ls15{letter-spacing:15.631360pt;}
.ls16{letter-spacing:16.343040pt;}
.ls1{letter-spacing:25.943040pt;}
.ls11{letter-spacing:42.832640pt;}
.ls3{letter-spacing:105.258667pt;}
.ls4{letter-spacing:105.898667pt;}
.ls2{letter-spacing:244.960000pt;}
.wse{word-spacing:-53.120000pt;}
.wsf{word-spacing:-33.561600pt;}
.ws3{word-spacing:-32.102400pt;}
.ws7{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.351467pt;}
.wsb{word-spacing:-14.313067pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-14.033920pt;}
.ws13{word-spacing:-13.911040pt;}
.ws4{word-spacing:-13.782933pt;}
.ws6{word-spacing:-13.737067pt;}
.ws11{word-spacing:-13.460480pt;}
.wsa{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.052480pt;}
.ws10{word-spacing:-5.294080pt;}
.ws9{word-spacing:0.000000pt;}
._b{margin-left:-4.628907pt;}
._e{margin-left:-3.359787pt;}
._7{margin-left:-2.238293pt;}
._2{margin-left:-1.071360pt;}
._3{width:0.962560pt;}
._f{width:2.158080pt;}
._d{width:3.778560pt;}
._c{width:5.068800pt;}
._4{width:6.061227pt;}
._6{width:6.995627pt;}
._5{width:7.906133pt;}
._11{width:9.008640pt;}
._1{width:10.688427pt;}
._0{width:11.862187pt;}
._8{width:15.093760pt;}
._9{width:16.107520pt;}
._10{width:17.277013pt;}
._12{width:32.000000pt;}
._a{width:431.427413pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:185.466667pt;}
.y8b{bottom:204.346667pt;}
.y5e{bottom:204.826667pt;}
.y30{bottom:205.306667pt;}
.yac{bottom:205.626667pt;}
.y8a{bottom:221.146667pt;}
.yab{bottom:221.626667pt;}
.y5d{bottom:221.786667pt;}
.y2f{bottom:222.106667pt;}
.yaa{bottom:237.626667pt;}
.y89{bottom:237.786667pt;}
.y5c{bottom:238.586667pt;}
.y2e{bottom:238.746667pt;}
.ya9{bottom:253.466667pt;}
.y88{bottom:254.586667pt;}
.y2d{bottom:255.546667pt;}
.ya8{bottom:269.466667pt;}
.y87{bottom:271.226667pt;}
.y2c{bottom:272.346667pt;}
.ya7{bottom:285.466667pt;}
.y86{bottom:288.026667pt;}
.y2b{bottom:288.986667pt;}
.y5b{bottom:289.146667pt;}
.ya6{bottom:301.466667pt;}
.y85{bottom:304.826667pt;}
.y2a{bottom:305.786667pt;}
.y5a{bottom:306.106667pt;}
.ya5{bottom:316.186667pt;}
.y84{bottom:321.466667pt;}
.y29{bottom:322.426667pt;}
.y59{bottom:322.906667pt;}
.ya4{bottom:326.746667pt;}
.y83{bottom:338.266667pt;}
.y28{bottom:339.226667pt;}
.y58{bottom:339.866667pt;}
.ya3{bottom:343.386667pt;}
.y82{bottom:354.946667pt;}
.y27{bottom:355.906667pt;}
.y57{bottom:356.706667pt;}
.ya2{bottom:360.226667pt;}
.y81{bottom:371.746667pt;}
.y26{bottom:372.706667pt;}
.y56{bottom:373.506667pt;}
.ya1{bottom:376.866667pt;}
.y80{bottom:388.546667pt;}
.y25{bottom:389.346667pt;}
.y55{bottom:390.466667pt;}
.ya0{bottom:393.666667pt;}
.y7f{bottom:405.346667pt;}
.y24{bottom:406.146667pt;}
.y54{bottom:407.266667pt;}
.y9f{bottom:410.306667pt;}
.y7e{bottom:422.146667pt;}
.y23{bottom:422.786667pt;}
.y53{bottom:424.226667pt;}
.y9e{bottom:427.106667pt;}
.y7d{bottom:439.106667pt;}
.y22{bottom:439.586667pt;}
.y52{bottom:441.026667pt;}
.y9d{bottom:443.746667pt;}
.y7c{bottom:455.906667pt;}
.y21{bottom:456.226667pt;}
.y51{bottom:457.986667pt;}
.y9c{bottom:460.546667pt;}
.y7b{bottom:472.866667pt;}
.y20{bottom:473.026667pt;}
.y50{bottom:474.786667pt;}
.y9b{bottom:477.186667pt;}
.y1f{bottom:489.666667pt;}
.y4f{bottom:491.586667pt;}
.y9a{bottom:493.986667pt;}
.y1e{bottom:506.466667pt;}
.y4e{bottom:508.546667pt;}
.y99{bottom:510.626667pt;}
.y1d{bottom:523.266667pt;}
.y7a{bottom:523.426667pt;}
.y4d{bottom:525.346667pt;}
.y98{bottom:527.426667pt;}
.y1c{bottom:540.066667pt;}
.y79{bottom:540.226667pt;}
.y4c{bottom:542.306667pt;}
.y97{bottom:544.066667pt;}
.y1b{bottom:557.026667pt;}
.y78{bottom:557.186667pt;}
.y4b{bottom:559.106667pt;}
.y96{bottom:560.866667pt;}
.y1a{bottom:573.853333pt;}
.y77{bottom:574.013333pt;}
.y4a{bottom:575.933333pt;}
.y95{bottom:577.693333pt;}
.y19{bottom:590.653333pt;}
.y76{bottom:590.813333pt;}
.y49{bottom:592.893333pt;}
.y94{bottom:594.333333pt;}
.y75{bottom:607.773333pt;}
.y48{bottom:609.693333pt;}
.y93{bottom:611.133333pt;}
.y18{bottom:622.973333pt;}
.y74{bottom:624.573333pt;}
.y47{bottom:626.653333pt;}
.y92{bottom:627.773333pt;}
.y17{bottom:633.373333pt;}
.y73{bottom:641.533333pt;}
.y46{bottom:643.453333pt;}
.y91{bottom:644.573333pt;}
.y16{bottom:649.213333pt;}
.y72{bottom:658.333333pt;}
.y45{bottom:660.253333pt;}
.y90{bottom:661.213333pt;}
.y15{bottom:664.893333pt;}
.y71{bottom:675.293333pt;}
.y44{bottom:677.213333pt;}
.y8f{bottom:678.013333pt;}
.y14{bottom:680.733333pt;}
.y70{bottom:692.093333pt;}
.y43{bottom:694.013333pt;}
.y8e{bottom:694.653333pt;}
.y13{bottom:696.413333pt;}
.y6f{bottom:708.893333pt;}
.y42{bottom:710.973333pt;}
.y8d{bottom:711.453333pt;}
.y12{bottom:712.253333pt;}
.y6e{bottom:725.853333pt;}
.y41{bottom:727.773333pt;}
.y11{bottom:728.093333pt;}
.yb7{bottom:740.893333pt;}
.y6d{bottom:742.653333pt;}
.y10{bottom:743.773333pt;}
.y40{bottom:744.573333pt;}
.y8c{bottom:744.893333pt;}
.yb6{bottom:756.893333pt;}
.yf{bottom:759.613333pt;}
.y3f{bottom:761.533333pt;}
.yb5{bottom:772.893333pt;}
.y6c{bottom:776.413333pt;}
.y3e{bottom:778.333333pt;}
.yb4{bottom:788.733333pt;}
.ye{bottom:789.853333pt;}
.y6b{bottom:793.213333pt;}
.y3d{bottom:795.013333pt;}
.yd{bottom:800.293333pt;}
.yb3{bottom:804.773333pt;}
.y6a{bottom:810.213333pt;}
.y3c{bottom:811.813333pt;}
.yc{bottom:816.133333pt;}
.yb2{bottom:820.773333pt;}
.y69{bottom:827.013333pt;}
.y3b{bottom:828.453333pt;}
.yb{bottom:832.133333pt;}
.yb1{bottom:836.773333pt;}
.y68{bottom:843.973333pt;}
.y3a{bottom:845.253333pt;}
.yb0{bottom:852.613333pt;}
.y67{bottom:860.773333pt;}
.y39{bottom:861.893333pt;}
.yaf{bottom:868.613333pt;}
.ya{bottom:872.773333pt;}
.y66{bottom:877.573333pt;}
.y38{bottom:878.693333pt;}
.y9{bottom:883.333333pt;}
.yae{bottom:884.613333pt;}
.y65{bottom:894.533333pt;}
.y37{bottom:895.493333pt;}
.y8{bottom:899.973333pt;}
.yad{bottom:900.613333pt;}
.y64{bottom:911.333333pt;}
.y36{bottom:912.133333pt;}
.y7{bottom:916.613333pt;}
.y63{bottom:928.293333pt;}
.y35{bottom:928.933333pt;}
.y6{bottom:932.453333pt;}
.y62{bottom:945.093333pt;}
.y34{bottom:945.573333pt;}
.y5{bottom:948.453333pt;}
.y61{bottom:961.893333pt;}
.y33{bottom:962.373333pt;}
.y4{bottom:964.453333pt;}
.y60{bottom:978.853333pt;}
.y32{bottom:979.013333pt;}
.y3{bottom:980.453333pt;}
.y5f{bottom:995.653333pt;}
.y31{bottom:995.813333pt;}
.y2{bottom:996.293333pt;}
.hb{height:31.390625pt;}
.h7{height:31.406250pt;}
.ha{height:32.250000pt;}
.h2{height:47.109375pt;}
.hc{height:52.785000pt;}
.h9{height:55.247500pt;}
.h4{height:55.275000pt;}
.h8{height:56.760000pt;}
.hf{height:57.758750pt;}
.h5{height:57.787500pt;}
.h3{height:57.888085pt;}
.h6{height:59.340000pt;}
.h10{height:60.519362pt;}
.h0{height:911.690667pt;}
.h1{height:912.000000pt;}
.he{height:1122.666667pt;}
.hd{height:1122.720000pt;}
.w0{width:792.573333pt;}
.w1{width:792.666667pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:123.645333pt;}
.xa{left:124.831988pt;}
.x2{left:131.165333pt;}
.xc{left:134.266655pt;}
.x3{left:152.120000pt;}
.xb{left:153.306655pt;}
.x4{left:171.640000pt;}
.x1{left:386.746667pt;}
.x9{left:387.933322pt;}
.xd{left:411.293322pt;}
.x7{left:475.226667pt;}
.x6{left:496.186667pt;}
.x8{left:524.546667pt;}
}




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