
    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_30e3bac3a2d13e3ccb8e6263.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3cf7272aee162458122eaee6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_abac1874c6d82eced74f36b9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.924805;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_142177e0bc95415b4969c549.woff')format("woff");}.ff4{font-family:ff4;line-height:0.924805;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_f4e811e3494e334b21de586a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_96627b96bcd9c58c5c989546.woff')format("woff");}.ff6{font-family:ff6;line-height:1.163086;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_dc39ceb5a89e4f26044fccd5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_29ad90db9fb9fe5943bd2f2b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3bb5278192d49a7bff3487c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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_dc63491c1ec5ebcb4887d43c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0a93e504a17421084e3b46ce.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c2e0ac7496bae012042db21b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.684082;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:ffd;src:url('chunks/assets/font_fea58d4debe255c51a38db85.woff')format("woff");}.ffd{font-family:ffd;line-height:0.760742;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:ffe;src:url('chunks/assets/font_a4f47bb0eec773e83e32531d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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:fff;src:url('chunks/assets/font_42342e89978607e716d2c09c.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;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:ff10;src:url('chunks/assets/font_9da39227d759ceda388d941f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.901855;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:ff11;src:url('chunks/assets/font_8a8320e70d75850dcb58722c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015120px;}
.ls3{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.358560px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.404640px;}
.ls4{letter-spacing:0.493920px;}
.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:-54.000000px;}
.ws1{word-spacing:-29.052000px;}
.ws4{word-spacing:-28.800000px;}
.ws0{word-spacing:-19.368000px;}
.ws2{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.944000px;}
.wsa{word-spacing:-10.902240px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:-8.856000px;}
.ws9{word-spacing:0.000000px;}
._8{margin-left:-4.236576px;}
._7{margin-left:-2.648208px;}
._0{margin-left:-1.189584px;}
._3{width:1.008144px;}
._5{width:2.111376px;}
._4{width:3.412224px;}
._6{width:4.431600px;}
._1{width:5.443200px;}
._2{width:6.577200px;}
._9{width:8.326512px;}
._a{width:10.260000px;}
._b{width:12.042000px;}
.fc2{color:rgb(10,80,164);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:35.280000px;}
.fsa{font-size:35.424000px;}
.fsd{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs5{font-size:45.504000px;}
.fs6{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs7{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:18.900000px;}
.y6{bottom:19.620000px;}
.y3b{bottom:37.980000px;}
.ya{bottom:61.020000px;}
.y9{bottom:75.096000px;}
.y8{bottom:89.316000px;}
.y7{bottom:103.536000px;}
.y5f{bottom:137.916000px;}
.y5e{bottom:152.490000px;}
.y38{bottom:163.650000px;}
.y5d{bottom:165.810000px;}
.y3a{bottom:170.670000px;}
.ye{bottom:172.110000px;}
.y39{bottom:188.310000px;}
.y37{bottom:189.570000px;}
.yd{bottom:197.850000px;}
.yc{bottom:214.770000px;}
.y36{bottom:215.670000px;}
.yb{bottom:240.510000px;}
.y2b{bottom:504.075000px;}
.y2a{bottom:520.995000px;}
.y29{bottom:538.095000px;}
.y28{bottom:564.015000px;}
.y17{bottom:567.795000px;}
.y16{bottom:580.935000px;}
.y27{bottom:581.115000px;}
.y15{bottom:594.255000px;}
.y26{bottom:598.035000px;}
.y25{bottom:615.165000px;}
.y24{bottom:641.085000px;}
.y35{bottom:656.205000px;}
.y23{bottom:658.185000px;}
.y34{bottom:669.525000px;}
.y22{bottom:675.105000px;}
.y33{bottom:682.665000px;}
.y21{bottom:692.205000px;}
.y32{bottom:695.985000px;}
.y50{bottom:697.605000px;}
.y20{bottom:709.125000px;}
.y31{bottom:709.305000px;}
.y30{bottom:722.445000px;}
.y4f{bottom:725.505000px;}
.y1f{bottom:726.225000px;}
.y2f{bottom:735.765000px;}
.y1e{bottom:743.325000px;}
.y2e{bottom:749.625000px;}
.y4e{bottom:753.405000px;}
.y1d{bottom:760.245000px;}
.y2d{bottom:764.745000px;}
.y1c{bottom:777.345000px;}
.y2c{bottom:779.685000px;}
.y4d{bottom:780.585000px;}
.y5c{bottom:781.305000px;}
.y1b{bottom:799.485000px;}
.y4c{bottom:807.225000px;}
.y5b{bottom:807.945000px;}
.y4b{bottom:830.085000px;}
.y1a{bottom:832.245000px;}
.y5a{bottom:835.845000px;}
.y4a{bottom:851.505000px;}
.y19{bottom:858.165000px;}
.y59{bottom:863.745000px;}
.y49{bottom:873.105000px;}
.y18{bottom:878.370000px;}
.y58{bottom:891.690000px;}
.y48{bottom:894.570000px;}
.y14{bottom:898.170000px;}
.y12{bottom:902.850000px;}
.y13{bottom:911.310000px;}
.y47{bottom:916.170000px;}
.y57{bottom:919.590000px;}
.y11{bottom:936.330000px;}
.y46{bottom:937.590000px;}
.y56{bottom:947.490000px;}
.y3{bottom:957.930000px;}
.y45{bottom:959.190000px;}
.y10{bottom:969.810000px;}
.y55{bottom:975.390000px;}
.y44{bottom:980.610000px;}
.y2{bottom:983.670000px;}
.y43{bottom:1002.210000px;}
.y54{bottom:1003.290000px;}
.yf{bottom:1005.990000px;}
.y1{bottom:1009.410000px;}
.y42{bottom:1023.630000px;}
.y53{bottom:1031.190000px;}
.y41{bottom:1045.230000px;}
.y52{bottom:1059.090000px;}
.y40{bottom:1066.650000px;}
.y51{bottom:1086.990000px;}
.y3f{bottom:1088.250000px;}
.y5{bottom:1123.890000px;}
.y61{bottom:1124.070000px;}
.y60{bottom:1135.410000px;}
.y3e{bottom:1163.880000px;}
.y4{bottom:1165.320000px;}
.y3d{bottom:1185.480000px;}
.h1c{height:25.136719px;}
.h10{height:29.078437px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h6{height:31.672266px;}
.h7{height:31.772812px;}
.hc{height:32.717461px;}
.h15{height:33.683203px;}
.h14{height:34.036523px;}
.h1a{height:34.419375px;}
.h8{height:36.180000px;}
.h12{height:37.705078px;}
.h13{height:37.805625px;}
.h16{height:38.100586px;}
.h1b{height:39.760312px;}
.h17{height:41.726953px;}
.h11{height:42.164648px;}
.h18{height:47.980898px;}
.h19{height:51.363281px;}
.hf{height:52.957125px;}
.h2{height:56.566406px;}
.h5{height:59.439023px;}
.ha{height:76.201172px;}
.hb{height:76.302773px;}
.h4{height:77.044922px;}
.h3{height:77.147648px;}
.h9{height:92.965430px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:65.879987px;}
.x8{left:69.479987px;}
.x1{left:70.559987px;}
.x11{left:75.599987px;}
.x5{left:224.849987px;}
.x12{left:249.149987px;}
.x6{left:260.129987px;}
.x9{left:276.374987px;}
.xd{left:366.194987px;}
.xa{left:394.994987px;}
.x4{left:438.194987px;}
.xe{left:439.994987px;}
.x14{left:461.414987px;}
.x13{left:462.494987px;}
.x16{left:544.064987px;}
.xb{left:586.004987px;}
.x3{left:667.949987px;}
.xc{left:674.249987px;}
.x18{left:680.189987px;}
.x15{left:689.009987px;}
.x2{left:705.389987px;}
.x10{left:719.069987px;}
.x17{left:736.709987px;}
.xf{left:744.269987px;}
.x19{left:770.549987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.013440pt;}
.ls3{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.318720pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.359680pt;}
.ls4{letter-spacing:0.439040pt;}
.ws8{word-spacing:-48.000000pt;}
.ws1{word-spacing:-25.824000pt;}
.ws4{word-spacing:-25.600000pt;}
.ws0{word-spacing:-17.216000pt;}
.ws2{word-spacing:-12.005120pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.728000pt;}
.wsa{word-spacing:-9.690880pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:-7.872000pt;}
.ws9{word-spacing:0.000000pt;}
._8{margin-left:-3.765845pt;}
._7{margin-left:-2.353963pt;}
._0{margin-left:-1.057408pt;}
._3{width:0.896128pt;}
._5{width:1.876779pt;}
._4{width:3.033088pt;}
._6{width:3.939200pt;}
._1{width:4.838400pt;}
._2{width:5.846400pt;}
._9{width:7.401344pt;}
._a{width:9.120000pt;}
._b{width:10.704000pt;}
.fsb{font-size:31.360000pt;}
.fsa{font-size:31.488000pt;}
.fsd{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs5{font-size:40.448000pt;}
.fs6{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs7{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:16.800000pt;}
.y6{bottom:17.440000pt;}
.y3b{bottom:33.760000pt;}
.ya{bottom:54.240000pt;}
.y9{bottom:66.752000pt;}
.y8{bottom:79.392000pt;}
.y7{bottom:92.032000pt;}
.y5f{bottom:122.592000pt;}
.y5e{bottom:135.546667pt;}
.y38{bottom:145.466667pt;}
.y5d{bottom:147.386667pt;}
.y3a{bottom:151.706667pt;}
.ye{bottom:152.986667pt;}
.y39{bottom:167.386667pt;}
.y37{bottom:168.506667pt;}
.yd{bottom:175.866667pt;}
.yc{bottom:190.906667pt;}
.y36{bottom:191.706667pt;}
.yb{bottom:213.786667pt;}
.y2b{bottom:448.066667pt;}
.y2a{bottom:463.106667pt;}
.y29{bottom:478.306667pt;}
.y28{bottom:501.346667pt;}
.y17{bottom:504.706667pt;}
.y16{bottom:516.386667pt;}
.y27{bottom:516.546667pt;}
.y15{bottom:528.226667pt;}
.y26{bottom:531.586667pt;}
.y25{bottom:546.813333pt;}
.y24{bottom:569.853333pt;}
.y35{bottom:583.293333pt;}
.y23{bottom:585.053333pt;}
.y34{bottom:595.133333pt;}
.y22{bottom:600.093333pt;}
.y33{bottom:606.813333pt;}
.y21{bottom:615.293333pt;}
.y32{bottom:618.653333pt;}
.y50{bottom:620.093333pt;}
.y20{bottom:630.333333pt;}
.y31{bottom:630.493333pt;}
.y30{bottom:642.173333pt;}
.y4f{bottom:644.893333pt;}
.y1f{bottom:645.533333pt;}
.y2f{bottom:654.013333pt;}
.y1e{bottom:660.733333pt;}
.y2e{bottom:666.333333pt;}
.y4e{bottom:669.693333pt;}
.y1d{bottom:675.773333pt;}
.y2d{bottom:679.773333pt;}
.y1c{bottom:690.973333pt;}
.y2c{bottom:693.053333pt;}
.y4d{bottom:693.853333pt;}
.y5c{bottom:694.493333pt;}
.y1b{bottom:710.653333pt;}
.y4c{bottom:717.533333pt;}
.y5b{bottom:718.173333pt;}
.y4b{bottom:737.853333pt;}
.y1a{bottom:739.773333pt;}
.y5a{bottom:742.973333pt;}
.y4a{bottom:756.893333pt;}
.y19{bottom:762.813333pt;}
.y59{bottom:767.773333pt;}
.y49{bottom:776.093333pt;}
.y18{bottom:780.773333pt;}
.y58{bottom:792.613333pt;}
.y48{bottom:795.173333pt;}
.y14{bottom:798.373333pt;}
.y12{bottom:802.533333pt;}
.y13{bottom:810.053333pt;}
.y47{bottom:814.373333pt;}
.y57{bottom:817.413333pt;}
.y11{bottom:832.293333pt;}
.y46{bottom:833.413333pt;}
.y56{bottom:842.213333pt;}
.y3{bottom:851.493333pt;}
.y45{bottom:852.613333pt;}
.y10{bottom:862.053333pt;}
.y55{bottom:867.013333pt;}
.y44{bottom:871.653333pt;}
.y2{bottom:874.373333pt;}
.y43{bottom:890.853333pt;}
.y54{bottom:891.813333pt;}
.yf{bottom:894.213333pt;}
.y1{bottom:897.253333pt;}
.y42{bottom:909.893333pt;}
.y53{bottom:916.613333pt;}
.y41{bottom:929.093333pt;}
.y52{bottom:941.413333pt;}
.y40{bottom:948.133333pt;}
.y51{bottom:966.213333pt;}
.y3f{bottom:967.333333pt;}
.y5{bottom:999.013333pt;}
.y61{bottom:999.173333pt;}
.y60{bottom:1009.253333pt;}
.y3e{bottom:1034.560000pt;}
.y4{bottom:1035.840000pt;}
.y3d{bottom:1053.760000pt;}
.h1c{height:22.343750pt;}
.h10{height:25.847500pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h6{height:28.153125pt;}
.h7{height:28.242500pt;}
.hc{height:29.082187pt;}
.h15{height:29.940625pt;}
.h14{height:30.254687pt;}
.h1a{height:30.595000pt;}
.h8{height:32.160000pt;}
.h12{height:33.515625pt;}
.h13{height:33.605000pt;}
.h16{height:33.867188pt;}
.h1b{height:35.342500pt;}
.h17{height:37.090625pt;}
.h11{height:37.479688pt;}
.h18{height:42.649687pt;}
.h19{height:45.656250pt;}
.hf{height:47.073000pt;}
.h2{height:50.281250pt;}
.h5{height:52.834688pt;}
.ha{height:67.734375pt;}
.hb{height:67.824688pt;}
.h4{height:68.484375pt;}
.h3{height:68.575688pt;}
.h9{height:82.635937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:58.559988pt;}
.x8{left:61.759988pt;}
.x1{left:62.719988pt;}
.x11{left:67.199988pt;}
.x5{left:199.866655pt;}
.x12{left:221.466655pt;}
.x6{left:231.226655pt;}
.x9{left:245.666655pt;}
.xd{left:325.506655pt;}
.xa{left:351.106655pt;}
.x4{left:389.506655pt;}
.xe{left:391.106655pt;}
.x14{left:410.146655pt;}
.x13{left:411.106655pt;}
.x16{left:483.613322pt;}
.xb{left:520.893322pt;}
.x3{left:593.733322pt;}
.xc{left:599.333322pt;}
.x18{left:604.613322pt;}
.x15{left:612.453322pt;}
.x2{left:627.013322pt;}
.x10{left:639.173322pt;}
.x17{left:654.853322pt;}
.xf{left:661.573322pt;}
.x19{left:684.933322pt;}
}




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