
    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_f5f07f851d9c9c7e4865def9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_b1de25c6c09a42f75055705c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_799213bba513b35b4a86496f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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);}
.v1{vertical-align:-3.393000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.009180px;}
.ls3{letter-spacing:0.010560px;}
.ls7{letter-spacing:0.034560px;}
.ls4{letter-spacing:0.441180px;}
.ls2{letter-spacing:0.530820px;}
.ls5{letter-spacing:0.539460px;}
.ls6{letter-spacing:0.548640px;}
.ls8{letter-spacing:1.080000px;}
.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;}
}
.ws1{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.000000px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:690.922800px;}
.ws3{word-spacing:1504.866600px;}
._4{margin-left:-8.746800px;}
._0{margin-left:-7.127520px;}
._15{margin-left:-5.999400px;}
._2{margin-left:-4.422000px;}
._3{margin-left:-3.334800px;}
._1{margin-left:-1.766400px;}
._7{width:1.034760px;}
._5{width:2.046900px;}
._6{width:3.494280px;}
._12{width:4.687920px;}
._8{width:6.122040px;}
._e{width:7.367520px;}
._f{width:8.448480px;}
._11{width:9.864660px;}
._a{width:10.925400px;}
._9{width:12.104820px;}
._b{width:14.561820px;}
._14{width:16.348920px;}
._d{width:18.268680px;}
._c{width:19.812660px;}
._13{width:22.534080px;}
._1e{width:23.611620px;}
._10{width:28.733580px;}
._1d{width:414.721200px;}
._17{width:425.063400px;}
._1b{width:480.057000px;}
._19{width:491.038800px;}
._1a{width:512.049000px;}
._18{width:602.938800px;}
._1c{width:614.938800px;}
._16{width:963.699600px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:86.404500px;}
.y4c{bottom:86.571000px;}
.y99{bottom:87.514950px;}
.ya{bottom:131.638500px;}
.y97{bottom:132.079050px;}
.ya3{bottom:133.613700px;}
.yef{bottom:140.677950px;}
.y9{bottom:144.249000px;}
.y96{bottom:148.578750px;}
.ya2{bottom:150.113400px;}
.yee{bottom:155.677950px;}
.y8{bottom:156.849000px;}
.y95{bottom:165.078450px;}
.y7{bottom:169.449000px;}
.yed{bottom:170.677950px;}
.ya1{bottom:173.139150px;}
.y94{bottom:181.578150px;}
.y6{bottom:182.049000px;}
.yec{bottom:185.677950px;}
.ya0{bottom:193.151700px;}
.y93{bottom:198.077850px;}
.yeb{bottom:200.677950px;}
.y92{bottom:214.577550px;}
.y9f{bottom:215.222400px;}
.yea{bottom:215.677950px;}
.ye9{bottom:230.677950px;}
.y91{bottom:231.077250px;}
.y9e{bottom:234.178950px;}
.ye8{bottom:245.677950px;}
.y90{bottom:247.576950px;}
.y9d{bottom:255.220650px;}
.ye7{bottom:260.677950px;}
.ye6{bottom:275.677950px;}
.y9c{bottom:275.987850px;}
.ye5{bottom:290.677950px;}
.y9b{bottom:302.249700px;}
.ye4{bottom:305.677950px;}
.ye3{bottom:320.677950px;}
.y4a{bottom:327.125250px;}
.y32{bottom:327.126328px;}
.ye2{bottom:335.677950px;}
.y49{bottom:343.625220px;}
.y31{bottom:343.626028px;}
.y48{bottom:360.125190px;}
.y30{bottom:360.125728px;}
.ye1{bottom:365.677950px;}
.y47{bottom:376.625160px;}
.y2f{bottom:376.625428px;}
.ya7{bottom:384.792210px;}
.y46{bottom:393.125130px;}
.y2e{bottom:393.125398px;}
.ya6{bottom:401.292180px;}
.ye0{bottom:404.181870px;}
.y45{bottom:409.625100px;}
.y2d{bottom:409.625368px;}
.ya5{bottom:417.792150px;}
.ydf{bottom:419.181870px;}
.y44{bottom:426.125070px;}
.y2c{bottom:426.125338px;}
.yde{bottom:434.181870px;}
.y43{bottom:442.625040px;}
.y2b{bottom:442.625308px;}
.ydd{bottom:449.181870px;}
.y42{bottom:459.125010px;}
.y2a{bottom:459.125278px;}
.ydc{bottom:464.181870px;}
.y29{bottom:475.625248px;}
.ydb{bottom:479.181870px;}
.y41{bottom:492.124950px;}
.y28{bottom:492.125218px;}
.yda{bottom:494.181870px;}
.y40{bottom:508.624920px;}
.y27{bottom:508.625188px;}
.yd9{bottom:509.181870px;}
.y3f{bottom:525.124890px;}
.y26{bottom:525.125158px;}
.yd8{bottom:528.433950px;}
.y3e{bottom:541.624860px;}
.y25{bottom:541.625128px;}
.yd7{bottom:547.685850px;}
.y3d{bottom:558.124830px;}
.y24{bottom:558.125098px;}
.y8f{bottom:563.102278px;}
.y6d{bottom:564.916290px;}
.y3c{bottom:574.624800px;}
.y23{bottom:574.625068px;}
.y8e{bottom:579.602248px;}
.y6c{bottom:581.416260px;}
.y3b{bottom:591.124770px;}
.y22{bottom:591.125038px;}
.y8d{bottom:596.102218px;}
.y6b{bottom:597.916230px;}
.y3a{bottom:607.624740px;}
.y21{bottom:607.625008px;}
.y8c{bottom:612.602188px;}
.y6a{bottom:614.416200px;}
.y39{bottom:624.124710px;}
.y20{bottom:624.124978px;}
.y8b{bottom:629.102158px;}
.y69{bottom:630.916170px;}
.y38{bottom:640.624680px;}
.y1f{bottom:640.624948px;}
.y8a{bottom:645.602128px;}
.y68{bottom:647.416140px;}
.y37{bottom:657.124650px;}
.y1e{bottom:657.124918px;}
.y89{bottom:662.102098px;}
.y67{bottom:663.916110px;}
.y1d{bottom:673.624888px;}
.y88{bottom:678.602068px;}
.yd5{bottom:680.415780px;}
.y66{bottom:680.416080px;}
.ybb{bottom:680.416345px;}
.y36{bottom:690.124650px;}
.y1c{bottom:690.124858px;}
.y87{bottom:695.102038px;}
.yd4{bottom:696.915750px;}
.y65{bottom:696.916050px;}
.yba{bottom:696.916315px;}
.y1b{bottom:706.624828px;}
.y86{bottom:711.602008px;}
.yd3{bottom:713.415720px;}
.y64{bottom:713.416020px;}
.yb9{bottom:713.416285px;}
.y1a{bottom:723.124798px;}
.y35{bottom:723.126418px;}
.y85{bottom:728.101978px;}
.yd2{bottom:729.915690px;}
.y63{bottom:729.915990px;}
.yb8{bottom:729.916255px;}
.y19{bottom:739.624768px;}
.y34{bottom:739.626388px;}
.y84{bottom:744.601948px;}
.yd1{bottom:746.415660px;}
.y62{bottom:746.415960px;}
.yb7{bottom:746.416225px;}
.y18{bottom:756.124738px;}
.y33{bottom:756.126358px;}
.y83{bottom:761.101918px;}
.yd0{bottom:762.915630px;}
.y61{bottom:762.915930px;}
.yb6{bottom:762.916195px;}
.y82{bottom:777.601888px;}
.ycf{bottom:779.415600px;}
.y60{bottom:779.415900px;}
.yb5{bottom:779.416165px;}
.y81{bottom:794.101858px;}
.y5f{bottom:795.915870px;}
.yb4{bottom:795.916135px;}
.y80{bottom:810.601828px;}
.ya4{bottom:811.991100px;}
.yce{bottom:812.415600px;}
.y5e{bottom:812.415840px;}
.yb3{bottom:812.416105px;}
.y7f{bottom:827.101798px;}
.y5d{bottom:828.915810px;}
.yb2{bottom:828.916075px;}
.y7e{bottom:843.601768px;}
.y5c{bottom:845.415780px;}
.yb1{bottom:845.416045px;}
.ycd{bottom:845.416790px;}
.y7d{bottom:860.101738px;}
.y5b{bottom:861.915750px;}
.yb0{bottom:861.916015px;}
.ycc{bottom:861.916760px;}
.y17{bottom:864.681883px;}
.y7c{bottom:876.601708px;}
.y5a{bottom:878.415720px;}
.yaf{bottom:878.415985px;}
.ycb{bottom:878.416730px;}
.y16{bottom:879.681868px;}
.y7b{bottom:893.101678px;}
.y15{bottom:894.681853px;}
.y59{bottom:894.915690px;}
.yae{bottom:894.915955px;}
.yca{bottom:894.916700px;}
.y7a{bottom:909.601648px;}
.y14{bottom:909.681838px;}
.y58{bottom:911.415660px;}
.yad{bottom:911.415925px;}
.yc9{bottom:911.416670px;}
.y13{bottom:924.681823px;}
.y79{bottom:926.101618px;}
.y57{bottom:927.915630px;}
.yac{bottom:927.915895px;}
.yc8{bottom:927.916640px;}
.y12{bottom:939.681808px;}
.y78{bottom:942.601588px;}
.y56{bottom:944.415600px;}
.yab{bottom:944.415865px;}
.yc7{bottom:944.416610px;}
.y11{bottom:954.681793px;}
.y77{bottom:959.101558px;}
.yaa{bottom:960.915835px;}
.yc6{bottom:960.916580px;}
.yfb{bottom:961.952700px;}
.y10{bottom:969.681810px;}
.y76{bottom:975.601528px;}
.yfa{bottom:976.952700px;}
.y55{bottom:977.415600px;}
.ya9{bottom:977.415838px;}
.yc5{bottom:977.416583px;}
.yf{bottom:988.933755px;}
.yf9{bottom:991.952700px;}
.y75{bottom:992.101530px;}
.ya8{bottom:993.915808px;}
.yc4{bottom:993.916553px;}
.yf8{bottom:1006.952700px;}
.ye{bottom:1008.185700px;}
.y74{bottom:1008.601500px;}
.y54{bottom:1010.415778px;}
.yc3{bottom:1010.416523px;}
.yf7{bottom:1021.952700px;}
.y73{bottom:1025.101470px;}
.y53{bottom:1026.915748px;}
.yc2{bottom:1026.916493px;}
.yf6{bottom:1036.952700px;}
.y72{bottom:1041.601440px;}
.y52{bottom:1043.415718px;}
.yc1{bottom:1043.416463px;}
.yf5{bottom:1051.952700px;}
.y71{bottom:1058.101410px;}
.y51{bottom:1059.915688px;}
.yc0{bottom:1059.916433px;}
.yf4{bottom:1066.952700px;}
.yd{bottom:1072.685730px;}
.y70{bottom:1074.601380px;}
.y50{bottom:1076.415658px;}
.ybf{bottom:1076.416403px;}
.yf3{bottom:1081.952700px;}
.y6f{bottom:1091.101350px;}
.y4f{bottom:1092.915628px;}
.ybe{bottom:1092.916373px;}
.yc{bottom:1094.285550px;}
.yf2{bottom:1096.952700px;}
.y4e{bottom:1109.415598px;}
.ybd{bottom:1109.416343px;}
.yf1{bottom:1111.952700px;}
.yb{bottom:1119.022050px;}
.y6e{bottom:1124.101350px;}
.y4d{bottom:1125.915600px;}
.ybc{bottom:1125.916345px;}
.yf0{bottom:1126.952700px;}
.y3{bottom:1175.570940px;}
.y5{bottom:1189.004340px;}
.y2{bottom:1189.982700px;}
.y98{bottom:1190.168850px;}
.y4b{bottom:1190.776350px;}
.yd6{bottom:1190.776530px;}
.y4{bottom:1203.404340px;}
.y1{bottom:1204.382700px;}
.h3{height:29.182617px;}
.he{height:32.859375px;}
.h2{height:33.351562px;}
.h4{height:36.955078px;}
.hb{height:36.966797px;}
.h8{height:37.520508px;}
.h9{height:37.520918px;}
.hc{height:41.689453px;}
.hf{height:42.234375px;}
.ha{height:45.181641px;}
.hd{height:45.182142px;}
.h7{height:47.513672px;}
.h6{height:49.289062px;}
.h5{height:65.718750px;}
.h0{height:1262.835015px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.038750px;}
.xb{left:86.539350px;}
.xe{left:105.208200px;}
.x7{left:106.284345px;}
.x15{left:114.118500px;}
.x11{left:119.658450px;}
.x5{left:121.393650px;}
.x14{left:130.448550px;}
.x12{left:136.152600px;}
.x13{left:138.446550px;}
.xf{left:139.562850px;}
.xa{left:141.579450px;}
.x6{left:269.829030px;}
.x4{left:309.112950px;}
.x10{left:351.304800px;}
.xc{left:401.084100px;}
.x16{left:408.131250px;}
.x8{left:461.298165px;}
.x9{left:482.590275px;}
.x3{left:635.590470px;}
.x2{left:661.254390px;}
.xd{left:791.373600px;}
@media print{
.v1{vertical-align:-3.016000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.008160pt;}
.ls3{letter-spacing:0.009387pt;}
.ls7{letter-spacing:0.030720pt;}
.ls4{letter-spacing:0.392160pt;}
.ls2{letter-spacing:0.471840pt;}
.ls5{letter-spacing:0.479520pt;}
.ls6{letter-spacing:0.487680pt;}
.ls8{letter-spacing:0.960000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.666667pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:614.153600pt;}
.ws3{word-spacing:1337.659200pt;}
._4{margin-left:-7.774933pt;}
._0{margin-left:-6.335573pt;}
._15{margin-left:-5.332800pt;}
._2{margin-left:-3.930667pt;}
._3{margin-left:-2.964267pt;}
._1{margin-left:-1.570133pt;}
._7{width:0.919787pt;}
._5{width:1.819467pt;}
._6{width:3.106027pt;}
._12{width:4.167040pt;}
._8{width:5.441813pt;}
._e{width:6.548907pt;}
._f{width:7.509760pt;}
._11{width:8.768587pt;}
._a{width:9.711467pt;}
._9{width:10.759840pt;}
._b{width:12.943840pt;}
._14{width:14.532373pt;}
._d{width:16.238827pt;}
._c{width:17.611253pt;}
._13{width:20.030293pt;}
._1e{width:20.988107pt;}
._10{width:25.540960pt;}
._1d{width:368.641067pt;}
._17{width:377.834133pt;}
._1b{width:426.717333pt;}
._19{width:436.478933pt;}
._1a{width:455.154667pt;}
._18{width:535.945600pt;}
._1c{width:546.612267pt;}
._16{width:856.621867pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:76.804000pt;}
.y4c{bottom:76.952000pt;}
.y99{bottom:77.791067pt;}
.ya{bottom:117.012000pt;}
.y97{bottom:117.403600pt;}
.ya3{bottom:118.767733pt;}
.yef{bottom:125.047067pt;}
.y9{bottom:128.221333pt;}
.y96{bottom:132.070000pt;}
.ya2{bottom:133.434133pt;}
.yee{bottom:138.380400pt;}
.y8{bottom:139.421333pt;}
.y95{bottom:146.736400pt;}
.y7{bottom:150.621333pt;}
.yed{bottom:151.713733pt;}
.ya1{bottom:153.901467pt;}
.y94{bottom:161.402800pt;}
.y6{bottom:161.821333pt;}
.yec{bottom:165.047067pt;}
.ya0{bottom:171.690400pt;}
.y93{bottom:176.069200pt;}
.yeb{bottom:178.380400pt;}
.y92{bottom:190.735600pt;}
.y9f{bottom:191.308800pt;}
.yea{bottom:191.713733pt;}
.ye9{bottom:205.047067pt;}
.y91{bottom:205.402000pt;}
.y9e{bottom:208.159067pt;}
.ye8{bottom:218.380400pt;}
.y90{bottom:220.068400pt;}
.y9d{bottom:226.862800pt;}
.ye7{bottom:231.713733pt;}
.ye6{bottom:245.047067pt;}
.y9c{bottom:245.322533pt;}
.ye5{bottom:258.380400pt;}
.y9b{bottom:268.666400pt;}
.ye4{bottom:271.713733pt;}
.ye3{bottom:285.047067pt;}
.y4a{bottom:290.778000pt;}
.y32{bottom:290.778958pt;}
.ye2{bottom:298.380400pt;}
.y49{bottom:305.444640pt;}
.y31{bottom:305.445358pt;}
.y48{bottom:320.111280pt;}
.y30{bottom:320.111758pt;}
.ye1{bottom:325.047067pt;}
.y47{bottom:334.777920pt;}
.y2f{bottom:334.778158pt;}
.ya7{bottom:342.037520pt;}
.y46{bottom:349.444560pt;}
.y2e{bottom:349.444798pt;}
.ya6{bottom:356.704160pt;}
.ye0{bottom:359.272773pt;}
.y45{bottom:364.111200pt;}
.y2d{bottom:364.111438pt;}
.ya5{bottom:371.370800pt;}
.ydf{bottom:372.606107pt;}
.y44{bottom:378.777840pt;}
.y2c{bottom:378.778078pt;}
.yde{bottom:385.939440pt;}
.y43{bottom:393.444480pt;}
.y2b{bottom:393.444718pt;}
.ydd{bottom:399.272773pt;}
.y42{bottom:408.111120pt;}
.y2a{bottom:408.111358pt;}
.ydc{bottom:412.606107pt;}
.y29{bottom:422.777998pt;}
.ydb{bottom:425.939440pt;}
.y41{bottom:437.444400pt;}
.y28{bottom:437.444638pt;}
.yda{bottom:439.272773pt;}
.y40{bottom:452.111040pt;}
.y27{bottom:452.111278pt;}
.yd9{bottom:452.606107pt;}
.y3f{bottom:466.777680pt;}
.y26{bottom:466.777918pt;}
.yd8{bottom:469.719067pt;}
.y3e{bottom:481.444320pt;}
.y25{bottom:481.444558pt;}
.yd7{bottom:486.831867pt;}
.y3d{bottom:496.110960pt;}
.y24{bottom:496.111198pt;}
.y8f{bottom:500.535358pt;}
.y6d{bottom:502.147813pt;}
.y3c{bottom:510.777600pt;}
.y23{bottom:510.777838pt;}
.y8e{bottom:515.201998pt;}
.y6c{bottom:516.814453pt;}
.y3b{bottom:525.444240pt;}
.y22{bottom:525.444478pt;}
.y8d{bottom:529.868638pt;}
.y6b{bottom:531.481093pt;}
.y3a{bottom:540.110880pt;}
.y21{bottom:540.111118pt;}
.y8c{bottom:544.535278pt;}
.y6a{bottom:546.147733pt;}
.y39{bottom:554.777520pt;}
.y20{bottom:554.777758pt;}
.y8b{bottom:559.201918pt;}
.y69{bottom:560.814373pt;}
.y38{bottom:569.444160pt;}
.y1f{bottom:569.444398pt;}
.y8a{bottom:573.868558pt;}
.y68{bottom:575.481013pt;}
.y37{bottom:584.110800pt;}
.y1e{bottom:584.111038pt;}
.y89{bottom:588.535198pt;}
.y67{bottom:590.147653pt;}
.y1d{bottom:598.777678pt;}
.y88{bottom:603.201838pt;}
.yd5{bottom:604.814027pt;}
.y66{bottom:604.814293pt;}
.ybb{bottom:604.814529pt;}
.y36{bottom:613.444133pt;}
.y1c{bottom:613.444318pt;}
.y87{bottom:617.868478pt;}
.yd4{bottom:619.480667pt;}
.y65{bottom:619.480933pt;}
.yba{bottom:619.481169pt;}
.y1b{bottom:628.110958pt;}
.y86{bottom:632.535118pt;}
.yd3{bottom:634.147307pt;}
.y64{bottom:634.147573pt;}
.yb9{bottom:634.147809pt;}
.y1a{bottom:642.777598pt;}
.y35{bottom:642.779038pt;}
.y85{bottom:647.201758pt;}
.yd2{bottom:648.813947pt;}
.y63{bottom:648.814213pt;}
.yb8{bottom:648.814449pt;}
.y19{bottom:657.444238pt;}
.y34{bottom:657.445678pt;}
.y84{bottom:661.868398pt;}
.yd1{bottom:663.480587pt;}
.y62{bottom:663.480853pt;}
.yb7{bottom:663.481089pt;}
.y18{bottom:672.110878pt;}
.y33{bottom:672.112318pt;}
.y83{bottom:676.535038pt;}
.yd0{bottom:678.147227pt;}
.y61{bottom:678.147493pt;}
.yb6{bottom:678.147729pt;}
.y82{bottom:691.201678pt;}
.ycf{bottom:692.813867pt;}
.y60{bottom:692.814133pt;}
.yb5{bottom:692.814369pt;}
.y81{bottom:705.868318pt;}
.y5f{bottom:707.480773pt;}
.yb4{bottom:707.481009pt;}
.y80{bottom:720.534958pt;}
.ya4{bottom:721.769867pt;}
.yce{bottom:722.147200pt;}
.y5e{bottom:722.147413pt;}
.yb3{bottom:722.147649pt;}
.y7f{bottom:735.201598pt;}
.y5d{bottom:736.814053pt;}
.yb2{bottom:736.814289pt;}
.y7e{bottom:749.868238pt;}
.y5c{bottom:751.480693pt;}
.yb1{bottom:751.480929pt;}
.ycd{bottom:751.481591pt;}
.y7d{bottom:764.534878pt;}
.y5b{bottom:766.147333pt;}
.yb0{bottom:766.147569pt;}
.ycc{bottom:766.148231pt;}
.y17{bottom:768.606118pt;}
.y7c{bottom:779.201518pt;}
.y5a{bottom:780.813973pt;}
.yaf{bottom:780.814209pt;}
.ycb{bottom:780.814871pt;}
.y16{bottom:781.939438pt;}
.y7b{bottom:793.868158pt;}
.y15{bottom:795.272758pt;}
.y59{bottom:795.480613pt;}
.yae{bottom:795.480849pt;}
.yca{bottom:795.481511pt;}
.y7a{bottom:808.534798pt;}
.y14{bottom:808.606078pt;}
.y58{bottom:810.147253pt;}
.yad{bottom:810.147489pt;}
.yc9{bottom:810.148151pt;}
.y13{bottom:821.939398pt;}
.y79{bottom:823.201438pt;}
.y57{bottom:824.813893pt;}
.yac{bottom:824.814129pt;}
.yc8{bottom:824.814791pt;}
.y12{bottom:835.272718pt;}
.y78{bottom:837.868078pt;}
.y56{bottom:839.480533pt;}
.yab{bottom:839.480769pt;}
.yc7{bottom:839.481431pt;}
.y11{bottom:848.606038pt;}
.y77{bottom:852.534718pt;}
.yaa{bottom:854.147409pt;}
.yc6{bottom:854.148071pt;}
.yfb{bottom:855.069067pt;}
.y10{bottom:861.939387pt;}
.y76{bottom:867.201358pt;}
.yfa{bottom:868.402400pt;}
.y55{bottom:868.813867pt;}
.ya9{bottom:868.814078pt;}
.yc5{bottom:868.814740pt;}
.yf{bottom:879.052227pt;}
.yf9{bottom:881.735733pt;}
.y75{bottom:881.868027pt;}
.ya8{bottom:883.480718pt;}
.yc4{bottom:883.481380pt;}
.yf8{bottom:895.069067pt;}
.ye{bottom:896.165067pt;}
.y74{bottom:896.534667pt;}
.y54{bottom:898.147358pt;}
.yc3{bottom:898.148020pt;}
.yf7{bottom:908.402400pt;}
.y73{bottom:911.201307pt;}
.y53{bottom:912.813998pt;}
.yc2{bottom:912.814660pt;}
.yf6{bottom:921.735733pt;}
.y72{bottom:925.867947pt;}
.y52{bottom:927.480638pt;}
.yc1{bottom:927.481300pt;}
.yf5{bottom:935.069067pt;}
.y71{bottom:940.534587pt;}
.y51{bottom:942.147278pt;}
.yc0{bottom:942.147940pt;}
.yf4{bottom:948.402400pt;}
.yd{bottom:953.498427pt;}
.y70{bottom:955.201227pt;}
.y50{bottom:956.813918pt;}
.ybf{bottom:956.814580pt;}
.yf3{bottom:961.735733pt;}
.y6f{bottom:969.867867pt;}
.y4f{bottom:971.480558pt;}
.ybe{bottom:971.481220pt;}
.yc{bottom:972.698267pt;}
.yf2{bottom:975.069067pt;}
.y4e{bottom:986.147198pt;}
.ybd{bottom:986.147860pt;}
.yf1{bottom:988.402400pt;}
.yb{bottom:994.686267pt;}
.y6e{bottom:999.201200pt;}
.y4d{bottom:1000.813867pt;}
.ybc{bottom:1000.814529pt;}
.yf0{bottom:1001.735733pt;}
.y3{bottom:1044.951947pt;}
.y5{bottom:1056.892747pt;}
.y2{bottom:1057.762400pt;}
.y98{bottom:1057.927867pt;}
.y4b{bottom:1058.467867pt;}
.yd6{bottom:1058.468027pt;}
.y4{bottom:1069.692747pt;}
.y1{bottom:1070.562400pt;}
.h3{height:25.940104pt;}
.he{height:29.208333pt;}
.h2{height:29.645833pt;}
.h4{height:32.848958pt;}
.hb{height:32.859375pt;}
.h8{height:33.351562pt;}
.h9{height:33.351927pt;}
.hc{height:37.057292pt;}
.hf{height:37.541667pt;}
.ha{height:40.161458pt;}
.hd{height:40.161904pt;}
.h7{height:42.234375pt;}
.h6{height:43.812500pt;}
.h5{height:58.416667pt;}
.h0{height:1122.520013pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590000pt;}
.xb{left:76.923867pt;}
.xe{left:93.518400pt;}
.x7{left:94.474973pt;}
.x15{left:101.438667pt;}
.x11{left:106.363067pt;}
.x5{left:107.905467pt;}
.x14{left:115.954267pt;}
.x12{left:121.024533pt;}
.x13{left:123.063600pt;}
.xf{left:124.055867pt;}
.xa{left:125.848400pt;}
.x6{left:239.848027pt;}
.x4{left:274.767067pt;}
.x10{left:312.270933pt;}
.xc{left:356.519200pt;}
.x16{left:362.783333pt;}
.x8{left:410.042813pt;}
.x9{left:428.969133pt;}
.x3{left:564.969307pt;}
.x2{left:587.781680pt;}
.xd{left:703.443200pt;}
}




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