
    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_825227c0fca89a57d207f374.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_a30c29c755acddeb6b1be8cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_a30c29c755acddeb6b1be8cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_39b97da01a74d6a25694d378.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.748000;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_d43b3a6c74fa932239e87eb7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937000;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_47929766e311d18998231520.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.878000;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;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.240000px;}
.lse{letter-spacing:0.510000px;}
.ls6{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.870000px;}
.lsa{letter-spacing:0.900000px;}
.lsc{letter-spacing:0.960000px;}
.ls7{letter-spacing:1.200000px;}
.lsf{letter-spacing:1.260000px;}
.ls1{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.500000px;}
.lsb{letter-spacing:1.920000px;}
.ls9{letter-spacing:2219.866200px;}
.ls0{letter-spacing:2838.796800px;}
.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;}
}
.ws0{word-spacing:-30.024000px;}
.ws1{word-spacing:-22.518000px;}
.wse{word-spacing:-18.348000px;}
.ws7{word-spacing:-0.600000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.240000px;}
.ws1a{word-spacing:0.420000px;}
.ws16{word-spacing:1.140000px;}
.wsd{word-spacing:1.320000px;}
.ws12{word-spacing:1.500000px;}
.ws19{word-spacing:1.680000px;}
.wsf{word-spacing:1.800000px;}
.ws8{word-spacing:2.520000px;}
.ws1d{word-spacing:2.880000px;}
.ws1b{word-spacing:3.060000px;}
.ws17{word-spacing:3.240000px;}
.wsb{word-spacing:3.420000px;}
.ws9{word-spacing:3.780000px;}
.wsc{word-spacing:4.740000px;}
.ws18{word-spacing:4.800000px;}
.ws10{word-spacing:5.160000px;}
.ws13{word-spacing:5.400000px;}
.ws6{word-spacing:6.000000px;}
.ws1c{word-spacing:6.540000px;}
.ws1e{word-spacing:6.660000px;}
.ws15{word-spacing:6.840000px;}
.ws11{word-spacing:7.500000px;}
.ws14{word-spacing:7.620000px;}
.ws5{word-spacing:7.980000px;}
.ws4{word-spacing:8.340000px;}
.ws3{word-spacing:10.008000px;}
._0{margin-left:-23.352000px;}
._1{margin-left:-16.680000px;}
._2{margin-left:-1.440000px;}
.fc1{color:rgb(180,141,14);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y28{bottom:143.526450px;}
.y27{bottom:164.316450px;}
.y26{bottom:185.106450px;}
.y25{bottom:205.896450px;}
.y24{bottom:226.686450px;}
.y23{bottom:247.476450px;}
.y22{bottom:268.266450px;}
.y21{bottom:289.056450px;}
.y20{bottom:309.846450px;}
.y1f{bottom:341.031450px;}
.y1e{bottom:361.821450px;}
.y4b{bottom:379.907850px;}
.y1d{bottom:382.611450px;}
.y4a{bottom:400.697850px;}
.y1c{bottom:403.401450px;}
.y49{bottom:421.487850px;}
.y1b{bottom:424.191450px;}
.y48{bottom:442.277850px;}
.y1a{bottom:444.981450px;}
.y47{bottom:463.067850px;}
.y19{bottom:465.771450px;}
.y46{bottom:483.857850px;}
.y18{bottom:486.561450px;}
.y45{bottom:504.647850px;}
.y17{bottom:507.351450px;}
.y44{bottom:525.437850px;}
.y16{bottom:528.141450px;}
.y43{bottom:546.227850px;}
.y42{bottom:567.017850px;}
.y41{bottom:598.202850px;}
.y40{bottom:618.992850px;}
.y3f{bottom:639.782850px;}
.y15{bottom:644.361450px;}
.y3e{bottom:660.572850px;}
.y14{bottom:665.151450px;}
.y3d{bottom:681.362850px;}
.y13{bottom:685.941450px;}
.y3c{bottom:702.152850px;}
.y12{bottom:706.728450px;}
.y3b{bottom:733.337850px;}
.y11{bottom:751.107450px;}
.y3a{bottom:754.127850px;}
.y10{bottom:771.897450px;}
.y39{bottom:774.917850px;}
.yf{bottom:792.687450px;}
.y38{bottom:795.707850px;}
.ye{bottom:813.474450px;}
.y37{bottom:816.497850px;}
.y36{bottom:837.287850px;}
.yd{bottom:857.853300px;}
.y35{bottom:858.077850px;}
.yc{bottom:878.643300px;}
.y34{bottom:889.262850px;}
.yb{bottom:899.433300px;}
.y33{bottom:910.052850px;}
.ya{bottom:920.211150px;}
.y32{bottom:930.842850px;}
.y31{bottom:951.632850px;}
.y9{bottom:964.605150px;}
.y30{bottom:972.422850px;}
.y8{bottom:989.805150px;}
.y2f{bottom:993.212850px;}
.y2e{bottom:1014.002850px;}
.y7{bottom:1034.190150px;}
.y2d{bottom:1034.792850px;}
.y2c{bottom:1055.582850px;}
.y6{bottom:1066.590150px;}
.y2b{bottom:1086.767850px;}
.y5{bottom:1098.990000px;}
.y2a{bottom:1107.557850px;}
.y2{bottom:1164.901350px;}
.y29{bottom:1172.943900px;}
.y4{bottom:1193.874900px;}
.y3{bottom:1207.374900px;}
.h3{height:26.496000px;}
.h4{height:35.328000px;}
.h9{height:37.281000px;}
.h8{height:43.860000px;}
.h2{height:48.246000px;}
.h7{height:61.404000px;}
.h5{height:78.948000px;}
.h6{height:99.360000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x5{left:92.268000px;}
.x4{left:205.943550px;}
.xe{left:223.380600px;}
.x7{left:289.872300px;}
.x3{left:389.919750px;}
.xd{left:397.283550px;}
.xf{left:399.855300px;}
.xa{left:417.893550px;}
.x6{left:518.142300px;}
.xb{left:543.338550px;}
.xc{left:576.121800px;}
.x9{left:594.818550px;}
.x8{left:622.806300px;}
.x2{left:752.406450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.453333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.773333pt;}
.lsa{letter-spacing:0.800000pt;}
.lsc{letter-spacing:0.853333pt;}
.ls7{letter-spacing:1.066667pt;}
.lsf{letter-spacing:1.120000pt;}
.ls1{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.333333pt;}
.lsb{letter-spacing:1.706667pt;}
.ls9{letter-spacing:1973.214400pt;}
.ls0{letter-spacing:2523.374933pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1{word-spacing:-20.016000pt;}
.wse{word-spacing:-16.309333pt;}
.ws7{word-spacing:-0.533333pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.213333pt;}
.ws1a{word-spacing:0.373333pt;}
.ws16{word-spacing:1.013333pt;}
.wsd{word-spacing:1.173333pt;}
.ws12{word-spacing:1.333333pt;}
.ws19{word-spacing:1.493333pt;}
.wsf{word-spacing:1.600000pt;}
.ws8{word-spacing:2.240000pt;}
.ws1d{word-spacing:2.560000pt;}
.ws1b{word-spacing:2.720000pt;}
.ws17{word-spacing:2.880000pt;}
.wsb{word-spacing:3.040000pt;}
.ws9{word-spacing:3.360000pt;}
.wsc{word-spacing:4.213333pt;}
.ws18{word-spacing:4.266667pt;}
.ws10{word-spacing:4.586667pt;}
.ws13{word-spacing:4.800000pt;}
.ws6{word-spacing:5.333333pt;}
.ws1c{word-spacing:5.813333pt;}
.ws1e{word-spacing:5.920000pt;}
.ws15{word-spacing:6.080000pt;}
.ws11{word-spacing:6.666667pt;}
.ws14{word-spacing:6.773333pt;}
.ws5{word-spacing:7.093333pt;}
.ws4{word-spacing:7.413333pt;}
.ws3{word-spacing:8.896000pt;}
._0{margin-left:-20.757333pt;}
._1{margin-left:-14.826667pt;}
._2{margin-left:-1.280000pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y28{bottom:127.579067pt;}
.y27{bottom:146.059067pt;}
.y26{bottom:164.539067pt;}
.y25{bottom:183.019067pt;}
.y24{bottom:201.499067pt;}
.y23{bottom:219.979067pt;}
.y22{bottom:238.459067pt;}
.y21{bottom:256.939067pt;}
.y20{bottom:275.419067pt;}
.y1f{bottom:303.139067pt;}
.y1e{bottom:321.619067pt;}
.y4b{bottom:337.695867pt;}
.y1d{bottom:340.099067pt;}
.y4a{bottom:356.175867pt;}
.y1c{bottom:358.579067pt;}
.y49{bottom:374.655867pt;}
.y1b{bottom:377.059067pt;}
.y48{bottom:393.135867pt;}
.y1a{bottom:395.539067pt;}
.y47{bottom:411.615867pt;}
.y19{bottom:414.019067pt;}
.y46{bottom:430.095867pt;}
.y18{bottom:432.499067pt;}
.y45{bottom:448.575867pt;}
.y17{bottom:450.979067pt;}
.y44{bottom:467.055867pt;}
.y16{bottom:469.459067pt;}
.y43{bottom:485.535867pt;}
.y42{bottom:504.015867pt;}
.y41{bottom:531.735867pt;}
.y40{bottom:550.215867pt;}
.y3f{bottom:568.695867pt;}
.y15{bottom:572.765733pt;}
.y3e{bottom:587.175867pt;}
.y14{bottom:591.245733pt;}
.y3d{bottom:605.655867pt;}
.y13{bottom:609.725733pt;}
.y3c{bottom:624.135867pt;}
.y12{bottom:628.203067pt;}
.y3b{bottom:651.855867pt;}
.y11{bottom:667.651067pt;}
.y3a{bottom:670.335867pt;}
.y10{bottom:686.131067pt;}
.y39{bottom:688.815867pt;}
.yf{bottom:704.611067pt;}
.y38{bottom:707.295867pt;}
.ye{bottom:723.088400pt;}
.y37{bottom:725.775867pt;}
.y36{bottom:744.255867pt;}
.yd{bottom:762.536267pt;}
.y35{bottom:762.735867pt;}
.yc{bottom:781.016267pt;}
.y34{bottom:790.455867pt;}
.yb{bottom:799.496267pt;}
.y33{bottom:808.935867pt;}
.ya{bottom:817.965467pt;}
.y32{bottom:827.415867pt;}
.y31{bottom:845.895867pt;}
.y9{bottom:857.426800pt;}
.y30{bottom:864.375867pt;}
.y8{bottom:879.826800pt;}
.y2f{bottom:882.855867pt;}
.y2e{bottom:901.335867pt;}
.y7{bottom:919.280133pt;}
.y2d{bottom:919.815867pt;}
.y2c{bottom:938.295867pt;}
.y6{bottom:948.080133pt;}
.y2b{bottom:966.015867pt;}
.y5{bottom:976.880000pt;}
.y2a{bottom:984.495867pt;}
.y2{bottom:1035.467867pt;}
.y29{bottom:1042.616800pt;}
.y4{bottom:1061.222133pt;}
.y3{bottom:1073.222133pt;}
.h3{height:23.552000pt;}
.h4{height:31.402667pt;}
.h9{height:33.138667pt;}
.h8{height:38.986667pt;}
.h2{height:42.885333pt;}
.h7{height:54.581333pt;}
.h5{height:70.176000pt;}
.h6{height:88.320000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x5{left:82.016000pt;}
.x4{left:183.060933pt;}
.xe{left:198.560533pt;}
.x7{left:257.664267pt;}
.x3{left:346.595333pt;}
.xd{left:353.140933pt;}
.xf{left:355.426933pt;}
.xa{left:371.460933pt;}
.x6{left:460.570933pt;}
.xb{left:482.967600pt;}
.xc{left:512.108267pt;}
.x9{left:528.727600pt;}
.x8{left:553.605600pt;}
.x2{left:668.805733pt;}
}




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