
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_ccecf84dce78de01482ec8c4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.141500;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_73f589651344d26b8e8d135d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_d3229f0ba23951d0dc5e8864.woff')format("woff");}.ff4{font-family:ff4;line-height:0.987000;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_50fccc796e47ba5bf0c5e706.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032000;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_54c0f8c7cc399905edc1e032.woff')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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_e03a1a9d36c1371370f77fed.woff')format("woff");}.ff7{font-family:ff7;line-height:0.987000;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:ff8;src:url('chunks/assets/font_611aafb5d251d633312982c1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.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;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006210px;}
.ls2{letter-spacing:0.025043px;}
.ls1{letter-spacing:0.064125px;}
.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:-101.259400px;}
.ws3{word-spacing:-20.348819px;}
.ws1{word-spacing:-17.975542px;}
.ws2{word-spacing:-13.826542px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-16.636267px;}
._16{margin-left:-14.743740px;}
._15{margin-left:-13.029726px;}
._6{margin-left:-6.163408px;}
._2{margin-left:-4.997228px;}
._5{margin-left:-3.730606px;}
._1{margin-left:-2.714490px;}
._0{margin-left:-1.448153px;}
._3{width:1.187269px;}
._c{width:2.204277px;}
._b{width:3.239857px;}
._f{width:4.720884px;}
._12{width:6.822492px;}
._13{width:7.918674px;}
._11{width:9.851963px;}
._9{width:10.878146px;}
._a{width:12.387865px;}
._14{width:14.156956px;}
._e{width:20.474397px;}
._d{width:22.193326px;}
._10{width:45.257920px;}
._7{width:97.327044px;}
._8{width:217.569542px;}
.fc3{color:transparent;}
.fc2{color:rgb(58,161,126);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:58.454997px;}
.fs5{font-size:59.984997px;}
.fs6{font-size:65.969996px;}
.fs3{font-size:71.999997px;}
.fs1{font-size:77.984997px;}
.fs2{font-size:83.745001px;}
.fs9{font-size:83.969997px;}
.fsa{font-size:89.999996px;}
.fs8{font-size:95.984996px;}
.fs4{font-size:107.999996px;}
.fs0{font-size:160.474485px;}
.y0{bottom:0.000000px;}
.y11{bottom:0.000008px;}
.y3d{bottom:5.666352px;}
.y17{bottom:12.374999px;}
.y10{bottom:13.499999px;}
.y7{bottom:13.500043px;}
.y22{bottom:13.500086px;}
.y5b{bottom:18.844271px;}
.y55{bottom:22.499999px;}
.y16{bottom:37.124998px;}
.y5a{bottom:39.094270px;}
.yf{bottom:40.499998px;}
.y6{bottom:40.500042px;}
.y21{bottom:40.500085px;}
.y59{bottom:59.344270px;}
.y15{bottom:61.874997px;}
.ye{bottom:67.499997px;}
.y5{bottom:67.500040px;}
.y20{bottom:67.500084px;}
.y58{bottom:79.594269px;}
.y27{bottom:86.624996px;}
.yd{bottom:94.499996px;}
.y4{bottom:94.500039px;}
.y1f{bottom:94.500082px;}
.y2{bottom:94.908078px;}
.y2f{bottom:106.637324px;}
.y26{bottom:111.374995px;}
.yc{bottom:121.499995px;}
.y1e{bottom:121.500081px;}
.y2e{bottom:126.887323px;}
.y25{bottom:136.124994px;}
.y2d{bottom:147.137322px;}
.yb{bottom:148.499994px;}
.y1d{bottom:148.500080px;}
.y24{bottom:160.874993px;}
.y2c{bottom:167.387321px;}
.ya{bottom:175.499993px;}
.y1c{bottom:175.500079px;}
.y2b{bottom:194.762620px;}
.y9{bottom:202.499992px;}
.y1b{bottom:202.500078px;}
.y1a{bottom:229.500077px;}
.y5f{bottom:245.762558px;}
.y5e{bottom:266.012557px;}
.y5d{bottom:286.262556px;}
.y5c{bottom:306.512555px;}
.y57{bottom:338.912554px;}
.y39{bottom:371.312553px;}
.y38{bottom:391.562552px;}
.y37{bottom:411.812551px;}
.y36{bottom:432.062550px;}
.y35{bottom:452.312549px;}
.y3b{bottom:479.912488px;}
.y53{bottom:531.812606px;}
.y52{bottom:558.812605px;}
.y51{bottom:585.812604px;}
.y50{bottom:612.812602px;}
.y4f{bottom:639.812601px;}
.y4e{bottom:666.812600px;}
.y4d{bottom:693.812599px;}
.y4c{bottom:720.812598px;}
.y4b{bottom:760.637596px;}
.y4a{bottom:813.962414px;}
.y49{bottom:840.962413px;}
.y48{bottom:867.962412px;}
.y47{bottom:894.962411px;}
.y46{bottom:921.962410px;}
.y45{bottom:955.834052px;}
.y8{bottom:999.248330px;}
.y44{bottom:1250.251652px;}
.y19{bottom:1290.095112px;}
.y23{bottom:1549.160259px;}
.y18{bottom:1743.282799px;}
.y14{bottom:1818.972796px;}
.y13{bottom:1913.891940px;}
.y12{bottom:2013.336024px;}
.y3{bottom:2039.671500px;}
.y3c{bottom:2167.019917px;}
.y54{bottom:2213.087830px;}
.y43{bottom:2296.787819px;}
.y42{bottom:2321.537818px;}
.y41{bottom:2346.287817px;}
.y40{bottom:2371.037816px;}
.y3f{bottom:2395.787815px;}
.y3e{bottom:2420.537814px;}
.y34{bottom:2466.659075px;}
.y33{bottom:2489.159074px;}
.y32{bottom:2511.659073px;}
.y31{bottom:2534.159072px;}
.y30{bottom:2556.659071px;}
.y3a{bottom:2586.487435px;}
.y1{bottom:2599.739899px;}
.y56{bottom:2621.025442px;}
.y2a{bottom:2665.167433px;}
.y29{bottom:2702.292432px;}
.y28{bottom:2739.417430px;}
.h14{height:24.839999px;}
.h11{height:54.304692px;}
.h12{height:55.532247px;}
.hf{height:55.726062px;}
.hb{height:59.471998px;}
.h10{height:61.286127px;}
.h17{height:62.999997px;}
.h16{height:66.887997px;}
.h9{height:67.499997px;}
.h5{height:72.448062px;}
.h18{height:74.339997px;}
.h8{height:77.799106px;}
.h15{height:78.008127px;}
.ha{height:86.624996px;}
.h13{height:89.170061px;}
.he{height:100.331996px;}
.h4{height:121.500038px;}
.h3{height:132.551925px;}
.h2{height:185.399992px;}
.hd{height:185.624992px;}
.h6{height:229.499990px;}
.hc{height:256.500076px;}
.h7{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w1{width:190.079992px;}
.w6{width:235.439990px;}
.w4{width:759.374968px;}
.w5{width:782.999967px;}
.w2{width:836.999965px;}
.w7{width:839.249965px;}
.w3{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x14{left:1.246827px;}
.x8{left:4.500000px;}
.xc{left:20.385588px;}
.xd{left:22.154880px;}
.x2{left:30.405703px;}
.x1{left:32.039999px;}
.x9{left:34.621547px;}
.x5{left:36.627460px;}
.x4{left:37.634764px;}
.x3{left:41.034033px;}
.x15{left:53.063814px;}
.x17{left:62.019631px;}
.x16{left:70.403379px;}
.x6{left:88.672997px;}
.xa{left:95.182192px;}
.x7{left:96.802347px;}
.x13{left:111.959995px;}
.x18{left:174.480461px;}
.x19{left:248.332666px;}
.xb{left:257.841047px;}
.xe{left:542.508069px;}
.xf{left:652.301033px;}
.x10{left:666.908455px;}
.x11{left:752.531504px;}
.x12{left:767.138919px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005520pt;}
.ls2{letter-spacing:0.022260pt;}
.ls1{letter-spacing:0.057000pt;}
.ws0{word-spacing:-90.008356pt;}
.ws3{word-spacing:-18.087839pt;}
.ws1{word-spacing:-15.978259pt;}
.ws2{word-spacing:-12.290259pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-14.787793pt;}
._16{margin-left:-13.105547pt;}
._15{margin-left:-11.581979pt;}
._6{margin-left:-5.478585pt;}
._2{margin-left:-4.441981pt;}
._5{margin-left:-3.316094pt;}
._1{margin-left:-2.412880pt;}
._0{margin-left:-1.287247pt;}
._3{width:1.055350pt;}
._c{width:1.959357pt;}
._b{width:2.879873pt;}
._f{width:4.196341pt;}
._12{width:6.064437pt;}
._13{width:7.038821pt;}
._11{width:8.757301pt;}
._9{width:9.669463pt;}
._a{width:11.011436pt;}
._14{width:12.583961pt;}
._e{width:18.199464pt;}
._d{width:19.727401pt;}
._10{width:40.229263pt;}
._7{width:86.512928pt;}
._8{width:193.395149pt;}
.fs7{font-size:51.959997pt;}
.fs5{font-size:53.319997pt;}
.fs6{font-size:58.639997pt;}
.fs3{font-size:63.999997pt;}
.fs1{font-size:69.319997pt;}
.fs2{font-size:74.440001pt;}
.fs9{font-size:74.639997pt;}
.fsa{font-size:79.999997pt;}
.fs8{font-size:85.319996pt;}
.fs4{font-size:95.999996pt;}
.fs0{font-size:142.643987pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:0.000007pt;}
.y3d{bottom:5.036758pt;}
.y17{bottom:11.000000pt;}
.y10{bottom:12.000000pt;}
.y7{bottom:12.000038pt;}
.y22{bottom:12.000076pt;}
.y5b{bottom:16.750463pt;}
.y55{bottom:19.999999pt;}
.y16{bottom:32.999999pt;}
.y5a{bottom:34.750463pt;}
.yf{bottom:35.999999pt;}
.y6{bottom:36.000037pt;}
.y21{bottom:36.000075pt;}
.y59{bottom:52.750462pt;}
.y15{bottom:54.999998pt;}
.ye{bottom:59.999998pt;}
.y5{bottom:60.000036pt;}
.y20{bottom:60.000074pt;}
.y58{bottom:70.750461pt;}
.y27{bottom:76.999997pt;}
.yd{bottom:83.999997pt;}
.y4{bottom:84.000035pt;}
.y1f{bottom:84.000073pt;}
.y2{bottom:84.362736pt;}
.y2f{bottom:94.788732pt;}
.y26{bottom:98.999996pt;}
.yc{bottom:107.999996pt;}
.y1e{bottom:108.000072pt;}
.y2e{bottom:112.788731pt;}
.y25{bottom:120.999995pt;}
.y2d{bottom:130.788731pt;}
.yb{bottom:131.999995pt;}
.y1d{bottom:132.000071pt;}
.y24{bottom:142.999994pt;}
.y2c{bottom:148.788730pt;}
.ya{bottom:155.999994pt;}
.y1c{bottom:156.000070pt;}
.y2b{bottom:173.122329pt;}
.y9{bottom:179.999993pt;}
.y1b{bottom:180.000069pt;}
.y1a{bottom:204.000068pt;}
.y5f{bottom:218.455607pt;}
.y5e{bottom:236.455606pt;}
.y5d{bottom:254.455605pt;}
.y5c{bottom:272.455605pt;}
.y57{bottom:301.255603pt;}
.y39{bottom:330.055602pt;}
.y38{bottom:348.055601pt;}
.y37{bottom:366.055601pt;}
.y36{bottom:384.055600pt;}
.y35{bottom:402.055599pt;}
.y3b{bottom:426.588878pt;}
.y53{bottom:472.722316pt;}
.y52{bottom:496.722315pt;}
.y51{bottom:520.722314pt;}
.y50{bottom:544.722313pt;}
.y4f{bottom:568.722312pt;}
.y4e{bottom:592.722311pt;}
.y4d{bottom:616.722310pt;}
.y4c{bottom:640.722309pt;}
.y4b{bottom:676.122308pt;}
.y4a{bottom:723.522146pt;}
.y49{bottom:747.522145pt;}
.y48{bottom:771.522144pt;}
.y47{bottom:795.522143pt;}
.y46{bottom:819.522142pt;}
.y45{bottom:849.630269pt;}
.y8{bottom:888.220738pt;}
.y44{bottom:1111.334802pt;}
.y19{bottom:1146.751210pt;}
.y23{bottom:1377.031341pt;}
.y18{bottom:1549.584710pt;}
.y14{bottom:1616.864707pt;}
.y13{bottom:1701.237280pt;}
.y12{bottom:1789.632021pt;}
.y3{bottom:1813.041333pt;}
.y3c{bottom:1926.239927pt;}
.y54{bottom:1967.189182pt;}
.y43{bottom:2041.589173pt;}
.y42{bottom:2063.589172pt;}
.y41{bottom:2085.589171pt;}
.y40{bottom:2107.589170pt;}
.y3f{bottom:2129.589169pt;}
.y3e{bottom:2151.589168pt;}
.y34{bottom:2192.585845pt;}
.y33{bottom:2212.585844pt;}
.y32{bottom:2232.585843pt;}
.y31{bottom:2252.585842pt;}
.y30{bottom:2272.585841pt;}
.y3a{bottom:2299.099943pt;}
.y1{bottom:2310.879911pt;}
.y56{bottom:2329.800393pt;}
.y2a{bottom:2369.037719pt;}
.y29{bottom:2402.037717pt;}
.y28{bottom:2435.037716pt;}
.h14{height:22.079999pt;}
.h11{height:48.270837pt;}
.h12{height:49.361997pt;}
.hf{height:49.534278pt;}
.hb{height:52.863998pt;}
.h10{height:54.476557pt;}
.h17{height:55.999998pt;}
.h16{height:59.455998pt;}
.h9{height:59.999998pt;}
.h5{height:64.398277pt;}
.h18{height:66.079997pt;}
.h8{height:69.154761pt;}
.h15{height:69.340557pt;}
.ha{height:76.999997pt;}
.h13{height:79.262277pt;}
.he{height:89.183996pt;}
.h4{height:108.000034pt;}
.h3{height:117.823933pt;}
.h2{height:164.799993pt;}
.hd{height:164.999993pt;}
.h6{height:203.999992pt;}
.hc{height:228.000067pt;}
.h7{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w1{width:168.959993pt;}
.w6{width:209.279991pt;}
.w4{width:674.999972pt;}
.w5{width:695.999971pt;}
.w2{width:743.999969pt;}
.w7{width:745.999969pt;}
.w3{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.108291pt;}
.x8{left:4.000000pt;}
.xc{left:18.120523pt;}
.xd{left:19.693227pt;}
.x2{left:27.027292pt;}
.x1{left:28.479999pt;}
.x9{left:30.774708pt;}
.x5{left:32.557743pt;}
.x4{left:33.453124pt;}
.x3{left:36.474696pt;}
.x15{left:47.167835pt;}
.x17{left:55.128561pt;}
.x16{left:62.580781pt;}
.x6{left:78.820442pt;}
.xa{left:84.606393pt;}
.x7{left:86.046531pt;}
.x13{left:99.519996pt;}
.x18{left:155.093744pt;}
.x19{left:220.740148pt;}
.xb{left:229.192042pt;}
.xe{left:482.229395pt;}
.xf{left:579.823141pt;}
.x10{left:592.807515pt;}
.x11{left:668.916892pt;}
.x12{left:681.901262pt;}
}




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