
    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_110879a9abc5f2184b54027d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_888e8b61e9e7a9c792d0c928.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_d3bd1619cc5afc00893787d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_7cff87ee414b736e07109913.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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;}
.ls3{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014400px;}
.ls18{letter-spacing:0.021600px;}
.ls1b{letter-spacing:0.030000px;}
.ls12{letter-spacing:0.031920px;}
.ls1a{letter-spacing:0.053784px;}
.ls13{letter-spacing:0.059292px;}
.ls14{letter-spacing:0.059400px;}
.ls10{letter-spacing:0.059760px;}
.ls7{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.077688px;}
.ls0{letter-spacing:0.080340px;}
.lsf{letter-spacing:0.080520px;}
.lsa{letter-spacing:0.081120px;}
.ls17{letter-spacing:0.083664px;}
.ls9{letter-spacing:0.095616px;}
.ls15{letter-spacing:0.101592px;}
.ls19{letter-spacing:0.107568px;}
.ls16{letter-spacing:0.113544px;}
.ls8{letter-spacing:0.119520px;}
.lse{letter-spacing:0.137448px;}
.ls11{letter-spacing:0.143424px;}
.ls4{letter-spacing:3.499200px;}
.lsb{letter-spacing:6.141601px;}
.lsc{letter-spacing:11.131200px;}
.ls6{letter-spacing:11.556000px;}
.ls5{letter-spacing:16.394400px;}
.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;}
}
.wsb{word-spacing:-18.021600px;}
.ws2{word-spacing:-18.014400px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.985600px;}
.ws9{word-spacing:-16.529292px;}
.ws8{word-spacing:-15.083424px;}
.wsa{word-spacing:-15.077448px;}
.ws5{word-spacing:-15.059520px;}
.wsc{word-spacing:-15.047568px;}
.wsd{word-spacing:-15.041592px;}
.ws6{word-spacing:-15.035616px;}
.wse{word-spacing:-15.023664px;}
.ws4{word-spacing:-15.017688px;}
.wsf{word-spacing:-14.993784px;}
.ws7{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-16.667280px;}
._16{margin-left:-11.182680px;}
._19{margin-left:-5.209200px;}
._e{margin-left:-2.743560px;}
._18{margin-left:-1.005360px;}
._3{width:1.216920px;}
._9{width:2.426280px;}
._1f{width:3.427440px;}
._8{width:4.435200px;}
._13{width:5.925600px;}
._14{width:7.345920px;}
._c{width:8.416800px;}
._2{width:9.417600px;}
._b{width:10.922400px;}
._5{width:12.391200px;}
._6{width:13.850520px;}
._4{width:14.868000px;}
._f{width:16.387200px;}
._20{width:19.742400px;}
._1d{width:20.838240px;}
._0{width:21.991680px;}
._7{width:23.058720px;}
._17{width:24.202080px;}
._11{width:25.226520px;}
._15{width:26.319120px;}
._a{width:27.438120px;}
._1e{width:29.102400px;}
._1c{width:30.232800px;}
._d{width:31.435200px;}
._12{width:32.881800px;}
._1{width:42.494400px;}
._21{width:44.208000px;}
._1a{width:45.468000px;}
._1b{width:58.910400px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.yb6{bottom:-68.490075px;}
.y6a{bottom:-54.540000px;}
.y69{bottom:-37.260015px;}
.yb5{bottom:-32.040000px;}
.ya4{bottom:-27.450000px;}
.y68{bottom:-20.070015px;}
.yce{bottom:-8.640000px;}
.y67{bottom:-2.790000px;}
.yd1{bottom:-0.450000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:4.500000px;}
.y4a{bottom:6.839985px;}
.ya3{bottom:8.730000px;}
.yb0{bottom:8.910000px;}
.ycd{bottom:9.990000px;}
.y5e{bottom:10.710000px;}
.y66{bottom:14.489985px;}
.y80{bottom:16.740000px;}
.yd0{bottom:16.829985px;}
.y85{bottom:17.010000px;}
.y1{bottom:17.999970px;}
.y62{bottom:22.590000px;}
.yb3{bottom:24.300000px;}
.y49{bottom:25.380060px;}
.ycc{bottom:27.180000px;}
.y5d{bottom:27.989850px;}
.ya2{bottom:28.530000px;}
.y65{bottom:31.680060px;}
.y7f{bottom:33.929850px;}
.y84{bottom:34.289850px;}
.y3{bottom:39.809970px;}
.y61{bottom:41.219850px;}
.y48{bottom:42.660060px;}
.yb2{bottom:44.099850px;}
.ya1{bottom:48.420000px;}
.y64{bottom:48.960060px;}
.y83{bottom:51.480000px;}
.y60{bottom:58.500000px;}
.y2{bottom:59.159970px;}
.y82{bottom:68.759850px;}
.ycf{bottom:104.609940px;}
.y9f{bottom:117.929970px;}
.yca{bottom:121.979955px;}
.y63{bottom:135.029940px;}
.y25{bottom:136.470030px;}
.y47{bottom:136.829940px;}
.y44{bottom:138.180030px;}
.yae{bottom:145.830030px;}
.y7d{bottom:148.350030px;}
.y9e{bottom:148.980030px;}
.yc9{bottom:149.070030px;}
.y46{bottom:163.650030px;}
.y24{bottom:167.520030px;}
.y43{bottom:169.230030px;}
.yad{bottom:176.880030px;}
.y7c{bottom:179.400030px;}
.y9d{bottom:180.030030px;}
.ye1{bottom:188.490030px;}
.y45{bottom:190.740030px;}
.yb1{bottom:197.580000px;}
.y23{bottom:198.570030px;}
.y42{bottom:200.280030px;}
.y5b{bottom:206.040030px;}
.yac{bottom:207.929880px;}
.y7b{bottom:210.450030px;}
.y9c{bottom:211.080030px;}
.ye0{bottom:219.540030px;}
.y22{bottom:229.620030px;}
.y41{bottom:231.330030px;}
.y5a{bottom:237.090030px;}
.yab{bottom:238.979880px;}
.y7a{bottom:241.500030px;}
.y9b{bottom:242.130030px;}
.y21{bottom:260.670030px;}
.y40{bottom:262.380030px;}
.ydf{bottom:265.530030px;}
.yaa{bottom:266.070030px;}
.y59{bottom:268.139880px;}
.y79{bottom:272.550030px;}
.y9a{bottom:273.179880px;}
.y20{bottom:291.719880px;}
.y3f{bottom:293.429880px;}
.yde{bottom:296.580030px;}
.y58{bottom:299.189880px;}
.y78{bottom:303.599880px;}
.y99{bottom:304.229880px;}
.y1f{bottom:322.769880px;}
.y3e{bottom:324.479880px;}
.y57{bottom:330.240030px;}
.y77{bottom:334.649880px;}
.y98{bottom:335.280030px;}
.ydd{bottom:342.660030px;}
.y1e{bottom:353.820030px;}
.y3d{bottom:355.530030px;}
.y56{bottom:361.290030px;}
.y76{bottom:365.700030px;}
.y97{bottom:366.329880px;}
.ydc{bottom:373.710030px;}
.yc8{bottom:382.800030px;}
.y1d{bottom:384.870030px;}
.y3c{bottom:386.579880px;}
.y55{bottom:392.339880px;}
.y75{bottom:396.749880px;}
.y96{bottom:397.380030px;}
.yc7{bottom:413.850030px;}
.y1c{bottom:415.919880px;}
.y3b{bottom:417.630030px;}
.ydb{bottom:419.700030px;}
.y54{bottom:423.389880px;}
.y74{bottom:427.800030px;}
.y95{bottom:428.430030px;}
.yc6{bottom:444.899880px;}
.y1b{bottom:446.969880px;}
.y3a{bottom:448.680030px;}
.yda{bottom:450.749880px;}
.y53{bottom:454.440030px;}
.y7e{bottom:458.130000px;}
.y73{bottom:458.850030px;}
.ya9{bottom:459.300030px;}
.y94{bottom:459.479880px;}
.y5f{bottom:462.180000px;}
.yc5{bottom:475.950030px;}
.y1a{bottom:478.020030px;}
.y39{bottom:479.729880px;}
.y52{bottom:485.489880px;}
.y72{bottom:489.899880px;}
.ya8{bottom:490.350030px;}
.y93{bottom:490.530030px;}
.yd9{bottom:496.829880px;}
.yc4{bottom:506.999880px;}
.y19{bottom:509.069880px;}
.y38{bottom:510.780030px;}
.y51{bottom:516.540030px;}
.y71{bottom:516.989880px;}
.ya7{bottom:521.399880px;}
.y92{bottom:521.579880px;}
.yd8{bottom:527.880030px;}
.yc3{bottom:538.050030px;}
.y18{bottom:540.120030px;}
.y37{bottom:541.829880px;}
.y50{bottom:543.719880px;}
.ya6{bottom:552.450030px;}
.y91{bottom:552.630030px;}
.yaf{bottom:555.059850px;}
.yc2{bottom:569.100030px;}
.y17{bottom:571.169880px;}
.y36{bottom:572.880030px;}
.yd7{bottom:573.960030px;}
.ya5{bottom:579.630030px;}
.y90{bottom:583.679880px;}
.yc1{bottom:600.149880px;}
.y16{bottom:602.219880px;}
.y35{bottom:603.929880px;}
.yd6{bottom:605.009880px;}
.y8f{bottom:614.729880px;}
.yc0{bottom:631.200030px;}
.y15{bottom:633.270030px;}
.y34{bottom:634.979880px;}
.y8e{bottom:645.780030px;}
.yd5{bottom:650.999880px;}
.ybf{bottom:662.249880px;}
.y14{bottom:664.319880px;}
.y33{bottom:666.030030px;}
.y70{bottom:675.120030px;}
.y8d{bottom:676.829880px;}
.yd4{bottom:682.050030px;}
.ybe{bottom:693.300030px;}
.y13{bottom:695.370030px;}
.y32{bottom:697.079880px;}
.y6f{bottom:706.169880px;}
.y8c{bottom:707.880030px;}
.yd3{bottom:713.099880px;}
.ybd{bottom:724.349880px;}
.y12{bottom:726.419880px;}
.y31{bottom:728.130030px;}
.y6e{bottom:737.219880px;}
.y81{bottom:738.030000px;}
.y8b{bottom:738.929880px;}
.yd2{bottom:744.149880px;}
.ybc{bottom:755.400030px;}
.y11{bottom:757.469880px;}
.y30{bottom:759.179880px;}
.y6d{bottom:768.269880px;}
.y8a{bottom:769.979880px;}
.y4f{bottom:778.440030px;}
.ybb{bottom:786.449880px;}
.y10{bottom:788.519880px;}
.y2f{bottom:790.229880px;}
.y6c{bottom:799.319880px;}
.y89{bottom:801.030030px;}
.y4e{bottom:809.490030px;}
.yba{bottom:817.499880px;}
.yf{bottom:819.569880px;}
.y2e{bottom:821.280030px;}
.ya0{bottom:824.969850px;}
.y6b{bottom:826.409880px;}
.y88{bottom:831.990030px;}
.y4d{bottom:840.539880px;}
.yb9{bottom:848.550030px;}
.ycb{bottom:848.729850px;}
.y5c{bottom:850.530000px;}
.ye{bottom:850.620030px;}
.y2d{bottom:852.330030px;}
.y87{bottom:863.039880px;}
.y4c{bottom:871.589880px;}
.yb8{bottom:879.600030px;}
.yd{bottom:881.670030px;}
.y2c{bottom:883.379880px;}
.y86{bottom:890.129880px;}
.y4b{bottom:898.679880px;}
.yb7{bottom:906.690030px;}
.yc{bottom:912.719880px;}
.y2b{bottom:914.429880px;}
.yb{bottom:943.679880px;}
.y2a{bottom:945.479880px;}
.ya{bottom:974.729880px;}
.y29{bottom:976.530030px;}
.y9{bottom:1003.440030px;}
.y28{bottom:1007.580030px;}
.y8{bottom:1021.350030px;}
.y27{bottom:1038.629880px;}
.y7{bottom:1042.050030px;}
.y6{bottom:1062.120030px;}
.y26{bottom:1069.679880px;}
.y5{bottom:1080.030030px;}
.y4{bottom:1100.639880px;}
.h10{height:22.859985px;}
.h13{height:30.780000px;}
.h12{height:41.129970px;}
.h9{height:41.522695px;}
.ha{height:41.940030px;}
.h3{height:43.909277px;}
.h2{height:45.775020px;}
.hd{height:47.880015px;}
.h7{height:49.992188px;}
.h6{height:50.027344px;}
.h5{height:53.077852px;}
.h8{height:56.610015px;}
.h11{height:58.050000px;}
.hf{height:62.370030px;}
.hc{height:62.910000px;}
.h4{height:63.949219px;}
.hb{height:72.449985px;}
.he{height:82.710015px;}
.h1{height:1226.999850px;}
.h0{height:1263.000000px;}
.w8{width:437.580000px;}
.wa{width:438.570000px;}
.wb{width:502.020000px;}
.w5{width:528.300000px;}
.w9{width:530.190000px;}
.w7{width:550.980000px;}
.w4{width:552.690000px;}
.w2{width:557.730000px;}
.w3{width:567.360000px;}
.w6{width:573.930000px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:3.647250px;}
.x21{left:5.586000px;}
.x16{left:9.944400px;}
.x19{left:14.330700px;}
.x1{left:18.000000px;}
.x2e{left:21.120000px;}
.x12{left:29.841000px;}
.x1f{left:35.194050px;}
.x18{left:37.101750px;}
.x15{left:39.944250px;}
.x29{left:41.551200px;}
.x1d{left:64.730700px;}
.xd{left:68.774100px;}
.x2d{left:79.490400px;}
.x13{left:88.753350px;}
.x3{left:109.620120px;}
.x7{left:126.012090px;}
.x4{left:135.022350px;}
.x11{left:140.130000px;}
.xc{left:147.510000px;}
.x17{left:156.870000px;}
.x20{left:162.038550px;}
.x14{left:167.130000px;}
.x1e{left:170.010000px;}
.x28{left:188.100000px;}
.x30{left:189.961650px;}
.x2c{left:199.800000px;}
.x2f{left:220.050000px;}
.x22{left:224.503200px;}
.x24{left:227.790000px;}
.x2a{left:244.170000px;}
.x1a{left:264.104850px;}
.x9{left:317.096550px;}
.x5{left:336.533550px;}
.xa{left:339.016500px;}
.x8{left:397.528200px;}
.x6{left:428.519850px;}
.x10{left:573.082350px;}
.xf{left:574.594500px;}
.xb{left:578.707350px;}
.x27{left:588.504600px;}
.x2b{left:590.519850px;}
.x23{left:598.941900px;}
.x1b{left:647.069100px;}
.x1c{left:655.319850px;}
.x26{left:667.118700px;}
.x25{left:730.920000px;}
.x2{left:739.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.012800pt;}
.ls18{letter-spacing:0.019200pt;}
.ls1b{letter-spacing:0.026667pt;}
.ls12{letter-spacing:0.028373pt;}
.ls1a{letter-spacing:0.047808pt;}
.ls13{letter-spacing:0.052704pt;}
.ls14{letter-spacing:0.052800pt;}
.ls10{letter-spacing:0.053120pt;}
.ls7{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.069056pt;}
.ls0{letter-spacing:0.071413pt;}
.lsf{letter-spacing:0.071573pt;}
.lsa{letter-spacing:0.072107pt;}
.ls17{letter-spacing:0.074368pt;}
.ls9{letter-spacing:0.084992pt;}
.ls15{letter-spacing:0.090304pt;}
.ls19{letter-spacing:0.095616pt;}
.ls16{letter-spacing:0.100928pt;}
.ls8{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.122176pt;}
.ls11{letter-spacing:0.127488pt;}
.ls4{letter-spacing:3.110400pt;}
.lsb{letter-spacing:5.459201pt;}
.lsc{letter-spacing:9.894400pt;}
.ls6{letter-spacing:10.272000pt;}
.ls5{letter-spacing:14.572800pt;}
.wsb{word-spacing:-16.019200pt;}
.ws2{word-spacing:-16.012800pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.987200pt;}
.ws9{word-spacing:-14.692704pt;}
.ws8{word-spacing:-13.407488pt;}
.wsa{word-spacing:-13.402176pt;}
.ws5{word-spacing:-13.386240pt;}
.wsc{word-spacing:-13.375616pt;}
.wsd{word-spacing:-13.370304pt;}
.ws6{word-spacing:-13.364992pt;}
.wse{word-spacing:-13.354368pt;}
.ws4{word-spacing:-13.349056pt;}
.wsf{word-spacing:-13.327808pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-14.815360pt;}
._16{margin-left:-9.940160pt;}
._19{margin-left:-4.630400pt;}
._e{margin-left:-2.438720pt;}
._18{margin-left:-0.893653pt;}
._3{width:1.081707pt;}
._9{width:2.156693pt;}
._1f{width:3.046613pt;}
._8{width:3.942400pt;}
._13{width:5.267200pt;}
._14{width:6.529707pt;}
._c{width:7.481600pt;}
._2{width:8.371200pt;}
._b{width:9.708800pt;}
._5{width:11.014400pt;}
._6{width:12.311573pt;}
._4{width:13.216000pt;}
._f{width:14.566400pt;}
._20{width:17.548800pt;}
._1d{width:18.522880pt;}
._0{width:19.548160pt;}
._7{width:20.496640pt;}
._17{width:21.512960pt;}
._11{width:22.423573pt;}
._15{width:23.394773pt;}
._a{width:24.389440pt;}
._1e{width:25.868800pt;}
._1c{width:26.873600pt;}
._d{width:27.942400pt;}
._12{width:29.228267pt;}
._1{width:37.772800pt;}
._21{width:39.296000pt;}
._1a{width:40.416000pt;}
._1b{width:52.364800pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.yb6{bottom:-60.880067pt;}
.y6a{bottom:-48.480000pt;}
.y69{bottom:-33.120013pt;}
.yb5{bottom:-28.480000pt;}
.ya4{bottom:-24.400000pt;}
.y68{bottom:-17.840013pt;}
.yce{bottom:-7.680000pt;}
.y67{bottom:-2.480000pt;}
.yd1{bottom:-0.400000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:4.000000pt;}
.y4a{bottom:6.079987pt;}
.ya3{bottom:7.760000pt;}
.yb0{bottom:7.920000pt;}
.ycd{bottom:8.880000pt;}
.y5e{bottom:9.520000pt;}
.y66{bottom:12.879987pt;}
.y80{bottom:14.880000pt;}
.yd0{bottom:14.959987pt;}
.y85{bottom:15.120000pt;}
.y1{bottom:15.999973pt;}
.y62{bottom:20.080000pt;}
.yb3{bottom:21.600000pt;}
.y49{bottom:22.560053pt;}
.ycc{bottom:24.160000pt;}
.y5d{bottom:24.879867pt;}
.ya2{bottom:25.360000pt;}
.y65{bottom:28.160053pt;}
.y7f{bottom:30.159867pt;}
.y84{bottom:30.479867pt;}
.y3{bottom:35.386640pt;}
.y61{bottom:36.639867pt;}
.y48{bottom:37.920053pt;}
.yb2{bottom:39.199867pt;}
.ya1{bottom:43.040000pt;}
.y64{bottom:43.520053pt;}
.y83{bottom:45.760000pt;}
.y60{bottom:52.000000pt;}
.y2{bottom:52.586640pt;}
.y82{bottom:61.119867pt;}
.ycf{bottom:92.986613pt;}
.y9f{bottom:104.826640pt;}
.yca{bottom:108.426627pt;}
.y63{bottom:120.026613pt;}
.y25{bottom:121.306693pt;}
.y47{bottom:121.626613pt;}
.y44{bottom:122.826693pt;}
.yae{bottom:129.626693pt;}
.y7d{bottom:131.866693pt;}
.y9e{bottom:132.426693pt;}
.yc9{bottom:132.506693pt;}
.y46{bottom:145.466693pt;}
.y24{bottom:148.906693pt;}
.y43{bottom:150.426693pt;}
.yad{bottom:157.226693pt;}
.y7c{bottom:159.466693pt;}
.y9d{bottom:160.026693pt;}
.ye1{bottom:167.546693pt;}
.y45{bottom:169.546693pt;}
.yb1{bottom:175.626667pt;}
.y23{bottom:176.506693pt;}
.y42{bottom:178.026693pt;}
.y5b{bottom:183.146693pt;}
.yac{bottom:184.826560pt;}
.y7b{bottom:187.066693pt;}
.y9c{bottom:187.626693pt;}
.ye0{bottom:195.146693pt;}
.y22{bottom:204.106693pt;}
.y41{bottom:205.626693pt;}
.y5a{bottom:210.746693pt;}
.yab{bottom:212.426560pt;}
.y7a{bottom:214.666693pt;}
.y9b{bottom:215.226693pt;}
.y21{bottom:231.706693pt;}
.y40{bottom:233.226693pt;}
.ydf{bottom:236.026693pt;}
.yaa{bottom:236.506693pt;}
.y59{bottom:238.346560pt;}
.y79{bottom:242.266693pt;}
.y9a{bottom:242.826560pt;}
.y20{bottom:259.306560pt;}
.y3f{bottom:260.826560pt;}
.yde{bottom:263.626693pt;}
.y58{bottom:265.946560pt;}
.y78{bottom:269.866560pt;}
.y99{bottom:270.426560pt;}
.y1f{bottom:286.906560pt;}
.y3e{bottom:288.426560pt;}
.y57{bottom:293.546693pt;}
.y77{bottom:297.466560pt;}
.y98{bottom:298.026693pt;}
.ydd{bottom:304.586693pt;}
.y1e{bottom:314.506693pt;}
.y3d{bottom:316.026693pt;}
.y56{bottom:321.146693pt;}
.y76{bottom:325.066693pt;}
.y97{bottom:325.626560pt;}
.ydc{bottom:332.186693pt;}
.yc8{bottom:340.266693pt;}
.y1d{bottom:342.106693pt;}
.y3c{bottom:343.626560pt;}
.y55{bottom:348.746560pt;}
.y75{bottom:352.666560pt;}
.y96{bottom:353.226693pt;}
.yc7{bottom:367.866693pt;}
.y1c{bottom:369.706560pt;}
.y3b{bottom:371.226693pt;}
.ydb{bottom:373.066693pt;}
.y54{bottom:376.346560pt;}
.y74{bottom:380.266693pt;}
.y95{bottom:380.826693pt;}
.yc6{bottom:395.466560pt;}
.y1b{bottom:397.306560pt;}
.y3a{bottom:398.826693pt;}
.yda{bottom:400.666560pt;}
.y53{bottom:403.946693pt;}
.y7e{bottom:407.226667pt;}
.y73{bottom:407.866693pt;}
.ya9{bottom:408.266693pt;}
.y94{bottom:408.426560pt;}
.y5f{bottom:410.826667pt;}
.yc5{bottom:423.066693pt;}
.y1a{bottom:424.906693pt;}
.y39{bottom:426.426560pt;}
.y52{bottom:431.546560pt;}
.y72{bottom:435.466560pt;}
.ya8{bottom:435.866693pt;}
.y93{bottom:436.026693pt;}
.yd9{bottom:441.626560pt;}
.yc4{bottom:450.666560pt;}
.y19{bottom:452.506560pt;}
.y38{bottom:454.026693pt;}
.y51{bottom:459.146693pt;}
.y71{bottom:459.546560pt;}
.ya7{bottom:463.466560pt;}
.y92{bottom:463.626560pt;}
.yd8{bottom:469.226693pt;}
.yc3{bottom:478.266693pt;}
.y18{bottom:480.106693pt;}
.y37{bottom:481.626560pt;}
.y50{bottom:483.306560pt;}
.ya6{bottom:491.066693pt;}
.y91{bottom:491.226693pt;}
.yaf{bottom:493.386533pt;}
.yc2{bottom:505.866693pt;}
.y17{bottom:507.706560pt;}
.y36{bottom:509.226693pt;}
.yd7{bottom:510.186693pt;}
.ya5{bottom:515.226693pt;}
.y90{bottom:518.826560pt;}
.yc1{bottom:533.466560pt;}
.y16{bottom:535.306560pt;}
.y35{bottom:536.826560pt;}
.yd6{bottom:537.786560pt;}
.y8f{bottom:546.426560pt;}
.yc0{bottom:561.066693pt;}
.y15{bottom:562.906693pt;}
.y34{bottom:564.426560pt;}
.y8e{bottom:574.026693pt;}
.yd5{bottom:578.666560pt;}
.ybf{bottom:588.666560pt;}
.y14{bottom:590.506560pt;}
.y33{bottom:592.026693pt;}
.y70{bottom:600.106693pt;}
.y8d{bottom:601.626560pt;}
.yd4{bottom:606.266693pt;}
.ybe{bottom:616.266693pt;}
.y13{bottom:618.106693pt;}
.y32{bottom:619.626560pt;}
.y6f{bottom:627.706560pt;}
.y8c{bottom:629.226693pt;}
.yd3{bottom:633.866560pt;}
.ybd{bottom:643.866560pt;}
.y12{bottom:645.706560pt;}
.y31{bottom:647.226693pt;}
.y6e{bottom:655.306560pt;}
.y81{bottom:656.026667pt;}
.y8b{bottom:656.826560pt;}
.yd2{bottom:661.466560pt;}
.ybc{bottom:671.466693pt;}
.y11{bottom:673.306560pt;}
.y30{bottom:674.826560pt;}
.y6d{bottom:682.906560pt;}
.y8a{bottom:684.426560pt;}
.y4f{bottom:691.946693pt;}
.ybb{bottom:699.066560pt;}
.y10{bottom:700.906560pt;}
.y2f{bottom:702.426560pt;}
.y6c{bottom:710.506560pt;}
.y89{bottom:712.026693pt;}
.y4e{bottom:719.546693pt;}
.yba{bottom:726.666560pt;}
.yf{bottom:728.506560pt;}
.y2e{bottom:730.026693pt;}
.ya0{bottom:733.306533pt;}
.y6b{bottom:734.586560pt;}
.y88{bottom:739.546693pt;}
.y4d{bottom:747.146560pt;}
.yb9{bottom:754.266693pt;}
.ycb{bottom:754.426533pt;}
.y5c{bottom:756.026667pt;}
.ye{bottom:756.106693pt;}
.y2d{bottom:757.626693pt;}
.y87{bottom:767.146560pt;}
.y4c{bottom:774.746560pt;}
.yb8{bottom:781.866693pt;}
.yd{bottom:783.706693pt;}
.y2c{bottom:785.226560pt;}
.y86{bottom:791.226560pt;}
.y4b{bottom:798.826560pt;}
.yb7{bottom:805.946693pt;}
.yc{bottom:811.306560pt;}
.y2b{bottom:812.826560pt;}
.yb{bottom:838.826560pt;}
.y2a{bottom:840.426560pt;}
.ya{bottom:866.426560pt;}
.y29{bottom:868.026693pt;}
.y9{bottom:891.946693pt;}
.y28{bottom:895.626693pt;}
.y8{bottom:907.866693pt;}
.y27{bottom:923.226560pt;}
.y7{bottom:926.266693pt;}
.y6{bottom:944.106693pt;}
.y26{bottom:950.826560pt;}
.y5{bottom:960.026693pt;}
.y4{bottom:978.346560pt;}
.h10{height:20.319987pt;}
.h13{height:27.360000pt;}
.h12{height:36.559973pt;}
.h9{height:36.909063pt;}
.ha{height:37.280027pt;}
.h3{height:39.030469pt;}
.h2{height:40.688906pt;}
.hd{height:42.560013pt;}
.h7{height:44.437500pt;}
.h6{height:44.468750pt;}
.h5{height:47.180313pt;}
.h8{height:50.320013pt;}
.h11{height:51.600000pt;}
.hf{height:55.440027pt;}
.hc{height:55.920000pt;}
.h4{height:56.843750pt;}
.hb{height:64.399987pt;}
.he{height:73.520013pt;}
.h1{height:1090.666533pt;}
.h0{height:1122.666667pt;}
.w8{width:388.960000pt;}
.wa{width:389.840000pt;}
.wb{width:446.240000pt;}
.w5{width:469.600000pt;}
.w9{width:471.280000pt;}
.w7{width:489.760000pt;}
.w4{width:491.280000pt;}
.w2{width:495.760000pt;}
.w3{width:504.320000pt;}
.w6{width:510.160000pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:3.242000pt;}
.x21{left:4.965333pt;}
.x16{left:8.839467pt;}
.x19{left:12.738400pt;}
.x1{left:16.000000pt;}
.x2e{left:18.773333pt;}
.x12{left:26.525333pt;}
.x1f{left:31.283600pt;}
.x18{left:32.979333pt;}
.x15{left:35.506000pt;}
.x29{left:36.934400pt;}
.x1d{left:57.538400pt;}
.xd{left:61.132533pt;}
.x2d{left:70.658133pt;}
.x13{left:78.891867pt;}
.x3{left:97.440107pt;}
.x7{left:112.010747pt;}
.x4{left:120.019867pt;}
.x11{left:124.560000pt;}
.xc{left:131.120000pt;}
.x17{left:139.440000pt;}
.x20{left:144.034267pt;}
.x14{left:148.560000pt;}
.x1e{left:151.120000pt;}
.x28{left:167.200000pt;}
.x30{left:168.854800pt;}
.x2c{left:177.600000pt;}
.x2f{left:195.600000pt;}
.x22{left:199.558400pt;}
.x24{left:202.480000pt;}
.x2a{left:217.040000pt;}
.x1a{left:234.759867pt;}
.x9{left:281.863600pt;}
.x5{left:299.140933pt;}
.xa{left:301.348000pt;}
.x8{left:353.358400pt;}
.x6{left:380.906533pt;}
.x10{left:509.406533pt;}
.xf{left:510.750667pt;}
.xb{left:514.406533pt;}
.x27{left:523.115200pt;}
.x2b{left:524.906533pt;}
.x23{left:532.392800pt;}
.x1b{left:575.172533pt;}
.x1c{left:582.506533pt;}
.x26{left:592.994400pt;}
.x25{left:649.706667pt;}
.x2{left:657.040000pt;}
}




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