
    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_c33e88f7da704bc14bdd995d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.079102;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_0deff6ab2a9cec0f51c46ed6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_431ca5ceb58c9edeed6455dc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_8005379a83e2cdc07662b91b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.079102;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_014df4ebb2b4084774520a2a.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_60bade55a3968c0ca739ec1f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722168;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_8132c0eae73425e938c5dfb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.337200px;}
.ls1b{letter-spacing:-0.310800px;}
.ls18{letter-spacing:-0.253200px;}
.lsa{letter-spacing:-0.252000px;}
.lsf{letter-spacing:-0.250800px;}
.ls10{letter-spacing:-0.034560px;}
.ls9{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.005760px;}
.ls13{letter-spacing:0.011520px;}
.lsc{letter-spacing:0.083400px;}
.ls6{letter-spacing:0.083520px;}
.ls1d{letter-spacing:0.114600px;}
.ls1c{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.181440px;}
.lse{letter-spacing:0.238800px;}
.lsb{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.313800px;}
.ls15{letter-spacing:0.331200px;}
.ls1a{letter-spacing:0.520632px;}
.ls5{letter-spacing:0.803520px;}
.ls19{letter-spacing:0.804000px;}
.ls17{letter-spacing:28.981440px;}
.ls3{letter-spacing:37.025280px;}
.ls4{letter-spacing:38.465280px;}
.ls2{letter-spacing:39.905280px;}
.ls1{letter-spacing:40.625280px;}
.ls0{letter-spacing:52.865280px;}
.ls16{letter-spacing:60.781440px;}
.ls12{letter-spacing:845.741280px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.wse{word-spacing:-18.273600px;}
.wsc{word-spacing:-18.149760px;}
.ws5{word-spacing:-18.132360px;}
.ws3{word-spacing:-18.080760px;}
.ws6{word-spacing:-18.057360px;}
.wsb{word-spacing:-17.830080px;}
.ws7{word-spacing:-17.818560px;}
.ws9{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.567760px;}
.wsf{word-spacing:-17.565360px;}
.ws10{word-spacing:-17.507760px;}
.ws0{word-spacing:-17.481360px;}
.ws4{word-spacing:-16.920000px;}
.ws11{word-spacing:-16.075440px;}
.ws1{word-spacing:-14.526000px;}
.ws2{word-spacing:-8.909280px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-8.334720px;}
._1f{margin-left:-5.497920px;}
._1b{margin-left:-3.643200px;}
._6{margin-left:-2.517120px;}
._0{margin-left:-1.059840px;}
._2{width:1.080000px;}
._e{width:2.238720px;}
._8{width:4.173120px;}
._4{width:5.762880px;}
._5{width:6.888960px;}
._17{width:7.920000px;}
._18{width:8.981280px;}
._c{width:10.405680px;}
._b{width:11.509440px;}
._a{width:12.711360px;}
._22{width:13.711680px;}
._19{width:15.036480px;}
._d{width:16.560000px;}
._1e{width:18.072000px;}
._1c{width:19.225920px;}
._1d{width:20.295840px;}
._10{width:24.480000px;}
._21{width:28.483440px;}
._14{width:32.457600px;}
._1a{width:34.381440px;}
._7{width:36.034560px;}
._15{width:37.359360px;}
._16{width:38.398800px;}
._13{width:45.195840px;}
._11{width:47.494080px;}
._12{width:48.885120px;}
._20{width:59.880960px;}
._9{width:99.691200px;}
._1{width:608.514720px;}
._3{width:2380.920000px;}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:12.240000px;}
.fs2{font-size:18.000000px;}
.fs3{font-size:33.120000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsa{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:74.880000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:7.920000px;}
.y50{bottom:7.965000px;}
.y48{bottom:8.460000px;}
.y4b{bottom:27.720000px;}
.y4f{bottom:27.765000px;}
.y55{bottom:27.900000px;}
.y4a{bottom:47.520000px;}
.y52{bottom:47.700000px;}
.yc{bottom:57.600000px;}
.yb{bottom:77.580000px;}
.ya{bottom:94.860000px;}
.y9{bottom:108.180000px;}
.y8{bottom:124.380000px;}
.y2a{bottom:148.320000px;}
.y82{bottom:150.660000px;}
.y81{bottom:168.690000px;}
.y29{bottom:176.430000px;}
.y64{bottom:181.470000px;}
.y28{bottom:204.510000px;}
.y63{bottom:207.210000px;}
.y80{bottom:207.570000px;}
.y7f{bottom:225.570000px;}
.y27{bottom:232.590000px;}
.y62{bottom:232.950000px;}
.y61{bottom:258.690000px;}
.y26{bottom:259.770000px;}
.y7e{bottom:264.630000px;}
.y7d{bottom:282.630000px;}
.y60{bottom:284.430000px;}
.y25{bottom:286.410000px;}
.y7c{bottom:300.630000px;}
.y46{bottom:302.250000px;}
.y5f{bottom:310.170000px;}
.y24{bottom:313.590000px;}
.y45{bottom:332.490000px;}
.y23{bottom:339.330000px;}
.y7b{bottom:339.690000px;}
.y5e{bottom:348.870000px;}
.y7a{bottom:357.690000px;}
.y44{bottom:358.230000px;}
.y22{bottom:365.970000px;}
.y43{bottom:383.970000px;}
.y79{bottom:396.570000px;}
.y21{bottom:406.290000px;}
.y42{bottom:410.610000px;}
.y78{bottom:414.615000px;}
.y5d{bottom:421.095000px;}
.y77{bottom:432.795000px;}
.y41{bottom:438.735000px;}
.y5c{bottom:446.835000px;}
.y40{bottom:465.915000px;}
.y76{bottom:471.675000px;}
.y20{bottom:479.415000px;}
.y5b{bottom:485.715000px;}
.y75{bottom:489.675000px;}
.y3f{bottom:504.795000px;}
.y1f{bottom:505.155000px;}
.y74{bottom:507.675000px;}
.y1e{bottom:531.795000px;}
.y73{bottom:541.875000px;}
.y5a{bottom:558.795000px;}
.y1d{bottom:558.975000px;}
.y72{bottom:569.955000px;}
.y3e{bottom:577.875000px;}
.y59{bottom:585.435000px;}
.y1c{bottom:585.615000px;}
.y71{bottom:598.035000px;}
.y3d{bottom:603.615000px;}
.y58{bottom:612.615000px;}
.y1b{bottom:612.795000px;}
.y70{bottom:626.295000px;}
.y3c{bottom:629.355000px;}
.y57{bottom:629.715000px;}
.y1a{bottom:639.615000px;}
.y3b{bottom:655.095000px;}
.y19{bottom:666.825000px;}
.y56{bottom:679.065000px;}
.y3a{bottom:680.865000px;}
.y6f{bottom:687.525000px;}
.y18{bottom:693.465000px;}
.y39{bottom:706.605000px;}
.y17{bottom:720.645000px;}
.y6e{bottom:723.345000px;}
.y54{bottom:728.385000px;}
.y38{bottom:732.345000px;}
.y16{bottom:747.285000px;}
.y37{bottom:758.265000px;}
.y15{bottom:766.725000px;}
.y53{bottom:777.885000px;}
.y36{bottom:784.905000px;}
.y6d{bottom:786.525000px;}
.y14{bottom:792.105000px;}
.y35{bottom:812.085000px;}
.y6c{bottom:812.265000px;}
.y51{bottom:827.205000px;}
.y6b{bottom:838.005000px;}
.y34{bottom:838.725000px;}
.y6a{bottom:863.925000px;}
.y13{bottom:865.365000px;}
.y33{bottom:865.905000px;}
.y69{bottom:889.665000px;}
.y12{bottom:891.105000px;}
.y32{bottom:891.645000px;}
.y4e{bottom:896.505000px;}
.y68{bottom:915.450000px;}
.y11{bottom:916.890000px;}
.y31{bottom:917.430000px;}
.y67{bottom:941.190000px;}
.y10{bottom:942.630000px;}
.y30{bottom:943.170000px;}
.y4d{bottom:945.870000px;}
.yf{bottom:968.370000px;}
.y2f{bottom:969.810000px;}
.y66{bottom:980.070000px;}
.ye{bottom:994.110000px;}
.y49{bottom:995.370000px;}
.y2e{bottom:996.990000px;}
.y2d{bottom:1023.630000px;}
.y2c{bottom:1051.710000px;}
.yd{bottom:1052.790000px;}
.y65{bottom:1053.150000px;}
.y47{bottom:1064.490000px;}
.y2b{bottom:1079.790000px;}
.y7{bottom:1098.510000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1124.250000px;}
.y4{bottom:1140.450000px;}
.y3{bottom:1156.680000px;}
.y2{bottom:1173.600000px;}
.y1{bottom:1193.400000px;}
.h9{height:10.620352px;}
.h4{height:15.618164px;}
.h5{height:28.737422px;}
.hc{height:32.400000px;}
.h3{height:46.854492px;}
.hf{height:48.600000px;}
.h10{height:48.636000px;}
.h12{height:48.780000px;}
.h13{height:51.852305px;}
.h14{height:54.656582px;}
.h2{height:57.474844px;}
.hb{height:62.472656px;}
.h8{height:64.971562px;}
.h6{height:65.884219px;}
.hd{height:67.470469px;}
.ha{height:68.084282px;}
.he{height:68.400000px;}
.h11{height:68.580000px;}
.h7{height:93.708984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:338.970000px;}
.w4{width:339.015000px;}
.w2{width:892.979986px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x4{left:63.719986px;}
.x5{left:83.879987px;}
.x1{left:106.235986px;}
.x7{left:111.275987px;}
.x6{left:138.275987px;}
.x8{left:157.709987px;}
.x9{left:160.229986px;}
.xa{left:211.709986px;}
.xd{left:224.669987px;}
.x17{left:260.309986px;}
.x10{left:283.934986px;}
.x11{left:297.974986px;}
.x14{left:352.334987px;}
.x12{left:381.134986px;}
.xc{left:447.015000px;}
.xf{left:448.634986px;}
.x15{left:517.964987px;}
.x13{left:538.124986px;}
.x16{left:551.444986px;}
.x2{left:650.624986px;}
.xe{left:658.364986px;}
.x3{left:786.749986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.299733pt;}
.ls1b{letter-spacing:-0.276267pt;}
.ls18{letter-spacing:-0.225067pt;}
.lsa{letter-spacing:-0.224000pt;}
.lsf{letter-spacing:-0.222933pt;}
.ls10{letter-spacing:-0.030720pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.005120pt;}
.ls13{letter-spacing:0.010240pt;}
.lsc{letter-spacing:0.074133pt;}
.ls6{letter-spacing:0.074240pt;}
.ls1d{letter-spacing:0.101867pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.161280pt;}
.lse{letter-spacing:0.212267pt;}
.lsb{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.278933pt;}
.ls15{letter-spacing:0.294400pt;}
.ls1a{letter-spacing:0.462784pt;}
.ls5{letter-spacing:0.714240pt;}
.ls19{letter-spacing:0.714667pt;}
.ls17{letter-spacing:25.761280pt;}
.ls3{letter-spacing:32.911360pt;}
.ls4{letter-spacing:34.191360pt;}
.ls2{letter-spacing:35.471360pt;}
.ls1{letter-spacing:36.111360pt;}
.ls0{letter-spacing:46.991360pt;}
.ls16{letter-spacing:54.027947pt;}
.ls12{letter-spacing:751.770027pt;}
.wsd{word-spacing:-58.880000pt;}
.wse{word-spacing:-16.243200pt;}
.wsc{word-spacing:-16.133120pt;}
.ws5{word-spacing:-16.117653pt;}
.ws3{word-spacing:-16.071787pt;}
.ws6{word-spacing:-16.050987pt;}
.wsb{word-spacing:-15.848960pt;}
.ws7{word-spacing:-15.838720pt;}
.ws9{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.615787pt;}
.wsf{word-spacing:-15.613653pt;}
.ws10{word-spacing:-15.562453pt;}
.ws0{word-spacing:-15.538987pt;}
.ws4{word-spacing:-15.040000pt;}
.ws11{word-spacing:-14.289280pt;}
.ws1{word-spacing:-12.912000pt;}
.ws2{word-spacing:-7.919360pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-7.408640pt;}
._1f{margin-left:-4.887040pt;}
._1b{margin-left:-3.238400pt;}
._6{margin-left:-2.237440pt;}
._0{margin-left:-0.942080pt;}
._2{width:0.960000pt;}
._e{width:1.989973pt;}
._8{width:3.709440pt;}
._4{width:5.122560pt;}
._5{width:6.123520pt;}
._17{width:7.040000pt;}
._18{width:7.983360pt;}
._c{width:9.249493pt;}
._b{width:10.230613pt;}
._a{width:11.298987pt;}
._22{width:12.188160pt;}
._19{width:13.365760pt;}
._d{width:14.720000pt;}
._1e{width:16.064000pt;}
._1c{width:17.089707pt;}
._1d{width:18.040747pt;}
._10{width:21.760000pt;}
._21{width:25.318613pt;}
._14{width:28.851200pt;}
._1a{width:30.561280pt;}
._7{width:32.030720pt;}
._15{width:33.208320pt;}
._16{width:34.132267pt;}
._13{width:40.174080pt;}
._11{width:42.216960pt;}
._12{width:43.453440pt;}
._20{width:53.227520pt;}
._9{width:88.614400pt;}
._1{width:540.901973pt;}
._3{width:2116.373333pt;}
.fs6{font-size:10.880000pt;}
.fs2{font-size:16.000000pt;}
.fs3{font-size:29.440000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsa{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:66.560000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:7.040000pt;}
.y50{bottom:7.080000pt;}
.y48{bottom:7.520000pt;}
.y4b{bottom:24.640000pt;}
.y4f{bottom:24.680000pt;}
.y55{bottom:24.800000pt;}
.y4a{bottom:42.240000pt;}
.y52{bottom:42.400000pt;}
.yc{bottom:51.200000pt;}
.yb{bottom:68.960000pt;}
.ya{bottom:84.320000pt;}
.y9{bottom:96.160000pt;}
.y8{bottom:110.560000pt;}
.y2a{bottom:131.840000pt;}
.y82{bottom:133.920000pt;}
.y81{bottom:149.946667pt;}
.y29{bottom:156.826667pt;}
.y64{bottom:161.306667pt;}
.y28{bottom:181.786667pt;}
.y63{bottom:184.186667pt;}
.y80{bottom:184.506667pt;}
.y7f{bottom:200.506667pt;}
.y27{bottom:206.746667pt;}
.y62{bottom:207.066667pt;}
.y61{bottom:229.946667pt;}
.y26{bottom:230.906667pt;}
.y7e{bottom:235.226667pt;}
.y7d{bottom:251.226667pt;}
.y60{bottom:252.826667pt;}
.y25{bottom:254.586667pt;}
.y7c{bottom:267.226667pt;}
.y46{bottom:268.666667pt;}
.y5f{bottom:275.706667pt;}
.y24{bottom:278.746667pt;}
.y45{bottom:295.546667pt;}
.y23{bottom:301.626667pt;}
.y7b{bottom:301.946667pt;}
.y5e{bottom:310.106667pt;}
.y7a{bottom:317.946667pt;}
.y44{bottom:318.426667pt;}
.y22{bottom:325.306667pt;}
.y43{bottom:341.306667pt;}
.y79{bottom:352.506667pt;}
.y21{bottom:361.146667pt;}
.y42{bottom:364.986667pt;}
.y78{bottom:368.546667pt;}
.y5d{bottom:374.306667pt;}
.y77{bottom:384.706667pt;}
.y41{bottom:389.986667pt;}
.y5c{bottom:397.186667pt;}
.y40{bottom:414.146667pt;}
.y76{bottom:419.266667pt;}
.y20{bottom:426.146667pt;}
.y5b{bottom:431.746667pt;}
.y75{bottom:435.266667pt;}
.y3f{bottom:448.706667pt;}
.y1f{bottom:449.026667pt;}
.y74{bottom:451.266667pt;}
.y1e{bottom:472.706667pt;}
.y73{bottom:481.666667pt;}
.y5a{bottom:496.706667pt;}
.y1d{bottom:496.866667pt;}
.y72{bottom:506.626667pt;}
.y3e{bottom:513.666667pt;}
.y59{bottom:520.386667pt;}
.y1c{bottom:520.546667pt;}
.y71{bottom:531.586667pt;}
.y3d{bottom:536.546667pt;}
.y58{bottom:544.546667pt;}
.y1b{bottom:544.706667pt;}
.y70{bottom:556.706667pt;}
.y3c{bottom:559.426667pt;}
.y57{bottom:559.746667pt;}
.y1a{bottom:568.546667pt;}
.y3b{bottom:582.306667pt;}
.y19{bottom:592.733333pt;}
.y56{bottom:603.613333pt;}
.y3a{bottom:605.213333pt;}
.y6f{bottom:611.133333pt;}
.y18{bottom:616.413333pt;}
.y39{bottom:628.093333pt;}
.y17{bottom:640.573333pt;}
.y6e{bottom:642.973333pt;}
.y54{bottom:647.453333pt;}
.y38{bottom:650.973333pt;}
.y16{bottom:664.253333pt;}
.y37{bottom:674.013333pt;}
.y15{bottom:681.533333pt;}
.y53{bottom:691.453333pt;}
.y36{bottom:697.693333pt;}
.y6d{bottom:699.133333pt;}
.y14{bottom:704.093333pt;}
.y35{bottom:721.853333pt;}
.y6c{bottom:722.013333pt;}
.y51{bottom:735.293333pt;}
.y6b{bottom:744.893333pt;}
.y34{bottom:745.533333pt;}
.y6a{bottom:767.933333pt;}
.y13{bottom:769.213333pt;}
.y33{bottom:769.693333pt;}
.y69{bottom:790.813333pt;}
.y12{bottom:792.093333pt;}
.y32{bottom:792.573333pt;}
.y4e{bottom:796.893333pt;}
.y68{bottom:813.733333pt;}
.y11{bottom:815.013333pt;}
.y31{bottom:815.493333pt;}
.y67{bottom:836.613333pt;}
.y10{bottom:837.893333pt;}
.y30{bottom:838.373333pt;}
.y4d{bottom:840.773333pt;}
.yf{bottom:860.773333pt;}
.y2f{bottom:862.053333pt;}
.y66{bottom:871.173333pt;}
.ye{bottom:883.653333pt;}
.y49{bottom:884.773333pt;}
.y2e{bottom:886.213333pt;}
.y2d{bottom:909.893333pt;}
.y2c{bottom:934.853333pt;}
.yd{bottom:935.813333pt;}
.y65{bottom:936.133333pt;}
.y47{bottom:946.213333pt;}
.y2b{bottom:959.813333pt;}
.y7{bottom:976.453333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:999.333333pt;}
.y4{bottom:1013.733333pt;}
.y3{bottom:1028.160000pt;}
.y2{bottom:1043.200000pt;}
.y1{bottom:1060.800000pt;}
.h9{height:9.440312pt;}
.h4{height:13.882812pt;}
.h5{height:25.544375pt;}
.hc{height:28.800000pt;}
.h3{height:41.648438pt;}
.hf{height:43.200000pt;}
.h10{height:43.232000pt;}
.h12{height:43.360000pt;}
.h13{height:46.090938pt;}
.h14{height:48.583628pt;}
.h2{height:51.088750pt;}
.hb{height:55.531250pt;}
.h8{height:57.752500pt;}
.h6{height:58.563750pt;}
.hd{height:59.973750pt;}
.ha{height:60.519362pt;}
.he{height:60.800000pt;}
.h11{height:60.960000pt;}
.h7{height:83.296875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:301.306667pt;}
.w4{width:301.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x4{left:56.639988pt;}
.x5{left:74.559988pt;}
.x1{left:94.431988pt;}
.x7{left:98.911988pt;}
.x6{left:122.911988pt;}
.x8{left:140.186655pt;}
.x9{left:142.426655pt;}
.xa{left:188.186655pt;}
.xd{left:199.706655pt;}
.x17{left:231.386655pt;}
.x10{left:252.386655pt;}
.x11{left:264.866655pt;}
.x14{left:313.186655pt;}
.x12{left:338.786655pt;}
.xc{left:397.346667pt;}
.xf{left:398.786655pt;}
.x15{left:460.413321pt;}
.x13{left:478.333321pt;}
.x16{left:490.173321pt;}
.x2{left:578.333321pt;}
.xe{left:585.213321pt;}
.x3{left:699.333321pt;}
}




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