
    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_15d951ba9ba341729b5b37a6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f19cb1174a212c45fd395946.woff')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_1e2df22d76a47282852ebeea.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_1e1e62c8e881cc1a2fa8233e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aa396d11e2c2aec7240f640d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ccf23583730c78b50301f95a.woff')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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:-84.240000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:51.948000px;}
.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:-19.457280px;}
.ws4{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-3.189600px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._7{width:2.193120px;}
._8{width:3.496560px;}
._6{width:5.108880px;}
._b{width:6.618000px;}
._e{width:7.691040px;}
._9{width:8.724960px;}
._a{width:9.768720px;}
._14{width:11.129280px;}
._11{width:12.330000px;}
._13{width:15.012000px;}
._12{width:16.254000px;}
._19{width:18.198000px;}
._1a{width:19.440000px;}
._18{width:21.168000px;}
._17{width:22.302000px;}
._f{width:23.796000px;}
._10{width:25.470000px;}
._1b{width:26.934000px;}
._1d{width:30.834000px;}
._1c{width:32.400000px;}
._16{width:34.530000px;}
._15{width:35.532000px;}
._1e{width:36.864000px;}
._3{width:59.652000px;}
._4{width:76.500000px;}
._5{width:202.500000px;}
._2{width:1037.280000px;}
._c{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs4{font-size:126.000000px;}
.yf{bottom:-6.090000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y40{bottom:3.060000px;}
.y4{bottom:15.480000px;}
.y41{bottom:15.660000px;}
.y2{bottom:18.720000px;}
.y3f{bottom:18.900000px;}
.y5{bottom:36.720000px;}
.y42{bottom:39.780000px;}
.y1{bottom:57.600000px;}
.y3e{bottom:60.660000px;}
.yc{bottom:71.310000px;}
.yb{bottom:91.290000px;}
.ya{bottom:111.135000px;}
.y3d{bottom:113.220000px;}
.y7c{bottom:117.000000px;}
.y9c{bottom:122.940000px;}
.y9{bottom:130.935000px;}
.y3a{bottom:131.220000px;}
.y7b{bottom:135.000000px;}
.y39{bottom:149.040000px;}
.y8{bottom:150.735000px;}
.y7a{bottom:152.820000px;}
.y9b{bottom:155.700000px;}
.y38{bottom:166.860000px;}
.y79{bottom:170.640000px;}
.y9a{bottom:173.520000px;}
.y7{bottom:181.155000px;}
.y37{bottom:184.680000px;}
.y78{bottom:190.440000px;}
.y99{bottom:191.340000px;}
.y36{bottom:202.500000px;}
.y98{bottom:209.370000px;}
.y3c{bottom:220.530000px;}
.y77{bottom:223.230000px;}
.y97{bottom:227.190000px;}
.y35{bottom:229.530000px;}
.y3b{bottom:238.350000px;}
.y76{bottom:241.230000px;}
.y96{bottom:245.010000px;}
.y34{bottom:247.350000px;}
.y75{bottom:259.050000px;}
.y95{bottom:262.830000px;}
.y33{bottom:265.170000px;}
.y74{bottom:276.870000px;}
.y94{bottom:280.650000px;}
.y32{bottom:282.990000px;}
.y73{bottom:294.690000px;}
.y93{bottom:300.630000px;}
.y31{bottom:302.790000px;}
.y72{bottom:312.510000px;}
.y71{bottom:330.510000px;}
.y92{bottom:333.390000px;}
.y30{bottom:336.990000px;}
.y70{bottom:348.330000px;}
.y91{bottom:351.210000px;}
.y6{bottom:351.720000px;}
.y2f{bottom:358.770000px;}
.y6f{bottom:366.150000px;}
.y90{bottom:369.030000px;}
.ye{bottom:374.430000px;}
.y6e{bottom:383.970000px;}
.y2e{bottom:385.050000px;}
.y8f{bottom:386.850000px;}
.y6d{bottom:401.790000px;}
.yd{bottom:403.230000px;}
.y8e{bottom:404.670000px;}
.y2d{bottom:411.330000px;}
.y6c{bottom:419.610000px;}
.y8d{bottom:422.670000px;}
.y2c{bottom:437.610000px;}
.y8c{bottom:440.535000px;}
.y6b{bottom:455.475000px;}
.y2b{bottom:464.115000px;}
.y8b{bottom:467.355000px;}
.y6a{bottom:473.295000px;}
.y2a{bottom:490.395000px;}
.y69{bottom:491.115000px;}
.y8a{bottom:491.655000px;}
.y68{bottom:508.935000px;}
.y29{bottom:516.675000px;}
.y67{bottom:526.935000px;}
.y28{bottom:542.955000px;}
.y66{bottom:553.755000px;}
.y27{bottom:569.415000px;}
.y65{bottom:571.575000px;}
.y64{bottom:589.395000px;}
.y26{bottom:595.695000px;}
.y63{bottom:607.215000px;}
.y25{bottom:621.975000px;}
.y62{bottom:625.035000px;}
.y61{bottom:643.035000px;}
.y24{bottom:652.755000px;}
.y60{bottom:660.855000px;}
.y23{bottom:674.535000px;}
.y5f{bottom:687.705000px;}
.y22{bottom:701.025000px;}
.y5e{bottom:705.525000px;}
.y5d{bottom:723.345000px;}
.y21{bottom:727.305000px;}
.y5c{bottom:741.165000px;}
.y20{bottom:748.725000px;}
.y5b{bottom:759.165000px;}
.y5a{bottom:776.985000px;}
.y59{bottom:794.805000px;}
.y1f{bottom:799.305000px;}
.y58{bottom:812.625000px;}
.y57{bottom:830.445000px;}
.yb9{bottom:835.665000px;}
.y1e{bottom:845.565000px;}
.y56{bottom:848.445000px;}
.y55{bottom:866.265000px;}
.yb8{bottom:866.445000px;}
.y1d{bottom:870.765000px;}
.y89{bottom:875.085000px;}
.y54{bottom:884.085000px;}
.y1c{bottom:890.565000px;}
.y88{bottom:892.905000px;}
.yb7{bottom:897.225000px;}
.y53{bottom:901.905000px;}
.y87{bottom:910.770000px;}
.y1b{bottom:911.130000px;}
.yb6{bottom:919.050000px;}
.y52{bottom:919.770000px;}
.y86{bottom:928.590000px;}
.y1a{bottom:931.830000px;}
.yaa{bottom:939.570000px;}
.y51{bottom:946.590000px;}
.yb5{bottom:947.310000px;}
.y19{bottom:952.170000px;}
.ya9{bottom:957.570000px;}
.y85{bottom:964.410000px;}
.y50{bottom:964.590000px;}
.yb4{bottom:969.090000px;}
.ya8{bottom:975.390000px;}
.y84{bottom:982.230000px;}
.y4f{bottom:982.410000px;}
.yb3{bottom:991.050000px;}
.ya7{bottom:993.210000px;}
.y18{bottom:993.930000px;}
.y4e{bottom:1000.230000px;}
.y17{bottom:1007.790000px;}
.y83{bottom:1009.050000px;}
.ya6{bottom:1011.030000px;}
.yb2{bottom:1012.830000px;}
.y4d{bottom:1018.050000px;}
.y16{bottom:1021.650000px;}
.y82{bottom:1026.870000px;}
.ya5{bottom:1030.830000px;}
.yb1{bottom:1034.610000px;}
.y15{bottom:1035.510000px;}
.y4c{bottom:1035.870000px;}
.y81{bottom:1044.870000px;}
.y4b{bottom:1053.870000px;}
.y14{bottom:1054.050000px;}
.yb0{bottom:1056.390000px;}
.y80{bottom:1062.690000px;}
.ya4{bottom:1063.770000px;}
.y4a{bottom:1071.690000px;}
.yaf{bottom:1078.170000px;}
.y7f{bottom:1080.510000px;}
.ya3{bottom:1081.590000px;}
.y13{bottom:1083.210000px;}
.y49{bottom:1089.510000px;}
.y7e{bottom:1098.330000px;}
.ya2{bottom:1099.410000px;}
.yae{bottom:1100.130000px;}
.y48{bottom:1107.330000px;}
.y12{bottom:1110.930000px;}
.y7d{bottom:1116.150000px;}
.ya1{bottom:1117.230000px;}
.yad{bottom:1121.910000px;}
.y47{bottom:1125.150000px;}
.ya0{bottom:1135.050000px;}
.y11{bottom:1138.830000px;}
.yac{bottom:1140.990000px;}
.y46{bottom:1142.970000px;}
.y9f{bottom:1153.080000px;}
.y45{bottom:1161.000000px;}
.yab{bottom:1169.820000px;}
.y10{bottom:1170.540000px;}
.y9e{bottom:1170.900000px;}
.y44{bottom:1178.820000px;}
.y9d{bottom:1190.700000px;}
.y43{bottom:1196.640000px;}
.h2{height:30.955500px;}
.h11{height:31.135500px;}
.h12{height:37.705078px;}
.hc{height:40.985156px;}
.h3{height:52.998047px;}
.h13{height:54.421875px;}
.h14{height:55.503491px;}
.h7{height:58.621992px;}
.hd{height:58.651172px;}
.h8{height:60.226875px;}
.h15{height:61.189805px;}
.he{height:65.010937px;}
.h4{height:65.884219px;}
.h10{height:66.757500px;}
.h6{height:78.367500px;}
.hf{height:82.676953px;}
.ha{height:84.898125px;}
.hb{height:90.703125px;}
.h9{height:126.984375px;}
.h5{height:211.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x7{left:10.800000px;}
.x6{left:39.240000px;}
.x1{left:45.364500px;}
.x8{left:50.040000px;}
.x5{left:54.000000px;}
.x15{left:81.000000px;}
.x16{left:108.036000px;}
.xf{left:136.296000px;}
.x2{left:222.370500px;}
.xa{left:270.615000px;}
.xc{left:272.595000px;}
.xd{left:296.535000px;}
.x12{left:324.075000px;}
.xb{left:364.395000px;}
.xe{left:378.795000px;}
.x10{left:393.375000px;}
.x11{left:406.335000px;}
.x9{left:446.505000px;}
.x13{left:473.505000px;}
.x17{left:656.250000px;}
.x4{left:767.490000px;}
.x14{left:834.480000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:46.176000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-2.835200pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._7{width:1.949440pt;}
._8{width:3.108053pt;}
._6{width:4.541227pt;}
._b{width:5.882667pt;}
._e{width:6.836480pt;}
._9{width:7.755520pt;}
._a{width:8.683307pt;}
._14{width:9.892693pt;}
._11{width:10.960000pt;}
._13{width:13.344000pt;}
._12{width:14.448000pt;}
._19{width:16.176000pt;}
._1a{width:17.280000pt;}
._18{width:18.816000pt;}
._17{width:19.824000pt;}
._f{width:21.152000pt;}
._10{width:22.640000pt;}
._1b{width:23.941333pt;}
._1d{width:27.408000pt;}
._1c{width:28.800000pt;}
._16{width:30.693333pt;}
._15{width:31.584000pt;}
._1e{width:32.768000pt;}
._3{width:53.024000pt;}
._4{width:68.000000pt;}
._5{width:180.000000pt;}
._2{width:922.026667pt;}
._c{width:1088.266667pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs4{font-size:112.000000pt;}
.yf{bottom:-5.413333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y40{bottom:2.720000pt;}
.y4{bottom:13.760000pt;}
.y41{bottom:13.920000pt;}
.y2{bottom:16.640000pt;}
.y3f{bottom:16.800000pt;}
.y5{bottom:32.640000pt;}
.y42{bottom:35.360000pt;}
.y1{bottom:51.200000pt;}
.y3e{bottom:53.920000pt;}
.yc{bottom:63.386667pt;}
.yb{bottom:81.146667pt;}
.ya{bottom:98.786667pt;}
.y3d{bottom:100.640000pt;}
.y7c{bottom:104.000000pt;}
.y9c{bottom:109.280000pt;}
.y9{bottom:116.386667pt;}
.y3a{bottom:116.640000pt;}
.y7b{bottom:120.000000pt;}
.y39{bottom:132.480000pt;}
.y8{bottom:133.986667pt;}
.y7a{bottom:135.840000pt;}
.y9b{bottom:138.400000pt;}
.y38{bottom:148.320000pt;}
.y79{bottom:151.680000pt;}
.y9a{bottom:154.240000pt;}
.y7{bottom:161.026667pt;}
.y37{bottom:164.160000pt;}
.y78{bottom:169.280000pt;}
.y99{bottom:170.080000pt;}
.y36{bottom:180.000000pt;}
.y98{bottom:186.106667pt;}
.y3c{bottom:196.026667pt;}
.y77{bottom:198.426667pt;}
.y97{bottom:201.946667pt;}
.y35{bottom:204.026667pt;}
.y3b{bottom:211.866667pt;}
.y76{bottom:214.426667pt;}
.y96{bottom:217.786667pt;}
.y34{bottom:219.866667pt;}
.y75{bottom:230.266667pt;}
.y95{bottom:233.626667pt;}
.y33{bottom:235.706667pt;}
.y74{bottom:246.106667pt;}
.y94{bottom:249.466667pt;}
.y32{bottom:251.546667pt;}
.y73{bottom:261.946667pt;}
.y93{bottom:267.226667pt;}
.y31{bottom:269.146667pt;}
.y72{bottom:277.786667pt;}
.y71{bottom:293.786667pt;}
.y92{bottom:296.346667pt;}
.y30{bottom:299.546667pt;}
.y70{bottom:309.626667pt;}
.y91{bottom:312.186667pt;}
.y6{bottom:312.640000pt;}
.y2f{bottom:318.906667pt;}
.y6f{bottom:325.466667pt;}
.y90{bottom:328.026667pt;}
.ye{bottom:332.826667pt;}
.y6e{bottom:341.306667pt;}
.y2e{bottom:342.266667pt;}
.y8f{bottom:343.866667pt;}
.y6d{bottom:357.146667pt;}
.yd{bottom:358.426667pt;}
.y8e{bottom:359.706667pt;}
.y2d{bottom:365.626667pt;}
.y6c{bottom:372.986667pt;}
.y8d{bottom:375.706667pt;}
.y2c{bottom:388.986667pt;}
.y8c{bottom:391.586667pt;}
.y6b{bottom:404.866667pt;}
.y2b{bottom:412.546667pt;}
.y8b{bottom:415.426667pt;}
.y6a{bottom:420.706667pt;}
.y2a{bottom:435.906667pt;}
.y69{bottom:436.546667pt;}
.y8a{bottom:437.026667pt;}
.y68{bottom:452.386667pt;}
.y29{bottom:459.266667pt;}
.y67{bottom:468.386667pt;}
.y28{bottom:482.626667pt;}
.y66{bottom:492.226667pt;}
.y27{bottom:506.146667pt;}
.y65{bottom:508.066667pt;}
.y64{bottom:523.906667pt;}
.y26{bottom:529.506667pt;}
.y63{bottom:539.746667pt;}
.y25{bottom:552.866667pt;}
.y62{bottom:555.586667pt;}
.y61{bottom:571.586667pt;}
.y24{bottom:580.226667pt;}
.y60{bottom:587.426667pt;}
.y23{bottom:599.586667pt;}
.y5f{bottom:611.293333pt;}
.y22{bottom:623.133333pt;}
.y5e{bottom:627.133333pt;}
.y5d{bottom:642.973333pt;}
.y21{bottom:646.493333pt;}
.y5c{bottom:658.813333pt;}
.y20{bottom:665.533333pt;}
.y5b{bottom:674.813333pt;}
.y5a{bottom:690.653333pt;}
.y59{bottom:706.493333pt;}
.y1f{bottom:710.493333pt;}
.y58{bottom:722.333333pt;}
.y57{bottom:738.173333pt;}
.yb9{bottom:742.813333pt;}
.y1e{bottom:751.613333pt;}
.y56{bottom:754.173333pt;}
.y55{bottom:770.013333pt;}
.yb8{bottom:770.173333pt;}
.y1d{bottom:774.013333pt;}
.y89{bottom:777.853333pt;}
.y54{bottom:785.853333pt;}
.y1c{bottom:791.613333pt;}
.y88{bottom:793.693333pt;}
.yb7{bottom:797.533333pt;}
.y53{bottom:801.693333pt;}
.y87{bottom:809.573333pt;}
.y1b{bottom:809.893333pt;}
.yb6{bottom:816.933333pt;}
.y52{bottom:817.573333pt;}
.y86{bottom:825.413333pt;}
.y1a{bottom:828.293333pt;}
.yaa{bottom:835.173333pt;}
.y51{bottom:841.413333pt;}
.yb5{bottom:842.053333pt;}
.y19{bottom:846.373333pt;}
.ya9{bottom:851.173333pt;}
.y85{bottom:857.253333pt;}
.y50{bottom:857.413333pt;}
.yb4{bottom:861.413333pt;}
.ya8{bottom:867.013333pt;}
.y84{bottom:873.093333pt;}
.y4f{bottom:873.253333pt;}
.yb3{bottom:880.933333pt;}
.ya7{bottom:882.853333pt;}
.y18{bottom:883.493333pt;}
.y4e{bottom:889.093333pt;}
.y17{bottom:895.813333pt;}
.y83{bottom:896.933333pt;}
.ya6{bottom:898.693333pt;}
.yb2{bottom:900.293333pt;}
.y4d{bottom:904.933333pt;}
.y16{bottom:908.133333pt;}
.y82{bottom:912.773333pt;}
.ya5{bottom:916.293333pt;}
.yb1{bottom:919.653333pt;}
.y15{bottom:920.453333pt;}
.y4c{bottom:920.773333pt;}
.y81{bottom:928.773333pt;}
.y4b{bottom:936.773333pt;}
.y14{bottom:936.933333pt;}
.yb0{bottom:939.013333pt;}
.y80{bottom:944.613333pt;}
.ya4{bottom:945.573333pt;}
.y4a{bottom:952.613333pt;}
.yaf{bottom:958.373333pt;}
.y7f{bottom:960.453333pt;}
.ya3{bottom:961.413333pt;}
.y13{bottom:962.853333pt;}
.y49{bottom:968.453333pt;}
.y7e{bottom:976.293333pt;}
.ya2{bottom:977.253333pt;}
.yae{bottom:977.893333pt;}
.y48{bottom:984.293333pt;}
.y12{bottom:987.493333pt;}
.y7d{bottom:992.133333pt;}
.ya1{bottom:993.093333pt;}
.yad{bottom:997.253333pt;}
.y47{bottom:1000.133333pt;}
.ya0{bottom:1008.933333pt;}
.y11{bottom:1012.293333pt;}
.yac{bottom:1014.213333pt;}
.y46{bottom:1015.973333pt;}
.y9f{bottom:1024.960000pt;}
.y45{bottom:1032.000000pt;}
.yab{bottom:1039.840000pt;}
.y10{bottom:1040.480000pt;}
.y9e{bottom:1040.800000pt;}
.y44{bottom:1047.840000pt;}
.y9d{bottom:1058.400000pt;}
.y43{bottom:1063.680000pt;}
.h2{height:27.516000pt;}
.h11{height:27.676000pt;}
.h12{height:33.515625pt;}
.hc{height:36.431250pt;}
.h3{height:47.109375pt;}
.h13{height:48.375000pt;}
.h14{height:49.336436pt;}
.h7{height:52.108438pt;}
.hd{height:52.134375pt;}
.h8{height:53.535000pt;}
.h15{height:54.390938pt;}
.he{height:57.787500pt;}
.h4{height:58.563750pt;}
.h10{height:59.340000pt;}
.h6{height:69.660000pt;}
.hf{height:73.490625pt;}
.ha{height:75.465000pt;}
.hb{height:80.625000pt;}
.h9{height:112.875000pt;}
.h5{height:187.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x7{left:9.600000pt;}
.x6{left:34.880000pt;}
.x1{left:40.324000pt;}
.x8{left:44.480000pt;}
.x5{left:48.000000pt;}
.x15{left:72.000000pt;}
.x16{left:96.032000pt;}
.xf{left:121.152000pt;}
.x2{left:197.662667pt;}
.xa{left:240.546667pt;}
.xc{left:242.306667pt;}
.xd{left:263.586667pt;}
.x12{left:288.066667pt;}
.xb{left:323.906667pt;}
.xe{left:336.706667pt;}
.x10{left:349.666667pt;}
.x11{left:361.186667pt;}
.x9{left:396.893333pt;}
.x13{left:420.893333pt;}
.x17{left:583.333333pt;}
.x4{left:682.213333pt;}
.x14{left:741.760000pt;}
}




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