
    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_5f548e5dfc57dce15107138e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8ee3328e8cd6e6598b884cc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a6964a442fb845a7014d9897.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_00e792c910102660a6066382.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7f9c80202c934393733f8ea6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.776855;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_1b51af4f91927eedec897fb9.woff2')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_83afd17b1421e1b17b1c703f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.334200px;}
.ls7{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.051840px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.334200px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:42.841920px;}
.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;}
}
.wsa{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.254600px;}
.ws7{word-spacing:-16.174200px;}
.ws6{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.788160px;}
.ws8{word-spacing:-15.505800px;}
.ws3{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.220000px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-4.911120px;}
._9{margin-left:-3.874320px;}
._8{margin-left:-2.569680px;}
._0{margin-left:-1.324800px;}
._1{width:1.314720px;}
._a{width:2.390400px;}
._7{width:3.525840px;}
._d{width:4.840560px;}
._4{width:6.155280px;}
._16{width:7.362720px;}
._14{width:8.611200px;}
._15{width:10.315680px;}
._13{width:12.585600px;}
._17{width:13.837440px;}
._c{width:15.955920px;}
._b{width:17.210880px;}
._5{width:19.182960px;}
._6{width:20.378160px;}
._19{width:22.050720px;}
._12{width:23.436000px;}
._2{width:25.158960px;}
._3{width:26.234640px;}
._10{width:28.413360px;}
._11{width:35.318160px;}
._f{width:36.882000px;}
._e{width:38.365920px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.240000px;}
.y10{bottom:14.400000px;}
.y17{bottom:21.240000px;}
.y30{bottom:29.340000px;}
.y16{bottom:38.550000px;}
.y2f{bottom:46.620000px;}
.y15{bottom:55.830000px;}
.y2e{bottom:63.900000px;}
.y14{bottom:73.110000px;}
.y2d{bottom:81.180000px;}
.y13{bottom:90.390000px;}
.y18{bottom:95.430000px;}
.y2c{bottom:98.505000px;}
.y12{bottom:105.330000px;}
.y2b{bottom:115.785000px;}
.y2a{bottom:132.885000px;}
.y29{bottom:150.165000px;}
.y86{bottom:157.140000px;}
.y3a{bottom:159.345000px;}
.y74{bottom:162.750000px;}
.yaa{bottom:167.430000px;}
.y28{bottom:167.445000px;}
.y39{bottom:176.445000px;}
.y73{bottom:180.930000px;}
.y85{bottom:184.170000px;}
.y42{bottom:184.530000px;}
.y27{bottom:184.725000px;}
.ya9{bottom:185.610000px;}
.y38{bottom:193.725000px;}
.y72{bottom:199.110000px;}
.y26{bottom:202.005000px;}
.y84{bottom:202.350000px;}
.y41{bottom:203.610000px;}
.y37{bottom:211.005000px;}
.ya8{bottom:212.790000px;}
.y71{bottom:217.110000px;}
.y25{bottom:219.105000px;}
.y40{bottom:222.510000px;}
.y83{bottom:226.110000px;}
.y36{bottom:228.285000px;}
.y24{bottom:236.385000px;}
.ya7{bottom:240.510000px;}
.y3f{bottom:241.410000px;}
.y70{bottom:244.290000px;}
.y35{bottom:245.565000px;}
.y23{bottom:253.665000px;}
.ya6{bottom:258.690000px;}
.y3e{bottom:260.490000px;}
.y34{bottom:262.845000px;}
.y22{bottom:270.945000px;}
.y6f{bottom:272.190000px;}
.ya5{bottom:276.870000px;}
.y33{bottom:279.945000px;}
.y3b{bottom:285.165000px;}
.y3d{bottom:288.210000px;}
.y21{bottom:288.225000px;}
.y6e{bottom:290.370000px;}
.y32{bottom:294.885000px;}
.ya4{bottom:295.050000px;}
.y20{bottom:305.505000px;}
.y3c{bottom:306.930000px;}
.ya3{bottom:313.050000px;}
.y6d{bottom:317.370000px;}
.y1f{bottom:322.605000px;}
.y19{bottom:323.310000px;}
.ya2{bottom:331.230000px;}
.y6c{bottom:335.550000px;}
.y1e{bottom:339.915000px;}
.ya1{bottom:349.410000px;}
.y6b{bottom:353.730000px;}
.y1d{bottom:357.195000px;}
.ya0{bottom:367.410000px;}
.y1c{bottom:374.475000px;}
.y6a{bottom:380.730000px;}
.y9f{bottom:385.590000px;}
.y1b{bottom:391.755000px;}
.y69{bottom:398.910000px;}
.y9e{bottom:403.590000px;}
.y1a{bottom:406.695000px;}
.y68{bottom:417.135000px;}
.y9d{bottom:421.815000px;}
.y9c{bottom:439.995000px;}
.y67{bottom:444.135000px;}
.y9b{bottom:457.995000px;}
.y66{bottom:471.315000px;}
.y9a{bottom:476.175000px;}
.yc7{bottom:490.575000px;}
.y99{bottom:494.355000px;}
.y65{bottom:499.215000px;}
.yc6{bottom:515.055000px;}
.y64{bottom:517.395000px;}
.y98{bottom:521.535000px;}
.yc5{bottom:531.435000px;}
.y63{bottom:535.575000px;}
.y97{bottom:549.255000px;}
.y82{bottom:550.155000px;}
.yc4{bottom:552.315000px;}
.y62{bottom:553.575000px;}
.y96{bottom:567.435000px;}
.y81{bottom:568.335000px;}
.yc3{bottom:568.695000px;}
.y61{bottom:571.755000px;}
.yc2{bottom:589.575000px;}
.y95{bottom:591.195000px;}
.y80{bottom:595.515000px;}
.y60{bottom:598.935000px;}
.yc1{bottom:605.955000px;}
.y7f{bottom:623.415000px;}
.y11{bottom:624.675000px;}
.y5f{bottom:626.835000px;}
.y7e{bottom:641.595000px;}
.yc0{bottom:643.215000px;}
.y5e{bottom:663.945000px;}
.ybf{bottom:664.125000px;}
.y7d{bottom:665.205000px;}
.ybe{bottom:680.505000px;}
.y5d{bottom:683.025000px;}
.ybd{bottom:701.385000px;}
.y5c{bottom:701.925000px;}
.ybc{bottom:717.765000px;}
.y5b{bottom:725.325000px;}
.yf{bottom:736.485000px;}
.ybb{bottom:738.645000px;}
.y5a{bottom:744.405000px;}
.yba{bottom:755.025000px;}
.y59{bottom:763.485000px;}
.yb9{bottom:775.905000px;}
.ye{bottom:780.945000px;}
.y58{bottom:782.385000px;}
.yb8{bottom:792.285000px;}
.yd{bottom:798.045000px;}
.y57{bottom:801.465000px;}
.yb7{bottom:813.165000px;}
.yc{bottom:815.325000px;}
.y56{bottom:820.365000px;}
.yb6{bottom:829.545000px;}
.yb{bottom:832.785000px;}
.y55{bottom:839.265000px;}
.yb5{bottom:850.425000px;}
.ya{bottom:850.965000px;}
.y54{bottom:858.345000px;}
.yb4{bottom:866.805000px;}
.y9{bottom:868.965000px;}
.y53{bottom:877.245000px;}
.y94{bottom:879.225000px;}
.yb3{bottom:887.685000px;}
.y52{bottom:896.325000px;}
.y93{bottom:897.405000px;}
.yb2{bottom:904.110000px;}
.y8{bottom:905.730000px;}
.y51{bottom:915.270000px;}
.y92{bottom:915.450000px;}
.yb1{bottom:924.990000px;}
.y91{bottom:933.630000px;}
.y50{bottom:934.170000px;}
.yb0{bottom:941.370000px;}
.y7{bottom:944.430000px;}
.y90{bottom:951.630000px;}
.y4f{bottom:953.250000px;}
.yaf{bottom:962.250000px;}
.y6{bottom:965.130000px;}
.y8f{bottom:969.810000px;}
.y4e{bottom:976.470000px;}
.yae{bottom:978.630000px;}
.y7c{bottom:987.090000px;}
.y8e{bottom:987.990000px;}
.y4d{bottom:995.730000px;}
.y5{bottom:1003.830000px;}
.y7b{bottom:1005.270000px;}
.yad{bottom:1013.550000px;}
.y4c{bottom:1014.630000px;}
.y8d{bottom:1015.170000px;}
.y7a{bottom:1023.270000px;}
.y4b{bottom:1033.530000px;}
.y4{bottom:1038.570000px;}
.y79{bottom:1041.450000px;}
.y8c{bottom:1042.890000px;}
.y4a{bottom:1052.610000px;}
.y78{bottom:1059.450000px;}
.y8b{bottom:1061.070000px;}
.yac{bottom:1069.530000px;}
.y49{bottom:1071.510000px;}
.y77{bottom:1077.630000px;}
.y8a{bottom:1079.250000px;}
.y48{bottom:1090.590000px;}
.yab{bottom:1097.250000px;}
.y89{bottom:1097.430000px;}
.y76{bottom:1104.810000px;}
.y47{bottom:1113.810000px;}
.y88{bottom:1115.430000px;}
.y75{bottom:1132.710000px;}
.y46{bottom:1132.890000px;}
.y87{bottom:1133.610000px;}
.y3{bottom:1168.200000px;}
.y45{bottom:1169.460000px;}
.y44{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y43{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hb{height:17.657227px;}
.h8{height:40.320000px;}
.h13{height:55.824609px;}
.hc{height:58.621992px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.h5{height:62.184375px;}
.h12{height:63.855000px;}
.h2{height:65.010937px;}
.h11{height:65.124096px;}
.h9{height:66.757500px;}
.hf{height:70.664062px;}
.h4{height:72.562500px;}
.h3{height:96.508125px;}
.ha{height:109.476000px;}
.h10{height:153.341016px;}
.he{height:299.190000px;}
.hd{height:410.835000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w3{width:237.630000px;}
.w5{width:407.235000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x5{left:108.035987px;}
.x10{left:115.055987px;}
.x15{left:119.375987px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.xe{left:157.529987px;}
.xa{left:185.610000px;}
.xc{left:192.809987px;}
.x11{left:232.229987px;}
.x3{left:314.354987px;}
.x13{left:349.994987px;}
.x8{left:360.435000px;}
.xd{left:375.374987px;}
.x9{left:378.075000px;}
.x16{left:404.894987px;}
.x14{left:629.924987px;}
.x12{left:654.224987px;}
.xf{left:679.469987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.297067pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.046080pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.297067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:38.081707pt;}
.wsa{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.448533pt;}
.ws7{word-spacing:-14.377067pt;}
.ws6{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.033920pt;}
.ws8{word-spacing:-13.782933pt;}
.ws3{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.640000pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-4.365440pt;}
._9{margin-left:-3.443840pt;}
._8{margin-left:-2.284160pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.168640pt;}
._a{width:2.124800pt;}
._7{width:3.134080pt;}
._d{width:4.302720pt;}
._4{width:5.471360pt;}
._16{width:6.544640pt;}
._14{width:7.654400pt;}
._15{width:9.169493pt;}
._13{width:11.187200pt;}
._17{width:12.299947pt;}
._c{width:14.183040pt;}
._b{width:15.298560pt;}
._5{width:17.051520pt;}
._6{width:18.113920pt;}
._19{width:19.600640pt;}
._12{width:20.832000pt;}
._2{width:22.363520pt;}
._3{width:23.319680pt;}
._10{width:25.256320pt;}
._11{width:31.393920pt;}
._f{width:32.784000pt;}
._e{width:34.103040pt;}
.fs5{font-size:16.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:2.880000pt;}
.y10{bottom:12.800000pt;}
.y17{bottom:18.880000pt;}
.y30{bottom:26.080000pt;}
.y16{bottom:34.266667pt;}
.y2f{bottom:41.440000pt;}
.y15{bottom:49.626667pt;}
.y2e{bottom:56.800000pt;}
.y14{bottom:64.986667pt;}
.y2d{bottom:72.160000pt;}
.y13{bottom:80.346667pt;}
.y18{bottom:84.826667pt;}
.y2c{bottom:87.560000pt;}
.y12{bottom:93.626667pt;}
.y2b{bottom:102.920000pt;}
.y2a{bottom:118.120000pt;}
.y29{bottom:133.480000pt;}
.y86{bottom:139.680000pt;}
.y3a{bottom:141.640000pt;}
.y74{bottom:144.666667pt;}
.yaa{bottom:148.826667pt;}
.y28{bottom:148.840000pt;}
.y39{bottom:156.840000pt;}
.y73{bottom:160.826667pt;}
.y85{bottom:163.706667pt;}
.y42{bottom:164.026667pt;}
.y27{bottom:164.200000pt;}
.ya9{bottom:164.986667pt;}
.y38{bottom:172.200000pt;}
.y72{bottom:176.986667pt;}
.y26{bottom:179.560000pt;}
.y84{bottom:179.866667pt;}
.y41{bottom:180.986667pt;}
.y37{bottom:187.560000pt;}
.ya8{bottom:189.146667pt;}
.y71{bottom:192.986667pt;}
.y25{bottom:194.760000pt;}
.y40{bottom:197.786667pt;}
.y83{bottom:200.986667pt;}
.y36{bottom:202.920000pt;}
.y24{bottom:210.120000pt;}
.ya7{bottom:213.786667pt;}
.y3f{bottom:214.586667pt;}
.y70{bottom:217.146667pt;}
.y35{bottom:218.280000pt;}
.y23{bottom:225.480000pt;}
.ya6{bottom:229.946667pt;}
.y3e{bottom:231.546667pt;}
.y34{bottom:233.640000pt;}
.y22{bottom:240.840000pt;}
.y6f{bottom:241.946667pt;}
.ya5{bottom:246.106667pt;}
.y33{bottom:248.840000pt;}
.y3b{bottom:253.480000pt;}
.y3d{bottom:256.186667pt;}
.y21{bottom:256.200000pt;}
.y6e{bottom:258.106667pt;}
.y32{bottom:262.120000pt;}
.ya4{bottom:262.266667pt;}
.y20{bottom:271.560000pt;}
.y3c{bottom:272.826667pt;}
.ya3{bottom:278.266667pt;}
.y6d{bottom:282.106667pt;}
.y1f{bottom:286.760000pt;}
.y19{bottom:287.386667pt;}
.ya2{bottom:294.426667pt;}
.y6c{bottom:298.266667pt;}
.y1e{bottom:302.146667pt;}
.ya1{bottom:310.586667pt;}
.y6b{bottom:314.426667pt;}
.y1d{bottom:317.506667pt;}
.ya0{bottom:326.586667pt;}
.y1c{bottom:332.866667pt;}
.y6a{bottom:338.426667pt;}
.y9f{bottom:342.746667pt;}
.y1b{bottom:348.226667pt;}
.y69{bottom:354.586667pt;}
.y9e{bottom:358.746667pt;}
.y1a{bottom:361.506667pt;}
.y68{bottom:370.786667pt;}
.y9d{bottom:374.946667pt;}
.y9c{bottom:391.106667pt;}
.y67{bottom:394.786667pt;}
.y9b{bottom:407.106667pt;}
.y66{bottom:418.946667pt;}
.y9a{bottom:423.266667pt;}
.yc7{bottom:436.066667pt;}
.y99{bottom:439.426667pt;}
.y65{bottom:443.746667pt;}
.yc6{bottom:457.826667pt;}
.y64{bottom:459.906667pt;}
.y98{bottom:463.586667pt;}
.yc5{bottom:472.386667pt;}
.y63{bottom:476.066667pt;}
.y97{bottom:488.226667pt;}
.y82{bottom:489.026667pt;}
.yc4{bottom:490.946667pt;}
.y62{bottom:492.066667pt;}
.y96{bottom:504.386667pt;}
.y81{bottom:505.186667pt;}
.yc3{bottom:505.506667pt;}
.y61{bottom:508.226667pt;}
.yc2{bottom:524.066667pt;}
.y95{bottom:525.506667pt;}
.y80{bottom:529.346667pt;}
.y60{bottom:532.386667pt;}
.yc1{bottom:538.626667pt;}
.y7f{bottom:554.146667pt;}
.y11{bottom:555.266667pt;}
.y5f{bottom:557.186667pt;}
.y7e{bottom:570.306667pt;}
.yc0{bottom:571.746667pt;}
.y5e{bottom:590.173333pt;}
.ybf{bottom:590.333333pt;}
.y7d{bottom:591.293333pt;}
.ybe{bottom:604.893333pt;}
.y5d{bottom:607.133333pt;}
.ybd{bottom:623.453333pt;}
.y5c{bottom:623.933333pt;}
.ybc{bottom:638.013333pt;}
.y5b{bottom:644.733333pt;}
.yf{bottom:654.653333pt;}
.ybb{bottom:656.573333pt;}
.y5a{bottom:661.693333pt;}
.yba{bottom:671.133333pt;}
.y59{bottom:678.653333pt;}
.yb9{bottom:689.693333pt;}
.ye{bottom:694.173333pt;}
.y58{bottom:695.453333pt;}
.yb8{bottom:704.253333pt;}
.yd{bottom:709.373333pt;}
.y57{bottom:712.413333pt;}
.yb7{bottom:722.813333pt;}
.yc{bottom:724.733333pt;}
.y56{bottom:729.213333pt;}
.yb6{bottom:737.373333pt;}
.yb{bottom:740.253333pt;}
.y55{bottom:746.013333pt;}
.yb5{bottom:755.933333pt;}
.ya{bottom:756.413333pt;}
.y54{bottom:762.973333pt;}
.yb4{bottom:770.493333pt;}
.y9{bottom:772.413333pt;}
.y53{bottom:779.773333pt;}
.y94{bottom:781.533333pt;}
.yb3{bottom:789.053333pt;}
.y52{bottom:796.733333pt;}
.y93{bottom:797.693333pt;}
.yb2{bottom:803.653333pt;}
.y8{bottom:805.093333pt;}
.y51{bottom:813.573333pt;}
.y92{bottom:813.733333pt;}
.yb1{bottom:822.213333pt;}
.y91{bottom:829.893333pt;}
.y50{bottom:830.373333pt;}
.yb0{bottom:836.773333pt;}
.y7{bottom:839.493333pt;}
.y90{bottom:845.893333pt;}
.y4f{bottom:847.333333pt;}
.yaf{bottom:855.333333pt;}
.y6{bottom:857.893333pt;}
.y8f{bottom:862.053333pt;}
.y4e{bottom:867.973333pt;}
.yae{bottom:869.893333pt;}
.y7c{bottom:877.413333pt;}
.y8e{bottom:878.213333pt;}
.y4d{bottom:885.093333pt;}
.y5{bottom:892.293333pt;}
.y7b{bottom:893.573333pt;}
.yad{bottom:900.933333pt;}
.y4c{bottom:901.893333pt;}
.y8d{bottom:902.373333pt;}
.y7a{bottom:909.573333pt;}
.y4b{bottom:918.693333pt;}
.y4{bottom:923.173333pt;}
.y79{bottom:925.733333pt;}
.y8c{bottom:927.013333pt;}
.y4a{bottom:935.653333pt;}
.y78{bottom:941.733333pt;}
.y8b{bottom:943.173333pt;}
.yac{bottom:950.693333pt;}
.y49{bottom:952.453333pt;}
.y77{bottom:957.893333pt;}
.y8a{bottom:959.333333pt;}
.y48{bottom:969.413333pt;}
.yab{bottom:975.333333pt;}
.y89{bottom:975.493333pt;}
.y76{bottom:982.053333pt;}
.y47{bottom:990.053333pt;}
.y88{bottom:991.493333pt;}
.y75{bottom:1006.853333pt;}
.y46{bottom:1007.013333pt;}
.y87{bottom:1007.653333pt;}
.y3{bottom:1038.400000pt;}
.y45{bottom:1039.520000pt;}
.y44{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y43{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hb{height:15.695312pt;}
.h8{height:35.840000pt;}
.h13{height:49.621875pt;}
.hc{height:52.108438pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.h5{height:55.275000pt;}
.h12{height:56.760000pt;}
.h2{height:57.787500pt;}
.h11{height:57.888085pt;}
.h9{height:59.340000pt;}
.hf{height:62.812500pt;}
.h4{height:64.500000pt;}
.h3{height:85.785000pt;}
.ha{height:97.312000pt;}
.h10{height:136.303125pt;}
.he{height:265.946667pt;}
.hd{height:365.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w3{width:211.226667pt;}
.w5{width:361.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x5{left:96.031988pt;}
.x10{left:102.271988pt;}
.x15{left:106.111988pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.xe{left:140.026655pt;}
.xa{left:164.986667pt;}
.xc{left:171.386655pt;}
.x11{left:206.426655pt;}
.x3{left:279.426655pt;}
.x13{left:311.106655pt;}
.x8{left:320.386667pt;}
.xd{left:333.666655pt;}
.x9{left:336.066667pt;}
.x16{left:359.906655pt;}
.x14{left:559.933322pt;}
.x12{left:581.533322pt;}
.xf{left:603.973322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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