
    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_d23bc0aa3d9b4c4500e0b47a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912598;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_de2db6c4ba5d4217746c7e49.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;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_e854831b5df1b4f8f52dc80a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_6c80053b539d75adacbd77dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_bf6a99cf43d52573a123dc69.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bcc945fbefed91b70c8c388e.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v1{vertical-align:-15.480000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.092400px;}
.ls10{letter-spacing:-0.050400px;}
.lsd{letter-spacing:-0.047160px;}
.lse{letter-spacing:-0.044640px;}
.lsc{letter-spacing:-0.041040px;}
.lsb{letter-spacing:-0.001806px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.033480px;}
.ls4{letter-spacing:0.057120px;}
.ls2{letter-spacing:0.059040px;}
.ls3{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.118200px;}
.lsf{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.144600px;}
.ls5{letter-spacing:0.167400px;}
.ls0{letter-spacing:0.173160px;}
.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;}
}
.ws1f{word-spacing:-24.408000px;}
.ws3{word-spacing:-19.101480px;}
.ws1{word-spacing:-18.956880px;}
.ws18{word-spacing:-17.682240px;}
.ws16{word-spacing:-17.655120px;}
.ws10{word-spacing:-15.214320px;}
.ws1a{word-spacing:-14.075280px;}
.ws24{word-spacing:-13.587120px;}
.ws23{word-spacing:-12.312000px;}
.ws25{word-spacing:0.000000px;}
.ws7{word-spacing:3.177120px;}
.ws5{word-spacing:3.254760px;}
.wsd{word-spacing:3.417138px;}
.ws1d{word-spacing:3.594240px;}
.ws12{word-spacing:3.611880px;}
.ws2{word-spacing:3.629520px;}
.ws0{word-spacing:3.683640px;}
.ws15{word-spacing:3.731880px;}
.wsb{word-spacing:3.762000px;}
.ws9{word-spacing:3.767400px;}
.ws14{word-spacing:3.777138px;}
.wse{word-spacing:3.804480px;}
.wsf{word-spacing:3.897138px;}
.ws13{word-spacing:4.075560px;}
.wsa{word-spacing:4.080240px;}
.wsc{word-spacing:4.135680px;}
.ws11{word-spacing:4.266000px;}
.ws17{word-spacing:4.314600px;}
.ws4{word-spacing:4.318200px;}
.ws8{word-spacing:4.365000px;}
.ws6{word-spacing:4.374360px;}
.ws1b{word-spacing:4.719960px;}
.ws22{word-spacing:4.766400px;}
.ws21{word-spacing:4.982400px;}
.ws20{word-spacing:5.232000px;}
.ws1c{word-spacing:5.268960px;}
.ws19{word-spacing:5.349240px;}
.ws1e{word-spacing:953.957160px;}
._3{margin-left:-9.654480px;}
._2{margin-left:-7.765560px;}
._0{margin-left:-6.086520px;}
._4{margin-left:-4.617360px;}
._1{margin-left:-3.530160px;}
._5{margin-left:-1.677600px;}
._6{width:1.738800px;}
.fc3{color:rgb(0,32,96);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(137,137,137);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(31,73,125);}
.fs9{font-size:54.000000px;}
.fsa{font-size:60.120000px;}
.fs6{font-size:62.280000px;}
.fs2{font-size:67.320000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs5{font-size:78.240000px;}
.fs1{font-size:83.880000px;}
.fs8{font-size:86.400000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:209.880000px;}
.y0{bottom:0.000000px;}
.y29{bottom:23.640000px;}
.y2d{bottom:25.470000px;}
.y28{bottom:39.840000px;}
.y2c{bottom:43.470000px;}
.y2b{bottom:61.470000px;}
.y27{bottom:63.120000px;}
.y26{bottom:79.320000px;}
.y2a{bottom:79.470000px;}
.y25{bottom:101.370000px;}
.y1d{bottom:112.170000px;}
.y24{bottom:117.570000px;}
.y23{bottom:133.770000px;}
.y1c{bottom:148.440000px;}
.y17{bottom:199.590000px;}
.y16{bottom:221.190000px;}
.y15{bottom:243.510000px;}
.y14{bottom:291.930000px;}
.y13{bottom:319.110000px;}
.y12{bottom:346.290000px;}
.y11{bottom:398.700000px;}
.y10{bottom:423.900000px;}
.yf{bottom:451.080000px;}
.ye{bottom:500.940000px;}
.yd{bottom:525.600000px;}
.yc{bottom:550.800000px;}
.yb{bottom:604.260000px;}
.ya{bottom:631.980000px;}
.y9{bottom:659.160000px;}
.y8{bottom:709.560000px;}
.y7{bottom:734.760000px;}
.y6{bottom:770.940000px;}
.y5{bottom:791.100000px;}
.y4{bottom:815.760000px;}
.y3{bottom:840.960000px;}
.y1b{bottom:886.080000px;}
.y1a{bottom:909.510000px;}
.y22{bottom:922.680000px;}
.y19{bottom:932.910000px;}
.y21{bottom:946.080000px;}
.y18{bottom:961.710000px;}
.y20{bottom:962.280000px;}
.y1f{bottom:978.480000px;}
.y1e{bottom:994.680000px;}
.y2{bottom:1026.300000px;}
.y1{bottom:1089.300000px;}
.hb{height:39.313477px;}
.hc{height:49.581387px;}
.h6{height:53.554922px;}
.h4{height:57.421758px;}
.h2{height:57.503672px;}
.h5{height:59.378906px;}
.h8{height:64.426113px;}
.h7{height:64.525078px;}
.h3{height:69.176426px;}
.h9{height:73.588359px;}
.ha{height:89.068359px;}
.h1{height:146.649551px;}
.h0{height:1170.000000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.xa{left:23.309988px;}
.x3{left:49.499988px;}
.x10{left:52.319988px;}
.xc{left:57.449988px;}
.xf{left:71.849988px;}
.xe{left:75.629988px;}
.xd{left:82.739988px;}
.x5{left:105.839988px;}
.x4{left:110.429988px;}
.x11{left:141.479988px;}
.x13{left:147.689988px;}
.x12{left:153.269988px;}
.x14{left:157.229988px;}
.x2{left:331.229988px;}
.x1{left:352.949988px;}
.x16{left:388.349988px;}
.x15{left:389.609988px;}
.xb{left:395.099988px;}
.x8{left:428.459988px;}
.x7{left:431.249988px;}
.x9{left:445.379988px;}
.x17{left:463.139988px;}
.x6{left:480.029988px;}
@media print{
.v1{vertical-align:-13.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.082133pt;}
.ls10{letter-spacing:-0.044800pt;}
.lsd{letter-spacing:-0.041920pt;}
.lse{letter-spacing:-0.039680pt;}
.lsc{letter-spacing:-0.036480pt;}
.lsb{letter-spacing:-0.001605pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.029760pt;}
.ls4{letter-spacing:0.050773pt;}
.ls2{letter-spacing:0.052480pt;}
.ls3{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.105067pt;}
.lsf{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.128533pt;}
.ls5{letter-spacing:0.148800pt;}
.ls0{letter-spacing:0.153920pt;}
.ws1f{word-spacing:-21.696000pt;}
.ws3{word-spacing:-16.979093pt;}
.ws1{word-spacing:-16.850560pt;}
.ws18{word-spacing:-15.717547pt;}
.ws16{word-spacing:-15.693440pt;}
.ws10{word-spacing:-13.523840pt;}
.ws1a{word-spacing:-12.511360pt;}
.ws24{word-spacing:-12.077440pt;}
.ws23{word-spacing:-10.944000pt;}
.ws25{word-spacing:0.000000pt;}
.ws7{word-spacing:2.824107pt;}
.ws5{word-spacing:2.893120pt;}
.wsd{word-spacing:3.037456pt;}
.ws1d{word-spacing:3.194880pt;}
.ws12{word-spacing:3.210560pt;}
.ws2{word-spacing:3.226240pt;}
.ws0{word-spacing:3.274347pt;}
.ws15{word-spacing:3.317227pt;}
.wsb{word-spacing:3.344000pt;}
.ws9{word-spacing:3.348800pt;}
.ws14{word-spacing:3.357456pt;}
.wse{word-spacing:3.381760pt;}
.wsf{word-spacing:3.464123pt;}
.ws13{word-spacing:3.622720pt;}
.wsa{word-spacing:3.626880pt;}
.wsc{word-spacing:3.676160pt;}
.ws11{word-spacing:3.792000pt;}
.ws17{word-spacing:3.835200pt;}
.ws4{word-spacing:3.838400pt;}
.ws8{word-spacing:3.880000pt;}
.ws6{word-spacing:3.888320pt;}
.ws1b{word-spacing:4.195520pt;}
.ws22{word-spacing:4.236800pt;}
.ws21{word-spacing:4.428800pt;}
.ws20{word-spacing:4.650667pt;}
.ws1c{word-spacing:4.683520pt;}
.ws19{word-spacing:4.754880pt;}
.ws1e{word-spacing:847.961920pt;}
._3{margin-left:-8.581760pt;}
._2{margin-left:-6.902720pt;}
._0{margin-left:-5.410240pt;}
._4{margin-left:-4.104320pt;}
._1{margin-left:-3.137920pt;}
._5{margin-left:-1.491200pt;}
._6{width:1.545600pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:53.440000pt;}
.fs6{font-size:55.360000pt;}
.fs2{font-size:59.840000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs5{font-size:69.546667pt;}
.fs1{font-size:74.560000pt;}
.fs8{font-size:76.800000pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:186.560000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:21.013333pt;}
.y2d{bottom:22.640000pt;}
.y28{bottom:35.413333pt;}
.y2c{bottom:38.640000pt;}
.y2b{bottom:54.640000pt;}
.y27{bottom:56.106667pt;}
.y26{bottom:70.506667pt;}
.y2a{bottom:70.640000pt;}
.y25{bottom:90.106667pt;}
.y1d{bottom:99.706667pt;}
.y24{bottom:104.506667pt;}
.y23{bottom:118.906667pt;}
.y1c{bottom:131.946667pt;}
.y17{bottom:177.413333pt;}
.y16{bottom:196.613333pt;}
.y15{bottom:216.453333pt;}
.y14{bottom:259.493333pt;}
.y13{bottom:283.653333pt;}
.y12{bottom:307.813333pt;}
.y11{bottom:354.400000pt;}
.y10{bottom:376.800000pt;}
.yf{bottom:400.960000pt;}
.ye{bottom:445.280000pt;}
.yd{bottom:467.200000pt;}
.yc{bottom:489.600000pt;}
.yb{bottom:537.120000pt;}
.ya{bottom:561.760000pt;}
.y9{bottom:585.920000pt;}
.y8{bottom:630.720000pt;}
.y7{bottom:653.120000pt;}
.y6{bottom:685.280000pt;}
.y5{bottom:703.200000pt;}
.y4{bottom:725.120000pt;}
.y3{bottom:747.520000pt;}
.y1b{bottom:787.626667pt;}
.y1a{bottom:808.453333pt;}
.y22{bottom:820.160000pt;}
.y19{bottom:829.253333pt;}
.y21{bottom:840.960000pt;}
.y18{bottom:854.853333pt;}
.y20{bottom:855.360000pt;}
.y1f{bottom:869.760000pt;}
.y1e{bottom:884.160000pt;}
.y2{bottom:912.266667pt;}
.y1{bottom:968.266667pt;}
.hb{height:34.945312pt;}
.hc{height:44.072344pt;}
.h6{height:47.604375pt;}
.h4{height:51.041562pt;}
.h2{height:51.114375pt;}
.h5{height:52.781250pt;}
.h8{height:57.267656pt;}
.h7{height:57.355625pt;}
.h3{height:61.490156pt;}
.h9{height:65.411875pt;}
.ha{height:79.171875pt;}
.h1{height:130.355156pt;}
.h0{height:1040.000000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.xa{left:20.719989pt;}
.x3{left:43.999989pt;}
.x10{left:46.506656pt;}
.xc{left:51.066656pt;}
.xf{left:63.866656pt;}
.xe{left:67.226656pt;}
.xd{left:73.546656pt;}
.x5{left:94.079989pt;}
.x4{left:98.159989pt;}
.x11{left:125.759989pt;}
.x13{left:131.279989pt;}
.x12{left:136.239989pt;}
.x14{left:139.759989pt;}
.x2{left:294.426656pt;}
.x1{left:313.733323pt;}
.x16{left:345.199989pt;}
.x15{left:346.319989pt;}
.xb{left:351.199989pt;}
.x8{left:380.853323pt;}
.x7{left:383.333323pt;}
.x9{left:395.893323pt;}
.x17{left:411.679989pt;}
.x6{left:426.693323pt;}
}




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