
    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_7b5aedd0177c3a19aaeb97f8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_ff6ec947cacee7bb20137e9f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.030273;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_b124070bdc11cfa45b8f7c23.woff')format("woff");}.ff3{font-family:ff3;line-height:1.030273;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_38b722e3fdee5e8a1e91e83d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.030273;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_6278e2c849a60af8da045ac2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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;}
.ls8{letter-spacing:-0.852000px;}
.ls6{letter-spacing:-0.171600px;}
.ls7{letter-spacing:-0.107400px;}
.lsa{letter-spacing:-0.098400px;}
.ls4{letter-spacing:-0.049740px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.115488px;}
.ls3{letter-spacing:0.132600px;}
.ls9{letter-spacing:0.147000px;}
.ls2{letter-spacing:0.288720px;}
.ls0{letter-spacing:1.555488px;}
.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;}
}
.ws2{word-spacing:-527.904000px;}
.ws1{word-spacing:-121.780512px;}
.ws0{word-spacing:-121.730772px;}
.wsc{word-spacing:-53.787720px;}
.wsd{word-spacing:-53.640720px;}
.ws8{word-spacing:-48.803880px;}
.ws7{word-spacing:-48.671280px;}
.wse{word-spacing:-48.572880px;}
.wsb{word-spacing:-30.401280px;}
.wsa{word-spacing:-29.549280px;}
.ws3{word-spacing:-29.232000px;}
.ws5{word-spacing:-24.408720px;}
.ws6{word-spacing:-0.120384px;}
.ws4{word-spacing:-0.120240px;}
.wsf{word-spacing:0.000000px;}
.ws9{word-spacing:80.680320px;}
._a{margin-left:-11.980800px;}
._6{margin-left:-10.408560px;}
._7{margin-left:-9.028800px;}
._2{margin-left:-7.646400px;}
._1{margin-left:-5.787408px;}
._0{margin-left:-4.620456px;}
._5{margin-left:-3.486960px;}
._3{margin-left:-1.529280px;}
._8{width:1.048320px;}
._4{width:2.079864px;}
._b{width:3.202776px;}
._9{width:111.081600px;}
.fc5{color:rgb(4,76,119);}
.fc4{color:rgb(154,202,60);}
.fc3{color:rgb(0,64,113);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(81,183,232);}
.fc6{color:rgb(70,120,134);}
.fc0{color:rgb(32,50,85);}
.fs6{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fs5{font-size:144.000000px;}
.fsa{font-size:149.760000px;}
.fs9{font-size:239.760000px;}
.fsb{font-size:264.240000px;}
.fs8{font-size:360.000000px;}
.fs4{font-size:432.000000px;}
.fs3{font-size:509.760000px;}
.fs2{font-size:509.904000px;}
.fs1{font-size:527.904000px;}
.fs0{font-size:599.904000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:78.480000px;}
.y16{bottom:419.910000px;}
.y3a{bottom:457.020000px;}
.y15{bottom:473.910000px;}
.y39{bottom:502.020000px;}
.y14{bottom:509.910000px;}
.y13{bottom:554.940000px;}
.y38{bottom:574.020000px;}
.y12{bottom:590.940000px;}
.y37{bottom:619.020000px;}
.y11{bottom:635.940000px;}
.y28{bottom:652.575000px;}
.y36{bottom:664.020000px;}
.y10{bottom:689.940000px;}
.yf{bottom:725.940000px;}
.y35{bottom:736.020000px;}
.ye{bottom:770.940000px;}
.yd{bottom:806.940000px;}
.yc{bottom:851.940000px;}
.y34{bottom:853.050000px;}
.y27{bottom:885.210000px;}
.y33{bottom:898.050000px;}
.yb{bottom:905.940000px;}
.ya{bottom:941.940000px;}
.y32{bottom:943.050000px;}
.y9{bottom:986.940000px;}
.y31{bottom:988.050000px;}
.y8{bottom:1022.940000px;}
.y30{bottom:1060.050000px;}
.y7{bottom:1067.940000px;}
.y6{bottom:1103.940000px;}
.y2f{bottom:1105.050000px;}
.y2e{bottom:1150.050000px;}
.y5{bottom:1159.560000px;}
.y2d{bottom:1222.050000px;}
.y3d{bottom:1244.010000px;}
.y17{bottom:1300.680000px;}
.y3c{bottom:1316.010000px;}
.y2c{bottom:1339.050000px;}
.y3b{bottom:1388.010000px;}
.y2b{bottom:1411.050000px;}
.y1c{bottom:1441.050000px;}
.y2a{bottom:1483.095000px;}
.y1b{bottom:1513.050000px;}
.y23{bottom:1518.480000px;}
.y29{bottom:1555.095000px;}
.y22{bottom:1590.480000px;}
.y18{bottom:1619.820000px;}
.y21{bottom:1662.480000px;}
.y20{bottom:1734.480000px;}
.y1f{bottom:1878.480000px;}
.y19{bottom:1938.990000px;}
.y1e{bottom:1950.480000px;}
.y1d{bottom:2022.480000px;}
.y26{bottom:2201.070000px;}
.y1a{bottom:2258.130000px;}
.y25{bottom:2273.070000px;}
.y24{bottom:2345.070000px;}
.y40{bottom:2576.880000px;}
.y41{bottom:2615.865000px;}
.y3f{bottom:2648.880000px;}
.y4{bottom:2889.720000px;}
.y3{bottom:3019.320000px;}
.y2{bottom:3163.320000px;}
.y1{bottom:3322.650000px;}
.h6{height:101.628633px;}
.h8{height:101.750344px;}
.h7{height:103.918359px;}
.h9{height:104.042812px;}
.h5{height:121.710938px;}
.hc{height:126.579375px;}
.hb{height:202.648711px;}
.hd{height:223.339570px;}
.ha{height:304.277344px;}
.h4{height:365.132812px;}
.h3{height:430.856719px;}
.h2{height:507.047766px;}
.h0{height:3575.880000px;}
.h1{height:3576.000000px;}
.w1{width:2525.250000px;}
.w2{width:2525.579962px;}
.w0{width:2525.580000px;}
.x0{left:0.000000px;}
.x1{left:106.307962px;}
.x6{left:185.069962px;}
.x2{left:195.554962px;}
.xd{left:198.749962px;}
.x4{left:851.504962px;}
.xc{left:854.279962px;}
.x5{left:867.344962px;}
.x8{left:945.389962px;}
.x7{left:987.044962px;}
.x3{left:1028.774962px;}
.x9{left:1691.714962px;}
.xa{left:1732.214962px;}
.xb{left:2131.949962px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.757333pt;}
.ls6{letter-spacing:-0.152533pt;}
.ls7{letter-spacing:-0.095467pt;}
.lsa{letter-spacing:-0.087467pt;}
.ls4{letter-spacing:-0.044213pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.102656pt;}
.ls3{letter-spacing:0.117867pt;}
.ls9{letter-spacing:0.130667pt;}
.ls2{letter-spacing:0.256640pt;}
.ls0{letter-spacing:1.382656pt;}
.ws2{word-spacing:-469.248000pt;}
.ws1{word-spacing:-108.249344pt;}
.ws0{word-spacing:-108.205131pt;}
.wsc{word-spacing:-47.811307pt;}
.wsd{word-spacing:-47.680640pt;}
.ws8{word-spacing:-43.381227pt;}
.ws7{word-spacing:-43.263360pt;}
.wse{word-spacing:-43.175893pt;}
.wsb{word-spacing:-27.023360pt;}
.wsa{word-spacing:-26.266027pt;}
.ws3{word-spacing:-25.984000pt;}
.ws5{word-spacing:-21.696640pt;}
.ws6{word-spacing:-0.107008pt;}
.ws4{word-spacing:-0.106880pt;}
.wsf{word-spacing:0.000000pt;}
.ws9{word-spacing:71.715840pt;}
._a{margin-left:-10.649600pt;}
._6{margin-left:-9.252053pt;}
._7{margin-left:-8.025600pt;}
._2{margin-left:-6.796800pt;}
._1{margin-left:-5.144363pt;}
._0{margin-left:-4.107072pt;}
._5{margin-left:-3.099520pt;}
._3{margin-left:-1.359360pt;}
._8{width:0.931840pt;}
._4{width:1.848768pt;}
._b{width:2.846912pt;}
._9{width:98.739200pt;}
.fs6{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fs5{font-size:128.000000pt;}
.fsa{font-size:133.120000pt;}
.fs9{font-size:213.120000pt;}
.fsb{font-size:234.880000pt;}
.fs8{font-size:320.000000pt;}
.fs4{font-size:384.000000pt;}
.fs3{font-size:453.120000pt;}
.fs2{font-size:453.248000pt;}
.fs1{font-size:469.248000pt;}
.fs0{font-size:533.248000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:69.760000pt;}
.y16{bottom:373.253333pt;}
.y3a{bottom:406.240000pt;}
.y15{bottom:421.253333pt;}
.y39{bottom:446.240000pt;}
.y14{bottom:453.253333pt;}
.y13{bottom:493.280000pt;}
.y38{bottom:510.240000pt;}
.y12{bottom:525.280000pt;}
.y37{bottom:550.240000pt;}
.y11{bottom:565.280000pt;}
.y28{bottom:580.066667pt;}
.y36{bottom:590.240000pt;}
.y10{bottom:613.280000pt;}
.yf{bottom:645.280000pt;}
.y35{bottom:654.240000pt;}
.ye{bottom:685.280000pt;}
.yd{bottom:717.280000pt;}
.yc{bottom:757.280000pt;}
.y34{bottom:758.266667pt;}
.y27{bottom:786.853333pt;}
.y33{bottom:798.266667pt;}
.yb{bottom:805.280000pt;}
.ya{bottom:837.280000pt;}
.y32{bottom:838.266667pt;}
.y9{bottom:877.280000pt;}
.y31{bottom:878.266667pt;}
.y8{bottom:909.280000pt;}
.y30{bottom:942.266667pt;}
.y7{bottom:949.280000pt;}
.y6{bottom:981.280000pt;}
.y2f{bottom:982.266667pt;}
.y2e{bottom:1022.266667pt;}
.y5{bottom:1030.720000pt;}
.y2d{bottom:1086.266667pt;}
.y3d{bottom:1105.786667pt;}
.y17{bottom:1156.160000pt;}
.y3c{bottom:1169.786667pt;}
.y2c{bottom:1190.266667pt;}
.y3b{bottom:1233.786667pt;}
.y2b{bottom:1254.266667pt;}
.y1c{bottom:1280.933333pt;}
.y2a{bottom:1318.306667pt;}
.y1b{bottom:1344.933333pt;}
.y23{bottom:1349.760000pt;}
.y29{bottom:1382.306667pt;}
.y22{bottom:1413.760000pt;}
.y18{bottom:1439.840000pt;}
.y21{bottom:1477.760000pt;}
.y20{bottom:1541.760000pt;}
.y1f{bottom:1669.760000pt;}
.y19{bottom:1723.546667pt;}
.y1e{bottom:1733.760000pt;}
.y1d{bottom:1797.760000pt;}
.y26{bottom:1956.506667pt;}
.y1a{bottom:2007.226667pt;}
.y25{bottom:2020.506667pt;}
.y24{bottom:2084.506667pt;}
.y40{bottom:2290.560000pt;}
.y41{bottom:2325.213333pt;}
.y3f{bottom:2354.560000pt;}
.y4{bottom:2568.640000pt;}
.y3{bottom:2683.840000pt;}
.y2{bottom:2811.840000pt;}
.y1{bottom:2953.466667pt;}
.h6{height:90.336562pt;}
.h8{height:90.444750pt;}
.h7{height:92.371875pt;}
.h9{height:92.482500pt;}
.h5{height:108.187500pt;}
.hc{height:112.515000pt;}
.hb{height:180.132187pt;}
.hd{height:198.524062pt;}
.ha{height:270.468750pt;}
.h4{height:324.562500pt;}
.h3{height:382.983750pt;}
.h2{height:450.709125pt;}
.h0{height:3178.560000pt;}
.h1{height:3178.666667pt;}
.w1{width:2244.666667pt;}
.w2{width:2244.959967pt;}
.w0{width:2244.960000pt;}
.x0{left:0.000000pt;}
.x1{left:94.495967pt;}
.x6{left:164.506633pt;}
.x2{left:173.826633pt;}
.xd{left:176.666633pt;}
.x4{left:756.893300pt;}
.xc{left:759.359967pt;}
.x5{left:770.973300pt;}
.x8{left:840.346633pt;}
.x7{left:877.373300pt;}
.x3{left:914.466633pt;}
.x9{left:1503.746633pt;}
.xa{left:1539.746633pt;}
.xb{left:1895.066633pt;}
}




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