
    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_bfad02e3b68eaa47fb08c8ff.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_39eb222239b77038d2a55a7f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.727011;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_576f5a6d736c6ff1af438d76.woff')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_a8d3c3b249dc360303f36304.woff')format("woff");}.ff4{font-family:ff4;line-height:0.945000;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_be46530735b0984de4bd599b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.883000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v1{vertical-align:-57.995400px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.738000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.820000px;}
.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;}
}
.ws5{word-spacing:-140.544000px;}
.ws3{word-spacing:-76.986000px;}
.ws4{word-spacing:-73.200000px;}
.ws7{word-spacing:-60.024000px;}
.ws0{word-spacing:-52.704000px;}
.ws8{word-spacing:-46.716000px;}
.ws6{word-spacing:-41.220000px;}
.wsa{word-spacing:-2.820000px;}
.wsb{word-spacing:-1.410000px;}
.ws1{word-spacing:-0.126000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:0.738000px;}
.ws2{word-spacing:603.172200px;}
._a{margin-left:-49.957200px;}
._c{margin-left:-46.648800px;}
._8{margin-left:-16.664400px;}
._0{margin-left:-14.352000px;}
._6{margin-left:-12.806400px;}
._b{margin-left:-9.306000px;}
._4{margin-left:-7.322400px;}
._1{margin-left:-5.575200px;}
._7{margin-left:-4.188000px;}
._2{margin-left:-3.045600px;}
._3{margin-left:-1.101600px;}
._9{width:2.100000px;}
._5{width:4.125600px;}
.fc9{color:transparent;}
.fc7{color:rgb(0,147,126);}
.fc8{color:rgb(2,159,121);}
.fc6{color:rgb(16,171,153);}
.fc5{color:rgb(231,57,47);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(41,50,116);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,159,120);}
.fc0{color:rgb(230,42,54);}
.fs10{font-size:90.000000px;}
.fs4{font-size:126.000000px;}
.fs2{font-size:162.000000px;}
.fsb{font-size:180.000000px;}
.fs11{font-size:204.000000px;}
.fsa{font-size:210.000000px;}
.fs1{font-size:216.000000px;}
.fs9{font-size:222.000000px;}
.fsf{font-size:234.000000px;}
.fsc{font-size:246.000000px;}
.fs8{font-size:270.000000px;}
.fs5{font-size:282.000000px;}
.fs3{font-size:300.000000px;}
.fs7{font-size:516.000000px;}
.fs0{font-size:552.000000px;}
.fs6{font-size:576.000000px;}
.fse{font-size:600.000000px;}
.fsd{font-size:660.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:77.851200px;}
.y34{bottom:502.499700px;}
.y33{bottom:735.558750px;}
.y3d{bottom:776.413650px;}
.y3c{bottom:837.613650px;}
.y39{bottom:969.987150px;}
.y38{bottom:1031.187150px;}
.y3b{bottom:1110.039300px;}
.y3a{bottom:1171.239300px;}
.y37{bottom:1346.724150px;}
.y36{bottom:1407.924150px;}
.y3e{bottom:1457.966700px;}
.y1d{bottom:1529.650200px;}
.y1c{bottom:1608.949050px;}
.y19{bottom:1633.975350px;}
.y18{bottom:1671.775350px;}
.y1b{bottom:1673.749050px;}
.y2b{bottom:1677.563400px;}
.y17{bottom:1709.575350px;}
.y1a{bottom:1738.549050px;}
.y16{bottom:1747.375350px;}
.y15{bottom:1804.670700px;}
.y2a{bottom:1861.713450px;}
.y28{bottom:1913.931000px;}
.y29{bottom:1977.228450px;}
.y27{bottom:1980.531000px;}
.y14{bottom:2010.416700px;}
.y20{bottom:2334.712500px;}
.y25{bottom:2357.111550px;}
.y1e{bottom:2498.977500px;}
.y26{bottom:2529.371850px;}
.y1f{bottom:2668.812000px;}
.y24{bottom:2695.829550px;}
.y23{bottom:2785.829550px;}
.y21{bottom:2844.736800px;}
.y4{bottom:3177.456900px;}
.y30{bottom:3214.163250px;}
.y2f{bottom:3287.963250px;}
.y3{bottom:3336.432900px;}
.y2e{bottom:3361.763250px;}
.y2{bottom:3495.408900px;}
.y1{bottom:3654.384900px;}
.y2d{bottom:3790.347600px;}
.y22{bottom:3817.083300px;}
.y2c{bottom:3864.147600px;}
.y9{bottom:4140.888150px;}
.yc{bottom:4158.762150px;}
.y10{bottom:4163.701350px;}
.y8{bottom:4205.688150px;}
.y13{bottom:4221.867000px;}
.yb{bottom:4223.562150px;}
.yf{bottom:4228.501350px;}
.y7{bottom:4270.488150px;}
.y12{bottom:4286.667000px;}
.ya{bottom:4288.362150px;}
.ye{bottom:4293.301350px;}
.y6{bottom:4335.288150px;}
.y11{bottom:4351.467000px;}
.yd{bottom:4358.101350px;}
.y5{bottom:4400.088150px;}
.y32{bottom:4630.359750px;}
.y31{bottom:4825.389750px;}
.he{height:69.300000px;}
.h5{height:92.736000px;}
.h9{height:132.660000px;}
.hf{height:150.348000px;}
.h3{height:162.216000px;}
.h8{height:163.614000px;}
.hd{height:175.734000px;}
.hb{height:184.746000px;}
.h6{height:202.761065px;}
.ha{height:207.834000px;}
.h4{height:225.300000px;}
.h2{height:414.552000px;}
.h7{height:432.576000px;}
.hc{height:486.420000px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x14{left:71.376450px;}
.x19{left:107.172750px;}
.x23{left:120.098850px;}
.x25{left:182.366550px;}
.x24{left:213.680550px;}
.x4{left:263.823450px;}
.x16{left:294.655500px;}
.x15{left:405.378000px;}
.x1f{left:460.039500px;}
.x12{left:542.577600px;}
.x27{left:574.674450px;}
.x18{left:884.436300px;}
.x26{left:927.682200px;}
.x2{left:948.955650px;}
.x28{left:965.558400px;}
.x17{left:975.381300px;}
.x13{left:1222.582650px;}
.x9{left:1514.552250px;}
.xa{left:1546.412250px;}
.x3{left:1856.479650px;}
.xb{left:1873.814250px;}
.xd{left:2157.048450px;}
.xc{left:2188.605300px;}
.x6{left:2215.324350px;}
.x1{left:2298.702600px;}
.x11{left:2373.972300px;}
.xf{left:2423.044950px;}
.x10{left:2438.620050px;}
.xe{left:2459.352450px;}
.x21{left:2563.115100px;}
.x20{left:2651.172600px;}
.x7{left:2684.864100px;}
.x5{left:2801.710500px;}
.x1b{left:2961.530400px;}
.x1a{left:3057.101400px;}
.x1d{left:3143.771550px;}
.x8{left:3172.114800px;}
.x1e{left:3195.862050px;}
.x1c{left:3231.470550px;}
.x22{left:3488.544750px;}
@media print{
.v1{vertical-align:-51.551467pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.656000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.506667pt;}
.ws5{word-spacing:-124.928000pt;}
.ws3{word-spacing:-68.432000pt;}
.ws4{word-spacing:-65.066667pt;}
.ws7{word-spacing:-53.354667pt;}
.ws0{word-spacing:-46.848000pt;}
.ws8{word-spacing:-41.525333pt;}
.ws6{word-spacing:-36.640000pt;}
.wsa{word-spacing:-2.506667pt;}
.wsb{word-spacing:-1.253333pt;}
.ws1{word-spacing:-0.112000pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:0.656000pt;}
.ws2{word-spacing:536.153067pt;}
._a{margin-left:-44.406400pt;}
._c{margin-left:-41.465600pt;}
._8{margin-left:-14.812800pt;}
._0{margin-left:-12.757333pt;}
._6{margin-left:-11.383467pt;}
._b{margin-left:-8.272000pt;}
._4{margin-left:-6.508800pt;}
._1{margin-left:-4.955733pt;}
._7{margin-left:-3.722667pt;}
._2{margin-left:-2.707200pt;}
._3{margin-left:-0.979200pt;}
._9{width:1.866667pt;}
._5{width:3.667200pt;}
.fs10{font-size:80.000000pt;}
.fs4{font-size:112.000000pt;}
.fs2{font-size:144.000000pt;}
.fsb{font-size:160.000000pt;}
.fs11{font-size:181.333333pt;}
.fsa{font-size:186.666667pt;}
.fs1{font-size:192.000000pt;}
.fs9{font-size:197.333333pt;}
.fsf{font-size:208.000000pt;}
.fsc{font-size:218.666667pt;}
.fs8{font-size:240.000000pt;}
.fs5{font-size:250.666667pt;}
.fs3{font-size:266.666667pt;}
.fs7{font-size:458.666667pt;}
.fs0{font-size:490.666667pt;}
.fs6{font-size:512.000000pt;}
.fse{font-size:533.333333pt;}
.fsd{font-size:586.666667pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:69.201067pt;}
.y34{bottom:446.666400pt;}
.y33{bottom:653.830000pt;}
.y3d{bottom:690.145467pt;}
.y3c{bottom:744.545467pt;}
.y39{bottom:862.210800pt;}
.y38{bottom:916.610800pt;}
.y3b{bottom:986.701600pt;}
.y3a{bottom:1041.101600pt;}
.y37{bottom:1197.088133pt;}
.y36{bottom:1251.488133pt;}
.y3e{bottom:1295.970400pt;}
.y1d{bottom:1359.689067pt;}
.y1c{bottom:1430.176933pt;}
.y19{bottom:1452.422533pt;}
.y18{bottom:1486.022533pt;}
.y1b{bottom:1487.776933pt;}
.y2b{bottom:1491.167467pt;}
.y17{bottom:1519.622533pt;}
.y1a{bottom:1545.376933pt;}
.y16{bottom:1553.222533pt;}
.y15{bottom:1604.151733pt;}
.y2a{bottom:1654.856400pt;}
.y28{bottom:1701.272000pt;}
.y29{bottom:1757.536400pt;}
.y27{bottom:1760.472000pt;}
.y14{bottom:1787.037067pt;}
.y20{bottom:2075.300000pt;}
.y25{bottom:2095.210267pt;}
.y1e{bottom:2221.313333pt;}
.y26{bottom:2248.330533pt;}
.y1f{bottom:2372.277333pt;}
.y24{bottom:2396.292933pt;}
.y23{bottom:2476.292933pt;}
.y21{bottom:2528.654933pt;}
.y4{bottom:2824.406133pt;}
.y30{bottom:2857.034000pt;}
.y2f{bottom:2922.634000pt;}
.y3{bottom:2965.718133pt;}
.y2e{bottom:2988.234000pt;}
.y2{bottom:3107.030133pt;}
.y1{bottom:3248.342133pt;}
.y2d{bottom:3369.197867pt;}
.y22{bottom:3392.962933pt;}
.y2c{bottom:3434.797867pt;}
.y9{bottom:3680.789467pt;}
.yc{bottom:3696.677467pt;}
.y10{bottom:3701.067867pt;}
.y8{bottom:3738.389467pt;}
.y13{bottom:3752.770667pt;}
.yb{bottom:3754.277467pt;}
.yf{bottom:3758.667867pt;}
.y7{bottom:3795.989467pt;}
.y12{bottom:3810.370667pt;}
.ya{bottom:3811.877467pt;}
.ye{bottom:3816.267867pt;}
.y6{bottom:3853.589467pt;}
.y11{bottom:3867.970667pt;}
.yd{bottom:3873.867867pt;}
.y5{bottom:3911.189467pt;}
.y32{bottom:4115.875333pt;}
.y31{bottom:4289.235333pt;}
.he{height:61.600000pt;}
.h5{height:82.432000pt;}
.h9{height:117.920000pt;}
.hf{height:133.642667pt;}
.h3{height:144.192000pt;}
.h8{height:145.434667pt;}
.hd{height:156.208000pt;}
.hb{height:164.218667pt;}
.h6{height:180.232058pt;}
.ha{height:184.741333pt;}
.h4{height:200.266667pt;}
.h2{height:368.490667pt;}
.h7{height:384.512000pt;}
.hc{height:432.373333pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x14{left:63.445733pt;}
.x19{left:95.264667pt;}
.x23{left:106.754533pt;}
.x25{left:162.103600pt;}
.x24{left:189.938267pt;}
.x4{left:234.509733pt;}
.x16{left:261.916000pt;}
.x15{left:360.336000pt;}
.x1f{left:408.924000pt;}
.x12{left:482.291200pt;}
.x27{left:510.821733pt;}
.x18{left:786.165600pt;}
.x26{left:824.606400pt;}
.x2{left:843.516133pt;}
.x28{left:858.274133pt;}
.x17{left:867.005600pt;}
.x13{left:1086.740133pt;}
.x9{left:1346.268667pt;}
.xa{left:1374.588667pt;}
.x3{left:1650.204133pt;}
.xb{left:1665.612667pt;}
.xd{left:1917.376400pt;}
.xc{left:1945.426933pt;}
.x6{left:1969.177200pt;}
.x1{left:2043.291200pt;}
.x11{left:2110.197600pt;}
.xf{left:2153.817733pt;}
.x10{left:2167.662267pt;}
.xe{left:2186.091067pt;}
.x21{left:2278.324533pt;}
.x20{left:2356.597867pt;}
.x7{left:2386.545867pt;}
.x5{left:2490.409333pt;}
.x1b{left:2632.471467pt;}
.x1a{left:2717.423467pt;}
.x1d{left:2794.463600pt;}
.x8{left:2819.657600pt;}
.x1e{left:2840.766267pt;}
.x1c{left:2872.418267pt;}
.x22{left:3100.928667pt;}
}




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