
    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_5ef4dd63f409a9d8f16cfe84.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.799805;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_5256a6993b6d869188a0c86f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_8c0fd4fa7370e9eb1e7c9256.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.799805;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_d74ab6dfd86c27c6305aa4a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862305;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_bfb9b811790b92ce869e58f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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;}
.ls7{letter-spacing:-0.768000px;}
.ls3{letter-spacing:-0.472200px;}
.ls4{letter-spacing:-0.366000px;}
.ls2{letter-spacing:-0.132600px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.060600px;}
.ls6{letter-spacing:0.391680px;}
.ls1{letter-spacing:20.280000px;}
.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:-66.240000px;}
.ws4{word-spacing:-15.030840px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.604240px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-3.789120px;}
._1{margin-left:-2.702400px;}
._0{margin-left:-1.391040px;}
._2{width:1.125120px;}
._5{width:2.914560px;}
._8{width:3.954720px;}
._7{width:4.968000px;}
._6{width:6.292800px;}
._e{width:7.418880px;}
._b{width:8.715360px;}
._a{width:10.068480px;}
._c{width:11.828160px;}
._d{width:13.335360px;}
._3{width:18.679440px;}
._9{width:20.247120px;}
._f{width:21.881520px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y77{bottom:111.996000px;}
.y5f{bottom:118.836000px;}
.y76{bottom:135.396000px;}
.y48{bottom:142.056000px;}
.y5e{bottom:142.236000px;}
.y23{bottom:143.316000px;}
.y75{bottom:158.610000px;}
.y47{bottom:165.450000px;}
.y22{bottom:166.710000px;}
.y74{bottom:181.650000px;}
.y46{bottom:188.490000px;}
.y21{bottom:189.930000px;}
.y73{bottom:204.870000px;}
.y45{bottom:211.710000px;}
.y20{bottom:227.910000px;}
.y72{bottom:228.090000px;}
.y44{bottom:234.930000px;}
.y1f{bottom:251.130000px;}
.y43{bottom:258.015000px;}
.y1e{bottom:274.395000px;}
.y71{bottom:289.155000px;}
.y42{bottom:295.995000px;}
.y1d{bottom:297.615000px;}
.y70{bottom:312.555000px;}
.y41{bottom:319.395000px;}
.y1c{bottom:320.655000px;}
.y6f{bottom:335.775000px;}
.y40{bottom:342.615000px;}
.y1b{bottom:358.815000px;}
.y6e{bottom:358.995000px;}
.y3f{bottom:365.655000px;}
.y5d{bottom:380.595000px;}
.y1a{bottom:382.035000px;}
.y3e{bottom:388.875000px;}
.y6d{bottom:396.975000px;}
.y5c{bottom:403.995000px;}
.y19{bottom:405.255000px;}
.y6c{bottom:420.195000px;}
.y3d{bottom:426.855000px;}
.y5b{bottom:427.035000px;}
.y18{bottom:428.475000px;}
.y6b{bottom:443.415000px;}
.y3c{bottom:450.255000px;}
.y17{bottom:466.455000px;}
.y6a{bottom:466.635000px;}
.y3b{bottom:473.475000px;}
.y16{bottom:489.675000px;}
.y3a{bottom:496.515000px;}
.y15{bottom:512.895000px;}
.y39{bottom:534.525000px;}
.y14{bottom:536.145000px;}
.y38{bottom:557.925000px;}
.y13{bottom:574.125000px;}
.y37{bottom:581.145000px;}
.y12{bottom:597.345000px;}
.y5a{bottom:604.185000px;}
.y36{bottom:619.125000px;}
.y11{bottom:620.565000px;}
.y59{bottom:627.405000px;}
.y35{bottom:642.345000px;}
.y10{bottom:643.785000px;}
.y58{bottom:650.625000px;}
.y34{bottom:665.565000px;}
.y69{bottom:666.825000px;}
.y57{bottom:673.665000px;}
.yf{bottom:681.765000px;}
.y33{bottom:688.785000px;}
.y68{bottom:690.045000px;}
.y56{bottom:696.885000px;}
.ye{bottom:704.985000px;}
.y32{bottom:711.825000px;}
.y67{bottom:713.265000px;}
.y55{bottom:720.105000px;}
.yd{bottom:728.205000px;}
.y31{bottom:735.045000px;}
.y54{bottom:743.145000px;}
.y66{bottom:751.245000px;}
.yc{bottom:751.425000px;}
.y30{bottom:758.265000px;}
.y53{bottom:766.365000px;}
.yb{bottom:774.465000px;}
.y2f{bottom:781.305000px;}
.y52{bottom:789.630000px;}
.ya{bottom:797.730000px;}
.y2e{bottom:804.570000px;}
.y65{bottom:820.950000px;}
.y51{bottom:827.610000px;}
.y2d{bottom:827.790000px;}
.y9{bottom:835.710000px;}
.y64{bottom:843.990000px;}
.y50{bottom:850.830000px;}
.y8{bottom:859.110000px;}
.y2c{bottom:865.770000px;}
.y63{bottom:867.210000px;}
.y4f{bottom:874.050000px;}
.y7{bottom:882.150000px;}
.y2b{bottom:888.990000px;}
.y4e{bottom:897.270000px;}
.y62{bottom:905.190000px;}
.y6{bottom:905.370000px;}
.y4d{bottom:920.490000px;}
.y2a{bottom:926.970000px;}
.y61{bottom:928.590000px;}
.y5{bottom:943.350000px;}
.y4c{bottom:943.530000px;}
.y29{bottom:950.370000px;}
.y60{bottom:966.570000px;}
.y4{bottom:966.750000px;}
.y28{bottom:973.590000px;}
.y4b{bottom:981.510000px;}
.y3{bottom:989.970000px;}
.y27{bottom:996.810000px;}
.y4a{bottom:1004.910000px;}
.y26{bottom:1019.850000px;}
.y2{bottom:1027.950000px;}
.y49{bottom:1042.890000px;}
.y25{bottom:1043.070000px;}
.y1{bottom:1066.140000px;}
.y24{bottom:1066.320000px;}
.h2{height:45.410625px;}
.h1{height:45.895781px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.682667pt;}
.ls3{letter-spacing:-0.419733pt;}
.ls4{letter-spacing:-0.325333pt;}
.ls2{letter-spacing:-0.117867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053867pt;}
.ls6{letter-spacing:0.348160pt;}
.ls1{letter-spacing:18.026667pt;}
.ws0{word-spacing:-58.880000pt;}
.ws4{word-spacing:-13.360747pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.981547pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-3.368107pt;}
._1{margin-left:-2.402133pt;}
._0{margin-left:-1.236480pt;}
._2{width:1.000107pt;}
._5{width:2.590720pt;}
._8{width:3.515307pt;}
._7{width:4.416000pt;}
._6{width:5.593600pt;}
._e{width:6.594560pt;}
._b{width:7.746987pt;}
._a{width:8.949760pt;}
._c{width:10.513920pt;}
._d{width:11.853653pt;}
._3{width:16.603947pt;}
._9{width:17.997440pt;}
._f{width:19.450240pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:99.552000pt;}
.y5f{bottom:105.632000pt;}
.y76{bottom:120.352000pt;}
.y48{bottom:126.272000pt;}
.y5e{bottom:126.432000pt;}
.y23{bottom:127.392000pt;}
.y75{bottom:140.986667pt;}
.y47{bottom:147.066667pt;}
.y22{bottom:148.186667pt;}
.y74{bottom:161.466667pt;}
.y46{bottom:167.546667pt;}
.y21{bottom:168.826667pt;}
.y73{bottom:182.106667pt;}
.y45{bottom:188.186667pt;}
.y20{bottom:202.586667pt;}
.y72{bottom:202.746667pt;}
.y44{bottom:208.826667pt;}
.y1f{bottom:223.226667pt;}
.y43{bottom:229.346667pt;}
.y1e{bottom:243.906667pt;}
.y71{bottom:257.026667pt;}
.y42{bottom:263.106667pt;}
.y1d{bottom:264.546667pt;}
.y70{bottom:277.826667pt;}
.y41{bottom:283.906667pt;}
.y1c{bottom:285.026667pt;}
.y6f{bottom:298.466667pt;}
.y40{bottom:304.546667pt;}
.y1b{bottom:318.946667pt;}
.y6e{bottom:319.106667pt;}
.y3f{bottom:325.026667pt;}
.y5d{bottom:338.306667pt;}
.y1a{bottom:339.586667pt;}
.y3e{bottom:345.666667pt;}
.y6d{bottom:352.866667pt;}
.y5c{bottom:359.106667pt;}
.y19{bottom:360.226667pt;}
.y6c{bottom:373.506667pt;}
.y3d{bottom:379.426667pt;}
.y5b{bottom:379.586667pt;}
.y18{bottom:380.866667pt;}
.y6b{bottom:394.146667pt;}
.y3c{bottom:400.226667pt;}
.y17{bottom:414.626667pt;}
.y6a{bottom:414.786667pt;}
.y3b{bottom:420.866667pt;}
.y16{bottom:435.266667pt;}
.y3a{bottom:441.346667pt;}
.y15{bottom:455.906667pt;}
.y39{bottom:475.133333pt;}
.y14{bottom:476.573333pt;}
.y38{bottom:495.933333pt;}
.y13{bottom:510.333333pt;}
.y37{bottom:516.573333pt;}
.y12{bottom:530.973333pt;}
.y5a{bottom:537.053333pt;}
.y36{bottom:550.333333pt;}
.y11{bottom:551.613333pt;}
.y59{bottom:557.693333pt;}
.y35{bottom:570.973333pt;}
.y10{bottom:572.253333pt;}
.y58{bottom:578.333333pt;}
.y34{bottom:591.613333pt;}
.y69{bottom:592.733333pt;}
.y57{bottom:598.813333pt;}
.yf{bottom:606.013333pt;}
.y33{bottom:612.253333pt;}
.y68{bottom:613.373333pt;}
.y56{bottom:619.453333pt;}
.ye{bottom:626.653333pt;}
.y32{bottom:632.733333pt;}
.y67{bottom:634.013333pt;}
.y55{bottom:640.093333pt;}
.yd{bottom:647.293333pt;}
.y31{bottom:653.373333pt;}
.y54{bottom:660.573333pt;}
.y66{bottom:667.773333pt;}
.yc{bottom:667.933333pt;}
.y30{bottom:674.013333pt;}
.y53{bottom:681.213333pt;}
.yb{bottom:688.413333pt;}
.y2f{bottom:694.493333pt;}
.y52{bottom:701.893333pt;}
.ya{bottom:709.093333pt;}
.y2e{bottom:715.173333pt;}
.y65{bottom:729.733333pt;}
.y51{bottom:735.653333pt;}
.y2d{bottom:735.813333pt;}
.y9{bottom:742.853333pt;}
.y64{bottom:750.213333pt;}
.y50{bottom:756.293333pt;}
.y8{bottom:763.653333pt;}
.y2c{bottom:769.573333pt;}
.y63{bottom:770.853333pt;}
.y4f{bottom:776.933333pt;}
.y7{bottom:784.133333pt;}
.y2b{bottom:790.213333pt;}
.y4e{bottom:797.573333pt;}
.y62{bottom:804.613333pt;}
.y6{bottom:804.773333pt;}
.y4d{bottom:818.213333pt;}
.y2a{bottom:823.973333pt;}
.y61{bottom:825.413333pt;}
.y5{bottom:838.533333pt;}
.y4c{bottom:838.693333pt;}
.y29{bottom:844.773333pt;}
.y60{bottom:859.173333pt;}
.y4{bottom:859.333333pt;}
.y28{bottom:865.413333pt;}
.y4b{bottom:872.453333pt;}
.y3{bottom:879.973333pt;}
.y27{bottom:886.053333pt;}
.y4a{bottom:893.253333pt;}
.y26{bottom:906.533333pt;}
.y2{bottom:913.733333pt;}
.y49{bottom:927.013333pt;}
.y25{bottom:927.173333pt;}
.y1{bottom:947.680000pt;}
.y24{bottom:947.840000pt;}
.h2{height:40.365000pt;}
.h1{height:40.796250pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
}




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