
    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_144fd01bd93701b5d51ccd49.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_f8c208d6a6e826326946b807.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_23293fbfc4d764f90f9a546b.woff')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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_09728e32ee45f114ff225a00.woff')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_d944f0845cc7e3cc47a85d95.woff')format("woff");}.ff5{font-family:ff5;line-height:0.718750;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:27.360000px;}
.ls14{letter-spacing:-1.569888px;}
.ls8{letter-spacing:-0.198720px;}
.ls5{letter-spacing:-0.158976px;}
.ls13{letter-spacing:-0.145728px;}
.ls7{letter-spacing:-0.125856px;}
.ls9{letter-spacing:-0.119232px;}
.ls6{letter-spacing:-0.079488px;}
.lsa{letter-spacing:-0.039744px;}
.ls4{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.095040px;}
.lse{letter-spacing:0.139680px;}
.ls20{letter-spacing:0.357408px;}
.lsd{letter-spacing:0.427392px;}
.lsf{letter-spacing:0.427680px;}
.ls11{letter-spacing:0.594720px;}
.ls17{letter-spacing:2.687040px;}
.ls0{letter-spacing:2.810880px;}
.ls12{letter-spacing:2.962080px;}
.ls10{letter-spacing:3.250224px;}
.lsc{letter-spacing:3.468960px;}
.ls1b{letter-spacing:3.530880px;}
.ls1a{letter-spacing:3.533040px;}
.ls16{letter-spacing:5.688000px;}
.ls22{letter-spacing:7.541280px;}
.ls18{letter-spacing:7.878816px;}
.ls1d{letter-spacing:8.326080px;}
.ls15{letter-spacing:8.687520px;}
.ls23{letter-spacing:8.966880px;}
.ls21{letter-spacing:15.111360px;}
.ls24{letter-spacing:15.886080px;}
.ls19{letter-spacing:19.363680px;}
.ls2{letter-spacing:24.032160px;}
.ls1{letter-spacing:24.033600px;}
.ls1c{letter-spacing:25.459200px;}
.lsb{letter-spacing:34.542288px;}
.ls1e{letter-spacing:38.248416px;}
.ls3{letter-spacing:845.585280px;}
.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;}
.ws7{word-spacing:-18.374976px;}
.ws3{word-spacing:-18.335232px;}
.ws2{word-spacing:-18.295488px;}
.ws1{word-spacing:-18.288864px;}
.ws4{word-spacing:-18.255744px;}
.ws5{word-spacing:-18.216000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.791312px;}
._b{margin-left:-3.438144px;}
._2{margin-left:-2.126016px;}
._1{margin-left:-1.003392px;}
._0{width:1.192320px;}
._9{width:2.363904px;}
._8{width:3.378240px;}
._7{width:4.570560px;}
._c{width:5.696640px;}
._a{width:7.021440px;}
._14{width:8.149392px;}
._13{width:9.231696px;}
._5{width:10.532160px;}
._4{width:11.989440px;}
._f{width:13.166064px;}
._d{width:14.175360px;}
._10{width:15.548832px;}
._6{width:17.270496px;}
._18{width:19.501056px;}
._17{width:20.534400px;}
._e{width:24.310080px;}
._19{width:26.016624px;}
._15{width:28.218240px;}
._1a{width:30.353184px;}
._16{width:32.813136px;}
._1e{width:33.845904px;}
._1b{width:55.310400px;}
._1c{width:56.940336px;}
._1d{width:57.945888px;}
._3{width:67.527360px;}
._11{width:845.943840px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:126.360000px;}
.y2c{bottom:147.960000px;}
.y40{bottom:150.840000px;}
.y2b{bottom:169.920000px;}
.y3f{bottom:172.800000px;}
.y2a{bottom:191.880000px;}
.y3e{bottom:194.760000px;}
.y29{bottom:213.480000px;}
.y3d{bottom:216.360000px;}
.y28{bottom:235.440000px;}
.y3c{bottom:238.320000px;}
.y27{bottom:257.040000px;}
.y3b{bottom:259.920000px;}
.y26{bottom:279.000000px;}
.y3a{bottom:281.880000px;}
.y25{bottom:300.960000px;}
.y39{bottom:303.840000px;}
.y24{bottom:322.560000px;}
.y38{bottom:325.440000px;}
.y23{bottom:344.520000px;}
.y37{bottom:347.400000px;}
.y22{bottom:366.120000px;}
.y36{bottom:369.000000px;}
.y21{bottom:388.080000px;}
.y35{bottom:390.960000px;}
.y20{bottom:410.040000px;}
.y34{bottom:412.920000px;}
.y1f{bottom:431.640000px;}
.y33{bottom:434.520000px;}
.y1e{bottom:453.600000px;}
.y32{bottom:456.480000px;}
.y1d{bottom:475.560000px;}
.y31{bottom:478.080000px;}
.y1c{bottom:497.160000px;}
.y30{bottom:500.040000px;}
.y1b{bottom:519.120000px;}
.y2f{bottom:522.000000px;}
.y1a{bottom:540.720000px;}
.y2e{bottom:541.080000px;}
.y19{bottom:562.680000px;}
.y18{bottom:584.640000px;}
.y17{bottom:606.240000px;}
.y16{bottom:628.200000px;}
.y15{bottom:649.800000px;}
.y14{bottom:671.760000px;}
.y13{bottom:693.720000px;}
.y12{bottom:715.320000px;}
.y11{bottom:737.280000px;}
.y10{bottom:758.880000px;}
.yf{bottom:780.840000px;}
.ye{bottom:802.800000px;}
.yd{bottom:824.400000px;}
.yc{bottom:846.360000px;}
.yb{bottom:868.320000px;}
.ya{bottom:889.920000px;}
.y9{bottom:911.880000px;}
.y8{bottom:933.480000px;}
.y7{bottom:955.440000px;}
.y6{bottom:977.400000px;}
.y5{bottom:999.000000px;}
.y4{bottom:1020.960000px;}
.y3{bottom:1042.560000px;}
.y2{bottom:1064.520000px;}
.y1{bottom:1118.520000px;}
.h2{height:48.224531px;}
.h1{height:48.289219px;}
.h3{height:57.375000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x3{left:135.000000px;}
.x4{left:162.000000px;}
.x5{left:189.000000px;}
.x6{left:216.000000px;}
.x1{left:800.823600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls14{letter-spacing:-1.395456pt;}
.ls8{letter-spacing:-0.176640pt;}
.ls5{letter-spacing:-0.141312pt;}
.ls13{letter-spacing:-0.129536pt;}
.ls7{letter-spacing:-0.111872pt;}
.ls9{letter-spacing:-0.105984pt;}
.ls6{letter-spacing:-0.070656pt;}
.lsa{letter-spacing:-0.035328pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.084480pt;}
.lse{letter-spacing:0.124160pt;}
.ls20{letter-spacing:0.317696pt;}
.lsd{letter-spacing:0.379904pt;}
.lsf{letter-spacing:0.380160pt;}
.ls11{letter-spacing:0.528640pt;}
.ls17{letter-spacing:2.388480pt;}
.ls0{letter-spacing:2.498560pt;}
.ls12{letter-spacing:2.632960pt;}
.ls10{letter-spacing:2.889088pt;}
.lsc{letter-spacing:3.083520pt;}
.ls1b{letter-spacing:3.138560pt;}
.ls1a{letter-spacing:3.140480pt;}
.ls16{letter-spacing:5.056000pt;}
.ls22{letter-spacing:6.703360pt;}
.ls18{letter-spacing:7.003392pt;}
.ls1d{letter-spacing:7.400960pt;}
.ls15{letter-spacing:7.722240pt;}
.ls23{letter-spacing:7.970560pt;}
.ls21{letter-spacing:13.432320pt;}
.ls24{letter-spacing:14.120960pt;}
.ls19{letter-spacing:17.212160pt;}
.ls2{letter-spacing:21.361920pt;}
.ls1{letter-spacing:21.363200pt;}
.ls1c{letter-spacing:22.630400pt;}
.lsb{letter-spacing:30.704256pt;}
.ls1e{letter-spacing:33.998592pt;}
.ls3{letter-spacing:751.631360pt;}
.ws0{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.333312pt;}
.ws3{word-spacing:-16.297984pt;}
.ws2{word-spacing:-16.262656pt;}
.ws1{word-spacing:-16.256768pt;}
.ws4{word-spacing:-16.227328pt;}
.ws5{word-spacing:-16.192000pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-4.258944pt;}
._b{margin-left:-3.056128pt;}
._2{margin-left:-1.889792pt;}
._1{margin-left:-0.891904pt;}
._0{width:1.059840pt;}
._9{width:2.101248pt;}
._8{width:3.002880pt;}
._7{width:4.062720pt;}
._c{width:5.063680pt;}
._a{width:6.241280pt;}
._14{width:7.243904pt;}
._13{width:8.205952pt;}
._5{width:9.361920pt;}
._4{width:10.657280pt;}
._f{width:11.703168pt;}
._d{width:12.600320pt;}
._10{width:13.821184pt;}
._6{width:15.351552pt;}
._18{width:17.334272pt;}
._17{width:18.252800pt;}
._e{width:21.608960pt;}
._19{width:23.125888pt;}
._15{width:25.082880pt;}
._1a{width:26.980608pt;}
._16{width:29.167232pt;}
._1e{width:30.085248pt;}
._1b{width:49.164800pt;}
._1c{width:50.613632pt;}
._1d{width:51.507456pt;}
._3{width:60.024320pt;}
._11{width:751.950080pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:112.320000pt;}
.y2c{bottom:131.520000pt;}
.y40{bottom:134.080000pt;}
.y2b{bottom:151.040000pt;}
.y3f{bottom:153.600000pt;}
.y2a{bottom:170.560000pt;}
.y3e{bottom:173.120000pt;}
.y29{bottom:189.760000pt;}
.y3d{bottom:192.320000pt;}
.y28{bottom:209.280000pt;}
.y3c{bottom:211.840000pt;}
.y27{bottom:228.480000pt;}
.y3b{bottom:231.040000pt;}
.y26{bottom:248.000000pt;}
.y3a{bottom:250.560000pt;}
.y25{bottom:267.520000pt;}
.y39{bottom:270.080000pt;}
.y24{bottom:286.720000pt;}
.y38{bottom:289.280000pt;}
.y23{bottom:306.240000pt;}
.y37{bottom:308.800000pt;}
.y22{bottom:325.440000pt;}
.y36{bottom:328.000000pt;}
.y21{bottom:344.960000pt;}
.y35{bottom:347.520000pt;}
.y20{bottom:364.480000pt;}
.y34{bottom:367.040000pt;}
.y1f{bottom:383.680000pt;}
.y33{bottom:386.240000pt;}
.y1e{bottom:403.200000pt;}
.y32{bottom:405.760000pt;}
.y1d{bottom:422.720000pt;}
.y31{bottom:424.960000pt;}
.y1c{bottom:441.920000pt;}
.y30{bottom:444.480000pt;}
.y1b{bottom:461.440000pt;}
.y2f{bottom:464.000000pt;}
.y1a{bottom:480.640000pt;}
.y2e{bottom:480.960000pt;}
.y19{bottom:500.160000pt;}
.y18{bottom:519.680000pt;}
.y17{bottom:538.880000pt;}
.y16{bottom:558.400000pt;}
.y15{bottom:577.600000pt;}
.y14{bottom:597.120000pt;}
.y13{bottom:616.640000pt;}
.y12{bottom:635.840000pt;}
.y11{bottom:655.360000pt;}
.y10{bottom:674.560000pt;}
.yf{bottom:694.080000pt;}
.ye{bottom:713.600000pt;}
.yd{bottom:732.800000pt;}
.yc{bottom:752.320000pt;}
.yb{bottom:771.840000pt;}
.ya{bottom:791.040000pt;}
.y9{bottom:810.560000pt;}
.y8{bottom:829.760000pt;}
.y7{bottom:849.280000pt;}
.y6{bottom:868.800000pt;}
.y5{bottom:888.000000pt;}
.y4{bottom:907.520000pt;}
.y3{bottom:926.720000pt;}
.y2{bottom:946.240000pt;}
.y1{bottom:994.240000pt;}
.h2{height:42.866250pt;}
.h1{height:42.923750pt;}
.h3{height:51.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x3{left:120.000000pt;}
.x4{left:144.000000pt;}
.x5{left:168.000000pt;}
.x6{left:192.000000pt;}
.x1{left:711.843200pt;}
}




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