
    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_3bdbf237a0663a71f56c4c1f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d38745508928fa9232985de6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_f611f2bbc62cc85462349bbb.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_e3ece7b2e4c0ccd3b86bb8d6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b17de1ab3c04b004bae19b69.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0217ef05401985d1a8e37348.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f003c6fa4279c723abf9651.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_16bba9c4f4ff518ade61ab2c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_6c1dab81a5eedafc90282d9f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5623dad7355e0b13e16edd81.woff')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-5.628000px;}
.ls1f{letter-spacing:-2.466000px;}
.lsf{letter-spacing:-2.250000px;}
.ls1a{letter-spacing:-1.740000px;}
.ls8{letter-spacing:-1.128000px;}
.ls7{letter-spacing:-0.876000px;}
.ls16{letter-spacing:-0.870000px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.240000px;}
.ls6{letter-spacing:1.128000px;}
.ls12{letter-spacing:1.230000px;}
.ls15{letter-spacing:1.524000px;}
.lsa{letter-spacing:1.525500px;}
.ls17{letter-spacing:1.705500px;}
.ls9{letter-spacing:1.794000px;}
.ls10{letter-spacing:2.034000px;}
.ls2{letter-spacing:2.142000px;}
.ls19{letter-spacing:2.178000px;}
.lsc{letter-spacing:2.250000px;}
.ls1d{letter-spacing:2.370000px;}
.lse{letter-spacing:2.430000px;}
.ls4{letter-spacing:12.555000px;}
.ls13{letter-spacing:16.875000px;}
.lsd{letter-spacing:26.055000px;}
.ls1{letter-spacing:30.375000px;}
.ls1e{letter-spacing:46.203000px;}
.ls18{letter-spacing:71.055000px;}
.ls0{letter-spacing:75.495000px;}
.lsb{letter-spacing:75.555000px;}
.ls1c{letter-spacing:87.387000px;}
.ls3{letter-spacing:93.495000px;}
.ls11{letter-spacing:179.175000px;}
.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;}
}
.wsd{word-spacing:-23.590500px;}
.wsc{word-spacing:-21.412500px;}
.ws6{word-spacing:-21.375000px;}
.ws3{word-spacing:-21.267000px;}
.ws5{word-spacing:-21.159000px;}
.ws2{word-spacing:-20.919000px;}
.ws9{word-spacing:-20.649000px;}
.ws7{word-spacing:-20.355000px;}
.ws1{word-spacing:-19.125000px;}
.wsa{word-spacing:-18.255000px;}
.wsb{word-spacing:-17.385000px;}
.ws8{word-spacing:-16.875000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._3{margin-left:-7.879800px;}
._16{margin-left:-5.979750px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._c{width:5.705850px;}
._a{width:7.154700px;}
._17{width:8.309100px;}
._37{width:9.923850px;}
._7{width:11.553300px;}
._9{width:13.274700px;}
._35{width:14.505000px;}
._12{width:16.413600px;}
._13{width:17.418300px;}
._b{width:20.425500px;}
._19{width:21.546300px;}
._26{width:23.400300px;}
._8{width:25.217400px;}
._18{width:26.682600px;}
._34{width:28.148850px;}
._1e{width:29.946450px;}
._1c{width:30.974850px;}
._1d{width:32.461050px;}
._23{width:34.134450px;}
._22{width:35.708850px;}
._2c{width:36.830550px;}
._1f{width:38.718300px;}
._20{width:39.924000px;}
._31{width:40.970250px;}
._1b{width:43.514100px;}
._1a{width:44.721150px;}
._2a{width:46.029000px;}
._14{width:48.519750px;}
._11{width:52.753500px;}
._10{width:53.840100px;}
._15{width:55.725150px;}
._2b{width:57.762750px;}
._40{width:59.895900px;}
._3b{width:61.698300px;}
._30{width:62.873550px;}
._21{width:66.984450px;}
._36{width:68.257500px;}
._2f{width:69.490650px;}
._2d{width:70.587300px;}
._e{width:71.756400px;}
._2e{width:72.870900px;}
._d{width:75.952500px;}
._f{width:77.622900px;}
._25{width:80.136600px;}
._38{width:88.077300px;}
._3a{width:89.363850px;}
._39{width:91.169850px;}
._24{width:93.834450px;}
._29{width:102.348450px;}
._28{width:103.350750px;}
._27{width:107.016750px;}
._33{width:178.764900px;}
._32{width:179.849550px;}
._3f{width:251.623950px;}
._3d{width:278.233200px;}
._3e{width:337.415250px;}
._3c{width:845.895000px;}
.fc2{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs7{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y38{bottom:4.500000px;}
.y30{bottom:4.515000px;}
.y35{bottom:5.625000px;}
.y46{bottom:7.875000px;}
.y51{bottom:7.890000px;}
.y4b{bottom:7.905000px;}
.y5{bottom:14.662500px;}
.y31{bottom:16.875000px;}
.y3a{bottom:16.890000px;}
.y41{bottom:16.912500px;}
.y4d{bottom:20.250000px;}
.y52{bottom:21.390000px;}
.y2f{bottom:29.265000px;}
.y3e{bottom:29.280000px;}
.y43{bottom:29.287500px;}
.y33{bottom:29.295000px;}
.y3{bottom:32.662500px;}
.y4e{bottom:32.670000px;}
.y48{bottom:33.750000px;}
.y50{bottom:33.765000px;}
.y4a{bottom:33.780000px;}
.y54{bottom:33.795000px;}
.y39{bottom:40.545000px;}
.y3c{bottom:41.655000px;}
.y40{bottom:41.662500px;}
.y3d{bottom:52.905000px;}
.y37{bottom:52.920000px;}
.y42{bottom:54.037500px;}
.y34{bottom:54.045000px;}
.y4{bottom:61.912500px;}
.y6e{bottom:119.362500px;}
.y44{bottom:120.487500px;}
.y2d{bottom:130.612500px;}
.y3f{bottom:144.112500px;}
.y6d{bottom:145.237500px;}
.y2c{bottom:156.480000px;}
.y6c{bottom:171.150000px;}
.y2b{bottom:182.400000px;}
.y6b{bottom:197.025000px;}
.y2a{bottom:208.320000px;}
.y3b{bottom:222.945000px;}
.y29{bottom:234.195000px;}
.y6a{bottom:248.850000px;}
.y28{bottom:260.100000px;}
.y69{bottom:274.725000px;}
.y27{bottom:286.005000px;}
.y68{bottom:300.630000px;}
.y36{bottom:301.755000px;}
.y26{bottom:311.895000px;}
.y67{bottom:326.550000px;}
.y25{bottom:336.675000px;}
.y66{bottom:352.425000px;}
.y24{bottom:362.550000px;}
.y65{bottom:378.330000px;}
.y32{bottom:379.455000px;}
.y23{bottom:388.455000px;}
.y64{bottom:403.095000px;}
.y22{bottom:414.375000px;}
.y63{bottom:429.000000px;}
.y21{bottom:440.250000px;}
.y62{bottom:454.905000px;}
.y2e{bottom:458.280000px;}
.y20{bottom:466.170000px;}
.y61{bottom:480.795000px;}
.y1f{bottom:492.075000px;}
.y60{bottom:506.700000px;}
.y1e{bottom:517.950000px;}
.y5f{bottom:532.575000px;}
.y1d{bottom:543.870000px;}
.y5e{bottom:558.480000px;}
.y1c{bottom:569.745000px;}
.y5d{bottom:584.400000px;}
.y1b{bottom:595.650000px;}
.y5c{bottom:610.275000px;}
.y1a{bottom:621.570000px;}
.y5b{bottom:636.195000px;}
.y19{bottom:646.320000px;}
.y5a{bottom:662.100000px;}
.y18{bottom:672.225000px;}
.y59{bottom:687.975000px;}
.y17{bottom:698.100000px;}
.y58{bottom:713.880000px;}
.y16{bottom:724.005000px;}
.y76{bottom:725.130000px;}
.y57{bottom:738.630000px;}
.y15{bottom:749.925000px;}
.y75{bottom:754.425000px;}
.y56{bottom:764.550000px;}
.y14{bottom:775.800000px;}
.y74{bottom:778.050000px;}
.y55{bottom:790.455000px;}
.y73{bottom:798.330000px;}
.y13{bottom:801.705000px;}
.y53{bottom:811.830000px;}
.y72{bottom:818.580000px;}
.y12{bottom:827.625000px;}
.y71{bottom:838.875000px;}
.y11{bottom:853.500000px;}
.y4f{bottom:869.280000px;}
.y70{bottom:878.295000px;}
.y10{bottom:879.420000px;}
.yf{bottom:905.295000px;}
.y6f{bottom:921.075000px;}
.y4c{bottom:927.825000px;}
.ye{bottom:931.200000px;}
.yd{bottom:957.120000px;}
.yc{bottom:981.870000px;}
.y49{bottom:985.245000px;}
.yb{bottom:1007.775000px;}
.ya{bottom:1033.650000px;}
.y47{bottom:1042.695000px;}
.y9{bottom:1059.570000px;}
.y8{bottom:1085.475000px;}
.y45{bottom:1100.100000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h11{height:25.912500px;}
.h5{height:40.537500px;}
.hc{height:48.412500px;}
.h14{height:50.662500px;}
.h12{height:51.787500px;}
.h13{height:51.810000px;}
.hb{height:53.415527px;}
.h9{height:58.196777px;}
.h10{height:59.804443px;}
.h16{height:67.137451px;}
.h3{height:68.027344px;}
.hf{height:72.075000px;}
.hd{height:73.200000px;}
.h8{height:75.043213px;}
.ha{height:75.080566px;}
.h7{height:77.097656px;}
.h15{height:78.629945px;}
.he{height:84.060791px;}
.h2{height:86.319141px;}
.h17{height:87.699243px;}
.h18{height:92.746582px;}
.h4{height:95.389453px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.w3{width:154.305000px;}
.w6{width:155.430000px;}
.w7{width:252.345000px;}
.w5{width:257.955000px;}
.w4{width:260.220000px;}
.w8{width:264.705000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:1.125000px;}
.x1b{left:3.375000px;}
.x25{left:5.625000px;}
.x3{left:6.750000px;}
.x13{left:7.860000px;}
.x17{left:15.750000px;}
.x26{left:22.500000px;}
.x1f{left:24.780000px;}
.x1e{left:25.905000px;}
.x1d{left:27.037500px;}
.x11{left:30.412500px;}
.x22{left:34.912500px;}
.x18{left:36.030000px;}
.x12{left:37.155000px;}
.xc{left:42.787500px;}
.x15{left:48.450000px;}
.x16{left:49.530000px;}
.x21{left:52.905000px;}
.x1c{left:54.030000px;}
.xb{left:57.450000px;}
.x1a{left:59.700000px;}
.x19{left:63.075000px;}
.x23{left:68.685000px;}
.x24{left:70.950000px;}
.x10{left:78.870000px;}
.x20{left:81.105000px;}
.x14{left:104.775000px;}
.xa{left:107.025000px;}
.x1{left:108.149987px;}
.xe{left:111.525000px;}
.x9{left:129.524987px;}
.x2b{left:161.054987px;}
.x2a{left:162.224987px;}
.x5{left:164.474987px;}
.x8{left:171.224987px;}
.x4{left:207.269987px;}
.xd{left:265.845000px;}
.x7{left:317.654987px;}
.x29{left:346.949987px;}
.x6{left:457.319987px;}
.x27{left:522.675000px;}
.xf{left:529.425000px;}
.x2{left:802.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-5.002667pt;}
.ls1f{letter-spacing:-2.192000pt;}
.lsf{letter-spacing:-2.000000pt;}
.ls1a{letter-spacing:-1.546667pt;}
.ls8{letter-spacing:-1.002667pt;}
.ls7{letter-spacing:-0.778667pt;}
.ls16{letter-spacing:-0.773333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls6{letter-spacing:1.002667pt;}
.ls12{letter-spacing:1.093333pt;}
.ls15{letter-spacing:1.354667pt;}
.lsa{letter-spacing:1.356000pt;}
.ls17{letter-spacing:1.516000pt;}
.ls9{letter-spacing:1.594667pt;}
.ls10{letter-spacing:1.808000pt;}
.ls2{letter-spacing:1.904000pt;}
.ls19{letter-spacing:1.936000pt;}
.lsc{letter-spacing:2.000000pt;}
.ls1d{letter-spacing:2.106667pt;}
.lse{letter-spacing:2.160000pt;}
.ls4{letter-spacing:11.160000pt;}
.ls13{letter-spacing:15.000000pt;}
.lsd{letter-spacing:23.160000pt;}
.ls1{letter-spacing:27.000000pt;}
.ls1e{letter-spacing:41.069333pt;}
.ls18{letter-spacing:63.160000pt;}
.ls0{letter-spacing:67.106667pt;}
.lsb{letter-spacing:67.160000pt;}
.ls1c{letter-spacing:77.677333pt;}
.ls3{letter-spacing:83.106667pt;}
.ls11{letter-spacing:159.266667pt;}
.wsd{word-spacing:-20.969333pt;}
.wsc{word-spacing:-19.033333pt;}
.ws6{word-spacing:-19.000000pt;}
.ws3{word-spacing:-18.904000pt;}
.ws5{word-spacing:-18.808000pt;}
.ws2{word-spacing:-18.594667pt;}
.ws9{word-spacing:-18.354667pt;}
.ws7{word-spacing:-18.093333pt;}
.ws1{word-spacing:-17.000000pt;}
.wsa{word-spacing:-16.226667pt;}
.wsb{word-spacing:-15.453333pt;}
.ws8{word-spacing:-15.000000pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._3{margin-left:-7.004267pt;}
._16{margin-left:-5.315333pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._c{width:5.071867pt;}
._a{width:6.359733pt;}
._17{width:7.385867pt;}
._37{width:8.821200pt;}
._7{width:10.269600pt;}
._9{width:11.799733pt;}
._35{width:12.893333pt;}
._12{width:14.589867pt;}
._13{width:15.482933pt;}
._b{width:18.156000pt;}
._19{width:19.152267pt;}
._26{width:20.800267pt;}
._8{width:22.415467pt;}
._18{width:23.717867pt;}
._34{width:25.021200pt;}
._1e{width:26.619067pt;}
._1c{width:27.533200pt;}
._1d{width:28.854267pt;}
._23{width:30.341733pt;}
._22{width:31.741200pt;}
._2c{width:32.738267pt;}
._1f{width:34.416267pt;}
._20{width:35.488000pt;}
._31{width:36.418000pt;}
._1b{width:38.679200pt;}
._1a{width:39.752133pt;}
._2a{width:40.914667pt;}
._14{width:43.128667pt;}
._11{width:46.892000pt;}
._10{width:47.857867pt;}
._15{width:49.533467pt;}
._2b{width:51.344667pt;}
._40{width:53.240800pt;}
._3b{width:54.842933pt;}
._30{width:55.887600pt;}
._21{width:59.541733pt;}
._36{width:60.673333pt;}
._2f{width:61.769467pt;}
._2d{width:62.744267pt;}
._e{width:63.783467pt;}
._2e{width:64.774133pt;}
._d{width:67.513333pt;}
._f{width:68.998133pt;}
._25{width:71.232533pt;}
._38{width:78.290933pt;}
._3a{width:79.434533pt;}
._39{width:81.039867pt;}
._24{width:83.408400pt;}
._29{width:90.976400pt;}
._28{width:91.867333pt;}
._27{width:95.126000pt;}
._33{width:158.902133pt;}
._32{width:159.866267pt;}
._3f{width:223.665733pt;}
._3d{width:247.318400pt;}
._3e{width:299.924667pt;}
._3c{width:751.906667pt;}
.fs6{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs7{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:4.000000pt;}
.y30{bottom:4.013333pt;}
.y35{bottom:5.000000pt;}
.y46{bottom:7.000000pt;}
.y51{bottom:7.013333pt;}
.y4b{bottom:7.026667pt;}
.y5{bottom:13.033333pt;}
.y31{bottom:15.000000pt;}
.y3a{bottom:15.013333pt;}
.y41{bottom:15.033333pt;}
.y4d{bottom:18.000000pt;}
.y52{bottom:19.013333pt;}
.y2f{bottom:26.013333pt;}
.y3e{bottom:26.026667pt;}
.y43{bottom:26.033333pt;}
.y33{bottom:26.040000pt;}
.y3{bottom:29.033333pt;}
.y4e{bottom:29.040000pt;}
.y48{bottom:30.000000pt;}
.y50{bottom:30.013333pt;}
.y4a{bottom:30.026667pt;}
.y54{bottom:30.040000pt;}
.y39{bottom:36.040000pt;}
.y3c{bottom:37.026667pt;}
.y40{bottom:37.033333pt;}
.y3d{bottom:47.026667pt;}
.y37{bottom:47.040000pt;}
.y42{bottom:48.033333pt;}
.y34{bottom:48.040000pt;}
.y4{bottom:55.033333pt;}
.y6e{bottom:106.100000pt;}
.y44{bottom:107.100000pt;}
.y2d{bottom:116.100000pt;}
.y3f{bottom:128.100000pt;}
.y6d{bottom:129.100000pt;}
.y2c{bottom:139.093333pt;}
.y6c{bottom:152.133333pt;}
.y2b{bottom:162.133333pt;}
.y6b{bottom:175.133333pt;}
.y2a{bottom:185.173333pt;}
.y3b{bottom:198.173333pt;}
.y29{bottom:208.173333pt;}
.y6a{bottom:221.200000pt;}
.y28{bottom:231.200000pt;}
.y69{bottom:244.200000pt;}
.y27{bottom:254.226667pt;}
.y68{bottom:267.226667pt;}
.y36{bottom:268.226667pt;}
.y26{bottom:277.240000pt;}
.y67{bottom:290.266667pt;}
.y25{bottom:299.266667pt;}
.y66{bottom:313.266667pt;}
.y24{bottom:322.266667pt;}
.y65{bottom:336.293333pt;}
.y32{bottom:337.293333pt;}
.y23{bottom:345.293333pt;}
.y64{bottom:358.306667pt;}
.y22{bottom:368.333333pt;}
.y63{bottom:381.333333pt;}
.y21{bottom:391.333333pt;}
.y62{bottom:404.360000pt;}
.y2e{bottom:407.360000pt;}
.y20{bottom:414.373333pt;}
.y61{bottom:427.373333pt;}
.y1f{bottom:437.400000pt;}
.y60{bottom:450.400000pt;}
.y1e{bottom:460.400000pt;}
.y5f{bottom:473.400000pt;}
.y1d{bottom:483.440000pt;}
.y5e{bottom:496.426667pt;}
.y1c{bottom:506.440000pt;}
.y5d{bottom:519.466667pt;}
.y1b{bottom:529.466667pt;}
.y5c{bottom:542.466667pt;}
.y1a{bottom:552.506667pt;}
.y5b{bottom:565.506667pt;}
.y19{bottom:574.506667pt;}
.y5a{bottom:588.533333pt;}
.y18{bottom:597.533333pt;}
.y59{bottom:611.533333pt;}
.y17{bottom:620.533333pt;}
.y58{bottom:634.560000pt;}
.y16{bottom:643.560000pt;}
.y76{bottom:644.560000pt;}
.y57{bottom:656.560000pt;}
.y15{bottom:666.600000pt;}
.y75{bottom:670.600000pt;}
.y56{bottom:679.600000pt;}
.y14{bottom:689.600000pt;}
.y74{bottom:691.600000pt;}
.y55{bottom:702.626667pt;}
.y73{bottom:709.626667pt;}
.y13{bottom:712.626667pt;}
.y53{bottom:721.626667pt;}
.y72{bottom:727.626667pt;}
.y12{bottom:735.666667pt;}
.y71{bottom:745.666667pt;}
.y11{bottom:758.666667pt;}
.y4f{bottom:772.693333pt;}
.y70{bottom:780.706667pt;}
.y10{bottom:781.706667pt;}
.yf{bottom:804.706667pt;}
.y6f{bottom:818.733333pt;}
.y4c{bottom:824.733333pt;}
.ye{bottom:827.733333pt;}
.yd{bottom:850.773333pt;}
.yc{bottom:872.773333pt;}
.y49{bottom:875.773333pt;}
.yb{bottom:895.800000pt;}
.ya{bottom:918.800000pt;}
.y47{bottom:926.840000pt;}
.y9{bottom:941.840000pt;}
.y8{bottom:964.866667pt;}
.y45{bottom:977.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h11{height:23.033333pt;}
.h5{height:36.033333pt;}
.hc{height:43.033333pt;}
.h14{height:45.033333pt;}
.h12{height:46.033333pt;}
.h13{height:46.053333pt;}
.hb{height:47.480469pt;}
.h9{height:51.730469pt;}
.h10{height:53.159505pt;}
.h16{height:59.677734pt;}
.h3{height:60.468750pt;}
.hf{height:64.066667pt;}
.hd{height:65.066667pt;}
.h8{height:66.705078pt;}
.ha{height:66.738281pt;}
.h7{height:68.531250pt;}
.h15{height:69.893285pt;}
.he{height:74.720703pt;}
.h2{height:76.728125pt;}
.h17{height:77.954883pt;}
.h18{height:82.441406pt;}
.h4{height:84.790625pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.w3{width:137.160000pt;}
.w6{width:138.160000pt;}
.w7{width:224.306667pt;}
.w5{width:229.293333pt;}
.w4{width:231.306667pt;}
.w8{width:235.293333pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:1.000000pt;}
.x1b{left:3.000000pt;}
.x25{left:5.000000pt;}
.x3{left:6.000000pt;}
.x13{left:6.986667pt;}
.x17{left:14.000000pt;}
.x26{left:20.000000pt;}
.x1f{left:22.026667pt;}
.x1e{left:23.026667pt;}
.x1d{left:24.033333pt;}
.x11{left:27.033333pt;}
.x22{left:31.033333pt;}
.x18{left:32.026667pt;}
.x12{left:33.026667pt;}
.xc{left:38.033333pt;}
.x15{left:43.066667pt;}
.x16{left:44.026667pt;}
.x21{left:47.026667pt;}
.x1c{left:48.026667pt;}
.xb{left:51.066667pt;}
.x1a{left:53.066667pt;}
.x19{left:56.066667pt;}
.x23{left:61.053333pt;}
.x24{left:63.066667pt;}
.x10{left:70.106667pt;}
.x20{left:72.093333pt;}
.x14{left:93.133333pt;}
.xa{left:95.133333pt;}
.x1{left:96.133322pt;}
.xe{left:99.133333pt;}
.x9{left:115.133322pt;}
.x2b{left:143.159988pt;}
.x2a{left:144.199988pt;}
.x5{left:146.199988pt;}
.x8{left:152.199988pt;}
.x4{left:184.239988pt;}
.xd{left:236.306667pt;}
.x7{left:282.359988pt;}
.x29{left:308.399988pt;}
.x6{left:406.506655pt;}
.x27{left:464.600000pt;}
.xf{left:470.600000pt;}
.x2{left:712.893333pt;}
}




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