
    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_4b3c77aebfe9d4913e888e4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_8225e54518a1eacc80fc5290.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_1d9a08d1790c80fc70a3d00e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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;}
.ls11{letter-spacing:-9.360000px;}
.ls3{letter-spacing:-0.325200px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.325200px;}
.ls2{letter-spacing:19.929600px;}
.ls4{letter-spacing:20.016000px;}
.lsf{letter-spacing:31.099968px;}
.lse{letter-spacing:31.165920px;}
.ls10{letter-spacing:31.285920px;}
.ls9{letter-spacing:34.617600px;}
.lsa{letter-spacing:34.704000px;}
.lsc{letter-spacing:52.864128px;}
.lsb{letter-spacing:52.930080px;}
.ls13{letter-spacing:68.025600px;}
.ls1{letter-spacing:68.076000px;}
.lsd{letter-spacing:76.593600px;}
.ls8{letter-spacing:76.644000px;}
.ls7{letter-spacing:115.233600px;}
.ls6{letter-spacing:115.320000px;}
.ls5{letter-spacing:157.284000px;}
.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:-80.104032px;}
.ws6{word-spacing:-80.064000px;}
.ws5{word-spacing:-73.498752px;}
.ws9{word-spacing:-73.458720px;}
.ws8{word-spacing:-64.138752px;}
.ws4{word-spacing:-53.442720px;}
.wsa{word-spacing:-46.677312px;}
.ws7{word-spacing:-46.637280px;}
.ws1{word-spacing:-40.032000px;}
.ws3{word-spacing:-0.192720px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-29.996352px;}
._a{margin-left:-27.625536px;}
._11{margin-left:-23.928576px;}
._10{margin-left:-20.437440px;}
._9{margin-left:-19.141056px;}
._b{margin-left:-13.393440px;}
._8{margin-left:-11.905920px;}
._1{margin-left:-10.656000px;}
._0{margin-left:-9.216000px;}
._2{margin-left:-8.064000px;}
._c{margin-left:-6.542640px;}
._3{margin-left:-4.896000px;}
._f{margin-left:-3.652560px;}
._6{margin-left:-2.551680px;}
._4{margin-left:-1.296000px;}
._7{width:1.537920px;}
._d{width:2.628000px;}
._e{width:48.255072px;}
.fc2{color:rgb(46,45,98);}
.fc4{color:rgb(97,97,97);}
.fc1{color:rgb(98,98,98);}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(46,44,97);}
.fc0{color:rgb(0,32,96);}
.fsc{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fsa{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs4{font-size:192.240000px;}
.fs5{font-size:192.384000px;}
.fse{font-size:264.240000px;}
.fs3{font-size:264.384000px;}
.fs0{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.y4f{bottom:-20.124000px;}
.y0{bottom:0.000000px;}
.y11{bottom:5.112000px;}
.y10{bottom:37.512000px;}
.y13{bottom:62.712000px;}
.y1e{bottom:69.912000px;}
.y12{bottom:95.112000px;}
.y1d{bottom:102.312000px;}
.y33{bottom:120.312000px;}
.y6{bottom:131.976000px;}
.y4e{bottom:132.372000px;}
.y2d{bottom:144.396000px;}
.y32{bottom:152.715000px;}
.y2f{bottom:162.825000px;}
.y29{bottom:166.710000px;}
.y5{bottom:175.170000px;}
.yf{bottom:190.005000px;}
.y48{bottom:190.470000px;}
.y1c{bottom:195.765000px;}
.y28{bottom:214.095000px;}
.y40{bottom:220.935000px;}
.y3d{bottom:227.595000px;}
.y47{bottom:235.875000px;}
.y4{bottom:241.410000px;}
.y1b{bottom:246.165000px;}
.ye{bottom:247.605000px;}
.y27{bottom:261.435000px;}
.y3f{bottom:266.295000px;}
.y2e{bottom:271.335000px;}
.y42{bottom:281.235000px;}
.y3c{bottom:282.855000px;}
.y46{bottom:296.175000px;}
.y1a{bottom:296.565000px;}
.yd{bottom:305.205000px;}
.y26{bottom:308.955000px;}
.y3b{bottom:323.175000px;}
.y3e{bottom:326.595000px;}
.y3{bottom:327.810000px;}
.y43{bottom:341.535000px;}
.y19{bottom:347.010000px;}
.y31{bottom:350.790000px;}
.y25{bottom:356.325000px;}
.y2a{bottom:357.765000px;}
.yc{bottom:362.850000px;}
.y35{bottom:371.985000px;}
.y3a{bottom:378.645000px;}
.y30{bottom:383.190000px;}
.y41{bottom:386.925000px;}
.y18{bottom:397.410000px;}
.y24{bottom:403.665000px;}
.y2{bottom:414.255000px;}
.y2b{bottom:414.870000px;}
.y39{bottom:418.965000px;}
.yb{bottom:420.450000px;}
.y34{bottom:432.285000px;}
.y23{bottom:436.065000px;}
.y17{bottom:447.810000px;}
.y4d{bottom:463.605000px;}
.y38{bottom:474.225000px;}
.ya{bottom:478.080000px;}
.y22{bottom:483.585000px;}
.y4c{bottom:488.805000px;}
.y16{bottom:498.240000px;}
.y1{bottom:500.655000px;}
.y4b{bottom:528.945000px;}
.y37{bottom:529.530000px;}
.y21{bottom:530.970000px;}
.y9{bottom:535.680000px;}
.y15{bottom:548.640000px;}
.y20{bottom:563.370000px;}
.y2c{bottom:566.100000px;}
.y4a{bottom:569.310000px;}
.y36{bottom:569.850000px;}
.y8{bottom:593.280000px;}
.y49{bottom:594.510000px;}
.y14{bottom:599.040000px;}
.y45{bottom:632.190000px;}
.y1f{bottom:667.875000px;}
.y7{bottom:699.555000px;}
.y44{bottom:703.515000px;}
.hf{height:69.996445px;}
.h10{height:70.101703px;}
.h7{height:78.943359px;}
.h8{height:79.048617px;}
.hd{height:87.890273px;}
.hc{height:87.995531px;}
.hb{height:89.064492px;}
.he{height:89.171156px;}
.h3{height:105.257812px;}
.h9{height:122.625352px;}
.ha{height:122.730609px;}
.h11{height:124.263633px;}
.h12{height:124.370297px;}
.h5{height:140.519180px;}
.h6{height:140.624437px;}
.h13{height:231.080977px;}
.h4{height:231.206906px;}
.h1{height:251.859375px;}
.h2{height:251.985305px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:58.463979px;}
.x3{left:60.515979px;}
.x1{left:69.047979px;}
.x4{left:94.355979px;}
.x7{left:109.799979px;}
.x5{left:114.515979px;}
.xc{left:125.603979px;}
.xb{left:128.087979px;}
.x8{left:136.799979px;}
.x6{left:148.355979px;}
.x9{left:163.829979px;}
.xa{left:190.829979px;}
.x14{left:686.804979px;}
.x15{left:713.804979px;}
.xd{left:739.904979px;}
.xe{left:749.489979px;}
.x12{left:766.904979px;}
.xf{left:776.489979px;}
.x13{left:793.904979px;}
.x10{left:803.489979px;}
.x11{left:830.519979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-8.320000pt;}
.ls3{letter-spacing:-0.289067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.289067pt;}
.ls2{letter-spacing:17.715200pt;}
.ls4{letter-spacing:17.792000pt;}
.lsf{letter-spacing:27.644416pt;}
.lse{letter-spacing:27.703040pt;}
.ls10{letter-spacing:27.809707pt;}
.ls9{letter-spacing:30.771200pt;}
.lsa{letter-spacing:30.848000pt;}
.lsc{letter-spacing:46.990336pt;}
.lsb{letter-spacing:47.048960pt;}
.ls13{letter-spacing:60.467200pt;}
.ls1{letter-spacing:60.512000pt;}
.lsd{letter-spacing:68.083200pt;}
.ls8{letter-spacing:68.128000pt;}
.ls7{letter-spacing:102.429867pt;}
.ls6{letter-spacing:102.506667pt;}
.ls5{letter-spacing:139.808000pt;}
.ws0{word-spacing:-71.203584pt;}
.ws6{word-spacing:-71.168000pt;}
.ws5{word-spacing:-65.332224pt;}
.ws9{word-spacing:-65.296640pt;}
.ws8{word-spacing:-57.012224pt;}
.ws4{word-spacing:-47.504640pt;}
.wsa{word-spacing:-41.490944pt;}
.ws7{word-spacing:-41.455360pt;}
.ws1{word-spacing:-35.584000pt;}
.ws3{word-spacing:-0.171307pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-26.663424pt;}
._a{margin-left:-24.556032pt;}
._11{margin-left:-21.269845pt;}
._10{margin-left:-18.166613pt;}
._9{margin-left:-17.014272pt;}
._b{margin-left:-11.905280pt;}
._8{margin-left:-10.583040pt;}
._1{margin-left:-9.472000pt;}
._0{margin-left:-8.192000pt;}
._2{margin-left:-7.168000pt;}
._c{margin-left:-5.815680pt;}
._3{margin-left:-4.352000pt;}
._f{margin-left:-3.246720pt;}
._6{margin-left:-2.268160pt;}
._4{margin-left:-1.152000pt;}
._7{width:1.367040pt;}
._d{width:2.336000pt;}
._e{width:42.893397pt;}
.fsc{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fsa{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs4{font-size:170.880000pt;}
.fs5{font-size:171.008000pt;}
.fse{font-size:234.880000pt;}
.fs3{font-size:235.008000pt;}
.fs0{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.y4f{bottom:-17.888000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:4.544000pt;}
.y10{bottom:33.344000pt;}
.y13{bottom:55.744000pt;}
.y1e{bottom:62.144000pt;}
.y12{bottom:84.544000pt;}
.y1d{bottom:90.944000pt;}
.y33{bottom:106.944000pt;}
.y6{bottom:117.312000pt;}
.y4e{bottom:117.664000pt;}
.y2d{bottom:128.352000pt;}
.y32{bottom:135.746667pt;}
.y2f{bottom:144.733333pt;}
.y29{bottom:148.186667pt;}
.y5{bottom:155.706667pt;}
.yf{bottom:168.893333pt;}
.y48{bottom:169.306667pt;}
.y1c{bottom:174.013333pt;}
.y28{bottom:190.306667pt;}
.y40{bottom:196.386667pt;}
.y3d{bottom:202.306667pt;}
.y47{bottom:209.666667pt;}
.y4{bottom:214.586667pt;}
.y1b{bottom:218.813333pt;}
.ye{bottom:220.093333pt;}
.y27{bottom:232.386667pt;}
.y3f{bottom:236.706667pt;}
.y2e{bottom:241.186667pt;}
.y42{bottom:249.986667pt;}
.y3c{bottom:251.426667pt;}
.y46{bottom:263.266667pt;}
.y1a{bottom:263.613333pt;}
.yd{bottom:271.293333pt;}
.y26{bottom:274.626667pt;}
.y3b{bottom:287.266667pt;}
.y3e{bottom:290.306667pt;}
.y3{bottom:291.386667pt;}
.y43{bottom:303.586667pt;}
.y19{bottom:308.453333pt;}
.y31{bottom:311.813333pt;}
.y25{bottom:316.733333pt;}
.y2a{bottom:318.013333pt;}
.yc{bottom:322.533333pt;}
.y35{bottom:330.653333pt;}
.y3a{bottom:336.573333pt;}
.y30{bottom:340.613333pt;}
.y41{bottom:343.933333pt;}
.y18{bottom:353.253333pt;}
.y24{bottom:358.813333pt;}
.y2{bottom:368.226667pt;}
.y2b{bottom:368.773333pt;}
.y39{bottom:372.413333pt;}
.yb{bottom:373.733333pt;}
.y34{bottom:384.253333pt;}
.y23{bottom:387.613333pt;}
.y17{bottom:398.053333pt;}
.y4d{bottom:412.093333pt;}
.y38{bottom:421.533333pt;}
.ya{bottom:424.960000pt;}
.y22{bottom:429.853333pt;}
.y4c{bottom:434.493333pt;}
.y16{bottom:442.880000pt;}
.y1{bottom:445.026667pt;}
.y4b{bottom:470.173333pt;}
.y37{bottom:470.693333pt;}
.y21{bottom:471.973333pt;}
.y9{bottom:476.160000pt;}
.y15{bottom:487.680000pt;}
.y20{bottom:500.773333pt;}
.y2c{bottom:503.200000pt;}
.y4a{bottom:506.053333pt;}
.y36{bottom:506.533333pt;}
.y8{bottom:527.360000pt;}
.y49{bottom:528.453333pt;}
.y14{bottom:532.480000pt;}
.y45{bottom:561.946667pt;}
.y1f{bottom:593.666667pt;}
.y7{bottom:621.826667pt;}
.y44{bottom:625.346667pt;}
.hf{height:62.219062pt;}
.h10{height:62.312625pt;}
.h7{height:70.171875pt;}
.h8{height:70.265437pt;}
.hd{height:78.124687pt;}
.hc{height:78.218250pt;}
.hb{height:79.168437pt;}
.he{height:79.263250pt;}
.h3{height:93.562500pt;}
.h9{height:109.000312pt;}
.ha{height:109.093875pt;}
.h11{height:110.456562pt;}
.h12{height:110.551375pt;}
.h5{height:124.905938pt;}
.h6{height:124.999500pt;}
.h13{height:205.405313pt;}
.h4{height:205.517250pt;}
.h1{height:223.875000pt;}
.h2{height:223.986938pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:51.967981pt;}
.x3{left:53.791981pt;}
.x1{left:61.375981pt;}
.x4{left:83.871981pt;}
.x7{left:97.599981pt;}
.x5{left:101.791981pt;}
.xc{left:111.647981pt;}
.xb{left:113.855981pt;}
.x8{left:121.599981pt;}
.x6{left:131.871981pt;}
.x9{left:145.626648pt;}
.xa{left:169.626648pt;}
.x14{left:610.493314pt;}
.x15{left:634.493314pt;}
.xd{left:657.693314pt;}
.xe{left:666.213314pt;}
.x12{left:681.693314pt;}
.xf{left:690.213314pt;}
.x13{left:705.693314pt;}
.x10{left:714.213314pt;}
.x11{left:738.239981pt;}
}




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