
    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_799ba97370a438d7cb1400d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_37a124438e4bc68915066cd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.889000;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_9c69d5aabfbf240e2213db02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_75b8a8fade849cfe8abe29ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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;}
.v1{vertical-align:23.754000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.987675px;}
.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;}
}
.ws1{word-spacing:-16.438350px;}
.ws6{word-spacing:-14.943900px;}
.ws38{word-spacing:-14.920027px;}
.ws2c{word-spacing:-0.806976px;}
.ws28{word-spacing:-0.430387px;}
.ws3e{word-spacing:-0.239103px;}
.ws39{word-spacing:-0.143462px;}
.ws8{word-spacing:-0.053798px;}
.ws3f{word-spacing:0.000000px;}
.ws1f{word-spacing:0.484186px;}
.ws35{word-spacing:2.205734px;}
.ws17{word-spacing:2.420928px;}
.ws33{word-spacing:3.335501px;}
.ws29{word-spacing:3.604493px;}
.ws11{word-spacing:3.819686px;}
.ws12{word-spacing:3.981082px;}
.ws3b{word-spacing:4.782060px;}
.ws10{word-spacing:5.057050px;}
.ws16{word-spacing:5.702630px;}
.ws5{word-spacing:5.977560px;}
.ws31{word-spacing:6.402010px;}
.ws3{word-spacing:6.575340px;}
.ws1d{word-spacing:6.724800px;}
.ws30{word-spacing:6.939994px;}
.ws9{word-spacing:7.370381px;}
.ws3a{word-spacing:8.320784px;}
.ws13{word-spacing:8.446349px;}
.ws27{word-spacing:8.715341px;}
.wsa{word-spacing:8.769139px;}
.ws25{word-spacing:8.984333px;}
.wse{word-spacing:9.199526px;}
.ws34{word-spacing:10.060301px;}
.wsd{word-spacing:10.275494px;}
.ws23{word-spacing:10.759680px;}
.ws32{word-spacing:11.082470px;}
.ws2a{word-spacing:11.190067px;}
.ws2e{word-spacing:12.266035px;}
.ws19{word-spacing:12.427430px;}
.ws3d{word-spacing:12.815921px;}
.ws2b{word-spacing:13.718592px;}
.ws2f{word-spacing:14.095181px;}
.wsc{word-spacing:14.256576px;}
.ws0{word-spacing:14.346180px;}
.ws7{word-spacing:14.496000px;}
.ws2{word-spacing:14.499058px;}
.ws3c{word-spacing:14.776565px;}
.ws15{word-spacing:15.440141px;}
.ws1b{word-spacing:15.547738px;}
.ws1a{word-spacing:15.870528px;}
.ws21{word-spacing:16.193318px;}
.ws26{word-spacing:16.300915px;}
.ws24{word-spacing:16.462310px;}
.ws18{word-spacing:17.215488px;}
.ws2d{word-spacing:17.753472px;}
.wsb{word-spacing:18.829440px;}
.ws14{word-spacing:18.937037px;}
.wsf{word-spacing:20.013005px;}
.ws1e{word-spacing:20.281997px;}
.ws4{word-spacing:20.861684px;}
.ws1c{word-spacing:21.788352px;}
.ws37{word-spacing:23.348506px;}
.ws22{word-spacing:23.563699px;}
.ws20{word-spacing:26.307418px;}
.ws36{word-spacing:36.744307px;}
._0{margin-left:-11.476944px;}
._8{margin-left:-5.917824px;}
._3{margin-left:-4.805996px;}
._1{margin-left:-2.869236px;}
._2{margin-left:-1.434618px;}
._7{width:11.997043px;}
._9{width:20.873779px;}
._4{width:26.917121px;}
._6{width:30.790606px;}
._5{width:36.278042px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.027200px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y35{bottom:113.332500px;}
.y34{bottom:128.277000px;}
.y33{bottom:143.221500px;}
.y32{bottom:158.164500px;}
.y31{bottom:174.105000px;}
.y30{bottom:189.049500px;}
.y2f{bottom:203.992500px;}
.y2e{bottom:218.937000px;}
.y2d{bottom:233.881500px;}
.y2c{bottom:248.824500px;}
.y2b{bottom:263.769000px;}
.y2a{bottom:278.713500px;}
.y29{bottom:293.656500px;}
.y28{bottom:308.601000px;}
.y27{bottom:323.544000px;}
.y26{bottom:338.488500px;}
.y25{bottom:353.433000px;}
.y24{bottom:368.376000px;}
.y23{bottom:383.320500px;}
.y22{bottom:398.265000px;}
.y21{bottom:413.208000px;}
.y20{bottom:429.148500px;}
.y1f{bottom:444.093000px;}
.y1e{bottom:459.036000px;}
.y1d{bottom:473.980500px;}
.y1c{bottom:488.925000px;}
.y41{bottom:490.848000px;}
.y1b{bottom:503.868000px;}
.y40{bottom:504.297000px;}
.y3f{bottom:517.746000px;}
.y1a{bottom:518.812500px;}
.y3e{bottom:531.196500px;}
.y19{bottom:533.757000px;}
.y3d{bottom:544.645500px;}
.y18{bottom:549.697500px;}
.y3c{bottom:558.096000px;}
.y17{bottom:564.640500px;}
.y3b{bottom:571.545000px;}
.y16{bottom:579.585000px;}
.y3a{bottom:584.994000px;}
.y15{bottom:594.528000px;}
.y39{bottom:607.186500px;}
.y14{bottom:609.472500px;}
.y13{bottom:624.417000px;}
.y12{bottom:639.360000px;}
.y11{bottom:654.304500px;}
.y38{bottom:669.247500px;}
.y10{bottom:669.249000px;}
.yf{bottom:684.192000px;}
.ye{bottom:699.136500px;}
.y37{bottom:714.079500px;}
.yd{bottom:714.081000px;}
.yc{bottom:729.024000px;}
.yb{bottom:743.968500px;}
.y36{bottom:758.911500px;}
.ya{bottom:758.913000px;}
.y9{bottom:834.355500px;}
.y8{bottom:852.849000px;}
.y7{bottom:871.341000px;}
.y6{bottom:889.834500px;}
.y5{bottom:908.550000px;}
.y4{bottom:955.623000px;}
.y3{bottom:997.465500px;}
.y2{bottom:1039.309500px;}
.y1{bottom:1081.152000px;}
.h7{height:32.900573px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h2{height:55.420714px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:73.446000px;}
.xf{left:88.390500px;}
.x3{left:96.975000px;}
.x1{left:120.664500px;}
.x2{left:122.152500px;}
.x6{left:182.059500px;}
.x8{left:197.340000px;}
.x7{left:213.382500px;}
.x9{left:236.463000px;}
.x5{left:242.070000px;}
.x4{left:425.143500px;}
.x11{left:467.967000px;}
.x14{left:473.944500px;}
.x12{left:482.910000px;}
.x15{left:495.355500px;}
.xb{left:513.307500px;}
.xd{left:528.586500px;}
.xc{left:544.629000px;}
.xa{left:561.349500px;}
.xe{left:564.616500px;}
.x13{left:614.418000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.655711pt;}
.ws1{word-spacing:-14.611867pt;}
.ws6{word-spacing:-13.283467pt;}
.ws38{word-spacing:-13.262246pt;}
.ws2c{word-spacing:-0.717312pt;}
.ws28{word-spacing:-0.382566pt;}
.ws3e{word-spacing:-0.212536pt;}
.ws39{word-spacing:-0.127522pt;}
.ws8{word-spacing:-0.047821pt;}
.ws3f{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.430387pt;}
.ws35{word-spacing:1.960653pt;}
.ws17{word-spacing:2.151936pt;}
.ws33{word-spacing:2.964890pt;}
.ws29{word-spacing:3.203994pt;}
.ws11{word-spacing:3.395277pt;}
.ws12{word-spacing:3.538739pt;}
.ws3b{word-spacing:4.250720pt;}
.ws10{word-spacing:4.495155pt;}
.ws16{word-spacing:5.069005pt;}
.ws5{word-spacing:5.313387pt;}
.ws31{word-spacing:5.690675pt;}
.ws3{word-spacing:5.844747pt;}
.ws1d{word-spacing:5.977600pt;}
.ws30{word-spacing:6.168883pt;}
.ws9{word-spacing:6.551450pt;}
.ws3a{word-spacing:7.396253pt;}
.ws13{word-spacing:7.507866pt;}
.ws27{word-spacing:7.746970pt;}
.wsa{word-spacing:7.794790pt;}
.ws25{word-spacing:7.986074pt;}
.wse{word-spacing:8.177357pt;}
.ws34{word-spacing:8.942490pt;}
.wsd{word-spacing:9.133773pt;}
.ws23{word-spacing:9.564160pt;}
.ws32{word-spacing:9.851085pt;}
.ws2a{word-spacing:9.946726pt;}
.ws2e{word-spacing:10.903142pt;}
.ws19{word-spacing:11.046605pt;}
.ws3d{word-spacing:11.391930pt;}
.ws2b{word-spacing:12.194304pt;}
.ws2f{word-spacing:12.529050pt;}
.wsc{word-spacing:12.672512pt;}
.ws0{word-spacing:12.752160pt;}
.ws7{word-spacing:12.885333pt;}
.ws2{word-spacing:12.888051pt;}
.ws3c{word-spacing:13.134725pt;}
.ws15{word-spacing:13.724570pt;}
.ws1b{word-spacing:13.820211pt;}
.ws1a{word-spacing:14.107136pt;}
.ws21{word-spacing:14.394061pt;}
.ws26{word-spacing:14.489702pt;}
.ws24{word-spacing:14.633165pt;}
.ws18{word-spacing:15.302656pt;}
.ws2d{word-spacing:15.780864pt;}
.wsb{word-spacing:16.737280pt;}
.ws14{word-spacing:16.832922pt;}
.wsf{word-spacing:17.789338pt;}
.ws1e{word-spacing:18.028442pt;}
.ws4{word-spacing:18.543719pt;}
.ws1c{word-spacing:19.367424pt;}
.ws37{word-spacing:20.754227pt;}
.ws22{word-spacing:20.945510pt;}
.ws20{word-spacing:23.384371pt;}
.ws36{word-spacing:32.661606pt;}
._0{margin-left:-10.201728pt;}
._8{margin-left:-5.260288pt;}
._3{margin-left:-4.271997pt;}
._1{margin-left:-2.550432pt;}
._2{margin-left:-1.275216pt;}
._7{width:10.664038pt;}
._9{width:18.554470pt;}
._4{width:23.926330pt;}
._6{width:27.369427pt;}
._5{width:32.247149pt;}
.fs2{font-size:40.913067pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:100.740000pt;}
.y34{bottom:114.024000pt;}
.y33{bottom:127.308000pt;}
.y32{bottom:140.590667pt;}
.y31{bottom:154.760000pt;}
.y30{bottom:168.044000pt;}
.y2f{bottom:181.326667pt;}
.y2e{bottom:194.610667pt;}
.y2d{bottom:207.894667pt;}
.y2c{bottom:221.177333pt;}
.y2b{bottom:234.461333pt;}
.y2a{bottom:247.745333pt;}
.y29{bottom:261.028000pt;}
.y28{bottom:274.312000pt;}
.y27{bottom:287.594667pt;}
.y26{bottom:300.878667pt;}
.y25{bottom:314.162667pt;}
.y24{bottom:327.445333pt;}
.y23{bottom:340.729333pt;}
.y22{bottom:354.013333pt;}
.y21{bottom:367.296000pt;}
.y20{bottom:381.465333pt;}
.y1f{bottom:394.749333pt;}
.y1e{bottom:408.032000pt;}
.y1d{bottom:421.316000pt;}
.y1c{bottom:434.600000pt;}
.y41{bottom:436.309333pt;}
.y1b{bottom:447.882667pt;}
.y40{bottom:448.264000pt;}
.y3f{bottom:460.218667pt;}
.y1a{bottom:461.166667pt;}
.y3e{bottom:472.174667pt;}
.y19{bottom:474.450667pt;}
.y3d{bottom:484.129333pt;}
.y18{bottom:488.620000pt;}
.y3c{bottom:496.085333pt;}
.y17{bottom:501.902667pt;}
.y3b{bottom:508.040000pt;}
.y16{bottom:515.186667pt;}
.y3a{bottom:519.994667pt;}
.y15{bottom:528.469333pt;}
.y39{bottom:539.721333pt;}
.y14{bottom:541.753333pt;}
.y13{bottom:555.037333pt;}
.y12{bottom:568.320000pt;}
.y11{bottom:581.604000pt;}
.y38{bottom:594.886667pt;}
.y10{bottom:594.888000pt;}
.yf{bottom:608.170667pt;}
.ye{bottom:621.454667pt;}
.y37{bottom:634.737333pt;}
.yd{bottom:634.738667pt;}
.yc{bottom:648.021333pt;}
.yb{bottom:661.305333pt;}
.y36{bottom:674.588000pt;}
.ya{bottom:674.589333pt;}
.y9{bottom:741.649333pt;}
.y8{bottom:758.088000pt;}
.y7{bottom:774.525333pt;}
.y6{bottom:790.964000pt;}
.y5{bottom:807.600000pt;}
.y4{bottom:849.442667pt;}
.y3{bottom:886.636000pt;}
.y2{bottom:923.830667pt;}
.y1{bottom:961.024000pt;}
.h7{height:29.244954pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h2{height:49.262857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:65.285333pt;}
.xf{left:78.569333pt;}
.x3{left:86.200000pt;}
.x1{left:107.257333pt;}
.x2{left:108.580000pt;}
.x6{left:161.830667pt;}
.x8{left:175.413333pt;}
.x7{left:189.673333pt;}
.x9{left:210.189333pt;}
.x5{left:215.173333pt;}
.x4{left:377.905333pt;}
.x11{left:415.970667pt;}
.x14{left:421.284000pt;}
.x12{left:429.253333pt;}
.x15{left:440.316000pt;}
.xb{left:456.273333pt;}
.xd{left:469.854667pt;}
.xc{left:484.114667pt;}
.xa{left:498.977333pt;}
.xe{left:501.881333pt;}
.x13{left:546.149333pt;}
}




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