
    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_2ece4685fc837ed822aa8496.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.028809;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_38ded41348a3fc5967ba30c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_b21cc4d70d464dcc9b0bc7b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857422;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_4f0976e27ae4c5b35a321349.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_311216b9a3cb9aa2f43495af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_48845b7ccf51504520574bf0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896973;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;}
.ls2{letter-spacing:0.384750px;}
.ls3{letter-spacing:0.450300px;}
.ls4{letter-spacing:1.920900px;}
.ls0{letter-spacing:2.576400px;}
.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;}
}
.ws3{word-spacing:-29.328000px;}
.ws1{word-spacing:-14.250000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-3249.742200px;}
._7{margin-left:-4.480800px;}
._5{margin-left:-3.210600px;}
._1{margin-left:-1.429200px;}
._0{width:1.155600px;}
._3{width:2.964000px;}
._4{width:4.275000px;}
._6{width:5.751300px;}
._b{width:7.483530px;}
._a{width:10.293060px;}
._8{width:11.410260px;}
._9{width:19.499700px;}
._e{width:21.426300px;}
._f{width:23.113500px;}
._d{width:42.151500px;}
._c{width:48.821640px;}
._2{width:2736.090600px;}
.fc1{color:rgb(70,65,139);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.674600px;}
.yf{bottom:75.896850px;}
.y8{bottom:75.911100px;}
.y42{bottom:75.933862px;}
.y15{bottom:93.509850px;}
.ye{bottom:93.524100px;}
.y7{bottom:93.538350px;}
.y41{bottom:93.558262px;}
.y14{bottom:111.137100px;}
.yd{bottom:111.151350px;}
.y6{bottom:111.165600px;}
.y40{bottom:111.182662px;}
.y13{bottom:128.764350px;}
.yc{bottom:128.778600px;}
.y5{bottom:128.792850px;}
.y3f{bottom:128.807062px;}
.y65{bottom:128.816325px;}
.y12{bottom:146.391600px;}
.yb{bottom:146.405850px;}
.y4{bottom:146.420100px;}
.y3e{bottom:146.431462px;}
.y64{bottom:146.440725px;}
.y11{bottom:164.018850px;}
.ya{bottom:164.033100px;}
.y3{bottom:164.047350px;}
.y3d{bottom:164.055862px;}
.y63{bottom:164.065125px;}
.y10{bottom:181.646100px;}
.y9{bottom:181.660350px;}
.y2{bottom:181.674600px;}
.y3c{bottom:181.680262px;}
.y62{bottom:181.689525px;}
.y3b{bottom:199.304662px;}
.y61{bottom:199.313925px;}
.y1d{bottom:216.917850px;}
.y82{bottom:216.925327px;}
.y3a{bottom:216.929062px;}
.y60{bottom:216.938325px;}
.y1c{bottom:234.545100px;}
.y81{bottom:234.550297px;}
.y39{bottom:234.553462px;}
.y5f{bottom:234.562725px;}
.y1b{bottom:252.172350px;}
.y80{bottom:252.175267px;}
.y38{bottom:252.177862px;}
.y5e{bottom:252.187125px;}
.y1a{bottom:269.799600px;}
.y7f{bottom:269.800237px;}
.y37{bottom:269.802262px;}
.y5d{bottom:269.811525px;}
.y7e{bottom:287.425207px;}
.y36{bottom:287.426662px;}
.y5c{bottom:287.435925px;}
.y19{bottom:305.049600px;}
.y35{bottom:305.051062px;}
.y5b{bottom:305.060325px;}
.y7d{bottom:322.675147px;}
.y34{bottom:322.675462px;}
.y5a{bottom:322.684725px;}
.y18{bottom:340.299600px;}
.y33{bottom:340.299862px;}
.y7c{bottom:340.300117px;}
.y7b{bottom:357.925087px;}
.y59{bottom:357.934950px;}
.y17{bottom:375.549600px;}
.y7a{bottom:375.550057px;}
.y32{bottom:375.550087px;}
.y58{bottom:375.559350px;}
.y79{bottom:393.175027px;}
.y31{bottom:393.175057px;}
.y57{bottom:393.184320px;}
.y16{bottom:410.799600px;}
.y78{bottom:410.799997px;}
.y30{bottom:410.800027px;}
.y56{bottom:410.809290px;}
.y77{bottom:428.424967px;}
.y2f{bottom:428.424997px;}
.y55{bottom:428.434260px;}
.y76{bottom:446.049937px;}
.y2e{bottom:446.049967px;}
.y54{bottom:446.059230px;}
.y75{bottom:463.674907px;}
.y2d{bottom:463.674937px;}
.y53{bottom:463.684200px;}
.y74{bottom:481.299877px;}
.y2c{bottom:481.299907px;}
.y52{bottom:481.309170px;}
.y73{bottom:498.924847px;}
.y2b{bottom:498.924877px;}
.y51{bottom:498.934140px;}
.y72{bottom:516.549818px;}
.y2a{bottom:516.549847px;}
.y50{bottom:516.559110px;}
.y71{bottom:534.174788px;}
.y29{bottom:534.174818px;}
.y4f{bottom:534.184080px;}
.y70{bottom:551.799900px;}
.y28{bottom:551.799930px;}
.y4e{bottom:551.809192px;}
.y6f{bottom:569.424870px;}
.y27{bottom:569.424900px;}
.y4d{bottom:569.434162px;}
.y6e{bottom:587.049840px;}
.y26{bottom:587.049870px;}
.y4c{bottom:587.059132px;}
.y6d{bottom:604.674810px;}
.y25{bottom:604.674840px;}
.y4b{bottom:604.684102px;}
.y6c{bottom:622.299780px;}
.y24{bottom:622.299810px;}
.y4a{bottom:622.309072px;}
.y6b{bottom:639.924750px;}
.y23{bottom:639.924780px;}
.y49{bottom:639.934042px;}
.y6a{bottom:657.549720px;}
.y22{bottom:657.549750px;}
.y48{bottom:657.559012px;}
.y69{bottom:675.174690px;}
.y21{bottom:675.174720px;}
.y47{bottom:675.183982px;}
.y68{bottom:692.799660px;}
.y20{bottom:692.799690px;}
.y46{bottom:692.808952px;}
.y67{bottom:710.424630px;}
.y45{bottom:710.433922px;}
.y66{bottom:728.049600px;}
.y1f{bottom:728.049630px;}
.y44{bottom:728.058892px;}
.y1e{bottom:745.674600px;}
.y43{bottom:745.683862px;}
.y8a{bottom:921.924720px;}
.y89{bottom:939.549600px;}
.y88{bottom:957.174600px;}
.y87{bottom:974.799600px;}
.y86{bottom:992.424600px;}
.y85{bottom:1010.049600px;}
.y84{bottom:1027.674600px;}
.y83{bottom:1229.572200px;}
.h9{height:32.695312px;}
.h7{height:38.630859px;}
.h8{height:40.810547px;}
.h6{height:42.750000px;}
.h2{height:45.509766px;}
.h5{height:48.038086px;}
.h3{height:50.014160px;}
.h4{height:81.621094px;}
.h0{height:1262.835015px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:55.275000px;}
.x4{left:107.799150px;}
.x2{left:307.599750px;}
.x5{left:358.644323px;}
.x9{left:449.764200px;}
.x3{left:558.471000px;}
.x6{left:609.531450px;}
.x7{left:630.791453px;}
.x8{left:724.126200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.342000pt;}
.ls3{letter-spacing:0.400267pt;}
.ls4{letter-spacing:1.707467pt;}
.ls0{letter-spacing:2.290133pt;}
.ws3{word-spacing:-26.069333pt;}
.ws1{word-spacing:-12.666667pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-2888.659733pt;}
._7{margin-left:-3.982933pt;}
._5{margin-left:-2.853867pt;}
._1{margin-left:-1.270400pt;}
._0{width:1.027200pt;}
._3{width:2.634667pt;}
._4{width:3.800000pt;}
._6{width:5.112267pt;}
._b{width:6.652027pt;}
._a{width:9.149387pt;}
._8{width:10.142453pt;}
._9{width:17.333067pt;}
._e{width:19.045600pt;}
._f{width:20.545333pt;}
._d{width:37.468000pt;}
._c{width:43.397013pt;}
._2{width:2432.080533pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:36.155200pt;}
.yf{bottom:67.463867pt;}
.y8{bottom:67.476533pt;}
.y42{bottom:67.496767pt;}
.y15{bottom:83.119867pt;}
.ye{bottom:83.132533pt;}
.y7{bottom:83.145200pt;}
.y41{bottom:83.162900pt;}
.y14{bottom:98.788533pt;}
.yd{bottom:98.801200pt;}
.y6{bottom:98.813867pt;}
.y40{bottom:98.829033pt;}
.y13{bottom:114.457200pt;}
.yc{bottom:114.469867pt;}
.y5{bottom:114.482533pt;}
.y3f{bottom:114.495167pt;}
.y65{bottom:114.503400pt;}
.y12{bottom:130.125867pt;}
.yb{bottom:130.138533pt;}
.y4{bottom:130.151200pt;}
.y3e{bottom:130.161300pt;}
.y64{bottom:130.169533pt;}
.y11{bottom:145.794533pt;}
.ya{bottom:145.807200pt;}
.y3{bottom:145.819867pt;}
.y3d{bottom:145.827433pt;}
.y63{bottom:145.835667pt;}
.y10{bottom:161.463200pt;}
.y9{bottom:161.475867pt;}
.y2{bottom:161.488533pt;}
.y3c{bottom:161.493567pt;}
.y62{bottom:161.501800pt;}
.y3b{bottom:177.159700pt;}
.y61{bottom:177.167933pt;}
.y1d{bottom:192.815867pt;}
.y82{bottom:192.822513pt;}
.y3a{bottom:192.825833pt;}
.y60{bottom:192.834067pt;}
.y1c{bottom:208.484533pt;}
.y81{bottom:208.489153pt;}
.y39{bottom:208.491967pt;}
.y5f{bottom:208.500200pt;}
.y1b{bottom:224.153200pt;}
.y80{bottom:224.155793pt;}
.y38{bottom:224.158100pt;}
.y5e{bottom:224.166333pt;}
.y1a{bottom:239.821867pt;}
.y7f{bottom:239.822433pt;}
.y37{bottom:239.824233pt;}
.y5d{bottom:239.832467pt;}
.y7e{bottom:255.489073pt;}
.y36{bottom:255.490367pt;}
.y5c{bottom:255.498600pt;}
.y19{bottom:271.155200pt;}
.y35{bottom:271.156500pt;}
.y5b{bottom:271.164733pt;}
.y7d{bottom:286.822353pt;}
.y34{bottom:286.822633pt;}
.y5a{bottom:286.830867pt;}
.y18{bottom:302.488533pt;}
.y33{bottom:302.488767pt;}
.y7c{bottom:302.488993pt;}
.y7b{bottom:318.155633pt;}
.y59{bottom:318.164400pt;}
.y17{bottom:333.821867pt;}
.y7a{bottom:333.822273pt;}
.y32{bottom:333.822300pt;}
.y58{bottom:333.830533pt;}
.y79{bottom:349.488913pt;}
.y31{bottom:349.488940pt;}
.y57{bottom:349.497173pt;}
.y16{bottom:365.155200pt;}
.y78{bottom:365.155553pt;}
.y30{bottom:365.155580pt;}
.y56{bottom:365.163813pt;}
.y77{bottom:380.822193pt;}
.y2f{bottom:380.822220pt;}
.y55{bottom:380.830453pt;}
.y76{bottom:396.488833pt;}
.y2e{bottom:396.488860pt;}
.y54{bottom:396.497093pt;}
.y75{bottom:412.155473pt;}
.y2d{bottom:412.155500pt;}
.y53{bottom:412.163733pt;}
.y74{bottom:427.822113pt;}
.y2c{bottom:427.822140pt;}
.y52{bottom:427.830373pt;}
.y73{bottom:443.488753pt;}
.y2b{bottom:443.488780pt;}
.y51{bottom:443.497013pt;}
.y72{bottom:459.155393pt;}
.y2a{bottom:459.155420pt;}
.y50{bottom:459.163653pt;}
.y71{bottom:474.822033pt;}
.y29{bottom:474.822060pt;}
.y4f{bottom:474.830293pt;}
.y70{bottom:490.488800pt;}
.y28{bottom:490.488827pt;}
.y4e{bottom:490.497060pt;}
.y6f{bottom:506.155440pt;}
.y27{bottom:506.155467pt;}
.y4d{bottom:506.163700pt;}
.y6e{bottom:521.822080pt;}
.y26{bottom:521.822107pt;}
.y4c{bottom:521.830340pt;}
.y6d{bottom:537.488720pt;}
.y25{bottom:537.488747pt;}
.y4b{bottom:537.496980pt;}
.y6c{bottom:553.155360pt;}
.y24{bottom:553.155387pt;}
.y4a{bottom:553.163620pt;}
.y6b{bottom:568.822000pt;}
.y23{bottom:568.822027pt;}
.y49{bottom:568.830260pt;}
.y6a{bottom:584.488640pt;}
.y22{bottom:584.488667pt;}
.y48{bottom:584.496900pt;}
.y69{bottom:600.155280pt;}
.y21{bottom:600.155307pt;}
.y47{bottom:600.163540pt;}
.y68{bottom:615.821920pt;}
.y20{bottom:615.821947pt;}
.y46{bottom:615.830180pt;}
.y67{bottom:631.488560pt;}
.y45{bottom:631.496820pt;}
.y66{bottom:647.155200pt;}
.y1f{bottom:647.155227pt;}
.y44{bottom:647.163460pt;}
.y1e{bottom:662.821867pt;}
.y43{bottom:662.830100pt;}
.y8a{bottom:819.488640pt;}
.y89{bottom:835.155200pt;}
.y88{bottom:850.821867pt;}
.y87{bottom:866.488533pt;}
.y86{bottom:882.155200pt;}
.y85{bottom:897.821867pt;}
.y84{bottom:913.488533pt;}
.y83{bottom:1092.953067pt;}
.h9{height:29.062500pt;}
.h7{height:34.338542pt;}
.h8{height:36.276042pt;}
.h6{height:38.000000pt;}
.h2{height:40.453125pt;}
.h5{height:42.700521pt;}
.h3{height:44.457031pt;}
.h4{height:72.552083pt;}
.h0{height:1122.520013pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:49.133333pt;}
.x4{left:95.821467pt;}
.x2{left:273.422000pt;}
.x5{left:318.794953pt;}
.x9{left:399.790400pt;}
.x3{left:496.418667pt;}
.x6{left:541.805733pt;}
.x7{left:560.703513pt;}
.x8{left:643.667733pt;}
}




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