
    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_69b4945ab5c0bbe4985b7fd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_b7ca5fc02998f93a8f38bb4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_ca6ad5a0479d7f9485b47b15.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960938;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_4379ee52157e6122e0d06ad5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_596e8beb7fdf7c4d755ef752.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4a6059a0994721848040e92e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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);}
.v2{vertical-align:-107.279400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.115200px;}
.ls9{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.335520px;}
.lsd{letter-spacing:-0.324000px;}
.ls2{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.239760px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.239760px;}
.lsa{letter-spacing:0.287280px;}
.ls0{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.335520px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.479520px;}
.lsc{letter-spacing:773.350920px;}
.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;}
}
.wsa{word-spacing:-123.120000px;}
.ws10{word-spacing:-101.376000px;}
.ws11{word-spacing:-101.088000px;}
.wse{word-spacing:-100.800000px;}
.ws13{word-spacing:-98.640000px;}
.wsf{word-spacing:-98.496000px;}
.ws1d{word-spacing:-97.632000px;}
.ws1c{word-spacing:-97.200000px;}
.ws15{word-spacing:-84.155760px;}
.ws1b{word-spacing:-64.800000px;}
.ws20{word-spacing:-58.716000px;}
.ws9{word-spacing:-1.728000px;}
.ws2a{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.432000px;}
.ws12{word-spacing:-0.287280px;}
.ws7{word-spacing:-0.216000px;}
.ws3{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.144000px;}
.ws18{word-spacing:0.239760px;}
.ws1e{word-spacing:0.324000px;}
.wsd{word-spacing:0.479520px;}
.ws29{word-spacing:0.576000px;}
.ws24{word-spacing:0.671040px;}
.ws27{word-spacing:0.719280px;}
.wsb{word-spacing:0.720000px;}
.ws4{word-spacing:0.864000px;}
.ws22{word-spacing:1.174320px;}
.wsc{word-spacing:1.198800px;}
.ws5{word-spacing:1.296000px;}
.ws21{word-spacing:1.677600px;}
.ws16{word-spacing:1.678320px;}
.ws26{word-spacing:1.800000px;}
.ws17{word-spacing:2.157840px;}
.ws1{word-spacing:2.160000px;}
.ws6{word-spacing:2.304000px;}
.ws28{word-spacing:2.397600px;}
.ws19{word-spacing:3.116880px;}
.ws25{word-spacing:3.355200px;}
.ws23{word-spacing:4.026240px;}
.ws1f{word-spacing:12.528000px;}
.ws1a{word-spacing:108.000000px;}
.ws14{word-spacing:758.301000px;}
._8{margin-left:-24.397200px;}
._9{margin-left:-17.329608px;}
._4{margin-left:-7.056000px;}
._5{margin-left:-5.106888px;}
._3{margin-left:-3.456000px;}
._2{margin-left:-2.304000px;}
._1{margin-left:-1.152000px;}
._0{width:1.080000px;}
._a{width:2.208096px;}
._6{width:3.476520px;}
._7{width:102.600000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.fsa{font-size:167.760000px;}
.fs2{font-size:216.000000px;}
.fs6{font-size:239.760000px;}
.fs9{font-size:264.240000px;}
.fs7{font-size:288.000000px;}
.fs8{font-size:324.000000px;}
.fs0{font-size:360.000000px;}
.fs5{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:101.440950px;}
.y30{bottom:205.518330px;}
.y2f{bottom:255.930210px;}
.y2e{bottom:349.540290px;}
.yb{bottom:362.359350px;}
.y11{bottom:399.792060px;}
.y2d{bottom:399.952170px;}
.y1f{bottom:432.103320px;}
.y19{bottom:464.829600px;}
.y10{bottom:471.780000px;}
.y2c{bottom:500.733990px;}
.y1e{bottom:504.091260px;}
.y7{bottom:511.920000px;}
.y29{bottom:513.412650px;}
.y2b{bottom:551.145870px;}
.y6{bottom:563.760000px;}
.y2a{bottom:601.557750px;}
.y5{bottom:615.600000px;}
.y28{bottom:630.052650px;}
.y1d{bottom:640.095120px;}
.y23{bottom:666.282600px;}
.y4{bottom:667.440000px;}
.y21{bottom:670.879950px;}
.y18{bottom:680.829600px;}
.y1c{bottom:712.083060px;}
.y3{bottom:719.280000px;}
.y2{bottom:771.120000px;}
.y27{bottom:776.752650px;}
.yc{bottom:819.660000px;}
.y1b{bottom:865.829160px;}
.y26{bottom:893.392650px;}
.y17{bottom:896.881950px;}
.y32{bottom:912.964200px;}
.y22{bottom:925.482600px;}
.y1a{bottom:937.817100px;}
.y9{bottom:943.037250px;}
.y8{bottom:1007.837250px;}
.y25{bottom:1039.912650px;}
.y31{bottom:1049.771550px;}
.y16{bottom:1112.881950px;}
.y20{bottom:1117.517220px;}
.y1{bottom:1143.416400px;}
.y24{bottom:1186.612650px;}
.y14{bottom:1191.118800px;}
.yf{bottom:1192.983900px;}
.y13{bottom:1277.518800px;}
.y12{bottom:1363.918800px;}
.ye{bottom:1384.038450px;}
.y34{bottom:1387.353150px;}
.y15{bottom:1393.246200px;}
.yd{bottom:1395.894600px;}
.y33{bottom:1473.753150px;}
.h5{height:54.703125px;}
.h4{height:73.222734px;}
.h2{height:110.109375px;}
.he{height:128.277422px;}
.h3{height:165.164062px;}
.h7{height:174.668906px;}
.ha{height:183.332109px;}
.hb{height:202.050703px;}
.h8{height:220.218750px;}
.h9{height:235.880859px;}
.hd{height:236.039062px;}
.h1{height:275.273438px;}
.hc{height:295.312500px;}
.h6{height:314.507812px;}
.h0{height:1620.000000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x1{left:118.500150px;}
.x10{left:121.497900px;}
.xf{left:172.500000px;}
.x4{left:199.800000px;}
.xb{left:211.668900px;}
.xe{left:473.246850px;}
.x6{left:512.169000px;}
.x3{left:560.003400px;}
.x5{left:668.397150px;}
.xd{left:1281.912150px;}
.x7{left:1393.381200px;}
.x11{left:1433.011500px;}
.x12{left:1435.924800px;}
.x8{left:1615.800150px;}
.xc{left:1862.480550px;}
.x9{left:2498.445600px;}
.xa{left:2731.217850px;}
.x2{left:2746.517700px;}
@media print{
.v2{vertical-align:-95.359467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.102400pt;}
.ls9{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.298240pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.213120pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.213120pt;}
.lsa{letter-spacing:0.255360pt;}
.ls0{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.298240pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.426240pt;}
.lsc{letter-spacing:687.423040pt;}
.wsa{word-spacing:-109.440000pt;}
.ws10{word-spacing:-90.112000pt;}
.ws11{word-spacing:-89.856000pt;}
.wse{word-spacing:-89.600000pt;}
.ws13{word-spacing:-87.680000pt;}
.wsf{word-spacing:-87.552000pt;}
.ws1d{word-spacing:-86.784000pt;}
.ws1c{word-spacing:-86.400000pt;}
.ws15{word-spacing:-74.805120pt;}
.ws1b{word-spacing:-57.600000pt;}
.ws20{word-spacing:-52.192000pt;}
.ws9{word-spacing:-1.536000pt;}
.ws2a{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.384000pt;}
.ws12{word-spacing:-0.255360pt;}
.ws7{word-spacing:-0.192000pt;}
.ws3{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.128000pt;}
.ws18{word-spacing:0.213120pt;}
.ws1e{word-spacing:0.288000pt;}
.wsd{word-spacing:0.426240pt;}
.ws29{word-spacing:0.512000pt;}
.ws24{word-spacing:0.596480pt;}
.ws27{word-spacing:0.639360pt;}
.wsb{word-spacing:0.640000pt;}
.ws4{word-spacing:0.768000pt;}
.ws22{word-spacing:1.043840pt;}
.wsc{word-spacing:1.065600pt;}
.ws5{word-spacing:1.152000pt;}
.ws21{word-spacing:1.491200pt;}
.ws16{word-spacing:1.491840pt;}
.ws26{word-spacing:1.600000pt;}
.ws17{word-spacing:1.918080pt;}
.ws1{word-spacing:1.920000pt;}
.ws6{word-spacing:2.048000pt;}
.ws28{word-spacing:2.131200pt;}
.ws19{word-spacing:2.770560pt;}
.ws25{word-spacing:2.982400pt;}
.ws23{word-spacing:3.578880pt;}
.ws1f{word-spacing:11.136000pt;}
.ws1a{word-spacing:96.000000pt;}
.ws14{word-spacing:674.045333pt;}
._8{margin-left:-21.686400pt;}
._9{margin-left:-15.404096pt;}
._4{margin-left:-6.272000pt;}
._5{margin-left:-4.539456pt;}
._3{margin-left:-3.072000pt;}
._2{margin-left:-2.048000pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.960000pt;}
._a{width:1.962752pt;}
._6{width:3.090240pt;}
._7{width:91.200000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.fsa{font-size:149.120000pt;}
.fs2{font-size:192.000000pt;}
.fs6{font-size:213.120000pt;}
.fs9{font-size:234.880000pt;}
.fs7{font-size:256.000000pt;}
.fs8{font-size:288.000000pt;}
.fs0{font-size:320.000000pt;}
.fs5{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:90.169733pt;}
.y30{bottom:182.682960pt;}
.y2f{bottom:227.493520pt;}
.y2e{bottom:310.702480pt;}
.yb{bottom:322.097200pt;}
.y11{bottom:355.370720pt;}
.y2d{bottom:355.513040pt;}
.y1f{bottom:384.091840pt;}
.y19{bottom:413.181867pt;}
.y10{bottom:419.360000pt;}
.y2c{bottom:445.096880pt;}
.y1e{bottom:448.081120pt;}
.y7{bottom:455.040000pt;}
.y29{bottom:456.366800pt;}
.y2b{bottom:489.907440pt;}
.y6{bottom:501.120000pt;}
.y2a{bottom:534.718000pt;}
.y5{bottom:547.200000pt;}
.y28{bottom:560.046800pt;}
.y1d{bottom:568.973440pt;}
.y23{bottom:592.251200pt;}
.y4{bottom:593.280000pt;}
.y21{bottom:596.337733pt;}
.y18{bottom:605.181867pt;}
.y1c{bottom:632.962720pt;}
.y3{bottom:639.360000pt;}
.y2{bottom:685.440000pt;}
.y27{bottom:690.446800pt;}
.yc{bottom:728.586667pt;}
.y1b{bottom:769.625920pt;}
.y26{bottom:794.126800pt;}
.y17{bottom:797.228400pt;}
.y32{bottom:811.523733pt;}
.y22{bottom:822.651200pt;}
.y1a{bottom:833.615200pt;}
.y9{bottom:838.255333pt;}
.y8{bottom:895.855333pt;}
.y25{bottom:924.366800pt;}
.y31{bottom:933.130267pt;}
.y16{bottom:989.228400pt;}
.y20{bottom:993.348640pt;}
.y1{bottom:1016.370133pt;}
.y24{bottom:1054.766800pt;}
.y14{bottom:1058.772267pt;}
.yf{bottom:1060.430133pt;}
.y13{bottom:1135.572267pt;}
.y12{bottom:1212.372267pt;}
.ye{bottom:1230.256400pt;}
.y34{bottom:1233.202800pt;}
.y15{bottom:1238.441067pt;}
.yd{bottom:1240.795200pt;}
.y33{bottom:1310.002800pt;}
.h5{height:48.625000pt;}
.h4{height:65.086875pt;}
.h2{height:97.875000pt;}
.he{height:114.024375pt;}
.h3{height:146.812500pt;}
.h7{height:155.261250pt;}
.ha{height:162.961875pt;}
.hb{height:179.600625pt;}
.h8{height:195.750000pt;}
.h9{height:209.671875pt;}
.hd{height:209.812500pt;}
.h1{height:244.687500pt;}
.hc{height:262.500000pt;}
.h6{height:279.562500pt;}
.h0{height:1440.000000pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x1{left:105.333467pt;}
.x10{left:107.998133pt;}
.xf{left:153.333333pt;}
.x4{left:177.600000pt;}
.xb{left:188.150133pt;}
.xe{left:420.663867pt;}
.x6{left:455.261333pt;}
.x3{left:497.780800pt;}
.x5{left:594.130800pt;}
.xd{left:1139.477467pt;}
.x7{left:1238.561067pt;}
.x11{left:1273.788000pt;}
.x12{left:1276.377600pt;}
.x8{left:1436.266800pt;}
.xc{left:1655.538267pt;}
.x9{left:2220.840533pt;}
.xa{left:2427.749200pt;}
.x2{left:2441.349067pt;}
}




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