
    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_1ae66a564a5c09147d9ef65f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_9fe4b52656245a867f6a5819.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_49a71ba30ff9f463b048cb39.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_935a92908f27fd2c56b0fb41.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_8071a389469cc62f36fbabeb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_46aa2592b0fccb83abca138c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_c42a2423e93b1b5b54f67dca.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_6b81ac7016d28b901eeb38bf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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:ff9;src:url('chunks/assets/font_1f9edb67184c16b24e25d517.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v2{vertical-align:-21.600000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:30.240000px;}
.ls14{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.422000px;}
.ls10{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.507000px;}
.lse{letter-spacing:-0.486600px;}
.lsd{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.020160px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.449400px;}
.lsf{letter-spacing:0.466800px;}
.lsa{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:2.171520px;}
.ls3{letter-spacing:10.800000px;}
.ls1{letter-spacing:12.240000px;}
.ls13{letter-spacing:16.306560px;}
.ls12{letter-spacing:46.558560px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.606600px;}
.wsd{word-spacing:-15.569400px;}
.ws4{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.099840px;}
.wsa{word-spacing:-14.653200px;}
.wsc{word-spacing:-14.633400px;}
.ws9{word-spacing:-14.613000px;}
.ws8{word-spacing:-14.184000px;}
.wse{word-spacing:-13.680000px;}
.ws0{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws2{word-spacing:-8.786880px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-3.398400px;}
._0{margin-left:-2.016000px;}
._4{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.016000px;}
._3{width:3.144000px;}
._c{width:4.144320px;}
._9{width:5.156640px;}
._a{width:6.402240px;}
._d{width:8.326080px;}
._7{width:9.862080px;}
._6{width:11.283360px;}
._5{width:12.384480px;}
._b{width:13.696320px;}
._10{width:16.220160px;}
._f{width:17.357760px;}
._e{width:18.728640px;}
._11{width:20.039040px;}
._12{width:21.107520px;}
._16{width:22.539840px;}
._15{width:23.863200px;}
._14{width:26.490240px;}
._13{width:28.465920px;}
._19{width:30.119040px;}
._17{width:31.409280px;}
._18{width:33.344640px;}
.fc6{color:rgb(0,29,53);}
.fc4{color:rgb(255,0,0);}
.fc5{color:rgb(14,16,26);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.600000px;}
.y89{bottom:3.630000px;}
.y5{bottom:57.996000px;}
.y4{bottom:78.156000px;}
.y82{bottom:111.636000px;}
.y29{bottom:114.516000px;}
.yc8{bottom:118.476000px;}
.y81{bottom:137.592000px;}
.y28{bottom:140.472000px;}
.yc7{bottom:144.432000px;}
.y4d{bottom:146.952000px;}
.y6c{bottom:149.832000px;}
.yab{bottom:153.435000px;}
.y80{bottom:163.515000px;}
.y27{bottom:166.395000px;}
.yc6{bottom:170.355000px;}
.y4c{bottom:172.875000px;}
.y6b{bottom:175.395000px;}
.yaa{bottom:179.355000px;}
.y7f{bottom:189.435000px;}
.y26{bottom:192.315000px;}
.yc5{bottom:196.275000px;}
.y4b{bottom:198.795000px;}
.y6a{bottom:201.315000px;}
.y7e{bottom:203.835000px;}
.ya9{bottom:205.275000px;}
.y25{bottom:218.235000px;}
.y7d{bottom:221.835000px;}
.yc4{bottom:222.195000px;}
.y4a{bottom:224.715000px;}
.y69{bottom:227.235000px;}
.ya8{bottom:231.195000px;}
.y7c{bottom:239.835000px;}
.y24{bottom:244.155000px;}
.yc3{bottom:248.115000px;}
.y49{bottom:250.665000px;}
.y68{bottom:253.185000px;}
.ya7{bottom:257.145000px;}
.y7b{bottom:257.865000px;}
.y23{bottom:270.105000px;}
.yc2{bottom:274.065000px;}
.y7a{bottom:275.865000px;}
.y48{bottom:276.585000px;}
.y67{bottom:279.105000px;}
.ya6{bottom:282.705000px;}
.y79{bottom:293.865000px;}
.y22{bottom:296.025000px;}
.yc1{bottom:299.625000px;}
.y47{bottom:302.505000px;}
.y66{bottom:305.025000px;}
.ya5{bottom:308.625000px;}
.y78{bottom:311.865000px;}
.y21{bottom:322.665000px;}
.yc0{bottom:325.545000px;}
.y46{bottom:328.065000px;}
.y77{bottom:329.865000px;}
.y65{bottom:330.945000px;}
.ya4{bottom:334.545000px;}
.y76{bottom:347.865000px;}
.y20{bottom:350.025000px;}
.ybf{bottom:351.465000px;}
.y45{bottom:353.985000px;}
.y64{bottom:356.505000px;}
.ya3{bottom:361.185000px;}
.y75{bottom:365.865000px;}
.y1f{bottom:376.710000px;}
.ybe{bottom:377.430000px;}
.y44{bottom:379.950000px;}
.y63{bottom:382.470000px;}
.y74{bottom:383.910000px;}
.ya2{bottom:388.950000px;}
.y73{bottom:401.910000px;}
.ya1{bottom:403.350000px;}
.y1e{bottom:404.430000px;}
.y43{bottom:405.870000px;}
.y62{bottom:408.390000px;}
.y72{bottom:419.910000px;}
.ya0{bottom:421.350000px;}
.ybd{bottom:429.270000px;}
.y1d{bottom:430.350000px;}
.y42{bottom:431.790000px;}
.y61{bottom:433.950000px;}
.y71{bottom:437.910000px;}
.y9f{bottom:439.350000px;}
.ybc{bottom:455.190000px;}
.y6f{bottom:455.910000px;}
.y1c{bottom:456.270000px;}
.y9e{bottom:457.350000px;}
.y41{bottom:457.710000px;}
.y60{bottom:460.230000px;}
.y9d{bottom:475.350000px;}
.ybb{bottom:480.750000px;}
.y1b{bottom:482.190000px;}
.y40{bottom:483.630000px;}
.y5f{bottom:486.150000px;}
.y9c{bottom:493.350000px;}
.yba{bottom:506.700000px;}
.y1a{bottom:508.140000px;}
.y3f{bottom:509.580000px;}
.y9b{bottom:511.380000px;}
.y5e{bottom:512.100000px;}
.y9a{bottom:529.380000px;}
.yb9{bottom:532.620000px;}
.y19{bottom:534.060000px;}
.y3e{bottom:535.140000px;}
.y5d{bottom:538.020000px;}
.y99{bottom:547.380000px;}
.yb8{bottom:558.540000px;}
.y18{bottom:559.980000px;}
.y3d{bottom:561.060000px;}
.y5c{bottom:563.580000px;}
.y98{bottom:565.380000px;}
.y97{bottom:583.380000px;}
.yb7{bottom:584.460000px;}
.y17{bottom:585.540000px;}
.y3c{bottom:586.980000px;}
.y5b{bottom:589.500000px;}
.y96{bottom:601.380000px;}
.yb6{bottom:610.380000px;}
.y16{bottom:612.180000px;}
.y3b{bottom:612.900000px;}
.y5a{bottom:615.420000px;}
.y95{bottom:619.380000px;}
.yb5{bottom:636.330000px;}
.y94{bottom:637.410000px;}
.y3a{bottom:638.850000px;}
.y15{bottom:639.930000px;}
.y59{bottom:641.370000px;}
.y93{bottom:655.410000px;}
.yb4{bottom:662.250000px;}
.y39{bottom:664.770000px;}
.y58{bottom:667.290000px;}
.y14{bottom:669.810000px;}
.y92{bottom:685.650000px;}
.yb3{bottom:687.810000px;}
.y38{bottom:690.690000px;}
.y57{bottom:693.210000px;}
.y13{bottom:695.730000px;}
.y91{bottom:711.210000px;}
.yb2{bottom:713.730000px;}
.y37{bottom:716.250000px;}
.y56{bottom:719.130000px;}
.y12{bottom:721.290000px;}
.y90{bottom:737.490000px;}
.yb1{bottom:739.650000px;}
.y36{bottom:742.170000px;}
.y55{bottom:745.050000px;}
.y11{bottom:753.735000px;}
.y8f{bottom:763.455000px;}
.yb0{bottom:766.335000px;}
.y35{bottom:768.135000px;}
.y54{bottom:770.655000px;}
.y10{bottom:774.975000px;}
.y8e{bottom:789.015000px;}
.y34{bottom:794.055000px;}
.y53{bottom:796.575000px;}
.yf{bottom:800.535000px;}
.y8d{bottom:803.775000px;}
.y33{bottom:819.975000px;}
.y8c{bottom:821.775000px;}
.y52{bottom:822.495000px;}
.ye{bottom:826.455000px;}
.y8b{bottom:839.775000px;}
.y32{bottom:845.895000px;}
.y6e{bottom:848.055000px;}
.y51{bottom:848.415000px;}
.y8a{bottom:857.775000px;}
.yd{bottom:861.735000px;}
.yaf{bottom:871.455000px;}
.y31{bottom:871.815000px;}
.yc9{bottom:872.175000px;}
.y50{bottom:873.975000px;}
.y6d{bottom:874.335000px;}
.y88{bottom:875.775000px;}
.yc{bottom:887.325000px;}
.y87{bottom:893.445000px;}
.y30{bottom:897.765000px;}
.y4f{bottom:900.285000px;}
.y86{bottom:911.445000px;}
.yb{bottom:913.245000px;}
.yae{bottom:923.325000px;}
.y2f{bottom:924.405000px;}
.y4e{bottom:926.205000px;}
.y85{bottom:929.445000px;}
.ya{bottom:939.165000px;}
.y84{bottom:947.445000px;}
.yad{bottom:948.885000px;}
.y2e{bottom:951.765000px;}
.y9{bottom:960.405000px;}
.yac{bottom:975.885000px;}
.y2d{bottom:977.685000px;}
.y8{bottom:987.765000px;}
.y83{bottom:1003.245000px;}
.y2c{bottom:1003.650000px;}
.y7{bottom:1017.690000px;}
.y2b{bottom:1029.570000px;}
.y6{bottom:1051.170000px;}
.y2a{bottom:1055.490000px;}
.y3{bottom:1073.490000px;}
.y2{bottom:1095.090000px;}
.y1{bottom:1117.410000px;}
.hf{height:16.920000px;}
.he{height:16.956000px;}
.hc{height:17.280000px;}
.hd{height:17.316000px;}
.h7{height:37.577813px;}
.h6{height:38.158594px;}
.hb{height:42.229688px;}
.h2{height:53.302500px;}
.h8{height:59.357813px;}
.ha{height:59.758594px;}
.h4{height:60.952500px;}
.h10{height:62.163910px;}
.h9{height:66.757500px;}
.h5{height:72.326250px;}
.h1{height:72.562500px;}
.h3{height:78.367500px;}
.h0{height:1188.000000px;}
.wa{width:38.916000px;}
.w4{width:50.400000px;}
.w6{width:52.596000px;}
.w2{width:52.956000px;}
.w7{width:53.640000px;}
.w3{width:85.356000px;}
.w5{width:85.716000px;}
.w8{width:99.396000px;}
.w9{width:163.830000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.920000px;}
.x1{left:108.035986px;}
.xf{left:135.035986px;}
.x2{left:136.115986px;}
.x10{left:162.074986px;}
.x9{left:312.945000px;}
.x4{left:321.225000px;}
.xd{left:357.270000px;}
.xa{left:365.910000px;}
.x6{left:374.550000px;}
.x3{left:429.269986px;}
.xb{left:451.980000px;}
.x7{left:460.620000px;}
.xc{left:505.980000px;}
.x8{left:511.380000px;}
.xe{left:521.820000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:26.880000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.264000pt;}
.ls10{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.450667pt;}
.lse{letter-spacing:-0.432533pt;}
.lsd{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.017920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.399467pt;}
.lsf{letter-spacing:0.414933pt;}
.lsa{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.930240pt;}
.ls3{letter-spacing:9.600000pt;}
.ls1{letter-spacing:10.880000pt;}
.ls13{letter-spacing:14.494720pt;}
.ls12{letter-spacing:41.385387pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.872533pt;}
.wsd{word-spacing:-13.839467pt;}
.ws4{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.422080pt;}
.wsa{word-spacing:-13.025067pt;}
.wsc{word-spacing:-13.007467pt;}
.ws9{word-spacing:-12.989333pt;}
.ws8{word-spacing:-12.608000pt;}
.wse{word-spacing:-12.160000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-3.020800pt;}
._0{margin-left:-1.792000pt;}
._4{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.792000pt;}
._3{width:2.794667pt;}
._c{width:3.683840pt;}
._9{width:4.583680pt;}
._a{width:5.690880pt;}
._d{width:7.400960pt;}
._7{width:8.766293pt;}
._6{width:10.029653pt;}
._5{width:11.008427pt;}
._b{width:12.174507pt;}
._10{width:14.417920pt;}
._f{width:15.429120pt;}
._e{width:16.647680pt;}
._11{width:17.812480pt;}
._12{width:18.762240pt;}
._16{width:20.035413pt;}
._15{width:21.211733pt;}
._14{width:23.546880pt;}
._13{width:25.303040pt;}
._19{width:26.772480pt;}
._17{width:27.919360pt;}
._18{width:29.639680pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:3.200000pt;}
.y89{bottom:3.226667pt;}
.y5{bottom:51.552000pt;}
.y4{bottom:69.472000pt;}
.y82{bottom:99.232000pt;}
.y29{bottom:101.792000pt;}
.yc8{bottom:105.312000pt;}
.y81{bottom:122.304000pt;}
.y28{bottom:124.864000pt;}
.yc7{bottom:128.384000pt;}
.y4d{bottom:130.624000pt;}
.y6c{bottom:133.184000pt;}
.yab{bottom:136.386667pt;}
.y80{bottom:145.346667pt;}
.y27{bottom:147.906667pt;}
.yc6{bottom:151.426667pt;}
.y4c{bottom:153.666667pt;}
.y6b{bottom:155.906667pt;}
.yaa{bottom:159.426667pt;}
.y7f{bottom:168.386667pt;}
.y26{bottom:170.946667pt;}
.yc5{bottom:174.466667pt;}
.y4b{bottom:176.706667pt;}
.y6a{bottom:178.946667pt;}
.y7e{bottom:181.186667pt;}
.ya9{bottom:182.466667pt;}
.y25{bottom:193.986667pt;}
.y7d{bottom:197.186667pt;}
.yc4{bottom:197.506667pt;}
.y4a{bottom:199.746667pt;}
.y69{bottom:201.986667pt;}
.ya8{bottom:205.506667pt;}
.y7c{bottom:213.186667pt;}
.y24{bottom:217.026667pt;}
.yc3{bottom:220.546667pt;}
.y49{bottom:222.813333pt;}
.y68{bottom:225.053333pt;}
.ya7{bottom:228.573333pt;}
.y7b{bottom:229.213333pt;}
.y23{bottom:240.093333pt;}
.yc2{bottom:243.613333pt;}
.y7a{bottom:245.213333pt;}
.y48{bottom:245.853333pt;}
.y67{bottom:248.093333pt;}
.ya6{bottom:251.293333pt;}
.y79{bottom:261.213333pt;}
.y22{bottom:263.133333pt;}
.yc1{bottom:266.333333pt;}
.y47{bottom:268.893333pt;}
.y66{bottom:271.133333pt;}
.ya5{bottom:274.333333pt;}
.y78{bottom:277.213333pt;}
.y21{bottom:286.813333pt;}
.yc0{bottom:289.373333pt;}
.y46{bottom:291.613333pt;}
.y77{bottom:293.213333pt;}
.y65{bottom:294.173333pt;}
.ya4{bottom:297.373333pt;}
.y76{bottom:309.213333pt;}
.y20{bottom:311.133333pt;}
.ybf{bottom:312.413333pt;}
.y45{bottom:314.653333pt;}
.y64{bottom:316.893333pt;}
.ya3{bottom:321.053333pt;}
.y75{bottom:325.213333pt;}
.y1f{bottom:334.853333pt;}
.ybe{bottom:335.493333pt;}
.y44{bottom:337.733333pt;}
.y63{bottom:339.973333pt;}
.y74{bottom:341.253333pt;}
.ya2{bottom:345.733333pt;}
.y73{bottom:357.253333pt;}
.ya1{bottom:358.533333pt;}
.y1e{bottom:359.493333pt;}
.y43{bottom:360.773333pt;}
.y62{bottom:363.013333pt;}
.y72{bottom:373.253333pt;}
.ya0{bottom:374.533333pt;}
.ybd{bottom:381.573333pt;}
.y1d{bottom:382.533333pt;}
.y42{bottom:383.813333pt;}
.y61{bottom:385.733333pt;}
.y71{bottom:389.253333pt;}
.y9f{bottom:390.533333pt;}
.ybc{bottom:404.613333pt;}
.y6f{bottom:405.253333pt;}
.y1c{bottom:405.573333pt;}
.y9e{bottom:406.533333pt;}
.y41{bottom:406.853333pt;}
.y60{bottom:409.093333pt;}
.y9d{bottom:422.533333pt;}
.ybb{bottom:427.333333pt;}
.y1b{bottom:428.613333pt;}
.y40{bottom:429.893333pt;}
.y5f{bottom:432.133333pt;}
.y9c{bottom:438.533333pt;}
.yba{bottom:450.400000pt;}
.y1a{bottom:451.680000pt;}
.y3f{bottom:452.960000pt;}
.y9b{bottom:454.560000pt;}
.y5e{bottom:455.200000pt;}
.y9a{bottom:470.560000pt;}
.yb9{bottom:473.440000pt;}
.y19{bottom:474.720000pt;}
.y3e{bottom:475.680000pt;}
.y5d{bottom:478.240000pt;}
.y99{bottom:486.560000pt;}
.yb8{bottom:496.480000pt;}
.y18{bottom:497.760000pt;}
.y3d{bottom:498.720000pt;}
.y5c{bottom:500.960000pt;}
.y98{bottom:502.560000pt;}
.y97{bottom:518.560000pt;}
.yb7{bottom:519.520000pt;}
.y17{bottom:520.480000pt;}
.y3c{bottom:521.760000pt;}
.y5b{bottom:524.000000pt;}
.y96{bottom:534.560000pt;}
.yb6{bottom:542.560000pt;}
.y16{bottom:544.160000pt;}
.y3b{bottom:544.800000pt;}
.y5a{bottom:547.040000pt;}
.y95{bottom:550.560000pt;}
.yb5{bottom:565.626667pt;}
.y94{bottom:566.586667pt;}
.y3a{bottom:567.866667pt;}
.y15{bottom:568.826667pt;}
.y59{bottom:570.106667pt;}
.y93{bottom:582.586667pt;}
.yb4{bottom:588.666667pt;}
.y39{bottom:590.906667pt;}
.y58{bottom:593.146667pt;}
.y14{bottom:595.386667pt;}
.y92{bottom:609.466667pt;}
.yb3{bottom:611.386667pt;}
.y38{bottom:613.946667pt;}
.y57{bottom:616.186667pt;}
.y13{bottom:618.426667pt;}
.y91{bottom:632.186667pt;}
.yb2{bottom:634.426667pt;}
.y37{bottom:636.666667pt;}
.y56{bottom:639.226667pt;}
.y12{bottom:641.146667pt;}
.y90{bottom:655.546667pt;}
.yb1{bottom:657.466667pt;}
.y36{bottom:659.706667pt;}
.y55{bottom:662.266667pt;}
.y11{bottom:669.986667pt;}
.y8f{bottom:678.626667pt;}
.yb0{bottom:681.186667pt;}
.y35{bottom:682.786667pt;}
.y54{bottom:685.026667pt;}
.y10{bottom:688.866667pt;}
.y8e{bottom:701.346667pt;}
.y34{bottom:705.826667pt;}
.y53{bottom:708.066667pt;}
.yf{bottom:711.586667pt;}
.y8d{bottom:714.466667pt;}
.y33{bottom:728.866667pt;}
.y8c{bottom:730.466667pt;}
.y52{bottom:731.106667pt;}
.ye{bottom:734.626667pt;}
.y8b{bottom:746.466667pt;}
.y32{bottom:751.906667pt;}
.y6e{bottom:753.826667pt;}
.y51{bottom:754.146667pt;}
.y8a{bottom:762.466667pt;}
.yd{bottom:765.986667pt;}
.yaf{bottom:774.626667pt;}
.y31{bottom:774.946667pt;}
.yc9{bottom:775.266667pt;}
.y50{bottom:776.866667pt;}
.y6d{bottom:777.186667pt;}
.y88{bottom:778.466667pt;}
.yc{bottom:788.733333pt;}
.y87{bottom:794.173333pt;}
.y30{bottom:798.013333pt;}
.y4f{bottom:800.253333pt;}
.y86{bottom:810.173333pt;}
.yb{bottom:811.773333pt;}
.yae{bottom:820.733333pt;}
.y2f{bottom:821.693333pt;}
.y4e{bottom:823.293333pt;}
.y85{bottom:826.173333pt;}
.ya{bottom:834.813333pt;}
.y84{bottom:842.173333pt;}
.yad{bottom:843.453333pt;}
.y2e{bottom:846.013333pt;}
.y9{bottom:853.693333pt;}
.yac{bottom:867.453333pt;}
.y2d{bottom:869.053333pt;}
.y8{bottom:878.013333pt;}
.y83{bottom:891.773333pt;}
.y2c{bottom:892.133333pt;}
.y7{bottom:904.613333pt;}
.y2b{bottom:915.173333pt;}
.y6{bottom:934.373333pt;}
.y2a{bottom:938.213333pt;}
.y3{bottom:954.213333pt;}
.y2{bottom:973.413333pt;}
.y1{bottom:993.253333pt;}
.hf{height:15.040000pt;}
.he{height:15.072000pt;}
.hc{height:15.360000pt;}
.hd{height:15.392000pt;}
.h7{height:33.402500pt;}
.h6{height:33.918750pt;}
.hb{height:37.537500pt;}
.h2{height:47.380000pt;}
.h8{height:52.762500pt;}
.ha{height:53.118750pt;}
.h4{height:54.180000pt;}
.h10{height:55.256809pt;}
.h9{height:59.340000pt;}
.h5{height:64.290000pt;}
.h1{height:64.500000pt;}
.h3{height:69.660000pt;}
.h0{height:1056.000000pt;}
.wa{width:34.592000pt;}
.w4{width:44.800000pt;}
.w6{width:46.752000pt;}
.w2{width:47.072000pt;}
.w7{width:47.680000pt;}
.w3{width:75.872000pt;}
.w5{width:76.192000pt;}
.w8{width:88.352000pt;}
.w9{width:145.626667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.040000pt;}
.x1{left:96.031988pt;}
.xf{left:120.031988pt;}
.x2{left:120.991988pt;}
.x10{left:144.066655pt;}
.x9{left:278.173333pt;}
.x4{left:285.533333pt;}
.xd{left:317.573333pt;}
.xa{left:325.253333pt;}
.x6{left:332.933333pt;}
.x3{left:381.573321pt;}
.xb{left:401.760000pt;}
.x7{left:409.440000pt;}
.xc{left:449.760000pt;}
.x8{left:454.560000pt;}
.xe{left:463.840000pt;}
}




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