
    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_6e310b45c3d5c8506711ec5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_dc70221ba8d5954937759112.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_38684416d6166addc2e8e47a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f1cb69710d4bfa4eae12e791.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.245376px;}
.ls0{letter-spacing:51.192600px;}
.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;}
}
.ws10{word-spacing:-93.274560px;}
.ws11{word-spacing:-90.072000px;}
.ws21{word-spacing:-80.104032px;}
.ws14{word-spacing:-80.064000px;}
.wsf{word-spacing:-46.637280px;}
.wse{word-spacing:-0.032160px;}
.ws22{word-spacing:0.000000px;}
.ws17{word-spacing:0.576000px;}
.ws15{word-spacing:0.720000px;}
.ws19{word-spacing:1.152000px;}
.ws1{word-spacing:1.991672px;}
.ws1c{word-spacing:3.144000px;}
.ws16{word-spacing:3.888000px;}
.ws18{word-spacing:5.616000px;}
.wsc{word-spacing:5.690400px;}
.ws1e{word-spacing:7.611234px;}
.ws8{word-spacing:17.942317px;}
.wsa{word-spacing:19.407840px;}
.wsd{word-spacing:24.347146px;}
.ws9{word-spacing:30.922560px;}
.ws13{word-spacing:39.888000px;}
.ws7{word-spacing:56.639760px;}
.ws3{word-spacing:57.245227px;}
.ws1d{word-spacing:75.864000px;}
.wsb{word-spacing:79.143840px;}
.ws1a{word-spacing:90.287438px;}
.ws2{word-spacing:97.631616px;}
.ws20{word-spacing:107.567744px;}
.ws6{word-spacing:140.191920px;}
.ws0{word-spacing:155.808305px;}
.ws1f{word-spacing:170.532000px;}
.ws12{word-spacing:211.860000px;}
.ws1b{word-spacing:213.407767px;}
.ws5{word-spacing:239.418720px;}
.ws4{word-spacing:496.882560px;}
._13{margin-left:-19.329871px;}
._10{margin-left:-16.701302px;}
._14{margin-left:-11.085621px;}
._2{margin-left:-9.994280px;}
._12{margin-left:-8.021027px;}
._0{margin-left:-4.157529px;}
._11{margin-left:-2.943837px;}
._4{margin-left:-1.559015px;}
._1{width:1.143984px;}
._f{width:2.160605px;}
._15{width:3.577740px;}
._d{width:80.599440px;}
._1a{width:82.548000px;}
._19{width:83.783015px;}
._1b{width:86.960016px;}
._21{width:89.256000px;}
._a{width:92.461095px;}
._b{width:94.791216px;}
._e{width:99.209229px;}
._17{width:121.656000px;}
._6{width:132.090384px;}
._c{width:154.351680px;}
._1f{width:157.080000px;}
._20{width:158.264016px;}
._5{width:172.754112px;}
._24{width:188.912016px;}
._18{width:191.928000px;}
._9{width:215.156400px;}
._3{width:237.726797px;}
._1e{width:245.688000px;}
._22{width:252.272016px;}
._23{width:253.440000px;}
._16{width:293.016000px;}
._1d{width:295.176000px;}
._8{width:314.401920px;}
._1c{width:325.872000px;}
._7{width:571.635815px;}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs0{font-size:198.000000px;}
.fsa{font-size:239.760000px;}
.fs4{font-size:264.240000px;}
.fs3{font-size:264.384000px;}
.fs2{font-size:288.000000px;}
.fsb{font-size:288.144000px;}
.fs6{font-size:300.240000px;}
.fs7{font-size:300.384000px;}
.fs1{font-size:324.000000px;}
.fs5{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:82.476000px;}
.y20{bottom:257.144850px;}
.y1f{bottom:307.590000px;}
.y1e{bottom:357.990000px;}
.y36{bottom:382.290000px;}
.y1d{bottom:408.390000px;}
.y1c{bottom:458.790000px;}
.y35{bottom:461.490150px;}
.y1b{bottom:509.190000px;}
.y34{bottom:540.720000px;}
.y1a{bottom:559.590000px;}
.y19{bottom:609.990000px;}
.y18{bottom:660.390000px;}
.y33{bottom:872.175000px;}
.y28{bottom:881.385000px;}
.y32{bottom:958.575000px;}
.y27{bottom:967.785000px;}
.y31{bottom:1044.975000px;}
.y26{bottom:1054.185000px;}
.y30{bottom:1131.375000px;}
.y25{bottom:1140.585000px;}
.y2f{bottom:1217.775000px;}
.y24{bottom:1226.985000px;}
.y23{bottom:1313.385000px;}
.y2e{bottom:1321.455000px;}
.y22{bottom:1401.765000px;}
.y2d{bottom:1407.855000px;}
.y2c{bottom:1494.255000px;}
.y2b{bottom:1597.935000px;}
.y3b{bottom:1663.770000px;}
.y2a{bottom:1684.335000px;}
.y21{bottom:1777.530000px;}
.y29{bottom:1789.995000px;}
.y3a{bottom:2145.165000px;}
.y39{bottom:2580.195000px;}
.y38{bottom:2586.270000px;}
.y12{bottom:2609.925000px;}
.y11{bottom:2689.125000px;}
.y10{bottom:2768.325000px;}
.yf{bottom:2847.525000px;}
.ye{bottom:2926.725000px;}
.y37{bottom:3003.510000px;}
.yd{bottom:3005.925000px;}
.yc{bottom:3085.125000px;}
.yb{bottom:3164.325000px;}
.ya{bottom:3243.525000px;}
.y9{bottom:3322.725000px;}
.y8{bottom:3401.925000px;}
.y4{bottom:3444.375000px;}
.y7{bottom:3481.125000px;}
.y3{bottom:3530.775000px;}
.y6{bottom:3560.370000px;}
.y2{bottom:3636.435000px;}
.y5{bottom:3658.830000px;}
.y17{bottom:3865.710000px;}
.y16{bottom:3955.710000px;}
.y15{bottom:4075.125000px;}
.y14{bottom:4219.125000px;}
.y13{bottom:4509.210000px;}
.ha{height:122.133867px;}
.hb{height:122.297695px;}
.hc{height:122.402672px;}
.h2{height:144.342773px;}
.hd{height:174.785977px;}
.h6{height:192.631992px;}
.h5{height:192.736969px;}
.h4{height:209.953125px;}
.he{height:210.058102px;}
.h8{height:218.876133px;}
.h9{height:218.981109px;}
.h3{height:235.880859px;}
.h7{height:349.627852px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x1{left:86.076000px;}
.x3{left:142.524000px;}
.x9{left:153.330000px;}
.xa{left:165.810000px;}
.x5{left:807.630000px;}
.x7{left:829.950000px;}
.x6{left:934.710000px;}
.x4{left:1185.270000px;}
.x8{left:1252.260000px;}
.x2{left:1830.960000px;}
.xb{left:1952.460000px;}
.x11{left:1956.420000px;}
.xf{left:2018.085000px;}
.x10{left:2047.605000px;}
.x12{left:2174.685000px;}
.xc{left:2436.885000px;}
.xd{left:2477.417250px;}
.xe{left:2704.755000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.218112pt;}
.ls0{letter-spacing:45.504533pt;}
.ws10{word-spacing:-82.910720pt;}
.ws11{word-spacing:-80.064000pt;}
.ws21{word-spacing:-71.203584pt;}
.ws14{word-spacing:-71.168000pt;}
.wsf{word-spacing:-41.455360pt;}
.wse{word-spacing:-0.028587pt;}
.ws22{word-spacing:0.000000pt;}
.ws17{word-spacing:0.512000pt;}
.ws15{word-spacing:0.640000pt;}
.ws19{word-spacing:1.024000pt;}
.ws1{word-spacing:1.770375pt;}
.ws1c{word-spacing:2.794667pt;}
.ws16{word-spacing:3.456000pt;}
.ws18{word-spacing:4.992000pt;}
.wsc{word-spacing:5.058133pt;}
.ws1e{word-spacing:6.765542pt;}
.ws8{word-spacing:15.948726pt;}
.wsa{word-spacing:17.251413pt;}
.wsd{word-spacing:21.641908pt;}
.ws9{word-spacing:27.486720pt;}
.ws13{word-spacing:35.456000pt;}
.ws7{word-spacing:50.346453pt;}
.ws3{word-spacing:50.884646pt;}
.ws1d{word-spacing:67.434667pt;}
.wsb{word-spacing:70.350080pt;}
.ws1a{word-spacing:80.255501pt;}
.ws2{word-spacing:86.783659pt;}
.ws20{word-spacing:95.615772pt;}
.ws6{word-spacing:124.615040pt;}
.ws0{word-spacing:138.496271pt;}
.ws1f{word-spacing:151.584000pt;}
.ws12{word-spacing:188.320000pt;}
.ws1b{word-spacing:189.695793pt;}
.ws5{word-spacing:212.816640pt;}
.ws4{word-spacing:441.673387pt;}
._13{margin-left:-17.182107pt;}
._10{margin-left:-14.845602pt;}
._14{margin-left:-9.853885pt;}
._2{margin-left:-8.883804pt;}
._12{margin-left:-7.129802pt;}
._0{margin-left:-3.695581pt;}
._11{margin-left:-2.616744pt;}
._4{margin-left:-1.385791pt;}
._1{width:1.016875pt;}
._f{width:1.920538pt;}
._15{width:3.180214pt;}
._d{width:71.643947pt;}
._1a{width:73.376000pt;}
._19{width:74.473791pt;}
._1b{width:77.297792pt;}
._21{width:79.338667pt;}
._a{width:82.187640pt;}
._b{width:84.258858pt;}
._e{width:88.185982pt;}
._17{width:108.138667pt;}
._6{width:117.413674pt;}
._c{width:137.201493pt;}
._1f{width:139.626667pt;}
._20{width:140.679125pt;}
._5{width:153.559211pt;}
._24{width:167.921792pt;}
._18{width:170.602667pt;}
._9{width:191.250133pt;}
._3{width:211.312708pt;}
._1e{width:218.389333pt;}
._22{width:224.241792pt;}
._23{width:225.280000pt;}
._16{width:260.458667pt;}
._1d{width:262.378667pt;}
._8{width:279.468373pt;}
._1c{width:289.664000pt;}
._7{width:508.120724pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs0{font-size:176.000000pt;}
.fsa{font-size:213.120000pt;}
.fs4{font-size:234.880000pt;}
.fs3{font-size:235.008000pt;}
.fs2{font-size:256.000000pt;}
.fsb{font-size:256.128000pt;}
.fs6{font-size:266.880000pt;}
.fs7{font-size:267.008000pt;}
.fs1{font-size:288.000000pt;}
.fs5{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:73.312000pt;}
.y20{bottom:228.573200pt;}
.y1f{bottom:273.413333pt;}
.y1e{bottom:318.213333pt;}
.y36{bottom:339.813333pt;}
.y1d{bottom:363.013333pt;}
.y1c{bottom:407.813333pt;}
.y35{bottom:410.213467pt;}
.y1b{bottom:452.613333pt;}
.y34{bottom:480.640000pt;}
.y1a{bottom:497.413333pt;}
.y19{bottom:542.213333pt;}
.y18{bottom:587.013333pt;}
.y33{bottom:775.266667pt;}
.y28{bottom:783.453333pt;}
.y32{bottom:852.066667pt;}
.y27{bottom:860.253333pt;}
.y31{bottom:928.866667pt;}
.y26{bottom:937.053333pt;}
.y30{bottom:1005.666667pt;}
.y25{bottom:1013.853333pt;}
.y2f{bottom:1082.466667pt;}
.y24{bottom:1090.653333pt;}
.y23{bottom:1167.453333pt;}
.y2e{bottom:1174.626667pt;}
.y22{bottom:1246.013333pt;}
.y2d{bottom:1251.426667pt;}
.y2c{bottom:1328.226667pt;}
.y2b{bottom:1420.386667pt;}
.y3b{bottom:1478.906667pt;}
.y2a{bottom:1497.186667pt;}
.y21{bottom:1580.026667pt;}
.y29{bottom:1591.106667pt;}
.y3a{bottom:1906.813333pt;}
.y39{bottom:2293.506667pt;}
.y38{bottom:2298.906667pt;}
.y12{bottom:2319.933333pt;}
.y11{bottom:2390.333333pt;}
.y10{bottom:2460.733333pt;}
.yf{bottom:2531.133333pt;}
.ye{bottom:2601.533333pt;}
.y37{bottom:2669.786667pt;}
.yd{bottom:2671.933333pt;}
.yc{bottom:2742.333333pt;}
.yb{bottom:2812.733333pt;}
.ya{bottom:2883.133333pt;}
.y9{bottom:2953.533333pt;}
.y8{bottom:3023.933333pt;}
.y4{bottom:3061.666667pt;}
.y7{bottom:3094.333333pt;}
.y3{bottom:3138.466667pt;}
.y6{bottom:3164.773333pt;}
.y2{bottom:3232.386667pt;}
.y5{bottom:3252.293333pt;}
.y17{bottom:3436.186667pt;}
.y16{bottom:3516.186667pt;}
.y15{bottom:3622.333333pt;}
.y14{bottom:3750.333333pt;}
.y13{bottom:4008.186667pt;}
.ha{height:108.563438pt;}
.hb{height:108.709063pt;}
.hc{height:108.802375pt;}
.h2{height:128.304688pt;}
.hd{height:155.365313pt;}
.h6{height:171.228437pt;}
.h5{height:171.321750pt;}
.h4{height:186.625000pt;}
.he{height:186.718313pt;}
.h8{height:194.556563pt;}
.h9{height:194.649875pt;}
.h3{height:209.671875pt;}
.h7{height:310.780313pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x1{left:76.512000pt;}
.x3{left:126.688000pt;}
.x9{left:136.293333pt;}
.xa{left:147.386667pt;}
.x5{left:717.893333pt;}
.x7{left:737.733333pt;}
.x6{left:830.853333pt;}
.x4{left:1053.573333pt;}
.x8{left:1113.120000pt;}
.x2{left:1627.520000pt;}
.xb{left:1735.520000pt;}
.x11{left:1739.040000pt;}
.xf{left:1793.853333pt;}
.x10{left:1820.093333pt;}
.x12{left:1933.053333pt;}
.xc{left:2166.120000pt;}
.xd{left:2202.148667pt;}
.xe{left:2404.226667pt;}
}




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