
    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_ff1b31bf326b3dbfc1851d2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.237029;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_1668a1809e6e8bea3d7110e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.256000;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.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;}
}
.ws1{word-spacing:-16.613273px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-2.156519px;}
._0{margin-left:-1.070580px;}
._1{width:1.411439px;}
._2{width:2.654759px;}
._3{width:4.615018px;}
._4{width:5.871838px;}
._14{width:7.345497px;}
._13{width:8.363577px;}
._f{width:9.508796px;}
._10{width:10.740536px;}
._11{width:12.416875px;}
._7{width:13.417135px;}
._8{width:15.077994px;}
._15{width:17.739533px;}
._9{width:19.180672px;}
._12{width:20.344852px;}
._b{width:21.620631px;}
._c{width:22.881771px;}
._d{width:24.230030px;}
._e{width:25.631570px;}
._5{width:40.694024px;}
._6{width:42.602503px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(30,72,124);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.759983px;}
.fs1{font-size:48.239981px;}
.fs0{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs4{font-size:99.359960px;}
.y0{bottom:0.000000px;}
.y2c{bottom:119.639952px;}
.y57{bottom:132.600397px;}
.y2b{bottom:136.919945px;}
.y56{bottom:149.880390px;}
.y2a{bottom:154.199938px;}
.y29{bottom:171.299931px;}
.y55{bottom:174.719930px;}
.y54{bottom:191.819923px;}
.y28{bottom:196.139922px;}
.y53{bottom:209.099916px;}
.y27{bottom:213.419915px;}
.y52{bottom:226.379909px;}
.y26{bottom:230.699908px;}
.y51{bottom:243.659903px;}
.y25{bottom:247.799901px;}
.y24{bottom:265.079894px;}
.y50{bottom:275.879890px;}
.y4f{bottom:293.159883px;}
.y23{bottom:297.299881px;}
.y4e{bottom:310.439876px;}
.y22{bottom:314.579874px;}
.y4d{bottom:327.719869px;}
.y21{bottom:331.859867px;}
.y4c{bottom:344.819862px;}
.y20{bottom:349.139860px;}
.y1f{bottom:366.239854px;}
.y4b{bottom:377.219849px;}
.y4a{bottom:394.319842px;}
.y1e{bottom:398.639841px;}
.y49{bottom:411.599835px;}
.y1d{bottom:415.919834px;}
.y48{bottom:428.879828px;}
.y1c{bottom:433.019827px;}
.y47{bottom:446.159822px;}
.y1b{bottom:450.299820px;}
.y1a{bottom:467.579813px;}
.y46{bottom:478.379809px;}
.y45{bottom:495.659802px;}
.y19{bottom:499.799800px;}
.y44{bottom:512.759795px;}
.y18{bottom:517.079793px;}
.y17{bottom:534.359786px;}
.y43{bottom:545.159782px;}
.y16{bottom:551.639779px;}
.y42{bottom:562.439775px;}
.y15{bottom:568.739773px;}
.y41{bottom:579.539768px;}
.y40{bottom:596.819761px;}
.y14{bottom:601.139760px;}
.y13{bottom:618.419753px;}
.y3f{bottom:629.039748px;}
.y12{bottom:635.519746px;}
.y3e{bottom:662.159735px;}
.y11{bottom:667.919733px;}
.y3d{bottom:677.999729px;}
.y10{bottom:685.019726px;}
.yf{bottom:702.299719px;}
.y3c{bottom:704.639718px;}
.ye{bottom:719.579712px;}
.y3b{bottom:748.199701px;}
.yd{bottom:751.799699px;}
.y3a{bottom:782.219687px;}
.yc{bottom:784.739686px;}
.y39{bottom:810.659676px;}
.yb{bottom:817.139673px;}
.y38{bottom:839.099664px;}
.ya{bottom:851.339659px;}
.y37{bottom:867.719653px;}
.y9{bottom:879.779648px;}
.y36{bottom:894.179642px;}
.y62{bottom:901.739639px;}
.y8{bottom:908.219637px;}
.y35{bottom:913.079635px;}
.y61{bottom:918.659633px;}
.y60{bottom:935.939626px;}
.y7{bottom:936.659625px;}
.y34{bottom:948.539621px;}
.y5f{bottom:953.219619px;}
.y6{bottom:963.119615px;}
.y5e{bottom:970.319612px;}
.y33{bottom:976.799609px;}
.y5{bottom:982.199607px;}
.y5d{bottom:987.599605px;}
.y32{bottom:1000.739600px;}
.y5c{bottom:1004.879598px;}
.y4{bottom:1017.479593px;}
.y5b{bottom:1022.159591px;}
.y5a{bottom:1039.439584px;}
.y3{bottom:1045.739582px;}
.y59{bottom:1056.539577px;}
.y2{bottom:1069.679572px;}
.y58{bottom:1073.819570px;}
.y31{bottom:1074.179570px;}
.y30{bottom:1091.099564px;}
.y2f{bottom:1108.379557px;}
.y2e{bottom:1125.659550px;}
.y2d{bottom:1142.939543px;}
.y1{bottom:1143.299543px;}
.h3{height:39.797264px;}
.h1{height:39.830258px;}
.h2{height:45.972702px;}
.h8{height:56.951257px;}
.h4{height:63.126695px;}
.h9{height:68.327973px;}
.h6{height:68.615973px;}
.h7{height:79.943728px;}
.h5{height:94.292602px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x2{left:338.039865px;}
.x4{left:521.279791px;}
.x3{left:609.839756px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-14.767354pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-1.916906pt;}
._0{margin-left:-0.951626pt;}
._1{width:1.254613pt;}
._2{width:2.359786pt;}
._3{width:4.102238pt;}
._4{width:5.219411pt;}
._14{width:6.529331pt;}
._13{width:7.434290pt;}
._f{width:8.452263pt;}
._10{width:9.547143pt;}
._11{width:11.037222pt;}
._7{width:11.926342pt;}
._8{width:13.402661pt;}
._15{width:15.768474pt;}
._9{width:17.049487pt;}
._12{width:18.084313pt;}
._b{width:19.218339pt;}
._c{width:20.339352pt;}
._d{width:21.537805pt;}
._e{width:22.783618pt;}
._5{width:36.172466pt;}
._6{width:37.868892pt;}
.fs2{font-size:37.119985pt;}
.fs1{font-size:42.879983pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs4{font-size:88.319965pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:106.346624pt;}
.y57{bottom:117.867020pt;}
.y2b{bottom:121.706618pt;}
.y56{bottom:133.227013pt;}
.y2a{bottom:137.066612pt;}
.y29{bottom:152.266606pt;}
.y55{bottom:155.306605pt;}
.y54{bottom:170.506598pt;}
.y28{bottom:174.346597pt;}
.y53{bottom:185.866592pt;}
.y27{bottom:189.706591pt;}
.y52{bottom:201.226586pt;}
.y26{bottom:205.066585pt;}
.y51{bottom:216.586580pt;}
.y25{bottom:220.266579pt;}
.y24{bottom:235.626572pt;}
.y50{bottom:245.226569pt;}
.y4f{bottom:260.586562pt;}
.y23{bottom:264.266561pt;}
.y4e{bottom:275.946556pt;}
.y22{bottom:279.626555pt;}
.y4d{bottom:291.306550pt;}
.y21{bottom:294.986549pt;}
.y4c{bottom:306.506544pt;}
.y20{bottom:310.346543pt;}
.y1f{bottom:325.546536pt;}
.y4b{bottom:335.306533pt;}
.y4a{bottom:350.506526pt;}
.y1e{bottom:354.346525pt;}
.y49{bottom:365.866520pt;}
.y1d{bottom:369.706519pt;}
.y48{bottom:381.226514pt;}
.y1c{bottom:384.906513pt;}
.y47{bottom:396.586508pt;}
.y1b{bottom:400.266507pt;}
.y1a{bottom:415.626500pt;}
.y46{bottom:425.226497pt;}
.y45{bottom:440.586490pt;}
.y19{bottom:444.266489pt;}
.y44{bottom:455.786484pt;}
.y18{bottom:459.626483pt;}
.y17{bottom:474.986477pt;}
.y43{bottom:484.586473pt;}
.y16{bottom:490.346471pt;}
.y42{bottom:499.946467pt;}
.y15{bottom:505.546464pt;}
.y41{bottom:515.146461pt;}
.y40{bottom:530.506454pt;}
.y14{bottom:534.346453pt;}
.y13{bottom:549.706447pt;}
.y3f{bottom:559.146443pt;}
.y12{bottom:564.906441pt;}
.y3e{bottom:588.586431pt;}
.y11{bottom:593.706429pt;}
.y3d{bottom:602.666426pt;}
.y10{bottom:608.906423pt;}
.yf{bottom:624.266417pt;}
.y3c{bottom:626.346416pt;}
.ye{bottom:639.626411pt;}
.y3b{bottom:665.066401pt;}
.yd{bottom:668.266399pt;}
.y3a{bottom:695.306389pt;}
.yc{bottom:697.546388pt;}
.y39{bottom:720.586378pt;}
.yb{bottom:726.346376pt;}
.y38{bottom:745.866368pt;}
.ya{bottom:756.746364pt;}
.y37{bottom:771.306358pt;}
.y9{bottom:782.026354pt;}
.y36{bottom:794.826349pt;}
.y62{bottom:801.546346pt;}
.y8{bottom:807.306344pt;}
.y35{bottom:811.626342pt;}
.y61{bottom:816.586340pt;}
.y60{bottom:831.946334pt;}
.y7{bottom:832.586334pt;}
.y34{bottom:843.146329pt;}
.y5f{bottom:847.306328pt;}
.y6{bottom:856.106324pt;}
.y5e{bottom:862.506322pt;}
.y33{bottom:868.266319pt;}
.y5{bottom:873.066317pt;}
.y5d{bottom:877.866316pt;}
.y32{bottom:889.546311pt;}
.y5c{bottom:893.226309pt;}
.y4{bottom:904.426305pt;}
.y5b{bottom:908.586303pt;}
.y5a{bottom:923.946297pt;}
.y3{bottom:929.546295pt;}
.y59{bottom:939.146291pt;}
.y2{bottom:950.826286pt;}
.y58{bottom:954.506285pt;}
.y31{bottom:954.826285pt;}
.y30{bottom:969.866279pt;}
.y2f{bottom:985.226273pt;}
.y2e{bottom:1000.586266pt;}
.y2d{bottom:1015.946260pt;}
.y1{bottom:1016.266260pt;}
.h3{height:35.375346pt;}
.h1{height:35.404673pt;}
.h2{height:40.864624pt;}
.h8{height:50.623340pt;}
.h4{height:56.112618pt;}
.h9{height:60.735976pt;}
.h6{height:60.991976pt;}
.h7{height:71.061092pt;}
.h5{height:83.815646pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x2{left:300.479880pt;}
.x4{left:463.359815pt;}
.x3{left:542.079783pt;}
}




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