
    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_094e29798f831de396263bab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.094727;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_0d49183aa7980f504a6b931c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.773438;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_a12daa2581d9ab52a4a317df.woff')format("woff");}.ff3{font-family:ff3;line-height:1.094727;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_b58f4343219ef24cc0e10b22.woff')format("woff");}.ff4{font-family:ff4;line-height:1.094727;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_e590fe3ba435e76c7d9ccbb6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084473;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_546909654fc90c281ac572b1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fcda883b815d99cab019d35e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.094727;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);}
.v2{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:64.800000px;}
.v3{vertical-align:148.860000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.864000px;}
.ls2{letter-spacing:194.400000px;}
.ls3{letter-spacing:367.080000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(58,58,58),0 0.015em rgb(58,58,58),0.015em 0 rgb(58,58,58),0 -0.015em  rgb(58,58,58);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(58,58,58);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-540.000000px;}
.ws2{word-spacing:-140.400000px;}
.ws9{word-spacing:-74.880000px;}
.ws7{word-spacing:-56.160000px;}
.ws4{word-spacing:-43.617600px;}
.ws1{word-spacing:-37.872000px;}
.ws8{word-spacing:-37.584000px;}
.ws5{word-spacing:-37.477440px;}
.ws0{word-spacing:-37.152000px;}
.ws6{word-spacing:-20.779200px;}
.wsa{word-spacing:0.000000px;}
._7{margin-left:-1040.232000px;}
._6{margin-left:-3.761520px;}
._5{margin-left:-2.295120px;}
._4{margin-left:-1.140000px;}
._2{width:1.584000px;}
._0{width:3.168000px;}
._1{width:4.752000px;}
._3{width:11.520000px;}
.fc1{color:rgb(98,192,132);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(87,189,131);}
.fc2{color:rgb(58,58,58);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:79.920000px;}
.fs7{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs3{font-size:167.760000px;}
.fs9{font-size:216.000000px;}
.fs4{font-size:216.144000px;}
.fs1{font-size:264.240000px;}
.fsa{font-size:288.000000px;}
.fs8{font-size:360.000000px;}
.fs2{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:157.290000px;}
.yb{bottom:254.310000px;}
.yd{bottom:351.360000px;}
.y1c{bottom:434.235000px;}
.y9{bottom:445.575000px;}
.yc{bottom:448.410000px;}
.y32{bottom:631.695000px;}
.y55{bottom:659.340000px;}
.y4c{bottom:689.295000px;}
.y2f{bottom:694.290000px;}
.y31{bottom:696.495000px;}
.y54{bottom:724.140000px;}
.y4b{bottom:754.095000px;}
.y30{bottom:761.295000px;}
.y53{bottom:788.940000px;}
.y4a{bottom:818.895000px;}
.y52{bottom:853.740000px;}
.y49{bottom:883.695000px;}
.y2e{bottom:897.945000px;}
.y51{bottom:918.540000px;}
.y2d{bottom:925.530000px;}
.y48{bottom:948.495000px;}
.y50{bottom:983.340000px;}
.y47{bottom:1013.295000px;}
.y4f{bottom:1048.170000px;}
.y46{bottom:1078.095000px;}
.y2c{bottom:1098.930000px;}
.y4e{bottom:1118.130000px;}
.y45{bottom:1142.895000px;}
.y29{bottom:1158.450000px;}
.y2b{bottom:1163.730000px;}
.y3c{bottom:1166.475000px;}
.y4d{bottom:1182.960000px;}
.y2a{bottom:1228.530000px;}
.y28{bottom:1331.850000px;}
.y58{bottom:1378.365000px;}
.y3d{bottom:1379.190000px;}
.y57{bottom:1383.375000px;}
.y3b{bottom:1386.330000px;}
.y25{bottom:1390.860000px;}
.y27{bottom:1396.650000px;}
.y56{bottom:1448.175000px;}
.y3a{bottom:1451.130000px;}
.y26{bottom:1461.450000px;}
.y39{bottom:1515.930000px;}
.y44{bottom:1516.605000px;}
.y24{bottom:1564.275000px;}
.y38{bottom:1580.730000px;}
.y43{bottom:1581.450000px;}
.y21{bottom:1623.060000px;}
.y23{bottom:1629.075000px;}
.y37{bottom:1645.530000px;}
.y42{bottom:1646.250000px;}
.y22{bottom:1693.875000px;}
.y36{bottom:1710.330000px;}
.y41{bottom:1711.050000px;}
.y35{bottom:1775.130000px;}
.y40{bottom:1775.850000px;}
.y1f{bottom:1796.505000px;}
.y34{bottom:1839.930000px;}
.y3f{bottom:1840.650000px;}
.y20{bottom:1855.185000px;}
.y1e{bottom:1861.305000px;}
.y33{bottom:1904.730000px;}
.y3e{bottom:1905.450000px;}
.y1d{bottom:1926.105000px;}
.y1b{bottom:2081.955000px;}
.y1a{bottom:2179.155000px;}
.y19{bottom:2276.355000px;}
.y18{bottom:2373.555000px;}
.y11{bottom:2534.550000px;}
.y17{bottom:2784.810000px;}
.y16{bottom:2882.055000px;}
.y15{bottom:2979.255000px;}
.y14{bottom:3076.455000px;}
.y13{bottom:3173.655000px;}
.y12{bottom:3270.855000px;}
.y10{bottom:3414.525000px;}
.yf{bottom:3613.215000px;}
.ye{bottom:3687.330000px;}
.y8{bottom:3806.790000px;}
.y7{bottom:3968.790000px;}
.y6{bottom:4130.790000px;}
.y3{bottom:4381.890000px;}
.y2{bottom:4425.090000px;}
.y1{bottom:4468.290000px;}
.y5{bottom:4687.845000px;}
.y4{bottom:4767.045000px;}
.ha{height:67.471523px;}
.h7{height:68.251992px;}
.h2{height:122.976562px;}
.h5{height:143.267695px;}
.h9{height:184.464844px;}
.hf{height:184.587820px;}
.hc{height:187.776563px;}
.h6{height:187.899539px;}
.h3{height:200.760469px;}
.he{height:223.081523px;}
.hb{height:243.140625px;}
.h8{height:303.925781px;}
.hd{height:333.324844px;}
.h4{height:461.162109px;}
.h1{height:5059.500000px;}
.h0{height:5059.800000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xa{left:148.571947px;}
.xb{left:201.494947px;}
.xe{left:211.709947px;}
.xf{left:214.049947px;}
.x11{left:215.669947px;}
.x5{left:246.674947px;}
.x4{left:331.454947px;}
.xd{left:346.319947px;}
.x10{left:413.819947px;}
.x1{left:928.334947px;}
.x6{left:963.104947px;}
.x3{left:994.394947px;}
.x9{left:1059.089947px;}
.x2{left:1542.704947px;}
.xc{left:1686.389947px;}
.x12{left:1914.119947px;}
.x7{left:1937.339947px;}
.x8{left:2476.544947px;}
.x14{left:2517.404947px;}
.x17{left:2712.884947px;}
.x13{left:2727.389947px;}
.x15{left:2769.629947px;}
.x16{left:2894.429947px;}
@media print{
.v2{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:57.600000pt;}
.v3{vertical-align:132.320000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.768000pt;}
.ls2{letter-spacing:172.800000pt;}
.ls3{letter-spacing:326.293333pt;}
.ws3{word-spacing:-480.000000pt;}
.ws2{word-spacing:-124.800000pt;}
.ws9{word-spacing:-66.560000pt;}
.ws7{word-spacing:-49.920000pt;}
.ws4{word-spacing:-38.771200pt;}
.ws1{word-spacing:-33.664000pt;}
.ws8{word-spacing:-33.408000pt;}
.ws5{word-spacing:-33.313280pt;}
.ws0{word-spacing:-33.024000pt;}
.ws6{word-spacing:-18.470400pt;}
.wsa{word-spacing:0.000000pt;}
._7{margin-left:-924.650667pt;}
._6{margin-left:-3.343573pt;}
._5{margin-left:-2.040107pt;}
._4{margin-left:-1.013333pt;}
._2{width:1.408000pt;}
._0{width:2.816000pt;}
._1{width:4.224000pt;}
._3{width:10.240000pt;}
.fs6{font-size:71.040000pt;}
.fs7{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs3{font-size:149.120000pt;}
.fs9{font-size:192.000000pt;}
.fs4{font-size:192.128000pt;}
.fs1{font-size:234.880000pt;}
.fsa{font-size:256.000000pt;}
.fs8{font-size:320.000000pt;}
.fs2{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:139.813333pt;}
.yb{bottom:226.053333pt;}
.yd{bottom:312.320000pt;}
.y1c{bottom:385.986667pt;}
.y9{bottom:396.066667pt;}
.yc{bottom:398.586667pt;}
.y32{bottom:561.506667pt;}
.y55{bottom:586.080000pt;}
.y4c{bottom:612.706667pt;}
.y2f{bottom:617.146667pt;}
.y31{bottom:619.106667pt;}
.y54{bottom:643.680000pt;}
.y4b{bottom:670.306667pt;}
.y30{bottom:676.706667pt;}
.y53{bottom:701.280000pt;}
.y4a{bottom:727.906667pt;}
.y52{bottom:758.880000pt;}
.y49{bottom:785.506667pt;}
.y2e{bottom:798.173333pt;}
.y51{bottom:816.480000pt;}
.y2d{bottom:822.693333pt;}
.y48{bottom:843.106667pt;}
.y50{bottom:874.080000pt;}
.y47{bottom:900.706667pt;}
.y4f{bottom:931.706667pt;}
.y46{bottom:958.306667pt;}
.y2c{bottom:976.826667pt;}
.y4e{bottom:993.893333pt;}
.y45{bottom:1015.906667pt;}
.y29{bottom:1029.733333pt;}
.y2b{bottom:1034.426667pt;}
.y3c{bottom:1036.866667pt;}
.y4d{bottom:1051.520000pt;}
.y2a{bottom:1092.026667pt;}
.y28{bottom:1183.866667pt;}
.y58{bottom:1225.213333pt;}
.y3d{bottom:1225.946667pt;}
.y57{bottom:1229.666667pt;}
.y3b{bottom:1232.293333pt;}
.y25{bottom:1236.320000pt;}
.y27{bottom:1241.466667pt;}
.y56{bottom:1287.266667pt;}
.y3a{bottom:1289.893333pt;}
.y26{bottom:1299.066667pt;}
.y39{bottom:1347.493333pt;}
.y44{bottom:1348.093333pt;}
.y24{bottom:1390.466667pt;}
.y38{bottom:1405.093333pt;}
.y43{bottom:1405.733333pt;}
.y21{bottom:1442.720000pt;}
.y23{bottom:1448.066667pt;}
.y37{bottom:1462.693333pt;}
.y42{bottom:1463.333333pt;}
.y22{bottom:1505.666667pt;}
.y36{bottom:1520.293333pt;}
.y41{bottom:1520.933333pt;}
.y35{bottom:1577.893333pt;}
.y40{bottom:1578.533333pt;}
.y1f{bottom:1596.893333pt;}
.y34{bottom:1635.493333pt;}
.y3f{bottom:1636.133333pt;}
.y20{bottom:1649.053333pt;}
.y1e{bottom:1654.493333pt;}
.y33{bottom:1693.093333pt;}
.y3e{bottom:1693.733333pt;}
.y1d{bottom:1712.093333pt;}
.y1b{bottom:1850.626667pt;}
.y1a{bottom:1937.026667pt;}
.y19{bottom:2023.426667pt;}
.y18{bottom:2109.826667pt;}
.y11{bottom:2252.933333pt;}
.y17{bottom:2475.386667pt;}
.y16{bottom:2561.826667pt;}
.y15{bottom:2648.226667pt;}
.y14{bottom:2734.626667pt;}
.y13{bottom:2821.026667pt;}
.y12{bottom:2907.426667pt;}
.y10{bottom:3035.133333pt;}
.yf{bottom:3211.746667pt;}
.ye{bottom:3277.626667pt;}
.y8{bottom:3383.813333pt;}
.y7{bottom:3527.813333pt;}
.y6{bottom:3671.813333pt;}
.y3{bottom:3895.013333pt;}
.y2{bottom:3933.413333pt;}
.y1{bottom:3971.813333pt;}
.y5{bottom:4166.973333pt;}
.y4{bottom:4237.373333pt;}
.ha{height:59.974687pt;}
.h7{height:60.668438pt;}
.h2{height:109.312500pt;}
.h5{height:127.349062pt;}
.h9{height:163.968750pt;}
.hf{height:164.078063pt;}
.hc{height:166.912500pt;}
.h6{height:167.021812pt;}
.h3{height:178.453750pt;}
.he{height:198.294688pt;}
.hb{height:216.125000pt;}
.h8{height:270.156250pt;}
.hd{height:296.288750pt;}
.h4{height:409.921875pt;}
.h1{height:4497.333333pt;}
.h0{height:4497.600000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xa{left:132.063953pt;}
.xb{left:179.106619pt;}
.xe{left:188.186619pt;}
.xf{left:190.266619pt;}
.x11{left:191.706619pt;}
.x5{left:219.266619pt;}
.x4{left:294.626619pt;}
.xd{left:307.839953pt;}
.x10{left:367.839953pt;}
.x1{left:825.186619pt;}
.x6{left:856.093286pt;}
.x3{left:883.906619pt;}
.x9{left:941.413286pt;}
.x2{left:1371.293286pt;}
.xc{left:1499.013286pt;}
.x12{left:1701.439953pt;}
.x7{left:1722.079953pt;}
.x8{left:2201.373286pt;}
.x14{left:2237.693286pt;}
.x17{left:2411.453286pt;}
.x13{left:2424.346619pt;}
.x15{left:2461.893286pt;}
.x16{left:2572.826619pt;}
}




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