
    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_8ed1e9d78c806518e70a5889.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_f48bb7896acee34a2d7bd0f4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_15de3c35c9123e4ec112f7cd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_c5723399ca93dd8a7ef51502.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5a9c5398e3fab66276e83ba0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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;}
.v1{vertical-align:64.800000px;}
.v2{vertical-align:100.200000px;}
.ls4{letter-spacing:-21.840000px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.029520px;}
.ls8{letter-spacing:0.118200px;}
.ls1{letter-spacing:0.150600px;}
.ls6{letter-spacing:0.271200px;}
.lsa{letter-spacing:0.299400px;}
.ls2{letter-spacing:97.560000px;}
.ls0{letter-spacing:105.876000px;}
.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:-60.048000px;}
.ws0{word-spacing:-40.032000px;}
.ws1{word-spacing:-30.024000px;}
.wsb{word-spacing:-29.988000px;}
.wsa{word-spacing:-29.772000px;}
.ws9{word-spacing:-23.718120px;}
.ws5{word-spacing:-23.689920px;}
.ws3{word-spacing:-23.569320px;}
.ws7{word-spacing:-23.536920px;}
.ws8{word-spacing:-23.448240px;}
.ws4{word-spacing:-23.446800px;}
.ws6{word-spacing:-23.058720px;}
.wsc{word-spacing:0.000000px;}
._8{margin-left:-50.436000px;}
._9{margin-left:-41.693760px;}
._6{margin-left:-33.434640px;}
._3{margin-left:-20.688000px;}
._10{margin-left:-17.784000px;}
._d{margin-left:-14.256000px;}
._12{margin-left:-12.852000px;}
._f{margin-left:-11.232000px;}
._5{margin-left:-9.564000px;}
._14{margin-left:-7.992000px;}
._a{margin-left:-6.724800px;}
._b{margin-left:-5.206560px;}
._0{margin-left:-3.888000px;}
._7{margin-left:-2.689920px;}
._4{margin-left:-1.080000px;}
._c{width:1.279200px;}
._16{width:2.385360px;}
._e{width:3.456000px;}
._2{width:4.680000px;}
._1{width:22.824000px;}
._11{width:25.404000px;}
._15{width:31.959840px;}
._13{width:2420.729280px;}
.fc4{color:rgb(205,51,17);}
.fc3{color:rgb(0,54,95);}
.fc2{color:rgb(53,79,145);}
.fc5{color:rgb(188,188,188);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs0{font-size:216.000000px;}
.fs5{font-size:216.144000px;}
.fs2{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.y20{bottom:55.944000px;}
.y2d{bottom:68.544000px;}
.y1f{bottom:84.204000px;}
.y2c{bottom:100.944000px;}
.y1e{bottom:112.284000px;}
.y1d{bottom:137.484000px;}
.y2b{bottom:151.350000px;}
.y1c{bottom:162.690000px;}
.y1b{bottom:201.930000px;}
.y2a{bottom:208.230000px;}
.yb{bottom:321.405000px;}
.ya{bottom:356.865000px;}
.y34{bottom:366.225000px;}
.y9{bottom:392.325000px;}
.y33{bottom:398.625000px;}
.y3b{bottom:429.735000px;}
.y32{bottom:431.025000px;}
.y3a{bottom:462.135000px;}
.y39{bottom:494.535000px;}
.y38{bottom:795.060000px;}
.y37{bottom:827.460000px;}
.y36{bottom:859.860000px;}
.yc{bottom:984.780000px;}
.y13{bottom:1116.645000px;}
.y16{bottom:1119.090000px;}
.y11{bottom:1120.110000px;}
.y15{bottom:1126.440000px;}
.y12{bottom:1152.105000px;}
.y10{bottom:1152.510000px;}
.y14{bottom:1158.840000px;}
.y47{bottom:1336.710000px;}
.y46{bottom:1387.110000px;}
.y45{bottom:1419.510000px;}
.y44{bottom:1451.910000px;}
.y43{bottom:1502.310000px;}
.y42{bottom:1534.710000px;}
.y35{bottom:1872.435000px;}
.y18{bottom:1879.560000px;}
.yf{bottom:1880.745000px;}
.y17{bottom:1911.960000px;}
.ye{bottom:1913.145000px;}
.yd{bottom:2005.740000px;}
.y31{bottom:2067.405000px;}
.y30{bottom:2099.805000px;}
.y1a{bottom:2126.265000px;}
.y19{bottom:2162.265000px;}
.y2f{bottom:2219.835000px;}
.y3d{bottom:2239.950000px;}
.y3f{bottom:2240.310000px;}
.y3e{bottom:2271.990000px;}
.y3c{bottom:2272.350000px;}
.y2e{bottom:2284.635000px;}
.y24{bottom:2400.915000px;}
.y23{bottom:2433.315000px;}
.y26{bottom:2434.890000px;}
.y29{bottom:2464.020000px;}
.y22{bottom:2465.715000px;}
.y25{bottom:2466.570000px;}
.y28{bottom:2496.420000px;}
.y27{bottom:2528.820000px;}
.y41{bottom:2544.300000px;}
.y40{bottom:2576.700000px;}
.y8{bottom:2858.910000px;}
.y21{bottom:2861.790000px;}
.y7{bottom:2995.095000px;}
.y6{bottom:3038.295000px;}
.y5{bottom:3081.525000px;}
.y4{bottom:3124.725000px;}
.y1{bottom:3206.625000px;}
.y3{bottom:3306.525000px;}
.y2{bottom:3407.325000px;}
.hb{height:63.180000px;}
.h7{height:81.000000px;}
.ha{height:90.180000px;}
.h4{height:108.000000px;}
.h5{height:108.108000px;}
.h6{height:162.000000px;}
.h8{height:162.108000px;}
.h2{height:172.800000px;}
.h9{height:181.200000px;}
.h3{height:252.180000px;}
.h1{height:3574.500000px;}
.h0{height:3574.800000px;}
.w2{width:2527.199962px;}
.w0{width:2527.200000px;}
.w1{width:2527.500000px;}
.x0{left:0.000000px;}
.x21{left:46.871962px;}
.x1{left:49.607962px;}
.x3{left:65.195962px;}
.x2f{left:67.967962px;}
.x31{left:70.163962px;}
.x14{left:75.599962px;}
.x4{left:77.255962px;}
.x9{left:80.423962px;}
.xb{left:92.843962px;}
.x6{left:119.915962px;}
.xc{left:172.409962px;}
.x2{left:211.754962px;}
.x7{left:235.874962px;}
.x8{left:281.414962px;}
.xa{left:317.234962px;}
.x5{left:383.249962px;}
.xd{left:440.534962px;}
.xe{left:463.214962px;}
.x20{left:472.244962px;}
.x15{left:498.269962px;}
.x12{left:627.329962px;}
.x30{left:662.324962px;}
.x10{left:714.854962px;}
.xf{left:721.514962px;}
.x13{left:737.669962px;}
.x11{left:960.329962px;}
.x2d{left:1312.199962px;}
.x22{left:1326.389962px;}
.x17{left:1335.779962px;}
.x2c{left:1342.799962px;}
.x18{left:1369.619962px;}
.x1b{left:1377.179962px;}
.x1a{left:1387.079962px;}
.x1c{left:1400.039962px;}
.x2e{left:1468.259962px;}
.x19{left:1505.774962px;}
.x16{left:1643.969962px;}
.x23{left:1739.159962px;}
.x2a{left:1820.909962px;}
.x29{left:1866.269962px;}
.x2b{left:1867.889962px;}
.x1e{left:1888.199962px;}
.x1d{left:1903.499962px;}
.x26{left:1909.184962px;}
.x27{left:1916.564962px;}
.x28{left:1932.584962px;}
.x35{left:1978.304962px;}
.x32{left:2019.029962px;}
.x34{left:2024.249962px;}
.x36{left:2042.249962px;}
.x24{left:2057.864962px;}
.x37{left:2066.549962px;}
.x25{left:2072.084962px;}
.x33{left:2159.969962px;}
.x1f{left:2204.249962px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:57.600000pt;}
.v2{vertical-align:89.066667pt;}
.ls4{letter-spacing:-19.413333pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.026240pt;}
.ls8{letter-spacing:0.105067pt;}
.ls1{letter-spacing:0.133867pt;}
.ls6{letter-spacing:0.241067pt;}
.lsa{letter-spacing:0.266133pt;}
.ls2{letter-spacing:86.720000pt;}
.ls0{letter-spacing:94.112000pt;}
.ws2{word-spacing:-53.376000pt;}
.ws0{word-spacing:-35.584000pt;}
.ws1{word-spacing:-26.688000pt;}
.wsb{word-spacing:-26.656000pt;}
.wsa{word-spacing:-26.464000pt;}
.ws9{word-spacing:-21.082773pt;}
.ws5{word-spacing:-21.057707pt;}
.ws3{word-spacing:-20.950507pt;}
.ws7{word-spacing:-20.921707pt;}
.ws8{word-spacing:-20.842880pt;}
.ws4{word-spacing:-20.841600pt;}
.ws6{word-spacing:-20.496640pt;}
.wsc{word-spacing:0.000000pt;}
._8{margin-left:-44.832000pt;}
._9{margin-left:-37.061120pt;}
._6{margin-left:-29.719680pt;}
._3{margin-left:-18.389333pt;}
._10{margin-left:-15.808000pt;}
._d{margin-left:-12.672000pt;}
._12{margin-left:-11.424000pt;}
._f{margin-left:-9.984000pt;}
._5{margin-left:-8.501333pt;}
._14{margin-left:-7.104000pt;}
._a{margin-left:-5.977600pt;}
._b{margin-left:-4.628053pt;}
._0{margin-left:-3.456000pt;}
._7{margin-left:-2.391040pt;}
._4{margin-left:-0.960000pt;}
._c{width:1.137067pt;}
._16{width:2.120320pt;}
._e{width:3.072000pt;}
._2{width:4.160000pt;}
._1{width:20.288000pt;}
._11{width:22.581333pt;}
._15{width:28.408747pt;}
._13{width:2151.759360pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs0{font-size:192.000000pt;}
.fs5{font-size:192.128000pt;}
.fs2{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:49.728000pt;}
.y2d{bottom:60.928000pt;}
.y1f{bottom:74.848000pt;}
.y2c{bottom:89.728000pt;}
.y1e{bottom:99.808000pt;}
.y1d{bottom:122.208000pt;}
.y2b{bottom:134.533333pt;}
.y1c{bottom:144.613333pt;}
.y1b{bottom:179.493333pt;}
.y2a{bottom:185.093333pt;}
.yb{bottom:285.693333pt;}
.ya{bottom:317.213333pt;}
.y34{bottom:325.533333pt;}
.y9{bottom:348.733333pt;}
.y33{bottom:354.333333pt;}
.y3b{bottom:381.986667pt;}
.y32{bottom:383.133333pt;}
.y3a{bottom:410.786667pt;}
.y39{bottom:439.586667pt;}
.y38{bottom:706.720000pt;}
.y37{bottom:735.520000pt;}
.y36{bottom:764.320000pt;}
.yc{bottom:875.360000pt;}
.y13{bottom:992.573333pt;}
.y16{bottom:994.746667pt;}
.y11{bottom:995.653333pt;}
.y15{bottom:1001.280000pt;}
.y12{bottom:1024.093333pt;}
.y10{bottom:1024.453333pt;}
.y14{bottom:1030.080000pt;}
.y47{bottom:1188.186667pt;}
.y46{bottom:1232.986667pt;}
.y45{bottom:1261.786667pt;}
.y44{bottom:1290.586667pt;}
.y43{bottom:1335.386667pt;}
.y42{bottom:1364.186667pt;}
.y35{bottom:1664.386667pt;}
.y18{bottom:1670.720000pt;}
.yf{bottom:1671.773333pt;}
.y17{bottom:1699.520000pt;}
.ye{bottom:1700.573333pt;}
.yd{bottom:1782.880000pt;}
.y31{bottom:1837.693333pt;}
.y30{bottom:1866.493333pt;}
.y1a{bottom:1890.013333pt;}
.y19{bottom:1922.013333pt;}
.y2f{bottom:1973.186667pt;}
.y3d{bottom:1991.066667pt;}
.y3f{bottom:1991.386667pt;}
.y3e{bottom:2019.546667pt;}
.y3c{bottom:2019.866667pt;}
.y2e{bottom:2030.786667pt;}
.y24{bottom:2134.146667pt;}
.y23{bottom:2162.946667pt;}
.y26{bottom:2164.346667pt;}
.y29{bottom:2190.240000pt;}
.y22{bottom:2191.746667pt;}
.y25{bottom:2192.506667pt;}
.y28{bottom:2219.040000pt;}
.y27{bottom:2247.840000pt;}
.y41{bottom:2261.600000pt;}
.y40{bottom:2290.400000pt;}
.y8{bottom:2541.253333pt;}
.y21{bottom:2543.813333pt;}
.y7{bottom:2662.306667pt;}
.y6{bottom:2700.706667pt;}
.y5{bottom:2739.133333pt;}
.y4{bottom:2777.533333pt;}
.y1{bottom:2850.333333pt;}
.y3{bottom:2939.133333pt;}
.y2{bottom:3028.733333pt;}
.hb{height:56.160000pt;}
.h7{height:72.000000pt;}
.ha{height:80.160000pt;}
.h4{height:96.000000pt;}
.h5{height:96.096000pt;}
.h6{height:144.000000pt;}
.h8{height:144.096000pt;}
.h2{height:153.600000pt;}
.h9{height:161.066667pt;}
.h3{height:224.160000pt;}
.h1{height:3177.333333pt;}
.h0{height:3177.600000pt;}
.w2{width:2246.399967pt;}
.w0{width:2246.400000pt;}
.w1{width:2246.666667pt;}
.x0{left:0.000000pt;}
.x21{left:41.663967pt;}
.x1{left:44.095967pt;}
.x3{left:57.951967pt;}
.x2f{left:60.415967pt;}
.x31{left:62.367967pt;}
.x14{left:67.199967pt;}
.x4{left:68.671967pt;}
.x9{left:71.487967pt;}
.xb{left:82.527967pt;}
.x6{left:106.591967pt;}
.xc{left:153.253300pt;}
.x2{left:188.226633pt;}
.x7{left:209.666633pt;}
.x8{left:250.146633pt;}
.xa{left:281.986633pt;}
.x5{left:340.666633pt;}
.xd{left:391.586633pt;}
.xe{left:411.746633pt;}
.x20{left:419.773300pt;}
.x15{left:442.906633pt;}
.x12{left:557.626633pt;}
.x30{left:588.733300pt;}
.x10{left:635.426633pt;}
.xf{left:641.346633pt;}
.x13{left:655.706633pt;}
.x11{left:853.626633pt;}
.x2d{left:1166.399967pt;}
.x22{left:1179.013300pt;}
.x17{left:1187.359967pt;}
.x2c{left:1193.599967pt;}
.x18{left:1217.439967pt;}
.x1b{left:1224.159967pt;}
.x1a{left:1232.959967pt;}
.x1c{left:1244.479967pt;}
.x2e{left:1305.119967pt;}
.x19{left:1338.466633pt;}
.x16{left:1461.306633pt;}
.x23{left:1545.919967pt;}
.x2a{left:1618.586633pt;}
.x29{left:1658.906633pt;}
.x2b{left:1660.346633pt;}
.x1e{left:1678.399967pt;}
.x1d{left:1691.999967pt;}
.x26{left:1697.053300pt;}
.x27{left:1703.613300pt;}
.x28{left:1717.853300pt;}
.x35{left:1758.493300pt;}
.x32{left:1794.693300pt;}
.x34{left:1799.333300pt;}
.x36{left:1815.333300pt;}
.x24{left:1829.213300pt;}
.x37{left:1836.933300pt;}
.x25{left:1841.853300pt;}
.x33{left:1919.973300pt;}
.x1f{left:1959.333300pt;}
}




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