
    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_c49e6d3ed43c276d48d43298.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_af73a2d78808cb8bec86ae81.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eb8fcbb7f94820e208e27a32.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bd755d54dd492eec2c73cff1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_a9b6d5821fcd10b5c9518ea7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947000;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;}
.m1{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);}
.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);}
.v10{vertical-align:-12.960000px;}
.v14{vertical-align:-7.200000px;}
.v13{vertical-align:-5.760000px;}
.v12{vertical-align:-4.320000px;}
.va{vertical-align:-2.880000px;}
.v11{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440000px;}
.v3{vertical-align:2.880000px;}
.v2{vertical-align:4.320000px;}
.v6{vertical-align:5.760000px;}
.v9{vertical-align:7.200000px;}
.v5{vertical-align:8.640000px;}
.ve{vertical-align:10.080000px;}
.v7{vertical-align:11.520000px;}
.v8{vertical-align:12.960000px;}
.vf{vertical-align:14.400000px;}
.v4{vertical-align:15.840000px;}
.vb{vertical-align:17.280000px;}
.vc{vertical-align:18.720000px;}
.vd{vertical-align:20.160000px;}
.ls0{letter-spacing:0.000000px;}
.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:0.000000px;}
._4{width:1.800000px;}
._1{width:2.823000px;}
._5{width:4.332000px;}
._6{width:5.424000px;}
._3{width:6.732000px;}
._2{width:8.022000px;}
._8{width:9.489000px;}
._0{width:10.800000px;}
._b{width:12.306000px;}
._c{width:13.398000px;}
._9{width:14.577000px;}
._7{width:16.695000px;}
._a{width:26.130000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs8{font-size:15.000000px;}
.fsc{font-size:30.000000px;}
.fsa{font-size:33.000000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fse{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:31.076250px;}
.y13{bottom:90.476250px;}
.y3f{bottom:94.796250px;}
.y12{bottom:104.516250px;}
.y3e{bottom:110.996250px;}
.y11{bottom:118.916250px;}
.y3d{bottom:127.556250px;}
.y1b{bottom:130.076250px;}
.y3c{bottom:143.756250px;}
.y10{bottom:147.716250px;}
.y1a{bottom:149.516250px;}
.y3b{bottom:160.676250px;}
.yf{bottom:175.796250px;}
.ye{bottom:190.916250px;}
.y3a{bottom:227.996250px;}
.yd{bottom:236.276250px;}
.y39{bottom:246.716250px;}
.yc{bottom:251.756250px;}
.y38{bottom:264.356250px;}
.yb{bottom:266.156250px;}
.ya{bottom:280.916250px;}
.y37{bottom:282.716250px;}
.y9{bottom:295.676250px;}
.y36{bottom:300.716250px;}
.y8{bottom:310.796250px;}
.y35{bottom:318.356250px;}
.y7{bottom:325.916250px;}
.y34{bottom:336.716250px;}
.y6{bottom:341.036250px;}
.y33{bottom:355.076250px;}
.y5{bottom:356.156250px;}
.y4{bottom:371.276250px;}
.y32{bottom:373.076250px;}
.y31{bottom:391.436250px;}
.y30{bottom:409.796250px;}
.y3{bottom:416.996250px;}
.y2f{bottom:427.436250px;}
.y2e{bottom:445.796250px;}
.y2{bottom:446.876250px;}
.y2d{bottom:463.796250px;}
.y1{bottom:468.116250px;}
.y2c{bottom:481.796250px;}
.y18{bottom:490.456500px;}
.y17{bottom:492.256500px;}
.y14{bottom:499.096500px;}
.y15{bottom:499.456500px;}
.y2b{bottom:499.796250px;}
.y2a{bottom:518.156250px;}
.y29{bottom:536.156250px;}
.y16{bottom:547.336500px;}
.y19{bottom:548.416500px;}
.y28{bottom:554.516250px;}
.y27{bottom:572.156250px;}
.y26{bottom:590.156250px;}
.y25{bottom:608.156250px;}
.y24{bottom:626.156250px;}
.y23{bottom:644.516250px;}
.y22{bottom:662.516250px;}
.y21{bottom:680.516250px;}
.y20{bottom:698.876250px;}
.y1f{bottom:717.236250px;}
.y1e{bottom:735.236250px;}
.y1d{bottom:753.596250px;}
.y1c{bottom:771.596250px;}
.y43{bottom:861.135750px;}
.y42{bottom:879.135750px;}
.y41{bottom:897.135750px;}
.h19{height:31.289062px;}
.h2b{height:42.840000px;}
.h17{height:43.804688px;}
.h10{height:45.244687px;}
.h28{height:46.933594px;}
.he{height:49.813594px;}
.hf{height:50.062500px;}
.h11{height:51.253594px;}
.h29{height:51.751406px;}
.h1a{height:53.191406px;}
.h6{height:54.631406px;}
.h1c{height:54.880313px;}
.h1d{height:58.009219px;}
.ha{height:59.449219px;}
.h23{height:59.698125px;}
.h14{height:59.893594px;}
.h20{height:59.947031px;}
.h8{height:60.391406px;}
.h22{height:60.889219px;}
.h1e{height:61.138125px;}
.h26{height:61.387031px;}
.h9{height:62.578125px;}
.h21{height:62.827031px;}
.h27{height:63.075938px;}
.h25{height:64.018125px;}
.h24{height:64.267031px;}
.h1f{height:65.458125px;}
.hd{height:65.653594px;}
.hc{height:66.151406px;}
.h13{height:67.342500px;}
.hb{height:68.533594px;}
.h12{height:68.782500px;}
.h2a{height:68.835938px;}
.h7{height:73.155937px;}
.h18{height:93.867188px;}
.h2{height:917.892750px;}
.h3{height:918.000000px;}
.h4{height:922.143750px;}
.h5{height:922.500000px;}
.h16{height:926.250000px;}
.h1b{height:926.396250px;}
.h15{height:926.396700px;}
.h0{height:947.656050px;}
.h1{height:948.000000px;}
.w5{width:1023.750000px;}
.w4{width:1024.072335px;}
.w7{width:1028.250000px;}
.w6{width:1028.323650px;}
.w3{width:1049.250000px;}
.w2{width:1049.584500px;}
.w1{width:1113.000000px;}
.w0{width:1113.324000px;}
.x0{left:0.000000px;}
.x1{left:102.960000px;}
.x2{left:104.040000px;}
.x4{left:105.480000px;}
.x3{left:116.640000px;}
.xb{left:153.408150px;}
.xd{left:260.328150px;}
.xc{left:261.768150px;}
.x14{left:263.454150px;}
.x5{left:366.839985px;}
.x8{left:373.679985px;}
.x6{left:376.559985px;}
.x9{left:386.279985px;}
.x13{left:486.768150px;}
.x12{left:650.928150px;}
.x7{left:680.039985px;}
.x11{left:711.048150px;}
.xe{left:753.528150px;}
.x10{left:791.688150px;}
.xf{left:812.568150px;}
.xa{left:881.639985px;}
@media print{
.v10{vertical-align:-11.520000pt;}
.v14{vertical-align:-6.400000pt;}
.v13{vertical-align:-5.120000pt;}
.v12{vertical-align:-3.840000pt;}
.va{vertical-align:-2.560000pt;}
.v11{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.v3{vertical-align:2.560000pt;}
.v2{vertical-align:3.840000pt;}
.v6{vertical-align:5.120000pt;}
.v9{vertical-align:6.400000pt;}
.v5{vertical-align:7.680000pt;}
.ve{vertical-align:8.960000pt;}
.v7{vertical-align:10.240000pt;}
.v8{vertical-align:11.520000pt;}
.vf{vertical-align:12.800000pt;}
.v4{vertical-align:14.080000pt;}
.vb{vertical-align:15.360000pt;}
.vc{vertical-align:16.640000pt;}
.vd{vertical-align:17.920000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._4{width:1.600000pt;}
._1{width:2.509333pt;}
._5{width:3.850667pt;}
._6{width:4.821333pt;}
._3{width:5.984000pt;}
._2{width:7.130667pt;}
._8{width:8.434667pt;}
._0{width:9.600000pt;}
._b{width:10.938667pt;}
._c{width:11.909333pt;}
._9{width:12.957333pt;}
._7{width:14.840000pt;}
._a{width:23.226667pt;}
.fs8{font-size:13.333333pt;}
.fsc{font-size:26.666667pt;}
.fsa{font-size:29.333333pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:27.623333pt;}
.y13{bottom:80.423333pt;}
.y3f{bottom:84.263333pt;}
.y12{bottom:92.903333pt;}
.y3e{bottom:98.663333pt;}
.y11{bottom:105.703333pt;}
.y3d{bottom:113.383333pt;}
.y1b{bottom:115.623333pt;}
.y3c{bottom:127.783333pt;}
.y10{bottom:131.303333pt;}
.y1a{bottom:132.903333pt;}
.y3b{bottom:142.823333pt;}
.yf{bottom:156.263333pt;}
.ye{bottom:169.703333pt;}
.y3a{bottom:202.663333pt;}
.yd{bottom:210.023333pt;}
.y39{bottom:219.303333pt;}
.yc{bottom:223.783333pt;}
.y38{bottom:234.983333pt;}
.yb{bottom:236.583333pt;}
.ya{bottom:249.703333pt;}
.y37{bottom:251.303333pt;}
.y9{bottom:262.823333pt;}
.y36{bottom:267.303333pt;}
.y8{bottom:276.263333pt;}
.y35{bottom:282.983333pt;}
.y7{bottom:289.703333pt;}
.y34{bottom:299.303333pt;}
.y6{bottom:303.143333pt;}
.y33{bottom:315.623333pt;}
.y5{bottom:316.583333pt;}
.y4{bottom:330.023333pt;}
.y32{bottom:331.623333pt;}
.y31{bottom:347.943333pt;}
.y30{bottom:364.263333pt;}
.y3{bottom:370.663333pt;}
.y2f{bottom:379.943333pt;}
.y2e{bottom:396.263333pt;}
.y2{bottom:397.223333pt;}
.y2d{bottom:412.263333pt;}
.y1{bottom:416.103333pt;}
.y2c{bottom:428.263333pt;}
.y18{bottom:435.961333pt;}
.y17{bottom:437.561333pt;}
.y14{bottom:443.641333pt;}
.y15{bottom:443.961333pt;}
.y2b{bottom:444.263333pt;}
.y2a{bottom:460.583333pt;}
.y29{bottom:476.583333pt;}
.y16{bottom:486.521333pt;}
.y19{bottom:487.481333pt;}
.y28{bottom:492.903333pt;}
.y27{bottom:508.583333pt;}
.y26{bottom:524.583333pt;}
.y25{bottom:540.583333pt;}
.y24{bottom:556.583333pt;}
.y23{bottom:572.903333pt;}
.y22{bottom:588.903333pt;}
.y21{bottom:604.903333pt;}
.y20{bottom:621.223333pt;}
.y1f{bottom:637.543333pt;}
.y1e{bottom:653.543333pt;}
.y1d{bottom:669.863333pt;}
.y1c{bottom:685.863333pt;}
.y43{bottom:765.454000pt;}
.y42{bottom:781.454000pt;}
.y41{bottom:797.454000pt;}
.h19{height:27.812500pt;}
.h2b{height:38.080000pt;}
.h17{height:38.937500pt;}
.h10{height:40.217500pt;}
.h28{height:41.718750pt;}
.he{height:44.278750pt;}
.hf{height:44.500000pt;}
.h11{height:45.558750pt;}
.h29{height:46.001250pt;}
.h1a{height:47.281250pt;}
.h6{height:48.561250pt;}
.h1c{height:48.782500pt;}
.h1d{height:51.563750pt;}
.ha{height:52.843750pt;}
.h23{height:53.065000pt;}
.h14{height:53.238750pt;}
.h20{height:53.286250pt;}
.h8{height:53.681250pt;}
.h22{height:54.123750pt;}
.h1e{height:54.345000pt;}
.h26{height:54.566250pt;}
.h9{height:55.625000pt;}
.h21{height:55.846250pt;}
.h27{height:56.067500pt;}
.h25{height:56.905000pt;}
.h24{height:57.126250pt;}
.h1f{height:58.185000pt;}
.hd{height:58.358750pt;}
.hc{height:58.801250pt;}
.h13{height:59.860000pt;}
.hb{height:60.918750pt;}
.h12{height:61.140000pt;}
.h2a{height:61.187500pt;}
.h7{height:65.027500pt;}
.h18{height:83.437500pt;}
.h2{height:815.904667pt;}
.h3{height:816.000000pt;}
.h4{height:819.683333pt;}
.h5{height:820.000000pt;}
.h16{height:823.333333pt;}
.h1b{height:823.463333pt;}
.h15{height:823.463733pt;}
.h0{height:842.360933pt;}
.h1{height:842.666667pt;}
.w5{width:910.000000pt;}
.w4{width:910.286520pt;}
.w7{width:914.000000pt;}
.w6{width:914.065467pt;}
.w3{width:932.666667pt;}
.w2{width:932.964000pt;}
.w1{width:989.333333pt;}
.w0{width:989.621333pt;}
.x0{left:0.000000pt;}
.x1{left:91.520000pt;}
.x2{left:92.480000pt;}
.x4{left:93.760000pt;}
.x3{left:103.680000pt;}
.xb{left:136.362800pt;}
.xd{left:231.402800pt;}
.xc{left:232.682800pt;}
.x14{left:234.181467pt;}
.x5{left:326.079987pt;}
.x8{left:332.159987pt;}
.x6{left:334.719987pt;}
.x9{left:343.359987pt;}
.x13{left:432.682800pt;}
.x12{left:578.602800pt;}
.x7{left:604.479987pt;}
.x11{left:632.042800pt;}
.xe{left:669.802800pt;}
.x10{left:703.722800pt;}
.xf{left:722.282800pt;}
.xa{left:783.679987pt;}
}




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