
    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_05ed7d2e38e00916fb26f5ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.204000;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_7b78eaeb8784f41918a0f905.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.220000;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_d9ce135e01a9c2eb3d272c4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202000;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_3e6ef9442db80ccc1f929f48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024000;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_42dc132c3dc84da2254dc7c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_83aeee82013193efb894bec5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_38bd5533d9de4ed1962612d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1167e1962aa0a74dba1441ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.600000px;}
.ls4{letter-spacing:3.600000px;}
.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:-16.020000px;}
.ws3{word-spacing:-15.600000px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-3.600000px;}
.ws0{word-spacing:-0.600000px;}
.ws7{word-spacing:-0.300000px;}
.ws5{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.540000px;}
.ws2{word-spacing:0.600000px;}
._1{margin-left:-34.272000px;}
._2{margin-left:-32.880000px;}
._5{margin-left:-26.304000px;}
._3{margin-left:-1.200000px;}
._0{width:1.200000px;}
._4{width:65.220000px;}
.fc4{color:rgb(13,163,245);}
.fc3{color:rgb(134,209,250);}
.fc2{color:rgb(27,28,30);}
.fc1{color:transparent;}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:34.644750px;}
.y94{bottom:164.100150px;}
.yb9{bottom:169.108050px;}
.ye8{bottom:172.042650px;}
.y93{bottom:185.100150px;}
.yb8{bottom:190.108050px;}
.ye7{bottom:199.446600px;}
.y92{bottom:206.100150px;}
.yb7{bottom:211.108050px;}
.y43{bottom:213.615000px;}
.ye6{bottom:218.346600px;}
.y6b{bottom:224.480250px;}
.y91{bottom:227.100150px;}
.yb6{bottom:232.108050px;}
.y42{bottom:234.615000px;}
.ye5{bottom:237.246600px;}
.y90{bottom:248.100150px;}
.y41{bottom:255.615000px;}
.ye4{bottom:256.146600px;}
.y6a{bottom:257.480250px;}
.yb5{bottom:261.612000px;}
.y8f{bottom:269.100150px;}
.y40{bottom:276.615000px;}
.ye3{bottom:279.298500px;}
.yb4{bottom:282.612000px;}
.y28{bottom:287.195100px;}
.y8e{bottom:290.100150px;}
.y69{bottom:290.480250px;}
.y3f{bottom:301.867050px;}
.yc8{bottom:303.430200px;}
.yb3{bottom:303.612000px;}
.y27{bottom:308.195100px;}
.y8d{bottom:311.100150px;}
.y3e{bottom:322.867050px;}
.y68{bottom:323.480250px;}
.yb2{bottom:324.612000px;}
.y26{bottom:329.195100px;}
.y8c{bottom:332.100150px;}
.yc7{bottom:336.430200px;}
.y3d{bottom:343.867050px;}
.yb1{bottom:345.612000px;}
.y25{bottom:350.195100px;}
.y8b{bottom:353.100150px;}
.y67{bottom:356.480250px;}
.y3c{bottom:364.867050px;}
.yb0{bottom:366.612000px;}
.yc6{bottom:369.430200px;}
.y24{bottom:371.195100px;}
.y8a{bottom:374.100150px;}
.yaf{bottom:387.612000px;}
.y3b{bottom:390.118950px;}
.y23{bottom:392.195100px;}
.y89{bottom:395.100150px;}
.yc5{bottom:402.430200px;}
.yae{bottom:408.612000px;}
.y3a{bottom:411.118950px;}
.y22{bottom:413.195100px;}
.y88{bottom:416.100150px;}
.yad{bottom:429.612000px;}
.y39{bottom:432.118950px;}
.y21{bottom:434.195100px;}
.yc4{bottom:435.430200px;}
.y87{bottom:437.100150px;}
.ye1{bottom:441.702450px;}
.yac{bottom:450.612000px;}
.y38{bottom:453.118950px;}
.y20{bottom:455.195100px;}
.y86{bottom:458.100150px;}
.ye0{bottom:462.702450px;}
.yab{bottom:471.612000px;}
.y1f{bottom:476.195100px;}
.y37{bottom:478.371000px;}
.y85{bottom:479.100150px;}
.y7{bottom:489.297150px;}
.ydf{bottom:492.206400px;}
.yaa{bottom:492.612000px;}
.y1e{bottom:497.195100px;}
.y36{bottom:499.371000px;}
.y84{bottom:500.100150px;}
.yde{bottom:513.206400px;}
.ya9{bottom:513.612000px;}
.y6{bottom:518.097150px;}
.y1d{bottom:518.195100px;}
.y35{bottom:520.371000px;}
.y83{bottom:529.604100px;}
.ydd{bottom:534.206400px;}
.ya8{bottom:534.612000px;}
.y1c{bottom:539.195100px;}
.y34{bottom:541.371000px;}
.yc3{bottom:541.604100px;}
.y5{bottom:546.897150px;}
.y82{bottom:553.604100px;}
.ya7{bottom:555.612000px;}
.y1b{bottom:560.195100px;}
.y33{bottom:562.371000px;}
.yc2{bottom:562.604100px;}
.ydc{bottom:563.710350px;}
.y4{bottom:575.697150px;}
.ya6{bottom:576.612000px;}
.y81{bottom:577.604100px;}
.y1a{bottom:581.195100px;}
.yc1{bottom:583.604100px;}
.ydb{bottom:584.710350px;}
.y32{bottom:587.622900px;}
.y9a{bottom:589.108050px;}
.ya5{bottom:597.612000px;}
.y5b{bottom:600.612000px;}
.y19{bottom:602.195100px;}
.yc0{bottom:604.604100px;}
.yda{bottom:605.710350px;}
.y31{bottom:608.622900px;}
.y99{bottom:610.108050px;}
.y80{bottom:618.612000px;}
.y5a{bottom:621.612000px;}
.y18{bottom:623.195100px;}
.yd9{bottom:626.710350px;}
.y30{bottom:629.622900px;}
.y3{bottom:630.009000px;}
.y98{bottom:631.108050px;}
.ybf{bottom:634.108050px;}
.y7f{bottom:639.612000px;}
.y59{bottom:642.612000px;}
.y17{bottom:644.195100px;}
.yd8{bottom:647.710350px;}
.y2f{bottom:650.622900px;}
.y97{bottom:652.108050px;}
.ybe{bottom:655.108050px;}
.y7e{bottom:660.612000px;}
.y58{bottom:663.612000px;}
.y16{bottom:665.195100px;}
.ya4{bottom:669.115950px;}
.y96{bottom:673.108050px;}
.y2{bottom:673.209000px;}
.y2e{bottom:675.874950px;}
.ybd{bottom:676.108050px;}
.yd7{bottom:677.214150px;}
.y7d{bottom:681.612000px;}
.y57{bottom:684.612000px;}
.y15{bottom:686.195100px;}
.ya3{bottom:690.115950px;}
.y2d{bottom:696.874950px;}
.y66{bottom:697.108050px;}
.yd6{bottom:698.214150px;}
.y7c{bottom:702.612000px;}
.y56{bottom:705.612000px;}
.y14{bottom:707.195100px;}
.ya2{bottom:711.115950px;}
.y2c{bottom:717.874950px;}
.y65{bottom:718.108050px;}
.yd5{bottom:719.214150px;}
.y7b{bottom:723.612000px;}
.ybc{bottom:726.612000px;}
.ye9{bottom:727.086600px;}
.y13{bottom:728.195100px;}
.ya1{bottom:732.115950px;}
.y55{bottom:735.115950px;}
.y2b{bottom:738.874950px;}
.y64{bottom:739.108050px;}
.yd4{bottom:740.214150px;}
.y7a{bottom:744.612000px;}
.ybb{bottom:747.612000px;}
.y12{bottom:749.195100px;}
.ya0{bottom:753.115950px;}
.y54{bottom:756.115950px;}
.y2a{bottom:759.874950px;}
.y63{bottom:760.108050px;}
.y79{bottom:765.612000px;}
.yba{bottom:768.612000px;}
.yd3{bottom:769.718100px;}
.y11{bottom:770.195100px;}
.y9f{bottom:774.115950px;}
.y53{bottom:777.115950px;}
.y78{bottom:786.612000px;}
.y29{bottom:789.378900px;}
.y62{bottom:789.612000px;}
.yd2{bottom:790.718100px;}
.y10{bottom:791.195100px;}
.y9e{bottom:795.115950px;}
.y52{bottom:798.115950px;}
.y77{bottom:807.612000px;}
.y61{bottom:810.612000px;}
.yd1{bottom:811.718100px;}
.y9d{bottom:816.115950px;}
.y51{bottom:819.115950px;}
.y76{bottom:828.612000px;}
.y60{bottom:831.612000px;}
.yd0{bottom:832.718100px;}
.y9c{bottom:837.115950px;}
.y50{bottom:840.115950px;}
.y75{bottom:849.612000px;}
.y5f{bottom:852.612000px;}
.ycf{bottom:853.718100px;}
.y9b{bottom:858.115950px;}
.y4f{bottom:861.115950px;}
.y74{bottom:870.612000px;}
.y5e{bottom:873.612000px;}
.yce{bottom:874.718100px;}
.y95{bottom:879.115950px;}
.y4e{bottom:882.115950px;}
.y5d{bottom:894.612000px;}
.ycd{bottom:895.718100px;}
.y73{bottom:900.115950px;}
.y4d{bottom:903.115950px;}
.yf{bottom:911.988600px;}
.y5c{bottom:915.612000px;}
.ycc{bottom:916.718100px;}
.y72{bottom:921.115950px;}
.y4c{bottom:924.115950px;}
.ye{bottom:929.988600px;}
.ycb{bottom:937.718100px;}
.y71{bottom:942.115950px;}
.y4b{bottom:945.115950px;}
.yd{bottom:947.988600px;}
.yca{bottom:958.718100px;}
.y70{bottom:963.115950px;}
.yc{bottom:965.988600px;}
.y4a{bottom:966.115950px;}
.yc9{bottom:979.718100px;}
.y6f{bottom:984.115950px;}
.y49{bottom:987.115950px;}
.y6e{bottom:1005.115950px;}
.y48{bottom:1008.115950px;}
.yb{bottom:1009.500300px;}
.y6d{bottom:1026.115950px;}
.ye2{bottom:1027.038150px;}
.y47{bottom:1029.115950px;}
.ya{bottom:1048.500300px;}
.y46{bottom:1050.115950px;}
.y6c{bottom:1055.619900px;}
.y45{bottom:1079.619900px;}
.y9{bottom:1095.868800px;}
.y44{bottom:1103.619900px;}
.y8{bottom:1122.868800px;}
.ha{height:45.840000px;}
.h8{height:46.200000px;}
.hf{height:50.436000px;}
.he{height:51.138000px;}
.h2{height:56.040000px;}
.hb{height:56.448000px;}
.hc{height:56.820000px;}
.h6{height:64.176000px;}
.h9{height:68.184000px;}
.h5{height:79.548000px;}
.hd{height:88.800000px;}
.h4{height:89.664000px;}
.h7{height:112.080000px;}
.h3{height:136.368000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:45.375300px;}
.x3{left:62.547000px;}
.x6{left:63.779550px;}
.x9{left:66.413400px;}
.xa{left:71.987400px;}
.x4{left:106.299150px;}
.x5{left:114.803100px;}
.x1{left:116.091600px;}
.xe{left:127.559100px;}
.xf{left:196.452900px;}
.xc{left:392.598450px;}
.xd{left:400.806300px;}
.xb{left:461.338650px;}
.x7{left:488.976450px;}
.x8{left:515.976450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls4{letter-spacing:3.200000pt;}
.ws4{word-spacing:-14.240000pt;}
.ws3{word-spacing:-13.866667pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-3.200000pt;}
.ws0{word-spacing:-0.533333pt;}
.ws7{word-spacing:-0.266667pt;}
.ws5{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.480000pt;}
.ws2{word-spacing:0.533333pt;}
._1{margin-left:-30.464000pt;}
._2{margin-left:-29.226667pt;}
._5{margin-left:-23.381333pt;}
._3{margin-left:-1.066667pt;}
._0{width:1.066667pt;}
._4{width:57.973333pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:30.795333pt;}
.y94{bottom:145.866800pt;}
.yb9{bottom:150.318267pt;}
.ye8{bottom:152.926800pt;}
.y93{bottom:164.533467pt;}
.yb8{bottom:168.984933pt;}
.ye7{bottom:177.285867pt;}
.y92{bottom:183.200133pt;}
.yb7{bottom:187.651600pt;}
.y43{bottom:189.880000pt;}
.ye6{bottom:194.085867pt;}
.y6b{bottom:199.538000pt;}
.y91{bottom:201.866800pt;}
.yb6{bottom:206.318267pt;}
.y42{bottom:208.546667pt;}
.ye5{bottom:210.885867pt;}
.y90{bottom:220.533467pt;}
.y41{bottom:227.213333pt;}
.ye4{bottom:227.685867pt;}
.y6a{bottom:228.871333pt;}
.yb5{bottom:232.544000pt;}
.y8f{bottom:239.200133pt;}
.y40{bottom:245.880000pt;}
.ye3{bottom:248.265333pt;}
.yb4{bottom:251.210667pt;}
.y28{bottom:255.284533pt;}
.y8e{bottom:257.866800pt;}
.y69{bottom:258.204667pt;}
.y3f{bottom:268.326267pt;}
.yc8{bottom:269.715733pt;}
.yb3{bottom:269.877333pt;}
.y27{bottom:273.951200pt;}
.y8d{bottom:276.533467pt;}
.y3e{bottom:286.992933pt;}
.y68{bottom:287.538000pt;}
.yb2{bottom:288.544000pt;}
.y26{bottom:292.617867pt;}
.y8c{bottom:295.200133pt;}
.yc7{bottom:299.049067pt;}
.y3d{bottom:305.659600pt;}
.yb1{bottom:307.210667pt;}
.y25{bottom:311.284533pt;}
.y8b{bottom:313.866800pt;}
.y67{bottom:316.871333pt;}
.y3c{bottom:324.326267pt;}
.yb0{bottom:325.877333pt;}
.yc6{bottom:328.382400pt;}
.y24{bottom:329.951200pt;}
.y8a{bottom:332.533467pt;}
.yaf{bottom:344.544000pt;}
.y3b{bottom:346.772400pt;}
.y23{bottom:348.617867pt;}
.y89{bottom:351.200133pt;}
.yc5{bottom:357.715733pt;}
.yae{bottom:363.210667pt;}
.y3a{bottom:365.439067pt;}
.y22{bottom:367.284533pt;}
.y88{bottom:369.866800pt;}
.yad{bottom:381.877333pt;}
.y39{bottom:384.105733pt;}
.y21{bottom:385.951200pt;}
.yc4{bottom:387.049067pt;}
.y87{bottom:388.533467pt;}
.ye1{bottom:392.624400pt;}
.yac{bottom:400.544000pt;}
.y38{bottom:402.772400pt;}
.y20{bottom:404.617867pt;}
.y86{bottom:407.200133pt;}
.ye0{bottom:411.291067pt;}
.yab{bottom:419.210667pt;}
.y1f{bottom:423.284533pt;}
.y37{bottom:425.218667pt;}
.y85{bottom:425.866800pt;}
.y7{bottom:434.930800pt;}
.ydf{bottom:437.516800pt;}
.yaa{bottom:437.877333pt;}
.y1e{bottom:441.951200pt;}
.y36{bottom:443.885333pt;}
.y84{bottom:444.533467pt;}
.yde{bottom:456.183467pt;}
.ya9{bottom:456.544000pt;}
.y6{bottom:460.530800pt;}
.y1d{bottom:460.617867pt;}
.y35{bottom:462.552000pt;}
.y83{bottom:470.759200pt;}
.ydd{bottom:474.850133pt;}
.ya8{bottom:475.210667pt;}
.y1c{bottom:479.284533pt;}
.y34{bottom:481.218667pt;}
.yc3{bottom:481.425867pt;}
.y5{bottom:486.130800pt;}
.y82{bottom:492.092533pt;}
.ya7{bottom:493.877333pt;}
.y1b{bottom:497.951200pt;}
.y33{bottom:499.885333pt;}
.yc2{bottom:500.092533pt;}
.ydc{bottom:501.075867pt;}
.y4{bottom:511.730800pt;}
.ya6{bottom:512.544000pt;}
.y81{bottom:513.425867pt;}
.y1a{bottom:516.617867pt;}
.yc1{bottom:518.759200pt;}
.ydb{bottom:519.742533pt;}
.y32{bottom:522.331467pt;}
.y9a{bottom:523.651600pt;}
.ya5{bottom:531.210667pt;}
.y5b{bottom:533.877333pt;}
.y19{bottom:535.284533pt;}
.yc0{bottom:537.425867pt;}
.yda{bottom:538.409200pt;}
.y31{bottom:540.998133pt;}
.y99{bottom:542.318267pt;}
.y80{bottom:549.877333pt;}
.y5a{bottom:552.544000pt;}
.y18{bottom:553.951200pt;}
.yd9{bottom:557.075867pt;}
.y30{bottom:559.664800pt;}
.y3{bottom:560.008000pt;}
.y98{bottom:560.984933pt;}
.ybf{bottom:563.651600pt;}
.y7f{bottom:568.544000pt;}
.y59{bottom:571.210667pt;}
.y17{bottom:572.617867pt;}
.yd8{bottom:575.742533pt;}
.y2f{bottom:578.331467pt;}
.y97{bottom:579.651600pt;}
.ybe{bottom:582.318267pt;}
.y7e{bottom:587.210667pt;}
.y58{bottom:589.877333pt;}
.y16{bottom:591.284533pt;}
.ya4{bottom:594.769733pt;}
.y96{bottom:598.318267pt;}
.y2{bottom:598.408000pt;}
.y2e{bottom:600.777733pt;}
.ybd{bottom:600.984933pt;}
.yd7{bottom:601.968133pt;}
.y7d{bottom:605.877333pt;}
.y57{bottom:608.544000pt;}
.y15{bottom:609.951200pt;}
.ya3{bottom:613.436400pt;}
.y2d{bottom:619.444400pt;}
.y66{bottom:619.651600pt;}
.yd6{bottom:620.634800pt;}
.y7c{bottom:624.544000pt;}
.y56{bottom:627.210667pt;}
.y14{bottom:628.617867pt;}
.ya2{bottom:632.103067pt;}
.y2c{bottom:638.111067pt;}
.y65{bottom:638.318267pt;}
.yd5{bottom:639.301467pt;}
.y7b{bottom:643.210667pt;}
.ybc{bottom:645.877333pt;}
.ye9{bottom:646.299200pt;}
.y13{bottom:647.284533pt;}
.ya1{bottom:650.769733pt;}
.y55{bottom:653.436400pt;}
.y2b{bottom:656.777733pt;}
.y64{bottom:656.984933pt;}
.yd4{bottom:657.968133pt;}
.y7a{bottom:661.877333pt;}
.ybb{bottom:664.544000pt;}
.y12{bottom:665.951200pt;}
.ya0{bottom:669.436400pt;}
.y54{bottom:672.103067pt;}
.y2a{bottom:675.444400pt;}
.y63{bottom:675.651600pt;}
.y79{bottom:680.544000pt;}
.yba{bottom:683.210667pt;}
.yd3{bottom:684.193867pt;}
.y11{bottom:684.617867pt;}
.y9f{bottom:688.103067pt;}
.y53{bottom:690.769733pt;}
.y78{bottom:699.210667pt;}
.y29{bottom:701.670133pt;}
.y62{bottom:701.877333pt;}
.yd2{bottom:702.860533pt;}
.y10{bottom:703.284533pt;}
.y9e{bottom:706.769733pt;}
.y52{bottom:709.436400pt;}
.y77{bottom:717.877333pt;}
.y61{bottom:720.544000pt;}
.yd1{bottom:721.527200pt;}
.y9d{bottom:725.436400pt;}
.y51{bottom:728.103067pt;}
.y76{bottom:736.544000pt;}
.y60{bottom:739.210667pt;}
.yd0{bottom:740.193867pt;}
.y9c{bottom:744.103067pt;}
.y50{bottom:746.769733pt;}
.y75{bottom:755.210667pt;}
.y5f{bottom:757.877333pt;}
.ycf{bottom:758.860533pt;}
.y9b{bottom:762.769733pt;}
.y4f{bottom:765.436400pt;}
.y74{bottom:773.877333pt;}
.y5e{bottom:776.544000pt;}
.yce{bottom:777.527200pt;}
.y95{bottom:781.436400pt;}
.y4e{bottom:784.103067pt;}
.y5d{bottom:795.210667pt;}
.ycd{bottom:796.193867pt;}
.y73{bottom:800.103067pt;}
.y4d{bottom:802.769733pt;}
.yf{bottom:810.656533pt;}
.y5c{bottom:813.877333pt;}
.ycc{bottom:814.860533pt;}
.y72{bottom:818.769733pt;}
.y4c{bottom:821.436400pt;}
.ye{bottom:826.656533pt;}
.ycb{bottom:833.527200pt;}
.y71{bottom:837.436400pt;}
.y4b{bottom:840.103067pt;}
.yd{bottom:842.656533pt;}
.yca{bottom:852.193867pt;}
.y70{bottom:856.103067pt;}
.yc{bottom:858.656533pt;}
.y4a{bottom:858.769733pt;}
.yc9{bottom:870.860533pt;}
.y6f{bottom:874.769733pt;}
.y49{bottom:877.436400pt;}
.y6e{bottom:893.436400pt;}
.y48{bottom:896.103067pt;}
.yb{bottom:897.333600pt;}
.y6d{bottom:912.103067pt;}
.ye2{bottom:912.922800pt;}
.y47{bottom:914.769733pt;}
.ya{bottom:932.000267pt;}
.y46{bottom:933.436400pt;}
.y6c{bottom:938.328800pt;}
.y45{bottom:959.662133pt;}
.y9{bottom:974.105600pt;}
.y44{bottom:980.995467pt;}
.y8{bottom:998.105600pt;}
.ha{height:40.746667pt;}
.h8{height:41.066667pt;}
.hf{height:44.832000pt;}
.he{height:45.456000pt;}
.h2{height:49.813333pt;}
.hb{height:50.176000pt;}
.hc{height:50.506667pt;}
.h6{height:57.045333pt;}
.h9{height:60.608000pt;}
.h5{height:70.709333pt;}
.hd{height:78.933333pt;}
.h4{height:79.701333pt;}
.h7{height:99.626667pt;}
.h3{height:121.216000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:40.333600pt;}
.x3{left:55.597333pt;}
.x6{left:56.692933pt;}
.x9{left:59.034133pt;}
.xa{left:63.988800pt;}
.x4{left:94.488133pt;}
.x5{left:102.047200pt;}
.x1{left:103.192533pt;}
.xe{left:113.385867pt;}
.xf{left:174.624800pt;}
.xc{left:348.976400pt;}
.xd{left:356.272267pt;}
.xb{left:410.078800pt;}
.x7{left:434.645733pt;}
.x8{left:458.645733pt;}
}




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