
    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_054cc9efd23b42b1bccc5620.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_0540f9952009530c831b10e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_2d71beb6473b11a7d712ce6d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_147f9cc169cb1cdf4490a9b7.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_21d2cc0b499e055223df421e.woff')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;}
.m2{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.540000px;}
.lsc{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.869760px;}
.ls11{letter-spacing:22.500000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.432000px;}
.ws11{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.669200px;}
.wsd{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.886720px;}
.ws6{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.700000px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-3.456000px;}
._c{margin-left:-2.160000px;}
._1{margin-left:-1.135440px;}
._2{width:1.015920px;}
._0{width:2.031840px;}
._4{width:3.045120px;}
._b{width:4.160640px;}
._d{width:5.544000px;}
._5{width:7.344000px;}
._6{width:9.300000px;}
._10{width:10.382880px;}
._11{width:11.856000px;}
._16{width:13.656000px;}
._14{width:15.552000px;}
._12{width:16.560000px;}
._1f{width:19.152000px;}
._15{width:20.160000px;}
._7{width:21.744000px;}
._8{width:22.752000px;}
._9{width:23.828160px;}
._17{width:24.984000px;}
._18{width:26.208240px;}
._1d{width:28.080000px;}
._e{width:29.208000px;}
._f{width:30.216000px;}
._20{width:32.239440px;}
._1e{width:34.056000px;}
._1c{width:36.072000px;}
._21{width:41.688000px;}
._19{width:51.408000px;}
._1a{width:53.008080px;}
._3{width:62.364000px;}
._a{width:63.395520px;}
._23{width:69.274800px;}
._22{width:70.831440px;}
._1b{width:173.160000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.ya{bottom:5.970000px;}
.y7{bottom:7.950000px;}
.y6e{bottom:10.620000px;}
.y74{bottom:10.980000px;}
.y72{bottom:11.016000px;}
.y70{bottom:11.154000px;}
.y79{bottom:11.160000px;}
.y76{bottom:22.680000px;}
.y9{bottom:23.250000px;}
.y5{bottom:25.230000px;}
.y6{bottom:33.150000px;}
.y77{bottom:34.380000px;}
.y8{bottom:40.530000px;}
.y4{bottom:42.510000px;}
.yd{bottom:46.440000px;}
.yc{bottom:84.960000px;}
.y58{bottom:117.540000px;}
.yb1{bottom:120.960000px;}
.y71{bottom:124.020000px;}
.y5e{bottom:128.016000px;}
.y6f{bottom:147.996000px;}
.y57{bottom:148.716000px;}
.yb0{bottom:152.130000px;}
.y29{bottom:153.930000px;}
.y45{bottom:158.970000px;}
.y6d{bottom:172.110000px;}
.yb4{bottom:173.910000px;}
.y56{bottom:179.670000px;}
.yaf{bottom:183.090000px;}
.y28{bottom:184.890000px;}
.yb5{bottom:189.750000px;}
.y44{bottom:190.110000px;}
.y55{bottom:210.810000px;}
.yae{bottom:214.230000px;}
.y27{bottom:216.030000px;}
.y43{bottom:221.070000px;}
.y54{bottom:241.770000px;}
.yad{bottom:245.190000px;}
.y26{bottom:246.990000px;}
.y42{bottom:252.210000px;}
.y9a{bottom:264.450000px;}
.y53{bottom:272.910000px;}
.yac{bottom:276.330000px;}
.y25{bottom:278.130000px;}
.y41{bottom:283.170000px;}
.y8e{bottom:283.890000px;}
.y5d{bottom:287.850000px;}
.y99{bottom:295.590000px;}
.y52{bottom:303.870000px;}
.yab{bottom:307.290000px;}
.y24{bottom:309.090000px;}
.y40{bottom:314.310000px;}
.y8d{bottom:315.030000px;}
.y98{bottom:326.550000px;}
.y5c{bottom:329.250000px;}
.y51{bottom:335.010000px;}
.yaa{bottom:338.430000px;}
.y6c{bottom:339.510000px;}
.y23{bottom:340.230000px;}
.y3f{bottom:345.270000px;}
.y8c{bottom:345.990000px;}
.y97{bottom:357.690000px;}
.y50{bottom:366.015000px;}
.ya9{bottom:369.435000px;}
.y22{bottom:371.235000px;}
.y3e{bottom:376.455000px;}
.y8b{bottom:376.995000px;}
.y96{bottom:387.615000px;}
.y4f{bottom:397.155000px;}
.ya8{bottom:400.575000px;}
.y21{bottom:401.835000px;}
.y3d{bottom:407.415000px;}
.y8a{bottom:408.135000px;}
.y95{bottom:412.995000px;}
.y4e{bottom:428.115000px;}
.ya7{bottom:431.535000px;}
.yb3{bottom:432.795000px;}
.y20{bottom:433.335000px;}
.y3c{bottom:438.555000px;}
.y89{bottom:439.095000px;}
.y4d{bottom:459.255000px;}
.ya6{bottom:462.675000px;}
.y1f{bottom:464.295000px;}
.y3b{bottom:469.515000px;}
.y88{bottom:470.235000px;}
.y4c{bottom:490.215000px;}
.ya5{bottom:493.635000px;}
.y1e{bottom:495.435000px;}
.y3a{bottom:500.655000px;}
.y87{bottom:501.195000px;}
.y4b{bottom:521.355000px;}
.ya4{bottom:524.775000px;}
.y1d{bottom:526.395000px;}
.y39{bottom:531.615000px;}
.y86{bottom:536.835000px;}
.y4a{bottom:552.315000px;}
.ya3{bottom:555.735000px;}
.y38{bottom:562.755000px;}
.y1c{bottom:564.375000px;}
.y85{bottom:573.735000px;}
.y49{bottom:583.455000px;}
.ya2{bottom:586.695000px;}
.y1b{bottom:588.495000px;}
.y37{bottom:593.355000px;}
.yb2{bottom:593.715000px;}
.y6b{bottom:598.395000px;}
.y84{bottom:604.725000px;}
.y48{bottom:614.445000px;}
.ya1{bottom:617.865000px;}
.y1a{bottom:619.665000px;}
.y36{bottom:624.885000px;}
.y6a{bottom:635.145000px;}
.y83{bottom:635.865000px;}
.y47{bottom:645.585000px;}
.ya0{bottom:648.825000px;}
.y35{bottom:655.845000px;}
.y94{bottom:656.565000px;}
.y19{bottom:657.465000px;}
.y69{bottom:666.285000px;}
.y82{bottom:666.825000px;}
.y5b{bottom:676.545000px;}
.y46{bottom:681.225000px;}
.y18{bottom:681.765000px;}
.y9f{bottom:684.465000px;}
.y34{bottom:686.985000px;}
.y93{bottom:687.705000px;}
.y68{bottom:697.245000px;}
.y81{bottom:697.965000px;}
.y5a{bottom:707.685000px;}
.y33{bottom:717.945000px;}
.y92{bottom:718.665000px;}
.y17{bottom:719.565000px;}
.y9e{bottom:721.365000px;}
.y67{bottom:728.385000px;}
.y80{bottom:728.925000px;}
.y59{bottom:743.325000px;}
.y16{bottom:743.865000px;}
.y32{bottom:749.085000px;}
.y91{bottom:749.805000px;}
.y9d{bottom:752.325000px;}
.y66{bottom:759.345000px;}
.y7f{bottom:760.065000px;}
.y15{bottom:774.825000px;}
.y90{bottom:779.685000px;}
.y31{bottom:780.045000px;}
.y9c{bottom:782.385000px;}
.y65{bottom:790.485000px;}
.y7e{bottom:791.025000px;}
.y8f{bottom:804.885000px;}
.y14{bottom:805.965000px;}
.y9b{bottom:807.585000px;}
.yb7{bottom:810.825000px;}
.y30{bottom:811.185000px;}
.y7d{bottom:822.165000px;}
.y64{bottom:826.125000px;}
.y13{bottom:836.925000px;}
.y2f{bottom:842.190000px;}
.y7c{bottom:853.170000px;}
.y63{bottom:862.890000px;}
.y12{bottom:868.110000px;}
.y7b{bottom:870.270000px;}
.y2e{bottom:873.330000px;}
.y62{bottom:893.850000px;}
.y7a{bottom:894.390000px;}
.y11{bottom:901.230000px;}
.y2d{bottom:904.290000px;}
.y78{bottom:918.330000px;}
.y61{bottom:924.990000px;}
.y2c{bottom:935.250000px;}
.y10{bottom:937.410000px;}
.y75{bottom:942.450000px;}
.y60{bottom:955.950000px;}
.y2b{bottom:966.390000px;}
.yf{bottom:971.610000px;}
.y73{bottom:989.790000px;}
.y5f{bottom:991.590000px;}
.yb6{bottom:996.990000px;}
.y2a{bottom:997.350000px;}
.ye{bottom:999.870000px;}
.yb{bottom:1018.410000px;}
.y3{bottom:1072.230000px;}
.y1{bottom:1128.420000px;}
.h2{height:17.280000px;}
.h10{height:23.220000px;}
.h14{height:23.256000px;}
.h12{height:23.400000px;}
.h15{height:46.620000px;}
.hd{height:47.344922px;}
.h13{height:52.998047px;}
.h11{height:54.421875px;}
.h4{height:56.196000px;}
.h3{height:58.651172px;}
.h7{height:59.439023px;}
.h8{height:60.226875px;}
.h6{height:65.884219px;}
.h16{height:66.757500px;}
.h9{height:70.664062px;}
.he{height:72.562500px;}
.hc{height:74.704922px;}
.h17{height:74.848922px;}
.hb{height:74.884922px;}
.h5{height:77.837760px;}
.ha{height:84.898125px;}
.hf{height:96.508125px;}
.h1{height:1188.000000px;}
.h0{height:1188.180000px;}
.w4{width:86.436000px;}
.w7{width:90.216000px;}
.w6{width:118.836000px;}
.w9{width:152.310000px;}
.w3{width:209.055000px;}
.w5{width:469.875000px;}
.w2{width:556.305000px;}
.wa{width:594.690000px;}
.w1{width:918.000000px;}
.w8{width:918.179986px;}
.w0{width:918.180000px;}
.x0{left:0.000000px;}
.x23{left:7.596000px;}
.x20{left:10.476000px;}
.x9{left:13.365000px;}
.x8{left:28.845000px;}
.x4{left:43.236000px;}
.x6{left:44.280000px;}
.x3{left:46.305000px;}
.x1{left:76.500000px;}
.xb{left:84.959986px;}
.x10{left:117.215986px;}
.x7{left:148.545000px;}
.x1a{left:161.309986px;}
.x5{left:162.930000px;}
.x11{left:214.229986px;}
.x28{left:221.069986px;}
.x21{left:238.350000px;}
.xd{left:245.549986px;}
.x26{left:246.989986px;}
.x22{left:261.075000px;}
.x2d{left:264.629986px;}
.x2c{left:272.414986px;}
.x1f{left:274.034986px;}
.x19{left:276.374986px;}
.x1c{left:281.594986px;}
.x1e{left:287.894986px;}
.x1d{left:320.654986px;}
.x30{left:345.314986px;}
.x1b{left:360.434986px;}
.x12{left:362.414986px;}
.x2f{left:373.034986px;}
.x29{left:392.294986px;}
.x31{left:409.574986px;}
.x13{left:422.894986px;}
.x14{left:424.334986px;}
.x2e{left:451.514986px;}
.xc{left:455.324986px;}
.xf{left:459.104986px;}
.x2a{left:461.624986px;}
.x2b{left:463.064986px;}
.x27{left:547.304986px;}
.x25{left:555.584986px;}
.x24{left:560.264986px;}
.x2{left:632.805000px;}
.x15{left:708.269986px;}
.x16{left:710.429986px;}
.xe{left:730.769986px;}
.xa{left:751.650000px;}
.x17{left:765.509986px;}
.x18{left:767.849986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.480000pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.773120pt;}
.ls11{letter-spacing:20.000000pt;}
.ws7{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.384000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.817067pt;}
.wsd{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.232640pt;}
.ws6{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.400000pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-3.072000pt;}
._c{margin-left:-1.920000pt;}
._1{margin-left:-1.009280pt;}
._2{width:0.903040pt;}
._0{width:1.806080pt;}
._4{width:2.706773pt;}
._b{width:3.698347pt;}
._d{width:4.928000pt;}
._5{width:6.528000pt;}
._6{width:8.266667pt;}
._10{width:9.229227pt;}
._11{width:10.538667pt;}
._16{width:12.138667pt;}
._14{width:13.824000pt;}
._12{width:14.720000pt;}
._1f{width:17.024000pt;}
._15{width:17.920000pt;}
._7{width:19.328000pt;}
._8{width:20.224000pt;}
._9{width:21.180587pt;}
._17{width:22.208000pt;}
._18{width:23.296213pt;}
._1d{width:24.960000pt;}
._e{width:25.962667pt;}
._f{width:26.858667pt;}
._20{width:28.657280pt;}
._1e{width:30.272000pt;}
._1c{width:32.064000pt;}
._21{width:37.056000pt;}
._19{width:45.696000pt;}
._1a{width:47.118293pt;}
._3{width:55.434667pt;}
._a{width:56.351573pt;}
._23{width:61.577600pt;}
._22{width:62.961280pt;}
._1b{width:153.920000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.ya{bottom:5.306667pt;}
.y7{bottom:7.066667pt;}
.y6e{bottom:9.440000pt;}
.y74{bottom:9.760000pt;}
.y72{bottom:9.792000pt;}
.y70{bottom:9.914667pt;}
.y79{bottom:9.920000pt;}
.y76{bottom:20.160000pt;}
.y9{bottom:20.666667pt;}
.y5{bottom:22.426667pt;}
.y6{bottom:29.466667pt;}
.y77{bottom:30.560000pt;}
.y8{bottom:36.026667pt;}
.y4{bottom:37.786667pt;}
.yd{bottom:41.280000pt;}
.yc{bottom:75.520000pt;}
.y58{bottom:104.480000pt;}
.yb1{bottom:107.520000pt;}
.y71{bottom:110.240000pt;}
.y5e{bottom:113.792000pt;}
.y6f{bottom:131.552000pt;}
.y57{bottom:132.192000pt;}
.yb0{bottom:135.226667pt;}
.y29{bottom:136.826667pt;}
.y45{bottom:141.306667pt;}
.y6d{bottom:152.986667pt;}
.yb4{bottom:154.586667pt;}
.y56{bottom:159.706667pt;}
.yaf{bottom:162.746667pt;}
.y28{bottom:164.346667pt;}
.yb5{bottom:168.666667pt;}
.y44{bottom:168.986667pt;}
.y55{bottom:187.386667pt;}
.yae{bottom:190.426667pt;}
.y27{bottom:192.026667pt;}
.y43{bottom:196.506667pt;}
.y54{bottom:214.906667pt;}
.yad{bottom:217.946667pt;}
.y26{bottom:219.546667pt;}
.y42{bottom:224.186667pt;}
.y9a{bottom:235.066667pt;}
.y53{bottom:242.586667pt;}
.yac{bottom:245.626667pt;}
.y25{bottom:247.226667pt;}
.y41{bottom:251.706667pt;}
.y8e{bottom:252.346667pt;}
.y5d{bottom:255.866667pt;}
.y99{bottom:262.746667pt;}
.y52{bottom:270.106667pt;}
.yab{bottom:273.146667pt;}
.y24{bottom:274.746667pt;}
.y40{bottom:279.386667pt;}
.y8d{bottom:280.026667pt;}
.y98{bottom:290.266667pt;}
.y5c{bottom:292.666667pt;}
.y51{bottom:297.786667pt;}
.yaa{bottom:300.826667pt;}
.y6c{bottom:301.786667pt;}
.y23{bottom:302.426667pt;}
.y3f{bottom:306.906667pt;}
.y8c{bottom:307.546667pt;}
.y97{bottom:317.946667pt;}
.y50{bottom:325.346667pt;}
.ya9{bottom:328.386667pt;}
.y22{bottom:329.986667pt;}
.y3e{bottom:334.626667pt;}
.y8b{bottom:335.106667pt;}
.y96{bottom:344.546667pt;}
.y4f{bottom:353.026667pt;}
.ya8{bottom:356.066667pt;}
.y21{bottom:357.186667pt;}
.y3d{bottom:362.146667pt;}
.y8a{bottom:362.786667pt;}
.y95{bottom:367.106667pt;}
.y4e{bottom:380.546667pt;}
.ya7{bottom:383.586667pt;}
.yb3{bottom:384.706667pt;}
.y20{bottom:385.186667pt;}
.y3c{bottom:389.826667pt;}
.y89{bottom:390.306667pt;}
.y4d{bottom:408.226667pt;}
.ya6{bottom:411.266667pt;}
.y1f{bottom:412.706667pt;}
.y3b{bottom:417.346667pt;}
.y88{bottom:417.986667pt;}
.y4c{bottom:435.746667pt;}
.ya5{bottom:438.786667pt;}
.y1e{bottom:440.386667pt;}
.y3a{bottom:445.026667pt;}
.y87{bottom:445.506667pt;}
.y4b{bottom:463.426667pt;}
.ya4{bottom:466.466667pt;}
.y1d{bottom:467.906667pt;}
.y39{bottom:472.546667pt;}
.y86{bottom:477.186667pt;}
.y4a{bottom:490.946667pt;}
.ya3{bottom:493.986667pt;}
.y38{bottom:500.226667pt;}
.y1c{bottom:501.666667pt;}
.y85{bottom:509.986667pt;}
.y49{bottom:518.626667pt;}
.ya2{bottom:521.506667pt;}
.y1b{bottom:523.106667pt;}
.y37{bottom:527.426667pt;}
.yb2{bottom:527.746667pt;}
.y6b{bottom:531.906667pt;}
.y84{bottom:537.533333pt;}
.y48{bottom:546.173333pt;}
.ya1{bottom:549.213333pt;}
.y1a{bottom:550.813333pt;}
.y36{bottom:555.453333pt;}
.y6a{bottom:564.573333pt;}
.y83{bottom:565.213333pt;}
.y47{bottom:573.853333pt;}
.ya0{bottom:576.733333pt;}
.y35{bottom:582.973333pt;}
.y94{bottom:583.613333pt;}
.y19{bottom:584.413333pt;}
.y69{bottom:592.253333pt;}
.y82{bottom:592.733333pt;}
.y5b{bottom:601.373333pt;}
.y46{bottom:605.533333pt;}
.y18{bottom:606.013333pt;}
.y9f{bottom:608.413333pt;}
.y34{bottom:610.653333pt;}
.y93{bottom:611.293333pt;}
.y68{bottom:619.773333pt;}
.y81{bottom:620.413333pt;}
.y5a{bottom:629.053333pt;}
.y33{bottom:638.173333pt;}
.y92{bottom:638.813333pt;}
.y17{bottom:639.613333pt;}
.y9e{bottom:641.213333pt;}
.y67{bottom:647.453333pt;}
.y80{bottom:647.933333pt;}
.y59{bottom:660.733333pt;}
.y16{bottom:661.213333pt;}
.y32{bottom:665.853333pt;}
.y91{bottom:666.493333pt;}
.y9d{bottom:668.733333pt;}
.y66{bottom:674.973333pt;}
.y7f{bottom:675.613333pt;}
.y15{bottom:688.733333pt;}
.y90{bottom:693.053333pt;}
.y31{bottom:693.373333pt;}
.y9c{bottom:695.453333pt;}
.y65{bottom:702.653333pt;}
.y7e{bottom:703.133333pt;}
.y8f{bottom:715.453333pt;}
.y14{bottom:716.413333pt;}
.y9b{bottom:717.853333pt;}
.yb7{bottom:720.733333pt;}
.y30{bottom:721.053333pt;}
.y7d{bottom:730.813333pt;}
.y64{bottom:734.333333pt;}
.y13{bottom:743.933333pt;}
.y2f{bottom:748.613333pt;}
.y7c{bottom:758.373333pt;}
.y63{bottom:767.013333pt;}
.y12{bottom:771.653333pt;}
.y7b{bottom:773.573333pt;}
.y2e{bottom:776.293333pt;}
.y62{bottom:794.533333pt;}
.y7a{bottom:795.013333pt;}
.y11{bottom:801.093333pt;}
.y2d{bottom:803.813333pt;}
.y78{bottom:816.293333pt;}
.y61{bottom:822.213333pt;}
.y2c{bottom:831.333333pt;}
.y10{bottom:833.253333pt;}
.y75{bottom:837.733333pt;}
.y60{bottom:849.733333pt;}
.y2b{bottom:859.013333pt;}
.yf{bottom:863.653333pt;}
.y73{bottom:879.813333pt;}
.y5f{bottom:881.413333pt;}
.yb6{bottom:886.213333pt;}
.y2a{bottom:886.533333pt;}
.ye{bottom:888.773333pt;}
.yb{bottom:905.253333pt;}
.y3{bottom:953.093333pt;}
.y1{bottom:1003.040000pt;}
.h2{height:15.360000pt;}
.h10{height:20.640000pt;}
.h14{height:20.672000pt;}
.h12{height:20.800000pt;}
.h15{height:41.440000pt;}
.hd{height:42.084375pt;}
.h13{height:47.109375pt;}
.h11{height:48.375000pt;}
.h4{height:49.952000pt;}
.h3{height:52.134375pt;}
.h7{height:52.834688pt;}
.h8{height:53.535000pt;}
.h6{height:58.563750pt;}
.h16{height:59.340000pt;}
.h9{height:62.812500pt;}
.he{height:64.500000pt;}
.hc{height:66.404375pt;}
.h17{height:66.532375pt;}
.hb{height:66.564375pt;}
.h5{height:69.189120pt;}
.ha{height:75.465000pt;}
.hf{height:85.785000pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.160000pt;}
.w4{width:76.832000pt;}
.w7{width:80.192000pt;}
.w6{width:105.632000pt;}
.w9{width:135.386667pt;}
.w3{width:185.826667pt;}
.w5{width:417.666667pt;}
.w2{width:494.493333pt;}
.wa{width:528.613333pt;}
.w1{width:816.000000pt;}
.w8{width:816.159988pt;}
.w0{width:816.160000pt;}
.x0{left:0.000000pt;}
.x23{left:6.752000pt;}
.x20{left:9.312000pt;}
.x9{left:11.880000pt;}
.x8{left:25.640000pt;}
.x4{left:38.432000pt;}
.x6{left:39.360000pt;}
.x3{left:41.160000pt;}
.x1{left:68.000000pt;}
.xb{left:75.519988pt;}
.x10{left:104.191988pt;}
.x7{left:132.040000pt;}
.x1a{left:143.386655pt;}
.x5{left:144.826667pt;}
.x11{left:190.426655pt;}
.x28{left:196.506655pt;}
.x21{left:211.866667pt;}
.xd{left:218.266655pt;}
.x26{left:219.546655pt;}
.x22{left:232.066667pt;}
.x2d{left:235.226655pt;}
.x2c{left:242.146655pt;}
.x1f{left:243.586655pt;}
.x19{left:245.666655pt;}
.x1c{left:250.306655pt;}
.x1e{left:255.906655pt;}
.x1d{left:285.026655pt;}
.x30{left:306.946655pt;}
.x1b{left:320.386655pt;}
.x12{left:322.146655pt;}
.x2f{left:331.586655pt;}
.x29{left:348.706655pt;}
.x31{left:364.066655pt;}
.x13{left:375.906655pt;}
.x14{left:377.186655pt;}
.x2e{left:401.346655pt;}
.xc{left:404.733321pt;}
.xf{left:408.093321pt;}
.x2a{left:410.333321pt;}
.x2b{left:411.613321pt;}
.x27{left:486.493321pt;}
.x25{left:493.853321pt;}
.x24{left:498.013321pt;}
.x2{left:562.493333pt;}
.x15{left:629.573321pt;}
.x16{left:631.493321pt;}
.xe{left:649.573321pt;}
.xa{left:668.133333pt;}
.x17{left:680.453321pt;}
.x18{left:682.533321pt;}
}




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