
    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_8be391b82ad278eb45640fdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_b41c750e900a0a32f0294430.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d2386307722d1bb35fc62bc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_ad26d9664e424a9ae82ea2fd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d18581dd0d0557e37faeaeca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_578450fc8ec45e47391788f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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;}
.v1{vertical-align:12.240418px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.ls2{letter-spacing:10.079050px;}
.ls3{letter-spacing:12.239100px;}
.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;}
}
.ws1{word-spacing:-79.204500px;}
.ws4{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws5{word-spacing:-15.840563px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-24.121143px;}
._1d{margin-left:-16.254676px;}
._1a{margin-left:-12.452319px;}
._13{margin-left:-11.383056px;}
._18{margin-left:-10.166181px;}
._4{margin-left:-9.028372px;}
._3{margin-left:-7.128052px;}
._10{margin-left:-6.096534px;}
._6{margin-left:-4.944500px;}
._5{margin-left:-3.611216px;}
._1{margin-left:-2.566392px;}
._2{margin-left:-1.330148px;}
._0{width:1.048595px;}
._7{width:2.566392px;}
._8{width:3.895684px;}
._f{width:5.783078px;}
._d{width:6.866837px;}
._e{width:8.434598px;}
._11{width:9.580950px;}
._14{width:10.680273px;}
._c{width:12.208528px;}
._b{width:13.306230px;}
._9{width:14.826752px;}
._a{width:15.869706px;}
._15{width:17.774257px;}
._1b{width:19.005655px;}
._1c{width:20.374695px;}
._17{width:22.113846px;}
._1f{width:24.955567px;}
._1e{width:38.035361px;}
._19{width:1663.888813px;}
._12{width:1695.568988px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1e{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y39{bottom:41.040115px;}
.y38{bottom:121.320099px;}
.y1c{bottom:123.300000px;}
.y66{bottom:149.940033px;}
.y62{bottom:150.300041px;}
.y1b{bottom:151.920000px;}
.y37{bottom:178.560036px;}
.y61{bottom:178.920043px;}
.y36{bottom:207.000068px;}
.y60{bottom:207.360077px;}
.y1a{bottom:208.980000px;}
.y35{bottom:235.620072px;}
.y5f{bottom:235.980079px;}
.y19{bottom:237.420000px;}
.y34{bottom:264.060036px;}
.y5e{bottom:264.420043px;}
.y18{bottom:266.040000px;}
.y33{bottom:292.680039px;}
.y5d{bottom:293.040047px;}
.y32{bottom:321.120072px;}
.y5c{bottom:321.480079px;}
.y17{bottom:323.100000px;}
.y31{bottom:349.740074px;}
.y5b{bottom:350.100083px;}
.y16{bottom:351.540000px;}
.y40{bottom:378.180039px;}
.y5a{bottom:378.540047px;}
.y15{bottom:380.160000px;}
.y30{bottom:406.800041px;}
.y59{bottom:407.160049px;}
.y14{bottom:408.600000px;}
.y3f{bottom:435.240074px;}
.y58{bottom:435.600083px;}
.y13{bottom:437.220000px;}
.y65{bottom:463.860077px;}
.y57{bottom:464.220085px;}
.y12{bottom:465.660000px;}
.y2f{bottom:492.300041px;}
.y56{bottom:492.660049px;}
.y11{bottom:494.280000px;}
.y2e{bottom:520.920043px;}
.y55{bottom:521.280052px;}
.y10{bottom:522.720000px;}
.y64{bottom:549.360077px;}
.y54{bottom:549.720085px;}
.yf{bottom:551.340000px;}
.y2d{bottom:577.980079px;}
.y53{bottom:578.340088px;}
.ye{bottom:579.780000px;}
.y2c{bottom:606.420043px;}
.y52{bottom:606.780052px;}
.yd{bottom:608.400000px;}
.y63{bottom:635.040047px;}
.y51{bottom:635.400055px;}
.yc{bottom:636.840000px;}
.y2b{bottom:663.480079px;}
.y50{bottom:663.840088px;}
.y2a{bottom:692.100083px;}
.y4f{bottom:692.460056px;}
.y3e{bottom:720.540081px;}
.yb{bottom:722.520000px;}
.y29{bottom:749.160049px;}
.y4e{bottom:749.520058px;}
.ya{bottom:750.960000px;}
.y28{bottom:777.600083px;}
.y4d{bottom:777.960056px;}
.y9{bottom:779.580000px;}
.y27{bottom:806.220051px;}
.y4c{bottom:806.580059px;}
.y26{bottom:834.660049px;}
.y4b{bottom:835.020058px;}
.y8{bottom:836.640000px;}
.y3d{bottom:863.280052px;}
.y4a{bottom:863.640060px;}
.y7{bottom:865.080000px;}
.y25{bottom:891.720051px;}
.y49{bottom:892.080059px;}
.y24{bottom:920.340054px;}
.y48{bottom:920.700061px;}
.y23{bottom:948.780053px;}
.y47{bottom:949.140060px;}
.y3c{bottom:977.400072px;}
.y46{bottom:977.760064px;}
.y22{bottom:1005.840070px;}
.y45{bottom:1006.200061px;}
.y21{bottom:1034.460074px;}
.y44{bottom:1034.820065px;}
.y1d{bottom:1044.000000px;}
.y3b{bottom:1062.900072px;}
.y43{bottom:1063.260064px;}
.y6{bottom:1064.880000px;}
.y3a{bottom:1091.520058px;}
.y42{bottom:1091.880066px;}
.y5{bottom:1093.500000px;}
.y20{bottom:1119.960065px;}
.y4{bottom:1121.220000px;}
.y1f{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y41{bottom:1148.940067px;}
.h6{height:55.303923px;}
.hd{height:55.596662px;}
.h3{height:55.598636px;}
.hc{height:57.534328px;}
.h2{height:57.535781px;}
.ha{height:64.414315px;}
.hb{height:65.992187px;}
.h7{height:67.837080px;}
.h9{height:83.395190px;}
.h5{height:83.395980px;}
.h8{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x5{left:91.080000px;}
.x7{left:128.340000px;}
.x3{left:141.120000px;}
.x4{left:157.500000px;}
.x10{left:174.240006px;}
.x8{left:223.740000px;}
.xd{left:268.200000px;}
.xa{left:286.740000px;}
.xb{left:292.320000px;}
.x9{left:297.720000px;}
.x12{left:324.720017px;}
.x6{left:329.220000px;}
.x13{left:336.060001px;}
.xc{left:369.000000px;}
.xf{left:389.160015px;}
.xe{left:410.939999px;}
.x1{left:532.800000px;}
.x14{left:649.620002px;}
.x11{left:685.440033px;}
.x15{left:739.799973px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ls2{letter-spacing:8.959156pt;}
.ls3{letter-spacing:10.879200pt;}
.ws1{word-spacing:-70.404000pt;}
.ws4{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws5{word-spacing:-14.080500pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-21.441016pt;}
._1d{margin-left:-14.448601pt;}
._1a{margin-left:-11.068728pt;}
._13{margin-left:-10.118272pt;}
._18{margin-left:-9.036605pt;}
._4{margin-left:-8.025220pt;}
._3{margin-left:-6.336047pt;}
._10{margin-left:-5.419142pt;}
._6{margin-left:-4.395111pt;}
._5{margin-left:-3.209970pt;}
._1{margin-left:-2.281237pt;}
._2{margin-left:-1.182354pt;}
._0{width:0.932084pt;}
._7{width:2.281237pt;}
._8{width:3.462830pt;}
._f{width:5.140513pt;}
._d{width:6.103855pt;}
._e{width:7.497421pt;}
._11{width:8.516400pt;}
._14{width:9.493576pt;}
._c{width:10.852025pt;}
._b{width:11.827760pt;}
._9{width:13.179335pt;}
._a{width:14.106405pt;}
._15{width:15.799339pt;}
._1b{width:16.893915pt;}
._1c{width:18.110840pt;}
._17{width:19.656752pt;}
._1f{width:22.182726pt;}
._1e{width:33.809209pt;}
._19{width:1479.012278pt;}
._12{width:1507.172434pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1e{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y39{bottom:36.480103pt;}
.y38{bottom:107.840088pt;}
.y1c{bottom:109.600000pt;}
.y66{bottom:133.280030pt;}
.y62{bottom:133.600037pt;}
.y1b{bottom:135.040000pt;}
.y37{bottom:158.720032pt;}
.y61{bottom:159.040039pt;}
.y36{bottom:184.000061pt;}
.y60{bottom:184.320069pt;}
.y1a{bottom:185.760000pt;}
.y35{bottom:209.440064pt;}
.y5f{bottom:209.760071pt;}
.y19{bottom:211.040000pt;}
.y34{bottom:234.720032pt;}
.y5e{bottom:235.040039pt;}
.y18{bottom:236.480000pt;}
.y33{bottom:260.160035pt;}
.y5d{bottom:260.480042pt;}
.y32{bottom:285.440064pt;}
.y5c{bottom:285.760071pt;}
.y17{bottom:287.200000pt;}
.y31{bottom:310.880066pt;}
.y5b{bottom:311.200074pt;}
.y16{bottom:312.480000pt;}
.y40{bottom:336.160035pt;}
.y5a{bottom:336.480042pt;}
.y15{bottom:337.920000pt;}
.y30{bottom:361.600037pt;}
.y59{bottom:361.920044pt;}
.y14{bottom:363.200000pt;}
.y3f{bottom:386.880066pt;}
.y58{bottom:387.200074pt;}
.y13{bottom:388.640000pt;}
.y65{bottom:412.320069pt;}
.y57{bottom:412.640076pt;}
.y12{bottom:413.920000pt;}
.y2f{bottom:437.600037pt;}
.y56{bottom:437.920044pt;}
.y11{bottom:439.360000pt;}
.y2e{bottom:463.040039pt;}
.y55{bottom:463.360047pt;}
.y10{bottom:464.640000pt;}
.y64{bottom:488.320069pt;}
.y54{bottom:488.640076pt;}
.yf{bottom:490.080000pt;}
.y2d{bottom:513.760071pt;}
.y53{bottom:514.080079pt;}
.ye{bottom:515.360000pt;}
.y2c{bottom:539.040039pt;}
.y52{bottom:539.360047pt;}
.yd{bottom:540.800000pt;}
.y63{bottom:564.480042pt;}
.y51{bottom:564.800049pt;}
.yc{bottom:566.080000pt;}
.y2b{bottom:589.760071pt;}
.y50{bottom:590.080079pt;}
.y2a{bottom:615.200074pt;}
.y4f{bottom:615.520050pt;}
.y3e{bottom:640.480072pt;}
.yb{bottom:642.240000pt;}
.y29{bottom:665.920044pt;}
.y4e{bottom:666.240052pt;}
.ya{bottom:667.520000pt;}
.y28{bottom:691.200074pt;}
.y4d{bottom:691.520050pt;}
.y9{bottom:692.960000pt;}
.y27{bottom:716.640046pt;}
.y4c{bottom:716.960053pt;}
.y26{bottom:741.920044pt;}
.y4b{bottom:742.240052pt;}
.y8{bottom:743.680000pt;}
.y3d{bottom:767.360047pt;}
.y4a{bottom:767.680054pt;}
.y7{bottom:768.960000pt;}
.y25{bottom:792.640046pt;}
.y49{bottom:792.960053pt;}
.y24{bottom:818.080048pt;}
.y48{bottom:818.400055pt;}
.y23{bottom:843.360047pt;}
.y47{bottom:843.680054pt;}
.y3c{bottom:868.800064pt;}
.y46{bottom:869.120057pt;}
.y22{bottom:894.080063pt;}
.y45{bottom:894.400055pt;}
.y21{bottom:919.520066pt;}
.y44{bottom:919.840058pt;}
.y1d{bottom:928.000000pt;}
.y3b{bottom:944.800064pt;}
.y43{bottom:945.120057pt;}
.y6{bottom:946.560000pt;}
.y3a{bottom:970.240052pt;}
.y42{bottom:970.560059pt;}
.y5{bottom:972.000000pt;}
.y20{bottom:995.520058pt;}
.y4{bottom:996.640000pt;}
.y1f{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y41{bottom:1021.280060pt;}
.h6{height:49.159043pt;}
.hd{height:49.419255pt;}
.h3{height:49.421010pt;}
.hc{height:51.141625pt;}
.h2{height:51.142916pt;}
.ha{height:57.257169pt;}
.hb{height:58.659722pt;}
.h7{height:60.299627pt;}
.h9{height:74.129058pt;}
.h5{height:74.129760pt;}
.h8{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x5{left:80.960000pt;}
.x7{left:114.080000pt;}
.x3{left:125.440000pt;}
.x4{left:140.000000pt;}
.x10{left:154.880005pt;}
.x8{left:198.880000pt;}
.xd{left:238.400000pt;}
.xa{left:254.880000pt;}
.xb{left:259.840000pt;}
.x9{left:264.640000pt;}
.x12{left:288.640015pt;}
.x6{left:292.640000pt;}
.x13{left:298.720001pt;}
.xc{left:328.000000pt;}
.xf{left:345.920013pt;}
.xe{left:365.279999pt;}
.x1{left:473.600000pt;}
.x14{left:577.440002pt;}
.x11{left:609.280029pt;}
.x15{left:657.599976pt;}
}




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