
    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_960b8ebfb91af91928630062.woff2')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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_640924739e47c197e182476c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_22526855159777fcb44efc17.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_1decbbe3d4134a0eb08443b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_8db1f02227518f43163d8c1c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b0a819503cc25bfb746c7373.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_e0f784291199003359d806fe.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e75d601251559927d0a00643.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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:ffa;src:url('chunks/assets/font_ee0ac19e8e8d71065d7e4dfe.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3850f398c369e6eda45d183b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v1{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls8{letter-spacing:-0.262200px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.414600px;}
.ls1{letter-spacing:15.096000px;}
.ls6{letter-spacing:39.888000px;}
.ls7{letter-spacing:47.610720px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.974600px;}
.ws6{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.297800px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-2.100960px;}
._0{margin-left:-1.045440px;}
._2{width:1.002240px;}
._1{width:2.112720px;}
._10{width:3.165600px;}
._6{width:4.173120px;}
._3{width:5.299200px;}
._7{width:6.690240px;}
._8{width:8.323200px;}
._b{width:9.527040px;}
._5{width:10.900800px;}
._4{width:11.923200px;}
._14{width:13.476960px;}
._a{width:14.641920px;}
._11{width:18.275040px;}
._9{width:20.004480px;}
._15{width:21.160800px;}
._16{width:22.292640px;}
._f{width:23.316480px;}
._d{width:25.104960px;}
._c{width:26.282880px;}
._12{width:28.152000px;}
._13{width:29.789280px;}
._17{width:34.511040px;}
._18{width:51.203520px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:3.600000px;}
.yea{bottom:3.945000px;}
.ye7{bottom:4.125000px;}
.yef{bottom:4.140000px;}
.y6{bottom:7.200000px;}
.ye6{bottom:23.025000px;}
.yee{bottom:23.070000px;}
.ye5{bottom:41.925000px;}
.yed{bottom:42.150000px;}
.y4{bottom:43.200000px;}
.ye4{bottom:61.005000px;}
.yec{bottom:61.050000px;}
.y39{bottom:64.800000px;}
.y8b{bottom:69.840000px;}
.yb4{bottom:78.120000px;}
.yf2{bottom:78.300000px;}
.ye9{bottom:79.905000px;}
.y8a{bottom:88.740000px;}
.y38{bottom:92.700000px;}
.yb3{bottom:97.020000px;}
.yf1{bottom:97.380000px;}
.yd0{bottom:106.200000px;}
.y6e{bottom:106.740000px;}
.y89{bottom:107.820000px;}
.y11b{bottom:109.620000px;}
.yb2{bottom:115.740000px;}
.y37{bottom:120.600000px;}
.y6d{bottom:125.820000px;}
.y88{bottom:126.720000px;}
.ycf{bottom:130.500000px;}
.y11a{bottom:137.700000px;}
.y36{bottom:139.680000px;}
.yb1{bottom:144.000000px;}
.y6c{bottom:144.720000px;}
.y87{bottom:145.800000px;}
.y119{bottom:156.600000px;}
.y35{bottom:158.580000px;}
.yb0{bottom:162.900000px;}
.y6b{bottom:163.800000px;}
.y86{bottom:164.700000px;}
.yf0{bottom:174.780000px;}
.y34{bottom:177.660000px;}
.yaf{bottom:181.980000px;}
.y6a{bottom:182.700000px;}
.y85{bottom:183.600000px;}
.y118{bottom:184.680000px;}
.y33{bottom:196.560000px;}
.yeb{bottom:199.800000px;}
.yae{bottom:200.880000px;}
.y69{bottom:201.600000px;}
.y84{bottom:202.680000px;}
.y117{bottom:203.580000px;}
.yad{bottom:219.990000px;}
.y68{bottom:220.710000px;}
.y83{bottom:221.250000px;}
.y32{bottom:224.490000px;}
.y116{bottom:231.510000px;}
.yac{bottom:238.890000px;}
.y67{bottom:239.610000px;}
.y31{bottom:243.570000px;}
.y82{bottom:249.690000px;}
.y115{bottom:250.590000px;}
.yab{bottom:257.430000px;}
.y66{bottom:258.690000px;}
.y30{bottom:262.470000px;}
.y81{bottom:268.590000px;}
.y65{bottom:277.590000px;}
.y114{bottom:278.490000px;}
.ye8{bottom:279.765000px;}
.y2f{bottom:281.550000px;}
.yaa{bottom:285.870000px;}
.y80{bottom:287.490000px;}
.y64{bottom:296.490000px;}
.y113{bottom:297.570000px;}
.y2e{bottom:300.450000px;}
.ya9{bottom:304.770000px;}
.y7f{bottom:306.570000px;}
.y63{bottom:315.570000px;}
.y2d{bottom:319.350000px;}
.ya8{bottom:323.850000px;}
.y7e{bottom:325.470000px;}
.y62{bottom:334.470000px;}
.ya7{bottom:342.750000px;}
.y112{bottom:344.370000px;}
.y7d{bottom:344.550000px;}
.y2c{bottom:347.430000px;}
.y61{bottom:353.550000px;}
.ya6{bottom:361.470000px;}
.y7c{bottom:363.450000px;}
.y2b{bottom:366.330000px;}
.y60{bottom:372.450000px;}
.ye3{bottom:378.585000px;}
.yce{bottom:379.830000px;}
.y7b{bottom:382.350000px;}
.y2a{bottom:385.410000px;}
.ya5{bottom:389.730000px;}
.y5f{bottom:391.350000px;}
.ycd{bottom:398.730000px;}
.y29{bottom:404.310000px;}
.y5e{bottom:410.430000px;}
.ycc{bottom:417.630000px;}
.ya4{bottom:419.070000px;}
.y5d{bottom:428.970000px;}
.y7a{bottom:429.330000px;}
.y28{bottom:432.210000px;}
.ycb{bottom:436.710000px;}
.y79{bottom:448.455000px;}
.y27{bottom:451.335000px;}
.yca{bottom:455.655000px;}
.y111{bottom:457.275000px;}
.y5c{bottom:457.455000px;}
.ye1{bottom:458.535000px;}
.y78{bottom:467.355000px;}
.y26{bottom:470.235000px;}
.yc9{bottom:474.735000px;}
.y5b{bottom:476.355000px;}
.ya3{bottom:477.795000px;}
.ye0{bottom:485.535000px;}
.y77{bottom:486.255000px;}
.y25{bottom:489.315000px;}
.yc8{bottom:493.635000px;}
.y5a{bottom:495.255000px;}
.y76{bottom:505.335000px;}
.ya2{bottom:507.315000px;}
.y24{bottom:508.215000px;}
.yc7{bottom:512.535000px;}
.ydf{bottom:513.435000px;}
.y59{bottom:514.335000px;}
.y110{bottom:523.335000px;}
.y75{bottom:523.875000px;}
.y23{bottom:527.115000px;}
.yc6{bottom:531.615000px;}
.yde{bottom:532.515000px;}
.y58{bottom:533.235000px;}
.ya1{bottom:535.215000px;}
.y10f{bottom:542.235000px;}
.yc5{bottom:550.515000px;}
.y57{bottom:552.315000px;}
.ya0{bottom:554.115000px;}
.y22{bottom:555.195000px;}
.ydd{bottom:560.415000px;}
.y10e{bottom:561.135000px;}
.yc4{bottom:569.595000px;}
.y56{bottom:571.215000px;}
.y9f{bottom:573.195000px;}
.y21{bottom:574.095000px;}
.ydc{bottom:579.315000px;}
.yc3{bottom:588.495000px;}
.y10d{bottom:589.215000px;}
.y55{bottom:590.115000px;}
.y9e{bottom:592.095000px;}
.y20{bottom:593.175000px;}
.ydb{bottom:598.395000px;}
.yc2{bottom:607.395000px;}
.y10c{bottom:608.115000px;}
.y54{bottom:609.195000px;}
.y1f{bottom:612.075000px;}
.yda{bottom:617.295000px;}
.y9d{bottom:620.175000px;}
.yc1{bottom:626.115000px;}
.y10b{bottom:626.835000px;}
.y53{bottom:628.095000px;}
.y1e{bottom:631.155000px;}
.yd9{bottom:636.015000px;}
.y52{bottom:647.175000px;}
.y9c{bottom:648.075000px;}
.y1d{bottom:650.055000px;}
.yc0{bottom:654.375000px;}
.y10a{bottom:655.095000px;}
.yd8{bottom:664.275000px;}
.y51{bottom:666.075000px;}
.y9b{bottom:667.155000px;}
.y1c{bottom:668.595000px;}
.y109{bottom:674.175000px;}
.ybf{bottom:682.485000px;}
.yd7{bottom:683.205000px;}
.y50{bottom:685.185000px;}
.y9a{bottom:686.085000px;}
.y108{bottom:693.105000px;}
.y1b{bottom:696.705000px;}
.yd6{bottom:702.285000px;}
.y4f{bottom:704.085000px;}
.y99{bottom:704.985000px;}
.ybe{bottom:710.385000px;}
.y107{bottom:712.005000px;}
.yd5{bottom:721.185000px;}
.y4e{bottom:722.985000px;}
.y98{bottom:724.065000px;}
.y1a{bottom:733.965000px;}
.ybd{bottom:738.285000px;}
.y106{bottom:740.085000px;}
.yd4{bottom:740.265000px;}
.y4d{bottom:742.065000px;}
.y97{bottom:742.965000px;}
.y19{bottom:753.045000px;}
.ybc{bottom:757.005000px;}
.yd3{bottom:758.805000px;}
.y105{bottom:758.985000px;}
.y4c{bottom:760.965000px;}
.y96{bottom:761.685000px;}
.y104{bottom:778.065000px;}
.y4b{bottom:780.045000px;}
.y18{bottom:780.945000px;}
.ybb{bottom:785.265000px;}
.yd2{bottom:786.705000px;}
.y95{bottom:789.585000px;}
.y103{bottom:796.965000px;}
.y74{bottom:798.585000px;}
.y4a{bottom:798.945000px;}
.y17{bottom:799.845000px;}
.yd1{bottom:802.005000px;}
.yba{bottom:804.165000px;}
.y49{bottom:817.485000px;}
.y94{bottom:817.845000px;}
.y16{bottom:818.925000px;}
.y102{bottom:824.865000px;}
.y73{bottom:826.845000px;}
.yb9{bottom:833.685000px;}
.y93{bottom:836.925000px;}
.y15{bottom:837.825000px;}
.y101{bottom:843.945000px;}
.y48{bottom:845.925000px;}
.y92{bottom:855.825000px;}
.y14{bottom:856.905000px;}
.y100{bottom:862.845000px;}
.yb8{bottom:863.025000px;}
.y47{bottom:864.825000px;}
.y91{bottom:874.905000px;}
.y13{bottom:875.805000px;}
.yff{bottom:881.925000px;}
.y46{bottom:883.905000px;}
.yb7{bottom:892.365000px;}
.y90{bottom:893.445000px;}
.y12{bottom:894.705000px;}
.yfe{bottom:900.825000px;}
.y45{bottom:902.805000px;}
.yb6{bottom:912.390000px;}
.y11{bottom:913.830000px;}
.yfd{bottom:919.770000px;}
.y44{bottom:921.750000px;}
.y10{bottom:932.730000px;}
.y43{bottom:940.830000px;}
.yfc{bottom:947.850000px;}
.yf{bottom:951.810000px;}
.y42{bottom:959.730000px;}
.yfb{bottom:966.750000px;}
.ye{bottom:970.710000px;}
.y41{bottom:978.810000px;}
.yfa{bottom:985.830000px;}
.yd{bottom:989.250000px;}
.y8f{bottom:997.350000px;}
.y40{bottom:997.710000px;}
.yf9{bottom:1004.730000px;}
.y3f{bottom:1016.610000px;}
.yf8{bottom:1023.630000px;}
.y8e{bottom:1025.610000px;}
.yc{bottom:1034.250000px;}
.y3e{bottom:1035.690000px;}
.yf7{bottom:1042.350000px;}
.y8d{bottom:1044.690000px;}
.yb{bottom:1053.150000px;}
.yb5{bottom:1054.230000px;}
.y3d{bottom:1054.590000px;}
.y72{bottom:1063.590000px;}
.ya{bottom:1064.310000px;}
.yf6{bottom:1070.610000px;}
.y3c{bottom:1073.670000px;}
.y71{bottom:1082.670000px;}
.yf5{bottom:1089.690000px;}
.y9{bottom:1090.770000px;}
.y3b{bottom:1092.570000px;}
.y70{bottom:1101.570000px;}
.y3a{bottom:1111.290000px;}
.yf4{bottom:1119.030000px;}
.y8{bottom:1120.290000px;}
.y6f{bottom:1120.650000px;}
.yf3{bottom:1138.110000px;}
.y7{bottom:1139.190000px;}
.y8c{bottom:1139.550000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1179.180000px;}
.y5{bottom:1181.700000px;}
.y1{bottom:1200.240000px;}
.h10{height:18.885000px;}
.h6{height:23.580000px;}
.ha{height:40.985156px;}
.h9{height:42.086250px;}
.h7{height:52.417969px;}
.hc{height:54.596250px;}
.he{height:59.383125px;}
.hb{height:64.978594px;}
.hd{height:65.010937px;}
.h4{height:65.884219px;}
.h8{height:66.757500px;}
.h5{height:69.086250px;}
.h3{height:70.664062px;}
.hf{height:74.004654px;}
.h11{height:75.981000px;}
.h13{height:75.996000px;}
.h2{height:87.800625px;}
.h12{height:94.845000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:48.771000px;}
.w2{width:151.050000px;}
.w5{width:284.055000px;}
.w4{width:284.295000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x11{left:11.700000px;}
.x4{left:16.920000px;}
.x16{left:19.614000px;}
.x1{left:75.600000px;}
.x13{left:77.085000px;}
.x7{left:88.236000px;}
.xb{left:96.876000px;}
.x9{left:106.056000px;}
.x15{left:114.465000px;}
.x5{left:131.436000px;}
.x10{left:137.916000px;}
.x12{left:187.410000px;}
.xa{left:231.870000px;}
.xf{left:298.155000px;}
.x6{left:387.615000px;}
.xd{left:411.375000px;}
.x8{left:423.255000px;}
.x14{left:472.440000px;}
.xc{left:630.510000px;}
.xe{left:641.850000px;}
.x3{left:673.530000px;}
.x2{left:791.250000px;}
@media print{
.v1{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.368533pt;}
.ls1{letter-spacing:13.418667pt;}
.ls6{letter-spacing:35.456000pt;}
.ls7{letter-spacing:42.320640pt;}
.wsa{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.088533pt;}
.ws6{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.486933pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-1.867520pt;}
._0{margin-left:-0.929280pt;}
._2{width:0.890880pt;}
._1{width:1.877973pt;}
._10{width:2.813867pt;}
._6{width:3.709440pt;}
._3{width:4.710400pt;}
._7{width:5.946880pt;}
._8{width:7.398400pt;}
._b{width:8.468480pt;}
._5{width:9.689600pt;}
._4{width:10.598400pt;}
._14{width:11.979520pt;}
._a{width:13.015040pt;}
._11{width:16.244480pt;}
._9{width:17.781760pt;}
._15{width:18.809600pt;}
._16{width:19.815680pt;}
._f{width:20.725760pt;}
._d{width:22.315520pt;}
._c{width:23.362560pt;}
._12{width:25.024000pt;}
._13{width:26.479360pt;}
._17{width:30.676480pt;}
._18{width:45.514240pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:3.200000pt;}
.yea{bottom:3.506667pt;}
.ye7{bottom:3.666667pt;}
.yef{bottom:3.680000pt;}
.y6{bottom:6.400000pt;}
.ye6{bottom:20.466667pt;}
.yee{bottom:20.506667pt;}
.ye5{bottom:37.266667pt;}
.yed{bottom:37.466667pt;}
.y4{bottom:38.400000pt;}
.ye4{bottom:54.226667pt;}
.yec{bottom:54.266667pt;}
.y39{bottom:57.600000pt;}
.y8b{bottom:62.080000pt;}
.yb4{bottom:69.440000pt;}
.yf2{bottom:69.600000pt;}
.ye9{bottom:71.026667pt;}
.y8a{bottom:78.880000pt;}
.y38{bottom:82.400000pt;}
.yb3{bottom:86.240000pt;}
.yf1{bottom:86.560000pt;}
.yd0{bottom:94.400000pt;}
.y6e{bottom:94.880000pt;}
.y89{bottom:95.840000pt;}
.y11b{bottom:97.440000pt;}
.yb2{bottom:102.880000pt;}
.y37{bottom:107.200000pt;}
.y6d{bottom:111.840000pt;}
.y88{bottom:112.640000pt;}
.ycf{bottom:116.000000pt;}
.y11a{bottom:122.400000pt;}
.y36{bottom:124.160000pt;}
.yb1{bottom:128.000000pt;}
.y6c{bottom:128.640000pt;}
.y87{bottom:129.600000pt;}
.y119{bottom:139.200000pt;}
.y35{bottom:140.960000pt;}
.yb0{bottom:144.800000pt;}
.y6b{bottom:145.600000pt;}
.y86{bottom:146.400000pt;}
.yf0{bottom:155.360000pt;}
.y34{bottom:157.920000pt;}
.yaf{bottom:161.760000pt;}
.y6a{bottom:162.400000pt;}
.y85{bottom:163.200000pt;}
.y118{bottom:164.160000pt;}
.y33{bottom:174.720000pt;}
.yeb{bottom:177.600000pt;}
.yae{bottom:178.560000pt;}
.y69{bottom:179.200000pt;}
.y84{bottom:180.160000pt;}
.y117{bottom:180.960000pt;}
.yad{bottom:195.546667pt;}
.y68{bottom:196.186667pt;}
.y83{bottom:196.666667pt;}
.y32{bottom:199.546667pt;}
.y116{bottom:205.786667pt;}
.yac{bottom:212.346667pt;}
.y67{bottom:212.986667pt;}
.y31{bottom:216.506667pt;}
.y82{bottom:221.946667pt;}
.y115{bottom:222.746667pt;}
.yab{bottom:228.826667pt;}
.y66{bottom:229.946667pt;}
.y30{bottom:233.306667pt;}
.y81{bottom:238.746667pt;}
.y65{bottom:246.746667pt;}
.y114{bottom:247.546667pt;}
.ye8{bottom:248.680000pt;}
.y2f{bottom:250.266667pt;}
.yaa{bottom:254.106667pt;}
.y80{bottom:255.546667pt;}
.y64{bottom:263.546667pt;}
.y113{bottom:264.506667pt;}
.y2e{bottom:267.066667pt;}
.ya9{bottom:270.906667pt;}
.y7f{bottom:272.506667pt;}
.y63{bottom:280.506667pt;}
.y2d{bottom:283.866667pt;}
.ya8{bottom:287.866667pt;}
.y7e{bottom:289.306667pt;}
.y62{bottom:297.306667pt;}
.ya7{bottom:304.666667pt;}
.y112{bottom:306.106667pt;}
.y7d{bottom:306.266667pt;}
.y2c{bottom:308.826667pt;}
.y61{bottom:314.266667pt;}
.ya6{bottom:321.306667pt;}
.y7c{bottom:323.066667pt;}
.y2b{bottom:325.626667pt;}
.y60{bottom:331.066667pt;}
.ye3{bottom:336.520000pt;}
.yce{bottom:337.626667pt;}
.y7b{bottom:339.866667pt;}
.y2a{bottom:342.586667pt;}
.ya5{bottom:346.426667pt;}
.y5f{bottom:347.866667pt;}
.ycd{bottom:354.426667pt;}
.y29{bottom:359.386667pt;}
.y5e{bottom:364.826667pt;}
.ycc{bottom:371.226667pt;}
.ya4{bottom:372.506667pt;}
.y5d{bottom:381.306667pt;}
.y7a{bottom:381.626667pt;}
.y28{bottom:384.186667pt;}
.ycb{bottom:388.186667pt;}
.y79{bottom:398.626667pt;}
.y27{bottom:401.186667pt;}
.yca{bottom:405.026667pt;}
.y111{bottom:406.466667pt;}
.y5c{bottom:406.626667pt;}
.ye1{bottom:407.586667pt;}
.y78{bottom:415.426667pt;}
.y26{bottom:417.986667pt;}
.yc9{bottom:421.986667pt;}
.y5b{bottom:423.426667pt;}
.ya3{bottom:424.706667pt;}
.ye0{bottom:431.586667pt;}
.y77{bottom:432.226667pt;}
.y25{bottom:434.946667pt;}
.yc8{bottom:438.786667pt;}
.y5a{bottom:440.226667pt;}
.y76{bottom:449.186667pt;}
.ya2{bottom:450.946667pt;}
.y24{bottom:451.746667pt;}
.yc7{bottom:455.586667pt;}
.ydf{bottom:456.386667pt;}
.y59{bottom:457.186667pt;}
.y110{bottom:465.186667pt;}
.y75{bottom:465.666667pt;}
.y23{bottom:468.546667pt;}
.yc6{bottom:472.546667pt;}
.yde{bottom:473.346667pt;}
.y58{bottom:473.986667pt;}
.ya1{bottom:475.746667pt;}
.y10f{bottom:481.986667pt;}
.yc5{bottom:489.346667pt;}
.y57{bottom:490.946667pt;}
.ya0{bottom:492.546667pt;}
.y22{bottom:493.506667pt;}
.ydd{bottom:498.146667pt;}
.y10e{bottom:498.786667pt;}
.yc4{bottom:506.306667pt;}
.y56{bottom:507.746667pt;}
.y9f{bottom:509.506667pt;}
.y21{bottom:510.306667pt;}
.ydc{bottom:514.946667pt;}
.yc3{bottom:523.106667pt;}
.y10d{bottom:523.746667pt;}
.y55{bottom:524.546667pt;}
.y9e{bottom:526.306667pt;}
.y20{bottom:527.266667pt;}
.ydb{bottom:531.906667pt;}
.yc2{bottom:539.906667pt;}
.y10c{bottom:540.546667pt;}
.y54{bottom:541.506667pt;}
.y1f{bottom:544.066667pt;}
.yda{bottom:548.706667pt;}
.y9d{bottom:551.266667pt;}
.yc1{bottom:556.546667pt;}
.y10b{bottom:557.186667pt;}
.y53{bottom:558.306667pt;}
.y1e{bottom:561.026667pt;}
.yd9{bottom:565.346667pt;}
.y52{bottom:575.266667pt;}
.y9c{bottom:576.066667pt;}
.y1d{bottom:577.826667pt;}
.yc0{bottom:581.666667pt;}
.y10a{bottom:582.306667pt;}
.yd8{bottom:590.466667pt;}
.y51{bottom:592.066667pt;}
.y9b{bottom:593.026667pt;}
.y1c{bottom:594.306667pt;}
.y109{bottom:599.266667pt;}
.ybf{bottom:606.653333pt;}
.yd7{bottom:607.293333pt;}
.y50{bottom:609.053333pt;}
.y9a{bottom:609.853333pt;}
.y108{bottom:616.093333pt;}
.y1b{bottom:619.293333pt;}
.yd6{bottom:624.253333pt;}
.y4f{bottom:625.853333pt;}
.y99{bottom:626.653333pt;}
.ybe{bottom:631.453333pt;}
.y107{bottom:632.893333pt;}
.yd5{bottom:641.053333pt;}
.y4e{bottom:642.653333pt;}
.y98{bottom:643.613333pt;}
.y1a{bottom:652.413333pt;}
.ybd{bottom:656.253333pt;}
.y106{bottom:657.853333pt;}
.yd4{bottom:658.013333pt;}
.y4d{bottom:659.613333pt;}
.y97{bottom:660.413333pt;}
.y19{bottom:669.373333pt;}
.ybc{bottom:672.893333pt;}
.yd3{bottom:674.493333pt;}
.y105{bottom:674.653333pt;}
.y4c{bottom:676.413333pt;}
.y96{bottom:677.053333pt;}
.y104{bottom:691.613333pt;}
.y4b{bottom:693.373333pt;}
.y18{bottom:694.173333pt;}
.ybb{bottom:698.013333pt;}
.yd2{bottom:699.293333pt;}
.y95{bottom:701.853333pt;}
.y103{bottom:708.413333pt;}
.y74{bottom:709.853333pt;}
.y4a{bottom:710.173333pt;}
.y17{bottom:710.973333pt;}
.yd1{bottom:712.893333pt;}
.yba{bottom:714.813333pt;}
.y49{bottom:726.653333pt;}
.y94{bottom:726.973333pt;}
.y16{bottom:727.933333pt;}
.y102{bottom:733.213333pt;}
.y73{bottom:734.973333pt;}
.yb9{bottom:741.053333pt;}
.y93{bottom:743.933333pt;}
.y15{bottom:744.733333pt;}
.y101{bottom:750.173333pt;}
.y48{bottom:751.933333pt;}
.y92{bottom:760.733333pt;}
.y14{bottom:761.693333pt;}
.y100{bottom:766.973333pt;}
.yb8{bottom:767.133333pt;}
.y47{bottom:768.733333pt;}
.y91{bottom:777.693333pt;}
.y13{bottom:778.493333pt;}
.yff{bottom:783.933333pt;}
.y46{bottom:785.693333pt;}
.yb7{bottom:793.213333pt;}
.y90{bottom:794.173333pt;}
.y12{bottom:795.293333pt;}
.yfe{bottom:800.733333pt;}
.y45{bottom:802.493333pt;}
.yb6{bottom:811.013333pt;}
.y11{bottom:812.293333pt;}
.yfd{bottom:817.573333pt;}
.y44{bottom:819.333333pt;}
.y10{bottom:829.093333pt;}
.y43{bottom:836.293333pt;}
.yfc{bottom:842.533333pt;}
.yf{bottom:846.053333pt;}
.y42{bottom:853.093333pt;}
.yfb{bottom:859.333333pt;}
.ye{bottom:862.853333pt;}
.y41{bottom:870.053333pt;}
.yfa{bottom:876.293333pt;}
.yd{bottom:879.333333pt;}
.y8f{bottom:886.533333pt;}
.y40{bottom:886.853333pt;}
.yf9{bottom:893.093333pt;}
.y3f{bottom:903.653333pt;}
.yf8{bottom:909.893333pt;}
.y8e{bottom:911.653333pt;}
.yc{bottom:919.333333pt;}
.y3e{bottom:920.613333pt;}
.yf7{bottom:926.533333pt;}
.y8d{bottom:928.613333pt;}
.yb{bottom:936.133333pt;}
.yb5{bottom:937.093333pt;}
.y3d{bottom:937.413333pt;}
.y72{bottom:945.413333pt;}
.ya{bottom:946.053333pt;}
.yf6{bottom:951.653333pt;}
.y3c{bottom:954.373333pt;}
.y71{bottom:962.373333pt;}
.yf5{bottom:968.613333pt;}
.y9{bottom:969.573333pt;}
.y3b{bottom:971.173333pt;}
.y70{bottom:979.173333pt;}
.y3a{bottom:987.813333pt;}
.yf4{bottom:994.693333pt;}
.y8{bottom:995.813333pt;}
.y6f{bottom:996.133333pt;}
.yf3{bottom:1011.653333pt;}
.y7{bottom:1012.613333pt;}
.y8c{bottom:1012.933333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1048.160000pt;}
.y5{bottom:1050.400000pt;}
.y1{bottom:1066.880000pt;}
.h10{height:16.786667pt;}
.h6{height:20.960000pt;}
.ha{height:36.431250pt;}
.h9{height:37.410000pt;}
.h7{height:46.593750pt;}
.hc{height:48.530000pt;}
.he{height:52.785000pt;}
.hb{height:57.758750pt;}
.hd{height:57.787500pt;}
.h4{height:58.563750pt;}
.h8{height:59.340000pt;}
.h5{height:61.410000pt;}
.h3{height:62.812500pt;}
.hf{height:65.781915pt;}
.h11{height:67.538667pt;}
.h13{height:67.552000pt;}
.h2{height:78.045000pt;}
.h12{height:84.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:43.352000pt;}
.w2{width:134.266667pt;}
.w5{width:252.493333pt;}
.w4{width:252.706667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x11{left:10.400000pt;}
.x4{left:15.040000pt;}
.x16{left:17.434667pt;}
.x1{left:67.200000pt;}
.x13{left:68.520000pt;}
.x7{left:78.432000pt;}
.xb{left:86.112000pt;}
.x9{left:94.272000pt;}
.x15{left:101.746667pt;}
.x5{left:116.832000pt;}
.x10{left:122.592000pt;}
.x12{left:166.586667pt;}
.xa{left:206.106667pt;}
.xf{left:265.026667pt;}
.x6{left:344.546667pt;}
.xd{left:365.666667pt;}
.x8{left:376.226667pt;}
.x14{left:419.946667pt;}
.xc{left:560.453333pt;}
.xe{left:570.533333pt;}
.x3{left:598.693333pt;}
.x2{left:703.333333pt;}
}




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