
    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_4ea89a109be128fbad4e2eb2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_0b9a5e6ba1d846bcddd06355.woff')format("woff");}.ff2{font-family:ff2;line-height:1.208008;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_54d788414005c6e708cf8174.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_095fe7ae45aef05109a74c40.woff')format("woff");}.ff4{font-family:ff4;line-height:1.208008;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_f22a8b32c33980219350802b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_0193ce70bb68c5714f612f4a.woff')format("woff");}.ff7{font-family:ff7;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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.274800px;}
.lsc{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.060600px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.108600px;}
.ls15{letter-spacing:0.118200px;}
.ls7{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.360000px;}
.lsf{letter-spacing:2.246400px;}
.ls10{letter-spacing:7.286400px;}
.ls0{letter-spacing:13.347360px;}
.ls19{letter-spacing:47.726640px;}
.ls14{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.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;}
}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.344600px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws4{word-spacing:-13.039800px;}
.wsd{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:-8.625600px;}
.ws2{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._c{margin-left:-3.366600px;}
._9{margin-left:-2.140800px;}
._0{margin-left:-1.110000px;}
._1{width:1.006896px;}
._3{width:2.549760px;}
._4{width:3.784320px;}
._a{width:4.957969px;}
._5{width:6.913800px;}
._7{width:8.116200px;}
._8{width:9.279025px;}
._b{width:10.784420px;}
._d{width:12.112680px;}
._2{width:14.246640px;}
._6{width:17.337000px;}
._f{width:19.061760px;}
._10{width:20.368560px;}
._e{width:25.490880px;}
._11{width:37.575000px;}
._12{width:38.912784px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y65{bottom:7.830000px;}
.y63{bottom:7.920000px;}
.y68{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y89{bottom:118.920000px;}
.y56{bottom:121.710000px;}
.y25{bottom:129.450000px;}
.y88{bottom:136.560000px;}
.y55{bottom:139.350000px;}
.ya4{bottom:140.520000px;}
.y24{bottom:147.000000px;}
.y87{bottom:154.110000px;}
.y54{bottom:156.900000px;}
.ya3{bottom:158.070000px;}
.y86{bottom:171.660000px;}
.y53{bottom:174.450000px;}
.ya2{bottom:175.710000px;}
.y23{bottom:182.550000px;}
.y85{bottom:189.300000px;}
.y22{bottom:200.190000px;}
.y52{bottom:201.900000px;}
.ya1{bottom:202.260000px;}
.y21{bottom:217.740000px;}
.y84{bottom:224.850000px;}
.ya0{bottom:229.170000px;}
.y51{bottom:237.540000px;}
.y20{bottom:253.380000px;}
.y83{bottom:259.680000px;}
.y1f{bottom:270.930000px;}
.y50{bottom:273.000000px;}
.y82{bottom:273.810000px;}
.y9f{bottom:277.500000px;}
.y1e{bottom:288.480000px;}
.y81{bottom:288.570000px;}
.y4f{bottom:291.450000px;}
.y9e{bottom:304.320000px;}
.y1d{bottom:306.120000px;}
.y4e{bottom:309.900000px;}
.y1c{bottom:323.670000px;}
.y4d{bottom:328.260000px;}
.y1b{bottom:341.310000px;}
.y9d{bottom:341.400000px;}
.y4c{bottom:346.710000px;}
.y74{bottom:355.080000px;}
.y1a{bottom:358.860000px;}
.y4b{bottom:365.160000px;}
.y9c{bottom:368.310000px;}
.y72{bottom:370.110000px;}
.y19{bottom:376.410000px;}
.y4a{bottom:383.520000px;}
.y18{bottom:394.050000px;}
.y73{bottom:397.380000px;}
.y49{bottom:401.970000px;}
.y9b{bottom:405.300000px;}
.y17{bottom:420.960000px;}
.y71{bottom:424.740000px;}
.y48{bottom:429.420000px;}
.y9a{bottom:432.210000px;}
.y70{bottom:452.100000px;}
.y47{bottom:464.880000px;}
.y16{bottom:469.560000px;}
.y6f{bottom:479.490000px;}
.y46{bottom:483.360000px;}
.y45{bottom:501.810000px;}
.y15{bottom:506.580000px;}
.y99{bottom:517.830000px;}
.y44{bottom:520.260000px;}
.y14{bottom:524.130000px;}
.y6e{bottom:528.180000px;}
.y98{bottom:535.470000px;}
.y43{bottom:537.810000px;}
.y80{bottom:550.680000px;}
.y13{bottom:559.770000px;}
.y97{bottom:562.380000px;}
.y6d{bottom:563.730000px;}
.y42{bottom:565.260000px;}
.y7e{bottom:565.710000px;}
.y12{bottom:577.320000px;}
.y6c{bottom:581.370000px;}
.y7f{bottom:592.980000px;}
.y41{bottom:600.720000px;}
.y96{bottom:610.620000px;}
.y11{bottom:612.960000px;}
.y6b{bottom:616.200000px;}
.y40{bottom:619.170000px;}
.y7d{bottom:620.340000px;}
.y95{bottom:628.260000px;}
.y6a{bottom:630.240000px;}
.y10{bottom:630.510000px;}
.y3f{bottom:637.620000px;}
.y67{bottom:642.480000px;}
.y94{bottom:645.810000px;}
.y7c{bottom:647.700000px;}
.yf{bottom:648.060000px;}
.y3e{bottom:656.070000px;}
.yb0{bottom:663.810000px;}
.ye{bottom:665.700000px;}
.y69{bottom:669.750000px;}
.y3d{bottom:674.430000px;}
.y7b{bottom:674.970000px;}
.y93{bottom:681.360000px;}
.y3c{bottom:692.880000px;}
.y66{bottom:697.110000px;}
.y92{bottom:699.000000px;}
.yd{bottom:701.250000px;}
.y3b{bottom:711.240000px;}
.yc{bottom:718.890000px;}
.y7a{bottom:723.750000px;}
.y64{bottom:724.470000px;}
.yaf{bottom:725.550000px;}
.y91{bottom:734.550000px;}
.y3a{bottom:738.690000px;}
.yae{bottom:743.190000px;}
.yb{bottom:745.800000px;}
.y62{bottom:751.740000px;}
.y90{bottom:752.190000px;}
.y79{bottom:759.300000px;}
.yad{bottom:760.740000px;}
.y8f{bottom:769.740000px;}
.y39{bottom:774.600000px;}
.y8e{bottom:787.290000px;}
.ya{bottom:794.040000px;}
.y78{bottom:794.850000px;}
.y61{bottom:800.520000px;}
.y8d{bottom:804.930000px;}
.y8c{bottom:822.480000px;}
.y38{bottom:822.930000px;}
.y60{bottom:827.430000px;}
.y77{bottom:829.770000px;}
.y9{bottom:829.860000px;}
.y37{bottom:840.480000px;}
.y76{bottom:843.810000px;}
.yac{bottom:849.030000px;}
.y75{bottom:855.240000px;}
.y36{bottom:858.030000px;}
.y8{bottom:865.860000px;}
.yab{bottom:866.670000px;}
.y35{bottom:875.670000px;}
.yaa{bottom:884.220000px;}
.y34{bottom:893.220000px;}
.y7{bottom:905.640000px;}
.y33{bottom:910.860000px;}
.y6{bottom:923.640000px;}
.y5f{bottom:928.410000px;}
.y5{bottom:941.640000px;}
.y5e{bottom:945.960000px;}
.y32{bottom:946.410000px;}
.ya9{bottom:954.960000px;}
.y5d{bottom:963.600000px;}
.y31{bottom:963.960000px;}
.ya8{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y5c{bottom:981.150000px;}
.y30{bottom:981.600000px;}
.ya7{bottom:990.150000px;}
.y5b{bottom:998.790000px;}
.y2f{bottom:999.150000px;}
.y3{bottom:1012.230000px;}
.y5a{bottom:1016.370000px;}
.y2e{bottom:1016.820000px;}
.y59{bottom:1033.920000px;}
.y8b{bottom:1034.370000px;}
.y58{bottom:1051.560000px;}
.y8a{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.ya6{bottom:1060.920000px;}
.y57{bottom:1069.110000px;}
.y2c{bottom:1069.920000px;}
.ya5{bottom:1078.560000px;}
.y2b{bottom:1087.560000px;}
.y2a{bottom:1105.110000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h12{height:26.580000px;}
.hd{height:26.640000px;}
.h6{height:35.782383px;}
.h2{height:38.326289px;}
.h3{height:44.538574px;}
.h11{height:47.389043px;}
.he{height:50.902383px;}
.h10{height:53.910000px;}
.h8{height:55.779258px;}
.h7{height:59.503535px;}
.h9{height:60.960938px;}
.hc{height:61.793886px;}
.hb{height:62.585859px;}
.h5{height:65.204473px;}
.ha{height:68.582109px;}
.h4{height:83.019902px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w28{width:24.480000px;}
.w18{width:32.220000px;}
.w2e{width:35.820000px;}
.w1e{width:43.560000px;}
.wf{width:44.910000px;}
.wa{width:45.450000px;}
.w2d{width:45.630000px;}
.w10{width:50.130000px;}
.w1d{width:51.750000px;}
.we{width:52.560000px;}
.w11{width:53.280000px;}
.w2f{width:54.090000px;}
.w30{width:57.600000px;}
.w27{width:57.870000px;}
.w1f{width:58.410000px;}
.w20{width:61.740000px;}
.w17{width:61.920000px;}
.w9{width:64.740000px;}
.w26{width:66.540000px;}
.w29{width:80.820000px;}
.w2b{width:80.910000px;}
.w19{width:83.250000px;}
.w1b{width:83.370000px;}
.w2a{width:85.230000px;}
.w2c{width:85.350000px;}
.wd{width:85.620000px;}
.wb{width:85.680000px;}
.w1a{width:86.940000px;}
.w1c{width:87.030000px;}
.wc{width:88.020000px;}
.w8{width:89.910000px;}
.w16{width:97.950000px;}
.w22{width:150.330000px;}
.w23{width:166.860000px;}
.w24{width:166.980000px;}
.w13{width:171.000000px;}
.w14{width:171.120000px;}
.w5{width:174.420000px;}
.w6{width:174.450000px;}
.w12{width:193.530000px;}
.w25{width:195.480000px;}
.w4{width:201.540000px;}
.w7{width:203.040000px;}
.w15{width:217.710000px;}
.w21{width:681.810000px;}
.w3{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.710000px;}
.x13{left:3.960000px;}
.x1{left:68.040000px;}
.x1f{left:71.909987px;}
.x11{left:74.069987px;}
.x2d{left:81.269987px;}
.x4{left:95.039987px;}
.x22{left:105.750000px;}
.x30{left:111.239987px;}
.x5{left:122.039987px;}
.xa{left:159.390000px;}
.x17{left:167.430000px;}
.x26{left:173.010000px;}
.x2{left:192.719987px;}
.xb{left:224.850000px;}
.x18{left:230.070000px;}
.x27{left:231.600000px;}
.x21{left:245.819987px;}
.x23{left:256.800000px;}
.x14{left:263.100000px;}
.x7{left:271.020000px;}
.x2f{left:283.259987px;}
.x28{left:338.430000px;}
.x19{left:347.160000px;}
.xc{left:357.420000px;}
.x20{left:359.309987px;}
.x12{left:367.049987px;}
.x2e{left:368.309987px;}
.x24{left:424.380000px;}
.x15{left:434.910000px;}
.x8{left:446.250000px;}
.x29{left:506.010000px;}
.x1a{left:519.000000px;}
.xd{left:532.680000px;}
.x25{left:592.080000px;}
.x16{left:606.750000px;}
.x9{left:621.420000px;}
.x2a{left:638.430000px;}
.x1b{left:659.220000px;}
.xe{left:674.700000px;}
.x1e{left:697.559987px;}
.x1c{left:703.590000px;}
.xf{left:720.330000px;}
.x2b{left:729.960000px;}
.x2c{left:748.139987px;}
.x1d{left:762.720000px;}
.x10{left:771.180000px;}
.x31{left:800.339987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.244267pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.053867pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.096533pt;}
.ls15{letter-spacing:0.105067pt;}
.ls7{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.320000pt;}
.lsf{letter-spacing:1.996800pt;}
.ls10{letter-spacing:6.476800pt;}
.ls0{letter-spacing:11.864320pt;}
.ls19{letter-spacing:42.423680pt;}
.ls14{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.861867pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws4{word-spacing:-11.590933pt;}
.wsd{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:-7.667200pt;}
.ws2{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._c{margin-left:-2.992533pt;}
._9{margin-left:-1.902933pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.895018pt;}
._3{width:2.266453pt;}
._4{width:3.363840pt;}
._a{width:4.407084pt;}
._5{width:6.145600pt;}
._7{width:7.214400pt;}
._8{width:8.248022pt;}
._b{width:9.586151pt;}
._d{width:10.766827pt;}
._2{width:12.663680pt;}
._6{width:15.410667pt;}
._f{width:16.943787pt;}
._10{width:18.105387pt;}
._e{width:22.658560pt;}
._11{width:33.400000pt;}
._12{width:34.589142pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:6.960000pt;}
.y63{bottom:7.040000pt;}
.y68{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y89{bottom:105.706667pt;}
.y56{bottom:108.186667pt;}
.y25{bottom:115.066667pt;}
.y88{bottom:121.386667pt;}
.y55{bottom:123.866667pt;}
.ya4{bottom:124.906667pt;}
.y24{bottom:130.666667pt;}
.y87{bottom:136.986667pt;}
.y54{bottom:139.466667pt;}
.ya3{bottom:140.506667pt;}
.y86{bottom:152.586667pt;}
.y53{bottom:155.066667pt;}
.ya2{bottom:156.186667pt;}
.y23{bottom:162.266667pt;}
.y85{bottom:168.266667pt;}
.y22{bottom:177.946667pt;}
.y52{bottom:179.466667pt;}
.ya1{bottom:179.786667pt;}
.y21{bottom:193.546667pt;}
.y84{bottom:199.866667pt;}
.ya0{bottom:203.706667pt;}
.y51{bottom:211.146667pt;}
.y20{bottom:225.226667pt;}
.y83{bottom:230.826667pt;}
.y1f{bottom:240.826667pt;}
.y50{bottom:242.666667pt;}
.y82{bottom:243.386667pt;}
.y9f{bottom:246.666667pt;}
.y1e{bottom:256.426667pt;}
.y81{bottom:256.506667pt;}
.y4f{bottom:259.066667pt;}
.y9e{bottom:270.506667pt;}
.y1d{bottom:272.106667pt;}
.y4e{bottom:275.466667pt;}
.y1c{bottom:287.706667pt;}
.y4d{bottom:291.786667pt;}
.y1b{bottom:303.386667pt;}
.y9d{bottom:303.466667pt;}
.y4c{bottom:308.186667pt;}
.y74{bottom:315.626667pt;}
.y1a{bottom:318.986667pt;}
.y4b{bottom:324.586667pt;}
.y9c{bottom:327.386667pt;}
.y72{bottom:328.986667pt;}
.y19{bottom:334.586667pt;}
.y4a{bottom:340.906667pt;}
.y18{bottom:350.266667pt;}
.y73{bottom:353.226667pt;}
.y49{bottom:357.306667pt;}
.y9b{bottom:360.266667pt;}
.y17{bottom:374.186667pt;}
.y71{bottom:377.546667pt;}
.y48{bottom:381.706667pt;}
.y9a{bottom:384.186667pt;}
.y70{bottom:401.866667pt;}
.y47{bottom:413.226667pt;}
.y16{bottom:417.386667pt;}
.y6f{bottom:426.213333pt;}
.y46{bottom:429.653333pt;}
.y45{bottom:446.053333pt;}
.y15{bottom:450.293333pt;}
.y99{bottom:460.293333pt;}
.y44{bottom:462.453333pt;}
.y14{bottom:465.893333pt;}
.y6e{bottom:469.493333pt;}
.y98{bottom:475.973333pt;}
.y43{bottom:478.053333pt;}
.y80{bottom:489.493333pt;}
.y13{bottom:497.573333pt;}
.y97{bottom:499.893333pt;}
.y6d{bottom:501.093333pt;}
.y42{bottom:502.453333pt;}
.y7e{bottom:502.853333pt;}
.y12{bottom:513.173333pt;}
.y6c{bottom:516.773333pt;}
.y7f{bottom:527.093333pt;}
.y41{bottom:533.973333pt;}
.y96{bottom:542.773333pt;}
.y11{bottom:544.853333pt;}
.y6b{bottom:547.733333pt;}
.y40{bottom:550.373333pt;}
.y7d{bottom:551.413333pt;}
.y95{bottom:558.453333pt;}
.y6a{bottom:560.213333pt;}
.y10{bottom:560.453333pt;}
.y3f{bottom:566.773333pt;}
.y67{bottom:571.093333pt;}
.y94{bottom:574.053333pt;}
.y7c{bottom:575.733333pt;}
.yf{bottom:576.053333pt;}
.y3e{bottom:583.173333pt;}
.yb0{bottom:590.053333pt;}
.ye{bottom:591.733333pt;}
.y69{bottom:595.333333pt;}
.y3d{bottom:599.493333pt;}
.y7b{bottom:599.973333pt;}
.y93{bottom:605.653333pt;}
.y3c{bottom:615.893333pt;}
.y66{bottom:619.653333pt;}
.y92{bottom:621.333333pt;}
.yd{bottom:623.333333pt;}
.y3b{bottom:632.213333pt;}
.yc{bottom:639.013333pt;}
.y7a{bottom:643.333333pt;}
.y64{bottom:643.973333pt;}
.yaf{bottom:644.933333pt;}
.y91{bottom:652.933333pt;}
.y3a{bottom:656.613333pt;}
.yae{bottom:660.613333pt;}
.yb{bottom:662.933333pt;}
.y62{bottom:668.213333pt;}
.y90{bottom:668.613333pt;}
.y79{bottom:674.933333pt;}
.yad{bottom:676.213333pt;}
.y8f{bottom:684.213333pt;}
.y39{bottom:688.533333pt;}
.y8e{bottom:699.813333pt;}
.ya{bottom:705.813333pt;}
.y78{bottom:706.533333pt;}
.y61{bottom:711.573333pt;}
.y8d{bottom:715.493333pt;}
.y8c{bottom:731.093333pt;}
.y38{bottom:731.493333pt;}
.y60{bottom:735.493333pt;}
.y77{bottom:737.573333pt;}
.y9{bottom:737.653333pt;}
.y37{bottom:747.093333pt;}
.y76{bottom:750.053333pt;}
.yac{bottom:754.693333pt;}
.y75{bottom:760.213333pt;}
.y36{bottom:762.693333pt;}
.y8{bottom:769.653333pt;}
.yab{bottom:770.373333pt;}
.y35{bottom:778.373333pt;}
.yaa{bottom:785.973333pt;}
.y34{bottom:793.973333pt;}
.y7{bottom:805.013333pt;}
.y33{bottom:809.653333pt;}
.y6{bottom:821.013333pt;}
.y5f{bottom:825.253333pt;}
.y5{bottom:837.013333pt;}
.y5e{bottom:840.853333pt;}
.y32{bottom:841.253333pt;}
.ya9{bottom:848.853333pt;}
.y5d{bottom:856.533333pt;}
.y31{bottom:856.853333pt;}
.ya8{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y5c{bottom:872.133333pt;}
.y30{bottom:872.533333pt;}
.ya7{bottom:880.133333pt;}
.y5b{bottom:887.813333pt;}
.y2f{bottom:888.133333pt;}
.y3{bottom:899.760000pt;}
.y5a{bottom:903.440000pt;}
.y2e{bottom:903.840000pt;}
.y59{bottom:919.040000pt;}
.y8b{bottom:919.440000pt;}
.y58{bottom:934.720000pt;}
.y8a{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.ya6{bottom:943.040000pt;}
.y57{bottom:950.320000pt;}
.y2c{bottom:951.040000pt;}
.ya5{bottom:958.720000pt;}
.y2b{bottom:966.720000pt;}
.y2a{bottom:982.320000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h12{height:23.626667pt;}
.hd{height:23.680000pt;}
.h6{height:31.806563pt;}
.h2{height:34.067813pt;}
.h3{height:39.589844pt;}
.h11{height:42.123594pt;}
.he{height:45.246562pt;}
.h10{height:47.920000pt;}
.h8{height:49.581562pt;}
.h7{height:52.892031pt;}
.h9{height:54.187500pt;}
.hc{height:54.927899pt;}
.hb{height:55.631875pt;}
.h5{height:57.959531pt;}
.ha{height:60.961875pt;}
.h4{height:73.795469pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w28{width:21.760000pt;}
.w18{width:28.640000pt;}
.w2e{width:31.840000pt;}
.w1e{width:38.720000pt;}
.wf{width:39.920000pt;}
.wa{width:40.400000pt;}
.w2d{width:40.560000pt;}
.w10{width:44.560000pt;}
.w1d{width:46.000000pt;}
.we{width:46.720000pt;}
.w11{width:47.360000pt;}
.w2f{width:48.080000pt;}
.w30{width:51.200000pt;}
.w27{width:51.440000pt;}
.w1f{width:51.920000pt;}
.w20{width:54.880000pt;}
.w17{width:55.040000pt;}
.w9{width:57.546667pt;}
.w26{width:59.146667pt;}
.w29{width:71.840000pt;}
.w2b{width:71.920000pt;}
.w19{width:74.000000pt;}
.w1b{width:74.106667pt;}
.w2a{width:75.760000pt;}
.w2c{width:75.866667pt;}
.wd{width:76.106667pt;}
.wb{width:76.160000pt;}
.w1a{width:77.280000pt;}
.w1c{width:77.360000pt;}
.wc{width:78.240000pt;}
.w8{width:79.920000pt;}
.w16{width:87.066667pt;}
.w22{width:133.626667pt;}
.w23{width:148.320000pt;}
.w24{width:148.426667pt;}
.w13{width:152.000000pt;}
.w14{width:152.106667pt;}
.w5{width:155.040000pt;}
.w6{width:155.066667pt;}
.w12{width:172.026667pt;}
.w25{width:173.760000pt;}
.w4{width:179.146667pt;}
.w7{width:180.480000pt;}
.w15{width:193.520000pt;}
.w21{width:606.053333pt;}
.w3{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.520000pt;}
.x13{left:3.520000pt;}
.x1{left:60.480000pt;}
.x1f{left:63.919988pt;}
.x11{left:65.839988pt;}
.x2d{left:72.239988pt;}
.x4{left:84.479988pt;}
.x22{left:94.000000pt;}
.x30{left:98.879988pt;}
.x5{left:108.479988pt;}
.xa{left:141.680000pt;}
.x17{left:148.826667pt;}
.x26{left:153.786667pt;}
.x2{left:171.306655pt;}
.xb{left:199.866667pt;}
.x18{left:204.506667pt;}
.x27{left:205.866667pt;}
.x21{left:218.506655pt;}
.x23{left:228.266667pt;}
.x14{left:233.866667pt;}
.x7{left:240.906667pt;}
.x2f{left:251.786655pt;}
.x28{left:300.826667pt;}
.x19{left:308.586667pt;}
.xc{left:317.706667pt;}
.x20{left:319.386655pt;}
.x12{left:326.266655pt;}
.x2e{left:327.386655pt;}
.x24{left:377.226667pt;}
.x15{left:386.586667pt;}
.x8{left:396.666667pt;}
.x29{left:449.786667pt;}
.x1a{left:461.333333pt;}
.xd{left:473.493333pt;}
.x25{left:526.293333pt;}
.x16{left:539.333333pt;}
.x9{left:552.373333pt;}
.x2a{left:567.493333pt;}
.x1b{left:585.973333pt;}
.xe{left:599.733333pt;}
.x1e{left:620.053322pt;}
.x1c{left:625.413333pt;}
.xf{left:640.293333pt;}
.x2b{left:648.853333pt;}
.x2c{left:665.013322pt;}
.x1d{left:677.973333pt;}
.x10{left:685.493333pt;}
.x31{left:711.413322pt;}
.x3{left:718.773322pt;}
}




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