
    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_3a0ec445cf1a2878a6282177.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_e0d8c6fbcd340affad458e2a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_25020427c4ec1b1b54917d2a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_4e50cea3c79e36e453e6ac69.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_f4026c56546cab75ec21c063.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_70a167a13f5874e8881bf06b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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;}
.ls4{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.341280px;}
.ls3{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.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;}
}
.ws0{word-spacing:-84.240000px;}
.ws4{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.404960px;}
._0{width:1.441920px;}
._9{width:2.487600px;}
._4{width:3.565200px;}
._3{width:4.606080px;}
._2{width:5.728320px;}
._5{width:8.999040px;}
._7{width:11.008320px;}
._6{width:12.299040px;}
._c{width:13.312800px;}
._8{width:14.405040px;}
._f{width:16.305120px;}
._e{width:17.606160px;}
._d{width:19.974720px;}
._11{width:25.554720px;}
._10{width:26.619840px;}
._a{width:28.084080px;}
._b{width:29.590800px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1{bottom:34.200000px;}
.y28{bottom:66.240000px;}
.y37{bottom:72.900000px;}
.y4f{bottom:97.200000px;}
.y36{bottom:101.520000px;}
.y27{bottom:102.420000px;}
.y54{bottom:104.580000px;}
.y53{bottom:133.200000px;}
.y26{bottom:138.456000px;}
.y5a{bottom:146.556000px;}
.y4e{bottom:148.536000px;}
.y59{bottom:170.670000px;}
.y30{bottom:172.470000px;}
.y25{bottom:174.630000px;}
.y4d{bottom:177.150000px;}
.y49{bottom:187.950000px;}
.y58{bottom:199.290000px;}
.y24{bottom:210.810000px;}
.y44{bottom:212.970000px;}
.y2f{bottom:223.590000px;}
.y3d{bottom:228.090000px;}
.y48{bottom:239.070000px;}
.y23{bottom:243.930000px;}
.y2e{bottom:252.210000px;}
.y43{bottom:264.090000px;}
.y47{bottom:267.690000px;}
.y3c{bottom:279.210000px;}
.y22{bottom:286.050000px;}
.y42{bottom:292.710000px;}
.y3b{bottom:307.830000px;}
.y21{bottom:319.350000px;}
.y20{bottom:352.470000px;}
.y1f{bottom:376.590000px;}
.y1e{bottom:400.755000px;}
.y1d{bottom:424.875000px;}
.y35{bottom:440.175000px;}
.y1c{bottom:457.995000px;}
.y1b{bottom:482.295000px;}
.y1a{bottom:506.415000px;}
.y34{bottom:510.915000px;}
.y19{bottom:530.535000px;}
.y18{bottom:554.655000px;}
.y17{bottom:578.775000px;}
.y16{bottom:611.895000px;}
.y15{bottom:636.015000px;}
.y52{bottom:652.245000px;}
.y3a{bottom:653.145000px;}
.y14{bottom:660.345000px;}
.y2d{bottom:663.945000px;}
.y46{bottom:681.585000px;}
.y13{bottom:693.465000px;}
.y4c{bottom:699.405000px;}
.y51{bottom:703.365000px;}
.y39{bottom:704.265000px;}
.y41{bottom:707.145000px;}
.y45{bottom:710.205000px;}
.y2c{bottom:715.065000px;}
.y12{bottom:717.585000px;}
.y50{bottom:732.165000px;}
.y38{bottom:733.065000px;}
.y2b{bottom:739.365000px;}
.y57{bottom:741.165000px;}
.y11{bottom:741.705000px;}
.y4b{bottom:750.525000px;}
.y40{bottom:758.265000px;}
.y10{bottom:765.825000px;}
.y2a{bottom:767.805000px;}
.y4a{bottom:779.145000px;}
.yf{bottom:789.945000px;}
.y56{bottom:792.285000px;}
.y3f{bottom:809.565000px;}
.y55{bottom:820.905000px;}
.ye{bottom:823.785000px;}
.y3e{bottom:838.185000px;}
.y33{bottom:841.785000px;}
.yd{bottom:868.785000px;}
.y32{bottom:883.905000px;}
.yc{bottom:892.950000px;}
.y31{bottom:912.570000px;}
.yb{bottom:926.070000px;}
.ya{bottom:959.190000px;}
.y9{bottom:983.310000px;}
.y8{bottom:1016.610000px;}
.y7{bottom:1040.730000px;}
.y6{bottom:1064.850000px;}
.y5{bottom:1088.970000px;}
.y4{bottom:1125.150000px;}
.y3{bottom:1164.240000px;}
.y29{bottom:1168.740000px;}
.y2{bottom:1198.080000px;}
.h2{height:75.519844px;}
.h4{height:76.219102px;}
.h3{height:86.642227px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.415987px;}
.xd{left:109.115987px;}
.x16{left:122.075987px;}
.x7{left:131.975987px;}
.x3{left:133.775987px;}
.x1a{left:144.395987px;}
.x2{left:146.375987px;}
.x4{left:148.895987px;}
.x22{left:152.849987px;}
.xa{left:163.109987px;}
.x14{left:165.269987px;}
.x5{left:174.449987px;}
.x12{left:183.629987px;}
.x20{left:191.369987px;}
.x21{left:245.189987px;}
.x10{left:259.409987px;}
.x1b{left:268.589987px;}
.x1c{left:270.749987px;}
.x17{left:287.714987px;}
.x9{left:311.834987px;}
.x1d{left:312.914987px;}
.x8{left:325.874987px;}
.xb{left:332.354987px;}
.x18{left:336.494987px;}
.x23{left:343.334987px;}
.x19{left:377.534987px;}
.x1{left:441.434987px;}
.xe{left:446.654987px;}
.x15{left:719.789987px;}
.x13{left:721.049987px;}
.x1f{left:772.169987px;}
.x1e{left:778.109987px;}
.xc{left:783.149987px;}
.xf{left:784.769987px;}
.x11{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.303360pt;}
.ls3{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ws0{word-spacing:-74.880000pt;}
.ws4{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.248853pt;}
._0{width:1.281707pt;}
._9{width:2.211200pt;}
._4{width:3.169067pt;}
._3{width:4.094293pt;}
._2{width:5.091840pt;}
._5{width:7.999147pt;}
._7{width:9.785173pt;}
._6{width:10.932480pt;}
._c{width:11.833600pt;}
._8{width:12.804480pt;}
._f{width:14.493440pt;}
._e{width:15.649920pt;}
._d{width:17.755307pt;}
._11{width:22.715307pt;}
._10{width:23.662080pt;}
._a{width:24.963627pt;}
._b{width:26.302933pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:30.400000pt;}
.y28{bottom:58.880000pt;}
.y37{bottom:64.800000pt;}
.y4f{bottom:86.400000pt;}
.y36{bottom:90.240000pt;}
.y27{bottom:91.040000pt;}
.y54{bottom:92.960000pt;}
.y53{bottom:118.400000pt;}
.y26{bottom:123.072000pt;}
.y5a{bottom:130.272000pt;}
.y4e{bottom:132.032000pt;}
.y59{bottom:151.706667pt;}
.y30{bottom:153.306667pt;}
.y25{bottom:155.226667pt;}
.y4d{bottom:157.466667pt;}
.y49{bottom:167.066667pt;}
.y58{bottom:177.146667pt;}
.y24{bottom:187.386667pt;}
.y44{bottom:189.306667pt;}
.y2f{bottom:198.746667pt;}
.y3d{bottom:202.746667pt;}
.y48{bottom:212.506667pt;}
.y23{bottom:216.826667pt;}
.y2e{bottom:224.186667pt;}
.y43{bottom:234.746667pt;}
.y47{bottom:237.946667pt;}
.y3c{bottom:248.186667pt;}
.y22{bottom:254.266667pt;}
.y42{bottom:260.186667pt;}
.y3b{bottom:273.626667pt;}
.y21{bottom:283.866667pt;}
.y20{bottom:313.306667pt;}
.y1f{bottom:334.746667pt;}
.y1e{bottom:356.226667pt;}
.y1d{bottom:377.666667pt;}
.y35{bottom:391.266667pt;}
.y1c{bottom:407.106667pt;}
.y1b{bottom:428.706667pt;}
.y1a{bottom:450.146667pt;}
.y34{bottom:454.146667pt;}
.y19{bottom:471.586667pt;}
.y18{bottom:493.026667pt;}
.y17{bottom:514.466667pt;}
.y16{bottom:543.906667pt;}
.y15{bottom:565.346667pt;}
.y52{bottom:579.773333pt;}
.y3a{bottom:580.573333pt;}
.y14{bottom:586.973333pt;}
.y2d{bottom:590.173333pt;}
.y46{bottom:605.853333pt;}
.y13{bottom:616.413333pt;}
.y4c{bottom:621.693333pt;}
.y51{bottom:625.213333pt;}
.y39{bottom:626.013333pt;}
.y41{bottom:628.573333pt;}
.y45{bottom:631.293333pt;}
.y2c{bottom:635.613333pt;}
.y12{bottom:637.853333pt;}
.y50{bottom:650.813333pt;}
.y38{bottom:651.613333pt;}
.y2b{bottom:657.213333pt;}
.y57{bottom:658.813333pt;}
.y11{bottom:659.293333pt;}
.y4b{bottom:667.133333pt;}
.y40{bottom:674.013333pt;}
.y10{bottom:680.733333pt;}
.y2a{bottom:682.493333pt;}
.y4a{bottom:692.573333pt;}
.yf{bottom:702.173333pt;}
.y56{bottom:704.253333pt;}
.y3f{bottom:719.613333pt;}
.y55{bottom:729.693333pt;}
.ye{bottom:732.253333pt;}
.y3e{bottom:745.053333pt;}
.y33{bottom:748.253333pt;}
.yd{bottom:772.253333pt;}
.y32{bottom:785.693333pt;}
.yc{bottom:793.733333pt;}
.y31{bottom:811.173333pt;}
.yb{bottom:823.173333pt;}
.ya{bottom:852.613333pt;}
.y9{bottom:874.053333pt;}
.y8{bottom:903.653333pt;}
.y7{bottom:925.093333pt;}
.y6{bottom:946.533333pt;}
.y5{bottom:967.973333pt;}
.y4{bottom:1000.133333pt;}
.y3{bottom:1034.880000pt;}
.y29{bottom:1038.880000pt;}
.y2{bottom:1064.960000pt;}
.h2{height:67.128750pt;}
.h4{height:67.750312pt;}
.h3{height:77.015312pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.591988pt;}
.xd{left:96.991988pt;}
.x16{left:108.511988pt;}
.x7{left:117.311988pt;}
.x3{left:118.911988pt;}
.x1a{left:128.351988pt;}
.x2{left:130.111988pt;}
.x4{left:132.351988pt;}
.x22{left:135.866655pt;}
.xa{left:144.986655pt;}
.x14{left:146.906655pt;}
.x5{left:155.066655pt;}
.x12{left:163.226655pt;}
.x20{left:170.106655pt;}
.x21{left:217.946655pt;}
.x10{left:230.586655pt;}
.x1b{left:238.746655pt;}
.x1c{left:240.666655pt;}
.x17{left:255.746655pt;}
.x9{left:277.186655pt;}
.x1d{left:278.146655pt;}
.x8{left:289.666655pt;}
.xb{left:295.426655pt;}
.x18{left:299.106655pt;}
.x23{left:305.186655pt;}
.x19{left:335.586655pt;}
.x1{left:392.386655pt;}
.xe{left:397.026655pt;}
.x15{left:639.813322pt;}
.x13{left:640.933322pt;}
.x1f{left:686.373322pt;}
.x1e{left:691.653322pt;}
.xc{left:696.133322pt;}
.xf{left:697.573322pt;}
.x11{left:699.333322pt;}
}




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