
    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_b35e2926064af4a5f050d811.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015137;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_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cd38bc05ab9e5b7c4bb17a82.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d1b36f7c0eb8b081b42a33b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.015137;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v2{vertical-align:-43.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.320000px;}
.v1{vertical-align:43.200000px;}
.v5{vertical-align:79.920000px;}
.v3{vertical-align:86.820000px;}
.ls14{letter-spacing:-0.379470px;}
.ls3{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.304208px;}
.ls2{letter-spacing:-0.276000px;}
.ls8{letter-spacing:-0.271200px;}
.lsd{letter-spacing:-0.168000px;}
.lsa{letter-spacing:-0.153600px;}
.ls12{letter-spacing:-0.021300px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006960px;}
.ls11{letter-spacing:0.018720px;}
.ls7{letter-spacing:0.066960px;}
.ls9{letter-spacing:0.079920px;}
.ls15{letter-spacing:0.115200px;}
.lsc{letter-spacing:0.174240px;}
.lse{letter-spacing:0.190200px;}
.lsb{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.379470px;}
.ls13{letter-spacing:0.404767px;}
.ls0{letter-spacing:0.455760px;}
.ls5{letter-spacing:89.193600px;}
.ls4{letter-spacing:89.244000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-131.760000px;}
.wsa{word-spacing:-95.904000px;}
.ws5{word-spacing:-79.686480px;}
.ws4{word-spacing:-79.480080px;}
.ws7{word-spacing:-63.847920px;}
.ws8{word-spacing:-42.677280px;}
.ws9{word-spacing:-40.087872px;}
.ws10{word-spacing:-33.308443px;}
.wsc{word-spacing:-31.936032px;}
.ws0{word-spacing:-31.888080px;}
.wse{word-spacing:-31.528080px;}
.ws6{word-spacing:-28.051920px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:1.064336px;}
.ws12{word-spacing:1.549754px;}
.wsf{word-spacing:1.641332px;}
.ws11{word-spacing:1.763521px;}
.wsb{word-spacing:2.302464px;}
.ws1{word-spacing:801.294960px;}
._5{margin-left:-4.186848px;}
._0{margin-left:-2.472816px;}
._1{margin-left:-1.152576px;}
._2{width:1.152000px;}
._8{width:3.000720px;}
._9{width:33.205200px;}
._a{width:36.083616px;}
._7{width:38.372256px;}
._4{width:388.123920px;}
._6{width:604.925472px;}
._3{width:871.488576px;}
.fc3{color:rgb(70,120,134);}
.fc1{color:transparent;}
.fc2{color:rgb(116,116,116);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fs13{font-size:100.938894px;}
.fs12{font-size:101.090681px;}
.fs8{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs10{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fse{font-size:128.160000px;}
.fs6{font-size:131.760000px;}
.fs7{font-size:131.904000px;}
.fs4{font-size:144.000000px;}
.fs2{font-size:144.144000px;}
.fsd{font-size:192.240000px;}
.fsc{font-size:192.384000px;}
.fs9{font-size:239.760000px;}
.fsa{font-size:239.904000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:12.960000px;}
.y18{bottom:15.012000px;}
.y1d{bottom:15.984000px;}
.y1f{bottom:64.116000px;}
.y17{bottom:65.340000px;}
.y7{bottom:99.324000px;}
.y2c{bottom:101.196000px;}
.y26{bottom:101.772000px;}
.y16{bottom:104.940000px;}
.y3b{bottom:108.972000px;}
.y3a{bottom:137.772000px;}
.y15{bottom:144.540000px;}
.y14{bottom:184.140000px;}
.y6{bottom:188.895000px;}
.y39{bottom:195.405000px;}
.y2b{bottom:202.110000px;}
.y1c{bottom:209.490000px;}
.y13{bottom:223.740000px;}
.y38{bottom:224.205000px;}
.y5{bottom:232.125000px;}
.y25{bottom:244.080000px;}
.y37{bottom:253.005000px;}
.y24{bottom:301.680000px;}
.y12{bottom:301.890000px;}
.y2a{bottom:304.665000px;}
.y36{bottom:310.605000px;}
.y4{bottom:335.340000px;}
.y35{bottom:339.405000px;}
.y11{bottom:341.490000px;}
.y1b{bottom:353.490000px;}
.y23{bottom:359.280000px;}
.y34{bottom:368.250000px;}
.y10{bottom:381.090000px;}
.y29{bottom:405.510000px;}
.yf{bottom:420.690000px;}
.y3{bottom:421.770000px;}
.y1a{bottom:425.520000px;}
.y33{bottom:425.850000px;}
.y32{bottom:454.650000px;}
.y22{bottom:455.115000px;}
.y31{bottom:483.450000px;}
.y19{bottom:497.520000px;}
.ye{bottom:501.015000px;}
.y28{bottom:506.310000px;}
.y2{bottom:508.170000px;}
.y21{bottom:518.325000px;}
.yd{bottom:540.615000px;}
.y30{bottom:541.080000px;}
.y2f{bottom:569.880000px;}
.y20{bottom:575.925000px;}
.yc{bottom:580.215000px;}
.y1{bottom:594.615000px;}
.y2e{bottom:598.680000px;}
.y27{bottom:607.140000px;}
.yb{bottom:619.845000px;}
.y2d{bottom:627.480000px;}
.ya{bottom:659.445000px;}
.y9{bottom:699.045000px;}
.y8{bottom:716.940000px;}
.h4{height:64.455117px;}
.h10{height:73.269492px;}
.h11{height:73.379672px;}
.h13{height:77.232054px;}
.h12{height:77.348192px;}
.h7{height:82.634766px;}
.ha{height:82.744945px;}
.hf{height:92.000039px;}
.he{height:92.110219px;}
.h5{height:100.814414px;}
.h6{height:100.924594px;}
.h3{height:116.469492px;}
.hc{height:147.089883px;}
.hb{height:147.200063px;}
.hd{height:177.979922px;}
.h8{height:183.449180px;}
.h9{height:183.559359px;}
.h2{height:220.359375px;}
.h1{height:220.469555px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xf{left:10.799979px;}
.x1{left:27.971979px;}
.x5{left:34.811979px;}
.x6{left:36.683979px;}
.x3{left:54.251979px;}
.x15{left:68.975979px;}
.x10{left:107.171979px;}
.x7{left:118.799979px;}
.x2{left:129.491979px;}
.x4{left:144.251979px;}
.x13{left:145.511979px;}
.x11{left:179.174979px;}
.x16{left:219.269979px;}
.x17{left:355.034979px;}
.x20{left:405.074979px;}
.x18{left:515.444979px;}
.x19{left:530.384979px;}
.x1a{left:554.324979px;}
.x12{left:586.409979px;}
.x14{left:627.629979px;}
.x1f{left:749.984979px;}
.x1b{left:767.984979px;}
.x8{left:844.919979px;}
.xa{left:858.599979px;}
.xd{left:866.339979px;}
.x9{left:878.759979px;}
.x1c{left:980.609979px;}
.x1d{left:995.549979px;}
.x1e{left:1019.309979px;}
.xc{left:1022.939979px;}
.xe{left:1060.019979px;}
.xb{left:1062.359979px;}
@media print{
.v2{vertical-align:-38.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.840000pt;}
.v1{vertical-align:38.400000pt;}
.v5{vertical-align:71.040000pt;}
.v3{vertical-align:77.173333pt;}
.ls14{letter-spacing:-0.337306pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.270407pt;}
.ls2{letter-spacing:-0.245333pt;}
.ls8{letter-spacing:-0.241067pt;}
.lsd{letter-spacing:-0.149333pt;}
.lsa{letter-spacing:-0.136533pt;}
.ls12{letter-spacing:-0.018933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.006187pt;}
.ls11{letter-spacing:0.016640pt;}
.ls7{letter-spacing:0.059520pt;}
.ls9{letter-spacing:0.071040pt;}
.ls15{letter-spacing:0.102400pt;}
.lsc{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.169067pt;}
.lsb{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.337306pt;}
.ls13{letter-spacing:0.359793pt;}
.ls0{letter-spacing:0.405120pt;}
.ls5{letter-spacing:79.283200pt;}
.ls4{letter-spacing:79.328000pt;}
.ws3{word-spacing:-117.120000pt;}
.wsa{word-spacing:-85.248000pt;}
.ws5{word-spacing:-70.832427pt;}
.ws4{word-spacing:-70.648960pt;}
.ws7{word-spacing:-56.753707pt;}
.ws8{word-spacing:-37.935360pt;}
.ws9{word-spacing:-35.633664pt;}
.ws10{word-spacing:-29.607505pt;}
.wsc{word-spacing:-28.387584pt;}
.ws0{word-spacing:-28.344960pt;}
.wse{word-spacing:-28.024960pt;}
.ws6{word-spacing:-24.935040pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.946077pt;}
.ws12{word-spacing:1.377559pt;}
.wsf{word-spacing:1.458962pt;}
.ws11{word-spacing:1.567575pt;}
.wsb{word-spacing:2.046635pt;}
.ws1{word-spacing:712.262187pt;}
._5{margin-left:-3.721643pt;}
._0{margin-left:-2.198059pt;}
._1{margin-left:-1.024512pt;}
._2{width:1.024000pt;}
._8{width:2.667307pt;}
._9{width:29.515733pt;}
._a{width:32.074325pt;}
._7{width:34.108672pt;}
._4{width:344.999040pt;}
._6{width:537.711531pt;}
._3{width:774.656512pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fs13{font-size:89.723461pt;}
.fs12{font-size:89.858383pt;}
.fs8{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs10{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fse{font-size:113.920000pt;}
.fs6{font-size:117.120000pt;}
.fs7{font-size:117.248000pt;}
.fs4{font-size:128.000000pt;}
.fs2{font-size:128.128000pt;}
.fsd{font-size:170.880000pt;}
.fsc{font-size:171.008000pt;}
.fs9{font-size:213.120000pt;}
.fsa{font-size:213.248000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:11.520000pt;}
.y18{bottom:13.344000pt;}
.y1d{bottom:14.208000pt;}
.y1f{bottom:56.992000pt;}
.y17{bottom:58.080000pt;}
.y7{bottom:88.288000pt;}
.y2c{bottom:89.952000pt;}
.y26{bottom:90.464000pt;}
.y16{bottom:93.280000pt;}
.y3b{bottom:96.864000pt;}
.y3a{bottom:122.464000pt;}
.y15{bottom:128.480000pt;}
.y14{bottom:163.680000pt;}
.y6{bottom:167.906667pt;}
.y39{bottom:173.693333pt;}
.y2b{bottom:179.653333pt;}
.y1c{bottom:186.213333pt;}
.y13{bottom:198.880000pt;}
.y38{bottom:199.293333pt;}
.y5{bottom:206.333333pt;}
.y25{bottom:216.960000pt;}
.y37{bottom:224.893333pt;}
.y24{bottom:268.160000pt;}
.y12{bottom:268.346667pt;}
.y2a{bottom:270.813333pt;}
.y36{bottom:276.093333pt;}
.y4{bottom:298.080000pt;}
.y35{bottom:301.693333pt;}
.y11{bottom:303.546667pt;}
.y1b{bottom:314.213333pt;}
.y23{bottom:319.360000pt;}
.y34{bottom:327.333333pt;}
.y10{bottom:338.746667pt;}
.y29{bottom:360.453333pt;}
.yf{bottom:373.946667pt;}
.y3{bottom:374.906667pt;}
.y1a{bottom:378.240000pt;}
.y33{bottom:378.533333pt;}
.y32{bottom:404.133333pt;}
.y22{bottom:404.546667pt;}
.y31{bottom:429.733333pt;}
.y19{bottom:442.240000pt;}
.ye{bottom:445.346667pt;}
.y28{bottom:450.053333pt;}
.y2{bottom:451.706667pt;}
.y21{bottom:460.733333pt;}
.yd{bottom:480.546667pt;}
.y30{bottom:480.960000pt;}
.y2f{bottom:506.560000pt;}
.y20{bottom:511.933333pt;}
.yc{bottom:515.746667pt;}
.y1{bottom:528.546667pt;}
.y2e{bottom:532.160000pt;}
.y27{bottom:539.680000pt;}
.yb{bottom:550.973333pt;}
.y2d{bottom:557.760000pt;}
.ya{bottom:586.173333pt;}
.y9{bottom:621.373333pt;}
.y8{bottom:637.280000pt;}
.h4{height:57.293437pt;}
.h10{height:65.128438pt;}
.h11{height:65.226375pt;}
.h13{height:68.650714pt;}
.h12{height:68.753949pt;}
.h7{height:73.453125pt;}
.ha{height:73.551063pt;}
.hf{height:81.777812pt;}
.he{height:81.875750pt;}
.h5{height:89.612812pt;}
.h6{height:89.710750pt;}
.h3{height:103.528438pt;}
.hc{height:130.746563pt;}
.hb{height:130.844500pt;}
.hd{height:158.204375pt;}
.h8{height:163.065937pt;}
.h9{height:163.163875pt;}
.h2{height:195.875000pt;}
.h1{height:195.972937pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xf{left:9.599981pt;}
.x1{left:24.863981pt;}
.x5{left:30.943981pt;}
.x6{left:32.607981pt;}
.x3{left:48.223981pt;}
.x15{left:61.311981pt;}
.x10{left:95.263981pt;}
.x7{left:105.599981pt;}
.x2{left:115.103981pt;}
.x4{left:128.223981pt;}
.x13{left:129.343981pt;}
.x11{left:159.266648pt;}
.x16{left:194.906648pt;}
.x17{left:315.586648pt;}
.x20{left:360.066648pt;}
.x18{left:458.173314pt;}
.x19{left:471.453314pt;}
.x1a{left:492.733314pt;}
.x12{left:521.253314pt;}
.x14{left:557.893314pt;}
.x1f{left:666.653314pt;}
.x1b{left:682.653314pt;}
.x8{left:751.039981pt;}
.xa{left:763.199981pt;}
.xd{left:770.079981pt;}
.x9{left:781.119981pt;}
.x1c{left:871.653314pt;}
.x1d{left:884.933314pt;}
.x1e{left:906.053314pt;}
.xc{left:909.279981pt;}
.xe{left:942.239981pt;}
.xb{left:944.319981pt;}
}




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