
    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_0cf91184f717e740aabbd25c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.086426;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_9099072421aadd4df8707b29.woff')format("woff");}.ff2{font-family:ff2;line-height:1.070312;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_5707adccdecc4b2d2ce888b4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_77e93f2eeefecce04176c54e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.875488;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_e18337fc83258e7195dd4218.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854980;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_6aeb5cd1c3bca40ecbcb606a.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_22e38721764453a528eb3829.woff')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.900145px;}
.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:-40.506592px;}
.ws1{word-spacing:-18.336914px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-7.415180px;}
._10{margin-left:-5.406676px;}
._f{margin-left:-3.672891px;}
._0{margin-left:-1.886992px;}
._b{width:3.545022px;}
._a{width:4.642840px;}
._9{width:8.789032px;}
._e{width:9.811433px;}
._d{width:13.424393px;}
._c{width:17.285239px;}
._6{width:21.798988px;}
._11{width:22.846900px;}
._5{width:26.919225px;}
._8{width:31.450541px;}
._7{width:35.755045px;}
._4{width:40.145619px;}
._18{width:41.158314px;}
._3{width:44.138659px;}
._2{width:45.483599px;}
._15{width:48.587027px;}
._1{width:49.798827px;}
._14{width:53.762874px;}
._13{width:66.941942px;}
._12{width:71.786382px;}
._17{width:76.270793px;}
._19{width:148.200364px;}
._1a{width:149.229449px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.000002px;}
.fs0{font-size:101.999997px;}
.y0{bottom:0.000000px;}
.y52{bottom:118.927923px;}
.y51{bottom:140.747320px;}
.y28{bottom:154.352971px;}
.y50{bottom:162.566718px;}
.y27{bottom:176.172368px;}
.y4f{bottom:184.386115px;}
.y26{bottom:197.991765px;}
.y4e{bottom:206.205512px;}
.y25{bottom:219.811162px;}
.y4d{bottom:228.024909px;}
.y24{bottom:241.630559px;}
.y4c{bottom:249.844306px;}
.y4b{bottom:271.663703px;}
.y23{bottom:281.449959px;}
.y4a{bottom:293.483100px;}
.y22{bottom:303.269356px;}
.y49{bottom:315.302497px;}
.y21{bottom:325.088753px;}
.y48{bottom:337.121894px;}
.y20{bottom:346.908150px;}
.y1f{bottom:368.727547px;}
.y47{bottom:376.941292px;}
.y1e{bottom:390.546944px;}
.y46{bottom:398.760689px;}
.y1d{bottom:430.366336px;}
.y45{bottom:438.580083px;}
.y1c{bottom:452.185717px;}
.y44{bottom:460.399480px;}
.y1b{bottom:474.005122px;}
.y43{bottom:482.218878px;}
.y1a{bottom:495.824476px;}
.y42{bottom:504.038275px;}
.y19{bottom:517.643873px;}
.y6a{bottom:522.038084px;}
.y41{bottom:525.857672px;}
.y18{bottom:539.463270px;}
.y69{bottom:543.857669px;}
.y40{bottom:547.677069px;}
.y17{bottom:561.282667px;}
.y3f{bottom:569.496466px;}
.y16{bottom:583.102064px;}
.y68{bottom:583.677249px;}
.y3e{bottom:591.315863px;}
.y67{bottom:605.496466px;}
.y3d{bottom:613.135260px;}
.y15{bottom:622.921462px;}
.y66{bottom:627.315674px;}
.y3c{bottom:634.954657px;}
.y14{bottom:644.740858px;}
.y65{bottom:649.135260px;}
.y3b{bottom:656.774054px;}
.y13{bottom:666.560264px;}
.y64{bottom:670.954837px;}
.y12{bottom:688.379610px;}
.y63{bottom:692.774054px;}
.y3a{bottom:696.593452px;}
.y11{bottom:710.199007px;}
.y39{bottom:718.412849px;}
.y10{bottom:732.018404px;}
.y62{bottom:732.593448px;}
.y61{bottom:754.412845px;}
.y38{bottom:758.232237px;}
.yf{bottom:771.837795px;}
.y60{bottom:776.232243px;}
.y37{bottom:780.051634px;}
.ye{bottom:793.657192px;}
.y5f{bottom:798.051640px;}
.y36{bottom:801.871032px;}
.yd{bottom:815.476589px;}
.y5e{bottom:819.871038px;}
.y35{bottom:823.690429px;}
.yc{bottom:837.295994px;}
.y5d{bottom:841.690435px;}
.y34{bottom:845.509827px;}
.yb{bottom:860.531348px;}
.y5c{bottom:863.509832px;}
.y33{bottom:867.329223px;}
.ya{bottom:882.026498px;}
.y5b{bottom:885.329229px;}
.y32{bottom:889.148621px;}
.y9{bottom:903.521573px;}
.y5a{bottom:907.148626px;}
.y31{bottom:910.968017px;}
.y8{bottom:925.277759px;}
.y59{bottom:928.968023px;}
.y30{bottom:932.787415px;}
.y7{bottom:948.774119px;}
.y58{bottom:950.787420px;}
.y2f{bottom:954.606811px;}
.y6{bottom:972.270539px;}
.y57{bottom:972.606817px;}
.y2e{bottom:976.426209px;}
.y56{bottom:994.426214px;}
.y5{bottom:995.766914px;}
.y2d{bottom:998.245605px;}
.y4{bottom:1019.002259px;}
.y55{bottom:1034.245605px;}
.y2c{bottom:1038.065003px;}
.y3{bottom:1039.081421px;}
.y2{bottom:1070.360415px;}
.y54{bottom:1074.065003px;}
.y2b{bottom:1077.884400px;}
.y53{bottom:1095.884400px;}
.y1{bottom:1104.081301px;}
.y2a{bottom:1117.703797px;}
.y29{bottom:1139.523194px;}
.h3{height:43.989259px;}
.h2{height:56.750978px;}
.h4{height:57.814454px;}
.h1{height:89.349607px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:135.000000px;}
.x3{left:189.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.800129pt;}
.ws0{word-spacing:-36.005859pt;}
.ws1{word-spacing:-16.299479pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-6.591271pt;}
._10{margin-left:-4.805934pt;}
._f{margin-left:-3.264792pt;}
._0{margin-left:-1.677327pt;}
._b{width:3.151131pt;}
._a{width:4.126969pt;}
._9{width:7.812473pt;}
._e{width:8.721274pt;}
._d{width:11.932794pt;}
._c{width:15.364657pt;}
._6{width:19.376878pt;}
._11{width:20.308355pt;}
._5{width:23.928200pt;}
._8{width:27.956037pt;}
._7{width:31.782262pt;}
._4{width:35.684994pt;}
._18{width:36.585168pt;}
._3{width:39.234363pt;}
._2{width:40.429866pt;}
._15{width:43.188469pt;}
._1{width:44.265624pt;}
._14{width:47.789221pt;}
._13{width:59.503949pt;}
._12{width:63.810117pt;}
._17{width:67.796260pt;}
._19{width:131.733657pt;}
._1a{width:132.648399pt;}
.fs1{font-size:58.666668pt;}
.fs0{font-size:90.666664pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:105.713709pt;}
.y51{bottom:125.108729pt;}
.y28{bottom:137.202641pt;}
.y50{bottom:144.503749pt;}
.y27{bottom:156.597661pt;}
.y4f{bottom:163.898769pt;}
.y26{bottom:175.992680pt;}
.y4e{bottom:183.293788pt;}
.y25{bottom:195.387700pt;}
.y4d{bottom:202.688808pt;}
.y24{bottom:214.782719pt;}
.y4c{bottom:222.083827pt;}
.y4b{bottom:241.478847pt;}
.y23{bottom:250.177742pt;}
.y4a{bottom:260.873866pt;}
.y22{bottom:269.572761pt;}
.y49{bottom:280.268886pt;}
.y21{bottom:288.967781pt;}
.y48{bottom:299.663905pt;}
.y20{bottom:308.362800pt;}
.y1f{bottom:327.757820pt;}
.y47{bottom:335.058926pt;}
.y1e{bottom:347.152839pt;}
.y46{bottom:354.453945pt;}
.y1d{bottom:382.547854pt;}
.y45{bottom:389.848963pt;}
.y1c{bottom:401.942859pt;}
.y44{bottom:409.243983pt;}
.y1b{bottom:421.337886pt;}
.y43{bottom:428.639003pt;}
.y1a{bottom:440.732867pt;}
.y42{bottom:448.034023pt;}
.y19{bottom:460.127887pt;}
.y6a{bottom:464.033852pt;}
.y41{bottom:467.429042pt;}
.y18{bottom:479.522906pt;}
.y69{bottom:483.429039pt;}
.y40{bottom:486.824062pt;}
.y17{bottom:498.917926pt;}
.y3f{bottom:506.219081pt;}
.y16{bottom:518.312945pt;}
.y68{bottom:518.824222pt;}
.y3e{bottom:525.614101pt;}
.y67{bottom:538.219081pt;}
.y3d{bottom:545.009120pt;}
.y15{bottom:553.707966pt;}
.y66{bottom:557.613933pt;}
.y3c{bottom:564.404140pt;}
.y14{bottom:573.102985pt;}
.y65{bottom:577.009120pt;}
.y3b{bottom:583.799159pt;}
.y13{bottom:592.498012pt;}
.y64{bottom:596.404300pt;}
.y12{bottom:611.892986pt;}
.y63{bottom:615.799159pt;}
.y3a{bottom:619.194180pt;}
.y11{bottom:631.288006pt;}
.y39{bottom:638.589199pt;}
.y10{bottom:650.683025pt;}
.y62{bottom:651.194176pt;}
.y61{bottom:670.589196pt;}
.y38{bottom:673.984211pt;}
.yf{bottom:686.078040pt;}
.y60{bottom:689.984216pt;}
.y37{bottom:693.379231pt;}
.ye{bottom:705.473060pt;}
.y5f{bottom:709.379236pt;}
.y36{bottom:712.774251pt;}
.yd{bottom:724.868079pt;}
.y5e{bottom:728.774256pt;}
.y35{bottom:732.169271pt;}
.yc{bottom:744.263105pt;}
.y5d{bottom:748.169276pt;}
.y34{bottom:751.564291pt;}
.yb{bottom:764.916754pt;}
.y5c{bottom:767.564295pt;}
.y33{bottom:770.959310pt;}
.ya{bottom:784.023554pt;}
.y5b{bottom:786.959315pt;}
.y32{bottom:790.354330pt;}
.y9{bottom:803.130287pt;}
.y5a{bottom:806.354334pt;}
.y31{bottom:809.749349pt;}
.y8{bottom:822.469119pt;}
.y59{bottom:825.749354pt;}
.y30{bottom:829.144369pt;}
.y7{bottom:843.354772pt;}
.y58{bottom:845.144373pt;}
.y2f{bottom:848.539388pt;}
.y6{bottom:864.240479pt;}
.y57{bottom:864.539393pt;}
.y2e{bottom:867.934408pt;}
.y56{bottom:883.934412pt;}
.y5{bottom:885.126145pt;}
.y2d{bottom:887.329427pt;}
.y4{bottom:905.779786pt;}
.y55{bottom:919.329427pt;}
.y2c{bottom:922.724447pt;}
.y3{bottom:923.627929pt;}
.y2{bottom:951.431480pt;}
.y54{bottom:954.724447pt;}
.y2b{bottom:958.119467pt;}
.y53{bottom:974.119466pt;}
.y1{bottom:981.405601pt;}
.y2a{bottom:993.514486pt;}
.y29{bottom:1012.909505pt;}
.h3{height:39.101563pt;}
.h2{height:50.445314pt;}
.h4{height:51.390626pt;}
.h1{height:79.421873pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:120.000000pt;}
.x3{left:168.000000pt;}
}




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