
    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_3346036e7dab99772771abb2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133000;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_ba603e612018a412539e197d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.073500;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_13aa067c13acda38bb108938.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_5dea846a35c968980962f575.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_f12c8eac39c226a3b7f3afdf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.777000;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_4ba55b1b60a1393bb0b56b6f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_89b577f89963e2ee3348ea6e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.732000;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_c2746e7a4de456ac2b375a8d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.929000;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_42fba8fdabfd45fae5950853.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958000;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_a4be75de150cc973b7090d1c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958000;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_51d6618ddb80e3eff504d9d7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.777000;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:ffc;src:url('chunks/assets/font_4ba55b1b60a1393bb0b56b6f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.943000;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-13.510924px;}
.ws0{word-spacing:-10.809753px;}
.ws4{word-spacing:-9.396014px;}
.ws6{word-spacing:-9.009169px;}
.ws1{word-spacing:-8.271405px;}
.ws2{word-spacing:-8.271398px;}
.ws5{word-spacing:0.000000px;}
._0{width:1.963666px;}
._1{width:3.530744px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(16,15,13);}
.fs9{font-size:32.360611px;}
.fsb{font-size:32.400000px;}
.fs6{font-size:36.000055px;}
.fs2{font-size:39.308193px;}
.fs8{font-size:41.759196px;}
.fsc{font-size:42.000056px;}
.fs4{font-size:42.856985px;}
.fs3{font-size:42.857020px;}
.fsa{font-size:42.923254px;}
.fs7{font-size:44.210199px;}
.fs1{font-size:46.679631px;}
.fs5{font-size:49.130634px;}
.fs0{font-size:51.581637px;}
.y0{bottom:0.000000px;}
.y42{bottom:1.908274px;}
.y93{bottom:1.959758px;}
.y3f{bottom:2.005468px;}
.y96{bottom:2.008909px;}
.y51{bottom:2.167206px;}
.y89{bottom:2.281542px;}
.yd{bottom:2.373303px;}
.y34{bottom:2.387348px;}
.y8e{bottom:2.416399px;}
.y36{bottom:2.506542px;}
.y55{bottom:2.508303px;}
.y58{bottom:2.509353px;}
.y87{bottom:2.522348px;}
.y53{bottom:2.537219px;}
.y3b{bottom:2.540783px;}
.y79{bottom:2.783905px;}
.yb{bottom:2.795159px;}
.y31{bottom:2.813976px;}
.y5a{bottom:2.869004px;}
.yf{bottom:2.875771px;}
.y2f{bottom:2.915058px;}
.y64{bottom:2.930145px;}
.y82{bottom:2.935988px;}
.ya2{bottom:2.935990px;}
.y4e{bottom:2.943214px;}
.y70{bottom:2.944137px;}
.y84{bottom:2.948976px;}
.y24{bottom:2.959877px;}
.y1a{bottom:2.959965px;}
.y66{bottom:3.010771px;}
.y2{bottom:3.055310px;}
.y92{bottom:9.791910px;}
.y41{bottom:10.201141px;}
.y50{bottom:10.267206px;}
.y95{bottom:10.301776px;}
.y3e{bottom:10.759051px;}
.y33{bottom:11.387362px;}
.y86{bottom:11.522362px;}
.y57{bottom:12.645080px;}
.y78{bottom:13.498160px;}
.y2e{bottom:13.629305px;}
.y81{bottom:13.650235px;}
.y6f{bottom:13.658392px;}
.y23{bottom:13.674132px;}
.y19{bottom:13.674220px;}
.ya1{bottom:16.936009px;}
.y4d{bottom:17.250965px;}
.ya{bottom:18.920179px;}
.y63{bottom:19.055166px;}
.y3d{bottom:19.512633px;}
.y77{bottom:24.212415px;}
.y2d{bottom:24.343551px;}
.y80{bottom:24.364481px;}
.y6e{bottom:24.372647px;}
.y22{bottom:24.388387px;}
.y18{bottom:24.388475px;}
.y8d{bottom:24.530713px;}
.y3a{bottom:24.655096px;}
.y91{bottom:25.916931px;}
.ya0{bottom:30.936027px;}
.y4c{bottom:31.558717px;}
.y90{bottom:34.670513px;}
.y9{bottom:35.045200px;}
.y2c{bottom:35.057797px;}
.y6d{bottom:35.086902px;}
.y21{bottom:35.102642px;}
.y17{bottom:35.102729px;}
.y62{bottom:35.180186px;}
.y8c{bottom:35.587870px;}
.y9f{bottom:44.936046px;}
.y76{bottom:45.640925px;}
.y7f{bottom:45.792973px;}
.y16{bottom:45.816984px;}
.y4b{bottom:45.866468px;}
.y8b{bottom:47.105741px;}
.y39{bottom:47.230125px;}
.y8{bottom:51.170220px;}
.y61{bottom:51.305207px;}
.y75{bottom:56.355180px;}
.y2b{bottom:56.486290px;}
.y7e{bottom:56.507220px;}
.y6c{bottom:56.515412px;}
.y20{bottom:56.531151px;}
.y38{bottom:58.747997px;}
.y9e{bottom:58.936065px;}
.y4a{bottom:60.174219px;}
.y74{bottom:67.069435px;}
.y2a{bottom:67.200536px;}
.y7d{bottom:67.221466px;}
.y6b{bottom:67.229667px;}
.y1f{bottom:67.245406px;}
.y15{bottom:67.245494px;}
.y7{bottom:67.295241px;}
.y60{bottom:67.430227px;}
.y73{bottom:77.783689px;}
.y29{bottom:77.914782px;}
.y7c{bottom:77.935712px;}
.y6a{bottom:77.943921px;}
.y1e{bottom:77.959661px;}
.y14{bottom:77.959749px;}
.y6{bottom:83.420261px;}
.y5f{bottom:83.555247px;}
.y9d{bottom:86.936102px;}
.y72{bottom:88.497944px;}
.y28{bottom:88.629028px;}
.y7b{bottom:88.649958px;}
.y69{bottom:88.658176px;}
.y1d{bottom:88.673916px;}
.y13{bottom:88.674004px;}
.y49{bottom:88.789722px;}
.y40{bottom:91.800015px;}
.y94{bottom:92.520015px;}
.y37{bottom:95.040015px;}
.y27{bottom:99.343275px;}
.y68{bottom:99.372431px;}
.y1c{bottom:99.388171px;}
.y12{bottom:99.388259px;}
.y5{bottom:99.545282px;}
.y5e{bottom:99.680268px;}
.y9c{bottom:100.936121px;}
.y8a{bottom:101.160015px;}
.y48{bottom:103.097473px;}
.y26{bottom:110.057521px;}
.y1b{bottom:110.102426px;}
.y11{bottom:110.102514px;}
.y8f{bottom:114.120014px;}
.y9b{bottom:114.936139px;}
.y4{bottom:115.670302px;}
.y5d{bottom:115.805288px;}
.y4f{bottom:115.920014px;}
.y47{bottom:117.405224px;}
.y9a{bottom:128.936158px;}
.y46{bottom:131.712976px;}
.y5c{bottom:131.930309px;}
.y3c{bottom:141.120013px;}
.y99{bottom:142.936177px;}
.y45{bottom:146.020727px;}
.y98{bottom:156.936195px;}
.y44{bottom:160.328478px;}
.y85{bottom:168.480012px;}
.y88{bottom:172.440012px;}
.y32{bottom:174.240011px;}
.y35{bottom:177.840011px;}
.y83{bottom:191.160011px;}
.y30{bottom:196.920011px;}
.y25{bottom:227.160009px;}
.y67{bottom:227.880009px;}
.y10{bottom:228.240009px;}
.y7a{bottom:236.520009px;}
.y71{bottom:237.600009px;}
.y56{bottom:408.240002px;}
.y52{bottom:413.280002px;}
.y54{bottom:414.000001px;}
.yc{bottom:419.760001px;}
.y65{bottom:435.600001px;}
.ye{bottom:441.360000px;}
.y5b{bottom:472.319999px;}
.y3{bottom:478.079999px;}
.y1{bottom:618.119993px;}
.y59{bottom:622.799993px;}
.y43{bottom:661.319991px;}
.y97{bottom:664.919991px;}
.h11{height:9.360000px;}
.h6{height:10.080000px;}
.h8{height:11.880000px;}
.hd{height:12.599999px;}
.h26{height:12.959999px;}
.h9{height:13.319999px;}
.h2{height:15.839999px;}
.hf{height:18.359999px;}
.h1b{height:18.719999px;}
.h1e{height:20.159999px;}
.h2d{height:25.095654px;}
.h10{height:26.496040px;}
.h16{height:27.359999px;}
.h1d{height:28.262591px;}
.h17{height:28.833304px;}
.h1c{height:28.868400px;}
.h2a{height:30.525972px;}
.h2b{height:30.734768px;}
.h29{height:32.317655px;}
.h14{height:32.538706px;}
.h30{height:32.571043px;}
.h2f{height:32.970044px;}
.hc{height:33.235592px;}
.hb{height:33.235619px;}
.h1a{height:33.286983px;}
.h19{height:33.694754px;}
.h27{height:35.914493px;}
.h21{height:36.200054px;}
.h7{height:36.753160px;}
.h22{height:37.087197px;}
.h1f{height:37.706177px;}
.h15{height:39.044848px;}
.h13{height:41.336536px;}
.h5{height:41.591551px;}
.h2c{height:42.839998px;}
.he{height:45.937143px;}
.h3{height:48.228830px;}
.h28{height:56.159998px;}
.h12{height:67.679997px;}
.h24{height:99.359996px;}
.h25{height:99.719996px;}
.h23{height:110.159995px;}
.ha{height:120.959995px;}
.h4{height:127.079995px;}
.h20{height:143.279994px;}
.h2e{height:167.759993px;}
.h18{height:171.359993px;}
.h0{height:917.999980px;}
.h1{height:918.000000px;}
.w13{width:36.719998px;}
.w4{width:43.919998px;}
.w1a{width:60.119997px;}
.w14{width:63.719997px;}
.w17{width:70.559997px;}
.wc{width:73.079997px;}
.w1b{width:75.599997px;}
.w12{width:76.319997px;}
.w3{width:78.479997px;}
.wb{width:84.959996px;}
.w6{width:86.759996px;}
.wd{width:90.359996px;}
.w15{width:92.519996px;}
.w1d{width:97.559996px;}
.w7{width:98.639996px;}
.w8{width:100.439996px;}
.w19{width:106.559996px;}
.w9{width:110.519995px;}
.w18{width:111.239995px;}
.w5{width:111.959995px;}
.wa{width:112.679995px;}
.we{width:166.679993px;}
.w1c{width:170.639993px;}
.wf{width:178.559993px;}
.w11{width:185.039992px;}
.w1{width:214.919991px;}
.w16{width:303.839987px;}
.w2{width:316.079987px;}
.w1e{width:359.999985px;}
.w10{width:363.239985px;}
.w0{width:393.750000px;}
.x0{left:0.000000px;}
.x18{left:1.065004px;}
.xd{left:2.124063px;}
.x9{left:4.439905px;}
.xc{left:6.895255px;}
.xa{left:8.736767px;}
.x16{left:10.174904px;}
.x3{left:11.248701px;}
.x17{left:12.979023px;}
.x12{left:14.085166px;}
.x13{left:15.354693px;}
.x11{left:18.116962px;}
.xe{left:19.702138px;}
.x28{left:20.841704px;}
.x8{left:22.087733px;}
.x24{left:23.922380px;}
.xb{left:28.491175px;}
.xf{left:30.179228px;}
.x14{left:31.830651px;}
.x7{left:34.199999px;}
.x1d{left:35.218512px;}
.x23{left:37.079998px;}
.x1e{left:38.166691px;}
.x29{left:44.412048px;}
.x2{left:46.079998px;}
.x22{left:48.239998px;}
.x1a{left:77.759997px;}
.x1{left:83.879997px;}
.x19{left:136.439994px;}
.x25{left:141.479994px;}
.x10{left:146.159994px;}
.x6{left:153.719994px;}
.x21{left:157.679993px;}
.x27{left:163.079993px;}
.x1f{left:169.199993px;}
.x4{left:171.359993px;}
.x1c{left:174.599993px;}
.x1b{left:226.439991px;}
.x5{left:258.479989px;}
.x26{left:260.279989px;}
.x15{left:261.719989px;}
.x20{left:274.679989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-12.009710pt;}
.ws0{word-spacing:-9.608669pt;}
.ws4{word-spacing:-8.352013pt;}
.ws6{word-spacing:-8.008150pt;}
.ws1{word-spacing:-7.352360pt;}
.ws2{word-spacing:-7.352354pt;}
.ws5{word-spacing:0.000000pt;}
._0{width:1.745481pt;}
._1{width:3.138440pt;}
.fs9{font-size:28.764987pt;}
.fsb{font-size:28.800000pt;}
.fs6{font-size:32.000049pt;}
.fs2{font-size:34.940616pt;}
.fs8{font-size:37.119285pt;}
.fsc{font-size:37.333383pt;}
.fs4{font-size:38.095098pt;}
.fs3{font-size:38.095129pt;}
.fsa{font-size:38.154003pt;}
.fs7{font-size:39.297955pt;}
.fs1{font-size:41.493005pt;}
.fs5{font-size:43.671674pt;}
.fs0{font-size:45.850344pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:1.696243pt;}
.y93{bottom:1.742007pt;}
.y3f{bottom:1.782638pt;}
.y96{bottom:1.785697pt;}
.y51{bottom:1.926405pt;}
.y89{bottom:2.028037pt;}
.yd{bottom:2.109603pt;}
.y34{bottom:2.122087pt;}
.y8e{bottom:2.147910pt;}
.y36{bottom:2.228037pt;}
.y55{bottom:2.229603pt;}
.y58{bottom:2.230536pt;}
.y87{bottom:2.242087pt;}
.y53{bottom:2.255306pt;}
.y3b{bottom:2.258473pt;}
.y79{bottom:2.474582pt;}
.yb{bottom:2.484586pt;}
.y31{bottom:2.501312pt;}
.y5a{bottom:2.550225pt;}
.yf{bottom:2.556241pt;}
.y2f{bottom:2.591163pt;}
.y64{bottom:2.604574pt;}
.y82{bottom:2.609767pt;}
.ya2{bottom:2.609769pt;}
.y4e{bottom:2.616190pt;}
.y70{bottom:2.617011pt;}
.y84{bottom:2.621312pt;}
.y24{bottom:2.631002pt;}
.y1a{bottom:2.631080pt;}
.y66{bottom:2.676241pt;}
.y2{bottom:2.715831pt;}
.y92{bottom:8.703920pt;}
.y41{bottom:9.067681pt;}
.y50{bottom:9.126406pt;}
.y95{bottom:9.157134pt;}
.y3e{bottom:9.563601pt;}
.y33{bottom:10.122100pt;}
.y86{bottom:10.242100pt;}
.y57{bottom:11.240071pt;}
.y78{bottom:11.998364pt;}
.y2e{bottom:12.114937pt;}
.y81{bottom:12.133542pt;}
.y6f{bottom:12.140793pt;}
.y23{bottom:12.154784pt;}
.y19{bottom:12.154862pt;}
.ya1{bottom:15.054230pt;}
.y4d{bottom:15.334191pt;}
.ya{bottom:16.817937pt;}
.y63{bottom:16.937925pt;}
.y3d{bottom:17.344563pt;}
.y77{bottom:21.522147pt;}
.y2d{bottom:21.638712pt;}
.y80{bottom:21.657316pt;}
.y6e{bottom:21.664575pt;}
.y22{bottom:21.678566pt;}
.y18{bottom:21.678644pt;}
.y8d{bottom:21.805078pt;}
.y3a{bottom:21.915641pt;}
.y91{bottom:23.037272pt;}
.ya0{bottom:27.498691pt;}
.y4c{bottom:28.052193pt;}
.y90{bottom:30.818234pt;}
.y9{bottom:31.151289pt;}
.y2c{bottom:31.162486pt;}
.y6d{bottom:31.188357pt;}
.y21{bottom:31.202348pt;}
.y17{bottom:31.202426pt;}
.y62{bottom:31.271277pt;}
.y8c{bottom:31.633662pt;}
.y9f{bottom:39.943152pt;}
.y76{bottom:40.569711pt;}
.y7f{bottom:40.704865pt;}
.y16{bottom:40.726208pt;}
.y4b{bottom:40.770194pt;}
.y8b{bottom:41.871770pt;}
.y39{bottom:41.982333pt;}
.y8{bottom:45.484640pt;}
.y61{bottom:45.604628pt;}
.y75{bottom:50.093493pt;}
.y2b{bottom:50.210035pt;}
.y7e{bottom:50.228640pt;}
.y6c{bottom:50.235921pt;}
.y20{bottom:50.249912pt;}
.y38{bottom:52.220442pt;}
.y9e{bottom:52.387613pt;}
.y4a{bottom:53.488195pt;}
.y74{bottom:59.617275pt;}
.y2a{bottom:59.733810pt;}
.y7d{bottom:59.752414pt;}
.y6b{bottom:59.759704pt;}
.y1f{bottom:59.773694pt;}
.y15{bottom:59.773773pt;}
.y7{bottom:59.817992pt;}
.y60{bottom:59.937980pt;}
.y73{bottom:69.141057pt;}
.y29{bottom:69.257584pt;}
.y7c{bottom:69.276189pt;}
.y6a{bottom:69.283486pt;}
.y1e{bottom:69.297477pt;}
.y14{bottom:69.297555pt;}
.y6{bottom:74.151343pt;}
.y5f{bottom:74.271331pt;}
.y9d{bottom:77.276535pt;}
.y72{bottom:78.664839pt;}
.y28{bottom:78.781359pt;}
.y7b{bottom:78.799963pt;}
.y69{bottom:78.807268pt;}
.y1d{bottom:78.821259pt;}
.y13{bottom:78.821337pt;}
.y49{bottom:78.924197pt;}
.y40{bottom:81.600013pt;}
.y94{bottom:82.240013pt;}
.y37{bottom:84.480013pt;}
.y27{bottom:88.305133pt;}
.y68{bottom:88.331050pt;}
.y1c{bottom:88.345041pt;}
.y12{bottom:88.345119pt;}
.y5{bottom:88.484695pt;}
.y5e{bottom:88.604683pt;}
.y9c{bottom:89.720996pt;}
.y8a{bottom:89.920013pt;}
.y48{bottom:91.642198pt;}
.y26{bottom:97.828908pt;}
.y1b{bottom:97.868823pt;}
.y11{bottom:97.868901pt;}
.y8f{bottom:101.440012pt;}
.y9b{bottom:102.165457pt;}
.y4{bottom:102.818046pt;}
.y5d{bottom:102.938034pt;}
.y4f{bottom:103.040012pt;}
.y47{bottom:104.360199pt;}
.y9a{bottom:114.609918pt;}
.y46{bottom:117.078201pt;}
.y5c{bottom:117.271386pt;}
.y3c{bottom:125.440011pt;}
.y99{bottom:127.054379pt;}
.y45{bottom:129.796202pt;}
.y98{bottom:139.498840pt;}
.y44{bottom:142.514203pt;}
.y85{bottom:149.760010pt;}
.y88{bottom:153.280010pt;}
.y32{bottom:154.880010pt;}
.y35{bottom:158.080010pt;}
.y83{bottom:169.920010pt;}
.y30{bottom:175.040009pt;}
.y25{bottom:201.920008pt;}
.y67{bottom:202.560008pt;}
.y10{bottom:202.880008pt;}
.y7a{bottom:210.240008pt;}
.y71{bottom:211.200008pt;}
.y56{bottom:362.880002pt;}
.y52{bottom:367.360001pt;}
.y54{bottom:368.000001pt;}
.yc{bottom:373.120001pt;}
.y65{bottom:387.200001pt;}
.ye{bottom:392.320000pt;}
.y5b{bottom:419.839999pt;}
.y3{bottom:424.959999pt;}
.y1{bottom:549.439994pt;}
.y59{bottom:553.599994pt;}
.y43{bottom:587.839992pt;}
.y97{bottom:591.039992pt;}
.h11{height:8.320000pt;}
.h6{height:8.960000pt;}
.h8{height:10.560000pt;}
.hd{height:11.200000pt;}
.h26{height:11.520000pt;}
.h9{height:11.840000pt;}
.h2{height:14.079999pt;}
.hf{height:16.319999pt;}
.h1b{height:16.639999pt;}
.h1e{height:17.919999pt;}
.h2d{height:22.307248pt;}
.h10{height:23.552036pt;}
.h16{height:24.319999pt;}
.h1d{height:25.122303pt;}
.h17{height:25.629604pt;}
.h1c{height:25.660800pt;}
.h2a{height:27.134197pt;}
.h2b{height:27.319794pt;}
.h29{height:28.726805pt;}
.h14{height:28.923295pt;}
.h30{height:28.952039pt;}
.h2f{height:29.306706pt;}
.hc{height:29.542748pt;}
.hb{height:29.542772pt;}
.h1a{height:29.588430pt;}
.h19{height:29.950893pt;}
.h27{height:31.923994pt;}
.h21{height:32.177825pt;}
.h7{height:32.669476pt;}
.h22{height:32.966397pt;}
.h1f{height:33.516601pt;}
.h15{height:34.706532pt;}
.h13{height:36.743588pt;}
.h5{height:36.970267pt;}
.h2c{height:38.079998pt;}
.he{height:40.833016pt;}
.h3{height:42.870071pt;}
.h28{height:49.919998pt;}
.h12{height:60.159997pt;}
.h24{height:88.319996pt;}
.h25{height:88.639996pt;}
.h23{height:97.919996pt;}
.ha{height:107.519996pt;}
.h4{height:112.959995pt;}
.h20{height:127.359995pt;}
.h2e{height:149.119994pt;}
.h18{height:152.319994pt;}
.h0{height:815.999983pt;}
.h1{height:816.000000pt;}
.w13{width:32.639999pt;}
.w4{width:39.039998pt;}
.w1a{width:53.439998pt;}
.w14{width:56.639998pt;}
.w17{width:62.719997pt;}
.wc{width:64.959997pt;}
.w1b{width:67.199997pt;}
.w12{width:67.839997pt;}
.w3{width:69.759997pt;}
.wb{width:75.519997pt;}
.w6{width:77.119997pt;}
.wd{width:80.319997pt;}
.w15{width:82.239997pt;}
.w1d{width:86.719996pt;}
.w7{width:87.679996pt;}
.w8{width:89.279996pt;}
.w19{width:94.719996pt;}
.w9{width:98.239996pt;}
.w18{width:98.879996pt;}
.w5{width:99.519996pt;}
.wa{width:100.159996pt;}
.we{width:148.159994pt;}
.w1c{width:151.679994pt;}
.wf{width:158.719993pt;}
.w11{width:164.479993pt;}
.w1{width:191.039992pt;}
.w16{width:270.079989pt;}
.w2{width:280.959988pt;}
.w1e{width:319.999987pt;}
.w10{width:322.879987pt;}
.w0{width:350.000000pt;}
.x0{left:0.000000pt;}
.x18{left:0.946670pt;}
.xd{left:1.888056pt;}
.x9{left:3.946582pt;}
.xc{left:6.129115pt;}
.xa{left:7.766015pt;}
.x16{left:9.044359pt;}
.x3{left:9.998845pt;}
.x17{left:11.536909pt;}
.x12{left:12.520147pt;}
.x13{left:13.648616pt;}
.x11{left:16.103967pt;}
.xe{left:17.513011pt;}
.x28{left:18.525959pt;}
.x8{left:19.633541pt;}
.x24{left:21.264337pt;}
.xb{left:25.325489pt;}
.xf{left:26.825980pt;}
.x14{left:28.293912pt;}
.x7{left:30.399999pt;}
.x1d{left:31.305344pt;}
.x23{left:32.959999pt;}
.x1e{left:33.925947pt;}
.x29{left:39.477376pt;}
.x2{left:40.959998pt;}
.x22{left:42.879998pt;}
.x1a{left:69.119997pt;}
.x1{left:74.559997pt;}
.x19{left:121.279995pt;}
.x25{left:125.759995pt;}
.x10{left:129.919995pt;}
.x6{left:136.639994pt;}
.x21{left:140.159994pt;}
.x27{left:144.959994pt;}
.x1f{left:150.399994pt;}
.x4{left:152.319994pt;}
.x1c{left:155.199994pt;}
.x1b{left:201.279992pt;}
.x5{left:229.759990pt;}
.x26{left:231.359990pt;}
.x15{left:232.639990pt;}
.x20{left:244.159990pt;}
}




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