
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_9bbb91889f297a392726e59b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3f905e189aad75ec1202a158.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a4f1db31868167d51ecbc07e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8d6a4d3a398ad049712e3cca.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_83d3eccbad400a2911193046.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ee2910e6725041f428e6ee44.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls1{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.593400px;}
.lsb{letter-spacing:-0.553200px;}
.lse{letter-spacing:-0.541200px;}
.lsd{letter-spacing:-0.524400px;}
.ls2{letter-spacing:-0.334200px;}
.lsc{letter-spacing:-0.184200px;}
.ls4{letter-spacing:-0.166800px;}
.ls3{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.178800px;}
.ls7{letter-spacing:0.195600px;}
.ls6{letter-spacing:0.276600px;}
.ls8{letter-spacing:31.345920px;}
.ls9{letter-spacing:42.865920px;}
.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;}
}
.ws6{word-spacing:-63.360000px;}
.wsc{word-spacing:-14.215800px;}
.ws5{word-spacing:-14.134800px;}
.ws3{word-spacing:-14.118000px;}
.ws2{word-spacing:-13.939200px;}
.ws9{word-spacing:-13.755000px;}
.ws1{word-spacing:-13.605000px;}
.wsa{word-spacing:-13.414800px;}
.wsb{word-spacing:-13.398000px;}
.ws8{word-spacing:-13.386000px;}
.ws7{word-spacing:-13.345800px;}
.ws0{word-spacing:-13.165200px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._c{width:2.344320px;}
._d{width:3.864960px;}
._7{width:5.126400px;}
._6{width:6.243840px;}
._5{width:7.413120px;}
._f{width:9.187200px;}
._a{width:10.852560px;}
._9{width:11.911680px;}
._11{width:12.925440px;}
._8{width:15.586560px;}
._b{width:16.917120px;}
._10{width:18.437760px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._e{width:22.971360px;}
._1{width:25.060800px;}
._13{width:30.504000px;}
._12{width:31.518720px;}
._15{width:35.916000px;}
._14{width:37.099200px;}
._19{width:38.839680px;}
._17{width:52.335360px;}
._18{width:63.296640px;}
._16{width:78.387840px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.ya9{bottom:21.780000px;}
.y5{bottom:21.960000px;}
.y4{bottom:40.350000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.y3{bottom:58.890000px;}
.yad{bottom:89.280000px;}
.y7a{bottom:95.400000px;}
.y3e{bottom:95.760000px;}
.ydc{bottom:96.840000px;}
.yac{bottom:107.820000px;}
.y79{bottom:113.760000px;}
.y3d{bottom:114.120000px;}
.ydb{bottom:115.200000px;}
.yab{bottom:126.360000px;}
.y78{bottom:132.300000px;}
.y3c{bottom:132.660000px;}
.yda{bottom:133.740000px;}
.yaa{bottom:142.020000px;}
.y77{bottom:150.660000px;}
.y3b{bottom:151.200000px;}
.yd9{bottom:152.280000px;}
.y76{bottom:169.200000px;}
.y3a{bottom:169.560000px;}
.yd8{bottom:170.640000px;}
.ya8{bottom:179.820000px;}
.y75{bottom:187.740000px;}
.y39{bottom:188.100000px;}
.yd7{bottom:189.180000px;}
.y74{bottom:206.100000px;}
.y38{bottom:206.460000px;}
.yd6{bottom:207.540000px;}
.y73{bottom:224.670000px;}
.y37{bottom:225.030000px;}
.yd5{bottom:226.110000px;}
.ya7{bottom:235.830000px;}
.y72{bottom:243.030000px;}
.y36{bottom:243.390000px;}
.yd4{bottom:244.470000px;}
.ya6{bottom:258.510000px;}
.y71{bottom:261.570000px;}
.y35{bottom:261.930000px;}
.yd3{bottom:263.010000px;}
.ya5{bottom:277.050000px;}
.y70{bottom:279.930000px;}
.y34{bottom:280.470000px;}
.yd2{bottom:281.550000px;}
.ya4{bottom:295.410000px;}
.y6f{bottom:298.470000px;}
.y33{bottom:298.830000px;}
.yd1{bottom:299.910000px;}
.ya3{bottom:313.950000px;}
.y6e{bottom:317.010000px;}
.y32{bottom:317.370000px;}
.yd0{bottom:318.450000px;}
.ya2{bottom:332.490000px;}
.y6d{bottom:335.370000px;}
.y31{bottom:335.730000px;}
.ycf{bottom:336.810000px;}
.ya1{bottom:350.850000px;}
.y6c{bottom:353.910000px;}
.y30{bottom:354.270000px;}
.yce{bottom:355.350000px;}
.ya0{bottom:369.390000px;}
.y6b{bottom:372.270000px;}
.y2f{bottom:372.810000px;}
.ycd{bottom:373.890000px;}
.y9f{bottom:387.750000px;}
.y6a{bottom:390.810000px;}
.y2e{bottom:391.170000px;}
.ycc{bottom:392.250000px;}
.y9e{bottom:406.290000px;}
.y69{bottom:409.350000px;}
.y2d{bottom:409.710000px;}
.ycb{bottom:410.790000px;}
.y9d{bottom:424.650000px;}
.y68{bottom:427.710000px;}
.y2c{bottom:428.070000px;}
.yca{bottom:429.150000px;}
.y9c{bottom:443.190000px;}
.y67{bottom:446.295000px;}
.y2b{bottom:446.655000px;}
.yc9{bottom:447.735000px;}
.y9b{bottom:461.775000px;}
.y66{bottom:464.655000px;}
.y2a{bottom:465.015000px;}
.yc8{bottom:466.095000px;}
.y9a{bottom:480.135000px;}
.y65{bottom:483.195000px;}
.y29{bottom:483.555000px;}
.yc7{bottom:484.635000px;}
.y99{bottom:498.675000px;}
.y64{bottom:501.555000px;}
.y28{bottom:502.095000px;}
.yc6{bottom:503.175000px;}
.y98{bottom:517.035000px;}
.y63{bottom:520.095000px;}
.y27{bottom:520.455000px;}
.yc5{bottom:521.535000px;}
.y97{bottom:535.575000px;}
.y62{bottom:538.635000px;}
.y26{bottom:538.995000px;}
.yc4{bottom:540.075000px;}
.y96{bottom:554.115000px;}
.y61{bottom:556.995000px;}
.y25{bottom:557.355000px;}
.yc3{bottom:558.435000px;}
.y95{bottom:572.475000px;}
.y60{bottom:575.535000px;}
.y24{bottom:575.895000px;}
.yc2{bottom:576.975000px;}
.y94{bottom:591.015000px;}
.y5f{bottom:593.895000px;}
.y23{bottom:594.435000px;}
.yc1{bottom:595.515000px;}
.y93{bottom:609.375000px;}
.y5e{bottom:612.435000px;}
.y22{bottom:612.795000px;}
.yc0{bottom:624.315000px;}
.y92{bottom:627.915000px;}
.y5d{bottom:630.975000px;}
.y21{bottom:631.335000px;}
.y91{bottom:646.275000px;}
.y5c{bottom:649.335000px;}
.y20{bottom:649.695000px;}
.ybf{bottom:653.295000px;}
.y90{bottom:664.815000px;}
.y5b{bottom:667.875000px;}
.y1f{bottom:668.235000px;}
.ybe{bottom:682.305000px;}
.y8f{bottom:683.385000px;}
.y5a{bottom:686.265000px;}
.y1e{bottom:686.625000px;}
.y8e{bottom:701.745000px;}
.y59{bottom:704.805000px;}
.y1d{bottom:708.945000px;}
.ybd{bottom:710.565000px;}
.y8d{bottom:720.285000px;}
.y58{bottom:723.165000px;}
.y1c{bottom:727.305000px;}
.y8c{bottom:738.645000px;}
.ybc{bottom:739.545000px;}
.y57{bottom:741.705000px;}
.y1b{bottom:745.845000px;}
.y8b{bottom:757.185000px;}
.y56{bottom:760.245000px;}
.y1a{bottom:764.385000px;}
.ybb{bottom:768.345000px;}
.y8a{bottom:775.725000px;}
.y55{bottom:778.605000px;}
.y19{bottom:782.745000px;}
.yba{bottom:786.885000px;}
.y89{bottom:794.085000px;}
.y54{bottom:797.145000px;}
.y18{bottom:801.285000px;}
.y88{bottom:812.625000px;}
.y53{bottom:815.505000px;}
.yb9{bottom:815.865000px;}
.y17{bottom:819.645000px;}
.y87{bottom:830.985000px;}
.y52{bottom:834.045000px;}
.y16{bottom:838.185000px;}
.yb8{bottom:844.845000px;}
.y86{bottom:849.525000px;}
.y51{bottom:852.585000px;}
.y15{bottom:856.725000px;}
.y85{bottom:867.885000px;}
.y50{bottom:870.945000px;}
.yb7{bottom:873.825000px;}
.y14{bottom:877.425000px;}
.y84{bottom:886.425000px;}
.y4f{bottom:889.485000px;}
.y13{bottom:895.785000px;}
.yb6{bottom:902.805000px;}
.y83{bottom:904.965000px;}
.y4e{bottom:907.845000px;}
.y12{bottom:914.325000px;}
.y82{bottom:923.370000px;}
.y4d{bottom:926.430000px;}
.yb5{bottom:931.830000px;}
.y11{bottom:932.730000px;}
.y81{bottom:941.910000px;}
.y4c{bottom:944.790000px;}
.yb4{bottom:950.370000px;}
.y10{bottom:951.270000px;}
.y80{bottom:960.270000px;}
.y4b{bottom:963.330000px;}
.yf{bottom:969.630000px;}
.y7f{bottom:978.810000px;}
.yb3{bottom:979.170000px;}
.y4a{bottom:981.870000px;}
.ye{bottom:988.170000px;}
.y7e{bottom:997.350000px;}
.yb2{bottom:997.710000px;}
.y49{bottom:1000.230000px;}
.yd{bottom:1006.710000px;}
.y7d{bottom:1013.010000px;}
.yb1{bottom:1016.250000px;}
.y48{bottom:1018.770000px;}
.yc{bottom:1025.070000px;}
.y7c{bottom:1032.270000px;}
.y47{bottom:1037.130000px;}
.yb0{bottom:1045.050000px;}
.yb{bottom:1045.230000px;}
.y7b{bottom:1051.530000px;}
.y46{bottom:1055.670000px;}
.yaf{bottom:1063.590000px;}
.y45{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.yae{bottom:1082.130000px;}
.y44{bottom:1092.570000px;}
.y7{bottom:1110.930000px;}
.y43{bottom:1111.110000px;}
.y2{bottom:1118.130000px;}
.y42{bottom:1129.470000px;}
.y41{bottom:1148.010000px;}
.y40{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y3f{bottom:1193.400000px;}
.h7{height:18.360000px;}
.h9{height:18.540000px;}
.h5{height:30.077578px;}
.hb{height:36.900000px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.ha{height:55.296000px;}
.h6{height:65.884219px;}
.h3{height:73.836000px;}
.h8{height:76.201172px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:8.820000px;}
.we{width:52.416000px;}
.wa{width:63.036000px;}
.wc{width:66.096000px;}
.wd{width:126.720000px;}
.w9{width:131.580000px;}
.wb{width:136.080000px;}
.wf{width:138.096000px;}
.w11{width:318.855000px;}
.w7{width:343.335000px;}
.w3{width:364.605000px;}
.w4{width:366.735000px;}
.w6{width:373.935000px;}
.w10{width:399.135000px;}
.w8{width:718.710000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x1d{left:25.965000px;}
.x17{left:31.500000px;}
.x1a{left:32.970000px;}
.x6{left:40.680000px;}
.x2{left:81.000000px;}
.x10{left:87.516000px;}
.x4{left:102.420000px;}
.x1f{left:108.035987px;}
.xb{left:117.395987px;}
.x5{left:119.880000px;}
.x8{left:138.095987px;}
.x13{left:151.380000px;}
.x14{left:170.669987px;}
.x16{left:219.630000px;}
.x15{left:277.419000px;}
.x18{left:283.575000px;}
.xd{left:329.114987px;}
.xe{left:381.494987px;}
.xa{left:395.354987px;}
.xc{left:404.534987px;}
.x19{left:420.375000px;}
.x3{left:445.605000px;}
.x9{left:446.684987px;}
.x12{left:462.345000px;}
.x1b{left:487.185000px;}
.x1c{left:614.805000px;}
.x1e{left:667.950000px;}
.xf{left:785.309987px;}
.x7{left:803.520000px;}
.x1{left:812.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.527467pt;}
.lsb{letter-spacing:-0.491733pt;}
.lse{letter-spacing:-0.481067pt;}
.lsd{letter-spacing:-0.466133pt;}
.ls2{letter-spacing:-0.297067pt;}
.lsc{letter-spacing:-0.163733pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls3{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.158933pt;}
.ls7{letter-spacing:0.173867pt;}
.ls6{letter-spacing:0.245867pt;}
.ls8{letter-spacing:27.863040pt;}
.ls9{letter-spacing:38.103040pt;}
.ws6{word-spacing:-56.320000pt;}
.wsc{word-spacing:-12.636267pt;}
.ws5{word-spacing:-12.564267pt;}
.ws3{word-spacing:-12.549333pt;}
.ws2{word-spacing:-12.390400pt;}
.ws9{word-spacing:-12.226667pt;}
.ws1{word-spacing:-12.093333pt;}
.wsa{word-spacing:-11.924267pt;}
.wsb{word-spacing:-11.909333pt;}
.ws8{word-spacing:-11.898667pt;}
.ws7{word-spacing:-11.862933pt;}
.ws0{word-spacing:-11.702400pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._c{width:2.083840pt;}
._d{width:3.435520pt;}
._7{width:4.556800pt;}
._6{width:5.550080pt;}
._5{width:6.589440pt;}
._f{width:8.166400pt;}
._a{width:9.646720pt;}
._9{width:10.588160pt;}
._11{width:11.489280pt;}
._8{width:13.854720pt;}
._b{width:15.037440pt;}
._10{width:16.389120pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._e{width:20.418987pt;}
._1{width:22.276267pt;}
._13{width:27.114667pt;}
._12{width:28.016640pt;}
._15{width:31.925333pt;}
._14{width:32.977067pt;}
._19{width:34.524160pt;}
._17{width:46.520320pt;}
._18{width:56.263680pt;}
._16{width:69.678080pt;}
.fs2{font-size:26.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.ya9{bottom:19.360000pt;}
.y5{bottom:19.520000pt;}
.y4{bottom:35.866667pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.y3{bottom:52.346667pt;}
.yad{bottom:79.360000pt;}
.y7a{bottom:84.800000pt;}
.y3e{bottom:85.120000pt;}
.ydc{bottom:86.080000pt;}
.yac{bottom:95.840000pt;}
.y79{bottom:101.120000pt;}
.y3d{bottom:101.440000pt;}
.ydb{bottom:102.400000pt;}
.yab{bottom:112.320000pt;}
.y78{bottom:117.600000pt;}
.y3c{bottom:117.920000pt;}
.yda{bottom:118.880000pt;}
.yaa{bottom:126.240000pt;}
.y77{bottom:133.920000pt;}
.y3b{bottom:134.400000pt;}
.yd9{bottom:135.360000pt;}
.y76{bottom:150.400000pt;}
.y3a{bottom:150.720000pt;}
.yd8{bottom:151.680000pt;}
.ya8{bottom:159.840000pt;}
.y75{bottom:166.880000pt;}
.y39{bottom:167.200000pt;}
.yd7{bottom:168.160000pt;}
.y74{bottom:183.200000pt;}
.y38{bottom:183.520000pt;}
.yd6{bottom:184.480000pt;}
.y73{bottom:199.706667pt;}
.y37{bottom:200.026667pt;}
.yd5{bottom:200.986667pt;}
.ya7{bottom:209.626667pt;}
.y72{bottom:216.026667pt;}
.y36{bottom:216.346667pt;}
.yd4{bottom:217.306667pt;}
.ya6{bottom:229.786667pt;}
.y71{bottom:232.506667pt;}
.y35{bottom:232.826667pt;}
.yd3{bottom:233.786667pt;}
.ya5{bottom:246.266667pt;}
.y70{bottom:248.826667pt;}
.y34{bottom:249.306667pt;}
.yd2{bottom:250.266667pt;}
.ya4{bottom:262.586667pt;}
.y6f{bottom:265.306667pt;}
.y33{bottom:265.626667pt;}
.yd1{bottom:266.586667pt;}
.ya3{bottom:279.066667pt;}
.y6e{bottom:281.786667pt;}
.y32{bottom:282.106667pt;}
.yd0{bottom:283.066667pt;}
.ya2{bottom:295.546667pt;}
.y6d{bottom:298.106667pt;}
.y31{bottom:298.426667pt;}
.ycf{bottom:299.386667pt;}
.ya1{bottom:311.866667pt;}
.y6c{bottom:314.586667pt;}
.y30{bottom:314.906667pt;}
.yce{bottom:315.866667pt;}
.ya0{bottom:328.346667pt;}
.y6b{bottom:330.906667pt;}
.y2f{bottom:331.386667pt;}
.ycd{bottom:332.346667pt;}
.y9f{bottom:344.666667pt;}
.y6a{bottom:347.386667pt;}
.y2e{bottom:347.706667pt;}
.ycc{bottom:348.666667pt;}
.y9e{bottom:361.146667pt;}
.y69{bottom:363.866667pt;}
.y2d{bottom:364.186667pt;}
.ycb{bottom:365.146667pt;}
.y9d{bottom:377.466667pt;}
.y68{bottom:380.186667pt;}
.y2c{bottom:380.506667pt;}
.yca{bottom:381.466667pt;}
.y9c{bottom:393.946667pt;}
.y67{bottom:396.706667pt;}
.y2b{bottom:397.026667pt;}
.yc9{bottom:397.986667pt;}
.y9b{bottom:410.466667pt;}
.y66{bottom:413.026667pt;}
.y2a{bottom:413.346667pt;}
.yc8{bottom:414.306667pt;}
.y9a{bottom:426.786667pt;}
.y65{bottom:429.506667pt;}
.y29{bottom:429.826667pt;}
.yc7{bottom:430.786667pt;}
.y99{bottom:443.266667pt;}
.y64{bottom:445.826667pt;}
.y28{bottom:446.306667pt;}
.yc6{bottom:447.266667pt;}
.y98{bottom:459.586667pt;}
.y63{bottom:462.306667pt;}
.y27{bottom:462.626667pt;}
.yc5{bottom:463.586667pt;}
.y97{bottom:476.066667pt;}
.y62{bottom:478.786667pt;}
.y26{bottom:479.106667pt;}
.yc4{bottom:480.066667pt;}
.y96{bottom:492.546667pt;}
.y61{bottom:495.106667pt;}
.y25{bottom:495.426667pt;}
.yc3{bottom:496.386667pt;}
.y95{bottom:508.866667pt;}
.y60{bottom:511.586667pt;}
.y24{bottom:511.906667pt;}
.yc2{bottom:512.866667pt;}
.y94{bottom:525.346667pt;}
.y5f{bottom:527.906667pt;}
.y23{bottom:528.386667pt;}
.yc1{bottom:529.346667pt;}
.y93{bottom:541.666667pt;}
.y5e{bottom:544.386667pt;}
.y22{bottom:544.706667pt;}
.yc0{bottom:554.946667pt;}
.y92{bottom:558.146667pt;}
.y5d{bottom:560.866667pt;}
.y21{bottom:561.186667pt;}
.y91{bottom:574.466667pt;}
.y5c{bottom:577.186667pt;}
.y20{bottom:577.506667pt;}
.ybf{bottom:580.706667pt;}
.y90{bottom:590.946667pt;}
.y5b{bottom:593.666667pt;}
.y1f{bottom:593.986667pt;}
.ybe{bottom:606.493333pt;}
.y8f{bottom:607.453333pt;}
.y5a{bottom:610.013333pt;}
.y1e{bottom:610.333333pt;}
.y8e{bottom:623.773333pt;}
.y59{bottom:626.493333pt;}
.y1d{bottom:630.173333pt;}
.ybd{bottom:631.613333pt;}
.y8d{bottom:640.253333pt;}
.y58{bottom:642.813333pt;}
.y1c{bottom:646.493333pt;}
.y8c{bottom:656.573333pt;}
.ybc{bottom:657.373333pt;}
.y57{bottom:659.293333pt;}
.y1b{bottom:662.973333pt;}
.y8b{bottom:673.053333pt;}
.y56{bottom:675.773333pt;}
.y1a{bottom:679.453333pt;}
.ybb{bottom:682.973333pt;}
.y8a{bottom:689.533333pt;}
.y55{bottom:692.093333pt;}
.y19{bottom:695.773333pt;}
.yba{bottom:699.453333pt;}
.y89{bottom:705.853333pt;}
.y54{bottom:708.573333pt;}
.y18{bottom:712.253333pt;}
.y88{bottom:722.333333pt;}
.y53{bottom:724.893333pt;}
.yb9{bottom:725.213333pt;}
.y17{bottom:728.573333pt;}
.y87{bottom:738.653333pt;}
.y52{bottom:741.373333pt;}
.y16{bottom:745.053333pt;}
.yb8{bottom:750.973333pt;}
.y86{bottom:755.133333pt;}
.y51{bottom:757.853333pt;}
.y15{bottom:761.533333pt;}
.y85{bottom:771.453333pt;}
.y50{bottom:774.173333pt;}
.yb7{bottom:776.733333pt;}
.y14{bottom:779.933333pt;}
.y84{bottom:787.933333pt;}
.y4f{bottom:790.653333pt;}
.y13{bottom:796.253333pt;}
.yb6{bottom:802.493333pt;}
.y83{bottom:804.413333pt;}
.y4e{bottom:806.973333pt;}
.y12{bottom:812.733333pt;}
.y82{bottom:820.773333pt;}
.y4d{bottom:823.493333pt;}
.yb5{bottom:828.293333pt;}
.y11{bottom:829.093333pt;}
.y81{bottom:837.253333pt;}
.y4c{bottom:839.813333pt;}
.yb4{bottom:844.773333pt;}
.y10{bottom:845.573333pt;}
.y80{bottom:853.573333pt;}
.y4b{bottom:856.293333pt;}
.yf{bottom:861.893333pt;}
.y7f{bottom:870.053333pt;}
.yb3{bottom:870.373333pt;}
.y4a{bottom:872.773333pt;}
.ye{bottom:878.373333pt;}
.y7e{bottom:886.533333pt;}
.yb2{bottom:886.853333pt;}
.y49{bottom:889.093333pt;}
.yd{bottom:894.853333pt;}
.y7d{bottom:900.453333pt;}
.yb1{bottom:903.333333pt;}
.y48{bottom:905.573333pt;}
.yc{bottom:911.173333pt;}
.y7c{bottom:917.573333pt;}
.y47{bottom:921.893333pt;}
.yb0{bottom:928.933333pt;}
.yb{bottom:929.093333pt;}
.y7b{bottom:934.693333pt;}
.y46{bottom:938.373333pt;}
.yaf{bottom:945.413333pt;}
.y45{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.yae{bottom:961.893333pt;}
.y44{bottom:971.173333pt;}
.y7{bottom:987.493333pt;}
.y43{bottom:987.653333pt;}
.y2{bottom:993.893333pt;}
.y42{bottom:1003.973333pt;}
.y41{bottom:1020.453333pt;}
.y40{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y3f{bottom:1060.800000pt;}
.h7{height:16.320000pt;}
.h9{height:16.480000pt;}
.h5{height:26.735625pt;}
.hb{height:32.800000pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.ha{height:49.152000pt;}
.h6{height:58.563750pt;}
.h3{height:65.632000pt;}
.h8{height:67.734375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:7.840000pt;}
.we{width:46.592000pt;}
.wa{width:56.032000pt;}
.wc{width:58.752000pt;}
.wd{width:112.640000pt;}
.w9{width:116.960000pt;}
.wb{width:120.960000pt;}
.wf{width:122.752000pt;}
.w11{width:283.426667pt;}
.w7{width:305.186667pt;}
.w3{width:324.093333pt;}
.w4{width:325.986667pt;}
.w6{width:332.386667pt;}
.w10{width:354.786667pt;}
.w8{width:638.853333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x1d{left:23.080000pt;}
.x17{left:28.000000pt;}
.x1a{left:29.306667pt;}
.x6{left:36.160000pt;}
.x2{left:72.000000pt;}
.x10{left:77.792000pt;}
.x4{left:91.040000pt;}
.x1f{left:96.031988pt;}
.xb{left:104.351988pt;}
.x5{left:106.560000pt;}
.x8{left:122.751988pt;}
.x13{left:134.560000pt;}
.x14{left:151.706655pt;}
.x16{left:195.226667pt;}
.x15{left:246.594667pt;}
.x18{left:252.066667pt;}
.xd{left:292.546655pt;}
.xe{left:339.106655pt;}
.xa{left:351.426655pt;}
.xc{left:359.586655pt;}
.x19{left:373.666667pt;}
.x3{left:396.093333pt;}
.x9{left:397.053322pt;}
.x12{left:410.973333pt;}
.x1b{left:433.053333pt;}
.x1c{left:546.493333pt;}
.x1e{left:593.733333pt;}
.xf{left:698.053322pt;}
.x7{left:714.240000pt;}
.x1{left:722.079988pt;}
}




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