
    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_82e5c47fe39769a723c076b0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_eb407d1059b9667ab8cbe19d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0bda82b4f054a4aca21e8254.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_a858c521f5b5af75eb15672c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_858c161a1c47649f80a7509e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932617;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_c5eb4f567d122062f7042181.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_f4c4cf06bcf7a2e35d92c974.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_72318bc9c3f3af017ed8709e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_334d15907d5f881decfcbb2f.woff')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;}
.ls5{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls1{letter-spacing:15.600000px;}
.ls7{letter-spacing:212.400000px;}
.ls8{letter-spacing:265.614000px;}
.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;}
}
.ws4{word-spacing:-21.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.976000px;}
.ws0{word-spacing:-13.140000px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-5.736000px;}
._3{margin-left:-4.608000px;}
._2{margin-left:-3.384000px;}
._6{margin-left:-2.100000px;}
._0{margin-left:-1.080000px;}
._1{width:1.380000px;}
._c{width:2.802000px;}
._d{width:4.002000px;}
._a{width:5.760000px;}
._9{width:7.632000px;}
._5{width:8.760000px;}
._4{width:10.338000px;}
._11{width:11.958000px;}
._10{width:13.104000px;}
._7{width:14.748000px;}
._8{width:16.482000px;}
._f{width:19.140000px;}
._15{width:22.176000px;}
._14{width:23.328000px;}
._12{width:24.552000px;}
._13{width:25.632000px;}
._17{width:26.904000px;}
._16{width:28.380000px;}
._18{width:29.484000px;}
._e{width:31.152000px;}
._19{width:38.292000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:84.150000px;}
.y0{bottom:0.000000px;}
.y45{bottom:4.080000px;}
.y38{bottom:4.680000px;}
.y3b{bottom:4.980000px;}
.y48{bottom:7.080000px;}
.y4d{bottom:7.725000px;}
.y40{bottom:7.755000px;}
.y42{bottom:8.025000px;}
.y3d{bottom:22.725000px;}
.y44{bottom:28.425000px;}
.y37{bottom:28.680000px;}
.y3a{bottom:28.980000px;}
.y4a{bottom:29.025000px;}
.y47{bottom:31.425000px;}
.y7{bottom:57.337500px;}
.y33{bottom:99.337500px;}
.y32{bottom:123.037500px;}
.y31{bottom:146.737500px;}
.y30{bottom:170.775000px;}
.y2f{bottom:194.475000px;}
.y2e{bottom:218.175000px;}
.y2d{bottom:242.175000px;}
.y2c{bottom:265.875000px;}
.y2b{bottom:289.575000px;}
.y2a{bottom:313.575000px;}
.y29{bottom:337.275000px;}
.y28{bottom:361.005000px;}
.y27{bottom:385.005000px;}
.y26{bottom:408.705000px;}
.y25{bottom:432.405000px;}
.y24{bottom:456.420000px;}
.y23{bottom:480.120000px;}
.y22{bottom:503.805000px;}
.y21{bottom:527.850000px;}
.y20{bottom:551.550000px;}
.y1f{bottom:575.250000px;}
.y1e{bottom:599.250000px;}
.y1d{bottom:622.950000px;}
.y1c{bottom:646.650000px;}
.y1b{bottom:670.650000px;}
.y1a{bottom:694.380000px;}
.y19{bottom:718.080000px;}
.y18{bottom:742.080000px;}
.y17{bottom:765.780000px;}
.y39{bottom:777.000000px;}
.y36{bottom:777.300000px;}
.y16{bottom:789.795000px;}
.y15{bottom:813.480000px;}
.y46{bottom:825.000000px;}
.y49{bottom:827.100000px;}
.y43{bottom:828.000000px;}
.y14{bottom:837.195000px;}
.y13{bottom:861.225000px;}
.y12{bottom:884.925000px;}
.y3c{bottom:887.400000px;}
.y3e{bottom:887.700000px;}
.y11{bottom:908.625000px;}
.y35{bottom:913.125000px;}
.y4b{bottom:920.700000px;}
.y4c{bottom:921.000000px;}
.y41{bottom:922.500000px;}
.y10{bottom:932.625000px;}
.yf{bottom:956.325000px;}
.ye{bottom:980.025000px;}
.yd{bottom:1004.025000px;}
.yc{bottom:1027.755000px;}
.y3f{bottom:1035.000000px;}
.yb{bottom:1051.455000px;}
.ya{bottom:1075.455000px;}
.y34{bottom:1083.570000px;}
.y9{bottom:1099.155000px;}
.y8{bottom:1122.855000px;}
.y6{bottom:1143.570000px;}
.y5{bottom:1164.255000px;}
.y4{bottom:1182.570000px;}
.y3{bottom:1200.900000px;}
.y2{bottom:1219.200000px;}
.y1{bottom:1237.500000px;}
.he{height:27.300000px;}
.hf{height:27.600000px;}
.h14{height:27.900000px;}
.h10{height:48.000000px;}
.hd{height:48.300000px;}
.hb{height:48.600000px;}
.h13{height:48.900000px;}
.h5{height:50.800781px;}
.h12{height:51.300000px;}
.h2{height:61.435547px;}
.h9{height:63.457031px;}
.h4{height:65.645508px;}
.h8{height:70.664062px;}
.h7{height:71.824219px;}
.h6{height:72.562500px;}
.h15{height:74.004654px;}
.hc{height:74.033203px;}
.h11{height:74.165405px;}
.ha{height:82.441406px;}
.h3{height:84.656250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w8{width:195.600000px;}
.w9{width:195.900000px;}
.wa{width:197.700000px;}
.wb{width:202.800000px;}
.w7{width:203.700000px;}
.w4{width:204.900000px;}
.w5{width:209.700000px;}
.w6{width:213.300000px;}
.w3{width:215.400000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:11.580000px;}
.x18{left:14.295000px;}
.x19{left:18.705000px;}
.x1d{left:23.730000px;}
.x13{left:25.320000px;}
.xf{left:27.937500px;}
.x15{left:33.195000px;}
.x1e{left:36.630000px;}
.x1c{left:40.230000px;}
.x12{left:42.420000px;}
.x1f{left:47.550000px;}
.x10{left:53.437500px;}
.x22{left:57.825000px;}
.x24{left:67.650000px;}
.x16{left:70.980000px;}
.xc{left:84.937487px;}
.x5{left:111.337487px;}
.xa{left:123.037487px;}
.x6{left:124.537487px;}
.x1b{left:127.800000px;}
.xe{left:129.037487px;}
.x9{left:312.719987px;}
.xb{left:319.904987px;}
.x7{left:333.404987px;}
.x11{left:335.700000px;}
.xd{left:339.719987px;}
.x3{left:350.504987px;}
.x25{left:361.019987px;}
.x1a{left:378.300000px;}
.x4{left:433.949987px;}
.x8{left:446.249987px;}
.x2{left:457.049987px;}
.x1{left:510.449987px;}
.x17{left:569.100000px;}
.x14{left:572.400000px;}
.x23{left:619.500000px;}
.x20{left:621.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls1{letter-spacing:13.866667pt;}
.ls7{letter-spacing:188.800000pt;}
.ls8{letter-spacing:236.101333pt;}
.ws4{word-spacing:-18.666667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.978667pt;}
.ws0{word-spacing:-11.680000pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-5.098667pt;}
._3{margin-left:-4.096000pt;}
._2{margin-left:-3.008000pt;}
._6{margin-left:-1.866667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.226667pt;}
._c{width:2.490667pt;}
._d{width:3.557333pt;}
._a{width:5.120000pt;}
._9{width:6.784000pt;}
._5{width:7.786667pt;}
._4{width:9.189333pt;}
._11{width:10.629333pt;}
._10{width:11.648000pt;}
._7{width:13.109333pt;}
._8{width:14.650667pt;}
._f{width:17.013333pt;}
._15{width:19.712000pt;}
._14{width:20.736000pt;}
._12{width:21.824000pt;}
._13{width:22.784000pt;}
._17{width:23.914667pt;}
._16{width:25.226667pt;}
._18{width:26.208000pt;}
._e{width:27.690667pt;}
._19{width:34.037333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:74.800000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.626667pt;}
.y38{bottom:4.160000pt;}
.y3b{bottom:4.426667pt;}
.y48{bottom:6.293333pt;}
.y4d{bottom:6.866667pt;}
.y40{bottom:6.893333pt;}
.y42{bottom:7.133333pt;}
.y3d{bottom:20.200000pt;}
.y44{bottom:25.266667pt;}
.y37{bottom:25.493333pt;}
.y3a{bottom:25.760000pt;}
.y4a{bottom:25.800000pt;}
.y47{bottom:27.933333pt;}
.y7{bottom:50.966667pt;}
.y33{bottom:88.300000pt;}
.y32{bottom:109.366667pt;}
.y31{bottom:130.433333pt;}
.y30{bottom:151.800000pt;}
.y2f{bottom:172.866667pt;}
.y2e{bottom:193.933333pt;}
.y2d{bottom:215.266667pt;}
.y2c{bottom:236.333333pt;}
.y2b{bottom:257.400000pt;}
.y2a{bottom:278.733333pt;}
.y29{bottom:299.800000pt;}
.y28{bottom:320.893333pt;}
.y27{bottom:342.226667pt;}
.y26{bottom:363.293333pt;}
.y25{bottom:384.360000pt;}
.y24{bottom:405.706667pt;}
.y23{bottom:426.773333pt;}
.y22{bottom:447.826667pt;}
.y21{bottom:469.200000pt;}
.y20{bottom:490.266667pt;}
.y1f{bottom:511.333333pt;}
.y1e{bottom:532.666667pt;}
.y1d{bottom:553.733333pt;}
.y1c{bottom:574.800000pt;}
.y1b{bottom:596.133333pt;}
.y1a{bottom:617.226667pt;}
.y19{bottom:638.293333pt;}
.y18{bottom:659.626667pt;}
.y17{bottom:680.693333pt;}
.y39{bottom:690.666667pt;}
.y36{bottom:690.933333pt;}
.y16{bottom:702.040000pt;}
.y15{bottom:723.093333pt;}
.y46{bottom:733.333333pt;}
.y49{bottom:735.200000pt;}
.y43{bottom:736.000000pt;}
.y14{bottom:744.173333pt;}
.y13{bottom:765.533333pt;}
.y12{bottom:786.600000pt;}
.y3c{bottom:788.800000pt;}
.y3e{bottom:789.066667pt;}
.y11{bottom:807.666667pt;}
.y35{bottom:811.666667pt;}
.y4b{bottom:818.400000pt;}
.y4c{bottom:818.666667pt;}
.y41{bottom:820.000000pt;}
.y10{bottom:829.000000pt;}
.yf{bottom:850.066667pt;}
.ye{bottom:871.133333pt;}
.yd{bottom:892.466667pt;}
.yc{bottom:913.560000pt;}
.y3f{bottom:920.000000pt;}
.yb{bottom:934.626667pt;}
.ya{bottom:955.960000pt;}
.y34{bottom:963.173333pt;}
.y9{bottom:977.026667pt;}
.y8{bottom:998.093333pt;}
.y6{bottom:1016.506667pt;}
.y5{bottom:1034.893333pt;}
.y4{bottom:1051.173333pt;}
.y3{bottom:1067.466667pt;}
.y2{bottom:1083.733333pt;}
.y1{bottom:1100.000000pt;}
.he{height:24.266667pt;}
.hf{height:24.533333pt;}
.h14{height:24.800000pt;}
.h10{height:42.666667pt;}
.hd{height:42.933333pt;}
.hb{height:43.200000pt;}
.h13{height:43.466667pt;}
.h5{height:45.156250pt;}
.h12{height:45.600000pt;}
.h2{height:54.609375pt;}
.h9{height:56.406250pt;}
.h4{height:58.351562pt;}
.h8{height:62.812500pt;}
.h7{height:63.843750pt;}
.h6{height:64.500000pt;}
.h15{height:65.781915pt;}
.hc{height:65.807292pt;}
.h11{height:65.924805pt;}
.ha{height:73.281250pt;}
.h3{height:75.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w8{width:173.866667pt;}
.w9{width:174.133333pt;}
.wa{width:175.733333pt;}
.wb{width:180.266667pt;}
.w7{width:181.066667pt;}
.w4{width:182.133333pt;}
.w5{width:186.400000pt;}
.w6{width:189.600000pt;}
.w3{width:191.466667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:10.293333pt;}
.x18{left:12.706667pt;}
.x19{left:16.626667pt;}
.x1d{left:21.093333pt;}
.x13{left:22.506667pt;}
.xf{left:24.833333pt;}
.x15{left:29.506667pt;}
.x1e{left:32.560000pt;}
.x1c{left:35.760000pt;}
.x12{left:37.706667pt;}
.x1f{left:42.266667pt;}
.x10{left:47.500000pt;}
.x22{left:51.400000pt;}
.x24{left:60.133333pt;}
.x16{left:63.093333pt;}
.xc{left:75.499988pt;}
.x5{left:98.966655pt;}
.xa{left:109.366655pt;}
.x6{left:110.699988pt;}
.x1b{left:113.600000pt;}
.xe{left:114.699988pt;}
.x9{left:277.973322pt;}
.xb{left:284.359988pt;}
.x7{left:296.359988pt;}
.x11{left:298.400000pt;}
.xd{left:301.973322pt;}
.x3{left:311.559988pt;}
.x25{left:320.906655pt;}
.x1a{left:336.266667pt;}
.x4{left:385.733322pt;}
.x8{left:396.666655pt;}
.x2{left:406.266655pt;}
.x1{left:453.733322pt;}
.x17{left:505.866667pt;}
.x14{left:508.800000pt;}
.x23{left:550.666667pt;}
.x20{left:552.800000pt;}
}




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