
    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_bfce5b37a8097e4dc3e8c621.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e86e41c75e06d2b692e39c73.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_222529976ebac4dd7019c084.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_55e29662ed6393b69d7f8e74.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0818df311a5f049bffdcf23e.woff2')format("woff");}.ff5{font-family:ff5;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(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);}
.v2{vertical-align:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:198.000000px;}
.ls2{letter-spacing:199.500000px;}
.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:-29.999999px;}
.ws0{word-spacing:-20.999999px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.500000px;}
.ws1{word-spacing:-10.800000px;}
.ws3{word-spacing:-8.138672px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-8.745981px;}
._1{margin-left:-7.144666px;}
._5{margin-left:-6.090622px;}
._b{margin-left:-4.324220px;}
._0{margin-left:-2.082786px;}
._9{margin-left:-1.028709px;}
._2{width:4.500000px;}
._a{width:9.000000px;}
._7{width:13.500023px;}
._4{width:21.981247px;}
._6{width:23.018720px;}
._3{width:27.000000px;}
._8{width:31.500001px;}
._c{width:36.000002px;}
._e{width:40.500002px;}
._10{width:44.999997px;}
._f{width:49.500000px;}
._1b{width:66.750994px;}
._1a{width:68.265510px;}
._19{width:72.000002px;}
._16{width:102.796901px;}
._18{width:116.999982px;}
._17{width:121.500003px;}
._14{width:166.446178px;}
._13{width:171.000003px;}
._11{width:198.000000px;}
._12{width:199.500000px;}
._15{width:2106.000000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000003px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y65{bottom:4.124816px;}
.y2f{bottom:4.124909px;}
.y2{bottom:4.124988px;}
.y8a{bottom:4.124999px;}
.yae{bottom:4.125367px;}
.yd0{bottom:4.125733px;}
.y64{bottom:24.266234px;}
.y2e{bottom:24.266510px;}
.yad{bottom:24.266968px;}
.ycf{bottom:24.267334px;}
.y63{bottom:44.408203px;}
.y2d{bottom:44.408204px;}
.y2b{bottom:109.684946px;}
.y102{bottom:112.074466px;}
.y61{bottom:116.731936px;}
.y2a{bottom:126.933478px;}
.ycd{bottom:128.642574px;}
.y101{bottom:134.411135px;}
.y60{bottom:137.430178px;}
.y29{bottom:144.182013px;}
.ycc{bottom:149.340817px;}
.y100{bottom:156.748537px;}
.y5f{bottom:158.128420px;}
.yab{bottom:160.465582px;}
.y28{bottom:167.978398px;}
.ycb{bottom:170.039058px;}
.yff{bottom:177.446783px;}
.y5e{bottom:178.826662px;}
.yaa{bottom:182.802248px;}
.yca{bottom:190.737301px;}
.yfe{bottom:198.145018px;}
.y5d{bottom:199.524909px;}
.ya9{bottom:205.138913px;}
.y27{bottom:208.267914px;}
.yc9{bottom:211.435543px;}
.yfd{bottom:218.843260px;}
.y5c{bottom:220.223152px;}
.ya8{bottom:227.475953px;}
.y26{bottom:228.966157px;}
.yc8{bottom:232.133785px;}
.yfc{bottom:239.541502px;}
.y5b{bottom:240.921393px;}
.ya7{bottom:248.174200px;}
.y25{bottom:249.664398px;}
.yc7{bottom:252.832028px;}
.yfb{bottom:260.239748px;}
.y5a{bottom:261.619636px;}
.ya6{bottom:268.872443px;}
.y24{bottom:270.362641px;}
.yfa{bottom:280.937983px;}
.y59{bottom:282.317878px;}
.yc6{bottom:285.205438px;}
.ya5{bottom:289.570683px;}
.y23{bottom:291.060883px;}
.yf9{bottom:301.636225px;}
.y58{bottom:303.016120px;}
.ya4{bottom:310.268924px;}
.y22{bottom:311.759125px;}
.yc5{bottom:316.179193px;}
.yf8{bottom:322.334468px;}
.y57{bottom:323.714362px;}
.ya3{bottom:330.967167px;}
.y21{bottom:332.457367px;}
.yf7{bottom:343.032712px;}
.y56{bottom:344.412603px;}
.yc4{bottom:347.152590px;}
.ya2{bottom:351.665400px;}
.y20{bottom:353.155602px;}
.yf6{bottom:363.730957px;}
.y55{bottom:365.110848px;}
.yc3{bottom:366.450443px;}
.ya1{bottom:372.363643px;}
.y1f{bottom:373.853844px;}
.yf5{bottom:384.429202px;}
.y54{bottom:385.809086px;}
.y89{bottom:389.258783px;}
.ya0{bottom:393.061884px;}
.y1e{bottom:394.552087px;}
.yc2{bottom:399.148315px;}
.yf4{bottom:405.127448px;}
.y53{bottom:406.507329px;}
.y88{bottom:409.957028px;}
.y9f{bottom:413.760136px;}
.y1d{bottom:415.250328px;}
.yc1{bottom:419.846558px;}
.yf3{bottom:425.825677px;}
.y52{bottom:427.205570px;}
.y87{bottom:430.655272px;}
.y9e{bottom:434.458373px;}
.y1c{bottom:435.948571px;}
.yf2{bottom:446.523923px;}
.y51{bottom:447.903813px;}
.y86{bottom:451.353517px;}
.yc0{bottom:452.545171px;}
.y9d{bottom:455.156611px;}
.y1b{bottom:456.646813px;}
.yf1{bottom:467.222173px;}
.y50{bottom:468.602055px;}
.y85{bottom:472.051762px;}
.ybf{bottom:473.243413px;}
.y9c{bottom:475.855223px;}
.y1a{bottom:477.345055px;}
.yf0{bottom:487.920415px;}
.y4f{bottom:489.300298px;}
.y84{bottom:492.750003px;}
.ybe{bottom:493.941655px;}
.y9b{bottom:496.553473px;}
.y19{bottom:498.043298px;}
.yef{bottom:508.618658px;}
.y4e{bottom:509.998539px;}
.y83{bottom:513.448246px;}
.ybd{bottom:514.639898px;}
.y9a{bottom:517.251715px;}
.y18{bottom:518.741543px;}
.yee{bottom:529.316888px;}
.y4d{bottom:531.021248px;}
.y82{bottom:534.146488px;}
.y99{bottom:537.949957px;}
.y17{bottom:539.439787px;}
.ybc{bottom:547.013675px;}
.yed{bottom:550.015141px;}
.y4c{bottom:553.119878px;}
.y81{bottom:554.844730px;}
.y98{bottom:558.648198px;}
.ybb{bottom:565.987063px;}
.yec{bottom:570.713383px;}
.y16{bottom:573.776692px;}
.y4b{bottom:573.818122px;}
.y80{bottom:575.542973px;}
.y97{bottom:579.346443px;}
.yeb{bottom:591.411625px;}
.y4a{bottom:594.516352px;}
.y7f{bottom:596.241208px;}
.yba{bottom:596.960090px;}
.y96{bottom:600.044684px;}
.y15{bottom:608.113582px;}
.yea{bottom:612.109868px;}
.y49{bottom:615.214597px;}
.yb9{bottom:615.933478px;}
.y7e{bottom:616.939450px;}
.y95{bottom:620.742927px;}
.y14{bottom:630.450443px;}
.ye9{bottom:632.808112px;}
.yb8{bottom:635.231318px;}
.y48{bottom:635.912836px;}
.y7d{bottom:637.637692px;}
.y94{bottom:641.441169px;}
.y13{bottom:652.787298px;}
.yb7{bottom:655.929562px;}
.ye8{bottom:656.610352px;}
.y47{bottom:656.611078px;}
.y7c{bottom:658.335942px;}
.y93{bottom:662.139412px;}
.y12{bottom:675.124150px;}
.yb6{bottom:676.627803px;}
.ye7{bottom:677.308598px;}
.y46{bottom:677.309320px;}
.y7b{bottom:679.034184px;}
.y92{bottom:682.837653px;}
.yb5{bottom:697.326046px;}
.y11{bottom:697.460947px;}
.ye6{bottom:698.006829px;}
.y45{bottom:698.007563px;}
.y7a{bottom:699.732427px;}
.y91{bottom:703.535896px;}
.yb4{bottom:718.024288px;}
.ye5{bottom:718.705072px;}
.y44{bottom:718.705812px;}
.y10{bottom:719.797799px;}
.y79{bottom:720.430668px;}
.y90{bottom:724.234138px;}
.yb3{bottom:738.722530px;}
.ye4{bottom:739.403313px;}
.y43{bottom:739.404054px;}
.y78{bottom:741.128911px;}
.yf{bottom:742.134656px;}
.y8f{bottom:744.932380px;}
.yb2{bottom:759.420773px;}
.ye3{bottom:760.101556px;}
.y42{bottom:760.102297px;}
.y77{bottom:761.827153px;}
.ye{bottom:764.471510px;}
.y8e{bottom:765.630622px;}
.ye2{bottom:780.799798px;}
.y41{bottom:780.800538px;}
.y76{bottom:782.525395px;}
.yb1{bottom:783.223747px;}
.y8d{bottom:786.328852px;}
.yd{bottom:786.808362px;}
.ye1{bottom:801.498040px;}
.y40{bottom:801.498781px;}
.y75{bottom:803.223637px;}
.yb0{bottom:807.026738px;}
.y8c{bottom:807.027098px;}
.yc{bottom:809.145216px;}
.ye0{bottom:822.196283px;}
.y3f{bottom:822.197023px;}
.y74{bottom:823.921867px;}
.yaf{bottom:827.724972px;}
.y8b{bottom:827.725340px;}
.yb{bottom:831.482068px;}
.ydf{bottom:842.894536px;}
.y3e{bottom:842.895265px;}
.y73{bottom:844.620113px;}
.ya{bottom:853.818922px;}
.yde{bottom:863.592778px;}
.y3d{bottom:863.593507px;}
.y72{bottom:865.318358px;}
.y9{bottom:876.155774px;}
.ydd{bottom:884.291020px;}
.y3c{bottom:884.291742px;}
.y71{bottom:886.016609px;}
.y8{bottom:898.492628px;}
.ydc{bottom:904.989262px;}
.y3b{bottom:904.989993px;}
.y70{bottom:906.390388px;}
.y7{bottom:920.829488px;}
.ydb{bottom:925.687499px;}
.y6f{bottom:925.688233px;}
.y3a{bottom:925.688236px;}
.y6{bottom:943.166332px;}
.yda{bottom:946.385742px;}
.y6e{bottom:946.386475px;}
.y39{bottom:946.386477px;}
.y5{bottom:966.425193px;}
.yd9{bottom:967.083984px;}
.y38{bottom:967.084711px;}
.y6d{bottom:967.084718px;}
.y107{bottom:982.185056px;}
.yd8{bottom:987.782227px;}
.y37{bottom:987.782958px;}
.y4{bottom:992.484879px;}
.yd7{bottom:1008.480468px;}
.y36{bottom:1008.481110px;}
.y6c{bottom:1008.481200px;}
.y3{bottom:1018.544540px;}
.y106{bottom:1019.323238px;}
.yd6{bottom:1029.178711px;}
.y35{bottom:1029.179352px;}
.y6b{bottom:1029.179443px;}
.y1{bottom:1038.150009px;}
.y105{bottom:1041.659911px;}
.yd5{bottom:1049.876953px;}
.y34{bottom:1049.877593px;}
.y6a{bottom:1049.877685px;}
.yd4{bottom:1070.575195px;}
.y33{bottom:1070.575835px;}
.y69{bottom:1070.575927px;}
.y104{bottom:1075.996582px;}
.yd3{bottom:1091.273438px;}
.y32{bottom:1091.274077px;}
.y68{bottom:1091.274169px;}
.y103{bottom:1110.333248px;}
.yd2{bottom:1111.971679px;}
.y31{bottom:1111.972320px;}
.y67{bottom:1111.972413px;}
.yd1{bottom:1132.669922px;}
.y30{bottom:1132.670562px;}
.y66{bottom:1132.670655px;}
.yce{bottom:1149.474609px;}
.yac{bottom:1149.474975px;}
.y2c{bottom:1149.475250px;}
.y62{bottom:1149.475342px;}
.h7{height:29.619139px;}
.h2{height:43.989259px;}
.he{height:45.826173px;}
.h8{height:53.789061px;}
.hc{height:59.167970px;}
.h5{height:63.949219px;}
.h6{height:64.546875px;}
.h4{height:65.691214px;}
.ha{height:69.925784px;}
.h3{height:74.607419px;}
.hb{height:113.524658px;}
.h9{height:113.524750px;}
.hd{height:113.525025px;}
.hf{height:113.525391px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:127.575005px;}
.x3{left:134.164218px;}
.x2{left:150.422627px;}
.x7{left:180.450005px;}
.x9{left:181.575005px;}
.x5{left:206.401033px;}
.xa{left:237.501131px;}
.xd{left:245.995760px;}
.x10{left:289.575005px;}
.xc{left:343.980623px;}
.xe{left:370.980623px;}
.x4{left:423.136949px;}
.x8{left:446.456716px;}
.xf{left:473.456716px;}
.x1{left:636.019216px;}
.xb{left:769.950005px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:176.000000pt;}
.ls2{letter-spacing:177.333333pt;}
.ws4{word-spacing:-26.666666pt;}
.ws0{word-spacing:-18.666666pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.666667pt;}
.ws1{word-spacing:-9.600000pt;}
.ws3{word-spacing:-7.234375pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-7.774206pt;}
._1{margin-left:-6.350814pt;}
._5{margin-left:-5.413886pt;}
._b{margin-left:-3.843751pt;}
._0{margin-left:-1.851365pt;}
._9{margin-left:-0.914408pt;}
._2{width:4.000000pt;}
._a{width:8.000000pt;}
._7{width:12.000020pt;}
._4{width:19.538886pt;}
._6{width:20.461084pt;}
._3{width:24.000000pt;}
._8{width:28.000000pt;}
._c{width:32.000002pt;}
._e{width:36.000001pt;}
._10{width:39.999997pt;}
._f{width:44.000000pt;}
._1b{width:59.334217pt;}
._1a{width:60.680453pt;}
._19{width:64.000002pt;}
._16{width:91.375023pt;}
._18{width:103.999984pt;}
._17{width:108.000002pt;}
._14{width:147.952158pt;}
._13{width:152.000003pt;}
._11{width:176.000000pt;}
._12{width:177.333333pt;}
._15{width:1872.000000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333336pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:3.666503pt;}
.y2f{bottom:3.666586pt;}
.y2{bottom:3.666656pt;}
.y8a{bottom:3.666666pt;}
.yae{bottom:3.666992pt;}
.yd0{bottom:3.667318pt;}
.y64{bottom:21.569986pt;}
.y2e{bottom:21.570231pt;}
.yad{bottom:21.570638pt;}
.ycf{bottom:21.570963pt;}
.y63{bottom:39.473958pt;}
.y2d{bottom:39.473959pt;}
.y2b{bottom:97.497729pt;}
.y102{bottom:99.621748pt;}
.y61{bottom:103.761721pt;}
.y2a{bottom:112.829758pt;}
.ycd{bottom:114.348955pt;}
.y101{bottom:119.476565pt;}
.y60{bottom:122.160158pt;}
.y29{bottom:128.161790pt;}
.ycc{bottom:132.747393pt;}
.y100{bottom:139.332033pt;}
.y5f{bottom:140.558596pt;}
.yab{bottom:142.636073pt;}
.y28{bottom:149.314132pt;}
.ycb{bottom:151.145830pt;}
.yff{bottom:157.730473pt;}
.y5e{bottom:158.957033pt;}
.yaa{bottom:162.490887pt;}
.yca{bottom:169.544268pt;}
.yfe{bottom:176.128904pt;}
.y5d{bottom:177.355474pt;}
.ya9{bottom:182.345700pt;}
.y27{bottom:185.127034pt;}
.yc9{bottom:187.942705pt;}
.yfd{bottom:194.527342pt;}
.y5c{bottom:195.753912pt;}
.ya8{bottom:202.200847pt;}
.y26{bottom:203.525472pt;}
.yc8{bottom:206.341143pt;}
.yfc{bottom:212.925780pt;}
.y5b{bottom:214.152349pt;}
.ya7{bottom:220.599289pt;}
.y25{bottom:221.923909pt;}
.yc7{bottom:224.739580pt;}
.yfb{bottom:231.324220pt;}
.y5a{bottom:232.550787pt;}
.ya6{bottom:238.997727pt;}
.y24{bottom:240.322347pt;}
.yfa{bottom:249.722651pt;}
.y59{bottom:250.949224pt;}
.yc6{bottom:253.515945pt;}
.ya5{bottom:257.396163pt;}
.y23{bottom:258.720784pt;}
.yf9{bottom:268.121089pt;}
.y58{bottom:269.347662pt;}
.ya4{bottom:275.794600pt;}
.y22{bottom:277.119222pt;}
.yc5{bottom:281.048172pt;}
.yf8{bottom:286.519527pt;}
.y57{bottom:287.746100pt;}
.ya3{bottom:294.193038pt;}
.y21{bottom:295.517660pt;}
.yf7{bottom:304.917967pt;}
.y56{bottom:306.144536pt;}
.yc4{bottom:308.580080pt;}
.ya2{bottom:312.591467pt;}
.y20{bottom:313.916091pt;}
.yf6{bottom:323.316407pt;}
.y55{bottom:324.542976pt;}
.yc3{bottom:325.733727pt;}
.ya1{bottom:330.989905pt;}
.y1f{bottom:332.314528pt;}
.yf5{bottom:341.714847pt;}
.y54{bottom:342.941410pt;}
.y89{bottom:346.007807pt;}
.ya0{bottom:349.388342pt;}
.y1e{bottom:350.712966pt;}
.yc2{bottom:354.798502pt;}
.yf4{bottom:360.113287pt;}
.y53{bottom:361.339848pt;}
.y88{bottom:364.406247pt;}
.y9f{bottom:367.786788pt;}
.y1d{bottom:369.111403pt;}
.yc1{bottom:373.196940pt;}
.yf3{bottom:378.511713pt;}
.y52{bottom:379.738285pt;}
.y87{bottom:382.804687pt;}
.y9e{bottom:386.185221pt;}
.y1c{bottom:387.509841pt;}
.yf2{bottom:396.910153pt;}
.y51{bottom:398.136723pt;}
.y86{bottom:401.203127pt;}
.yc0{bottom:402.262374pt;}
.y9d{bottom:404.583655pt;}
.y1b{bottom:405.908278pt;}
.yf1{bottom:415.308598pt;}
.y50{bottom:416.535160pt;}
.y85{bottom:419.601566pt;}
.ybf{bottom:420.660811pt;}
.y9c{bottom:422.982420pt;}
.y1a{bottom:424.306716pt;}
.yf0{bottom:433.707036pt;}
.y4f{bottom:434.933598pt;}
.y84{bottom:438.000003pt;}
.ybe{bottom:439.059249pt;}
.y9b{bottom:441.380864pt;}
.y19{bottom:442.705153pt;}
.yef{bottom:452.105473pt;}
.y4e{bottom:453.332035pt;}
.y83{bottom:456.398441pt;}
.ybd{bottom:457.457687pt;}
.y9a{bottom:459.779302pt;}
.y18{bottom:461.103593pt;}
.yee{bottom:470.503900pt;}
.y4d{bottom:472.018887pt;}
.y82{bottom:474.796878pt;}
.y99{bottom:478.177740pt;}
.y17{bottom:479.502033pt;}
.ybc{bottom:486.234378pt;}
.yed{bottom:488.902348pt;}
.y4c{bottom:491.662113pt;}
.y81{bottom:493.195316pt;}
.y98{bottom:496.576176pt;}
.ybb{bottom:503.099612pt;}
.yec{bottom:507.300785pt;}
.y16{bottom:510.023727pt;}
.y4b{bottom:510.060553pt;}
.y80{bottom:511.593753pt;}
.y97{bottom:514.974616pt;}
.yeb{bottom:525.699223pt;}
.y4a{bottom:528.458980pt;}
.y7f{bottom:529.992185pt;}
.yba{bottom:530.631191pt;}
.y96{bottom:533.373053pt;}
.y15{bottom:540.545407pt;}
.yea{bottom:544.097660pt;}
.y49{bottom:546.857420pt;}
.yb9{bottom:547.496425pt;}
.y7e{bottom:548.390622pt;}
.y95{bottom:551.771491pt;}
.y14{bottom:560.400393pt;}
.ye9{bottom:562.496100pt;}
.yb8{bottom:564.650060pt;}
.y48{bottom:565.255854pt;}
.y7d{bottom:566.789060pt;}
.y94{bottom:570.169928pt;}
.y13{bottom:580.255376pt;}
.yb7{bottom:583.048500pt;}
.ye8{bottom:583.653647pt;}
.y47{bottom:583.654291pt;}
.y7c{bottom:585.187504pt;}
.y93{bottom:588.568366pt;}
.y12{bottom:600.110356pt;}
.yb6{bottom:601.446936pt;}
.ye7{bottom:602.052087pt;}
.y46{bottom:602.052729pt;}
.y7b{bottom:603.585941pt;}
.y92{bottom:606.966803pt;}
.yb5{bottom:619.845374pt;}
.y11{bottom:619.965286pt;}
.ye6{bottom:620.450515pt;}
.y45{bottom:620.451167pt;}
.y7a{bottom:621.984379pt;}
.y91{bottom:625.365241pt;}
.yb4{bottom:638.243811pt;}
.ye5{bottom:638.848952pt;}
.y44{bottom:638.849611pt;}
.y10{bottom:639.820266pt;}
.y79{bottom:640.382816pt;}
.y90{bottom:643.763678pt;}
.yb3{bottom:656.642249pt;}
.ye4{bottom:657.247389pt;}
.y43{bottom:657.248048pt;}
.y78{bottom:658.781254pt;}
.yf{bottom:659.675250pt;}
.y8f{bottom:662.162116pt;}
.yb2{bottom:675.040687pt;}
.ye3{bottom:675.645827pt;}
.y42{bottom:675.646486pt;}
.y77{bottom:677.179691pt;}
.ye{bottom:679.530231pt;}
.y8e{bottom:680.560553pt;}
.ye2{bottom:694.044265pt;}
.y41{bottom:694.044923pt;}
.y76{bottom:695.578129pt;}
.yb1{bottom:696.198887pt;}
.y8d{bottom:698.958980pt;}
.yd{bottom:699.385211pt;}
.ye1{bottom:712.442702pt;}
.y40{bottom:712.443361pt;}
.y75{bottom:713.976567pt;}
.yb0{bottom:717.357100pt;}
.y8c{bottom:717.357420pt;}
.yc{bottom:719.240192pt;}
.ye0{bottom:730.841140pt;}
.y3f{bottom:730.841798pt;}
.y74{bottom:732.374993pt;}
.yaf{bottom:735.755531pt;}
.y8b{bottom:735.755857pt;}
.yb{bottom:739.095172pt;}
.ydf{bottom:749.239587pt;}
.y3e{bottom:749.240236pt;}
.y73{bottom:750.773433pt;}
.ya{bottom:758.950153pt;}
.yde{bottom:767.638025pt;}
.y3d{bottom:767.638673pt;}
.y72{bottom:769.171873pt;}
.y9{bottom:778.805133pt;}
.ydd{bottom:786.036462pt;}
.y3c{bottom:786.037104pt;}
.y71{bottom:787.570319pt;}
.y8{bottom:798.660113pt;}
.ydc{bottom:804.434900pt;}
.y3b{bottom:804.435549pt;}
.y70{bottom:805.680345pt;}
.y7{bottom:818.515100pt;}
.ydb{bottom:822.833333pt;}
.y6f{bottom:822.833985pt;}
.y3a{bottom:822.833987pt;}
.y6{bottom:838.370073pt;}
.yda{bottom:841.231771pt;}
.y6e{bottom:841.232422pt;}
.y39{bottom:841.232424pt;}
.y5{bottom:859.044616pt;}
.yd9{bottom:859.630208pt;}
.y38{bottom:859.630854pt;}
.y6d{bottom:859.630860pt;}
.y107{bottom:873.053383pt;}
.yd8{bottom:878.028646pt;}
.y37{bottom:878.029296pt;}
.y4{bottom:882.208781pt;}
.yd7{bottom:896.427083pt;}
.y36{bottom:896.427653pt;}
.y6c{bottom:896.427733pt;}
.y3{bottom:905.372924pt;}
.y106{bottom:906.065101pt;}
.yd6{bottom:914.825521pt;}
.y35{bottom:914.826091pt;}
.y6b{bottom:914.826171pt;}
.y1{bottom:922.800008pt;}
.y105{bottom:925.919921pt;}
.yd5{bottom:933.223958pt;}
.y34{bottom:933.224527pt;}
.y6a{bottom:933.224608pt;}
.yd4{bottom:951.622396pt;}
.y33{bottom:951.622965pt;}
.y69{bottom:951.623046pt;}
.y104{bottom:956.441407pt;}
.yd3{bottom:970.020833pt;}
.y32{bottom:970.021402pt;}
.y68{bottom:970.021484pt;}
.y103{bottom:986.962887pt;}
.yd2{bottom:988.419271pt;}
.y31{bottom:988.419840pt;}
.y67{bottom:988.419922pt;}
.yd1{bottom:1006.817708pt;}
.y30{bottom:1006.818277pt;}
.y66{bottom:1006.818360pt;}
.yce{bottom:1021.755208pt;}
.yac{bottom:1021.755533pt;}
.y2c{bottom:1021.755777pt;}
.y62{bottom:1021.755860pt;}
.h7{height:26.328124pt;}
.h2{height:39.101563pt;}
.he{height:40.734376pt;}
.h8{height:47.812499pt;}
.hc{height:52.593751pt;}
.h5{height:56.843750pt;}
.h6{height:57.375000pt;}
.h4{height:58.392190pt;}
.ha{height:62.156252pt;}
.h3{height:66.317706pt;}
.hb{height:100.910807pt;}
.h9{height:100.910889pt;}
.hd{height:100.911133pt;}
.hf{height:100.911459pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:113.400004pt;}
.x3{left:119.257082pt;}
.x2{left:133.709002pt;}
.x7{left:160.400004pt;}
.x9{left:161.400004pt;}
.x5{left:183.467585pt;}
.xa{left:211.112116pt;}
.xd{left:218.662898pt;}
.x10{left:257.400004pt;}
.xc{left:305.760554pt;}
.xe{left:329.760554pt;}
.x4{left:376.121732pt;}
.x8{left:396.850414pt;}
.xf{left:420.850414pt;}
.x1{left:565.350414pt;}
.xb{left:684.400004pt;}
}




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