
    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_3b3088deca2f83fb5e1743d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_daeeea8d592f6cd48060f7cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725586;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_a4277d0c13d073cc3dcc0086.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991699;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_d166327bb10b4bb2227aeaf1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_4e58362d3c08e7c75b954a89.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_b815d40207b55a8904d2a290.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_30a468d49cb953abe2e90306.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_df993d1c2b3bbbc53e3516de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891113;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:32.053252px;}
.ls2{letter-spacing:847.441593px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0{word-spacing:-16.558425px;}
.ws1{word-spacing:0.000000px;}
._39{margin-left:-2.284552px;}
._0{margin-left:-1.051195px;}
._7{width:1.287928px;}
._18{width:3.148391px;}
._3{width:4.430414px;}
._4{width:5.527144px;}
._1b{width:7.384540px;}
._15{width:8.677908px;}
._1a{width:9.736354px;}
._25{width:11.518985px;}
._24{width:12.618289px;}
._1c{width:14.603666px;}
._20{width:17.563832px;}
._1f{width:19.076075px;}
._6{width:20.495184px;}
._5{width:21.577439px;}
._21{width:23.137294px;}
._19{width:24.561577px;}
._11{width:26.146788px;}
._2e{width:27.400313px;}
._12{width:28.744391px;}
._13{width:29.937632px;}
._28{width:31.239525px;}
._22{width:32.405097px;}
._23{width:33.417482px;}
._34{width:34.436084px;}
._31{width:35.457021px;}
._10{width:37.013513px;}
._f{width:38.250731px;}
._16{width:40.003344px;}
._b{width:41.050147px;}
._c{width:42.236920px;}
._36{width:43.354355px;}
._9{width:44.707747px;}
._8{width:45.838377px;}
._2d{width:47.879455px;}
._e{width:48.913770px;}
._2{width:50.722916px;}
._a{width:51.912860px;}
._27{width:53.171690px;}
._26{width:54.364931px;}
._d{width:56.211189px;}
._2b{width:61.493851px;}
._38{width:64.290141px;}
._37{width:65.295044px;}
._1d{width:70.472657px;}
._35{width:76.433690px;}
._3f{width:78.943067px;}
._2c{width:81.368870px;}
._32{width:82.913726px;}
._29{width:85.365149px;}
._2a{width:86.440146px;}
._30{width:88.514075px;}
._2f{width:89.753908px;}
._1e{width:91.392157px;}
._14{width:97.704274px;}
._40{width:103.326254px;}
._3d{width:108.657937px;}
._3e{width:109.914566px;}
._42{width:127.831041px;}
._41{width:129.207978px;}
._44{width:153.696853px;}
._45{width:155.617889px;}
._3b{width:181.859888px;}
._3c{width:182.953520px;}
._33{width:188.688427px;}
._43{width:201.527416px;}
._3a{width:847.129023px;}
._1{width:897.117746px;}
._17{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs3{font-size:66.233700px;}
.fs4{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y2b{bottom:114.480010px;}
.y2f{bottom:133.200027px;}
.y2a{bottom:133.379997px;}
.y29{bottom:152.460022px;}
.y28{bottom:171.360008px;}
.y2e{bottom:190.080024px;}
.y27{bottom:190.259994px;}
.y26{bottom:209.340018px;}
.y25{bottom:228.240005px;}
.y24{bottom:247.320030px;}
.y23{bottom:266.220016px;}
.y22{bottom:281.700027px;}
.y2d{bottom:285.300041px;}
.y21{bottom:304.200027px;}
.y20{bottom:323.100013px;}
.y1f{bottom:342.180004px;}
.y1e{bottom:361.080024px;}
.y1d{bottom:380.160015px;}
.y1c{bottom:399.060000px;}
.y1b{bottom:417.960022px;}
.y1a{bottom:437.040012px;}
.y19{bottom:455.939998px;}
.y18{bottom:475.020023px;}
.y17{bottom:493.920009px;}
.y16{bottom:512.819996px;}
.y2c{bottom:528.300006px;}
.y15{bottom:531.900021px;}
.y14{bottom:550.800006px;}
.y13{bottom:569.879997px;}
.y12{bottom:588.780017px;}
.y11{bottom:607.680004px;}
.y10{bottom:626.760012px;}
.yf{bottom:645.660015px;}
.ye{bottom:664.740005px;}
.yd{bottom:683.640008px;}
.yc{bottom:702.540012px;}
.yb{bottom:721.620003px;}
.ya{bottom:740.520006px;}
.y9{bottom:759.600013px;}
.y8{bottom:778.500008px;}
.y7{bottom:797.580007px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.h9{height:45.988438px;}
.h6{height:46.441208px;}
.h5{height:46.732274px;}
.h2{height:46.945875px;}
.h8{height:48.219945px;}
.h7{height:70.988787px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.x16{left:85.140000px;}
.x8{left:86.939999px;}
.x4{left:106.739997px;}
.x15{left:112.140000px;}
.x7{left:117.000000px;}
.x9{left:128.519998px;}
.xf{left:134.640000px;}
.x10{left:194.400003px;}
.x17{left:209.879998px;}
.x14{left:240.300007px;}
.x2{left:251.639992px;}
.x5{left:297.180005px;}
.x3{left:314.639992px;}
.x19{left:325.620002px;}
.x13{left:391.860008px;}
.xc{left:396.360008px;}
.x18{left:415.800007px;}
.xd{left:428.939999px;}
.x12{left:450.180005px;}
.x11{left:456.480011px;}
.xa{left:461.160015px;}
.xe{left:516.060001px;}
.xb{left:534.779983px;}
.x1{left:565.560001px;}
.x1a{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:28.491779pt;}
.ls2{letter-spacing:753.281416pt;}
.ws0{word-spacing:-14.718600pt;}
.ws1{word-spacing:0.000000pt;}
._39{margin-left:-2.030713pt;}
._0{margin-left:-0.934395pt;}
._7{width:1.144825pt;}
._18{width:2.798570pt;}
._3{width:3.938145pt;}
._4{width:4.913017pt;}
._1b{width:6.564036pt;}
._15{width:7.713696pt;}
._1a{width:8.654537pt;}
._25{width:10.239098pt;}
._24{width:11.216257pt;}
._1c{width:12.981037pt;}
._20{width:15.612295pt;}
._1f{width:16.956511pt;}
._6{width:18.217941pt;}
._5{width:19.179946pt;}
._21{width:20.566484pt;}
._19{width:21.832513pt;}
._11{width:23.241589pt;}
._2e{width:24.355833pt;}
._12{width:25.550570pt;}
._13{width:26.611229pt;}
._28{width:27.768467pt;}
._22{width:28.804530pt;}
._23{width:29.704429pt;}
._34{width:30.609853pt;}
._31{width:31.517352pt;}
._10{width:32.900901pt;}
._f{width:34.000650pt;}
._16{width:35.558528pt;}
._b{width:36.489019pt;}
._c{width:37.543929pt;}
._36{width:38.537204pt;}
._9{width:39.740220pt;}
._8{width:40.745224pt;}
._2d{width:42.559516pt;}
._e{width:43.478907pt;}
._2{width:45.087037pt;}
._a{width:46.144764pt;}
._27{width:47.263724pt;}
._26{width:48.324384pt;}
._d{width:49.965501pt;}
._2b{width:54.661201pt;}
._38{width:57.146792pt;}
._37{width:58.040039pt;}
._1d{width:62.642362pt;}
._35{width:67.941058pt;}
._3f{width:70.171615pt;}
._2c{width:72.327884pt;}
._32{width:73.701090pt;}
._29{width:75.880132pt;}
._2a{width:76.835686pt;}
._30{width:78.679178pt;}
._2f{width:79.781251pt;}
._1e{width:81.237473pt;}
._14{width:86.848243pt;}
._40{width:91.845560pt;}
._3d{width:96.584833pt;}
._3e{width:97.701837pt;}
._42{width:113.627592pt;}
._41{width:114.851536pt;}
._44{width:136.619425pt;}
._45{width:138.327013pt;}
._3b{width:161.653234pt;}
._3c{width:162.625351pt;}
._33{width:167.723047pt;}
._43{width:179.135481pt;}
._3a{width:753.003576pt;}
._1{width:797.437996pt;}
._17{width:836.477976pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs3{font-size:58.874400pt;}
.fs4{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y2b{bottom:101.760009pt;}
.y2f{bottom:118.400024pt;}
.y2a{bottom:118.559997pt;}
.y29{bottom:135.520019pt;}
.y28{bottom:152.320007pt;}
.y2e{bottom:168.960021pt;}
.y27{bottom:169.119994pt;}
.y26{bottom:186.080016pt;}
.y25{bottom:202.880004pt;}
.y24{bottom:219.840026pt;}
.y23{bottom:236.640014pt;}
.y22{bottom:250.400024pt;}
.y2d{bottom:253.600036pt;}
.y21{bottom:270.400024pt;}
.y20{bottom:287.200011pt;}
.y1f{bottom:304.160003pt;}
.y1e{bottom:320.960021pt;}
.y1d{bottom:337.920013pt;}
.y1c{bottom:354.720000pt;}
.y1b{bottom:371.520019pt;}
.y1a{bottom:388.480010pt;}
.y19{bottom:405.279998pt;}
.y18{bottom:422.240020pt;}
.y17{bottom:439.040008pt;}
.y16{bottom:455.839996pt;}
.y2c{bottom:469.600005pt;}
.y15{bottom:472.800018pt;}
.y14{bottom:489.600005pt;}
.y13{bottom:506.559997pt;}
.y12{bottom:523.360015pt;}
.y11{bottom:540.160003pt;}
.y10{bottom:557.120010pt;}
.yf{bottom:573.920013pt;}
.ye{bottom:590.880004pt;}
.yd{bottom:607.680007pt;}
.yc{bottom:624.480010pt;}
.yb{bottom:641.440002pt;}
.ya{bottom:658.240005pt;}
.y9{bottom:675.200011pt;}
.y8{bottom:692.000007pt;}
.y7{bottom:708.960006pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.h9{height:40.878612pt;}
.h6{height:41.281073pt;}
.h5{height:41.539799pt;}
.h2{height:41.729666pt;}
.h8{height:42.862173pt;}
.h7{height:63.101144pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.x16{left:75.680000pt;}
.x8{left:77.279999pt;}
.x4{left:94.879997pt;}
.x15{left:99.680000pt;}
.x7{left:104.000000pt;}
.x9{left:114.239998pt;}
.xf{left:119.680000pt;}
.x10{left:172.800003pt;}
.x17{left:186.559998pt;}
.x14{left:213.600006pt;}
.x2{left:223.679993pt;}
.x5{left:264.160004pt;}
.x3{left:279.679993pt;}
.x19{left:289.440002pt;}
.x13{left:348.320007pt;}
.xc{left:352.320007pt;}
.x18{left:369.600006pt;}
.xd{left:381.279999pt;}
.x12{left:400.160004pt;}
.x11{left:405.760010pt;}
.xa{left:409.920013pt;}
.xe{left:458.720001pt;}
.xb{left:475.359985pt;}
.x1{left:502.720001pt;}
.x1a{left:507.839996pt;}
}




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