
    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_f23f361936859cd172598d6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.730957;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_7ae3cceed507fbe7da8a757f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_f04d7cc2a9e1f8fd16cfeeb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_a0cf8dd43edce6adf5cc5990.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_872a7de75c36de5dc44e6208.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905762;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_d12e697abba8a93f5ea1acee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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;}
.v1{vertical-align:17.982000px;}
.ls3{letter-spacing:-5.460000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004608px;}
.ls1{letter-spacing:0.018000px;}
.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:-15.012000px;}
.ws0{word-spacing:-13.344000px;}
.ws2{word-spacing:-8.751996px;}
.ws5{word-spacing:-1.554000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:5.460000px;}
._2{margin-left:-5.602800px;}
._3{margin-left:-4.460400px;}
._4{margin-left:-3.103800px;}
._6{margin-left:-2.052000px;}
._c{margin-left:-1.026000px;}
._5{width:1.545600px;}
._1{width:2.872800px;}
._8{width:4.332600px;}
._0{width:5.468400px;}
._b{width:6.852600px;}
._9{width:8.537400px;}
._f{width:9.979200px;}
._a{width:11.518200px;}
._e{width:13.640400px;}
._d{width:16.810200px;}
._12{width:18.526200px;}
._11{width:26.670000px;}
._10{width:38.346000px;}
._7{width:70.038000px;}
.fc3{color:rgb(37,74,165);}
.fc1{color:rgb(145,143,143);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.480200px;}
.y2{bottom:46.780950px;}
.y49{bottom:197.878950px;}
.y48{bottom:211.378950px;}
.y47{bottom:224.878950px;}
.y46{bottom:238.378950px;}
.y45{bottom:251.878950px;}
.y44{bottom:265.378950px;}
.y43{bottom:278.878950px;}
.y42{bottom:292.378950px;}
.y54{bottom:339.695250px;}
.y5c{bottom:352.615650px;}
.y53{bottom:353.195250px;}
.y5b{bottom:366.115650px;}
.y52{bottom:366.695250px;}
.y5a{bottom:379.615650px;}
.y51{bottom:380.195250px;}
.y59{bottom:393.115650px;}
.y50{bottom:393.695250px;}
.y58{bottom:406.615650px;}
.y4f{bottom:407.195250px;}
.y57{bottom:420.115650px;}
.y4e{bottom:420.695250px;}
.y56{bottom:433.615650px;}
.y4d{bottom:434.195250px;}
.y55{bottom:447.115650px;}
.y4c{bottom:447.695250px;}
.y4b{bottom:461.195250px;}
.y22{bottom:507.683400px;}
.y41{bottom:525.494550px;}
.y21{bottom:525.683400px;}
.y40{bottom:543.494550px;}
.y20{bottom:543.683400px;}
.y3f{bottom:561.494550px;}
.y1f{bottom:561.683400px;}
.y3e{bottom:579.494550px;}
.y1e{bottom:579.683400px;}
.y3d{bottom:597.494550px;}
.y1d{bottom:597.683400px;}
.y3c{bottom:615.494550px;}
.y1c{bottom:615.683400px;}
.y3b{bottom:633.494550px;}
.y1b{bottom:633.683400px;}
.y3a{bottom:651.494550px;}
.y1a{bottom:651.683400px;}
.y39{bottom:669.494550px;}
.y19{bottom:669.683400px;}
.y38{bottom:687.494550px;}
.y18{bottom:687.683400px;}
.y37{bottom:705.494550px;}
.y17{bottom:705.683400px;}
.y36{bottom:723.494550px;}
.y16{bottom:723.683400px;}
.y35{bottom:741.494550px;}
.y15{bottom:741.683400px;}
.y34{bottom:759.494550px;}
.y14{bottom:759.683400px;}
.y33{bottom:777.494550px;}
.y13{bottom:777.683400px;}
.y32{bottom:795.494550px;}
.y12{bottom:795.683400px;}
.y31{bottom:813.494550px;}
.y11{bottom:813.683400px;}
.y30{bottom:831.494550px;}
.y10{bottom:831.683400px;}
.y2f{bottom:849.494550px;}
.yf{bottom:849.683400px;}
.y2e{bottom:867.494550px;}
.ye{bottom:867.683400px;}
.y2d{bottom:885.494550px;}
.yd{bottom:885.683400px;}
.y2c{bottom:903.494550px;}
.yc{bottom:903.683400px;}
.y2b{bottom:921.494550px;}
.yb{bottom:921.683400px;}
.y2a{bottom:939.494550px;}
.y29{bottom:957.494550px;}
.ya{bottom:957.683400px;}
.y9{bottom:972.683400px;}
.y28{bottom:975.494550px;}
.y8{bottom:987.683400px;}
.y27{bottom:993.494550px;}
.y26{bottom:1011.494550px;}
.y7{bottom:1023.683400px;}
.y25{bottom:1029.494550px;}
.y6{bottom:1041.683400px;}
.y24{bottom:1047.494550px;}
.y23{bottom:1065.494550px;}
.y5{bottom:1077.683400px;}
.y3{bottom:1086.537300px;}
.y4{bottom:1095.683400px;}
.y4a{bottom:1137.906900px;}
.ha{height:26.244141px;}
.h4{height:30.577148px;}
.h3{height:30.618164px;}
.h2{height:34.500000px;}
.h6{height:34.992188px;}
.h5{height:39.313477px;}
.h7{height:39.366211px;}
.h9{height:40.609687px;}
.h8{height:40.932501px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:850.500000px;}
.w0{width:850.692000px;}
.x0{left:0.000000px;}
.x3{left:8.598150px;}
.x4{left:85.039350px;}
.x8{left:86.267700px;}
.x5{left:106.339350px;}
.x2{left:237.140400px;}
.x9{left:312.945900px;}
.x1{left:435.177450px;}
.x6{left:455.605500px;}
.x7{left:476.905500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls3{letter-spacing:-4.853333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004096pt;}
.ls1{letter-spacing:0.016000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws2{word-spacing:-7.779552pt;}
.ws5{word-spacing:-1.381333pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:4.853333pt;}
._2{margin-left:-4.980267pt;}
._3{margin-left:-3.964800pt;}
._4{margin-left:-2.758933pt;}
._6{margin-left:-1.824000pt;}
._c{margin-left:-0.912000pt;}
._5{width:1.373867pt;}
._1{width:2.553600pt;}
._8{width:3.851200pt;}
._0{width:4.860800pt;}
._b{width:6.091200pt;}
._9{width:7.588800pt;}
._f{width:8.870400pt;}
._a{width:10.238400pt;}
._e{width:12.124800pt;}
._d{width:14.942400pt;}
._12{width:16.467733pt;}
._11{width:23.706667pt;}
._10{width:34.085333pt;}
._7{width:62.256000pt;}
.fs3{font-size:27.984000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.315733pt;}
.y2{bottom:41.583067pt;}
.y49{bottom:175.892400pt;}
.y48{bottom:187.892400pt;}
.y47{bottom:199.892400pt;}
.y46{bottom:211.892400pt;}
.y45{bottom:223.892400pt;}
.y44{bottom:235.892400pt;}
.y43{bottom:247.892400pt;}
.y42{bottom:259.892400pt;}
.y54{bottom:301.951333pt;}
.y5c{bottom:313.436133pt;}
.y53{bottom:313.951333pt;}
.y5b{bottom:325.436133pt;}
.y52{bottom:325.951333pt;}
.y5a{bottom:337.436133pt;}
.y51{bottom:337.951333pt;}
.y59{bottom:349.436133pt;}
.y50{bottom:349.951333pt;}
.y58{bottom:361.436133pt;}
.y4f{bottom:361.951333pt;}
.y57{bottom:373.436133pt;}
.y4e{bottom:373.951333pt;}
.y56{bottom:385.436133pt;}
.y4d{bottom:385.951333pt;}
.y55{bottom:397.436133pt;}
.y4c{bottom:397.951333pt;}
.y4b{bottom:409.951333pt;}
.y22{bottom:451.274133pt;}
.y41{bottom:467.106267pt;}
.y21{bottom:467.274133pt;}
.y40{bottom:483.106267pt;}
.y20{bottom:483.274133pt;}
.y3f{bottom:499.106267pt;}
.y1f{bottom:499.274133pt;}
.y3e{bottom:515.106267pt;}
.y1e{bottom:515.274133pt;}
.y3d{bottom:531.106267pt;}
.y1d{bottom:531.274133pt;}
.y3c{bottom:547.106267pt;}
.y1c{bottom:547.274133pt;}
.y3b{bottom:563.106267pt;}
.y1b{bottom:563.274133pt;}
.y3a{bottom:579.106267pt;}
.y1a{bottom:579.274133pt;}
.y39{bottom:595.106267pt;}
.y19{bottom:595.274133pt;}
.y38{bottom:611.106267pt;}
.y18{bottom:611.274133pt;}
.y37{bottom:627.106267pt;}
.y17{bottom:627.274133pt;}
.y36{bottom:643.106267pt;}
.y16{bottom:643.274133pt;}
.y35{bottom:659.106267pt;}
.y15{bottom:659.274133pt;}
.y34{bottom:675.106267pt;}
.y14{bottom:675.274133pt;}
.y33{bottom:691.106267pt;}
.y13{bottom:691.274133pt;}
.y32{bottom:707.106267pt;}
.y12{bottom:707.274133pt;}
.y31{bottom:723.106267pt;}
.y11{bottom:723.274133pt;}
.y30{bottom:739.106267pt;}
.y10{bottom:739.274133pt;}
.y2f{bottom:755.106267pt;}
.yf{bottom:755.274133pt;}
.y2e{bottom:771.106267pt;}
.ye{bottom:771.274133pt;}
.y2d{bottom:787.106267pt;}
.yd{bottom:787.274133pt;}
.y2c{bottom:803.106267pt;}
.yc{bottom:803.274133pt;}
.y2b{bottom:819.106267pt;}
.yb{bottom:819.274133pt;}
.y2a{bottom:835.106267pt;}
.y29{bottom:851.106267pt;}
.ya{bottom:851.274133pt;}
.y9{bottom:864.607467pt;}
.y28{bottom:867.106267pt;}
.y8{bottom:877.940800pt;}
.y27{bottom:883.106267pt;}
.y26{bottom:899.106267pt;}
.y7{bottom:909.940800pt;}
.y25{bottom:915.106267pt;}
.y6{bottom:925.940800pt;}
.y24{bottom:931.106267pt;}
.y23{bottom:947.106267pt;}
.y5{bottom:957.940800pt;}
.y3{bottom:965.810933pt;}
.y4{bottom:973.940800pt;}
.y4a{bottom:1011.472800pt;}
.ha{height:23.328125pt;}
.h4{height:27.179688pt;}
.h3{height:27.216146pt;}
.h2{height:30.666667pt;}
.h6{height:31.104167pt;}
.h5{height:34.945312pt;}
.h7{height:34.992188pt;}
.h9{height:36.097500pt;}
.h8{height:36.384445pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:756.000000pt;}
.w0{width:756.170667pt;}
.x0{left:0.000000pt;}
.x3{left:7.642800pt;}
.x4{left:75.590533pt;}
.x8{left:76.682400pt;}
.x5{left:94.523867pt;}
.x2{left:210.791467pt;}
.x9{left:278.174133pt;}
.x1{left:386.824400pt;}
.x6{left:404.982667pt;}
.x7{left:423.916000pt;}
}




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