
    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_53aa9ec9b3973e7e3030594a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.970703;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_db8d64048146d5cd91c27a89.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b082de3d1504c47a82e61445.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_0e0f36821e6d259a9737095f.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_405250b01f42ba421967e5c6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_804f6b94c63f361af0c924d9.woff')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.034560px;}
.ls6{letter-spacing:-0.025920px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.106800px;}
.lse{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.924000px;}
.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;}
}
.ws10{word-spacing:-16.865400px;}
.wse{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.864000px;}
.ws0{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.wsb{word-spacing:-10.980000px;}
.ws5{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.wsf{word-spacing:0.000000px;}
._17{margin-left:-4.570080px;}
._b{margin-left:-3.510720px;}
._8{margin-left:-2.327520px;}
._2{margin-left:-1.254240px;}
._0{width:1.075680px;}
._1{width:2.203200px;}
._7{width:3.598800px;}
._6{width:4.721040px;}
._5{width:6.274800px;}
._9{width:7.410240px;}
._c{width:8.817600px;}
._16{width:10.072320px;}
._d{width:11.393280px;}
._e{width:12.718080px;}
._a{width:13.864320px;}
._f{width:15.301920px;}
._13{width:17.578560px;}
._14{width:19.474560px;}
._18{width:20.582400px;}
._12{width:22.256640px;}
._15{width:23.397120px;}
._10{width:24.570720px;}
._11{width:25.671840px;}
._4{width:33.300000px;}
._3{width:1099.168800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.300000px;}
.y4{bottom:55.620000px;}
.y3e{bottom:113.220000px;}
.y75{bottom:115.020000px;}
.y3d{bottom:132.300000px;}
.y74{bottom:133.920000px;}
.y3c{bottom:151.230000px;}
.y73{bottom:153.030000px;}
.y3b{bottom:170.310000px;}
.y72{bottom:171.930000px;}
.y3a{bottom:189.210000px;}
.y71{bottom:191.010000px;}
.y39{bottom:208.110000px;}
.y70{bottom:209.910000px;}
.y38{bottom:227.190000px;}
.y6f{bottom:228.810000px;}
.y37{bottom:246.090000px;}
.y6e{bottom:247.890000px;}
.y36{bottom:265.170000px;}
.y6d{bottom:266.790000px;}
.y35{bottom:284.070000px;}
.y6c{bottom:285.870000px;}
.y34{bottom:302.970000px;}
.y6b{bottom:304.770000px;}
.y33{bottom:322.050000px;}
.y6a{bottom:323.670000px;}
.y32{bottom:340.950000px;}
.y69{bottom:342.750000px;}
.y31{bottom:360.030000px;}
.y68{bottom:361.650000px;}
.y30{bottom:378.930000px;}
.y67{bottom:380.730000px;}
.y2f{bottom:397.515000px;}
.y66{bottom:399.675000px;}
.y2e{bottom:415.155000px;}
.y65{bottom:418.755000px;}
.y2d{bottom:432.975000px;}
.y64{bottom:437.655000px;}
.y2c{bottom:446.835000px;}
.y63{bottom:456.555000px;}
.y2b{bottom:461.415000px;}
.y62{bottom:475.635000px;}
.y2a{bottom:478.515000px;}
.y61{bottom:494.535000px;}
.y29{bottom:495.795000px;}
.y28{bottom:513.075000px;}
.y60{bottom:513.615000px;}
.y27{bottom:530.355000px;}
.y5f{bottom:532.515000px;}
.y26{bottom:547.635000px;}
.y5e{bottom:551.415000px;}
.y25{bottom:564.915000px;}
.y5d{bottom:570.495000px;}
.y24{bottom:582.015000px;}
.y5c{bottom:589.395000px;}
.y23{bottom:599.295000px;}
.y5b{bottom:608.475000px;}
.y22{bottom:616.575000px;}
.y5a{bottom:627.375000px;}
.y21{bottom:633.855000px;}
.y59{bottom:646.305000px;}
.y20{bottom:651.165000px;}
.y58{bottom:665.385000px;}
.y1f{bottom:668.445000px;}
.y57{bottom:684.285000px;}
.y1e{bottom:685.545000px;}
.y1d{bottom:702.825000px;}
.y56{bottom:703.365000px;}
.y1c{bottom:720.105000px;}
.y55{bottom:722.265000px;}
.y1b{bottom:737.385000px;}
.y54{bottom:741.165000px;}
.y1a{bottom:754.665000px;}
.y53{bottom:760.245000px;}
.y19{bottom:771.945000px;}
.y52{bottom:779.145000px;}
.y18{bottom:789.045000px;}
.y51{bottom:798.225000px;}
.y17{bottom:806.325000px;}
.y50{bottom:817.125000px;}
.y16{bottom:823.965000px;}
.y4f{bottom:836.025000px;}
.y15{bottom:842.505000px;}
.y4e{bottom:855.105000px;}
.y14{bottom:859.785000px;}
.y4d{bottom:874.005000px;}
.y13{bottom:877.065000px;}
.y4c{bottom:893.130000px;}
.y12{bottom:894.390000px;}
.y11{bottom:911.670000px;}
.y4b{bottom:912.030000px;}
.y10{bottom:929.310000px;}
.y4a{bottom:931.110000px;}
.yf{bottom:948.210000px;}
.y49{bottom:950.010000px;}
.ye{bottom:967.290000px;}
.y48{bottom:968.910000px;}
.yd{bottom:986.190000px;}
.y47{bottom:987.990000px;}
.yc{bottom:1005.630000px;}
.y46{bottom:1006.890000px;}
.y45{bottom:1025.970000px;}
.yb{bottom:1028.130000px;}
.y44{bottom:1044.870000px;}
.ya{bottom:1050.450000px;}
.y43{bottom:1063.770000px;}
.y9{bottom:1072.050000px;}
.y42{bottom:1082.850000px;}
.y8{bottom:1089.330000px;}
.y41{bottom:1101.750000px;}
.y7{bottom:1106.610000px;}
.y40{bottom:1120.830000px;}
.y6{bottom:1123.710000px;}
.y3f{bottom:1139.730000px;}
.y5{bottom:1140.990000px;}
.y3{bottom:1172.700000px;}
.y1{bottom:1186.560000px;}
.h2{height:23.400000px;}
.hc{height:34.036523px;}
.h5{height:36.768867px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.h3{height:43.302656px;}
.hb{height:45.549492px;}
.he{height:46.251562px;}
.h8{height:46.736719px;}
.hd{height:47.998125px;}
.ha{height:48.027656px;}
.hf{height:50.488594px;}
.h9{height:53.224453px;}
.h7{height:54.864844px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:53.100000px;}
.w3{width:619.350000px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:11.520000px;}
.x5{left:108.035987px;}
.x7{left:112.535987px;}
.x1{left:116.136000px;}
.xa{left:140.975987px;}
.x13{left:150.509987px;}
.x9{left:157.889987px;}
.x12{left:162.029987px;}
.xe{left:163.469987px;}
.x3{left:169.230000px;}
.xd{left:179.669987px;}
.xc{left:216.569987px;}
.x8{left:293.654987px;}
.xf{left:356.654987px;}
.xb{left:408.134987px;}
.x11{left:418.394987px;}
.x10{left:420.014987px;}
.x6{left:446.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls6{letter-spacing:-0.023040pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.821333pt;}
.ws10{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.101333pt;}
.ws0{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.wsb{word-spacing:-9.760000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsf{word-spacing:0.000000pt;}
._17{margin-left:-4.062293pt;}
._b{margin-left:-3.120640pt;}
._8{margin-left:-2.068907pt;}
._2{margin-left:-1.114880pt;}
._0{width:0.956160pt;}
._1{width:1.958400pt;}
._7{width:3.198933pt;}
._6{width:4.196480pt;}
._5{width:5.577600pt;}
._9{width:6.586880pt;}
._c{width:7.837867pt;}
._16{width:8.953173pt;}
._d{width:10.127360pt;}
._e{width:11.304960pt;}
._a{width:12.323840pt;}
._f{width:13.601707pt;}
._13{width:15.625387pt;}
._14{width:17.310720pt;}
._18{width:18.295467pt;}
._12{width:19.783680pt;}
._15{width:20.797440pt;}
._10{width:21.840640pt;}
._11{width:22.819413pt;}
._4{width:29.600000pt;}
._3{width:977.038933pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.600000pt;}
.y4{bottom:49.440000pt;}
.y3e{bottom:100.640000pt;}
.y75{bottom:102.240000pt;}
.y3d{bottom:117.600000pt;}
.y74{bottom:119.040000pt;}
.y3c{bottom:134.426667pt;}
.y73{bottom:136.026667pt;}
.y3b{bottom:151.386667pt;}
.y72{bottom:152.826667pt;}
.y3a{bottom:168.186667pt;}
.y71{bottom:169.786667pt;}
.y39{bottom:184.986667pt;}
.y70{bottom:186.586667pt;}
.y38{bottom:201.946667pt;}
.y6f{bottom:203.386667pt;}
.y37{bottom:218.746667pt;}
.y6e{bottom:220.346667pt;}
.y36{bottom:235.706667pt;}
.y6d{bottom:237.146667pt;}
.y35{bottom:252.506667pt;}
.y6c{bottom:254.106667pt;}
.y34{bottom:269.306667pt;}
.y6b{bottom:270.906667pt;}
.y33{bottom:286.266667pt;}
.y6a{bottom:287.706667pt;}
.y32{bottom:303.066667pt;}
.y69{bottom:304.666667pt;}
.y31{bottom:320.026667pt;}
.y68{bottom:321.466667pt;}
.y30{bottom:336.826667pt;}
.y67{bottom:338.426667pt;}
.y2f{bottom:353.346667pt;}
.y66{bottom:355.266667pt;}
.y2e{bottom:369.026667pt;}
.y65{bottom:372.226667pt;}
.y2d{bottom:384.866667pt;}
.y64{bottom:389.026667pt;}
.y2c{bottom:397.186667pt;}
.y63{bottom:405.826667pt;}
.y2b{bottom:410.146667pt;}
.y62{bottom:422.786667pt;}
.y2a{bottom:425.346667pt;}
.y61{bottom:439.586667pt;}
.y29{bottom:440.706667pt;}
.y28{bottom:456.066667pt;}
.y60{bottom:456.546667pt;}
.y27{bottom:471.426667pt;}
.y5f{bottom:473.346667pt;}
.y26{bottom:486.786667pt;}
.y5e{bottom:490.146667pt;}
.y25{bottom:502.146667pt;}
.y5d{bottom:507.106667pt;}
.y24{bottom:517.346667pt;}
.y5c{bottom:523.906667pt;}
.y23{bottom:532.706667pt;}
.y5b{bottom:540.866667pt;}
.y22{bottom:548.066667pt;}
.y5a{bottom:557.666667pt;}
.y21{bottom:563.426667pt;}
.y59{bottom:574.493333pt;}
.y20{bottom:578.813333pt;}
.y58{bottom:591.453333pt;}
.y1f{bottom:594.173333pt;}
.y57{bottom:608.253333pt;}
.y1e{bottom:609.373333pt;}
.y1d{bottom:624.733333pt;}
.y56{bottom:625.213333pt;}
.y1c{bottom:640.093333pt;}
.y55{bottom:642.013333pt;}
.y1b{bottom:655.453333pt;}
.y54{bottom:658.813333pt;}
.y1a{bottom:670.813333pt;}
.y53{bottom:675.773333pt;}
.y19{bottom:686.173333pt;}
.y52{bottom:692.573333pt;}
.y18{bottom:701.373333pt;}
.y51{bottom:709.533333pt;}
.y17{bottom:716.733333pt;}
.y50{bottom:726.333333pt;}
.y16{bottom:732.413333pt;}
.y4f{bottom:743.133333pt;}
.y15{bottom:748.893333pt;}
.y4e{bottom:760.093333pt;}
.y14{bottom:764.253333pt;}
.y4d{bottom:776.893333pt;}
.y13{bottom:779.613333pt;}
.y4c{bottom:793.893333pt;}
.y12{bottom:795.013333pt;}
.y11{bottom:810.373333pt;}
.y4b{bottom:810.693333pt;}
.y10{bottom:826.053333pt;}
.y4a{bottom:827.653333pt;}
.yf{bottom:842.853333pt;}
.y49{bottom:844.453333pt;}
.ye{bottom:859.813333pt;}
.y48{bottom:861.253333pt;}
.yd{bottom:876.613333pt;}
.y47{bottom:878.213333pt;}
.yc{bottom:893.893333pt;}
.y46{bottom:895.013333pt;}
.y45{bottom:911.973333pt;}
.yb{bottom:913.893333pt;}
.y44{bottom:928.773333pt;}
.ya{bottom:933.733333pt;}
.y43{bottom:945.573333pt;}
.y9{bottom:952.933333pt;}
.y42{bottom:962.533333pt;}
.y8{bottom:968.293333pt;}
.y41{bottom:979.333333pt;}
.y7{bottom:983.653333pt;}
.y40{bottom:996.293333pt;}
.y6{bottom:998.853333pt;}
.y3f{bottom:1013.093333pt;}
.y5{bottom:1014.213333pt;}
.y3{bottom:1042.400000pt;}
.y1{bottom:1054.720000pt;}
.h2{height:20.800000pt;}
.hc{height:30.254687pt;}
.h5{height:32.683437pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.h3{height:38.491250pt;}
.hb{height:40.488438pt;}
.he{height:41.112500pt;}
.h8{height:41.543750pt;}
.hd{height:42.665000pt;}
.ha{height:42.691250pt;}
.hf{height:44.878750pt;}
.h9{height:47.310625pt;}
.h7{height:48.768750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:47.200000pt;}
.w3{width:550.533333pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:10.240000pt;}
.x5{left:96.031988pt;}
.x7{left:100.031988pt;}
.x1{left:103.232000pt;}
.xa{left:125.311988pt;}
.x13{left:133.786655pt;}
.x9{left:140.346655pt;}
.x12{left:144.026655pt;}
.xe{left:145.306655pt;}
.x3{left:150.426667pt;}
.xd{left:159.706655pt;}
.xc{left:192.506655pt;}
.x8{left:261.026655pt;}
.xf{left:317.026655pt;}
.xb{left:362.786655pt;}
.x11{left:371.906655pt;}
.x10{left:373.346655pt;}
.x6{left:397.053322pt;}
}




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