
    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_1daf42c45e50ffa4257389b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.923340;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_efcfb11edfd2cf0d2dae32f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_54093b1846cd79a21209dafa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.841309;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_f7b8690e65aecf8bb0ab7c9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.733000;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_2a9ffdb1c76a6134ce9a4499.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.851074;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_8673c7582e1c0352b6ade808.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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);}
.v3{vertical-align:-49.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:49.500000px;}
.v1{vertical-align:136.380000px;}
.lsc{letter-spacing:-1.506000px;}
.ls9{letter-spacing:-0.684000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.045000px;}
.ls5{letter-spacing:0.432000px;}
.ls8{letter-spacing:1.728000px;}
.lsb{letter-spacing:1.836000px;}
.lsa{letter-spacing:1.878000px;}
.ls0{letter-spacing:101.430000px;}
.ls2{letter-spacing:202.621500px;}
.ls1{letter-spacing:202.770000px;}
.ls3{letter-spacing:203.101500px;}
.ls4{letter-spacing:203.250000px;}
.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:-56.916000px;}
.ws2{word-spacing:-49.307850px;}
.ws1{word-spacing:-49.275000px;}
.ws4{word-spacing:-36.463500px;}
.ws6{word-spacing:-22.867950px;}
.ws5{word-spacing:-22.837500px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:0.144000px;}
._8{margin-left:-29.113500px;}
._e{margin-left:-13.500000px;}
._10{margin-left:-11.816700px;}
._c{margin-left:-8.775000px;}
._d{margin-left:-7.690650px;}
._6{margin-left:-6.048000px;}
._7{margin-left:-4.826850px;}
._2{margin-left:-3.637200px;}
._0{margin-left:-2.273250px;}
._3{margin-left:-1.002750px;}
._4{width:1.161300px;}
._1{width:2.727900px;}
._5{width:3.790500px;}
._9{width:4.866600px;}
._a{width:6.552000px;}
._13{width:8.796900px;}
._16{width:39.284850px;}
._15{width:48.463950px;}
._14{width:49.592100px;}
._f{width:157.942650px;}
._12{width:166.812150px;}
._11{width:170.374800px;}
._b{width:589.671300px;}
.fc3{color:transparent;}
.fc2{color:rgb(200,201,203);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:112.500000px;}
.fsa{font-size:112.650000px;}
.fs6{font-size:144.000000px;}
.fs8{font-size:166.500000px;}
.fsb{font-size:166.650000px;}
.fs7{font-size:216.000000px;}
.fs2{font-size:225.000000px;}
.fs4{font-size:225.150000px;}
.fs1{font-size:252.000000px;}
.fs3{font-size:252.150000px;}
.fs5{font-size:265.650000px;}
.fs0{font-size:454.650000px;}
.y0{bottom:0.000000px;}
.y30{bottom:395.145000px;}
.y31{bottom:407.355000px;}
.y32{bottom:501.075000px;}
.yc{bottom:593.220000px;}
.ye{bottom:775.200000px;}
.yd{bottom:809.730000px;}
.yf{bottom:843.825000px;}
.y14{bottom:982.575000px;}
.y11{bottom:1017.150000px;}
.y13{bottom:1051.230000px;}
.y10{bottom:1085.775000px;}
.y12{bottom:1119.870000px;}
.y17{bottom:1260.825000px;}
.y16{bottom:1329.450000px;}
.y15{bottom:1398.075000px;}
.y1d{bottom:1567.470000px;}
.y1c{bottom:1637.205000px;}
.y1b{bottom:1751.955000px;}
.y1a{bottom:1846.455000px;}
.y19{bottom:1939.875000px;}
.y25{bottom:1974.945000px;}
.y18{bottom:2032.125000px;}
.y24{bottom:2050.320000px;}
.y23{bottom:2125.695000px;}
.y22{bottom:2228.070000px;}
.y21{bottom:2304.600000px;}
.y20{bottom:2473.350000px;}
.y28{bottom:2498.145000px;}
.y1f{bottom:2548.725000px;}
.y27{bottom:2573.520000px;}
.y1e{bottom:2624.145000px;}
.y26{bottom:2648.880000px;}
.y2f{bottom:3031.200000px;}
.y2e{bottom:3073.950000px;}
.yb{bottom:3084.495000px;}
.ya{bottom:3159.855000px;}
.y2d{bottom:3186.375000px;}
.y9{bottom:3253.245000px;}
.y2c{bottom:3261.750000px;}
.y2b{bottom:3337.125000px;}
.y8{bottom:3403.995000px;}
.y2a{bottom:3412.500000px;}
.y29{bottom:3487.905000px;}
.y7{bottom:3498.525000px;}
.y3{bottom:3648.825000px;}
.y6{bottom:3649.275000px;}
.y2{bottom:3724.200000px;}
.y5{bottom:3724.650000px;}
.y1{bottom:3847.980000px;}
.y4{bottom:3850.680000px;}
.y34{bottom:4064.205000px;}
.y33{bottom:4102.455000px;}
.h10{height:97.633667px;}
.he{height:110.972900px;}
.hb{height:124.804688px;}
.hc{height:143.964844px;}
.hf{height:147.003662px;}
.h4{height:149.963379px;}
.h6{height:150.063354px;}
.h7{height:150.073242px;}
.h8{height:150.173291px;}
.h2{height:167.958984px;}
.h3{height:168.058960px;}
.hd{height:168.082031px;}
.h9{height:177.186475px;}
.ha{height:218.408203px;}
.h5{height:286.343379px;}
.h1{height:326.113696px;}
.h0{height:5055.750000px;}
.w2{width:3576.374947px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x1{left:183.299947px;}
.x19{left:218.819947px;}
.x5{left:280.154947px;}
.x1f{left:282.224947px;}
.x9{left:324.824947px;}
.x17{left:452.024947px;}
.x18{left:457.154947px;}
.x4{left:499.049947px;}
.xc{left:723.344947px;}
.x6{left:738.299947px;}
.xb{left:740.324947px;}
.xa{left:759.599947px;}
.x16{left:913.424947px;}
.x14{left:916.379947px;}
.x15{left:926.879947px;}
.x1d{left:1055.129947px;}
.x7{left:1081.124947px;}
.xe{left:1104.824947px;}
.x8{left:1109.204947px;}
.xd{left:1127.174947px;}
.x1b{left:1171.349947px;}
.x13{left:1326.374947px;}
.x11{left:1329.644947px;}
.x12{left:1340.144947px;}
.x10{left:1484.279947px;}
.xf{left:1506.899947px;}
.x2{left:2088.074947px;}
.x3{left:2169.119947px;}
.x1a{left:2194.574947px;}
.x1c{left:2899.169947px;}
.x1e{left:3043.169947px;}
@media print{
.v3{vertical-align:-44.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:44.000000pt;}
.v1{vertical-align:121.226667pt;}
.lsc{letter-spacing:-1.338667pt;}
.ls9{letter-spacing:-0.608000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.040000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls8{letter-spacing:1.536000pt;}
.lsb{letter-spacing:1.632000pt;}
.lsa{letter-spacing:1.669333pt;}
.ls0{letter-spacing:90.160000pt;}
.ls2{letter-spacing:180.108000pt;}
.ls1{letter-spacing:180.240000pt;}
.ls3{letter-spacing:180.534667pt;}
.ls4{letter-spacing:180.666667pt;}
.ws0{word-spacing:-50.592000pt;}
.ws2{word-spacing:-43.829200pt;}
.ws1{word-spacing:-43.800000pt;}
.ws4{word-spacing:-32.412000pt;}
.ws6{word-spacing:-20.327067pt;}
.ws5{word-spacing:-20.300000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:0.128000pt;}
._8{margin-left:-25.878667pt;}
._e{margin-left:-12.000000pt;}
._10{margin-left:-10.503733pt;}
._c{margin-left:-7.800000pt;}
._d{margin-left:-6.836133pt;}
._6{margin-left:-5.376000pt;}
._7{margin-left:-4.290533pt;}
._2{margin-left:-3.233067pt;}
._0{margin-left:-2.020667pt;}
._3{margin-left:-0.891333pt;}
._4{width:1.032267pt;}
._1{width:2.424800pt;}
._5{width:3.369333pt;}
._9{width:4.325867pt;}
._a{width:5.824000pt;}
._13{width:7.819467pt;}
._16{width:34.919867pt;}
._15{width:43.079067pt;}
._14{width:44.081867pt;}
._f{width:140.393467pt;}
._12{width:148.277467pt;}
._11{width:151.444267pt;}
._b{width:524.152267pt;}
.fs9{font-size:100.000000pt;}
.fsa{font-size:100.133333pt;}
.fs6{font-size:128.000000pt;}
.fs8{font-size:148.000000pt;}
.fsb{font-size:148.133333pt;}
.fs7{font-size:192.000000pt;}
.fs2{font-size:200.000000pt;}
.fs4{font-size:200.133333pt;}
.fs1{font-size:224.000000pt;}
.fs3{font-size:224.133333pt;}
.fs5{font-size:236.133333pt;}
.fs0{font-size:404.133333pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:351.240000pt;}
.y31{bottom:362.093333pt;}
.y32{bottom:445.400000pt;}
.yc{bottom:527.306667pt;}
.ye{bottom:689.066667pt;}
.yd{bottom:719.760000pt;}
.yf{bottom:750.066667pt;}
.y14{bottom:873.400000pt;}
.y11{bottom:904.133333pt;}
.y13{bottom:934.426667pt;}
.y10{bottom:965.133333pt;}
.y12{bottom:995.440000pt;}
.y17{bottom:1120.733333pt;}
.y16{bottom:1181.733333pt;}
.y15{bottom:1242.733333pt;}
.y1d{bottom:1393.306667pt;}
.y1c{bottom:1455.293333pt;}
.y1b{bottom:1557.293333pt;}
.y1a{bottom:1641.293333pt;}
.y19{bottom:1724.333333pt;}
.y25{bottom:1755.506667pt;}
.y18{bottom:1806.333333pt;}
.y24{bottom:1822.506667pt;}
.y23{bottom:1889.506667pt;}
.y22{bottom:1980.506667pt;}
.y21{bottom:2048.533333pt;}
.y20{bottom:2198.533333pt;}
.y28{bottom:2220.573333pt;}
.y1f{bottom:2265.533333pt;}
.y27{bottom:2287.573333pt;}
.y1e{bottom:2332.573333pt;}
.y26{bottom:2354.560000pt;}
.y2f{bottom:2694.400000pt;}
.y2e{bottom:2732.400000pt;}
.yb{bottom:2741.773333pt;}
.ya{bottom:2808.760000pt;}
.y2d{bottom:2832.333333pt;}
.y9{bottom:2891.773333pt;}
.y2c{bottom:2899.333333pt;}
.y2b{bottom:2966.333333pt;}
.y8{bottom:3025.773333pt;}
.y2a{bottom:3033.333333pt;}
.y29{bottom:3100.360000pt;}
.y7{bottom:3109.800000pt;}
.y3{bottom:3243.400000pt;}
.y6{bottom:3243.800000pt;}
.y2{bottom:3310.400000pt;}
.y5{bottom:3310.800000pt;}
.y1{bottom:3420.426667pt;}
.y4{bottom:3422.826667pt;}
.y34{bottom:3612.626667pt;}
.y33{bottom:3646.626667pt;}
.h10{height:86.785482pt;}
.he{height:98.642578pt;}
.hb{height:110.937500pt;}
.hc{height:127.968750pt;}
.hf{height:130.669922pt;}
.h4{height:133.300781pt;}
.h6{height:133.389648pt;}
.h7{height:133.398438pt;}
.h8{height:133.487370pt;}
.h2{height:149.296875pt;}
.h3{height:149.385742pt;}
.hd{height:149.406250pt;}
.h9{height:157.499089pt;}
.ha{height:194.140625pt;}
.h5{height:254.527448pt;}
.h1{height:289.878841pt;}
.h0{height:4494.000000pt;}
.w2{width:3178.999953pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x1{left:162.933286pt;}
.x19{left:194.506619pt;}
.x5{left:249.026619pt;}
.x1f{left:250.866619pt;}
.x9{left:288.733286pt;}
.x17{left:401.799953pt;}
.x18{left:406.359953pt;}
.x4{left:443.599953pt;}
.xc{left:642.973286pt;}
.x6{left:656.266619pt;}
.xb{left:658.066619pt;}
.xa{left:675.199953pt;}
.x16{left:811.933286pt;}
.x14{left:814.559953pt;}
.x15{left:823.893286pt;}
.x1d{left:937.893286pt;}
.x7{left:960.999953pt;}
.xe{left:982.066619pt;}
.x8{left:985.959953pt;}
.xd{left:1001.933286pt;}
.x1b{left:1041.199953pt;}
.x13{left:1178.999953pt;}
.x11{left:1181.906619pt;}
.x12{left:1191.239953pt;}
.x10{left:1319.359953pt;}
.xf{left:1339.466619pt;}
.x2{left:1856.066619pt;}
.x3{left:1928.106619pt;}
.x1a{left:1950.733286pt;}
.x1c{left:2577.039953pt;}
.x1e{left:2705.039953pt;}
}




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