
    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_6726072678ff14fd445bd4ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_d4467e306ff512710b193e0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_50601c44e5d038471e054018.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_3247e225d4323ab0228f0a2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666016;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_2b9206c3517207ce8193c9db.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a620a2e38c2c69ca7291b1b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.004883;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_89e08688a2e6b711b24084c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.729000;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_17710d11fdad2c331e89acbc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_69424744ca031ae21e6ad5d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666016;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:ffa;src:url('chunks/assets/font_924875f92ab76ee4d9591395.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.755000;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws5{word-spacing:-58.046398px;}
.ws2{word-spacing:-47.162700px;}
.ws0{word-spacing:-36.279000px;}
.ws6{word-spacing:-0.110989px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:44.240676px;}
.ws7{word-spacing:44.240718px;}
.ws3{word-spacing:44.240856px;}
._7{margin-left:-12.136500px;}
._b{margin-left:-10.831500px;}
._9{margin-left:-8.947428px;}
._5{margin-left:-6.511950px;}
._a{margin-left:-4.384800px;}
._3{margin-left:-3.145050px;}
._1{margin-left:-2.088000px;}
._0{margin-left:-1.044000px;}
._2{width:1.044000px;}
._4{width:2.727450px;}
._6{width:4.202100px;}
._8{width:43.862928px;}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(68,147,248);}
.fc1{color:rgb(240,246,252);}
.fc0{color:rgb(206,231,255);}
.fs3{font-size:108.000000px;}
.fs5{font-size:110.924994px;}
.fs6{font-size:110.988744px;}
.fs2{font-size:130.500000px;}
.fs1{font-size:143.549994px;}
.fs4{font-size:169.650000px;}
.fs0{font-size:208.799994px;}
.y0{bottom:0.000000px;}
.y33{bottom:5.799462px;}
.y2e{bottom:6.549462px;}
.y9{bottom:37.500000px;}
.y17{bottom:85.481237px;}
.y16{bottom:152.418782px;}
.y8{bottom:170.906254px;}
.y54{bottom:171.375038px;}
.y3d{bottom:175.856232px;}
.y24{bottom:216.712514px;}
.y15{bottom:219.356278px;}
.y1d{bottom:223.181277px;}
.y35{bottom:224.662491px;}
.y53{bottom:233.343778px;}
.y3c{bottom:237.825009px;}
.y7{bottom:237.843750px;}
.y29{bottom:249.131241px;}
.y46{bottom:253.687500px;}
.y34{bottom:273.599991px;}
.y5b{bottom:281.118759px;}
.yd{bottom:281.156259px;}
.y14{bottom:281.325018px;}
.y23{bottom:283.650009px;}
.y6{bottom:286.781250px;}
.y2d{bottom:288.000000px;}
.y1c{bottom:290.118772px;}
.y3b{bottom:291.637500px;}
.y52{bottom:295.312519px;}
.y45{bottom:302.625000px;}
.y57{bottom:312.900014px;}
.y28{bottom:327.549462px;}
.y40{bottom:329.137482px;}
.y4c{bottom:330.243761px;}
.y22{bottom:332.587509px;}
.y5{bottom:335.718750px;}
.yc{bottom:343.125014px;}
.y13{bottom:343.293759px;}
.y32{bottom:346.500000px;}
.y5a{bottom:348.056259px;}
.y51{bottom:349.125009px;}
.y44{bottom:351.562500px;}
.y3a{bottom:353.606241px;}
.y1b{bottom:357.056268px;}
.y2c{bottom:367.968750px;}
.y56{bottom:379.837509px;}
.y21{bottom:381.525009px;}
.y49{bottom:382.087487px;}
.y4b{bottom:395.493759px;}
.y4{bottom:399.881232px;}
.y27{bottom:401.437500px;}
.y12{bottom:405.262500px;}
.y3f{bottom:408.600003px;}
.y50{bottom:411.093759px;}
.yb{bottom:414.937500px;}
.y59{bottom:414.993759px;}
.y39{bottom:415.574981px;}
.y1a{bottom:423.993764px;}
.y31{bottom:425.906250px;}
.y20{bottom:430.462509px;}
.y43{bottom:431.024987px;}
.y48{bottom:435.093739px;}
.y3{bottom:448.500000px;}
.y2b{bottom:455.137494px;}
.y3e{bottom:461.606254px;}
.y11{bottom:467.231273px;}
.y55{bottom:469.462509px;}
.y4f{bottom:473.062509px;}
.y38{bottom:477.543754px;}
.y1f{bottom:479.400009px;}
.y42{bottom:484.031239px;}
.y4a{bottom:484.087509px;}
.y47{bottom:488.099991px;}
.y26{bottom:488.606244px;}
.y19{bottom:490.931259px;}
.ya{bottom:501.187500px;}
.y58{bottom:501.243759px;}
.y2a{bottom:508.143746px;}
.y30{bottom:513.074994px;}
.y4e{bottom:535.031250px;}
.y41{bottom:537.037491px;}
.y10{bottom:539.043759px;}
.y25{bottom:541.612496px;}
.y2{bottom:546.206247px;}
.y37{bottom:561.881253px;}
.y1e{bottom:565.650009px;}
.y2f{bottom:566.081246px;}
.y18{bottom:577.181259px;}
.yf{bottom:605.981254px;}
.y1{bottom:611.456246px;}
.y36{bottom:614.887504px;}
.y4d{bottom:619.368747px;}
.ye{bottom:685.443753px;}
.ha{height:28.465500px;}
.h9{height:29.028000px;}
.h5{height:80.028000px;}
.h8{height:88.769318px;}
.h4{height:96.700500px;}
.h7{height:97.092000px;}
.h3{height:106.370546px;}
.h2{height:106.801196px;}
.h6{height:126.219600px;}
.h1{height:155.347196px;}
.h0{height:810.000000px;}
.w1{width:805.500000px;}
.w2{width:838.500000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:88.312500px;}
.x6{left:107.250000px;}
.x5{left:122.212485px;}
.x7{left:187.462497px;}
.x3{left:520.312500px;}
.x4{left:554.212485px;}
.x8{left:1376.212464px;}
.x2{left:1391.231232px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-51.596799pt;}
.ws2{word-spacing:-41.922400pt;}
.ws0{word-spacing:-32.248000pt;}
.ws6{word-spacing:-0.098657pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:39.325045pt;}
.ws7{word-spacing:39.325083pt;}
.ws3{word-spacing:39.325205pt;}
._7{margin-left:-10.788000pt;}
._b{margin-left:-9.628000pt;}
._9{margin-left:-7.953269pt;}
._5{margin-left:-5.788400pt;}
._a{margin-left:-3.897600pt;}
._3{margin-left:-2.795600pt;}
._1{margin-left:-1.856000pt;}
._0{margin-left:-0.928000pt;}
._2{width:0.928000pt;}
._4{width:2.424400pt;}
._6{width:3.735200pt;}
._8{width:38.989269pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:98.599995pt;}
.fs6{font-size:98.656661pt;}
.fs2{font-size:116.000000pt;}
.fs1{font-size:127.599995pt;}
.fs4{font-size:150.800000pt;}
.fs0{font-size:185.599995pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:5.155077pt;}
.y2e{bottom:5.821744pt;}
.y9{bottom:33.333333pt;}
.y17{bottom:75.983321pt;}
.y16{bottom:135.483362pt;}
.y8{bottom:151.916671pt;}
.y54{bottom:152.333367pt;}
.y3d{bottom:156.316651pt;}
.y24{bottom:192.633345pt;}
.y15{bottom:194.983358pt;}
.y1d{bottom:198.383357pt;}
.y35{bottom:199.699992pt;}
.y53{bottom:207.416692pt;}
.y3c{bottom:211.400008pt;}
.y7{bottom:211.416667pt;}
.y29{bottom:221.449992pt;}
.y46{bottom:225.500000pt;}
.y34{bottom:243.199992pt;}
.y5b{bottom:249.883341pt;}
.yd{bottom:249.916675pt;}
.y14{bottom:250.066683pt;}
.y23{bottom:252.133341pt;}
.y6{bottom:254.916667pt;}
.y2d{bottom:256.000000pt;}
.y1c{bottom:257.883353pt;}
.y3b{bottom:259.233333pt;}
.y52{bottom:262.500017pt;}
.y45{bottom:269.000000pt;}
.y57{bottom:278.133345pt;}
.y28{bottom:291.155077pt;}
.y40{bottom:292.566651pt;}
.y4c{bottom:293.550010pt;}
.y22{bottom:295.633341pt;}
.y5{bottom:298.416667pt;}
.yc{bottom:305.000012pt;}
.y13{bottom:305.150008pt;}
.y32{bottom:308.000000pt;}
.y5a{bottom:309.383341pt;}
.y51{bottom:310.333342pt;}
.y44{bottom:312.500000pt;}
.y3a{bottom:314.316658pt;}
.y1b{bottom:317.383349pt;}
.y2c{bottom:327.083333pt;}
.y56{bottom:337.633341pt;}
.y21{bottom:339.133341pt;}
.y49{bottom:339.633322pt;}
.y4b{bottom:351.550008pt;}
.y4{bottom:355.449984pt;}
.y27{bottom:356.833333pt;}
.y12{bottom:360.233333pt;}
.y3f{bottom:363.200002pt;}
.y50{bottom:365.416675pt;}
.yb{bottom:368.833333pt;}
.y59{bottom:368.883341pt;}
.y39{bottom:369.399983pt;}
.y1a{bottom:376.883345pt;}
.y31{bottom:378.583333pt;}
.y20{bottom:382.633341pt;}
.y43{bottom:383.133322pt;}
.y48{bottom:386.749990pt;}
.y3{bottom:398.666667pt;}
.y2b{bottom:404.566661pt;}
.y3e{bottom:410.316671pt;}
.y11{bottom:415.316687pt;}
.y55{bottom:417.300008pt;}
.y4f{bottom:420.500008pt;}
.y38{bottom:424.483337pt;}
.y1f{bottom:426.133341pt;}
.y42{bottom:430.249990pt;}
.y4a{bottom:430.300008pt;}
.y47{bottom:433.866659pt;}
.y26{bottom:434.316661pt;}
.y19{bottom:436.383341pt;}
.ya{bottom:445.500000pt;}
.y58{bottom:445.550008pt;}
.y2a{bottom:451.683329pt;}
.y30{bottom:456.066661pt;}
.y4e{bottom:475.583333pt;}
.y41{bottom:477.366659pt;}
.y10{bottom:479.150008pt;}
.y25{bottom:481.433329pt;}
.y2{bottom:485.516664pt;}
.y37{bottom:499.450002pt;}
.y1e{bottom:502.800008pt;}
.y2f{bottom:503.183329pt;}
.y18{bottom:513.050008pt;}
.yf{bottom:538.650004pt;}
.y1{bottom:543.516663pt;}
.y36{bottom:546.566671pt;}
.y4d{bottom:550.549997pt;}
.ye{bottom:609.283336pt;}
.ha{height:25.302667pt;}
.h9{height:25.802667pt;}
.h5{height:71.136000pt;}
.h8{height:78.906060pt;}
.h4{height:85.956000pt;}
.h7{height:86.304000pt;}
.h3{height:94.551596pt;}
.h2{height:94.934396pt;}
.h6{height:112.195200pt;}
.h1{height:138.086396pt;}
.h0{height:720.000000pt;}
.w1{width:716.000000pt;}
.w2{width:745.333333pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:78.500000pt;}
.x6{left:95.333333pt;}
.x5{left:108.633320pt;}
.x7{left:166.633331pt;}
.x3{left:462.500000pt;}
.x4{left:492.633320pt;}
.x8{left:1223.299968pt;}
.x2{left:1236.649984pt;}
}




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