
    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_cb8a951cbcdb4b1f53ac2337.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026367;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_5cc42559ca94de3b044b0b32.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981445;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_9f718218f3c4e72e858b635d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_825e8d3cadb25328c4347c1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_96d92e4d56c8d6447c288341.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968262;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_b3561e320d022a30b267860e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963379;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_0e6b6db57bcfa86769924970.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.022461;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_257f8b7816309ed868bf0837.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963379;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:ff9;src:url('chunks/assets/font_03dc1ee2762f1521538c2b32.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963379;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.m2{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:-13.164000px;}
.ls6{letter-spacing:-1.324800px;}
.ls5{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.390000px;}
.ls0{letter-spacing:-0.300000px;}
.ls4{letter-spacing:-0.255000px;}
.ls1{letter-spacing:0.000000px;}
.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;}
}
.ws8{word-spacing:-14.640000px;}
.ws0{word-spacing:-14.280000px;}
.ws1{word-spacing:-8.735400px;}
.ws5{word-spacing:-1.428000px;}
.ws9{word-spacing:-0.276000px;}
.ws6{word-spacing:-0.030000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.078000px;}
.wsc{word-spacing:0.090000px;}
.ws10{word-spacing:0.120000px;}
.wsb{word-spacing:0.276000px;}
.wsf{word-spacing:0.282000px;}
.ws3{word-spacing:0.300000px;}
.ws11{word-spacing:0.306000px;}
.wsd{word-spacing:0.318000px;}
.wse{word-spacing:0.324000px;}
.ws7{word-spacing:36.900000px;}
.ws4{word-spacing:36.918000px;}
._9{margin-left:-12.906000px;}
._4{margin-left:-7.194000px;}
._1{margin-left:-3.822000px;}
._3{margin-left:-2.748000px;}
._0{margin-left:-1.254000px;}
._2{width:1.152000px;}
._8{width:4.500000px;}
._6{width:30.368327px;}
._5{width:55.715327px;}
._7{width:116.180327px;}
.fc4{color:rgb(141,14,87);}
.fc2{color:rgb(157,22,86);}
.fc1{color:rgb(237,25,45);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:114.000000px;}
.fs4{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:38.863500px;}
.y23{bottom:41.688600px;}
.y4b{bottom:44.867700px;}
.y56{bottom:48.870600px;}
.y24{bottom:59.868000px;}
.y22{bottom:61.188600px;}
.y4a{bottom:74.371650px;}
.y49{bottom:150.285450px;}
.yc{bottom:160.669950px;}
.y55{bottom:167.040600px;}
.y48{bottom:171.285450px;}
.yb{bottom:180.169950px;}
.y54{bottom:188.040600px;}
.y47{bottom:192.285450px;}
.ya{bottom:199.669950px;}
.y46{bottom:213.285450px;}
.y53{bottom:217.545600px;}
.y9{bottom:219.169950px;}
.y52{bottom:238.545600px;}
.y8{bottom:238.669950px;}
.y45{bottom:242.790450px;}
.yf{bottom:253.912650px;}
.y7{bottom:258.169950px;}
.y51{bottom:259.545600px;}
.y44{bottom:263.790450px;}
.ye{bottom:274.912650px;}
.y6{bottom:277.669950px;}
.y50{bottom:280.545600px;}
.y43{bottom:284.790450px;}
.yd{bottom:295.912650px;}
.y5{bottom:297.169950px;}
.y42{bottom:305.790450px;}
.y4f{bottom:310.050600px;}
.y4e{bottom:331.050600px;}
.y41{bottom:335.295450px;}
.y27{bottom:336.314100px;}
.y28{bottom:336.393300px;}
.y40{bottom:356.295000px;}
.y4d{bottom:360.555600px;}
.y3f{bottom:377.295000px;}
.y4{bottom:379.720200px;}
.y4c{bottom:381.555600px;}
.y3{bottom:400.720200px;}
.y3e{bottom:406.798500px;}
.y26{bottom:443.917800px;}
.y2{bottom:486.548850px;}
.y3d{bottom:493.156500px;}
.y1{bottom:507.548850px;}
.y3c{bottom:531.166500px;}
.y3b{bottom:552.166500px;}
.y1b{bottom:575.831400px;}
.y3a{bottom:581.670300px;}
.y1a{bottom:596.831400px;}
.y19{bottom:634.841400px;}
.y18{bottom:655.841400px;}
.y39{bottom:665.359800px;}
.y17{bottom:676.841400px;}
.y38{bottom:686.359800px;}
.y16{bottom:706.345350px;}
.y37{bottom:724.369800px;}
.y36{bottom:745.369800px;}
.y35{bottom:766.369800px;}
.y15{bottom:780.369150px;}
.y34{bottom:804.379800px;}
.y14{bottom:810.549000px;}
.y33{bottom:825.379800px;}
.y13{bottom:840.052500px;}
.y32{bottom:846.379800px;}
.y31{bottom:867.379800px;}
.y12{bottom:869.556000px;}
.y30{bottom:896.883750px;}
.y11{bottom:898.386000px;}
.y10{bottom:919.386000px;}
.y21{bottom:959.104200px;}
.y2f{bottom:980.023950px;}
.y2e{bottom:1001.023950px;}
.y20{bottom:1011.368100px;}
.y2d{bottom:1039.033950px;}
.y2c{bottom:1077.043950px;}
.y2b{bottom:1115.053950px;}
.y1f{bottom:1124.415300px;}
.y2a{bottom:1136.053950px;}
.y1e{bottom:1144.293300px;}
.y1d{bottom:1164.171300px;}
.y29{bottom:1165.557900px;}
.y1c{bottom:1184.049150px;}
.hb{height:32.990625px;}
.h6{height:38.772949px;}
.h9{height:41.053711px;}
.h3{height:45.615234px;}
.h5{height:47.783203px;}
.h2{height:47.812500px;}
.hc{height:47.814300px;}
.ha{height:49.500000px;}
.h4{height:62.118164px;}
.h7{height:90.843750px;}
.h8{height:136.845703px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:63.437400px;}
.x11{left:68.031450px;}
.x13{left:72.665550px;}
.x10{left:76.194000px;}
.x3{left:157.396650px;}
.x2{left:163.591650px;}
.x15{left:336.412350px;}
.x1{left:355.517850px;}
.x12{left:370.671300px;}
.x19{left:456.029100px;}
.x1a{left:463.534200px;}
.xc{left:494.627250px;}
.xd{left:499.952250px;}
.x14{left:510.148500px;}
.xe{left:531.962250px;}
.x17{left:539.102400px;}
.x4{left:563.594250px;}
.x5{left:566.084250px;}
.x16{left:597.262500px;}
.x9{left:680.616150px;}
.x8{left:684.681150px;}
.x7{left:689.601150px;}
.xa{left:692.091150px;}
.x18{left:693.344850px;}
.xb{left:709.311150px;}
.x6{left:711.321150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-11.701333pt;}
.ls6{letter-spacing:-1.177600pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.346667pt;}
.ls0{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:-0.226667pt;}
.ls1{letter-spacing:0.000000pt;}
.ws8{word-spacing:-13.013333pt;}
.ws0{word-spacing:-12.693333pt;}
.ws1{word-spacing:-7.764800pt;}
.ws5{word-spacing:-1.269333pt;}
.ws9{word-spacing:-0.245333pt;}
.ws6{word-spacing:-0.026667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.069333pt;}
.wsc{word-spacing:0.080000pt;}
.ws10{word-spacing:0.106667pt;}
.wsb{word-spacing:0.245333pt;}
.wsf{word-spacing:0.250667pt;}
.ws3{word-spacing:0.266667pt;}
.ws11{word-spacing:0.272000pt;}
.wsd{word-spacing:0.282667pt;}
.wse{word-spacing:0.288000pt;}
.ws7{word-spacing:32.800000pt;}
.ws4{word-spacing:32.816000pt;}
._9{margin-left:-11.472000pt;}
._4{margin-left:-6.394667pt;}
._1{margin-left:-3.397333pt;}
._3{margin-left:-2.442667pt;}
._0{margin-left:-1.114667pt;}
._2{width:1.024000pt;}
._8{width:4.000000pt;}
._6{width:26.994068pt;}
._5{width:49.524735pt;}
._7{width:103.271401pt;}
.fs7{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:101.333333pt;}
.fs4{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:34.545333pt;}
.y23{bottom:37.056533pt;}
.y4b{bottom:39.882400pt;}
.y56{bottom:43.440533pt;}
.y24{bottom:53.216000pt;}
.y22{bottom:54.389867pt;}
.y4a{bottom:66.108133pt;}
.y49{bottom:133.587067pt;}
.yc{bottom:142.817733pt;}
.y55{bottom:148.480533pt;}
.y48{bottom:152.253733pt;}
.yb{bottom:160.151067pt;}
.y54{bottom:167.147200pt;}
.y47{bottom:170.920400pt;}
.ya{bottom:177.484400pt;}
.y46{bottom:189.587067pt;}
.y53{bottom:193.373867pt;}
.y9{bottom:194.817733pt;}
.y52{bottom:212.040533pt;}
.y8{bottom:212.151067pt;}
.y45{bottom:215.813733pt;}
.yf{bottom:225.700133pt;}
.y7{bottom:229.484400pt;}
.y51{bottom:230.707200pt;}
.y44{bottom:234.480400pt;}
.ye{bottom:244.366800pt;}
.y6{bottom:246.817733pt;}
.y50{bottom:249.373867pt;}
.y43{bottom:253.147067pt;}
.yd{bottom:263.033467pt;}
.y5{bottom:264.151067pt;}
.y42{bottom:271.813733pt;}
.y4f{bottom:275.600533pt;}
.y4e{bottom:294.267200pt;}
.y41{bottom:298.040400pt;}
.y27{bottom:298.945867pt;}
.y28{bottom:299.016267pt;}
.y40{bottom:316.706667pt;}
.y4d{bottom:320.493867pt;}
.y3f{bottom:335.373333pt;}
.y4{bottom:337.529067pt;}
.y4c{bottom:339.160533pt;}
.y3{bottom:356.195733pt;}
.y3e{bottom:361.598667pt;}
.y26{bottom:394.593600pt;}
.y2{bottom:432.487867pt;}
.y3d{bottom:438.361333pt;}
.y1{bottom:451.154533pt;}
.y3c{bottom:472.148000pt;}
.y3b{bottom:490.814667pt;}
.y1b{bottom:511.850133pt;}
.y3a{bottom:517.040267pt;}
.y1a{bottom:530.516800pt;}
.y19{bottom:564.303467pt;}
.y18{bottom:582.970133pt;}
.y39{bottom:591.430933pt;}
.y17{bottom:601.636800pt;}
.y38{bottom:610.097600pt;}
.y16{bottom:627.862533pt;}
.y37{bottom:643.884267pt;}
.y36{bottom:662.550933pt;}
.y35{bottom:681.217600pt;}
.y15{bottom:693.661467pt;}
.y34{bottom:715.004267pt;}
.y14{bottom:720.488000pt;}
.y33{bottom:733.670933pt;}
.y13{bottom:746.713333pt;}
.y32{bottom:752.337600pt;}
.y31{bottom:771.004267pt;}
.y12{bottom:772.938667pt;}
.y30{bottom:797.230000pt;}
.y11{bottom:798.565333pt;}
.y10{bottom:817.232000pt;}
.y21{bottom:852.537067pt;}
.y2f{bottom:871.132400pt;}
.y2e{bottom:889.799067pt;}
.y20{bottom:898.993867pt;}
.y2d{bottom:923.585733pt;}
.y2c{bottom:957.372400pt;}
.y2b{bottom:991.159067pt;}
.y1f{bottom:999.480267pt;}
.y2a{bottom:1009.825733pt;}
.y1e{bottom:1017.149600pt;}
.y1d{bottom:1034.818933pt;}
.y29{bottom:1036.051467pt;}
.y1c{bottom:1052.488133pt;}
.hb{height:29.325000pt;}
.h6{height:34.464844pt;}
.h9{height:36.492188pt;}
.h3{height:40.546875pt;}
.h5{height:42.473958pt;}
.h2{height:42.500000pt;}
.hc{height:42.501600pt;}
.ha{height:44.000000pt;}
.h4{height:55.216146pt;}
.h7{height:80.750000pt;}
.h8{height:121.640625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:56.388800pt;}
.x11{left:60.472400pt;}
.x13{left:64.591600pt;}
.x10{left:67.728000pt;}
.x3{left:139.908133pt;}
.x2{left:145.414800pt;}
.x15{left:299.033200pt;}
.x1{left:316.015867pt;}
.x12{left:329.485600pt;}
.x19{left:405.359200pt;}
.x1a{left:412.030400pt;}
.xc{left:439.668667pt;}
.xd{left:444.402000pt;}
.x14{left:453.465333pt;}
.xe{left:472.855333pt;}
.x17{left:479.202133pt;}
.x4{left:500.972667pt;}
.x5{left:503.186000pt;}
.x16{left:530.900000pt;}
.x9{left:604.992133pt;}
.x8{left:608.605467pt;}
.x7{left:612.978800pt;}
.xa{left:615.192133pt;}
.x18{left:616.306533pt;}
.xb{left:630.498800pt;}
.x6{left:632.285467pt;}
}




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