
    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_40ad3870bb503a38de8d20aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_557d9737820f8ace1c26b113.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_8c408eaad4eb3fa252be1a5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_f0b73aaef4d020c0de2b51a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_729d34be86ad3749dbb38021.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111133;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_ab9f03425c9e8b3b4c64fc63.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.985000;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_bbed5fc7433656c9cd8f895a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967000;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_175415a9f72c82a329a3c81f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110533;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_bcb185c785df16f6baa94295.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_cb60a0bbd40d61f2d4cde380.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992000;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_11e744b035057a8b0a189a8e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_6ba54861892140ff4eecc9cc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.961000;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_dcc30eae602cab9c17679c81.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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;}
.ls15{letter-spacing:-1.743480px;}
.lsd{letter-spacing:-1.382760px;}
.ls14{letter-spacing:-0.901800px;}
.ls12{letter-spacing:-0.480960px;}
.lsc{letter-spacing:-0.420840px;}
.ls5{letter-spacing:-0.300600px;}
.ls13{letter-spacing:-0.240480px;}
.ls9{letter-spacing:-0.180360px;}
.ls6{letter-spacing:-0.131760px;}
.ls2{letter-spacing:-0.120240px;}
.ls16{letter-spacing:-0.065880px;}
.lsb{letter-spacing:-0.060120px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.060120px;}
.ls7{letter-spacing:0.078120px;}
.ls4{letter-spacing:0.120240px;}
.ls17{letter-spacing:0.131760px;}
.lsa{letter-spacing:0.180360px;}
.ls18{letter-spacing:0.541080px;}
.lsf{letter-spacing:0.553104px;}
.ls0{letter-spacing:4.088160px;}
.ls10{letter-spacing:5.170320px;}
.lse{letter-spacing:19.959840px;}
.ls1{letter-spacing:62.103960px;}
.ls11{letter-spacing:848.954520px;}
.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:-16.292520px;}
.ws15{word-spacing:-16.172280px;}
.ws14{word-spacing:-16.112160px;}
.ws12{word-spacing:-15.931800px;}
.ws6{word-spacing:-14.609160px;}
.ws5{word-spacing:-14.549040px;}
.ws7{word-spacing:-14.488920px;}
.ws11{word-spacing:-14.128200px;}
.ws2{word-spacing:-12.504960px;}
.ws19{word-spacing:-0.541080px;}
.wsd{word-spacing:-0.180360px;}
.ws18{word-spacing:-0.131760px;}
.wse{word-spacing:-0.120240px;}
.wsb{word-spacing:-0.078120px;}
.ws13{word-spacing:-0.065880px;}
.ws1{word-spacing:-0.060120px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:0.060120px;}
.ws8{word-spacing:0.120240px;}
.wsa{word-spacing:0.131760px;}
.wsc{word-spacing:0.180360px;}
.ws3{word-spacing:0.240480px;}
.wsf{word-spacing:0.420840px;}
.ws16{word-spacing:0.901800px;}
.ws10{word-spacing:1.382760px;}
.ws17{word-spacing:1.743480px;}
._2b{margin-left:-10.752804px;}
._1f{margin-left:-6.739452px;}
._16{margin-left:-5.280732px;}
._5{margin-left:-4.229496px;}
._4{margin-left:-2.272860px;}
._3{margin-left:-1.172340px;}
._0{width:1.052100px;}
._8{width:2.080152px;}
._7{width:3.486312px;}
._6{width:4.864032px;}
._10{width:6.089508px;}
._d{width:7.903044px;}
._f{width:9.024012px;}
._c{width:10.037736px;}
._21{width:11.343888px;}
._11{width:12.444840px;}
._22{width:13.602420px;}
._14{width:15.812532px;}
._e{width:17.242416px;}
._b{width:18.553032px;}
._a{width:19.911744px;}
._13{width:20.952792px;}
._1d{width:21.972564px;}
._27{width:23.110776px;}
._1e{width:24.943788px;}
._24{width:26.380332px;}
._9{width:27.637488px;}
._12{width:29.242368px;}
._28{width:30.559968px;}
._29{width:31.707612px;}
._19{width:35.014212px;}
._2a{width:36.317520px;}
._17{width:38.627424px;}
._18{width:39.822840px;}
._23{width:41.885928px;}
._15{width:43.178508px;}
._1c{width:52.124040px;}
._20{width:57.077928px;}
._25{width:58.364820px;}
._1a{width:62.079912px;}
._26{width:101.873664px;}
._1{width:204.257700px;}
._1b{width:743.985000px;}
._2{width:746.870760px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y35{bottom:128.733660px;}
.y53{bottom:128.883960px;}
.y34{bottom:148.528170px;}
.y52{bottom:148.678470px;}
.y33{bottom:168.412860px;}
.y51{bottom:168.563160px;}
.y32{bottom:188.297550px;}
.y50{bottom:188.447850px;}
.y9d{bottom:198.498150px;}
.y31{bottom:208.182240px;}
.y4f{bottom:208.332540px;}
.y9c{bottom:218.382840px;}
.y30{bottom:228.066930px;}
.y4e{bottom:228.217230px;}
.y9b{bottom:238.177350px;}
.y2f{bottom:247.951620px;}
.y4d{bottom:248.101920px;}
.y9a{bottom:258.062040px;}
.y2e{bottom:267.746130px;}
.y4c{bottom:267.896430px;}
.y99{bottom:277.946730px;}
.y2d{bottom:287.630820px;}
.y4b{bottom:287.781120px;}
.y98{bottom:297.831420px;}
.y2c{bottom:307.515510px;}
.y4a{bottom:307.665810px;}
.y97{bottom:317.716110px;}
.y2b{bottom:327.400200px;}
.y49{bottom:327.550500px;}
.y96{bottom:337.600800px;}
.y2a{bottom:347.284890px;}
.y48{bottom:347.435190px;}
.y95{bottom:357.395310px;}
.y29{bottom:367.169580px;}
.y47{bottom:367.319880px;}
.y94{bottom:377.280000px;}
.y28{bottom:386.964090px;}
.y46{bottom:387.114390px;}
.y93{bottom:398.413620px;}
.y27{bottom:406.848780px;}
.y45{bottom:406.999080px;}
.y92{bottom:424.251810px;}
.y26{bottom:426.733470px;}
.y44{bottom:426.883770px;}
.y25{bottom:446.618160px;}
.y43{bottom:446.768460px;}
.y91{bottom:450.090000px;}
.y24{bottom:466.502850px;}
.y42{bottom:466.653150px;}
.y90{bottom:475.009200px;}
.y23{bottom:486.387540px;}
.y41{bottom:486.537840px;}
.y8f{bottom:496.881360px;}
.y22{bottom:506.182050px;}
.y40{bottom:506.332350px;}
.y8e{bottom:518.753520px;}
.y21{bottom:526.066740px;}
.y3f{bottom:526.217040px;}
.y8d{bottom:540.625680px;}
.y20{bottom:545.951430px;}
.y3e{bottom:546.101730px;}
.y8c{bottom:562.497840px;}
.y1f{bottom:565.836120px;}
.y3d{bottom:565.986420px;}
.y8b{bottom:584.370000px;}
.y1e{bottom:585.720810px;}
.y3c{bottom:585.871110px;}
.y1d{bottom:605.605500px;}
.y3b{bottom:605.755800px;}
.y6e{bottom:606.029580px;}
.y1c{bottom:625.400010px;}
.y3a{bottom:625.550310px;}
.y6d{bottom:625.914270px;}
.y8a{bottom:626.064570px;}
.y1b{bottom:645.284700px;}
.y39{bottom:645.435000px;}
.y6c{bottom:645.798960px;}
.y89{bottom:645.949260px;}
.y1a{bottom:665.169390px;}
.y38{bottom:665.319690px;}
.y6b{bottom:665.593470px;}
.y88{bottom:665.743770px;}
.y19{bottom:685.054080px;}
.y37{bottom:685.204380px;}
.y6a{bottom:685.478160px;}
.y87{bottom:685.628460px;}
.y18{bottom:704.938770px;}
.y36{bottom:705.089070px;}
.y69{bottom:705.362850px;}
.y86{bottom:705.513150px;}
.y17{bottom:724.823460px;}
.y68{bottom:725.247540px;}
.y85{bottom:725.397840px;}
.y16{bottom:744.617970px;}
.y67{bottom:745.132230px;}
.y84{bottom:745.282530px;}
.y15{bottom:764.502660px;}
.y66{bottom:765.016920px;}
.y83{bottom:765.167220px;}
.y14{bottom:784.387350px;}
.y65{bottom:784.811430px;}
.y82{bottom:784.961730px;}
.y13{bottom:804.272040px;}
.y64{bottom:804.696120px;}
.y81{bottom:804.846420px;}
.y12{bottom:824.156730px;}
.y63{bottom:824.580810px;}
.y80{bottom:824.731110px;}
.y11{bottom:844.041420px;}
.y62{bottom:844.465500px;}
.y7f{bottom:844.615800px;}
.y10{bottom:863.835930px;}
.y61{bottom:864.350190px;}
.y7e{bottom:864.500490px;}
.yf{bottom:883.720620px;}
.y60{bottom:884.234880px;}
.y7d{bottom:884.385180px;}
.ye{bottom:903.605310px;}
.y5f{bottom:904.029390px;}
.y7c{bottom:904.179690px;}
.yd{bottom:923.490000px;}
.y5e{bottom:923.914080px;}
.y7b{bottom:924.064380px;}
.y5d{bottom:943.798770px;}
.y7a{bottom:943.949070px;}
.yc{bottom:944.623620px;}
.y5c{bottom:963.683460px;}
.y79{bottom:963.833760px;}
.yb{bottom:970.461810px;}
.y5b{bottom:983.568150px;}
.y78{bottom:983.718450px;}
.ya{bottom:996.300000px;}
.y5a{bottom:1003.452840px;}
.y77{bottom:1003.603140px;}
.y9{bottom:1021.225680px;}
.y59{bottom:1023.247350px;}
.y76{bottom:1023.397650px;}
.y8{bottom:1043.097840px;}
.y58{bottom:1043.132040px;}
.y75{bottom:1043.282340px;}
.y57{bottom:1063.016730px;}
.y74{bottom:1063.167030px;}
.y7{bottom:1064.970000px;}
.y56{bottom:1082.901420px;}
.y73{bottom:1083.051720px;}
.y6{bottom:1086.480000px;}
.y55{bottom:1102.786110px;}
.y72{bottom:1102.936410px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y54{bottom:1122.670800px;}
.y71{bottom:1122.821100px;}
.y3{bottom:1142.465310px;}
.y70{bottom:1142.615610px;}
.y2{bottom:1162.350000px;}
.y6f{bottom:1162.500300px;}
.y1{bottom:1194.030000px;}
.h4{height:31.590000px;}
.h2{height:42.213164px;}
.h3{height:45.210240px;}
.h9{height:45.811440px;}
.hb{height:49.541760px;}
.h8{height:52.973736px;}
.ha{height:53.839464px;}
.h5{height:58.049064px;}
.h6{height:58.997736px;}
.h7{height:69.959064px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:42.210000px;}
.x1{left:85.050000px;}
.x8{left:90.630000px;}
.xb{left:106.384950px;}
.x7{left:109.079550px;}
.x11{left:146.700000px;}
.x10{left:162.728370px;}
.x9{left:191.150910px;}
.x12{left:209.078820px;}
.x13{left:284.230260px;}
.xa{left:299.425230px;}
.x3{left:326.160000px;}
.xf{left:382.948740px;}
.x5{left:384.570000px;}
.x6{left:392.940000px;}
.xe{left:446.490000px;}
.x2{left:457.110000px;}
.xd{left:472.996710px;}
.xc{left:494.339310px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.549760pt;}
.lsd{letter-spacing:-1.229120pt;}
.ls14{letter-spacing:-0.801600pt;}
.ls12{letter-spacing:-0.427520pt;}
.lsc{letter-spacing:-0.374080pt;}
.ls5{letter-spacing:-0.267200pt;}
.ls13{letter-spacing:-0.213760pt;}
.ls9{letter-spacing:-0.160320pt;}
.ls6{letter-spacing:-0.117120pt;}
.ls2{letter-spacing:-0.106880pt;}
.ls16{letter-spacing:-0.058560pt;}
.lsb{letter-spacing:-0.053440pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.053440pt;}
.ls7{letter-spacing:0.069440pt;}
.ls4{letter-spacing:0.106880pt;}
.ls17{letter-spacing:0.117120pt;}
.lsa{letter-spacing:0.160320pt;}
.ls18{letter-spacing:0.480960pt;}
.lsf{letter-spacing:0.491648pt;}
.ls0{letter-spacing:3.633920pt;}
.ls10{letter-spacing:4.595840pt;}
.lse{letter-spacing:17.742080pt;}
.ls1{letter-spacing:55.203520pt;}
.ls11{letter-spacing:754.626240pt;}
.ws4{word-spacing:-14.482240pt;}
.ws15{word-spacing:-14.375360pt;}
.ws14{word-spacing:-14.321920pt;}
.ws12{word-spacing:-14.161600pt;}
.ws6{word-spacing:-12.985920pt;}
.ws5{word-spacing:-12.932480pt;}
.ws7{word-spacing:-12.879040pt;}
.ws11{word-spacing:-12.558400pt;}
.ws2{word-spacing:-11.115520pt;}
.ws19{word-spacing:-0.480960pt;}
.wsd{word-spacing:-0.160320pt;}
.ws18{word-spacing:-0.117120pt;}
.wse{word-spacing:-0.106880pt;}
.wsb{word-spacing:-0.069440pt;}
.ws13{word-spacing:-0.058560pt;}
.ws1{word-spacing:-0.053440pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:0.053440pt;}
.ws8{word-spacing:0.106880pt;}
.wsa{word-spacing:0.117120pt;}
.wsc{word-spacing:0.160320pt;}
.ws3{word-spacing:0.213760pt;}
.wsf{word-spacing:0.374080pt;}
.ws16{word-spacing:0.801600pt;}
.ws10{word-spacing:1.229120pt;}
.ws17{word-spacing:1.549760pt;}
._2b{margin-left:-9.558048pt;}
._1f{margin-left:-5.990624pt;}
._16{margin-left:-4.693984pt;}
._5{margin-left:-3.759552pt;}
._4{margin-left:-2.020320pt;}
._3{margin-left:-1.042080pt;}
._0{width:0.935200pt;}
._8{width:1.849024pt;}
._7{width:3.098944pt;}
._6{width:4.323584pt;}
._10{width:5.412896pt;}
._d{width:7.024928pt;}
._f{width:8.021344pt;}
._c{width:8.922432pt;}
._21{width:10.083456pt;}
._11{width:11.062080pt;}
._22{width:12.091040pt;}
._14{width:14.055584pt;}
._e{width:15.326592pt;}
._b{width:16.491584pt;}
._a{width:17.699328pt;}
._13{width:18.624704pt;}
._1d{width:19.531168pt;}
._27{width:20.542912pt;}
._1e{width:22.172256pt;}
._24{width:23.449184pt;}
._9{width:24.566656pt;}
._12{width:25.993216pt;}
._28{width:27.164416pt;}
._29{width:28.184544pt;}
._19{width:31.123744pt;}
._2a{width:32.282240pt;}
._17{width:34.335488pt;}
._18{width:35.398080pt;}
._23{width:37.231936pt;}
._15{width:38.380896pt;}
._1c{width:46.332480pt;}
._20{width:50.735936pt;}
._25{width:51.879840pt;}
._1a{width:55.182144pt;}
._26{width:90.554368pt;}
._1{width:181.562400pt;}
._1b{width:661.320000pt;}
._2{width:663.885120pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:114.429920pt;}
.y53{bottom:114.563520pt;}
.y34{bottom:132.025040pt;}
.y52{bottom:132.158640pt;}
.y33{bottom:149.700320pt;}
.y51{bottom:149.833920pt;}
.y32{bottom:167.375600pt;}
.y50{bottom:167.509200pt;}
.y9d{bottom:176.442800pt;}
.y31{bottom:185.050880pt;}
.y4f{bottom:185.184480pt;}
.y9c{bottom:194.118080pt;}
.y30{bottom:202.726160pt;}
.y4e{bottom:202.859760pt;}
.y9b{bottom:211.713200pt;}
.y2f{bottom:220.401440pt;}
.y4d{bottom:220.535040pt;}
.y9a{bottom:229.388480pt;}
.y2e{bottom:237.996560pt;}
.y4c{bottom:238.130160pt;}
.y99{bottom:247.063760pt;}
.y2d{bottom:255.671840pt;}
.y4b{bottom:255.805440pt;}
.y98{bottom:264.739040pt;}
.y2c{bottom:273.347120pt;}
.y4a{bottom:273.480720pt;}
.y97{bottom:282.414320pt;}
.y2b{bottom:291.022400pt;}
.y49{bottom:291.156000pt;}
.y96{bottom:300.089600pt;}
.y2a{bottom:308.697680pt;}
.y48{bottom:308.831280pt;}
.y95{bottom:317.684720pt;}
.y29{bottom:326.372960pt;}
.y47{bottom:326.506560pt;}
.y94{bottom:335.360000pt;}
.y28{bottom:343.968080pt;}
.y46{bottom:344.101680pt;}
.y93{bottom:354.145440pt;}
.y27{bottom:361.643360pt;}
.y45{bottom:361.776960pt;}
.y92{bottom:377.112720pt;}
.y26{bottom:379.318640pt;}
.y44{bottom:379.452240pt;}
.y25{bottom:396.993920pt;}
.y43{bottom:397.127520pt;}
.y91{bottom:400.080000pt;}
.y24{bottom:414.669200pt;}
.y42{bottom:414.802800pt;}
.y90{bottom:422.230400pt;}
.y23{bottom:432.344480pt;}
.y41{bottom:432.478080pt;}
.y8f{bottom:441.672320pt;}
.y22{bottom:449.939600pt;}
.y40{bottom:450.073200pt;}
.y8e{bottom:461.114240pt;}
.y21{bottom:467.614880pt;}
.y3f{bottom:467.748480pt;}
.y8d{bottom:480.556160pt;}
.y20{bottom:485.290160pt;}
.y3e{bottom:485.423760pt;}
.y8c{bottom:499.998080pt;}
.y1f{bottom:502.965440pt;}
.y3d{bottom:503.099040pt;}
.y8b{bottom:519.440000pt;}
.y1e{bottom:520.640720pt;}
.y3c{bottom:520.774320pt;}
.y1d{bottom:538.316000pt;}
.y3b{bottom:538.449600pt;}
.y6e{bottom:538.692960pt;}
.y1c{bottom:555.911120pt;}
.y3a{bottom:556.044720pt;}
.y6d{bottom:556.368240pt;}
.y8a{bottom:556.501840pt;}
.y1b{bottom:573.586400pt;}
.y39{bottom:573.720000pt;}
.y6c{bottom:574.043520pt;}
.y89{bottom:574.177120pt;}
.y1a{bottom:591.261680pt;}
.y38{bottom:591.395280pt;}
.y6b{bottom:591.638640pt;}
.y88{bottom:591.772240pt;}
.y19{bottom:608.936960pt;}
.y37{bottom:609.070560pt;}
.y6a{bottom:609.313920pt;}
.y87{bottom:609.447520pt;}
.y18{bottom:626.612240pt;}
.y36{bottom:626.745840pt;}
.y69{bottom:626.989200pt;}
.y86{bottom:627.122800pt;}
.y17{bottom:644.287520pt;}
.y68{bottom:644.664480pt;}
.y85{bottom:644.798080pt;}
.y16{bottom:661.882640pt;}
.y67{bottom:662.339760pt;}
.y84{bottom:662.473360pt;}
.y15{bottom:679.557920pt;}
.y66{bottom:680.015040pt;}
.y83{bottom:680.148640pt;}
.y14{bottom:697.233200pt;}
.y65{bottom:697.610160pt;}
.y82{bottom:697.743760pt;}
.y13{bottom:714.908480pt;}
.y64{bottom:715.285440pt;}
.y81{bottom:715.419040pt;}
.y12{bottom:732.583760pt;}
.y63{bottom:732.960720pt;}
.y80{bottom:733.094320pt;}
.y11{bottom:750.259040pt;}
.y62{bottom:750.636000pt;}
.y7f{bottom:750.769600pt;}
.y10{bottom:767.854160pt;}
.y61{bottom:768.311280pt;}
.y7e{bottom:768.444880pt;}
.yf{bottom:785.529440pt;}
.y60{bottom:785.986560pt;}
.y7d{bottom:786.120160pt;}
.ye{bottom:803.204720pt;}
.y5f{bottom:803.581680pt;}
.y7c{bottom:803.715280pt;}
.yd{bottom:820.880000pt;}
.y5e{bottom:821.256960pt;}
.y7b{bottom:821.390560pt;}
.y5d{bottom:838.932240pt;}
.y7a{bottom:839.065840pt;}
.yc{bottom:839.665440pt;}
.y5c{bottom:856.607520pt;}
.y79{bottom:856.741120pt;}
.yb{bottom:862.632720pt;}
.y5b{bottom:874.282800pt;}
.y78{bottom:874.416400pt;}
.ya{bottom:885.600000pt;}
.y5a{bottom:891.958080pt;}
.y77{bottom:892.091680pt;}
.y9{bottom:907.756160pt;}
.y59{bottom:909.553200pt;}
.y76{bottom:909.686800pt;}
.y8{bottom:927.198080pt;}
.y58{bottom:927.228480pt;}
.y75{bottom:927.362080pt;}
.y57{bottom:944.903760pt;}
.y74{bottom:945.037360pt;}
.y7{bottom:946.640000pt;}
.y56{bottom:962.579040pt;}
.y73{bottom:962.712640pt;}
.y6{bottom:965.760000pt;}
.y55{bottom:980.254320pt;}
.y72{bottom:980.387920pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y54{bottom:997.929600pt;}
.y71{bottom:998.063200pt;}
.y3{bottom:1015.524720pt;}
.y70{bottom:1015.658320pt;}
.y2{bottom:1033.200000pt;}
.y6f{bottom:1033.333600pt;}
.y1{bottom:1061.360000pt;}
.h4{height:28.080000pt;}
.h2{height:37.522812pt;}
.h3{height:40.186880pt;}
.h9{height:40.721280pt;}
.hb{height:44.037120pt;}
.h8{height:47.087765pt;}
.ha{height:47.857301pt;}
.h5{height:51.599168pt;}
.h6{height:52.442432pt;}
.h7{height:62.185835pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:37.520000pt;}
.x1{left:75.600000pt;}
.x8{left:80.560000pt;}
.xb{left:94.564400pt;}
.x7{left:96.959600pt;}
.x11{left:130.400000pt;}
.x10{left:144.647440pt;}
.x9{left:169.911920pt;}
.x12{left:185.847840pt;}
.x13{left:252.649120pt;}
.xa{left:266.155760pt;}
.x3{left:289.920000pt;}
.xf{left:340.398880pt;}
.x5{left:341.840000pt;}
.x6{left:349.280000pt;}
.xe{left:396.880000pt;}
.x2{left:406.320000pt;}
.xd{left:420.441520pt;}
.xc{left:439.412720pt;}
}




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