
    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_38777646a7ccd35f37ee2b01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_4e594d002b0592f34bb07c38.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885254;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_c1d12880dffaeb7b7b84db5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_4e12325734bd7a2c898cd355.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_5ea193d0c8a97df4a5cf3c3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_9ee54770a7766850c53aab10.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_ef631261baf6b86aa60d0134.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_bbb5581e76c37961b0d4aef1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_03b1b1e27441e230720f20e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.ls3{letter-spacing:-0.570000px;}
.ls2{letter-spacing:-0.463800px;}
.ls1{letter-spacing:-0.460800px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.178800px;}
.ls8{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.440000px;}
.ls6{letter-spacing:21.421440px;}
.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:-83.520000px;}
.ws8{word-spacing:-21.058800px;}
.ws5{word-spacing:-20.880000px;}
.ws3{word-spacing:-14.987520px;}
.ws0{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.509440px;}
.ws2{word-spacing:-14.506440px;}
.ws4{word-spacing:-0.066384px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-4.236960px;}
._10{margin-left:-3.100320px;}
._4{margin-left:-2.077920px;}
._0{margin-left:-1.068480px;}
._1{width:1.244160px;}
._2{width:2.528640px;}
._5{width:3.674880px;}
._14{width:4.734720px;}
._3{width:5.773440px;}
._11{width:6.944640px;}
._12{width:8.017920px;}
._e{width:9.707040px;}
._6{width:11.432160px;}
._7{width:13.029120px;}
._f{width:14.366880px;}
._9{width:16.217280px;}
._8{width:17.421120px;}
._a{width:18.669600px;}
._18{width:19.670400px;}
._13{width:22.014720px;}
._b{width:23.218560px;}
._d{width:24.285600px;}
._c{width:25.388640px;}
._1c{width:26.988960px;}
._1a{width:28.087200px;}
._19{width:29.172960px;}
._1b{width:30.258720px;}
._1d{width:31.962240px;}
._1e{width:33.315840px;}
._21{width:38.995200px;}
._20{width:40.150080px;}
._23{width:48.008160px;}
._22{width:49.368960px;}
._17{width:51.456960px;}
._16{width:53.166240px;}
._15{width:54.444960px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:66.384000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.076000px;}
.y9{bottom:57.240000px;}
.y8{bottom:73.116000px;}
.ya{bottom:76.680000px;}
.y53{bottom:111.276000px;}
.y22{bottom:123.156000px;}
.y37{bottom:134.676000px;}
.y4c{bottom:146.556000px;}
.y21{bottom:159.510000px;}
.y36{bottom:171.030000px;}
.y4b{bottom:195.195000px;}
.y20{bottom:195.555000px;}
.y35{bottom:207.075000px;}
.y52{bottom:207.795000px;}
.y1f{bottom:243.435000px;}
.y34{bottom:255.315000px;}
.y51{bottom:256.035000px;}
.y4a{bottom:279.795000px;}
.y33{bottom:291.675000px;}
.y1e{bottom:292.035000px;}
.y50{bottom:304.275000px;}
.y49{bottom:315.795000px;}
.y32{bottom:328.065000px;}
.y1d{bottom:340.305000px;}
.y48{bottom:352.185000px;}
.y4f{bottom:352.545000px;}
.y31{bottom:364.065000px;}
.y1c{bottom:376.665000px;}
.y47{bottom:388.545000px;}
.y3d{bottom:400.425000px;}
.y30{bottom:412.305000px;}
.y1b{bottom:424.905000px;}
.y3c{bottom:436.425000px;}
.y2f{bottom:448.710000px;}
.y1a{bottom:460.950000px;}
.y3b{bottom:472.830000px;}
.y2e{bottom:484.710000px;}
.y4e{bottom:496.950000px;}
.y19{bottom:497.310000px;}
.y46{bottom:509.190000px;}
.y2d{bottom:521.070000px;}
.y4d{bottom:533.310000px;}
.y18{bottom:533.670000px;}
.y45{bottom:545.190000px;}
.y2c{bottom:557.430000px;}
.y17{bottom:569.670000px;}
.y44{bottom:581.580000px;}
.y2b{bottom:593.460000px;}
.y16{bottom:617.580000px;}
.y43{bottom:617.940000px;}
.y5b{bottom:621.540000px;}
.y2a{bottom:629.820000px;}
.y15{bottom:666.180000px;}
.y5a{bottom:666.540000px;}
.y42{bottom:702.210000px;}
.y29{bottom:714.090000px;}
.y14{bottom:714.450000px;}
.y59{bottom:714.810000px;}
.y41{bottom:738.570000px;}
.y28{bottom:750.450000px;}
.y13{bottom:750.810000px;}
.y58{bottom:763.050000px;}
.y40{bottom:774.570000px;}
.y12{bottom:786.810000px;}
.y3f{bottom:810.930000px;}
.y57{bottom:811.290000px;}
.y27{bottom:822.810000px;}
.y11{bottom:823.170000px;}
.y3e{bottom:847.335000px;}
.y10{bottom:859.215000px;}
.y56{bottom:859.575000px;}
.y3a{bottom:895.575000px;}
.yf{bottom:907.095000px;}
.y26{bottom:907.455000px;}
.y39{bottom:931.575000px;}
.y25{bottom:943.455000px;}
.ye{bottom:955.365000px;}
.y55{bottom:955.725000px;}
.y38{bottom:967.965000px;}
.y24{bottom:979.845000px;}
.yd{bottom:1003.605000px;}
.y54{bottom:1003.965000px;}
.y23{bottom:1016.205000px;}
.yc{bottom:1052.205000px;}
.y7{bottom:1104.810000px;}
.y6{bottom:1124.970000px;}
.y5{bottom:1145.130000px;}
.y4{bottom:1165.290000px;}
.y3{bottom:1185.450000px;}
.y2{bottom:1205.640000px;}
.y1{bottom:1225.800000px;}
.h4{height:21.960000px;}
.h3{height:50.294531px;}
.h2{height:53.302500px;}
.h5{height:53.418375px;}
.h8{height:58.317187px;}
.ha{height:81.929531px;}
.h6{height:81.970312px;}
.h7{height:84.172500px;}
.h9{height:85.845399px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.680000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:127.475987px;}
.x13{left:154.514987px;}
.xc{left:161.714987px;}
.x14{left:181.514987px;}
.x1{left:223.274987px;}
.xb{left:281.984987px;}
.x12{left:298.544987px;}
.xf{left:306.104987px;}
.x5{left:310.064987px;}
.x6{left:331.709987px;}
.xe{left:341.429987px;}
.x4{left:360.149987px;}
.x3{left:376.349987px;}
.x2{left:378.869987px;}
.x11{left:387.149987px;}
.x10{left:392.189987px;}
.x7{left:435.779987px;}
.xd{left:478.259987px;}
.xa{left:836.280000px;}
.x8{left:894.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.506667pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls1{letter-spacing:-0.409600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.158933pt;}
.ls8{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls6{letter-spacing:19.041280pt;}
.ws7{word-spacing:-74.240000pt;}
.ws8{word-spacing:-18.718933pt;}
.ws5{word-spacing:-18.560000pt;}
.ws3{word-spacing:-13.322240pt;}
.ws0{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.897280pt;}
.ws2{word-spacing:-12.894613pt;}
.ws4{word-spacing:-0.059008pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-3.766187pt;}
._10{margin-left:-2.755840pt;}
._4{margin-left:-1.847040pt;}
._0{margin-left:-0.949760pt;}
._1{width:1.105920pt;}
._2{width:2.247680pt;}
._5{width:3.266560pt;}
._14{width:4.208640pt;}
._3{width:5.131947pt;}
._11{width:6.173013pt;}
._12{width:7.127040pt;}
._e{width:8.628480pt;}
._6{width:10.161920pt;}
._7{width:11.581440pt;}
._f{width:12.770560pt;}
._9{width:14.415360pt;}
._8{width:15.485440pt;}
._a{width:16.595200pt;}
._18{width:17.484800pt;}
._13{width:19.568640pt;}
._b{width:20.638720pt;}
._d{width:21.587200pt;}
._c{width:22.567680pt;}
._1c{width:23.990187pt;}
._1a{width:24.966400pt;}
._19{width:25.931520pt;}
._1b{width:26.896640pt;}
._1d{width:28.410880pt;}
._1e{width:29.614080pt;}
._21{width:34.662400pt;}
._20{width:35.688960pt;}
._23{width:42.673920pt;}
._22{width:43.883520pt;}
._17{width:45.739520pt;}
._16{width:47.258880pt;}
._15{width:48.395520pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:59.008000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.512000pt;}
.y9{bottom:50.880000pt;}
.y8{bottom:64.992000pt;}
.ya{bottom:68.160000pt;}
.y53{bottom:98.912000pt;}
.y22{bottom:109.472000pt;}
.y37{bottom:119.712000pt;}
.y4c{bottom:130.272000pt;}
.y21{bottom:141.786667pt;}
.y36{bottom:152.026667pt;}
.y4b{bottom:173.506667pt;}
.y20{bottom:173.826667pt;}
.y35{bottom:184.066667pt;}
.y52{bottom:184.706667pt;}
.y1f{bottom:216.386667pt;}
.y34{bottom:226.946667pt;}
.y51{bottom:227.586667pt;}
.y4a{bottom:248.706667pt;}
.y33{bottom:259.266667pt;}
.y1e{bottom:259.586667pt;}
.y50{bottom:270.466667pt;}
.y49{bottom:280.706667pt;}
.y32{bottom:291.613333pt;}
.y1d{bottom:302.493333pt;}
.y48{bottom:313.053333pt;}
.y4f{bottom:313.373333pt;}
.y31{bottom:323.613333pt;}
.y1c{bottom:334.813333pt;}
.y47{bottom:345.373333pt;}
.y3d{bottom:355.933333pt;}
.y30{bottom:366.493333pt;}
.y1b{bottom:377.693333pt;}
.y3c{bottom:387.933333pt;}
.y2f{bottom:398.853333pt;}
.y1a{bottom:409.733333pt;}
.y3b{bottom:420.293333pt;}
.y2e{bottom:430.853333pt;}
.y4e{bottom:441.733333pt;}
.y19{bottom:442.053333pt;}
.y46{bottom:452.613333pt;}
.y2d{bottom:463.173333pt;}
.y4d{bottom:474.053333pt;}
.y18{bottom:474.373333pt;}
.y45{bottom:484.613333pt;}
.y2c{bottom:495.493333pt;}
.y17{bottom:506.373333pt;}
.y44{bottom:516.960000pt;}
.y2b{bottom:527.520000pt;}
.y16{bottom:548.960000pt;}
.y43{bottom:549.280000pt;}
.y5b{bottom:552.480000pt;}
.y2a{bottom:559.840000pt;}
.y15{bottom:592.160000pt;}
.y5a{bottom:592.480000pt;}
.y42{bottom:624.186667pt;}
.y29{bottom:634.746667pt;}
.y14{bottom:635.066667pt;}
.y59{bottom:635.386667pt;}
.y41{bottom:656.506667pt;}
.y28{bottom:667.066667pt;}
.y13{bottom:667.386667pt;}
.y58{bottom:678.266667pt;}
.y40{bottom:688.506667pt;}
.y12{bottom:699.386667pt;}
.y3f{bottom:720.826667pt;}
.y57{bottom:721.146667pt;}
.y27{bottom:731.386667pt;}
.y11{bottom:731.706667pt;}
.y3e{bottom:753.186667pt;}
.y10{bottom:763.746667pt;}
.y56{bottom:764.066667pt;}
.y3a{bottom:796.066667pt;}
.yf{bottom:806.306667pt;}
.y26{bottom:806.626667pt;}
.y39{bottom:828.066667pt;}
.y25{bottom:838.626667pt;}
.ye{bottom:849.213333pt;}
.y55{bottom:849.533333pt;}
.y38{bottom:860.413333pt;}
.y24{bottom:870.973333pt;}
.yd{bottom:892.093333pt;}
.y54{bottom:892.413333pt;}
.y23{bottom:903.293333pt;}
.yc{bottom:935.293333pt;}
.y7{bottom:982.053333pt;}
.y6{bottom:999.973333pt;}
.y5{bottom:1017.893333pt;}
.y4{bottom:1035.813333pt;}
.y3{bottom:1053.733333pt;}
.y2{bottom:1071.680000pt;}
.y1{bottom:1089.600000pt;}
.h4{height:19.520000pt;}
.h3{height:44.706250pt;}
.h2{height:47.380000pt;}
.h5{height:47.483000pt;}
.h8{height:51.837500pt;}
.ha{height:72.826250pt;}
.h6{height:72.862500pt;}
.h7{height:74.820000pt;}
.h9{height:76.307021pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.160000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:113.311988pt;}
.x13{left:137.346655pt;}
.xc{left:143.746655pt;}
.x14{left:161.346655pt;}
.x1{left:198.466655pt;}
.xb{left:250.653322pt;}
.x12{left:265.373322pt;}
.xf{left:272.093322pt;}
.x5{left:275.613322pt;}
.x6{left:294.853322pt;}
.xe{left:303.493322pt;}
.x4{left:320.133322pt;}
.x3{left:334.533322pt;}
.x2{left:336.773322pt;}
.x11{left:344.133322pt;}
.x10{left:348.613322pt;}
.x7{left:387.359988pt;}
.xd{left:425.119988pt;}
.xa{left:743.360000pt;}
.x8{left:794.853322pt;}
}




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