
    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_0b399950deea128b71f06795.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_2cd189394c7d652921f119ef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.981934;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e1476abf968c7d211dbc153a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bfb8c9008c2e290da67957e6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_224770b066bd79e3167b4197.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_87ca4e3041e8bb29d6f5c6db.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_15a8eb934c234b8264294baa.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3625fcb08cdb27b7d4b51bb7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6e9b5373029fa629bed2653f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_910958351cef16da766b89a6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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:ffc;src:url('chunks/assets/font_d36a629cbd76b3aa26408b1c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls8{letter-spacing:0.144720px;}
.ls6{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.ls5{letter-spacing:5.940000px;}
.ls11{letter-spacing:10.260000px;}
.ls7{letter-spacing:130.500000px;}
.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;}
}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws8{word-spacing:-10.980000px;}
.wsa{word-spacing:0.000000px;}
._10{margin-left:-9.167520px;}
._22{margin-left:-8.003520px;}
._6{margin-left:-6.369840px;}
._2{margin-left:-5.016960px;}
._5{margin-left:-3.211200px;}
._0{margin-left:-1.224000px;}
._1{width:1.092000px;}
._8{width:2.234880px;}
._b{width:3.888240px;}
._11{width:4.912320px;}
._c{width:6.035760px;}
._7{width:7.558560px;}
._a{width:9.502320px;}
._9{width:11.039280px;}
._16{width:12.850560px;}
._14{width:14.506560px;}
._17{width:15.557760px;}
._13{width:18.160080px;}
._18{width:19.265760px;}
._d{width:20.437920px;}
._12{width:22.589280px;}
._1e{width:23.594880px;}
._f{width:24.724320px;}
._e{width:25.995600px;}
._1f{width:27.116640px;}
._21{width:28.558560px;}
._20{width:30.072960px;}
._15{width:32.325120px;}
._1d{width:43.833600px;}
._19{width:164.208960px;}
._1b{width:186.001920px;}
._1a{width:204.615360px;}
._1c{width:256.017600px;}
._4{width:358.140000px;}
._3{width:1104.035520px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y88{bottom:3.600000px;}
.y9c{bottom:3.780000px;}
.y2{bottom:7.740000px;}
.y78{bottom:9.000000px;}
.y8b{bottom:12.780000px;}
.y95{bottom:14.445000px;}
.y7c{bottom:21.060000px;}
.y7a{bottom:21.240000px;}
.y87{bottom:22.680000px;}
.y8d{bottom:31.680000px;}
.y8a{bottom:31.860000px;}
.y94{bottom:33.525000px;}
.y4{bottom:56.340000px;}
.y76{bottom:114.876000px;}
.y3f{bottom:120.096000px;}
.y75{bottom:133.776000px;}
.y3e{bottom:138.996000px;}
.ya0{bottom:140.976000px;}
.y74{bottom:152.850000px;}
.y3d{bottom:158.070000px;}
.y9f{bottom:159.870000px;}
.y73{bottom:171.750000px;}
.y9e{bottom:175.890000px;}
.y3c{bottom:176.970000px;}
.y72{bottom:190.830000px;}
.y9d{bottom:195.690000px;}
.y3b{bottom:195.870000px;}
.y71{bottom:209.730000px;}
.y3a{bottom:214.950000px;}
.y9b{bottom:215.310000px;}
.y70{bottom:228.630000px;}
.y39{bottom:233.850000px;}
.y9a{bottom:238.710000px;}
.y6f{bottom:247.710000px;}
.y38{bottom:252.930000px;}
.y99{bottom:257.790000px;}
.y6e{bottom:266.610000px;}
.y37{bottom:271.830000px;}
.y98{bottom:276.690000px;}
.y6d{bottom:285.690000px;}
.y36{bottom:289.650000px;}
.y97{bottom:295.770000px;}
.y35{bottom:303.510000px;}
.y6c{bottom:304.590000px;}
.y96{bottom:314.670000px;}
.y34{bottom:317.910000px;}
.y6b{bottom:323.490000px;}
.y93{bottom:330.690000px;}
.y33{bottom:335.190000px;}
.y6a{bottom:342.615000px;}
.y32{bottom:352.515000px;}
.y69{bottom:361.515000px;}
.y31{bottom:369.795000px;}
.y92{bottom:380.235000px;}
.y68{bottom:380.595000px;}
.y30{bottom:387.075000px;}
.y67{bottom:399.495000px;}
.y2f{bottom:404.175000px;}
.y66{bottom:418.575000px;}
.y2e{bottom:421.455000px;}
.y91{bottom:427.935000px;}
.y65{bottom:437.475000px;}
.y2d{bottom:438.735000px;}
.y2c{bottom:456.015000px;}
.y64{bottom:456.375000px;}
.y2b{bottom:473.295000px;}
.y63{bottom:475.455000px;}
.y90{bottom:475.815000px;}
.y2a{bottom:490.575000px;}
.y62{bottom:494.355000px;}
.y29{bottom:507.675000px;}
.y61{bottom:513.435000px;}
.y8f{bottom:523.515000px;}
.y28{bottom:524.955000px;}
.y60{bottom:532.335000px;}
.y27{bottom:542.235000px;}
.y5f{bottom:551.235000px;}
.y26{bottom:559.515000px;}
.y5e{bottom:570.315000px;}
.y8e{bottom:571.215000px;}
.y25{bottom:576.795000px;}
.y5d{bottom:589.215000px;}
.y24{bottom:594.075000px;}
.y5c{bottom:608.325000px;}
.y23{bottom:611.205000px;}
.y8c{bottom:619.125000px;}
.y5b{bottom:627.225000px;}
.y22{bottom:628.485000px;}
.y21{bottom:645.765000px;}
.y5a{bottom:646.125000px;}
.y20{bottom:663.045000px;}
.y59{bottom:665.205000px;}
.y89{bottom:666.825000px;}
.y1f{bottom:680.325000px;}
.y58{bottom:684.105000px;}
.y1e{bottom:697.425000px;}
.y57{bottom:703.185000px;}
.y1d{bottom:714.705000px;}
.y56{bottom:722.085000px;}
.y1c{bottom:731.985000px;}
.y55{bottom:740.985000px;}
.y1b{bottom:749.265000px;}
.y86{bottom:757.005000px;}
.y54{bottom:760.065000px;}
.y1a{bottom:766.545000px;}
.y85{bottom:775.905000px;}
.y53{bottom:778.965000px;}
.y19{bottom:783.825000px;}
.y84{bottom:794.985000px;}
.y52{bottom:798.045000px;}
.y18{bottom:800.925000px;}
.y83{bottom:813.885000px;}
.y51{bottom:816.945000px;}
.y17{bottom:818.205000px;}
.y82{bottom:832.965000px;}
.y16{bottom:835.485000px;}
.y50{bottom:835.845000px;}
.y81{bottom:851.865000px;}
.y15{bottom:852.765000px;}
.y4f{bottom:854.925000px;}
.y14{bottom:870.045000px;}
.y80{bottom:870.990000px;}
.y4e{bottom:873.870000px;}
.y7f{bottom:887.010000px;}
.y13{bottom:887.370000px;}
.y4d{bottom:892.950000px;}
.y12{bottom:904.470000px;}
.y4c{bottom:911.850000px;}
.y11{bottom:922.290000px;}
.y7e{bottom:924.090000px;}
.y4b{bottom:930.930000px;}
.y10{bottom:940.830000px;}
.y4a{bottom:949.830000px;}
.yf{bottom:957.930000px;}
.y7d{bottom:961.350000px;}
.y49{bottom:968.730000px;}
.ye{bottom:975.750000px;}
.y48{bottom:987.810000px;}
.yd{bottom:994.650000px;}
.y7b{bottom:998.610000px;}
.y47{bottom:1006.710000px;}
.yc{bottom:1014.090000px;}
.y46{bottom:1025.790000px;}
.y79{bottom:1035.690000px;}
.yb{bottom:1036.590000px;}
.y45{bottom:1044.690000px;}
.ya{bottom:1057.290000px;}
.y44{bottom:1063.590000px;}
.y9{bottom:1071.870000px;}
.y77{bottom:1072.950000px;}
.y43{bottom:1082.670000px;}
.y8{bottom:1089.150000px;}
.y42{bottom:1101.570000px;}
.y7{bottom:1106.430000px;}
.y41{bottom:1120.650000px;}
.y6{bottom:1123.530000px;}
.y40{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1163.880000px;}
.y1{bottom:1180.980000px;}
.h19{height:18.900000px;}
.h18{height:19.080000px;}
.h10{height:24.300000px;}
.h2{height:27.900000px;}
.hd{height:33.683203px;}
.h7{height:34.036523px;}
.h12{height:36.360000px;}
.h11{height:36.540000px;}
.h13{height:37.980000px;}
.h5{height:39.760312px;}
.ha{height:41.726953px;}
.h6{height:42.164648px;}
.hb{height:43.156758px;}
.he{height:46.251562px;}
.h9{height:46.736719px;}
.h15{height:46.980000px;}
.h14{height:47.160000px;}
.h16{height:47.196000px;}
.h17{height:48.816000px;}
.hc{height:49.255313px;}
.hf{height:54.596250px;}
.h8{height:54.864844px;}
.h3{height:57.867188px;}
.h4{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:35.640000px;}
.w5{width:36.720000px;}
.w2{width:62.100000px;}
.wc{width:62.676000px;}
.w7{width:63.396000px;}
.w9{width:93.456000px;}
.wd{width:105.480000px;}
.we{width:105.696000px;}
.w8{width:110.700000px;}
.w10{width:115.416000px;}
.wf{width:137.016000px;}
.wb{width:154.290000px;}
.w11{width:158.580000px;}
.w6{width:204.330000px;}
.w3{width:618.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:5.220000px;}
.x4{left:8.100000px;}
.x1c{left:15.120000px;}
.x1a{left:29.700000px;}
.x19{left:31.500000px;}
.x16{left:36.405000px;}
.x1f{left:46.485000px;}
.x22{left:49.140000px;}
.x1{left:108.036000px;}
.x6{left:113.975987px;}
.x23{left:144.035987px;}
.xc{left:161.129987px;}
.x3{left:170.130000px;}
.xe{left:190.650000px;}
.x7{left:208.829987px;}
.x14{left:213.150000px;}
.xf{left:228.270000px;}
.x1e{left:240.330000px;}
.x15{left:249.510000px;}
.x9{left:263.009987px;}
.x1d{left:324.974987px;}
.xa{left:341.714987px;}
.x13{left:343.334987px;}
.xd{left:346.034987px;}
.x20{left:378.075000px;}
.x8{left:379.514987px;}
.x17{left:404.535000px;}
.xb{left:420.734987px;}
.x10{left:433.335000px;}
.x5{left:446.474987px;}
.x18{left:468.105000px;}
.x21{left:494.205000px;}
.x11{left:497.445000px;}
.x1b{left:574.305000px;}
.x12{left:609.045000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls8{letter-spacing:0.128640pt;}
.ls6{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls5{letter-spacing:5.280000pt;}
.ls11{letter-spacing:9.120000pt;}
.ls7{letter-spacing:116.000000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.760000pt;}
.wsa{word-spacing:0.000000pt;}
._10{margin-left:-8.148907pt;}
._22{margin-left:-7.114240pt;}
._6{margin-left:-5.662080pt;}
._2{margin-left:-4.459520pt;}
._5{margin-left:-2.854400pt;}
._0{margin-left:-1.088000pt;}
._1{width:0.970667pt;}
._8{width:1.986560pt;}
._b{width:3.456213pt;}
._11{width:4.366507pt;}
._c{width:5.365120pt;}
._7{width:6.718720pt;}
._a{width:8.446507pt;}
._9{width:9.812693pt;}
._16{width:11.422720pt;}
._14{width:12.894720pt;}
._17{width:13.829120pt;}
._13{width:16.142293pt;}
._18{width:17.125120pt;}
._d{width:18.167040pt;}
._12{width:20.079360pt;}
._1e{width:20.973227pt;}
._f{width:21.977173pt;}
._e{width:23.107200pt;}
._1f{width:24.103680pt;}
._21{width:25.385387pt;}
._20{width:26.731520pt;}
._15{width:28.733440pt;}
._1d{width:38.963200pt;}
._19{width:145.963520pt;}
._1b{width:165.335040pt;}
._1a{width:181.880320pt;}
._1c{width:227.571200pt;}
._4{width:318.346667pt;}
._3{width:981.364907pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:3.200000pt;}
.y9c{bottom:3.360000pt;}
.y2{bottom:6.880000pt;}
.y78{bottom:8.000000pt;}
.y8b{bottom:11.360000pt;}
.y95{bottom:12.840000pt;}
.y7c{bottom:18.720000pt;}
.y7a{bottom:18.880000pt;}
.y87{bottom:20.160000pt;}
.y8d{bottom:28.160000pt;}
.y8a{bottom:28.320000pt;}
.y94{bottom:29.800000pt;}
.y4{bottom:50.080000pt;}
.y76{bottom:102.112000pt;}
.y3f{bottom:106.752000pt;}
.y75{bottom:118.912000pt;}
.y3e{bottom:123.552000pt;}
.ya0{bottom:125.312000pt;}
.y74{bottom:135.866667pt;}
.y3d{bottom:140.506667pt;}
.y9f{bottom:142.106667pt;}
.y73{bottom:152.666667pt;}
.y9e{bottom:156.346667pt;}
.y3c{bottom:157.306667pt;}
.y72{bottom:169.626667pt;}
.y9d{bottom:173.946667pt;}
.y3b{bottom:174.106667pt;}
.y71{bottom:186.426667pt;}
.y3a{bottom:191.066667pt;}
.y9b{bottom:191.386667pt;}
.y70{bottom:203.226667pt;}
.y39{bottom:207.866667pt;}
.y9a{bottom:212.186667pt;}
.y6f{bottom:220.186667pt;}
.y38{bottom:224.826667pt;}
.y99{bottom:229.146667pt;}
.y6e{bottom:236.986667pt;}
.y37{bottom:241.626667pt;}
.y98{bottom:245.946667pt;}
.y6d{bottom:253.946667pt;}
.y36{bottom:257.466667pt;}
.y97{bottom:262.906667pt;}
.y35{bottom:269.786667pt;}
.y6c{bottom:270.746667pt;}
.y96{bottom:279.706667pt;}
.y34{bottom:282.586667pt;}
.y6b{bottom:287.546667pt;}
.y93{bottom:293.946667pt;}
.y33{bottom:297.946667pt;}
.y6a{bottom:304.546667pt;}
.y32{bottom:313.346667pt;}
.y69{bottom:321.346667pt;}
.y31{bottom:328.706667pt;}
.y92{bottom:337.986667pt;}
.y68{bottom:338.306667pt;}
.y30{bottom:344.066667pt;}
.y67{bottom:355.106667pt;}
.y2f{bottom:359.266667pt;}
.y66{bottom:372.066667pt;}
.y2e{bottom:374.626667pt;}
.y91{bottom:380.386667pt;}
.y65{bottom:388.866667pt;}
.y2d{bottom:389.986667pt;}
.y2c{bottom:405.346667pt;}
.y64{bottom:405.666667pt;}
.y2b{bottom:420.706667pt;}
.y63{bottom:422.626667pt;}
.y90{bottom:422.946667pt;}
.y2a{bottom:436.066667pt;}
.y62{bottom:439.426667pt;}
.y29{bottom:451.266667pt;}
.y61{bottom:456.386667pt;}
.y8f{bottom:465.346667pt;}
.y28{bottom:466.626667pt;}
.y60{bottom:473.186667pt;}
.y27{bottom:481.986667pt;}
.y5f{bottom:489.986667pt;}
.y26{bottom:497.346667pt;}
.y5e{bottom:506.946667pt;}
.y8e{bottom:507.746667pt;}
.y25{bottom:512.706667pt;}
.y5d{bottom:523.746667pt;}
.y24{bottom:528.066667pt;}
.y5c{bottom:540.733333pt;}
.y23{bottom:543.293333pt;}
.y8c{bottom:550.333333pt;}
.y5b{bottom:557.533333pt;}
.y22{bottom:558.653333pt;}
.y21{bottom:574.013333pt;}
.y5a{bottom:574.333333pt;}
.y20{bottom:589.373333pt;}
.y59{bottom:591.293333pt;}
.y89{bottom:592.733333pt;}
.y1f{bottom:604.733333pt;}
.y58{bottom:608.093333pt;}
.y1e{bottom:619.933333pt;}
.y57{bottom:625.053333pt;}
.y1d{bottom:635.293333pt;}
.y56{bottom:641.853333pt;}
.y1c{bottom:650.653333pt;}
.y55{bottom:658.653333pt;}
.y1b{bottom:666.013333pt;}
.y86{bottom:672.893333pt;}
.y54{bottom:675.613333pt;}
.y1a{bottom:681.373333pt;}
.y85{bottom:689.693333pt;}
.y53{bottom:692.413333pt;}
.y19{bottom:696.733333pt;}
.y84{bottom:706.653333pt;}
.y52{bottom:709.373333pt;}
.y18{bottom:711.933333pt;}
.y83{bottom:723.453333pt;}
.y51{bottom:726.173333pt;}
.y17{bottom:727.293333pt;}
.y82{bottom:740.413333pt;}
.y16{bottom:742.653333pt;}
.y50{bottom:742.973333pt;}
.y81{bottom:757.213333pt;}
.y15{bottom:758.013333pt;}
.y4f{bottom:759.933333pt;}
.y14{bottom:773.373333pt;}
.y80{bottom:774.213333pt;}
.y4e{bottom:776.773333pt;}
.y7f{bottom:788.453333pt;}
.y13{bottom:788.773333pt;}
.y4d{bottom:793.733333pt;}
.y12{bottom:803.973333pt;}
.y4c{bottom:810.533333pt;}
.y11{bottom:819.813333pt;}
.y7e{bottom:821.413333pt;}
.y4b{bottom:827.493333pt;}
.y10{bottom:836.293333pt;}
.y4a{bottom:844.293333pt;}
.yf{bottom:851.493333pt;}
.y7d{bottom:854.533333pt;}
.y49{bottom:861.093333pt;}
.ye{bottom:867.333333pt;}
.y48{bottom:878.053333pt;}
.yd{bottom:884.133333pt;}
.y7b{bottom:887.653333pt;}
.y47{bottom:894.853333pt;}
.yc{bottom:901.413333pt;}
.y46{bottom:911.813333pt;}
.y79{bottom:920.613333pt;}
.yb{bottom:921.413333pt;}
.y45{bottom:928.613333pt;}
.ya{bottom:939.813333pt;}
.y44{bottom:945.413333pt;}
.y9{bottom:952.773333pt;}
.y77{bottom:953.733333pt;}
.y43{bottom:962.373333pt;}
.y8{bottom:968.133333pt;}
.y42{bottom:979.173333pt;}
.y7{bottom:983.493333pt;}
.y41{bottom:996.133333pt;}
.y6{bottom:998.693333pt;}
.y40{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1034.560000pt;}
.y1{bottom:1049.760000pt;}
.h19{height:16.800000pt;}
.h18{height:16.960000pt;}
.h10{height:21.600000pt;}
.h2{height:24.800000pt;}
.hd{height:29.940625pt;}
.h7{height:30.254687pt;}
.h12{height:32.320000pt;}
.h11{height:32.480000pt;}
.h13{height:33.760000pt;}
.h5{height:35.342500pt;}
.ha{height:37.090625pt;}
.h6{height:37.479688pt;}
.hb{height:38.361562pt;}
.he{height:41.112500pt;}
.h9{height:41.543750pt;}
.h15{height:41.760000pt;}
.h14{height:41.920000pt;}
.h16{height:41.952000pt;}
.h17{height:43.392000pt;}
.hc{height:43.782500pt;}
.hf{height:48.530000pt;}
.h8{height:48.768750pt;}
.h3{height:51.437500pt;}
.h4{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:31.680000pt;}
.w5{width:32.640000pt;}
.w2{width:55.200000pt;}
.wc{width:55.712000pt;}
.w7{width:56.352000pt;}
.w9{width:83.072000pt;}
.wd{width:93.760000pt;}
.we{width:93.952000pt;}
.w8{width:98.400000pt;}
.w10{width:102.592000pt;}
.wf{width:121.792000pt;}
.wb{width:137.146667pt;}
.w11{width:140.960000pt;}
.w6{width:181.626667pt;}
.w3{width:549.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.640000pt;}
.x4{left:7.200000pt;}
.x1c{left:13.440000pt;}
.x1a{left:26.400000pt;}
.x19{left:28.000000pt;}
.x16{left:32.360000pt;}
.x1f{left:41.320000pt;}
.x22{left:43.680000pt;}
.x1{left:96.032000pt;}
.x6{left:101.311988pt;}
.x23{left:128.031988pt;}
.xc{left:143.226655pt;}
.x3{left:151.226667pt;}
.xe{left:169.466667pt;}
.x7{left:185.626655pt;}
.x14{left:189.466667pt;}
.xf{left:202.906667pt;}
.x1e{left:213.626667pt;}
.x15{left:221.786667pt;}
.x9{left:233.786655pt;}
.x1d{left:288.866655pt;}
.xa{left:303.746655pt;}
.x13{left:305.186655pt;}
.xd{left:307.586655pt;}
.x20{left:336.066667pt;}
.x8{left:337.346655pt;}
.x17{left:359.586667pt;}
.xb{left:373.986655pt;}
.x10{left:385.186667pt;}
.x5{left:396.866655pt;}
.x18{left:416.093333pt;}
.x21{left:439.293333pt;}
.x11{left:442.173333pt;}
.x1b{left:510.493333pt;}
.x12{left:541.373333pt;}
}




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