
    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_1016417da8109599feb3a951.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_106883f53d0d4b30af397136.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_553c3756b8b09c70d1391e96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_0bb23a260842a6f543481948.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.876953;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.054719px;}
.ls4{letter-spacing:59.815462px;}
.ls5{letter-spacing:76.130934px;}
.ls3{letter-spacing:77.841858px;}
.ls2{letter-spacing:102.700656px;}
.ls6{letter-spacing:105.943329px;}
.ls7{letter-spacing:107.474456px;}
.ls8{letter-spacing:108.968282px;}
.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;}
}
.ws4{word-spacing:-27.324075px;}
.ws2{word-spacing:-27.125355px;}
.ws6{word-spacing:-24.373490px;}
.ws8{word-spacing:-21.780025px;}
.ws7{word-spacing:-21.621625px;}
.ws0{word-spacing:-14.993128px;}
.ws5{word-spacing:-14.938409px;}
.ws3{word-spacing:-0.129663px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.694058px;}
._f{margin-left:-12.875014px;}
._e{margin-left:-10.234108px;}
._5{margin-left:-9.057635px;}
._7{margin-left:-7.632033px;}
._b{margin-left:-5.662110px;}
._2{margin-left:-3.405604px;}
._8{margin-left:-2.361590px;}
._0{margin-left:-1.094389px;}
._4{width:1.108801px;}
._d{width:2.757482px;}
._9{width:4.046378px;}
._12{width:5.068800px;}
._11{width:24.940855px;}
._10{width:28.268844px;}
._c{width:29.273812px;}
._3{width:100.504915px;}
._a{width:109.375325px;}
._6{width:143.748164px;}
._13{width:3973.442536px;}
._1{width:4002.966587px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(57,159,194);}
.fc1{color:rgb(159,156,159);}
.fc2{color:rgb(32,57,85);}
.fc0{color:rgb(77,100,135);}
.fs1{font-size:49.679400px;}
.fs0{font-size:54.719446px;}
.fsa{font-size:71.280229px;}
.fs9{font-size:75.600690px;}
.fs2{font-size:79.200090px;}
.fs8{font-size:79.919676px;}
.fs7{font-size:84.240136px;}
.fs4{font-size:89.280182px;}
.fs6{font-size:94.320228px;}
.fs5{font-size:99.360274px;}
.fs3{font-size:128.879490px;}
.y0{bottom:0.000000px;}
.y1{bottom:165.248574px;}
.yc{bottom:165.428121px;}
.y50{bottom:250.554752px;}
.y2d{bottom:254.338265px;}
.y55{bottom:265.318812px;}
.y37{bottom:276.113433px;}
.y48{bottom:288.892433px;}
.y4f{bottom:290.517903px;}
.y2c{bottom:291.414847px;}
.y36{bottom:302.761395px;}
.y54{bottom:305.451675px;}
.y47{bottom:312.657583px;}
.y3d{bottom:318.239884px;}
.y2b{bottom:328.497131px;}
.y35{bottom:344.337766px;}
.y3c{bottom:346.321780px;}
.y46{bottom:351.176022px;}
.y2a{bottom:358.200575px;}
.y1b{bottom:367.564436px;}
.y4e{bottom:370.799009px;}
.y34{bottom:371.166758px;}
.y13{bottom:380.520634px;}
.y3b{bottom:387.892551px;}
.y45{bottom:390.060609px;}
.ya{bottom:394.556243px;}
.y20{bottom:395.460998px;}
.y29{bottom:395.462446px;}
.y1a{bottom:397.794699px;}
.y33{bottom:405.183854px;}
.y4d{bottom:410.934416px;}
.y44{bottom:415.081346px;}
.y3a{bottom:417.597216px;}
.y28{bottom:425.152657px;}
.y12{bottom:425.160750px;}
.y19{bottom:428.940344px;}
.y32{bottom:432.004067px;}
.y9{bottom:433.257137px;}
.y43{bottom:453.598575px;}
.y39{bottom:454.856419px;}
.y18{bottom:459.358095px;}
.y53{bottom:465.835522px;}
.y31{bottom:466.198234px;}
.y11{bottom:469.615544px;}
.y8{bottom:471.784043px;}
.y38{bottom:484.557357px;}
.y17{bottom:489.601049px;}
.y4c{bottom:491.040693px;}
.y27{bottom:491.934597px;}
.y42{bottom:492.299498px;}
.y30{bottom:500.226509px;}
.y52{bottom:505.979932px;}
.y7{bottom:510.475318px;}
.y10{bottom:514.255660px;}
.y1f{bottom:514.263980px;}
.y16{bottom:520.374363px;}
.y26{bottom:521.633906px;}
.y41{bottom:530.816726px;}
.y4b{bottom:531.176099px;}
.y2f{bottom:534.417811px;}
.y23{bottom:538.024569px;}
.y1e{bottom:543.955602px;}
.y6{bottom:549.002194px;}
.y15{bottom:554.224634px;}
.yf{bottom:558.721364px;}
.y2e{bottom:561.239416px;}
.y22{bottom:567.723502px;}
.y40{bottom:569.517649px;}
.y1d{bottom:573.663143px;}
.y5{bottom:587.703117px;}
.y25{bottom:588.420300px;}
.ye{bottom:603.361447px;}
.y21{bottom:604.794369px;}
.y3f{bottom:608.034907px;}
.y4a{bottom:611.282408px;}
.y1c{bottom:618.124081px;}
.y4{bottom:626.220375px;}
.y56{bottom:628.197835px;}
.y3e{bottom:646.735830px;}
.y24{bottom:647.815739px;}
.yd{bottom:647.816274px;}
.y51{bottom:651.413436px;}
.y49{bottom:651.417815px;}
.y3{bottom:664.921298px;}
.y2{bottom:701.823045px;}
.y14{bottom:706.682929px;}
.yb{bottom:723.595228px;}
.h2{height:42.960067px;}
.h1{height:47.318427px;}
.h3{height:68.487969px;}
.h2a{height:68.505827px;}
.h5{height:68.526641px;}
.h29{height:72.815671px;}
.h23{height:72.841733px;}
.hf{height:72.846329px;}
.h27{height:72.850408px;}
.h26{height:72.855441px;}
.h25{height:72.863843px;}
.h28{height:72.877436px;}
.h24{height:72.887462px;}
.h1e{height:77.164708px;}
.h1c{height:77.172405px;}
.h1f{height:77.173097px;}
.h20{height:77.199570px;}
.h1a{height:77.202646px;}
.h1b{height:77.204689px;}
.h1d{height:77.229168px;}
.he{height:81.563049px;}
.hb{height:85.889036px;}
.h13{height:85.892310px;}
.h8{height:85.902106px;}
.h12{height:85.906440px;}
.hc{height:85.911415px;}
.h16{height:85.915617px;}
.h22{height:85.917800px;}
.h6{height:85.919270px;}
.h11{height:85.921409px;}
.h17{height:85.922679px;}
.h7{height:85.928275px;}
.ha{height:85.928653px;}
.h19{height:85.931592px;}
.h21{height:85.932854px;}
.h18{height:85.937977px;}
.h15{height:85.939224px;}
.h10{height:85.950110px;}
.h9{height:85.954689px;}
.h14{height:85.969925px;}
.hd{height:111.448036px;}
.h4{height:111.510965px;}
.h0{height:918.000000px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x1{left:68.399310px;}
.x4{left:73.438657px;}
.xa{left:75.062196px;}
.x6{left:78.299956px;}
.x2{left:79.916399px;}
.x8{left:113.405589px;}
.x7{left:122.943287px;}
.x9{left:150.656772px;}
.x3{left:167.401068px;}
.xb{left:853.910080px;}
.x5{left:873.715170px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.048640pt;}
.ls4{letter-spacing:53.169300pt;}
.ls5{letter-spacing:67.671942pt;}
.ls3{letter-spacing:69.192762pt;}
.ls2{letter-spacing:91.289472pt;}
.ls6{letter-spacing:94.171848pt;}
.ls7{letter-spacing:95.532849pt;}
.ls8{letter-spacing:96.860695pt;}
.ws4{word-spacing:-24.288067pt;}
.ws2{word-spacing:-24.111427pt;}
.ws6{word-spacing:-21.665324pt;}
.ws8{word-spacing:-19.360022pt;}
.ws7{word-spacing:-19.219222pt;}
.ws0{word-spacing:-13.327225pt;}
.ws5{word-spacing:-13.278586pt;}
.ws3{word-spacing:-0.115256pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.616940pt;}
._f{margin-left:-11.444457pt;}
._e{margin-left:-9.096985pt;}
._5{margin-left:-8.051231pt;}
._7{margin-left:-6.784030pt;}
._b{margin-left:-5.032986pt;}
._2{margin-left:-3.027203pt;}
._8{margin-left:-2.099191pt;}
._0{margin-left:-0.972790pt;}
._4{width:0.985601pt;}
._d{width:2.451095pt;}
._9{width:3.596781pt;}
._12{width:4.505600pt;}
._11{width:22.169649pt;}
._10{width:25.127861pt;}
._c{width:26.021167pt;}
._3{width:89.337702pt;}
._a{width:97.222511pt;}
._6{width:127.776146pt;}
._13{width:3531.948921pt;}
._1{width:3558.192522pt;}
.fs1{font-size:44.159467pt;}
.fs0{font-size:48.639507pt;}
.fsa{font-size:63.360203pt;}
.fs9{font-size:67.200613pt;}
.fs2{font-size:70.400080pt;}
.fs8{font-size:71.039712pt;}
.fs7{font-size:74.880121pt;}
.fs4{font-size:79.360162pt;}
.fs6{font-size:83.840203pt;}
.fs5{font-size:88.320244pt;}
.fs3{font-size:114.559547pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:146.887621pt;}
.yc{bottom:147.047219pt;}
.y50{bottom:222.715335pt;}
.y2d{bottom:226.078458pt;}
.y55{bottom:235.838944pt;}
.y37{bottom:245.434163pt;}
.y48{bottom:256.793274pt;}
.y4f{bottom:258.238136pt;}
.y2c{bottom:259.035420pt;}
.y36{bottom:269.121240pt;}
.y54{bottom:271.512600pt;}
.y47{bottom:277.917852pt;}
.y3d{bottom:282.879897pt;}
.y2b{bottom:291.997450pt;}
.y35{bottom:306.078014pt;}
.y3c{bottom:307.841582pt;}
.y46{bottom:312.156464pt;}
.y2a{bottom:318.400512pt;}
.y1b{bottom:326.723943pt;}
.y4e{bottom:329.599119pt;}
.y34{bottom:329.926007pt;}
.y13{bottom:338.240563pt;}
.y3b{bottom:344.793379pt;}
.y45{bottom:346.720541pt;}
.ya{bottom:350.716661pt;}
.y20{bottom:351.520887pt;}
.y29{bottom:351.522174pt;}
.y1a{bottom:353.595288pt;}
.y33{bottom:360.163426pt;}
.y4d{bottom:365.275036pt;}
.y44{bottom:368.961196pt;}
.y3a{bottom:371.197525pt;}
.y28{bottom:377.913472pt;}
.y12{bottom:377.920666pt;}
.y19{bottom:381.280306pt;}
.y32{bottom:384.003615pt;}
.y9{bottom:385.117455pt;}
.y43{bottom:403.198733pt;}
.y39{bottom:404.316817pt;}
.y18{bottom:408.318306pt;}
.y53{bottom:414.076020pt;}
.y31{bottom:414.398430pt;}
.y11{bottom:417.436039pt;}
.y8{bottom:419.363594pt;}
.y38{bottom:430.717650pt;}
.y17{bottom:435.200932pt;}
.y4c{bottom:436.480616pt;}
.y27{bottom:437.275198pt;}
.y42{bottom:437.599553pt;}
.y30{bottom:444.645786pt;}
.y52{bottom:449.759940pt;}
.y7{bottom:453.755838pt;}
.y10{bottom:457.116142pt;}
.y1f{bottom:457.123538pt;}
.y16{bottom:462.554990pt;}
.y26{bottom:463.674583pt;}
.y41{bottom:471.837090pt;}
.y4b{bottom:472.156533pt;}
.y2f{bottom:475.038054pt;}
.y23{bottom:478.244062pt;}
.y1e{bottom:483.516090pt;}
.y6{bottom:488.001951pt;}
.y15{bottom:492.644120pt;}
.yf{bottom:496.641212pt;}
.y2e{bottom:498.879481pt;}
.y22{bottom:504.643113pt;}
.y40{bottom:506.237910pt;}
.y1d{bottom:509.922794pt;}
.y5{bottom:522.402771pt;}
.y25{bottom:523.040267pt;}
.ye{bottom:536.321286pt;}
.y21{bottom:537.594995pt;}
.y3f{bottom:540.475473pt;}
.y4a{bottom:543.362141pt;}
.y1c{bottom:549.443627pt;}
.y4{bottom:556.640334pt;}
.y56{bottom:558.398075pt;}
.y3e{bottom:574.876293pt;}
.y24{bottom:575.836213pt;}
.yd{bottom:575.836688pt;}
.y51{bottom:579.034166pt;}
.y49{bottom:579.038058pt;}
.y3{bottom:591.041154pt;}
.y2{bottom:623.842707pt;}
.y14{bottom:628.162604pt;}
.yb{bottom:643.195758pt;}
.h2{height:38.186726pt;}
.h1{height:42.060824pt;}
.h3{height:60.878195pt;}
.h2a{height:60.894069pt;}
.h5{height:60.912570pt;}
.h29{height:64.725041pt;}
.h23{height:64.748207pt;}
.hf{height:64.752292pt;}
.h27{height:64.755919pt;}
.h26{height:64.760392pt;}
.h25{height:64.767860pt;}
.h28{height:64.779943pt;}
.h24{height:64.788855pt;}
.h1e{height:68.590852pt;}
.h1c{height:68.597693pt;}
.h1f{height:68.598309pt;}
.h20{height:68.621840pt;}
.h1a{height:68.624574pt;}
.h1b{height:68.626390pt;}
.h1d{height:68.648149pt;}
.he{height:72.500488pt;}
.hb{height:76.345810pt;}
.h13{height:76.348720pt;}
.h8{height:76.357427pt;}
.h12{height:76.361280pt;}
.hc{height:76.365703pt;}
.h16{height:76.369437pt;}
.h22{height:76.371378pt;}
.h6{height:76.372684pt;}
.h11{height:76.374586pt;}
.h17{height:76.375714pt;}
.h7{height:76.380689pt;}
.ha{height:76.381025pt;}
.h19{height:76.383637pt;}
.h21{height:76.384759pt;}
.h18{height:76.389313pt;}
.h15{height:76.390421pt;}
.h10{height:76.400098pt;}
.h9{height:76.404168pt;}
.h14{height:76.417711pt;}
.hd{height:99.064921pt;}
.h4{height:99.120858pt;}
.h0{height:816.000000pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.799386pt;}
.x4{left:65.278806pt;}
.xa{left:66.721952pt;}
.x6{left:69.599961pt;}
.x2{left:71.036799pt;}
.x8{left:100.804968pt;}
.x7{left:109.282922pt;}
.x9{left:133.917130pt;}
.x3{left:148.800949pt;}
.xb{left:759.031182pt;}
.x5{left:776.635707pt;}
}




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