
    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_7d35cae6fe243688ae492786.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_1f6e53690287b44e05ff9c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_191b8b6be8b71a9c28a583d1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ea14123fecd0ed30964f860f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a796d8f84fc3d8fe3de260fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_342ac497f26bbb12dfb0b1e0.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_7d65bc7b2a1024e48700388d.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_1e08ad9b84fce652573ea2c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_70e7b8ce4556f77fac09aee9.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.129600px;}
.ls5{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.ls10{letter-spacing:0.252720px;}
.lsa{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:3.420000px;}
.ls12{letter-spacing:14.940000px;}
.ls7{letter-spacing:16.380000px;}
.ls13{letter-spacing:17.820000px;}
.ls14{letter-spacing:19.980000px;}
.ls9{letter-spacing:28.620000px;}
.ls17{letter-spacing:129.221280px;}
.ls15{letter-spacing:131.580000px;}
.ls16{letter-spacing:131.724000px;}
.lsd{letter-spacing:153.701280px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.312720px;}
.ws6{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.041280px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws3{word-spacing:0.000000px;}
._2a{margin-left:-6.382080px;}
._8{margin-left:-5.222880px;}
._b{margin-left:-4.033440px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.189440px;}
._2{width:1.525440px;}
._4{width:3.463920px;}
._3{width:4.936080px;}
._7{width:6.723120px;}
._15{width:7.750080px;}
._14{width:8.760960px;}
._a{width:10.118880px;}
._5{width:11.372400px;}
._f{width:12.686160px;}
._1b{width:13.815360px;}
._24{width:14.870880px;}
._1d{width:16.426800px;}
._1e{width:17.616240px;}
._27{width:18.686400px;}
._e{width:19.811280px;}
._1a{width:23.007600px;}
._17{width:25.019280px;}
._16{width:26.545680px;}
._13{width:28.062000px;}
._6{width:29.399760px;}
._1c{width:30.830880px;}
._c{width:32.179680px;}
._d{width:33.200640px;}
._1f{width:34.454160px;}
._26{width:35.802960px;}
._34{width:36.822000px;}
._25{width:39.171600px;}
._28{width:42.709680px;}
._10{width:45.068400px;}
._11{width:46.089360px;}
._9{width:47.427120px;}
._29{width:50.806800px;}
._19{width:51.986160px;}
._18{width:53.081280px;}
._22{width:54.590880px;}
._23{width:55.594560px;}
._2b{width:56.777760px;}
._2c{width:58.135680px;}
._12{width:60.063120px;}
._33{width:61.747920px;}
._2d{width:66.718080px;}
._2e{width:67.823280px;}
._20{width:86.093280px;}
._21{width:87.535440px;}
._31{width:89.884080px;}
._2f{width:131.184000px;}
._30{width:147.925440px;}
._32{width:194.962800px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(79,97,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,192,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:8.100000px;}
.y7{bottom:12.960000px;}
.y86{bottom:35.820000px;}
.y7e{bottom:36.000000px;}
.y6{bottom:39.420000px;}
.y5{bottom:57.600000px;}
.y85{bottom:63.765000px;}
.y84{bottom:91.485000px;}
.y2f{bottom:98.820000px;}
.ya0{bottom:100.980000px;}
.y2b{bottom:102.420000px;}
.y2e{bottom:104.040000px;}
.y34{bottom:116.100000px;}
.y2d{bottom:116.460000px;}
.y83{bottom:119.205000px;}
.y7d{bottom:120.600000px;}
.y33{bottom:121.320000px;}
.y9f{bottom:128.700000px;}
.y2a{bottom:130.320000px;}
.y78{bottom:133.380000px;}
.y32{bottom:133.740000px;}
.y77{bottom:138.600000px;}
.y82{bottom:146.925000px;}
.y76{bottom:151.020000px;}
.y56{bottom:151.920000px;}
.y9e{bottom:156.600000px;}
.y29{bottom:158.040000px;}
.y81{bottom:174.825000px;}
.y75{bottom:176.760000px;}
.y7b{bottom:176.940000px;}
.y55{bottom:179.820000px;}
.y9d{bottom:184.320000px;}
.y28{bottom:185.760000px;}
.y80{bottom:202.545000px;}
.y74{bottom:204.480000px;}
.y54{bottom:207.540000px;}
.y9c{bottom:212.070000px;}
.y27{bottom:213.510000px;}
.y36{bottom:221.070000px;}
.y73{bottom:232.230000px;}
.y53{bottom:235.290000px;}
.y9b{bottom:239.790000px;}
.y26{bottom:241.410000px;}
.y72{bottom:260.130000px;}
.y52{bottom:263.190000px;}
.y9a{bottom:267.690000px;}
.y25{bottom:269.130000px;}
.y71{bottom:287.850000px;}
.y51{bottom:290.910000px;}
.y99{bottom:295.410000px;}
.y24{bottom:296.850000px;}
.y70{bottom:315.570000px;}
.y50{bottom:318.630000px;}
.y98{bottom:323.130000px;}
.y23{bottom:324.750000px;}
.y6f{bottom:343.470000px;}
.y4f{bottom:346.350000px;}
.y97{bottom:351.030000px;}
.y22{bottom:352.470000px;}
.y31{bottom:360.030000px;}
.y6e{bottom:371.190000px;}
.y4e{bottom:374.250000px;}
.y96{bottom:378.750000px;}
.y21{bottom:380.190000px;}
.y6d{bottom:398.910000px;}
.y4c{bottom:401.970000px;}
.y95{bottom:406.470000px;}
.y20{bottom:407.910000px;}
.y4d{bottom:409.530000px;}
.y6c{bottom:426.630000px;}
.y4b{bottom:429.690000px;}
.y94{bottom:434.190000px;}
.y1f{bottom:435.810000px;}
.y6b{bottom:454.575000px;}
.y4a{bottom:457.455000px;}
.y93{bottom:462.135000px;}
.y1e{bottom:463.575000px;}
.y6a{bottom:482.295000px;}
.y49{bottom:485.355000px;}
.y92{bottom:489.855000px;}
.y1d{bottom:491.295000px;}
.y69{bottom:510.015000px;}
.y48{bottom:513.075000px;}
.y91{bottom:517.575000px;}
.y1c{bottom:519.195000px;}
.y67{bottom:537.915000px;}
.y47{bottom:540.795000px;}
.y90{bottom:545.295000px;}
.y68{bottom:545.475000px;}
.y1b{bottom:546.915000px;}
.y66{bottom:565.635000px;}
.y5b{bottom:568.515000px;}
.y46{bottom:568.695000px;}
.y8f{bottom:573.195000px;}
.y1a{bottom:574.635000px;}
.y5c{bottom:576.075000px;}
.y65{bottom:593.355000px;}
.y45{bottom:596.415000px;}
.y5a{bottom:597.855000px;}
.y8e{bottom:600.915000px;}
.y19{bottom:602.355000px;}
.y7a{bottom:609.915000px;}
.y64{bottom:621.075000px;}
.y44{bottom:624.135000px;}
.y59{bottom:627.015000px;}
.y8d{bottom:628.635000px;}
.y18{bottom:630.255000px;}
.y63{bottom:648.975000px;}
.y43{bottom:651.855000px;}
.y58{bottom:656.535000px;}
.y17{bottom:657.975000px;}
.y62{bottom:676.515000px;}
.y42{bottom:679.755000px;}
.y57{bottom:684.105000px;}
.y8c{bottom:684.285000px;}
.y16{bottom:685.725000px;}
.y61{bottom:705.885000px;}
.y41{bottom:707.505000px;}
.y8b{bottom:712.005000px;}
.y15{bottom:713.445000px;}
.y40{bottom:735.225000px;}
.y8a{bottom:739.725000px;}
.y14{bottom:741.345000px;}
.y3f{bottom:763.125000px;}
.y60{bottom:764.385000px;}
.y89{bottom:767.625000px;}
.y13{bottom:769.065000px;}
.y35{bottom:776.625000px;}
.y3e{bottom:790.845000px;}
.y5f{bottom:793.725000px;}
.y88{bottom:795.345000px;}
.y12{bottom:796.785000px;}
.y3d{bottom:818.565000px;}
.y5e{bottom:823.065000px;}
.y11{bottom:824.685000px;}
.y3c{bottom:846.285000px;}
.y87{bottom:850.965000px;}
.y10{bottom:852.405000px;}
.y7f{bottom:871.305000px;}
.y3b{bottom:874.005000px;}
.yf{bottom:880.125000px;}
.y3a{bottom:903.345000px;}
.ye{bottom:907.845000px;}
.y2c{bottom:915.405000px;}
.y39{bottom:932.550000px;}
.yd{bottom:935.790000px;}
.y38{bottom:962.070000px;}
.yc{bottom:963.510000px;}
.y37{bottom:989.610000px;}
.yb{bottom:991.230000px;}
.ya{bottom:1019.130000px;}
.y79{bottom:1026.690000px;}
.y9{bottom:1046.850000px;}
.y30{bottom:1054.410000px;}
.y8{bottom:1074.570000px;}
.y5d{bottom:1082.130000px;}
.y4{bottom:1098.330000px;}
.y3{bottom:1126.230000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1198.440000px;}
.he{height:27.720000px;}
.h5{height:36.360000px;}
.hb{height:38.158594px;}
.h2{height:48.224531px;}
.ha{height:52.998047px;}
.hf{height:55.620000px;}
.hc{height:58.651172px;}
.h9{height:58.819922px;}
.h4{height:65.010937px;}
.h8{height:82.635820px;}
.h6{height:82.676953px;}
.h7{height:84.898125px;}
.hd{height:86.585445px;}
.h3{height:108.843750px;}
.h10{height:222.150000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:55.296000px;}
.w6{width:381.495000px;}
.w5{width:382.065000px;}
.w1{width:893.250000px;}
.w4{width:893.339973px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2c{left:7.740000px;}
.x7{left:17.100000px;}
.x2b{left:21.600000px;}
.x6{left:27.000000px;}
.x5{left:84.995987px;}
.x14{left:89.855987px;}
.x25{left:94.715987px;}
.x8{left:141.155987px;}
.xe{left:142.775987px;}
.x11{left:156.089973px;}
.x12{left:162.929987px;}
.x1f{left:185.969973px;}
.xb{left:189.929987px;}
.x20{left:192.809987px;}
.x21{left:197.849973px;}
.x28{left:200.369973px;}
.x9{left:202.529987px;}
.x22{left:204.689987px;}
.x29{left:208.649973px;}
.x3{left:213.689987px;}
.x2a{left:222.329987px;}
.x2{left:267.734987px;}
.xc{left:295.274987px;}
.x13{left:301.034987px;}
.x2e{left:311.834987px;}
.x2d{left:404.565000px;}
.x10{left:408.524987px;}
.x17{left:438.944973px;}
.x4{left:445.244987px;}
.xa{left:446.504987px;}
.x1a{left:453.884987px;}
.x1b{left:530.204973px;}
.x1c{left:537.044987px;}
.x18{left:541.544973px;}
.x19{left:548.384987px;}
.x26{left:579.749973px;}
.x1{left:581.729987px;}
.x27{left:593.429987px;}
.x1d{left:614.489973px;}
.x1e{left:621.329987px;}
.xf{left:640.589987px;}
.x15{left:702.689973px;}
.x16{left:709.529987px;}
.x23{left:724.469973px;}
.x24{left:738.179987px;}
.xd{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.115200pt;}
.ls5{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls10{letter-spacing:0.224640pt;}
.lsa{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:3.040000pt;}
.ls12{letter-spacing:13.280000pt;}
.ls7{letter-spacing:14.560000pt;}
.ls13{letter-spacing:15.840000pt;}
.ls14{letter-spacing:17.760000pt;}
.ls9{letter-spacing:25.440000pt;}
.ls17{letter-spacing:114.863360pt;}
.ls15{letter-spacing:116.960000pt;}
.ls16{letter-spacing:117.088000pt;}
.lsd{letter-spacing:136.623360pt;}
.ws0{word-spacing:-19.040000pt;}
.ws8{word-spacing:-18.944640pt;}
.ws6{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.703360pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws3{word-spacing:0.000000pt;}
._2a{margin-left:-5.672960pt;}
._8{margin-left:-4.642560pt;}
._b{margin-left:-3.585280pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.057280pt;}
._2{width:1.355947pt;}
._4{width:3.079040pt;}
._3{width:4.387627pt;}
._7{width:5.976107pt;}
._15{width:6.888960pt;}
._14{width:7.787520pt;}
._a{width:8.994560pt;}
._5{width:10.108800pt;}
._f{width:11.276587pt;}
._1b{width:12.280320pt;}
._24{width:13.218560pt;}
._1d{width:14.601600pt;}
._1e{width:15.658880pt;}
._27{width:16.610133pt;}
._e{width:17.610027pt;}
._1a{width:20.451200pt;}
._17{width:22.239360pt;}
._16{width:23.596160pt;}
._13{width:24.944000pt;}
._6{width:26.133120pt;}
._1c{width:27.405227pt;}
._c{width:28.604160pt;}
._d{width:29.511680pt;}
._1f{width:30.625920pt;}
._26{width:31.824853pt;}
._34{width:32.730667pt;}
._25{width:34.819200pt;}
._28{width:37.964160pt;}
._10{width:40.060800pt;}
._11{width:40.968320pt;}
._9{width:42.157440pt;}
._29{width:45.161600pt;}
._19{width:46.209920pt;}
._18{width:47.183360pt;}
._22{width:48.525227pt;}
._23{width:49.417387pt;}
._2b{width:50.469120pt;}
._2c{width:51.676160pt;}
._12{width:53.389440pt;}
._33{width:54.887040pt;}
._2d{width:59.304960pt;}
._2e{width:60.287360pt;}
._20{width:76.527360pt;}
._21{width:77.809280pt;}
._31{width:79.896960pt;}
._2f{width:116.608000pt;}
._30{width:131.489280pt;}
._32{width:173.300267pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:7.200000pt;}
.y7{bottom:11.520000pt;}
.y86{bottom:31.840000pt;}
.y7e{bottom:32.000000pt;}
.y6{bottom:35.040000pt;}
.y5{bottom:51.200000pt;}
.y85{bottom:56.680000pt;}
.y84{bottom:81.320000pt;}
.y2f{bottom:87.840000pt;}
.ya0{bottom:89.760000pt;}
.y2b{bottom:91.040000pt;}
.y2e{bottom:92.480000pt;}
.y34{bottom:103.200000pt;}
.y2d{bottom:103.520000pt;}
.y83{bottom:105.960000pt;}
.y7d{bottom:107.200000pt;}
.y33{bottom:107.840000pt;}
.y9f{bottom:114.400000pt;}
.y2a{bottom:115.840000pt;}
.y78{bottom:118.560000pt;}
.y32{bottom:118.880000pt;}
.y77{bottom:123.200000pt;}
.y82{bottom:130.600000pt;}
.y76{bottom:134.240000pt;}
.y56{bottom:135.040000pt;}
.y9e{bottom:139.200000pt;}
.y29{bottom:140.480000pt;}
.y81{bottom:155.400000pt;}
.y75{bottom:157.120000pt;}
.y7b{bottom:157.280000pt;}
.y55{bottom:159.840000pt;}
.y9d{bottom:163.840000pt;}
.y28{bottom:165.120000pt;}
.y80{bottom:180.040000pt;}
.y74{bottom:181.760000pt;}
.y54{bottom:184.480000pt;}
.y9c{bottom:188.506667pt;}
.y27{bottom:189.786667pt;}
.y36{bottom:196.506667pt;}
.y73{bottom:206.426667pt;}
.y53{bottom:209.146667pt;}
.y9b{bottom:213.146667pt;}
.y26{bottom:214.586667pt;}
.y72{bottom:231.226667pt;}
.y52{bottom:233.946667pt;}
.y9a{bottom:237.946667pt;}
.y25{bottom:239.226667pt;}
.y71{bottom:255.866667pt;}
.y51{bottom:258.586667pt;}
.y99{bottom:262.586667pt;}
.y24{bottom:263.866667pt;}
.y70{bottom:280.506667pt;}
.y50{bottom:283.226667pt;}
.y98{bottom:287.226667pt;}
.y23{bottom:288.666667pt;}
.y6f{bottom:305.306667pt;}
.y4f{bottom:307.866667pt;}
.y97{bottom:312.026667pt;}
.y22{bottom:313.306667pt;}
.y31{bottom:320.026667pt;}
.y6e{bottom:329.946667pt;}
.y4e{bottom:332.666667pt;}
.y96{bottom:336.666667pt;}
.y21{bottom:337.946667pt;}
.y6d{bottom:354.586667pt;}
.y4c{bottom:357.306667pt;}
.y95{bottom:361.306667pt;}
.y20{bottom:362.586667pt;}
.y4d{bottom:364.026667pt;}
.y6c{bottom:379.226667pt;}
.y4b{bottom:381.946667pt;}
.y94{bottom:385.946667pt;}
.y1f{bottom:387.386667pt;}
.y6b{bottom:404.066667pt;}
.y4a{bottom:406.626667pt;}
.y93{bottom:410.786667pt;}
.y1e{bottom:412.066667pt;}
.y6a{bottom:428.706667pt;}
.y49{bottom:431.426667pt;}
.y92{bottom:435.426667pt;}
.y1d{bottom:436.706667pt;}
.y69{bottom:453.346667pt;}
.y48{bottom:456.066667pt;}
.y91{bottom:460.066667pt;}
.y1c{bottom:461.506667pt;}
.y67{bottom:478.146667pt;}
.y47{bottom:480.706667pt;}
.y90{bottom:484.706667pt;}
.y68{bottom:484.866667pt;}
.y1b{bottom:486.146667pt;}
.y66{bottom:502.786667pt;}
.y5b{bottom:505.346667pt;}
.y46{bottom:505.506667pt;}
.y8f{bottom:509.506667pt;}
.y1a{bottom:510.786667pt;}
.y5c{bottom:512.066667pt;}
.y65{bottom:527.426667pt;}
.y45{bottom:530.146667pt;}
.y5a{bottom:531.426667pt;}
.y8e{bottom:534.146667pt;}
.y19{bottom:535.426667pt;}
.y7a{bottom:542.146667pt;}
.y64{bottom:552.066667pt;}
.y44{bottom:554.786667pt;}
.y59{bottom:557.346667pt;}
.y8d{bottom:558.786667pt;}
.y18{bottom:560.226667pt;}
.y63{bottom:576.866667pt;}
.y43{bottom:579.426667pt;}
.y58{bottom:583.586667pt;}
.y17{bottom:584.866667pt;}
.y62{bottom:601.346667pt;}
.y42{bottom:604.226667pt;}
.y57{bottom:608.093333pt;}
.y8c{bottom:608.253333pt;}
.y16{bottom:609.533333pt;}
.y61{bottom:627.453333pt;}
.y41{bottom:628.893333pt;}
.y8b{bottom:632.893333pt;}
.y15{bottom:634.173333pt;}
.y40{bottom:653.533333pt;}
.y8a{bottom:657.533333pt;}
.y14{bottom:658.973333pt;}
.y3f{bottom:678.333333pt;}
.y60{bottom:679.453333pt;}
.y89{bottom:682.333333pt;}
.y13{bottom:683.613333pt;}
.y35{bottom:690.333333pt;}
.y3e{bottom:702.973333pt;}
.y5f{bottom:705.533333pt;}
.y88{bottom:706.973333pt;}
.y12{bottom:708.253333pt;}
.y3d{bottom:727.613333pt;}
.y5e{bottom:731.613333pt;}
.y11{bottom:733.053333pt;}
.y3c{bottom:752.253333pt;}
.y87{bottom:756.413333pt;}
.y10{bottom:757.693333pt;}
.y7f{bottom:774.493333pt;}
.y3b{bottom:776.893333pt;}
.yf{bottom:782.333333pt;}
.y3a{bottom:802.973333pt;}
.ye{bottom:806.973333pt;}
.y2c{bottom:813.693333pt;}
.y39{bottom:828.933333pt;}
.yd{bottom:831.813333pt;}
.y38{bottom:855.173333pt;}
.yc{bottom:856.453333pt;}
.y37{bottom:879.653333pt;}
.yb{bottom:881.093333pt;}
.ya{bottom:905.893333pt;}
.y79{bottom:912.613333pt;}
.y9{bottom:930.533333pt;}
.y30{bottom:937.253333pt;}
.y8{bottom:955.173333pt;}
.y5d{bottom:961.893333pt;}
.y4{bottom:976.293333pt;}
.y3{bottom:1001.093333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1065.280000pt;}
.he{height:24.640000pt;}
.h5{height:32.320000pt;}
.hb{height:33.918750pt;}
.h2{height:42.866250pt;}
.ha{height:47.109375pt;}
.hf{height:49.440000pt;}
.hc{height:52.134375pt;}
.h9{height:52.284375pt;}
.h4{height:57.787500pt;}
.h8{height:73.454062pt;}
.h6{height:73.490625pt;}
.h7{height:75.465000pt;}
.hd{height:76.964840pt;}
.h3{height:96.750000pt;}
.h10{height:197.466667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:49.152000pt;}
.w6{width:339.106667pt;}
.w5{width:339.613333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079976pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2c{left:6.880000pt;}
.x7{left:15.200000pt;}
.x2b{left:19.200000pt;}
.x6{left:24.000000pt;}
.x5{left:75.551988pt;}
.x14{left:79.871988pt;}
.x25{left:84.191988pt;}
.x8{left:125.471988pt;}
.xe{left:126.911988pt;}
.x11{left:138.746643pt;}
.x12{left:144.826655pt;}
.x1f{left:165.306643pt;}
.xb{left:168.826655pt;}
.x20{left:171.386655pt;}
.x21{left:175.866643pt;}
.x28{left:178.106643pt;}
.x9{left:180.026655pt;}
.x22{left:181.946655pt;}
.x29{left:185.466643pt;}
.x3{left:189.946655pt;}
.x2a{left:197.626655pt;}
.x2{left:237.986655pt;}
.xc{left:262.466655pt;}
.x13{left:267.586655pt;}
.x2e{left:277.186655pt;}
.x2d{left:359.613333pt;}
.x10{left:363.133322pt;}
.x17{left:390.173310pt;}
.x4{left:395.773321pt;}
.xa{left:396.893321pt;}
.x1a{left:403.453321pt;}
.x1b{left:471.293310pt;}
.x1c{left:477.373321pt;}
.x18{left:481.373310pt;}
.x19{left:487.453322pt;}
.x26{left:515.333310pt;}
.x1{left:517.093322pt;}
.x27{left:527.493322pt;}
.x1d{left:546.213310pt;}
.x1e{left:552.293321pt;}
.xf{left:569.413322pt;}
.x15{left:624.613310pt;}
.x16{left:630.693322pt;}
.x23{left:643.973310pt;}
.x24{left:656.159988pt;}
.xd{left:718.239988pt;}
}




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