
    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_71575d046269b232ba0de7da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_02fe16f636c378378b04954d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104492;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_38658c82c59a811a812d8678.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.114258;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_7def88c222e962fbe9ab8738.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_813343034ff7350582e4c146.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_4cd42468cedc17eab1d58c54.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.251280px;}
.lsa{letter-spacing:-0.861120px;}
.ls17{letter-spacing:-0.486000px;}
.ls9{letter-spacing:-0.397440px;}
.lse{letter-spacing:-0.298800px;}
.ls10{letter-spacing:-0.239040px;}
.ls8{letter-spacing:-0.132480px;}
.lsb{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.059760px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.059760px;}
.ls16{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.185256px;}
.lsc{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.397440px;}
.ls12{letter-spacing:0.448200px;}
.ls11{letter-spacing:0.543816px;}
.ls2{letter-spacing:0.657360px;}
.ls5{letter-spacing:1.207152px;}
.ls13{letter-spacing:848.194560px;}
.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.414720px;}
.ws2{word-spacing:-18.282240px;}
.ws1{word-spacing:-18.017280px;}
.ws4{word-spacing:-16.852320px;}
.ws3{word-spacing:-16.493760px;}
.ws6{word-spacing:-16.314480px;}
.ws5{word-spacing:-10.808640px;}
.wsd{word-spacing:-0.810000px;}
.wsf{word-spacing:-0.657360px;}
.wsc{word-spacing:-0.298800px;}
.ws11{word-spacing:-0.119520px;}
.wse{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws16{word-spacing:0.054000px;}
.wsb{word-spacing:0.059760px;}
.ws10{word-spacing:0.119520px;}
.ws7{word-spacing:0.132480px;}
.ws15{word-spacing:0.216000px;}
.ws12{word-spacing:0.239040px;}
.ws9{word-spacing:0.463680px;}
.ws17{word-spacing:0.486000px;}
.ws13{word-spacing:0.776880px;}
.wsa{word-spacing:0.861120px;}
._0{margin-left:-1.391040px;}
._1{width:1.126080px;}
._2{width:2.269440px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:79.020000px;}
.y3c{bottom:96.077340px;}
.y3b{bottom:113.362920px;}
.y3a{bottom:130.648500px;}
.y39{bottom:147.934080px;}
.y38{bottom:165.040380px;}
.y37{bottom:182.325960px;}
.y36{bottom:199.611540px;}
.y35{bottom:216.897120px;}
.y34{bottom:234.182700px;}
.y33{bottom:251.468280px;}
.y32{bottom:268.574580px;}
.y50{bottom:279.000000px;}
.y31{bottom:285.860160px;}
.y4f{bottom:295.728840px;}
.y30{bottom:303.145740px;}
.y4e{bottom:313.014420px;}
.y2f{bottom:320.431320px;}
.y4d{bottom:330.300000px;}
.y2e{bottom:337.716900px;}
.y2d{bottom:355.002480px;}
.y4c{bottom:359.275500px;}
.y2c{bottom:372.108780px;}
.y4b{bottom:374.760000px;}
.y2b{bottom:389.394360px;}
.y4a{bottom:390.244500px;}
.y2a{bottom:406.679940px;}
.y49{bottom:417.784500px;}
.y29{bottom:423.965520px;}
.y28{bottom:441.251100px;}
.y48{bottom:442.260000px;}
.y27{bottom:458.357400px;}
.y26{bottom:475.642980px;}
.y25{bottom:492.928560px;}
.y24{bottom:510.214140px;}
.y23{bottom:527.499720px;}
.y22{bottom:544.785300px;}
.y21{bottom:561.891600px;}
.y20{bottom:579.177180px;}
.y1f{bottom:596.462760px;}
.y1e{bottom:613.748340px;}
.y1d{bottom:631.033920px;}
.y1c{bottom:648.319500px;}
.y1b{bottom:665.425800px;}
.y1a{bottom:682.711380px;}
.y19{bottom:699.996960px;}
.y47{bottom:704.880000px;}
.y18{bottom:717.282540px;}
.y46{bottom:733.315500px;}
.y17{bottom:734.568120px;}
.y45{bottom:748.800000px;}
.y16{bottom:751.853700px;}
.y44{bottom:764.460000px;}
.y15{bottom:768.954420px;}
.y14{bottom:786.211380px;}
.y43{bottom:794.340000px;}
.y13{bottom:803.496960px;}
.y42{bottom:819.720000px;}
.y12{bottom:820.782540px;}
.y11{bottom:838.068120px;}
.y10{bottom:855.174420px;}
.yf{bottom:872.397180px;}
.ye{bottom:889.682760px;}
.yd{bottom:906.968340px;}
.yc{bottom:924.253920px;}
.yb{bottom:941.539500px;}
.ya{bottom:958.645800px;}
.y9{bottom:975.931380px;}
.y8{bottom:993.216960px;}
.y7{bottom:1010.502540px;}
.y6{bottom:1027.788120px;}
.y5{bottom:1045.073700px;}
.y4{bottom:1062.180000px;}
.y41{bottom:1068.282540px;}
.y3{bottom:1079.100000px;}
.y40{bottom:1085.568120px;}
.y2{bottom:1095.120000px;}
.y3f{bottom:1102.674420px;}
.y1{bottom:1118.520000px;}
.y3e{bottom:1119.960000px;}
.h9{height:37.910742px;}
.h3{height:48.410156px;}
.ha{height:48.752930px;}
.hb{height:51.353086px;}
.h4{height:53.573906px;}
.h8{height:53.596226px;}
.h7{height:53.688386px;}
.h6{height:53.825186px;}
.h5{height:53.953242px;}
.h2{height:54.011602px;}
.h1{height:59.803594px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x2{left:67.500000px;}
.x3{left:735.660000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.223360pt;}
.lsa{letter-spacing:-0.765440pt;}
.ls17{letter-spacing:-0.432000pt;}
.ls9{letter-spacing:-0.353280pt;}
.lse{letter-spacing:-0.265600pt;}
.ls10{letter-spacing:-0.212480pt;}
.ls8{letter-spacing:-0.117760pt;}
.lsb{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.053120pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.053120pt;}
.ls16{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.164672pt;}
.lsc{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.353280pt;}
.ls12{letter-spacing:0.398400pt;}
.ls11{letter-spacing:0.483392pt;}
.ls2{letter-spacing:0.584320pt;}
.ls5{letter-spacing:1.073024pt;}
.ls13{letter-spacing:753.950720pt;}
.ws0{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.250880pt;}
.ws1{word-spacing:-16.015360pt;}
.ws4{word-spacing:-14.979840pt;}
.ws3{word-spacing:-14.661120pt;}
.ws6{word-spacing:-14.501760pt;}
.ws5{word-spacing:-9.607680pt;}
.wsd{word-spacing:-0.720000pt;}
.wsf{word-spacing:-0.584320pt;}
.wsc{word-spacing:-0.265600pt;}
.ws11{word-spacing:-0.106240pt;}
.wse{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws16{word-spacing:0.048000pt;}
.wsb{word-spacing:0.053120pt;}
.ws10{word-spacing:0.106240pt;}
.ws7{word-spacing:0.117760pt;}
.ws15{word-spacing:0.192000pt;}
.ws12{word-spacing:0.212480pt;}
.ws9{word-spacing:0.412160pt;}
.ws17{word-spacing:0.432000pt;}
.ws13{word-spacing:0.690560pt;}
.wsa{word-spacing:0.765440pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.000960pt;}
._2{width:2.017280pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:70.240000pt;}
.y3c{bottom:85.402080pt;}
.y3b{bottom:100.767040pt;}
.y3a{bottom:116.132000pt;}
.y39{bottom:131.496960pt;}
.y38{bottom:146.702560pt;}
.y37{bottom:162.067520pt;}
.y36{bottom:177.432480pt;}
.y35{bottom:192.797440pt;}
.y34{bottom:208.162400pt;}
.y33{bottom:223.527360pt;}
.y32{bottom:238.732960pt;}
.y50{bottom:248.000000pt;}
.y31{bottom:254.097920pt;}
.y4f{bottom:262.870080pt;}
.y30{bottom:269.462880pt;}
.y4e{bottom:278.235040pt;}
.y2f{bottom:284.827840pt;}
.y4d{bottom:293.600000pt;}
.y2e{bottom:300.192800pt;}
.y2d{bottom:315.557760pt;}
.y4c{bottom:319.356000pt;}
.y2c{bottom:330.763360pt;}
.y4b{bottom:333.120000pt;}
.y2b{bottom:346.128320pt;}
.y4a{bottom:346.884000pt;}
.y2a{bottom:361.493280pt;}
.y49{bottom:371.364000pt;}
.y29{bottom:376.858240pt;}
.y28{bottom:392.223200pt;}
.y48{bottom:393.120000pt;}
.y27{bottom:407.428800pt;}
.y26{bottom:422.793760pt;}
.y25{bottom:438.158720pt;}
.y24{bottom:453.523680pt;}
.y23{bottom:468.888640pt;}
.y22{bottom:484.253600pt;}
.y21{bottom:499.459200pt;}
.y20{bottom:514.824160pt;}
.y1f{bottom:530.189120pt;}
.y1e{bottom:545.554080pt;}
.y1d{bottom:560.919040pt;}
.y1c{bottom:576.284000pt;}
.y1b{bottom:591.489600pt;}
.y1a{bottom:606.854560pt;}
.y19{bottom:622.219520pt;}
.y47{bottom:626.560000pt;}
.y18{bottom:637.584480pt;}
.y46{bottom:651.836000pt;}
.y17{bottom:652.949440pt;}
.y45{bottom:665.600000pt;}
.y16{bottom:668.314400pt;}
.y44{bottom:679.520000pt;}
.y15{bottom:683.515040pt;}
.y14{bottom:698.854560pt;}
.y43{bottom:706.080000pt;}
.y13{bottom:714.219520pt;}
.y42{bottom:728.640000pt;}
.y12{bottom:729.584480pt;}
.y11{bottom:744.949440pt;}
.y10{bottom:760.155040pt;}
.yf{bottom:775.464160pt;}
.ye{bottom:790.829120pt;}
.yd{bottom:806.194080pt;}
.yc{bottom:821.559040pt;}
.yb{bottom:836.924000pt;}
.ya{bottom:852.129600pt;}
.y9{bottom:867.494560pt;}
.y8{bottom:882.859520pt;}
.y7{bottom:898.224480pt;}
.y6{bottom:913.589440pt;}
.y5{bottom:928.954400pt;}
.y4{bottom:944.160000pt;}
.y41{bottom:949.584480pt;}
.y3{bottom:959.200000pt;}
.y40{bottom:964.949440pt;}
.y2{bottom:973.440000pt;}
.y3f{bottom:980.155040pt;}
.y1{bottom:994.240000pt;}
.y3e{bottom:995.520000pt;}
.h9{height:33.698437pt;}
.h3{height:43.031250pt;}
.ha{height:43.335938pt;}
.hb{height:45.647188pt;}
.h4{height:47.621250pt;}
.h8{height:47.641090pt;}
.h7{height:47.723010pt;}
.h6{height:47.844610pt;}
.h5{height:47.958438pt;}
.h2{height:48.010313pt;}
.h1{height:53.158750pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x2{left:60.000000pt;}
.x3{left:653.920000pt;}
}




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