
    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_aedbd99f94884f09ae3eb9d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.181152;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_b7931fdcebd4f7907f87e75c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_064a4e5d5ed92ec994319988.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.181152;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_32c942d2c6c25fa50e8a2dbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.181152;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_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5344cd5890307ceedbc54e84.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e5c51f78508c04c778d07052.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.320000px;}
.ls16{letter-spacing:-1.074000px;}
.ls3{letter-spacing:-0.888000px;}
.lsc{letter-spacing:-0.606000px;}
.ls2{letter-spacing:-0.368400px;}
.ls4{letter-spacing:-0.351600px;}
.ls9{letter-spacing:-0.334200px;}
.ls12{letter-spacing:-0.227400px;}
.ls15{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.210000px;}
.ls6{letter-spacing:-0.169800px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.118200px;}
.lsb{letter-spacing:0.152400px;}
.lsf{letter-spacing:0.166800px;}
.ls1{letter-spacing:0.296400px;}
.ls8{letter-spacing:0.368400px;}
.ls7{letter-spacing:4.043520px;}
.lse{letter-spacing:6.923520px;}
.ls14{letter-spacing:16.283520px;}
.lsa{letter-spacing:20.603520px;}
.ls11{letter-spacing:59.345280px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws6{word-spacing:-23.365440px;}
.ws0{word-spacing:-23.316480px;}
.ws3{word-spacing:-23.146680px;}
.ws9{word-spacing:-23.100480px;}
.ws7{word-spacing:-22.948080px;}
.ws2{word-spacing:-22.654080px;}
.ws5{word-spacing:-21.187920px;}
.ws4{word-spacing:-21.035520px;}
.ws1{word-spacing:0.000000px;}
._21{margin-left:-2.316480px;}
._0{margin-left:-1.008000px;}
._1{width:1.092000px;}
._9{width:2.531520px;}
._a{width:3.908160px;}
._14{width:4.982400px;}
._c{width:6.624000px;}
._d{width:7.683840px;}
._11{width:9.524160px;}
._10{width:10.560960px;}
._12{width:11.856960px;}
._1b{width:12.898560px;}
._b{width:13.944000px;}
._2{width:15.235200px;}
._3{width:16.773120px;}
._15{width:18.230400px;}
._4{width:19.422720px;}
._5{width:20.468160px;}
._6{width:22.271040px;}
._8{width:25.337760px;}
._7{width:26.377920px;}
._16{width:28.350720px;}
._1f{width:29.491200px;}
._1d{width:31.345920px;}
._e{width:33.252480px;}
._f{width:34.257120px;}
._13{width:36.048960px;}
._1e{width:37.117440px;}
._17{width:38.352960px;}
._18{width:39.692160px;}
._1c{width:41.059680px;}
._20{width:42.492480px;}
._22{width:44.141280px;}
._19{width:52.197120px;}
._1a{width:53.455680px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y21{bottom:110.376000px;}
.y6d{bottom:113.796000px;}
.y43{bottom:119.376000px;}
.y67{bottom:124.956000px;}
.y90{bottom:136.296000px;}
.ya0{bottom:138.096000px;}
.y20{bottom:140.436000px;}
.y6c{bottom:143.856000px;}
.ybe{bottom:144.216000px;}
.y42{bottom:149.436000px;}
.y66{bottom:155.010000px;}
.y82{bottom:161.490000px;}
.ybd{bottom:164.190000px;}
.y8f{bottom:166.350000px;}
.y9f{bottom:168.150000px;}
.y1f{bottom:170.490000px;}
.y41{bottom:179.490000px;}
.y65{bottom:185.070000px;}
.y81{bottom:186.690000px;}
.ybc{bottom:189.930000px;}
.y8e{bottom:196.410000px;}
.y9e{bottom:198.390000px;}
.y1e{bottom:200.550000px;}
.y80{bottom:204.870000px;}
.y40{bottom:209.550000px;}
.ybb{bottom:209.910000px;}
.y64{bottom:215.130000px;}
.y7f{bottom:223.050000px;}
.y8d{bottom:226.470000px;}
.yba{bottom:229.890000px;}
.y1d{bottom:230.610000px;}
.y9d{bottom:234.030000px;}
.y3f{bottom:239.610000px;}
.y7e{bottom:241.410000px;}
.y63{bottom:245.190000px;}
.yb9{bottom:255.630000px;}
.y8c{bottom:256.530000px;}
.y1c{bottom:260.670000px;}
.y3e{bottom:269.670000px;}
.y62{bottom:275.475000px;}
.yb8{bottom:275.655000px;}
.y7d{bottom:275.835000px;}
.y8b{bottom:286.635000px;}
.y1b{bottom:296.535000px;}
.y3d{bottom:299.775000px;}
.yb7{bottom:301.395000px;}
.y61{bottom:305.535000px;}
.y7c{bottom:305.895000px;}
.y8a{bottom:316.695000px;}
.yb6{bottom:321.555000px;}
.y1a{bottom:326.595000px;}
.y3c{bottom:330.015000px;}
.y60{bottom:335.595000px;}
.y7b{bottom:335.955000px;}
.y6b{bottom:341.175000px;}
.y89{bottom:346.755000px;}
.yb5{bottom:347.115000px;}
.y19{bottom:356.655000px;}
.y58{bottom:360.075000px;}
.y3b{bottom:365.655000px;}
.y7a{bottom:366.015000px;}
.yb4{bottom:367.275000px;}
.y6a{bottom:371.235000px;}
.y88{bottom:376.815000px;}
.y18{bottom:386.715000px;}
.y9c{bottom:390.135000px;}
.yb3{bottom:392.835000px;}
.y57{bottom:395.715000px;}
.y79{bottom:396.075000px;}
.y3a{bottom:401.295000px;}
.y87{bottom:406.875000px;}
.yb2{bottom:412.995000px;}
.y17{bottom:416.775000px;}
.y56{bottom:425.775000px;}
.y78{bottom:426.315000px;}
.y39{bottom:431.355000px;}
.y5f{bottom:437.115000px;}
.yb1{bottom:438.555000px;}
.y16{bottom:446.835000px;}
.y55{bottom:455.835000px;}
.yb0{bottom:458.715000px;}
.y38{bottom:461.415000px;}
.y77{bottom:461.955000px;}
.y5e{bottom:467.175000px;}
.y15{bottom:476.895000px;}
.yaf{bottom:484.275000px;}
.y54{bottom:485.895000px;}
.y37{bottom:491.655000px;}
.y5d{bottom:497.235000px;}
.y76{bottom:497.595000px;}
.yae{bottom:504.435000px;}
.y14{bottom:507.135000px;}
.y53{bottom:515.955000px;}
.y36{bottom:521.715000px;}
.y75{bottom:522.795000px;}
.yad{bottom:524.415000px;}
.y5c{bottom:527.295000px;}
.y13{bottom:537.195000px;}
.y74{bottom:540.975000px;}
.y52{bottom:546.195000px;}
.yac{bottom:550.155000px;}
.y35{bottom:551.775000px;}
.y5b{bottom:557.385000px;}
.y73{bottom:559.185000px;}
.y86{bottom:562.965000px;}
.y12{bottom:567.285000px;}
.yab{bottom:570.165000px;}
.y51{bottom:576.285000px;}
.y69{bottom:581.865000px;}
.y72{bottom:583.125000px;}
.y34{bottom:587.445000px;}
.y85{bottom:593.025000px;}
.yaa{bottom:595.905000px;}
.y11{bottom:597.345000px;}
.y9b{bottom:606.345000px;}
.y50{bottom:611.925000px;}
.ya9{bottom:615.885000px;}
.y33{bottom:617.505000px;}
.y84{bottom:623.085000px;}
.y10{bottom:627.405000px;}
.ya8{bottom:636.045000px;}
.y9a{bottom:636.405000px;}
.y4f{bottom:641.985000px;}
.y32{bottom:647.565000px;}
.y83{bottom:653.325000px;}
.ya7{bottom:661.605000px;}
.yf{bottom:663.045000px;}
.y4e{bottom:672.045000px;}
.y31{bottom:677.625000px;}
.ya6{bottom:681.765000px;}
.y71{bottom:683.385000px;}
.ye{bottom:698.865000px;}
.ya5{bottom:701.745000px;}
.y4d{bottom:702.105000px;}
.y30{bottom:707.865000px;}
.y70{bottom:713.445000px;}
.ya4{bottom:727.485000px;}
.yd{bottom:728.925000px;}
.y4c{bottom:732.165000px;}
.y2f{bottom:737.925000px;}
.y6f{bottom:743.505000px;}
.ya3{bottom:753.225000px;}
.yc{bottom:758.985000px;}
.y68{bottom:762.405000px;}
.y2e{bottom:767.985000px;}
.y6e{bottom:773.565000px;}
.ycc{bottom:780.765000px;}
.ya2{bottom:786.885000px;}
.yb{bottom:789.045000px;}
.y99{bottom:792.465000px;}
.y2d{bottom:798.045000px;}
.y4b{bottom:803.625000px;}
.ycb{bottom:805.605000px;}
.ya{bottom:819.105000px;}
.ya1{bottom:822.525000px;}
.yca{bottom:825.585000px;}
.y2c{bottom:828.105000px;}
.y4a{bottom:833.685000px;}
.y5a{bottom:839.490000px;}
.y9{bottom:849.210000px;}
.yc9{bottom:851.370000px;}
.y98{bottom:858.210000px;}
.y2b{bottom:863.790000px;}
.y59{bottom:869.550000px;}
.yc8{bottom:871.350000px;}
.y8{bottom:879.270000px;}
.y97{bottom:888.270000px;}
.yc7{bottom:891.510000px;}
.y2a{bottom:893.850000px;}
.y49{bottom:899.610000px;}
.y7{bottom:915.090000px;}
.yc6{bottom:917.250000px;}
.y96{bottom:918.330000px;}
.y29{bottom:924.090000px;}
.y48{bottom:929.670000px;}
.yc5{bottom:942.810000px;}
.y95{bottom:948.390000px;}
.y6{bottom:950.730000px;}
.y28{bottom:954.150000px;}
.y47{bottom:959.730000px;}
.yc4{bottom:962.970000px;}
.y94{bottom:978.630000px;}
.yc3{bottom:982.950000px;}
.y27{bottom:984.210000px;}
.y5{bottom:986.370000px;}
.y46{bottom:989.790000px;}
.y93{bottom:1008.690000px;}
.y26{bottom:1014.270000px;}
.y45{bottom:1019.850000px;}
.y4{bottom:1022.190000px;}
.yc2{bottom:1028.670000px;}
.y92{bottom:1038.750000px;}
.y25{bottom:1044.330000px;}
.y44{bottom:1049.910000px;}
.yc1{bottom:1054.410000px;}
.y3{bottom:1061.610000px;}
.y91{bottom:1074.390000px;}
.y24{bottom:1079.970000px;}
.yc0{bottom:1094.550000px;}
.y2{bottom:1101.750000px;}
.y23{bottom:1110.030000px;}
.ybf{bottom:1120.110000px;}
.y1{bottom:1138.680000px;}
.y22{bottom:1140.300000px;}
.h7{height:45.184219px;}
.h5{height:58.242656px;}
.h3{height:64.558125px;}
.h6{height:68.084282px;}
.h2{height:70.171875px;}
.h4{height:82.101094px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:127.656000px;}
.x3{left:175.530000px;}
.xa{left:177.690000px;}
.x8{left:180.750000px;}
.x1{left:185.970000px;}
.x9{left:208.650000px;}
.x4{left:350.895000px;}
.x5{left:354.675000px;}
.x6{left:420.375000px;}
.x2{left:446.475000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.173333pt;}
.ls16{letter-spacing:-0.954667pt;}
.ls3{letter-spacing:-0.789333pt;}
.lsc{letter-spacing:-0.538667pt;}
.ls2{letter-spacing:-0.327467pt;}
.ls4{letter-spacing:-0.312533pt;}
.ls9{letter-spacing:-0.297067pt;}
.ls12{letter-spacing:-0.202133pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.186667pt;}
.ls6{letter-spacing:-0.150933pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.105067pt;}
.lsb{letter-spacing:0.135467pt;}
.lsf{letter-spacing:0.148267pt;}
.ls1{letter-spacing:0.263467pt;}
.ls8{letter-spacing:0.327467pt;}
.ls7{letter-spacing:3.594240pt;}
.lse{letter-spacing:6.154240pt;}
.ls14{letter-spacing:14.474240pt;}
.lsa{letter-spacing:18.314240pt;}
.ls11{letter-spacing:52.751360pt;}
.ws8{word-spacing:-58.880000pt;}
.ws6{word-spacing:-20.769280pt;}
.ws0{word-spacing:-20.725760pt;}
.ws3{word-spacing:-20.574827pt;}
.ws9{word-spacing:-20.533760pt;}
.ws7{word-spacing:-20.398293pt;}
.ws2{word-spacing:-20.136960pt;}
.ws5{word-spacing:-18.833707pt;}
.ws4{word-spacing:-18.698240pt;}
.ws1{word-spacing:0.000000pt;}
._21{margin-left:-2.059093pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.970667pt;}
._9{width:2.250240pt;}
._a{width:3.473920pt;}
._14{width:4.428800pt;}
._c{width:5.888000pt;}
._d{width:6.830080pt;}
._11{width:8.465920pt;}
._10{width:9.387520pt;}
._12{width:10.539520pt;}
._1b{width:11.465387pt;}
._b{width:12.394667pt;}
._2{width:13.542400pt;}
._3{width:14.909440pt;}
._15{width:16.204800pt;}
._4{width:17.264640pt;}
._5{width:18.193920pt;}
._6{width:19.796480pt;}
._8{width:22.522453pt;}
._7{width:23.447040pt;}
._16{width:25.200640pt;}
._1f{width:26.214400pt;}
._1d{width:27.863040pt;}
._e{width:29.557760pt;}
._f{width:30.450773pt;}
._13{width:32.043520pt;}
._1e{width:32.993280pt;}
._17{width:34.091520pt;}
._18{width:35.281920pt;}
._1c{width:36.497493pt;}
._20{width:37.771093pt;}
._22{width:39.236693pt;}
._19{width:46.397440pt;}
._1a{width:47.516160pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:98.112000pt;}
.y6d{bottom:101.152000pt;}
.y43{bottom:106.112000pt;}
.y67{bottom:111.072000pt;}
.y90{bottom:121.152000pt;}
.ya0{bottom:122.752000pt;}
.y20{bottom:124.832000pt;}
.y6c{bottom:127.872000pt;}
.ybe{bottom:128.192000pt;}
.y42{bottom:132.832000pt;}
.y66{bottom:137.786667pt;}
.y82{bottom:143.546667pt;}
.ybd{bottom:145.946667pt;}
.y8f{bottom:147.866667pt;}
.y9f{bottom:149.466667pt;}
.y1f{bottom:151.546667pt;}
.y41{bottom:159.546667pt;}
.y65{bottom:164.506667pt;}
.y81{bottom:165.946667pt;}
.ybc{bottom:168.826667pt;}
.y8e{bottom:174.586667pt;}
.y9e{bottom:176.346667pt;}
.y1e{bottom:178.266667pt;}
.y80{bottom:182.106667pt;}
.y40{bottom:186.266667pt;}
.ybb{bottom:186.586667pt;}
.y64{bottom:191.226667pt;}
.y7f{bottom:198.266667pt;}
.y8d{bottom:201.306667pt;}
.yba{bottom:204.346667pt;}
.y1d{bottom:204.986667pt;}
.y9d{bottom:208.026667pt;}
.y3f{bottom:212.986667pt;}
.y7e{bottom:214.586667pt;}
.y63{bottom:217.946667pt;}
.yb9{bottom:227.226667pt;}
.y8c{bottom:228.026667pt;}
.y1c{bottom:231.706667pt;}
.y3e{bottom:239.706667pt;}
.y62{bottom:244.866667pt;}
.yb8{bottom:245.026667pt;}
.y7d{bottom:245.186667pt;}
.y8b{bottom:254.786667pt;}
.y1b{bottom:263.586667pt;}
.y3d{bottom:266.466667pt;}
.yb7{bottom:267.906667pt;}
.y61{bottom:271.586667pt;}
.y7c{bottom:271.906667pt;}
.y8a{bottom:281.506667pt;}
.yb6{bottom:285.826667pt;}
.y1a{bottom:290.306667pt;}
.y3c{bottom:293.346667pt;}
.y60{bottom:298.306667pt;}
.y7b{bottom:298.626667pt;}
.y6b{bottom:303.266667pt;}
.y89{bottom:308.226667pt;}
.yb5{bottom:308.546667pt;}
.y19{bottom:317.026667pt;}
.y58{bottom:320.066667pt;}
.y3b{bottom:325.026667pt;}
.y7a{bottom:325.346667pt;}
.yb4{bottom:326.466667pt;}
.y6a{bottom:329.986667pt;}
.y88{bottom:334.946667pt;}
.y18{bottom:343.746667pt;}
.y9c{bottom:346.786667pt;}
.yb3{bottom:349.186667pt;}
.y57{bottom:351.746667pt;}
.y79{bottom:352.066667pt;}
.y3a{bottom:356.706667pt;}
.y87{bottom:361.666667pt;}
.yb2{bottom:367.106667pt;}
.y17{bottom:370.466667pt;}
.y56{bottom:378.466667pt;}
.y78{bottom:378.946667pt;}
.y39{bottom:383.426667pt;}
.y5f{bottom:388.546667pt;}
.yb1{bottom:389.826667pt;}
.y16{bottom:397.186667pt;}
.y55{bottom:405.186667pt;}
.yb0{bottom:407.746667pt;}
.y38{bottom:410.146667pt;}
.y77{bottom:410.626667pt;}
.y5e{bottom:415.266667pt;}
.y15{bottom:423.906667pt;}
.yaf{bottom:430.466667pt;}
.y54{bottom:431.906667pt;}
.y37{bottom:437.026667pt;}
.y5d{bottom:441.986667pt;}
.y76{bottom:442.306667pt;}
.yae{bottom:448.386667pt;}
.y14{bottom:450.786667pt;}
.y53{bottom:458.626667pt;}
.y36{bottom:463.746667pt;}
.y75{bottom:464.706667pt;}
.yad{bottom:466.146667pt;}
.y5c{bottom:468.706667pt;}
.y13{bottom:477.506667pt;}
.y74{bottom:480.866667pt;}
.y52{bottom:485.506667pt;}
.yac{bottom:489.026667pt;}
.y35{bottom:490.466667pt;}
.y5b{bottom:495.453333pt;}
.y73{bottom:497.053333pt;}
.y86{bottom:500.413333pt;}
.y12{bottom:504.253333pt;}
.yab{bottom:506.813333pt;}
.y51{bottom:512.253333pt;}
.y69{bottom:517.213333pt;}
.y72{bottom:518.333333pt;}
.y34{bottom:522.173333pt;}
.y85{bottom:527.133333pt;}
.yaa{bottom:529.693333pt;}
.y11{bottom:530.973333pt;}
.y9b{bottom:538.973333pt;}
.y50{bottom:543.933333pt;}
.ya9{bottom:547.453333pt;}
.y33{bottom:548.893333pt;}
.y84{bottom:553.853333pt;}
.y10{bottom:557.693333pt;}
.ya8{bottom:565.373333pt;}
.y9a{bottom:565.693333pt;}
.y4f{bottom:570.653333pt;}
.y32{bottom:575.613333pt;}
.y83{bottom:580.733333pt;}
.ya7{bottom:588.093333pt;}
.yf{bottom:589.373333pt;}
.y4e{bottom:597.373333pt;}
.y31{bottom:602.333333pt;}
.ya6{bottom:606.013333pt;}
.y71{bottom:607.453333pt;}
.ye{bottom:621.213333pt;}
.ya5{bottom:623.773333pt;}
.y4d{bottom:624.093333pt;}
.y30{bottom:629.213333pt;}
.y70{bottom:634.173333pt;}
.ya4{bottom:646.653333pt;}
.yd{bottom:647.933333pt;}
.y4c{bottom:650.813333pt;}
.y2f{bottom:655.933333pt;}
.y6f{bottom:660.893333pt;}
.ya3{bottom:669.533333pt;}
.yc{bottom:674.653333pt;}
.y68{bottom:677.693333pt;}
.y2e{bottom:682.653333pt;}
.y6e{bottom:687.613333pt;}
.ycc{bottom:694.013333pt;}
.ya2{bottom:699.453333pt;}
.yb{bottom:701.373333pt;}
.y99{bottom:704.413333pt;}
.y2d{bottom:709.373333pt;}
.y4b{bottom:714.333333pt;}
.ycb{bottom:716.093333pt;}
.ya{bottom:728.093333pt;}
.ya1{bottom:731.133333pt;}
.yca{bottom:733.853333pt;}
.y2c{bottom:736.093333pt;}
.y4a{bottom:741.053333pt;}
.y5a{bottom:746.213333pt;}
.y9{bottom:754.853333pt;}
.yc9{bottom:756.773333pt;}
.y98{bottom:762.853333pt;}
.y2b{bottom:767.813333pt;}
.y59{bottom:772.933333pt;}
.yc8{bottom:774.533333pt;}
.y8{bottom:781.573333pt;}
.y97{bottom:789.573333pt;}
.yc7{bottom:792.453333pt;}
.y2a{bottom:794.533333pt;}
.y49{bottom:799.653333pt;}
.y7{bottom:813.413333pt;}
.yc6{bottom:815.333333pt;}
.y96{bottom:816.293333pt;}
.y29{bottom:821.413333pt;}
.y48{bottom:826.373333pt;}
.yc5{bottom:838.053333pt;}
.y95{bottom:843.013333pt;}
.y6{bottom:845.093333pt;}
.y28{bottom:848.133333pt;}
.y47{bottom:853.093333pt;}
.yc4{bottom:855.973333pt;}
.y94{bottom:869.893333pt;}
.yc3{bottom:873.733333pt;}
.y27{bottom:874.853333pt;}
.y5{bottom:876.773333pt;}
.y46{bottom:879.813333pt;}
.y93{bottom:896.613333pt;}
.y26{bottom:901.573333pt;}
.y45{bottom:906.533333pt;}
.y4{bottom:908.613333pt;}
.yc2{bottom:914.373333pt;}
.y92{bottom:923.333333pt;}
.y25{bottom:928.293333pt;}
.y44{bottom:933.253333pt;}
.yc1{bottom:937.253333pt;}
.y3{bottom:943.653333pt;}
.y91{bottom:955.013333pt;}
.y24{bottom:959.973333pt;}
.yc0{bottom:972.933333pt;}
.y2{bottom:979.333333pt;}
.y23{bottom:986.693333pt;}
.ybf{bottom:995.653333pt;}
.y1{bottom:1012.160000pt;}
.y22{bottom:1013.600000pt;}
.h7{height:40.163750pt;}
.h5{height:51.771250pt;}
.h3{height:57.385000pt;}
.h6{height:60.519362pt;}
.h2{height:62.375000pt;}
.h4{height:72.978750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:113.472000pt;}
.x3{left:156.026667pt;}
.xa{left:157.946667pt;}
.x8{left:160.666667pt;}
.x1{left:165.306667pt;}
.x9{left:185.466667pt;}
.x4{left:311.906667pt;}
.x5{left:315.266667pt;}
.x6{left:373.666667pt;}
.x2{left:396.866667pt;}
}




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