
    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_7464ac09c6a4c01c20e6e0b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_dc0e82e8f1882033c45bd491.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_eb44b6d2e2dc82ab2e012acd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056000;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_0785024ab34f39c90ccc2413.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713867;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_3d6d929c2ac27846b79fba30.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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);}
.v3{vertical-align:-9.529200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:38.117400px;}
.v1{vertical-align:42.882600px;}
.lsc{letter-spacing:-0.012388px;}
.ls7{letter-spacing:-0.010163px;}
.lsd{letter-spacing:-0.006194px;}
.ls8{letter-spacing:-0.005082px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000010px;}
.ls3{letter-spacing:0.000024px;}
.ls2{letter-spacing:0.000310px;}
.ls4{letter-spacing:0.002207px;}
.ls0{letter-spacing:0.005082px;}
.ls9{letter-spacing:0.009434px;}
.ls1{letter-spacing:0.010163px;}
.lsa{letter-spacing:0.010840px;}
.lsb{letter-spacing:0.012388px;}
.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;}
}
.ws17{word-spacing:-16.117093px;}
.ws15{word-spacing:-16.104705px;}
.ws9{word-spacing:-13.211978px;}
.ws12{word-spacing:-0.061941px;}
.ws6{word-spacing:-0.050815px;}
.ws10{word-spacing:0.000000px;}
.ws1{word-spacing:140.125124px;}
.ws0{word-spacing:140.374008px;}
.wsc{word-spacing:153.718217px;}
.ws3{word-spacing:249.332173px;}
.ws4{word-spacing:266.416277px;}
.ws5{word-spacing:277.148468px;}
.wsa{word-spacing:293.317896px;}
.ws8{word-spacing:296.153390px;}
.wse{word-spacing:296.305836px;}
.wsb{word-spacing:311.596159px;}
.ws11{word-spacing:359.248986px;}
.ws7{word-spacing:455.330446px;}
.wsf{word-spacing:474.237275px;}
.ws14{word-spacing:601.095056px;}
.ws16{word-spacing:622.363134px;}
.ws13{word-spacing:664.395394px;}
.ws2{word-spacing:911.538910px;}
.wsd{word-spacing:1061.383064px;}
._1{width:106.307543px;}
._c{width:110.964195px;}
._3{width:139.083411px;}
._b{width:166.930195px;}
._d{width:179.412403px;}
._e{width:191.811336px;}
._9{width:202.988620px;}
._8{width:260.086661px;}
._0{width:261.172138px;}
._5{width:284.902882px;}
._12{width:309.141780px;}
._f{width:311.276023px;}
._4{width:326.522694px;}
._11{width:343.240928px;}
._14{width:388.327127px;}
._16{width:466.249122px;}
._17{width:501.679473px;}
._18{width:532.712001px;}
._7{width:546.552940px;}
._2{width:572.926081px;}
._13{width:593.893951px;}
._a{width:634.514224px;}
._15{width:645.069748px;}
._19{width:680.487711px;}
._6{width:693.256710px;}
._10{width:850.275985px;}
._1a{width:1943.594765px;}
._1b{width:2087.546050px;}
._1c{width:2390.364056px;}
.fc2{color:transparent;}
.fc1{color:rgb(65,131,196);}
.fc0{color:rgb(51,51,51);}
.fs0{font-size:50.815299px;}
.fs2{font-size:61.941173px;}
.fs3{font-size:108.397052px;}
.fs1{font-size:139.367639px;}
.y1f{bottom:-26.205885px;}
.y0{bottom:0.000000px;}
.y3e{bottom:5.955870px;}
.y3d{bottom:30.970575px;}
.y1e{bottom:45.264705px;}
.y3c{bottom:63.132345px;}
.y1{bottom:68.095605px;}
.y20{bottom:78.816195px;}
.y1d{bottom:81.000000px;}
.y3b{bottom:95.294055px;}
.y1c{bottom:117.926445px;}
.y3a{bottom:120.308805px;}
.y39{bottom:151.279455px;}
.y1b{bottom:153.661695px;}
.y38{bottom:176.294055px;}
.y1a{bottom:190.588245px;}
.y37{bottom:208.455855px;}
.y19{bottom:226.323495px;}
.y36{bottom:241.808805px;}
.y18{bottom:262.058745px;}
.y35{bottom:282.308805px;}
.y17{bottom:298.985295px;}
.y34{bottom:329.955855px;}
.y16{bottom:334.720545px;}
.y33{bottom:353.779455px;}
.y13{bottom:384.750045px;}
.y32{bottom:387.132405px;}
.y12{bottom:418.102995px;}
.y31{bottom:419.294055px;}
.y11{bottom:450.264645px;}
.y30{bottom:450.264705px;}
.y10{bottom:460.985295px;}
.y2f{bottom:475.279455px;}
.yf{bottom:503.867595px;}
.y2e{bottom:507.441105px;}
.y2d{bottom:532.455855px;}
.ye{bottom:537.220545px;}
.yd{bottom:547.941195px;}
.y2c{bottom:564.617655px;}
.yc{bottom:590.823495px;}
.y2b{bottom:605.117655px;}
.yb{bottom:624.176445px;}
.ya{bottom:633.705795px;}
.y29{bottom:663.485205px;}
.y9{bottom:677.779395px;}
.y28{bottom:687.308805px;}
.y8{bottom:709.941195px;}
.y27{bottom:726.617655px;}
.y7{bottom:743.294145px;}
.y26{bottom:765.926505px;}
.y6{bottom:776.647095px;}
.y25{bottom:805.235205px;}
.y5{bottom:810.000045px;}
.y4{bottom:843.352845px;}
.y24{bottom:844.544055px;}
.y3{bottom:876.705795px;}
.y23{bottom:883.852905px;}
.y2{bottom:908.867595px;}
.y22{bottom:923.161755px;}
.y15{bottom:958.897095px;}
.y21{bottom:962.470605px;}
.y14{bottom:1000.588245px;}
.y2a{bottom:1014.882255px;}
.h2{height:38.880651px;}
.h6{height:44.217771px;}
.h9{height:47.393466px;}
.h4{height:76.998051px;}
.h3{height:81.763251px;}
.h7{height:82.938565px;}
.h5{height:106.635298px;}
.h8{height:1041.088200px;}
.h1{height:1051.808850px;}
.h0{height:1188.000000px;}
.w1{width:810.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:2.382345px;}
.x2{left:16.266990px;}
.x7{left:19.058820px;}
.xa{left:50.029410px;}
.x1{left:54.000015px;}
.x4{left:175.810185px;}
.x8{left:195.613485px;}
.x9{left:387.560385px;}
.x3{left:480.062685px;}
.x6{left:806.426385px;}
@media print{
.v3{vertical-align:-8.470400pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:33.882133pt;}
.v1{vertical-align:38.117867pt;}
.lsc{letter-spacing:-0.011012pt;}
.ls7{letter-spacing:-0.009034pt;}
.lsd{letter-spacing:-0.005506pt;}
.ls8{letter-spacing:-0.004517pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000009pt;}
.ls3{letter-spacing:0.000021pt;}
.ls2{letter-spacing:0.000275pt;}
.ls4{letter-spacing:0.001962pt;}
.ls0{letter-spacing:0.004517pt;}
.ls9{letter-spacing:0.008386pt;}
.ls1{letter-spacing:0.009034pt;}
.lsa{letter-spacing:0.009635pt;}
.lsb{letter-spacing:0.011012pt;}
.ws17{word-spacing:-14.326305pt;}
.ws15{word-spacing:-14.315293pt;}
.ws9{word-spacing:-11.743980pt;}
.ws12{word-spacing:-0.055059pt;}
.ws6{word-spacing:-0.045169pt;}
.ws10{word-spacing:0.000000pt;}
.ws1{word-spacing:124.555666pt;}
.ws0{word-spacing:124.776896pt;}
.wsc{word-spacing:136.638415pt;}
.ws3{word-spacing:221.628598pt;}
.ws4{word-spacing:236.814468pt;}
.ws5{word-spacing:246.354194pt;}
.wsa{word-spacing:260.727019pt;}
.ws8{word-spacing:263.247458pt;}
.wse{word-spacing:263.382965pt;}
.wsb{word-spacing:276.974364pt;}
.ws11{word-spacing:319.332432pt;}
.ws7{word-spacing:404.738175pt;}
.wsf{word-spacing:421.544244pt;}
.ws14{word-spacing:534.306716pt;}
.ws16{word-spacing:553.211675pt;}
.ws13{word-spacing:590.573684pt;}
.ws2{word-spacing:810.256808pt;}
.wsd{word-spacing:943.451613pt;}
._1{width:94.495594pt;}
._c{width:98.634840pt;}
._3{width:123.629699pt;}
._b{width:148.382395pt;}
._d{width:159.477691pt;}
._e{width:170.498965pt;}
._9{width:180.434329pt;}
._8{width:231.188143pt;}
._0{width:232.153011pt;}
._5{width:253.247007pt;}
._12{width:274.792694pt;}
._f{width:276.689798pt;}
._4{width:290.242395pt;}
._11{width:305.103047pt;}
._14{width:345.179669pt;}
._16{width:414.443664pt;}
._17{width:445.937310pt;}
._18{width:473.521779pt;}
._7{width:485.824836pt;}
._2{width:509.267627pt;}
._13{width:527.905735pt;}
._a{width:564.012643pt;}
._15{width:573.395332pt;}
._19{width:604.877965pt;}
._6{width:616.228186pt;}
._10{width:755.800875pt;}
._1a{width:1727.639791pt;}
._1b{width:1855.596489pt;}
._1c{width:2124.768050pt;}
.fs0{font-size:45.169155pt;}
.fs2{font-size:55.058820pt;}
.fs3{font-size:96.352935pt;}
.fs1{font-size:123.882346pt;}
.y1f{bottom:-23.294120pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:5.294107pt;}
.y3d{bottom:27.529400pt;}
.y1e{bottom:40.235293pt;}
.y3c{bottom:56.117640pt;}
.y1{bottom:60.529427pt;}
.y20{bottom:70.058840pt;}
.y1d{bottom:72.000000pt;}
.y3b{bottom:84.705827pt;}
.y1c{bottom:104.823507pt;}
.y3a{bottom:106.941160pt;}
.y39{bottom:134.470627pt;}
.y1b{bottom:136.588173pt;}
.y38{bottom:156.705827pt;}
.y1a{bottom:169.411773pt;}
.y37{bottom:185.294093pt;}
.y19{bottom:201.176440pt;}
.y36{bottom:214.941160pt;}
.y18{bottom:232.941107pt;}
.y35{bottom:250.941160pt;}
.y17{bottom:265.764707pt;}
.y34{bottom:293.294093pt;}
.y16{bottom:297.529373pt;}
.y33{bottom:314.470627pt;}
.y13{bottom:342.000040pt;}
.y32{bottom:344.117693pt;}
.y12{bottom:371.647107pt;}
.y31{bottom:372.705827pt;}
.y11{bottom:400.235240pt;}
.y30{bottom:400.235293pt;}
.y10{bottom:409.764707pt;}
.y2f{bottom:422.470627pt;}
.yf{bottom:447.882307pt;}
.y2e{bottom:451.058760pt;}
.y2d{bottom:473.294093pt;}
.ye{bottom:477.529373pt;}
.yd{bottom:487.058840pt;}
.y2c{bottom:501.882360pt;}
.yc{bottom:525.176440pt;}
.y2b{bottom:537.882360pt;}
.yb{bottom:554.823507pt;}
.ya{bottom:563.294040pt;}
.y29{bottom:589.764627pt;}
.y9{bottom:602.470573pt;}
.y28{bottom:610.941160pt;}
.y8{bottom:631.058840pt;}
.y27{bottom:645.882360pt;}
.y7{bottom:660.705907pt;}
.y26{bottom:680.823560pt;}
.y6{bottom:690.352973pt;}
.y25{bottom:715.764627pt;}
.y5{bottom:720.000040pt;}
.y4{bottom:749.646973pt;}
.y24{bottom:750.705827pt;}
.y3{bottom:779.294040pt;}
.y23{bottom:785.647027pt;}
.y2{bottom:807.882307pt;}
.y22{bottom:820.588227pt;}
.y15{bottom:852.352973pt;}
.y21{bottom:855.529427pt;}
.y14{bottom:889.411773pt;}
.y2a{bottom:902.117560pt;}
.h2{height:34.560579pt;}
.h6{height:39.304685pt;}
.h9{height:42.127525pt;}
.h4{height:68.442712pt;}
.h3{height:72.678446pt;}
.h7{height:73.723169pt;}
.h5{height:94.786931pt;}
.h8{height:925.411733pt;}
.h1{height:934.941200pt;}
.h0{height:1056.000000pt;}
.w1{width:720.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:2.117640pt;}
.x2{left:14.459547pt;}
.x7{left:16.941173pt;}
.xa{left:44.470587pt;}
.x1{left:48.000013pt;}
.x4{left:156.275720pt;}
.x8{left:173.878653pt;}
.x9{left:344.498120pt;}
.x3{left:426.722387pt;}
.x6{left:716.823453pt;}
}




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