
    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_74e0140e8c6caeb82996f1cb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_7a26158d1c2f37c2f10e46d1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_fbcc05138022df35af412a26.woff')format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_cfa4146f53ee2905c1231c0f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.996000;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_c969bf769f8e2f8a51017b97.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_08097e4e22ce57abd1ddf80c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249990,0.002180,-0.002180,0.249990,0,0);-ms-transform:matrix(0.249990,0.002180,-0.002180,0.249990,0,0);-webkit-transform:matrix(0.249990,0.002180,-0.002180,0.249990,0,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);}
.m3{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;}
.v1{vertical-align:60.618341px;}
.ls3{letter-spacing:-0.723082px;}
.ls5{letter-spacing:-0.602568px;}
.ls4{letter-spacing:-0.361541px;}
.ls1{letter-spacing:-0.062309px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.608911px;}
.ls0{letter-spacing:5.760960px;}
.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;}
}
.ws2{word-spacing:-24.192000px;}
.ws1{word-spacing:-5.789765px;}
.ws7{word-spacing:-0.608911px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.361541px;}
.ws6{word-spacing:0.602568px;}
.ws4{word-spacing:0.723082px;}
.ws3{word-spacing:62.370000px;}
._4{margin-left:-7.382988px;}
._6{margin-left:-6.187905px;}
._3{margin-left:-4.139516px;}
._2{margin-left:-2.524095px;}
._1{margin-left:-1.121569px;}
._0{width:1.302266px;}
._5{width:2.943809px;}
._7{width:80.388000px;}
._8{width:4922.545272px;}
.fc4{color:rgb(200,235,217);}
.fc3{color:rgb(118,128,139);}
.fc2{color:rgb(204,226,219);}
.fc1{color:rgb(33,66,116);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:17.371200px;}
.fse{font-size:28.804800px;}
.fsf{font-size:50.482200px;}
.fs15{font-size:50.742600px;}
.fs0{font-size:62.309400px;}
.fs12{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsc{font-size:74.311025px;}
.fs6{font-size:75.723000px;}
.fs11{font-size:76.113600px;}
.fs14{font-size:78.000000px;}
.fs3{font-size:82.033200px;}
.fsb{font-size:85.352400px;}
.fs1{font-size:88.343400px;}
.fs4{font-size:90.000000px;}
.fs10{font-size:96.000000px;}
.fs2{font-size:100.963800px;}
.fsa{font-size:106.690800px;}
.fs8{font-size:107.758200px;}
.fs7{font-size:119.894400px;}
.fs13{font-size:120.513600px;}
.fs9{font-size:128.029200px;}
.y0{bottom:0.000000px;}
.y4c{bottom:348.593640px;}
.y4b{bottom:363.738300px;}
.y70{bottom:366.265890px;}
.yb5{bottom:368.938500px;}
.y37{bottom:376.588800px;}
.y6f{bottom:389.099970px;}
.yb4{bottom:390.538500px;}
.y36{bottom:398.188800px;}
.y6e{bottom:411.934050px;}
.yb3{bottom:412.138500px;}
.y35{bottom:419.788800px;}
.yb2{bottom:433.738500px;}
.y6d{bottom:434.768130px;}
.y96{bottom:441.078750px;}
.y34{bottom:441.388800px;}
.yb1{bottom:455.338500px;}
.y6c{bottom:457.602210px;}
.y95{bottom:462.678750px;}
.y33{bottom:462.988800px;}
.y3c{bottom:465.074550px;}
.yb0{bottom:476.938500px;}
.y6b{bottom:480.436290px;}
.y94{bottom:484.278750px;}
.y3b{bottom:486.674550px;}
.y6{bottom:497.272650px;}
.yaf{bottom:498.538500px;}
.y32{bottom:501.941850px;}
.y6a{bottom:503.270370px;}
.y93{bottom:505.878750px;}
.yae{bottom:520.138500px;}
.y69{bottom:526.104450px;}
.y92{bottom:527.478750px;}
.yad{bottom:541.738500px;}
.y3a{bottom:544.231530px;}
.y31{bottom:546.295200px;}
.y91{bottom:549.078750px;}
.y68{bottom:560.038500px;}
.yac{bottom:563.338500px;}
.y39{bottom:568.841490px;}
.y90{bottom:570.678750px;}
.yab{bottom:584.938500px;}
.y30{bottom:586.365300px;}
.y67{bottom:588.838500px;}
.y8f{bottom:592.278750px;}
.y38{bottom:593.451450px;}
.ycc{bottom:606.677400px;}
.y2f{bottom:607.965300px;}
.y8e{bottom:613.878750px;}
.ye0{bottom:615.341220px;}
.y66{bottom:617.638500px;}
.ycb{bottom:628.277400px;}
.y2e{bottom:629.565300px;}
.ydf{bottom:630.564000px;}
.y8d{bottom:635.478750px;}
.y13{bottom:640.938090px;}
.y65{bottom:646.438500px;}
.yca{bottom:649.877400px;}
.y2d{bottom:651.165300px;}
.y8c{bottom:657.078750px;}
.y12{bottom:665.548050px;}
.yc9{bottom:671.477400px;}
.y2c{bottom:672.765300px;}
.y8b{bottom:678.678750px;}
.y11{bottom:690.158010px;}
.yc8{bottom:693.077400px;}
.y2b{bottom:694.365300px;}
.y8a{bottom:700.278750px;}
.yaa{bottom:712.569750px;}
.yc7{bottom:714.677400px;}
.y10{bottom:714.767970px;}
.y5{bottom:725.229450px;}
.y89{bottom:732.978750px;}
.y2a{bottom:733.318350px;}
.ya9{bottom:734.169750px;}
.yc6{bottom:736.277400px;}
.yf{bottom:739.377930px;}
.ya8{bottom:755.769750px;}
.yc5{bottom:757.877400px;}
.y88{bottom:761.778750px;}
.ye{bottom:763.987890px;}
.ya7{bottom:777.369750px;}
.yc4{bottom:779.477400px;}
.yd0{bottom:784.156200px;}
.y64{bottom:784.570050px;}
.yd{bottom:788.597850px;}
.y87{bottom:790.578750px;}
.ya6{bottom:798.969750px;}
.yd7{bottom:800.012700px;}
.yc3{bottom:801.077400px;}
.ycf{bottom:803.956200px;}
.y63{bottom:806.170050px;}
.y46{bottom:807.315150px;}
.y29{bottom:817.741650px;}
.y86{bottom:819.378750px;}
.ya5{bottom:820.569750px;}
.yc2{bottom:822.677400px;}
.y62{bottom:827.770050px;}
.yd6{bottom:830.917200px;}
.yce{bottom:834.860700px;}
.y28{bottom:839.341650px;}
.ya4{bottom:842.169750px;}
.yc1{bottom:844.277400px;}
.y85{bottom:848.178750px;}
.y61{bottom:849.370050px;}
.y27{bottom:860.941650px;}
.yd5{bottom:861.821700px;}
.ya3{bottom:863.769750px;}
.ycd{bottom:865.765200px;}
.y1{bottom:867.071100px;}
.y60{bottom:870.970050px;}
.yc0{bottom:876.977400px;}
.y84{bottom:876.978750px;}
.y26{bottom:882.541650px;}
.yda{bottom:883.730100px;}
.ya2{bottom:885.369750px;}
.y5f{bottom:892.570050px;}
.yd4{bottom:892.726200px;}
.yc{bottom:896.398800px;}
.y25{bottom:904.141650px;}
.ybf{bottom:905.777400px;}
.y83{bottom:905.778750px;}
.ya1{bottom:906.969750px;}
.yd3{bottom:912.526200px;}
.y5e{bottom:914.170050px;}
.y24{bottom:925.741650px;}
.yb{bottom:926.687940px;}
.y5d{bottom:935.770050px;}
.ya0{bottom:939.670050px;}
.yd2{bottom:943.430700px;}
.y2{bottom:954.777900px;}
.ya{bottom:956.977080px;}
.y23{bottom:964.694850px;}
.y82{bottom:967.026750px;}
.y5c{bottom:968.470050px;}
.yd1{bottom:974.335200px;}
.y9{bottom:987.266220px;}
.y81{bottom:988.626750px;}
.y5b{bottom:997.270050px;}
.y22{bottom:1009.048050px;}
.y80{bottom:1010.226750px;}
.y8{bottom:1017.555360px;}
.y7f{bottom:1031.826750px;}
.y7{bottom:1047.844500px;}
.y21{bottom:1049.117700px;}
.y7e{bottom:1053.426750px;}
.y5a{bottom:1057.817250px;}
.y20{bottom:1070.717700px;}
.y7d{bottom:1075.026750px;}
.y59{bottom:1079.417250px;}
.y1f{bottom:1092.317700px;}
.y7c{bottom:1096.626750px;}
.y45{bottom:1097.371650px;}
.y58{bottom:1101.017250px;}
.y1e{bottom:1113.917700px;}
.y7b{bottom:1118.226750px;}
.y57{bottom:1122.617250px;}
.y9f{bottom:1137.017850px;}
.y7a{bottom:1139.826750px;}
.y44{bottom:1140.477600px;}
.y3{bottom:1143.914850px;}
.y56{bottom:1144.217250px;}
.ybe{bottom:1147.027200px;}
.y1d{bottom:1152.870900px;}
.y9e{bottom:1158.617850px;}
.y79{bottom:1161.426750px;}
.y55{bottom:1165.817250px;}
.ybd{bottom:1168.627200px;}
.y9d{bottom:1180.217850px;}
.y78{bottom:1183.026750px;}
.y43{bottom:1183.580550px;}
.y54{bottom:1187.417250px;}
.ybc{bottom:1190.227200px;}
.y9c{bottom:1201.817850px;}
.y77{bottom:1204.626750px;}
.y53{bottom:1209.017250px;}
.ybb{bottom:1211.827200px;}
.y9b{bottom:1223.417850px;}
.y52{bottom:1230.617250px;}
.yba{bottom:1233.427200px;}
.y1c{bottom:1237.294800px;}
.y76{bottom:1237.327200px;}
.y9a{bottom:1245.017850px;}
.y51{bottom:1252.217250px;}
.yb9{bottom:1255.027200px;}
.y1b{bottom:1258.894800px;}
.y75{bottom:1266.127200px;}
.y99{bottom:1266.617850px;}
.y42{bottom:1269.788100px;}
.yb8{bottom:1276.627200px;}
.y1a{bottom:1280.494800px;}
.y50{bottom:1284.917850px;}
.y98{bottom:1288.217850px;}
.y74{bottom:1294.927200px;}
.yb7{bottom:1298.227200px;}
.y49{bottom:1299.887980px;}
.y19{bottom:1302.094800px;}
.y4a{bottom:1303.490550px;}
.y97{bottom:1309.817850px;}
.y41{bottom:1312.888200px;}
.y4f{bottom:1313.717850px;}
.yb6{bottom:1319.827200px;}
.y18{bottom:1323.694800px;}
.y73{bottom:1323.727200px;}
.y48{bottom:1328.385433px;}
.y4e{bottom:1342.517850px;}
.y17{bottom:1345.294800px;}
.y72{bottom:1352.527200px;}
.y40{bottom:1355.992650px;}
.y47{bottom:1356.965400px;}
.y16{bottom:1366.894800px;}
.y4d{bottom:1371.317850px;}
.y71{bottom:1381.327200px;}
.y15{bottom:1405.847850px;}
.y4{bottom:1425.630600px;}
.y14{bottom:1432.847850px;}
.y3f{bottom:1442.198700px;}
.yd8{bottom:1445.772150px;}
.ydc{bottom:1446.802470px;}
.yde{bottom:1461.113460px;}
.yd9{bottom:1480.878600px;}
.ydb{bottom:1482.956550px;}
.ydd{bottom:1497.267540px;}
.y3e{bottom:1514.228880px;}
.y3d{bottom:1550.197200px;}
.hf{height:13.167370px;}
.h10{height:21.834038px;}
.h11{height:38.625785px;}
.h18{height:38.825026px;}
.h2{height:47.230525px;}
.h14{height:52.668000px;}
.he{height:56.858094px;}
.h7{height:57.456000px;}
.h8{height:60.426954px;}
.h16{height:60.528000px;}
.h13{height:60.738653px;}
.hd{height:65.306255px;}
.h5{height:65.462494px;}
.h3{height:68.554478px;}
.h6{height:71.190000px;}
.h12{height:75.936000px;}
.h4{height:80.569112px;}
.hc{height:81.633049px;}
.ha{height:82.449756px;}
.h9{height:93.038054px;}
.h15{height:93.518554px;}
.hb{height:97.959842px;}
.h17{height:154.136894px;}
.h1{height:1676.250000px;}
.h0{height:1676.475000px;}
.w1{width:2922.000000px;}
.w0{width:2922.300000px;}
.x0{left:0.000000px;}
.x26{left:86.276400px;}
.x23{left:88.587900px;}
.x27{left:91.886700px;}
.x24{left:112.429650px;}
.x3{left:158.118150px;}
.x4{left:160.066350px;}
.x2{left:162.095250px;}
.x2f{left:180.650400px;}
.x1b{left:187.828325px;}
.x10{left:215.790600px;}
.x11{left:216.997500px;}
.x12{left:218.064600px;}
.x13{left:219.150750px;}
.x14{left:220.236750px;}
.x1a{left:243.489300px;}
.x29{left:549.092250px;}
.x31{left:579.143550px;}
.x32{left:672.270434px;}
.x30{left:1054.255350px;}
.x35{left:1245.120150px;}
.x1c{left:1263.252000px;}
.x1e{left:1280.167950px;}
.x20{left:1292.422800px;}
.x1d{left:1340.507850px;}
.x21{left:1344.624000px;}
.x1f{left:1353.265200px;}
.x1{left:1385.739300px;}
.x22{left:1411.195050px;}
.x2b{left:1428.121650px;}
.x2c{left:1455.115650px;}
.x2d{left:1634.091150px;}
.x2e{left:1661.085150px;}
.x28{left:1975.740300px;}
.x16{left:2019.467152px;}
.x18{left:2020.573200px;}
.x15{left:2026.132350px;}
.x19{left:2042.461200px;}
.xc{left:2046.917020px;}
.xb{left:2048.721750px;}
.x7{left:2050.214642px;}
.xe{left:2058.709292px;}
.x9{left:2065.939753px;}
.xd{left:2067.056170px;}
.x8{left:2076.187579px;}
.x6{left:2079.418421px;}
.x5{left:2103.043950px;}
.xf{left:2157.210657px;}
.x17{left:2184.723034px;}
.x25{left:2207.512200px;}
.xa{left:2209.914132px;}
.x2a{left:2430.042450px;}
.x33{left:2449.906291px;}
.x34{left:2543.003047px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:53.882970pt;}
.ls3{letter-spacing:-0.642739pt;}
.ls5{letter-spacing:-0.535616pt;}
.ls4{letter-spacing:-0.321370pt;}
.ls1{letter-spacing:-0.055386pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.541254pt;}
.ls0{letter-spacing:5.120853pt;}
.ws2{word-spacing:-21.504000pt;}
.ws1{word-spacing:-5.146458pt;}
.ws7{word-spacing:-0.541254pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.321370pt;}
.ws6{word-spacing:0.535616pt;}
.ws4{word-spacing:0.642739pt;}
.ws3{word-spacing:55.440000pt;}
._4{margin-left:-6.562656pt;}
._6{margin-left:-5.500360pt;}
._3{margin-left:-3.679570pt;}
._2{margin-left:-2.243640pt;}
._1{margin-left:-0.996950pt;}
._0{width:1.157570pt;}
._5{width:2.616720pt;}
._7{width:71.456000pt;}
._8{width:4375.595797pt;}
.fsd{font-size:15.441067pt;}
.fse{font-size:25.604267pt;}
.fsf{font-size:44.873067pt;}
.fs15{font-size:45.104533pt;}
.fs0{font-size:55.386133pt;}
.fs12{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsc{font-size:66.054245pt;}
.fs6{font-size:67.309333pt;}
.fs11{font-size:67.656533pt;}
.fs14{font-size:69.333333pt;}
.fs3{font-size:72.918400pt;}
.fsb{font-size:75.868800pt;}
.fs1{font-size:78.527467pt;}
.fs4{font-size:80.000000pt;}
.fs10{font-size:85.333333pt;}
.fs2{font-size:89.745600pt;}
.fsa{font-size:94.836267pt;}
.fs8{font-size:95.785067pt;}
.fs7{font-size:106.572800pt;}
.fs13{font-size:107.123200pt;}
.fs9{font-size:113.803733pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:309.861013pt;}
.y4b{bottom:323.322933pt;}
.y70{bottom:325.569680pt;}
.yb5{bottom:327.945333pt;}
.y37{bottom:334.745600pt;}
.y6f{bottom:345.866640pt;}
.yb4{bottom:347.145333pt;}
.y36{bottom:353.945600pt;}
.y6e{bottom:366.163600pt;}
.yb3{bottom:366.345333pt;}
.y35{bottom:373.145600pt;}
.yb2{bottom:385.545333pt;}
.y6d{bottom:386.460560pt;}
.y96{bottom:392.070000pt;}
.y34{bottom:392.345600pt;}
.yb1{bottom:404.745333pt;}
.y6c{bottom:406.757520pt;}
.y95{bottom:411.270000pt;}
.y33{bottom:411.545600pt;}
.y3c{bottom:413.399600pt;}
.yb0{bottom:423.945333pt;}
.y6b{bottom:427.054480pt;}
.y94{bottom:430.470000pt;}
.y3b{bottom:432.599600pt;}
.y6{bottom:442.020133pt;}
.yaf{bottom:443.145333pt;}
.y32{bottom:446.170533pt;}
.y6a{bottom:447.351440pt;}
.y93{bottom:449.670000pt;}
.yae{bottom:462.345333pt;}
.y69{bottom:467.648400pt;}
.y92{bottom:468.870000pt;}
.yad{bottom:481.545333pt;}
.y3a{bottom:483.761360pt;}
.y31{bottom:485.595733pt;}
.y91{bottom:488.070000pt;}
.y68{bottom:497.812000pt;}
.yac{bottom:500.745333pt;}
.y39{bottom:505.636880pt;}
.y90{bottom:507.270000pt;}
.yab{bottom:519.945333pt;}
.y30{bottom:521.213600pt;}
.y67{bottom:523.412000pt;}
.y8f{bottom:526.470000pt;}
.y38{bottom:527.512400pt;}
.ycc{bottom:539.268800pt;}
.y2f{bottom:540.413600pt;}
.y8e{bottom:545.670000pt;}
.ye0{bottom:546.969973pt;}
.y66{bottom:549.012000pt;}
.ycb{bottom:558.468800pt;}
.y2e{bottom:559.613600pt;}
.ydf{bottom:560.501333pt;}
.y8d{bottom:564.870000pt;}
.y13{bottom:569.722747pt;}
.y65{bottom:574.612000pt;}
.yca{bottom:577.668800pt;}
.y2d{bottom:578.813600pt;}
.y8c{bottom:584.070000pt;}
.y12{bottom:591.598267pt;}
.yc9{bottom:596.868800pt;}
.y2c{bottom:598.013600pt;}
.y8b{bottom:603.270000pt;}
.y11{bottom:613.473787pt;}
.yc8{bottom:616.068800pt;}
.y2b{bottom:617.213600pt;}
.y8a{bottom:622.470000pt;}
.yaa{bottom:633.395333pt;}
.yc7{bottom:635.268800pt;}
.y10{bottom:635.349307pt;}
.y5{bottom:644.648400pt;}
.y89{bottom:651.536667pt;}
.y2a{bottom:651.838533pt;}
.ya9{bottom:652.595333pt;}
.yc6{bottom:654.468800pt;}
.yf{bottom:657.224827pt;}
.ya8{bottom:671.795333pt;}
.yc5{bottom:673.668800pt;}
.y88{bottom:677.136667pt;}
.ye{bottom:679.100347pt;}
.ya7{bottom:690.995333pt;}
.yc4{bottom:692.868800pt;}
.yd0{bottom:697.027733pt;}
.y64{bottom:697.395600pt;}
.yd{bottom:700.975867pt;}
.y87{bottom:702.736667pt;}
.ya6{bottom:710.195333pt;}
.yd7{bottom:711.122400pt;}
.yc3{bottom:712.068800pt;}
.ycf{bottom:714.627733pt;}
.y63{bottom:716.595600pt;}
.y46{bottom:717.613467pt;}
.y29{bottom:726.881467pt;}
.y86{bottom:728.336667pt;}
.ya5{bottom:729.395333pt;}
.yc2{bottom:731.268800pt;}
.y62{bottom:735.795600pt;}
.yd6{bottom:738.593067pt;}
.yce{bottom:742.098400pt;}
.y28{bottom:746.081467pt;}
.ya4{bottom:748.595333pt;}
.yc1{bottom:750.468800pt;}
.y85{bottom:753.936667pt;}
.y61{bottom:754.995600pt;}
.y27{bottom:765.281467pt;}
.yd5{bottom:766.063733pt;}
.ya3{bottom:767.795333pt;}
.ycd{bottom:769.569067pt;}
.y1{bottom:770.729867pt;}
.y60{bottom:774.195600pt;}
.yc0{bottom:779.535467pt;}
.y84{bottom:779.536667pt;}
.y26{bottom:784.481467pt;}
.yda{bottom:785.537867pt;}
.ya2{bottom:786.995333pt;}
.y5f{bottom:793.395600pt;}
.yd4{bottom:793.534400pt;}
.yc{bottom:796.798933pt;}
.y25{bottom:803.681467pt;}
.ybf{bottom:805.135467pt;}
.y83{bottom:805.136667pt;}
.ya1{bottom:806.195333pt;}
.yd3{bottom:811.134400pt;}
.y5e{bottom:812.595600pt;}
.y24{bottom:822.881467pt;}
.yb{bottom:823.722613pt;}
.y5d{bottom:831.795600pt;}
.ya0{bottom:835.262267pt;}
.yd2{bottom:838.605067pt;}
.y2{bottom:848.691467pt;}
.ya{bottom:850.646293pt;}
.y23{bottom:857.506533pt;}
.y82{bottom:859.579333pt;}
.y5c{bottom:860.862267pt;}
.yd1{bottom:866.075733pt;}
.y9{bottom:877.569973pt;}
.y81{bottom:878.779333pt;}
.y5b{bottom:886.462267pt;}
.y22{bottom:896.931600pt;}
.y80{bottom:897.979333pt;}
.y8{bottom:904.493653pt;}
.y7f{bottom:917.179333pt;}
.y7{bottom:931.417333pt;}
.y21{bottom:932.549067pt;}
.y7e{bottom:936.379333pt;}
.y5a{bottom:940.282000pt;}
.y20{bottom:951.749067pt;}
.y7d{bottom:955.579333pt;}
.y59{bottom:959.482000pt;}
.y1f{bottom:970.949067pt;}
.y7c{bottom:974.779333pt;}
.y45{bottom:975.441467pt;}
.y58{bottom:978.682000pt;}
.y1e{bottom:990.149067pt;}
.y7b{bottom:993.979333pt;}
.y57{bottom:997.882000pt;}
.y9f{bottom:1010.682533pt;}
.y7a{bottom:1013.179333pt;}
.y44{bottom:1013.757867pt;}
.y3{bottom:1016.813200pt;}
.y56{bottom:1017.082000pt;}
.ybe{bottom:1019.579733pt;}
.y1d{bottom:1024.774133pt;}
.y9e{bottom:1029.882533pt;}
.y79{bottom:1032.379333pt;}
.y55{bottom:1036.282000pt;}
.ybd{bottom:1038.779733pt;}
.y9d{bottom:1049.082533pt;}
.y78{bottom:1051.579333pt;}
.y43{bottom:1052.071600pt;}
.y54{bottom:1055.482000pt;}
.ybc{bottom:1057.979733pt;}
.y9c{bottom:1068.282533pt;}
.y77{bottom:1070.779333pt;}
.y53{bottom:1074.682000pt;}
.ybb{bottom:1077.179733pt;}
.y9b{bottom:1087.482533pt;}
.y52{bottom:1093.882000pt;}
.yba{bottom:1096.379733pt;}
.y1c{bottom:1099.817600pt;}
.y76{bottom:1099.846400pt;}
.y9a{bottom:1106.682533pt;}
.y51{bottom:1113.082000pt;}
.yb9{bottom:1115.579733pt;}
.y1b{bottom:1119.017600pt;}
.y75{bottom:1125.446400pt;}
.y99{bottom:1125.882533pt;}
.y42{bottom:1128.700533pt;}
.yb8{bottom:1134.779733pt;}
.y1a{bottom:1138.217600pt;}
.y50{bottom:1142.149200pt;}
.y98{bottom:1145.082533pt;}
.y74{bottom:1151.046400pt;}
.yb7{bottom:1153.979733pt;}
.y49{bottom:1155.455982pt;}
.y19{bottom:1157.417600pt;}
.y4a{bottom:1158.658267pt;}
.y97{bottom:1164.282533pt;}
.y41{bottom:1167.011733pt;}
.y4f{bottom:1167.749200pt;}
.yb6{bottom:1173.179733pt;}
.y18{bottom:1176.617600pt;}
.y73{bottom:1176.646400pt;}
.y48{bottom:1180.787052pt;}
.y4e{bottom:1193.349200pt;}
.y17{bottom:1195.817600pt;}
.y72{bottom:1202.246400pt;}
.y40{bottom:1205.326800pt;}
.y47{bottom:1206.191467pt;}
.y16{bottom:1215.017600pt;}
.y4d{bottom:1218.949200pt;}
.y71{bottom:1227.846400pt;}
.y15{bottom:1249.642533pt;}
.y4{bottom:1267.227200pt;}
.y14{bottom:1273.642533pt;}
.y3f{bottom:1281.954400pt;}
.yd8{bottom:1285.130800pt;}
.ydc{bottom:1286.046640pt;}
.yde{bottom:1298.767520pt;}
.yd9{bottom:1316.336533pt;}
.ydb{bottom:1318.183600pt;}
.ydd{bottom:1330.904480pt;}
.y3e{bottom:1345.981227pt;}
.y3d{bottom:1377.953067pt;}
.hf{height:11.704329pt;}
.h10{height:19.408034pt;}
.h11{height:34.334031pt;}
.h18{height:34.511135pt;}
.h2{height:41.982689pt;}
.h14{height:46.816000pt;}
.he{height:50.540528pt;}
.h7{height:51.072000pt;}
.h8{height:53.712848pt;}
.h16{height:53.802667pt;}
.h13{height:53.989914pt;}
.hd{height:58.050005pt;}
.h5{height:58.188883pt;}
.h3{height:60.937314pt;}
.h6{height:63.280000pt;}
.h12{height:67.498667pt;}
.h4{height:71.616989pt;}
.hc{height:72.562710pt;}
.ha{height:73.288672pt;}
.h9{height:82.700493pt;}
.h15{height:83.127603pt;}
.hb{height:87.075415pt;}
.h17{height:137.010573pt;}
.h1{height:1490.000000pt;}
.h0{height:1490.200000pt;}
.w1{width:2597.333333pt;}
.w0{width:2597.600000pt;}
.x0{left:0.000000pt;}
.x26{left:76.690133pt;}
.x23{left:78.744800pt;}
.x27{left:81.677067pt;}
.x24{left:99.937467pt;}
.x3{left:140.549467pt;}
.x4{left:142.281200pt;}
.x2{left:144.084667pt;}
.x2f{left:160.578133pt;}
.x1b{left:166.958511pt;}
.x10{left:191.813867pt;}
.x11{left:192.886667pt;}
.x12{left:193.835200pt;}
.x13{left:194.800667pt;}
.x14{left:195.766000pt;}
.x1a{left:216.434933pt;}
.x29{left:488.082000pt;}
.x31{left:514.794267pt;}
.x32{left:597.573719pt;}
.x30{left:937.115867pt;}
.x35{left:1106.773467pt;}
.x1c{left:1122.890667pt;}
.x1e{left:1137.927067pt;}
.x20{left:1148.820267pt;}
.x1d{left:1191.562533pt;}
.x21{left:1195.221333pt;}
.x1f{left:1202.902400pt;}
.x1{left:1231.768267pt;}
.x22{left:1254.395600pt;}
.x2b{left:1269.441467pt;}
.x2c{left:1293.436133pt;}
.x2d{left:1452.525467pt;}
.x2e{left:1476.520133pt;}
.x28{left:1756.213600pt;}
.x16{left:1795.081913pt;}
.x18{left:1796.065067pt;}
.x15{left:1801.006533pt;}
.x19{left:1815.521067pt;}
.xc{left:1819.481795pt;}
.xb{left:1821.086000pt;}
.x7{left:1822.413015pt;}
.xe{left:1829.963815pt;}
.x9{left:1836.390892pt;}
.xd{left:1837.383262pt;}
.x8{left:1845.500070pt;}
.x6{left:1848.371930pt;}
.x5{left:1869.372400pt;}
.xf{left:1917.520584pt;}
.x17{left:1941.976030pt;}
.x25{left:1962.233067pt;}
.xa{left:1964.368118pt;}
.x2a{left:2160.037733pt;}
.x33{left:2177.694481pt;}
.x34{left:2260.447153pt;}
}




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