
    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_33f843407d87604a88b57acb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_3761dff70dea70c4579d7193.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_14f1d00f21ca587c766b38b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_a38f7224b33b1790e1a67fa8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.920000;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_c315bdd0c4b28e111fe49779.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.127000;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_a656ed2a42cbbedb44ab9996.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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;}
.ls6{letter-spacing:-0.291000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.291000px;}
.ls3{letter-spacing:0.480000px;}
.ls0{letter-spacing:9.720000px;}
.ls5{letter-spacing:60.855600px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-13.386000px;}
.ws0{word-spacing:-11.040000px;}
.ws7{word-spacing:-1.746000px;}
.ws2{word-spacing:-1.440000px;}
.ws6{word-spacing:-0.960000px;}
.ws4{word-spacing:-0.291000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:0.291000px;}
.ws8{word-spacing:2.735400px;}
.ws9{word-spacing:10.126800px;}
._d{margin-left:-71.586000px;}
._2{margin-left:-4.320000px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.620000px;}
._3{width:1.435200px;}
._4{width:2.772360px;}
._7{width:4.083600px;}
._5{width:5.203080px;}
._6{width:6.241080px;}
._8{width:7.257540px;}
._9{width:8.274000px;}
._b{width:10.006200px;}
._e{width:11.438340px;}
._c{width:16.641000px;}
._a{width:21.646200px;}
.fc1{color:rgb(35,37,110);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.200000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:63.661350px;}
.ye{bottom:63.779550px;}
.y33{bottom:65.834700px;}
.yc{bottom:78.661350px;}
.y32{bottom:86.834700px;}
.yb{bottom:93.661350px;}
.y69{bottom:107.834550px;}
.y31{bottom:107.834700px;}
.ya{bottom:108.661350px;}
.y9{bottom:125.161350px;}
.y68{bottom:128.834550px;}
.y30{bottom:128.834700px;}
.y67{bottom:149.834550px;}
.y2f{bottom:149.834700px;}
.y8{bottom:153.661350px;}
.y7{bottom:168.661350px;}
.y40{bottom:170.834700px;}
.y6{bottom:183.661350px;}
.y66{bottom:191.834550px;}
.y2e{bottom:191.834700px;}
.y65{bottom:212.834550px;}
.y2d{bottom:212.834700px;}
.y64{bottom:233.834550px;}
.y2c{bottom:233.834700px;}
.y63{bottom:254.834550px;}
.y3f{bottom:254.834700px;}
.y62{bottom:275.834550px;}
.y2b{bottom:275.834700px;}
.y61{bottom:296.834550px;}
.y2a{bottom:296.834700px;}
.y60{bottom:317.834550px;}
.y29{bottom:317.834700px;}
.y5f{bottom:338.834550px;}
.y28{bottom:338.834700px;}
.y5e{bottom:359.834550px;}
.y27{bottom:359.834700px;}
.y26{bottom:380.834700px;}
.y5d{bottom:401.834550px;}
.y3e{bottom:401.834700px;}
.y5c{bottom:422.834550px;}
.y25{bottom:422.834700px;}
.y5b{bottom:443.834550px;}
.y3d{bottom:443.834700px;}
.y5a{bottom:464.834550px;}
.y3c{bottom:464.834700px;}
.y59{bottom:485.834550px;}
.y24{bottom:485.834700px;}
.y58{bottom:506.834550px;}
.y23{bottom:506.834700px;}
.y57{bottom:527.834550px;}
.y3b{bottom:527.834700px;}
.y56{bottom:548.834550px;}
.y22{bottom:548.834700px;}
.y21{bottom:569.834700px;}
.y55{bottom:590.834550px;}
.y20{bottom:590.834700px;}
.y54{bottom:611.834550px;}
.y1f{bottom:611.834700px;}
.y53{bottom:632.834550px;}
.y1e{bottom:632.834700px;}
.y52{bottom:653.834550px;}
.y3a{bottom:653.834700px;}
.y51{bottom:674.834550px;}
.y1d{bottom:674.834700px;}
.y50{bottom:695.834550px;}
.y1c{bottom:695.834700px;}
.y39{bottom:716.834700px;}
.y4f{bottom:737.834550px;}
.y1b{bottom:737.834700px;}
.y4e{bottom:758.834550px;}
.y1a{bottom:758.834700px;}
.y4d{bottom:779.834550px;}
.y19{bottom:779.834700px;}
.y4c{bottom:800.834550px;}
.y18{bottom:800.834700px;}
.y17{bottom:821.834700px;}
.y4b{bottom:842.834550px;}
.y16{bottom:842.834700px;}
.y15{bottom:863.834700px;}
.y14{bottom:884.834700px;}
.y5{bottom:889.063050px;}
.y4a{bottom:905.834550px;}
.y13{bottom:905.834700px;}
.y49{bottom:926.834550px;}
.y38{bottom:926.834700px;}
.y48{bottom:947.834550px;}
.y12{bottom:947.834700px;}
.y4{bottom:968.834700px;}
.y47{bottom:989.834550px;}
.y37{bottom:989.834700px;}
.y3{bottom:1001.834700px;}
.y46{bottom:1010.834550px;}
.y36{bottom:1010.834700px;}
.y45{bottom:1031.834550px;}
.y2{bottom:1031.834700px;}
.y11{bottom:1034.834700px;}
.y44{bottom:1052.834550px;}
.y6a{bottom:1052.834700px;}
.y10{bottom:1064.834700px;}
.y1{bottom:1067.387550px;}
.y43{bottom:1073.834550px;}
.y35{bottom:1073.834700px;}
.y42{bottom:1094.834550px;}
.yf{bottom:1094.834700px;}
.y41{bottom:1115.834550px;}
.y34{bottom:1115.834700px;}
.h4{height:34.080000px;}
.h5{height:35.040000px;}
.h2{height:38.340000px;}
.h9{height:42.486000px;}
.h6{height:43.440000px;}
.h7{height:52.560000px;}
.h8{height:52.671000px;}
.h3{height:78.840000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x3{left:112.345200px;}
.x4{left:127.559100px;}
.x5{left:412.936950px;}
.x2{left:791.850450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.258667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.258667pt;}
.ls3{letter-spacing:0.426667pt;}
.ls0{letter-spacing:8.640000pt;}
.ls5{letter-spacing:54.093867pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-11.898667pt;}
.ws0{word-spacing:-9.813333pt;}
.ws7{word-spacing:-1.552000pt;}
.ws2{word-spacing:-1.280000pt;}
.ws6{word-spacing:-0.853333pt;}
.ws4{word-spacing:-0.258667pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.258667pt;}
.ws8{word-spacing:2.431467pt;}
.ws9{word-spacing:9.001600pt;}
._d{margin-left:-63.632000pt;}
._2{margin-left:-3.840000pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-1.440000pt;}
._3{width:1.275733pt;}
._4{width:2.464320pt;}
._7{width:3.629867pt;}
._5{width:4.624960pt;}
._6{width:5.547627pt;}
._8{width:6.451147pt;}
._9{width:7.354667pt;}
._b{width:8.894400pt;}
._e{width:10.167413pt;}
._c{width:14.792000pt;}
._a{width:19.241067pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:51.733333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:56.587867pt;}
.ye{bottom:56.692933pt;}
.y33{bottom:58.519733pt;}
.yc{bottom:69.921200pt;}
.y32{bottom:77.186400pt;}
.yb{bottom:83.254533pt;}
.y69{bottom:95.852933pt;}
.y31{bottom:95.853067pt;}
.ya{bottom:96.587867pt;}
.y9{bottom:111.254533pt;}
.y68{bottom:114.519600pt;}
.y30{bottom:114.519733pt;}
.y67{bottom:133.186267pt;}
.y2f{bottom:133.186400pt;}
.y8{bottom:136.587867pt;}
.y7{bottom:149.921200pt;}
.y40{bottom:151.853067pt;}
.y6{bottom:163.254533pt;}
.y66{bottom:170.519600pt;}
.y2e{bottom:170.519733pt;}
.y65{bottom:189.186267pt;}
.y2d{bottom:189.186400pt;}
.y64{bottom:207.852933pt;}
.y2c{bottom:207.853067pt;}
.y63{bottom:226.519600pt;}
.y3f{bottom:226.519733pt;}
.y62{bottom:245.186267pt;}
.y2b{bottom:245.186400pt;}
.y61{bottom:263.852933pt;}
.y2a{bottom:263.853067pt;}
.y60{bottom:282.519600pt;}
.y29{bottom:282.519733pt;}
.y5f{bottom:301.186267pt;}
.y28{bottom:301.186400pt;}
.y5e{bottom:319.852933pt;}
.y27{bottom:319.853067pt;}
.y26{bottom:338.519733pt;}
.y5d{bottom:357.186267pt;}
.y3e{bottom:357.186400pt;}
.y5c{bottom:375.852933pt;}
.y25{bottom:375.853067pt;}
.y5b{bottom:394.519600pt;}
.y3d{bottom:394.519733pt;}
.y5a{bottom:413.186267pt;}
.y3c{bottom:413.186400pt;}
.y59{bottom:431.852933pt;}
.y24{bottom:431.853067pt;}
.y58{bottom:450.519600pt;}
.y23{bottom:450.519733pt;}
.y57{bottom:469.186267pt;}
.y3b{bottom:469.186400pt;}
.y56{bottom:487.852933pt;}
.y22{bottom:487.853067pt;}
.y21{bottom:506.519733pt;}
.y55{bottom:525.186267pt;}
.y20{bottom:525.186400pt;}
.y54{bottom:543.852933pt;}
.y1f{bottom:543.853067pt;}
.y53{bottom:562.519600pt;}
.y1e{bottom:562.519733pt;}
.y52{bottom:581.186267pt;}
.y3a{bottom:581.186400pt;}
.y51{bottom:599.852933pt;}
.y1d{bottom:599.853067pt;}
.y50{bottom:618.519600pt;}
.y1c{bottom:618.519733pt;}
.y39{bottom:637.186400pt;}
.y4f{bottom:655.852933pt;}
.y1b{bottom:655.853067pt;}
.y4e{bottom:674.519600pt;}
.y1a{bottom:674.519733pt;}
.y4d{bottom:693.186267pt;}
.y19{bottom:693.186400pt;}
.y4c{bottom:711.852933pt;}
.y18{bottom:711.853067pt;}
.y17{bottom:730.519733pt;}
.y4b{bottom:749.186267pt;}
.y16{bottom:749.186400pt;}
.y15{bottom:767.853067pt;}
.y14{bottom:786.519733pt;}
.y5{bottom:790.278267pt;}
.y4a{bottom:805.186267pt;}
.y13{bottom:805.186400pt;}
.y49{bottom:823.852933pt;}
.y38{bottom:823.853067pt;}
.y48{bottom:842.519600pt;}
.y12{bottom:842.519733pt;}
.y4{bottom:861.186400pt;}
.y47{bottom:879.852933pt;}
.y37{bottom:879.853067pt;}
.y3{bottom:890.519733pt;}
.y46{bottom:898.519600pt;}
.y36{bottom:898.519733pt;}
.y45{bottom:917.186267pt;}
.y2{bottom:917.186400pt;}
.y11{bottom:919.853067pt;}
.y44{bottom:935.852933pt;}
.y6a{bottom:935.853067pt;}
.y10{bottom:946.519733pt;}
.y1{bottom:948.788933pt;}
.y43{bottom:954.519600pt;}
.y35{bottom:954.519733pt;}
.y42{bottom:973.186267pt;}
.yf{bottom:973.186400pt;}
.y41{bottom:991.852933pt;}
.y34{bottom:991.853067pt;}
.h4{height:30.293333pt;}
.h5{height:31.146667pt;}
.h2{height:34.080000pt;}
.h9{height:37.765333pt;}
.h6{height:38.613333pt;}
.h7{height:46.720000pt;}
.h8{height:46.818667pt;}
.h3{height:70.080000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x3{left:99.862400pt;}
.x4{left:113.385867pt;}
.x5{left:367.055067pt;}
.x2{left:703.867067pt;}
}




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