
    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_6cd8b5b811d0f5b17d3fcd13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_a15c454e46324eb1562502ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041992;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_669ecdfb91d110c31f55bb20.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_932c1c1c72169c853b057652.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_db0b5ee49f3bd3bb798a1630.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_e3c7b0b8c035691c0484d12e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.857910;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_fa197cdc3349603e0957a1c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.027832;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;}
.v1{vertical-align:5.011200px;}
.v2{vertical-align:111.859181px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:156.005855px;}
.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;}
}
.ws1{word-spacing:-63.156004px;}
.ws2{word-spacing:-56.544003px;}
.ws3{word-spacing:-28.272002px;}
.ws4{word-spacing:-26.784001px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:2544.579326px;}
.ws6{word-spacing:2544.768326px;}
._0{margin-left:-11.520000px;}
._d{margin-left:-9.266401px;}
._7{margin-left:-7.068001px;}
._2{margin-left:-6.000000px;}
._6{margin-left:-4.332000px;}
._1{margin-left:-3.120000px;}
._4{margin-left:-2.052000px;}
._9{margin-left:-1.026000px;}
._8{width:1.044028px;}
._5{width:2.508000px;}
._e{width:4.608000px;}
._3{width:5.760000px;}
._a{width:236.271652px;}
._b{width:292.245655px;}
._f{width:368.292660px;}
._c{width:1523.364733px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:108.000003px;}
.fs8{font-size:114.000007px;}
.fs5{font-size:138.000001px;}
.fs7{font-size:167.999999px;}
.fs9{font-size:178.080009px;}
.fsa{font-size:178.200015px;}
.fs3{font-size:192.000012px;}
.fs6{font-size:216.000007px;}
.fs2{font-size:228.000013px;}
.fs1{font-size:240.000002px;}
.fs0{font-size:432.000014px;}
.y0{bottom:0.000000px;}
.yc{bottom:66.023811px;}
.y5{bottom:214.603667px;}
.y1e{bottom:232.072757px;}
.y20{bottom:232.115057px;}
.y1d{bottom:282.472752px;}
.y1f{bottom:282.515052px;}
.y14{bottom:299.107808px;}
.y31{bottom:345.599368px;}
.y4{bottom:351.403727px;}
.y43{bottom:365.298659px;}
.y13{bottom:367.507777px;}
.y3b{bottom:370.809944px;}
.y42{bottom:390.757860px;}
.y3a{bottom:396.269156px;}
.y30{bottom:413.999371px;}
.y1c{bottom:422.539779px;}
.y24{bottom:430.829506px;}
.y12{bottom:435.907779px;}
.y25{bottom:446.219518px;}
.yb{bottom:455.216841px;}
.y23{bottom:461.609507px;}
.y1b{bottom:462.715783px;}
.y2f{bottom:482.399373px;}
.y11{bottom:504.307781px;}
.y41{bottom:518.518714px;}
.ya{bottom:523.616832px;}
.y3{bottom:532.123677px;}
.y2e{bottom:550.799375px;}
.y3e{bottom:570.689916px;}
.y40{bottom:571.942716px;}
.y10{bottom:572.707783px;}
.y39{bottom:579.645636px;}
.y2d{bottom:619.199343px;}
.y3f{bottom:625.366720px;}
.yf{bottom:641.107752px;}
.y2{bottom:661.723692px;}
.y27{bottom:667.997484px;}
.y1a{bottom:677.405799px;}
.y22{bottom:683.387486px;}
.y26{bottom:698.777487px;}
.y38{bottom:703.266737px;}
.y9{bottom:707.216905px;}
.y19{bottom:714.665789px;}
.y3d{bottom:750.621994px;}
.y35{bottom:755.437950px;}
.y2c{bottom:755.999381px;}
.y18{bottom:756.137787px;}
.y37{bottom:756.690739px;}
.y8{bottom:775.616907px;}
.ye{bottom:777.907790px;}
.y1{bottom:791.323690px;}
.y36{bottom:810.114746px;}
.y2b{bottom:824.399384px;}
.y7{bottom:844.016909px;}
.y2a{bottom:892.799386px;}
.y3c{bottom:901.468805px;}
.y34{bottom:902.841834px;}
.y29{bottom:906.461443px;}
.yd{bottom:914.707794px;}
.y21{bottom:920.555443px;}
.y28{bottom:935.621438px;}
.y17{bottom:956.984407px;}
.y16{bottom:994.244408px;}
.y33{bottom:1033.502585px;}
.y15{bottom:1034.420402px;}
.y6{bottom:1091.822581px;}
.y32{bottom:1150.142577px;}
.h4{height:78.626956px;}
.ha{height:82.107425px;}
.h9{height:86.668950px;}
.h6{height:100.467774px;}
.hb{height:120.603990px;}
.h8{height:122.308593px;}
.h5{height:139.781259px;}
.hd{height:144.690007px;}
.hc{height:156.000010px;}
.h7{height:157.253911px;}
.h3{height:185.250011px;}
.h2{height:195.000001px;}
.he{height:256.549188px;}
.hf{height:256.549256px;}
.h1{height:314.507823px;}
.h0{height:1335.000000px;}
.w0{width:2374.500000px;}
.x0{left:0.000000px;}
.x1{left:81.375001px;}
.xd{left:125.147727px;}
.x3{left:167.211388px;}
.x2{left:168.711388px;}
.x4{left:175.759925px;}
.x16{left:182.526385px;}
.x17{left:966.967343px;}
.xc{left:1375.535857px;}
.x13{left:1393.584661px;}
.x12{left:1440.117178px;}
.x11{left:1521.783782px;}
.x15{left:1523.876609px;}
.x14{left:1561.555321px;}
.x9{left:1661.121004px;}
.x7{left:1664.493506px;}
.x8{left:1675.527612px;}
.xb{left:1734.608581px;}
.x6{left:1792.440039px;}
.x5{left:1805.593367px;}
.x10{left:1816.926611px;}
.xe{left:1823.006626px;}
.xa{left:1838.252826px;}
.xf{left:1937.869835px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.454400pt;}
.v2{vertical-align:99.430383pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:138.671871pt;}
.ws1{word-spacing:-56.138670pt;}
.ws2{word-spacing:-50.261336pt;}
.ws3{word-spacing:-25.130668pt;}
.ws4{word-spacing:-23.808001pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:2261.848290pt;}
.ws6{word-spacing:2262.016290pt;}
._0{margin-left:-10.240000pt;}
._d{margin-left:-8.236801pt;}
._7{margin-left:-6.282667pt;}
._2{margin-left:-5.333333pt;}
._6{margin-left:-3.850667pt;}
._1{margin-left:-2.773333pt;}
._4{margin-left:-1.824000pt;}
._9{margin-left:-0.912000pt;}
._8{width:0.928025pt;}
._5{width:2.229333pt;}
._e{width:4.096000pt;}
._3{width:5.120000pt;}
._a{width:210.019246pt;}
._b{width:259.773916pt;}
._f{width:327.371254pt;}
._c{width:1354.101985pt;}
.fs4{font-size:96.000003pt;}
.fs8{font-size:101.333339pt;}
.fs5{font-size:122.666668pt;}
.fs7{font-size:149.333333pt;}
.fs9{font-size:158.293341pt;}
.fsa{font-size:158.400013pt;}
.fs3{font-size:170.666677pt;}
.fs6{font-size:192.000006pt;}
.fs2{font-size:202.666678pt;}
.fs1{font-size:213.333335pt;}
.fs0{font-size:384.000012pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:58.687832pt;}
.y5{bottom:190.758815pt;}
.y1e{bottom:206.286895pt;}
.y20{bottom:206.324495pt;}
.y1d{bottom:251.086891pt;}
.y1f{bottom:251.124491pt;}
.y14{bottom:265.873607pt;}
.y31{bottom:307.199439pt;}
.y4{bottom:312.358869pt;}
.y43{bottom:324.709919pt;}
.y13{bottom:326.673579pt;}
.y3b{bottom:329.608839pt;}
.y42{bottom:347.340320pt;}
.y3a{bottom:352.239250pt;}
.y30{bottom:367.999440pt;}
.y1c{bottom:375.590915pt;}
.y24{bottom:382.959561pt;}
.y12{bottom:387.473581pt;}
.y25{bottom:396.639571pt;}
.yb{bottom:404.637192pt;}
.y23{bottom:410.319562pt;}
.y1b{bottom:411.302918pt;}
.y2f{bottom:428.799442pt;}
.y11{bottom:448.273583pt;}
.y41{bottom:460.905523pt;}
.ya{bottom:465.437184pt;}
.y3{bottom:472.998824pt;}
.y2e{bottom:489.599444pt;}
.y3e{bottom:507.279925pt;}
.y40{bottom:508.393525pt;}
.y10{bottom:509.073585pt;}
.y39{bottom:515.240565pt;}
.y2d{bottom:550.399416pt;}
.y3f{bottom:555.881528pt;}
.yf{bottom:569.873557pt;}
.y2{bottom:588.198838pt;}
.y27{bottom:593.775542pt;}
.y1a{bottom:602.138488pt;}
.y22{bottom:607.455543pt;}
.y26{bottom:621.135544pt;}
.y38{bottom:625.125989pt;}
.y9{bottom:628.637249pt;}
.y19{bottom:635.258479pt;}
.y3d{bottom:667.219550pt;}
.y35{bottom:671.500400pt;}
.y2c{bottom:671.999450pt;}
.y18{bottom:672.122477pt;}
.y37{bottom:672.613990pt;}
.y8{bottom:689.437251pt;}
.ye{bottom:691.473591pt;}
.y1{bottom:703.398835pt;}
.y36{bottom:720.101997pt;}
.y2b{bottom:732.799452pt;}
.y7{bottom:750.237253pt;}
.y2a{bottom:793.599454pt;}
.y3c{bottom:801.305604pt;}
.y34{bottom:802.526074pt;}
.y29{bottom:805.743504pt;}
.yd{bottom:813.073595pt;}
.y21{bottom:818.271505pt;}
.y28{bottom:831.663500pt;}
.y17{bottom:850.652806pt;}
.y16{bottom:883.772807pt;}
.y33{bottom:918.668964pt;}
.y15{bottom:919.484802pt;}
.y6{bottom:970.508961pt;}
.y32{bottom:1022.348957pt;}
.h4{height:69.890627pt;}
.ha{height:72.984377pt;}
.h9{height:77.039067pt;}
.h6{height:89.304688pt;}
.hb{height:107.203547pt;}
.h8{height:108.718750pt;}
.h5{height:124.250008pt;}
.hd{height:128.613340pt;}
.hc{height:138.666675pt;}
.h7{height:139.781254pt;}
.h3{height:164.666676pt;}
.h2{height:173.333335pt;}
.he{height:228.043723pt;}
.hf{height:228.043783pt;}
.h1{height:279.562509pt;}
.h0{height:1186.666667pt;}
.w0{width:2110.666667pt;}
.x0{left:0.000000pt;}
.x1{left:72.333334pt;}
.xd{left:111.242424pt;}
.x3{left:148.632345pt;}
.x2{left:149.965678pt;}
.x4{left:156.231045pt;}
.x16{left:162.245675pt;}
.x17{left:859.526528pt;}
.xc{left:1222.698539pt;}
.x13{left:1238.741921pt;}
.x12{left:1280.104158pt;}
.x11{left:1352.696695pt;}
.x15{left:1354.556985pt;}
.x14{left:1388.049174pt;}
.x9{left:1476.552003pt;}
.x7{left:1479.549783pt;}
.x8{left:1489.357878pt;}
.xb{left:1541.874294pt;}
.x6{left:1593.280035pt;}
.x5{left:1604.971881pt;}
.x10{left:1615.045877pt;}
.xe{left:1620.450334pt;}
.xa{left:1634.002512pt;}
.xf{left:1722.550964pt;}
}




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