
    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_71adb6af58a1a1d9f799b1e7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.007324;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_0e4f0e75f8c32c70a04226e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_ea196e4d1d5d92da091ed6ae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_046ac76a798b6f89814ad64f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.769531;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_2013f2ec3f8dd1cd7c2d0f21.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_b6d52d289ea70df6066275ce.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_ccb98b8a7fa6b86b8ac09fa9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000279;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_292880e77e531af8c764a8a3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.757812;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_f0c030df5d924f30821886fb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.904785;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_6e1292000fe8e201a17d94b3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.765137;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:ffb;src:url('chunks/assets/font_53e05690d40bfddd077b1e37.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000048;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.242574,0.000000,-0.060480,0.242574,0,0);-ms-transform:matrix(0.242574,0.000000,-0.060480,0.242574,0,0);-webkit-transform:matrix(0.242574,0.000000,-0.060480,0.242574,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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.055440px;}
.ls9{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.050400px;}
.ls5{letter-spacing:-0.043200px;}
.ls8{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.030000px;}
.ls11{letter-spacing:-0.024840px;}
.ls6{letter-spacing:-0.021600px;}
.ls15{letter-spacing:-0.018360px;}
.ls12{letter-spacing:-0.016560px;}
.lsc{letter-spacing:-0.014400px;}
.ls16{letter-spacing:-0.012240px;}
.ls18{letter-spacing:-0.007200px;}
.lsb{letter-spacing:-0.006480px;}
.ls17{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.010800px;}
.lsf{letter-spacing:0.014400px;}
.lse{letter-spacing:0.016560px;}
.ls1{letter-spacing:0.019440px;}
.ls14{letter-spacing:0.021600px;}
.ls13{letter-spacing:0.028800px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.043200px;}
.ls2{letter-spacing:1.265962px;}
.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:-21.544560px;}
.wsb{word-spacing:-21.511440px;}
.wsa{word-spacing:-21.503160px;}
.ws3{word-spacing:-20.592000px;}
.ws1{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.705600px;}
.ws0{word-spacing:-18.698400px;}
.wsd{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.893640px;}
.ws6{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.050800px;}
.ws9{word-spacing:-0.072000px;}
.ws2{word-spacing:-0.030000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1.014000px;}
._0{width:1.080000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.300000px;}
.fs9{font-size:45.375000px;}
.fsc{font-size:54.000000px;}
.fs6{font-size:58.500000px;}
.fs1{font-size:60.000000px;}
.fsf{font-size:61.200000px;}
.fs5{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:74.204181px;}
.fs4{font-size:79.200000px;}
.fs8{font-size:81.000000px;}
.fs3{font-size:82.800000px;}
.fse{font-size:91.800000px;}
.fs7{font-size:94.500000px;}
.fsb{font-size:108.000000px;}
.fs2{font-size:180.000000px;}
.y40{bottom:-8.081250px;}
.y0{bottom:0.000000px;}
.y22{bottom:0.243750px;}
.y83{bottom:0.300000px;}
.y28{bottom:0.318750px;}
.ya{bottom:0.487500px;}
.y57{bottom:0.600000px;}
.y1c{bottom:0.712500px;}
.y8c{bottom:0.731250px;}
.y53{bottom:0.750000px;}
.y47{bottom:0.768750px;}
.y9c{bottom:0.843750px;}
.y16{bottom:1.125000px;}
.y14{bottom:1.218750px;}
.ye{bottom:1.237500px;}
.y38{bottom:1.256280px;}
.y2c{bottom:1.293750px;}
.y80{bottom:1.331250px;}
.y7e{bottom:1.406250px;}
.y8a{bottom:1.481250px;}
.y54{bottom:1.500000px;}
.y9a{bottom:1.612500px;}
.y43{bottom:1.631250px;}
.y1a{bottom:2.212500px;}
.y55{bottom:2.250000px;}
.y39{bottom:2.381280px;}
.y87{bottom:2.606250px;}
.y3e{bottom:2.625000px;}
.y95{bottom:2.700000px;}
.y2a{bottom:2.793750px;}
.y4{bottom:2.868750px;}
.y85{bottom:2.981250px;}
.y49{bottom:3.000000px;}
.y3c{bottom:3.093750px;}
.y26{bottom:3.318750px;}
.y8d{bottom:3.356250px;}
.y3b{bottom:3.468750px;}
.y36{bottom:3.562500px;}
.y1e{bottom:3.712500px;}
.y4b{bottom:3.750000px;}
.y45{bottom:3.768750px;}
.y8{bottom:3.956250px;}
.y97{bottom:3.975000px;}
.y89{bottom:4.106250px;}
.y4d{bottom:4.125000px;}
.y93{bottom:4.200000px;}
.yc{bottom:4.237500px;}
.y2e{bottom:4.293750px;}
.y63{bottom:4.350000px;}
.y2{bottom:4.368750px;}
.y70{bottom:4.406250px;}
.y61{bottom:4.556250px;}
.y6e{bottom:4.612500px;}
.y7c{bottom:4.668750px;}
.y5f{bottom:4.762500px;}
.y6c{bottom:4.818750px;}
.y8f{bottom:4.856250px;}
.y7a{bottom:4.875000px;}
.y5d{bottom:4.968750px;}
.y6a{bottom:5.025000px;}
.y34{bottom:5.062500px;}
.y78{bottom:5.081250px;}
.y30{bottom:5.156250px;}
.y5b{bottom:5.175000px;}
.y20{bottom:5.212500px;}
.y69{bottom:5.231250px;}
.y32{bottom:5.268765px;}
.y76{bottom:5.287500px;}
.y9e{bottom:5.343750px;}
.y5a{bottom:5.381250px;}
.y18{bottom:5.418750px;}
.y67{bottom:5.437500px;}
.y74{bottom:5.493750px;}
.ya0{bottom:5.512500px;}
.y24{bottom:5.531250px;}
.y58{bottom:5.587500px;}
.y4f{bottom:5.625000px;}
.y65{bottom:5.643750px;}
.y6{bottom:5.662500px;}
.y72{bottom:5.700000px;}
.y10{bottom:11.718750px;}
.y37{bottom:54.000000px;}
.y33{bottom:94.500000px;}
.y35{bottom:96.000000px;}
.y31{bottom:120.000000px;}
.y2f{bottom:156.000000px;}
.y42{bottom:160.500000px;}
.y41{bottom:162.000000px;}
.y82{bottom:166.500000px;}
.y2d{bottom:189.000000px;}
.y29{bottom:190.500000px;}
.y2b{bottom:192.000000px;}
.y81{bottom:216.000000px;}
.y25{bottom:217.500000px;}
.y27{bottom:220.500000px;}
.y7f{bottom:241.500000px;}
.y23{bottom:243.000000px;}
.y21{bottom:298.500000px;}
.y98{bottom:363.000000px;}
.y99{bottom:366.000000px;}
.y1f{bottom:370.500000px;}
.y1d{bottom:372.000000px;}
.y19{bottom:373.500000px;}
.y1b{bottom:375.000000px;}
.y96{bottom:385.500000px;}
.y17{bottom:400.500000px;}
.y3f{bottom:414.000000px;}
.y92{bottom:429.000000px;}
.y94{bottom:430.500000px;}
.y3d{bottom:433.500000px;}
.y15{bottom:435.000000px;}
.y90{bottom:451.500000px;}
.y91{bottom:453.000000px;}
.y13{bottom:474.000000px;}
.y7d{bottom:487.500000px;}
.y8e{bottom:489.000000px;}
.y8b{bottom:490.500000px;}
.y12{bottom:513.000000px;}
.y84{bottom:526.500000px;}
.y88{bottom:528.000000px;}
.y86{bottom:529.500000px;}
.y7b{bottom:531.000000px;}
.y79{bottom:556.500000px;}
.y11{bottom:562.500000px;}
.y77{bottom:582.000000px;}
.y75{bottom:607.500000px;}
.yf{bottom:612.000000px;}
.y9f{bottom:631.500000px;}
.y73{bottom:633.000000px;}
.y71{bottom:658.500000px;}
.y6f{bottom:685.500000px;}
.y3a{bottom:688.500000px;}
.yb{bottom:690.000000px;}
.yd{bottom:693.000000px;}
.y9{bottom:694.500000px;}
.y6d{bottom:711.000000px;}
.y6b{bottom:736.500000px;}
.y7{bottom:738.000000px;}
.y5{bottom:762.000000px;}
.y68{bottom:787.500000px;}
.y1{bottom:789.000000px;}
.y3{bottom:790.500000px;}
.y66{bottom:813.000000px;}
.y64{bottom:838.500000px;}
.y62{bottom:865.500000px;}
.y60{bottom:891.000000px;}
.y9d{bottom:898.500000px;}
.y9b{bottom:903.000000px;}
.y5e{bottom:916.500000px;}
.y5c{bottom:942.000000px;}
.y50{bottom:949.500000px;}
.y51{bottom:951.000000px;}
.y4e{bottom:967.500000px;}
.y4c{bottom:969.000000px;}
.y59{bottom:993.000000px;}
.y4a{bottom:994.500000px;}
.y48{bottom:1018.500000px;}
.y56{bottom:1059.000000px;}
.y44{bottom:1078.500000px;}
.y46{bottom:1081.500000px;}
.y52{bottom:1173.000000px;}
.h13{height:6.000000px;}
.h18{height:9.000000px;}
.h17{height:10.500000px;}
.h5{height:12.000000px;}
.h10{height:13.500000px;}
.h7{height:15.000000px;}
.h3{height:16.500000px;}
.h4{height:18.000000px;}
.h1{height:19.500000px;}
.hd{height:21.000000px;}
.h23{height:22.500000px;}
.h20{height:24.000000px;}
.h1b{height:25.500000px;}
.h1a{height:31.762500px;}
.h19{height:33.433044px;}
.ha{height:36.000000px;}
.h1e{height:41.220703px;}
.h1d{height:41.317383px;}
.h14{height:44.760498px;}
.h6{height:45.908203px;}
.h8{height:46.500000px;}
.h22{height:46.826367px;}
.h11{height:49.580859px;}
.h12{height:54.703125px;}
.h2{height:55.089844px;}
.hf{height:56.700000px;}
.h1f{height:56.776344px;}
.he{height:60.598828px;}
.hc{height:62.908594px;}
.hb{height:63.000000px;}
.h16{height:70.875000px;}
.h21{height:80.329400px;}
.h15{height:82.687500px;}
.h1c{height:94.500000px;}
.h9{height:137.724609px;}
.h0{height:1188.000000px;}
.w8{width:4.500000px;}
.w6{width:6.000000px;}
.w25{width:7.500000px;}
.w4b{width:9.000000px;}
.w3{width:10.500000px;}
.w17{width:13.500000px;}
.w10{width:15.000000px;}
.w23{width:16.500000px;}
.w1f{width:19.500000px;}
.w48{width:21.000000px;}
.w22{width:22.500000px;}
.w46{width:25.500000px;}
.w27{width:27.000000px;}
.w28{width:33.000000px;}
.w44{width:34.500000px;}
.w19{width:43.500000px;}
.w39{width:46.500000px;}
.w12{width:48.000000px;}
.w18{width:49.500000px;}
.w11{width:54.000000px;}
.w4{width:55.500000px;}
.w9{width:58.500000px;}
.w26{width:63.000000px;}
.w24{width:69.000000px;}
.w7{width:70.500000px;}
.w4e{width:84.000000px;}
.w1c{width:88.500000px;}
.w2d{width:94.500000px;}
.w52{width:96.000000px;}
.w2e{width:97.500000px;}
.w42{width:99.000000px;}
.w41{width:100.500000px;}
.w4a{width:103.500000px;}
.w4f{width:105.000000px;}
.w53{width:109.500000px;}
.w51{width:111.000000px;}
.w1d{width:112.500000px;}
.w43{width:114.000000px;}
.w20{width:121.500000px;}
.w3a{width:132.000000px;}
.w50{width:145.500000px;}
.w14{width:150.000000px;}
.w1e{width:165.000000px;}
.we{width:214.500000px;}
.w16{width:219.000000px;}
.w21{width:223.500000px;}
.wd{width:240.000000px;}
.wf{width:241.500000px;}
.w29{width:268.500000px;}
.w47{width:271.500000px;}
.w2{width:276.000000px;}
.w4c{width:295.500000px;}
.w2c{width:298.500000px;}
.w1{width:306.000000px;}
.w1a{width:309.000000px;}
.w4d{width:321.000000px;}
.w13{width:342.000000px;}
.w45{width:381.000000px;}
.w1b{width:430.500000px;}
.w2b{width:442.500000px;}
.w49{width:448.500000px;}
.w3b{width:547.500000px;}
.w40{width:576.000000px;}
.wb{width:591.000000px;}
.w38{width:612.000000px;}
.w35{width:685.500000px;}
.w15{width:687.000000px;}
.w37{width:693.000000px;}
.w3d{width:694.500000px;}
.w33{width:696.000000px;}
.w32{width:702.000000px;}
.w2f{width:706.500000px;}
.w3e{width:708.000000px;}
.w36{width:709.500000px;}
.w2a{width:718.500000px;}
.w3c{width:727.500000px;}
.w31{width:733.500000px;}
.w3f{width:735.000000px;}
.wa{width:742.500000px;}
.w34{width:750.000000px;}
.w30{width:753.000000px;}
.w5{width:754.500000px;}
.wc{width:757.500000px;}
.w0{width:918.000000px;}
.x27{left:-14.906250px;}
.x2a{left:-12.375000px;}
.xf{left:-4.125000px;}
.xd{left:-1.125000px;}
.x0{left:0.000000px;}
.x12{left:1.125000px;}
.x18{left:72.000000px;}
.xb{left:75.000000px;}
.xc{left:76.500000px;}
.xe{left:79.500000px;}
.x11{left:81.000000px;}
.x5{left:82.500000px;}
.x3a{left:85.500000px;}
.x29{left:90.000000px;}
.x23{left:91.500000px;}
.x19{left:93.000000px;}
.x47{left:96.000000px;}
.x1a{left:97.500000px;}
.x10{left:106.500000px;}
.x13{left:108.000000px;}
.x3b{left:111.000000px;}
.x4b{left:114.000000px;}
.x41{left:117.000000px;}
.x38{left:118.500000px;}
.x1c{left:121.500000px;}
.x24{left:123.000000px;}
.x36{left:132.000000px;}
.x1{left:133.500000px;}
.x39{left:136.500000px;}
.x14{left:166.500000px;}
.x1d{left:174.000000px;}
.x21{left:207.000000px;}
.x22{left:216.000000px;}
.x15{left:219.000000px;}
.x1e{left:222.000000px;}
.x16{left:223.500000px;}
.x1f{left:225.000000px;}
.x37{left:262.500000px;}
.x25{left:264.000000px;}
.x48{left:307.500000px;}
.x1b{left:316.500000px;}
.x31{left:322.500000px;}
.x32{left:328.500000px;}
.x42{left:423.000000px;}
.x2{left:442.500000px;}
.x30{left:445.500000px;}
.x6{left:456.000000px;}
.x49{left:481.500000px;}
.x3c{left:492.000000px;}
.x2d{left:498.000000px;}
.x2e{left:502.500000px;}
.x3d{left:510.000000px;}
.x45{left:511.500000px;}
.x43{left:525.000000px;}
.x2b{left:531.000000px;}
.x20{left:532.500000px;}
.x3e{left:540.000000px;}
.x3f{left:544.500000px;}
.x17{left:564.000000px;}
.x2f{left:565.500000px;}
.x2c{left:604.500000px;}
.x34{left:619.500000px;}
.x26{left:633.000000px;}
.x46{left:639.000000px;}
.x7{left:652.500000px;}
.x4a{left:702.000000px;}
.x3{left:718.500000px;}
.x8{left:727.500000px;}
.x4{left:729.000000px;}
.x9{left:733.500000px;}
.xa{left:792.000000px;}
.x40{left:814.500000px;}
.x33{left:816.000000px;}
.x28{left:820.500000px;}
.x35{left:823.500000px;}
.x44{left:826.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.049280pt;}
.ls9{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.044800pt;}
.ls5{letter-spacing:-0.038400pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.026667pt;}
.ls11{letter-spacing:-0.022080pt;}
.ls6{letter-spacing:-0.019200pt;}
.ls15{letter-spacing:-0.016320pt;}
.ls12{letter-spacing:-0.014720pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls16{letter-spacing:-0.010880pt;}
.ls18{letter-spacing:-0.006400pt;}
.lsb{letter-spacing:-0.005760pt;}
.ls17{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.009600pt;}
.lsf{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.014720pt;}
.ls1{letter-spacing:0.017280pt;}
.ls14{letter-spacing:0.019200pt;}
.ls13{letter-spacing:0.025600pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.038400pt;}
.ls2{letter-spacing:1.125300pt;}
.ws8{word-spacing:-19.150720pt;}
.wsb{word-spacing:-19.121280pt;}
.wsa{word-spacing:-19.113920pt;}
.ws3{word-spacing:-18.304000pt;}
.ws1{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.627200pt;}
.ws0{word-spacing:-16.620800pt;}
.wsd{word-spacing:-14.144000pt;}
.wsc{word-spacing:-14.127680pt;}
.ws6{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.489600pt;}
.ws9{word-spacing:-0.064000pt;}
.ws2{word-spacing:-0.026667pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-0.901333pt;}
._0{width:0.960000pt;}
.fsa{font-size:32.266667pt;}
.fs9{font-size:40.333333pt;}
.fsc{font-size:48.000000pt;}
.fs6{font-size:52.000000pt;}
.fs1{font-size:53.333333pt;}
.fsf{font-size:54.400000pt;}
.fs5{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:65.959272pt;}
.fs4{font-size:70.400000pt;}
.fs8{font-size:72.000000pt;}
.fs3{font-size:73.600000pt;}
.fse{font-size:81.600000pt;}
.fs7{font-size:84.000000pt;}
.fsb{font-size:96.000000pt;}
.fs2{font-size:160.000000pt;}
.y40{bottom:-7.183333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:0.216667pt;}
.y83{bottom:0.266667pt;}
.y28{bottom:0.283333pt;}
.ya{bottom:0.433333pt;}
.y57{bottom:0.533333pt;}
.y1c{bottom:0.633333pt;}
.y8c{bottom:0.650000pt;}
.y53{bottom:0.666667pt;}
.y47{bottom:0.683333pt;}
.y9c{bottom:0.750000pt;}
.y16{bottom:1.000000pt;}
.y14{bottom:1.083333pt;}
.ye{bottom:1.100000pt;}
.y38{bottom:1.116693pt;}
.y2c{bottom:1.150000pt;}
.y80{bottom:1.183333pt;}
.y7e{bottom:1.250000pt;}
.y8a{bottom:1.316667pt;}
.y54{bottom:1.333333pt;}
.y9a{bottom:1.433333pt;}
.y43{bottom:1.450000pt;}
.y1a{bottom:1.966667pt;}
.y55{bottom:2.000000pt;}
.y39{bottom:2.116693pt;}
.y87{bottom:2.316667pt;}
.y3e{bottom:2.333333pt;}
.y95{bottom:2.400000pt;}
.y2a{bottom:2.483333pt;}
.y4{bottom:2.550000pt;}
.y85{bottom:2.650000pt;}
.y49{bottom:2.666667pt;}
.y3c{bottom:2.750000pt;}
.y26{bottom:2.950000pt;}
.y8d{bottom:2.983333pt;}
.y3b{bottom:3.083333pt;}
.y36{bottom:3.166667pt;}
.y1e{bottom:3.300000pt;}
.y4b{bottom:3.333333pt;}
.y45{bottom:3.350000pt;}
.y8{bottom:3.516667pt;}
.y97{bottom:3.533333pt;}
.y89{bottom:3.650000pt;}
.y4d{bottom:3.666667pt;}
.y93{bottom:3.733333pt;}
.yc{bottom:3.766667pt;}
.y2e{bottom:3.816667pt;}
.y63{bottom:3.866667pt;}
.y2{bottom:3.883333pt;}
.y70{bottom:3.916667pt;}
.y61{bottom:4.050000pt;}
.y6e{bottom:4.100000pt;}
.y7c{bottom:4.150000pt;}
.y5f{bottom:4.233333pt;}
.y6c{bottom:4.283333pt;}
.y8f{bottom:4.316667pt;}
.y7a{bottom:4.333333pt;}
.y5d{bottom:4.416667pt;}
.y6a{bottom:4.466667pt;}
.y34{bottom:4.500000pt;}
.y78{bottom:4.516667pt;}
.y30{bottom:4.583333pt;}
.y5b{bottom:4.600000pt;}
.y20{bottom:4.633333pt;}
.y69{bottom:4.650000pt;}
.y32{bottom:4.683347pt;}
.y76{bottom:4.700000pt;}
.y9e{bottom:4.750000pt;}
.y5a{bottom:4.783333pt;}
.y18{bottom:4.816667pt;}
.y67{bottom:4.833333pt;}
.y74{bottom:4.883333pt;}
.ya0{bottom:4.900000pt;}
.y24{bottom:4.916667pt;}
.y58{bottom:4.966667pt;}
.y4f{bottom:5.000000pt;}
.y65{bottom:5.016667pt;}
.y6{bottom:5.033333pt;}
.y72{bottom:5.066667pt;}
.y10{bottom:10.416667pt;}
.y37{bottom:48.000000pt;}
.y33{bottom:84.000000pt;}
.y35{bottom:85.333333pt;}
.y31{bottom:106.666667pt;}
.y2f{bottom:138.666667pt;}
.y42{bottom:142.666667pt;}
.y41{bottom:144.000000pt;}
.y82{bottom:148.000000pt;}
.y2d{bottom:168.000000pt;}
.y29{bottom:169.333333pt;}
.y2b{bottom:170.666667pt;}
.y81{bottom:192.000000pt;}
.y25{bottom:193.333333pt;}
.y27{bottom:196.000000pt;}
.y7f{bottom:214.666667pt;}
.y23{bottom:216.000000pt;}
.y21{bottom:265.333333pt;}
.y98{bottom:322.666667pt;}
.y99{bottom:325.333333pt;}
.y1f{bottom:329.333333pt;}
.y1d{bottom:330.666667pt;}
.y19{bottom:332.000000pt;}
.y1b{bottom:333.333333pt;}
.y96{bottom:342.666667pt;}
.y17{bottom:356.000000pt;}
.y3f{bottom:368.000000pt;}
.y92{bottom:381.333333pt;}
.y94{bottom:382.666667pt;}
.y3d{bottom:385.333333pt;}
.y15{bottom:386.666667pt;}
.y90{bottom:401.333333pt;}
.y91{bottom:402.666667pt;}
.y13{bottom:421.333333pt;}
.y7d{bottom:433.333333pt;}
.y8e{bottom:434.666667pt;}
.y8b{bottom:436.000000pt;}
.y12{bottom:456.000000pt;}
.y84{bottom:468.000000pt;}
.y88{bottom:469.333333pt;}
.y86{bottom:470.666667pt;}
.y7b{bottom:472.000000pt;}
.y79{bottom:494.666667pt;}
.y11{bottom:500.000000pt;}
.y77{bottom:517.333333pt;}
.y75{bottom:540.000000pt;}
.yf{bottom:544.000000pt;}
.y9f{bottom:561.333333pt;}
.y73{bottom:562.666667pt;}
.y71{bottom:585.333333pt;}
.y6f{bottom:609.333333pt;}
.y3a{bottom:612.000000pt;}
.yb{bottom:613.333333pt;}
.yd{bottom:616.000000pt;}
.y9{bottom:617.333333pt;}
.y6d{bottom:632.000000pt;}
.y6b{bottom:654.666667pt;}
.y7{bottom:656.000000pt;}
.y5{bottom:677.333333pt;}
.y68{bottom:700.000000pt;}
.y1{bottom:701.333333pt;}
.y3{bottom:702.666667pt;}
.y66{bottom:722.666667pt;}
.y64{bottom:745.333333pt;}
.y62{bottom:769.333333pt;}
.y60{bottom:792.000000pt;}
.y9d{bottom:798.666667pt;}
.y9b{bottom:802.666667pt;}
.y5e{bottom:814.666667pt;}
.y5c{bottom:837.333333pt;}
.y50{bottom:844.000000pt;}
.y51{bottom:845.333333pt;}
.y4e{bottom:860.000000pt;}
.y4c{bottom:861.333333pt;}
.y59{bottom:882.666667pt;}
.y4a{bottom:884.000000pt;}
.y48{bottom:905.333333pt;}
.y56{bottom:941.333333pt;}
.y44{bottom:958.666667pt;}
.y46{bottom:961.333333pt;}
.y52{bottom:1042.666667pt;}
.h13{height:5.333333pt;}
.h18{height:8.000000pt;}
.h17{height:9.333333pt;}
.h5{height:10.666667pt;}
.h10{height:12.000000pt;}
.h7{height:13.333333pt;}
.h3{height:14.666667pt;}
.h4{height:16.000000pt;}
.h1{height:17.333333pt;}
.hd{height:18.666667pt;}
.h23{height:20.000000pt;}
.h20{height:21.333333pt;}
.h1b{height:22.666667pt;}
.h1a{height:28.233333pt;}
.h19{height:29.718262pt;}
.ha{height:32.000000pt;}
.h1e{height:36.640625pt;}
.h1d{height:36.726562pt;}
.h14{height:39.787109pt;}
.h6{height:40.807292pt;}
.h8{height:41.333333pt;}
.h22{height:41.623437pt;}
.h11{height:44.071875pt;}
.h12{height:48.625000pt;}
.h2{height:48.968750pt;}
.hf{height:50.400000pt;}
.h1f{height:50.467861pt;}
.he{height:53.865625pt;}
.hc{height:55.918750pt;}
.hb{height:56.000000pt;}
.h16{height:63.000000pt;}
.h21{height:71.403911pt;}
.h15{height:73.500000pt;}
.h1c{height:84.000000pt;}
.h9{height:122.421875pt;}
.h0{height:1056.000000pt;}
.w8{width:4.000000pt;}
.w6{width:5.333333pt;}
.w25{width:6.666667pt;}
.w4b{width:8.000000pt;}
.w3{width:9.333333pt;}
.w17{width:12.000000pt;}
.w10{width:13.333333pt;}
.w23{width:14.666667pt;}
.w1f{width:17.333333pt;}
.w48{width:18.666667pt;}
.w22{width:20.000000pt;}
.w46{width:22.666667pt;}
.w27{width:24.000000pt;}
.w28{width:29.333333pt;}
.w44{width:30.666667pt;}
.w19{width:38.666667pt;}
.w39{width:41.333333pt;}
.w12{width:42.666667pt;}
.w18{width:44.000000pt;}
.w11{width:48.000000pt;}
.w4{width:49.333333pt;}
.w9{width:52.000000pt;}
.w26{width:56.000000pt;}
.w24{width:61.333333pt;}
.w7{width:62.666667pt;}
.w4e{width:74.666667pt;}
.w1c{width:78.666667pt;}
.w2d{width:84.000000pt;}
.w52{width:85.333333pt;}
.w2e{width:86.666667pt;}
.w42{width:88.000000pt;}
.w41{width:89.333333pt;}
.w4a{width:92.000000pt;}
.w4f{width:93.333333pt;}
.w53{width:97.333333pt;}
.w51{width:98.666667pt;}
.w1d{width:100.000000pt;}
.w43{width:101.333333pt;}
.w20{width:108.000000pt;}
.w3a{width:117.333333pt;}
.w50{width:129.333333pt;}
.w14{width:133.333333pt;}
.w1e{width:146.666667pt;}
.we{width:190.666667pt;}
.w16{width:194.666667pt;}
.w21{width:198.666667pt;}
.wd{width:213.333333pt;}
.wf{width:214.666667pt;}
.w29{width:238.666667pt;}
.w47{width:241.333333pt;}
.w2{width:245.333333pt;}
.w4c{width:262.666667pt;}
.w2c{width:265.333333pt;}
.w1{width:272.000000pt;}
.w1a{width:274.666667pt;}
.w4d{width:285.333333pt;}
.w13{width:304.000000pt;}
.w45{width:338.666667pt;}
.w1b{width:382.666667pt;}
.w2b{width:393.333333pt;}
.w49{width:398.666667pt;}
.w3b{width:486.666667pt;}
.w40{width:512.000000pt;}
.wb{width:525.333333pt;}
.w38{width:544.000000pt;}
.w35{width:609.333333pt;}
.w15{width:610.666667pt;}
.w37{width:616.000000pt;}
.w3d{width:617.333333pt;}
.w33{width:618.666667pt;}
.w32{width:624.000000pt;}
.w2f{width:628.000000pt;}
.w3e{width:629.333333pt;}
.w36{width:630.666667pt;}
.w2a{width:638.666667pt;}
.w3c{width:646.666667pt;}
.w31{width:652.000000pt;}
.w3f{width:653.333333pt;}
.wa{width:660.000000pt;}
.w34{width:666.666667pt;}
.w30{width:669.333333pt;}
.w5{width:670.666667pt;}
.wc{width:673.333333pt;}
.w0{width:816.000000pt;}
.x27{left:-13.250000pt;}
.x2a{left:-11.000000pt;}
.xf{left:-3.666667pt;}
.xd{left:-1.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.000000pt;}
.x18{left:64.000000pt;}
.xb{left:66.666667pt;}
.xc{left:68.000000pt;}
.xe{left:70.666667pt;}
.x11{left:72.000000pt;}
.x5{left:73.333333pt;}
.x3a{left:76.000000pt;}
.x29{left:80.000000pt;}
.x23{left:81.333333pt;}
.x19{left:82.666667pt;}
.x47{left:85.333333pt;}
.x1a{left:86.666667pt;}
.x10{left:94.666667pt;}
.x13{left:96.000000pt;}
.x3b{left:98.666667pt;}
.x4b{left:101.333333pt;}
.x41{left:104.000000pt;}
.x38{left:105.333333pt;}
.x1c{left:108.000000pt;}
.x24{left:109.333333pt;}
.x36{left:117.333333pt;}
.x1{left:118.666667pt;}
.x39{left:121.333333pt;}
.x14{left:148.000000pt;}
.x1d{left:154.666667pt;}
.x21{left:184.000000pt;}
.x22{left:192.000000pt;}
.x15{left:194.666667pt;}
.x1e{left:197.333333pt;}
.x16{left:198.666667pt;}
.x1f{left:200.000000pt;}
.x37{left:233.333333pt;}
.x25{left:234.666667pt;}
.x48{left:273.333333pt;}
.x1b{left:281.333333pt;}
.x31{left:286.666667pt;}
.x32{left:292.000000pt;}
.x42{left:376.000000pt;}
.x2{left:393.333333pt;}
.x30{left:396.000000pt;}
.x6{left:405.333333pt;}
.x49{left:428.000000pt;}
.x3c{left:437.333333pt;}
.x2d{left:442.666667pt;}
.x2e{left:446.666667pt;}
.x3d{left:453.333333pt;}
.x45{left:454.666667pt;}
.x43{left:466.666667pt;}
.x2b{left:472.000000pt;}
.x20{left:473.333333pt;}
.x3e{left:480.000000pt;}
.x3f{left:484.000000pt;}
.x17{left:501.333333pt;}
.x2f{left:502.666667pt;}
.x2c{left:537.333333pt;}
.x34{left:550.666667pt;}
.x26{left:562.666667pt;}
.x46{left:568.000000pt;}
.x7{left:580.000000pt;}
.x4a{left:624.000000pt;}
.x3{left:638.666667pt;}
.x8{left:646.666667pt;}
.x4{left:648.000000pt;}
.x9{left:652.000000pt;}
.xa{left:704.000000pt;}
.x40{left:724.000000pt;}
.x33{left:725.333333pt;}
.x28{left:729.333333pt;}
.x35{left:732.000000pt;}
.x44{left:734.666667pt;}
}




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