
    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_01d105a45f89e05d8b4ea78d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166000;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_292238198f2f8c572067cff1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.868000;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_50a50ccd2e1a1d5435d1f240.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080000;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_0d10e0ffce68356b5cc1428a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.066000;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_5a1516bbe6668ca18cae2f4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_bdbfb9b18d6b777eed67b88a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.166000;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:ff8;src:url('chunks/assets/font_d9b36f68f73410472384694f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.872000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{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);}
.m2{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;}
.lsd{letter-spacing:-2.424000px;}
.lse{letter-spacing:-2.394000px;}
.lsb{letter-spacing:-1.962000px;}
.ls11{letter-spacing:-1.956000px;}
.ls4{letter-spacing:-1.398000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.021150px;}
.ls7{letter-spacing:0.690000px;}
.lsf{letter-spacing:0.810000px;}
.ls10{letter-spacing:1.194000px;}
.ls1{letter-spacing:2.076000px;}
.lsc{letter-spacing:2.352000px;}
.ls8{letter-spacing:22.094100px;}
.lsa{letter-spacing:47.725650px;}
.ls9{letter-spacing:49.994100px;}
.ls2{letter-spacing:75.625650px;}
.ls5{letter-spacing:75.775650px;}
.ls6{letter-spacing:102.775650px;}
.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;}
}
.ws8{word-spacing:-14.310000px;}
.ws4{word-spacing:-14.082000px;}
.ws2{word-spacing:-13.806000px;}
.ws7{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.730000px;}
.ws9{word-spacing:-11.544000px;}
.ws6{word-spacing:-11.106000px;}
.ws5{word-spacing:-9.306000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:106.955100px;}
._c{margin-left:-4965.002100px;}
._6{margin-left:-4960.549050px;}
._a{margin-left:-8.435700px;}
._9{margin-left:-6.227250px;}
._4{margin-left:-4.123500px;}
._5{margin-left:-2.328450px;}
._3{margin-left:-1.073700px;}
._0{width:1.777500px;}
._2{width:2.925000px;}
._7{width:4.177050px;}
._1{width:5.827500px;}
._b{width:29.970300px;}
._8{width:410.670000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(217,217,217);}
.fs0{font-size:22.500000px;}
.fs1{font-size:58.650000px;}
.fs9{font-size:67.500000px;}
.fs8{font-size:67.650000px;}
.fs2{font-size:76.650000px;}
.fs7{font-size:108.150000px;}
.fs4{font-size:121.650000px;}
.fs5{font-size:144.300000px;}
.fs3{font-size:180.300000px;}
.fs6{font-size:265.950000px;}
.y0{bottom:0.000000px;}
.y2{bottom:36.600000px;}
.y46{bottom:73.612500px;}
.y4d{bottom:77.400000px;}
.y1{bottom:97.800000px;}
.y28{bottom:104.325000px;}
.y45{bottom:107.400000px;}
.y4c{bottom:125.850000px;}
.y27{bottom:136.987500px;}
.y4b{bottom:145.012500px;}
.y1b{bottom:145.987500px;}
.y44{bottom:170.505000px;}
.y26{bottom:170.775000px;}
.y1a{bottom:178.650000px;}
.y43{bottom:204.300000px;}
.y37{bottom:206.820000px;}
.y25{bottom:231.600000px;}
.y36{bottom:255.255000px;}
.y24{bottom:264.270000px;}
.y42{bottom:267.375000px;}
.y19{bottom:275.550000px;}
.y2e{bottom:278.925000px;}
.y11{bottom:294.720000px;}
.y23{bottom:296.970000px;}
.y41{bottom:301.200000px;}
.y18{bottom:308.220000px;}
.y2d{bottom:311.595000px;}
.y35{bottom:325.125000px;}
.y22{bottom:330.750000px;}
.y40{bottom:333.870000px;}
.y10{bottom:345.375000px;}
.y34{bottom:364.530000px;}
.y17{bottom:378.075000px;}
.yf{bottom:379.200000px;}
.y2c{bottom:381.450000px;}
.y21{bottom:390.450000px;}
.y3f{bottom:398.070000px;}
.y16{bottom:410.730000px;}
.y5{bottom:411.870000px;}
.y33{bottom:412.995000px;}
.y2b{bottom:414.105000px;}
.y20{bottom:423.120000px;}
.ye{bottom:429.870000px;}
.y3e{bottom:430.725000px;}
.y2a{bottom:447.900000px;}
.y1f{bottom:456.900000px;}
.y4{bottom:462.570000px;}
.y7{bottom:467.070000px;}
.yd{bottom:480.570000px;}
.y32{bottom:481.695000px;}
.y1e{bottom:489.600000px;}
.y4a{bottom:492.975000px;}
.y3d{bottom:494.970000px;}
.y15{bottom:513.255000px;}
.y1d{bottom:522.255000px;}
.y3c{bottom:527.625000px;}
.y31{bottom:530.130000px;}
.yc{bottom:532.380000px;}
.y14{bottom:545.925000px;}
.y1c{bottom:556.050000px;}
.y3b{bottom:561.405000px;}
.yb{bottom:565.050000px;}
.y29{bottom:583.095000px;}
.y3a{bottom:595.200000px;}
.ya{bottom:597.750000px;}
.y30{bottom:600.000000px;}
.y49{bottom:604.500000px;}
.y13{bottom:615.750000px;}
.y2f{bottom:633.780000px;}
.y48{bottom:641.655000px;}
.y12{bottom:648.450000px;}
.y9{bottom:649.575000px;}
.y39{bottom:658.320000px;}
.y47{bottom:678.870000px;}
.y8{bottom:682.245000px;}
.y38{bottom:692.100000px;}
.y3{bottom:739.380000px;}
.y6{bottom:748.380000px;}
.h1{height:19.665000px;}
.h2{height:50.204400px;}
.h8{height:51.260100px;}
.hb{height:58.995000px;}
.ha{height:59.126100px;}
.h3{height:66.148950px;}
.h9{height:94.523100px;}
.h5{height:106.322100px;}
.h6{height:123.376500px;}
.h4{height:154.156500px;}
.h7{height:232.440300px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:31.912479px;}
.x7{left:58.874979px;}
.x6{left:65.849979px;}
.x8{left:86.137479px;}
.xa{left:255.194979px;}
.x4{left:274.799979px;}
.x3{left:285.119979px;}
.x9{left:1394.324979px;}
.x5{left:1401.674979px;}
.x1{left:1448.444979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-2.154667pt;}
.lse{letter-spacing:-2.128000pt;}
.lsb{letter-spacing:-1.744000pt;}
.ls11{letter-spacing:-1.738667pt;}
.ls4{letter-spacing:-1.242667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.018800pt;}
.ls7{letter-spacing:0.613333pt;}
.lsf{letter-spacing:0.720000pt;}
.ls10{letter-spacing:1.061333pt;}
.ls1{letter-spacing:1.845333pt;}
.lsc{letter-spacing:2.090667pt;}
.ls8{letter-spacing:19.639200pt;}
.lsa{letter-spacing:42.422800pt;}
.ls9{letter-spacing:44.439200pt;}
.ls2{letter-spacing:67.222800pt;}
.ls5{letter-spacing:67.356133pt;}
.ls6{letter-spacing:91.356133pt;}
.ws8{word-spacing:-12.720000pt;}
.ws4{word-spacing:-12.517333pt;}
.ws2{word-spacing:-12.272000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.426667pt;}
.ws9{word-spacing:-10.261333pt;}
.ws6{word-spacing:-9.872000pt;}
.ws5{word-spacing:-8.272000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:95.071200pt;}
._c{margin-left:-4413.335200pt;}
._6{margin-left:-4409.376933pt;}
._a{margin-left:-7.498400pt;}
._9{margin-left:-5.535333pt;}
._4{margin-left:-3.665333pt;}
._5{margin-left:-2.069733pt;}
._3{margin-left:-0.954400pt;}
._0{width:1.580000pt;}
._2{width:2.600000pt;}
._7{width:3.712933pt;}
._1{width:5.180000pt;}
._b{width:26.640267pt;}
._8{width:365.040000pt;}
.fs0{font-size:20.000000pt;}
.fs1{font-size:52.133333pt;}
.fs9{font-size:60.000000pt;}
.fs8{font-size:60.133333pt;}
.fs2{font-size:68.133333pt;}
.fs7{font-size:96.133333pt;}
.fs4{font-size:108.133333pt;}
.fs5{font-size:128.266667pt;}
.fs3{font-size:160.266667pt;}
.fs6{font-size:236.400000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:32.533333pt;}
.y46{bottom:65.433333pt;}
.y4d{bottom:68.800000pt;}
.y1{bottom:86.933333pt;}
.y28{bottom:92.733333pt;}
.y45{bottom:95.466667pt;}
.y4c{bottom:111.866667pt;}
.y27{bottom:121.766667pt;}
.y4b{bottom:128.900000pt;}
.y1b{bottom:129.766667pt;}
.y44{bottom:151.560000pt;}
.y26{bottom:151.800000pt;}
.y1a{bottom:158.800000pt;}
.y43{bottom:181.600000pt;}
.y37{bottom:183.840000pt;}
.y25{bottom:205.866667pt;}
.y36{bottom:226.893333pt;}
.y24{bottom:234.906667pt;}
.y42{bottom:237.666667pt;}
.y19{bottom:244.933333pt;}
.y2e{bottom:247.933333pt;}
.y11{bottom:261.973333pt;}
.y23{bottom:263.973333pt;}
.y41{bottom:267.733333pt;}
.y18{bottom:273.973333pt;}
.y2d{bottom:276.973333pt;}
.y35{bottom:289.000000pt;}
.y22{bottom:294.000000pt;}
.y40{bottom:296.773333pt;}
.y10{bottom:307.000000pt;}
.y34{bottom:324.026667pt;}
.y17{bottom:336.066667pt;}
.yf{bottom:337.066667pt;}
.y2c{bottom:339.066667pt;}
.y21{bottom:347.066667pt;}
.y3f{bottom:353.840000pt;}
.y16{bottom:365.093333pt;}
.y5{bottom:366.106667pt;}
.y33{bottom:367.106667pt;}
.y2b{bottom:368.093333pt;}
.y20{bottom:376.106667pt;}
.ye{bottom:382.106667pt;}
.y3e{bottom:382.866667pt;}
.y2a{bottom:398.133333pt;}
.y1f{bottom:406.133333pt;}
.y4{bottom:411.173333pt;}
.y7{bottom:415.173333pt;}
.yd{bottom:427.173333pt;}
.y32{bottom:428.173333pt;}
.y1e{bottom:435.200000pt;}
.y4a{bottom:438.200000pt;}
.y3d{bottom:439.973333pt;}
.y15{bottom:456.226667pt;}
.y1d{bottom:464.226667pt;}
.y3c{bottom:469.000000pt;}
.y31{bottom:471.226667pt;}
.yc{bottom:473.226667pt;}
.y14{bottom:485.266667pt;}
.y1c{bottom:494.266667pt;}
.y3b{bottom:499.026667pt;}
.yb{bottom:502.266667pt;}
.y29{bottom:518.306667pt;}
.y3a{bottom:529.066667pt;}
.ya{bottom:531.333333pt;}
.y30{bottom:533.333333pt;}
.y49{bottom:537.333333pt;}
.y13{bottom:547.333333pt;}
.y2f{bottom:563.360000pt;}
.y48{bottom:570.360000pt;}
.y12{bottom:576.400000pt;}
.y9{bottom:577.400000pt;}
.y39{bottom:585.173333pt;}
.y47{bottom:603.440000pt;}
.y8{bottom:606.440000pt;}
.y38{bottom:615.200000pt;}
.y3{bottom:657.226667pt;}
.y6{bottom:665.226667pt;}
.h1{height:17.480000pt;}
.h2{height:44.626133pt;}
.h8{height:45.564533pt;}
.hb{height:52.440000pt;}
.ha{height:52.556533pt;}
.h3{height:58.799067pt;}
.h9{height:84.020533pt;}
.h5{height:94.508533pt;}
.h6{height:109.668000pt;}
.h4{height:137.028000pt;}
.h7{height:206.613600pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:28.366648pt;}
.x7{left:52.333314pt;}
.x6{left:58.533314pt;}
.x8{left:76.566648pt;}
.xa{left:226.839981pt;}
.x4{left:244.266648pt;}
.x3{left:253.439981pt;}
.x9{left:1239.399981pt;}
.x5{left:1245.933314pt;}
.x1{left:1287.506648pt;}
}




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