
    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_4c59ef782a54dc31cd65e483.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_a4cfafe7dc136b7141e0d84e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_9dd2e58a77c80052c8c60a43.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_f8410061c544c8b6f35aa64c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.834000px;}
.ls16{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.510000px;}
.lse{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.310800px;}
.ls8{letter-spacing:-0.309600px;}
.ls12{letter-spacing:-0.282000px;}
.lsb{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.048960px;}
.ls5{letter-spacing:-0.034560px;}
.ls4{letter-spacing:-0.025920px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.089280px;}
.lsa{letter-spacing:0.132480px;}
.lsf{letter-spacing:0.132600px;}
.ls1{letter-spacing:0.149760px;}
.ls10{letter-spacing:0.198720px;}
.lsd{letter-spacing:0.231600px;}
.ls13{letter-spacing:0.247800px;}
.ls7{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.256320px;}
.ls9{letter-spacing:0.302400px;}
.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;}
}
.ws8{word-spacing:-15.272640px;}
.ws5{word-spacing:-15.226440px;}
.wse{word-spacing:-15.102840px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.944320px;}
.ws3{word-spacing:-14.935680px;}
.ws10{word-spacing:-14.921280px;}
.wsa{word-spacing:-14.754240px;}
.ws4{word-spacing:-14.659440px;}
.wsd{word-spacing:-14.506440px;}
.wsf{word-spacing:-14.460240px;}
.ws1{word-spacing:-14.268240px;}
.wsb{word-spacing:-14.136240px;}
.wsc{word-spacing:-9.669360px;}
.ws7{word-spacing:-9.437760px;}
.ws6{word-spacing:-9.128160px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.126080px;}
._1{width:1.293600px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.500000px;}
.y72{bottom:24.480000px;}
.y9{bottom:24.660000px;}
.y1d{bottom:24.690000px;}
.y56{bottom:24.705000px;}
.y71{bottom:44.640000px;}
.y3a{bottom:44.820000px;}
.y62{bottom:44.850000px;}
.y1f{bottom:46.980000px;}
.y3f{bottom:64.800000px;}
.y70{bottom:64.830000px;}
.y39{bottom:64.980000px;}
.y12{bottom:67.140000px;}
.y5f{bottom:72.360000px;}
.y23{bottom:74.340000px;}
.y3e{bottom:84.960000px;}
.y38{bottom:85.140000px;}
.y46{bottom:88.020000px;}
.y18{bottom:88.230000px;}
.y3d{bottom:105.120000px;}
.y37{bottom:105.330000px;}
.y17{bottom:108.390000px;}
.y3c{bottom:125.310000px;}
.y36{bottom:125.490000px;}
.y35{bottom:145.470000px;}
.y5e{bottom:153.720000px;}
.y34{bottom:165.630000px;}
.y33{bottom:185.790000px;}
.y5d{bottom:194.790000px;}
.y32{bottom:205.950000px;}
.y31{bottom:226.110000px;}
.y7{bottom:232.065000px;}
.y5c{bottom:235.830000px;}
.y30{bottom:246.270000px;}
.y6{bottom:252.225000px;}
.y2f{bottom:266.430000px;}
.y5b{bottom:276.870000px;}
.y2e{bottom:286.590000px;}
.y2d{bottom:306.750000px;}
.y5a{bottom:315.750000px;}
.y2c{bottom:326.910000px;}
.y7b{bottom:329.430000px;}
.y2b{bottom:346.935000px;}
.y59{bottom:349.590000px;}
.y7a{bottom:363.090000px;}
.y58{bottom:365.970000px;}
.y2a{bottom:367.095000px;}
.y79{bottom:384.870000px;}
.y57{bottom:386.850000px;}
.y29{bottom:387.255000px;}
.y28{bottom:407.415000px;}
.y55{bottom:407.730000px;}
.y78{bottom:418.575000px;}
.y77{bottom:440.355000px;}
.y54{bottom:448.815000px;}
.y25{bottom:449.175000px;}
.y24{bottom:469.335000px;}
.y53{bottom:469.695000px;}
.y76{bottom:474.195000px;}
.y27{bottom:498.135000px;}
.y75{bottom:507.855000px;}
.y52{bottom:510.735000px;}
.y26{bottom:519.015000px;}
.y74{bottom:541.515000px;}
.y51{bottom:551.775000px;}
.y73{bottom:558.075000px;}
.y1e{bottom:560.055000px;}
.y22{bottom:580.935000px;}
.y50{bottom:592.815000px;}
.y6f{bottom:599.115000px;}
.y21{bottom:601.815000px;}
.y20{bottom:622.695000px;}
.y4f{bottom:633.855000px;}
.y16{bottom:643.575000px;}
.y4e{bottom:674.925000px;}
.y6e{bottom:680.325000px;}
.y1c{bottom:684.645000px;}
.y1b{bottom:705.525000px;}
.y4d{bottom:713.805000px;}
.y1a{bottom:726.585000px;}
.y19{bottom:747.465000px;}
.y4c{bottom:747.645000px;}
.y6d{bottom:761.685000px;}
.y11{bottom:768.345000px;}
.y4b{bottom:781.305000px;}
.y15{bottom:789.225000px;}
.y45{bottom:797.685000px;}
.y14{bottom:810.105000px;}
.y4a{bottom:818.565000px;}
.y13{bottom:830.985000px;}
.y49{bottom:839.445000px;}
.y6c{bottom:843.045000px;}
.y5{bottom:851.865000px;}
.y48{bottom:860.325000px;}
.y6b{bottom:863.925000px;}
.y47{bottom:881.205000px;}
.y6a{bottom:884.805000px;}
.y10{bottom:892.905000px;}
.y44{bottom:902.310000px;}
.yf{bottom:913.830000px;}
.y43{bottom:923.190000px;}
.y69{bottom:923.730000px;}
.ye{bottom:934.710000px;}
.y42{bottom:944.070000px;}
.yd{bottom:955.590000px;}
.y68{bottom:957.570000px;}
.y41{bottom:985.110000px;}
.y67{bottom:991.230000px;}
.yc{bottom:996.630000px;}
.y40{bottom:1005.990000px;}
.y66{bottom:1013.010000px;}
.yb{bottom:1017.510000px;}
.y3b{bottom:1026.870000px;}
.y65{bottom:1034.790000px;}
.ya{bottom:1038.390000px;}
.y64{bottom:1056.570000px;}
.y8{bottom:1079.430000px;}
.y63{bottom:1090.230000px;}
.y61{bottom:1106.610000px;}
.y3{bottom:1120.470000px;}
.y2{bottom:1159.560000px;}
.y60{bottom:1167.840000px;}
.y1{bottom:1193.220000px;}
.ha{height:19.980000px;}
.h4{height:20.160000px;}
.h7{height:20.196000px;}
.hf{height:40.140000px;}
.h6{height:40.320000px;}
.hb{height:40.356000px;}
.h12{height:60.516000px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.h13{height:80.496000px;}
.h11{height:80.640000px;}
.h8{height:82.800000px;}
.h10{height:103.716000px;}
.h9{height:123.876000px;}
.he{height:181.290000px;}
.h5{height:267.870000px;}
.hd{height:423.075000px;}
.hc{height:484.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:143.316000px;}
.w8{width:148.176000px;}
.w6{width:158.430000px;}
.w4{width:188.130000px;}
.w7{width:201.270000px;}
.w9{width:265.170000px;}
.w5{width:442.155000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.740000px;}
.x1{left:53.999987px;}
.x4{left:198.930000px;}
.x7{left:213.870000px;}
.x5{left:285.329987px;}
.x6{left:349.454987px;}
.x2{left:388.514987px;}
.x8{left:415.875000px;}
.x9{left:564.765000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.741333pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.453333pt;}
.lse{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.276267pt;}
.ls8{letter-spacing:-0.275200pt;}
.ls12{letter-spacing:-0.250667pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.043520pt;}
.ls5{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:-0.023040pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.079360pt;}
.lsa{letter-spacing:0.117760pt;}
.lsf{letter-spacing:0.117867pt;}
.ls1{letter-spacing:0.133120pt;}
.ls10{letter-spacing:0.176640pt;}
.lsd{letter-spacing:0.205867pt;}
.ls13{letter-spacing:0.220267pt;}
.ls7{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.227840pt;}
.ls9{letter-spacing:0.268800pt;}
.ws8{word-spacing:-13.575680pt;}
.ws5{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.424747pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.283840pt;}
.ws3{word-spacing:-13.276160pt;}
.ws10{word-spacing:-13.263360pt;}
.wsa{word-spacing:-13.114880pt;}
.ws4{word-spacing:-13.030613pt;}
.wsd{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.853547pt;}
.ws1{word-spacing:-12.682880pt;}
.wsb{word-spacing:-12.565547pt;}
.wsc{word-spacing:-8.594987pt;}
.ws7{word-spacing:-8.389120pt;}
.ws6{word-spacing:-8.113920pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.149867pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.000000pt;}
.y72{bottom:21.760000pt;}
.y9{bottom:21.920000pt;}
.y1d{bottom:21.946667pt;}
.y56{bottom:21.960000pt;}
.y71{bottom:39.680000pt;}
.y3a{bottom:39.840000pt;}
.y62{bottom:39.866667pt;}
.y1f{bottom:41.760000pt;}
.y3f{bottom:57.600000pt;}
.y70{bottom:57.626667pt;}
.y39{bottom:57.760000pt;}
.y12{bottom:59.680000pt;}
.y5f{bottom:64.320000pt;}
.y23{bottom:66.080000pt;}
.y3e{bottom:75.520000pt;}
.y38{bottom:75.680000pt;}
.y46{bottom:78.240000pt;}
.y18{bottom:78.426667pt;}
.y3d{bottom:93.440000pt;}
.y37{bottom:93.626667pt;}
.y17{bottom:96.346667pt;}
.y3c{bottom:111.386667pt;}
.y36{bottom:111.546667pt;}
.y35{bottom:129.306667pt;}
.y5e{bottom:136.640000pt;}
.y34{bottom:147.226667pt;}
.y33{bottom:165.146667pt;}
.y5d{bottom:173.146667pt;}
.y32{bottom:183.066667pt;}
.y31{bottom:200.986667pt;}
.y7{bottom:206.280000pt;}
.y5c{bottom:209.626667pt;}
.y30{bottom:218.906667pt;}
.y6{bottom:224.200000pt;}
.y2f{bottom:236.826667pt;}
.y5b{bottom:246.106667pt;}
.y2e{bottom:254.746667pt;}
.y2d{bottom:272.666667pt;}
.y5a{bottom:280.666667pt;}
.y2c{bottom:290.586667pt;}
.y7b{bottom:292.826667pt;}
.y2b{bottom:308.386667pt;}
.y59{bottom:310.746667pt;}
.y7a{bottom:322.746667pt;}
.y58{bottom:325.306667pt;}
.y2a{bottom:326.306667pt;}
.y79{bottom:342.106667pt;}
.y57{bottom:343.866667pt;}
.y29{bottom:344.226667pt;}
.y28{bottom:362.146667pt;}
.y55{bottom:362.426667pt;}
.y78{bottom:372.066667pt;}
.y77{bottom:391.426667pt;}
.y54{bottom:398.946667pt;}
.y25{bottom:399.266667pt;}
.y24{bottom:417.186667pt;}
.y53{bottom:417.506667pt;}
.y76{bottom:421.506667pt;}
.y27{bottom:442.786667pt;}
.y75{bottom:451.426667pt;}
.y52{bottom:453.986667pt;}
.y26{bottom:461.346667pt;}
.y74{bottom:481.346667pt;}
.y51{bottom:490.466667pt;}
.y73{bottom:496.066667pt;}
.y1e{bottom:497.826667pt;}
.y22{bottom:516.386667pt;}
.y50{bottom:526.946667pt;}
.y6f{bottom:532.546667pt;}
.y21{bottom:534.946667pt;}
.y20{bottom:553.506667pt;}
.y4f{bottom:563.426667pt;}
.y16{bottom:572.066667pt;}
.y4e{bottom:599.933333pt;}
.y6e{bottom:604.733333pt;}
.y1c{bottom:608.573333pt;}
.y1b{bottom:627.133333pt;}
.y4d{bottom:634.493333pt;}
.y1a{bottom:645.853333pt;}
.y19{bottom:664.413333pt;}
.y4c{bottom:664.573333pt;}
.y6d{bottom:677.053333pt;}
.y11{bottom:682.973333pt;}
.y4b{bottom:694.493333pt;}
.y15{bottom:701.533333pt;}
.y45{bottom:709.053333pt;}
.y14{bottom:720.093333pt;}
.y4a{bottom:727.613333pt;}
.y13{bottom:738.653333pt;}
.y49{bottom:746.173333pt;}
.y6c{bottom:749.373333pt;}
.y5{bottom:757.213333pt;}
.y48{bottom:764.733333pt;}
.y6b{bottom:767.933333pt;}
.y47{bottom:783.293333pt;}
.y6a{bottom:786.493333pt;}
.y10{bottom:793.693333pt;}
.y44{bottom:802.053333pt;}
.yf{bottom:812.293333pt;}
.y43{bottom:820.613333pt;}
.y69{bottom:821.093333pt;}
.ye{bottom:830.853333pt;}
.y42{bottom:839.173333pt;}
.yd{bottom:849.413333pt;}
.y68{bottom:851.173333pt;}
.y41{bottom:875.653333pt;}
.y67{bottom:881.093333pt;}
.yc{bottom:885.893333pt;}
.y40{bottom:894.213333pt;}
.y66{bottom:900.453333pt;}
.yb{bottom:904.453333pt;}
.y3b{bottom:912.773333pt;}
.y65{bottom:919.813333pt;}
.ya{bottom:923.013333pt;}
.y64{bottom:939.173333pt;}
.y8{bottom:959.493333pt;}
.y63{bottom:969.093333pt;}
.y61{bottom:983.653333pt;}
.y3{bottom:995.973333pt;}
.y2{bottom:1030.720000pt;}
.y60{bottom:1038.080000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:17.760000pt;}
.h4{height:17.920000pt;}
.h7{height:17.952000pt;}
.hf{height:35.680000pt;}
.h6{height:35.840000pt;}
.hb{height:35.872000pt;}
.h12{height:53.792000pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.h13{height:71.552000pt;}
.h11{height:71.680000pt;}
.h8{height:73.600000pt;}
.h10{height:92.192000pt;}
.h9{height:110.112000pt;}
.he{height:161.146667pt;}
.h5{height:238.106667pt;}
.hd{height:376.066667pt;}
.hc{height:431.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:127.392000pt;}
.w8{width:131.712000pt;}
.w6{width:140.826667pt;}
.w4{width:167.226667pt;}
.w7{width:178.906667pt;}
.w9{width:235.706667pt;}
.w5{width:393.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.880000pt;}
.x1{left:47.999988pt;}
.x4{left:176.826667pt;}
.x7{left:190.106667pt;}
.x5{left:253.626655pt;}
.x6{left:310.626655pt;}
.x2{left:345.346655pt;}
.x8{left:369.666667pt;}
.x9{left:502.013333pt;}
}




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