
    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_c684392fb81166accfd38bf4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cfb06b65c4acf3f96f532e89.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_c00c6b691fffca30add514c5.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_76cf1197fb0dae058f95cccc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.879883;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_8494e7ecdab1f4263be760c7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_6ee0ba682abde2463ebead58.woff')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_b87140a5f8f277fdaaf6a9b6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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;}
.lsa{letter-spacing:-5.832000px;}
.lsc{letter-spacing:-0.900000px;}
.ls1{letter-spacing:-0.690000px;}
.lsd{letter-spacing:-0.378600px;}
.ls4{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.028080px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls9{letter-spacing:9.180000px;}
.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:-108.144000px;}
.ws3{word-spacing:-108.072000px;}
.ws8{word-spacing:-102.312000px;}
.ws5{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.ws7{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.031920px;}
.ws4{word-spacing:-20.700000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-11.540880px;}
._2e{margin-left:-8.917440px;}
._0{margin-left:-7.308000px;}
._2{margin-left:-6.065280px;}
._d{margin-left:-5.054400px;}
._3{margin-left:-3.790800px;}
._5{margin-left:-2.463840px;}
._4{margin-left:-1.095120px;}
._6{width:1.014720px;}
._12{width:2.048400px;}
._e{width:3.285360px;}
._a{width:4.717440px;}
._1d{width:6.318000px;}
._9{width:7.665840px;}
._25{width:8.851200px;}
._1a{width:10.404000px;}
._27{width:11.962080px;}
._17{width:13.731120px;}
._14{width:15.019680px;}
._13{width:16.089840px;}
._1e{width:17.858880px;}
._1f{width:19.543680px;}
._21{width:23.502960px;}
._8{width:25.272000px;}
._7{width:27.255120px;}
._1c{width:28.571520px;}
._26{width:30.323520px;}
._20{width:31.959600px;}
._15{width:33.494880px;}
._16{width:34.782000px;}
._2b{width:36.307440px;}
._c{width:38.244960px;}
._b{width:39.340080px;}
._18{width:40.452960px;}
._28{width:42.372720px;}
._22{width:43.636320px;}
._2c{width:45.000480px;}
._23{width:46.668960px;}
._1b{width:50.965200px;}
._11{width:52.397280px;}
._19{width:54.840240px;}
._f{width:58.378320px;}
._24{width:60.127200px;}
._29{width:71.604000px;}
._10{width:72.783360px;}
._2a{width:74.469120px;}
._2d{width:128.887200px;}
._2f{width:130.320000px;}
._30{width:846.120000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.y5{bottom:-39.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.436000px;}
.y4{bottom:6.300000px;}
.y6{bottom:16.740000px;}
.y2{bottom:56.916000px;}
.y3e{bottom:113.796000px;}
.y24{bottom:114.156000px;}
.y3d{bottom:149.976000px;}
.y23{bottom:150.330000px;}
.y3c{bottom:186.150000px;}
.y22{bottom:186.510000px;}
.y3b{bottom:222.330000px;}
.y21{bottom:222.870000px;}
.y3a{bottom:258.510000px;}
.y20{bottom:259.050000px;}
.y39{bottom:294.915000px;}
.y1f{bottom:295.275000px;}
.y38{bottom:331.095000px;}
.y1e{bottom:331.455000px;}
.y37{bottom:367.275000px;}
.y1d{bottom:367.815000px;}
.y36{bottom:403.455000px;}
.y1c{bottom:403.995000px;}
.y35{bottom:439.815000px;}
.y1b{bottom:440.175000px;}
.y34{bottom:475.995000px;}
.y1a{bottom:476.355000px;}
.y33{bottom:512.175000px;}
.y19{bottom:512.715000px;}
.y32{bottom:548.355000px;}
.y18{bottom:548.895000px;}
.y31{bottom:584.745000px;}
.y17{bottom:585.105000px;}
.y30{bottom:620.925000px;}
.y16{bottom:621.285000px;}
.y2f{bottom:657.105000px;}
.y15{bottom:657.465000px;}
.y2e{bottom:693.285000px;}
.y14{bottom:693.825000px;}
.y2d{bottom:729.465000px;}
.y13{bottom:730.005000px;}
.y2c{bottom:765.825000px;}
.y12{bottom:766.185000px;}
.y3f{bottom:768.705000px;}
.y2b{bottom:802.005000px;}
.y11{bottom:802.365000px;}
.y2a{bottom:838.185000px;}
.y10{bottom:838.725000px;}
.y29{bottom:874.410000px;}
.yf{bottom:874.950000px;}
.y28{bottom:910.770000px;}
.ye{bottom:911.130000px;}
.y27{bottom:946.950000px;}
.yd{bottom:947.310000px;}
.y26{bottom:983.130000px;}
.yc{bottom:983.490000px;}
.y25{bottom:1019.310000px;}
.yb{bottom:1019.670000px;}
.ya{bottom:1055.670000px;}
.y9{bottom:1091.850000px;}
.y8{bottom:1128.030000px;}
.y1{bottom:1151.640000px;}
.y3{bottom:1225.080000px;}
.h3{height:31.680000px;}
.h5{height:51.660000px;}
.h8{height:59.066719px;}
.ha{height:59.436914px;}
.hb{height:61.575820px;}
.h2{height:70.664062px;}
.h9{height:82.676953px;}
.h7{height:84.898125px;}
.h4{height:108.843750px;}
.h6{height:108.988875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.500000px;}
.w3{width:281.910000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:16.170000px;}
.x10{left:17.610000px;}
.x6{left:29.670000px;}
.xe{left:42.659987px;}
.x3{left:46.440000px;}
.x1{left:63.899987px;}
.xd{left:85.139987px;}
.x4{left:140.940000px;}
.x8{left:145.295987px;}
.x7{left:198.929987px;}
.x11{left:297.254987px;}
.xc{left:384.194987px;}
.x9{left:387.614987px;}
.xb{left:400.574987px;}
.xa{left:431.714987px;}
.x2{left:498.705000px;}
.x5{left:836.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-5.184000pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls1{letter-spacing:-0.613333pt;}
.lsd{letter-spacing:-0.336533pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.024960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls9{letter-spacing:8.160000pt;}
.ws0{word-spacing:-96.128000pt;}
.ws3{word-spacing:-96.064000pt;}
.ws8{word-spacing:-90.944000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.ws7{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.400000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-10.258560pt;}
._2e{margin-left:-7.926613pt;}
._0{margin-left:-6.496000pt;}
._2{margin-left:-5.391360pt;}
._d{margin-left:-4.492800pt;}
._3{margin-left:-3.369600pt;}
._5{margin-left:-2.190080pt;}
._4{margin-left:-0.973440pt;}
._6{width:0.901973pt;}
._12{width:1.820800pt;}
._e{width:2.920320pt;}
._a{width:4.193280pt;}
._1d{width:5.616000pt;}
._9{width:6.814080pt;}
._25{width:7.867733pt;}
._1a{width:9.248000pt;}
._27{width:10.632960pt;}
._17{width:12.205440pt;}
._14{width:13.350827pt;}
._13{width:14.302080pt;}
._1e{width:15.874560pt;}
._1f{width:17.372160pt;}
._21{width:20.891520pt;}
._8{width:22.464000pt;}
._7{width:24.226773pt;}
._1c{width:25.396907pt;}
._26{width:26.954240pt;}
._20{width:28.408533pt;}
._15{width:29.773227pt;}
._16{width:30.917333pt;}
._2b{width:32.273280pt;}
._c{width:33.995520pt;}
._b{width:34.968960pt;}
._18{width:35.958187pt;}
._28{width:37.664640pt;}
._22{width:38.787840pt;}
._2c{width:40.000427pt;}
._23{width:41.483520pt;}
._1b{width:45.302400pt;}
._11{width:46.575360pt;}
._19{width:48.746880pt;}
._f{width:51.891840pt;}
._24{width:53.446400pt;}
._29{width:63.648000pt;}
._10{width:64.696320pt;}
._2a{width:66.194773pt;}
._2d{width:114.566400pt;}
._2f{width:115.840000pt;}
._30{width:752.106667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.y5{bottom:-34.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.832000pt;}
.y4{bottom:5.600000pt;}
.y6{bottom:14.880000pt;}
.y2{bottom:50.592000pt;}
.y3e{bottom:101.152000pt;}
.y24{bottom:101.472000pt;}
.y3d{bottom:133.312000pt;}
.y23{bottom:133.626667pt;}
.y3c{bottom:165.466667pt;}
.y22{bottom:165.786667pt;}
.y3b{bottom:197.626667pt;}
.y21{bottom:198.106667pt;}
.y3a{bottom:229.786667pt;}
.y20{bottom:230.266667pt;}
.y39{bottom:262.146667pt;}
.y1f{bottom:262.466667pt;}
.y38{bottom:294.306667pt;}
.y1e{bottom:294.626667pt;}
.y37{bottom:326.466667pt;}
.y1d{bottom:326.946667pt;}
.y36{bottom:358.626667pt;}
.y1c{bottom:359.106667pt;}
.y35{bottom:390.946667pt;}
.y1b{bottom:391.266667pt;}
.y34{bottom:423.106667pt;}
.y1a{bottom:423.426667pt;}
.y33{bottom:455.266667pt;}
.y19{bottom:455.746667pt;}
.y32{bottom:487.426667pt;}
.y18{bottom:487.906667pt;}
.y31{bottom:519.773333pt;}
.y17{bottom:520.093333pt;}
.y30{bottom:551.933333pt;}
.y16{bottom:552.253333pt;}
.y2f{bottom:584.093333pt;}
.y15{bottom:584.413333pt;}
.y2e{bottom:616.253333pt;}
.y14{bottom:616.733333pt;}
.y2d{bottom:648.413333pt;}
.y13{bottom:648.893333pt;}
.y2c{bottom:680.733333pt;}
.y12{bottom:681.053333pt;}
.y3f{bottom:683.293333pt;}
.y2b{bottom:712.893333pt;}
.y11{bottom:713.213333pt;}
.y2a{bottom:745.053333pt;}
.y10{bottom:745.533333pt;}
.y29{bottom:777.253333pt;}
.yf{bottom:777.733333pt;}
.y28{bottom:809.573333pt;}
.ye{bottom:809.893333pt;}
.y27{bottom:841.733333pt;}
.yd{bottom:842.053333pt;}
.y26{bottom:873.893333pt;}
.yc{bottom:874.213333pt;}
.y25{bottom:906.053333pt;}
.yb{bottom:906.373333pt;}
.ya{bottom:938.373333pt;}
.y9{bottom:970.533333pt;}
.y8{bottom:1002.693333pt;}
.y1{bottom:1023.680000pt;}
.y3{bottom:1088.960000pt;}
.h3{height:28.160000pt;}
.h5{height:45.920000pt;}
.h8{height:52.503750pt;}
.ha{height:52.832812pt;}
.hb{height:54.734062pt;}
.h2{height:62.812500pt;}
.h9{height:73.490625pt;}
.h7{height:75.465000pt;}
.h4{height:96.750000pt;}
.h6{height:96.879000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:44.000000pt;}
.w3{width:250.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:14.373333pt;}
.x10{left:15.653333pt;}
.x6{left:26.373333pt;}
.xe{left:37.919988pt;}
.x3{left:41.280000pt;}
.x1{left:56.799988pt;}
.xd{left:75.679988pt;}
.x4{left:125.280000pt;}
.x8{left:129.151988pt;}
.x7{left:176.826655pt;}
.x11{left:264.226655pt;}
.xc{left:341.506655pt;}
.x9{left:344.546655pt;}
.xb{left:356.066655pt;}
.xa{left:383.746655pt;}
.x2{left:443.293333pt;}
.x5{left:743.360000pt;}
}




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