
    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_0342282d6ea8878d2516790b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.733887;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_f06fc7ca1ef76ff2803cd115.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_78048a4ca21b175162d7eb9d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923500;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_dea5866cba7d1474aba1ccc5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.918500;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);}
.v1{vertical-align:-95.062503px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:95.062503px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.305118px;}
.ls0{letter-spacing:66.306422px;}
.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;}
}
.ws0{word-spacing:-38.793002px;}
.ws3{word-spacing:-32.620861px;}
.ws1{word-spacing:-32.617002px;}
.ws5{word-spacing:-30.907020px;}
.ws4{word-spacing:-26.309182px;}
.ws2{word-spacing:-0.190140px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-42.211202px;}
._0{margin-left:-34.824241px;}
._1f{margin-left:-29.088361px;}
._15{margin-left:-23.577361px;}
._5{margin-left:-22.529221px;}
._4{margin-left:-20.818141px;}
._19{margin-left:-19.658476px;}
._9{margin-left:-18.358021px;}
._7{margin-left:-16.963741px;}
._36{margin-left:-15.944293px;}
._14{margin-left:-14.651548px;}
._c{margin-left:-13.065001px;}
._13{margin-left:-11.438157px;}
._2{margin-left:-10.025160px;}
._17{margin-left:-8.463256px;}
._3{margin-left:-6.331680px;}
._2e{margin-left:-5.011511px;}
._6{margin-left:-3.992520px;}
._d{margin-left:-2.982750px;}
._16{margin-left:-1.187584px;}
._1a{width:1.641645px;}
._20{width:2.746710px;}
._e{width:4.422000px;}
._1e{width:6.117570px;}
._30{width:10.762770px;}
._2f{width:11.876911px;}
._31{width:15.362640px;}
._28{width:16.482001px;}
._1c{width:18.634141px;}
._1b{width:19.774141px;}
._2c{width:23.316001px;}
._27{width:28.715522px;}
._f{width:29.949002px;}
._32{width:31.129561px;}
._35{width:37.123921px;}
._18{width:38.178001px;}
._12{width:39.934503px;}
._11{width:41.004003px;}
._2d{width:42.700200px;}
._29{width:44.220003px;}
._34{width:45.626786px;}
._23{width:48.843003px;}
._2b{width:51.510963px;}
._2a{width:52.634523px;}
._26{width:68.166484px;}
._25{width:70.121524px;}
._b{width:73.332755px;}
._a{width:74.603255px;}
._1d{width:76.932242px;}
._10{width:78.792005px;}
._24{width:83.616005px;}
._8{width:85.515843px;}
._33{width:97.633623px;}
._21{width:104.072110px;}
._22{width:105.257659px;}
.fc7{color:rgb(31,73,125);}
.fc6{color:rgb(244,125,32);}
.fc5{color:rgb(0,151,167);}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(2,52,82);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(89,89,89);}
.fsa{font-size:136.317006px;}
.fse{font-size:149.999999px;}
.fsd{font-size:160.140002px;}
.fs6{font-size:169.000010px;}
.fs8{font-size:169.020005px;}
.fs4{font-size:180.000006px;}
.fsb{font-size:186.000000px;}
.fs9{font-size:189.000006px;}
.fs7{font-size:190.140009px;}
.fs5{font-size:201.000012px;}
.fsc{font-size:202.140006px;}
.fs3{font-size:232.380007px;}
.fs0{font-size:253.500002px;}
.fs2{font-size:285.180008px;}
.fs1{font-size:527.640020px;}
.y0{bottom:0.000000px;}
.y15{bottom:44.747462px;}
.y14{bottom:101.789452px;}
.y16{bottom:111.951042px;}
.y13{bottom:158.831454px;}
.y12{bottom:215.873445px;}
.y11{bottom:272.915449px;}
.y17{bottom:306.593711px;}
.y1{bottom:355.147664px;}
.y46{bottom:528.423913px;}
.y47{bottom:582.705584px;}
.y45{bottom:598.162249px;}
.y44{bottom:667.900597px;}
.y43{bottom:737.638899px;}
.y23{bottom:791.528471px;}
.y42{bottom:807.377201px;}
.y41{bottom:877.115560px;}
.y40{bottom:946.853806px;}
.y3f{bottom:1016.592108px;}
.y3e{bottom:1086.330343px;}
.y3d{bottom:1156.068645px;}
.y3c{bottom:1225.806936px;}
.y3b{bottom:1295.545227px;}
.y3a{bottom:1365.283529px;}
.y26{bottom:1416.409482px;}
.y39{bottom:1447.196840px;}
.y25{bottom:1472.209484px;}
.y38{bottom:1524.195432px;}
.y24{bottom:1528.009479px;}
.y27{bottom:1646.922547px;}
.y37{bottom:1686.618729px;}
.y36{bottom:1755.963732px;}
.y20{bottom:1791.935383px;}
.y35{bottom:1825.308734px;}
.y1f{bottom:1857.533685px;}
.y34{bottom:1894.653781px;}
.y1e{bottom:1923.131987px;}
.y33{bottom:1963.998806px;}
.y1d{bottom:1988.730289px;}
.y32{bottom:2033.343853px;}
.y1c{bottom:2054.328602px;}
.y31{bottom:2102.688855px;}
.y1b{bottom:2119.807193px;}
.y30{bottom:2172.033857px;}
.y49{bottom:2224.430622px;}
.y2f{bottom:2241.378837px;}
.y48{bottom:2279.678923px;}
.y2e{bottom:2310.723828px;}
.y2d{bottom:2380.068808px;}
.y2c{bottom:2449.413799px;}
.y2b{bottom:2518.758778px;}
.y2a{bottom:2588.103758px;}
.y29{bottom:2657.448760px;}
.y28{bottom:2739.088483px;}
.yb{bottom:2892.107433px;}
.ya{bottom:2961.452424px;}
.y9{bottom:3030.797404px;}
.y8{bottom:3100.142395px;}
.y7{bottom:3169.487374px;}
.y22{bottom:3212.906559px;}
.y6{bottom:3238.832354px;}
.y21{bottom:3289.905151px;}
.y5{bottom:3311.472256px;}
.y4{bottom:3400.643179px;}
.y10{bottom:3617.253285px;}
.yf{bottom:3693.303254px;}
.ye{bottom:3769.353245px;}
.yd{bottom:3817.836021px;}
.yc{bottom:3902.445240px;}
.y19{bottom:4037.374007px;}
.y18{bottom:4113.424000px;}
.y3{bottom:4253.467843px;}
.y2{bottom:4411.759849px;}
.y1a{bottom:4593.216770px;}
.hc{height:105.713838px;}
.h10{height:124.188572px;}
.h6{height:131.059508px;}
.ha{height:131.075014px;}
.h8{height:140.038117px;}
.hd{height:144.243000px;}
.hb{height:146.569505px;}
.h7{height:147.453577px;}
.h5{height:155.875510px;}
.he{height:156.759575px;}
.h4{height:172.658346px;}
.h1{height:183.564699px;}
.hf{height:188.350502px;}
.h3{height:211.888746px;}
.h9{height:226.122011px;}
.h2{height:409.184835px;}
.h0{height:4677.000000px;}
.w0{width:3400.500000px;}
.x0{left:0.000000px;}
.x5{left:63.375001px;}
.x4{left:90.375006px;}
.x1{left:92.371537px;}
.xa{left:147.301182px;}
.x6{left:154.370086px;}
.x12{left:181.825411px;}
.x9{left:231.851336px;}
.x11{left:300.469757px;}
.x2{left:318.956579px;}
.x3{left:487.263881px;}
.x13{left:695.193700px;}
.x14{left:1651.922378px;}
.xb{left:1716.268667px;}
.xf{left:1734.268668px;}
.xe{left:1750.094269px;}
.xc{left:1921.275545px;}
.x10{left:2078.999977px;}
.xd{left:2250.798800px;}
.x8{left:2790.127552px;}
.x7{left:2803.917465px;}
@media print{
.v1{vertical-align:-84.500003pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:84.500003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.048994pt;}
.ls0{letter-spacing:58.939042pt;}
.ws0{word-spacing:-34.482669pt;}
.ws3{word-spacing:-28.996321pt;}
.ws1{word-spacing:-28.992891pt;}
.ws5{word-spacing:-27.472907pt;}
.ws4{word-spacing:-23.385940pt;}
.ws2{word-spacing:-0.169013pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-37.521068pt;}
._0{margin-left:-30.954881pt;}
._1f{margin-left:-25.856321pt;}
._15{margin-left:-20.957654pt;}
._5{margin-left:-20.025974pt;}
._4{margin-left:-18.505014pt;}
._19{margin-left:-17.474201pt;}
._9{margin-left:-16.318241pt;}
._7{margin-left:-15.078880pt;}
._36{margin-left:-14.172705pt;}
._14{margin-left:-13.023598pt;}
._c{margin-left:-11.613334pt;}
._13{margin-left:-10.167251pt;}
._2{margin-left:-8.911254pt;}
._17{margin-left:-7.522895pt;}
._3{margin-left:-5.628160pt;}
._2e{margin-left:-4.454676pt;}
._6{margin-left:-3.548907pt;}
._d{margin-left:-2.651334pt;}
._16{margin-left:-1.055630pt;}
._1a{width:1.459240pt;}
._20{width:2.441520pt;}
._e{width:3.930667pt;}
._1e{width:5.437840pt;}
._30{width:9.566907pt;}
._2f{width:10.557254pt;}
._31{width:13.655680pt;}
._28{width:14.650668pt;}
._1c{width:16.563681pt;}
._1b{width:17.577014pt;}
._2c{width:20.725335pt;}
._27{width:25.524908pt;}
._f{width:26.621335pt;}
._32{width:27.670721pt;}
._35{width:32.999041pt;}
._18{width:33.936001pt;}
._12{width:35.497336pt;}
._11{width:36.448002pt;}
._2d{width:37.955733pt;}
._29{width:39.306669pt;}
._34{width:40.557143pt;}
._23{width:43.416003pt;}
._2b{width:45.787523pt;}
._2a{width:46.786243pt;}
._26{width:60.592431pt;}
._25{width:62.330244pt;}
._b{width:65.184671pt;}
._a{width:66.314004pt;}
._1d{width:68.384216pt;}
._10{width:70.037338pt;}
._24{width:74.325338pt;}
._8{width:76.014082pt;}
._33{width:86.785443pt;}
._21{width:92.508542pt;}
._22{width:93.562364pt;}
.fsa{font-size:121.170672pt;}
.fse{font-size:133.333332pt;}
.fsd{font-size:142.346669pt;}
.fs6{font-size:150.222231pt;}
.fs8{font-size:150.240005pt;}
.fs4{font-size:160.000005pt;}
.fsb{font-size:165.333333pt;}
.fs9{font-size:168.000005pt;}
.fs7{font-size:169.013341pt;}
.fs5{font-size:178.666678pt;}
.fsc{font-size:179.680006pt;}
.fs3{font-size:206.560007pt;}
.fs0{font-size:225.333335pt;}
.fs2{font-size:253.493340pt;}
.fs1{font-size:469.013351pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:39.775522pt;}
.y14{bottom:90.479513pt;}
.y16{bottom:99.512037pt;}
.y13{bottom:141.183515pt;}
.y12{bottom:191.887506pt;}
.y11{bottom:242.591510pt;}
.y17{bottom:272.527743pt;}
.y1{bottom:315.686812pt;}
.y46{bottom:469.710145pt;}
.y47{bottom:517.960519pt;}
.y45{bottom:531.699777pt;}
.y44{bottom:593.689419pt;}
.y43{bottom:655.679021pt;}
.y23{bottom:703.580863pt;}
.y42{bottom:717.668623pt;}
.y41{bottom:779.658275pt;}
.y40{bottom:841.647827pt;}
.y3f{bottom:903.637429pt;}
.y3e{bottom:965.626971pt;}
.y3d{bottom:1027.616573pt;}
.y3c{bottom:1089.606165pt;}
.y3b{bottom:1151.595757pt;}
.y3a{bottom:1213.585359pt;}
.y26{bottom:1259.030651pt;}
.y39{bottom:1286.397191pt;}
.y25{bottom:1308.630652pt;}
.y38{bottom:1354.840384pt;}
.y24{bottom:1358.230648pt;}
.y27{bottom:1463.931153pt;}
.y37{bottom:1499.216648pt;}
.y36{bottom:1560.856650pt;}
.y20{bottom:1592.831451pt;}
.y35{bottom:1622.496652pt;}
.y1f{bottom:1651.141053pt;}
.y34{bottom:1684.136694pt;}
.y1e{bottom:1709.450655pt;}
.y33{bottom:1745.776716pt;}
.y1d{bottom:1767.760257pt;}
.y32{bottom:1807.416758pt;}
.y1c{bottom:1826.069869pt;}
.y31{bottom:1869.056760pt;}
.y1b{bottom:1884.273061pt;}
.y30{bottom:1930.696762pt;}
.y49{bottom:1977.271664pt;}
.y2f{bottom:1992.336744pt;}
.y48{bottom:2026.381265pt;}
.y2e{bottom:2053.976736pt;}
.y2d{bottom:2115.616718pt;}
.y2c{bottom:2177.256710pt;}
.y2b{bottom:2238.896692pt;}
.y2a{bottom:2300.536674pt;}
.y29{bottom:2362.176676pt;}
.y28{bottom:2434.745318pt;}
.yb{bottom:2570.762163pt;}
.ya{bottom:2632.402155pt;}
.y9{bottom:2694.042137pt;}
.y8{bottom:2755.682128pt;}
.y7{bottom:2817.322110pt;}
.y22{bottom:2855.916942pt;}
.y6{bottom:2878.962092pt;}
.y21{bottom:2924.360134pt;}
.y5{bottom:2943.530894pt;}
.y4{bottom:3022.793937pt;}
.y10{bottom:3215.336253pt;}
.yf{bottom:3282.936225pt;}
.ye{bottom:3350.536218pt;}
.yd{bottom:3393.632019pt;}
.yc{bottom:3468.840213pt;}
.y19{bottom:3588.776895pt;}
.y18{bottom:3656.376889pt;}
.y3{bottom:3780.860305pt;}
.y2{bottom:3921.564310pt;}
.y1a{bottom:4082.859351pt;}
.hc{height:93.967856pt;}
.h10{height:110.389841pt;}
.h6{height:116.497340pt;}
.ha{height:116.511124pt;}
.h8{height:124.478326pt;}
.hd{height:128.216000pt;}
.hb{height:130.284004pt;}
.h7{height:131.069846pt;}
.h5{height:138.556009pt;}
.he{height:139.341844pt;}
.h4{height:153.474085pt;}
.h1{height:163.168621pt;}
.hf{height:167.422668pt;}
.h3{height:188.345552pt;}
.h9{height:200.997343pt;}
.h2{height:363.719854pt;}
.h0{height:4157.333333pt;}
.w0{width:3022.666667pt;}
.x0{left:0.000000pt;}
.x5{left:56.333334pt;}
.x4{left:80.333339pt;}
.x1{left:82.108033pt;}
.xa{left:130.934384pt;}
.x6{left:137.217854pt;}
.x12{left:161.622587pt;}
.x9{left:206.090077pt;}
.x11{left:267.084229pt;}
.x2{left:283.516959pt;}
.x3{left:433.123450pt;}
.x13{left:617.949956pt;}
.x14{left:1468.375447pt;}
.xb{left:1525.572149pt;}
.xf{left:1541.572149pt;}
.xe{left:1555.639350pt;}
.xc{left:1707.800485pt;}
.x10{left:1847.999979pt;}
.xd{left:2000.710044pt;}
.x8{left:2480.113379pt;}
.x7{left:2492.371080pt;}
}




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