
    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_79900010ee2a388cadd57e13.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_aa85de96f00840fdf29977bc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_e65e86dc2b09d4feb548980d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_dcdae2d5eac153be6fe2510e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_1d0264b817a7d53f1b4f3095.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_f7cd03b6d76dfa7d62e54f52.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_3dde959d691da86eaa38b756.woff')format("woff");}.ff8{font-family:ff8;line-height:1.021484;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_817f58ff6ba15c1059349057.woff')format("woff");}.ff9{font-family:ff9;line-height:1.021484;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:ffb;src:url('chunks/assets/font_ca37a9e22dd26c33cf5dfbe8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.901855;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;}
.ls4{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.360000px;}
.ls6{letter-spacing:15.120000px;}
.ls2{letter-spacing:33.984000px;}
.ls1{letter-spacing:38.880000px;}
.ls3{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-60.120000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.300000px;}
.ws1{word-spacing:0.000000px;}
._21{margin-left:-6.192000px;}
._42{margin-left:-4.968000px;}
._7{margin-left:-3.960000px;}
._8{margin-left:-2.677200px;}
._0{margin-left:-1.235760px;}
._1{width:1.163760px;}
._c{width:2.736000px;}
._13{width:3.755760px;}
._a{width:5.040000px;}
._b{width:6.120000px;}
._14{width:7.620240px;}
._24{width:8.795760px;}
._15{width:9.803760px;}
._9{width:11.592000px;}
._1e{width:13.032000px;}
._11{width:14.051760px;}
._10{width:15.120000px;}
._30{width:16.704000px;}
._17{width:19.368000px;}
._1b{width:20.387760px;}
._16{width:21.456000px;}
._23{width:22.464000px;}
._1c{width:23.544000px;}
._6{width:25.128000px;}
._1a{width:26.280000px;}
._32{width:27.371760px;}
._2d{width:28.512000px;}
._34{width:30.251760px;}
._26{width:31.608000px;}
._27{width:32.616000px;}
._2b{width:34.344000px;}
._35{width:35.352000px;}
._31{width:36.576000px;}
._1f{width:38.304000px;}
._2{width:40.248000px;}
._3{width:41.892240px;}
._19{width:43.655760px;}
._18{width:44.712000px;}
._5{width:46.440000px;}
._25{width:47.640240px;}
._2c{width:48.647520px;}
._3d{width:49.668000px;}
._20{width:51.408000px;}
._22{width:52.488240px;}
._37{width:53.928000px;}
._2a{width:55.813200px;}
._29{width:57.240000px;}
._3e{width:58.608000px;}
._2e{width:60.840000px;}
._36{width:62.280000px;}
._f{width:63.576000px;}
._41{width:65.304000px;}
._3b{width:66.600000px;}
._33{width:67.752000px;}
._3a{width:69.203760px;}
._39{width:70.272000px;}
._1d{width:72.144000px;}
._28{width:73.823760px;}
._43{width:82.512000px;}
._2f{width:85.104000px;}
._12{width:86.412000px;}
._e{width:88.344000px;}
._d{width:89.352000px;}
._3c{width:90.792000px;}
._3f{width:94.680000px;}
._40{width:99.936000px;}
._4{width:109.512000px;}
._38{width:111.852000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:58.356000px;}
.y2{bottom:78.516000px;}
.y3b{bottom:113.436000px;}
.y3a{bottom:137.736000px;}
.y1e{bottom:144.396000px;}
.y39{bottom:162.030000px;}
.y1d{bottom:168.690000px;}
.y38{bottom:186.330000px;}
.y1c{bottom:192.990000px;}
.y37{bottom:210.675000px;}
.y1b{bottom:217.335000px;}
.y36{bottom:234.975000px;}
.y1a{bottom:241.635000px;}
.y35{bottom:259.275000px;}
.y19{bottom:265.935000px;}
.y34{bottom:283.575000px;}
.y18{bottom:290.055000px;}
.y33{bottom:307.695000px;}
.y17{bottom:314.355000px;}
.y32{bottom:331.995000px;}
.y16{bottom:338.655000px;}
.y31{bottom:356.295000px;}
.y15{bottom:362.955000px;}
.y30{bottom:380.595000px;}
.y14{bottom:387.255000px;}
.y2f{bottom:404.925000px;}
.y13{bottom:411.585000px;}
.y2e{bottom:429.225000px;}
.y12{bottom:435.885000px;}
.y2d{bottom:453.525000px;}
.y11{bottom:460.185000px;}
.y2c{bottom:477.825000px;}
.y10{bottom:484.485000px;}
.y2b{bottom:502.125000px;}
.yf{bottom:508.785000px;}
.y2a{bottom:526.425000px;}
.ye{bottom:533.085000px;}
.y29{bottom:550.725000px;}
.yd{bottom:559.185000px;}
.y28{bottom:574.845000px;}
.yc{bottom:583.485000px;}
.y27{bottom:599.190000px;}
.yb{bottom:612.690000px;}
.y26{bottom:623.490000px;}
.ya{bottom:636.990000px;}
.y25{bottom:647.790000px;}
.y9{bottom:661.290000px;}
.y3d{bottom:666.510000px;}
.y24{bottom:672.090000px;}
.y8{bottom:685.590000px;}
.y23{bottom:696.390000px;}
.y7{bottom:709.890000px;}
.y22{bottom:720.690000px;}
.y3c{bottom:723.930000px;}
.y6{bottom:739.050000px;}
.y21{bottom:744.990000px;}
.y5{bottom:763.350000px;}
.y20{bottom:769.290000px;}
.y4{bottom:788.550000px;}
.y1f{bottom:793.590000px;}
.y1{bottom:820.080000px;}
.h7{height:52.558594px;}
.h2{height:52.769531px;}
.h6{height:53.015625px;}
.h5{height:62.028281px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x3{left:64.835991px;}
.x6{left:69.695991px;}
.xd{left:91.835991px;}
.x5{left:99.755991px;}
.x9{left:104.255991px;}
.xb{left:108.575991px;}
.xe{left:118.835991px;}
.xa{left:158.069991px;}
.xc{left:180.074991px;}
.x8{left:213.374991px;}
.x4{left:262.154991px;}
.xf{left:286.634991px;}
.x2{left:302.144991px;}
.x7{left:314.744991px;}
.x1{left:373.604991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6{letter-spacing:13.440000pt;}
.ls2{letter-spacing:30.208000pt;}
.ls1{letter-spacing:34.560000pt;}
.ls3{letter-spacing:40.912640pt;}
.ws2{word-spacing:-53.440000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws1{word-spacing:0.000000pt;}
._21{margin-left:-5.504000pt;}
._42{margin-left:-4.416000pt;}
._7{margin-left:-3.520000pt;}
._8{margin-left:-2.379733pt;}
._0{margin-left:-1.098453pt;}
._1{width:1.034453pt;}
._c{width:2.432000pt;}
._13{width:3.338453pt;}
._a{width:4.480000pt;}
._b{width:5.440000pt;}
._14{width:6.773547pt;}
._24{width:7.818453pt;}
._15{width:8.714453pt;}
._9{width:10.304000pt;}
._1e{width:11.584000pt;}
._11{width:12.490453pt;}
._10{width:13.440000pt;}
._30{width:14.848000pt;}
._17{width:17.216000pt;}
._1b{width:18.122453pt;}
._16{width:19.072000pt;}
._23{width:19.968000pt;}
._1c{width:20.928000pt;}
._6{width:22.336000pt;}
._1a{width:23.360000pt;}
._32{width:24.330453pt;}
._2d{width:25.344000pt;}
._34{width:26.890453pt;}
._26{width:28.096000pt;}
._27{width:28.992000pt;}
._2b{width:30.528000pt;}
._35{width:31.424000pt;}
._31{width:32.512000pt;}
._1f{width:34.048000pt;}
._2{width:35.776000pt;}
._3{width:37.237547pt;}
._19{width:38.805120pt;}
._18{width:39.744000pt;}
._5{width:41.280000pt;}
._25{width:42.346880pt;}
._2c{width:43.242240pt;}
._3d{width:44.149333pt;}
._20{width:45.696000pt;}
._22{width:46.656213pt;}
._37{width:47.936000pt;}
._2a{width:49.611733pt;}
._29{width:50.880000pt;}
._3e{width:52.096000pt;}
._2e{width:54.080000pt;}
._36{width:55.360000pt;}
._f{width:56.512000pt;}
._41{width:58.048000pt;}
._3b{width:59.200000pt;}
._33{width:60.224000pt;}
._3a{width:61.514453pt;}
._39{width:62.464000pt;}
._1d{width:64.128000pt;}
._28{width:65.621120pt;}
._43{width:73.344000pt;}
._2f{width:75.648000pt;}
._12{width:76.810667pt;}
._e{width:78.528000pt;}
._d{width:79.424000pt;}
._3c{width:80.704000pt;}
._3f{width:84.160000pt;}
._40{width:88.832000pt;}
._4{width:97.344000pt;}
._38{width:99.424000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.872000pt;}
.y2{bottom:69.792000pt;}
.y3b{bottom:100.832000pt;}
.y3a{bottom:122.432000pt;}
.y1e{bottom:128.352000pt;}
.y39{bottom:144.026667pt;}
.y1d{bottom:149.946667pt;}
.y38{bottom:165.626667pt;}
.y1c{bottom:171.546667pt;}
.y37{bottom:187.266667pt;}
.y1b{bottom:193.186667pt;}
.y36{bottom:208.866667pt;}
.y1a{bottom:214.786667pt;}
.y35{bottom:230.466667pt;}
.y19{bottom:236.386667pt;}
.y34{bottom:252.066667pt;}
.y18{bottom:257.826667pt;}
.y33{bottom:273.506667pt;}
.y17{bottom:279.426667pt;}
.y32{bottom:295.106667pt;}
.y16{bottom:301.026667pt;}
.y31{bottom:316.706667pt;}
.y15{bottom:322.626667pt;}
.y30{bottom:338.306667pt;}
.y14{bottom:344.226667pt;}
.y2f{bottom:359.933333pt;}
.y13{bottom:365.853333pt;}
.y2e{bottom:381.533333pt;}
.y12{bottom:387.453333pt;}
.y2d{bottom:403.133333pt;}
.y11{bottom:409.053333pt;}
.y2c{bottom:424.733333pt;}
.y10{bottom:430.653333pt;}
.y2b{bottom:446.333333pt;}
.yf{bottom:452.253333pt;}
.y2a{bottom:467.933333pt;}
.ye{bottom:473.853333pt;}
.y29{bottom:489.533333pt;}
.yd{bottom:497.053333pt;}
.y28{bottom:510.973333pt;}
.yc{bottom:518.653333pt;}
.y27{bottom:532.613333pt;}
.yb{bottom:544.613333pt;}
.y26{bottom:554.213333pt;}
.ya{bottom:566.213333pt;}
.y25{bottom:575.813333pt;}
.y9{bottom:587.813333pt;}
.y3d{bottom:592.453333pt;}
.y24{bottom:597.413333pt;}
.y8{bottom:609.413333pt;}
.y23{bottom:619.013333pt;}
.y7{bottom:631.013333pt;}
.y22{bottom:640.613333pt;}
.y3c{bottom:643.493333pt;}
.y6{bottom:656.933333pt;}
.y21{bottom:662.213333pt;}
.y5{bottom:678.533333pt;}
.y20{bottom:683.813333pt;}
.y4{bottom:700.933333pt;}
.y1f{bottom:705.413333pt;}
.y1{bottom:728.960000pt;}
.h7{height:46.718750pt;}
.h2{height:46.906250pt;}
.h6{height:47.125000pt;}
.h5{height:55.136250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x3{left:57.631992pt;}
.x6{left:61.951992pt;}
.xd{left:81.631992pt;}
.x5{left:88.671992pt;}
.x9{left:92.671992pt;}
.xb{left:96.511992pt;}
.xe{left:105.631992pt;}
.xa{left:140.506658pt;}
.xc{left:160.066658pt;}
.x8{left:189.666658pt;}
.x4{left:233.026658pt;}
.xf{left:254.786658pt;}
.x2{left:268.573325pt;}
.x7{left:279.773325pt;}
.x1{left:332.093325pt;}
}




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