
    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_4cd9dca2a507bc20df8971ae.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f6e96cb508f4676b6ec5cf74.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b57fc163cc4705966829ae68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_0f7430e8697a098caa77bbfb.woff2')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_88dc1fd606071492147e2527.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2886fb65073040fb9abc32e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2b87db0a34d93901c67149f3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c3e31861a464602500181d15.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.584000px;}
.ls5{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.936000px;}
.ls7{letter-spacing:1.152000px;}
.ls1{letter-spacing:2.160000px;}
.ls11{letter-spacing:17.424000px;}
.ls10{letter-spacing:53.424000px;}
.lse{letter-spacing:147.024000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.wsc{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.496000px;}
.ws6{word-spacing:-17.352000px;}
.ws4{word-spacing:-16.704000px;}
.wsa{word-spacing:-16.416000px;}
.ws0{word-spacing:-14.506440px;}
.ws1{word-spacing:-11.880000px;}
.ws5{word-spacing:0.000000px;}
._1c{margin-left:-5.235840px;}
._10{margin-left:-3.936960px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.338560px;}
._4{width:3.507840px;}
._5{width:5.230560px;}
._6{width:6.369600px;}
._7{width:7.549440px;}
._8{width:9.102720px;}
._9{width:10.953600px;}
._12{width:12.816000px;}
._11{width:14.189280px;}
._e{width:15.730560px;}
._f{width:16.755840px;}
._18{width:19.869120px;}
._19{width:21.574560px;}
._1b{width:22.817760px;}
._1a{width:24.727680px;}
._b{width:25.744320px;}
._a{width:27.374400px;}
._c{width:28.800000px;}
._d{width:30.283680px;}
._20{width:31.455840px;}
._17{width:32.541120px;}
._13{width:34.536960px;}
._14{width:36.106560px;}
._15{width:37.307520px;}
._16{width:38.678400px;}
._25{width:39.761280px;}
._26{width:41.192640px;}
._23{width:63.017280px;}
._22{width:64.808160px;}
._21{width:65.877120px;}
._1f{width:70.398720px;}
._27{width:77.382720px;}
._1d{width:82.236000px;}
._1e{width:83.482560px;}
._24{width:92.790720px;}
.fc5{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc4{color:rgb(33,33,33);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.240000px;}
.y79{bottom:3.600000px;}
.y41{bottom:4.320000px;}
.y73{bottom:4.680000px;}
.y43{bottom:5.040000px;}
.y49{bottom:6.840000px;}
.y4d{bottom:7.200000px;}
.y45{bottom:7.230000px;}
.y5d{bottom:7.560000px;}
.y63{bottom:7.920000px;}
.y78{bottom:8.280000px;}
.y5a{bottom:10.080000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y4b{bottom:19.080000px;}
.y7b{bottom:19.125000px;}
.y61{bottom:19.440000px;}
.y5e{bottom:19.470000px;}
.y64{bottom:19.800000px;}
.y4c{bottom:30.960000px;}
.y7c{bottom:31.005000px;}
.y60{bottom:31.320000px;}
.y5c{bottom:31.350000px;}
.y62{bottom:31.725000px;}
.y57{bottom:33.840000px;}
.y56{bottom:34.200000px;}
.y59{bottom:34.230000px;}
.y54{bottom:45.720000px;}
.y8{bottom:57.240000px;}
.y55{bottom:57.600000px;}
.y5{bottom:73.476000px;}
.y34{bottom:107.676000px;}
.y69{bottom:128.556000px;}
.y33{bottom:131.796000px;}
.y88{bottom:136.116000px;}
.y52{bottom:144.036000px;}
.y32{bottom:155.550000px;}
.y68{bottom:156.990000px;}
.y87{bottom:159.870000px;}
.y51{bottom:167.790000px;}
.y3f{bottom:178.950000px;}
.y31{bottom:179.310000px;}
.y86{bottom:183.630000px;}
.y50{bottom:191.550000px;}
.y30{bottom:202.755000px;}
.y3e{bottom:203.115000px;}
.y67{bottom:204.195000px;}
.y85{bottom:207.435000px;}
.y4f{bottom:214.995000px;}
.y2f{bottom:226.515000px;}
.y3d{bottom:226.875000px;}
.y84{bottom:231.195000px;}
.y4e{bottom:238.755000px;}
.y2e{bottom:250.635000px;}
.y66{bottom:251.355000px;}
.y83{bottom:254.955000px;}
.y4a{bottom:255.315000px;}
.y2d{bottom:274.395000px;}
.y82{bottom:279.075000px;}
.y2c{bottom:298.155000px;}
.y48{bottom:302.835000px;}
.y2b{bottom:321.945000px;}
.y81{bottom:326.625000px;}
.y8a{bottom:345.705000px;}
.y2a{bottom:346.065000px;}
.y80{bottom:350.385000px;}
.y29{bottom:369.825000px;}
.y7f{bottom:373.785000px;}
.y65{bottom:388.905000px;}
.y28{bottom:393.585000px;}
.y7e{bottom:397.545000px;}
.y27{bottom:417.345000px;}
.y7d{bottom:421.305000px;}
.y7a{bottom:437.865000px;}
.y26{bottom:441.105000px;}
.y25{bottom:464.910000px;}
.y77{bottom:485.430000px;}
.y5f{bottom:488.310000px;}
.y24{bottom:488.670000px;}
.y23{bottom:512.430000px;}
.y47{bottom:531.150000px;}
.y22{bottom:536.550000px;}
.y46{bottom:554.910000px;}
.y5b{bottom:559.230000px;}
.y21{bottom:560.310000px;}
.y44{bottom:571.470000px;}
.y20{bottom:584.100000px;}
.y40{bottom:595.260000px;}
.y1f{bottom:607.860000px;}
.y53{bottom:630.180000px;}
.y1e{bottom:631.620000px;}
.y76{bottom:653.580000px;}
.y1d{bottom:655.380000px;}
.y58{bottom:677.340000px;}
.y1c{bottom:679.140000px;}
.y75{bottom:701.130000px;}
.y1b{bottom:702.930000px;}
.y74{bottom:717.690000px;}
.y1a{bottom:727.050000px;}
.y19{bottom:750.810000px;}
.y72{bottom:765.210000px;}
.y18{bottom:774.570000px;}
.y17{bottom:798.330000px;}
.y16{bottom:822.090000px;}
.y15{bottom:845.535000px;}
.y3c{bottom:845.895000px;}
.y14{bottom:869.295000px;}
.y3b{bottom:869.655000px;}
.y13{bottom:893.415000px;}
.y12{bottom:917.175000px;}
.y11{bottom:941.295000px;}
.y71{bottom:954.645000px;}
.y10{bottom:965.085000px;}
.y70{bottom:979.485000px;}
.y8c{bottom:988.485000px;}
.yf{bottom:988.845000px;}
.y6f{bottom:1004.685000px;}
.y8b{bottom:1012.245000px;}
.ye{bottom:1012.605000px;}
.y6e{bottom:1029.885000px;}
.yd{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.y6d{bottom:1054.725000px;}
.yc{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.y6c{bottom:1079.970000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y6b{bottom:1105.170000px;}
.y89{bottom:1107.330000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y6a{bottom:1130.370000px;}
.y36{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h12{height:23.760000px;}
.hd{height:23.796000px;}
.h5{height:27.000000px;}
.hf{height:47.520000px;}
.h13{height:47.556000px;}
.h15{height:47.880000px;}
.h14{height:47.916000px;}
.h7{height:50.229844px;}
.h11{height:53.676000px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h16{height:74.004654px;}
.h9{height:75.251250px;}
.h8{height:97.233750px;}
.h10{height:100.836000px;}
.h18{height:160.950000px;}
.h17{height:181.830000px;}
.hc{height:219.270000px;}
.he{height:221.115000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:69.156000px;}
.wd{width:77.076000px;}
.wc{width:99.756000px;}
.w4{width:104.076000px;}
.w15{width:107.676000px;}
.w16{width:113.796000px;}
.wf{width:132.516000px;}
.w14{width:132.912000px;}
.w17{width:136.476000px;}
.w10{width:136.512000px;}
.w11{width:154.830000px;}
.w13{width:155.190000px;}
.w21{width:170.310000px;}
.w1a{width:170.355000px;}
.w18{width:170.715000px;}
.w19{width:171.075000px;}
.w20{width:172.515000px;}
.wb{width:172.875000px;}
.wa{width:173.235000px;}
.w7{width:173.595000px;}
.w6{width:174.315000px;}
.w8{width:174.630000px;}
.w1c{width:176.835000px;}
.w1d{width:177.150000px;}
.w1b{width:177.555000px;}
.w1e{width:178.275000px;}
.w5{width:179.355000px;}
.w1f{width:180.795000px;}
.w9{width:181.155000px;}
.w3{width:298.905000px;}
.w12{width:425.670000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x32{left:4.320000px;}
.x23{left:9.720000px;}
.x22{left:13.680000px;}
.x28{left:17.640000px;}
.x1c{left:20.520000px;}
.x34{left:22.320000px;}
.x1b{left:23.400000px;}
.x33{left:25.200000px;}
.x31{left:26.640000px;}
.x24{left:28.440000px;}
.x2e{left:30.270000px;}
.x2a{left:31.320000px;}
.x1d{left:32.760000px;}
.x37{left:38.520000px;}
.x35{left:40.680000px;}
.x30{left:42.120000px;}
.x8{left:43.590000px;}
.x36{left:45.360000px;}
.x2c{left:54.000000px;}
.x25{left:56.160000px;}
.x44{left:57.600000px;}
.x45{left:64.440000px;}
.x5{left:95.796000px;}
.x1e{left:99.035987px;}
.x11{left:101.195987px;}
.x46{left:106.235987px;}
.x26{left:109.836000px;}
.x47{left:111.275987px;}
.x39{left:114.516000px;}
.x13{left:123.515987px;}
.x4e{left:127.835987px;}
.xb{left:143.351987px;}
.xd{left:149.111987px;}
.xa{left:150.554987px;}
.xf{left:154.154987px;}
.x10{left:173.594987px;}
.xc{left:184.754987px;}
.x3{left:190.874987px;}
.x27{left:209.955000px;}
.x4d{left:211.035000px;}
.x19{left:214.275000px;}
.x21{left:215.355000px;}
.x17{left:216.435000px;}
.x49{left:221.469000px;}
.x15{left:222.549000px;}
.x1f{left:224.349000px;}
.x38{left:231.554987px;}
.x3f{left:243.834000px;}
.x3a{left:247.785000px;}
.x41{left:255.345000px;}
.x3e{left:257.144987px;}
.x12{left:265.064987px;}
.x40{left:266.145000px;}
.x4a{left:274.065000px;}
.x16{left:275.145000px;}
.x20{left:276.945000px;}
.x29{left:287.745000px;}
.xe{left:289.544987px;}
.x6{left:290.634000px;}
.x14{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x3b{left:356.190000px;}
.x2b{left:357.630000px;}
.x48{left:370.589987px;}
.x7{left:394.710000px;}
.x42{left:443.700000px;}
.x18{left:449.460000px;}
.x4b{left:454.860000px;}
.x3c{left:470.700000px;}
.x2d{left:491.220000px;}
.x9{left:498.780000px;}
.x3d{left:607.890000px;}
.x43{left:620.535000px;}
.x1a{left:623.055000px;}
.x4c{left:627.375000px;}
.x2f{left:628.455000px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.408000pt;}
.ls5{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.832000pt;}
.ls7{letter-spacing:1.024000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls11{letter-spacing:15.488000pt;}
.ls10{letter-spacing:47.488000pt;}
.lse{letter-spacing:130.688000pt;}
.ws3{word-spacing:-64.000000pt;}
.wsc{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.552000pt;}
.ws6{word-spacing:-15.424000pt;}
.ws4{word-spacing:-14.848000pt;}
.wsa{word-spacing:-14.592000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws1{word-spacing:-10.560000pt;}
.ws5{word-spacing:0.000000pt;}
._1c{margin-left:-4.654080pt;}
._10{margin-left:-3.499520pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.078720pt;}
._4{width:3.118080pt;}
._5{width:4.649387pt;}
._6{width:5.661867pt;}
._7{width:6.710613pt;}
._8{width:8.091307pt;}
._9{width:9.736533pt;}
._12{width:11.392000pt;}
._11{width:12.612693pt;}
._e{width:13.982720pt;}
._f{width:14.894080pt;}
._18{width:17.661440pt;}
._19{width:19.177387pt;}
._1b{width:20.282453pt;}
._1a{width:21.980160pt;}
._b{width:22.883840pt;}
._a{width:24.332800pt;}
._c{width:25.600000pt;}
._d{width:26.918827pt;}
._20{width:27.960747pt;}
._17{width:28.925440pt;}
._13{width:30.699520pt;}
._14{width:32.094720pt;}
._15{width:33.162240pt;}
._16{width:34.380800pt;}
._25{width:35.343360pt;}
._26{width:36.615680pt;}
._23{width:56.015360pt;}
._22{width:57.607253pt;}
._21{width:58.557440pt;}
._1f{width:62.576640pt;}
._27{width:68.784640pt;}
._1d{width:73.098667pt;}
._1e{width:74.206720pt;}
._24{width:82.480640pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.880000pt;}
.y79{bottom:3.200000pt;}
.y41{bottom:3.840000pt;}
.y73{bottom:4.160000pt;}
.y43{bottom:4.480000pt;}
.y49{bottom:6.080000pt;}
.y4d{bottom:6.400000pt;}
.y45{bottom:6.426667pt;}
.y5d{bottom:6.720000pt;}
.y63{bottom:7.040000pt;}
.y78{bottom:7.360000pt;}
.y5a{bottom:8.960000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y4b{bottom:16.960000pt;}
.y7b{bottom:17.000000pt;}
.y61{bottom:17.280000pt;}
.y5e{bottom:17.306667pt;}
.y64{bottom:17.600000pt;}
.y4c{bottom:27.520000pt;}
.y7c{bottom:27.560000pt;}
.y60{bottom:27.840000pt;}
.y5c{bottom:27.866667pt;}
.y62{bottom:28.200000pt;}
.y57{bottom:30.080000pt;}
.y56{bottom:30.400000pt;}
.y59{bottom:30.426667pt;}
.y54{bottom:40.640000pt;}
.y8{bottom:50.880000pt;}
.y55{bottom:51.200000pt;}
.y5{bottom:65.312000pt;}
.y34{bottom:95.712000pt;}
.y69{bottom:114.272000pt;}
.y33{bottom:117.152000pt;}
.y88{bottom:120.992000pt;}
.y52{bottom:128.032000pt;}
.y32{bottom:138.266667pt;}
.y68{bottom:139.546667pt;}
.y87{bottom:142.106667pt;}
.y51{bottom:149.146667pt;}
.y3f{bottom:159.066667pt;}
.y31{bottom:159.386667pt;}
.y86{bottom:163.226667pt;}
.y50{bottom:170.266667pt;}
.y30{bottom:180.226667pt;}
.y3e{bottom:180.546667pt;}
.y67{bottom:181.506667pt;}
.y85{bottom:184.386667pt;}
.y4f{bottom:191.106667pt;}
.y2f{bottom:201.346667pt;}
.y3d{bottom:201.666667pt;}
.y84{bottom:205.506667pt;}
.y4e{bottom:212.226667pt;}
.y2e{bottom:222.786667pt;}
.y66{bottom:223.426667pt;}
.y83{bottom:226.626667pt;}
.y4a{bottom:226.946667pt;}
.y2d{bottom:243.906667pt;}
.y82{bottom:248.066667pt;}
.y2c{bottom:265.026667pt;}
.y48{bottom:269.186667pt;}
.y2b{bottom:286.173333pt;}
.y81{bottom:290.333333pt;}
.y8a{bottom:307.293333pt;}
.y2a{bottom:307.613333pt;}
.y80{bottom:311.453333pt;}
.y29{bottom:328.733333pt;}
.y7f{bottom:332.253333pt;}
.y65{bottom:345.693333pt;}
.y28{bottom:349.853333pt;}
.y7e{bottom:353.373333pt;}
.y27{bottom:370.973333pt;}
.y7d{bottom:374.493333pt;}
.y7a{bottom:389.213333pt;}
.y26{bottom:392.093333pt;}
.y25{bottom:413.253333pt;}
.y77{bottom:431.493333pt;}
.y5f{bottom:434.053333pt;}
.y24{bottom:434.373333pt;}
.y23{bottom:455.493333pt;}
.y47{bottom:472.133333pt;}
.y22{bottom:476.933333pt;}
.y46{bottom:493.253333pt;}
.y5b{bottom:497.093333pt;}
.y21{bottom:498.053333pt;}
.y44{bottom:507.973333pt;}
.y20{bottom:519.200000pt;}
.y40{bottom:529.120000pt;}
.y1f{bottom:540.320000pt;}
.y53{bottom:560.160000pt;}
.y1e{bottom:561.440000pt;}
.y76{bottom:580.960000pt;}
.y1d{bottom:582.560000pt;}
.y58{bottom:602.080000pt;}
.y1c{bottom:603.680000pt;}
.y75{bottom:623.226667pt;}
.y1b{bottom:624.826667pt;}
.y74{bottom:637.946667pt;}
.y1a{bottom:646.266667pt;}
.y19{bottom:667.386667pt;}
.y72{bottom:680.186667pt;}
.y18{bottom:688.506667pt;}
.y17{bottom:709.626667pt;}
.y16{bottom:730.746667pt;}
.y15{bottom:751.586667pt;}
.y3c{bottom:751.906667pt;}
.y14{bottom:772.706667pt;}
.y3b{bottom:773.026667pt;}
.y13{bottom:794.146667pt;}
.y12{bottom:815.266667pt;}
.y11{bottom:836.706667pt;}
.y71{bottom:848.573333pt;}
.y10{bottom:857.853333pt;}
.y70{bottom:870.653333pt;}
.y8c{bottom:878.653333pt;}
.yf{bottom:878.973333pt;}
.y6f{bottom:893.053333pt;}
.y8b{bottom:899.773333pt;}
.ye{bottom:900.093333pt;}
.y6e{bottom:915.453333pt;}
.yd{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.y6d{bottom:937.533333pt;}
.yc{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.y6c{bottom:959.973333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y6b{bottom:982.373333pt;}
.y89{bottom:984.293333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y6a{bottom:1004.773333pt;}
.y36{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h12{height:21.120000pt;}
.hd{height:21.152000pt;}
.h5{height:24.000000pt;}
.hf{height:42.240000pt;}
.h13{height:42.272000pt;}
.h15{height:42.560000pt;}
.h14{height:42.592000pt;}
.h7{height:44.648750pt;}
.h11{height:47.712000pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h16{height:65.781915pt;}
.h9{height:66.890000pt;}
.h8{height:86.430000pt;}
.h10{height:89.632000pt;}
.h18{height:143.066667pt;}
.h17{height:161.626667pt;}
.hc{height:194.906667pt;}
.he{height:196.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:61.472000pt;}
.wd{width:68.512000pt;}
.wc{width:88.672000pt;}
.w4{width:92.512000pt;}
.w15{width:95.712000pt;}
.w16{width:101.152000pt;}
.wf{width:117.792000pt;}
.w14{width:118.144000pt;}
.w17{width:121.312000pt;}
.w10{width:121.344000pt;}
.w11{width:137.626667pt;}
.w13{width:137.946667pt;}
.w21{width:151.386667pt;}
.w1a{width:151.426667pt;}
.w18{width:151.746667pt;}
.w19{width:152.066667pt;}
.w20{width:153.346667pt;}
.wb{width:153.666667pt;}
.wa{width:153.986667pt;}
.w7{width:154.306667pt;}
.w6{width:154.946667pt;}
.w8{width:155.226667pt;}
.w1c{width:157.186667pt;}
.w1d{width:157.466667pt;}
.w1b{width:157.826667pt;}
.w1e{width:158.466667pt;}
.w5{width:159.426667pt;}
.w1f{width:160.706667pt;}
.w9{width:161.026667pt;}
.w3{width:265.693333pt;}
.w12{width:378.373333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x32{left:3.840000pt;}
.x23{left:8.640000pt;}
.x22{left:12.160000pt;}
.x28{left:15.680000pt;}
.x1c{left:18.240000pt;}
.x34{left:19.840000pt;}
.x1b{left:20.800000pt;}
.x33{left:22.400000pt;}
.x31{left:23.680000pt;}
.x24{left:25.280000pt;}
.x2e{left:26.906667pt;}
.x2a{left:27.840000pt;}
.x1d{left:29.120000pt;}
.x37{left:34.240000pt;}
.x35{left:36.160000pt;}
.x30{left:37.440000pt;}
.x8{left:38.746667pt;}
.x36{left:40.320000pt;}
.x2c{left:48.000000pt;}
.x25{left:49.920000pt;}
.x44{left:51.200000pt;}
.x45{left:57.280000pt;}
.x5{left:85.152000pt;}
.x1e{left:88.031988pt;}
.x11{left:89.951988pt;}
.x46{left:94.431988pt;}
.x26{left:97.632000pt;}
.x47{left:98.911988pt;}
.x39{left:101.792000pt;}
.x13{left:109.791988pt;}
.x4e{left:113.631988pt;}
.xb{left:127.423988pt;}
.xd{left:132.543988pt;}
.xa{left:133.826655pt;}
.xf{left:137.026655pt;}
.x10{left:154.306655pt;}
.xc{left:164.226655pt;}
.x3{left:169.666655pt;}
.x27{left:186.626667pt;}
.x4d{left:187.586667pt;}
.x19{left:190.466667pt;}
.x21{left:191.426667pt;}
.x17{left:192.386667pt;}
.x49{left:196.861333pt;}
.x15{left:197.821333pt;}
.x1f{left:199.421333pt;}
.x38{left:205.826655pt;}
.x3f{left:216.741333pt;}
.x3a{left:220.253333pt;}
.x41{left:226.973333pt;}
.x3e{left:228.573322pt;}
.x12{left:235.613322pt;}
.x40{left:236.573333pt;}
.x4a{left:243.613333pt;}
.x16{left:244.573333pt;}
.x20{left:246.173333pt;}
.x29{left:255.773333pt;}
.xe{left:257.373322pt;}
.x6{left:258.341333pt;}
.x14{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x3b{left:316.613333pt;}
.x2b{left:317.893333pt;}
.x48{left:329.413322pt;}
.x7{left:350.853333pt;}
.x42{left:394.400000pt;}
.x18{left:399.520000pt;}
.x4b{left:404.320000pt;}
.x3c{left:418.400000pt;}
.x2d{left:436.640000pt;}
.x9{left:443.360000pt;}
.x3d{left:540.346667pt;}
.x43{left:551.586667pt;}
.x1a{left:553.826667pt;}
.x4c{left:557.666667pt;}
.x2f{left:558.626667pt;}
.x1{left:709.053322pt;}
}




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