
    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_d2a46bf74a49318b097e44bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_c84f447906e7c215f2e52b70.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_d3b303772148fbea764804d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d01e86d4ff821f66ff3aa4a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_5122160959f99187c587bd9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_87b360e9399e1459ffe3864e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_e8ea31391c928b44d5917809.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.732000;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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.288009px;}
.ls5{letter-spacing:0.923432px;}
.ls6{letter-spacing:1.440044px;}
.ls1{letter-spacing:1.458000px;}
.ls3{letter-spacing:1.476000px;}
.ls7{letter-spacing:1.488045px;}
.ls4{letter-spacing:962.819000px;}
.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;}
}
.ws7{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-14.958000px;}
.ws6{word-spacing:-14.448441px;}
.ws5{word-spacing:-14.210587px;}
.ws8{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:-10.508889px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-7.172565px;}
._13{margin-left:-6.167720px;}
._4{margin-left:-5.140898px;}
._5{margin-left:-3.855674px;}
._3{margin-left:-2.203242px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:3.893581px;}
._8{width:5.474917px;}
._6{width:6.879920px;}
._c{width:8.088288px;}
._9{width:10.098000px;}
._a{width:11.262419px;}
._b{width:12.948209px;}
._10{width:13.954330px;}
._d{width:16.728170px;}
._e{width:17.850537px;}
._f{width:24.605619px;}
._11{width:115.685464px;}
._12{width:236.756588px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:55.678710px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y24{bottom:46.734370px;}
.y23{bottom:59.015622px;}
.y22{bottom:71.302734px;}
.y20{bottom:160.945302px;}
.y1f{bottom:179.847651px;}
.y43{bottom:181.435547px;}
.y1e{bottom:198.744108px;}
.y42{bottom:212.091797px;}
.y1d{bottom:217.646457px;}
.y1c{bottom:236.542947px;}
.y5d{bottom:241.880859px;}
.y1b{bottom:255.445296px;}
.y5c{bottom:258.685538px;}
.y41{bottom:267.703125px;}
.y5b{bottom:275.484370px;}
.y1a{bottom:287.847645px;}
.y5a{bottom:292.283203px;}
.y40{bottom:298.353516px;}
.y19{bottom:306.744135px;}
.y59{bottom:309.082035px;}
.y18{bottom:325.646478px;}
.y58{bottom:326.021488px;}
.y57{bottom:342.966796px;}
.y17{bottom:344.542968px;}
.y3f{bottom:353.964839px;}
.y16{bottom:363.445302px;}
.y5e{bottom:368.771484px;}
.y56{bottom:371.021484px;}
.y3e{bottom:372.867188px;}
.y15{bottom:382.347651px;}
.y14{bottom:401.244135px;}
.y3d{bottom:403.523438px;}
.y55{bottom:417.732422px;}
.y13{bottom:420.146484px;}
.y12{bottom:439.042964px;}
.y11{bottom:457.945308px;}
.y3c{bottom:459.128874px;}
.y54{bottom:473.103516px;}
.y10{bottom:476.847657px;}
.y3b{bottom:478.031223px;}
.y53{bottom:491.062500px;}
.y3a{bottom:496.927713px;}
.yf{bottom:507.498046px;}
.y52{bottom:509.015623px;}
.y39{bottom:515.830062px;}
.y51{bottom:526.968750px;}
.y38{bottom:534.732411px;}
.y50{bottom:544.927734px;}
.y37{bottom:553.628901px;}
.y4f{bottom:562.880857px;}
.y70{bottom:567.943359px;}
.ye{bottom:576.597653px;}
.y4e{bottom:580.833984px;}
.y6f{bottom:584.742184px;}
.y36{bottom:586.031163px;}
.yd{bottom:593.402338px;}
.y6e{bottom:601.541008px;}
.y35{bottom:604.927653px;}
.yc{bottom:614.701171px;}
.y6d{bottom:618.339840px;}
.y4d{bottom:618.345704px;}
.y34{bottom:623.830002px;}
.y6c{bottom:635.138672px;}
.yb{bottom:640.500000px;}
.y33{bottom:642.732351px;}
.y6b{bottom:651.943361px;}
.y32{bottom:661.628841px;}
.y6a{bottom:668.882813px;}
.y4c{bottom:672.046875px;}
.y31{bottom:680.531190px;}
.y69{bottom:685.822266px;}
.ya{bottom:690.755874px;}
.y30{bottom:699.427680px;}
.y4b{bottom:700.792968px;}
.y9{bottom:703.986338px;}
.y72{bottom:711.632812px;}
.y68{bottom:713.882812px;}
.y8{bottom:717.216802px;}
.y2f{bottom:718.330029px;}
.y7{bottom:730.441407px;}
.y2e{bottom:737.232378px;}
.y6{bottom:751.400391px;}
.y67{bottom:753.568359px;}
.y21{bottom:755.900391px;}
.y2d{bottom:756.128868px;}
.y4a{bottom:756.398433px;}
.y66{bottom:770.373043px;}
.y2c{bottom:775.031217px;}
.y49{bottom:775.300782px;}
.y65{bottom:787.171867px;}
.y5{bottom:793.710931px;}
.y2b{bottom:793.927707px;}
.y64{bottom:803.970699px;}
.y48{bottom:805.957032px;}
.y2a{bottom:812.830056px;}
.y63{bottom:820.769531px;}
.y4{bottom:831.269532px;}
.y29{bottom:831.732405px;}
.y62{bottom:837.568364px;}
.y28{bottom:850.628895px;}
.y61{bottom:854.513672px;}
.y47{bottom:861.568353px;}
.y27{bottom:869.531244px;}
.y60{bottom:871.453125px;}
.y46{bottom:880.464843px;}
.y71{bottom:897.263671px;}
.y3{bottom:899.378907px;}
.y5f{bottom:899.513671px;}
.y26{bottom:901.927730px;}
.y45{bottom:911.121093px;}
.y25{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y44{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.hb{height:35.617086px;}
.he{height:35.860469px;}
.hc{height:37.399182px;}
.h2{height:39.366211px;}
.h7{height:39.366343px;}
.ha{height:39.366559px;}
.hd{height:40.535623px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h0{height:1020.000000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x7{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:101.162109px;}
.x8{left:123.662109px;}
.xb{left:144.351562px;}
.x6{left:160.787109px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
.xc{left:353.162109px;}
.xa{left:362.162109px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.256008pt;}
.ls5{letter-spacing:0.820828pt;}
.ls6{letter-spacing:1.280039pt;}
.ls1{letter-spacing:1.296000pt;}
.ls3{letter-spacing:1.312000pt;}
.ls7{letter-spacing:1.322707pt;}
.ls4{letter-spacing:855.839111pt;}
.ws7{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-13.296000pt;}
.ws6{word-spacing:-12.843058pt;}
.ws5{word-spacing:-12.631633pt;}
.ws8{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:-9.341234pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-6.375613pt;}
._13{margin-left:-5.482418pt;}
._4{margin-left:-4.569688pt;}
._5{margin-left:-3.427266pt;}
._3{margin-left:-1.958438pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.460961pt;}
._8{width:4.866593pt;}
._6{width:6.115484pt;}
._c{width:7.189590pt;}
._9{width:8.976000pt;}
._a{width:10.011039pt;}
._b{width:11.509519pt;}
._10{width:12.403849pt;}
._d{width:14.869484pt;}
._e{width:15.867144pt;}
._f{width:21.871662pt;}
._11{width:102.831524pt;}
._12{width:210.450301pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:49.492187pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:41.541662pt;}
.y23{bottom:52.458331pt;}
.y22{bottom:63.380208pt;}
.y20{bottom:143.062491pt;}
.y1f{bottom:159.864579pt;}
.y43{bottom:161.276041pt;}
.y1e{bottom:176.661429pt;}
.y42{bottom:188.526041pt;}
.y1d{bottom:193.463517pt;}
.y1c{bottom:210.260397pt;}
.y5d{bottom:215.005208pt;}
.y1b{bottom:227.062485pt;}
.y5c{bottom:229.942700pt;}
.y41{bottom:237.958333pt;}
.y5b{bottom:244.874996pt;}
.y1a{bottom:255.864573pt;}
.y5a{bottom:259.807291pt;}
.y40{bottom:265.203125pt;}
.y19{bottom:272.661453pt;}
.y59{bottom:274.739587pt;}
.y18{bottom:289.463536pt;}
.y58{bottom:289.796878pt;}
.y57{bottom:304.859375pt;}
.y17{bottom:306.260416pt;}
.y3f{bottom:314.635412pt;}
.y16{bottom:323.062491pt;}
.y5e{bottom:327.796875pt;}
.y56{bottom:329.796875pt;}
.y3e{bottom:331.437500pt;}
.y15{bottom:339.864579pt;}
.y14{bottom:356.661453pt;}
.y3d{bottom:358.687500pt;}
.y55{bottom:371.317708pt;}
.y13{bottom:373.463541pt;}
.y12{bottom:390.260412pt;}
.y11{bottom:407.062496pt;}
.y3c{bottom:408.114555pt;}
.y54{bottom:420.536459pt;}
.y10{bottom:423.864584pt;}
.y3b{bottom:424.916643pt;}
.y53{bottom:436.500000pt;}
.y3a{bottom:441.713523pt;}
.yf{bottom:451.109375pt;}
.y52{bottom:452.458331pt;}
.y39{bottom:458.515611pt;}
.y51{bottom:468.416667pt;}
.y38{bottom:475.317699pt;}
.y50{bottom:484.380208pt;}
.y37{bottom:492.114579pt;}
.y4f{bottom:500.338539pt;}
.y70{bottom:504.838541pt;}
.ye{bottom:512.531247pt;}
.y4e{bottom:516.296875pt;}
.y6f{bottom:519.770830pt;}
.y36{bottom:520.916589pt;}
.yd{bottom:527.468745pt;}
.y6e{bottom:534.703118pt;}
.y35{bottom:537.713469pt;}
.yc{bottom:546.401041pt;}
.y6d{bottom:549.635413pt;}
.y4d{bottom:549.640625pt;}
.y34{bottom:554.515557pt;}
.y6c{bottom:564.567709pt;}
.yb{bottom:569.333333pt;}
.y33{bottom:571.317645pt;}
.y6b{bottom:579.505210pt;}
.y32{bottom:588.114525pt;}
.y6a{bottom:594.562501pt;}
.y4c{bottom:597.375000pt;}
.y31{bottom:604.916613pt;}
.y69{bottom:609.619792pt;}
.ya{bottom:614.005221pt;}
.y30{bottom:621.713493pt;}
.y4b{bottom:622.927083pt;}
.y9{bottom:625.765634pt;}
.y72{bottom:632.562500pt;}
.y68{bottom:634.562500pt;}
.y8{bottom:637.526046pt;}
.y2f{bottom:638.515581pt;}
.y7{bottom:649.281251pt;}
.y2e{bottom:655.317669pt;}
.y6{bottom:667.911459pt;}
.y67{bottom:669.838541pt;}
.y21{bottom:671.911459pt;}
.y2d{bottom:672.114549pt;}
.y4a{bottom:672.354163pt;}
.y66{bottom:684.776038pt;}
.y2c{bottom:688.916637pt;}
.y49{bottom:689.156251pt;}
.y65{bottom:699.708326pt;}
.y5{bottom:705.520828pt;}
.y2b{bottom:705.713517pt;}
.y64{bottom:714.640621pt;}
.y48{bottom:716.406251pt;}
.y2a{bottom:722.515605pt;}
.y63{bottom:729.572917pt;}
.y4{bottom:738.906251pt;}
.y29{bottom:739.317693pt;}
.y62{bottom:744.505212pt;}
.y28{bottom:756.114573pt;}
.y61{bottom:759.567709pt;}
.y47{bottom:765.838536pt;}
.y27{bottom:772.916661pt;}
.y60{bottom:774.625000pt;}
.y46{bottom:782.635416pt;}
.y71{bottom:797.567708pt;}
.y3{bottom:799.447917pt;}
.y5f{bottom:799.567708pt;}
.y26{bottom:801.713537pt;}
.y45{bottom:809.885416pt;}
.y25{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y44{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.hb{height:31.659632pt;}
.he{height:31.875972pt;}
.hc{height:33.243717pt;}
.h2{height:34.992188pt;}
.h7{height:34.992305pt;}
.ha{height:34.992497pt;}
.hd{height:36.031665pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h0{height:906.666667pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x7{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:89.921875pt;}
.x8{left:109.921874pt;}
.xb{left:128.312500pt;}
.x6{left:142.921875pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
.xc{left:313.921875pt;}
.xa{left:321.921875pt;}
}




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