
    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_e72fe9787ddd8d93d62cf9ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e0f2d232d528c8e9bb5b2352.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_ac9ff85fd5b7f643e402ca75.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_98aaba6ec3b29090c2755b8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_4a26b3016b1c59f0b4c45a55.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_08627ca0390ed35f93d7827a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7d5d3d867471dbe0837e20b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e813f6b5de18c9ce67e91a1b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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:ffa;src:url('chunks/assets/font_421c60937f3e58d58c175650.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.250800px;}
.ls5{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.732000px;}
.ls1{letter-spacing:2.160000px;}
.ls8{letter-spacing:5.040000px;}
.ls3{letter-spacing:26.760000px;}
.lsd{letter-spacing:53.424000px;}
.ls7{letter-spacing:167.760000px;}
.lsc{letter-spacing:193.692000px;}
.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:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:-12.600000px;}
.ws6{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.629200px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-5.701440px;}
._b{margin-left:-4.582080px;}
._a{margin-left:-3.493440px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._4{width:2.208960px;}
._3{width:3.473280px;}
._5{width:5.230560px;}
._13{width:6.238080px;}
._14{width:7.271520px;}
._c{width:8.568000px;}
._d{width:9.610560px;}
._10{width:11.338560px;}
._12{width:12.709440px;}
._11{width:14.296320px;}
._9{width:15.514560px;}
._16{width:16.681440px;}
._e{width:19.114560px;}
._f{width:20.128320px;}
._17{width:22.282560px;}
._7{width:24.232320px;}
._8{width:25.796160px;}
._6{width:26.818560px;}
._18{width:28.405440px;}
._19{width:30.182400px;}
._1b{width:40.424160px;}
._1c{width:42.609120px;}
._1a{width:167.760000px;}
._1e{width:193.692000px;}
._1d{width:195.762240px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y86{bottom:7.200000px;}
.y8b{bottom:7.560000px;}
.y9b{bottom:7.605000px;}
.y90{bottom:7.920000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y92{bottom:30.960000px;}
.y8a{bottom:31.320000px;}
.y85{bottom:31.350000px;}
.y9a{bottom:31.365000px;}
.y8f{bottom:31.680000px;}
.y88{bottom:54.720000px;}
.y89{bottom:55.080000px;}
.y8d{bottom:55.125000px;}
.y8e{bottom:55.485000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y9d{bottom:78.525000px;}
.y96{bottom:78.885000px;}
.y99{bottom:79.245000px;}
.y95{bottom:102.645000px;}
.y98{bottom:103.005000px;}
.yc4{bottom:106.236000px;}
.y80{bottom:107.676000px;}
.y7d{bottom:120.996000px;}
.y94{bottom:126.405000px;}
.y31{bottom:126.756000px;}
.y97{bottom:126.765000px;}
.yc3{bottom:129.996000px;}
.y5d{bottom:131.436000px;}
.y7c{bottom:144.756000px;}
.yc2{bottom:153.750000px;}
.y5c{bottom:155.190000px;}
.y30{bottom:162.750000px;}
.y7b{bottom:168.510000px;}
.yc1{bottom:177.510000px;}
.y5b{bottom:179.310000px;}
.y93{bottom:191.550000px;}
.y7a{bottom:192.630000px;}
.y2f{bottom:198.795000px;}
.yc0{bottom:201.675000px;}
.y5a{bottom:203.115000px;}
.y79{bottom:216.435000px;}
.ybf{bottom:225.435000px;}
.y59{bottom:226.875000px;}
.y2e{bottom:231.555000px;}
.y78{bottom:240.195000px;}
.ybe{bottom:249.195000px;}
.y7f{bottom:250.275000px;}
.y58{bottom:250.635000px;}
.y77{bottom:263.955000px;}
.y2d{bottom:264.315000px;}
.ybd{bottom:272.955000px;}
.y57{bottom:274.395000px;}
.y76{bottom:296.715000px;}
.y2c{bottom:297.075000px;}
.y56{bottom:298.155000px;}
.y75{bottom:320.505000px;}
.y55{bottom:321.945000px;}
.y2b{bottom:329.865000px;}
.y91{bottom:335.265000px;}
.ybc{bottom:344.265000px;}
.y54{bottom:345.705000px;}
.y74{bottom:353.265000px;}
.y2a{bottom:353.625000px;}
.ybb{bottom:368.025000px;}
.y53{bottom:369.825000px;}
.y73{bottom:376.665000px;}
.y29{bottom:377.745000px;}
.yba{bottom:391.785000px;}
.y52{bottom:393.585000px;}
.y28{bottom:401.505000px;}
.y8c{bottom:407.265000px;}
.y72{bottom:413.025000px;}
.yb9{bottom:415.905000px;}
.y51{bottom:417.345000px;}
.y27{bottom:425.265000px;}
.yb8{bottom:439.665000px;}
.y50{bottom:441.105000px;}
.y71{bottom:448.710000px;}
.y26{bottom:449.070000px;}
.yb7{bottom:463.470000px;}
.y4f{bottom:464.910000px;}
.y25{bottom:472.830000px;}
.y87{bottom:479.670000px;}
.y70{bottom:484.710000px;}
.yb6{bottom:487.230000px;}
.y4e{bottom:488.670000px;}
.y24{bottom:496.590000px;}
.yb5{bottom:510.990000px;}
.y4d{bottom:512.430000px;}
.y23{bottom:520.350000px;}
.yb4{bottom:534.750000px;}
.y4c{bottom:536.190000px;}
.y22{bottom:544.110000px;}
.y84{bottom:551.670000px;}
.y6f{bottom:556.350000px;}
.yb3{bottom:558.510000px;}
.y4b{bottom:559.950000px;}
.y21{bottom:567.870000px;}
.y6e{bottom:580.140000px;}
.yb2{bottom:582.300000px;}
.y4a{bottom:584.100000px;}
.y20{bottom:592.020000px;}
.y6d{bottom:603.900000px;}
.yb1{bottom:606.060000px;}
.y83{bottom:607.500000px;}
.y49{bottom:607.860000px;}
.y1f{bottom:615.780000px;}
.y6c{bottom:627.660000px;}
.yb0{bottom:629.820000px;}
.y82{bottom:631.260000px;}
.y48{bottom:631.620000px;}
.y1e{bottom:639.540000px;}
.y6b{bottom:651.420000px;}
.yaf{bottom:653.940000px;}
.y81{bottom:655.020000px;}
.y47{bottom:655.380000px;}
.y1d{bottom:663.300000px;}
.y6a{bottom:675.180000px;}
.yae{bottom:677.700000px;}
.y46{bottom:679.140000px;}
.y1c{bottom:687.060000px;}
.y69{bottom:698.970000px;}
.yad{bottom:701.490000px;}
.y45{bottom:702.930000px;}
.y1b{bottom:710.850000px;}
.y68{bottom:722.730000px;}
.yac{bottom:725.250000px;}
.y44{bottom:726.690000px;}
.y1a{bottom:734.610000px;}
.yab{bottom:749.010000px;}
.y43{bottom:750.450000px;}
.y19{bottom:758.370000px;}
.y67{bottom:758.730000px;}
.yaa{bottom:772.770000px;}
.y42{bottom:774.570000px;}
.y18{bottom:782.490000px;}
.y66{bottom:794.370000px;}
.ya9{bottom:796.890000px;}
.y41{bottom:798.330000px;}
.y17{bottom:806.250000px;}
.ya8{bottom:820.650000px;}
.y40{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.y65{bottom:830.415000px;}
.ya7{bottom:844.455000px;}
.y3f{bottom:845.535000px;}
.y7e{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y64{bottom:866.055000px;}
.ya6{bottom:868.215000px;}
.y3e{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.ya5{bottom:891.975000px;}
.y3d{bottom:893.415000px;}
.y13{bottom:901.335000px;}
.y63{bottom:902.055000px;}
.ya4{bottom:915.375000px;}
.y3c{bottom:917.175000px;}
.y12{bottom:925.095000px;}
.y62{bottom:934.815000px;}
.ya3{bottom:939.495000px;}
.y3b{bottom:940.935000px;}
.y11{bottom:948.855000px;}
.ya2{bottom:963.285000px;}
.y3a{bottom:965.085000px;}
.y61{bottom:967.245000px;}
.y10{bottom:972.645000px;}
.ya1{bottom:987.045000px;}
.y39{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.ya0{bottom:1011.165000px;}
.y60{bottom:1012.245000px;}
.y38{bottom:1012.605000px;}
.ye{bottom:1020.525000px;}
.y9f{bottom:1034.925000px;}
.y37{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y5f{bottom:1047.885000px;}
.y9e{bottom:1058.685000px;}
.y36{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y9c{bottom:1075.605000px;}
.y35{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y34{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y5e{bottom:1119.570000px;}
.y33{bottom:1131.450000px;}
.y9{bottom:1149.090000px;}
.y32{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.hd{height:47.916000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.hc{height:64.546875px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.he{height:71.280000px;}
.hf{height:71.676000px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h12{height:74.004654px;}
.h9{height:75.251250px;}
.h11{height:95.076000px;}
.h8{height:97.233750px;}
.h10{height:142.992000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:83.196000px;}
.w9{width:88.596000px;}
.w5{width:89.316000px;}
.w7{width:99.036000px;}
.w6{width:103.356000px;}
.w4{width:104.076000px;}
.wa{width:133.596000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1b{left:7.560000px;}
.x18{left:9.360000px;}
.x1d{left:11.880000px;}
.x22{left:13.320000px;}
.x24{left:15.120000px;}
.x21{left:16.920000px;}
.x2f{left:18.000000px;}
.x28{left:19.080000px;}
.x2a{left:20.880000px;}
.x29{left:21.960000px;}
.x1a{left:23.040000px;}
.x2e{left:24.150000px;}
.x26{left:25.200000px;}
.x1f{left:26.670000px;}
.x2d{left:28.830000px;}
.x27{left:30.285000px;}
.x2b{left:31.320000px;}
.x2c{left:32.760000px;}
.x31{left:35.640000px;}
.x30{left:39.240000px;}
.x33{left:43.560000px;}
.x8{left:47.550000px;}
.x32{left:48.600000px;}
.x5{left:95.796000px;}
.xb{left:99.035987px;}
.x17{left:104.436000px;}
.xa{left:109.115987px;}
.x34{left:127.835987px;}
.x11{left:149.111987px;}
.x3{left:190.154987px;}
.x19{left:194.475000px;}
.xe{left:234.824987px;}
.x15{left:253.184987px;}
.xf{left:265.784987px;}
.x14{left:275.864987px;}
.x13{left:277.304987px;}
.x16{left:278.384987px;}
.x12{left:281.984987px;}
.x6{left:290.634000px;}
.x1c{left:298.545000px;}
.x10{left:322.664987px;}
.x2{left:333.509987px;}
.xd{left:339.989987px;}
.x4{left:342.869987px;}
.x7{left:394.710000px;}
.x1e{left:398.310000px;}
.xc{left:473.219987px;}
.x20{left:482.220000px;}
.x9{left:498.780000px;}
.x23{left:566.130000px;}
.x25{left:655.455000px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.222933pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.650667pt;}
.ls1{letter-spacing:1.920000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls3{letter-spacing:23.786667pt;}
.lsd{letter-spacing:47.488000pt;}
.ls7{letter-spacing:149.120000pt;}
.lsc{letter-spacing:172.170667pt;}
.ws7{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:-11.200000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws4{word-spacing:-10.337067pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-5.067947pt;}
._b{margin-left:-4.072960pt;}
._a{margin-left:-3.105280pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._4{width:1.963520pt;}
._3{width:3.087360pt;}
._5{width:4.649387pt;}
._13{width:5.544960pt;}
._14{width:6.463573pt;}
._c{width:7.616000pt;}
._d{width:8.542720pt;}
._10{width:10.078720pt;}
._12{width:11.297280pt;}
._11{width:12.707840pt;}
._9{width:13.790720pt;}
._16{width:14.827947pt;}
._e{width:16.990720pt;}
._f{width:17.891840pt;}
._17{width:19.806720pt;}
._7{width:21.539840pt;}
._8{width:22.929920pt;}
._6{width:23.838720pt;}
._18{width:25.249280pt;}
._19{width:26.828800pt;}
._1b{width:35.932587pt;}
._1c{width:37.874773pt;}
._1a{width:149.120000pt;}
._1e{width:172.170667pt;}
._1d{width:174.010880pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:6.400000pt;}
.y8b{bottom:6.720000pt;}
.y9b{bottom:6.760000pt;}
.y90{bottom:7.040000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y92{bottom:27.520000pt;}
.y8a{bottom:27.840000pt;}
.y85{bottom:27.866667pt;}
.y9a{bottom:27.880000pt;}
.y8f{bottom:28.160000pt;}
.y88{bottom:48.640000pt;}
.y89{bottom:48.960000pt;}
.y8d{bottom:49.000000pt;}
.y8e{bottom:49.320000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y9d{bottom:69.800000pt;}
.y96{bottom:70.120000pt;}
.y99{bottom:70.440000pt;}
.y95{bottom:91.240000pt;}
.y98{bottom:91.560000pt;}
.yc4{bottom:94.432000pt;}
.y80{bottom:95.712000pt;}
.y7d{bottom:107.552000pt;}
.y94{bottom:112.360000pt;}
.y31{bottom:112.672000pt;}
.y97{bottom:112.680000pt;}
.yc3{bottom:115.552000pt;}
.y5d{bottom:116.832000pt;}
.y7c{bottom:128.672000pt;}
.yc2{bottom:136.666667pt;}
.y5c{bottom:137.946667pt;}
.y30{bottom:144.666667pt;}
.y7b{bottom:149.786667pt;}
.yc1{bottom:157.786667pt;}
.y5b{bottom:159.386667pt;}
.y93{bottom:170.266667pt;}
.y7a{bottom:171.226667pt;}
.y2f{bottom:176.706667pt;}
.yc0{bottom:179.266667pt;}
.y5a{bottom:180.546667pt;}
.y79{bottom:192.386667pt;}
.ybf{bottom:200.386667pt;}
.y59{bottom:201.666667pt;}
.y2e{bottom:205.826667pt;}
.y78{bottom:213.506667pt;}
.ybe{bottom:221.506667pt;}
.y7f{bottom:222.466667pt;}
.y58{bottom:222.786667pt;}
.y77{bottom:234.626667pt;}
.y2d{bottom:234.946667pt;}
.ybd{bottom:242.626667pt;}
.y57{bottom:243.906667pt;}
.y76{bottom:263.746667pt;}
.y2c{bottom:264.066667pt;}
.y56{bottom:265.026667pt;}
.y75{bottom:284.893333pt;}
.y55{bottom:286.173333pt;}
.y2b{bottom:293.213333pt;}
.y91{bottom:298.013333pt;}
.ybc{bottom:306.013333pt;}
.y54{bottom:307.293333pt;}
.y74{bottom:314.013333pt;}
.y2a{bottom:314.333333pt;}
.ybb{bottom:327.133333pt;}
.y53{bottom:328.733333pt;}
.y73{bottom:334.813333pt;}
.y29{bottom:335.773333pt;}
.yba{bottom:348.253333pt;}
.y52{bottom:349.853333pt;}
.y28{bottom:356.893333pt;}
.y8c{bottom:362.013333pt;}
.y72{bottom:367.133333pt;}
.yb9{bottom:369.693333pt;}
.y51{bottom:370.973333pt;}
.y27{bottom:378.013333pt;}
.yb8{bottom:390.813333pt;}
.y50{bottom:392.093333pt;}
.y71{bottom:398.853333pt;}
.y26{bottom:399.173333pt;}
.yb7{bottom:411.973333pt;}
.y4f{bottom:413.253333pt;}
.y25{bottom:420.293333pt;}
.y87{bottom:426.373333pt;}
.y70{bottom:430.853333pt;}
.yb6{bottom:433.093333pt;}
.y4e{bottom:434.373333pt;}
.y24{bottom:441.413333pt;}
.yb5{bottom:454.213333pt;}
.y4d{bottom:455.493333pt;}
.y23{bottom:462.533333pt;}
.yb4{bottom:475.333333pt;}
.y4c{bottom:476.613333pt;}
.y22{bottom:483.653333pt;}
.y84{bottom:490.373333pt;}
.y6f{bottom:494.533333pt;}
.yb3{bottom:496.453333pt;}
.y4b{bottom:497.733333pt;}
.y21{bottom:504.773333pt;}
.y6e{bottom:515.680000pt;}
.yb2{bottom:517.600000pt;}
.y4a{bottom:519.200000pt;}
.y20{bottom:526.240000pt;}
.y6d{bottom:536.800000pt;}
.yb1{bottom:538.720000pt;}
.y83{bottom:540.000000pt;}
.y49{bottom:540.320000pt;}
.y1f{bottom:547.360000pt;}
.y6c{bottom:557.920000pt;}
.yb0{bottom:559.840000pt;}
.y82{bottom:561.120000pt;}
.y48{bottom:561.440000pt;}
.y1e{bottom:568.480000pt;}
.y6b{bottom:579.040000pt;}
.yaf{bottom:581.280000pt;}
.y81{bottom:582.240000pt;}
.y47{bottom:582.560000pt;}
.y1d{bottom:589.600000pt;}
.y6a{bottom:600.160000pt;}
.yae{bottom:602.400000pt;}
.y46{bottom:603.680000pt;}
.y1c{bottom:610.720000pt;}
.y69{bottom:621.306667pt;}
.yad{bottom:623.546667pt;}
.y45{bottom:624.826667pt;}
.y1b{bottom:631.866667pt;}
.y68{bottom:642.426667pt;}
.yac{bottom:644.666667pt;}
.y44{bottom:645.946667pt;}
.y1a{bottom:652.986667pt;}
.yab{bottom:665.786667pt;}
.y43{bottom:667.066667pt;}
.y19{bottom:674.106667pt;}
.y67{bottom:674.426667pt;}
.yaa{bottom:686.906667pt;}
.y42{bottom:688.506667pt;}
.y18{bottom:695.546667pt;}
.y66{bottom:706.106667pt;}
.ya9{bottom:708.346667pt;}
.y41{bottom:709.626667pt;}
.y17{bottom:716.666667pt;}
.ya8{bottom:729.466667pt;}
.y40{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.y65{bottom:738.146667pt;}
.ya7{bottom:750.626667pt;}
.y3f{bottom:751.586667pt;}
.y7e{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y64{bottom:769.826667pt;}
.ya6{bottom:771.746667pt;}
.y3e{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.ya5{bottom:792.866667pt;}
.y3d{bottom:794.146667pt;}
.y13{bottom:801.186667pt;}
.y63{bottom:801.826667pt;}
.ya4{bottom:813.666667pt;}
.y3c{bottom:815.266667pt;}
.y12{bottom:822.306667pt;}
.y62{bottom:830.946667pt;}
.ya3{bottom:835.106667pt;}
.y3b{bottom:836.386667pt;}
.y11{bottom:843.426667pt;}
.ya2{bottom:856.253333pt;}
.y3a{bottom:857.853333pt;}
.y61{bottom:859.773333pt;}
.y10{bottom:864.573333pt;}
.ya1{bottom:877.373333pt;}
.y39{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.ya0{bottom:898.813333pt;}
.y60{bottom:899.773333pt;}
.y38{bottom:900.093333pt;}
.ye{bottom:907.133333pt;}
.y9f{bottom:919.933333pt;}
.y37{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y5f{bottom:931.453333pt;}
.y9e{bottom:941.053333pt;}
.y36{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y9c{bottom:956.093333pt;}
.y35{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y34{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y5e{bottom:995.173333pt;}
.y33{bottom:1005.733333pt;}
.y9{bottom:1021.413333pt;}
.y32{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.hd{height:42.592000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.hc{height:57.375000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.he{height:63.360000pt;}
.hf{height:63.712000pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h12{height:65.781915pt;}
.h9{height:66.890000pt;}
.h11{height:84.512000pt;}
.h8{height:86.430000pt;}
.h10{height:127.104000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:73.952000pt;}
.w9{width:78.752000pt;}
.w5{width:79.392000pt;}
.w7{width:88.032000pt;}
.w6{width:91.872000pt;}
.w4{width:92.512000pt;}
.wa{width:118.752000pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.720000pt;}
.x18{left:8.320000pt;}
.x1d{left:10.560000pt;}
.x22{left:11.840000pt;}
.x24{left:13.440000pt;}
.x21{left:15.040000pt;}
.x2f{left:16.000000pt;}
.x28{left:16.960000pt;}
.x2a{left:18.560000pt;}
.x29{left:19.520000pt;}
.x1a{left:20.480000pt;}
.x2e{left:21.466667pt;}
.x26{left:22.400000pt;}
.x1f{left:23.706667pt;}
.x2d{left:25.626667pt;}
.x27{left:26.920000pt;}
.x2b{left:27.840000pt;}
.x2c{left:29.120000pt;}
.x31{left:31.680000pt;}
.x30{left:34.880000pt;}
.x33{left:38.720000pt;}
.x8{left:42.266667pt;}
.x32{left:43.200000pt;}
.x5{left:85.152000pt;}
.xb{left:88.031988pt;}
.x17{left:92.832000pt;}
.xa{left:96.991988pt;}
.x34{left:113.631988pt;}
.x11{left:132.543988pt;}
.x3{left:169.026655pt;}
.x19{left:172.866667pt;}
.xe{left:208.733322pt;}
.x15{left:225.053322pt;}
.xf{left:236.253322pt;}
.x14{left:245.213322pt;}
.x13{left:246.493322pt;}
.x16{left:247.453322pt;}
.x12{left:250.653322pt;}
.x6{left:258.341333pt;}
.x1c{left:265.373333pt;}
.x10{left:286.813322pt;}
.x2{left:296.453322pt;}
.xd{left:302.213322pt;}
.x4{left:304.773322pt;}
.x7{left:350.853333pt;}
.x1e{left:354.053333pt;}
.xc{left:420.639988pt;}
.x20{left:428.640000pt;}
.x9{left:443.360000pt;}
.x23{left:503.226667pt;}
.x25{left:582.626667pt;}
.x1{left:709.053322pt;}
}




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