
    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_7a7a2ac14ea89cba4665c57a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_619ba2949b6849e1c69c6b16.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_c1c85791b3e8c69757f469ac.woff')format("woff");}.ff3{font-family:ff3;line-height:1.292969;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_4cce8b099cfdee8dd5cc65a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.025879;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;}
.ls5{letter-spacing:-1.794000px;}
.ls11{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.750000px;}
.lsb{letter-spacing:-0.690000px;}
.ls2{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.552000px;}
.lse{letter-spacing:1.104000px;}
.lsc{letter-spacing:1.173000px;}
.ls6{letter-spacing:1.242000px;}
.lsa{letter-spacing:1.344000px;}
.ls8{letter-spacing:2.400000px;}
.ls10{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls7{letter-spacing:467.962200px;}
.ls0{letter-spacing:953.017800px;}
.lsf{letter-spacing:1015.584000px;}
.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;}
}
.ws6{word-spacing:-20.325000px;}
.wsd{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.146000px;}
.ws2{word-spacing:-6.000000px;}
.wse{word-spacing:-5.880000px;}
.ws8{word-spacing:-2.400000px;}
.ws5{word-spacing:-1.242000px;}
.wsa{word-spacing:-1.173000px;}
.wsc{word-spacing:-1.104000px;}
.wsb{word-spacing:-0.552000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.180000px;}
.ws1{word-spacing:0.252000px;}
.ws9{word-spacing:0.690000px;}
.wsf{word-spacing:0.780000px;}
.ws4{word-spacing:1.794000px;}
._a{margin-left:-7.616400px;}
._b{margin-left:-6.100800px;}
._9{margin-left:-5.040000px;}
._d{margin-left:-3.969300px;}
._3{margin-left:-2.872500px;}
._8{margin-left:-1.310400px;}
._2{width:1.071000px;}
._1{width:2.400000px;}
._4{width:3.900000px;}
._e{width:4.986600px;}
._5{width:6.414000px;}
._6{width:8.142000px;}
._7{width:9.918000px;}
._c{width:11.247000px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs5{font-size:81.000000px;}
.fs9{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y45{bottom:106.243050px;}
.y20{bottom:106.410750px;}
.y57{bottom:120.900150px;}
.y44{bottom:126.529050px;}
.y1f{bottom:128.801250px;}
.y56{bottom:141.150150px;}
.y43{bottom:146.815050px;}
.y1e{bottom:151.191750px;}
.y55{bottom:161.400150px;}
.y42{bottom:167.101050px;}
.y1d{bottom:173.582250px;}
.y54{bottom:181.650150px;}
.y41{bottom:187.387050px;}
.y1c{bottom:195.972750px;}
.y40{bottom:207.673050px;}
.y53{bottom:214.650150px;}
.y1b{bottom:218.363250px;}
.y3f{bottom:227.959050px;}
.y1a{bottom:240.753750px;}
.y3e{bottom:248.245050px;}
.y19{bottom:263.144250px;}
.y3d{bottom:268.531050px;}
.y18{bottom:285.534750px;}
.y3c{bottom:288.817050px;}
.y17{bottom:307.925250px;}
.y3b{bottom:309.103050px;}
.y3a{bottom:329.389050px;}
.y16{bottom:330.315750px;}
.y39{bottom:349.675050px;}
.y15{bottom:352.706250px;}
.y38{bottom:369.961050px;}
.y14{bottom:375.096750px;}
.y37{bottom:390.247050px;}
.y13{bottom:397.487250px;}
.y12{bottom:419.877750px;}
.y36{bottom:431.788950px;}
.y11{bottom:442.268250px;}
.y10{bottom:464.658750px;}
.yf{bottom:487.049250px;}
.y35{bottom:494.016300px;}
.ye{bottom:509.439750px;}
.y34{bottom:514.302300px;}
.yd{bottom:531.830250px;}
.y33{bottom:534.588300px;}
.yc{bottom:554.220750px;}
.y32{bottom:554.874300px;}
.y52{bottom:568.413900px;}
.y31{bottom:575.160300px;}
.yb{bottom:576.611250px;}
.y30{bottom:595.446300px;}
.ya{bottom:599.001750px;}
.y2f{bottom:615.732300px;}
.y51{bottom:616.669200px;}
.y9{bottom:621.392250px;}
.y2e{bottom:636.018300px;}
.y50{bottom:636.920700px;}
.y8{bottom:643.782750px;}
.y2d{bottom:656.304300px;}
.y4f{bottom:657.172200px;}
.y2c{bottom:676.590300px;}
.y4e{bottom:677.423700px;}
.y7{bottom:687.437700px;}
.y2b{bottom:696.876300px;}
.y2a{bottom:717.162300px;}
.y4d{bottom:718.933650px;}
.y29{bottom:737.448300px;}
.y6{bottom:751.853700px;}
.y28{bottom:757.734300px;}
.y27{bottom:778.020300px;}
.y4c{bottom:781.192350px;}
.y5{bottom:785.495700px;}
.y26{bottom:798.306300px;}
.y4b{bottom:801.443850px;}
.y25{bottom:818.592300px;}
.y4a{bottom:821.695350px;}
.y24{bottom:838.878300px;}
.y49{bottom:841.946850px;}
.y4{bottom:848.903700px;}
.y23{bottom:859.164300px;}
.y48{bottom:862.198350px;}
.y3{bottom:880.553700px;}
.y47{bottom:882.449850px;}
.y22{bottom:900.706200px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.h9{height:40.757812px;}
.ha{height:47.578125px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h7{height:58.589355px;}
.hc{height:62.138672px;}
.h2{height:63.684082px;}
.h6{height:68.778809px;}
.hb{height:71.326172px;}
.h8{height:71.459473px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:83.610150px;}
.x1{left:85.039350px;}
.x6{left:104.044800px;}
.x3{left:105.051900px;}
.x5{left:231.420750px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.594667pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.666667pt;}
.lsb{letter-spacing:-0.613333pt;}
.ls2{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.490667pt;}
.lse{letter-spacing:0.981333pt;}
.lsc{letter-spacing:1.042667pt;}
.ls6{letter-spacing:1.104000pt;}
.lsa{letter-spacing:1.194667pt;}
.ls8{letter-spacing:2.133333pt;}
.ls10{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls7{letter-spacing:415.966400pt;}
.ls0{letter-spacing:847.126933pt;}
.lsf{letter-spacing:902.741333pt;}
.ws6{word-spacing:-18.066667pt;}
.wsd{word-spacing:-12.960000pt;}
.ws7{word-spacing:-11.685333pt;}
.ws2{word-spacing:-5.333333pt;}
.wse{word-spacing:-5.226667pt;}
.ws8{word-spacing:-2.133333pt;}
.ws5{word-spacing:-1.104000pt;}
.wsa{word-spacing:-1.042667pt;}
.wsc{word-spacing:-0.981333pt;}
.wsb{word-spacing:-0.490667pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.160000pt;}
.ws1{word-spacing:0.224000pt;}
.ws9{word-spacing:0.613333pt;}
.wsf{word-spacing:0.693333pt;}
.ws4{word-spacing:1.594667pt;}
._a{margin-left:-6.770133pt;}
._b{margin-left:-5.422933pt;}
._9{margin-left:-4.480000pt;}
._d{margin-left:-3.528267pt;}
._3{margin-left:-2.553333pt;}
._8{margin-left:-1.164800pt;}
._2{width:0.952000pt;}
._1{width:2.133333pt;}
._4{width:3.466667pt;}
._e{width:4.432533pt;}
._5{width:5.701333pt;}
._6{width:7.237333pt;}
._7{width:8.816000pt;}
._c{width:9.997333pt;}
._0{width:514.133333pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs5{font-size:72.000000pt;}
.fs9{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y45{bottom:94.438267pt;}
.y20{bottom:94.587333pt;}
.y57{bottom:107.466800pt;}
.y44{bottom:112.470267pt;}
.y1f{bottom:114.490000pt;}
.y56{bottom:125.466800pt;}
.y43{bottom:130.502267pt;}
.y1e{bottom:134.392667pt;}
.y55{bottom:143.466800pt;}
.y42{bottom:148.534267pt;}
.y1d{bottom:154.295333pt;}
.y54{bottom:161.466800pt;}
.y41{bottom:166.566267pt;}
.y1c{bottom:174.198000pt;}
.y40{bottom:184.598267pt;}
.y53{bottom:190.800133pt;}
.y1b{bottom:194.100667pt;}
.y3f{bottom:202.630267pt;}
.y1a{bottom:214.003333pt;}
.y3e{bottom:220.662267pt;}
.y19{bottom:233.906000pt;}
.y3d{bottom:238.694267pt;}
.y18{bottom:253.808667pt;}
.y3c{bottom:256.726267pt;}
.y17{bottom:273.711333pt;}
.y3b{bottom:274.758267pt;}
.y3a{bottom:292.790267pt;}
.y16{bottom:293.614000pt;}
.y39{bottom:310.822267pt;}
.y15{bottom:313.516667pt;}
.y38{bottom:328.854267pt;}
.y14{bottom:333.419333pt;}
.y37{bottom:346.886267pt;}
.y13{bottom:353.322000pt;}
.y12{bottom:373.224667pt;}
.y36{bottom:383.812400pt;}
.y11{bottom:393.127333pt;}
.y10{bottom:413.030000pt;}
.yf{bottom:432.932667pt;}
.y35{bottom:439.125600pt;}
.ye{bottom:452.835333pt;}
.y34{bottom:457.157600pt;}
.yd{bottom:472.738000pt;}
.y33{bottom:475.189600pt;}
.yc{bottom:492.640667pt;}
.y32{bottom:493.221600pt;}
.y52{bottom:505.256800pt;}
.y31{bottom:511.253600pt;}
.yb{bottom:512.543333pt;}
.y30{bottom:529.285600pt;}
.ya{bottom:532.446000pt;}
.y2f{bottom:547.317600pt;}
.y51{bottom:548.150400pt;}
.y9{bottom:552.348667pt;}
.y2e{bottom:565.349600pt;}
.y50{bottom:566.151733pt;}
.y8{bottom:572.251333pt;}
.y2d{bottom:583.381600pt;}
.y4f{bottom:584.153067pt;}
.y2c{bottom:601.413600pt;}
.y4e{bottom:602.154400pt;}
.y7{bottom:611.055733pt;}
.y2b{bottom:619.445600pt;}
.y2a{bottom:637.477600pt;}
.y4d{bottom:639.052133pt;}
.y29{bottom:655.509600pt;}
.y6{bottom:668.314400pt;}
.y28{bottom:673.541600pt;}
.y27{bottom:691.573600pt;}
.y4c{bottom:694.393200pt;}
.y5{bottom:698.218400pt;}
.y26{bottom:709.605600pt;}
.y4b{bottom:712.394533pt;}
.y25{bottom:727.637600pt;}
.y4a{bottom:730.395867pt;}
.y24{bottom:745.669600pt;}
.y49{bottom:748.397200pt;}
.y4{bottom:754.581067pt;}
.y23{bottom:763.701600pt;}
.y48{bottom:766.398533pt;}
.y3{bottom:782.714400pt;}
.y47{bottom:784.399867pt;}
.y22{bottom:800.627733pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.h9{height:36.229167pt;}
.ha{height:42.291667pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h7{height:52.079427pt;}
.hc{height:55.234375pt;}
.h2{height:56.608073pt;}
.h6{height:61.136719pt;}
.hb{height:63.401042pt;}
.h8{height:63.519531pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:74.320133pt;}
.x1{left:75.590533pt;}
.x6{left:92.484267pt;}
.x3{left:93.379467pt;}
.x5{left:205.707333pt;}
.x2{left:207.480400pt;}
}




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