
    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_becec1433ce91ca20f152e11.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_4b983a86eae3fa6d9d468c00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.142000;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_75f1f834676b093d1a3a2b82.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.152118;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_5cc3b101a18193cef9a75b03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132000;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_c9da803f7f8e509a6493d0ad.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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:19.980000px;}
.ls5{letter-spacing:-0.600000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.264000px;}
.ls1{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.924000px;}
.ls0{letter-spacing:1.008000px;}
.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;}
}
.ws0{word-spacing:-17.424000px;}
.ws4{word-spacing:-16.764000px;}
.ws1{word-spacing:-15.000000px;}
.ws3{word-spacing:-8.745000px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-8.502000px;}
._1{margin-left:-6.624000px;}
._2{margin-left:-5.544000px;}
._0{margin-left:-3.888000px;}
._a{margin-left:-2.496000px;}
._7{margin-left:-1.386000px;}
._3{width:1.008000px;}
._6{width:2.448000px;}
._8{width:3.504000px;}
._b{width:4.668000px;}
._c{width:5.892000px;}
._5{width:7.056000px;}
._4{width:8.208000px;}
._d{width:9.336000px;}
._e{width:10.668000px;}
._f{width:12.780000px;}
._10{width:156.600000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.980000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y80{bottom:35.896650px;}
.y39{bottom:35.896950px;}
.ybf{bottom:35.897100px;}
.ybd{bottom:37.314000px;}
.y1{bottom:37.314150px;}
.y77{bottom:37.314300px;}
.yde{bottom:37.314450px;}
.yb4{bottom:92.834550px;}
.y7f{bottom:92.834700px;}
.y71{bottom:92.834850px;}
.yd7{bottom:92.835000px;}
.y112{bottom:92.902050px;}
.yb3{bottom:110.834550px;}
.y7e{bottom:110.834700px;}
.y70{bottom:110.834850px;}
.yd6{bottom:110.835000px;}
.y111{bottom:110.897550px;}
.ybe{bottom:128.834550px;}
.y2e{bottom:128.834700px;}
.y6f{bottom:128.834850px;}
.yd5{bottom:128.835000px;}
.y110{bottom:128.893050px;}
.yb2{bottom:146.834550px;}
.y2d{bottom:146.834700px;}
.y6e{bottom:146.834850px;}
.ydd{bottom:146.835000px;}
.y10f{bottom:146.888550px;}
.yb1{bottom:164.834550px;}
.y2c{bottom:164.834700px;}
.y6d{bottom:164.834850px;}
.yd4{bottom:164.835000px;}
.y10e{bottom:164.884050px;}
.yb0{bottom:182.834550px;}
.y38{bottom:182.834700px;}
.y6c{bottom:182.834850px;}
.yd3{bottom:182.835000px;}
.y10d{bottom:182.879550px;}
.y2b{bottom:199.034700px;}
.yaf{bottom:200.834550px;}
.y37{bottom:200.834700px;}
.y6b{bottom:200.834850px;}
.yd2{bottom:200.835000px;}
.y10c{bottom:200.875050px;}
.yae{bottom:218.834550px;}
.y36{bottom:218.834700px;}
.y76{bottom:218.834850px;}
.yd1{bottom:218.835000px;}
.y10b{bottom:218.870550px;}
.yad{bottom:236.834550px;}
.y2a{bottom:236.834700px;}
.y6a{bottom:236.834850px;}
.yd0{bottom:236.835000px;}
.y10a{bottom:236.866050px;}
.yac{bottom:254.834550px;}
.y29{bottom:254.834700px;}
.y69{bottom:254.834850px;}
.ycf{bottom:254.835000px;}
.y109{bottom:254.861550px;}
.yab{bottom:272.834550px;}
.y28{bottom:272.834700px;}
.y68{bottom:272.834850px;}
.yce{bottom:272.835000px;}
.y108{bottom:272.857050px;}
.yaa{bottom:290.834550px;}
.y27{bottom:290.834700px;}
.y67{bottom:290.834850px;}
.ycd{bottom:290.835000px;}
.y107{bottom:290.852550px;}
.ya9{bottom:308.834550px;}
.y26{bottom:308.834700px;}
.y66{bottom:308.834850px;}
.ycc{bottom:308.835000px;}
.y106{bottom:308.848050px;}
.ybc{bottom:326.834550px;}
.y25{bottom:326.834700px;}
.y65{bottom:326.834850px;}
.ycb{bottom:326.835000px;}
.y105{bottom:326.843550px;}
.ya8{bottom:344.834550px;}
.y24{bottom:344.834700px;}
.y64{bottom:344.834850px;}
.ydc{bottom:344.835000px;}
.y104{bottom:344.839050px;}
.ya7{bottom:362.834550px;}
.y23{bottom:362.834700px;}
.y63{bottom:362.834850px;}
.yca{bottom:362.835000px;}
.ya6{bottom:380.834550px;}
.y22{bottom:380.834700px;}
.y62{bottom:380.834850px;}
.yc9{bottom:380.835000px;}
.ybb{bottom:397.034550px;}
.ya5{bottom:398.834550px;}
.y21{bottom:398.834700px;}
.y75{bottom:398.834850px;}
.yc8{bottom:398.835000px;}
.ya4{bottom:416.834550px;}
.y20{bottom:416.834700px;}
.y61{bottom:416.834850px;}
.yc7{bottom:416.835000px;}
.y103{bottom:433.076850px;}
.yba{bottom:434.834550px;}
.y35{bottom:434.834700px;}
.y60{bottom:434.834850px;}
.yc6{bottom:434.835000px;}
.ya3{bottom:452.834550px;}
.y1f{bottom:452.834700px;}
.y5f{bottom:452.834850px;}
.yc5{bottom:452.835000px;}
.ya2{bottom:470.834550px;}
.y1e{bottom:470.834700px;}
.y5e{bottom:470.834850px;}
.yc4{bottom:470.835000px;}
.ya1{bottom:488.834550px;}
.y1d{bottom:488.834700px;}
.y5d{bottom:488.834850px;}
.yc3{bottom:488.835000px;}
.ya0{bottom:506.834550px;}
.y1c{bottom:506.834700px;}
.y5c{bottom:506.834850px;}
.ydb{bottom:506.835000px;}
.yc2{bottom:524.830350px;}
.y9f{bottom:524.834550px;}
.y1b{bottom:524.834700px;}
.y5b{bottom:524.834850px;}
.yda{bottom:524.835000px;}
.yb9{bottom:542.834550px;}
.y1a{bottom:542.834700px;}
.y5a{bottom:542.834850px;}
.yd9{bottom:542.835000px;}
.y102{bottom:542.839050px;}
.yc1{bottom:559.034850px;}
.y9e{bottom:560.834550px;}
.y19{bottom:560.834700px;}
.y59{bottom:560.834850px;}
.yd8{bottom:560.835000px;}
.y9d{bottom:578.834550px;}
.y34{bottom:578.834700px;}
.y58{bottom:578.834850px;}
.yfc{bottom:578.835000px;}
.y9c{bottom:596.834550px;}
.y18{bottom:596.834700px;}
.y57{bottom:596.834850px;}
.yc0{bottom:596.835000px;}
.y9b{bottom:614.834550px;}
.y17{bottom:614.834700px;}
.y56{bottom:614.834850px;}
.yf9{bottom:614.835000px;}
.yb8{bottom:632.834550px;}
.y16{bottom:632.834700px;}
.y55{bottom:632.834850px;}
.yf8{bottom:632.835000px;}
.y9a{bottom:650.834550px;}
.y15{bottom:650.834700px;}
.y54{bottom:650.834850px;}
.yf7{bottom:650.835000px;}
.y99{bottom:668.834550px;}
.y14{bottom:668.834700px;}
.y53{bottom:668.834850px;}
.yf6{bottom:668.835000px;}
.y98{bottom:686.834550px;}
.y13{bottom:686.834700px;}
.y52{bottom:686.834850px;}
.yf5{bottom:686.835000px;}
.y97{bottom:704.834550px;}
.y12{bottom:704.834700px;}
.y51{bottom:704.834850px;}
.yf4{bottom:704.835000px;}
.y96{bottom:722.834550px;}
.y11{bottom:722.834700px;}
.y50{bottom:722.834850px;}
.yf3{bottom:722.835000px;}
.y95{bottom:740.834550px;}
.y10{bottom:740.834700px;}
.y4f{bottom:740.834850px;}
.y94{bottom:758.834550px;}
.y33{bottom:758.834700px;}
.y4e{bottom:758.834850px;}
.yf2{bottom:758.835000px;}
.y93{bottom:776.834550px;}
.yf{bottom:776.834700px;}
.y4d{bottom:776.834850px;}
.yf1{bottom:776.835000px;}
.y92{bottom:794.834550px;}
.ye{bottom:794.834700px;}
.y4c{bottom:794.834850px;}
.yf0{bottom:794.835000px;}
.yb7{bottom:812.834550px;}
.yd{bottom:812.834700px;}
.y4b{bottom:812.834850px;}
.yef{bottom:812.835000px;}
.y91{bottom:830.834550px;}
.y32{bottom:830.834700px;}
.y4a{bottom:830.834850px;}
.yfb{bottom:830.835000px;}
.yc{bottom:847.034700px;}
.y90{bottom:848.834550px;}
.y31{bottom:848.834700px;}
.y49{bottom:848.834850px;}
.yee{bottom:848.835000px;}
.y8f{bottom:866.834550px;}
.y30{bottom:866.834700px;}
.y48{bottom:866.834850px;}
.yed{bottom:866.835000px;}
.y122{bottom:866.906550px;}
.y8e{bottom:884.834550px;}
.yb{bottom:884.834700px;}
.y47{bottom:884.834850px;}
.yec{bottom:884.835000px;}
.y121{bottom:884.902050px;}
.y8d{bottom:902.834550px;}
.ya{bottom:902.834700px;}
.y46{bottom:902.834850px;}
.yfa{bottom:902.835000px;}
.y120{bottom:902.897550px;}
.y8c{bottom:920.834550px;}
.y9{bottom:920.834700px;}
.y74{bottom:920.834850px;}
.yeb{bottom:920.835000px;}
.y11f{bottom:920.893050px;}
.y8b{bottom:938.834550px;}
.y2f{bottom:938.834700px;}
.y45{bottom:938.834850px;}
.yea{bottom:938.835000px;}
.y11e{bottom:938.888550px;}
.yb6{bottom:956.834550px;}
.y8{bottom:956.834700px;}
.y44{bottom:956.834850px;}
.ye9{bottom:956.835000px;}
.y11d{bottom:956.884050px;}
.y8a{bottom:974.834550px;}
.y7{bottom:974.834700px;}
.y43{bottom:974.834850px;}
.ye8{bottom:974.835000px;}
.y11c{bottom:974.879550px;}
.y89{bottom:992.834550px;}
.y6{bottom:992.834700px;}
.y42{bottom:992.834850px;}
.ye7{bottom:992.835000px;}
.y11b{bottom:992.875050px;}
.y88{bottom:1010.834550px;}
.y7d{bottom:1010.834700px;}
.y41{bottom:1010.834850px;}
.ye6{bottom:1010.835000px;}
.y11a{bottom:1010.870550px;}
.y87{bottom:1028.834550px;}
.y101{bottom:1028.834700px;}
.y40{bottom:1028.834850px;}
.y119{bottom:1028.866050px;}
.y86{bottom:1046.834550px;}
.y7c{bottom:1046.834700px;}
.y3f{bottom:1046.834850px;}
.ye5{bottom:1046.835000px;}
.y118{bottom:1046.861550px;}
.y5{bottom:1063.034700px;}
.y85{bottom:1064.834550px;}
.y7b{bottom:1064.834700px;}
.y3e{bottom:1064.834850px;}
.ye4{bottom:1064.835000px;}
.y117{bottom:1064.857050px;}
.yb5{bottom:1082.834550px;}
.y100{bottom:1082.834700px;}
.y3d{bottom:1082.834850px;}
.ye3{bottom:1082.835000px;}
.y116{bottom:1082.852550px;}
.y7a{bottom:1099.034700px;}
.y84{bottom:1100.834550px;}
.yff{bottom:1100.834700px;}
.y3c{bottom:1100.834850px;}
.ye2{bottom:1100.835000px;}
.y115{bottom:1100.848050px;}
.y83{bottom:1118.834550px;}
.yfe{bottom:1118.834700px;}
.y3b{bottom:1118.834850px;}
.ye1{bottom:1118.835000px;}
.y114{bottom:1118.843550px;}
.y4{bottom:1121.545350px;}
.y82{bottom:1136.834550px;}
.y79{bottom:1136.834700px;}
.y73{bottom:1136.834850px;}
.ye0{bottom:1136.835000px;}
.y113{bottom:1136.839050px;}
.y3{bottom:1143.145350px;}
.y81{bottom:1154.834550px;}
.y78{bottom:1154.834700px;}
.y72{bottom:1154.834850px;}
.ydf{bottom:1154.835000px;}
.y2{bottom:1164.745350px;}
.yfd{bottom:1165.832850px;}
.y3a{bottom:1165.833000px;}
.hc{height:45.144000px;}
.h9{height:46.602000px;}
.h8{height:50.160000px;}
.h3{height:51.780000px;}
.h7{height:52.380000px;}
.ha{height:55.176000px;}
.h6{height:56.958000px;}
.hb{height:57.618000px;}
.h5{height:62.432471px;}
.h4{height:62.856000px;}
.h2{height:1262.835000px;}
.h0{height:1262.835022px;}
.h1{height:1263.000000px;}
.w3{width:892.912500px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:51.023550px;}
.x2{left:54.125850px;}
.x3{left:62.503950px;}
.x7{left:96.511500px;}
.x4{left:455.443950px;}
.x5{left:463.948950px;}
.x1{left:809.055150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.234667pt;}
.ls1{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.821333pt;}
.ls0{letter-spacing:0.896000pt;}
.ws0{word-spacing:-15.488000pt;}
.ws4{word-spacing:-14.901333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws3{word-spacing:-7.773333pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-7.557333pt;}
._1{margin-left:-5.888000pt;}
._2{margin-left:-4.928000pt;}
._0{margin-left:-3.456000pt;}
._a{margin-left:-2.218667pt;}
._7{margin-left:-1.232000pt;}
._3{width:0.896000pt;}
._6{width:2.176000pt;}
._8{width:3.114667pt;}
._b{width:4.149333pt;}
._c{width:5.237333pt;}
._5{width:6.272000pt;}
._4{width:7.296000pt;}
._d{width:8.298667pt;}
._e{width:9.482667pt;}
._f{width:11.360000pt;}
._10{width:139.200000pt;}
.fs4{font-size:31.093333pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:31.908133pt;}
.y39{bottom:31.908400pt;}
.ybf{bottom:31.908533pt;}
.ybd{bottom:33.168000pt;}
.y1{bottom:33.168133pt;}
.y77{bottom:33.168267pt;}
.yde{bottom:33.168400pt;}
.yb4{bottom:82.519600pt;}
.y7f{bottom:82.519733pt;}
.y71{bottom:82.519867pt;}
.yd7{bottom:82.520000pt;}
.y112{bottom:82.579600pt;}
.yb3{bottom:98.519600pt;}
.y7e{bottom:98.519733pt;}
.y70{bottom:98.519867pt;}
.yd6{bottom:98.520000pt;}
.y111{bottom:98.575600pt;}
.ybe{bottom:114.519600pt;}
.y2e{bottom:114.519733pt;}
.y6f{bottom:114.519867pt;}
.yd5{bottom:114.520000pt;}
.y110{bottom:114.571600pt;}
.yb2{bottom:130.519600pt;}
.y2d{bottom:130.519733pt;}
.y6e{bottom:130.519867pt;}
.ydd{bottom:130.520000pt;}
.y10f{bottom:130.567600pt;}
.yb1{bottom:146.519600pt;}
.y2c{bottom:146.519733pt;}
.y6d{bottom:146.519867pt;}
.yd4{bottom:146.520000pt;}
.y10e{bottom:146.563600pt;}
.yb0{bottom:162.519600pt;}
.y38{bottom:162.519733pt;}
.y6c{bottom:162.519867pt;}
.yd3{bottom:162.520000pt;}
.y10d{bottom:162.559600pt;}
.y2b{bottom:176.919733pt;}
.yaf{bottom:178.519600pt;}
.y37{bottom:178.519733pt;}
.y6b{bottom:178.519867pt;}
.yd2{bottom:178.520000pt;}
.y10c{bottom:178.555600pt;}
.yae{bottom:194.519600pt;}
.y36{bottom:194.519733pt;}
.y76{bottom:194.519867pt;}
.yd1{bottom:194.520000pt;}
.y10b{bottom:194.551600pt;}
.yad{bottom:210.519600pt;}
.y2a{bottom:210.519733pt;}
.y6a{bottom:210.519867pt;}
.yd0{bottom:210.520000pt;}
.y10a{bottom:210.547600pt;}
.yac{bottom:226.519600pt;}
.y29{bottom:226.519733pt;}
.y69{bottom:226.519867pt;}
.ycf{bottom:226.520000pt;}
.y109{bottom:226.543600pt;}
.yab{bottom:242.519600pt;}
.y28{bottom:242.519733pt;}
.y68{bottom:242.519867pt;}
.yce{bottom:242.520000pt;}
.y108{bottom:242.539600pt;}
.yaa{bottom:258.519600pt;}
.y27{bottom:258.519733pt;}
.y67{bottom:258.519867pt;}
.ycd{bottom:258.520000pt;}
.y107{bottom:258.535600pt;}
.ya9{bottom:274.519600pt;}
.y26{bottom:274.519733pt;}
.y66{bottom:274.519867pt;}
.ycc{bottom:274.520000pt;}
.y106{bottom:274.531600pt;}
.ybc{bottom:290.519600pt;}
.y25{bottom:290.519733pt;}
.y65{bottom:290.519867pt;}
.ycb{bottom:290.520000pt;}
.y105{bottom:290.527600pt;}
.ya8{bottom:306.519600pt;}
.y24{bottom:306.519733pt;}
.y64{bottom:306.519867pt;}
.ydc{bottom:306.520000pt;}
.y104{bottom:306.523600pt;}
.ya7{bottom:322.519600pt;}
.y23{bottom:322.519733pt;}
.y63{bottom:322.519867pt;}
.yca{bottom:322.520000pt;}
.ya6{bottom:338.519600pt;}
.y22{bottom:338.519733pt;}
.y62{bottom:338.519867pt;}
.yc9{bottom:338.520000pt;}
.ybb{bottom:352.919600pt;}
.ya5{bottom:354.519600pt;}
.y21{bottom:354.519733pt;}
.y75{bottom:354.519867pt;}
.yc8{bottom:354.520000pt;}
.ya4{bottom:370.519600pt;}
.y20{bottom:370.519733pt;}
.y61{bottom:370.519867pt;}
.yc7{bottom:370.520000pt;}
.y103{bottom:384.957200pt;}
.yba{bottom:386.519600pt;}
.y35{bottom:386.519733pt;}
.y60{bottom:386.519867pt;}
.yc6{bottom:386.520000pt;}
.ya3{bottom:402.519600pt;}
.y1f{bottom:402.519733pt;}
.y5f{bottom:402.519867pt;}
.yc5{bottom:402.520000pt;}
.ya2{bottom:418.519600pt;}
.y1e{bottom:418.519733pt;}
.y5e{bottom:418.519867pt;}
.yc4{bottom:418.520000pt;}
.ya1{bottom:434.519600pt;}
.y1d{bottom:434.519733pt;}
.y5d{bottom:434.519867pt;}
.yc3{bottom:434.520000pt;}
.ya0{bottom:450.519600pt;}
.y1c{bottom:450.519733pt;}
.y5c{bottom:450.519867pt;}
.ydb{bottom:450.520000pt;}
.yc2{bottom:466.515867pt;}
.y9f{bottom:466.519600pt;}
.y1b{bottom:466.519733pt;}
.y5b{bottom:466.519867pt;}
.yda{bottom:466.520000pt;}
.yb9{bottom:482.519600pt;}
.y1a{bottom:482.519733pt;}
.y5a{bottom:482.519867pt;}
.yd9{bottom:482.520000pt;}
.y102{bottom:482.523600pt;}
.yc1{bottom:496.919867pt;}
.y9e{bottom:498.519600pt;}
.y19{bottom:498.519733pt;}
.y59{bottom:498.519867pt;}
.yd8{bottom:498.520000pt;}
.y9d{bottom:514.519600pt;}
.y34{bottom:514.519733pt;}
.y58{bottom:514.519867pt;}
.yfc{bottom:514.520000pt;}
.y9c{bottom:530.519600pt;}
.y18{bottom:530.519733pt;}
.y57{bottom:530.519867pt;}
.yc0{bottom:530.520000pt;}
.y9b{bottom:546.519600pt;}
.y17{bottom:546.519733pt;}
.y56{bottom:546.519867pt;}
.yf9{bottom:546.520000pt;}
.yb8{bottom:562.519600pt;}
.y16{bottom:562.519733pt;}
.y55{bottom:562.519867pt;}
.yf8{bottom:562.520000pt;}
.y9a{bottom:578.519600pt;}
.y15{bottom:578.519733pt;}
.y54{bottom:578.519867pt;}
.yf7{bottom:578.520000pt;}
.y99{bottom:594.519600pt;}
.y14{bottom:594.519733pt;}
.y53{bottom:594.519867pt;}
.yf6{bottom:594.520000pt;}
.y98{bottom:610.519600pt;}
.y13{bottom:610.519733pt;}
.y52{bottom:610.519867pt;}
.yf5{bottom:610.520000pt;}
.y97{bottom:626.519600pt;}
.y12{bottom:626.519733pt;}
.y51{bottom:626.519867pt;}
.yf4{bottom:626.520000pt;}
.y96{bottom:642.519600pt;}
.y11{bottom:642.519733pt;}
.y50{bottom:642.519867pt;}
.yf3{bottom:642.520000pt;}
.y95{bottom:658.519600pt;}
.y10{bottom:658.519733pt;}
.y4f{bottom:658.519867pt;}
.y94{bottom:674.519600pt;}
.y33{bottom:674.519733pt;}
.y4e{bottom:674.519867pt;}
.yf2{bottom:674.520000pt;}
.y93{bottom:690.519600pt;}
.yf{bottom:690.519733pt;}
.y4d{bottom:690.519867pt;}
.yf1{bottom:690.520000pt;}
.y92{bottom:706.519600pt;}
.ye{bottom:706.519733pt;}
.y4c{bottom:706.519867pt;}
.yf0{bottom:706.520000pt;}
.yb7{bottom:722.519600pt;}
.yd{bottom:722.519733pt;}
.y4b{bottom:722.519867pt;}
.yef{bottom:722.520000pt;}
.y91{bottom:738.519600pt;}
.y32{bottom:738.519733pt;}
.y4a{bottom:738.519867pt;}
.yfb{bottom:738.520000pt;}
.yc{bottom:752.919733pt;}
.y90{bottom:754.519600pt;}
.y31{bottom:754.519733pt;}
.y49{bottom:754.519867pt;}
.yee{bottom:754.520000pt;}
.y8f{bottom:770.519600pt;}
.y30{bottom:770.519733pt;}
.y48{bottom:770.519867pt;}
.yed{bottom:770.520000pt;}
.y122{bottom:770.583600pt;}
.y8e{bottom:786.519600pt;}
.yb{bottom:786.519733pt;}
.y47{bottom:786.519867pt;}
.yec{bottom:786.520000pt;}
.y121{bottom:786.579600pt;}
.y8d{bottom:802.519600pt;}
.ya{bottom:802.519733pt;}
.y46{bottom:802.519867pt;}
.yfa{bottom:802.520000pt;}
.y120{bottom:802.575600pt;}
.y8c{bottom:818.519600pt;}
.y9{bottom:818.519733pt;}
.y74{bottom:818.519867pt;}
.yeb{bottom:818.520000pt;}
.y11f{bottom:818.571600pt;}
.y8b{bottom:834.519600pt;}
.y2f{bottom:834.519733pt;}
.y45{bottom:834.519867pt;}
.yea{bottom:834.520000pt;}
.y11e{bottom:834.567600pt;}
.yb6{bottom:850.519600pt;}
.y8{bottom:850.519733pt;}
.y44{bottom:850.519867pt;}
.ye9{bottom:850.520000pt;}
.y11d{bottom:850.563600pt;}
.y8a{bottom:866.519600pt;}
.y7{bottom:866.519733pt;}
.y43{bottom:866.519867pt;}
.ye8{bottom:866.520000pt;}
.y11c{bottom:866.559600pt;}
.y89{bottom:882.519600pt;}
.y6{bottom:882.519733pt;}
.y42{bottom:882.519867pt;}
.ye7{bottom:882.520000pt;}
.y11b{bottom:882.555600pt;}
.y88{bottom:898.519600pt;}
.y7d{bottom:898.519733pt;}
.y41{bottom:898.519867pt;}
.ye6{bottom:898.520000pt;}
.y11a{bottom:898.551600pt;}
.y87{bottom:914.519600pt;}
.y101{bottom:914.519733pt;}
.y40{bottom:914.519867pt;}
.y119{bottom:914.547600pt;}
.y86{bottom:930.519600pt;}
.y7c{bottom:930.519733pt;}
.y3f{bottom:930.519867pt;}
.ye5{bottom:930.520000pt;}
.y118{bottom:930.543600pt;}
.y5{bottom:944.919733pt;}
.y85{bottom:946.519600pt;}
.y7b{bottom:946.519733pt;}
.y3e{bottom:946.519867pt;}
.ye4{bottom:946.520000pt;}
.y117{bottom:946.539600pt;}
.yb5{bottom:962.519600pt;}
.y100{bottom:962.519733pt;}
.y3d{bottom:962.519867pt;}
.ye3{bottom:962.520000pt;}
.y116{bottom:962.535600pt;}
.y7a{bottom:976.919733pt;}
.y84{bottom:978.519600pt;}
.yff{bottom:978.519733pt;}
.y3c{bottom:978.519867pt;}
.ye2{bottom:978.520000pt;}
.y115{bottom:978.531600pt;}
.y83{bottom:994.519600pt;}
.yfe{bottom:994.519733pt;}
.y3b{bottom:994.519867pt;}
.ye1{bottom:994.520000pt;}
.y114{bottom:994.527600pt;}
.y4{bottom:996.929200pt;}
.y82{bottom:1010.519600pt;}
.y79{bottom:1010.519733pt;}
.y73{bottom:1010.519867pt;}
.ye0{bottom:1010.520000pt;}
.y113{bottom:1010.523600pt;}
.y3{bottom:1016.129200pt;}
.y81{bottom:1026.519600pt;}
.y78{bottom:1026.519733pt;}
.y72{bottom:1026.519867pt;}
.ydf{bottom:1026.520000pt;}
.y2{bottom:1035.329200pt;}
.yfd{bottom:1036.295867pt;}
.y3a{bottom:1036.296000pt;}
.hc{height:40.128000pt;}
.h9{height:41.424000pt;}
.h8{height:44.586667pt;}
.h3{height:46.026667pt;}
.h7{height:46.560000pt;}
.ha{height:49.045333pt;}
.h6{height:50.629333pt;}
.hb{height:51.216000pt;}
.h5{height:55.495529pt;}
.h4{height:55.872000pt;}
.h2{height:1122.520000pt;}
.h0{height:1122.520020pt;}
.h1{height:1122.666667pt;}
.w3{width:793.700000pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:45.354267pt;}
.x2{left:48.111867pt;}
.x3{left:55.559067pt;}
.x7{left:85.788000pt;}
.x4{left:404.839067pt;}
.x5{left:412.399067pt;}
.x1{left:719.160133pt;}
}




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