
    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_7e1a2bcc20becf886f8d0a33.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_baa90126137d52effaa1900b.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_ee7e31348a3864b2e4848010.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_b9e4229cb6cefa1b8c7b1c21.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c8cebc44513f923c98431859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_25fdde6e200e290f5a61bf2b.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls9{letter-spacing:188.040000px;}
.ls5{letter-spacing:194.400000px;}
.ls6{letter-spacing:224.040000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.238800px;}
.ws4{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-7.344000px;}
._3{margin-left:-6.240960px;}
._2{margin-left:-4.536000px;}
._1{margin-left:-2.568240px;}
._4{margin-left:-1.224000px;}
._0{width:1.513440px;}
._5{width:3.094560px;}
._6{width:4.609440px;}
._b{width:5.974560px;}
._9{width:7.272000px;}
._a{width:8.424000px;}
._e{width:10.368000px;}
._15{width:11.520000px;}
._12{width:12.961440px;}
._11{width:14.254560px;}
._1a{width:15.480000px;}
._1b{width:16.488000px;}
._22{width:19.008000px;}
._10{width:20.232000px;}
._19{width:21.360240px;}
._13{width:22.393440px;}
._1c{width:23.815920px;}
._21{width:25.848000px;}
._17{width:27.576000px;}
._18{width:28.656000px;}
._f{width:29.808000px;}
._16{width:30.816000px;}
._8{width:32.544000px;}
._7{width:33.840000px;}
._25{width:42.420000px;}
._20{width:43.488000px;}
._c{width:52.128000px;}
._d{width:53.352000px;}
._1e{width:54.646560px;}
._1d{width:55.800000px;}
._23{width:58.104000px;}
._24{width:59.326560px;}
._27{width:115.344000px;}
._28{width:116.352000px;}
._1f{width:315.298560px;}
._26{width:372.576000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y37{bottom:7.020000px;}
.y35{bottom:7.200000px;}
.ya1{bottom:12.495000px;}
.y7b{bottom:12.525000px;}
.y3b{bottom:18.900000px;}
.y3d{bottom:19.080000px;}
.y98{bottom:28.335000px;}
.y73{bottom:28.905000px;}
.y80{bottom:30.810000px;}
.y3a{bottom:30.825000px;}
.y34{bottom:30.960000px;}
.y31{bottom:42.840000px;}
.y7e{bottom:42.870000px;}
.y33{bottom:54.720000px;}
.y7f{bottom:54.750000px;}
.y99{bottom:59.040000px;}
.y74{bottom:68.295000px;}
.y6{bottom:69.480000px;}
.y32{bottom:78.480000px;}
.y81{bottom:78.510000px;}
.y9a{bottom:89.745000px;}
.y50{bottom:93.060000px;}
.y4f{bottom:98.280000px;}
.y75{bottom:107.715000px;}
.y4e{bottom:111.960000px;}
.y9b{bottom:120.450000px;}
.y93{bottom:140.220000px;}
.y76{bottom:147.090000px;}
.y6d{bottom:149.400000px;}
.y94{bottom:150.150000px;}
.y9c{bottom:151.170000px;}
.y92{bottom:164.010000px;}
.y2e{bottom:169.410000px;}
.y95{bottom:169.845000px;}
.y6c{bottom:173.190000px;}
.y9d{bottom:181.875000px;}
.y77{bottom:186.480000px;}
.y91{bottom:187.950000px;}
.y6f{bottom:188.670000px;}
.y2d{bottom:193.170000px;}
.y6b{bottom:196.950000px;}
.y90{bottom:211.710000px;}
.y9e{bottom:212.550000px;}
.y2c{bottom:216.930000px;}
.y6a{bottom:220.890000px;}
.y70{bottom:222.300000px;}
.y78{bottom:225.870000px;}
.y8f{bottom:235.470000px;}
.y2b{bottom:240.690000px;}
.y9f{bottom:243.255000px;}
.y69{bottom:244.650000px;}
.y96{bottom:253.545000px;}
.y8e{bottom:259.230000px;}
.y2a{bottom:264.630000px;}
.y79{bottom:265.290000px;}
.y68{bottom:268.410000px;}
.ya0{bottom:273.960000px;}
.y71{bottom:276.810000px;}
.y8d{bottom:283.170000px;}
.y29{bottom:288.390000px;}
.y67{bottom:292.170000px;}
.y97{bottom:294.375000px;}
.y7a{bottom:304.665000px;}
.y8c{bottom:306.930000px;}
.y72{bottom:310.530000px;}
.y28{bottom:312.150000px;}
.y66{bottom:316.110000px;}
.y8b{bottom:330.690000px;}
.y27{bottom:335.910000px;}
.y65{bottom:339.870000px;}
.y8a{bottom:354.450000px;}
.y26{bottom:359.670000px;}
.y64{bottom:363.630000px;}
.y89{bottom:378.390000px;}
.y25{bottom:383.610000px;}
.y63{bottom:387.390000px;}
.y88{bottom:402.195000px;}
.y24{bottom:407.415000px;}
.y62{bottom:411.375000px;}
.y87{bottom:425.955000px;}
.y23{bottom:431.175000px;}
.y61{bottom:435.135000px;}
.y86{bottom:443.415000px;}
.y4d{bottom:448.275000px;}
.y22{bottom:454.935000px;}
.y60{bottom:458.895000px;}
.y4c{bottom:472.035000px;}
.y21{bottom:478.875000px;}
.y5f{bottom:482.655000px;}
.y85{bottom:491.835000px;}
.y4b{bottom:495.795000px;}
.y20{bottom:502.635000px;}
.y5e{bottom:506.415000px;}
.y84{bottom:516.315000px;}
.y4a{bottom:519.735000px;}
.y1f{bottom:526.395000px;}
.y5d{bottom:530.355000px;}
.y49{bottom:543.495000px;}
.y1e{bottom:550.155000px;}
.y5c{bottom:554.115000px;}
.y83{bottom:564.735000px;}
.y48{bottom:567.255000px;}
.y1d{bottom:574.095000px;}
.y5b{bottom:577.875000px;}
.y82{bottom:589.215000px;}
.y47{bottom:591.015000px;}
.y1c{bottom:597.855000px;}
.y5a{bottom:601.635000px;}
.y46{bottom:614.955000px;}
.y1b{bottom:621.615000px;}
.y59{bottom:625.575000px;}
.y7d{bottom:637.635000px;}
.y45{bottom:638.715000px;}
.y1a{bottom:645.375000px;}
.y58{bottom:649.365000px;}
.y44{bottom:662.505000px;}
.y19{bottom:669.345000px;}
.y57{bottom:673.125000px;}
.y43{bottom:686.265000px;}
.y18{bottom:693.105000px;}
.y56{bottom:696.885000px;}
.y42{bottom:710.205000px;}
.y17{bottom:716.865000px;}
.y55{bottom:720.825000px;}
.y41{bottom:733.965000px;}
.y16{bottom:740.625000px;}
.y54{bottom:744.585000px;}
.y7c{bottom:747.465000px;}
.y40{bottom:751.425000px;}
.y15{bottom:764.565000px;}
.y52{bottom:768.345000px;}
.y53{bottom:774.285000px;}
.y3f{bottom:775.905000px;}
.y51{bottom:788.145000px;}
.y14{bottom:788.325000px;}
.y6e{bottom:789.120000px;}
.y3e{bottom:800.565000px;}
.y13{bottom:812.085000px;}
.y3c{bottom:825.045000px;}
.y12{bottom:835.845000px;}
.y11{bottom:859.605000px;}
.y39{bottom:873.465000px;}
.y10{bottom:883.545000px;}
.yf{bottom:907.350000px;}
.y38{bottom:921.750000px;}
.ye{bottom:931.110000px;}
.y36{bottom:946.410000px;}
.yd{bottom:954.870000px;}
.y30{bottom:970.890000px;}
.yc{bottom:978.810000px;}
.yb{bottom:1002.570000px;}
.ya{bottom:1026.330000px;}
.y9{bottom:1050.090000px;}
.y8{bottom:1074.030000px;}
.y2f{bottom:1079.970000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.hc{height:23.760000px;}
.hd{height:23.940000px;}
.h10{height:38.671172px;}
.h2{height:42.164648px;}
.h14{height:47.344922px;}
.he{height:47.556000px;}
.hf{height:47.700000px;}
.ha{height:48.616875px;}
.h9{height:50.800781px;}
.h13{height:54.421875px;}
.h17{height:54.567000px;}
.h11{height:59.439023px;}
.h3{height:60.226875px;}
.h8{height:63.457031px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h16{height:74.004654px;}
.h5{height:82.676953px;}
.h4{height:84.898125px;}
.hb{height:95.220000px;}
.h15{height:95.256000px;}
.h12{height:325.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:73.656000px;}
.w8{width:78.336000px;}
.w7{width:84.240000px;}
.w6{width:84.276000px;}
.wd{width:84.420000px;}
.w9{width:92.700000px;}
.w5{width:94.680000px;}
.wc{width:95.040000px;}
.w4{width:230.790000px;}
.wb{width:232.770000px;}
.wa{width:617.940000px;}
.wf{width:629.280000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:6.480000px;}
.xf{left:7.740000px;}
.x25{left:9.864000px;}
.x17{left:12.060000px;}
.x15{left:15.480000px;}
.x3a{left:16.596000px;}
.x19{left:19.260000px;}
.x1a{left:23.760000px;}
.x18{left:28.080000px;}
.x39{left:43.632000px;}
.x24{left:50.364000px;}
.x3{left:84.995987px;}
.x1c{left:89.855987px;}
.x28{left:93.275987px;}
.x32{left:99.215987px;}
.x26{left:108.030000px;}
.x35{left:113.550000px;}
.x20{left:116.535000px;}
.xb{left:125.135987px;}
.x6{left:164.369987px;}
.x8{left:205.229987px;}
.x21{left:242.925000px;}
.x36{left:251.310000px;}
.x1b{left:301.034987px;}
.x10{left:317.415000px;}
.x2c{left:319.395000px;}
.x4{left:350.714987px;}
.x29{left:357.914987px;}
.x22{left:371.055000px;}
.x9{left:380.954987px;}
.x37{left:385.665000px;}
.xc{left:401.654987px;}
.x11{left:412.815000px;}
.x2d{left:415.155000px;}
.x5{left:430.634987px;}
.x7{left:446.504987px;}
.x2{left:457.124987px;}
.xd{left:485.204973px;}
.xe{left:491.324987px;}
.x12{left:497.805000px;}
.x2e{left:500.145000px;}
.x1{left:510.404987px;}
.x23{left:518.070000px;}
.x38{left:523.470000px;}
.x2a{left:528.944973px;}
.x2b{left:535.064987px;}
.x13{left:582.765000px;}
.x2f{left:585.285000px;}
.x30{left:659.670000px;}
.x14{left:662.010000px;}
.x1d{left:703.769987px;}
.x31{left:715.109987px;}
.xa{left:744.989987px;}
.x27{left:750.929987px;}
.x33{left:787.469973px;}
.x34{left:793.589987px;}
.x1e{left:796.469973px;}
.x1f{left:802.589987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls9{letter-spacing:167.146667pt;}
.ls5{letter-spacing:172.800000pt;}
.ls6{letter-spacing:199.146667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws4{word-spacing:-12.005120pt;}
.ws5{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-6.528000pt;}
._3{margin-left:-5.547520pt;}
._2{margin-left:-4.032000pt;}
._1{margin-left:-2.282880pt;}
._4{margin-left:-1.088000pt;}
._0{width:1.345280pt;}
._5{width:2.750720pt;}
._6{width:4.097280pt;}
._b{width:5.310720pt;}
._9{width:6.464000pt;}
._a{width:7.488000pt;}
._e{width:9.216000pt;}
._15{width:10.240000pt;}
._12{width:11.521280pt;}
._11{width:12.670720pt;}
._1a{width:13.760000pt;}
._1b{width:14.656000pt;}
._22{width:16.896000pt;}
._10{width:17.984000pt;}
._19{width:18.986880pt;}
._13{width:19.905280pt;}
._1c{width:21.169707pt;}
._21{width:22.976000pt;}
._17{width:24.512000pt;}
._18{width:25.472000pt;}
._f{width:26.496000pt;}
._16{width:27.392000pt;}
._8{width:28.928000pt;}
._7{width:30.080000pt;}
._25{width:37.706667pt;}
._20{width:38.656000pt;}
._c{width:46.336000pt;}
._d{width:47.424000pt;}
._1e{width:48.574720pt;}
._1d{width:49.600000pt;}
._23{width:51.648000pt;}
._24{width:52.734720pt;}
._27{width:102.528000pt;}
._28{width:103.424000pt;}
._1f{width:280.265387pt;}
._26{width:331.178667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:6.240000pt;}
.y35{bottom:6.400000pt;}
.ya1{bottom:11.106667pt;}
.y7b{bottom:11.133333pt;}
.y3b{bottom:16.800000pt;}
.y3d{bottom:16.960000pt;}
.y98{bottom:25.186667pt;}
.y73{bottom:25.693333pt;}
.y80{bottom:27.386667pt;}
.y3a{bottom:27.400000pt;}
.y34{bottom:27.520000pt;}
.y31{bottom:38.080000pt;}
.y7e{bottom:38.106667pt;}
.y33{bottom:48.640000pt;}
.y7f{bottom:48.666667pt;}
.y99{bottom:52.480000pt;}
.y74{bottom:60.706667pt;}
.y6{bottom:61.760000pt;}
.y32{bottom:69.760000pt;}
.y81{bottom:69.786667pt;}
.y9a{bottom:79.773333pt;}
.y50{bottom:82.720000pt;}
.y4f{bottom:87.360000pt;}
.y75{bottom:95.746667pt;}
.y4e{bottom:99.520000pt;}
.y9b{bottom:107.066667pt;}
.y93{bottom:124.640000pt;}
.y76{bottom:130.746667pt;}
.y6d{bottom:132.800000pt;}
.y94{bottom:133.466667pt;}
.y9c{bottom:134.373333pt;}
.y92{bottom:145.786667pt;}
.y2e{bottom:150.586667pt;}
.y95{bottom:150.973333pt;}
.y6c{bottom:153.946667pt;}
.y9d{bottom:161.666667pt;}
.y77{bottom:165.760000pt;}
.y91{bottom:167.066667pt;}
.y6f{bottom:167.706667pt;}
.y2d{bottom:171.706667pt;}
.y6b{bottom:175.066667pt;}
.y90{bottom:188.186667pt;}
.y9e{bottom:188.933333pt;}
.y2c{bottom:192.826667pt;}
.y6a{bottom:196.346667pt;}
.y70{bottom:197.600000pt;}
.y78{bottom:200.773333pt;}
.y8f{bottom:209.306667pt;}
.y2b{bottom:213.946667pt;}
.y9f{bottom:216.226667pt;}
.y69{bottom:217.466667pt;}
.y96{bottom:225.373333pt;}
.y8e{bottom:230.426667pt;}
.y2a{bottom:235.226667pt;}
.y79{bottom:235.813333pt;}
.y68{bottom:238.586667pt;}
.ya0{bottom:243.520000pt;}
.y71{bottom:246.053333pt;}
.y8d{bottom:251.706667pt;}
.y29{bottom:256.346667pt;}
.y67{bottom:259.706667pt;}
.y97{bottom:261.666667pt;}
.y7a{bottom:270.813333pt;}
.y8c{bottom:272.826667pt;}
.y72{bottom:276.026667pt;}
.y28{bottom:277.466667pt;}
.y66{bottom:280.986667pt;}
.y8b{bottom:293.946667pt;}
.y27{bottom:298.586667pt;}
.y65{bottom:302.106667pt;}
.y8a{bottom:315.066667pt;}
.y26{bottom:319.706667pt;}
.y64{bottom:323.226667pt;}
.y89{bottom:336.346667pt;}
.y25{bottom:340.986667pt;}
.y63{bottom:344.346667pt;}
.y88{bottom:357.506667pt;}
.y24{bottom:362.146667pt;}
.y62{bottom:365.666667pt;}
.y87{bottom:378.626667pt;}
.y23{bottom:383.266667pt;}
.y61{bottom:386.786667pt;}
.y86{bottom:394.146667pt;}
.y4d{bottom:398.466667pt;}
.y22{bottom:404.386667pt;}
.y60{bottom:407.906667pt;}
.y4c{bottom:419.586667pt;}
.y21{bottom:425.666667pt;}
.y5f{bottom:429.026667pt;}
.y85{bottom:437.186667pt;}
.y4b{bottom:440.706667pt;}
.y20{bottom:446.786667pt;}
.y5e{bottom:450.146667pt;}
.y84{bottom:458.946667pt;}
.y4a{bottom:461.986667pt;}
.y1f{bottom:467.906667pt;}
.y5d{bottom:471.426667pt;}
.y49{bottom:483.106667pt;}
.y1e{bottom:489.026667pt;}
.y5c{bottom:492.546667pt;}
.y83{bottom:501.986667pt;}
.y48{bottom:504.226667pt;}
.y1d{bottom:510.306667pt;}
.y5b{bottom:513.666667pt;}
.y82{bottom:523.746667pt;}
.y47{bottom:525.346667pt;}
.y1c{bottom:531.426667pt;}
.y5a{bottom:534.786667pt;}
.y46{bottom:546.626667pt;}
.y1b{bottom:552.546667pt;}
.y59{bottom:556.066667pt;}
.y7d{bottom:566.786667pt;}
.y45{bottom:567.746667pt;}
.y1a{bottom:573.666667pt;}
.y58{bottom:577.213333pt;}
.y44{bottom:588.893333pt;}
.y19{bottom:594.973333pt;}
.y57{bottom:598.333333pt;}
.y43{bottom:610.013333pt;}
.y18{bottom:616.093333pt;}
.y56{bottom:619.453333pt;}
.y42{bottom:631.293333pt;}
.y17{bottom:637.213333pt;}
.y55{bottom:640.733333pt;}
.y41{bottom:652.413333pt;}
.y16{bottom:658.333333pt;}
.y54{bottom:661.853333pt;}
.y7c{bottom:664.413333pt;}
.y40{bottom:667.933333pt;}
.y15{bottom:679.613333pt;}
.y52{bottom:682.973333pt;}
.y53{bottom:688.253333pt;}
.y3f{bottom:689.693333pt;}
.y51{bottom:700.573333pt;}
.y14{bottom:700.733333pt;}
.y6e{bottom:701.440000pt;}
.y3e{bottom:711.613333pt;}
.y13{bottom:721.853333pt;}
.y3c{bottom:733.373333pt;}
.y12{bottom:742.973333pt;}
.y11{bottom:764.093333pt;}
.y39{bottom:776.413333pt;}
.y10{bottom:785.373333pt;}
.yf{bottom:806.533333pt;}
.y38{bottom:819.333333pt;}
.ye{bottom:827.653333pt;}
.y36{bottom:841.253333pt;}
.yd{bottom:848.773333pt;}
.y30{bottom:863.013333pt;}
.yc{bottom:870.053333pt;}
.yb{bottom:891.173333pt;}
.ya{bottom:912.293333pt;}
.y9{bottom:933.413333pt;}
.y8{bottom:954.693333pt;}
.y2f{bottom:959.973333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.hc{height:21.120000pt;}
.hd{height:21.280000pt;}
.h10{height:34.374375pt;}
.h2{height:37.479688pt;}
.h14{height:42.084375pt;}
.he{height:42.272000pt;}
.hf{height:42.400000pt;}
.ha{height:43.215000pt;}
.h9{height:45.156250pt;}
.h13{height:48.375000pt;}
.h17{height:48.504000pt;}
.h11{height:52.834688pt;}
.h3{height:53.535000pt;}
.h8{height:56.406250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h16{height:65.781915pt;}
.h5{height:73.490625pt;}
.h4{height:75.465000pt;}
.hb{height:84.640000pt;}
.h15{height:84.672000pt;}
.h12{height:289.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:65.472000pt;}
.w8{width:69.632000pt;}
.w7{width:74.880000pt;}
.w6{width:74.912000pt;}
.wd{width:75.040000pt;}
.w9{width:82.400000pt;}
.w5{width:84.160000pt;}
.wc{width:84.480000pt;}
.w4{width:205.146667pt;}
.wb{width:206.906667pt;}
.wa{width:549.280000pt;}
.wf{width:559.360000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:5.760000pt;}
.xf{left:6.880000pt;}
.x25{left:8.768000pt;}
.x17{left:10.720000pt;}
.x15{left:13.760000pt;}
.x3a{left:14.752000pt;}
.x19{left:17.120000pt;}
.x1a{left:21.120000pt;}
.x18{left:24.960000pt;}
.x39{left:38.784000pt;}
.x24{left:44.768000pt;}
.x3{left:75.551988pt;}
.x1c{left:79.871988pt;}
.x28{left:82.911988pt;}
.x32{left:88.191988pt;}
.x26{left:96.026667pt;}
.x35{left:100.933333pt;}
.x20{left:103.586667pt;}
.xb{left:111.231988pt;}
.x6{left:146.106655pt;}
.x8{left:182.426655pt;}
.x21{left:215.933333pt;}
.x36{left:223.386667pt;}
.x1b{left:267.586655pt;}
.x10{left:282.146667pt;}
.x2c{left:283.906667pt;}
.x4{left:311.746655pt;}
.x29{left:318.146655pt;}
.x22{left:329.826667pt;}
.x9{left:338.626655pt;}
.x37{left:342.813333pt;}
.xc{left:357.026655pt;}
.x11{left:366.946667pt;}
.x2d{left:369.026667pt;}
.x5{left:382.786655pt;}
.x7{left:396.893322pt;}
.x2{left:406.333322pt;}
.xd{left:431.293310pt;}
.xe{left:436.733322pt;}
.x12{left:442.493333pt;}
.x2e{left:444.573333pt;}
.x1{left:453.693322pt;}
.x23{left:460.506667pt;}
.x38{left:465.306667pt;}
.x2a{left:470.173310pt;}
.x2b{left:475.613322pt;}
.x13{left:518.013333pt;}
.x2f{left:520.253333pt;}
.x30{left:586.373333pt;}
.x14{left:588.453333pt;}
.x1d{left:625.573322pt;}
.x31{left:635.653322pt;}
.xa{left:662.213322pt;}
.x27{left:667.493322pt;}
.x33{left:699.973310pt;}
.x34{left:705.413322pt;}
.x1e{left:707.973310pt;}
.x1f{left:713.413322pt;}
}




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