
    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_83d59476385f8e0be48f6aab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_dafc2855f8677277bb97c989.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_5d59bdacf8b202dc1041b0bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_5bd8f8cc266fe1d78f862941.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.798177;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:107.953131px;}
.ls2{letter-spacing:108.000003px;}
.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;}
}
.ws7{word-spacing:-29.916001px;}
.ws3{word-spacing:-28.254000px;}
.ws5{word-spacing:-24.930001px;}
.ws0{word-spacing:-23.268000px;}
.ws4{word-spacing:-19.944001px;}
.ws6{word-spacing:-16.620000px;}
.ws2{word-spacing:-11.634000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-15.984001px;}
._6{margin-left:-11.880000px;}
._1{margin-left:-9.102001px;}
._7{margin-left:-6.167753px;}
._4{margin-left:-4.620000px;}
._2{margin-left:-2.592000px;}
._5{margin-left:-1.068247px;}
._0{width:1.055556px;}
._9{width:2.657385px;}
._8{width:108.106316px;}
.fc6{color:rgb(204,0,0);}
.fc5{color:rgb(56,118,29);}
.fc3{color:rgb(33,26,82);}
.fc1{color:rgb(0,151,167);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:42.000000px;}
.fse{font-size:54.000002px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:72.000002px;}
.fsc{font-size:78.000005px;}
.fs0{font-size:84.000000px;}
.fs8{font-size:90.000003px;}
.fsd{font-size:91.800012px;}
.fsa{font-size:94.350005px;}
.fs7{font-size:102.000000px;}
.fsb{font-size:108.000003px;}
.fs2{font-size:144.000005px;}
.fs6{font-size:151.200005px;}
.fs3{font-size:216.000007px;}
.fs1{font-size:246.000014px;}
.y0{bottom:0.000000px;}
.y8{bottom:17.457976px;}
.y7{bottom:28.082245px;}
.y12{bottom:49.158557px;}
.yc{bottom:49.159930px;}
.y11{bottom:76.103837px;}
.y4c{bottom:92.123129px;}
.y20{bottom:101.180971px;}
.y23{bottom:104.393466px;}
.y46{bottom:107.010940px;}
.y52{bottom:108.185924px;}
.y10{bottom:111.293838px;}
.yb{bottom:111.374384px;}
.y2d{bottom:117.380892px;}
.y1f{bottom:126.020949px;}
.y4b{bottom:129.383130px;}
.y22{bottom:132.743461px;}
.y51{bottom:142.205914px;}
.y45{bottom:144.270941px;}
.yf{bottom:146.483839px;}
.y1e{bottom:150.860939px;}
.y2a{bottom:154.640894px;}
.y32{bottom:172.640894px;}
.y1d{bottom:175.700928px;}
.y29{bottom:191.900917px;}
.ye{bottom:199.673837px;}
.y1c{bottom:200.540895px;}
.y2{bottom:200.613411px;}
.y31{bottom:209.900918px;}
.y1b{bottom:225.380896px;}
.y1{bottom:225.813410px;}
.yd{bottom:234.863833px;}
.y3b{bottom:239.040371px;}
.y50{bottom:242.195906px;}
.y30{bottom:247.160919px;}
.y3f{bottom:247.583964px;}
.y1a{bottom:250.220897px;}
.y36{bottom:262.482829px;}
.y4f{bottom:263.255918px;}
.y2c{bottom:265.160920px;}
.y3a{bottom:265.500360px;}
.y5{bottom:280.552782px;}
.y3e{bottom:281.603960px;}
.y6{bottom:284.309995px;}
.y2f{bottom:284.420909px;}
.y35{bottom:285.882841px;}
.y44{bottom:287.748552px;}
.y39{bottom:291.960361px;}
.y19{bottom:293.060898px;}
.y4e{bottom:297.275896px;}
.y28{bottom:302.420910px;}
.y4a{bottom:305.555897px;}
.y34{bottom:309.282842px;}
.y3d{bottom:315.623961px;}
.y38{bottom:318.420356px;}
.y43{bottom:319.419553px;}
.y18{bottom:335.900899px;}
.y27{bottom:339.680900px;}
.y49{bottom:342.815887px;}
.y33{bottom:347.682839px;}
.y3c{bottom:349.643962px;}
.y42{bottom:351.090554px;}
.y17{bottom:360.740900px;}
.y37{bottom:362.880354px;}
.y26{bottom:376.940889px;}
.y48{bottom:380.075899px;}
.y4{bottom:381.165705px;}
.y41{bottom:382.761555px;}
.y16{bottom:385.580912px;}
.y2e{bottom:394.940890px;}
.y4d{bottom:401.315900px;}
.y15{bottom:410.420902px;}
.y2b{bottom:414.200902px;}
.y40{bottom:414.432554px;}
.y25{bottom:432.200903px;}
.y14{bottom:435.260903px;}
.y47{bottom:435.335901px;}
.y3{bottom:454.965707px;}
.y24{bottom:469.460904px;}
.y13{bottom:478.100904px;}
.ya{bottom:488.691257px;}
.y21{bottom:490.527255px;}
.y9{bottom:544.524993px;}
.h6{height:30.597656px;}
.h12{height:39.339845px;}
.h5{height:43.710938px;}
.hb{height:52.453127px;}
.hc{height:52.593752px;}
.h10{height:56.824223px;}
.h1{height:61.195312px;}
.h9{height:65.566408px;}
.h11{height:66.877743px;}
.hd{height:68.735453px;}
.h8{height:74.308594px;}
.ha{height:74.507813px;}
.he{height:78.679690px;}
.hf{height:78.890628px;}
.h3{height:104.906253px;}
.h7{height:110.151566px;}
.h4{height:157.359380px;}
.h2{height:179.214854px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb{left:10.125000px;}
.x8{left:37.939962px;}
.x9{left:46.939963px;}
.xc{left:48.451682px;}
.xd{left:49.671260px;}
.x17{left:51.422385px;}
.x2a{left:57.631857px;}
.xe{left:58.671261px;}
.x3{left:64.501780px;}
.x18{left:100.939964px;}
.xf{left:103.671262px;}
.x6{left:121.882346px;}
.x4{left:140.326126px;}
.x25{left:146.054454px;}
.x2b{left:165.005882px;}
.x5{left:173.285178px;}
.x15{left:182.909200px;}
.x13{left:214.843136px;}
.x20{left:220.390162px;}
.x1a{left:233.890162px;}
.x14{left:259.870598px;}
.x29{left:281.565425px;}
.x1{left:299.938858px;}
.xa{left:335.731188px;}
.x2{left:340.147620px;}
.x28{left:387.363759px;}
.x1f{left:573.401583px;}
.x1d{left:580.880944px;}
.x10{left:583.612241px;}
.x26{left:591.572838px;}
.x11{left:592.612241px;}
.x1e{left:595.203940px;}
.x21{left:623.251018px;}
.x23{left:629.629921px;}
.x22{left:631.522899px;}
.x27{left:634.880945px;}
.x12{left:637.612243px;}
.x1b{left:738.268707px;}
.x1c{left:753.494162px;}
.x24{left:766.051450px;}
.x16{left:1038.688064px;}
.x19{left:1039.801339px;}
.x7{left:1047.027099px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:95.958339pt;}
.ls2{letter-spacing:96.000003pt;}
.ws7{word-spacing:-26.592001pt;}
.ws3{word-spacing:-25.114667pt;}
.ws5{word-spacing:-22.160001pt;}
.ws0{word-spacing:-20.682667pt;}
.ws4{word-spacing:-17.728001pt;}
.ws6{word-spacing:-14.773333pt;}
.ws2{word-spacing:-10.341333pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-14.208000pt;}
._6{margin-left:-10.560000pt;}
._1{margin-left:-8.090667pt;}
._7{margin-left:-5.482447pt;}
._4{margin-left:-4.106667pt;}
._2{margin-left:-2.304000pt;}
._5{margin-left:-0.949553pt;}
._0{width:0.938272pt;}
._9{width:2.362120pt;}
._8{width:96.094503pt;}
.fs5{font-size:37.333333pt;}
.fse{font-size:48.000002pt;}
.fs4{font-size:53.333334pt;}
.fs9{font-size:64.000002pt;}
.fsc{font-size:69.333338pt;}
.fs0{font-size:74.666666pt;}
.fs8{font-size:80.000003pt;}
.fsd{font-size:81.600011pt;}
.fsa{font-size:83.866671pt;}
.fs7{font-size:90.666667pt;}
.fsb{font-size:96.000003pt;}
.fs2{font-size:128.000004pt;}
.fs6{font-size:134.400004pt;}
.fs3{font-size:192.000006pt;}
.fs1{font-size:218.666679pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:15.518201pt;}
.y7{bottom:24.961996pt;}
.y12{bottom:43.696495pt;}
.yc{bottom:43.697715pt;}
.y11{bottom:67.647855pt;}
.y4c{bottom:81.887225pt;}
.y20{bottom:89.938641pt;}
.y23{bottom:92.794192pt;}
.y46{bottom:95.120836pt;}
.y52{bottom:96.165266pt;}
.y10{bottom:98.927856pt;}
.yb{bottom:98.999453pt;}
.y2d{bottom:104.338571pt;}
.y1f{bottom:112.018621pt;}
.y4b{bottom:115.007226pt;}
.y22{bottom:117.994187pt;}
.y51{bottom:126.405257pt;}
.y45{bottom:128.240837pt;}
.yf{bottom:130.207857pt;}
.y1e{bottom:134.098612pt;}
.y2a{bottom:137.458572pt;}
.y32{bottom:153.458573pt;}
.y1d{bottom:156.178603pt;}
.y29{bottom:170.578593pt;}
.ye{bottom:177.487855pt;}
.y1c{bottom:178.258573pt;}
.y2{bottom:178.323032pt;}
.y31{bottom:186.578594pt;}
.y1b{bottom:200.338574pt;}
.y1{bottom:200.723031pt;}
.yd{bottom:208.767851pt;}
.y3b{bottom:212.480330pt;}
.y50{bottom:215.285250pt;}
.y30{bottom:219.698595pt;}
.y3f{bottom:220.074635pt;}
.y1a{bottom:222.418575pt;}
.y36{bottom:233.318070pt;}
.y4f{bottom:234.005260pt;}
.y2c{bottom:235.698595pt;}
.y3a{bottom:236.000320pt;}
.y5{bottom:249.380251pt;}
.y3e{bottom:250.314631pt;}
.y6{bottom:252.719996pt;}
.y2f{bottom:252.818586pt;}
.y35{bottom:254.118081pt;}
.y44{bottom:255.776491pt;}
.y39{bottom:259.520321pt;}
.y19{bottom:260.498576pt;}
.y4e{bottom:264.245241pt;}
.y28{bottom:268.818586pt;}
.y4a{bottom:271.605241pt;}
.y34{bottom:274.918082pt;}
.y3d{bottom:280.554632pt;}
.y38{bottom:283.040317pt;}
.y43{bottom:283.928492pt;}
.y18{bottom:298.578577pt;}
.y27{bottom:301.938577pt;}
.y49{bottom:304.725232pt;}
.y33{bottom:309.051413pt;}
.y3c{bottom:310.794633pt;}
.y42{bottom:312.080493pt;}
.y17{bottom:320.658578pt;}
.y37{bottom:322.560315pt;}
.y26{bottom:335.058568pt;}
.y48{bottom:337.845244pt;}
.y4{bottom:338.813960pt;}
.y41{bottom:340.232494pt;}
.y16{bottom:342.738589pt;}
.y2e{bottom:351.058569pt;}
.y4d{bottom:356.725244pt;}
.y15{bottom:364.818579pt;}
.y2b{bottom:368.178580pt;}
.y40{bottom:368.384493pt;}
.y25{bottom:384.178580pt;}
.y14{bottom:386.898580pt;}
.y47{bottom:386.965245pt;}
.y3{bottom:404.413962pt;}
.y24{bottom:417.298581pt;}
.y13{bottom:424.978581pt;}
.ya{bottom:434.392229pt;}
.y21{bottom:436.024227pt;}
.y9{bottom:484.022216pt;}
.h6{height:27.197917pt;}
.h12{height:34.968751pt;}
.h5{height:38.854167pt;}
.hb{height:46.625001pt;}
.hc{height:46.750001pt;}
.h10{height:50.510420pt;}
.h1{height:54.395833pt;}
.h9{height:58.281252pt;}
.h11{height:59.446883pt;}
.hd{height:61.098180pt;}
.h8{height:66.052084pt;}
.ha{height:66.229167pt;}
.he{height:69.937502pt;}
.hf{height:70.125002pt;}
.h3{height:93.250003pt;}
.h7{height:97.912503pt;}
.h4{height:139.875004pt;}
.h2{height:159.302092pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.000000pt;}
.x8{left:33.724411pt;}
.x9{left:41.724411pt;}
.xc{left:43.068161pt;}
.xd{left:44.152231pt;}
.x17{left:45.708786pt;}
.x2a{left:51.228318pt;}
.xe{left:52.152232pt;}
.x3{left:57.334916pt;}
.x18{left:89.724413pt;}
.xf{left:92.152233pt;}
.x6{left:108.339863pt;}
.x4{left:124.734334pt;}
.x25{left:129.826181pt;}
.x2b{left:146.671895pt;}
.x5{left:154.031269pt;}
.x15{left:162.585955pt;}
.x13{left:190.971676pt;}
.x20{left:195.902366pt;}
.x1a{left:207.902367pt;}
.x14{left:230.996087pt;}
.x29{left:250.280378pt;}
.x1{left:266.612319pt;}
.xa{left:298.427723pt;}
.x2{left:302.353440pt;}
.x28{left:344.323341pt;}
.x1f{left:509.690296pt;}
.x1d{left:516.338617pt;}
.x10{left:518.766437pt;}
.x26{left:525.842523pt;}
.x11{left:526.766437pt;}
.x1e{left:529.070169pt;}
.x21{left:554.000905pt;}
.x23{left:559.671041pt;}
.x22{left:561.353688pt;}
.x27{left:564.338618pt;}
.x12{left:566.766438pt;}
.x1b{left:656.238851pt;}
.x1c{left:669.772588pt;}
.x24{left:680.934622pt;}
.x16{left:923.278280pt;}
.x19{left:924.267857pt;}
.x7{left:930.690755pt;}
}




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