
    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_4cd06ba56b177e63f2eb2559.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_950aaf332b7af00aae496f9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_dcbd6a285646d1eac4b67123.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_6a34edde24113ab51504d8cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_ee592add573afdf0a51f1237.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.378906;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_503af16309918595376196a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:16.422743px;}
.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:-24.228191px;}
.ws2{word-spacing:-20.302598px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-1.166241px;}
._2{width:1.018985px;}
._a{width:2.181908px;}
._9{width:3.367422px;}
._15{width:4.378011px;}
._5{width:5.402421px;}
._3{width:6.436045px;}
._12{width:7.536471px;}
._19{width:8.969591px;}
._18{width:10.069689px;}
._17{width:11.697622px;}
._16{width:13.089279px;}
._20{width:14.207964px;}
._e{width:15.712005px;}
._d{width:17.168161px;}
._24{width:18.265625px;}
._2f{width:19.282955px;}
._8{width:21.421480px;}
._7{width:22.600687px;}
._11{width:23.655025px;}
._1d{width:25.580629px;}
._1c{width:26.639262px;}
._10{width:28.129313px;}
._f{width:29.228752px;}
._1f{width:30.663189px;}
._1e{width:31.693522px;}
._2a{width:33.193116px;}
._2d{width:34.210286px;}
._6{width:35.295245px;}
._c{width:36.619443px;}
._b{width:37.621146px;}
._21{width:38.691955px;}
._23{width:39.761129px;}
._1b{width:40.878319px;}
._1a{width:41.924457px;}
._22{width:43.426185px;}
._31{width:45.968786px;}
._2e{width:47.494048px;}
._25{width:48.681350px;}
._14{width:50.513638px;}
._13{width:51.554173px;}
._2b{width:52.881989px;}
._2c{width:53.902770px;}
._30{width:55.771924px;}
._29{width:59.766196px;}
._27{width:61.715014px;}
._26{width:62.769041px;}
._28{width:75.946976px;}
._32{width:79.272800px;}
._0{width:222.488357px;}
._1{width:1257.110372px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:69.842700px;}
.fs0{font-size:72.002705px;}
.fs2{font-size:84.243145px;}
.fs1{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y2{bottom:54.000000px;}
.y1b{bottom:149.040047px;}
.y4f{bottom:156.600083px;}
.y50{bottom:159.480079px;}
.y4d{bottom:162.900055px;}
.y1a{bottom:196.740074px;}
.y4b{bottom:204.300041px;}
.y53{bottom:207.180039px;}
.y30{bottom:210.600083px;}
.y41{bottom:216.900055px;}
.y19{bottom:244.440033px;}
.y4a{bottom:252.000068px;}
.y2f{bottom:258.300041px;}
.y40{bottom:264.600083px;}
.y18{bottom:292.140060px;}
.y49{bottom:299.700096px;}
.y2e{bottom:306.000068px;}
.y3f{bottom:312.480079px;}
.y17{bottom:339.840088px;}
.y48{bottom:347.400055px;}
.y2d{bottom:353.880066px;}
.y3e{bottom:360.180039px;}
.y16{bottom:387.720085px;}
.y47{bottom:395.280052px;}
.y2c{bottom:401.580093px;}
.y3d{bottom:407.880066px;}
.y15{bottom:435.420043px;}
.y46{bottom:442.980079px;}
.y2b{bottom:449.280052px;}
.y3c{bottom:455.580093px;}
.y14{bottom:483.120072px;}
.y45{bottom:490.680039px;}
.y2a{bottom:496.980079px;}
.y3b{bottom:499.860077px;}
.y13{bottom:530.820099px;}
.y44{bottom:538.380066px;}
.y29{bottom:544.680039px;}
.y12{bottom:578.520058px;}
.y43{bottom:586.080093px;}
.y28{bottom:592.380066px;}
.y11{bottom:626.220085px;}
.y42{bottom:633.780052px;}
.y27{bottom:636.660049px;}
.y3a{bottom:640.080093px;}
.y10{bottom:673.920043px;}
.y26{bottom:681.480079px;}
.y4c{bottom:684.360077px;}
.y39{bottom:687.780052px;}
.yf{bottom:721.620072px;}
.y25{bottom:729.180073px;}
.y38{bottom:735.660049px;}
.ye{bottom:769.500068px;}
.y24{bottom:777.060070px;}
.y4e{bottom:779.940067px;}
.y37{bottom:783.360077px;}
.yd{bottom:817.200061px;}
.y23{bottom:824.760064px;}
.y36{bottom:831.060070px;}
.yc{bottom:864.900055px;}
.y22{bottom:872.460056px;}
.y51{bottom:875.340054px;}
.y35{bottom:878.760064px;}
.yb{bottom:912.600083px;}
.y21{bottom:920.160049px;}
.y34{bottom:926.460056px;}
.ya{bottom:960.300076px;}
.y20{bottom:967.860077px;}
.y33{bottom:974.160049px;}
.y9{bottom:1004.580059px;}
.y1f{bottom:1015.560070px;}
.y52{bottom:1018.440067px;}
.y32{bottom:1021.860060px;}
.y8{bottom:1025.280069px;}
.y7{bottom:1047.060070px;}
.y1e{bottom:1063.260064px;}
.y31{bottom:1066.140060px;}
.y6{bottom:1074.240074px;}
.y5{bottom:1101.600065px;}
.y1d{bottom:1110.960074px;}
.y4{bottom:1128.780069px;}
.y3{bottom:1156.140069px;}
.y1c{bottom:1158.840063px;}
.y1{bottom:1192.680064px;}
.h2{height:49.994065px;}
.h4{height:76.838963px;}
.h3{height:87.346877px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x3{left:92.159998px;}
.x6{left:294.120002px;}
.x7{left:316.079990px;}
.x4{left:325.079990px;}
.x2{left:343.800007px;}
.x5{left:446.399987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:14.597994pt;}
.ws0{word-spacing:-21.536170pt;}
.ws2{word-spacing:-18.046754pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-1.036659pt;}
._2{width:0.905764pt;}
._a{width:1.939473pt;}
._9{width:2.993264pt;}
._15{width:3.891565pt;}
._5{width:4.802152pt;}
._3{width:5.720929pt;}
._12{width:6.699085pt;}
._19{width:7.972970pt;}
._18{width:8.950834pt;}
._17{width:10.397886pt;}
._16{width:11.634914pt;}
._20{width:12.629301pt;}
._e{width:13.966227pt;}
._d{width:15.260587pt;}
._24{width:16.236111pt;}
._2f{width:17.140405pt;}
._8{width:19.041315pt;}
._7{width:20.089500pt;}
._11{width:21.026689pt;}
._1d{width:22.738337pt;}
._1c{width:23.679344pt;}
._10{width:25.003834pt;}
._f{width:25.981113pt;}
._1f{width:27.256168pt;}
._1e{width:28.172019pt;}
._2a{width:29.504992pt;}
._2d{width:30.409143pt;}
._6{width:31.373551pt;}
._c{width:32.550616pt;}
._b{width:33.441019pt;}
._21{width:34.392849pt;}
._23{width:35.343226pt;}
._1b{width:36.336284pt;}
._1a{width:37.266184pt;}
._22{width:38.601053pt;}
._31{width:40.861143pt;}
._2e{width:42.216931pt;}
._25{width:43.272311pt;}
._14{width:44.901012pt;}
._13{width:45.825931pt;}
._2b{width:47.006213pt;}
._2c{width:47.913573pt;}
._30{width:49.575044pt;}
._29{width:53.125508pt;}
._27{width:54.857790pt;}
._26{width:55.794704pt;}
._28{width:67.508423pt;}
._32{width:70.464711pt;}
._0{width:197.767428pt;}
._1{width:1117.431442pt;}
.fs3{font-size:62.082400pt;}
.fs0{font-size:64.002404pt;}
.fs2{font-size:74.882796pt;}
.fs1{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:48.000000pt;}
.y1b{bottom:132.480042pt;}
.y4f{bottom:139.200074pt;}
.y50{bottom:141.760071pt;}
.y4d{bottom:144.800049pt;}
.y1a{bottom:174.880066pt;}
.y4b{bottom:181.600037pt;}
.y53{bottom:184.160035pt;}
.y30{bottom:187.200074pt;}
.y41{bottom:192.800049pt;}
.y19{bottom:217.280030pt;}
.y4a{bottom:224.000061pt;}
.y2f{bottom:229.600037pt;}
.y40{bottom:235.200074pt;}
.y18{bottom:259.680054pt;}
.y49{bottom:266.400086pt;}
.y2e{bottom:272.000061pt;}
.y3f{bottom:277.760071pt;}
.y17{bottom:302.080079pt;}
.y48{bottom:308.800049pt;}
.y2d{bottom:314.560059pt;}
.y3e{bottom:320.160035pt;}
.y16{bottom:344.640076pt;}
.y47{bottom:351.360047pt;}
.y2c{bottom:356.960083pt;}
.y3d{bottom:362.560059pt;}
.y15{bottom:387.040039pt;}
.y46{bottom:393.760071pt;}
.y2b{bottom:399.360047pt;}
.y3c{bottom:404.960083pt;}
.y14{bottom:429.440064pt;}
.y45{bottom:436.160035pt;}
.y2a{bottom:441.760071pt;}
.y3b{bottom:444.320069pt;}
.y13{bottom:471.840088pt;}
.y44{bottom:478.560059pt;}
.y29{bottom:484.160035pt;}
.y12{bottom:514.240052pt;}
.y43{bottom:520.960083pt;}
.y28{bottom:526.560059pt;}
.y11{bottom:556.640076pt;}
.y42{bottom:563.360047pt;}
.y27{bottom:565.920044pt;}
.y3a{bottom:568.960083pt;}
.y10{bottom:599.040039pt;}
.y26{bottom:605.760071pt;}
.y4c{bottom:608.320069pt;}
.y39{bottom:611.360047pt;}
.yf{bottom:641.440064pt;}
.y25{bottom:648.160065pt;}
.y38{bottom:653.920044pt;}
.ye{bottom:684.000061pt;}
.y24{bottom:690.720063pt;}
.y4e{bottom:693.280060pt;}
.y37{bottom:696.320069pt;}
.yd{bottom:726.400055pt;}
.y23{bottom:733.120057pt;}
.y36{bottom:738.720063pt;}
.yc{bottom:768.800049pt;}
.y22{bottom:775.520050pt;}
.y51{bottom:778.080048pt;}
.y35{bottom:781.120057pt;}
.yb{bottom:811.200074pt;}
.y21{bottom:817.920044pt;}
.y34{bottom:823.520050pt;}
.ya{bottom:853.600068pt;}
.y20{bottom:860.320069pt;}
.y33{bottom:865.920044pt;}
.y9{bottom:892.960053pt;}
.y1f{bottom:902.720063pt;}
.y52{bottom:905.280060pt;}
.y32{bottom:908.320054pt;}
.y8{bottom:911.360062pt;}
.y7{bottom:930.720063pt;}
.y1e{bottom:945.120057pt;}
.y31{bottom:947.680054pt;}
.y6{bottom:954.880066pt;}
.y5{bottom:979.200058pt;}
.y1d{bottom:987.520066pt;}
.y4{bottom:1003.360062pt;}
.y3{bottom:1027.680062pt;}
.y1c{bottom:1030.080056pt;}
.y1{bottom:1060.160057pt;}
.h2{height:44.439169pt;}
.h4{height:68.301300pt;}
.h3{height:77.641669pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x3{left:81.919998pt;}
.x6{left:261.440002pt;}
.x7{left:280.959991pt;}
.x4{left:288.959991pt;}
.x2{left:305.600006pt;}
.x5{left:396.799988pt;}
}




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