
    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_9893d81fc9d316c5a23ff7fd.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_271462bfd521809902164cc5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_80fa893d7577264f7010127a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_1c114a313c0b28f82269b387.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_596cf13247071becff11ec4b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_6d0f3689ae9d18a04ff8bb46.woff')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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:ff7;src:url('chunks/assets/font_cd7a1a0a51728d862e0e8552.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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:ff8;src:url('chunks/assets/font_386651ca0e673b0cc4cf83fb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_3f76493f8feadc933177c8ea.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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.250371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.361486px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.361486px;}
.ls1{letter-spacing:-2.259887px;}
.ls3{letter-spacing:-2.081642px;}
.ls2{letter-spacing:-1.776080px;}
.ls4{letter-spacing:-1.445054px;}
.ls5{letter-spacing:-1.292273px;}
.ls7{letter-spacing:-0.010417px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.011574px;}
.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;}
}
.ws2{word-spacing:-15.914696px;}
.ws4{word-spacing:-14.622422px;}
.ws5{word-spacing:-14.479479px;}
.ws3{word-spacing:-14.469641px;}
.ws6{word-spacing:-14.467905px;}
.ws0{word-spacing:-14.138615px;}
.ws1{word-spacing:-13.833053px;}
.ws8{word-spacing:-13.010698px;}
.ws7{word-spacing:-0.040510px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-1.625614px;}
._0{width:1.782446px;}
._3{width:5.295253px;}
._2{width:6.406388px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.722972px;}
.fs3{font-size:40.510134px;}
.fs2{font-size:52.084458px;}
.fs1{font-size:57.871620px;}
.fs0{font-size:63.658782px;}
.fs5{font-size:69.445944px;}
.y0{bottom:0.000000px;}
.y4d{bottom:0.000014px;}
.y4e{bottom:4.340371px;}
.y7{bottom:6.510572px;}
.yb{bottom:7.957279px;}
.y12{bottom:7.957330px;}
.y45{bottom:7.957343px;}
.y23{bottom:7.957379px;}
.y2d{bottom:9.404063px;}
.y36{bottom:9.404114px;}
.y43{bottom:9.404134px;}
.y3f{bottom:9.404165px;}
.y16{bottom:10.850884px;}
.y32{bottom:10.850905px;}
.y10{bottom:10.850911px;}
.y3b{bottom:10.850956px;}
.y14{bottom:10.850972px;}
.y29{bottom:12.297644px;}
.y3{bottom:12.297709px;}
.y1d{bottom:12.297751px;}
.y5{bottom:15.191315px;}
.y9{bottom:16.638022px;}
.y4c{bottom:18.084887px;}
.y46{bottom:19.531680px;}
.y6{bottom:23.872058px;}
.ya{bottom:25.318765px;}
.y2c{bottom:29.659130px;}
.y35{bottom:29.659181px;}
.yf{bottom:29.659187px;}
.y42{bottom:29.659201px;}
.y3e{bottom:29.659232px;}
.y22{bottom:29.659237px;}
.y28{bottom:31.105921px;}
.y31{bottom:31.105972px;}
.y2{bottom:31.105985px;}
.y3a{bottom:31.106023px;}
.y1c{bottom:31.106027px;}
.y4b{bottom:35.446373px;}
.y41{bottom:48.467477px;}
.y30{bottom:49.914248px;}
.ye{bottom:49.914254px;}
.y44{bottom:49.914268px;}
.y39{bottom:49.914299px;}
.y21{bottom:49.914304px;}
.y27{bottom:51.360988px;}
.y34{bottom:51.361039px;}
.y4a{bottom:51.361069px;}
.y3d{bottom:51.361090px;}
.y1b{bottom:51.361094px;}
.yd{bottom:68.722531px;}
.y49{bottom:68.722555px;}
.y26{bottom:70.169264px;}
.y2f{bottom:70.169315px;}
.y38{bottom:70.169366px;}
.y1a{bottom:70.169371px;}
.y2b{bottom:71.616055px;}
.y33{bottom:71.616106px;}
.y11{bottom:71.616112px;}
.y3c{bottom:71.616157px;}
.y20{bottom:71.616161px;}
.y48{bottom:84.637250px;}
.y19{bottom:88.977647px;}
.y25{bottom:90.424331px;}
.y1f{bottom:91.871228px;}
.y2a{bottom:93.317912px;}
.y47{bottom:101.998736px;}
.y18{bottom:109.232714px;}
.y1e{bottom:113.573086px;}
.y40{bottom:133.828140px;}
.y37{bottom:196.040100px;}
.y2e{bottom:279.954000px;}
.y24{bottom:363.867900px;}
.y17{bottom:469.483500px;}
.y15{bottom:595.354350px;}
.y13{bottom:619.949700px;}
.yc{bottom:644.545200px;}
.y8{bottom:728.459100px;}
.y4{bottom:768.969150px;}
.y1{bottom:810.926100px;}
.ha{height:24.595440px;}
.h9{height:36.164111px;}
.h5{height:37.616550px;}
.h7{height:39.221586px;}
.h6{height:40.182346px;}
.he{height:40.877483px;}
.h3{height:41.956920px;}
.h4{height:42.428827px;}
.h2{height:43.143745px;}
.hb{height:44.737475px;}
.h1{height:44.850510px;}
.h12{height:46.285993px;}
.hf{height:62.211990px;}
.h8{height:83.913855px;}
.hd{height:105.615705px;}
.h10{height:114.296445px;}
.hc{height:125.870775px;}
.h11{height:856.499986px;}
.h0{height:856.500000px;}
.w6{width:60.855315px;}
.w5{width:108.670215px;}
.w3{width:110.119155px;}
.w4{width:111.568080px;}
.w2{width:269.502150px;}
.w1{width:660.714900px;}
.w0{width:681.000000px;}
.x0{left:0.000000px;}
.x2{left:3.622341px;}
.x8{left:5.714275px;}
.x12{left:9.056845px;}
.x1{left:10.867021px;}
.x14{left:12.417055px;}
.x17{left:13.626916px;}
.x13{left:14.749991px;}
.x11{left:16.039395px;}
.x10{left:17.162614px;}
.x5{left:19.079847px;}
.xf{left:20.784955px;}
.xe{left:22.596125px;}
.xc{left:24.182562px;}
.xb{left:25.255228px;}
.x9{left:27.268651px;}
.xd{left:28.717587px;}
.x4{left:30.085242px;}
.x16{left:53.465563px;}
.x15{left:54.588638px;}
.x3{left:280.369200px;}
.x6{left:390.488250px;}
.x7{left:502.056450px;}
.xa{left:610.726650px;}
@media print{
.v2{vertical-align:-15.432432pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.432432pt;}
.ls1{letter-spacing:-2.008788pt;}
.ls3{letter-spacing:-1.850349pt;}
.ls2{letter-spacing:-1.578738pt;}
.ls4{letter-spacing:-1.284493pt;}
.ls5{letter-spacing:-1.148687pt;}
.ls7{letter-spacing:-0.009259pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.010288pt;}
.ws2{word-spacing:-14.146396pt;}
.ws4{word-spacing:-12.997709pt;}
.ws5{word-spacing:-12.870648pt;}
.ws3{word-spacing:-12.861903pt;}
.ws6{word-spacing:-12.860360pt;}
.ws0{word-spacing:-12.567658pt;}
.ws1{word-spacing:-12.296047pt;}
.ws8{word-spacing:-11.565065pt;}
.ws7{word-spacing:-0.036009pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-1.444990pt;}
._0{width:1.584396pt;}
._3{width:4.706892pt;}
._2{width:5.694567pt;}
.fs4{font-size:30.864864pt;}
.fs3{font-size:36.009008pt;}
.fs2{font-size:46.297296pt;}
.fs1{font-size:51.441440pt;}
.fs0{font-size:56.585584pt;}
.fs5{font-size:61.729728pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:0.000013pt;}
.y4e{bottom:3.858108pt;}
.y7{bottom:5.787175pt;}
.yb{bottom:7.073137pt;}
.y12{bottom:7.073182pt;}
.y45{bottom:7.073194pt;}
.y23{bottom:7.073226pt;}
.y2d{bottom:8.359167pt;}
.y36{bottom:8.359213pt;}
.y43{bottom:8.359230pt;}
.y3f{bottom:8.359258pt;}
.y16{bottom:9.645230pt;}
.y32{bottom:9.645249pt;}
.y10{bottom:9.645254pt;}
.y3b{bottom:9.645294pt;}
.y14{bottom:9.645309pt;}
.y29{bottom:10.931239pt;}
.y3{bottom:10.931297pt;}
.y1d{bottom:10.931334pt;}
.y5{bottom:13.503391pt;}
.y9{bottom:14.789353pt;}
.y4c{bottom:16.075455pt;}
.y46{bottom:17.361493pt;}
.y6{bottom:21.219607pt;}
.ya{bottom:22.505569pt;}
.y2c{bottom:26.363671pt;}
.y35{bottom:26.363717pt;}
.yf{bottom:26.363722pt;}
.y42{bottom:26.363734pt;}
.y3e{bottom:26.363762pt;}
.y22{bottom:26.363766pt;}
.y28{bottom:27.649707pt;}
.y31{bottom:27.649753pt;}
.y2{bottom:27.649765pt;}
.y3a{bottom:27.649798pt;}
.y1c{bottom:27.649802pt;}
.y4b{bottom:31.507887pt;}
.y41{bottom:43.082202pt;}
.y30{bottom:44.368221pt;}
.ye{bottom:44.368226pt;}
.y44{bottom:44.368238pt;}
.y39{bottom:44.368266pt;}
.y21{bottom:44.368270pt;}
.y27{bottom:45.654211pt;}
.y34{bottom:45.654257pt;}
.y4a{bottom:45.654283pt;}
.y3d{bottom:45.654302pt;}
.y1b{bottom:45.654306pt;}
.yd{bottom:61.086694pt;}
.y49{bottom:61.086715pt;}
.y26{bottom:62.372679pt;}
.y2f{bottom:62.372725pt;}
.y38{bottom:62.372770pt;}
.y1a{bottom:62.372774pt;}
.y2b{bottom:63.658715pt;}
.y33{bottom:63.658761pt;}
.y11{bottom:63.658766pt;}
.y3c{bottom:63.658806pt;}
.y20{bottom:63.658810pt;}
.y48{bottom:75.233111pt;}
.y19{bottom:79.091242pt;}
.y25{bottom:80.377183pt;}
.y1f{bottom:81.663314pt;}
.y2a{bottom:82.949255pt;}
.y47{bottom:90.665543pt;}
.y18{bottom:97.095746pt;}
.y1e{bottom:100.953854pt;}
.y40{bottom:118.958347pt;}
.y37{bottom:174.257867pt;}
.y2e{bottom:248.848000pt;}
.y24{bottom:323.438133pt;}
.y17{bottom:417.318667pt;}
.y15{bottom:529.203867pt;}
.y13{bottom:551.066400pt;}
.yc{bottom:572.929067pt;}
.y8{bottom:647.519200pt;}
.y4{bottom:683.528133pt;}
.y1{bottom:720.823200pt;}
.ha{height:21.862613pt;}
.h9{height:32.145876pt;}
.h5{height:33.436933pt;}
.h7{height:34.863632pt;}
.h6{height:35.717640pt;}
.he{height:36.335541pt;}
.h3{height:37.295040pt;}
.h4{height:37.714513pt;}
.h2{height:38.349995pt;}
.hb{height:39.766644pt;}
.h1{height:39.867120pt;}
.h12{height:41.143105pt;}
.hf{height:55.299547pt;}
.h8{height:74.590093pt;}
.hd{height:93.880627pt;}
.h10{height:101.596840pt;}
.hc{height:111.885133pt;}
.h11{height:761.333321pt;}
.h0{height:761.333333pt;}
.w6{width:54.093613pt;}
.w5{width:96.595747pt;}
.w3{width:97.883693pt;}
.w4{width:99.171627pt;}
.w2{width:239.557467pt;}
.w1{width:587.302133pt;}
.w0{width:605.333333pt;}
.x0{left:0.000000pt;}
.x2{left:3.219859pt;}
.x8{left:5.079356pt;}
.x12{left:8.050529pt;}
.x1{left:9.659575pt;}
.x14{left:11.037382pt;}
.x17{left:12.112814pt;}
.x13{left:13.111103pt;}
.x11{left:14.257240pt;}
.x10{left:15.255657pt;}
.x5{left:16.959864pt;}
.xf{left:18.475515pt;}
.xe{left:20.085445pt;}
.xc{left:21.495610pt;}
.xb{left:22.449092pt;}
.x9{left:24.238801pt;}
.xd{left:25.526744pt;}
.x4{left:26.742437pt;}
.x16{left:47.524945pt;}
.x15{left:48.523233pt;}
.x3{left:249.217067pt;}
.x6{left:347.100667pt;}
.x7{left:446.272400pt;}
.xa{left:542.868133pt;}
}




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