
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3a710e827770d586ee72df3c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b816c908abbc4a5105ddb723.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b00b3855ff937e2d6f66fa73.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_e04f831ead4901a541fc7e2b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_29d13ecf3992b65f5465c9df.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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:ff8;src:url('chunks/assets/font_36c1b563eb54ef6f29bfa24c.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1e{letter-spacing:-0.732000px;}
.ls1b{letter-spacing:-0.495600px;}
.ls7{letter-spacing:-0.370200px;}
.ls8{letter-spacing:-0.326400px;}
.lsd{letter-spacing:-0.184200px;}
.ls1a{letter-spacing:-0.052560px;}
.ls1f{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.028800px;}
.ls14{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls5{letter-spacing:0.051840px;}
.lsb{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.086400px;}
.lsf{letter-spacing:0.211680px;}
.ls17{letter-spacing:0.211800px;}
.ls16{letter-spacing:0.257760px;}
.ls19{letter-spacing:0.306000px;}
.ls18{letter-spacing:0.319680px;}
.ls1{letter-spacing:0.351360px;}
.ls13{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.364800px;}
.lsa{letter-spacing:0.385800px;}
.ls10{letter-spacing:0.666720px;}
.ls15{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.200000px;}
.ls11{letter-spacing:2.692800px;}
.ls20{letter-spacing:47.466720px;}
.ls1c{letter-spacing:81.450720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-14.958600px;}
.ws6{word-spacing:-14.572800px;}
.ws9{word-spacing:-13.512000px;}
.wse{word-spacing:-13.453200px;}
.wsf{word-spacing:-13.359000px;}
.ws3{word-spacing:-13.160400px;}
.wsd{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.ws11{word-spacing:-13.111200px;}
.ws10{word-spacing:-13.094640px;}
.ws1{word-spacing:-9.652800px;}
.ws0{word-spacing:-9.609000px;}
.ws2{word-spacing:-9.187200px;}
.ws7{word-spacing:-8.625600px;}
.ws8{word-spacing:-8.614200px;}
.wsb{word-spacing:-8.553600px;}
.wsa{word-spacing:0.000000px;}
.ws5{word-spacing:2.408040px;}
._a{margin-left:-2.415000px;}
._0{margin-left:-1.159200px;}
._1{width:1.236000px;}
._8{width:2.272800px;}
._7{width:3.674880px;}
._6{width:5.258600px;}
._5{width:6.350199px;}
._4{width:8.066753px;}
._b{width:9.920160px;}
._c{width:11.175120px;}
._f{width:14.683920px;}
._9{width:15.836400px;}
._10{width:17.050560px;}
._11{width:18.525600px;}
._e{width:20.975760px;}
._d{width:21.991680px;}
._13{width:31.751520px;}
._14{width:32.911680px;}
._2{width:47.511697px;}
._3{width:48.585478px;}
._12{width:144.678960px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:7.740000px;}
.y7a{bottom:7.770000px;}
.y5d{bottom:7.920000px;}
.y71{bottom:7.965000px;}
.y96{bottom:26.640000px;}
.y91{bottom:26.670000px;}
.y2{bottom:73.260000px;}
.y28{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.yf9{bottom:124.560000px;}
.y7b{bottom:125.460000px;}
.ya5{bottom:131.940000px;}
.yf8{bottom:142.200000px;}
.ya4{bottom:149.580000px;}
.y79{bottom:152.820000px;}
.y26{bottom:159.690000px;}
.ycd{bottom:162.390000px;}
.y53{bottom:164.010000px;}
.ya3{bottom:167.250000px;}
.yf7{bottom:168.870000px;}
.y25{bottom:177.330000px;}
.ycc{bottom:180.030000px;}
.y78{bottom:180.210000px;}
.y52{bottom:181.650000px;}
.ya2{bottom:184.890000px;}
.y24{bottom:194.970000px;}
.yf6{bottom:195.330000px;}
.ycb{bottom:197.670000px;}
.y51{bottom:199.110000px;}
.y77{bottom:207.390000px;}
.ya1{bottom:211.350000px;}
.y23{bottom:212.610000px;}
.yf5{bottom:212.970000px;}
.y50{bottom:216.750000px;}
.yca{bottom:224.130000px;}
.yf4{bottom:230.610000px;}
.y76{bottom:234.750000px;}
.yc9{bottom:241.770000px;}
.ya0{bottom:246.990000px;}
.y22{bottom:248.070000px;}
.y4f{bottom:252.390000px;}
.yf3{bottom:257.070000px;}
.y75{bottom:262.110000px;}
.y9f{bottom:264.630000px;}
.y21{bottom:265.710000px;}
.yc8{bottom:268.230000px;}
.y4e{bottom:270.030000px;}
.yf2{bottom:274.710000px;}
.y20{bottom:283.350000px;}
.yc7{bottom:285.870000px;}
.y4d{bottom:287.490000px;}
.y74{bottom:289.470000px;}
.y9e{bottom:300.090000px;}
.y1f{bottom:300.810000px;}
.yf1{bottom:301.350000px;}
.y4c{bottom:305.130000px;}
.yc6{bottom:312.510000px;}
.y73{bottom:316.830000px;}
.y9d{bottom:317.730000px;}
.y1e{bottom:318.450000px;}
.yf0{bottom:318.990000px;}
.y4b{bottom:322.770000px;}
.yc5{bottom:330.150000px;}
.y9c{bottom:335.370000px;}
.y1d{bottom:336.090000px;}
.yef{bottom:336.630000px;}
.y4a{bottom:340.230000px;}
.y72{bottom:344.190000px;}
.yc4{bottom:356.610000px;}
.y49{bottom:357.870000px;}
.yee{bottom:363.090000px;}
.y9b{bottom:370.830000px;}
.y1c{bottom:371.550000px;}
.yc3{bottom:374.250000px;}
.yed{bottom:380.730000px;}
.y48{bottom:384.330000px;}
.y9a{bottom:388.470000px;}
.y1b{bottom:389.190000px;}
.y70{bottom:398.730000px;}
.yc2{bottom:400.890000px;}
.y1a{bottom:406.875000px;}
.yec{bottom:407.235000px;}
.yc1{bottom:418.575000px;}
.y47{bottom:420.015000px;}
.y99{bottom:423.435000px;}
.y19{bottom:424.515000px;}
.yeb{bottom:424.875000px;}
.y6f{bottom:426.135000px;}
.y98{bottom:435.495000px;}
.y46{bottom:437.655000px;}
.y18{bottom:441.975000px;}
.yc0{bottom:445.035000px;}
.yea{bottom:451.515000px;}
.y6e{bottom:453.495000px;}
.y45{bottom:455.295000px;}
.y17{bottom:459.615000px;}
.ybf{bottom:462.675000px;}
.y97{bottom:462.855000px;}
.ye9{bottom:469.155000px;}
.y44{bottom:472.935000px;}
.y6d{bottom:480.855000px;}
.y16{bottom:486.435000px;}
.ybe{bottom:489.495000px;}
.y95{bottom:490.215000px;}
.y43{bottom:490.395000px;}
.ye8{bottom:495.615000px;}
.y6c{bottom:508.215000px;}
.ye7{bottom:513.255000px;}
.y42{bottom:517.035000px;}
.y94{bottom:517.575000px;}
.ye6{bottom:530.895000px;}
.y15{bottom:535.035000px;}
.y6b{bottom:535.575000px;}
.ybd{bottom:537.735000px;}
.y93{bottom:544.935000px;}
.y41{bottom:552.495000px;}
.ye5{bottom:557.355000px;}
.y6a{bottom:562.935000px;}
.ybc{bottom:564.735000px;}
.y40{bottom:570.135000px;}
.y14{bottom:572.115000px;}
.ye4{bottom:574.995000px;}
.y3f{bottom:587.775000px;}
.y13{bottom:589.755000px;}
.y69{bottom:590.115000px;}
.y92{bottom:599.475000px;}
.ye3{bottom:601.635000px;}
.ybb{bottom:601.995000px;}
.y3e{bottom:605.415000px;}
.y12{bottom:607.215000px;}
.y68{bottom:617.475000px;}
.ye2{bottom:619.275000px;}
.y11{bottom:624.855000px;}
.y90{bottom:626.835000px;}
.y3d{bottom:640.875000px;}
.y67{bottom:644.835000px;}
.ye1{bottom:645.735000px;}
.yba{bottom:650.235000px;}
.y10{bottom:651.675000px;}
.y8f{bottom:654.225000px;}
.y3c{bottom:658.545000px;}
.ye0{bottom:663.405000px;}
.yb9{bottom:667.905000px;}
.y66{bottom:672.225000px;}
.y3b{bottom:676.185000px;}
.yb8{bottom:685.545000px;}
.ydf{bottom:689.865000px;}
.y3a{bottom:693.645000px;}
.y65{bottom:699.585000px;}
.yf{bottom:699.945000px;}
.y8e{bottom:703.005000px;}
.yb7{bottom:703.185000px;}
.yde{bottom:707.505000px;}
.y39{bottom:720.285000px;}
.ydd{bottom:725.145000px;}
.y64{bottom:726.945000px;}
.ye{bottom:735.765000px;}
.y8d{bottom:738.465000px;}
.yb6{bottom:738.645000px;}
.ydc{bottom:751.605000px;}
.y63{bottom:754.305000px;}
.y38{bottom:755.925000px;}
.y8c{bottom:756.105000px;}
.yb5{bottom:756.285000px;}
.ydb{bottom:769.245000px;}
.yd{bottom:771.765000px;}
.y37{bottom:773.565000px;}
.yb4{bottom:773.925000px;}
.y62{bottom:781.665000px;}
.y8b{bottom:782.745000px;}
.y36{bottom:791.025000px;}
.yb3{bottom:791.565000px;}
.yda{bottom:795.885000px;}
.y35{bottom:808.665000px;}
.y61{bottom:808.845000px;}
.yb2{bottom:809.025000px;}
.yc{bottom:811.545000px;}
.yd9{bottom:813.525000px;}
.y8a{bottom:818.205000px;}
.y34{bottom:826.305000px;}
.yb1{bottom:826.665000px;}
.yb{bottom:829.545000px;}
.y89{bottom:835.845000px;}
.y60{bottom:836.205000px;}
.yd8{bottom:839.985000px;}
.ya{bottom:843.765000px;}
.y88{bottom:853.485000px;}
.yd7{bottom:857.625000px;}
.y5f{bottom:863.565000px;}
.y9{bottom:865.545000px;}
.y33{bottom:870.405000px;}
.y87{bottom:871.125000px;}
.y8{bottom:879.765000px;}
.yd6{bottom:884.265000px;}
.y86{bottom:888.765000px;}
.y5e{bottom:890.925000px;}
.y7{bottom:901.590000px;}
.yb0{bottom:901.770000px;}
.y32{bottom:905.910000px;}
.yd5{bottom:910.770000px;}
.y5c{bottom:918.330000px;}
.yaf{bottom:919.410000px;}
.y31{bottom:923.550000px;}
.y85{bottom:924.270000px;}
.yd4{bottom:928.410000px;}
.y6{bottom:933.630000px;}
.yae{bottom:937.050000px;}
.y30{bottom:941.190000px;}
.y84{bottom:941.910000px;}
.y5a{bottom:945.690000px;}
.y5{bottom:952.170000px;}
.yad{bottom:954.690000px;}
.yd3{bottom:955.050000px;}
.y2f{bottom:958.830000px;}
.y83{bottom:959.550000px;}
.yd2{bottom:972.690000px;}
.y82{bottom:977.010000px;}
.yac{bottom:981.150000px;}
.y2e{bottom:985.290000px;}
.y4{bottom:989.790000px;}
.y59{bottom:994.290000px;}
.y81{bottom:994.650000px;}
.yd1{bottom:999.150000px;}
.y80{bottom:1012.290000px;}
.y3{bottom:1014.450000px;}
.yab{bottom:1016.790000px;}
.y2d{bottom:1021.110000px;}
.y58{bottom:1029.930000px;}
.yaa{bottom:1034.430000px;}
.yd0{bottom:1043.430000px;}
.y7f{bottom:1045.230000px;}
.y57{bottom:1047.570000px;}
.ya9{bottom:1052.070000px;}
.ycf{bottom:1061.070000px;}
.y56{bottom:1065.210000px;}
.y2c{bottom:1069.530000px;}
.y7e{bottom:1072.410000px;}
.yce{bottom:1078.530000px;}
.y2b{bottom:1087.170000px;}
.ya8{bottom:1087.530000px;}
.y55{bottom:1091.670000px;}
.y7d{bottom:1099.770000px;}
.ya7{bottom:1105.170000px;}
.y2a{bottom:1122.630000px;}
.ya6{bottom:1122.810000px;}
.y7c{bottom:1127.130000px;}
.y54{bottom:1127.490000px;}
.y29{bottom:1140.270000px;}
.y27{bottom:1194.300000px;}
.hd{height:26.460000px;}
.h10{height:26.496000px;}
.he{height:26.640000px;}
.hf{height:26.676000px;}
.h2{height:29.717578px;}
.h6{height:35.297578px;}
.h8{height:35.477578px;}
.h3{height:39.468516px;}
.h11{height:41.974453px;}
.h7{height:50.597578px;}
.h9{height:51.998203px;}
.h5{height:55.130625px;}
.ha{height:56.084062px;}
.h12{height:61.423863px;}
.hc{height:62.211094px;}
.hb{height:68.956875px;}
.h4{height:73.298672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:58.500000px;}
.w7{width:58.680000px;}
.w9{width:58.716000px;}
.wa{width:67.500000px;}
.w5{width:87.516000px;}
.wb{width:92.556000px;}
.w6{width:157.890000px;}
.w3{width:182.190000px;}
.w4{width:207.210000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:111.275987px;}
.x8{left:163.830000px;}
.x4{left:207.390000px;}
.x2{left:251.669987px;}
.x9{left:322.455000px;}
.xf{left:353.054987px;}
.xa{left:381.855000px;}
.x6{left:390.315000px;}
.xb{left:441.075000px;}
.xc{left:500.505000px;}
.xd{left:568.725000px;}
.x7{left:598.425000px;}
.xe{left:636.945000px;}
.x3{left:808.709987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1e{letter-spacing:-0.650667pt;}
.ls1b{letter-spacing:-0.440533pt;}
.ls7{letter-spacing:-0.329067pt;}
.ls8{letter-spacing:-0.290133pt;}
.lsd{letter-spacing:-0.163733pt;}
.ls1a{letter-spacing:-0.046720pt;}
.ls1f{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.025600pt;}
.ls14{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls5{letter-spacing:0.046080pt;}
.lsb{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.076800pt;}
.lsf{letter-spacing:0.188160pt;}
.ls17{letter-spacing:0.188267pt;}
.ls16{letter-spacing:0.229120pt;}
.ls19{letter-spacing:0.272000pt;}
.ls18{letter-spacing:0.284160pt;}
.ls1{letter-spacing:0.312320pt;}
.ls13{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.324267pt;}
.lsa{letter-spacing:0.342933pt;}
.ls10{letter-spacing:0.592640pt;}
.ls15{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.066667pt;}
.ls11{letter-spacing:2.393600pt;}
.ls20{letter-spacing:42.192640pt;}
.ls1c{letter-spacing:72.400640pt;}
.wsc{word-spacing:-13.296533pt;}
.ws6{word-spacing:-12.953600pt;}
.ws9{word-spacing:-12.010667pt;}
.wse{word-spacing:-11.958400pt;}
.wsf{word-spacing:-11.874667pt;}
.ws3{word-spacing:-11.698133pt;}
.wsd{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.654400pt;}
.ws10{word-spacing:-11.639680pt;}
.ws1{word-spacing:-8.580267pt;}
.ws0{word-spacing:-8.541333pt;}
.ws2{word-spacing:-8.166400pt;}
.ws7{word-spacing:-7.667200pt;}
.ws8{word-spacing:-7.657067pt;}
.wsb{word-spacing:-7.603200pt;}
.wsa{word-spacing:0.000000pt;}
.ws5{word-spacing:2.140480pt;}
._a{margin-left:-2.146666pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.098667pt;}
._8{width:2.020267pt;}
._7{width:3.266560pt;}
._6{width:4.674311pt;}
._5{width:5.644621pt;}
._4{width:7.170447pt;}
._b{width:8.817920pt;}
._c{width:9.933440pt;}
._f{width:13.052373pt;}
._9{width:14.076800pt;}
._10{width:15.156053pt;}
._11{width:16.467200pt;}
._e{width:18.645120pt;}
._d{width:19.548160pt;}
._13{width:28.223573pt;}
._14{width:29.254827pt;}
._2{width:42.232620pt;}
._3{width:43.187091pt;}
._12{width:128.603520pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:6.880000pt;}
.y7a{bottom:6.906667pt;}
.y5d{bottom:7.040000pt;}
.y71{bottom:7.080000pt;}
.y96{bottom:23.680000pt;}
.y91{bottom:23.706667pt;}
.y2{bottom:65.120000pt;}
.y28{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.yf9{bottom:110.720000pt;}
.y7b{bottom:111.520000pt;}
.ya5{bottom:117.280000pt;}
.yf8{bottom:126.400000pt;}
.ya4{bottom:132.960000pt;}
.y79{bottom:135.840000pt;}
.y26{bottom:141.946667pt;}
.ycd{bottom:144.346667pt;}
.y53{bottom:145.786667pt;}
.ya3{bottom:148.666667pt;}
.yf7{bottom:150.106667pt;}
.y25{bottom:157.626667pt;}
.ycc{bottom:160.026667pt;}
.y78{bottom:160.186667pt;}
.y52{bottom:161.466667pt;}
.ya2{bottom:164.346667pt;}
.y24{bottom:173.306667pt;}
.yf6{bottom:173.626667pt;}
.ycb{bottom:175.706667pt;}
.y51{bottom:176.986667pt;}
.y77{bottom:184.346667pt;}
.ya1{bottom:187.866667pt;}
.y23{bottom:188.986667pt;}
.yf5{bottom:189.306667pt;}
.y50{bottom:192.666667pt;}
.yca{bottom:199.226667pt;}
.yf4{bottom:204.986667pt;}
.y76{bottom:208.666667pt;}
.yc9{bottom:214.906667pt;}
.ya0{bottom:219.546667pt;}
.y22{bottom:220.506667pt;}
.y4f{bottom:224.346667pt;}
.yf3{bottom:228.506667pt;}
.y75{bottom:232.986667pt;}
.y9f{bottom:235.226667pt;}
.y21{bottom:236.186667pt;}
.yc8{bottom:238.426667pt;}
.y4e{bottom:240.026667pt;}
.yf2{bottom:244.186667pt;}
.y20{bottom:251.866667pt;}
.yc7{bottom:254.106667pt;}
.y4d{bottom:255.546667pt;}
.y74{bottom:257.306667pt;}
.y9e{bottom:266.746667pt;}
.y1f{bottom:267.386667pt;}
.yf1{bottom:267.866667pt;}
.y4c{bottom:271.226667pt;}
.yc6{bottom:277.786667pt;}
.y73{bottom:281.626667pt;}
.y9d{bottom:282.426667pt;}
.y1e{bottom:283.066667pt;}
.yf0{bottom:283.546667pt;}
.y4b{bottom:286.906667pt;}
.yc5{bottom:293.466667pt;}
.y9c{bottom:298.106667pt;}
.y1d{bottom:298.746667pt;}
.yef{bottom:299.226667pt;}
.y4a{bottom:302.426667pt;}
.y72{bottom:305.946667pt;}
.yc4{bottom:316.986667pt;}
.y49{bottom:318.106667pt;}
.yee{bottom:322.746667pt;}
.y9b{bottom:329.626667pt;}
.y1c{bottom:330.266667pt;}
.yc3{bottom:332.666667pt;}
.yed{bottom:338.426667pt;}
.y48{bottom:341.626667pt;}
.y9a{bottom:345.306667pt;}
.y1b{bottom:345.946667pt;}
.y70{bottom:354.426667pt;}
.yc2{bottom:356.346667pt;}
.y1a{bottom:361.666667pt;}
.yec{bottom:361.986667pt;}
.yc1{bottom:372.066667pt;}
.y47{bottom:373.346667pt;}
.y99{bottom:376.386667pt;}
.y19{bottom:377.346667pt;}
.yeb{bottom:377.666667pt;}
.y6f{bottom:378.786667pt;}
.y98{bottom:387.106667pt;}
.y46{bottom:389.026667pt;}
.y18{bottom:392.866667pt;}
.yc0{bottom:395.586667pt;}
.yea{bottom:401.346667pt;}
.y6e{bottom:403.106667pt;}
.y45{bottom:404.706667pt;}
.y17{bottom:408.546667pt;}
.ybf{bottom:411.266667pt;}
.y97{bottom:411.426667pt;}
.ye9{bottom:417.026667pt;}
.y44{bottom:420.386667pt;}
.y6d{bottom:427.426667pt;}
.y16{bottom:432.386667pt;}
.ybe{bottom:435.106667pt;}
.y95{bottom:435.746667pt;}
.y43{bottom:435.906667pt;}
.ye8{bottom:440.546667pt;}
.y6c{bottom:451.746667pt;}
.ye7{bottom:456.226667pt;}
.y42{bottom:459.586667pt;}
.y94{bottom:460.066667pt;}
.ye6{bottom:471.906667pt;}
.y15{bottom:475.586667pt;}
.y6b{bottom:476.066667pt;}
.ybd{bottom:477.986667pt;}
.y93{bottom:484.386667pt;}
.y41{bottom:491.106667pt;}
.ye5{bottom:495.426667pt;}
.y6a{bottom:500.386667pt;}
.ybc{bottom:501.986667pt;}
.y40{bottom:506.786667pt;}
.y14{bottom:508.546667pt;}
.ye4{bottom:511.106667pt;}
.y3f{bottom:522.466667pt;}
.y13{bottom:524.226667pt;}
.y69{bottom:524.546667pt;}
.y92{bottom:532.866667pt;}
.ye3{bottom:534.786667pt;}
.ybb{bottom:535.106667pt;}
.y3e{bottom:538.146667pt;}
.y12{bottom:539.746667pt;}
.y68{bottom:548.866667pt;}
.ye2{bottom:550.466667pt;}
.y11{bottom:555.426667pt;}
.y90{bottom:557.186667pt;}
.y3d{bottom:569.666667pt;}
.y67{bottom:573.186667pt;}
.ye1{bottom:573.986667pt;}
.yba{bottom:577.986667pt;}
.y10{bottom:579.266667pt;}
.y8f{bottom:581.533333pt;}
.y3c{bottom:585.373333pt;}
.ye0{bottom:589.693333pt;}
.yb9{bottom:593.693333pt;}
.y66{bottom:597.533333pt;}
.y3b{bottom:601.053333pt;}
.yb8{bottom:609.373333pt;}
.ydf{bottom:613.213333pt;}
.y3a{bottom:616.573333pt;}
.y65{bottom:621.853333pt;}
.yf{bottom:622.173333pt;}
.y8e{bottom:624.893333pt;}
.yb7{bottom:625.053333pt;}
.yde{bottom:628.893333pt;}
.y39{bottom:640.253333pt;}
.ydd{bottom:644.573333pt;}
.y64{bottom:646.173333pt;}
.ye{bottom:654.013333pt;}
.y8d{bottom:656.413333pt;}
.yb6{bottom:656.573333pt;}
.ydc{bottom:668.093333pt;}
.y63{bottom:670.493333pt;}
.y38{bottom:671.933333pt;}
.y8c{bottom:672.093333pt;}
.yb5{bottom:672.253333pt;}
.ydb{bottom:683.773333pt;}
.yd{bottom:686.013333pt;}
.y37{bottom:687.613333pt;}
.yb4{bottom:687.933333pt;}
.y62{bottom:694.813333pt;}
.y8b{bottom:695.773333pt;}
.y36{bottom:703.133333pt;}
.yb3{bottom:703.613333pt;}
.yda{bottom:707.453333pt;}
.y35{bottom:718.813333pt;}
.y61{bottom:718.973333pt;}
.yb2{bottom:719.133333pt;}
.yc{bottom:721.373333pt;}
.yd9{bottom:723.133333pt;}
.y8a{bottom:727.293333pt;}
.y34{bottom:734.493333pt;}
.yb1{bottom:734.813333pt;}
.yb{bottom:737.373333pt;}
.y89{bottom:742.973333pt;}
.y60{bottom:743.293333pt;}
.yd8{bottom:746.653333pt;}
.ya{bottom:750.013333pt;}
.y88{bottom:758.653333pt;}
.yd7{bottom:762.333333pt;}
.y5f{bottom:767.613333pt;}
.y9{bottom:769.373333pt;}
.y33{bottom:773.693333pt;}
.y87{bottom:774.333333pt;}
.y8{bottom:782.013333pt;}
.yd6{bottom:786.013333pt;}
.y86{bottom:790.013333pt;}
.y5e{bottom:791.933333pt;}
.y7{bottom:801.413333pt;}
.yb0{bottom:801.573333pt;}
.y32{bottom:805.253333pt;}
.yd5{bottom:809.573333pt;}
.y5c{bottom:816.293333pt;}
.yaf{bottom:817.253333pt;}
.y31{bottom:820.933333pt;}
.y85{bottom:821.573333pt;}
.yd4{bottom:825.253333pt;}
.y6{bottom:829.893333pt;}
.yae{bottom:832.933333pt;}
.y30{bottom:836.613333pt;}
.y84{bottom:837.253333pt;}
.y5a{bottom:840.613333pt;}
.y5{bottom:846.373333pt;}
.yad{bottom:848.613333pt;}
.yd3{bottom:848.933333pt;}
.y2f{bottom:852.293333pt;}
.y83{bottom:852.933333pt;}
.yd2{bottom:864.613333pt;}
.y82{bottom:868.453333pt;}
.yac{bottom:872.133333pt;}
.y2e{bottom:875.813333pt;}
.y4{bottom:879.813333pt;}
.y59{bottom:883.813333pt;}
.y81{bottom:884.133333pt;}
.yd1{bottom:888.133333pt;}
.y80{bottom:899.813333pt;}
.y3{bottom:901.733333pt;}
.yab{bottom:903.813333pt;}
.y2d{bottom:907.653333pt;}
.y58{bottom:915.493333pt;}
.yaa{bottom:919.493333pt;}
.yd0{bottom:927.493333pt;}
.y7f{bottom:929.093333pt;}
.y57{bottom:931.173333pt;}
.ya9{bottom:935.173333pt;}
.ycf{bottom:943.173333pt;}
.y56{bottom:946.853333pt;}
.y2c{bottom:950.693333pt;}
.y7e{bottom:953.253333pt;}
.yce{bottom:958.693333pt;}
.y2b{bottom:966.373333pt;}
.ya8{bottom:966.693333pt;}
.y55{bottom:970.373333pt;}
.y7d{bottom:977.573333pt;}
.ya7{bottom:982.373333pt;}
.y2a{bottom:997.893333pt;}
.ya6{bottom:998.053333pt;}
.y7c{bottom:1001.893333pt;}
.y54{bottom:1002.213333pt;}
.y29{bottom:1013.573333pt;}
.y27{bottom:1061.600000pt;}
.hd{height:23.520000pt;}
.h10{height:23.552000pt;}
.he{height:23.680000pt;}
.hf{height:23.712000pt;}
.h2{height:26.415625pt;}
.h6{height:31.375625pt;}
.h8{height:31.535625pt;}
.h3{height:35.083125pt;}
.h11{height:37.310625pt;}
.h7{height:44.975625pt;}
.h9{height:46.220625pt;}
.h5{height:49.005000pt;}
.ha{height:49.852500pt;}
.h12{height:54.598989pt;}
.hc{height:55.298750pt;}
.hb{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:52.000000pt;}
.w7{width:52.160000pt;}
.w9{width:52.192000pt;}
.wa{width:60.000000pt;}
.w5{width:77.792000pt;}
.wb{width:82.272000pt;}
.w6{width:140.346667pt;}
.w3{width:161.946667pt;}
.w4{width:184.186667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:98.911988pt;}
.x8{left:145.626667pt;}
.x4{left:184.346667pt;}
.x2{left:223.706655pt;}
.x9{left:286.626667pt;}
.xf{left:313.826655pt;}
.xa{left:339.426667pt;}
.x6{left:346.946667pt;}
.xb{left:392.066667pt;}
.xc{left:444.893333pt;}
.xd{left:505.533333pt;}
.x7{left:531.933333pt;}
.xe{left:566.173333pt;}
.x3{left:718.853322pt;}
}




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