
    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_2d4bc74c34b6c8fb8d83ab84.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_74ffbeb885071c388eb12aa0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_2cc94e84b611b57a0cf8fa35.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.526000;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_f01a2b9e23c85eec7dfe2f4f.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_61a1b582d70163e0097cec15.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_ee606eae30d7d8e0e81436b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948000;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;}
.ma{transform:matrix(0.000000,-0.249847,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249847,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249847,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);}
.md{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.039998px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.378514px;}
.ls0{letter-spacing:0.564540px;}
.ls3{letter-spacing:227.848981px;}
.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;}
}
.ws4{word-spacing:-18.189533px;}
.wsa{word-spacing:-18.099628px;}
.ws1{word-spacing:-14.939994px;}
.ws0{word-spacing:-9.719996px;}
.ws6{word-spacing:-7.535621px;}
.ws7{word-spacing:-7.275413px;}
.ws9{word-spacing:-7.239384px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:42.232817px;}
.ws3{word-spacing:93.174598px;}
.ws8{word-spacing:102.698321px;}
._1a{margin-left:-5.859335px;}
._18{margin-left:-4.264592px;}
._17{margin-left:-2.692725px;}
._1{margin-left:-1.198404px;}
._0{width:1.172699px;}
._b{width:2.792352px;}
._5{width:3.809036px;}
._c{width:4.989447px;}
._d{width:6.007119px;}
._10{width:7.460655px;}
._f{width:8.927083px;}
._8{width:10.003335px;}
._9{width:11.127841px;}
._a{width:12.315997px;}
._e{width:13.381189px;}
._7{width:19.477488px;}
._6{width:21.361305px;}
._15{width:22.509044px;}
._3{width:23.609939px;}
._4{width:24.643596px;}
._12{width:27.566082px;}
._11{width:29.620457px;}
._19{width:51.209367px;}
._2{width:112.578233px;}
._16{width:122.234133px;}
._1b{width:128.709680px;}
._14{width:154.363604px;}
._13{width:155.805014px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.616555px;}
.fs8{font-size:24.719030px;}
.fsd{font-size:26.040950px;}
.fsa{font-size:26.170550px;}
.fs6{font-size:27.106549px;}
.fsb{font-size:35.808466px;}
.fs4{font-size:35.985586px;}
.fs3{font-size:38.879984px;}
.fsc{font-size:43.714783px;}
.fs9{font-size:43.931502px;}
.fs2{font-size:59.759976px;}
.fse{font-size:65.106574px;}
.fs5{font-size:65.429974px;}
.fs0{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y3a{bottom:368.221353px;}
.y39{bottom:385.501346px;}
.y38{bottom:402.781339px;}
.y37{bottom:420.061332px;}
.y35{bottom:437.161325px;}
.y36{bottom:444.001322px;}
.y33{bottom:454.441318px;}
.y34{bottom:461.281315px;}
.y54{bottom:462.901315px;}
.y32{bottom:469.201312px;}
.y31{bottom:471.541311px;}
.y53{bottom:480.181308px;}
.y52{bottom:487.021305px;}
.y30{bottom:490.081304px;}
.y51{bottom:497.461301px;}
.y2f{bottom:507.361297px;}
.y50{bottom:514.741294px;}
.y4f{bottom:521.581291px;}
.y2d{bottom:524.461290px;}
.y2e{bottom:531.301287px;}
.y4e{bottom:531.841287px;}
.y4d{bottom:538.681285px;}
.y2b{bottom:542.821283px;}
.y4c{bottom:549.121280px;}
.y2c{bottom:549.661280px;}
.y2a{bottom:561.361275px;}
.y4b{bottom:566.401273px;}
.y4a{bottom:573.241271px;}
.y29{bottom:578.641269px;}
.y49{bottom:583.681267px;}
.y27{bottom:595.741262px;}
.y48{bottom:600.961260px;}
.y28{bottom:602.581259px;}
.y47{bottom:607.801257px;}
.y25{bottom:614.101254px;}
.y46{bottom:618.241253px;}
.y26{bottom:620.941252px;}
.y24{bottom:632.641247px;}
.y45{bottom:635.341246px;}
.y23{bottom:649.921240px;}
.y43{bottom:652.621239px;}
.y44{bottom:659.461236px;}
.y21{bottom:667.021233px;}
.y42{bottom:669.901232px;}
.y22{bottom:673.861230px;}
.y20{bottom:684.301226px;}
.y40{bottom:687.181225px;}
.y41{bottom:694.021222px;}
.y1f{bottom:701.581219px;}
.y3f{bottom:704.461218px;}
.y1e{bottom:718.861212px;}
.y3e{bottom:721.741211px;}
.y1d{bottom:736.141206px;}
.y3d{bottom:738.841204px;}
.y3c{bottom:752.341199px;}
.y1c{bottom:753.421199px;}
.y1b{bottom:770.521192px;}
.y60{bottom:771.061192px;}
.y68{bottom:774.481190px;}
.y66{bottom:774.841190px;}
.y61{bottom:777.181189px;}
.y69{bottom:780.421188px;}
.y1a{bottom:787.801185px;}
.y56{bottom:790.681184px;}
.y65{bottom:792.121183px;}
.y19{bottom:805.081178px;}
.y18{bottom:822.361171px;}
.y5c{bottom:830.281168px;}
.y5a{bottom:837.481165px;}
.y17{bottom:839.641164px;}
.y16{bottom:856.741157px;}
.y14{bottom:874.021150px;}
.y15{bottom:880.861148px;}
.y62{bottom:882.661147px;}
.y5d{bottom:886.801145px;}
.y5e{bottom:890.041144px;}
.y13{bottom:891.301143px;}
.y6b{bottom:891.841143px;}
.y12{bottom:908.581137px;}
.y5b{bottom:911.461135px;}
.y11{bottom:925.861130px;}
.y59{bottom:940.621124px;}
.y10{bottom:943.141123px;}
.y67{bottom:959.341116px;}
.yf{bottom:960.241116px;}
.y64{bottom:961.501115px;}
.y63{bottom:962.041115px;}
.ye{bottom:977.521109px;}
.y5f{bottom:987.781105px;}
.yd{bottom:994.801102px;}
.y58{bottom:1004.521098px;}
.yc{bottom:1012.081095px;}
.y6a{bottom:1013.341095px;}
.yb{bottom:1029.361088px;}
.ya{bottom:1046.641081px;}
.y9{bottom:1053.481079px;}
.y8{bottom:1063.741075px;}
.y6{bottom:1081.021068px;}
.y7{bottom:1087.861065px;}
.y57{bottom:1089.661064px;}
.y5{bottom:1099.021060px;}
.y55{bottom:1099.561060px;}
.y4{bottom:1119.361052px;}
.y3{bottom:1140.061044px;}
.y3b{bottom:1143.121043px;}
.y2{bottom:1175.881030px;}
.y1{bottom:1194.961022px;}
.ha{height:9.348867px;}
.hb{height:12.680862px;}
.h11{height:18.983852px;}
.hd{height:19.078331px;}
.h9{height:20.085953px;}
.he{height:26.534073px;}
.h7{height:26.665319px;}
.h5{height:27.014755px;}
.h10{height:31.868076px;}
.hc{height:32.026065px;}
.hf{height:32.392654px;}
.h4{height:41.522679px;}
.h1{height:46.025138px;}
.h6{height:46.562677px;}
.h12{height:47.462692px;}
.h8{height:47.698451px;}
.h2{height:48.796855px;}
.h3{height:50.027324px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1e{left:148.679191px;}
.x26{left:151.207216px;}
.x22{left:156.959200px;}
.x2c{left:158.399937px;}
.x2b{left:161.639935px;}
.x1{left:169.739932px;}
.x27{left:171.360826px;}
.x23{left:175.679691px;}
.x2a{left:185.399291px;}
.x2{left:187.919925px;}
.x19{left:189.359924px;}
.x1a{left:204.839918px;}
.x1d{left:208.439917px;}
.x35{left:216.359913px;}
.x7{left:221.039912px;}
.x8{left:225.899910px;}
.x2f{left:231.479907px;}
.x38{left:232.739907px;}
.xa{left:238.859892px;}
.x2e{left:255.779898px;}
.x5{left:261.359895px;}
.x36{left:282.599887px;}
.x1b{left:295.199882px;}
.x20{left:298.078843px;}
.x1c{left:303.299879px;}
.x2d{left:308.339877px;}
.x3{left:331.379176px;}
.x24{left:333.179867px;}
.x25{left:341.279863px;}
.x33{left:361.979855px;}
.x37{left:367.559853px;}
.x30{left:370.619852px;}
.x9{left:385.019586px;}
.x31{left:394.559842px;}
.x28{left:395.999842px;}
.x34{left:400.499840px;}
.x29{left:404.099838px;}
.x32{left:428.759828px;}
.x21{left:435.598899px;}
.x3c{left:453.779818px;}
.x4{left:456.659118px;}
.x17{left:460.979816px;}
.x3f{left:463.319815px;}
.x18{left:469.079812px;}
.x15{left:480.419808px;}
.x16{left:488.519805px;}
.xd{left:491.579803px;}
.xe{left:496.439801px;}
.x3d{left:515.159794px;}
.x3a{left:537.839785px;}
.x3b{left:561.419775px;}
.x39{left:586.799765px;}
.x3e{left:599.939760px;}
.xb{left:637.379745px;}
.xc{left:642.239743px;}
.xf{left:643.499743px;}
.x6{left:644.579742px;}
.x10{left:648.539741px;}
.x1f{left:680.938969px;}
.x13{left:691.739723px;}
.x14{left:699.839720px;}
.x11{left:735.479706px;}
.x12{left:743.759702px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.479998pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.336457pt;}
.ls0{letter-spacing:0.501813pt;}
.ls3{letter-spacing:202.532428pt;}
.ws4{word-spacing:-16.168474pt;}
.wsa{word-spacing:-16.088558pt;}
.ws1{word-spacing:-13.279995pt;}
.ws0{word-spacing:-8.639997pt;}
.ws6{word-spacing:-6.698329pt;}
.ws7{word-spacing:-6.467034pt;}
.ws9{word-spacing:-6.435008pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:37.540282pt;}
.ws3{word-spacing:82.821865pt;}
.ws8{word-spacing:91.287397pt;}
._1a{margin-left:-5.208297pt;}
._18{margin-left:-3.790748pt;}
._17{margin-left:-2.393533pt;}
._1{margin-left:-1.065248pt;}
._0{width:1.042399pt;}
._b{width:2.482090pt;}
._5{width:3.385810pt;}
._c{width:4.435064pt;}
._d{width:5.339661pt;}
._10{width:6.631693pt;}
._f{width:7.935185pt;}
._8{width:8.891853pt;}
._9{width:9.891414pt;}
._a{width:10.947553pt;}
._e{width:11.894390pt;}
._7{width:17.313323pt;}
._6{width:18.987826pt;}
._15{width:20.008039pt;}
._3{width:20.986612pt;}
._4{width:21.905419pt;}
._12{width:24.503184pt;}
._11{width:26.329295pt;}
._19{width:45.519438pt;}
._2{width:100.069541pt;}
._16{width:108.652563pt;}
._1b{width:114.408605pt;}
._14{width:137.212092pt;}
._13{width:138.493346pt;}
.fs7{font-size:11.214716pt;}
.fs8{font-size:21.972471pt;}
.fsd{font-size:23.147511pt;}
.fsa{font-size:23.262711pt;}
.fs6{font-size:24.094710pt;}
.fsb{font-size:31.829747pt;}
.fs4{font-size:31.987187pt;}
.fs3{font-size:34.559986pt;}
.fsc{font-size:38.857584pt;}
.fs9{font-size:39.050224pt;}
.fs2{font-size:53.119979pt;}
.fse{font-size:57.872510pt;}
.fs5{font-size:58.159977pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:327.307869pt;}
.y39{bottom:342.667863pt;}
.y38{bottom:358.027857pt;}
.y37{bottom:373.387851pt;}
.y35{bottom:388.587845pt;}
.y36{bottom:394.667842pt;}
.y33{bottom:403.947838pt;}
.y34{bottom:410.027836pt;}
.y54{bottom:411.467835pt;}
.y32{bottom:417.067833pt;}
.y31{bottom:419.147832pt;}
.y53{bottom:426.827829pt;}
.y52{bottom:432.907827pt;}
.y30{bottom:435.627826pt;}
.y51{bottom:442.187823pt;}
.y2f{bottom:450.987820pt;}
.y50{bottom:457.547817pt;}
.y4f{bottom:463.627815pt;}
.y2d{bottom:466.187814pt;}
.y2e{bottom:472.267811pt;}
.y4e{bottom:472.747811pt;}
.y4d{bottom:478.827808pt;}
.y2b{bottom:482.507807pt;}
.y4c{bottom:488.107805pt;}
.y2c{bottom:488.587805pt;}
.y2a{bottom:498.987800pt;}
.y4b{bottom:503.467799pt;}
.y4a{bottom:509.547796pt;}
.y29{bottom:514.347794pt;}
.y49{bottom:518.827792pt;}
.y27{bottom:529.547788pt;}
.y48{bottom:534.187786pt;}
.y28{bottom:535.627786pt;}
.y47{bottom:540.267784pt;}
.y25{bottom:545.867782pt;}
.y46{bottom:549.547780pt;}
.y26{bottom:551.947779pt;}
.y24{bottom:562.347775pt;}
.y45{bottom:564.747774pt;}
.y23{bottom:577.707769pt;}
.y43{bottom:580.107768pt;}
.y44{bottom:586.187766pt;}
.y21{bottom:592.907763pt;}
.y42{bottom:595.467762pt;}
.y22{bottom:598.987760pt;}
.y20{bottom:608.267757pt;}
.y40{bottom:610.827756pt;}
.y41{bottom:616.907753pt;}
.y1f{bottom:623.627751pt;}
.y3f{bottom:626.187750pt;}
.y1e{bottom:638.987744pt;}
.y3e{bottom:641.547743pt;}
.y1d{bottom:654.347738pt;}
.y3d{bottom:656.747737pt;}
.y3c{bottom:668.747733pt;}
.y1c{bottom:669.707732pt;}
.y1b{bottom:684.907726pt;}
.y60{bottom:685.387726pt;}
.y68{bottom:688.427725pt;}
.y66{bottom:688.747725pt;}
.y61{bottom:690.827724pt;}
.y69{bottom:693.707723pt;}
.y1a{bottom:700.267720pt;}
.y56{bottom:702.827719pt;}
.y65{bottom:704.107718pt;}
.y19{bottom:715.627714pt;}
.y18{bottom:730.987708pt;}
.y5c{bottom:738.027705pt;}
.y5a{bottom:744.427702pt;}
.y17{bottom:746.347701pt;}
.y16{bottom:761.547695pt;}
.y14{bottom:776.907689pt;}
.y15{bottom:782.987687pt;}
.y62{bottom:784.587686pt;}
.y5d{bottom:788.267685pt;}
.y5e{bottom:791.147684pt;}
.y13{bottom:792.267683pt;}
.y6b{bottom:792.747683pt;}
.y12{bottom:807.627677pt;}
.y5b{bottom:810.187676pt;}
.y11{bottom:822.987671pt;}
.y59{bottom:836.107666pt;}
.y10{bottom:838.347665pt;}
.y67{bottom:852.747659pt;}
.yf{bottom:853.547659pt;}
.y64{bottom:854.667658pt;}
.y63{bottom:855.147658pt;}
.ye{bottom:868.907652pt;}
.y5f{bottom:878.027649pt;}
.yd{bottom:884.267646pt;}
.y58{bottom:892.907643pt;}
.yc{bottom:899.627640pt;}
.y6a{bottom:900.747640pt;}
.yb{bottom:914.987634pt;}
.ya{bottom:930.347628pt;}
.y9{bottom:936.427625pt;}
.y8{bottom:945.547622pt;}
.y6{bottom:960.907616pt;}
.y7{bottom:966.987613pt;}
.y57{bottom:968.587613pt;}
.y5{bottom:976.907609pt;}
.y55{bottom:977.387609pt;}
.y4{bottom:994.987602pt;}
.y3{bottom:1013.387595pt;}
.y3b{bottom:1016.107594pt;}
.y2{bottom:1045.227582pt;}
.y1{bottom:1062.187575pt;}
.ha{height:8.310104pt;}
.hb{height:11.271878pt;}
.h11{height:16.874535pt;}
.hd{height:16.958516pt;}
.h9{height:17.854180pt;}
.he{height:23.585843pt;}
.h7{height:23.702506pt;}
.h5{height:24.013115pt;}
.h10{height:28.327179pt;}
.hc{height:28.467614pt;}
.hf{height:28.793470pt;}
.h4{height:36.909048pt;}
.h1{height:40.911234pt;}
.h6{height:41.389046pt;}
.h12{height:42.189060pt;}
.h8{height:42.398623pt;}
.h2{height:43.374983pt;}
.h3{height:44.468732pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1e{left:132.159280pt;}
.x26{left:134.406414pt;}
.x22{left:139.519289pt;}
.x2c{left:140.799944pt;}
.x2b{left:143.679943pt;}
.x1{left:150.879940pt;}
.x27{left:152.320734pt;}
.x23{left:156.159726pt;}
.x2a{left:164.799369pt;}
.x2{left:167.039933pt;}
.x19{left:168.319933pt;}
.x1a{left:182.079927pt;}
.x1d{left:185.279926pt;}
.x35{left:192.319923pt;}
.x7{left:196.479921pt;}
.x8{left:200.799920pt;}
.x2f{left:205.759918pt;}
.x38{left:206.879917pt;}
.xa{left:212.319904pt;}
.x2e{left:227.359909pt;}
.x5{left:232.319907pt;}
.x36{left:251.199900pt;}
.x1b{left:262.399895pt;}
.x20{left:264.958972pt;}
.x1c{left:269.599892pt;}
.x2d{left:274.079890pt;}
.x3{left:294.559268pt;}
.x24{left:296.159882pt;}
.x25{left:303.359879pt;}
.x33{left:321.759871pt;}
.x37{left:326.719869pt;}
.x30{left:329.439868pt;}
.x9{left:342.239632pt;}
.x31{left:350.719860pt;}
.x28{left:351.999859pt;}
.x34{left:355.999858pt;}
.x29{left:359.199856pt;}
.x32{left:381.119848pt;}
.x21{left:387.199021pt;}
.x3c{left:403.359839pt;}
.x4{left:405.919216pt;}
.x17{left:409.759836pt;}
.x3f{left:411.839835pt;}
.x18{left:416.959833pt;}
.x15{left:427.039829pt;}
.x16{left:434.239826pt;}
.xd{left:436.959825pt;}
.xe{left:441.279823pt;}
.x3d{left:457.919817pt;}
.x3a{left:478.079809pt;}
.x3b{left:499.039800pt;}
.x39{left:521.599791pt;}
.x3e{left:533.279787pt;}
.xb{left:566.559773pt;}
.xc{left:570.879772pt;}
.xf{left:571.999771pt;}
.x6{left:572.959771pt;}
.x10{left:576.479769pt;}
.x1f{left:605.279084pt;}
.x13{left:614.879754pt;}
.x14{left:622.079751pt;}
.x11{left:653.759738pt;}
.x12{left:661.119736pt;}
}




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