
    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_f6f3800f24c9824c35d91aef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_ac7229f58ff593f736d3ab86.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_2dcd6243db09b601edd35755.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_4c6258fcc4eacdbb7f18799a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_3b9eb145521c18f9b7d48349.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_ed50e40ee5167c890cc234ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_bf6ada4df1afcfe8c6c47f8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860352;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_3ef1cdbee3358247d092b4a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_2245366bfc0911a25116b127.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:23.760000px;}
.ls23{letter-spacing:-0.948000px;}
.ls18{letter-spacing:-0.936000px;}
.ls24{letter-spacing:-0.852000px;}
.ls25{letter-spacing:-0.834000px;}
.ls1b{letter-spacing:-0.768000px;}
.ls12{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.590400px;}
.ls2b{letter-spacing:-0.579000px;}
.ls32{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.472200px;}
.lse{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.309600px;}
.lsb{letter-spacing:-0.306000px;}
.lsd{letter-spacing:-0.289200px;}
.ls27{letter-spacing:-0.282000px;}
.ls15{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.207600px;}
.ls2a{letter-spacing:-0.195600px;}
.ls16{letter-spacing:-0.193200px;}
.ls11{letter-spacing:-0.132600px;}
.ls20{letter-spacing:-0.115200px;}
.ls13{letter-spacing:-0.078000px;}
.ls30{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.048960px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls31{letter-spacing:0.060600px;}
.ls0{letter-spacing:0.074880px;}
.ls3{letter-spacing:0.086400px;}
.ls1f{letter-spacing:0.089400px;}
.ls4{letter-spacing:0.094080px;}
.ls1c{letter-spacing:0.129600px;}
.ls14{letter-spacing:0.132600px;}
.ls9{letter-spacing:0.140400px;}
.ls2e{letter-spacing:0.141000px;}
.ls2d{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.150000px;}
.ls28{letter-spacing:0.158400px;}
.ls8{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.244800px;}
.ls19{letter-spacing:0.247800px;}
.lsc{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.313920px;}
.ls29{letter-spacing:0.354000px;}
.ls10{letter-spacing:0.371400px;}
.ls22{letter-spacing:0.869760px;}
.ls2c{letter-spacing:4.469760px;}
.ls1d{letter-spacing:13.968000px;}
.ls17{letter-spacing:15.408000px;}
.ls2f{letter-spacing:33.786720px;}
.ls6{letter-spacing:38.465280px;}
.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:-15.341640px;}
.ws17{word-spacing:-15.324240px;}
.ws4{word-spacing:-15.226440px;}
.ws1a{word-spacing:-15.111240px;}
.ws9{word-spacing:-15.102840px;}
.wsf{word-spacing:-15.099840px;}
.ws11{word-spacing:-15.059640px;}
.ws0{word-spacing:-14.970240px;}
.wse{word-spacing:-14.921280px;}
.ws12{word-spacing:-14.855040px;}
.ws10{word-spacing:-14.837640px;}
.wsb{word-spacing:-14.777040px;}
.ws18{word-spacing:-14.774640px;}
.ws13{word-spacing:-14.762640px;}
.wsa{word-spacing:-14.754240px;}
.ws6{word-spacing:-14.506440px;}
.ws19{word-spacing:-14.391240px;}
.ws16{word-spacing:-14.379840px;}
.ws15{word-spacing:-14.136240px;}
.wsd{word-spacing:-14.034240px;}
.ws14{word-spacing:-14.022240px;}
.ws3{word-spacing:-13.505760px;}
.ws1b{word-spacing:-13.447440px;}
.ws2{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.898000px;}
.ws7{word-spacing:-9.128160px;}
.ws5{word-spacing:-7.195920px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.391040px;}
._1{width:1.015920px;}
._6{width:2.046480px;}
._8{width:3.848880px;}
._c{width:5.759520px;}
._7{width:6.822720px;}
._4{width:7.948800px;}
._5{width:8.952960px;}
._d{width:10.587840px;}
._f{width:11.776320px;}
._b{width:12.784320px;}
._2{width:13.844160px;}
._3{width:16.058640px;}
._e{width:17.856240px;}
._9{width:18.944640px;}
._a{width:19.979760px;}
._10{width:21.155280px;}
._14{width:22.247040px;}
._15{width:23.846400px;}
._16{width:25.534080px;}
._11{width:27.025920px;}
._19{width:28.262160px;}
._13{width:30.187200px;}
._12{width:31.728960px;}
._18{width:33.120000px;}
._1a{width:34.246080px;}
._17{width:45.904320px;}
._1c{width:270.832320px;}
._1b{width:272.386080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.120000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:75.456000px;}
.y1{bottom:113.616000px;}
.y24{bottom:133.416000px;}
.y44{bottom:144.216000px;}
.y7f{bottom:144.396000px;}
.y23{bottom:151.770000px;}
.y22{bottom:156.990000px;}
.y6b{bottom:159.150000px;}
.y54{bottom:159.330000px;}
.ya4{bottom:165.810000px;}
.y21{bottom:170.670000px;}
.y43{bottom:174.450000px;}
.y7e{bottom:174.630000px;}
.ya3{bottom:184.350000px;}
.y6a{bottom:189.390000px;}
.y53{bottom:189.570000px;}
.ya2{bottom:202.710000px;}
.y42{bottom:204.690000px;}
.y7d{bottom:204.870000px;}
.y69{bottom:219.630000px;}
.y52{bottom:219.810000px;}
.y20{bottom:224.850000px;}
.y41{bottom:234.750000px;}
.y7c{bottom:235.110000px;}
.ya1{bottom:235.830000px;}
.y68{bottom:249.870000px;}
.y51{bottom:250.050000px;}
.ya0{bottom:254.370000px;}
.y1f{bottom:255.090000px;}
.y85{bottom:264.810000px;}
.y40{bottom:264.990000px;}
.y91{bottom:265.170000px;}
.y67{bottom:280.110000px;}
.y1e{bottom:285.330000px;}
.y9f{bottom:287.490000px;}
.y50{bottom:295.050000px;}
.y3f{bottom:295.230000px;}
.y90{bottom:295.410000px;}
.y9e{bottom:306.030000px;}
.yc3{bottom:306.390000px;}
.y66{bottom:310.170000px;}
.y7b{bottom:310.530000px;}
.y1d{bottom:315.570000px;}
.y9d{bottom:324.210000px;}
.y3e{bottom:325.470000px;}
.y8f{bottom:325.650000px;}
.y4f{bottom:340.275000px;}
.y65{bottom:340.455000px;}
.y7a{bottom:340.635000px;}
.yc2{bottom:341.175000px;}
.y1c{bottom:345.855000px;}
.y3d{bottom:355.755000px;}
.y8e{bottom:355.935000px;}
.y9c{bottom:357.375000px;}
.y4e{bottom:370.695000px;}
.y79{bottom:370.875000px;}
.yc1{bottom:374.475000px;}
.y1b{bottom:376.095000px;}
.y3c{bottom:385.995000px;}
.y8d{bottom:386.175000px;}
.y4d{bottom:400.935000px;}
.y78{bottom:401.115000px;}
.y9b{bottom:401.295000px;}
.y1a{bottom:406.155000px;}
.yc0{bottom:407.775000px;}
.y3b{bottom:416.055000px;}
.y8c{bottom:416.415000px;}
.y4c{bottom:431.175000px;}
.y77{bottom:431.355000px;}
.y19{bottom:436.395000px;}
.ybf{bottom:441.075000px;}
.y3a{bottom:446.295000px;}
.y9a{bottom:446.655000px;}
.ybe{bottom:459.435000px;}
.y4b{bottom:461.415000px;}
.y76{bottom:461.595000px;}
.y39{bottom:476.535000px;}
.y18{bottom:481.395000px;}
.y4a{bottom:491.475000px;}
.y75{bottom:491.835000px;}
.ybd{bottom:492.735000px;}
.y8b{bottom:506.595000px;}
.y38{bottom:506.775000px;}
.y17{bottom:511.815000px;}
.y92{bottom:521.535000px;}
.y49{bottom:521.715000px;}
.y74{bottom:521.895000px;}
.y99{bottom:522.255000px;}
.ybc{bottom:526.035000px;}
.y84{bottom:537.015000px;}
.y16{bottom:542.055000px;}
.ybb{bottom:544.395000px;}
.y37{bottom:551.775000px;}
.y48{bottom:551.955000px;}
.y73{bottom:552.135000px;}
.y98{bottom:552.495000px;}
.y64{bottom:566.715000px;}
.y83{bottom:567.255000px;}
.y15{bottom:572.295000px;}
.yba{bottom:577.515000px;}
.y36{bottom:582.195000px;}
.y72{bottom:582.375000px;}
.y63{bottom:597.135000px;}
.y8a{bottom:597.495000px;}
.y14{bottom:602.535000px;}
.yb9{bottom:610.845000px;}
.y82{bottom:612.285000px;}
.y35{bottom:612.465000px;}
.y71{bottom:612.645000px;}
.y62{bottom:627.405000px;}
.y89{bottom:627.585000px;}
.y97{bottom:627.945000px;}
.yb8{bottom:629.385000px;}
.y13{bottom:632.805000px;}
.y34{bottom:642.705000px;}
.y70{bottom:642.885000px;}
.y61{bottom:657.645000px;}
.y88{bottom:657.825000px;}
.yb7{bottom:662.505000px;}
.y12{bottom:663.045000px;}
.y33{bottom:672.945000px;}
.y6f{bottom:673.125000px;}
.y60{bottom:687.885000px;}
.y11{bottom:693.105000px;}
.yb6{bottom:695.805000px;}
.y87{bottom:702.825000px;}
.y32{bottom:703.005000px;}
.y96{bottom:703.365000px;}
.yb5{bottom:714.345000px;}
.y5f{bottom:718.125000px;}
.y10{bottom:723.345000px;}
.y31{bottom:733.245000px;}
.yb4{bottom:747.465000px;}
.y5e{bottom:748.365000px;}
.y6e{bottom:748.545000px;}
.yf{bottom:753.585000px;}
.y30{bottom:763.485000px;}
.yb3{bottom:766.005000px;}
.y5d{bottom:778.425000px;}
.y95{bottom:778.785000px;}
.ye{bottom:783.825000px;}
.yb2{bottom:784.185000px;}
.y6d{bottom:793.545000px;}
.y2f{bottom:793.725000px;}
.y5c{bottom:808.665000px;}
.yd{bottom:814.065000px;}
.yb1{bottom:817.485000px;}
.y94{bottom:823.785000px;}
.y2e{bottom:823.965000px;}
.yb0{bottom:835.845000px;}
.y5b{bottom:838.905000px;}
.y2d{bottom:854.205000px;}
.yc{bottom:859.065000px;}
.yaf{bottom:868.965000px;}
.y5a{bottom:869.145000px;}
.y2c{bottom:884.310000px;}
.yae{bottom:887.550000px;}
.y59{bottom:899.430000px;}
.yb{bottom:904.290000px;}
.y2b{bottom:914.550000px;}
.yad{bottom:920.670000px;}
.y81{bottom:929.490000px;}
.y58{bottom:929.670000px;}
.yac{bottom:939.210000px;}
.y2a{bottom:944.790000px;}
.ya{bottom:949.470000px;}
.y86{bottom:959.730000px;}
.y57{bottom:959.910000px;}
.yab{bottom:972.330000px;}
.y29{bottom:975.030000px;}
.y80{bottom:989.790000px;}
.y56{bottom:989.970000px;}
.y9{bottom:994.830000px;}
.y28{bottom:1005.270000px;}
.yaa{bottom:1005.630000px;}
.y47{bottom:1020.030000px;}
.y55{bottom:1020.210000px;}
.y8{bottom:1023.990000px;}
.ya9{bottom:1024.170000px;}
.y27{bottom:1035.510000px;}
.y6c{bottom:1050.270000px;}
.y46{bottom:1050.450000px;}
.y7{bottom:1053.150000px;}
.ya8{bottom:1057.290000px;}
.y26{bottom:1065.750000px;}
.y93{bottom:1080.510000px;}
.y45{bottom:1080.690000px;}
.y6{bottom:1081.950000px;}
.ya7{bottom:1090.590000px;}
.y25{bottom:1110.750000px;}
.y4{bottom:1110.930000px;}
.y5{bottom:1116.870000px;}
.ya6{bottom:1123.890000px;}
.y3{bottom:1141.200000px;}
.ya5{bottom:1142.460000px;}
.h5{height:34.439766px;}
.h9{height:38.158594px;}
.h3{height:45.281250px;}
.hc{height:45.895781px;}
.h6{height:49.284492px;}
.h2{height:54.628594px;}
.h8{height:58.199766px;}
.ha{height:58.651172px;}
.hb{height:59.378906px;}
.hd{height:61.423863px;}
.h7{height:68.956875px;}
.h4{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.xe{left:132.516000px;}
.x11{left:154.650000px;}
.xb{left:170.130000px;}
.xc{left:180.750000px;}
.xf{left:197.130000px;}
.x3{left:232.230000px;}
.x4{left:287.175000px;}
.x8{left:312.915000px;}
.x9{left:333.435000px;}
.xd{left:343.695000px;}
.x7{left:360.795000px;}
.xa{left:446.505000px;}
.x5{left:554.122500px;}
.x6{left:559.410000px;}
.x10{left:748.800000px;}
.x1{left:757.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls23{letter-spacing:-0.842667pt;}
.ls18{letter-spacing:-0.832000pt;}
.ls24{letter-spacing:-0.757333pt;}
.ls25{letter-spacing:-0.741333pt;}
.ls1b{letter-spacing:-0.682667pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.524800pt;}
.ls2b{letter-spacing:-0.514667pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.419733pt;}
.lse{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.275200pt;}
.lsb{letter-spacing:-0.272000pt;}
.lsd{letter-spacing:-0.257067pt;}
.ls27{letter-spacing:-0.250667pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.184533pt;}
.ls2a{letter-spacing:-0.173867pt;}
.ls16{letter-spacing:-0.171733pt;}
.ls11{letter-spacing:-0.117867pt;}
.ls20{letter-spacing:-0.102400pt;}
.ls13{letter-spacing:-0.069333pt;}
.ls30{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.043520pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls31{letter-spacing:0.053867pt;}
.ls0{letter-spacing:0.066560pt;}
.ls3{letter-spacing:0.076800pt;}
.ls1f{letter-spacing:0.079467pt;}
.ls4{letter-spacing:0.083627pt;}
.ls1c{letter-spacing:0.115200pt;}
.ls14{letter-spacing:0.117867pt;}
.ls9{letter-spacing:0.124800pt;}
.ls2e{letter-spacing:0.125333pt;}
.ls2d{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.133333pt;}
.ls28{letter-spacing:0.140800pt;}
.ls8{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.217600pt;}
.ls19{letter-spacing:0.220267pt;}
.lsc{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.279040pt;}
.ls29{letter-spacing:0.314667pt;}
.ls10{letter-spacing:0.330133pt;}
.ls22{letter-spacing:0.773120pt;}
.ls2c{letter-spacing:3.973120pt;}
.ls1d{letter-spacing:12.416000pt;}
.ls17{letter-spacing:13.696000pt;}
.ls2f{letter-spacing:30.032640pt;}
.ls6{letter-spacing:34.191360pt;}
.ws8{word-spacing:-13.637013pt;}
.ws17{word-spacing:-13.621547pt;}
.ws4{word-spacing:-13.534613pt;}
.ws1a{word-spacing:-13.432213pt;}
.ws9{word-spacing:-13.424747pt;}
.wsf{word-spacing:-13.422080pt;}
.ws11{word-spacing:-13.386347pt;}
.ws0{word-spacing:-13.306880pt;}
.wse{word-spacing:-13.263360pt;}
.ws12{word-spacing:-13.204480pt;}
.ws10{word-spacing:-13.189013pt;}
.wsb{word-spacing:-13.135147pt;}
.ws18{word-spacing:-13.133013pt;}
.ws13{word-spacing:-13.122347pt;}
.wsa{word-spacing:-13.114880pt;}
.ws6{word-spacing:-12.894613pt;}
.ws19{word-spacing:-12.792213pt;}
.ws16{word-spacing:-12.782080pt;}
.ws15{word-spacing:-12.565547pt;}
.wsd{word-spacing:-12.474880pt;}
.ws14{word-spacing:-12.464213pt;}
.ws3{word-spacing:-12.005120pt;}
.ws1b{word-spacing:-11.953280pt;}
.ws2{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.576000pt;}
.ws7{word-spacing:-8.113920pt;}
.ws5{word-spacing:-6.396373pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-1.236480pt;}
._1{width:0.903040pt;}
._6{width:1.819093pt;}
._8{width:3.421227pt;}
._c{width:5.119573pt;}
._7{width:6.064640pt;}
._4{width:7.065600pt;}
._5{width:7.958187pt;}
._d{width:9.411413pt;}
._f{width:10.467840pt;}
._b{width:11.363840pt;}
._2{width:12.305920pt;}
._3{width:14.274347pt;}
._e{width:15.872213pt;}
._9{width:16.839680pt;}
._a{width:17.759787pt;}
._10{width:18.804693pt;}
._14{width:19.775147pt;}
._15{width:21.196800pt;}
._16{width:22.696960pt;}
._11{width:24.023040pt;}
._19{width:25.121920pt;}
._13{width:26.833067pt;}
._12{width:28.203520pt;}
._18{width:29.440000pt;}
._1a{width:30.440960pt;}
._17{width:40.803840pt;}
._1c{width:240.739840pt;}
._1b{width:242.120960pt;}
.fs4{font-size:29.440000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:67.072000pt;}
.y1{bottom:100.992000pt;}
.y24{bottom:118.592000pt;}
.y44{bottom:128.192000pt;}
.y7f{bottom:128.352000pt;}
.y23{bottom:134.906667pt;}
.y22{bottom:139.546667pt;}
.y6b{bottom:141.466667pt;}
.y54{bottom:141.626667pt;}
.ya4{bottom:147.386667pt;}
.y21{bottom:151.706667pt;}
.y43{bottom:155.066667pt;}
.y7e{bottom:155.226667pt;}
.ya3{bottom:163.866667pt;}
.y6a{bottom:168.346667pt;}
.y53{bottom:168.506667pt;}
.ya2{bottom:180.186667pt;}
.y42{bottom:181.946667pt;}
.y7d{bottom:182.106667pt;}
.y69{bottom:195.226667pt;}
.y52{bottom:195.386667pt;}
.y20{bottom:199.866667pt;}
.y41{bottom:208.666667pt;}
.y7c{bottom:208.986667pt;}
.ya1{bottom:209.626667pt;}
.y68{bottom:222.106667pt;}
.y51{bottom:222.266667pt;}
.ya0{bottom:226.106667pt;}
.y1f{bottom:226.746667pt;}
.y85{bottom:235.386667pt;}
.y40{bottom:235.546667pt;}
.y91{bottom:235.706667pt;}
.y67{bottom:248.986667pt;}
.y1e{bottom:253.626667pt;}
.y9f{bottom:255.546667pt;}
.y50{bottom:262.266667pt;}
.y3f{bottom:262.426667pt;}
.y90{bottom:262.586667pt;}
.y9e{bottom:272.026667pt;}
.yc3{bottom:272.346667pt;}
.y66{bottom:275.706667pt;}
.y7b{bottom:276.026667pt;}
.y1d{bottom:280.506667pt;}
.y9d{bottom:288.186667pt;}
.y3e{bottom:289.306667pt;}
.y8f{bottom:289.466667pt;}
.y4f{bottom:302.466667pt;}
.y65{bottom:302.626667pt;}
.y7a{bottom:302.786667pt;}
.yc2{bottom:303.266667pt;}
.y1c{bottom:307.426667pt;}
.y3d{bottom:316.226667pt;}
.y8e{bottom:316.386667pt;}
.y9c{bottom:317.666667pt;}
.y4e{bottom:329.506667pt;}
.y79{bottom:329.666667pt;}
.yc1{bottom:332.866667pt;}
.y1b{bottom:334.306667pt;}
.y3c{bottom:343.106667pt;}
.y8d{bottom:343.266667pt;}
.y4d{bottom:356.386667pt;}
.y78{bottom:356.546667pt;}
.y9b{bottom:356.706667pt;}
.y1a{bottom:361.026667pt;}
.yc0{bottom:362.466667pt;}
.y3b{bottom:369.826667pt;}
.y8c{bottom:370.146667pt;}
.y4c{bottom:383.266667pt;}
.y77{bottom:383.426667pt;}
.y19{bottom:387.906667pt;}
.ybf{bottom:392.066667pt;}
.y3a{bottom:396.706667pt;}
.y9a{bottom:397.026667pt;}
.ybe{bottom:408.386667pt;}
.y4b{bottom:410.146667pt;}
.y76{bottom:410.306667pt;}
.y39{bottom:423.586667pt;}
.y18{bottom:427.906667pt;}
.y4a{bottom:436.866667pt;}
.y75{bottom:437.186667pt;}
.ybd{bottom:437.986667pt;}
.y8b{bottom:450.306667pt;}
.y38{bottom:450.466667pt;}
.y17{bottom:454.946667pt;}
.y92{bottom:463.586667pt;}
.y49{bottom:463.746667pt;}
.y74{bottom:463.906667pt;}
.y99{bottom:464.226667pt;}
.ybc{bottom:467.586667pt;}
.y84{bottom:477.346667pt;}
.y16{bottom:481.826667pt;}
.ybb{bottom:483.906667pt;}
.y37{bottom:490.466667pt;}
.y48{bottom:490.626667pt;}
.y73{bottom:490.786667pt;}
.y98{bottom:491.106667pt;}
.y64{bottom:503.746667pt;}
.y83{bottom:504.226667pt;}
.y15{bottom:508.706667pt;}
.yba{bottom:513.346667pt;}
.y36{bottom:517.506667pt;}
.y72{bottom:517.666667pt;}
.y63{bottom:530.786667pt;}
.y8a{bottom:531.106667pt;}
.y14{bottom:535.586667pt;}
.yb9{bottom:542.973333pt;}
.y82{bottom:544.253333pt;}
.y35{bottom:544.413333pt;}
.y71{bottom:544.573333pt;}
.y62{bottom:557.693333pt;}
.y89{bottom:557.853333pt;}
.y97{bottom:558.173333pt;}
.yb8{bottom:559.453333pt;}
.y13{bottom:562.493333pt;}
.y34{bottom:571.293333pt;}
.y70{bottom:571.453333pt;}
.y61{bottom:584.573333pt;}
.y88{bottom:584.733333pt;}
.yb7{bottom:588.893333pt;}
.y12{bottom:589.373333pt;}
.y33{bottom:598.173333pt;}
.y6f{bottom:598.333333pt;}
.y60{bottom:611.453333pt;}
.y11{bottom:616.093333pt;}
.yb6{bottom:618.493333pt;}
.y87{bottom:624.733333pt;}
.y32{bottom:624.893333pt;}
.y96{bottom:625.213333pt;}
.yb5{bottom:634.973333pt;}
.y5f{bottom:638.333333pt;}
.y10{bottom:642.973333pt;}
.y31{bottom:651.773333pt;}
.yb4{bottom:664.413333pt;}
.y5e{bottom:665.213333pt;}
.y6e{bottom:665.373333pt;}
.yf{bottom:669.853333pt;}
.y30{bottom:678.653333pt;}
.yb3{bottom:680.893333pt;}
.y5d{bottom:691.933333pt;}
.y95{bottom:692.253333pt;}
.ye{bottom:696.733333pt;}
.yb2{bottom:697.053333pt;}
.y6d{bottom:705.373333pt;}
.y2f{bottom:705.533333pt;}
.y5c{bottom:718.813333pt;}
.yd{bottom:723.613333pt;}
.yb1{bottom:726.653333pt;}
.y94{bottom:732.253333pt;}
.y2e{bottom:732.413333pt;}
.yb0{bottom:742.973333pt;}
.y5b{bottom:745.693333pt;}
.y2d{bottom:759.293333pt;}
.yc{bottom:763.613333pt;}
.yaf{bottom:772.413333pt;}
.y5a{bottom:772.573333pt;}
.y2c{bottom:786.053333pt;}
.yae{bottom:788.933333pt;}
.y59{bottom:799.493333pt;}
.yb{bottom:803.813333pt;}
.y2b{bottom:812.933333pt;}
.yad{bottom:818.373333pt;}
.y81{bottom:826.213333pt;}
.y58{bottom:826.373333pt;}
.yac{bottom:834.853333pt;}
.y2a{bottom:839.813333pt;}
.ya{bottom:843.973333pt;}
.y86{bottom:853.093333pt;}
.y57{bottom:853.253333pt;}
.yab{bottom:864.293333pt;}
.y29{bottom:866.693333pt;}
.y80{bottom:879.813333pt;}
.y56{bottom:879.973333pt;}
.y9{bottom:884.293333pt;}
.y28{bottom:893.573333pt;}
.yaa{bottom:893.893333pt;}
.y47{bottom:906.693333pt;}
.y55{bottom:906.853333pt;}
.y8{bottom:910.213333pt;}
.ya9{bottom:910.373333pt;}
.y27{bottom:920.453333pt;}
.y6c{bottom:933.573333pt;}
.y46{bottom:933.733333pt;}
.y7{bottom:936.133333pt;}
.ya8{bottom:939.813333pt;}
.y26{bottom:947.333333pt;}
.y93{bottom:960.453333pt;}
.y45{bottom:960.613333pt;}
.y6{bottom:961.733333pt;}
.ya7{bottom:969.413333pt;}
.y25{bottom:987.333333pt;}
.y4{bottom:987.493333pt;}
.y5{bottom:992.773333pt;}
.ya6{bottom:999.013333pt;}
.y3{bottom:1014.400000pt;}
.ya5{bottom:1015.520000pt;}
.h5{height:30.613125pt;}
.h9{height:33.918750pt;}
.h3{height:40.250000pt;}
.hc{height:40.796250pt;}
.h6{height:43.808438pt;}
.h2{height:48.558750pt;}
.h8{height:51.733125pt;}
.ha{height:52.134375pt;}
.hb{height:52.781250pt;}
.hd{height:54.598989pt;}
.h7{height:61.295000pt;}
.h4{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.xe{left:117.792000pt;}
.x11{left:137.466667pt;}
.xb{left:151.226667pt;}
.xc{left:160.666667pt;}
.xf{left:175.226667pt;}
.x3{left:206.426667pt;}
.x4{left:255.266667pt;}
.x8{left:278.146667pt;}
.x9{left:296.386667pt;}
.xd{left:305.506667pt;}
.x7{left:320.706667pt;}
.xa{left:396.893333pt;}
.x5{left:492.553333pt;}
.x6{left:497.253333pt;}
.x10{left:665.600000pt;}
.x1{left:673.120000pt;}
}




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