
    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_65c781d2c9086e1b5735e9cd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_82ace1a8544b534a8a6916e1.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7574b6a8fb795ebdae19290a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_7b9cb00c28e48a09e88b834b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_95a4c54e47e3a4e19fc9fbaf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_e9a40505ec467aa509fcedab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2cbdcf128c7f99ad0118b6a0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsd{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.600000px;}
.ls19{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.208800px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.013200px;}
.ls9{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.078000px;}
.ls12{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.ls16{letter-spacing:0.420000px;}
.ls10{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls8{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.200000px;}
.ls14{letter-spacing:15.720000px;}
.ls13{letter-spacing:45.720000px;}
.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:-18.432000px;}
.ws1{word-spacing:-18.384000px;}
.wsd{word-spacing:-15.540000px;}
.wsc{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws3{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.760000px;}
.ws6{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.460000px;}
.wse{word-spacing:-14.340000px;}
.ws5{word-spacing:-12.900000px;}
.ws7{word-spacing:-10.500000px;}
.ws2{word-spacing:-9.900000px;}
.ws9{word-spacing:-9.691200px;}
.ws8{word-spacing:-9.300000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-2.392800px;}
._3{margin-left:-1.164000px;}
._0{width:1.056000px;}
._c{width:2.622000px;}
._9{width:3.900000px;}
._7{width:5.548800px;}
._6{width:6.681600px;}
._8{width:8.389200px;}
._d{width:9.754800px;}
._b{width:11.089200px;}
._a{width:12.670800px;}
._16{width:13.914000px;}
._10{width:16.020000px;}
._f{width:17.100000px;}
._19{width:18.720000px;}
._13{width:20.520000px;}
._14{width:21.660000px;}
._15{width:22.800000px;}
._17{width:26.700000px;}
._18{width:27.916800px;}
._12{width:30.840000px;}
._11{width:31.860000px;}
._1{width:43.800000px;}
._4{width:336.180000px;}
._2{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.300000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y5{bottom:12.337500px;}
.y40{bottom:21.000000px;}
.y3f{bottom:41.100000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3e{bottom:58.500000px;}
.y7f{bottom:74.137500px;}
.y3d{bottom:75.600000px;}
.y3{bottom:81.337500px;}
.y3c{bottom:93.000000px;}
.y3b{bottom:110.100000px;}
.yb3{bottom:113.437500px;}
.ye4{bottom:119.737500px;}
.y7e{bottom:123.337500px;}
.y35{bottom:125.437500px;}
.y3a{bottom:127.500000px;}
.yb2{bottom:134.137500px;}
.ye3{bottom:137.137500px;}
.y7d{bottom:140.437500px;}
.y34{bottom:142.837500px;}
.y39{bottom:144.630000px;}
.yb1{bottom:154.245000px;}
.y7c{bottom:157.830000px;}
.y33{bottom:159.930000px;}
.y38{bottom:162.045000px;}
.yb0{bottom:171.630000px;}
.y7b{bottom:174.930000px;}
.y32{bottom:177.345000px;}
.y37{bottom:179.730000px;}
.yaf{bottom:188.175000px;}
.ye2{bottom:188.775000px;}
.y7a{bottom:192.375000px;}
.y31{bottom:193.875000px;}
.yae{bottom:202.575000px;}
.ye1{bottom:206.175000px;}
.y30{bottom:208.275000px;}
.y79{bottom:209.475000px;}
.yad{bottom:219.975000px;}
.yf6{bottom:223.275000px;}
.ye0{bottom:223.875000px;}
.y2f{bottom:225.675000px;}
.y78{bottom:226.875000px;}
.yac{bottom:237.075000px;}
.yf5{bottom:240.675000px;}
.y2e{bottom:242.775000px;}
.y77{bottom:243.975000px;}
.yab{bottom:254.475000px;}
.yf4{bottom:257.775000px;}
.y2d{bottom:259.275000px;}
.y76{bottom:261.375000px;}
.yaa{bottom:270.975000px;}
.y2c{bottom:273.975000px;}
.yf3{bottom:275.175000px;}
.y75{bottom:278.475000px;}
.ya9{bottom:285.375000px;}
.y2b{bottom:291.075000px;}
.yf2{bottom:292.275000px;}
.y74{bottom:295.875000px;}
.ya8{bottom:302.775000px;}
.y2a{bottom:308.475000px;}
.yf1{bottom:309.675000px;}
.y73{bottom:312.975000px;}
.ya7{bottom:319.875000px;}
.y29{bottom:325.575000px;}
.yf0{bottom:326.775000px;}
.y72{bottom:329.475000px;}
.ydf{bottom:330.375000px;}
.ya6{bottom:337.275000px;}
.y28{bottom:342.975000px;}
.y71{bottom:344.175000px;}
.yde{bottom:347.505000px;}
.ya5{bottom:354.405000px;}
.y27{bottom:359.505000px;}
.y70{bottom:361.320000px;}
.ydd{bottom:364.905000px;}
.ya4{bottom:371.820000px;}
.y26{bottom:373.920000px;}
.y6f{bottom:378.705000px;}
.ydc{bottom:381.405000px;}
.ya3{bottom:388.920000px;}
.y25{bottom:391.320000px;}
.y6e{bottom:395.820000px;}
.ya2{bottom:406.320000px;}
.y24{bottom:408.420000px;}
.y6d{bottom:413.205000px;}
.ya1{bottom:422.820000px;}
.y23{bottom:425.820000px;}
.y6c{bottom:430.320000px;}
.ya0{bottom:437.205000px;}
.y22{bottom:442.920000px;}
.y6b{bottom:447.705000px;}
.y9f{bottom:454.620000px;}
.y21{bottom:460.320000px;}
.y6a{bottom:464.205000px;}
.yef{bottom:464.820000px;}
.ydb{bottom:465.420000px;}
.y9e{bottom:471.720000px;}
.y20{bottom:478.005000px;}
.y69{bottom:478.620000px;}
.yee{bottom:482.205000px;}
.yda{bottom:484.905000px;}
.y9d{bottom:489.120000px;}
.y68{bottom:496.005000px;}
.yd9{bottom:499.320000px;}
.y9c{bottom:506.820000px;}
.y67{bottom:513.120000px;}
.yd8{bottom:516.750000px;}
.y9b{bottom:526.350000px;}
.y66{bottom:530.550000px;}
.yd7{bottom:533.850000px;}
.y9a{bottom:540.750000px;}
.y36{bottom:543.150000px;}
.y65{bottom:547.650000px;}
.yd6{bottom:551.250000px;}
.y99{bottom:558.150000px;}
.y64{bottom:565.050000px;}
.yed{bottom:568.350000px;}
.yd5{bottom:568.950000px;}
.y98{bottom:575.250000px;}
.y63{bottom:582.150000px;}
.yec{bottom:585.750000px;}
.yd4{bottom:588.450000px;}
.y97{bottom:592.650000px;}
.y62{bottom:598.650000px;}
.yd3{bottom:602.850000px;}
.y96{bottom:609.750000px;}
.y61{bottom:613.350000px;}
.yd2{bottom:620.250000px;}
.y95{bottom:626.250000px;}
.y60{bottom:630.450000px;}
.yd1{bottom:637.350000px;}
.y94{bottom:640.950000px;}
.y5f{bottom:647.850000px;}
.yd0{bottom:654.750000px;}
.y93{bottom:658.050000px;}
.y5e{bottom:664.950000px;}
.ycf{bottom:671.850000px;}
.y92{bottom:675.450000px;}
.y5d{bottom:682.380000px;}
.yeb{bottom:689.280000px;}
.yce{bottom:689.595000px;}
.y91{bottom:692.595000px;}
.y5c{bottom:699.495000px;}
.yea{bottom:706.380000px;}
.ycd{bottom:709.095000px;}
.y90{bottom:709.980000px;}
.y5b{bottom:716.880000px;}
.ycc{bottom:723.795000px;}
.y8f{bottom:727.695000px;}
.y5a{bottom:733.995000px;}
.ycb{bottom:740.895000px;}
.y8e{bottom:747.195000px;}
.y59{bottom:750.480000px;}
.yca{bottom:758.280000px;}
.y58{bottom:765.195000px;}
.y1f{bottom:765.480000px;}
.y8d{bottom:766.995000px;}
.yc9{bottom:775.380000px;}
.y8c{bottom:778.980000px;}
.y57{bottom:782.295000px;}
.y1e{bottom:785.580000px;}
.yc8{bottom:792.795000px;}
.y8b{bottom:796.080000px;}
.y56{bottom:799.695000px;}
.y1d{bottom:802.980000px;}
.yc7{bottom:809.880000px;}
.y8a{bottom:813.495000px;}
.y55{bottom:816.795000px;}
.y1c{bottom:823.080000px;}
.ye9{bottom:827.295000px;}
.yc6{bottom:827.580000px;}
.y89{bottom:831.195000px;}
.y54{bottom:834.195000px;}
.y1b{bottom:842.895000px;}
.ye8{bottom:844.380000px;}
.yc5{bottom:847.080000px;}
.y53{bottom:850.725000px;}
.y1a{bottom:861.525000px;}
.yc4{bottom:861.825000px;}
.y52{bottom:865.125000px;}
.yc3{bottom:878.925000px;}
.y51{bottom:882.525000px;}
.y19{bottom:885.525000px;}
.yc2{bottom:896.325000px;}
.y18{bottom:897.825000px;}
.y50{bottom:899.625000px;}
.yc1{bottom:913.425000px;}
.y4f{bottom:917.025000px;}
.y17{bottom:920.325000px;}
.yc0{bottom:930.825000px;}
.y16{bottom:932.325000px;}
.y4e{bottom:934.125000px;}
.ybf{bottom:947.925000px;}
.y4d{bottom:951.525000px;}
.y15{bottom:954.825000px;}
.ybe{bottom:965.325000px;}
.y14{bottom:966.825000px;}
.y88{bottom:968.625000px;}
.y4c{bottom:969.225000px;}
.ybd{bottom:982.425000px;}
.y13{bottom:983.925000px;}
.yf8{bottom:986.025000px;}
.y87{bottom:986.325000px;}
.y4b{bottom:989.925000px;}
.ye7{bottom:999.825000px;}
.ybc{bottom:1000.125000px;}
.y12{bottom:1001.325000px;}
.yf7{bottom:1003.125000px;}
.y86{bottom:1005.825000px;}
.y4a{bottom:1009.425000px;}
.ye6{bottom:1016.955000px;}
.ybb{bottom:1019.670000px;}
.y85{bottom:1020.570000px;}
.y11{bottom:1021.170000px;}
.y49{bottom:1023.870000px;}
.yba{bottom:1034.370000px;}
.ye5{bottom:1034.670000px;}
.y84{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y48{bottom:1041.255000px;}
.yb9{bottom:1051.455000px;}
.y83{bottom:1055.070000px;}
.y47{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.yb8{bottom:1068.870000px;}
.y82{bottom:1072.170000px;}
.y46{bottom:1075.755000px;}
.ya{bottom:1083.570000px;}
.yb7{bottom:1085.955000px;}
.y81{bottom:1089.570000px;}
.y45{bottom:1092.870000px;}
.y9{bottom:1097.955000px;}
.yb6{bottom:1103.370000px;}
.y80{bottom:1106.670000px;}
.y44{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.yb5{bottom:1120.455000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yb4{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y42{bottom:1196.400000px;}
.h9{height:10.529297px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.h7{height:33.867188px;}
.hd{height:34.746680px;}
.h3{height:36.000000px;}
.hf{height:38.100586px;}
.h16{height:41.080078px;}
.h12{height:42.117188px;}
.h4{height:42.333984px;}
.h15{height:43.330078px;}
.h11{height:45.644531px;}
.h8{height:47.381836px;}
.hb{height:49.107422px;}
.h6{height:50.800781px;}
.h14{height:51.996094px;}
.he{height:52.646484px;}
.h10{height:54.773438px;}
.h17{height:56.286680px;}
.hc{height:56.346680px;}
.h19{height:56.406680px;}
.h18{height:56.526680px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h13{height:196.530000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:247.875000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.xf{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.xe{left:84.037500px;}
.x11{left:108.037487px;}
.xd{left:126.330000px;}
.x9{left:153.629987px;}
.xb{left:241.582500px;}
.x6{left:446.249987px;}
.xc{left:564.495000px;}
.x10{left:592.979987px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls19{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.185600pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011733pt;}
.ls9{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.069333pt;}
.ls12{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls16{letter-spacing:0.373333pt;}
.ls10{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls8{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.066667pt;}
.ls14{letter-spacing:13.973333pt;}
.ls13{letter-spacing:40.640000pt;}
.wsa{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.341333pt;}
.wsd{word-spacing:-13.813333pt;}
.wsc{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws3{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.120000pt;}
.ws6{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.853333pt;}
.wse{word-spacing:-12.746667pt;}
.ws5{word-spacing:-11.466667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws2{word-spacing:-8.800000pt;}
.ws9{word-spacing:-8.614400pt;}
.ws8{word-spacing:-8.266667pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-2.126933pt;}
._3{margin-left:-1.034667pt;}
._0{width:0.938667pt;}
._c{width:2.330667pt;}
._9{width:3.466667pt;}
._7{width:4.932267pt;}
._6{width:5.939200pt;}
._8{width:7.457067pt;}
._d{width:8.670933pt;}
._b{width:9.857067pt;}
._a{width:11.262933pt;}
._16{width:12.368000pt;}
._10{width:14.240000pt;}
._f{width:15.200000pt;}
._19{width:16.640000pt;}
._13{width:18.240000pt;}
._14{width:19.253333pt;}
._15{width:20.266667pt;}
._17{width:23.733333pt;}
._18{width:24.814933pt;}
._12{width:27.413333pt;}
._11{width:28.320000pt;}
._1{width:38.933333pt;}
._4{width:298.826667pt;}
._2{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.933333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y5{bottom:10.966667pt;}
.y40{bottom:18.666667pt;}
.y3f{bottom:36.533333pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3e{bottom:52.000000pt;}
.y7f{bottom:65.900000pt;}
.y3d{bottom:67.200000pt;}
.y3{bottom:72.300000pt;}
.y3c{bottom:82.666667pt;}
.y3b{bottom:97.866667pt;}
.yb3{bottom:100.833333pt;}
.ye4{bottom:106.433333pt;}
.y7e{bottom:109.633333pt;}
.y35{bottom:111.500000pt;}
.y3a{bottom:113.333333pt;}
.yb2{bottom:119.233333pt;}
.ye3{bottom:121.900000pt;}
.y7d{bottom:124.833333pt;}
.y34{bottom:126.966667pt;}
.y39{bottom:128.560000pt;}
.yb1{bottom:137.106667pt;}
.y7c{bottom:140.293333pt;}
.y33{bottom:142.160000pt;}
.y38{bottom:144.040000pt;}
.yb0{bottom:152.560000pt;}
.y7b{bottom:155.493333pt;}
.y32{bottom:157.640000pt;}
.y37{bottom:159.760000pt;}
.yaf{bottom:167.266667pt;}
.ye2{bottom:167.800000pt;}
.y7a{bottom:171.000000pt;}
.y31{bottom:172.333333pt;}
.yae{bottom:180.066667pt;}
.ye1{bottom:183.266667pt;}
.y30{bottom:185.133333pt;}
.y79{bottom:186.200000pt;}
.yad{bottom:195.533333pt;}
.yf6{bottom:198.466667pt;}
.ye0{bottom:199.000000pt;}
.y2f{bottom:200.600000pt;}
.y78{bottom:201.666667pt;}
.yac{bottom:210.733333pt;}
.yf5{bottom:213.933333pt;}
.y2e{bottom:215.800000pt;}
.y77{bottom:216.866667pt;}
.yab{bottom:226.200000pt;}
.yf4{bottom:229.133333pt;}
.y2d{bottom:230.466667pt;}
.y76{bottom:232.333333pt;}
.yaa{bottom:240.866667pt;}
.y2c{bottom:243.533333pt;}
.yf3{bottom:244.600000pt;}
.y75{bottom:247.533333pt;}
.ya9{bottom:253.666667pt;}
.y2b{bottom:258.733333pt;}
.yf2{bottom:259.800000pt;}
.y74{bottom:263.000000pt;}
.ya8{bottom:269.133333pt;}
.y2a{bottom:274.200000pt;}
.yf1{bottom:275.266667pt;}
.y73{bottom:278.200000pt;}
.ya7{bottom:284.333333pt;}
.y29{bottom:289.400000pt;}
.yf0{bottom:290.466667pt;}
.y72{bottom:292.866667pt;}
.ydf{bottom:293.666667pt;}
.ya6{bottom:299.800000pt;}
.y28{bottom:304.866667pt;}
.y71{bottom:305.933333pt;}
.yde{bottom:308.893333pt;}
.ya5{bottom:315.026667pt;}
.y27{bottom:319.560000pt;}
.y70{bottom:321.173333pt;}
.ydd{bottom:324.360000pt;}
.ya4{bottom:330.506667pt;}
.y26{bottom:332.373333pt;}
.y6f{bottom:336.626667pt;}
.ydc{bottom:339.026667pt;}
.ya3{bottom:345.706667pt;}
.y25{bottom:347.840000pt;}
.y6e{bottom:351.840000pt;}
.ya2{bottom:361.173333pt;}
.y24{bottom:363.040000pt;}
.y6d{bottom:367.293333pt;}
.ya1{bottom:375.840000pt;}
.y23{bottom:378.506667pt;}
.y6c{bottom:382.506667pt;}
.ya0{bottom:388.626667pt;}
.y22{bottom:393.706667pt;}
.y6b{bottom:397.960000pt;}
.y9f{bottom:404.106667pt;}
.y21{bottom:409.173333pt;}
.y6a{bottom:412.626667pt;}
.yef{bottom:413.173333pt;}
.ydb{bottom:413.706667pt;}
.y9e{bottom:419.306667pt;}
.y20{bottom:424.893333pt;}
.y69{bottom:425.440000pt;}
.yee{bottom:428.626667pt;}
.yda{bottom:431.026667pt;}
.y9d{bottom:434.773333pt;}
.y68{bottom:440.893333pt;}
.yd9{bottom:443.840000pt;}
.y9c{bottom:450.506667pt;}
.y67{bottom:456.106667pt;}
.yd8{bottom:459.333333pt;}
.y9b{bottom:467.866667pt;}
.y66{bottom:471.600000pt;}
.yd7{bottom:474.533333pt;}
.y9a{bottom:480.666667pt;}
.y36{bottom:482.800000pt;}
.y65{bottom:486.800000pt;}
.yd6{bottom:490.000000pt;}
.y99{bottom:496.133333pt;}
.y64{bottom:502.266667pt;}
.yed{bottom:505.200000pt;}
.yd5{bottom:505.733333pt;}
.y98{bottom:511.333333pt;}
.y63{bottom:517.466667pt;}
.yec{bottom:520.666667pt;}
.yd4{bottom:523.066667pt;}
.y97{bottom:526.800000pt;}
.y62{bottom:532.133333pt;}
.yd3{bottom:535.866667pt;}
.y96{bottom:542.000000pt;}
.y61{bottom:545.200000pt;}
.yd2{bottom:551.333333pt;}
.y95{bottom:556.666667pt;}
.y60{bottom:560.400000pt;}
.yd1{bottom:566.533333pt;}
.y94{bottom:569.733333pt;}
.y5f{bottom:575.866667pt;}
.yd0{bottom:582.000000pt;}
.y93{bottom:584.933333pt;}
.y5e{bottom:591.066667pt;}
.ycf{bottom:597.200000pt;}
.y92{bottom:600.400000pt;}
.y5d{bottom:606.560000pt;}
.yeb{bottom:612.693333pt;}
.yce{bottom:612.973333pt;}
.y91{bottom:615.640000pt;}
.y5c{bottom:621.773333pt;}
.yea{bottom:627.893333pt;}
.ycd{bottom:630.306667pt;}
.y90{bottom:631.093333pt;}
.y5b{bottom:637.226667pt;}
.ycc{bottom:643.373333pt;}
.y8f{bottom:646.840000pt;}
.y5a{bottom:652.440000pt;}
.ycb{bottom:658.573333pt;}
.y8e{bottom:664.173333pt;}
.y59{bottom:667.093333pt;}
.yca{bottom:674.026667pt;}
.y58{bottom:680.173333pt;}
.y1f{bottom:680.426667pt;}
.y8d{bottom:681.773333pt;}
.yc9{bottom:689.226667pt;}
.y8c{bottom:692.426667pt;}
.y57{bottom:695.373333pt;}
.y1e{bottom:698.293333pt;}
.yc8{bottom:704.706667pt;}
.y8b{bottom:707.626667pt;}
.y56{bottom:710.840000pt;}
.y1d{bottom:713.760000pt;}
.yc7{bottom:719.893333pt;}
.y8a{bottom:723.106667pt;}
.y55{bottom:726.040000pt;}
.y1c{bottom:731.626667pt;}
.ye9{bottom:735.373333pt;}
.yc6{bottom:735.626667pt;}
.y89{bottom:738.840000pt;}
.y54{bottom:741.506667pt;}
.y1b{bottom:749.240000pt;}
.ye8{bottom:750.560000pt;}
.yc5{bottom:752.960000pt;}
.y53{bottom:756.200000pt;}
.y1a{bottom:765.800000pt;}
.yc4{bottom:766.066667pt;}
.y52{bottom:769.000000pt;}
.yc3{bottom:781.266667pt;}
.y51{bottom:784.466667pt;}
.y19{bottom:787.133333pt;}
.yc2{bottom:796.733333pt;}
.y18{bottom:798.066667pt;}
.y50{bottom:799.666667pt;}
.yc1{bottom:811.933333pt;}
.y4f{bottom:815.133333pt;}
.y17{bottom:818.066667pt;}
.yc0{bottom:827.400000pt;}
.y16{bottom:828.733333pt;}
.y4e{bottom:830.333333pt;}
.ybf{bottom:842.600000pt;}
.y4d{bottom:845.800000pt;}
.y15{bottom:848.733333pt;}
.ybe{bottom:858.066667pt;}
.y14{bottom:859.400000pt;}
.y88{bottom:861.000000pt;}
.y4c{bottom:861.533333pt;}
.ybd{bottom:873.266667pt;}
.y13{bottom:874.600000pt;}
.yf8{bottom:876.466667pt;}
.y87{bottom:876.733333pt;}
.y4b{bottom:879.933333pt;}
.ye7{bottom:888.733333pt;}
.ybc{bottom:889.000000pt;}
.y12{bottom:890.066667pt;}
.yf7{bottom:891.666667pt;}
.y86{bottom:894.066667pt;}
.y4a{bottom:897.266667pt;}
.ye6{bottom:903.960000pt;}
.ybb{bottom:906.373333pt;}
.y85{bottom:907.173333pt;}
.y11{bottom:907.706667pt;}
.y49{bottom:910.106667pt;}
.yba{bottom:919.440000pt;}
.ye5{bottom:919.706667pt;}
.y84{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y48{bottom:925.560000pt;}
.yb9{bottom:934.626667pt;}
.y83{bottom:937.840000pt;}
.y47{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.yb8{bottom:950.106667pt;}
.y82{bottom:953.040000pt;}
.y46{bottom:956.226667pt;}
.ya{bottom:963.173333pt;}
.yb7{bottom:965.293333pt;}
.y81{bottom:968.506667pt;}
.y45{bottom:971.440000pt;}
.y9{bottom:975.960000pt;}
.yb6{bottom:980.773333pt;}
.y80{bottom:983.706667pt;}
.y44{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.yb5{bottom:995.960000pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yb4{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y42{bottom:1063.466667pt;}
.h9{height:9.359375pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.h7{height:30.104167pt;}
.hd{height:30.885937pt;}
.h3{height:32.000000pt;}
.hf{height:33.867188pt;}
.h16{height:36.515625pt;}
.h12{height:37.437500pt;}
.h4{height:37.630208pt;}
.h15{height:38.515625pt;}
.h11{height:40.572917pt;}
.h8{height:42.117188pt;}
.hb{height:43.651042pt;}
.h6{height:45.156250pt;}
.h14{height:46.218750pt;}
.he{height:46.796875pt;}
.h10{height:48.687500pt;}
.h17{height:50.032604pt;}
.hc{height:50.085937pt;}
.h19{height:50.139271pt;}
.h18{height:50.245937pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h13{height:174.693333pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:220.333333pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.xf{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.xe{left:74.700000pt;}
.x11{left:96.033322pt;}
.xd{left:112.293333pt;}
.x9{left:136.559988pt;}
.xb{left:214.740000pt;}
.x6{left:396.666655pt;}
.xc{left:501.773333pt;}
.x10{left:527.093322pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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