
    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_b6f391ee98536864e1fef6b2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_8360ee0a1c23513161bd3c46.woff')format("woff");}.ff2{font-family:ff2;line-height:1.077148;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_8793cb0384a3edd87949c96c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_a550185371e1e183a6ca932e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_4379b406ec8fa5c0569175ab.woff')format("woff");}.ff5{font-family:ff5;line-height:1.100000;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_e506eba49963a9d4c506e5ab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.095000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,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;}
}
.ws0{word-spacing:-31.109940px;}
.ws6{word-spacing:-26.072819px;}
.ws3{word-spacing:-26.015579px;}
.ws4{word-spacing:-24.746760px;}
.ws2{word-spacing:-24.746388px;}
.ws5{word-spacing:-20.053079px;}
.ws1{word-spacing:-13.826542px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-22.635742px;}
._6{margin-left:-15.749803px;}
._8{margin-left:-12.319579px;}
._3{margin-left:-7.264000px;}
._1{margin-left:-4.699221px;}
._0{margin-left:-3.157934px;}
._2{margin-left:-1.698069px;}
._4{width:1.171700px;}
._5{width:2.432308px;}
.fc3{color:transparent;}
.fc2{color:rgb(233,148,8);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(62,121,178);}
.fs8{font-size:52.540845px;}
.fs7{font-size:58.364122px;}
.fs3{font-size:59.984997px;}
.fsa{font-size:94.589996px;}
.fs4{font-size:116.728244px;}
.fs9{font-size:116.730000px;}
.fs5{font-size:122.714995px;}
.fs6{font-size:122.984995px;}
.fsb{font-size:125.684995px;}
.fs2{font-size:137.969994px;}
.fs0{font-size:146.744998px;}
.fs1{font-size:303.554742px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y1a{bottom:3.502308px;}
.y15{bottom:3.542979px;}
.yf{bottom:6.688252px;}
.y18{bottom:6.897168px;}
.y19{bottom:16.200009px;}
.y4{bottom:23.231517px;}
.y16{bottom:56.193046px;}
.y14{bottom:86.400007px;}
.yd{bottom:132.374982px;}
.yc{bottom:152.624982px;}
.y36{bottom:164.999981px;}
.yb{bottom:172.874981px;}
.y35{bottom:185.249980px;}
.ya{bottom:193.124980px;}
.y34{bottom:205.499979px;}
.y9{bottom:213.374979px;}
.y17{bottom:230.760001px;}
.y33{bottom:233.805842px;}
.ye{bottom:234.000000px;}
.y25{bottom:340.815514px;}
.y24{bottom:373.440512px;}
.y1e{bottom:377.761448px;}
.y2c{bottom:389.093204px;}
.y23{bottom:406.065511px;}
.y1d{bottom:420.511446px;}
.y13{bottom:435.818142px;}
.y22{bottom:438.690510px;}
.y11{bottom:461.623589px;}
.y21{bottom:471.315508px;}
.y2b{bottom:479.929624px;}
.y12{bottom:502.729611px;}
.y20{bottom:503.940507px;}
.y1c{bottom:510.364491px;}
.y2a{bottom:521.029634px;}
.y1f{bottom:536.565506px;}
.y10{bottom:637.382918px;}
.y1b{bottom:638.357931px;}
.y32{bottom:655.822765px;}
.y31{bottom:699.697764px;}
.y28{bottom:738.306401px;}
.y30{bottom:742.447762px;}
.y29{bottom:776.945974px;}
.y2f{bottom:785.197760px;}
.y27{bottom:818.058130px;}
.y2e{bottom:827.947758px;}
.y26{bottom:860.808129px;}
.y2{bottom:865.550815px;}
.y2d{bottom:870.697757px;}
.y8{bottom:924.039203px;}
.y7{bottom:971.289201px;}
.y6{bottom:1018.539199px;}
.y5{bottom:1065.789197px;}
.y3{bottom:1097.279964px;}
.h10{height:15.839999px;}
.hd{height:17.999999px;}
.h8{height:34.199999px;}
.hf{height:34.559999px;}
.h11{height:47.076597px;}
.h7{height:53.746557px;}
.he{height:54.220269px;}
.h18{height:55.726062px;}
.h19{height:56.985747px;}
.h15{height:78.131337px;}
.h14{height:87.874106px;}
.hb{height:101.362586px;}
.hc{height:101.585606px;}
.h4{height:103.319996px;}
.h9{height:108.440539px;}
.h12{height:108.442170px;}
.h6{height:113.963215px;}
.ha{height:114.002230px;}
.h16{height:114.253060px;}
.h17{height:116.761360px;}
.h3{height:121.211369px;}
.h13{height:136.326104px;}
.h5{height:254.049232px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w3{width:91.439996px;}
.w5{width:199.799992px;}
.w4{width:709.559970px;}
.w6{width:1582.199934px;}
.w2{width:1662.839931px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x3{left:1.123731px;}
.x8{left:21.134154px;}
.x26{left:42.042553px;}
.x1{left:69.572848px;}
.xc{left:255.801323px;}
.x22{left:273.124500px;}
.x4{left:284.359162px;}
.x1d{left:319.979057px;}
.x20{left:321.112779px;}
.x1f{left:335.501442px;}
.x6{left:337.480253px;}
.x21{left:340.905747px;}
.x24{left:357.235825px;}
.x5{left:369.279080px;}
.x2{left:371.159985px;}
.x1e{left:383.651440px;}
.x23{left:414.224103px;}
.x25{left:468.698716px;}
.x16{left:779.571100px;}
.x17{left:782.436335px;}
.x15{left:801.965631px;}
.x14{left:813.637505px;}
.x13{left:817.891411px;}
.x9{left:843.358677px;}
.x7{left:964.193124px;}
.x18{left:995.483206px;}
.xf{left:1124.411173px;}
.xe{left:1184.039951px;}
.xb{left:1466.461595px;}
.xa{left:1505.105454px;}
.x1b{left:1509.126443px;}
.x19{left:1515.941468px;}
.x11{left:1528.808490px;}
.x1a{left:1543.046935px;}
.x1c{left:1573.283359px;}
.x12{left:1582.052629px;}
.x27{left:1765.929490px;}
.x28{left:1876.355267px;}
.x29{left:1891.349407px;}
.x10{left:1966.314302px;}
.xd{left:1968.068414px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-27.653280pt;}
.ws6{word-spacing:-23.175839pt;}
.ws3{word-spacing:-23.124959pt;}
.ws4{word-spacing:-21.997120pt;}
.ws2{word-spacing:-21.996789pt;}
.ws5{word-spacing:-17.824959pt;}
.ws1{word-spacing:-12.290259pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-20.120659pt;}
._6{margin-left:-13.999825pt;}
._8{margin-left:-10.950737pt;}
._3{margin-left:-6.456889pt;}
._1{margin-left:-4.177085pt;}
._0{margin-left:-2.807053pt;}
._2{margin-left:-1.509395pt;}
._4{width:1.041511pt;}
._5{width:2.162052pt;}
.fs8{font-size:46.702974pt;}
.fs7{font-size:51.879219pt;}
.fs3{font-size:53.319997pt;}
.fsa{font-size:84.079996pt;}
.fs4{font-size:103.758440pt;}
.fs9{font-size:103.760000pt;}
.fs5{font-size:109.079995pt;}
.fs6{font-size:109.319995pt;}
.fsb{font-size:111.719995pt;}
.fs2{font-size:122.639995pt;}
.fs0{font-size:130.439999pt;}
.fs1{font-size:269.826437pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y1a{bottom:3.113162pt;}
.y15{bottom:3.149314pt;}
.yf{bottom:5.945113pt;}
.y18{bottom:6.130816pt;}
.y19{bottom:14.400008pt;}
.y4{bottom:20.650238pt;}
.y16{bottom:49.949374pt;}
.y14{bottom:76.800006pt;}
.yd{bottom:117.666651pt;}
.yc{bottom:135.666650pt;}
.y36{bottom:146.666650pt;}
.yb{bottom:153.666650pt;}
.y35{bottom:164.666649pt;}
.ya{bottom:171.666649pt;}
.y34{bottom:182.666648pt;}
.y9{bottom:189.666648pt;}
.y17{bottom:205.120000pt;}
.y33{bottom:207.827415pt;}
.ye{bottom:208.000000pt;}
.y25{bottom:302.947123pt;}
.y24{bottom:331.947122pt;}
.y1e{bottom:335.787954pt;}
.y2c{bottom:345.860626pt;}
.y23{bottom:360.947121pt;}
.y1d{bottom:373.787952pt;}
.y13{bottom:387.393904pt;}
.y22{bottom:389.947120pt;}
.y11{bottom:410.332079pt;}
.y21{bottom:418.947119pt;}
.y2b{bottom:426.604110pt;}
.y12{bottom:446.870765pt;}
.y20{bottom:447.947117pt;}
.y1c{bottom:453.657325pt;}
.y2a{bottom:463.137453pt;}
.y1f{bottom:476.947116pt;}
.y10{bottom:566.562594pt;}
.y1b{bottom:567.429272pt;}
.y32{bottom:582.953569pt;}
.y31{bottom:621.953568pt;}
.y28{bottom:656.272357pt;}
.y30{bottom:659.953566pt;}
.y29{bottom:690.618643pt;}
.y2f{bottom:697.953565pt;}
.y27{bottom:727.162783pt;}
.y2e{bottom:735.953563pt;}
.y26{bottom:765.162781pt;}
.y2{bottom:769.378502pt;}
.y2d{bottom:773.953561pt;}
.y8{bottom:821.368180pt;}
.y7{bottom:863.368178pt;}
.y6{bottom:905.368177pt;}
.y5{bottom:947.368175pt;}
.y3{bottom:975.359968pt;}
.h10{height:14.079999pt;}
.hd{height:15.999999pt;}
.h8{height:30.399999pt;}
.hf{height:30.719999pt;}
.h11{height:41.845864pt;}
.h7{height:47.774718pt;}
.he{height:48.195795pt;}
.h18{height:49.534278pt;}
.h19{height:50.653998pt;}
.h15{height:69.450077pt;}
.h14{height:78.110317pt;}
.hb{height:90.100076pt;}
.hc{height:90.298316pt;}
.h4{height:91.839996pt;}
.h9{height:96.391590pt;}
.h12{height:96.393040pt;}
.h6{height:101.300636pt;}
.ha{height:101.335316pt;}
.h16{height:101.558276pt;}
.h17{height:103.787876pt;}
.h3{height:107.743439pt;}
.h13{height:121.178759pt;}
.h5{height:225.821540pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w3{width:81.279997pt;}
.w5{width:177.599993pt;}
.w4{width:630.719974pt;}
.w6{width:1406.399941pt;}
.w2{width:1478.079938pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x3{left:0.998872pt;}
.x8{left:18.785915pt;}
.x26{left:37.371158pt;}
.x1{left:61.842532pt;}
.xc{left:227.378954pt;}
.x22{left:242.777333pt;}
.x4{left:252.763699pt;}
.x1d{left:284.425828pt;}
.x20{left:285.433582pt;}
.x1f{left:298.223504pt;}
.x6{left:299.982448pt;}
.x21{left:303.027331pt;}
.x24{left:317.542955pt;}
.x5{left:328.248071pt;}
.x2{left:329.919986pt;}
.x1e{left:341.023503pt;}
.x23{left:368.199203pt;}
.x25{left:416.621081pt;}
.x16{left:692.952089pt;}
.x17{left:695.498964pt;}
.x15{left:712.858338pt;}
.x14{left:723.233338pt;}
.x13{left:727.014588pt;}
.x9{left:749.652158pt;}
.x7{left:857.060554pt;}
.x18{left:884.873961pt;}
.xf{left:999.476598pt;}
.xe{left:1052.479956pt;}
.xb{left:1303.521418pt;}
.xa{left:1337.871514pt;}
.x1b{left:1341.445727pt;}
.x19{left:1347.503527pt;}
.x11{left:1358.940880pt;}
.x1a{left:1371.597276pt;}
.x1c{left:1398.474097pt;}
.x12{left:1406.269003pt;}
.x27{left:1569.715103pt;}
.x28{left:1667.871349pt;}
.x29{left:1681.199473pt;}
.x10{left:1747.834935pt;}
.xd{left:1749.394146pt;}
}




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