
    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_74beb6d84ced97183dfcd955.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_df75a15c09b3c9ce613dc50c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_1f7fe02ee3b792425de4d686.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_e0dc13b8497366d97e4a32f1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016113;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_d364db5a47130fd8287e21bd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_01b99dba75449ef97be81300.woff')format("woff");}.ff6{font-family:ff6;line-height:1.122070;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;}
.lsa{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.252000px;}
.ls3{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:2.400000px;}
.ls9{letter-spacing:3.600000px;}
.ls7{letter-spacing:5.475000px;}
.ls8{letter-spacing:6.000000px;}
.ls2{letter-spacing:7.260000px;}
.lsd{letter-spacing:8.400000px;}
.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:-29.916000px;}
.wsd{word-spacing:-29.475000px;}
.ws6{word-spacing:-26.550000px;}
.wse{word-spacing:-14.820000px;}
.ws3{word-spacing:-7.260000px;}
.ws8{word-spacing:-6.000000px;}
.ws9{word-spacing:-3.600000px;}
.ws7{word-spacing:-2.400000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.180000px;}
.ws4{word-spacing:0.240000px;}
.ws2{word-spacing:0.252000px;}
.ws5{word-spacing:0.360000px;}
.wsc{word-spacing:0.540000px;}
.wsa{word-spacing:0.660000px;}
._f{margin-left:-19.341600px;}
._c{margin-left:-10.919400px;}
._15{margin-left:-6.720000px;}
._a{margin-left:-5.149200px;}
._8{margin-left:-3.856500px;}
._9{margin-left:-2.547000px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._4{width:2.878500px;}
._b{width:4.461600px;}
._5{width:5.964000px;}
._6{width:7.314000px;}
._7{width:8.532000px;}
._12{width:9.859500px;}
._13{width:11.523000px;}
._10{width:12.605700px;}
._e{width:13.717200px;}
._14{width:446.167200px;}
._d{width:450.979500px;}
._0{width:578.400000px;}
._11{width:940.552200px;}
._3{width:949.207200px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y48{bottom:106.165350px;}
.y1f{bottom:106.201350px;}
.y47{bottom:126.589350px;}
.y1e{bottom:126.849600px;}
.y46{bottom:147.013350px;}
.y1d{bottom:147.497850px;}
.y45{bottom:167.437350px;}
.y1c{bottom:168.146100px;}
.y44{bottom:187.861350px;}
.y1b{bottom:188.794350px;}
.y43{bottom:208.285350px;}
.y1a{bottom:209.442600px;}
.y42{bottom:228.709350px;}
.y19{bottom:230.090850px;}
.y41{bottom:249.133350px;}
.y18{bottom:250.739100px;}
.y40{bottom:269.557350px;}
.y17{bottom:271.387350px;}
.y3f{bottom:289.981350px;}
.y16{bottom:292.035600px;}
.y3e{bottom:310.405350px;}
.y15{bottom:312.683850px;}
.y3d{bottom:330.829350px;}
.y14{bottom:333.332100px;}
.y3c{bottom:351.253350px;}
.y13{bottom:353.980350px;}
.y3b{bottom:371.677350px;}
.y12{bottom:374.628600px;}
.y3a{bottom:392.101350px;}
.y11{bottom:395.276850px;}
.y39{bottom:412.525350px;}
.y38{bottom:432.949350px;}
.y10{bottom:445.684500px;}
.y37{bottom:453.373350px;}
.yf{bottom:467.074500px;}
.y36{bottom:473.797350px;}
.ye{bottom:488.464500px;}
.y35{bottom:494.221350px;}
.y34{bottom:514.645350px;}
.y5b{bottom:524.441550px;}
.y33{bottom:535.069350px;}
.yd{bottom:539.636550px;}
.y5a{bottom:544.691550px;}
.y32{bottom:555.493350px;}
.y59{bottom:564.941550px;}
.yc{bottom:571.523550px;}
.y31{bottom:575.917350px;}
.y58{bottom:585.191550px;}
.y30{bottom:596.341350px;}
.yb{bottom:603.410550px;}
.y57{bottom:605.441550px;}
.y2f{bottom:616.765350px;}
.y56{bottom:625.691550px;}
.ya{bottom:635.297550px;}
.y2e{bottom:637.189350px;}
.y55{bottom:645.941550px;}
.y2d{bottom:657.613350px;}
.y9{bottom:667.184550px;}
.y2c{bottom:678.037350px;}
.y54{bottom:678.941550px;}
.y2b{bottom:698.461350px;}
.y8{bottom:707.572050px;}
.y2a{bottom:718.885350px;}
.y53{bottom:720.437850px;}
.y29{bottom:739.309350px;}
.y7{bottom:739.471050px;}
.y52{bottom:740.689350px;}
.y28{bottom:759.733350px;}
.y51{bottom:760.940850px;}
.y27{bottom:780.157350px;}
.y50{bottom:781.192350px;}
.y26{bottom:800.581350px;}
.y6{bottom:801.127650px;}
.y4f{bottom:801.443850px;}
.y25{bottom:821.005350px;}
.y4e{bottom:821.695350px;}
.y5{bottom:831.022650px;}
.y24{bottom:841.429350px;}
.y4d{bottom:841.946850px;}
.y4{bottom:852.412650px;}
.y23{bottom:861.853350px;}
.y4c{bottom:862.198350px;}
.y22{bottom:882.277350px;}
.y3{bottom:882.307650px;}
.y4b{bottom:882.449850px;}
.y21{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:948.189000px;}
.y4a{bottom:966.189000px;}
.y49{bottom:984.189000px;}
.h8{height:40.757812px;}
.h4{height:50.947266px;}
.h9{height:51.884766px;}
.h3{height:53.494629px;}
.h7{height:58.589355px;}
.ha{height:59.667480px;}
.h2{height:63.684082px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.930250px;}
.x9{left:82.482750px;}
.x6{left:83.672550px;}
.x1{left:85.039350px;}
.x7{left:103.173300px;}
.x5{left:104.244600px;}
.x4{left:105.952350px;}
.x3{left:232.218000px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.224000pt;}
.ls3{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls9{letter-spacing:3.200000pt;}
.ls7{letter-spacing:4.866667pt;}
.ls8{letter-spacing:5.333333pt;}
.ls2{letter-spacing:6.453333pt;}
.lsd{letter-spacing:7.466667pt;}
.ws0{word-spacing:-26.592000pt;}
.wsd{word-spacing:-26.200000pt;}
.ws6{word-spacing:-23.600000pt;}
.wse{word-spacing:-13.173333pt;}
.ws3{word-spacing:-6.453333pt;}
.ws8{word-spacing:-5.333333pt;}
.ws9{word-spacing:-3.200000pt;}
.ws7{word-spacing:-2.133333pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.160000pt;}
.ws4{word-spacing:0.213333pt;}
.ws2{word-spacing:0.224000pt;}
.ws5{word-spacing:0.320000pt;}
.wsc{word-spacing:0.480000pt;}
.wsa{word-spacing:0.586667pt;}
._f{margin-left:-17.192533pt;}
._c{margin-left:-9.706133pt;}
._15{margin-left:-5.973333pt;}
._a{margin-left:-4.577067pt;}
._8{margin-left:-3.428000pt;}
._9{margin-left:-2.264000pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._4{width:2.558667pt;}
._b{width:3.965867pt;}
._5{width:5.301333pt;}
._6{width:6.501333pt;}
._7{width:7.584000pt;}
._12{width:8.764000pt;}
._13{width:10.242667pt;}
._10{width:11.205067pt;}
._e{width:12.193067pt;}
._14{width:396.593067pt;}
._d{width:400.870667pt;}
._0{width:514.133333pt;}
._11{width:836.046400pt;}
._3{width:843.739733pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y48{bottom:94.369200pt;}
.y1f{bottom:94.401200pt;}
.y47{bottom:112.523867pt;}
.y1e{bottom:112.755200pt;}
.y46{bottom:130.678533pt;}
.y1d{bottom:131.109200pt;}
.y45{bottom:148.833200pt;}
.y1c{bottom:149.463200pt;}
.y44{bottom:166.987867pt;}
.y1b{bottom:167.817200pt;}
.y43{bottom:185.142533pt;}
.y1a{bottom:186.171200pt;}
.y42{bottom:203.297200pt;}
.y19{bottom:204.525200pt;}
.y41{bottom:221.451867pt;}
.y18{bottom:222.879200pt;}
.y40{bottom:239.606533pt;}
.y17{bottom:241.233200pt;}
.y3f{bottom:257.761200pt;}
.y16{bottom:259.587200pt;}
.y3e{bottom:275.915867pt;}
.y15{bottom:277.941200pt;}
.y3d{bottom:294.070533pt;}
.y14{bottom:296.295200pt;}
.y3c{bottom:312.225200pt;}
.y13{bottom:314.649200pt;}
.y3b{bottom:330.379867pt;}
.y12{bottom:333.003200pt;}
.y3a{bottom:348.534533pt;}
.y11{bottom:351.357200pt;}
.y39{bottom:366.689200pt;}
.y38{bottom:384.843867pt;}
.y10{bottom:396.164000pt;}
.y37{bottom:402.998533pt;}
.yf{bottom:415.177333pt;}
.y36{bottom:421.153200pt;}
.ye{bottom:434.190667pt;}
.y35{bottom:439.307867pt;}
.y34{bottom:457.462533pt;}
.y5b{bottom:466.170267pt;}
.y33{bottom:475.617200pt;}
.yd{bottom:479.676933pt;}
.y5a{bottom:484.170267pt;}
.y32{bottom:493.771867pt;}
.y59{bottom:502.170267pt;}
.yc{bottom:508.020933pt;}
.y31{bottom:511.926533pt;}
.y58{bottom:520.170267pt;}
.y30{bottom:530.081200pt;}
.yb{bottom:536.364933pt;}
.y57{bottom:538.170267pt;}
.y2f{bottom:548.235867pt;}
.y56{bottom:556.170267pt;}
.ya{bottom:564.708933pt;}
.y2e{bottom:566.390533pt;}
.y55{bottom:574.170267pt;}
.y2d{bottom:584.545200pt;}
.y9{bottom:593.052933pt;}
.y2c{bottom:602.699867pt;}
.y54{bottom:603.503600pt;}
.y2b{bottom:620.854533pt;}
.y8{bottom:628.952933pt;}
.y2a{bottom:639.009200pt;}
.y53{bottom:640.389200pt;}
.y29{bottom:657.163867pt;}
.y7{bottom:657.307600pt;}
.y52{bottom:658.390533pt;}
.y28{bottom:675.318533pt;}
.y51{bottom:676.391867pt;}
.y27{bottom:693.473200pt;}
.y50{bottom:694.393200pt;}
.y26{bottom:711.627867pt;}
.y6{bottom:712.113467pt;}
.y4f{bottom:712.394533pt;}
.y25{bottom:729.782533pt;}
.y4e{bottom:730.395867pt;}
.y5{bottom:738.686800pt;}
.y24{bottom:747.937200pt;}
.y4d{bottom:748.397200pt;}
.y4{bottom:757.700133pt;}
.y23{bottom:766.091867pt;}
.y4c{bottom:766.398533pt;}
.y22{bottom:784.246533pt;}
.y3{bottom:784.273467pt;}
.y4b{bottom:784.399867pt;}
.y21{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:842.834667pt;}
.y4a{bottom:858.834667pt;}
.y49{bottom:874.834667pt;}
.h8{height:36.229167pt;}
.h4{height:45.286458pt;}
.h9{height:46.119792pt;}
.h3{height:47.550781pt;}
.h7{height:52.079427pt;}
.ha{height:53.037760pt;}
.h2{height:56.608073pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.938000pt;}
.x9{left:73.318000pt;}
.x6{left:74.375600pt;}
.x1{left:75.590533pt;}
.x7{left:91.709600pt;}
.x5{left:92.661867pt;}
.x4{left:94.179867pt;}
.x3{left:206.416000pt;}
.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; }
  