
    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_e557ba86a381a26bd6a8493e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.216309;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_d3af1bd1a10c1d3725ffc7ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.021484;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_f8bea3afb096aaac83e3b538.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.996094;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_3a3e621db5a9d36b836bf295.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.055176;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_76a5618c6ed6ea725a4568f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.680176;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_d7a8fc04b53484fac14e67a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002760px;}
.ls2{letter-spacing:3.433799px;}
.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;}
}
.ws2{word-spacing:-65.454454px;}
.ws0{word-spacing:-21.059992px;}
.ws3{word-spacing:-17.999993px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.155095px;}
._1{width:1.085958px;}
._16{width:2.119769px;}
._13{width:3.154517px;}
._6{width:4.965445px;}
._11{width:6.255757px;}
._5{width:7.990997px;}
._8{width:9.139172px;}
._7{width:10.609638px;}
._15{width:11.878446px;}
._4{width:13.428715px;}
._12{width:14.604498px;}
._a{width:16.451139px;}
._2{width:17.727795px;}
._9{width:19.055544px;}
._22{width:20.278607px;}
._b{width:22.109993px;}
._f{width:23.531198px;}
._14{width:25.040771px;}
._24{width:26.304075px;}
._25{width:27.421736px;}
._1e{width:29.062726px;}
._1d{width:30.180324px;}
._d{width:31.869111px;}
._c{width:32.959029px;}
._20{width:34.191582px;}
._21{width:35.857077px;}
._1f{width:37.233851px;}
._3{width:38.357937px;}
._17{width:39.375049px;}
._28{width:43.969640px;}
._e{width:45.023839px;}
._1c{width:46.525058px;}
._19{width:47.879080px;}
._18{width:48.937286px;}
._26{width:50.424593px;}
._27{width:51.486598px;}
._23{width:56.489578px;}
._1b{width:57.569840px;}
._10{width:67.795276px;}
._1a{width:191.459753px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y1a{bottom:115.139954px;}
.y44{bottom:138.719945px;}
.y31{bottom:151.139940px;}
.y57{bottom:153.659939px;}
.y19{bottom:157.619937px;}
.y64{bottom:166.079934px;}
.y43{bottom:181.199928px;}
.y30{bottom:193.619923px;}
.y56{bottom:196.139922px;}
.y18{bottom:200.099920px;}
.y63{bottom:208.739917px;}
.y42{bottom:223.679911px;}
.y2f{bottom:236.099906px;}
.y55{bottom:238.619905px;}
.y17{bottom:242.579903px;}
.y62{bottom:251.219900px;}
.y41{bottom:266.159894px;}
.y2e{bottom:278.579889px;}
.y54{bottom:281.099888px;}
.y16{bottom:285.059886px;}
.y61{bottom:293.699883px;}
.y40{bottom:308.639877px;}
.y2d{bottom:321.059872px;}
.y53{bottom:323.579871px;}
.y15{bottom:327.539869px;}
.y60{bottom:348.059861px;}
.y3f{bottom:351.119860px;}
.y2c{bottom:363.719855px;}
.y52{bottom:366.059854px;}
.y69{bottom:378.659849px;}
.y5f{bottom:384.599846px;}
.y14{bottom:385.139846px;}
.y3e{bottom:393.599843px;}
.y2b{bottom:406.199838px;}
.y51{bottom:408.719837px;}
.y5e{bottom:420.959832px;}
.y68{bottom:421.139832px;}
.y13{bottom:427.619829px;}
.y3d{bottom:436.079826px;}
.y2a{bottom:448.679821px;}
.y50{bottom:451.199820px;}
.y5d{bottom:457.499817px;}
.y67{bottom:463.619815px;}
.y12{bottom:470.099812px;}
.y3c{bottom:478.559809px;}
.y29{bottom:491.159804px;}
.y4f{bottom:493.679803px;}
.y66{bottom:506.099798px;}
.y5c{bottom:511.859795px;}
.y11{bottom:512.579795px;}
.y3b{bottom:521.219792px;}
.y28{bottom:533.819786px;}
.y4e{bottom:536.159786px;}
.y65{bottom:548.579781px;}
.y5b{bottom:554.339778px;}
.y10{bottom:555.059778px;}
.y3a{bottom:563.699775px;}
.y27{bottom:576.119770px;}
.y4d{bottom:578.639769px;}
.y5a{bottom:593.759762px;}
.yf{bottom:597.539761px;}
.y39{bottom:606.179758px;}
.y26{bottom:618.599753px;}
.y4c{bottom:621.119752px;}
.y59{bottom:630.299748px;}
.ye{bottom:640.019744px;}
.y38{bottom:648.659741px;}
.y25{bottom:661.079736px;}
.y4b{bottom:663.599735px;}
.y58{bottom:666.659733px;}
.yd{bottom:682.499727px;}
.y37{bottom:691.139724px;}
.y4a{bottom:706.079718px;}
.y24{bottom:718.679713px;}
.yc{bottom:724.979710px;}
.y36{bottom:733.619707px;}
.y49{bottom:748.559701px;}
.y23{bottom:761.159696px;}
.yb{bottom:767.459693px;}
.y35{bottom:776.099690px;}
.y48{bottom:791.039684px;}
.y22{bottom:818.579673px;}
.ya{bottom:825.059670px;}
.y47{bottom:833.699667px;}
.y21{bottom:861.059656px;}
.y9{bottom:867.539653px;}
.y46{bottom:876.179650px;}
.y20{bottom:903.539639px;}
.y8{bottom:910.019636px;}
.y45{bottom:918.659633px;}
.y1f{bottom:946.019622px;}
.y7{bottom:952.499619px;}
.y34{bottom:961.139616px;}
.y1e{bottom:988.679605px;}
.y6{bottom:994.979602px;}
.y33{bottom:1003.619599px;}
.y1d{bottom:1031.159588px;}
.y6a{bottom:1035.839586px;}
.y5{bottom:1037.459585px;}
.y32{bottom:1046.099582px;}
.y4{bottom:1076.699569px;}
.y1c{bottom:1088.579565px;}
.y1b{bottom:1131.059548px;}
.y3{bottom:1131.239548px;}
.y2{bottom:1159.499536px;}
.y1{bottom:1187.759525px;}
.h5{height:55.266306px;}
.h6{height:61.259038px;}
.h2{height:62.275053px;}
.h3{height:66.585911px;}
.h1{height:77.905516px;}
.h4{height:82.676920px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.619946px;}
.x6{left:170.099957px;}
.x5{left:180.719928px;}
.x3{left:209.339997px;}
.xa{left:235.979906px;}
.x9{left:281.339887px;}
.x7{left:393.470843px;}
.xb{left:456.119818px;}
.x8{left:480.419808px;}
.x4{left:683.459727px;}
.x1{left:754.919698px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002453pt;}
.ls2{letter-spacing:3.052265pt;}
.ws2{word-spacing:-58.181737pt;}
.ws0{word-spacing:-18.719993pt;}
.ws3{word-spacing:-15.999994pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.026751pt;}
._1{width:0.965296pt;}
._16{width:1.884239pt;}
._13{width:2.804015pt;}
._6{width:4.413729pt;}
._11{width:5.560673pt;}
._5{width:7.103109pt;}
._8{width:8.123709pt;}
._7{width:9.430789pt;}
._15{width:10.558619pt;}
._4{width:11.936635pt;}
._12{width:12.981776pt;}
._a{width:14.623235pt;}
._2{width:15.758040pt;}
._9{width:16.938261pt;}
._22{width:18.025429pt;}
._b{width:19.653327pt;}
._f{width:20.916621pt;}
._14{width:22.258463pt;}
._24{width:23.381400pt;}
._25{width:24.374877pt;}
._1e{width:25.833534pt;}
._1d{width:26.826955pt;}
._d{width:28.328098pt;}
._c{width:29.296915pt;}
._20{width:30.392517pt;}
._21{width:31.872957pt;}
._1f{width:33.096757pt;}
._3{width:34.095944pt;}
._17{width:35.000043pt;}
._28{width:39.084124pt;}
._e{width:40.021190pt;}
._1c{width:41.355607pt;}
._19{width:42.559183pt;}
._18{width:43.499810pt;}
._26{width:44.821861pt;}
._27{width:45.765865pt;}
._23{width:50.212958pt;}
._1b{width:51.173191pt;}
._10{width:60.262468pt;}
._1a{width:170.186447pt;}
.fs2{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:102.346626pt;}
.y44{bottom:123.306617pt;}
.y31{bottom:134.346613pt;}
.y57{bottom:136.586612pt;}
.y19{bottom:140.106611pt;}
.y64{bottom:147.626608pt;}
.y43{bottom:161.066602pt;}
.y30{bottom:172.106598pt;}
.y56{bottom:174.346597pt;}
.y18{bottom:177.866596pt;}
.y63{bottom:185.546592pt;}
.y42{bottom:198.826587pt;}
.y2f{bottom:209.866583pt;}
.y55{bottom:212.106582pt;}
.y17{bottom:215.626580pt;}
.y62{bottom:223.306577pt;}
.y41{bottom:236.586572pt;}
.y2e{bottom:247.626568pt;}
.y54{bottom:249.866567pt;}
.y16{bottom:253.386565pt;}
.y61{bottom:261.066562pt;}
.y40{bottom:274.346557pt;}
.y2d{bottom:285.386553pt;}
.y53{bottom:287.626552pt;}
.y15{bottom:291.146550pt;}
.y60{bottom:309.386543pt;}
.y3f{bottom:312.106542pt;}
.y2c{bottom:323.306537pt;}
.y52{bottom:325.386537pt;}
.y69{bottom:336.586532pt;}
.y5f{bottom:341.866530pt;}
.y14{bottom:342.346530pt;}
.y3e{bottom:349.866527pt;}
.y2b{bottom:361.066522pt;}
.y51{bottom:363.306521pt;}
.y5e{bottom:374.186517pt;}
.y68{bottom:374.346517pt;}
.y13{bottom:380.106515pt;}
.y3d{bottom:387.626512pt;}
.y2a{bottom:398.826507pt;}
.y50{bottom:401.066506pt;}
.y5d{bottom:406.666504pt;}
.y67{bottom:412.106502pt;}
.y12{bottom:417.866500pt;}
.y3c{bottom:425.386497pt;}
.y29{bottom:436.586492pt;}
.y4f{bottom:438.826491pt;}
.y66{bottom:449.866487pt;}
.y5c{bottom:454.986485pt;}
.y11{bottom:455.626484pt;}
.y3b{bottom:463.306481pt;}
.y28{bottom:474.506477pt;}
.y4e{bottom:476.586476pt;}
.y65{bottom:487.626472pt;}
.y5b{bottom:492.746470pt;}
.y10{bottom:493.386469pt;}
.y3a{bottom:501.066466pt;}
.y27{bottom:512.106462pt;}
.y4d{bottom:514.346461pt;}
.y5a{bottom:527.786456pt;}
.yf{bottom:531.146454pt;}
.y39{bottom:538.826451pt;}
.y26{bottom:549.866447pt;}
.y4c{bottom:552.106446pt;}
.y59{bottom:560.266443pt;}
.ye{bottom:568.906439pt;}
.y38{bottom:576.586436pt;}
.y25{bottom:587.626432pt;}
.y4b{bottom:589.866431pt;}
.y58{bottom:592.586430pt;}
.yd{bottom:606.666424pt;}
.y37{bottom:614.346421pt;}
.y4a{bottom:627.626416pt;}
.y24{bottom:638.826411pt;}
.yc{bottom:644.426409pt;}
.y36{bottom:652.106406pt;}
.y49{bottom:665.386401pt;}
.y23{bottom:676.586396pt;}
.yb{bottom:682.186394pt;}
.y35{bottom:689.866391pt;}
.y48{bottom:703.146385pt;}
.y22{bottom:727.626376pt;}
.ya{bottom:733.386373pt;}
.y47{bottom:741.066370pt;}
.y21{bottom:765.386361pt;}
.y9{bottom:771.146358pt;}
.y46{bottom:778.826355pt;}
.y20{bottom:803.146345pt;}
.y8{bottom:808.906343pt;}
.y45{bottom:816.586340pt;}
.y1f{bottom:840.906330pt;}
.y7{bottom:846.666328pt;}
.y34{bottom:854.346325pt;}
.y1e{bottom:878.826315pt;}
.y6{bottom:884.426313pt;}
.y33{bottom:892.106310pt;}
.y1d{bottom:916.586300pt;}
.y6a{bottom:920.746298pt;}
.y5{bottom:922.186298pt;}
.y32{bottom:929.866295pt;}
.y4{bottom:957.066284pt;}
.y1c{bottom:967.626280pt;}
.y1b{bottom:1005.386265pt;}
.y3{bottom:1005.546264pt;}
.y2{bottom:1030.666254pt;}
.y1{bottom:1055.786244pt;}
.h5{height:49.125605pt;}
.h6{height:54.452478pt;}
.h2{height:55.355603pt;}
.h3{height:59.187476pt;}
.h1{height:69.249347pt;}
.h4{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.439952pt;}
.x6{left:151.199961pt;}
.x5{left:160.639936pt;}
.x3{left:186.079997pt;}
.xa{left:209.759916pt;}
.x9{left:250.079900pt;}
.x7{left:349.751860pt;}
.xb{left:405.439838pt;}
.x8{left:427.039829pt;}
.x4{left:607.519757pt;}
.x1{left:671.039732pt;}
}




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