
    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_6f4f6e698c337a4e45da252c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.181818;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_bbac54a843aadb9930ba87d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.181818;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_e6c328187fcc7b5964d5249d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088000;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_40fb700551b52cf4c622f12b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.181818;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_49bf616a886457aedef1664b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.181818;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_1afeb38b5ce548fc4b76fd69.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.181818;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_bb120a09a274d3ba4ceb757b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.181818;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_b6b280502aed5dc555d7c7d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.181818;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_fb49eab076413b5655ad0810.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b0b3a12fe0b184788fb79403.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084473;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:3.600000px;}
.ls0{letter-spacing:9.000000px;}
.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:-111.000000px;}
.ws3{word-spacing:-33.720000px;}
.ws1{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:2250.456000px;}
._6{margin-left:-12063.853800px;}
._13{margin-left:-1734.854400px;}
._2{margin-left:-14.472000px;}
._11{margin-left:-12.892800px;}
._3{margin-left:-10.200000px;}
._c{margin-left:-9.180000px;}
._1{margin-left:-7.041600px;}
._10{margin-left:-5.268000px;}
._9{margin-left:-3.830400px;}
._0{margin-left:-2.376000px;}
._a{margin-left:-1.166400px;}
._7{width:1.806000px;}
._5{width:3.000000px;}
._4{width:4.200000px;}
._d{width:5.700000px;}
._8{width:7.500000px;}
._b{width:68.798400px;}
._12{width:510.678600px;}
._e{width:1083.252600px;}
._f{width:1167.099000px;}
._15{width:2214.847200px;}
._14{width:2296.911600px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:96.000000px;}
.fs3{font-size:120.000000px;}
.fs4{font-size:180.000000px;}
.fs1{font-size:300.000000px;}
.fs0{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:11.082750px;}
.y1b{bottom:19.508400px;}
.y19{bottom:19.513350px;}
.y3b{bottom:87.780600px;}
.y35{bottom:249.512100px;}
.y7{bottom:249.512250px;}
.y34{bottom:285.512100px;}
.y6{bottom:285.512250px;}
.y33{bottom:321.512100px;}
.y5{bottom:321.512250px;}
.y21{bottom:381.150750px;}
.y15{bottom:726.156900px;}
.y14{bottom:775.656900px;}
.y13{bottom:825.156900px;}
.y31{bottom:871.539900px;}
.y30{bottom:910.539900px;}
.y12{bottom:924.156900px;}
.y2f{bottom:949.539900px;}
.y11{bottom:973.656900px;}
.y2e{bottom:988.539900px;}
.y10{bottom:1023.156900px;}
.y2d{bottom:1027.539900px;}
.yf{bottom:1072.656900px;}
.y2c{bottom:1123.689000px;}
.y2b{bottom:1162.689000px;}
.y2a{bottom:1201.689000px;}
.y20{bottom:1230.349500px;}
.y29{bottom:1240.689000px;}
.y28{bottom:1312.271250px;}
.y27{bottom:1351.271250px;}
.y26{bottom:1390.271250px;}
.y25{bottom:1461.853500px;}
.y24{bottom:1500.853500px;}
.y23{bottom:1539.853500px;}
.y22{bottom:1611.435600px;}
.y3a{bottom:1810.018650px;}
.y38{bottom:2250.102300px;}
.y37{bottom:2287.600650px;}
.y36{bottom:2332.600650px;}
.y1f{bottom:2662.153950px;}
.y1e{bottom:2722.153950px;}
.y39{bottom:2749.139850px;}
.y1d{bottom:2782.153950px;}
.y1c{bottom:2842.153950px;}
.y3{bottom:3006.451200px;}
.y32{bottom:3096.451200px;}
.y1a{bottom:3406.065000px;}
.y16{bottom:3566.055000px;}
.ye{bottom:3619.359000px;}
.yd{bottom:3668.859000px;}
.yc{bottom:3718.359000px;}
.y18{bottom:3757.350000px;}
.yb{bottom:3767.859000px;}
.ya{bottom:3817.359000px;}
.y9{bottom:3866.859000px;}
.y8{bottom:3916.359000px;}
.y4{bottom:4068.606150px;}
.y2{bottom:4579.327200px;}
.y1{bottom:4714.327200px;}
.h6{height:45.315000px;}
.h8{height:53.730000px;}
.h7{height:53.745000px;}
.h4{height:91.636364px;}
.ha{height:98.964844px;}
.h5{height:114.545455px;}
.h9{height:171.818182px;}
.h3{height:249.000000px;}
.h2{height:412.363636px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w2{width:170.811000px;}
.w4{width:215.535000px;}
.w6{width:218.445000px;}
.w3{width:234.169500px;}
.w5{width:234.525000px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xa{left:23.658750px;}
.x5{left:147.263250px;}
.x2{left:189.499800px;}
.xe{left:191.338650px;}
.xf{left:211.509600px;}
.x11{left:218.976450px;}
.x10{left:686.712750px;}
.x9{left:1150.423500px;}
.xb{left:1361.380500px;}
.x1{left:1575.418650px;}
.xd{left:1648.950000px;}
.x1a{left:1653.331050px;}
.x12{left:2191.620150px;}
.x7{left:2227.458450px;}
.x8{left:2269.978050px;}
.x4{left:2277.312450px;}
.xc{left:2328.645000px;}
.x19{left:2380.238100px;}
.x16{left:2399.973750px;}
.x17{left:2541.340800px;}
.x6{left:2585.800800px;}
.x3{left:2628.037350px;}
.x18{left:2750.587950px;}
.x14{left:2785.742400px;}
.x13{left:2950.425000px;}
.x15{left:3022.356450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.200000pt;}
.ls0{letter-spacing:8.000000pt;}
.ws0{word-spacing:-98.666667pt;}
.ws3{word-spacing:-29.973333pt;}
.ws1{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:2000.405333pt;}
._6{margin-left:-10723.425600pt;}
._13{margin-left:-1542.092800pt;}
._2{margin-left:-12.864000pt;}
._11{margin-left:-11.460267pt;}
._3{margin-left:-9.066667pt;}
._c{margin-left:-8.160000pt;}
._1{margin-left:-6.259200pt;}
._10{margin-left:-4.682667pt;}
._9{margin-left:-3.404800pt;}
._0{margin-left:-2.112000pt;}
._a{margin-left:-1.036800pt;}
._7{width:1.605333pt;}
._5{width:2.666667pt;}
._4{width:3.733333pt;}
._d{width:5.066667pt;}
._8{width:6.666667pt;}
._b{width:61.154133pt;}
._12{width:453.936533pt;}
._e{width:962.891200pt;}
._f{width:1037.421333pt;}
._15{width:1968.753067pt;}
._14{width:2041.699200pt;}
.fs2{font-size:85.333333pt;}
.fs3{font-size:106.666667pt;}
.fs4{font-size:160.000000pt;}
.fs1{font-size:266.666667pt;}
.fs0{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:9.851333pt;}
.y1b{bottom:17.340800pt;}
.y19{bottom:17.345200pt;}
.y3b{bottom:78.027200pt;}
.y35{bottom:221.788533pt;}
.y7{bottom:221.788667pt;}
.y34{bottom:253.788533pt;}
.y6{bottom:253.788667pt;}
.y33{bottom:285.788533pt;}
.y5{bottom:285.788667pt;}
.y21{bottom:338.800667pt;}
.y15{bottom:645.472800pt;}
.y14{bottom:689.472800pt;}
.y13{bottom:733.472800pt;}
.y31{bottom:774.702133pt;}
.y30{bottom:809.368800pt;}
.y12{bottom:821.472800pt;}
.y2f{bottom:844.035467pt;}
.y11{bottom:865.472800pt;}
.y2e{bottom:878.702133pt;}
.y10{bottom:909.472800pt;}
.y2d{bottom:913.368800pt;}
.yf{bottom:953.472800pt;}
.y2c{bottom:998.834667pt;}
.y2b{bottom:1033.501333pt;}
.y2a{bottom:1068.168000pt;}
.y20{bottom:1093.644000pt;}
.y29{bottom:1102.834667pt;}
.y28{bottom:1166.463333pt;}
.y27{bottom:1201.130000pt;}
.y26{bottom:1235.796667pt;}
.y25{bottom:1299.425333pt;}
.y24{bottom:1334.092000pt;}
.y23{bottom:1368.758667pt;}
.y22{bottom:1432.387200pt;}
.y3a{bottom:1608.905467pt;}
.y38{bottom:2000.090933pt;}
.y37{bottom:2033.422800pt;}
.y36{bottom:2073.422800pt;}
.y1f{bottom:2366.359067pt;}
.y1e{bottom:2419.692400pt;}
.y39{bottom:2443.679867pt;}
.y1d{bottom:2473.025733pt;}
.y1c{bottom:2526.359067pt;}
.y3{bottom:2672.401067pt;}
.y32{bottom:2752.401067pt;}
.y1a{bottom:3027.613333pt;}
.y16{bottom:3169.826667pt;}
.ye{bottom:3217.208000pt;}
.yd{bottom:3261.208000pt;}
.yc{bottom:3305.208000pt;}
.y18{bottom:3339.866667pt;}
.yb{bottom:3349.208000pt;}
.ya{bottom:3393.208000pt;}
.y9{bottom:3437.208000pt;}
.y8{bottom:3481.208000pt;}
.y4{bottom:3616.538800pt;}
.y2{bottom:4070.513067pt;}
.y1{bottom:4190.513067pt;}
.h6{height:40.280000pt;}
.h8{height:47.760000pt;}
.h7{height:47.773333pt;}
.h4{height:81.454545pt;}
.ha{height:87.968750pt;}
.h5{height:101.818182pt;}
.h9{height:152.727273pt;}
.h3{height:221.333333pt;}
.h2{height:366.545455pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w2{width:151.832000pt;}
.w4{width:191.586667pt;}
.w6{width:194.173333pt;}
.w3{width:208.150667pt;}
.w5{width:208.466667pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xa{left:21.030000pt;}
.x5{left:130.900667pt;}
.x2{left:168.444267pt;}
.xe{left:170.078800pt;}
.xf{left:188.008533pt;}
.x11{left:194.645733pt;}
.x10{left:610.411333pt;}
.x9{left:1022.598667pt;}
.xb{left:1210.116000pt;}
.x1{left:1400.372133pt;}
.xd{left:1465.733333pt;}
.x1a{left:1469.627600pt;}
.x12{left:1948.106800pt;}
.x7{left:1979.963067pt;}
.x8{left:2017.758267pt;}
.x4{left:2024.277733pt;}
.xc{left:2069.906667pt;}
.x19{left:2115.767200pt;}
.x16{left:2133.310000pt;}
.x17{left:2258.969600pt;}
.x6{left:2298.489600pt;}
.x3{left:2336.033200pt;}
.x18{left:2444.967067pt;}
.x14{left:2476.215467pt;}
.x13{left:2622.600000pt;}
.x15{left:2686.539067pt;}
}




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