
    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_1190150182d992cd2ff348c1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.875488;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_a08f1275bdee43e3ad32bcf7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.854980;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_1225e82e6229c8ed8ecde4b0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.926758;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_0ff434689b520587d47345e5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50b9f901799c82bf3cd09ecd.woff')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_567043311280d080ebf300f1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.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:ff7;src:url('chunks/assets/font_7d7bc9c593ab8d4d45627fd6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_c18701ae6632eb0b4c6006c7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.062000;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);}
.v2{vertical-align:-10.224486px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:49.610216px;}
.v1{vertical-align:91.671843px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012645px;}
.ls5{letter-spacing:107.966423px;}
.ls4{letter-spacing:107.986253px;}
.ls3{letter-spacing:107.991840px;}
.ls6{letter-spacing:107.997514px;}
.ls1{letter-spacing:108.000426px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-29.916001px;}
.ws8{word-spacing:-28.254000px;}
.ws4{word-spacing:-26.592002px;}
.ws6{word-spacing:-21.522900px;}
.ws7{word-spacing:-16.620000px;}
.ws0{word-spacing:-15.789001px;}
.ws3{word-spacing:-0.075600px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:2376.519781px;}
._3{margin-left:-5.076000px;}
._2{margin-left:-3.444000px;}
._0{margin-left:-2.280000px;}
._1{margin-left:-1.176191px;}
._4{width:1.524000px;}
._5{width:53.608817px;}
._6{width:61.918686px;}
._7{width:107.998100px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,151,167);}
.fc7{color:rgb(102,102,102);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(238,238,238);}
.fc1{color:rgb(239,239,239);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000003px;}
.fs3{font-size:57.000003px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:75.600002px;}
.fsb{font-size:77.699999px;}
.fs9{font-size:96.000006px;}
.fsa{font-size:99.899999px;}
.fsc{font-size:102.000000px;}
.fs5{font-size:108.000003px;}
.fs2{font-size:129.000001px;}
.fs4{font-size:162.000005px;}
.fs1{font-size:167.999999px;}
.fsd{font-size:194.399993px;}
.fse{font-size:216.000007px;}
.fs0{font-size:312.000022px;}
.y0{bottom:0.000000px;}
.y3b{bottom:7.630485px;}
.y13{bottom:8.252238px;}
.y8{bottom:15.490612px;}
.y50{bottom:15.679691px;}
.y12{bottom:22.652239px;}
.y14{bottom:28.082245px;}
.y4d{bottom:30.638367px;}
.y4f{bottom:33.679692px;}
.y7{bottom:35.155613px;}
.y11{bottom:86.495890px;}
.y2c{bottom:90.109603px;}
.y1c{bottom:91.175867px;}
.y6{bottom:96.267820px;}
.y3a{bottom:98.375924px;}
.y4c{bottom:99.951003px;}
.y2b{bottom:113.923604px;}
.y1b{bottom:125.195891px;}
.y10{bottom:128.615891px;}
.y2a{bottom:137.737605px;}
.y39{bottom:140.495936px;}
.y5{bottom:142.227818px;}
.y4b{bottom:148.901948px;}
.y29{bottom:161.551606px;}
.y33{bottom:163.813103px;}
.y4a{bottom:173.377426px;}
.y1a{bottom:177.215915px;}
.y38{bottom:182.615938px;}
.yf{bottom:188.735927px;}
.y4{bottom:190.059827px;}
.y58{bottom:190.445904px;}
.y21{bottom:192.335915px;}
.y32{bottom:201.253105px;}
.y28{bottom:209.179607px;}
.y19{bottom:211.235927px;}
.y41{bottom:220.967065px;}
.y49{bottom:222.328428px;}
.y37{bottom:224.735928px;}
.y57{bottom:225.635905px;}
.y3{bottom:230.379820px;}
.ye{bottom:230.855905px;}
.y31{bottom:238.693106px;}
.y20{bottom:240.935917px;}
.y5b{bottom:248.165297px;}
.y27{bottom:256.807598px;}
.y40{bottom:259.928055px;}
.y56{bottom:260.825906px;}
.y18{bottom:263.255918px;}
.y36{bottom:266.855907px;}
.y48{bottom:271.279418px;}
.yd{bottom:272.975896px;}
.y30{bottom:276.133107px;}
.y26{bottom:280.621598px;}
.y1f{bottom:289.535919px;}
.y47{bottom:295.754919px;}
.y55{bottom:296.015908px;}
.y17{bottom:297.275896px;}
.y3f{bottom:298.889034px;}
.y2{bottom:305.969998px;}
.y35{bottom:308.975897px;}
.y2f{bottom:313.573108px;}
.y46{bottom:320.230408px;}
.y25{bottom:328.249594px;}
.y54{bottom:331.205909px;}
.yc{bottom:333.095891px;}
.y3e{bottom:337.850046px;}
.y1e{bottom:338.135903px;}
.y45{bottom:344.705909px;}
.y5a{bottom:346.190459px;}
.y16{bottom:349.295898px;}
.y34{bottom:351.095891px;}
.y24{bottom:352.063594px;}
.y53{bottom:366.395910px;}
.y2e{bottom:369.013104px;}
.y44{bottom:369.181405px;}
.y3d{bottom:376.811048px;}
.y15{bottom:383.315899px;}
.y1d{bottom:386.735899px;}
.yb{bottom:393.215899px;}
.y1{bottom:399.569990px;}
.y23{bottom:399.691593px;}
.y52{bottom:401.585908px;}
.y59{bottom:404.510450px;}
.y2d{bottom:406.453100px;}
.y3c{bottom:415.772040px;}
.y43{bottom:418.132400px;}
.y22{bottom:423.505594px;}
.ya{bottom:435.335901px;}
.y51{bottom:436.775903px;}
.y42{bottom:442.607901px;}
.y9{bottom:505.932990px;}
.y4e{bottom:548.033387px;}
.h7{height:34.945315px;}
.h4{height:41.664553px;}
.h8{height:43.681641px;}
.hd{height:47.167969px;}
.h9{height:59.431643px;}
.hf{height:61.082519px;}
.ha{height:65.167202px;}
.hb{height:75.468755px;}
.he{height:78.534667px;}
.h11{height:80.185547px;}
.h6{height:84.902346px;}
.h3{height:85.979005px;}
.h10{height:93.291857px;}
.h5{height:107.973636px;}
.h2{height:111.972656px;}
.h12{height:129.568355px;}
.hc{height:138.839812px;}
.h13{height:143.964848px;}
.h1{height:207.949233px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:46.939963px;}
.xa{left:57.631857px;}
.xf{left:62.526404px;}
.x1a{left:64.020940px;}
.xb{left:100.939964px;}
.x1{left:118.764066px;}
.x3{left:174.591557px;}
.x6{left:182.097040px;}
.x1b{left:204.702430px;}
.x4{left:212.392424px;}
.x5{left:240.135341px;}
.x13{left:246.463864px;}
.x14{left:288.540369px;}
.x1d{left:390.962836px;}
.x2{left:399.588633px;}
.x1c{left:449.257256px;}
.x10{left:580.880944px;}
.x11{left:593.388381px;}
.x7{left:676.274811px;}
.x18{left:683.826022px;}
.x19{left:697.816665px;}
.xd{left:733.354011px;}
.xc{left:736.898303px;}
.x15{left:758.747851px;}
.x12{left:762.913712px;}
.x8{left:795.005744px;}
.x16{left:806.590893px;}
.x17{left:1038.688064px;}
.xe{left:1047.027099px;}
@media print{
.v2{vertical-align:-9.088432pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:44.097969pt;}
.v1{vertical-align:81.486083pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011240pt;}
.ls5{letter-spacing:95.970153pt;}
.ls4{letter-spacing:95.987780pt;}
.ls3{letter-spacing:95.992747pt;}
.ls6{letter-spacing:95.997790pt;}
.ls1{letter-spacing:96.000379pt;}
.ws2{word-spacing:-26.592001pt;}
.ws8{word-spacing:-25.114667pt;}
.ws4{word-spacing:-23.637335pt;}
.ws6{word-spacing:-19.131467pt;}
.ws7{word-spacing:-14.773333pt;}
.ws0{word-spacing:-14.034667pt;}
.ws3{word-spacing:-0.067200pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:2112.462028pt;}
._3{margin-left:-4.512000pt;}
._2{margin-left:-3.061333pt;}
._0{margin-left:-2.026667pt;}
._1{margin-left:-1.045503pt;}
._4{width:1.354667pt;}
._5{width:47.652282pt;}
._6{width:55.038832pt;}
._7{width:95.998311pt;}
.fs6{font-size:42.666669pt;}
.fs3{font-size:50.666670pt;}
.fs7{font-size:53.333334pt;}
.fs8{font-size:67.200002pt;}
.fsb{font-size:69.066666pt;}
.fs9{font-size:85.333339pt;}
.fsa{font-size:88.799999pt;}
.fsc{font-size:90.666667pt;}
.fs5{font-size:96.000003pt;}
.fs2{font-size:114.666668pt;}
.fs4{font-size:144.000005pt;}
.fs1{font-size:149.333333pt;}
.fsd{font-size:172.799994pt;}
.fse{font-size:192.000006pt;}
.fs0{font-size:277.333353pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:6.782653pt;}
.y13{bottom:7.335323pt;}
.y8{bottom:13.769433pt;}
.y50{bottom:13.937503pt;}
.y12{bottom:20.135323pt;}
.y14{bottom:24.961996pt;}
.y4d{bottom:27.234104pt;}
.y4f{bottom:29.937504pt;}
.y7{bottom:31.249434pt;}
.y11{bottom:76.885235pt;}
.y2c{bottom:80.097425pt;}
.y1c{bottom:81.045215pt;}
.y6{bottom:85.571395pt;}
.y3a{bottom:87.445266pt;}
.y4c{bottom:88.845336pt;}
.y2b{bottom:101.265426pt;}
.y1b{bottom:111.285236pt;}
.y10{bottom:114.325236pt;}
.y2a{bottom:122.433427pt;}
.y39{bottom:124.885277pt;}
.y5{bottom:126.424727pt;}
.y4b{bottom:132.357287pt;}
.y29{bottom:143.601427pt;}
.y33{bottom:145.611647pt;}
.y4a{bottom:154.113268pt;}
.y1a{bottom:157.525258pt;}
.y38{bottom:162.325278pt;}
.yf{bottom:167.765268pt;}
.y4{bottom:168.942068pt;}
.y58{bottom:169.285248pt;}
.y21{bottom:170.965258pt;}
.y32{bottom:178.891648pt;}
.y28{bottom:185.937429pt;}
.y19{bottom:187.765269pt;}
.y41{bottom:196.415169pt;}
.y49{bottom:197.625269pt;}
.y37{bottom:199.765269pt;}
.y57{bottom:200.565249pt;}
.y3{bottom:204.782062pt;}
.ye{bottom:205.205249pt;}
.y31{bottom:212.171650pt;}
.y20{bottom:214.165260pt;}
.y5b{bottom:220.591375pt;}
.y27{bottom:228.273420pt;}
.y40{bottom:231.047160pt;}
.y56{bottom:231.845250pt;}
.y18{bottom:234.005260pt;}
.y36{bottom:237.205250pt;}
.y48{bottom:241.137260pt;}
.yd{bottom:242.645240pt;}
.y30{bottom:245.451651pt;}
.y26{bottom:249.441421pt;}
.y1f{bottom:257.365261pt;}
.y47{bottom:262.893261pt;}
.y55{bottom:263.125251pt;}
.y17{bottom:264.245241pt;}
.y3f{bottom:265.679141pt;}
.y2{bottom:271.973331pt;}
.y35{bottom:274.645242pt;}
.y2f{bottom:278.731652pt;}
.y46{bottom:284.649252pt;}
.y25{bottom:291.777417pt;}
.y54{bottom:294.405252pt;}
.yc{bottom:296.085236pt;}
.y3e{bottom:300.311152pt;}
.y1e{bottom:300.565247pt;}
.y45{bottom:306.405253pt;}
.y5a{bottom:307.724853pt;}
.y16{bottom:310.485243pt;}
.y34{bottom:312.085237pt;}
.y24{bottom:312.945417pt;}
.y53{bottom:325.685253pt;}
.y2e{bottom:328.011648pt;}
.y44{bottom:328.161249pt;}
.y3d{bottom:334.943153pt;}
.y15{bottom:340.725244pt;}
.y1d{bottom:343.765244pt;}
.yb{bottom:349.525244pt;}
.y1{bottom:355.173324pt;}
.y23{bottom:355.281416pt;}
.y52{bottom:356.965251pt;}
.y59{bottom:359.564844pt;}
.y2d{bottom:361.291644pt;}
.y3c{bottom:369.575147pt;}
.y43{bottom:371.673245pt;}
.y22{bottom:376.449417pt;}
.ya{bottom:386.965245pt;}
.y51{bottom:388.245247pt;}
.y42{bottom:393.429245pt;}
.y9{bottom:449.718213pt;}
.y4e{bottom:487.140788pt;}
.h7{height:31.062502pt;}
.h4{height:37.035158pt;}
.h8{height:38.828125pt;}
.hd{height:41.927084pt;}
.h9{height:52.828127pt;}
.hf{height:54.295573pt;}
.ha{height:57.926402pt;}
.hb{height:67.083338pt;}
.he{height:69.808593pt;}
.h11{height:71.276042pt;}
.h6{height:75.468752pt;}
.h3{height:76.425782pt;}
.h10{height:82.926095pt;}
.h5{height:95.976566pt;}
.h2{height:99.531250pt;}
.h12{height:115.171871pt;}
.hc{height:123.413166pt;}
.h13{height:127.968754pt;}
.h1{height:184.843763pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:41.724411pt;}
.xa{left:51.228318pt;}
.xf{left:55.579026pt;}
.x1a{left:56.907502pt;}
.xb{left:89.724413pt;}
.x1{left:105.568058pt;}
.x3{left:155.192495pt;}
.x6{left:161.864035pt;}
.x1b{left:181.957716pt;}
.x4{left:188.793266pt;}
.x5{left:213.453637pt;}
.x13{left:219.078990pt;}
.x14{left:256.480328pt;}
.x1d{left:347.522521pt;}
.x2{left:355.189896pt;}
.x1c{left:399.339783pt;}
.x10{left:516.338617pt;}
.x11{left:527.456339pt;}
.x7{left:601.133165pt;}
.x18{left:607.845352pt;}
.x19{left:620.281480pt;}
.xd{left:651.870232pt;}
.xc{left:655.020714pt;}
.x15{left:674.442535pt;}
.x12{left:678.145522pt;}
.x8{left:706.671773pt;}
.x16{left:716.969683pt;}
.x17{left:923.278280pt;}
.xe{left:930.690755pt;}
}




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