
    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_d73171ed2e031f8b1b60033c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_388d3973b66991e65740bcfb.woff2')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_f57caa7712f97c86c223cfc6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_870fe32d9941ae768c0dee4a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cbc2688e4a497bfdbe0307c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21313b0c3da79e75ee8acaf7.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f82624b30902080a0dc1be23.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7a43ef4c19b7d1905192771f.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d0262be9926d579e988252b8.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls2{letter-spacing:-0.308736px;}
.ls3{letter-spacing:-0.154368px;}
.ls4{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:32.811840px;}
.ls0{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;}
}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.ws2{word-spacing:-0.047520px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-9.119520px;}
._3{margin-left:-7.621920px;}
._10{margin-left:-6.043968px;}
._2{margin-left:-4.438080px;}
._4{margin-left:-2.880000px;}
._0{margin-left:-1.640160px;}
._1{width:1.157760px;}
._5{width:2.917440px;}
._d{width:4.226400px;}
._6{width:6.084000px;}
._7{width:7.624800px;}
._c{width:8.690400px;}
._b{width:9.921600px;}
._a{width:11.275200px;}
._9{width:13.154400px;}
._8{width:14.278176px;}
._f{width:15.976224px;}
._16{width:16.982208px;}
._e{width:19.209600px;}
._12{width:21.348576px;}
._13{width:22.391424px;}
._17{width:33.328800px;}
._15{width:40.705488px;}
._14{width:42.220800px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.820000px;}
.y2{bottom:52.500000px;}
.y1{bottom:58.320000px;}
.y24{bottom:148.680000px;}
.y47{bottom:156.600000px;}
.y37{bottom:176.400000px;}
.y23{bottom:179.640000px;}
.y46{bottom:187.560000px;}
.y22{bottom:210.960000px;}
.y36{bottom:212.400000px;}
.y45{bottom:218.880000px;}
.y21{bottom:241.920000px;}
.y44{bottom:254.520000px;}
.y20{bottom:272.880000px;}
.y43{bottom:278.640000px;}
.y42{bottom:302.760000px;}
.y1f{bottom:308.880000px;}
.y1e{bottom:333.000000px;}
.y41{bottom:342.720000px;}
.y1d{bottom:356.760000px;}
.y40{bottom:379.080000px;}
.y1c{bottom:380.880000px;}
.y53{bottom:402.480000px;}
.y1b{bottom:416.880000px;}
.y1a{bottom:440.640000px;}
.y52{bottom:442.440000px;}
.y19{bottom:464.760000px;}
.y51{bottom:473.760000px;}
.y18{bottom:488.880000px;}
.y50{bottom:504.720000px;}
.y17{bottom:528.840000px;}
.y4f{bottom:535.680000px;}
.y4e{bottom:566.640000px;}
.y16{bottom:568.800000px;}
.y4d{bottom:597.960000px;}
.y15{bottom:604.800000px;}
.y35{bottom:606.960000px;}
.y14{bottom:628.920000px;}
.y34{bottom:637.920000px;}
.y13{bottom:652.680000px;}
.y4c{bottom:659.880000px;}
.y33{bottom:668.880000px;}
.y12{bottom:676.800000px;}
.y4b{bottom:690.840000px;}
.y11{bottom:700.560000px;}
.y32{bottom:708.840000px;}
.y10{bottom:724.680000px;}
.y4a{bottom:731.160000px;}
.y31{bottom:740.160000px;}
.yf{bottom:748.800000px;}
.y30{bottom:771.120000px;}
.ye{bottom:772.560000px;}
.yd{bottom:796.680000px;}
.y2f{bottom:802.080000px;}
.yc{bottom:820.440000px;}
.y2e{bottom:833.040000px;}
.yb{bottom:844.560000px;}
.y2d{bottom:864.360000px;}
.y3f{bottom:873.360000px;}
.ya{bottom:884.520000px;}
.y2c{bottom:895.320000px;}
.y3e{bottom:904.320000px;}
.y9{bottom:924.840000px;}
.y2b{bottom:926.280000px;}
.y3d{bottom:935.280000px;}
.y2a{bottom:957.240000px;}
.y8{bottom:964.800000px;}
.y49{bottom:966.240000px;}
.y3c{bottom:975.240000px;}
.y29{bottom:988.560000px;}
.y7{bottom:1004.760000px;}
.y3b{bottom:1006.560000px;}
.y28{bottom:1028.520000px;}
.y3a{bottom:1037.520000px;}
.y6{bottom:1044.720000px;}
.y27{bottom:1059.480000px;}
.y48{bottom:1068.480000px;}
.y39{bottom:1077.480000px;}
.y5{bottom:1089.360000px;}
.y26{bottom:1099.440000px;}
.y38{bottom:1108.440000px;}
.y4{bottom:1131.120000px;}
.y25{bottom:1139.760000px;}
.h3{height:24.000000px;}
.h2{height:47.988281px;}
.h5{height:48.796875px;}
.h6{height:49.992188px;}
.h7{height:50.027344px;}
.h4{height:65.387813px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:10.500000px;}
.w3{width:12.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:10.335240px;}
.x1{left:106.200072px;}
.x4{left:132.924672px;}
.x9{left:157.320000px;}
.x8{left:160.200072px;}
.x5{left:170.547732px;}
.xa{left:174.225204px;}
.x7{left:201.624372px;}
.x6{left:395.748360px;}
.x2{left:441.000000px;}
.xb{left:786.960360px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.274432pt;}
.ls3{letter-spacing:-0.137216pt;}
.ls4{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:29.166080pt;}
.ls0{letter-spacing:30.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.ws2{word-spacing:-0.042240pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-8.106240pt;}
._3{margin-left:-6.775040pt;}
._10{margin-left:-5.372416pt;}
._2{margin-left:-3.944960pt;}
._4{margin-left:-2.560000pt;}
._0{margin-left:-1.457920pt;}
._1{width:1.029120pt;}
._5{width:2.593280pt;}
._d{width:3.756800pt;}
._6{width:5.408000pt;}
._7{width:6.777600pt;}
._c{width:7.724800pt;}
._b{width:8.819200pt;}
._a{width:10.022400pt;}
._9{width:11.692800pt;}
._8{width:12.691712pt;}
._f{width:14.201088pt;}
._16{width:15.095296pt;}
._e{width:17.075200pt;}
._12{width:18.976512pt;}
._13{width:19.903488pt;}
._17{width:29.625600pt;}
._15{width:36.182656pt;}
._14{width:37.529600pt;}
.fs2{font-size:42.240000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:5.173333pt;}
.y2{bottom:46.666667pt;}
.y1{bottom:51.840000pt;}
.y24{bottom:132.160000pt;}
.y47{bottom:139.200000pt;}
.y37{bottom:156.800000pt;}
.y23{bottom:159.680000pt;}
.y46{bottom:166.720000pt;}
.y22{bottom:187.520000pt;}
.y36{bottom:188.800000pt;}
.y45{bottom:194.560000pt;}
.y21{bottom:215.040000pt;}
.y44{bottom:226.240000pt;}
.y20{bottom:242.560000pt;}
.y43{bottom:247.680000pt;}
.y42{bottom:269.120000pt;}
.y1f{bottom:274.560000pt;}
.y1e{bottom:296.000000pt;}
.y41{bottom:304.640000pt;}
.y1d{bottom:317.120000pt;}
.y40{bottom:336.960000pt;}
.y1c{bottom:338.560000pt;}
.y53{bottom:357.760000pt;}
.y1b{bottom:370.560000pt;}
.y1a{bottom:391.680000pt;}
.y52{bottom:393.280000pt;}
.y19{bottom:413.120000pt;}
.y51{bottom:421.120000pt;}
.y18{bottom:434.560000pt;}
.y50{bottom:448.640000pt;}
.y17{bottom:470.080000pt;}
.y4f{bottom:476.160000pt;}
.y4e{bottom:503.680000pt;}
.y16{bottom:505.600000pt;}
.y4d{bottom:531.520000pt;}
.y15{bottom:537.600000pt;}
.y35{bottom:539.520000pt;}
.y14{bottom:559.040000pt;}
.y34{bottom:567.040000pt;}
.y13{bottom:580.160000pt;}
.y4c{bottom:586.560000pt;}
.y33{bottom:594.560000pt;}
.y12{bottom:601.600000pt;}
.y4b{bottom:614.080000pt;}
.y11{bottom:622.720000pt;}
.y32{bottom:630.080000pt;}
.y10{bottom:644.160000pt;}
.y4a{bottom:649.920000pt;}
.y31{bottom:657.920000pt;}
.yf{bottom:665.600000pt;}
.y30{bottom:685.440000pt;}
.ye{bottom:686.720000pt;}
.yd{bottom:708.160000pt;}
.y2f{bottom:712.960000pt;}
.yc{bottom:729.280000pt;}
.y2e{bottom:740.480000pt;}
.yb{bottom:750.720000pt;}
.y2d{bottom:768.320000pt;}
.y3f{bottom:776.320000pt;}
.ya{bottom:786.240000pt;}
.y2c{bottom:795.840000pt;}
.y3e{bottom:803.840000pt;}
.y9{bottom:822.080000pt;}
.y2b{bottom:823.360000pt;}
.y3d{bottom:831.360000pt;}
.y2a{bottom:850.880000pt;}
.y8{bottom:857.600000pt;}
.y49{bottom:858.880000pt;}
.y3c{bottom:866.880000pt;}
.y29{bottom:878.720000pt;}
.y7{bottom:893.120000pt;}
.y3b{bottom:894.720000pt;}
.y28{bottom:914.240000pt;}
.y3a{bottom:922.240000pt;}
.y6{bottom:928.640000pt;}
.y27{bottom:941.760000pt;}
.y48{bottom:949.760000pt;}
.y39{bottom:957.760000pt;}
.y5{bottom:968.320000pt;}
.y26{bottom:977.280000pt;}
.y38{bottom:985.280000pt;}
.y4{bottom:1005.440000pt;}
.y25{bottom:1013.120000pt;}
.h3{height:21.333333pt;}
.h2{height:42.656250pt;}
.h5{height:43.375000pt;}
.h6{height:44.437500pt;}
.h7{height:44.468750pt;}
.h4{height:58.122500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w3{width:10.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:9.186880pt;}
.x1{left:94.400064pt;}
.x4{left:118.155264pt;}
.x9{left:139.840000pt;}
.x8{left:142.400064pt;}
.x5{left:151.597984pt;}
.xa{left:154.866848pt;}
.x7{left:179.221664pt;}
.x6{left:351.776320pt;}
.x2{left:392.000000pt;}
.xb{left:699.520320pt;}
}




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