
    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_da27a4478f320a4fa437c639.woff')format("woff");}.ff1{font-family:ff1;line-height:0.968262;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_be89ecb6868272fea1cde505.woff')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_e146174688b4d53133268bdf.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_879847c3cc69999f37184f47.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ea328924a347bcf4160c0232.woff')format("woff");}.ff5{font-family:ff5;line-height:0.968262;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_ff4474623472e90580a8c2f0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.046387;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_bbb48ce253c3c48b25a64e6e.woff')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_f1967365f77bfa9cbc40d90b.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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.223800px;}
.lse{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.lsf{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.109200px;}
.ls17{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.306000px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.365760px;}
.ls3{letter-spacing:0.745920px;}
.ls12{letter-spacing:20.880000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-77.760000px;}
.wsf{word-spacing:-66.240000px;}
.ws5{word-spacing:-19.431360px;}
.ws10{word-spacing:-16.822200px;}
.ws12{word-spacing:-16.712400px;}
.ws11{word-spacing:-16.669200px;}
.wse{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.733600px;}
.ws2{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.328000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.wsc{word-spacing:-10.980000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.wsd{word-spacing:0.000000px;}
._17{margin-left:-4.948560px;}
._10{margin-left:-3.420720px;}
._8{margin-left:-2.409840px;}
._0{margin-left:-1.254240px;}
._2{width:1.030320px;}
._3{width:2.358480px;}
._6{width:3.420960px;}
._d{width:4.429200px;}
._7{width:5.436480px;}
._5{width:6.693120px;}
._4{width:7.709040px;}
._1e{width:8.721360px;}
._f{width:9.769680px;}
._b{width:10.921680px;}
._a{width:11.937600px;}
._16{width:13.181760px;}
._18{width:14.423280px;}
._c{width:16.194960px;}
._e{width:17.414880px;}
._1a{width:18.438960px;}
._19{width:19.644960px;}
._15{width:21.196800px;}
._9{width:22.574880px;}
._1b{width:24.243840px;}
._1c{width:25.568640px;}
._2d{width:27.688320px;}
._1d{width:29.344320px;}
._2c{width:30.801600px;}
._2e{width:32.258880px;}
._21{width:33.425280px;}
._2b{width:35.372160px;}
._13{width:36.564480px;}
._14{width:37.611360px;}
._24{width:39.614880px;}
._20{width:41.232000px;}
._26{width:52.727040px;}
._25{width:54.515520px;}
._22{width:58.291200px;}
._23{width:59.407680px;}
._28{width:61.470720px;}
._29{width:63.524160px;}
._12{width:71.256000px;}
._30{width:79.951680px;}
._32{width:81.267840px;}
._31{width:82.318800px;}
._33{width:84.915360px;}
._2f{width:105.840000px;}
._11{width:111.600000px;}
._1f{width:126.713520px;}
._2a{width:130.854720px;}
._27{width:185.727360px;}
._1{width:1331.008800px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:3.600000px;}
.y93{bottom:3.780000px;}
.y2{bottom:6.840000px;}
.y95{bottom:13.140000px;}
.ya4{bottom:13.320000px;}
.y8a{bottom:14.220000px;}
.y9f{bottom:22.500000px;}
.y92{bottom:22.680000px;}
.y9a{bottom:32.040000px;}
.yac{bottom:32.070000px;}
.y94{bottom:32.220000px;}
.y9e{bottom:41.580000px;}
.yaa{bottom:41.610000px;}
.y91{bottom:41.760000px;}
.y89{bottom:45.360000px;}
.ya3{bottom:51.120000px;}
.yab{bottom:51.150000px;}
.y99{bottom:51.165000px;}
.ya7{bottom:60.480000px;}
.ya9{bottom:60.510000px;}
.y9d{bottom:60.525000px;}
.ya1{bottom:60.660000px;}
.yaf{bottom:70.020000px;}
.y98{bottom:70.065000px;}
.ya2{bottom:70.200000px;}
.y4{bottom:70.416000px;}
.y88{bottom:76.320000px;}
.yb0{bottom:79.560000px;}
.y9c{bottom:79.605000px;}
.ya5{bottom:79.740000px;}
.y97{bottom:88.965000px;}
.yae{bottom:89.100000px;}
.yb2{bottom:98.460000px;}
.y9b{bottom:98.505000px;}
.y87{bottom:107.460000px;}
.y3e{bottom:116.136000px;}
.yb1{bottom:117.540000px;}
.y84{bottom:120.636000px;}
.yc3{bottom:124.596000px;}
.y74{bottom:129.816000px;}
.y3d{bottom:135.036000px;}
.y86{bottom:138.450000px;}
.y83{bottom:139.536000px;}
.yc2{bottom:143.676000px;}
.y73{bottom:148.896000px;}
.y3c{bottom:153.930000px;}
.y82{bottom:158.610000px;}
.yc1{bottom:162.570000px;}
.y72{bottom:167.790000px;}
.y3b{bottom:173.010000px;}
.y81{bottom:177.510000px;}
.yc0{bottom:181.470000px;}
.y71{bottom:186.870000px;}
.y3a{bottom:191.910000px;}
.y80{bottom:196.590000px;}
.ybf{bottom:200.550000px;}
.y70{bottom:205.770000px;}
.y39{bottom:210.990000px;}
.y7f{bottom:215.490000px;}
.ybe{bottom:219.450000px;}
.y6f{bottom:224.670000px;}
.y38{bottom:229.890000px;}
.y7e{bottom:234.390000px;}
.ybd{bottom:238.530000px;}
.y6e{bottom:243.750000px;}
.y8f{bottom:243.930000px;}
.y37{bottom:248.970000px;}
.ybc{bottom:257.430000px;}
.y6d{bottom:262.650000px;}
.y36{bottom:267.870000px;}
.y7d{bottom:271.290000px;}
.ybb{bottom:276.330000px;}
.y6c{bottom:281.730000px;}
.y35{bottom:286.770000px;}
.yba{bottom:295.410000px;}
.y6b{bottom:300.630000px;}
.y8e{bottom:301.350000px;}
.y34{bottom:305.850000px;}
.y7c{bottom:308.190000px;}
.yb9{bottom:314.310000px;}
.y6a{bottom:319.530000px;}
.y33{bottom:323.670000px;}
.yb8{bottom:333.390000px;}
.y32{bottom:337.395000px;}
.y69{bottom:338.655000px;}
.y7b{bottom:345.315000px;}
.y31{bottom:351.975000px;}
.yb7{bottom:352.335000px;}
.y68{bottom:357.555000px;}
.y8d{bottom:357.915000px;}
.y30{bottom:369.255000px;}
.yb6{bottom:371.235000px;}
.y67{bottom:376.635000px;}
.y7a{bottom:382.215000px;}
.y2f{bottom:386.535000px;}
.yb5{bottom:390.315000px;}
.y66{bottom:395.535000px;}
.y2e{bottom:403.815000px;}
.yb4{bottom:409.215000px;}
.y65{bottom:414.435000px;}
.y8b{bottom:417.855000px;}
.y79{bottom:419.115000px;}
.y2d{bottom:420.915000px;}
.yb3{bottom:428.295000px;}
.y64{bottom:433.515000px;}
.y2c{bottom:438.195000px;}
.yad{bottom:444.315000px;}
.y63{bottom:452.415000px;}
.y2b{bottom:455.475000px;}
.y78{bottom:456.195000px;}
.y85{bottom:468.615000px;}
.y62{bottom:471.495000px;}
.y2a{bottom:472.755000px;}
.y29{bottom:490.035000px;}
.y61{bottom:490.395000px;}
.y77{bottom:493.095000px;}
.y28{bottom:507.135000px;}
.y60{bottom:509.295000px;}
.y27{bottom:524.415000px;}
.y5f{bottom:528.375000px;}
.y76{bottom:530.175000px;}
.y26{bottom:541.695000px;}
.y5e{bottom:547.275000px;}
.y25{bottom:558.975000px;}
.y5d{bottom:566.355000px;}
.y75{bottom:567.075000px;}
.y24{bottom:576.255000px;}
.ya8{bottom:577.875000px;}
.y5c{bottom:585.255000px;}
.y23{bottom:593.535000px;}
.y5b{bottom:604.365000px;}
.y22{bottom:610.665000px;}
.y5a{bottom:623.265000px;}
.y21{bottom:627.945000px;}
.y59{bottom:642.165000px;}
.y20{bottom:645.225000px;}
.ya6{bottom:654.585000px;}
.y58{bottom:661.245000px;}
.y1f{bottom:662.505000px;}
.y1e{bottom:679.785000px;}
.y57{bottom:680.145000px;}
.y1d{bottom:697.065000px;}
.y56{bottom:699.225000px;}
.y1c{bottom:714.165000px;}
.y55{bottom:718.125000px;}
.ya0{bottom:731.085000px;}
.y1b{bottom:731.445000px;}
.y54{bottom:737.025000px;}
.y1a{bottom:748.725000px;}
.y53{bottom:756.105000px;}
.y19{bottom:766.005000px;}
.y52{bottom:775.005000px;}
.y18{bottom:783.285000px;}
.y51{bottom:794.085000px;}
.y17{bottom:800.565000px;}
.y50{bottom:812.985000px;}
.y16{bottom:817.665000px;}
.y96{bottom:826.845000px;}
.y4f{bottom:831.885000px;}
.y15{bottom:834.945000px;}
.y4e{bottom:850.965000px;}
.y14{bottom:852.225000px;}
.y13{bottom:869.505000px;}
.y4d{bottom:869.865000px;}
.y12{bottom:887.190000px;}
.y4c{bottom:888.990000px;}
.y11{bottom:905.730000px;}
.y4b{bottom:907.890000px;}
.y4a{bottom:926.790000px;}
.y10{bottom:928.230000px;}
.yf{bottom:940.650000px;}
.y90{bottom:941.370000px;}
.y49{bottom:945.870000px;}
.ye{bottom:959.730000px;}
.y48{bottom:964.770000px;}
.yd{bottom:979.170000px;}
.y47{bottom:983.850000px;}
.yc{bottom:1001.490000px;}
.y46{bottom:1002.750000px;}
.y45{bottom:1021.650000px;}
.yb{bottom:1023.990000px;}
.y44{bottom:1040.730000px;}
.ya{bottom:1046.310000px;}
.y43{bottom:1059.630000px;}
.y9{bottom:1067.910000px;}
.y42{bottom:1078.710000px;}
.y8{bottom:1085.190000px;}
.y41{bottom:1097.610000px;}
.y7{bottom:1102.290000px;}
.y40{bottom:1116.690000px;}
.y6{bottom:1119.570000px;}
.y3f{bottom:1135.590000px;}
.y5{bottom:1136.850000px;}
.y3{bottom:1154.160000px;}
.y1{bottom:1168.200000px;}
.h12{height:18.900000px;}
.h2{height:26.640000px;}
.hb{height:32.292422px;}
.hf{height:34.036523px;}
.h5{height:40.066523px;}
.h6{height:42.164648px;}
.hd{height:43.156758px;}
.h9{height:46.736719px;}
.h13{height:47.836406px;}
.he{height:49.255313px;}
.h4{height:49.634648px;}
.h3{height:51.996094px;}
.ha{height:53.224453px;}
.h16{height:54.596250px;}
.hc{height:55.016719px;}
.h8{height:56.155781px;}
.h14{height:57.060000px;}
.h11{height:59.800781px;}
.h7{height:64.584844px;}
.h18{height:75.780000px;}
.h19{height:75.816000px;}
.h17{height:95.040000px;}
.h15{height:113.796000px;}
.h1a{height:132.840000px;}
.h10{height:155.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.wc{width:95.580000px;}
.w9{width:95.616000px;}
.wb{width:106.416000px;}
.w8{width:117.000000px;}
.wa{width:148.896000px;}
.w5{width:375.375000px;}
.w7{width:378.075000px;}
.w6{width:378.255000px;}
.w3{width:619.305000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x1c{left:13.860000px;}
.x1b{left:19.620000px;}
.x23{left:21.060000px;}
.x21{left:22.860000px;}
.x20{left:25.920000px;}
.x18{left:27.180000px;}
.x16{left:28.485000px;}
.x1e{left:32.940000px;}
.x19{left:34.560000px;}
.x11{left:43.425000px;}
.x17{left:79.425000px;}
.x10{left:87.525000px;}
.x14{left:89.685000px;}
.x12{left:106.605000px;}
.x4{left:108.035987px;}
.xd{left:109.475987px;}
.x1{left:116.136000px;}
.x15{left:128.565000px;}
.x25{left:150.509987px;}
.xc{left:162.029987px;}
.x5{left:167.249987px;}
.x3{left:169.230000px;}
.x9{left:174.809987px;}
.xa{left:217.469987px;}
.x1a{left:225.030000px;}
.x13{left:256.350000px;}
.xf{left:257.430000px;}
.xe{left:288.074987px;}
.x8{left:310.394987px;}
.x1d{left:320.655000px;}
.x6{left:368.174987px;}
.xb{left:420.194987px;}
.x1f{left:437.655000px;}
.x7{left:446.474987px;}
.x22{left:586.545000px;}
.x24{left:692.970000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.198933pt;}
.lse{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.lsf{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.097067pt;}
.ls17{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.272000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.325120pt;}
.ls3{letter-spacing:0.663040pt;}
.ls12{letter-spacing:18.560000pt;}
.ws4{word-spacing:-69.120000pt;}
.wsf{word-spacing:-58.880000pt;}
.ws5{word-spacing:-17.272320pt;}
.ws10{word-spacing:-14.953067pt;}
.ws12{word-spacing:-14.855467pt;}
.ws11{word-spacing:-14.817067pt;}
.wse{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.736000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.wsc{word-spacing:-9.760000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsd{word-spacing:0.000000pt;}
._17{margin-left:-4.398720pt;}
._10{margin-left:-3.040640pt;}
._8{margin-left:-2.142080pt;}
._0{margin-left:-1.114880pt;}
._2{width:0.915840pt;}
._3{width:2.096427pt;}
._6{width:3.040853pt;}
._d{width:3.937067pt;}
._7{width:4.832427pt;}
._5{width:5.949440pt;}
._4{width:6.852480pt;}
._1e{width:7.752320pt;}
._f{width:8.684160pt;}
._b{width:9.708160pt;}
._a{width:10.611200pt;}
._16{width:11.717120pt;}
._18{width:12.820693pt;}
._c{width:14.395520pt;}
._e{width:15.479893pt;}
._1a{width:16.390187pt;}
._19{width:17.462187pt;}
._15{width:18.841600pt;}
._9{width:20.066560pt;}
._1b{width:21.550080pt;}
._1c{width:22.727680pt;}
._2d{width:24.611840pt;}
._1d{width:26.083840pt;}
._2c{width:27.379200pt;}
._2e{width:28.674560pt;}
._21{width:29.711360pt;}
._2b{width:31.441920pt;}
._13{width:32.501760pt;}
._14{width:33.432320pt;}
._24{width:35.213227pt;}
._20{width:36.650667pt;}
._26{width:46.868480pt;}
._25{width:48.458240pt;}
._22{width:51.814400pt;}
._23{width:52.806827pt;}
._28{width:54.640640pt;}
._29{width:56.465920pt;}
._12{width:63.338667pt;}
._30{width:71.068160pt;}
._32{width:72.238080pt;}
._31{width:73.172267pt;}
._33{width:75.480320pt;}
._2f{width:94.080000pt;}
._11{width:99.200000pt;}
._1f{width:112.634240pt;}
._2a{width:116.315307pt;}
._27{width:165.090987pt;}
._1{width:1183.118933pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:3.200000pt;}
.y93{bottom:3.360000pt;}
.y2{bottom:6.080000pt;}
.y95{bottom:11.680000pt;}
.ya4{bottom:11.840000pt;}
.y8a{bottom:12.640000pt;}
.y9f{bottom:20.000000pt;}
.y92{bottom:20.160000pt;}
.y9a{bottom:28.480000pt;}
.yac{bottom:28.506667pt;}
.y94{bottom:28.640000pt;}
.y9e{bottom:36.960000pt;}
.yaa{bottom:36.986667pt;}
.y91{bottom:37.120000pt;}
.y89{bottom:40.320000pt;}
.ya3{bottom:45.440000pt;}
.yab{bottom:45.466667pt;}
.y99{bottom:45.480000pt;}
.ya7{bottom:53.760000pt;}
.ya9{bottom:53.786667pt;}
.y9d{bottom:53.800000pt;}
.ya1{bottom:53.920000pt;}
.yaf{bottom:62.240000pt;}
.y98{bottom:62.280000pt;}
.ya2{bottom:62.400000pt;}
.y4{bottom:62.592000pt;}
.y88{bottom:67.840000pt;}
.yb0{bottom:70.720000pt;}
.y9c{bottom:70.760000pt;}
.ya5{bottom:70.880000pt;}
.y97{bottom:79.080000pt;}
.yae{bottom:79.200000pt;}
.yb2{bottom:87.520000pt;}
.y9b{bottom:87.560000pt;}
.y87{bottom:95.520000pt;}
.y3e{bottom:103.232000pt;}
.yb1{bottom:104.480000pt;}
.y84{bottom:107.232000pt;}
.yc3{bottom:110.752000pt;}
.y74{bottom:115.392000pt;}
.y3d{bottom:120.032000pt;}
.y86{bottom:123.066667pt;}
.y83{bottom:124.032000pt;}
.yc2{bottom:127.712000pt;}
.y73{bottom:132.352000pt;}
.y3c{bottom:136.826667pt;}
.y82{bottom:140.986667pt;}
.yc1{bottom:144.506667pt;}
.y72{bottom:149.146667pt;}
.y3b{bottom:153.786667pt;}
.y81{bottom:157.786667pt;}
.yc0{bottom:161.306667pt;}
.y71{bottom:166.106667pt;}
.y3a{bottom:170.586667pt;}
.y80{bottom:174.746667pt;}
.ybf{bottom:178.266667pt;}
.y70{bottom:182.906667pt;}
.y39{bottom:187.546667pt;}
.y7f{bottom:191.546667pt;}
.ybe{bottom:195.066667pt;}
.y6f{bottom:199.706667pt;}
.y38{bottom:204.346667pt;}
.y7e{bottom:208.346667pt;}
.ybd{bottom:212.026667pt;}
.y6e{bottom:216.666667pt;}
.y8f{bottom:216.826667pt;}
.y37{bottom:221.306667pt;}
.ybc{bottom:228.826667pt;}
.y6d{bottom:233.466667pt;}
.y36{bottom:238.106667pt;}
.y7d{bottom:241.146667pt;}
.ybb{bottom:245.626667pt;}
.y6c{bottom:250.426667pt;}
.y35{bottom:254.906667pt;}
.yba{bottom:262.586667pt;}
.y6b{bottom:267.226667pt;}
.y8e{bottom:267.866667pt;}
.y34{bottom:271.866667pt;}
.y7c{bottom:273.946667pt;}
.yb9{bottom:279.386667pt;}
.y6a{bottom:284.026667pt;}
.y33{bottom:287.706667pt;}
.yb8{bottom:296.346667pt;}
.y32{bottom:299.906667pt;}
.y69{bottom:301.026667pt;}
.y7b{bottom:306.946667pt;}
.y31{bottom:312.866667pt;}
.yb7{bottom:313.186667pt;}
.y68{bottom:317.826667pt;}
.y8d{bottom:318.146667pt;}
.y30{bottom:328.226667pt;}
.yb6{bottom:329.986667pt;}
.y67{bottom:334.786667pt;}
.y7a{bottom:339.746667pt;}
.y2f{bottom:343.586667pt;}
.yb5{bottom:346.946667pt;}
.y66{bottom:351.586667pt;}
.y2e{bottom:358.946667pt;}
.yb4{bottom:363.746667pt;}
.y65{bottom:368.386667pt;}
.y8b{bottom:371.426667pt;}
.y79{bottom:372.546667pt;}
.y2d{bottom:374.146667pt;}
.yb3{bottom:380.706667pt;}
.y64{bottom:385.346667pt;}
.y2c{bottom:389.506667pt;}
.yad{bottom:394.946667pt;}
.y63{bottom:402.146667pt;}
.y2b{bottom:404.866667pt;}
.y78{bottom:405.506667pt;}
.y85{bottom:416.546667pt;}
.y62{bottom:419.106667pt;}
.y2a{bottom:420.226667pt;}
.y29{bottom:435.586667pt;}
.y61{bottom:435.906667pt;}
.y77{bottom:438.306667pt;}
.y28{bottom:450.786667pt;}
.y60{bottom:452.706667pt;}
.y27{bottom:466.146667pt;}
.y5f{bottom:469.666667pt;}
.y76{bottom:471.266667pt;}
.y26{bottom:481.506667pt;}
.y5e{bottom:486.466667pt;}
.y25{bottom:496.866667pt;}
.y5d{bottom:503.426667pt;}
.y75{bottom:504.066667pt;}
.y24{bottom:512.226667pt;}
.ya8{bottom:513.666667pt;}
.y5c{bottom:520.226667pt;}
.y23{bottom:527.586667pt;}
.y5b{bottom:537.213333pt;}
.y22{bottom:542.813333pt;}
.y5a{bottom:554.013333pt;}
.y21{bottom:558.173333pt;}
.y59{bottom:570.813333pt;}
.y20{bottom:573.533333pt;}
.ya6{bottom:581.853333pt;}
.y58{bottom:587.773333pt;}
.y1f{bottom:588.893333pt;}
.y1e{bottom:604.253333pt;}
.y57{bottom:604.573333pt;}
.y1d{bottom:619.613333pt;}
.y56{bottom:621.533333pt;}
.y1c{bottom:634.813333pt;}
.y55{bottom:638.333333pt;}
.ya0{bottom:649.853333pt;}
.y1b{bottom:650.173333pt;}
.y54{bottom:655.133333pt;}
.y1a{bottom:665.533333pt;}
.y53{bottom:672.093333pt;}
.y19{bottom:680.893333pt;}
.y52{bottom:688.893333pt;}
.y18{bottom:696.253333pt;}
.y51{bottom:705.853333pt;}
.y17{bottom:711.613333pt;}
.y50{bottom:722.653333pt;}
.y16{bottom:726.813333pt;}
.y96{bottom:734.973333pt;}
.y4f{bottom:739.453333pt;}
.y15{bottom:742.173333pt;}
.y4e{bottom:756.413333pt;}
.y14{bottom:757.533333pt;}
.y13{bottom:772.893333pt;}
.y4d{bottom:773.213333pt;}
.y12{bottom:788.613333pt;}
.y4c{bottom:790.213333pt;}
.y11{bottom:805.093333pt;}
.y4b{bottom:807.013333pt;}
.y4a{bottom:823.813333pt;}
.y10{bottom:825.093333pt;}
.yf{bottom:836.133333pt;}
.y90{bottom:836.773333pt;}
.y49{bottom:840.773333pt;}
.ye{bottom:853.093333pt;}
.y48{bottom:857.573333pt;}
.yd{bottom:870.373333pt;}
.y47{bottom:874.533333pt;}
.yc{bottom:890.213333pt;}
.y46{bottom:891.333333pt;}
.y45{bottom:908.133333pt;}
.yb{bottom:910.213333pt;}
.y44{bottom:925.093333pt;}
.ya{bottom:930.053333pt;}
.y43{bottom:941.893333pt;}
.y9{bottom:949.253333pt;}
.y42{bottom:958.853333pt;}
.y8{bottom:964.613333pt;}
.y41{bottom:975.653333pt;}
.y7{bottom:979.813333pt;}
.y40{bottom:992.613333pt;}
.y6{bottom:995.173333pt;}
.y3f{bottom:1009.413333pt;}
.y5{bottom:1010.533333pt;}
.y3{bottom:1025.920000pt;}
.y1{bottom:1038.400000pt;}
.h12{height:16.800000pt;}
.h2{height:23.680000pt;}
.hb{height:28.704375pt;}
.hf{height:30.254687pt;}
.h5{height:35.614687pt;}
.h6{height:37.479688pt;}
.hd{height:38.361562pt;}
.h9{height:41.543750pt;}
.h13{height:42.521250pt;}
.he{height:43.782500pt;}
.h4{height:44.119688pt;}
.h3{height:46.218750pt;}
.ha{height:47.310625pt;}
.h16{height:48.530000pt;}
.hc{height:48.903750pt;}
.h8{height:49.916250pt;}
.h14{height:50.720000pt;}
.h11{height:53.156250pt;}
.h7{height:57.408750pt;}
.h18{height:67.360000pt;}
.h19{height:67.392000pt;}
.h17{height:84.480000pt;}
.h15{height:101.152000pt;}
.h1a{height:118.080000pt;}
.h10{height:137.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.wc{width:84.960000pt;}
.w9{width:84.992000pt;}
.wb{width:94.592000pt;}
.w8{width:104.000000pt;}
.wa{width:132.352000pt;}
.w5{width:333.666667pt;}
.w7{width:336.066667pt;}
.w6{width:336.226667pt;}
.w3{width:550.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x1c{left:12.320000pt;}
.x1b{left:17.440000pt;}
.x23{left:18.720000pt;}
.x21{left:20.320000pt;}
.x20{left:23.040000pt;}
.x18{left:24.160000pt;}
.x16{left:25.320000pt;}
.x1e{left:29.280000pt;}
.x19{left:30.720000pt;}
.x11{left:38.600000pt;}
.x17{left:70.600000pt;}
.x10{left:77.800000pt;}
.x14{left:79.720000pt;}
.x12{left:94.760000pt;}
.x4{left:96.031988pt;}
.xd{left:97.311988pt;}
.x1{left:103.232000pt;}
.x15{left:114.280000pt;}
.x25{left:133.786655pt;}
.xc{left:144.026655pt;}
.x5{left:148.666655pt;}
.x3{left:150.426667pt;}
.x9{left:155.386655pt;}
.xa{left:193.306655pt;}
.x1a{left:200.026667pt;}
.x13{left:227.866667pt;}
.xf{left:228.826667pt;}
.xe{left:256.066655pt;}
.x8{left:275.906655pt;}
.x1d{left:285.026667pt;}
.x6{left:327.266655pt;}
.xb{left:373.506655pt;}
.x1f{left:389.026667pt;}
.x7{left:396.866655pt;}
.x22{left:521.373333pt;}
.x24{left:615.973333pt;}
}




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