
    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_32b17277d9f99e2d4d22d206.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.016000;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_2c022c2162c0904dd486e6a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_0033ca277bfa7a546948dd5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_2349ca68023e1853903fbbc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.167000;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_d76aee9600621db6a3d129d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_9403516197796aa262558351.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_32b17277d9f99e2d4d22d206.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.016000;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_2c022c2162c0904dd486e6a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005000;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_0033ca277bfa7a546948dd5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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;}
.m4{transform:matrix(0.000000,-0.162500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.162500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.162500,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.170000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.170000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.170000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.205556,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.205556,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.205556,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7{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;}
.ls7{letter-spacing:1.944000px;}
.ls6{letter-spacing:2.430000px;}
.ls4{letter-spacing:3.300000px;}
.ls3{letter-spacing:3.960000px;}
.ls0{letter-spacing:6.000000px;}
.ls1{letter-spacing:7.500000px;}
.ls5{letter-spacing:8.400000px;}
.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;}
}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:5.994000px;}
.ws7{word-spacing:6.480000px;}
.ws3{word-spacing:9.768000px;}
.ws8{word-spacing:10.800000px;}
.ws5{word-spacing:11.100000px;}
.ws4{word-spacing:12.432000px;}
.ws1{word-spacing:17.760000px;}
.ws0{word-spacing:22.200000px;}
._0{margin-left:-6.000000px;}
._6{margin-left:-3.498000px;}
._3{margin-left:-2.191200px;}
._5{margin-left:-1.188000px;}
._7{width:1.689600px;}
._2{width:3.154800px;}
._4{width:4.210800px;}
._9{width:5.235552px;}
._1{width:6.480000px;}
._8{width:8.111952px;}
._a{width:21.461976px;}
.fc2{color:transparent;}
.fc3{color:rgb(34,30,31);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:39.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs6{font-size:81.000000px;}
.fs8{font-size:108.000000px;}
.fs2{font-size:132.000000px;}
.fs5{font-size:150.000000px;}
.fs4{font-size:168.000000px;}
.fs1{font-size:240.000000px;}
.fs0{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:113.755050px;}
.ya{bottom:154.613700px;}
.y9{bottom:265.577250px;}
.y7{bottom:291.867900px;}
.y19{bottom:291.868800px;}
.y6{bottom:331.632900px;}
.y18{bottom:331.633350px;}
.y8{bottom:350.043900px;}
.y5{bottom:371.397900px;}
.y4{bottom:487.686750px;}
.y3{bottom:553.686750px;}
.y2{bottom:619.686750px;}
.y12{bottom:657.056400px;}
.y11{bottom:689.456400px;}
.y1{bottom:702.694650px;}
.y10{bottom:721.856400px;}
.yf{bottom:754.256400px;}
.yd{bottom:806.115300px;}
.yb{bottom:813.121050px;}
.y1a{bottom:817.710450px;}
.yc{bottom:817.716450px;}
.y17{bottom:1098.630000px;}
.y16{bottom:1120.230000px;}
.y15{bottom:1141.830000px;}
.y14{bottom:1163.430000px;}
.y13{bottom:1185.030000px;}
.h9{height:28.899000px;}
.h5{height:49.632000px;}
.hf{height:51.264000px;}
.h8{height:60.426000px;}
.hc{height:96.552000px;}
.h4{height:98.472000px;}
.h7{height:112.800000px;}
.h6{height:126.336000px;}
.h3{height:180.480000px;}
.h2{height:225.600000px;}
.ha{height:1020.472500px;}
.hb{height:1020.750000px;}
.h10{height:1033.228650px;}
.h11{height:1033.500000px;}
.h1{height:1037.250000px;}
.h0{height:1037.479650px;}
.hd{height:1262.880060px;}
.he{height:1263.000000px;}
.w6{width:718.500000px;}
.w5{width:718.580700px;}
.w2{width:722.835000px;}
.w0{width:722.836500px;}
.w1{width:723.000000px;}
.w3{width:892.980015px;}
.w4{width:893.250000px;}
.x7{left:-578.553600px;}
.xd{left:-574.527450px;}
.xa{left:-89.442750px;}
.x8{left:-87.623850px;}
.xb{left:-69.942000px;}
.xc{left:-50.442750px;}
.x9{left:-47.619900px;}
.x0{left:0.000000px;}
.x1{left:89.894400px;}
.x5{left:95.805300px;}
.x11{left:118.256250px;}
.x2{left:136.369200px;}
.xe{left:149.792250px;}
.xf{left:152.762250px;}
.x6{left:206.262900px;}
.x4{left:262.943700px;}
.x3{left:267.300600px;}
.x10{left:280.661250px;}
.x18{left:297.351600px;}
.x1e{left:301.377750px;}
.x1b{left:786.462450px;}
.x19{left:788.281350px;}
.x1c{left:805.962450px;}
.x1d{left:825.462450px;}
.x1a{left:828.285300px;}
.x12{left:965.799600px;}
.x16{left:971.719950px;}
.x13{left:1012.274400px;}
.x17{left:1082.188500px;}
.x15{left:1138.848900px;}
.x14{left:1143.186150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:1.728000pt;}
.ls6{letter-spacing:2.160000pt;}
.ls4{letter-spacing:2.933333pt;}
.ls3{letter-spacing:3.520000pt;}
.ls0{letter-spacing:5.333333pt;}
.ls1{letter-spacing:6.666667pt;}
.ls5{letter-spacing:7.466667pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:5.328000pt;}
.ws7{word-spacing:5.760000pt;}
.ws3{word-spacing:8.682667pt;}
.ws8{word-spacing:9.600000pt;}
.ws5{word-spacing:9.866667pt;}
.ws4{word-spacing:11.050667pt;}
.ws1{word-spacing:15.786667pt;}
.ws0{word-spacing:19.733333pt;}
._0{margin-left:-5.333333pt;}
._6{margin-left:-3.109333pt;}
._3{margin-left:-1.947733pt;}
._5{margin-left:-1.056000pt;}
._7{width:1.501867pt;}
._2{width:2.804267pt;}
._4{width:3.742933pt;}
._9{width:4.653824pt;}
._1{width:5.760000pt;}
._8{width:7.210624pt;}
._a{width:19.077312pt;}
.fs7{font-size:34.666667pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs6{font-size:72.000000pt;}
.fs8{font-size:96.000000pt;}
.fs2{font-size:117.333333pt;}
.fs5{font-size:133.333333pt;}
.fs4{font-size:149.333333pt;}
.fs1{font-size:213.333333pt;}
.fs0{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:101.115600pt;}
.ya{bottom:137.434400pt;}
.y9{bottom:236.068667pt;}
.y7{bottom:259.438133pt;}
.y19{bottom:259.438933pt;}
.y6{bottom:294.784800pt;}
.y18{bottom:294.785200pt;}
.y8{bottom:311.150133pt;}
.y5{bottom:330.131467pt;}
.y4{bottom:433.499333pt;}
.y3{bottom:492.166000pt;}
.y2{bottom:550.832667pt;}
.y12{bottom:584.050133pt;}
.y11{bottom:612.850133pt;}
.y1{bottom:624.617467pt;}
.y10{bottom:641.650133pt;}
.yf{bottom:670.450133pt;}
.yd{bottom:716.546933pt;}
.yb{bottom:722.774267pt;}
.y1a{bottom:726.853733pt;}
.yc{bottom:726.859067pt;}
.y17{bottom:976.560000pt;}
.y16{bottom:995.760000pt;}
.y15{bottom:1014.960000pt;}
.y14{bottom:1034.160000pt;}
.y13{bottom:1053.360000pt;}
.h9{height:25.688000pt;}
.h5{height:44.117333pt;}
.hf{height:45.568000pt;}
.h8{height:53.712000pt;}
.hc{height:85.824000pt;}
.h4{height:87.530667pt;}
.h7{height:100.266667pt;}
.h6{height:112.298667pt;}
.h3{height:160.426667pt;}
.h2{height:200.533333pt;}
.ha{height:907.086667pt;}
.hb{height:907.333333pt;}
.h10{height:918.425467pt;}
.h11{height:918.666667pt;}
.h1{height:922.000000pt;}
.h0{height:922.204133pt;}
.hd{height:1122.560053pt;}
.he{height:1122.666667pt;}
.w6{width:638.666667pt;}
.w5{width:638.738400pt;}
.w2{width:642.520000pt;}
.w0{width:642.521333pt;}
.w1{width:642.666667pt;}
.w3{width:793.760013pt;}
.w4{width:794.000000pt;}
.x7{left:-514.269867pt;}
.xd{left:-510.691067pt;}
.xa{left:-79.504667pt;}
.x8{left:-77.887867pt;}
.xb{left:-62.170667pt;}
.xc{left:-44.838000pt;}
.x9{left:-42.328800pt;}
.x0{left:0.000000pt;}
.x1{left:79.906133pt;}
.x5{left:85.160267pt;}
.x11{left:105.116667pt;}
.x2{left:121.217067pt;}
.xe{left:133.148667pt;}
.xf{left:135.788667pt;}
.x6{left:183.344800pt;}
.x4{left:233.727733pt;}
.x3{left:237.600533pt;}
.x10{left:249.476667pt;}
.x18{left:264.312533pt;}
.x1e{left:267.891333pt;}
.x1b{left:699.077733pt;}
.x19{left:700.694533pt;}
.x1c{left:716.411067pt;}
.x1d{left:733.744400pt;}
.x1a{left:736.253600pt;}
.x12{left:858.488533pt;}
.x16{left:863.751067pt;}
.x13{left:899.799467pt;}
.x17{left:961.945333pt;}
.x15{left:1012.310133pt;}
.x14{left:1016.165467pt;}
}




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