
    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_e80c1cbf8d05bc96ca427e8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_5d218aba7f3d8877360e928e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_ed3cd0b5557b34912a6aef98.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_a57dea9a372f13b2f64e67d4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9f689acc3e2c37c48e63e210.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_008cb8447a25a8696f196c01.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_351d8c096fda8a55bb8d8178.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.800000px;}
.v2{vertical-align:-15.681600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.800000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-3.408000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.275022px;}
.ls3{letter-spacing:0.275616px;}
.lsa{letter-spacing:0.367800px;}
.ls2{letter-spacing:0.475200px;}
.lsc{letter-spacing:1.696200px;}
.ls0{letter-spacing:1.800000px;}
.lsd{letter-spacing:2.520000px;}
.ls9{letter-spacing:3.780000px;}
.ls4{letter-spacing:5.336400px;}
.ls6{letter-spacing:5.935800px;}
.ls5{letter-spacing:17.100000px;}
.ls8{letter-spacing:20.400000px;}
.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;}
}
.wsa{word-spacing:-20.400000px;}
.ws9{word-spacing:-17.100000px;}
.wsc{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws3{word-spacing:-8.700000px;}
.ws5{word-spacing:-6.960000px;}
.wsd{word-spacing:-3.780000px;}
.wsf{word-spacing:-2.520000px;}
.ws7{word-spacing:-1.800000px;}
.ws8{word-spacing:-0.475200px;}
.ws2{word-spacing:-0.034800px;}
.ws4{word-spacing:-0.027840px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:3.408000px;}
.wsb{word-spacing:5.952000px;}
._20{margin-left:-15.672600px;}
._15{margin-left:-14.292000px;}
._10{margin-left:-11.166000px;}
._1{margin-left:-8.013600px;}
._16{margin-left:-6.769800px;}
._e{margin-left:-5.484000px;}
._4{margin-left:-4.252032px;}
._5{margin-left:-2.893896px;}
._3{margin-left:-1.611000px;}
._2{width:1.800000px;}
._8{width:3.091800px;}
._7{width:4.093200px;}
._6{width:5.346000px;}
._b{width:6.388200px;}
._a{width:8.208000px;}
._f{width:9.906000px;}
._9{width:11.232000px;}
._1c{width:12.234000px;}
._12{width:13.315200px;}
._19{width:14.373600px;}
._11{width:16.689600px;}
._1a{width:18.522600px;}
._1f{width:20.712000px;}
._14{width:21.792000px;}
._18{width:23.115000px;}
._17{width:24.189000px;}
._1b{width:25.914000px;}
._1e{width:28.320000px;}
._1d{width:31.590000px;}
._13{width:33.237000px;}
._d{width:35.013000px;}
._c{width:36.111000px;}
._0{width:50.924400px;}
._21{width:53.472000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.561600px;}
.fs9{font-size:27.840000px;}
.fs8{font-size:34.800000px;}
.fs1{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.802900px;}
.y5c{bottom:86.102400px;}
.y8f{bottom:89.853000px;}
.y26{bottom:92.480400px;}
.y5b{bottom:99.602400px;}
.y8c{bottom:100.502400px;}
.ybe{bottom:102.047250px;}
.ydc{bottom:103.269300px;}
.y8e{bottom:106.353000px;}
.yd2{bottom:106.812150px;}
.y25{bottom:106.880400px;}
.y8b{bottom:114.902400px;}
.y5a{bottom:117.062400px;}
.ydb{bottom:119.769300px;}
.ybd{bottom:120.407250px;}
.y24{bottom:121.280400px;}
.y8d{bottom:121.353000px;}
.yd1{bottom:124.812150px;}
.y59{bottom:126.602400px;}
.ybc{bottom:130.847250px;}
.y8a{bottom:133.262400px;}
.y23{bottom:135.680400px;}
.yd0{bottom:142.812150px;}
.y89{bottom:143.702400px;}
.y58{bottom:144.812400px;}
.ybb{bottom:149.207250px;}
.y22{bottom:154.040400px;}
.y57{bottom:155.102400px;}
.y88{bottom:162.062400px;}
.y21{bottom:164.480550px;}
.ycf{bottom:165.064200px;}
.y56{bottom:169.202400px;}
.yba{bottom:171.542550px;}
.y20{bottom:178.880550px;}
.yce{bottom:183.064200px;}
.y55{bottom:183.302400px;}
.y87{bottom:185.192550px;}
.yb9{bottom:189.542550px;}
.y1f{bottom:197.240550px;}
.ycd{bottom:201.064200px;}
.y54{bottom:201.362400px;}
.y86{bottom:202.892550px;}
.yb8{bottom:207.542550px;}
.y1e{bottom:211.640700px;}
.ycc{bottom:219.064200px;}
.y85{bottom:220.592550px;}
.y53{bottom:224.388600px;}
.yb7{bottom:226.292550px;}
.y1d{bottom:233.597400px;}
.ycb{bottom:237.064200px;}
.y84{bottom:238.292550px;}
.y52{bottom:241.788600px;}
.yb6{bottom:244.292550px;}
.y1c{bottom:251.597400px;}
.yca{bottom:255.064200px;}
.y83{bottom:255.992550px;}
.y51{bottom:259.188600px;}
.yb5{bottom:262.292550px;}
.yc9{bottom:273.064200px;}
.y82{bottom:273.692550px;}
.y1b{bottom:273.849450px;}
.y50{bottom:276.588600px;}
.yb4{bottom:280.292550px;}
.yc8{bottom:291.064200px;}
.y81{bottom:291.392550px;}
.y1a{bottom:291.849450px;}
.y4f{bottom:293.988600px;}
.yb3{bottom:298.292550px;}
.y80{bottom:309.092550px;}
.y19{bottom:309.849450px;}
.yc7{bottom:313.316100px;}
.y4e{bottom:315.640500px;}
.yb2{bottom:320.544450px;}
.y7f{bottom:331.044450px;}
.yc6{bottom:331.316100px;}
.y4d{bottom:333.040500px;}
.yb1{bottom:338.544450px;}
.y7e{bottom:348.744450px;}
.y18{bottom:349.109250px;}
.yc5{bottom:349.316100px;}
.y4c{bottom:350.440500px;}
.yb0{bottom:356.544450px;}
.y7d{bottom:366.444450px;}
.yc4{bottom:367.316100px;}
.y4b{bottom:367.840500px;}
.y17{bottom:368.609250px;}
.yaf{bottom:374.544450px;}
.y7c{bottom:384.144450px;}
.yc3{bottom:385.316100px;}
.y4a{bottom:389.492550px;}
.yae{bottom:392.544450px;}
.y16{bottom:401.609250px;}
.y7b{bottom:406.096500px;}
.y49{bottom:406.892550px;}
.yc2{bottom:407.568150px;}
.yad{bottom:410.544450px;}
.y15{bottom:420.359250px;}
.y7a{bottom:423.796500px;}
.y48{bottom:424.292550px;}
.yc1{bottom:425.568150px;}
.yac{bottom:428.544450px;}
.y14{bottom:439.109250px;}
.y79{bottom:441.496500px;}
.y47{bottom:441.692550px;}
.yc0{bottom:443.568150px;}
.yab{bottom:446.544450px;}
.y13{bottom:457.859250px;}
.y46{bottom:459.092550px;}
.y78{bottom:459.196500px;}
.ybf{bottom:461.568150px;}
.yaa{bottom:464.544450px;}
.y45{bottom:476.492550px;}
.y12{bottom:476.609250px;}
.y77{bottom:476.896500px;}
.ya9{bottom:486.796500px;}
.y44{bottom:493.892550px;}
.y76{bottom:494.596500px;}
.y11{bottom:495.359250px;}
.yd5{bottom:503.994750px;}
.ya8{bottom:504.796500px;}
.y43{bottom:511.292550px;}
.y75{bottom:512.296500px;}
.y10{bottom:514.109250px;}
.yd4{bottom:520.494750px;}
.ya7{bottom:522.796500px;}
.y42{bottom:528.692550px;}
.y74{bottom:529.996500px;}
.yf{bottom:532.859250px;}
.yd3{bottom:535.494750px;}
.ya6{bottom:540.796500px;}
.y41{bottom:546.092550px;}
.y73{bottom:547.696500px;}
.ye{bottom:551.609250px;}
.ya5{bottom:558.796500px;}
.y40{bottom:563.492550px;}
.y72{bottom:565.396500px;}
.yd{bottom:570.359250px;}
.ya4{bottom:576.796500px;}
.y71{bottom:583.096500px;}
.y3f{bottom:585.144450px;}
.ya3{bottom:594.796350px;}
.y3e{bottom:602.544450px;}
.y70{bottom:605.048400px;}
.ya2{bottom:612.796350px;}
.y3d{bottom:619.944450px;}
.y6f{bottom:622.748400px;}
.ya1{bottom:635.048400px;}
.y3c{bottom:637.344450px;}
.y6e{bottom:640.448400px;}
.yc{bottom:640.473000px;}
.yda{bottom:642.536550px;}
.ya0{bottom:653.048400px;}
.y3b{bottom:654.744450px;}
.yd9{bottom:656.936550px;}
.y6d{bottom:658.148400px;}
.yb{bottom:659.393400px;}
.y9f{bottom:671.048400px;}
.yd8{bottom:671.336550px;}
.y3a{bottom:672.144450px;}
.y6c{bottom:675.848400px;}
.ya{bottom:676.416300px;}
.yd7{bottom:685.736550px;}
.y9e{bottom:689.048400px;}
.y9{bottom:689.518800px;}
.y39{bottom:689.544450px;}
.y6b{bottom:693.548400px;}
.y8{bottom:704.518800px;}
.y38{bottom:706.944450px;}
.y9d{bottom:707.048400px;}
.y6a{bottom:711.248400px;}
.yd6{bottom:712.892550px;}
.y7{bottom:723.439200px;}
.y37{bottom:724.344450px;}
.y9c{bottom:725.048400px;}
.y69{bottom:728.948400px;}
.y6{bottom:740.462100px;}
.y9b{bottom:743.048400px;}
.y36{bottom:745.996500px;}
.y68{bottom:746.648400px;}
.y9a{bottom:761.048400px;}
.y35{bottom:763.396500px;}
.y67{bottom:764.348400px;}
.y5{bottom:767.560500px;}
.y99{bottom:779.048400px;}
.y34{bottom:780.796350px;}
.y66{bottom:782.048400px;}
.y4{bottom:786.212550px;}
.y98{bottom:797.048400px;}
.y33{bottom:802.448400px;}
.y65{bottom:804.000300px;}
.y3{bottom:813.212550px;}
.y97{bottom:815.048400px;}
.y32{bottom:819.848400px;}
.y64{bottom:821.700300px;}
.y96{bottom:833.048400px;}
.y31{bottom:837.248400px;}
.y63{bottom:839.400450px;}
.y95{bottom:851.048400px;}
.y30{bottom:854.648400px;}
.y62{bottom:857.100450px;}
.y2{bottom:864.212550px;}
.y94{bottom:869.048400px;}
.y61{bottom:874.800450px;}
.y2f{bottom:876.300450px;}
.y93{bottom:891.300450px;}
.y60{bottom:892.500300px;}
.y2e{bottom:893.700300px;}
.y92{bottom:909.300450px;}
.y5f{bottom:910.200300px;}
.y2d{bottom:911.100450px;}
.y29{bottom:920.042100px;}
.y91{bottom:927.300450px;}
.y5e{bottom:927.900450px;}
.y2c{bottom:928.500300px;}
.y28{bottom:942.542100px;}
.y90{bottom:945.300450px;}
.y5d{bottom:945.600450px;}
.y2b{bottom:945.900450px;}
.y2a{bottom:963.300450px;}
.y27{bottom:963.542100px;}
.h6{height:26.014416px;}
.hb{height:26.277188px;}
.h10{height:35.411133px;}
.he{height:41.660156px;}
.h7{height:41.696016px;}
.h5{height:42.117188px;}
.hd{height:42.632812px;}
.h9{height:47.381836px;}
.h8{height:47.961914px;}
.h2{height:48.656250px;}
.ha{height:52.646484px;}
.hc{height:53.291016px;}
.h3{height:63.175781px;}
.hf{height:63.949219px;}
.h4{height:79.936523px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xf{left:68.031450px;}
.x10{left:93.543300px;}
.x2{left:102.047250px;}
.x3{left:112.961700px;}
.x4{left:122.651700px;}
.xd{left:127.559100px;}
.xc{left:153.070800px;}
.xa{left:154.809000px;}
.x6{left:162.722100px;}
.x7{left:168.778800px;}
.x8{left:189.894000px;}
.xb{left:224.514300px;}
.x5{left:279.038550px;}
.x11{left:297.618600px;}
.x9{left:301.263150px;}
.xe{left:318.076350px;}
.x1{left:645.803100px;}
@media print{
.v4{vertical-align:-17.600000pt;}
.v2{vertical-align:-13.939200pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.600000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-3.029333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.244464pt;}
.ls3{letter-spacing:0.244992pt;}
.lsa{letter-spacing:0.326933pt;}
.ls2{letter-spacing:0.422400pt;}
.lsc{letter-spacing:1.507733pt;}
.ls0{letter-spacing:1.600000pt;}
.lsd{letter-spacing:2.240000pt;}
.ls9{letter-spacing:3.360000pt;}
.ls4{letter-spacing:4.743467pt;}
.ls6{letter-spacing:5.276267pt;}
.ls5{letter-spacing:15.200000pt;}
.ls8{letter-spacing:18.133333pt;}
.wsa{word-spacing:-18.133333pt;}
.ws9{word-spacing:-15.200000pt;}
.wsc{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws3{word-spacing:-7.733333pt;}
.ws5{word-spacing:-6.186667pt;}
.wsd{word-spacing:-3.360000pt;}
.wsf{word-spacing:-2.240000pt;}
.ws7{word-spacing:-1.600000pt;}
.ws8{word-spacing:-0.422400pt;}
.ws2{word-spacing:-0.030933pt;}
.ws4{word-spacing:-0.024747pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:3.029333pt;}
.wsb{word-spacing:5.290667pt;}
._20{margin-left:-13.931200pt;}
._15{margin-left:-12.704000pt;}
._10{margin-left:-9.925333pt;}
._1{margin-left:-7.123200pt;}
._16{margin-left:-6.017600pt;}
._e{margin-left:-4.874667pt;}
._4{margin-left:-3.779584pt;}
._5{margin-left:-2.572352pt;}
._3{margin-left:-1.432000pt;}
._2{width:1.600000pt;}
._8{width:2.748267pt;}
._7{width:3.638400pt;}
._6{width:4.752000pt;}
._b{width:5.678400pt;}
._a{width:7.296000pt;}
._f{width:8.805333pt;}
._9{width:9.984000pt;}
._1c{width:10.874667pt;}
._12{width:11.835733pt;}
._19{width:12.776533pt;}
._11{width:14.835200pt;}
._1a{width:16.464533pt;}
._1f{width:18.410667pt;}
._14{width:19.370667pt;}
._18{width:20.546667pt;}
._17{width:21.501333pt;}
._1b{width:23.034667pt;}
._1e{width:25.173333pt;}
._1d{width:28.080000pt;}
._13{width:29.544000pt;}
._d{width:31.122667pt;}
._c{width:32.098667pt;}
._0{width:45.266133pt;}
._21{width:47.530667pt;}
.fs4{font-size:24.499200pt;}
.fs9{font-size:24.746667pt;}
.fs8{font-size:30.933333pt;}
.fs1{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.158133pt;}
.y5c{bottom:76.535467pt;}
.y8f{bottom:79.869333pt;}
.y26{bottom:82.204800pt;}
.y5b{bottom:88.535467pt;}
.y8c{bottom:89.335467pt;}
.ybe{bottom:90.708667pt;}
.ydc{bottom:91.794933pt;}
.y8e{bottom:94.536000pt;}
.yd2{bottom:94.944133pt;}
.y25{bottom:95.004800pt;}
.y8b{bottom:102.135467pt;}
.y5a{bottom:104.055467pt;}
.ydb{bottom:106.461600pt;}
.ybd{bottom:107.028667pt;}
.y24{bottom:107.804800pt;}
.y8d{bottom:107.869333pt;}
.yd1{bottom:110.944133pt;}
.y59{bottom:112.535467pt;}
.ybc{bottom:116.308667pt;}
.y8a{bottom:118.455467pt;}
.y23{bottom:120.604800pt;}
.yd0{bottom:126.944133pt;}
.y89{bottom:127.735467pt;}
.y58{bottom:128.722133pt;}
.ybb{bottom:132.628667pt;}
.y22{bottom:136.924800pt;}
.y57{bottom:137.868800pt;}
.y88{bottom:144.055467pt;}
.y21{bottom:146.204933pt;}
.ycf{bottom:146.723733pt;}
.y56{bottom:150.402133pt;}
.yba{bottom:152.482267pt;}
.y20{bottom:159.004933pt;}
.yce{bottom:162.723733pt;}
.y55{bottom:162.935467pt;}
.y87{bottom:164.615600pt;}
.yb9{bottom:168.482267pt;}
.y1f{bottom:175.324933pt;}
.ycd{bottom:178.723733pt;}
.y54{bottom:178.988800pt;}
.y86{bottom:180.348933pt;}
.yb8{bottom:184.482267pt;}
.y1e{bottom:188.125067pt;}
.ycc{bottom:194.723733pt;}
.y85{bottom:196.082267pt;}
.y53{bottom:199.456533pt;}
.yb7{bottom:201.148933pt;}
.y1d{bottom:207.642133pt;}
.ycb{bottom:210.723733pt;}
.y84{bottom:211.815600pt;}
.y52{bottom:214.923200pt;}
.yb6{bottom:217.148933pt;}
.y1c{bottom:223.642133pt;}
.yca{bottom:226.723733pt;}
.y83{bottom:227.548933pt;}
.y51{bottom:230.389867pt;}
.yb5{bottom:233.148933pt;}
.yc9{bottom:242.723733pt;}
.y82{bottom:243.282267pt;}
.y1b{bottom:243.421733pt;}
.y50{bottom:245.856533pt;}
.yb4{bottom:249.148933pt;}
.yc8{bottom:258.723733pt;}
.y81{bottom:259.015600pt;}
.y1a{bottom:259.421733pt;}
.y4f{bottom:261.323200pt;}
.yb3{bottom:265.148933pt;}
.y80{bottom:274.748933pt;}
.y19{bottom:275.421733pt;}
.yc7{bottom:278.503200pt;}
.y4e{bottom:280.569333pt;}
.yb2{bottom:284.928400pt;}
.y7f{bottom:294.261733pt;}
.yc6{bottom:294.503200pt;}
.y4d{bottom:296.036000pt;}
.yb1{bottom:300.928400pt;}
.y7e{bottom:309.995067pt;}
.y18{bottom:310.319333pt;}
.yc5{bottom:310.503200pt;}
.y4c{bottom:311.502667pt;}
.yb0{bottom:316.928400pt;}
.y7d{bottom:325.728400pt;}
.yc4{bottom:326.503200pt;}
.y4b{bottom:326.969333pt;}
.y17{bottom:327.652667pt;}
.yaf{bottom:332.928400pt;}
.y7c{bottom:341.461733pt;}
.yc3{bottom:342.503200pt;}
.y4a{bottom:346.215600pt;}
.yae{bottom:348.928400pt;}
.y16{bottom:356.986000pt;}
.y7b{bottom:360.974667pt;}
.y49{bottom:361.682267pt;}
.yc2{bottom:362.282800pt;}
.yad{bottom:364.928400pt;}
.y15{bottom:373.652667pt;}
.y7a{bottom:376.708000pt;}
.y48{bottom:377.148933pt;}
.yc1{bottom:378.282800pt;}
.yac{bottom:380.928400pt;}
.y14{bottom:390.319333pt;}
.y79{bottom:392.441333pt;}
.y47{bottom:392.615600pt;}
.yc0{bottom:394.282800pt;}
.yab{bottom:396.928400pt;}
.y13{bottom:406.986000pt;}
.y46{bottom:408.082267pt;}
.y78{bottom:408.174667pt;}
.ybf{bottom:410.282800pt;}
.yaa{bottom:412.928400pt;}
.y45{bottom:423.548933pt;}
.y12{bottom:423.652667pt;}
.y77{bottom:423.908000pt;}
.ya9{bottom:432.708000pt;}
.y44{bottom:439.015600pt;}
.y76{bottom:439.641333pt;}
.y11{bottom:440.319333pt;}
.yd5{bottom:447.995333pt;}
.ya8{bottom:448.708000pt;}
.y43{bottom:454.482267pt;}
.y75{bottom:455.374667pt;}
.y10{bottom:456.986000pt;}
.yd4{bottom:462.662000pt;}
.ya7{bottom:464.708000pt;}
.y42{bottom:469.948933pt;}
.y74{bottom:471.108000pt;}
.yf{bottom:473.652667pt;}
.yd3{bottom:475.995333pt;}
.ya6{bottom:480.708000pt;}
.y41{bottom:485.415600pt;}
.y73{bottom:486.841333pt;}
.ye{bottom:490.319333pt;}
.ya5{bottom:496.708000pt;}
.y40{bottom:500.882267pt;}
.y72{bottom:502.574667pt;}
.yd{bottom:506.986000pt;}
.ya4{bottom:512.708000pt;}
.y71{bottom:518.308000pt;}
.y3f{bottom:520.128400pt;}
.ya3{bottom:528.707867pt;}
.y3e{bottom:535.595067pt;}
.y70{bottom:537.820800pt;}
.ya2{bottom:544.707867pt;}
.y3d{bottom:551.061733pt;}
.y6f{bottom:553.554133pt;}
.ya1{bottom:564.487467pt;}
.y3c{bottom:566.528400pt;}
.y6e{bottom:569.287467pt;}
.yc{bottom:569.309333pt;}
.yda{bottom:571.143600pt;}
.ya0{bottom:580.487467pt;}
.y3b{bottom:581.995067pt;}
.yd9{bottom:583.943600pt;}
.y6d{bottom:585.020800pt;}
.yb{bottom:586.127467pt;}
.y9f{bottom:596.487467pt;}
.yd8{bottom:596.743600pt;}
.y3a{bottom:597.461733pt;}
.y6c{bottom:600.754133pt;}
.ya{bottom:601.258933pt;}
.yd7{bottom:609.543600pt;}
.y9e{bottom:612.487467pt;}
.y9{bottom:612.905600pt;}
.y39{bottom:612.928400pt;}
.y6b{bottom:616.487467pt;}
.y8{bottom:626.238933pt;}
.y38{bottom:628.395067pt;}
.y9d{bottom:628.487467pt;}
.y6a{bottom:632.220800pt;}
.yd6{bottom:633.682267pt;}
.y7{bottom:643.057067pt;}
.y37{bottom:643.861733pt;}
.y9c{bottom:644.487467pt;}
.y69{bottom:647.954133pt;}
.y6{bottom:658.188533pt;}
.y9b{bottom:660.487467pt;}
.y36{bottom:663.108000pt;}
.y68{bottom:663.687467pt;}
.y9a{bottom:676.487467pt;}
.y35{bottom:678.574667pt;}
.y67{bottom:679.420800pt;}
.y5{bottom:682.276000pt;}
.y99{bottom:692.487467pt;}
.y34{bottom:694.041200pt;}
.y66{bottom:695.154133pt;}
.y4{bottom:698.855600pt;}
.y98{bottom:708.487467pt;}
.y33{bottom:713.287467pt;}
.y65{bottom:714.666933pt;}
.y3{bottom:722.855600pt;}
.y97{bottom:724.487467pt;}
.y32{bottom:728.754133pt;}
.y64{bottom:730.400267pt;}
.y96{bottom:740.487467pt;}
.y31{bottom:744.220800pt;}
.y63{bottom:746.133733pt;}
.y95{bottom:756.487467pt;}
.y30{bottom:759.687467pt;}
.y62{bottom:761.867067pt;}
.y2{bottom:768.188933pt;}
.y94{bottom:772.487467pt;}
.y61{bottom:777.600400pt;}
.y2f{bottom:778.933733pt;}
.y93{bottom:792.267067pt;}
.y60{bottom:793.333600pt;}
.y2e{bottom:794.400267pt;}
.y92{bottom:808.267067pt;}
.y5f{bottom:809.066933pt;}
.y2d{bottom:809.867067pt;}
.y29{bottom:817.815200pt;}
.y91{bottom:824.267067pt;}
.y5e{bottom:824.800400pt;}
.y2c{bottom:825.333600pt;}
.y28{bottom:837.815200pt;}
.y90{bottom:840.267067pt;}
.y5d{bottom:840.533733pt;}
.y2b{bottom:840.800400pt;}
.y2a{bottom:856.267067pt;}
.y27{bottom:856.481867pt;}
.h6{height:23.123925pt;}
.hb{height:23.357500pt;}
.h10{height:31.476562pt;}
.he{height:37.031250pt;}
.h7{height:37.063125pt;}
.h5{height:37.437500pt;}
.hd{height:37.895833pt;}
.h9{height:42.117188pt;}
.h8{height:42.632812pt;}
.h2{height:43.250000pt;}
.ha{height:46.796875pt;}
.hc{height:47.369792pt;}
.h3{height:56.156250pt;}
.hf{height:56.843750pt;}
.h4{height:71.054688pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xf{left:60.472400pt;}
.x10{left:83.149600pt;}
.x2{left:90.708667pt;}
.x3{left:100.410400pt;}
.x4{left:109.023733pt;}
.xd{left:113.385867pt;}
.xc{left:136.062933pt;}
.xa{left:137.608000pt;}
.x6{left:144.641867pt;}
.x7{left:150.025600pt;}
.x8{left:168.794667pt;}
.xb{left:199.568267pt;}
.x5{left:248.034267pt;}
.x11{left:264.549867pt;}
.x9{left:267.789467pt;}
.xe{left:282.734533pt;}
.x1{left:574.047200pt;}
}




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