
    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_c4fb7823f77df779f035c629.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.654000;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_48901e1f63eeadf87697ef01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003000;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_a548cfceef1e42079ee737e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863000;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_be793cf023e3d857b7a75d95.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862000;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);}
.v2{vertical-align:-38.873400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.872800px;}
.ls9{letter-spacing:-0.337766px;}
.ls12{letter-spacing:-0.176874px;}
.lsc{letter-spacing:-0.117916px;}
.ls15{letter-spacing:-0.109493px;}
.lsf{letter-spacing:-0.101071px;}
.ls13{letter-spacing:-0.092648px;}
.lse{letter-spacing:-0.084226px;}
.ls17{letter-spacing:-0.075803px;}
.ls16{letter-spacing:-0.067380px;}
.ls10{letter-spacing:-0.058958px;}
.ls18{letter-spacing:-0.050535px;}
.ls14{letter-spacing:-0.042113px;}
.lsd{letter-spacing:-0.033690px;}
.ls11{letter-spacing:-0.025268px;}
.lsb{letter-spacing:-0.008423px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.008423px;}
.ls1{letter-spacing:0.016845px;}
.ls6{letter-spacing:0.021596px;}
.ls2{letter-spacing:0.025268px;}
.ls0{letter-spacing:0.035994px;}
.ls5{letter-spacing:0.043193px;}
.ls4{letter-spacing:0.057590px;}
.ls3{letter-spacing:0.079187px;}
.lsa{letter-spacing:0.229785px;}
.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:-19.060253px;}
.ws0{word-spacing:-12.201966px;}
.ws8{word-spacing:-0.496931px;}
.wsa{word-spacing:-0.489518px;}
.ws7{word-spacing:-0.437973px;}
.ws5{word-spacing:-0.379015px;}
.ws6{word-spacing:-0.353748px;}
.ws2a{word-spacing:-0.294790px;}
.ws30{word-spacing:-0.235832px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:0.115181px;}
.wsc{word-spacing:0.172771px;}
.ws9{word-spacing:0.208765px;}
.ws2{word-spacing:0.215964px;}
.ws31{word-spacing:0.454818px;}
.ws4{word-spacing:0.529829px;}
.ws1c{word-spacing:2.459388px;}
.ws11{word-spacing:2.526768px;}
.ws12{word-spacing:2.560458px;}
.ws25{word-spacing:3.150037px;}
.ws26{word-spacing:3.293221px;}
.ws1e{word-spacing:5.247255px;}
.ws1d{word-spacing:5.415706px;}
.ws1a{word-spacing:5.449396px;}
.ws1b{word-spacing:5.483087px;}
.ws1f{word-spacing:5.542044px;}
.ws28{word-spacing:6.738048px;}
.ws27{word-spacing:6.847541px;}
.ws29{word-spacing:7.563459px;}
.ws14{word-spacing:7.597149px;}
.ws15{word-spacing:7.723488px;}
.ws20{word-spacing:8.885801px;}
.ws21{word-spacing:8.936336px;}
.ws22{word-spacing:9.087942px;}
.ws2b{word-spacing:12.608572px;}
.ws2c{word-spacing:12.625417px;}
.ws2e{word-spacing:12.642263px;}
.ws2d{word-spacing:13.290800px;}
.ws13{word-spacing:13.316067px;}
.ws2f{word-spacing:13.450828px;}
.ws23{word-spacing:16.137625px;}
.ws24{word-spacing:16.162893px;}
.ws19{word-spacing:17.586305px;}
.ws18{word-spacing:17.662108px;}
.wsf{word-spacing:20.466821px;}
.ws10{word-spacing:20.567892px;}
.wse{word-spacing:24.122212px;}
.wsd{word-spacing:24.164325px;}
.ws16{word-spacing:34.153481px;}
.ws17{word-spacing:34.220861px;}
._0{margin-left:-1.151808px;}
._1{width:1.192115px;}
.fc1{color:rgb(114,148,75);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:53.991000px;}
.fs1{font-size:66.228600px;}
.fs0{font-size:71.988000px;}
.fs4{font-size:84.225600px;}
.fs3{font-size:95.743800px;}
.fs5{font-size:120.219600px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.765450px;}
.y3{bottom:4.679850px;}
.y2{bottom:4.859700px;}
.y2a{bottom:132.299693px;}
.y29{bottom:161.628412px;}
.y28{bottom:190.782399px;}
.y27{bottom:220.118300px;}
.y26{bottom:249.454200px;}
.y25{bottom:277.710734px;}
.y24{bottom:303.445866px;}
.y23{bottom:329.002019px;}
.y22{bottom:354.602390px;}
.y21{bottom:380.337522px;}
.y20{bottom:405.893675px;}
.y1f{bottom:431.628807px;}
.y1e{bottom:457.184960px;}
.y1d{bottom:482.920092px;}
.y1c{bottom:508.476245px;}
.y1b{bottom:534.032397px;}
.y1a{bottom:559.767529px;}
.y19{bottom:585.323682px;}
.y18{bottom:611.088293px;}
.y17{bottom:636.644446px;}
.y16{bottom:662.200598px;}
.y15{bottom:687.935730px;}
.y14{bottom:713.491883px;}
.y13{bottom:739.227015px;}
.y12{bottom:764.783168px;}
.y11{bottom:790.518300px;}
.y10{bottom:814.994151px;}
.yf{bottom:835.150826px;}
.ye{bottom:855.307500px;}
.yd{bottom:875.688810px;}
.yc{bottom:897.645150px;}
.yb{bottom:919.601490px;}
.ya{bottom:941.737800px;}
.y9{bottom:964.414050px;}
.y8{bottom:989.969850px;}
.y7{bottom:1016.605350px;}
.y6{bottom:1104.431077px;}
.y5{bottom:1133.795700px;}
.y1{bottom:1235.478000px;}
.h1{height:21.957000px;}
.h4{height:44.542575px;}
.h3{height:54.638595px;}
.h2{height:59.390100px;}
.h5{height:61.563263px;}
.h8{height:69.486120px;}
.h7{height:75.803244px;}
.h6{height:75.910626px;}
.h9{height:99.175832px;}
.h0{height:1263.000000px;}
.w3{width:159.273000px;}
.w2{width:614.521500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:33.474150px;}
.x1{left:118.996500px;}
.x6{left:127.634550px;}
.x2{left:250.916400px;}
.x3{left:733.527000px;}
.x5{left:765.381450px;}
@media print{
.v2{vertical-align:-34.554133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.553600pt;}
.ls9{letter-spacing:-0.300236pt;}
.ls12{letter-spacing:-0.157221pt;}
.lsc{letter-spacing:-0.104814pt;}
.ls15{letter-spacing:-0.097327pt;}
.lsf{letter-spacing:-0.089841pt;}
.ls13{letter-spacing:-0.082354pt;}
.lse{letter-spacing:-0.074867pt;}
.ls17{letter-spacing:-0.067380pt;}
.ls16{letter-spacing:-0.059894pt;}
.ls10{letter-spacing:-0.052407pt;}
.ls18{letter-spacing:-0.044920pt;}
.ls14{letter-spacing:-0.037434pt;}
.lsd{letter-spacing:-0.029947pt;}
.ls11{letter-spacing:-0.022460pt;}
.lsb{letter-spacing:-0.007487pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.007487pt;}
.ls1{letter-spacing:0.014973pt;}
.ls6{letter-spacing:0.019197pt;}
.ls2{letter-spacing:0.022460pt;}
.ls0{letter-spacing:0.031995pt;}
.ls5{letter-spacing:0.038394pt;}
.ls4{letter-spacing:0.051191pt;}
.ls3{letter-spacing:0.070388pt;}
.lsa{letter-spacing:0.204253pt;}
.ws1{word-spacing:-16.942447pt;}
.ws0{word-spacing:-10.846192pt;}
.ws8{word-spacing:-0.441716pt;}
.wsa{word-spacing:-0.435127pt;}
.ws7{word-spacing:-0.389309pt;}
.ws5{word-spacing:-0.336902pt;}
.ws6{word-spacing:-0.314442pt;}
.ws2a{word-spacing:-0.262035pt;}
.ws30{word-spacing:-0.209628pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:0.102383pt;}
.wsc{word-spacing:0.153574pt;}
.ws9{word-spacing:0.185569pt;}
.ws2{word-spacing:0.191968pt;}
.ws31{word-spacing:0.404283pt;}
.ws4{word-spacing:0.470959pt;}
.ws1c{word-spacing:2.186122pt;}
.ws11{word-spacing:2.246016pt;}
.ws12{word-spacing:2.275963pt;}
.ws25{word-spacing:2.800033pt;}
.ws26{word-spacing:2.927308pt;}
.ws1e{word-spacing:4.664227pt;}
.ws1d{word-spacing:4.813961pt;}
.ws1a{word-spacing:4.843908pt;}
.ws1b{word-spacing:4.873855pt;}
.ws1f{word-spacing:4.926262pt;}
.ws28{word-spacing:5.989376pt;}
.ws27{word-spacing:6.086703pt;}
.ws29{word-spacing:6.723075pt;}
.ws14{word-spacing:6.753021pt;}
.ws15{word-spacing:6.865322pt;}
.ws20{word-spacing:7.898490pt;}
.ws21{word-spacing:7.943410pt;}
.ws22{word-spacing:8.078171pt;}
.ws2b{word-spacing:11.207620pt;}
.ws2c{word-spacing:11.222593pt;}
.ws2e{word-spacing:11.237567pt;}
.ws2d{word-spacing:11.814044pt;}
.ws13{word-spacing:11.836504pt;}
.ws2f{word-spacing:11.956292pt;}
.ws23{word-spacing:14.344556pt;}
.ws24{word-spacing:14.367016pt;}
.ws19{word-spacing:15.632271pt;}
.ws18{word-spacing:15.699652pt;}
.wsf{word-spacing:18.192730pt;}
.ws10{word-spacing:18.282570pt;}
.wse{word-spacing:21.441966pt;}
.wsd{word-spacing:21.479400pt;}
.ws16{word-spacing:30.358650pt;}
.ws17{word-spacing:30.418543pt;}
._0{margin-left:-1.023829pt;}
._1{width:1.059658pt;}
.fs2{font-size:47.992000pt;}
.fs1{font-size:58.869867pt;}
.fs0{font-size:63.989333pt;}
.fs4{font-size:74.867200pt;}
.fs3{font-size:85.105600pt;}
.fs5{font-size:106.861867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.347067pt;}
.y3{bottom:4.159867pt;}
.y2{bottom:4.319733pt;}
.y2a{bottom:117.599727pt;}
.y29{bottom:143.669700pt;}
.y28{bottom:169.584355pt;}
.y27{bottom:195.660711pt;}
.y26{bottom:221.737067pt;}
.y25{bottom:246.853986pt;}
.y24{bottom:269.729659pt;}
.y23{bottom:292.446239pt;}
.y22{bottom:315.202125pt;}
.y21{bottom:338.077798pt;}
.y20{bottom:360.794378pt;}
.y1f{bottom:383.670051pt;}
.y1e{bottom:406.386631pt;}
.y1d{bottom:429.262304pt;}
.y1c{bottom:451.978884pt;}
.y1b{bottom:474.695464pt;}
.y1a{bottom:497.571137pt;}
.y19{bottom:520.287717pt;}
.y18{bottom:543.189594pt;}
.y17{bottom:565.906174pt;}
.y16{bottom:588.622754pt;}
.y15{bottom:611.498427pt;}
.y14{bottom:634.215007pt;}
.y13{bottom:657.090680pt;}
.y12{bottom:679.807260pt;}
.y11{bottom:702.682933pt;}
.y10{bottom:724.439245pt;}
.yf{bottom:742.356289pt;}
.ye{bottom:760.273333pt;}
.yd{bottom:778.390053pt;}
.yc{bottom:797.906800pt;}
.yb{bottom:817.423547pt;}
.ya{bottom:837.100267pt;}
.y9{bottom:857.256933pt;}
.y8{bottom:879.973200pt;}
.y7{bottom:903.649200pt;}
.y6{bottom:981.716512pt;}
.y5{bottom:1007.818400pt;}
.y1{bottom:1098.202667pt;}
.h1{height:19.517333pt;}
.h4{height:39.593400pt;}
.h3{height:48.567640pt;}
.h2{height:52.791200pt;}
.h5{height:54.722901pt;}
.h8{height:61.765440pt;}
.h7{height:67.380661pt;}
.h6{height:67.476112pt;}
.h9{height:88.156295pt;}
.h0{height:1122.666667pt;}
.w3{width:141.576000pt;}
.w2{width:546.241333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:29.754800pt;}
.x1{left:105.774667pt;}
.x6{left:113.452933pt;}
.x2{left:223.036800pt;}
.x3{left:652.024000pt;}
.x5{left:680.339067pt;}
}




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