
    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_58f179431a0e983193ecafde.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_46ba4d87442111b811e65a61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_8e41d4b212fc511c9edacaf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_eef6b345a34a4f276f836ca3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_a9c6bd631e021957ad6e65fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_e9388d6a749581887367ea8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.094238;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-4.680000px;}
.lsb{letter-spacing:-1.572000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.138000px;}
.ls3{letter-spacing:1.014000px;}
.ls9{letter-spacing:1.254000px;}
.ls4{letter-spacing:1.609050px;}
.ls5{letter-spacing:1.614000px;}
.lsd{letter-spacing:2.592000px;}
.lsa{letter-spacing:57.645000px;}
.ls6{letter-spacing:57.720000px;}
.ls2{letter-spacing:59.295000px;}
.ls8{letter-spacing:98.872500px;}
.ls7{letter-spacing:98.925000px;}
.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;}
}
.ws2{word-spacing:-144.150000px;}
.ws6{word-spacing:-63.150000px;}
.ws4{word-spacing:-58.509000px;}
.ws5{word-spacing:-47.586000px;}
.wsd{word-spacing:-31.746000px;}
.wsc{word-spacing:-31.713000px;}
.ws8{word-spacing:-23.793000px;}
.ws7{word-spacing:-13.893000px;}
.wsb{word-spacing:-0.981600px;}
.ws0{word-spacing:-0.803700px;}
.ws9{word-spacing:-0.444000px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:1.153350px;}
.wsf{word-spacing:1.549950px;}
.wsa{word-spacing:3.704700px;}
.ws1{word-spacing:10.849950px;}
._f{margin-left:-24.952500px;}
._12{margin-left:-22.657350px;}
._10{margin-left:-18.181800px;}
._e{margin-left:-16.488900px;}
._d{margin-left:-15.039300px;}
._b{margin-left:-12.617700px;}
._11{margin-left:-11.574900px;}
._0{margin-left:-9.011250px;}
._8{margin-left:-6.914700px;}
._1{margin-left:-5.046300px;}
._5{margin-left:-3.843150px;}
._6{margin-left:-2.747400px;}
._4{margin-left:-1.441800px;}
._2{width:1.802250px;}
._3{width:3.401850px;}
._7{width:4.428150px;}
._9{width:5.543700px;}
._15{width:11.131500px;}
._16{width:12.468450px;}
._13{width:18.792600px;}
._18{width:29.858850px;}
._17{width:33.821700px;}
._19{width:35.817150px;}
._a{width:45.779400px;}
._c{width:49.013550px;}
._14{width:59.266500px;}
.fc1{color:rgb(66,98,136);}
.fc0{color:rgb(20,38,14);}
.fsa{font-size:63.000000px;}
.fs7{font-size:63.150000px;}
.fsd{font-size:67.650000px;}
.fsc{font-size:94.650000px;}
.fse{font-size:103.500000px;}
.fsf{font-size:103.650000px;}
.fsb{font-size:108.150000px;}
.fs3{font-size:144.150000px;}
.fs2{font-size:144.300000px;}
.fs4{font-size:193.650000px;}
.fs5{font-size:193.800000px;}
.fs8{font-size:216.300000px;}
.fs9{font-size:265.800000px;}
.fs6{font-size:265.950000px;}
.fs0{font-size:360.450000px;}
.fs1{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.837500px;}
.y15{bottom:23.962500px;}
.y14{bottom:42.000000px;}
.y24{bottom:73.950000px;}
.y35{bottom:76.162500px;}
.y34{bottom:113.212500px;}
.y9{bottom:127.462500px;}
.y23{bottom:128.550000px;}
.y6{bottom:129.600000px;}
.y33{bottom:143.625000px;}
.y3f{bottom:144.300000px;}
.y8{bottom:150.000000px;}
.y22{bottom:165.720000px;}
.y10{bottom:177.675000px;}
.y3e{bottom:178.080000px;}
.y32{bottom:179.670000px;}
.y5{bottom:181.380000px;}
.y36{bottom:193.080000px;}
.y21{bottom:208.545000px;}
.y31{bottom:211.230000px;}
.y30{bottom:241.650000px;}
.yf{bottom:241.875000px;}
.y3d{bottom:247.950000px;}
.y20{bottom:252.495000px;}
.y2f{bottom:277.695000px;}
.y3c{bottom:281.745000px;}
.ye{bottom:307.245000px;}
.y2e{bottom:308.100000px;}
.y4{bottom:308.700000px;}
.y3b{bottom:316.650000px;}
.y2d{bottom:339.630000px;}
.y1f{bottom:339.780000px;}
.y3{bottom:348.150000px;}
.y1e{bottom:369.075000px;}
.yd{bottom:372.570000px;}
.y2c{bottom:375.720000px;}
.y3a{bottom:385.380000px;}
.y2b{bottom:406.125000px;}
.y1d{bottom:412.995000px;}
.y39{bottom:420.300000px;}
.y2{bottom:420.375000px;}
.yc{bottom:436.755000px;}
.y2a{bottom:437.670000px;}
.y1c{bottom:442.275000px;}
.y1b{bottom:471.600000px;}
.y29{bottom:473.700000px;}
.y1a{bottom:500.880000px;}
.yb{bottom:502.125000px;}
.y28{bottom:504.120000px;}
.y1{bottom:518.370000px;}
.y38{bottom:523.950000px;}
.y19{bottom:530.175000px;}
.y27{bottom:541.320000px;}
.y37{bottom:558.870000px;}
.y18{bottom:559.470000px;}
.ya{bottom:566.325000px;}
.y26{bottom:577.350000px;}
.y25{bottom:614.505000px;}
.y13{bottom:646.275000px;}
.y17{bottom:667.695000px;}
.y7{bottom:667.845000px;}
.y11{bottom:687.720000px;}
.y12{bottom:725.130000px;}
.hb{height:54.817383px;}
.h8{height:54.947900px;}
.he{height:58.863428px;}
.hd{height:82.356592px;}
.hf{height:90.057129px;}
.h10{height:90.187646px;}
.hc{height:94.103174px;}
.h4{height:125.427393px;}
.h3{height:125.557910px;}
.h11{height:126.553564px;}
.h5{height:168.498193px;}
.h6{height:168.628711px;}
.h9{height:188.206348px;}
.ha{height:231.277148px;}
.h7{height:231.407666px;}
.h1{height:313.633740px;}
.h2{height:313.764258px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc{left:17.887479px;}
.x12{left:97.987479px;}
.x13{left:99.787479px;}
.xe{left:103.499979px;}
.x7{left:109.874979px;}
.x9{left:129.224979px;}
.x10{left:144.037479px;}
.xa{left:162.974979px;}
.x3{left:216.074979px;}
.x1{left:272.849979px;}
.x8{left:416.399979px;}
.x4{left:513.224979px;}
.x2{left:583.424979px;}
.xd{left:670.649979px;}
.xb{left:731.354979px;}
.x11{left:735.524979px;}
.xf{left:741.194979px;}
.x5{left:887.669979px;}
.x6{left:933.149979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-4.160000pt;}
.lsb{letter-spacing:-1.397333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.122667pt;}
.ls3{letter-spacing:0.901333pt;}
.ls9{letter-spacing:1.114667pt;}
.ls4{letter-spacing:1.430267pt;}
.ls5{letter-spacing:1.434667pt;}
.lsd{letter-spacing:2.304000pt;}
.lsa{letter-spacing:51.240000pt;}
.ls6{letter-spacing:51.306667pt;}
.ls2{letter-spacing:52.706667pt;}
.ls8{letter-spacing:87.886667pt;}
.ls7{letter-spacing:87.933333pt;}
.ws2{word-spacing:-128.133333pt;}
.ws6{word-spacing:-56.133333pt;}
.ws4{word-spacing:-52.008000pt;}
.ws5{word-spacing:-42.298667pt;}
.wsd{word-spacing:-28.218667pt;}
.wsc{word-spacing:-28.189333pt;}
.ws8{word-spacing:-21.149333pt;}
.ws7{word-spacing:-12.349333pt;}
.wsb{word-spacing:-0.872533pt;}
.ws0{word-spacing:-0.714400pt;}
.ws9{word-spacing:-0.394667pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:1.025200pt;}
.wsf{word-spacing:1.377733pt;}
.wsa{word-spacing:3.293067pt;}
.ws1{word-spacing:9.644400pt;}
._f{margin-left:-22.180000pt;}
._12{margin-left:-20.139867pt;}
._10{margin-left:-16.161600pt;}
._e{margin-left:-14.656800pt;}
._d{margin-left:-13.368267pt;}
._b{margin-left:-11.215733pt;}
._11{margin-left:-10.288800pt;}
._0{margin-left:-8.010000pt;}
._8{margin-left:-6.146400pt;}
._1{margin-left:-4.485600pt;}
._5{margin-left:-3.416133pt;}
._6{margin-left:-2.442133pt;}
._4{margin-left:-1.281600pt;}
._2{width:1.602000pt;}
._3{width:3.023867pt;}
._7{width:3.936133pt;}
._9{width:4.927733pt;}
._15{width:9.894667pt;}
._16{width:11.083067pt;}
._13{width:16.704533pt;}
._18{width:26.541200pt;}
._17{width:30.063733pt;}
._19{width:31.837467pt;}
._a{width:40.692800pt;}
._c{width:43.567600pt;}
._14{width:52.681333pt;}
.fsa{font-size:56.000000pt;}
.fs7{font-size:56.133333pt;}
.fsd{font-size:60.133333pt;}
.fsc{font-size:84.133333pt;}
.fse{font-size:92.000000pt;}
.fsf{font-size:92.133333pt;}
.fsb{font-size:96.133333pt;}
.fs3{font-size:128.133333pt;}
.fs2{font-size:128.266667pt;}
.fs4{font-size:172.133333pt;}
.fs5{font-size:172.266667pt;}
.fs8{font-size:192.266667pt;}
.fs9{font-size:236.266667pt;}
.fs6{font-size:236.400000pt;}
.fs0{font-size:320.400000pt;}
.fs1{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:4.300000pt;}
.y15{bottom:21.300000pt;}
.y14{bottom:37.333333pt;}
.y24{bottom:65.733333pt;}
.y35{bottom:67.700000pt;}
.y34{bottom:100.633333pt;}
.y9{bottom:113.300000pt;}
.y23{bottom:114.266667pt;}
.y6{bottom:115.200000pt;}
.y33{bottom:127.666667pt;}
.y3f{bottom:128.266667pt;}
.y8{bottom:133.333333pt;}
.y22{bottom:147.306667pt;}
.y10{bottom:157.933333pt;}
.y3e{bottom:158.293333pt;}
.y32{bottom:159.706667pt;}
.y5{bottom:161.226667pt;}
.y36{bottom:171.626667pt;}
.y21{bottom:185.373333pt;}
.y31{bottom:187.760000pt;}
.y30{bottom:214.800000pt;}
.yf{bottom:215.000000pt;}
.y3d{bottom:220.400000pt;}
.y20{bottom:224.440000pt;}
.y2f{bottom:246.840000pt;}
.y3c{bottom:250.440000pt;}
.ye{bottom:273.106667pt;}
.y2e{bottom:273.866667pt;}
.y4{bottom:274.400000pt;}
.y3b{bottom:281.466667pt;}
.y2d{bottom:301.893333pt;}
.y1f{bottom:302.026667pt;}
.y3{bottom:309.466667pt;}
.y1e{bottom:328.066667pt;}
.yd{bottom:331.173333pt;}
.y2c{bottom:333.973333pt;}
.y3a{bottom:342.560000pt;}
.y2b{bottom:361.000000pt;}
.y1d{bottom:367.106667pt;}
.y39{bottom:373.600000pt;}
.y2{bottom:373.666667pt;}
.yc{bottom:388.226667pt;}
.y2a{bottom:389.040000pt;}
.y1c{bottom:393.133333pt;}
.y1b{bottom:419.200000pt;}
.y29{bottom:421.066667pt;}
.y1a{bottom:445.226667pt;}
.yb{bottom:446.333333pt;}
.y28{bottom:448.106667pt;}
.y1{bottom:460.773333pt;}
.y38{bottom:465.733333pt;}
.y19{bottom:471.266667pt;}
.y27{bottom:481.173333pt;}
.y37{bottom:496.773333pt;}
.y18{bottom:497.306667pt;}
.ya{bottom:503.400000pt;}
.y26{bottom:513.200000pt;}
.y25{bottom:546.226667pt;}
.y13{bottom:574.466667pt;}
.y17{bottom:593.506667pt;}
.y7{bottom:593.640000pt;}
.y11{bottom:611.306667pt;}
.y12{bottom:644.560000pt;}
.hb{height:48.726562pt;}
.h8{height:48.842578pt;}
.he{height:52.323047pt;}
.hd{height:73.205859pt;}
.hf{height:80.050781pt;}
.h10{height:80.166797pt;}
.hc{height:83.647266pt;}
.h4{height:111.491016pt;}
.h3{height:111.607031pt;}
.h11{height:112.492057pt;}
.h5{height:149.776172pt;}
.h6{height:149.892187pt;}
.h9{height:167.294531pt;}
.ha{height:205.579687pt;}
.h7{height:205.695703pt;}
.h1{height:278.785547pt;}
.h2{height:278.901563pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc{left:15.899981pt;}
.x12{left:87.099981pt;}
.x13{left:88.699981pt;}
.xe{left:91.999981pt;}
.x7{left:97.666648pt;}
.x9{left:114.866648pt;}
.x10{left:128.033314pt;}
.xa{left:144.866648pt;}
.x3{left:192.066648pt;}
.x1{left:242.533314pt;}
.x8{left:370.133314pt;}
.x4{left:456.199981pt;}
.x2{left:518.599981pt;}
.xd{left:596.133314pt;}
.xb{left:650.093314pt;}
.x11{left:653.799981pt;}
.xf{left:658.839981pt;}
.x5{left:789.039981pt;}
.x6{left:829.466648pt;}
}




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