
    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_4d1843592c674a8e87a36e92.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090820;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_443a4bece89c3673ecb0c6ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_61e1585e4380e8c03d1a1d73.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090820;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_a5c91f929502b3bd63a9b862.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_b5604d39eb3ecb0f75204173.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_ca23ae96445fd0ee81cce7d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsa{letter-spacing:7.920000px;}
.ls7{letter-spacing:11.520000px;}
.lsb{letter-spacing:28.080000px;}
.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;}
}
.ws0{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws6{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.446720px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-5.677200px;}
._6{margin-left:-4.608000px;}
._7{margin-left:-3.456000px;}
._9{margin-left:-2.184000px;}
._0{margin-left:-1.152000px;}
._1{width:1.248000px;}
._13{width:2.376000px;}
._3{width:3.960000px;}
._2{width:5.112000px;}
._12{width:6.984000px;}
._d{width:8.856000px;}
._e{width:9.936000px;}
._15{width:11.160000px;}
._14{width:12.240000px;}
._f{width:13.320000px;}
._10{width:14.328000px;}
._16{width:15.624000px;}
._19{width:16.992000px;}
._17{width:19.224000px;}
._a{width:20.520000px;}
._b{width:21.528000px;}
._11{width:22.968000px;}
._c{width:24.120000px;}
._18{width:25.188000px;}
._21{width:26.652000px;}
._4{width:27.720000px;}
._5{width:29.160000px;}
._8{width:30.192000px;}
._22{width:31.320000px;}
._1e{width:32.400000px;}
._1f{width:33.408000px;}
._23{width:34.848000px;}
._1a{width:38.808000px;}
._1b{width:40.320000px;}
._1c{width:42.552000px;}
._1d{width:43.812000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.y6{bottom:5.400000px;}
.y8d{bottom:6.765000px;}
.y85{bottom:6.810000px;}
.y8b{bottom:6.945000px;}
.y88{bottom:7.125000px;}
.y81{bottom:8.970000px;}
.yb4{bottom:9.000000px;}
.y73{bottom:12.240000px;}
.y10{bottom:12.600000px;}
.ye{bottom:12.780000px;}
.y12{bottom:12.960000px;}
.yb5{bottom:20.160000px;}
.y3{bottom:21.960000px;}
.y7{bottom:24.300000px;}
.y5{bottom:26.100000px;}
.y8a{bottom:28.005000px;}
.y83{bottom:28.050000px;}
.y87{bottom:28.185000px;}
.y80{bottom:28.230000px;}
.y8f{bottom:29.340000px;}
.y90{bottom:29.520000px;}
.y2{bottom:42.660000px;}
.yc{bottom:56.700000px;}
.yb{bottom:72.180000px;}
.yd2{bottom:111.420000px;}
.ye6{bottom:111.960000px;}
.y3a{bottom:122.760000px;}
.y7e{bottom:128.520000px;}
.y64{bottom:129.060000px;}
.yd1{bottom:132.120000px;}
.ye5{bottom:141.660000px;}
.y39{bottom:143.460000px;}
.yd0{bottom:152.820000px;}
.y7d{bottom:158.220000px;}
.y63{bottom:158.760000px;}
.ye4{bottom:162.360000px;}
.y38{bottom:164.160000px;}
.ycf{bottom:182.520000px;}
.ye3{bottom:183.060000px;}
.y37{bottom:184.860000px;}
.y7c{bottom:187.920000px;}
.y62{bottom:188.460000px;}
.yc6{bottom:195.120000px;}
.ye2{bottom:203.790000px;}
.y36{bottom:205.590000px;}
.y7b{bottom:208.650000px;}
.yce{bottom:212.250000px;}
.yc5{bottom:215.850000px;}
.y61{bottom:218.190000px;}
.y35{bottom:226.290000px;}
.y7a{bottom:229.350000px;}
.ye1{bottom:233.490000px;}
.yc4{bottom:236.550000px;}
.ycd{bottom:237.990000px;}
.y34{bottom:246.990000px;}
.y60{bottom:247.890000px;}
.y79{bottom:250.050000px;}
.ye0{bottom:254.190000px;}
.yb3{bottom:257.070000px;}
.yc3{bottom:266.250000px;}
.y33{bottom:267.690000px;}
.ydf{bottom:274.890000px;}
.y78{bottom:276.510000px;}
.y5f{bottom:277.590000px;}
.yc2{bottom:286.950000px;}
.y32{bottom:288.390000px;}
.yde{bottom:295.590000px;}
.y5e{bottom:307.290000px;}
.yc1{bottom:307.650000px;}
.yaa{bottom:310.890000px;}
.y77{bottom:312.510000px;}
.ydd{bottom:316.290000px;}
.y31{bottom:318.090000px;}
.yc0{bottom:328.350000px;}
.y5d{bottom:336.990000px;}
.ya9{bottom:340.590000px;}
.ydc{bottom:345.990000px;}
.y30{bottom:347.790000px;}
.y76{bottom:348.510000px;}
.ybf{bottom:349.050000px;}
.ya8{bottom:361.290000px;}
.y5c{bottom:366.690000px;}
.ybe{bottom:369.750000px;}
.y2f{bottom:377.490000px;}
.ya7{bottom:381.990000px;}
.y75{bottom:384.510000px;}
.ydb{bottom:387.390000px;}
.ybd{bottom:390.450000px;}
.y5b{bottom:396.390000px;}
.ya6{bottom:402.690000px;}
.y2e{bottom:407.190000px;}
.yda{bottom:408.090000px;}
.ybc{bottom:411.150000px;}
.y74{bottom:420.510000px;}
.y5a{bottom:426.090000px;}
.y2d{bottom:427.890000px;}
.yd9{bottom:428.790000px;}
.ybb{bottom:431.850000px;}
.ya5{bottom:432.390000px;}
.y2c{bottom:448.635000px;}
.yd8{bottom:449.535000px;}
.yba{bottom:452.595000px;}
.ya4{bottom:453.135000px;}
.y59{bottom:455.835000px;}
.y72{bottom:456.555000px;}
.y2b{bottom:469.335000px;}
.yd7{bottom:470.235000px;}
.ya3{bottom:473.835000px;}
.yb9{bottom:482.295000px;}
.y58{bottom:485.535000px;}
.y2a{bottom:490.035000px;}
.yd6{bottom:499.935000px;}
.ya2{bottom:500.295000px;}
.y71{bottom:505.515000px;}
.y57{bottom:506.235000px;}
.y29{bottom:510.735000px;}
.yb8{bottom:511.995000px;}
.y56{bottom:526.935000px;}
.yd5{bottom:529.635000px;}
.y28{bottom:531.435000px;}
.yb2{bottom:531.795000px;}
.y70{bottom:535.215000px;}
.ya1{bottom:536.295000px;}
.yb7{bottom:538.455000px;}
.y55{bottom:547.635000px;}
.ycc{bottom:550.335000px;}
.y27{bottom:552.135000px;}
.yb1{bottom:552.495000px;}
.yd4{bottom:559.335000px;}
.y6f{bottom:564.915000px;}
.y54{bottom:568.335000px;}
.ycb{bottom:571.035000px;}
.ya0{bottom:572.295000px;}
.y26{bottom:572.835000px;}
.yd3{bottom:580.035000px;}
.yb0{bottom:582.195000px;}
.y6e{bottom:585.615000px;}
.y53{bottom:589.035000px;}
.y25{bottom:593.535000px;}
.yca{bottom:600.735000px;}
.yaf{bottom:602.895000px;}
.y9f{bottom:608.295000px;}
.y52{bottom:609.735000px;}
.y24{bottom:614.235000px;}
.y6d{bottom:615.315000px;}
.yf{bottom:617.295000px;}
.yd{bottom:617.475000px;}
.yc9{bottom:621.435000px;}
.yae{bottom:623.595000px;}
.y23{bottom:634.935000px;}
.y6c{bottom:636.015000px;}
.y51{bottom:639.435000px;}
.y9e{bottom:644.295000px;}
.yc8{bottom:651.135000px;}
.yad{bottom:653.295000px;}
.y22{bottom:655.635000px;}
.y6b{bottom:656.715000px;}
.y50{bottom:660.135000px;}
.y21{bottom:676.365000px;}
.y6a{bottom:677.445000px;}
.y4f{bottom:680.865000px;}
.yac{bottom:683.025000px;}
.y69{bottom:698.145000px;}
.y4e{bottom:701.565000px;}
.y20{bottom:706.065000px;}
.yc7{bottom:706.605000px;}
.yab{bottom:708.765000px;}
.y9d{bottom:710.565000px;}
.y68{bottom:718.845000px;}
.y4d{bottom:722.265000px;}
.y1f{bottom:735.765000px;}
.y9c{bottom:740.265000px;}
.y4c{bottom:742.965000px;}
.yf0{bottom:745.665000px;}
.y67{bottom:748.545000px;}
.y4b{bottom:763.665000px;}
.y1e{bottom:765.465000px;}
.y9b{bottom:769.965000px;}
.y66{bottom:774.465000px;}
.yef{bottom:775.365000px;}
.y9a{bottom:790.665000px;}
.y4a{bottom:793.365000px;}
.y1d{bottom:802.005000px;}
.yee{bottom:805.065000px;}
.y86{bottom:809.640000px;}
.y89{bottom:810.900000px;}
.y8c{bottom:813.240000px;}
.y49{bottom:814.065000px;}
.y99{bottom:820.365000px;}
.y1c{bottom:824.865000px;}
.yed{bottom:825.765000px;}
.y48{bottom:834.765000px;}
.y98{bottom:841.065000px;}
.yec{bottom:846.465000px;}
.y47{bottom:855.465000px;}
.y1b{bottom:861.405000px;}
.y97{bottom:861.765000px;}
.y46{bottom:876.165000px;}
.y96{bottom:882.465000px;}
.y1a{bottom:884.265000px;}
.y45{bottom:896.865000px;}
.yb6{bottom:899.205000px;}
.y95{bottom:903.165000px;}
.y19{bottom:914.010000px;}
.y44{bottom:917.610000px;}
.y94{bottom:929.670000px;}
.y43{bottom:938.310000px;}
.y82{bottom:943.560000px;}
.y18{bottom:943.710000px;}
.y84{bottom:945.900000px;}
.yeb{bottom:947.310000px;}
.y17{bottom:964.410000px;}
.y93{bottom:965.670000px;}
.y42{bottom:968.010000px;}
.y16{bottom:994.110000px;}
.y41{bottom:997.710000px;}
.y92{bottom:1001.670000px;}
.y15{bottom:1014.810000px;}
.yea{bottom:1018.410000px;}
.y40{bottom:1027.410000px;}
.y91{bottom:1037.670000px;}
.ye9{bottom:1039.110000px;}
.y14{bottom:1040.550000px;}
.y7f{bottom:1043.640000px;}
.y3f{bottom:1057.110000px;}
.ye8{bottom:1068.810000px;}
.y8e{bottom:1073.670000px;}
.y3e{bottom:1077.810000px;}
.y13{bottom:1079.250000px;}
.ye7{bottom:1089.510000px;}
.y3d{bottom:1098.510000px;}
.y65{bottom:1110.210000px;}
.y11{bottom:1117.950000px;}
.y3c{bottom:1119.210000px;}
.y3b{bottom:1139.910000px;}
.y1{bottom:1182.060000px;}
.ya{bottom:1193.400000px;}
.y4{bottom:1198.080000px;}
.y9{bottom:1208.880000px;}
.h17{height:2.403281px;}
.h6{height:19.620000px;}
.hb{height:28.080000px;}
.ha{height:28.260000px;}
.h10{height:35.280000px;}
.h11{height:35.316000px;}
.hd{height:38.700000px;}
.hc{height:38.736000px;}
.hf{height:40.254961px;}
.h5{height:43.560000px;}
.h12{height:43.740000px;}
.h8{height:49.868086px;}
.h7{height:52.290000px;}
.h14{height:52.380000px;}
.h15{height:52.596000px;}
.h9{height:55.275469px;}
.h13{height:55.987031px;}
.h4{height:60.082031px;}
.h2{height:60.120000px;}
.h3{height:63.000000px;}
.he{height:65.970000px;}
.h18{height:256.575000px;}
.h16{height:261.030000px;}
.h19{height:360.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:72.000000px;}
.w1c{width:72.936000px;}
.w1f{width:75.600000px;}
.w1b{width:82.080000px;}
.w8{width:84.990000px;}
.w19{width:95.040000px;}
.w11{width:100.620000px;}
.w10{width:100.800000px;}
.w3{width:101.376000px;}
.w14{width:111.060000px;}
.w1e{width:114.876000px;}
.w12{width:120.060000px;}
.w6{width:124.416000px;}
.w18{width:124.956000px;}
.w15{width:136.980000px;}
.w17{width:138.456000px;}
.w13{width:160.380000px;}
.wf{width:167.610000px;}
.wc{width:168.480000px;}
.we{width:169.950000px;}
.wd{width:170.490000px;}
.w5{width:188.130000px;}
.w4{width:196.050000px;}
.w9{width:223.770000px;}
.w1a{width:257.790000px;}
.wb{width:279.930000px;}
.wa{width:286.095000px;}
.w16{width:318.090000px;}
.w21{width:335.055000px;}
.w20{width:343.110000px;}
.w2{width:618.450000px;}
.w22{width:678.885000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x1b{left:7.740000px;}
.xc{left:10.800000px;}
.x2a{left:12.495000px;}
.x25{left:13.785000px;}
.xe{left:14.940000px;}
.x5{left:20.340000px;}
.x3{left:23.436000px;}
.x21{left:24.510000px;}
.x1f{left:25.776000px;}
.x2c{left:27.105000px;}
.x27{left:28.230000px;}
.x7{left:29.340000px;}
.x24{left:33.225000px;}
.xd{left:52.200000px;}
.x1{left:67.500000px;}
.x11{left:90.900000px;}
.xa{left:106.235987px;}
.x18{left:110.555987px;}
.x13{left:113.975987px;}
.x28{left:170.460000px;}
.x12{left:184.185000px;}
.x20{left:253.800000px;}
.x2{left:270.435000px;}
.xf{left:275.970000px;}
.x17{left:277.589987px;}
.x29{left:293.220000px;}
.x19{left:340.274987px;}
.x37{left:354.315000px;}
.x38{left:363.309000px;}
.x31{left:365.655000px;}
.x36{left:372.309000px;}
.x15{left:375.014987px;}
.x1e{left:391.140000px;}
.x22{left:394.380000px;}
.x14{left:398.414987px;}
.x2e{left:425.955000px;}
.x16{left:446.474987px;}
.x1c{left:447.735000px;}
.x8{left:451.155000px;}
.x2b{left:476.280000px;}
.x39{left:518.469000px;}
.x32{left:522.105000px;}
.x23{left:538.200000px;}
.x10{left:562.065000px;}
.x2f{left:565.305000px;}
.x33{left:594.825000px;}
.x2d{left:608.040000px;}
.x1d{left:618.405000px;}
.x3b{left:688.289987px;}
.x30{left:690.990000px;}
.x26{left:697.140000px;}
.x34{left:710.430000px;}
.x9{left:737.610000px;}
.x4{left:761.010000px;}
.x35{left:770.009987px;}
.x3c{left:772.349987px;}
.x3a{left:779.549987px;}
.x1a{left:799.349987px;}
.xb{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsa{letter-spacing:7.040000pt;}
.ls7{letter-spacing:10.240000pt;}
.lsb{letter-spacing:24.960000pt;}
.ws0{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-11.952640pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-5.046400pt;}
._6{margin-left:-4.096000pt;}
._7{margin-left:-3.072000pt;}
._9{margin-left:-1.941333pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.109333pt;}
._13{width:2.112000pt;}
._3{width:3.520000pt;}
._2{width:4.544000pt;}
._12{width:6.208000pt;}
._d{width:7.872000pt;}
._e{width:8.832000pt;}
._15{width:9.920000pt;}
._14{width:10.880000pt;}
._f{width:11.840000pt;}
._10{width:12.736000pt;}
._16{width:13.888000pt;}
._19{width:15.104000pt;}
._17{width:17.088000pt;}
._a{width:18.240000pt;}
._b{width:19.136000pt;}
._11{width:20.416000pt;}
._c{width:21.440000pt;}
._18{width:22.389333pt;}
._21{width:23.690667pt;}
._4{width:24.640000pt;}
._5{width:25.920000pt;}
._8{width:26.837333pt;}
._22{width:27.840000pt;}
._1e{width:28.800000pt;}
._1f{width:29.696000pt;}
._23{width:30.976000pt;}
._1a{width:34.496000pt;}
._1b{width:35.840000pt;}
._1c{width:37.824000pt;}
._1d{width:38.944000pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.y6{bottom:4.800000pt;}
.y8d{bottom:6.013333pt;}
.y85{bottom:6.053333pt;}
.y8b{bottom:6.173333pt;}
.y88{bottom:6.333333pt;}
.y81{bottom:7.973333pt;}
.yb4{bottom:8.000000pt;}
.y73{bottom:10.880000pt;}
.y10{bottom:11.200000pt;}
.ye{bottom:11.360000pt;}
.y12{bottom:11.520000pt;}
.yb5{bottom:17.920000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.600000pt;}
.y5{bottom:23.200000pt;}
.y8a{bottom:24.893333pt;}
.y83{bottom:24.933333pt;}
.y87{bottom:25.053333pt;}
.y80{bottom:25.093333pt;}
.y8f{bottom:26.080000pt;}
.y90{bottom:26.240000pt;}
.y2{bottom:37.920000pt;}
.yc{bottom:50.400000pt;}
.yb{bottom:64.160000pt;}
.yd2{bottom:99.040000pt;}
.ye6{bottom:99.520000pt;}
.y3a{bottom:109.120000pt;}
.y7e{bottom:114.240000pt;}
.y64{bottom:114.720000pt;}
.yd1{bottom:117.440000pt;}
.ye5{bottom:125.920000pt;}
.y39{bottom:127.520000pt;}
.yd0{bottom:135.840000pt;}
.y7d{bottom:140.640000pt;}
.y63{bottom:141.120000pt;}
.ye4{bottom:144.320000pt;}
.y38{bottom:145.920000pt;}
.ycf{bottom:162.240000pt;}
.ye3{bottom:162.720000pt;}
.y37{bottom:164.320000pt;}
.y7c{bottom:167.040000pt;}
.y62{bottom:167.520000pt;}
.yc6{bottom:173.440000pt;}
.ye2{bottom:181.146667pt;}
.y36{bottom:182.746667pt;}
.y7b{bottom:185.466667pt;}
.yce{bottom:188.666667pt;}
.yc5{bottom:191.866667pt;}
.y61{bottom:193.946667pt;}
.y35{bottom:201.146667pt;}
.y7a{bottom:203.866667pt;}
.ye1{bottom:207.546667pt;}
.yc4{bottom:210.266667pt;}
.ycd{bottom:211.546667pt;}
.y34{bottom:219.546667pt;}
.y60{bottom:220.346667pt;}
.y79{bottom:222.266667pt;}
.ye0{bottom:225.946667pt;}
.yb3{bottom:228.506667pt;}
.yc3{bottom:236.666667pt;}
.y33{bottom:237.946667pt;}
.ydf{bottom:244.346667pt;}
.y78{bottom:245.786667pt;}
.y5f{bottom:246.746667pt;}
.yc2{bottom:255.066667pt;}
.y32{bottom:256.346667pt;}
.yde{bottom:262.746667pt;}
.y5e{bottom:273.146667pt;}
.yc1{bottom:273.466667pt;}
.yaa{bottom:276.346667pt;}
.y77{bottom:277.786667pt;}
.ydd{bottom:281.146667pt;}
.y31{bottom:282.746667pt;}
.yc0{bottom:291.866667pt;}
.y5d{bottom:299.546667pt;}
.ya9{bottom:302.746667pt;}
.ydc{bottom:307.546667pt;}
.y30{bottom:309.146667pt;}
.y76{bottom:309.786667pt;}
.ybf{bottom:310.266667pt;}
.ya8{bottom:321.146667pt;}
.y5c{bottom:325.946667pt;}
.ybe{bottom:328.666667pt;}
.y2f{bottom:335.546667pt;}
.ya7{bottom:339.546667pt;}
.y75{bottom:341.786667pt;}
.ydb{bottom:344.346667pt;}
.ybd{bottom:347.066667pt;}
.y5b{bottom:352.346667pt;}
.ya6{bottom:357.946667pt;}
.y2e{bottom:361.946667pt;}
.yda{bottom:362.746667pt;}
.ybc{bottom:365.466667pt;}
.y74{bottom:373.786667pt;}
.y5a{bottom:378.746667pt;}
.y2d{bottom:380.346667pt;}
.yd9{bottom:381.146667pt;}
.ybb{bottom:383.866667pt;}
.ya5{bottom:384.346667pt;}
.y2c{bottom:398.786667pt;}
.yd8{bottom:399.586667pt;}
.yba{bottom:402.306667pt;}
.ya4{bottom:402.786667pt;}
.y59{bottom:405.186667pt;}
.y72{bottom:405.826667pt;}
.y2b{bottom:417.186667pt;}
.yd7{bottom:417.986667pt;}
.ya3{bottom:421.186667pt;}
.yb9{bottom:428.706667pt;}
.y58{bottom:431.586667pt;}
.y2a{bottom:435.586667pt;}
.yd6{bottom:444.386667pt;}
.ya2{bottom:444.706667pt;}
.y71{bottom:449.346667pt;}
.y57{bottom:449.986667pt;}
.y29{bottom:453.986667pt;}
.yb8{bottom:455.106667pt;}
.y56{bottom:468.386667pt;}
.yd5{bottom:470.786667pt;}
.y28{bottom:472.386667pt;}
.yb2{bottom:472.706667pt;}
.y70{bottom:475.746667pt;}
.ya1{bottom:476.706667pt;}
.yb7{bottom:478.626667pt;}
.y55{bottom:486.786667pt;}
.ycc{bottom:489.186667pt;}
.y27{bottom:490.786667pt;}
.yb1{bottom:491.106667pt;}
.yd4{bottom:497.186667pt;}
.y6f{bottom:502.146667pt;}
.y54{bottom:505.186667pt;}
.ycb{bottom:507.586667pt;}
.ya0{bottom:508.706667pt;}
.y26{bottom:509.186667pt;}
.yd3{bottom:515.586667pt;}
.yb0{bottom:517.506667pt;}
.y6e{bottom:520.546667pt;}
.y53{bottom:523.586667pt;}
.y25{bottom:527.586667pt;}
.yca{bottom:533.986667pt;}
.yaf{bottom:535.906667pt;}
.y9f{bottom:540.706667pt;}
.y52{bottom:541.986667pt;}
.y24{bottom:545.986667pt;}
.y6d{bottom:546.946667pt;}
.yf{bottom:548.706667pt;}
.yd{bottom:548.866667pt;}
.yc9{bottom:552.386667pt;}
.yae{bottom:554.306667pt;}
.y23{bottom:564.386667pt;}
.y6c{bottom:565.346667pt;}
.y51{bottom:568.386667pt;}
.y9e{bottom:572.706667pt;}
.yc8{bottom:578.786667pt;}
.yad{bottom:580.706667pt;}
.y22{bottom:582.786667pt;}
.y6b{bottom:583.746667pt;}
.y50{bottom:586.786667pt;}
.y21{bottom:601.213333pt;}
.y6a{bottom:602.173333pt;}
.y4f{bottom:605.213333pt;}
.yac{bottom:607.133333pt;}
.y69{bottom:620.573333pt;}
.y4e{bottom:623.613333pt;}
.y20{bottom:627.613333pt;}
.yc7{bottom:628.093333pt;}
.yab{bottom:630.013333pt;}
.y9d{bottom:631.613333pt;}
.y68{bottom:638.973333pt;}
.y4d{bottom:642.013333pt;}
.y1f{bottom:654.013333pt;}
.y9c{bottom:658.013333pt;}
.y4c{bottom:660.413333pt;}
.yf0{bottom:662.813333pt;}
.y67{bottom:665.373333pt;}
.y4b{bottom:678.813333pt;}
.y1e{bottom:680.413333pt;}
.y9b{bottom:684.413333pt;}
.y66{bottom:688.413333pt;}
.yef{bottom:689.213333pt;}
.y9a{bottom:702.813333pt;}
.y4a{bottom:705.213333pt;}
.y1d{bottom:712.893333pt;}
.yee{bottom:715.613333pt;}
.y86{bottom:719.680000pt;}
.y89{bottom:720.800000pt;}
.y8c{bottom:722.880000pt;}
.y49{bottom:723.613333pt;}
.y99{bottom:729.213333pt;}
.y1c{bottom:733.213333pt;}
.yed{bottom:734.013333pt;}
.y48{bottom:742.013333pt;}
.y98{bottom:747.613333pt;}
.yec{bottom:752.413333pt;}
.y47{bottom:760.413333pt;}
.y1b{bottom:765.693333pt;}
.y97{bottom:766.013333pt;}
.y46{bottom:778.813333pt;}
.y96{bottom:784.413333pt;}
.y1a{bottom:786.013333pt;}
.y45{bottom:797.213333pt;}
.yb6{bottom:799.293333pt;}
.y95{bottom:802.813333pt;}
.y19{bottom:812.453333pt;}
.y44{bottom:815.653333pt;}
.y94{bottom:826.373333pt;}
.y43{bottom:834.053333pt;}
.y82{bottom:838.720000pt;}
.y18{bottom:838.853333pt;}
.y84{bottom:840.800000pt;}
.yeb{bottom:842.053333pt;}
.y17{bottom:857.253333pt;}
.y93{bottom:858.373333pt;}
.y42{bottom:860.453333pt;}
.y16{bottom:883.653333pt;}
.y41{bottom:886.853333pt;}
.y92{bottom:890.373333pt;}
.y15{bottom:902.053333pt;}
.yea{bottom:905.253333pt;}
.y40{bottom:913.253333pt;}
.y91{bottom:922.373333pt;}
.ye9{bottom:923.653333pt;}
.y14{bottom:924.933333pt;}
.y7f{bottom:927.680000pt;}
.y3f{bottom:939.653333pt;}
.ye8{bottom:950.053333pt;}
.y8e{bottom:954.373333pt;}
.y3e{bottom:958.053333pt;}
.y13{bottom:959.333333pt;}
.ye7{bottom:968.453333pt;}
.y3d{bottom:976.453333pt;}
.y65{bottom:986.853333pt;}
.y11{bottom:993.733333pt;}
.y3c{bottom:994.853333pt;}
.y3b{bottom:1013.253333pt;}
.y1{bottom:1050.720000pt;}
.ya{bottom:1060.800000pt;}
.y4{bottom:1064.960000pt;}
.y9{bottom:1074.560000pt;}
.h17{height:2.136250pt;}
.h6{height:17.440000pt;}
.hb{height:24.960000pt;}
.ha{height:25.120000pt;}
.h10{height:31.360000pt;}
.h11{height:31.392000pt;}
.hd{height:34.400000pt;}
.hc{height:34.432000pt;}
.hf{height:35.782187pt;}
.h5{height:38.720000pt;}
.h12{height:38.880000pt;}
.h8{height:44.327188pt;}
.h7{height:46.480000pt;}
.h14{height:46.560000pt;}
.h15{height:46.752000pt;}
.h9{height:49.133750pt;}
.h13{height:49.766250pt;}
.h4{height:53.406250pt;}
.h2{height:53.440000pt;}
.h3{height:56.000000pt;}
.he{height:58.640000pt;}
.h18{height:228.066667pt;}
.h16{height:232.026667pt;}
.h19{height:320.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:64.000000pt;}
.w1c{width:64.832000pt;}
.w1f{width:67.200000pt;}
.w1b{width:72.960000pt;}
.w8{width:75.546667pt;}
.w19{width:84.480000pt;}
.w11{width:89.440000pt;}
.w10{width:89.600000pt;}
.w3{width:90.112000pt;}
.w14{width:98.720000pt;}
.w1e{width:102.112000pt;}
.w12{width:106.720000pt;}
.w6{width:110.592000pt;}
.w18{width:111.072000pt;}
.w15{width:121.760000pt;}
.w17{width:123.072000pt;}
.w13{width:142.560000pt;}
.wf{width:148.986667pt;}
.wc{width:149.760000pt;}
.we{width:151.066667pt;}
.wd{width:151.546667pt;}
.w5{width:167.226667pt;}
.w4{width:174.266667pt;}
.w9{width:198.906667pt;}
.w1a{width:229.146667pt;}
.wb{width:248.826667pt;}
.wa{width:254.306667pt;}
.w16{width:282.746667pt;}
.w21{width:297.826667pt;}
.w20{width:304.986667pt;}
.w2{width:549.733333pt;}
.w22{width:603.453333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x1b{left:6.880000pt;}
.xc{left:9.600000pt;}
.x2a{left:11.106667pt;}
.x25{left:12.253333pt;}
.xe{left:13.280000pt;}
.x5{left:18.080000pt;}
.x3{left:20.832000pt;}
.x21{left:21.786667pt;}
.x1f{left:22.912000pt;}
.x2c{left:24.093333pt;}
.x27{left:25.093333pt;}
.x7{left:26.080000pt;}
.x24{left:29.533333pt;}
.xd{left:46.400000pt;}
.x1{left:60.000000pt;}
.x11{left:80.800000pt;}
.xa{left:94.431988pt;}
.x18{left:98.271988pt;}
.x13{left:101.311988pt;}
.x28{left:151.520000pt;}
.x12{left:163.720000pt;}
.x20{left:225.600000pt;}
.x2{left:240.386667pt;}
.xf{left:245.306667pt;}
.x17{left:246.746655pt;}
.x29{left:260.640000pt;}
.x19{left:302.466655pt;}
.x37{left:314.946667pt;}
.x38{left:322.941333pt;}
.x31{left:325.026667pt;}
.x36{left:330.941333pt;}
.x15{left:333.346655pt;}
.x1e{left:347.680000pt;}
.x22{left:350.560000pt;}
.x14{left:354.146655pt;}
.x2e{left:378.626667pt;}
.x16{left:396.866655pt;}
.x1c{left:397.986667pt;}
.x8{left:401.026667pt;}
.x2b{left:423.360000pt;}
.x39{left:460.861333pt;}
.x32{left:464.093333pt;}
.x23{left:478.400000pt;}
.x10{left:499.613333pt;}
.x2f{left:502.493333pt;}
.x33{left:528.733333pt;}
.x2d{left:540.480000pt;}
.x1d{left:549.693333pt;}
.x3b{left:611.813322pt;}
.x30{left:614.213333pt;}
.x26{left:619.680000pt;}
.x34{left:631.493333pt;}
.x9{left:655.653333pt;}
.x4{left:676.453333pt;}
.x35{left:684.453322pt;}
.x3c{left:686.533322pt;}
.x3a{left:692.933322pt;}
.x1a{left:710.533322pt;}
.xb{left:718.213333pt;}
}




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