
    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_f1d3d2de05d251460f8b3c3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_517cc7b13196d6cd4da23ce6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_411896c89f3d4be391962a38.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_d72c2dc50303104da147a7e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_24828e67dcb9e9577b77ea0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_928d802fc67ad2d2905a891d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.372000;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_415d2009a027a44866d66ba8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:11.956683px;}
.ls2{letter-spacing:13.341205px;}
.ls3{letter-spacing:23.913527px;}
.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;}
}
.ws16{word-spacing:-14.943900px;}
.ws29{word-spacing:-11.955150px;}
.ws1f{word-spacing:-2.211697px;}
.ws9{word-spacing:-2.032370px;}
.ws11{word-spacing:-1.613941px;}
.ws3{word-spacing:-1.560154px;}
.ws24{word-spacing:-0.717307px;}
.ws10{word-spacing:-0.358654px;}
.ws6{word-spacing:-0.268992px;}
.ws21{word-spacing:-0.239102px;}
.ws1b{word-spacing:-0.179327px;}
.ws2{word-spacing:-0.161395px;}
.ws26{word-spacing:-0.095641px;}
.ws12{word-spacing:-0.059776px;}
.ws2a{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:0.059776px;}
.wsb{word-spacing:0.119551px;}
.ws7{word-spacing:0.161395px;}
.ws15{word-spacing:0.179327px;}
.ws4{word-spacing:0.215194px;}
.wsf{word-spacing:0.239102px;}
.ws5{word-spacing:0.268992px;}
.ws13{word-spacing:0.298878px;}
.wsd{word-spacing:2.092146px;}
.ws22{word-spacing:2.869229px;}
.ws18{word-spacing:3.048556px;}
.ws1d{word-spacing:4.782048px;}
.wse{word-spacing:5.738458px;}
.ws25{word-spacing:6.276438px;}
.ws27{word-spacing:11.811688px;}
.wsc{word-spacing:11.907329px;}
.ws28{word-spacing:12.146432px;}
.ws1e{word-spacing:12.658137px;}
.ws8{word-spacing:12.851754px;}
.ws1{word-spacing:13.234406px;}
.ws1a{word-spacing:14.702503px;}
.ws1c{word-spacing:14.804708px;}
.ws23{word-spacing:14.884124px;}
.ws19{word-spacing:14.942728px;}
.ws14{word-spacing:15.091368px;}
.ws20{word-spacing:15.123227px;}
.ws17{word-spacing:17.955551px;}
._4{margin-left:-6.724800px;}
._5{margin-left:-5.110848px;}
._8{margin-left:-3.165721px;}
._0{margin-left:-1.119004px;}
._2{width:1.129766px;}
._a{width:3.586277px;}
._1{width:12.670243px;}
._3{width:14.686963px;}
._10{width:16.258198px;}
._f{width:17.515745px;}
._d{width:18.791261px;}
._e{width:23.910300px;}
._7{width:26.899200px;}
._11{width:28.845383px;}
._12{width:35.552692px;}
._6{width:59.775600px;}
._c{width:200.197176px;}
._b{width:817.545715px;}
._9{width:1765.009928px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y16{bottom:169.266000px;}
.y35{bottom:180.559500px;}
.y15{bottom:185.704500px;}
.y14{bottom:202.143000px;}
.y13{bottom:277.734000px;}
.y12{bottom:352.101000px;}
.y52{bottom:530.281500px;}
.y51{bottom:545.226000px;}
.y50{bottom:560.169000px;}
.y4f{bottom:575.113500px;}
.y34{bottom:585.669000px;}
.y4e{bottom:590.058000px;}
.y33{bottom:603.601500px;}
.y4d{bottom:605.001000px;}
.y4c{bottom:619.945500px;}
.y32{bottom:621.534000px;}
.y4b{bottom:634.890000px;}
.y31{bottom:639.466500px;}
.y4a{bottom:649.833000px;}
.y30{bottom:657.399000px;}
.y49{bottom:664.777500px;}
.y2f{bottom:675.331500px;}
.y48{bottom:684.204000px;}
.y2e{bottom:693.265500px;}
.y2d{bottom:711.198000px;}
.y47{bottom:715.587000px;}
.y2c{bottom:729.130500px;}
.y46{bottom:733.519500px;}
.y2b{bottom:747.063000px;}
.y45{bottom:751.452000px;}
.y2a{bottom:764.995500px;}
.y11{bottom:765.415500px;}
.y44{bottom:773.868000px;}
.y29{bottom:782.928000px;}
.y10{bottom:783.348000px;}
.y28{bottom:800.862000px;}
.yf{bottom:801.280500px;}
.y43{bottom:805.251000px;}
.y27{bottom:818.794500px;}
.ye{bottom:819.213000px;}
.y42{bottom:823.183500px;}
.y26{bottom:836.727000px;}
.yd{bottom:837.145500px;}
.y41{bottom:841.116000px;}
.y25{bottom:859.357500px;}
.yc{bottom:859.561500px;}
.y40{bottom:862.186500px;}
.y24{bottom:877.290000px;}
.y3f{bottom:880.120500px;}
.y23{bottom:895.222500px;}
.y3e{bottom:901.191000px;}
.yb{bottom:905.365500px;}
.y22{bottom:913.155000px;}
.y3d{bottom:923.607000px;}
.y21{bottom:935.571000px;}
.ya{bottom:935.739000px;}
.y9{bottom:952.177500px;}
.y3c{bottom:954.988500px;}
.y20{bottom:968.439000px;}
.y8{bottom:968.616000px;}
.y3b{bottom:972.922500px;}
.y7{bottom:985.054500px;}
.y1f{bottom:986.371500px;}
.y3a{bottom:990.855000px;}
.y6{bottom:1001.491500px;}
.y1e{bottom:1004.304000px;}
.y39{bottom:1013.271000px;}
.y5{bottom:1017.930000px;}
.y1d{bottom:1022.236500px;}
.y4{bottom:1034.368500px;}
.y1c{bottom:1040.169000px;}
.y38{bottom:1044.652500px;}
.y1b{bottom:1058.103000px;}
.y3{bottom:1060.780500px;}
.y37{bottom:1062.585000px;}
.y1a{bottom:1076.035500px;}
.y36{bottom:1080.519000px;}
.y2{bottom:1095.483000px;}
.y19{bottom:1098.451500px;}
.y18{bottom:1120.867500px;}
.y1{bottom:1120.887000px;}
.y17{bottom:1161.216000px;}
.hb{height:26.480591px;}
.h9{height:33.856985px;}
.h8{height:35.195962px;}
.ha{height:35.721988px;}
.h4{height:39.595622px;}
.h7{height:40.187405px;}
.h5{height:41.723369px;}
.hc{height:42.321125px;}
.h6{height:43.994842px;}
.h3{height:48.894586px;}
.h2{height:60.081886px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:80.697000px;}
.x3{left:86.124000px;}
.x4{left:93.073500px;}
.x10{left:95.641500px;}
.x11{left:100.746000px;}
.x9{left:103.905000px;}
.xa{left:116.757000px;}
.x5{left:161.923500px;}
.x6{left:168.873000px;}
.xb{left:179.782500px;}
.x2{left:277.228500px;}
.x7{left:560.979000px;}
.x8{left:567.927000px;}
.xc{left:649.263000px;}
.xd{left:656.211000px;}
.xe{left:663.165000px;}
.xf{left:670.113000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:10.628163pt;}
.ls2{letter-spacing:11.858849pt;}
.ls3{letter-spacing:21.256468pt;}
.ws16{word-spacing:-13.283467pt;}
.ws29{word-spacing:-10.626800pt;}
.ws1f{word-spacing:-1.965953pt;}
.ws9{word-spacing:-1.806551pt;}
.ws11{word-spacing:-1.434614pt;}
.ws3{word-spacing:-1.386803pt;}
.ws24{word-spacing:-0.637606pt;}
.ws10{word-spacing:-0.318803pt;}
.ws6{word-spacing:-0.239104pt;}
.ws21{word-spacing:-0.212535pt;}
.ws1b{word-spacing:-0.159402pt;}
.ws2{word-spacing:-0.143462pt;}
.ws26{word-spacing:-0.085014pt;}
.ws12{word-spacing:-0.053134pt;}
.ws2a{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053134pt;}
.wsb{word-spacing:0.106268pt;}
.ws7{word-spacing:0.143462pt;}
.ws15{word-spacing:0.159402pt;}
.ws4{word-spacing:0.191283pt;}
.wsf{word-spacing:0.212535pt;}
.ws5{word-spacing:0.239104pt;}
.ws13{word-spacing:0.265669pt;}
.wsd{word-spacing:1.859685pt;}
.ws22{word-spacing:2.550426pt;}
.ws18{word-spacing:2.709827pt;}
.ws1d{word-spacing:4.250709pt;}
.wse{word-spacing:5.100851pt;}
.ws25{word-spacing:5.579056pt;}
.ws27{word-spacing:10.499278pt;}
.wsc{word-spacing:10.584293pt;}
.ws28{word-spacing:10.796829pt;}
.ws1e{word-spacing:11.251677pt;}
.ws8{word-spacing:11.423781pt;}
.ws1{word-spacing:11.763917pt;}
.ws1a{word-spacing:13.068892pt;}
.ws1c{word-spacing:13.159740pt;}
.ws23{word-spacing:13.230333pt;}
.ws19{word-spacing:13.282425pt;}
.ws14{word-spacing:13.414550pt;}
.ws20{word-spacing:13.442868pt;}
.ws17{word-spacing:15.960489pt;}
._4{margin-left:-5.977600pt;}
._5{margin-left:-4.542976pt;}
._8{margin-left:-2.813974pt;}
._0{margin-left:-0.994670pt;}
._2{width:1.004237pt;}
._a{width:3.187801pt;}
._1{width:11.262438pt;}
._3{width:13.055078pt;}
._10{width:14.451731pt;}
._f{width:15.569551pt;}
._d{width:16.703343pt;}
._e{width:21.253600pt;}
._7{width:23.910400pt;}
._11{width:25.640340pt;}
._12{width:31.602393pt;}
._6{width:53.133867pt;}
._c{width:177.953045pt;}
._b{width:726.707302pt;}
._9{width:1568.897714pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:150.458667pt;}
.y35{bottom:160.497333pt;}
.y15{bottom:165.070667pt;}
.y14{bottom:179.682667pt;}
.y13{bottom:246.874667pt;}
.y12{bottom:312.978667pt;}
.y52{bottom:471.361333pt;}
.y51{bottom:484.645333pt;}
.y50{bottom:497.928000pt;}
.y4f{bottom:511.212000pt;}
.y34{bottom:520.594667pt;}
.y4e{bottom:524.496000pt;}
.y33{bottom:536.534667pt;}
.y4d{bottom:537.778667pt;}
.y4c{bottom:551.062667pt;}
.y32{bottom:552.474667pt;}
.y4b{bottom:564.346667pt;}
.y31{bottom:568.414667pt;}
.y4a{bottom:577.629333pt;}
.y30{bottom:584.354667pt;}
.y49{bottom:590.913333pt;}
.y2f{bottom:600.294667pt;}
.y48{bottom:608.181333pt;}
.y2e{bottom:616.236000pt;}
.y2d{bottom:632.176000pt;}
.y47{bottom:636.077333pt;}
.y2c{bottom:648.116000pt;}
.y46{bottom:652.017333pt;}
.y2b{bottom:664.056000pt;}
.y45{bottom:667.957333pt;}
.y2a{bottom:679.996000pt;}
.y11{bottom:680.369333pt;}
.y44{bottom:687.882667pt;}
.y29{bottom:695.936000pt;}
.y10{bottom:696.309333pt;}
.y28{bottom:711.877333pt;}
.yf{bottom:712.249333pt;}
.y43{bottom:715.778667pt;}
.y27{bottom:727.817333pt;}
.ye{bottom:728.189333pt;}
.y42{bottom:731.718667pt;}
.y26{bottom:743.757333pt;}
.yd{bottom:744.129333pt;}
.y41{bottom:747.658667pt;}
.y25{bottom:763.873333pt;}
.yc{bottom:764.054667pt;}
.y40{bottom:766.388000pt;}
.y24{bottom:779.813333pt;}
.y3f{bottom:782.329333pt;}
.y23{bottom:795.753333pt;}
.y3e{bottom:801.058667pt;}
.yb{bottom:804.769333pt;}
.y22{bottom:811.693333pt;}
.y3d{bottom:820.984000pt;}
.y21{bottom:831.618667pt;}
.ya{bottom:831.768000pt;}
.y9{bottom:846.380000pt;}
.y3c{bottom:848.878667pt;}
.y20{bottom:860.834667pt;}
.y8{bottom:860.992000pt;}
.y3b{bottom:864.820000pt;}
.y7{bottom:875.604000pt;}
.y1f{bottom:876.774667pt;}
.y3a{bottom:880.760000pt;}
.y6{bottom:890.214667pt;}
.y1e{bottom:892.714667pt;}
.y39{bottom:900.685333pt;}
.y5{bottom:904.826667pt;}
.y1d{bottom:908.654667pt;}
.y4{bottom:919.438667pt;}
.y1c{bottom:924.594667pt;}
.y38{bottom:928.580000pt;}
.y1b{bottom:940.536000pt;}
.y3{bottom:942.916000pt;}
.y37{bottom:944.520000pt;}
.y1a{bottom:956.476000pt;}
.y36{bottom:960.461333pt;}
.y2{bottom:973.762667pt;}
.y19{bottom:976.401333pt;}
.y18{bottom:996.326667pt;}
.y1{bottom:996.344000pt;}
.y17{bottom:1032.192000pt;}
.hb{height:23.538303pt;}
.h9{height:30.095098pt;}
.h8{height:31.285299pt;}
.ha{height:31.752878pt;}
.h4{height:35.196109pt;}
.h7{height:35.722138pt;}
.h5{height:37.087439pt;}
.hc{height:37.618778pt;}
.h6{height:39.106526pt;}
.h3{height:43.461854pt;}
.h2{height:53.406121pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.730667pt;}
.x3{left:76.554667pt;}
.x4{left:82.732000pt;}
.x10{left:85.014667pt;}
.x11{left:89.552000pt;}
.x9{left:92.360000pt;}
.xa{left:103.784000pt;}
.x5{left:143.932000pt;}
.x6{left:150.109333pt;}
.xb{left:159.806667pt;}
.x2{left:246.425333pt;}
.x7{left:498.648000pt;}
.x8{left:504.824000pt;}
.xc{left:577.122667pt;}
.xd{left:583.298667pt;}
.xe{left:589.480000pt;}
.xf{left:595.656000pt;}
}




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