
    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_72de9b9e7a8114e66f5c95b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_75ebc271b5b6f92fce6eba8a.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7093264bea16a6208e0ecba1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_2ed7abe1d7dddf69636d2893.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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);}
.m0{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);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.155922px;}
.ls2{letter-spacing:194.525322px;}
.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;}
}
.ws1{word-spacing:-17.999993px;}
.ws2{word-spacing:-14.939994px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-2.881738px;}
._3{margin-left:-1.035784px;}
._1{width:1.071227px;}
._11{width:2.305696px;}
._5{width:3.342146px;}
._4{width:5.110312px;}
._10{width:6.192980px;}
._1e{width:7.246681px;}
._a{width:8.312145px;}
._b{width:9.556038px;}
._d{width:11.202945px;}
._6{width:12.275547px;}
._8{width:14.181803px;}
._c{width:15.245748px;}
._16{width:16.298311px;}
._18{width:19.384130px;}
._14{width:20.592332px;}
._15{width:21.706710px;}
._12{width:22.787878px;}
._13{width:23.824665px;}
._17{width:25.281471px;}
._1b{width:26.701845px;}
._7{width:28.413101px;}
._19{width:29.928277px;}
._1a{width:31.176880px;}
._0{width:32.767455px;}
._2{width:33.876793px;}
._22{width:36.007101px;}
._26{width:38.207307px;}
._27{width:39.523124px;}
._1f{width:41.494167px;}
._20{width:43.053883px;}
._1c{width:44.848283px;}
._1d{width:46.267454px;}
._21{width:48.385418px;}
._24{width:59.270798px;}
._23{width:60.305659px;}
._9{width:194.525202px;}
._25{width:2450.321020px;}
._f{width:2490.665004px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.239981px;}
.fs2{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.960037px;}
.y5a{bottom:53.220240px;}
.y21{bottom:57.180277px;}
.y20{bottom:110.099956px;}
.y1f{bottom:127.199949px;}
.y33{bottom:131.159948px;}
.y1e{bottom:144.479942px;}
.y62{bottom:146.999941px;}
.y4b{bottom:147.000241px;}
.y1d{bottom:161.759935px;}
.y32{bottom:172.559931px;}
.y1c{bottom:179.039928px;}
.y59{bottom:185.879926px;}
.y61{bottom:188.399925px;}
.y4a{bottom:188.400225px;}
.y1b{bottom:196.319921px;}
.y1a{bottom:213.599915px;}
.y31{bottom:213.959914px;}
.y58{bottom:227.279909px;}
.y60{bottom:229.799908px;}
.y49{bottom:229.800208px;}
.y19{bottom:231.239908px;}
.y18{bottom:237.179905px;}
.y17{bottom:251.939899px;}
.y30{bottom:255.359898px;}
.y57{bottom:268.679893px;}
.y5f{bottom:271.199892px;}
.y48{bottom:271.200192px;}
.y2f{bottom:296.759881px;}
.y56{bottom:310.079876px;}
.y16{bottom:312.599875px;}
.y47{bottom:312.600175px;}
.y2e{bottom:338.159865px;}
.y55{bottom:351.479859px;}
.y4d{bottom:353.640159px;}
.y15{bottom:353.999858px;}
.y46{bottom:354.000158px;}
.y2d{bottom:379.559848px;}
.y54{bottom:392.879843px;}
.y14{bottom:395.399842px;}
.y45{bottom:395.400142px;}
.y2c{bottom:420.959832px;}
.y53{bottom:434.279826px;}
.y13{bottom:436.799825px;}
.y44{bottom:436.800125px;}
.y2b{bottom:462.359815px;}
.y52{bottom:475.679810px;}
.y12{bottom:478.199809px;}
.y43{bottom:478.200109px;}
.y2a{bottom:503.759798px;}
.y51{bottom:517.079793px;}
.y11{bottom:519.599792px;}
.y42{bottom:519.600092px;}
.y29{bottom:545.159782px;}
.y50{bottom:558.479777px;}
.y10{bottom:560.999776px;}
.y41{bottom:561.000076px;}
.y4f{bottom:578.279769px;}
.y28{bottom:586.559765px;}
.yf{bottom:602.399759px;}
.y40{bottom:602.400059px;}
.y4e{bottom:612.660055px;}
.y27{bottom:627.959749px;}
.ye{bottom:643.799742px;}
.y3f{bottom:643.800042px;}
.y26{bottom:669.359732px;}
.yd{bottom:685.199726px;}
.y3e{bottom:685.200026px;}
.y25{bottom:710.759716px;}
.yc{bottom:726.599709px;}
.y3d{bottom:726.600009px;}
.y24{bottom:748.019701px;}
.yb{bottom:767.999693px;}
.y3c{bottom:767.999993px;}
.y23{bottom:782.399987px;}
.ya{bottom:809.399676px;}
.y3b{bottom:809.399976px;}
.y9{bottom:850.799660px;}
.y3a{bottom:850.799960px;}
.y8{bottom:892.199643px;}
.y39{bottom:892.199943px;}
.y7{bottom:933.239627px;}
.y5e{bottom:933.599627px;}
.y38{bottom:933.599927px;}
.y6{bottom:974.999610px;}
.y37{bottom:974.999910px;}
.y4c{bottom:1016.039894px;}
.y5{bottom:1016.399593px;}
.y36{bottom:1016.399893px;}
.y3{bottom:1057.799577px;}
.y35{bottom:1057.799877px;}
.y4{bottom:1064.639574px;}
.y2{bottom:1098.839560px;}
.y5d{bottom:1099.199560px;}
.y34{bottom:1099.199860px;}
.y1{bottom:1140.239544px;}
.y5c{bottom:1140.599544px;}
.y22{bottom:1140.599844px;}
.h8{height:20.160000px;}
.h3{height:47.344903px;}
.h6{height:50.312792px;}
.h7{height:58.651148px;}
.h4{height:70.628878px;}
.h2{height:70.664034px;}
.h1{height:72.562471px;}
.h5{height:75.093720px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x6{left:134.279946px;}
.x7{left:139.319944px;}
.x5{left:226.979811px;}
.x2{left:249.659900px;}
.x3{left:255.779898px;}
.x4{left:353.879845px;}
.x9{left:755.459853px;}
.x8{left:764.820024px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.138597pt;}
.ls2{letter-spacing:172.911398pt;}
.ws1{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.279995pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-2.561545pt;}
._3{margin-left:-0.920697pt;}
._1{width:0.952201pt;}
._11{width:2.049508pt;}
._5{width:2.970797pt;}
._4{width:4.542499pt;}
._10{width:5.504871pt;}
._1e{width:6.441494pt;}
._a{width:7.388573pt;}
._b{width:8.494256pt;}
._d{width:9.958173pt;}
._6{width:10.911597pt;}
._8{width:12.606047pt;}
._c{width:13.551776pt;}
._16{width:14.487387pt;}
._18{width:17.230338pt;}
._14{width:18.304295pt;}
._15{width:19.294854pt;}
._12{width:20.255891pt;}
._13{width:21.177480pt;}
._17{width:22.472418pt;}
._1b{width:23.734973pt;}
._7{width:25.256090pt;}
._19{width:26.602913pt;}
._1a{width:27.712782pt;}
._0{width:29.126627pt;}
._2{width:30.112705pt;}
._22{width:32.006312pt;}
._26{width:33.962050pt;}
._27{width:35.131666pt;}
._1f{width:36.883704pt;}
._20{width:38.270118pt;}
._1c{width:39.865141pt;}
._1d{width:41.126625pt;}
._21{width:43.009261pt;}
._24{width:52.685154pt;}
._23{width:53.605030pt;}
._9{width:172.911291pt;}
._25{width:2178.063129pt;}
._f{width:2213.924448pt;}
.fs1{font-size:42.879983pt;}
.fs2{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:3.520033pt;}
.y5a{bottom:47.306880pt;}
.y21{bottom:50.826913pt;}
.y20{bottom:97.866628pt;}
.y1f{bottom:113.066621pt;}
.y33{bottom:116.586620pt;}
.y1e{bottom:128.426615pt;}
.y62{bottom:130.666614pt;}
.y4b{bottom:130.666881pt;}
.y1d{bottom:143.786609pt;}
.y32{bottom:153.386605pt;}
.y1c{bottom:159.146603pt;}
.y59{bottom:165.226601pt;}
.y61{bottom:167.466600pt;}
.y4a{bottom:167.466866pt;}
.y1b{bottom:174.506597pt;}
.y1a{bottom:189.866591pt;}
.y31{bottom:190.186591pt;}
.y58{bottom:202.026586pt;}
.y60{bottom:204.266585pt;}
.y49{bottom:204.266852pt;}
.y19{bottom:205.546584pt;}
.y18{bottom:210.826582pt;}
.y17{bottom:223.946577pt;}
.y30{bottom:226.986576pt;}
.y57{bottom:238.826571pt;}
.y5f{bottom:241.066570pt;}
.y48{bottom:241.066837pt;}
.y2f{bottom:263.786561pt;}
.y56{bottom:275.626556pt;}
.y16{bottom:277.866556pt;}
.y47{bottom:277.866822pt;}
.y2e{bottom:300.586546pt;}
.y55{bottom:312.426542pt;}
.y4d{bottom:314.346808pt;}
.y15{bottom:314.666541pt;}
.y46{bottom:314.666807pt;}
.y2d{bottom:337.386532pt;}
.y54{bottom:349.226527pt;}
.y14{bottom:351.466526pt;}
.y45{bottom:351.466793pt;}
.y2c{bottom:374.186517pt;}
.y53{bottom:386.026512pt;}
.y13{bottom:388.266511pt;}
.y44{bottom:388.266778pt;}
.y2b{bottom:410.986502pt;}
.y52{bottom:422.826498pt;}
.y12{bottom:425.066497pt;}
.y43{bottom:425.066763pt;}
.y2a{bottom:447.786488pt;}
.y51{bottom:459.626483pt;}
.y11{bottom:461.866482pt;}
.y42{bottom:461.866749pt;}
.y29{bottom:484.586473pt;}
.y50{bottom:496.426468pt;}
.y10{bottom:498.666467pt;}
.y41{bottom:498.666734pt;}
.y4f{bottom:514.026461pt;}
.y28{bottom:521.386458pt;}
.yf{bottom:535.466452pt;}
.y40{bottom:535.466719pt;}
.y4e{bottom:544.586715pt;}
.y27{bottom:558.186443pt;}
.ye{bottom:572.266438pt;}
.y3f{bottom:572.266704pt;}
.y26{bottom:594.986429pt;}
.yd{bottom:609.066423pt;}
.y3e{bottom:609.066690pt;}
.y25{bottom:631.786414pt;}
.yc{bottom:645.866408pt;}
.y3d{bottom:645.866675pt;}
.y24{bottom:664.906401pt;}
.yb{bottom:682.666394pt;}
.y3c{bottom:682.666660pt;}
.y23{bottom:695.466655pt;}
.ya{bottom:719.466379pt;}
.y3b{bottom:719.466646pt;}
.y9{bottom:756.266364pt;}
.y3a{bottom:756.266631pt;}
.y8{bottom:793.066349pt;}
.y39{bottom:793.066616pt;}
.y7{bottom:829.546335pt;}
.y5e{bottom:829.866335pt;}
.y38{bottom:829.866601pt;}
.y6{bottom:866.666320pt;}
.y37{bottom:866.666587pt;}
.y4c{bottom:903.146572pt;}
.y5{bottom:903.466305pt;}
.y36{bottom:903.466572pt;}
.y3{bottom:940.266291pt;}
.y35{bottom:940.266557pt;}
.y4{bottom:946.346288pt;}
.y2{bottom:976.746276pt;}
.y5d{bottom:977.066276pt;}
.y34{bottom:977.066543pt;}
.y1{bottom:1013.546261pt;}
.y5c{bottom:1013.866261pt;}
.y22{bottom:1013.866528pt;}
.h8{height:17.920000pt;}
.h3{height:42.084358pt;}
.h6{height:44.722482pt;}
.h7{height:52.134354pt;}
.h4{height:62.781225pt;}
.h2{height:62.812475pt;}
.h1{height:64.499974pt;}
.h5{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x6{left:119.359952pt;}
.x7{left:123.839950pt;}
.x5{left:201.759832pt;}
.x2{left:221.919911pt;}
.x3{left:227.359909pt;}
.x4{left:314.559862pt;}
.x9{left:671.519870pt;}
.x8{left:679.840021pt;}
}




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