
    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_5575aea778ee7c93436792fb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_d947aa5edfd4e65fc43f3086.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_b0aed5348f10c5843ce65969.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_9cf16678bdf4cce35b1de4cd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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;}
.ls2{letter-spacing:0.014400px;}
.ls1{letter-spacing:33.984000px;}
.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:-18.000000px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-2.016000px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.220000px;}
.y70{bottom:113.040000px;}
.y4d{bottom:115.200000px;}
.y6f{bottom:133.920000px;}
.y4c{bottom:136.080000px;}
.y28{bottom:136.800000px;}
.y6e{bottom:154.440000px;}
.y27{bottom:157.680000px;}
.y4b{bottom:169.920000px;}
.y6d{bottom:175.320000px;}
.y26{bottom:178.200000px;}
.y8a{bottom:190.800000px;}
.y6c{bottom:195.840000px;}
.y25{bottom:198.720000px;}
.y4a{bottom:204.120000px;}
.y24{bottom:219.600000px;}
.y89{bottom:224.640000px;}
.y49{bottom:225.360000px;}
.y6b{bottom:232.920000px;}
.y23{bottom:240.120000px;}
.y48{bottom:245.880000px;}
.y88{bottom:258.840000px;}
.y47{bottom:266.760000px;}
.y6a{bottom:267.120000px;}
.y22{bottom:273.960000px;}
.y46{bottom:287.280000px;}
.y87{bottom:293.040000px;}
.y69{bottom:301.320000px;}
.y21{bottom:308.160000px;}
.y45{bottom:321.120000px;}
.y68{bottom:322.560000px;}
.y86{bottom:327.240000px;}
.y20{bottom:329.400000px;}
.y67{bottom:343.080000px;}
.y1f{bottom:349.920000px;}
.y44{bottom:355.320000px;}
.y85{bottom:361.440000px;}
.y1e{bottom:370.800000px;}
.y43{bottom:376.560000px;}
.y66{bottom:376.920000px;}
.y1d{bottom:391.320000px;}
.y84{bottom:395.640000px;}
.y42{bottom:397.080000px;}
.y65{bottom:411.120000px;}
.y1c{bottom:412.200000px;}
.y83{bottom:416.520000px;}
.y41{bottom:417.960000px;}
.y64{bottom:432.360000px;}
.y1b{bottom:432.720000px;}
.y40{bottom:438.480000px;}
.y82{bottom:450.360000px;}
.y63{bottom:452.880000px;}
.y1a{bottom:470.160000px;}
.y3f{bottom:475.560000px;}
.y81{bottom:484.560000px;}
.y62{bottom:486.720000px;}
.y19{bottom:491.040000px;}
.y3e{bottom:496.800000px;}
.y61{bottom:507.960000px;}
.y80{bottom:518.760000px;}
.y18{bottom:524.880000px;}
.y3d{bottom:530.640000px;}
.y60{bottom:541.800000px;}
.y7f{bottom:552.960000px;}
.y17{bottom:559.080000px;}
.y5f{bottom:562.680000px;}
.y3c{bottom:564.840000px;}
.y16{bottom:580.320000px;}
.y5e{bottom:583.560000px;}
.y3b{bottom:585.720000px;}
.y7e{bottom:587.160000px;}
.y15{bottom:600.840000px;}
.y3a{bottom:606.600000px;}
.y5d{bottom:617.400000px;}
.y7d{bottom:621.360000px;}
.y14{bottom:621.720000px;}
.y39{bottom:627.120000px;}
.y13{bottom:642.240000px;}
.y38{bottom:648.000000px;}
.y5c{bottom:651.600000px;}
.y7c{bottom:655.560000px;}
.y12{bottom:663.120000px;}
.y37{bottom:681.840000px;}
.y11{bottom:683.640000px;}
.y5b{bottom:689.040000px;}
.y7b{bottom:689.760000px;}
.y36{bottom:702.720000px;}
.y10{bottom:704.520000px;}
.y5a{bottom:709.920000px;}
.y35{bottom:723.600000px;}
.y7a{bottom:723.960000px;}
.yf{bottom:725.040000px;}
.y59{bottom:743.760000px;}
.y34{bottom:744.120000px;}
.ye{bottom:745.920000px;}
.y79{bottom:758.160000px;}
.y33{bottom:765.000000px;}
.yd{bottom:766.440000px;}
.y58{bottom:777.960000px;}
.yc{bottom:787.320000px;}
.y78{bottom:792.360000px;}
.y57{bottom:799.200000px;}
.y32{bottom:802.080000px;}
.y56{bottom:819.720000px;}
.yb{bottom:823.320000px;}
.y77{bottom:826.560000px;}
.y31{bottom:836.280000px;}
.y55{bottom:840.600000px;}
.ya{bottom:857.520000px;}
.y76{bottom:860.760000px;}
.y54{bottom:861.120000px;}
.y30{bottom:870.480000px;}
.y9{bottom:891.720000px;}
.y53{bottom:894.960000px;}
.y2f{bottom:904.680000px;}
.y8{bottom:925.920000px;}
.y52{bottom:929.160000px;}
.y75{bottom:932.760000px;}
.y2e{bottom:946.440000px;}
.y7{bottom:946.800000px;}
.y51{bottom:950.400000px;}
.y74{bottom:966.960000px;}
.y2d{bottom:967.320000px;}
.y50{bottom:970.920000px;}
.y6{bottom:985.320000px;}
.y2c{bottom:987.840000px;}
.y4f{bottom:991.800000px;}
.y73{bottom:1001.160000px;}
.y2b{bottom:1008.720000px;}
.y72{bottom:1022.040000px;}
.y5{bottom:1024.200000px;}
.y4e{bottom:1028.880000px;}
.y2a{bottom:1042.560000px;}
.y71{bottom:1042.920000px;}
.y4{bottom:1063.080000px;}
.y29{bottom:1063.440000px;}
.y2{bottom:1111.500000px;}
.y1{bottom:1116.720000px;}
.h2{height:22.500000px;}
.h1{height:48.550781px;}
.h3{height:48.796875px;}
.h4{height:50.027344px;}
.h0{height:1188.000000px;}
.w1{width:12.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.000000px;}
.x4{left:143.507808px;}
.x6{left:162.000000px;}
.x7{left:189.000000px;}
.x5{left:329.005404px;}
.x2{left:453.000000px;}
.x3{left:459.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012800pt;}
.ls1{letter-spacing:30.208000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.792000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.640000pt;}
.y70{bottom:100.480000pt;}
.y4d{bottom:102.400000pt;}
.y6f{bottom:119.040000pt;}
.y4c{bottom:120.960000pt;}
.y28{bottom:121.600000pt;}
.y6e{bottom:137.280000pt;}
.y27{bottom:140.160000pt;}
.y4b{bottom:151.040000pt;}
.y6d{bottom:155.840000pt;}
.y26{bottom:158.400000pt;}
.y8a{bottom:169.600000pt;}
.y6c{bottom:174.080000pt;}
.y25{bottom:176.640000pt;}
.y4a{bottom:181.440000pt;}
.y24{bottom:195.200000pt;}
.y89{bottom:199.680000pt;}
.y49{bottom:200.320000pt;}
.y6b{bottom:207.040000pt;}
.y23{bottom:213.440000pt;}
.y48{bottom:218.560000pt;}
.y88{bottom:230.080000pt;}
.y47{bottom:237.120000pt;}
.y6a{bottom:237.440000pt;}
.y22{bottom:243.520000pt;}
.y46{bottom:255.360000pt;}
.y87{bottom:260.480000pt;}
.y69{bottom:267.840000pt;}
.y21{bottom:273.920000pt;}
.y45{bottom:285.440000pt;}
.y68{bottom:286.720000pt;}
.y86{bottom:290.880000pt;}
.y20{bottom:292.800000pt;}
.y67{bottom:304.960000pt;}
.y1f{bottom:311.040000pt;}
.y44{bottom:315.840000pt;}
.y85{bottom:321.280000pt;}
.y1e{bottom:329.600000pt;}
.y43{bottom:334.720000pt;}
.y66{bottom:335.040000pt;}
.y1d{bottom:347.840000pt;}
.y84{bottom:351.680000pt;}
.y42{bottom:352.960000pt;}
.y65{bottom:365.440000pt;}
.y1c{bottom:366.400000pt;}
.y83{bottom:370.240000pt;}
.y41{bottom:371.520000pt;}
.y64{bottom:384.320000pt;}
.y1b{bottom:384.640000pt;}
.y40{bottom:389.760000pt;}
.y82{bottom:400.320000pt;}
.y63{bottom:402.560000pt;}
.y1a{bottom:417.920000pt;}
.y3f{bottom:422.720000pt;}
.y81{bottom:430.720000pt;}
.y62{bottom:432.640000pt;}
.y19{bottom:436.480000pt;}
.y3e{bottom:441.600000pt;}
.y61{bottom:451.520000pt;}
.y80{bottom:461.120000pt;}
.y18{bottom:466.560000pt;}
.y3d{bottom:471.680000pt;}
.y60{bottom:481.600000pt;}
.y7f{bottom:491.520000pt;}
.y17{bottom:496.960000pt;}
.y5f{bottom:500.160000pt;}
.y3c{bottom:502.080000pt;}
.y16{bottom:515.840000pt;}
.y5e{bottom:518.720000pt;}
.y3b{bottom:520.640000pt;}
.y7e{bottom:521.920000pt;}
.y15{bottom:534.080000pt;}
.y3a{bottom:539.200000pt;}
.y5d{bottom:548.800000pt;}
.y7d{bottom:552.320000pt;}
.y14{bottom:552.640000pt;}
.y39{bottom:557.440000pt;}
.y13{bottom:570.880000pt;}
.y38{bottom:576.000000pt;}
.y5c{bottom:579.200000pt;}
.y7c{bottom:582.720000pt;}
.y12{bottom:589.440000pt;}
.y37{bottom:606.080000pt;}
.y11{bottom:607.680000pt;}
.y5b{bottom:612.480000pt;}
.y7b{bottom:613.120000pt;}
.y36{bottom:624.640000pt;}
.y10{bottom:626.240000pt;}
.y5a{bottom:631.040000pt;}
.y35{bottom:643.200000pt;}
.y7a{bottom:643.520000pt;}
.yf{bottom:644.480000pt;}
.y59{bottom:661.120000pt;}
.y34{bottom:661.440000pt;}
.ye{bottom:663.040000pt;}
.y79{bottom:673.920000pt;}
.y33{bottom:680.000000pt;}
.yd{bottom:681.280000pt;}
.y58{bottom:691.520000pt;}
.yc{bottom:699.840000pt;}
.y78{bottom:704.320000pt;}
.y57{bottom:710.400000pt;}
.y32{bottom:712.960000pt;}
.y56{bottom:728.640000pt;}
.yb{bottom:731.840000pt;}
.y77{bottom:734.720000pt;}
.y31{bottom:743.360000pt;}
.y55{bottom:747.200000pt;}
.ya{bottom:762.240000pt;}
.y76{bottom:765.120000pt;}
.y54{bottom:765.440000pt;}
.y30{bottom:773.760000pt;}
.y9{bottom:792.640000pt;}
.y53{bottom:795.520000pt;}
.y2f{bottom:804.160000pt;}
.y8{bottom:823.040000pt;}
.y52{bottom:825.920000pt;}
.y75{bottom:829.120000pt;}
.y2e{bottom:841.280000pt;}
.y7{bottom:841.600000pt;}
.y51{bottom:844.800000pt;}
.y74{bottom:859.520000pt;}
.y2d{bottom:859.840000pt;}
.y50{bottom:863.040000pt;}
.y6{bottom:875.840000pt;}
.y2c{bottom:878.080000pt;}
.y4f{bottom:881.600000pt;}
.y73{bottom:889.920000pt;}
.y2b{bottom:896.640000pt;}
.y72{bottom:908.480000pt;}
.y5{bottom:910.400000pt;}
.y4e{bottom:914.560000pt;}
.y2a{bottom:926.720000pt;}
.y71{bottom:927.040000pt;}
.y4{bottom:944.960000pt;}
.y29{bottom:945.280000pt;}
.y2{bottom:988.000000pt;}
.y1{bottom:992.640000pt;}
.h2{height:20.000000pt;}
.h1{height:43.156250pt;}
.h3{height:43.375000pt;}
.h4{height:44.468750pt;}
.h0{height:1056.000000pt;}
.w1{width:10.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.000000pt;}
.x4{left:127.562496pt;}
.x6{left:144.000000pt;}
.x7{left:168.000000pt;}
.x5{left:292.449248pt;}
.x2{left:402.666667pt;}
.x3{left:408.000000pt;}
}




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