
    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_3febea8e7fe6c3fcde34d55e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_607d253c536ce8b53b55526b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.138250;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_ba2b83ed990e0bc8aba7d54d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_108d6181cdd1174fe120302d.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_ab5bbc3c9b5609781f815e19.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.994000;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_42318734b6388c0f8a52588e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.726000;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:-22.768065px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.174602px;}
.ls0{letter-spacing:0.000000px;}
.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:-31.680001px;}
.ws2{word-spacing:-15.642000px;}
.ws0{word-spacing:-14.220000px;}
.ws1{word-spacing:-10.080000px;}
.ws3{word-spacing:-10.001953px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-7.122286px;}
._e{margin-left:-5.687877px;}
._3{margin-left:-4.423609px;}
._b{margin-left:-3.325731px;}
._0{margin-left:-2.311832px;}
._1{margin-left:-1.276422px;}
._2{width:1.241867px;}
._5{width:3.492997px;}
._4{width:5.380035px;}
._9{width:8.303594px;}
._8{width:9.442453px;}
._c{width:12.502708px;}
._7{width:14.360706px;}
._a{width:17.406604px;}
._6{width:18.677177px;}
._1d{width:22.367363px;}
._1e{width:23.387177px;}
._25{width:24.600002px;}
._1b{width:26.973479px;}
._19{width:31.009484px;}
._1a{width:32.171849px;}
._21{width:35.037311px;}
._11{width:36.180373px;}
._f{width:40.318022px;}
._10{width:41.405556px;}
._13{width:44.017086px;}
._12{width:45.185051px;}
._1c{width:48.771134px;}
._16{width:50.274593px;}
._15{width:53.552362px;}
._23{width:54.724924px;}
._14{width:58.541018px;}
._22{width:62.927809px;}
._18{width:71.815772px;}
._17{width:76.418078px;}
._20{width:81.016631px;}
._1f{width:85.323075px;}
._24{width:89.793140px;}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(27,28,29);}
.fc2{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:50.399999px;}
.fs1{font-size:59.999999px;}
.fs5{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.999997px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:15.281261px;}
.y1d{bottom:26.291970px;}
.y7{bottom:29.163596px;}
.y77{bottom:29.257427px;}
.y29{bottom:29.257518px;}
.y5{bottom:37.792511px;}
.y1c{bottom:47.824440px;}
.y4{bottom:60.303761px;}
.y2c{bottom:65.824440px;}
.y1b{bottom:69.357000px;}
.yc9{bottom:76.030980px;}
.y75{bottom:76.031175px;}
.y27{bottom:76.031355px;}
.y2b{bottom:87.357003px;}
.y1a{bottom:90.889470px;}
.ya1{bottom:109.189305px;}
.y74{bottom:109.807110px;}
.y19{bottom:112.422030px;}
.y26{bottom:114.283125px;}
.yc8{bottom:123.657210px;}
.ya0{bottom:130.722150px;}
.y73{bottom:131.339760px;}
.y52{bottom:132.742170px;}
.y18{bottom:133.954455px;}
.y25{bottom:139.045485px;}
.yc7{bottom:145.189305px;}
.y9f{bottom:152.254620px;}
.y72{bottom:152.872050px;}
.y51{bottom:154.274640px;}
.y17{bottom:155.486970px;}
.y2{bottom:158.494697px;}
.y24{bottom:163.807845px;}
.yc6{bottom:166.722150px;}
.y9e{bottom:173.787090px;}
.y71{bottom:174.404520px;}
.y50{bottom:175.807110px;}
.y16{bottom:177.019500px;}
.yc5{bottom:188.254620px;}
.y9d{bottom:195.319560px;}
.y70{bottom:195.937170px;}
.y4f{bottom:197.339580px;}
.y15{bottom:198.552015px;}
.y23{bottom:206.570205px;}
.yc4{bottom:209.787090px;}
.y9c{bottom:216.852030px;}
.y6f{bottom:217.469460px;}
.y101{bottom:218.254245px;}
.y4e{bottom:218.872230px;}
.y14{bottom:220.084485px;}
.y22{bottom:231.332655px;}
.y9b{bottom:238.384500px;}
.y6e{bottom:239.002110px;}
.y4d{bottom:240.404520px;}
.y13{bottom:241.616955px;}
.yc3{bottom:249.319559px;}
.y21{bottom:251.126860px;}
.yd5{bottom:257.787090px;}
.y9a{bottom:259.916970px;}
.y4c{bottom:261.937170px;}
.y12{bottom:263.149515px;}
.y1e{bottom:276.346017px;}
.y6d{bottom:278.534580px;}
.yd4{bottom:279.319560px;}
.y99{bottom:281.449440px;}
.y4b{bottom:283.469640px;}
.y11{bottom:284.681985px;}
.y100{bottom:295.425030px;}
.y1f{bottom:297.878579px;}
.yc2{bottom:300.852030px;}
.y98{bottom:302.981910px;}
.y4a{bottom:305.002110px;}
.y10{bottom:306.214500px;}
.yff{bottom:314.999730px;}
.y6c{bottom:318.067050px;}
.y20{bottom:319.411050px;}
.yc1{bottom:322.384500px;}
.y97{bottom:324.514380px;}
.y49{bottom:326.534775px;}
.yf{bottom:327.746970px;}
.yfe{bottom:334.575180px;}
.y6b{bottom:339.599715px;}
.yc0{bottom:343.916970px;}
.y48{bottom:348.067245px;}
.yfd{bottom:354.149880px;}
.y6a{bottom:361.132185px;}
.y96{bottom:364.046849px;}
.ybf{bottom:365.449440px;}
.y47{bottom:369.599520px;}
.ye{bottom:370.509375px;}
.yfc{bottom:373.724955px;}
.y69{bottom:382.664655px;}
.ybe{bottom:386.981910px;}
.y46{bottom:391.132185px;}
.yfb{bottom:393.300030px;}
.y68{bottom:404.197125px;}
.yd{bottom:404.529420px;}
.ybd{bottom:408.514380px;}
.y45{bottom:412.664655px;}
.yfa{bottom:412.874730px;}
.y95{bottom:415.579320px;}
.y67{bottom:425.729595px;}
.ybc{bottom:430.046850px;}
.yf9{bottom:432.450180px;}
.y94{bottom:437.112165px;}
.y66{bottom:447.262065px;}
.yd3{bottom:448.046850px;}
.ybb{bottom:451.579320px;}
.yf8{bottom:452.024880px;}
.y44{bottom:452.197125px;}
.y93{bottom:458.644260px;}
.y65{bottom:468.794535px;}
.yd2{bottom:469.579320px;}
.yf7{bottom:471.599955px;}
.yba{bottom:473.112165px;}
.y43{bottom:473.729595px;}
.y92{bottom:480.177105px;}
.yd1{bottom:491.112165px;}
.yf6{bottom:491.175030px;}
.y42{bottom:495.262065px;}
.y91{bottom:501.709575px;}
.y64{bottom:508.327005px;}
.yf5{bottom:510.750105px;}
.yb9{bottom:512.644260px;}
.y41{bottom:516.794715px;}
.y90{bottom:523.242045px;}
.yf4{bottom:530.324805px;}
.yb8{bottom:534.177105px;}
.y40{bottom:538.327185px;}
.y8f{bottom:544.774515px;}
.y63{bottom:547.859474px;}
.yf3{bottom:549.899880px;}
.yb7{bottom:555.709575px;}
.y3f{bottom:559.859475px;}
.y8e{bottom:566.306985px;}
.yf2{bottom:569.474955px;}
.yb6{bottom:577.242045px;}
.y3e{bottom:581.392125px;}
.yf1{bottom:589.050030px;}
.yb5{bottom:598.774515px;}
.y62{bottom:599.392125px;}
.y3d{bottom:602.924595px;}
.y8d{bottom:605.839455px;}
.yf0{bottom:608.625105px;}
.yb4{bottom:620.306985px;}
.y61{bottom:620.924595px;}
.y3c{bottom:624.457065px;}
.yef{bottom:628.199805px;}
.yb3{bottom:641.839455px;}
.y60{bottom:642.457065px;}
.y8c{bottom:645.371925px;}
.y3b{bottom:645.989730px;}
.yee{bottom:647.774880px;}
.yb2{bottom:663.371925px;}
.y5f{bottom:663.989730px;}
.y8b{bottom:666.904770px;}
.yed{bottom:667.349955px;}
.y3a{bottom:667.522200px;}
.yb1{bottom:684.904770px;}
.y5e{bottom:685.522200px;}
.yec{bottom:686.925030px;}
.y8a{bottom:688.436865px;}
.y39{bottom:689.054670px;}
.yd0{bottom:702.904770px;}
.yb0{bottom:706.436865px;}
.yeb{bottom:706.500105px;}
.y5d{bottom:707.054670px;}
.y89{bottom:709.969710px;}
.y38{bottom:710.587140px;}
.ycf{bottom:724.436865px;}
.yea{bottom:726.074805px;}
.y5c{bottom:728.587140px;}
.ye9{bottom:745.649880px;}
.yaf{bottom:745.969710px;}
.y88{bottom:749.502000px;}
.y37{bottom:750.119610px;}
.ye8{bottom:765.224955px;}
.yae{bottom:767.502000px;}
.yce{bottom:767.502180px;}
.y5b{bottom:768.119610px;}
.y87{bottom:771.034275px;}
.y36{bottom:771.652080px;}
.ye7{bottom:784.800030px;}
.yad{bottom:789.034275px;}
.y5a{bottom:789.652080px;}
.y86{bottom:792.567120px;}
.y35{bottom:793.184550px;}
.ye6{bottom:804.375105px;}
.yac{bottom:810.567120px;}
.y59{bottom:811.184550px;}
.y85{bottom:814.099410px;}
.y34{bottom:814.717020px;}
.ye5{bottom:823.949805px;}
.yab{bottom:832.099410px;}
.ycd{bottom:832.099590px;}
.y58{bottom:832.717020px;}
.y84{bottom:835.632060px;}
.y33{bottom:836.249670px;}
.yc{bottom:841.397998px;}
.ye4{bottom:843.524880px;}
.yaa{bottom:853.632060px;}
.y57{bottom:854.249670px;}
.y83{bottom:857.164530px;}
.y32{bottom:857.782140px;}
.ye3{bottom:863.099955px;}
.yb{bottom:872.913765px;}
.y56{bottom:875.782140px;}
.y82{bottom:878.697000px;}
.y31{bottom:879.314610px;}
.ye2{bottom:882.675030px;}
.ya9{bottom:893.164530px;}
.y55{bottom:897.314610px;}
.y81{bottom:900.229470px;}
.y30{bottom:900.847275px;}
.ye1{bottom:902.250105px;}
.ya8{bottom:914.697000px;}
.y54{bottom:918.847275px;}
.y80{bottom:921.762120px;}
.ye0{bottom:921.824805px;}
.y2f{bottom:922.379745px;}
.ya{bottom:925.392028px;}
.ya7{bottom:936.229470px;}
.y53{bottom:940.379745px;}
.ydf{bottom:941.399880px;}
.ycc{bottom:957.761940px;}
.ya6{bottom:957.762120px;}
.yde{bottom:960.974955px;}
.y7f{bottom:961.294410px;}
.y2e{bottom:961.912020px;}
.y9{bottom:965.912279px;}
.ya5{bottom:979.294410px;}
.ydd{bottom:980.550030px;}
.y7e{bottom:982.826880px;}
.ydc{bottom:1000.125102px;}
.ya4{bottom:1000.826883px;}
.y7d{bottom:1004.359536px;}
.y2d{bottom:1004.674478px;}
.y8{bottom:1006.432515px;}
.ydb{bottom:1019.699810px;}
.ycb{bottom:1022.359353px;}
.ya3{bottom:1022.359536px;}
.y7c{bottom:1025.891825px;}
.y1{bottom:1033.621513px;}
.yda{bottom:1039.274883px;}
.y2a{bottom:1039.289979px;}
.ya2{bottom:1043.891825px;}
.yd9{bottom:1058.849957px;}
.y7b{bottom:1065.424661px;}
.yd8{bottom:1078.425030px;}
.y3{bottom:1079.668876px;}
.yca{bottom:1086.956766px;}
.yd7{bottom:1098.000102px;}
.y7a{bottom:1104.956949px;}
.y79{bottom:1126.489602px;}
.yd6{bottom:1136.022073px;}
.y78{bottom:1148.022074px;}
.y28{bottom:1164.637482px;}
.y76{bottom:1164.637573px;}
.hb{height:25.875000px;}
.he{height:42.359999px;}
.hd{height:43.124999px;}
.ha{height:46.596001px;}
.h13{height:47.437501px;}
.h4{height:50.954999px;}
.h2{height:51.750000px;}
.h9{height:56.050501px;}
.h7{height:71.756981px;}
.h6{height:71.757002px;}
.h3{height:83.283761px;}
.h14{height:91.135980px;}
.h11{height:91.136175px;}
.h5{height:91.719000px;}
.h12{height:98.362427px;}
.hf{height:98.362518px;}
.h10{height:125.347503px;}
.h1{height:229.378487px;}
.hc{height:265.196685px;}
.h8{height:408.499875px;}
.h0{height:1263.000000px;}
.w2{width:359.999970px;}
.w3{width:360.000045px;}
.w5{width:446.164350px;}
.w6{width:447.085650px;}
.w4{width:721.125000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.xc{left:21.375000px;}
.x10{left:27.000000px;}
.x13{left:54.000000px;}
.x6{left:72.800783px;}
.x1{left:85.039376px;}
.x4{left:89.878911px;}
.x5{left:103.718439px;}
.x11{left:112.039376px;}
.xa{left:116.629790px;}
.x7{left:119.892711px;}
.x8{left:121.364176px;}
.x12{left:139.039376px;}
.xe{left:274.662401px;}
.x9{left:319.921581px;}
.xb{left:367.542713px;}
.x3{left:445.039350px;}
.xf{left:446.164350px;}
.xd{left:800.676839px;}
@media print{
.v2{vertical-align:-20.238280pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.155202pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-28.160001pt;}
.ws2{word-spacing:-13.904000pt;}
.ws0{word-spacing:-12.640000pt;}
.ws1{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.890625pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-6.330921pt;}
._e{margin-left:-5.055891pt;}
._3{margin-left:-3.932097pt;}
._b{margin-left:-2.956205pt;}
._0{margin-left:-2.054961pt;}
._1{margin-left:-1.134598pt;}
._2{width:1.103882pt;}
._5{width:3.104886pt;}
._4{width:4.782253pt;}
._9{width:7.380972pt;}
._8{width:8.393291pt;}
._c{width:11.113518pt;}
._7{width:12.765072pt;}
._a{width:15.472537pt;}
._6{width:16.601935pt;}
._1d{width:19.882100pt;}
._1e{width:20.788601pt;}
._25{width:21.866669pt;}
._1b{width:23.976426pt;}
._19{width:27.563986pt;}
._1a{width:28.597199pt;}
._21{width:31.144277pt;}
._11{width:32.160332pt;}
._f{width:35.838241pt;}
._10{width:36.804939pt;}
._13{width:39.126299pt;}
._12{width:40.164490pt;}
._1c{width:43.352119pt;}
._16{width:44.688528pt;}
._15{width:47.602100pt;}
._23{width:48.644377pt;}
._14{width:52.036460pt;}
._22{width:55.935830pt;}
._18{width:63.836241pt;}
._17{width:67.927180pt;}
._20{width:72.014783pt;}
._1f{width:75.842734pt;}
._24{width:79.816125pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:44.799999pt;}
.fs1{font-size:53.333332pt;}
.fs5{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666664pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:13.583343pt;}
.y1d{bottom:23.370640pt;}
.y7{bottom:25.923197pt;}
.y77{bottom:26.006602pt;}
.y29{bottom:26.006683pt;}
.y5{bottom:33.593343pt;}
.y1c{bottom:42.510614pt;}
.y4{bottom:53.603343pt;}
.y2c{bottom:58.510614pt;}
.y1b{bottom:61.650667pt;}
.yc9{bottom:67.583094pt;}
.y75{bottom:67.583267pt;}
.y27{bottom:67.583427pt;}
.y2b{bottom:77.650670pt;}
.y1a{bottom:80.790640pt;}
.ya1{bottom:97.057160pt;}
.y74{bottom:97.606320pt;}
.y19{bottom:99.930694pt;}
.y26{bottom:101.585000pt;}
.yc8{bottom:109.917520pt;}
.ya0{bottom:116.197467pt;}
.y73{bottom:116.746454pt;}
.y52{bottom:117.993040pt;}
.y18{bottom:119.070627pt;}
.y25{bottom:123.595987pt;}
.yc7{bottom:129.057160pt;}
.y9f{bottom:135.337440pt;}
.y72{bottom:135.886267pt;}
.y51{bottom:137.133014pt;}
.y17{bottom:138.210640pt;}
.y2{bottom:140.884175pt;}
.y24{bottom:145.606974pt;}
.yc6{bottom:148.197467pt;}
.y9e{bottom:154.477414pt;}
.y71{bottom:155.026240pt;}
.y50{bottom:156.272987pt;}
.y16{bottom:157.350667pt;}
.yc5{bottom:167.337440pt;}
.y9d{bottom:173.617387pt;}
.y70{bottom:174.166374pt;}
.y4f{bottom:175.412960pt;}
.y15{bottom:176.490680pt;}
.y23{bottom:183.617960pt;}
.yc4{bottom:186.477414pt;}
.y9c{bottom:192.757360pt;}
.y6f{bottom:193.306187pt;}
.y101{bottom:194.003774pt;}
.y4e{bottom:194.553094pt;}
.y14{bottom:195.630654pt;}
.y22{bottom:205.629027pt;}
.y9b{bottom:211.897334pt;}
.y6e{bottom:212.446320pt;}
.y4d{bottom:213.692907pt;}
.y13{bottom:214.770627pt;}
.yc3{bottom:221.617386pt;}
.y21{bottom:223.223876pt;}
.yd5{bottom:229.144080pt;}
.y9a{bottom:231.037307pt;}
.y4c{bottom:232.833040pt;}
.y12{bottom:233.910680pt;}
.y1e{bottom:245.640904pt;}
.y6d{bottom:247.586294pt;}
.yd4{bottom:248.284054pt;}
.y99{bottom:250.177280pt;}
.y4b{bottom:251.973014pt;}
.y11{bottom:253.050654pt;}
.y100{bottom:262.600027pt;}
.y1f{bottom:264.780959pt;}
.yc2{bottom:267.424027pt;}
.y98{bottom:269.317254pt;}
.y4a{bottom:271.112987pt;}
.y10{bottom:272.190667pt;}
.yff{bottom:279.999760pt;}
.y6c{bottom:282.726267pt;}
.y20{bottom:283.920933pt;}
.yc1{bottom:286.564000pt;}
.y97{bottom:288.457227pt;}
.y49{bottom:290.253134pt;}
.yf{bottom:291.330640pt;}
.yfe{bottom:297.400160pt;}
.y6b{bottom:301.866414pt;}
.yc0{bottom:305.703974pt;}
.y48{bottom:309.393107pt;}
.yfd{bottom:314.799894pt;}
.y6a{bottom:321.006387pt;}
.y96{bottom:323.597199pt;}
.ybf{bottom:324.843947pt;}
.y47{bottom:328.532907pt;}
.ye{bottom:329.341667pt;}
.yfc{bottom:332.199960pt;}
.y69{bottom:340.146360pt;}
.ybe{bottom:343.983920pt;}
.y46{bottom:347.673054pt;}
.yfb{bottom:349.600027pt;}
.y68{bottom:359.286334pt;}
.yd{bottom:359.581707pt;}
.ybd{bottom:363.123894pt;}
.y45{bottom:366.813027pt;}
.yfa{bottom:366.999760pt;}
.y95{bottom:369.403840pt;}
.y67{bottom:378.426307pt;}
.ybc{bottom:382.263867pt;}
.yf9{bottom:384.400160pt;}
.y94{bottom:388.544147pt;}
.y66{bottom:397.566280pt;}
.yd3{bottom:398.263867pt;}
.ybb{bottom:401.403840pt;}
.yf8{bottom:401.799894pt;}
.y44{bottom:401.953000pt;}
.y93{bottom:407.683787pt;}
.y65{bottom:416.706254pt;}
.yd2{bottom:417.403840pt;}
.yf7{bottom:419.199960pt;}
.yba{bottom:420.544147pt;}
.y43{bottom:421.092974pt;}
.y92{bottom:426.824094pt;}
.yd1{bottom:436.544147pt;}
.yf6{bottom:436.600027pt;}
.y42{bottom:440.232947pt;}
.y91{bottom:445.964067pt;}
.y64{bottom:451.846227pt;}
.yf5{bottom:454.000094pt;}
.yb9{bottom:455.683787pt;}
.y41{bottom:459.373080pt;}
.y90{bottom:465.104040pt;}
.yf4{bottom:471.399827pt;}
.yb8{bottom:474.824094pt;}
.y40{bottom:478.513054pt;}
.y8f{bottom:484.244014pt;}
.y63{bottom:486.986199pt;}
.yf3{bottom:488.799894pt;}
.yb7{bottom:493.964067pt;}
.y3f{bottom:497.652867pt;}
.y8e{bottom:503.383987pt;}
.yf2{bottom:506.199960pt;}
.yb6{bottom:513.104040pt;}
.y3e{bottom:516.793000pt;}
.yf1{bottom:523.600027pt;}
.yb5{bottom:532.244014pt;}
.y62{bottom:532.793000pt;}
.y3d{bottom:535.932974pt;}
.y8d{bottom:538.523960pt;}
.yf0{bottom:541.000094pt;}
.yb4{bottom:551.383987pt;}
.y61{bottom:551.932974pt;}
.y3c{bottom:555.072947pt;}
.yef{bottom:558.399827pt;}
.yb3{bottom:570.523960pt;}
.y60{bottom:571.072947pt;}
.y8c{bottom:573.663934pt;}
.y3b{bottom:574.213094pt;}
.yee{bottom:575.799894pt;}
.yb2{bottom:589.663934pt;}
.y5f{bottom:590.213094pt;}
.y8b{bottom:592.804240pt;}
.yed{bottom:593.199960pt;}
.y3a{bottom:593.353067pt;}
.yb1{bottom:608.804240pt;}
.y5e{bottom:609.353067pt;}
.yec{bottom:610.600027pt;}
.y8a{bottom:611.943880pt;}
.y39{bottom:612.493040pt;}
.yd0{bottom:624.804240pt;}
.yb0{bottom:627.943880pt;}
.yeb{bottom:628.000094pt;}
.y5d{bottom:628.493040pt;}
.y89{bottom:631.084187pt;}
.y38{bottom:631.633014pt;}
.ycf{bottom:643.943880pt;}
.yea{bottom:645.399827pt;}
.y5c{bottom:647.633014pt;}
.ye9{bottom:662.799894pt;}
.yaf{bottom:663.084187pt;}
.y88{bottom:666.224000pt;}
.y37{bottom:666.772987pt;}
.ye8{bottom:680.199960pt;}
.yae{bottom:682.224000pt;}
.yce{bottom:682.224160pt;}
.y5b{bottom:682.772987pt;}
.y87{bottom:685.363800pt;}
.y36{bottom:685.912960pt;}
.ye7{bottom:697.600027pt;}
.yad{bottom:701.363800pt;}
.y5a{bottom:701.912960pt;}
.y86{bottom:704.504107pt;}
.y35{bottom:705.052934pt;}
.ye6{bottom:715.000094pt;}
.yac{bottom:720.504107pt;}
.y59{bottom:721.052934pt;}
.y85{bottom:723.643920pt;}
.y34{bottom:724.192907pt;}
.ye5{bottom:732.399827pt;}
.yab{bottom:739.643920pt;}
.ycd{bottom:739.644080pt;}
.y58{bottom:740.192907pt;}
.y84{bottom:742.784054pt;}
.y33{bottom:743.333040pt;}
.yc{bottom:747.909332pt;}
.ye4{bottom:749.799894pt;}
.yaa{bottom:758.784054pt;}
.y57{bottom:759.333040pt;}
.y83{bottom:761.924027pt;}
.y32{bottom:762.473014pt;}
.ye3{bottom:767.199960pt;}
.yb{bottom:775.923347pt;}
.y56{bottom:778.473014pt;}
.y82{bottom:781.064000pt;}
.y31{bottom:781.612987pt;}
.ye2{bottom:784.600027pt;}
.ya9{bottom:793.924027pt;}
.y55{bottom:797.612987pt;}
.y81{bottom:800.203974pt;}
.y30{bottom:800.753134pt;}
.ye1{bottom:802.000094pt;}
.ya8{bottom:813.064000pt;}
.y54{bottom:816.753134pt;}
.y80{bottom:819.344107pt;}
.ye0{bottom:819.399827pt;}
.y2f{bottom:819.893107pt;}
.ya{bottom:822.570692pt;}
.ya7{bottom:832.203974pt;}
.y53{bottom:835.893107pt;}
.ydf{bottom:836.799894pt;}
.ycc{bottom:851.343947pt;}
.ya6{bottom:851.344107pt;}
.yde{bottom:854.199960pt;}
.y7f{bottom:854.483920pt;}
.y2e{bottom:855.032907pt;}
.y9{bottom:858.588693pt;}
.ya5{bottom:870.483920pt;}
.ydd{bottom:871.600027pt;}
.y7e{bottom:873.623894pt;}
.ydc{bottom:889.000091pt;}
.ya4{bottom:889.623896pt;}
.y7d{bottom:892.764032pt;}
.y2d{bottom:893.043980pt;}
.y8{bottom:894.606680pt;}
.ydb{bottom:906.399831pt;}
.ycb{bottom:908.763870pt;}
.ya3{bottom:908.764032pt;}
.y7c{bottom:911.903844pt;}
.y1{bottom:918.774679pt;}
.yda{bottom:923.799896pt;}
.y2a{bottom:923.813315pt;}
.ya2{bottom:927.903844pt;}
.yd9{bottom:941.199962pt;}
.y7b{bottom:947.044143pt;}
.yd8{bottom:958.600027pt;}
.y3{bottom:959.705668pt;}
.yca{bottom:966.183792pt;}
.yd7{bottom:976.000091pt;}
.y7a{bottom:982.183955pt;}
.y79{bottom:1001.324091pt;}
.yd6{bottom:1009.797398pt;}
.y78{bottom:1020.464066pt;}
.y28{bottom:1035.233317pt;}
.y76{bottom:1035.233399pt;}
.hb{height:23.000000pt;}
.he{height:37.653332pt;}
.hd{height:38.333332pt;}
.ha{height:41.418668pt;}
.h13{height:42.166668pt;}
.h4{height:45.293332pt;}
.h2{height:46.000000pt;}
.h9{height:49.822668pt;}
.h7{height:63.783983pt;}
.h6{height:63.784001pt;}
.h3{height:74.030009pt;}
.h14{height:81.009760pt;}
.h11{height:81.009933pt;}
.h5{height:81.528000pt;}
.h12{height:87.433268pt;}
.hf{height:87.433349pt;}
.h10{height:111.420003pt;}
.h1{height:203.891988pt;}
.hc{height:235.730387pt;}
.h8{height:363.111000pt;}
.h0{height:1122.666667pt;}
.w2{width:319.999973pt;}
.w3{width:320.000040pt;}
.w5{width:396.590533pt;}
.w6{width:397.409467pt;}
.w4{width:641.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.xc{left:19.000000pt;}
.x10{left:24.000000pt;}
.x13{left:48.000000pt;}
.x6{left:64.711807pt;}
.x1{left:75.590556pt;}
.x4{left:79.892365pt;}
.x5{left:92.194168pt;}
.x11{left:99.590556pt;}
.xa{left:103.670924pt;}
.x7{left:106.571299pt;}
.x8{left:107.879267pt;}
.x12{left:123.590556pt;}
.xe{left:244.144356pt;}
.x9{left:284.374739pt;}
.xb{left:326.704634pt;}
.x3{left:395.590533pt;}
.xf{left:396.590533pt;}
.xd{left:711.712746pt;}
}




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