
    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_4c00affc53e6a6001fda96d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.968000;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_94f390b39e9ae3abff34607d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_2f8023156163244880cc19bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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;}
.ls0{letter-spacing:0.000000px;}
.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:-20.013696px;}
.ws1{word-spacing:-15.010272px;}
.ws0{word-spacing:-0.048020px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-8.617494px;}
._4{margin-left:-7.597505px;}
._2{margin-left:-4.994605px;}
._1{margin-left:-3.341472px;}
._3{margin-left:-1.301413px;}
._0{width:2.929231px;}
.fc2{color:rgb(142,142,142);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.020172px;}
.fs1{font-size:54.026428px;}
.fs4{font-size:72.035237px;}
.fs5{font-size:81.039641px;}
.fs3{font-size:90.044046px;}
.fs2{font-size:108.052855px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.502194px;}
.y28{bottom:11.255472px;}
.y50{bottom:12.380974px;}
.y1{bottom:26.360536px;}
.y27{bottom:36.017584px;}
.y4f{bottom:38.268637px;}
.y26{bottom:61.905247px;}
.y4e{bottom:63.030749px;}
.y75{bottom:63.073856px;}
.y2{bottom:63.073928px;}
.y29{bottom:63.074014px;}
.y51{bottom:63.074212px;}
.y4d{bottom:88.918412px;}
.y25{bottom:104.676169px;}
.y4c{bottom:113.680525px;}
.y74{bottom:129.438073px;}
.y24{bottom:130.563832px;}
.y4b{bottom:138.442638px;}
.y23{bottom:155.325945px;}
.y73{bottom:173.334545px;}
.y4a{bottom:178.962458px;}
.y22{bottom:180.088057px;}
.y72{bottom:187.966703px;}
.y21{bottom:223.984530px;}
.y49{bottom:227.361133px;}
.y20{bottom:248.746642px;}
.y71{bottom:250.997535px;}
.y48{bottom:252.123246px;}
.y1f{bottom:273.508755px;}
.y47{bottom:278.010909px;}
.y70{bottom:294.894007px;}
.y1e{bottom:299.396418px;}
.y46{bottom:302.773021px;}
.y1d{bottom:324.158531px;}
.y45{bottom:328.660685px;}
.y6f{bottom:337.664929px;}
.y1c{bottom:350.046194px;}
.y44{bottom:353.422797px;}
.y6e{bottom:362.427042px;}
.y1b{bottom:374.808307px;}
.y6d{bottom:388.314705px;}
.y43{bottom:396.193719px;}
.y6c{bottom:413.076817px;}
.y1a{bottom:417.579228px;}
.y42{bottom:422.081382px;}
.y6b{bottom:438.964481px;}
.y19{bottom:443.466892px;}
.y41{bottom:446.843495px;}
.y6a{bottom:463.726593px;}
.y18{bottom:468.229004px;}
.y40{bottom:472.731158px;}
.y69{bottom:488.488706px;}
.y17{bottom:494.116667px;}
.y3f{bottom:497.493271px;}
.y68{bottom:514.376369px;}
.y3e{bottom:522.255383px;}
.y16{bottom:534.636488px;}
.y67{bottom:539.138482px;}
.y3d{bottom:562.775204px;}
.y66{bottom:565.026145px;}
.y15{bottom:581.909612px;}
.y65{bottom:589.788257px;}
.y14{bottom:607.797275px;}
.y3c{bottom:611.173878px;}
.y64{bottom:614.550370px;}
.y13{bottom:632.559388px;}
.y3b{bottom:635.935991px;}
.y63{bottom:640.438033px;}
.y12{bottom:657.321500px;}
.y3a{bottom:661.823654px;}
.y62{bottom:665.200146px;}
.y11{bottom:683.209164px;}
.y39{bottom:686.585767px;}
.y61{bottom:691.087809px;}
.y10{bottom:707.971276px;}
.y38{bottom:712.473430px;}
.y60{bottom:715.849921px;}
.yf{bottom:733.858939px;}
.y5f{bottom:740.612034px;}
.y37{bottom:755.244352px;}
.ye{bottom:776.629861px;}
.y5e{bottom:778.880754px;}
.y36{bottom:780.006464px;}
.yd{bottom:801.391974px;}
.y35{bottom:805.894128px;}
.y5d{bottom:823.902777px;}
.yc{bottom:827.279637px;}
.y34{bottom:830.656240px;}
.y5c{bottom:848.664889px;}
.y33{bottom:855.418353px;}
.yb{bottom:867.799458px;}
.y5b{bottom:873.427002px;}
.y7f{bottom:873.427072px;}
.ya{bottom:894.812671px;}
.y5a{bottom:899.314665px;}
.y7e{bottom:899.314735px;}
.y32{bottom:899.314825px;}
.y9{bottom:921.825885px;}
.y59{bottom:924.076778px;}
.y31{bottom:924.076938px;}
.y7d{bottom:942.085657px;}
.y8{bottom:948.839099px;}
.y58{bottom:949.964441px;}
.y30{bottom:949.964601px;}
.y7c{bottom:967.973320px;}
.y2f{bottom:974.726714px;}
.y57{bottom:992.735362px;}
.y7b{bottom:992.735433px;}
.y3{bottom:993.861122px;}
.y2e{bottom:999.488826px;}
.y56{bottom:1017.497475px;}
.y7a{bottom:1017.497545px;}
.y55{bottom:1043.385138px;}
.y79{bottom:1043.385208px;}
.y2d{bottom:1043.385298px;}
.y5{bottom:1058.017505px;}
.y54{bottom:1068.147251px;}
.y78{bottom:1068.147321px;}
.y2c{bottom:1068.147411px;}
.y6{bottom:1080.571620px;}
.y4{bottom:1090.658471px;}
.y53{bottom:1094.034914px;}
.y77{bottom:1094.034984px;}
.y2b{bottom:1094.035074px;}
.y52{bottom:1118.797027px;}
.y76{bottom:1118.797097px;}
.y2a{bottom:1118.797187px;}
.h6{height:18.008799px;}
.h2{height:37.599795px;}
.h4{height:39.359097px;}
.hb{height:52.443622px;}
.h8{height:52.478795px;}
.h9{height:58.999075px;}
.h7{height:65.554528px;}
.h5{height:78.665433px;}
.ha{height:1136.805937px;}
.h3{height:1136.806045px;}
.hc{height:1136.806117px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:714.724602px;}
.w2{width:766.499908px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:22.124099px;}
.x4{left:25.500755px;}
.x2{left:62.999997px;}
.x7{left:70.522778px;}
.x5{left:88.887665px;}
.x8{left:132.428060px;}
.x3{left:665.745583px;}
.x1{left:816.671190px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-17.789952pt;}
.ws1{word-spacing:-13.342464pt;}
.ws0{word-spacing:-0.042685pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-7.659994pt;}
._4{margin-left:-6.753338pt;}
._2{margin-left:-4.439649pt;}
._1{margin-left:-2.970197pt;}
._3{margin-left:-1.156812pt;}
._0{width:2.603760pt;}
.fs0{font-size:42.684598pt;}
.fs1{font-size:48.023491pt;}
.fs4{font-size:64.031321pt;}
.fs5{font-size:72.035237pt;}
.fs3{font-size:80.039152pt;}
.fs2{font-size:96.046982pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.001951pt;}
.y28{bottom:10.004864pt;}
.y50{bottom:11.005310pt;}
.y1{bottom:23.431587pt;}
.y27{bottom:32.015630pt;}
.y4f{bottom:34.016566pt;}
.y26{bottom:55.026887pt;}
.y4e{bottom:56.027333pt;}
.y75{bottom:56.065650pt;}
.y2{bottom:56.065714pt;}
.y29{bottom:56.065791pt;}
.y51{bottom:56.065967pt;}
.y4d{bottom:79.038589pt;}
.y25{bottom:93.045484pt;}
.y4c{bottom:101.049356pt;}
.y74{bottom:115.056065pt;}
.y24{bottom:116.056740pt;}
.y4b{bottom:123.060122pt;}
.y23{bottom:138.067507pt;}
.y73{bottom:154.075151pt;}
.y4a{bottom:159.077741pt;}
.y22{bottom:160.078273pt;}
.y72{bottom:167.081514pt;}
.y21{bottom:199.097360pt;}
.y49{bottom:202.098785pt;}
.y20{bottom:221.108127pt;}
.y71{bottom:223.108920pt;}
.y48{bottom:224.109552pt;}
.y1f{bottom:243.118893pt;}
.y47{bottom:247.120808pt;}
.y70{bottom:262.128006pt;}
.y1e{bottom:266.130150pt;}
.y46{bottom:269.131575pt;}
.y1d{bottom:288.140916pt;}
.y45{bottom:292.142831pt;}
.y6f{bottom:300.146603pt;}
.y1c{bottom:311.152172pt;}
.y44{bottom:314.153597pt;}
.y6e{bottom:322.157370pt;}
.y1b{bottom:333.162939pt;}
.y6d{bottom:345.168626pt;}
.y43{bottom:352.172195pt;}
.y6c{bottom:367.179393pt;}
.y1a{bottom:371.181536pt;}
.y42{bottom:375.183451pt;}
.y6b{bottom:390.190649pt;}
.y19{bottom:394.192793pt;}
.y41{bottom:397.194218pt;}
.y6a{bottom:412.201416pt;}
.y18{bottom:416.203559pt;}
.y40{bottom:420.205474pt;}
.y69{bottom:434.212183pt;}
.y17{bottom:439.214815pt;}
.y3f{bottom:442.216240pt;}
.y68{bottom:457.223439pt;}
.y3e{bottom:464.227007pt;}
.y16{bottom:475.232434pt;}
.y67{bottom:479.234206pt;}
.y3d{bottom:500.244626pt;}
.y66{bottom:502.245462pt;}
.y15{bottom:517.252989pt;}
.y65{bottom:524.256229pt;}
.y14{bottom:540.264245pt;}
.y3c{bottom:543.265670pt;}
.y64{bottom:546.266995pt;}
.y13{bottom:562.275011pt;}
.y3b{bottom:565.276436pt;}
.y63{bottom:569.278252pt;}
.y12{bottom:584.285778pt;}
.y3a{bottom:588.287693pt;}
.y62{bottom:591.289018pt;}
.y11{bottom:607.297034pt;}
.y39{bottom:610.298459pt;}
.y61{bottom:614.300275pt;}
.y10{bottom:629.307801pt;}
.y38{bottom:633.309716pt;}
.y60{bottom:636.311041pt;}
.yf{bottom:652.319057pt;}
.y5f{bottom:658.321808pt;}
.y37{bottom:671.328313pt;}
.ye{bottom:690.337654pt;}
.y5e{bottom:692.338448pt;}
.y36{bottom:693.339079pt;}
.yd{bottom:712.348421pt;}
.y35{bottom:716.350336pt;}
.y5d{bottom:732.358024pt;}
.yc{bottom:735.359677pt;}
.y34{bottom:738.361102pt;}
.y5c{bottom:754.368790pt;}
.y33{bottom:760.371869pt;}
.yb{bottom:771.377296pt;}
.y5b{bottom:776.379557pt;}
.y7f{bottom:776.379619pt;}
.ya{bottom:795.389041pt;}
.y5a{bottom:799.390813pt;}
.y7e{bottom:799.390876pt;}
.y32{bottom:799.390956pt;}
.y9{bottom:819.400787pt;}
.y59{bottom:821.401580pt;}
.y31{bottom:821.401722pt;}
.y7d{bottom:837.409473pt;}
.y8{bottom:843.412532pt;}
.y58{bottom:844.412836pt;}
.y30{bottom:844.412979pt;}
.y7c{bottom:860.420729pt;}
.y2f{bottom:866.423745pt;}
.y57{bottom:882.431433pt;}
.y7b{bottom:882.431496pt;}
.y3{bottom:883.432108pt;}
.y2e{bottom:888.434512pt;}
.y56{bottom:904.442200pt;}
.y7a{bottom:904.442262pt;}
.y55{bottom:927.453456pt;}
.y79{bottom:927.453519pt;}
.y2d{bottom:927.453599pt;}
.y5{bottom:940.460004pt;}
.y54{bottom:949.464223pt;}
.y78{bottom:949.464285pt;}
.y2c{bottom:949.464365pt;}
.y6{bottom:960.508106pt;}
.y4{bottom:969.474197pt;}
.y53{bottom:972.475479pt;}
.y77{bottom:972.475542pt;}
.y2b{bottom:972.475622pt;}
.y52{bottom:994.486246pt;}
.y76{bottom:994.486308pt;}
.y2a{bottom:994.486388pt;}
.h6{height:16.007822pt;}
.h2{height:33.422040pt;}
.h4{height:34.985864pt;}
.hb{height:46.616553pt;}
.h8{height:46.647818pt;}
.h9{height:52.443622pt;}
.h7{height:58.270691pt;}
.h5{height:69.924829pt;}
.ha{height:1010.494166pt;}
.h3{height:1010.494262pt;}
.hc{height:1010.494326pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:635.310758pt;}
.w2{width:681.333252pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:19.665866pt;}
.x4{left:22.667338pt;}
.x2{left:55.999998pt;}
.x7{left:62.686914pt;}
.x5{left:79.011258pt;}
.x8{left:117.713831pt;}
.x3{left:591.773851pt;}
.x1{left:725.929947pt;}
}




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