
    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_33db46ea053a2fc367b42261.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.154000;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_b2f5e05b76a7c5493402d13e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_d5bd732668ee131aec816f75.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.726000;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_af5026044ffe54ae408cacca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939000;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_0524a48f8c5715d23356debc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.144000;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_4cd4ea7706a18a8b1065dde4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.149000;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_14d6511860e628bc9dad219e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0b835a788f80756265320246.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.716000;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_bbcc4ec86e018a16968f80cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.993000;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;}
.v1{vertical-align:18.107400px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.057000px;}
.lsf{letter-spacing:0.114000px;}
.ls3{letter-spacing:0.171000px;}
.ls5{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.228000px;}
.ls11{letter-spacing:0.285000px;}
.lsc{letter-spacing:0.342000px;}
.ls10{letter-spacing:0.513000px;}
.ls1{letter-spacing:0.570000px;}
.ls9{letter-spacing:0.627000px;}
.lsb{letter-spacing:0.684000px;}
.ls7{letter-spacing:0.855000px;}
.ls2{letter-spacing:1.140000px;}
.lsa{letter-spacing:1.197000px;}
.ls8{letter-spacing:1.425000px;}
.ls4{letter-spacing:7.152000px;}
.lse{letter-spacing:7.200000px;}
.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;}
}
.ws5{word-spacing:-16.680000px;}
.ws6{word-spacing:-15.846000px;}
.ws1{word-spacing:-13.344000px;}
.ws3{word-spacing:-2.622000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:1.881000px;}
.ws7{word-spacing:7.747800px;}
.ws8{word-spacing:9.630600px;}
.ws0{word-spacing:54.658800px;}
._1a{margin-left:-8.436000px;}
._b{margin-left:-6.783000px;}
._7{margin-left:-5.700000px;}
._c{margin-left:-4.275000px;}
._1{margin-left:-3.078000px;}
._4{margin-left:-2.052000px;}
._0{margin-left:-1.026000px;}
._a{width:1.140000px;}
._10{width:2.280000px;}
._3{width:3.705000px;}
._16{width:4.839000px;}
._19{width:5.991000px;}
._15{width:7.200000px;}
._6{width:9.063000px;}
._f{width:10.089000px;}
._18{width:11.400000px;}
._13{width:12.483000px;}
._2{width:13.794000px;}
._8{width:15.162000px;}
._d{width:17.214000px;}
._5{width:18.924000px;}
._17{width:20.748000px;}
._9{width:22.686000px;}
._1c{width:24.510000px;}
._11{width:26.277000px;}
._21{width:29.241000px;}
._e{width:32.262000px;}
._20{width:33.288000px;}
._12{width:36.024000px;}
._1f{width:37.050000px;}
._1b{width:38.817000px;}
._1d{width:40.413000px;}
._22{width:1565.013000px;}
._1e{width:1567.041000px;}
._14{width:2235.477000px;}
.fc1{color:rgb(123,121,121);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.200000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.259500px;}
.y66{bottom:101.932950px;}
.yc1{bottom:102.064950px;}
.yf{bottom:102.076200px;}
.y1d{bottom:102.104700px;}
.y85{bottom:102.181950px;}
.yc0{bottom:120.062700px;}
.ye{bottom:120.073950px;}
.y1c{bottom:120.102450px;}
.y84{bottom:120.179700px;}
.yd{bottom:138.071700px;}
.y1b{bottom:138.100200px;}
.y83{bottom:138.177450px;}
.ybf{bottom:156.058200px;}
.yc{bottom:156.069450px;}
.y1a{bottom:156.097950px;}
.y82{bottom:156.175200px;}
.ybe{bottom:174.055950px;}
.yb{bottom:174.067200px;}
.y19{bottom:174.095700px;}
.y81{bottom:174.172950px;}
.ybd{bottom:192.053700px;}
.ya{bottom:192.064950px;}
.y18{bottom:192.093450px;}
.y80{bottom:192.170700px;}
.ybc{bottom:210.051450px;}
.y9{bottom:210.062700px;}
.y17{bottom:210.091200px;}
.y7f{bottom:210.168450px;}
.ybb{bottom:228.049200px;}
.y8{bottom:228.060450px;}
.y16{bottom:228.088950px;}
.y7e{bottom:228.166200px;}
.yba{bottom:246.046950px;}
.y7{bottom:246.058200px;}
.y15{bottom:246.086700px;}
.y7d{bottom:246.163950px;}
.y6{bottom:264.055950px;}
.y14{bottom:264.084450px;}
.yb9{bottom:264.114450px;}
.y7c{bottom:264.161700px;}
.y5{bottom:282.053700px;}
.y13{bottom:282.082200px;}
.yb8{bottom:282.112200px;}
.y7b{bottom:282.159450px;}
.y4{bottom:300.051450px;}
.y12{bottom:300.079950px;}
.yb7{bottom:300.109950px;}
.y7a{bottom:300.157200px;}
.y3{bottom:318.049200px;}
.y11{bottom:318.077700px;}
.yb6{bottom:318.107700px;}
.y79{bottom:318.154950px;}
.y2{bottom:336.046950px;}
.y10{bottom:336.075450px;}
.yb5{bottom:336.105450px;}
.y78{bottom:336.152700px;}
.yb4{bottom:354.103200px;}
.y77{bottom:354.150450px;}
.yb3{bottom:372.100950px;}
.y76{bottom:372.148200px;}
.y27{bottom:383.382150px;}
.yb2{bottom:390.098700px;}
.y75{bottom:390.145950px;}
.y26{bottom:404.386650px;}
.yb1{bottom:408.096450px;}
.y74{bottom:408.143700px;}
.y25{bottom:425.391150px;}
.yb0{bottom:426.094200px;}
.y73{bottom:426.141450px;}
.yaf{bottom:444.091950px;}
.y72{bottom:444.139200px;}
.y24{bottom:446.395650px;}
.yae{bottom:462.089700px;}
.y71{bottom:462.136950px;}
.y23{bottom:467.400150px;}
.yad{bottom:480.087450px;}
.y70{bottom:480.134700px;}
.y22{bottom:488.404650px;}
.yac{bottom:498.085200px;}
.y6f{bottom:498.132450px;}
.y21{bottom:509.409150px;}
.yab{bottom:516.082950px;}
.y6e{bottom:516.130200px;}
.yaa{bottom:534.080700px;}
.y6d{bottom:534.127950px;}
.y20{bottom:548.409150px;}
.ya9{bottom:552.078450px;}
.y6c{bottom:552.125700px;}
.ya8{bottom:570.076200px;}
.y6b{bottom:570.123450px;}
.ya7{bottom:588.073950px;}
.y6a{bottom:588.121200px;}
.y1f{bottom:591.909150px;}
.ya6{bottom:606.071700px;}
.y69{bottom:606.118950px;}
.ya5{bottom:624.069450px;}
.y68{bottom:624.116700px;}
.ya4{bottom:642.067200px;}
.y67{bottom:642.114450px;}
.ya3{bottom:660.064950px;}
.y47{bottom:660.112200px;}
.y65{bottom:660.183450px;}
.ya2{bottom:678.062700px;}
.y46{bottom:678.109950px;}
.y64{bottom:678.181200px;}
.y28{bottom:679.818600px;}
.ya1{bottom:696.060450px;}
.y45{bottom:696.107700px;}
.y63{bottom:696.178950px;}
.ya0{bottom:714.058200px;}
.y44{bottom:714.105450px;}
.y62{bottom:714.176700px;}
.y9f{bottom:732.055950px;}
.y43{bottom:732.103200px;}
.y61{bottom:732.174450px;}
.y9e{bottom:750.053700px;}
.y42{bottom:750.100950px;}
.y60{bottom:750.172200px;}
.y9d{bottom:768.051450px;}
.y41{bottom:768.098700px;}
.y5f{bottom:768.169950px;}
.y9c{bottom:786.049200px;}
.y40{bottom:786.096450px;}
.y5e{bottom:786.167700px;}
.y3f{bottom:804.094200px;}
.y5d{bottom:804.165450px;}
.y9b{bottom:804.222450px;}
.y3e{bottom:822.091950px;}
.y5c{bottom:822.163200px;}
.y9a{bottom:822.220200px;}
.y3d{bottom:840.089700px;}
.y5b{bottom:840.160950px;}
.y99{bottom:840.217950px;}
.y3c{bottom:858.087450px;}
.y5a{bottom:858.158700px;}
.y98{bottom:858.215700px;}
.y3b{bottom:876.085200px;}
.y59{bottom:876.156450px;}
.y97{bottom:876.213450px;}
.y3a{bottom:894.082950px;}
.y58{bottom:894.154200px;}
.y96{bottom:894.211200px;}
.y39{bottom:912.080700px;}
.y57{bottom:912.151950px;}
.y95{bottom:912.208950px;}
.y38{bottom:930.078450px;}
.y56{bottom:930.149700px;}
.y94{bottom:930.206700px;}
.y37{bottom:948.076200px;}
.y55{bottom:948.147450px;}
.y93{bottom:948.204450px;}
.y36{bottom:966.073950px;}
.y54{bottom:966.145200px;}
.y92{bottom:966.202200px;}
.y35{bottom:984.071700px;}
.y53{bottom:984.142950px;}
.y91{bottom:984.199950px;}
.y34{bottom:1002.069450px;}
.y52{bottom:1002.140700px;}
.y90{bottom:1002.197700px;}
.y33{bottom:1020.067200px;}
.y51{bottom:1020.138450px;}
.y8f{bottom:1020.195450px;}
.y32{bottom:1038.064950px;}
.y50{bottom:1038.136200px;}
.y8e{bottom:1038.193200px;}
.y31{bottom:1056.062700px;}
.y4f{bottom:1056.133950px;}
.y8d{bottom:1056.190950px;}
.y30{bottom:1074.060450px;}
.y4e{bottom:1074.131700px;}
.y8c{bottom:1074.188700px;}
.y2f{bottom:1092.058200px;}
.y4d{bottom:1092.129450px;}
.y8b{bottom:1092.186450px;}
.y2e{bottom:1110.055950px;}
.y4c{bottom:1110.127200px;}
.y8a{bottom:1110.184200px;}
.y2d{bottom:1128.053700px;}
.y4b{bottom:1128.124950px;}
.y89{bottom:1128.181950px;}
.y2c{bottom:1146.051450px;}
.y4a{bottom:1146.122700px;}
.y88{bottom:1146.179700px;}
.y2b{bottom:1164.049200px;}
.y49{bottom:1164.120450px;}
.y87{bottom:1164.177450px;}
.y2a{bottom:1182.046950px;}
.y48{bottom:1182.118200px;}
.y86{bottom:1182.175200px;}
.y1e{bottom:1221.783450px;}
.y29{bottom:1334.372700px;}
.ha{height:44.232000px;}
.h8{height:45.408000px;}
.h9{height:50.062500px;}
.h3{height:52.953000px;}
.h4{height:54.780000px;}
.h7{height:62.436000px;}
.h6{height:72.462000px;}
.h5{height:113.520000px;}
.h2{height:1305.354000px;}
.h1{height:1347.750000px;}
.h0{height:1347.873000px;}
.w3{width:935.431500px;}
.w2{width:935.433000px;}
.w0{width:977.952000px;}
.w1{width:978.000000px;}
.x0{left:0.000000px;}
.x1{left:21.259500px;}
.x8{left:47.019000px;}
.x2{left:93.543000px;}
.x9{left:97.794150px;}
.x3{left:108.006750px;}
.xa{left:112.257900px;}
.x6{left:286.805250px;}
.x7{left:409.586250px;}
.x4{left:476.212500px;}
.xb{left:480.506400px;}
.x5{left:490.662000px;}
.xc{left:494.955900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.095467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.050667pt;}
.lsf{letter-spacing:0.101333pt;}
.ls3{letter-spacing:0.152000pt;}
.ls5{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls11{letter-spacing:0.253333pt;}
.lsc{letter-spacing:0.304000pt;}
.ls10{letter-spacing:0.456000pt;}
.ls1{letter-spacing:0.506667pt;}
.ls9{letter-spacing:0.557333pt;}
.lsb{letter-spacing:0.608000pt;}
.ls7{letter-spacing:0.760000pt;}
.ls2{letter-spacing:1.013333pt;}
.lsa{letter-spacing:1.064000pt;}
.ls8{letter-spacing:1.266667pt;}
.ls4{letter-spacing:6.357333pt;}
.lse{letter-spacing:6.400000pt;}
.ws5{word-spacing:-14.826667pt;}
.ws6{word-spacing:-14.085333pt;}
.ws1{word-spacing:-11.861333pt;}
.ws3{word-spacing:-2.330667pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:1.672000pt;}
.ws7{word-spacing:6.886933pt;}
.ws8{word-spacing:8.560533pt;}
.ws0{word-spacing:48.585600pt;}
._1a{margin-left:-7.498667pt;}
._b{margin-left:-6.029333pt;}
._7{margin-left:-5.066667pt;}
._c{margin-left:-3.800000pt;}
._1{margin-left:-2.736000pt;}
._4{margin-left:-1.824000pt;}
._0{margin-left:-0.912000pt;}
._a{width:1.013333pt;}
._10{width:2.026667pt;}
._3{width:3.293333pt;}
._16{width:4.301333pt;}
._19{width:5.325333pt;}
._15{width:6.400000pt;}
._6{width:8.056000pt;}
._f{width:8.968000pt;}
._18{width:10.133333pt;}
._13{width:11.096000pt;}
._2{width:12.261333pt;}
._8{width:13.477333pt;}
._d{width:15.301333pt;}
._5{width:16.821333pt;}
._17{width:18.442667pt;}
._9{width:20.165333pt;}
._1c{width:21.786667pt;}
._11{width:23.357333pt;}
._21{width:25.992000pt;}
._e{width:28.677333pt;}
._20{width:29.589333pt;}
._12{width:32.021333pt;}
._1f{width:32.933333pt;}
._1b{width:34.504000pt;}
._1d{width:35.922667pt;}
._22{width:1391.122667pt;}
._1e{width:1392.925333pt;}
._14{width:1987.090667pt;}
.fs6{font-size:30.400000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.897333pt;}
.y66{bottom:90.607067pt;}
.yc1{bottom:90.724400pt;}
.yf{bottom:90.734400pt;}
.y1d{bottom:90.759733pt;}
.y85{bottom:90.828400pt;}
.yc0{bottom:106.722400pt;}
.ye{bottom:106.732400pt;}
.y1c{bottom:106.757733pt;}
.y84{bottom:106.826400pt;}
.yd{bottom:122.730400pt;}
.y1b{bottom:122.755733pt;}
.y83{bottom:122.824400pt;}
.ybf{bottom:138.718400pt;}
.yc{bottom:138.728400pt;}
.y1a{bottom:138.753733pt;}
.y82{bottom:138.822400pt;}
.ybe{bottom:154.716400pt;}
.yb{bottom:154.726400pt;}
.y19{bottom:154.751733pt;}
.y81{bottom:154.820400pt;}
.ybd{bottom:170.714400pt;}
.ya{bottom:170.724400pt;}
.y18{bottom:170.749733pt;}
.y80{bottom:170.818400pt;}
.ybc{bottom:186.712400pt;}
.y9{bottom:186.722400pt;}
.y17{bottom:186.747733pt;}
.y7f{bottom:186.816400pt;}
.ybb{bottom:202.710400pt;}
.y8{bottom:202.720400pt;}
.y16{bottom:202.745733pt;}
.y7e{bottom:202.814400pt;}
.yba{bottom:218.708400pt;}
.y7{bottom:218.718400pt;}
.y15{bottom:218.743733pt;}
.y7d{bottom:218.812400pt;}
.y6{bottom:234.716400pt;}
.y14{bottom:234.741733pt;}
.yb9{bottom:234.768400pt;}
.y7c{bottom:234.810400pt;}
.y5{bottom:250.714400pt;}
.y13{bottom:250.739733pt;}
.yb8{bottom:250.766400pt;}
.y7b{bottom:250.808400pt;}
.y4{bottom:266.712400pt;}
.y12{bottom:266.737733pt;}
.yb7{bottom:266.764400pt;}
.y7a{bottom:266.806400pt;}
.y3{bottom:282.710400pt;}
.y11{bottom:282.735733pt;}
.yb6{bottom:282.762400pt;}
.y79{bottom:282.804400pt;}
.y2{bottom:298.708400pt;}
.y10{bottom:298.733733pt;}
.yb5{bottom:298.760400pt;}
.y78{bottom:298.802400pt;}
.yb4{bottom:314.758400pt;}
.y77{bottom:314.800400pt;}
.yb3{bottom:330.756400pt;}
.y76{bottom:330.798400pt;}
.y27{bottom:340.784133pt;}
.yb2{bottom:346.754400pt;}
.y75{bottom:346.796400pt;}
.y26{bottom:359.454800pt;}
.yb1{bottom:362.752400pt;}
.y74{bottom:362.794400pt;}
.y25{bottom:378.125467pt;}
.yb0{bottom:378.750400pt;}
.y73{bottom:378.792400pt;}
.yaf{bottom:394.748400pt;}
.y72{bottom:394.790400pt;}
.y24{bottom:396.796133pt;}
.yae{bottom:410.746400pt;}
.y71{bottom:410.788400pt;}
.y23{bottom:415.466800pt;}
.yad{bottom:426.744400pt;}
.y70{bottom:426.786400pt;}
.y22{bottom:434.137467pt;}
.yac{bottom:442.742400pt;}
.y6f{bottom:442.784400pt;}
.y21{bottom:452.808133pt;}
.yab{bottom:458.740400pt;}
.y6e{bottom:458.782400pt;}
.yaa{bottom:474.738400pt;}
.y6d{bottom:474.780400pt;}
.y20{bottom:487.474800pt;}
.ya9{bottom:490.736400pt;}
.y6c{bottom:490.778400pt;}
.ya8{bottom:506.734400pt;}
.y6b{bottom:506.776400pt;}
.ya7{bottom:522.732400pt;}
.y6a{bottom:522.774400pt;}
.y1f{bottom:526.141467pt;}
.ya6{bottom:538.730400pt;}
.y69{bottom:538.772400pt;}
.ya5{bottom:554.728400pt;}
.y68{bottom:554.770400pt;}
.ya4{bottom:570.726400pt;}
.y67{bottom:570.768400pt;}
.ya3{bottom:586.724400pt;}
.y47{bottom:586.766400pt;}
.y65{bottom:586.829733pt;}
.ya2{bottom:602.722400pt;}
.y46{bottom:602.764400pt;}
.y64{bottom:602.827733pt;}
.y28{bottom:604.283200pt;}
.ya1{bottom:618.720400pt;}
.y45{bottom:618.762400pt;}
.y63{bottom:618.825733pt;}
.ya0{bottom:634.718400pt;}
.y44{bottom:634.760400pt;}
.y62{bottom:634.823733pt;}
.y9f{bottom:650.716400pt;}
.y43{bottom:650.758400pt;}
.y61{bottom:650.821733pt;}
.y9e{bottom:666.714400pt;}
.y42{bottom:666.756400pt;}
.y60{bottom:666.819733pt;}
.y9d{bottom:682.712400pt;}
.y41{bottom:682.754400pt;}
.y5f{bottom:682.817733pt;}
.y9c{bottom:698.710400pt;}
.y40{bottom:698.752400pt;}
.y5e{bottom:698.815733pt;}
.y3f{bottom:714.750400pt;}
.y5d{bottom:714.813733pt;}
.y9b{bottom:714.864400pt;}
.y3e{bottom:730.748400pt;}
.y5c{bottom:730.811733pt;}
.y9a{bottom:730.862400pt;}
.y3d{bottom:746.746400pt;}
.y5b{bottom:746.809733pt;}
.y99{bottom:746.860400pt;}
.y3c{bottom:762.744400pt;}
.y5a{bottom:762.807733pt;}
.y98{bottom:762.858400pt;}
.y3b{bottom:778.742400pt;}
.y59{bottom:778.805733pt;}
.y97{bottom:778.856400pt;}
.y3a{bottom:794.740400pt;}
.y58{bottom:794.803733pt;}
.y96{bottom:794.854400pt;}
.y39{bottom:810.738400pt;}
.y57{bottom:810.801733pt;}
.y95{bottom:810.852400pt;}
.y38{bottom:826.736400pt;}
.y56{bottom:826.799733pt;}
.y94{bottom:826.850400pt;}
.y37{bottom:842.734400pt;}
.y55{bottom:842.797733pt;}
.y93{bottom:842.848400pt;}
.y36{bottom:858.732400pt;}
.y54{bottom:858.795733pt;}
.y92{bottom:858.846400pt;}
.y35{bottom:874.730400pt;}
.y53{bottom:874.793733pt;}
.y91{bottom:874.844400pt;}
.y34{bottom:890.728400pt;}
.y52{bottom:890.791733pt;}
.y90{bottom:890.842400pt;}
.y33{bottom:906.726400pt;}
.y51{bottom:906.789733pt;}
.y8f{bottom:906.840400pt;}
.y32{bottom:922.724400pt;}
.y50{bottom:922.787733pt;}
.y8e{bottom:922.838400pt;}
.y31{bottom:938.722400pt;}
.y4f{bottom:938.785733pt;}
.y8d{bottom:938.836400pt;}
.y30{bottom:954.720400pt;}
.y4e{bottom:954.783733pt;}
.y8c{bottom:954.834400pt;}
.y2f{bottom:970.718400pt;}
.y4d{bottom:970.781733pt;}
.y8b{bottom:970.832400pt;}
.y2e{bottom:986.716400pt;}
.y4c{bottom:986.779733pt;}
.y8a{bottom:986.830400pt;}
.y2d{bottom:1002.714400pt;}
.y4b{bottom:1002.777733pt;}
.y89{bottom:1002.828400pt;}
.y2c{bottom:1018.712400pt;}
.y4a{bottom:1018.775733pt;}
.y88{bottom:1018.826400pt;}
.y2b{bottom:1034.710400pt;}
.y49{bottom:1034.773733pt;}
.y87{bottom:1034.824400pt;}
.y2a{bottom:1050.708400pt;}
.y48{bottom:1050.771733pt;}
.y86{bottom:1050.822400pt;}
.y1e{bottom:1086.029733pt;}
.y29{bottom:1186.109067pt;}
.ha{height:39.317333pt;}
.h8{height:40.362667pt;}
.h9{height:44.500000pt;}
.h3{height:47.069333pt;}
.h4{height:48.693333pt;}
.h7{height:55.498667pt;}
.h6{height:64.410667pt;}
.h5{height:100.906667pt;}
.h2{height:1160.314667pt;}
.h1{height:1198.000000pt;}
.h0{height:1198.109333pt;}
.w3{width:831.494667pt;}
.w2{width:831.496000pt;}
.w0{width:869.290667pt;}
.w1{width:869.333333pt;}
.x0{left:0.000000pt;}
.x1{left:18.897333pt;}
.x8{left:41.794667pt;}
.x2{left:83.149333pt;}
.x9{left:86.928133pt;}
.x3{left:96.006000pt;}
.xa{left:99.784800pt;}
.x6{left:254.938000pt;}
.x7{left:364.076667pt;}
.x4{left:423.300000pt;}
.xb{left:427.116800pt;}
.x5{left:436.144000pt;}
.xc{left:439.960800pt;}
}




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