
    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_14a9d64ece019407d66773e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_224122423b21830dc05e4141.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984048;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_d092dd24b4f9a5e177ddcd6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.000000;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_3991ffb036394bf8c4e5c9ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;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_be2ac5192beb93abb26c24d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.685000;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.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.084703px;}
.ls0{letter-spacing:0.087523px;}
.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:-37.387117px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-1.004326px;}
._2{width:1.103559px;}
._f{width:2.385312px;}
._b{width:3.409521px;}
._8{width:4.903170px;}
._7{width:6.004293px;}
._10{width:7.116035px;}
._5{width:8.293418px;}
._a{width:9.950214px;}
._1e{width:10.994958px;}
._6{width:13.913569px;}
._12{width:15.000670px;}
._d{width:16.072403px;}
._e{width:17.194928px;}
._1b{width:18.728495px;}
._11{width:20.193644px;}
._1a{width:21.198624px;}
._14{width:22.618933px;}
._9{width:23.791350px;}
._19{width:25.197006px;}
._1f{width:26.219049px;}
._16{width:27.698537px;}
._c{width:29.787813px;}
._1d{width:30.935157px;}
._18{width:32.176203px;}
._4{width:33.411311px;}
._15{width:35.372510px;}
._3{width:43.531368px;}
._17{width:45.805286px;}
._1c{width:47.670401px;}
._1{width:486.509400px;}
._0{width:1171.272296px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:48.055421px;}
.fs0{font-size:59.934396px;}
.fs1{font-size:71.993371px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.120938px;}
.y3{bottom:133.713959px;}
.y46{bottom:165.926446px;}
.y45{bottom:181.180090px;}
.y88{bottom:183.697599px;}
.y44{bottom:196.433734px;}
.y87{bottom:198.906243px;}
.y43{bottom:211.687378px;}
.y86{bottom:214.159887px;}
.y42{bottom:226.941022px;}
.y85{bottom:229.413531px;}
.y41{bottom:242.194666px;}
.y84{bottom:244.667175px;}
.y40{bottom:257.448309px;}
.y83{bottom:259.920818px;}
.y3f{bottom:272.701953px;}
.y82{bottom:275.174462px;}
.y3e{bottom:287.910597px;}
.y81{bottom:290.428106px;}
.y3d{bottom:303.164241px;}
.y80{bottom:305.681000px;}
.y3c{bottom:318.417885px;}
.y7f{bottom:320.934644px;}
.y3b{bottom:333.671529px;}
.y7e{bottom:335.243933px;}
.y3a{bottom:348.925173px;}
.y7d{bottom:349.372518px;}
.y7c{bottom:363.456102px;}
.y39{bottom:364.178817px;}
.y7b{bottom:378.484746px;}
.y38{bottom:379.431711px;}
.y7a{bottom:393.738390px;}
.y37{bottom:394.685355px;}
.y79{bottom:408.991284px;}
.y36{bottom:409.938998px;}
.y78{bottom:424.244928px;}
.y35{bottom:425.192642px;}
.y77{bottom:439.498572px;}
.y34{bottom:440.446286px;}
.y76{bottom:454.752216px;}
.y33{bottom:455.699930px;}
.y75{bottom:469.960859px;}
.y32{bottom:470.953574px;}
.y74{bottom:485.214503px;}
.y31{bottom:486.207218px;}
.y73{bottom:500.468147px;}
.y30{bottom:500.515802px;}
.y2f{bottom:514.599387px;}
.y72{bottom:515.721791px;}
.y2e{bottom:529.628031px;}
.y71{bottom:530.975435px;}
.y2d{bottom:544.883024px;}
.y70{bottom:546.229079px;}
.y2c{bottom:560.136668px;}
.y6f{bottom:561.484073px;}
.y2b{bottom:575.390312px;}
.y6e{bottom:576.737717px;}
.y2a{bottom:590.643956px;}
.y6d{bottom:591.991361px;}
.y29{bottom:605.897600px;}
.y6c{bottom:607.245005px;}
.y28{bottom:621.151244px;}
.y6b{bottom:622.498648px;}
.y27{bottom:636.404888px;}
.y6a{bottom:637.752292px;}
.y26{bottom:651.658532px;}
.y69{bottom:653.005186px;}
.y25{bottom:666.912176px;}
.y68{bottom:668.258830px;}
.y24{bottom:682.165820px;}
.y67{bottom:683.512474px;}
.y23{bottom:697.373714px;}
.y66{bottom:698.721118px;}
.y22{bottom:712.627357px;}
.y65{bottom:713.974762px;}
.y21{bottom:727.881001px;}
.y64{bottom:729.228406px;}
.y20{bottom:743.134645px;}
.y63{bottom:744.482050px;}
.y1f{bottom:758.388289px;}
.y62{bottom:759.735694px;}
.y1e{bottom:773.641933px;}
.y61{bottom:774.989337px;}
.y1d{bottom:788.895577px;}
.y60{bottom:790.242981px;}
.y1c{bottom:804.104221px;}
.y5f{bottom:805.496625px;}
.y1b{bottom:819.582865px;}
.y5e{bottom:820.750269px;}
.y1a{bottom:834.836509px;}
.y5d{bottom:836.003913px;}
.y19{bottom:850.090152px;}
.y5c{bottom:851.257557px;}
.y18{bottom:865.343796px;}
.y5b{bottom:866.510451px;}
.y17{bottom:880.597440px;}
.y5a{bottom:881.764095px;}
.y16{bottom:895.850334px;}
.y59{bottom:896.072679px;}
.y58{bottom:910.156968px;}
.y15{bottom:911.103978px;}
.y57{bottom:924.285553px;}
.y14{bottom:926.357622px;}
.y56{bottom:938.369137px;}
.y13{bottom:941.611266px;}
.y55{bottom:953.397781px;}
.y12{bottom:956.864910px;}
.y54{bottom:968.651425px;}
.y11{bottom:972.118554px;}
.y53{bottom:983.905069px;}
.y10{bottom:987.372198px;}
.y52{bottom:999.157963px;}
.yf{bottom:1002.625841px;}
.y51{bottom:1014.411607px;}
.ye{bottom:1017.834485px;}
.y50{bottom:1029.665251px;}
.yd{bottom:1033.088129px;}
.y4f{bottom:1044.918894px;}
.yc{bottom:1048.341773px;}
.y4e{bottom:1060.127538px;}
.yb{bottom:1063.595417px;}
.y4d{bottom:1075.381182px;}
.ya{bottom:1078.849061px;}
.y4c{bottom:1090.634826px;}
.y9{bottom:1094.102705px;}
.y4b{bottom:1105.888470px;}
.y8{bottom:1109.355599px;}
.y4a{bottom:1121.142114px;}
.y7{bottom:1124.609843px;}
.y49{bottom:1136.395758px;}
.y6{bottom:1138.918427px;}
.y48{bottom:1151.649402px;}
.y5{bottom:1153.047011px;}
.y47{bottom:1166.903046px;}
.y4{bottom:1167.130596px;}
.y2{bottom:1195.972584px;}
.h3{height:0.000000px;}
.h5{height:34.359626px;}
.h4{height:41.808216px;}
.h2{height:42.855947px;}
.h1{height:1262.879062px;}
.h0{height:1263.000000px;}
.w1{width:892.415447px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:85.041463px;}
.x2{left:457.063048px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.075292pt;}
.ls0{letter-spacing:0.077799pt;}
.ws0{word-spacing:-33.232993pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-0.892734pt;}
._2{width:0.980941pt;}
._f{width:2.120277pt;}
._b{width:3.030685pt;}
._8{width:4.358373pt;}
._7{width:5.337149pt;}
._10{width:6.325364pt;}
._5{width:7.371928pt;}
._a{width:8.844635pt;}
._1e{width:9.773296pt;}
._6{width:12.367617pt;}
._12{width:13.333929pt;}
._d{width:14.286580pt;}
._e{width:15.284380pt;}
._1b{width:16.647551pt;}
._11{width:17.949906pt;}
._1a{width:18.843221pt;}
._14{width:20.105718pt;}
._9{width:21.147867pt;}
._19{width:22.397339pt;}
._1f{width:23.305822pt;}
._16{width:24.620921pt;}
._c{width:26.478056pt;}
._1d{width:27.497917pt;}
._18{width:28.601070pt;}
._4{width:29.698943pt;}
._15{width:31.442231pt;}
._3{width:38.694549pt;}
._17{width:40.715810pt;}
._1c{width:42.373690pt;}
._1{width:432.452800pt;}
._0{width:1041.130930pt;}
.fs2{font-size:42.715930pt;}
.fs0{font-size:53.275019pt;}
.fs1{font-size:63.994108pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.107500pt;}
.y3{bottom:118.856852pt;}
.y46{bottom:147.490174pt;}
.y45{bottom:161.048969pt;}
.y88{bottom:163.286755pt;}
.y44{bottom:174.607763pt;}
.y87{bottom:176.805549pt;}
.y43{bottom:188.166558pt;}
.y86{bottom:190.364344pt;}
.y42{bottom:201.725353pt;}
.y85{bottom:203.923138pt;}
.y41{bottom:215.284147pt;}
.y84{bottom:217.481933pt;}
.y40{bottom:228.842942pt;}
.y83{bottom:231.040728pt;}
.y3f{bottom:242.401736pt;}
.y82{bottom:244.599522pt;}
.y3e{bottom:255.920531pt;}
.y81{bottom:258.158317pt;}
.y3d{bottom:269.479325pt;}
.y80{bottom:271.716445pt;}
.y3c{bottom:283.038120pt;}
.y7f{bottom:285.275239pt;}
.y3b{bottom:296.596915pt;}
.y7e{bottom:297.994607pt;}
.y3a{bottom:310.155709pt;}
.y7d{bottom:310.553349pt;}
.y7c{bottom:323.072091pt;}
.y39{bottom:323.714504pt;}
.y7b{bottom:336.430885pt;}
.y38{bottom:337.272632pt;}
.y7a{bottom:349.989680pt;}
.y37{bottom:350.831426pt;}
.y79{bottom:363.547808pt;}
.y36{bottom:364.390221pt;}
.y78{bottom:377.106602pt;}
.y35{bottom:377.949015pt;}
.y77{bottom:390.665397pt;}
.y34{bottom:391.507810pt;}
.y76{bottom:404.224192pt;}
.y33{bottom:405.066605pt;}
.y75{bottom:417.742986pt;}
.y32{bottom:418.625399pt;}
.y74{bottom:431.301781pt;}
.y31{bottom:432.184194pt;}
.y73{bottom:444.860575pt;}
.y30{bottom:444.902935pt;}
.y2f{bottom:457.421677pt;}
.y72{bottom:458.419370pt;}
.y2e{bottom:470.780472pt;}
.y71{bottom:471.978164pt;}
.y2d{bottom:484.340466pt;}
.y70{bottom:485.536959pt;}
.y2c{bottom:497.899261pt;}
.y6f{bottom:499.096954pt;}
.y2b{bottom:511.458055pt;}
.y6e{bottom:512.655748pt;}
.y2a{bottom:525.016850pt;}
.y6d{bottom:526.214543pt;}
.y29{bottom:538.575645pt;}
.y6c{bottom:539.773337pt;}
.y28{bottom:552.134439pt;}
.y6b{bottom:553.332132pt;}
.y27{bottom:565.693234pt;}
.y6a{bottom:566.890927pt;}
.y26{bottom:579.252028pt;}
.y69{bottom:580.449054pt;}
.y25{bottom:592.810823pt;}
.y68{bottom:594.007849pt;}
.y24{bottom:606.369617pt;}
.y67{bottom:607.566644pt;}
.y23{bottom:619.887745pt;}
.y66{bottom:621.085438pt;}
.y22{bottom:633.446540pt;}
.y65{bottom:634.644233pt;}
.y21{bottom:647.005334pt;}
.y64{bottom:648.203027pt;}
.y20{bottom:660.564129pt;}
.y63{bottom:661.761822pt;}
.y1f{bottom:674.122924pt;}
.y62{bottom:675.320616pt;}
.y1e{bottom:687.681718pt;}
.y61{bottom:688.879411pt;}
.y1d{bottom:701.240513pt;}
.y60{bottom:702.438206pt;}
.y1c{bottom:714.759307pt;}
.y5f{bottom:715.997000pt;}
.y1b{bottom:728.518102pt;}
.y5e{bottom:729.555795pt;}
.y1a{bottom:742.076896pt;}
.y5d{bottom:743.114589pt;}
.y19{bottom:755.635691pt;}
.y5c{bottom:756.673384pt;}
.y18{bottom:769.194486pt;}
.y5b{bottom:770.231512pt;}
.y17{bottom:782.753280pt;}
.y5a{bottom:783.790306pt;}
.y16{bottom:796.311408pt;}
.y59{bottom:796.509048pt;}
.y58{bottom:809.028416pt;}
.y15{bottom:809.870203pt;}
.y57{bottom:821.587158pt;}
.y14{bottom:823.428997pt;}
.y56{bottom:834.105900pt;}
.y13{bottom:836.987792pt;}
.y55{bottom:847.464694pt;}
.y12{bottom:850.546586pt;}
.y54{bottom:861.023489pt;}
.y11{bottom:864.105381pt;}
.y53{bottom:874.582283pt;}
.y10{bottom:877.664176pt;}
.y52{bottom:888.140411pt;}
.yf{bottom:891.222970pt;}
.y51{bottom:901.699206pt;}
.ye{bottom:904.741765pt;}
.y50{bottom:915.258001pt;}
.yd{bottom:918.300559pt;}
.y4f{bottom:928.816795pt;}
.yc{bottom:931.859354pt;}
.y4e{bottom:942.335590pt;}
.yb{bottom:945.418148pt;}
.y4d{bottom:955.894384pt;}
.ya{bottom:958.976943pt;}
.y4c{bottom:969.453179pt;}
.y9{bottom:972.535738pt;}
.y4b{bottom:983.011973pt;}
.y8{bottom:986.093866pt;}
.y4a{bottom:996.570768pt;}
.y7{bottom:999.653193pt;}
.y49{bottom:1010.129563pt;}
.y6{bottom:1012.371935pt;}
.y48{bottom:1023.688357pt;}
.y5{bottom:1024.930677pt;}
.y47{bottom:1037.247152pt;}
.y4{bottom:1037.449418pt;}
.y2{bottom:1063.086741pt;}
.h3{height:0.000000pt;}
.h5{height:30.541890pt;}
.h4{height:37.162859pt;}
.h2{height:38.094175pt;}
.h1{height:1122.559167pt;}
.h0{height:1122.666667pt;}
.w1{width:793.258175pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.592411pt;}
.x2{left:406.278265pt;}
}




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