
    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_d8129d9d227defda8ea09418.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_c7f7da4c02f500d6cd75b2cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_45b30c2c7388199653864c77.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.129000;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_796fd6a1bd925f896e7229c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:19.462072px;}
.ls2{letter-spacing:34.015846px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.999993px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-2.188031px;}
._1{margin-left:-1.024064px;}
._0{width:1.023106px;}
._4{width:2.253349px;}
._f{width:3.313821px;}
._e{width:4.329626px;}
._c{width:5.901553px;}
._5{width:6.988097px;}
._6{width:8.136096px;}
._10{width:9.294515px;}
._8{width:10.444989px;}
._9{width:11.737378px;}
._b{width:12.903751px;}
._13{width:14.879639px;}
._7{width:16.478981px;}
._2{width:19.316697px;}
._3{width:20.381173px;}
._12{width:22.609541px;}
._11{width:23.671328px;}
._a{width:25.331842px;}
._16{width:27.539059px;}
._14{width:28.579595px;}
._15{width:29.765476px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.239981px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y56{bottom:46.020882px;}
.y3{bottom:46.200882px;}
.y55{bottom:73.200871px;}
.y2a{bottom:73.380871px;}
.y53{bottom:242.941403px;}
.yfe{bottom:247.621401px;}
.y9e{bottom:258.961396px;}
.y52{bottom:263.641395px;}
.yb8{bottom:266.521393px;}
.yfd{bottom:268.321393px;}
.y28{bottom:276.961389px;}
.y9d{bottom:279.661388px;}
.y51{bottom:284.341386px;}
.yb7{bottom:287.221385px;}
.yfc{bottom:289.021384px;}
.y27{bottom:295.861382px;}
.y9c{bottom:300.361380px;}
.y50{bottom:305.041378px;}
.yb6{bottom:307.921377px;}
.yfb{bottom:309.721376px;}
.y9b{bottom:321.061372px;}
.y4f{bottom:325.741370px;}
.yfa{bottom:330.421368px;}
.y26{bottom:333.301367px;}
.yb5{bottom:337.261365px;}
.y9a{bottom:341.761363px;}
.y70{bottom:345.541362px;}
.y4e{bottom:346.441361px;}
.y25{bottom:354.001358px;}
.yb4{bottom:357.961357px;}
.yf9{bottom:359.761356px;}
.y99{bottom:362.461355px;}
.y6f{bottom:366.241354px;}
.y4d{bottom:367.141353px;}
.y24{bottom:374.701350px;}
.y98{bottom:383.161347px;}
.y6e{bottom:386.941345px;}
.y4c{bottom:387.841345px;}
.y23{bottom:395.401342px;}
.yb3{bottom:396.661341px;}
.yf8{bottom:398.821340px;}
.y97{bottom:403.861338px;}
.y6d{bottom:407.641337px;}
.y4b{bottom:408.541337px;}
.ye6{bottom:411.061336px;}
.y22{bottom:416.101334px;}
.yf7{bottom:419.521332px;}
.y96{bottom:424.561330px;}
.y6c{bottom:428.341329px;}
.y4a{bottom:429.241328px;}
.ye5{bottom:431.761327px;}
.yb2{bottom:435.721326px;}
.y21{bottom:436.801325px;}
.y82{bottom:437.161325px;}
.yf6{bottom:440.221324px;}
.y95{bottom:445.261322px;}
.y6b{bottom:449.041320px;}
.y49{bottom:449.941320px;}
.ye4{bottom:452.461319px;}
.yb1{bottom:456.421317px;}
.y20{bottom:457.501317px;}
.y81{bottom:457.861317px;}
.yf5{bottom:460.921316px;}
.y94{bottom:465.961314px;}
.y6a{bottom:469.741312px;}
.y48{bottom:470.641312px;}
.ye3{bottom:473.161311px;}
.yb0{bottom:477.121309px;}
.y1f{bottom:478.201309px;}
.y80{bottom:478.561309px;}
.yf4{bottom:481.621307px;}
.y93{bottom:486.661305px;}
.y69{bottom:490.441304px;}
.y47{bottom:491.341303px;}
.ye2{bottom:493.861302px;}
.yaf{bottom:497.821301px;}
.y1e{bottom:498.901300px;}
.y7f{bottom:499.261300px;}
.yf3{bottom:502.321299px;}
.y92{bottom:507.361297px;}
.y68{bottom:511.141296px;}
.y46{bottom:512.041295px;}
.ye1{bottom:514.561294px;}
.yae{bottom:518.521293px;}
.y1d{bottom:519.601292px;}
.y7e{bottom:519.961292px;}
.yf2{bottom:523.021291px;}
.y91{bottom:528.061289px;}
.y67{bottom:531.841287px;}
.y45{bottom:532.741287px;}
.ye0{bottom:535.261286px;}
.yd4{bottom:539.041284px;}
.yad{bottom:539.221284px;}
.y1c{bottom:540.301284px;}
.y7d{bottom:540.661284px;}
.yf1{bottom:543.721283px;}
.y90{bottom:548.761280px;}
.y66{bottom:552.541279px;}
.y44{bottom:553.441279px;}
.ydf{bottom:555.961278px;}
.yd3{bottom:559.741276px;}
.yac{bottom:559.921276px;}
.y1b{bottom:561.001276px;}
.y7c{bottom:561.361275px;}
.yf0{bottom:564.421274px;}
.y8f{bottom:569.461272px;}
.y65{bottom:573.241271px;}
.y43{bottom:574.141270px;}
.yde{bottom:576.661269px;}
.yd2{bottom:580.441268px;}
.yab{bottom:580.621268px;}
.y1a{bottom:581.701267px;}
.y7b{bottom:582.061267px;}
.yef{bottom:585.121266px;}
.y8e{bottom:590.161264px;}
.y42{bottom:594.841262px;}
.ydd{bottom:597.361261px;}
.yd1{bottom:601.141260px;}
.yaa{bottom:601.321259px;}
.y19{bottom:602.401259px;}
.y7a{bottom:602.761259px;}
.yee{bottom:605.821258px;}
.y8d{bottom:610.861256px;}
.y64{bottom:611.221256px;}
.y41{bottom:615.541254px;}
.ydc{bottom:618.061253px;}
.yd0{bottom:621.841251px;}
.ya9{bottom:622.021251px;}
.y18{bottom:623.101251px;}
.y79{bottom:623.461251px;}
.yed{bottom:626.521249px;}
.y8c{bottom:631.561247px;}
.y63{bottom:633.901246px;}
.y40{bottom:636.241246px;}
.ydb{bottom:638.761244px;}
.ycf{bottom:642.541243px;}
.ya8{bottom:642.721243px;}
.y17{bottom:643.801242px;}
.y78{bottom:644.161242px;}
.yec{bottom:647.221241px;}
.y8b{bottom:652.261239px;}
.y3f{bottom:656.941237px;}
.yda{bottom:659.461236px;}
.yce{bottom:663.241235px;}
.ya7{bottom:663.421235px;}
.y16{bottom:664.501234px;}
.y77{bottom:664.861234px;}
.yeb{bottom:667.921233px;}
.y8a{bottom:672.961231px;}
.y3e{bottom:677.641229px;}
.yd9{bottom:680.161228px;}
.ycd{bottom:683.941226px;}
.ya6{bottom:684.121226px;}
.y15{bottom:685.201226px;}
.y76{bottom:685.561226px;}
.yea{bottom:688.621225px;}
.y89{bottom:693.661223px;}
.y3d{bottom:698.341221px;}
.yd8{bottom:700.861220px;}
.ycc{bottom:704.641218px;}
.ya5{bottom:704.821218px;}
.y14{bottom:705.901218px;}
.y88{bottom:714.361214px;}
.y75{bottom:714.901214px;}
.ye9{bottom:717.961213px;}
.y3c{bottom:719.041212px;}
.ycb{bottom:725.341210px;}
.ya4{bottom:725.521210px;}
.y13{bottom:726.601209px;}
.yd7{bottom:730.201208px;}
.y87{bottom:735.061206px;}
.y3b{bottom:739.741204px;}
.yca{bottom:746.041202px;}
.y12{bottom:747.301201px;}
.y74{bottom:753.601199px;}
.ya3{bottom:754.861198px;}
.y86{bottom:755.761198px;}
.ye8{bottom:756.121198px;}
.y3a{bottom:760.441196px;}
.yc9{bottom:766.741193px;}
.y11{bottom:768.001193px;}
.yd6{bottom:768.541193px;}
.ye7{bottom:778.801188px;}
.y39{bottom:781.141188px;}
.y85{bottom:785.101186px;}
.yc8{bottom:787.441185px;}
.y10{bottom:788.701185px;}
.yd5{bottom:791.221184px;}
.y73{bottom:792.661183px;}
.ya2{bottom:793.201183px;}
.y38{bottom:801.841179px;}
.yc7{bottom:808.141177px;}
.yf{bottom:809.401176px;}
.ya1{bottom:810.481176px;}
.y72{bottom:812.461175px;}
.y37{bottom:822.541171px;}
.y84{bottom:823.441171px;}
.y71{bottom:826.141170px;}
.yc6{bottom:828.841168px;}
.ye{bottom:830.101168px;}
.ya0{bottom:832.981167px;}
.y62{bottom:843.061163px;}
.y36{bottom:843.241163px;}
.y83{bottom:845.941162px;}
.yc5{bottom:849.541160px;}
.yd{bottom:850.801160px;}
.y61{bottom:863.761154px;}
.y35{bottom:863.941154px;}
.yc4{bottom:870.241152px;}
.yc{bottom:871.501151px;}
.y60{bottom:884.461146px;}
.y34{bottom:884.641146px;}
.yc3{bottom:890.941144px;}
.yb{bottom:892.201143px;}
.y5f{bottom:905.161138px;}
.y33{bottom:905.341138px;}
.yc2{bottom:911.641135px;}
.y5e{bottom:925.861130px;}
.y32{bottom:926.041130px;}
.ya{bottom:930.361128px;}
.yc1{bottom:932.341127px;}
.y5d{bottom:946.561121px;}
.y31{bottom:946.741121px;}
.y9{bottom:949.261120px;}
.yc0{bottom:953.041119px;}
.y5c{bottom:967.261113px;}
.y30{bottom:967.441113px;}
.ybf{bottom:973.741111px;}
.y8{bottom:986.341105px;}
.y5b{bottom:987.961105px;}
.y2f{bottom:988.141105px;}
.ybe{bottom:994.441102px;}
.y7{bottom:1007.041097px;}
.y5a{bottom:1008.661097px;}
.y2e{bottom:1008.841096px;}
.ybd{bottom:1015.141094px;}
.y2d{bottom:1029.541088px;}
.ybc{bottom:1035.841086px;}
.y59{bottom:1038.001085px;}
.y6{bottom:1046.461081px;}
.y2c{bottom:1050.241080px;}
.y9f{bottom:1056.361077px;}
.ybb{bottom:1056.541077px;}
.y5{bottom:1070.581072px;}
.y58{bottom:1077.061069px;}
.yba{bottom:1077.241069px;}
.y2b{bottom:1079.581068px;}
.y4{bottom:1094.701062px;}
.y57{bottom:1097.761061px;}
.yb9{bottom:1097.941061px;}
.y2{bottom:1168.501033px;}
.y54{bottom:1185.241026px;}
.y29{bottom:1185.421026px;}
.y1{bottom:1185.601026px;}
.h3{height:32.947907px;}
.h6{height:49.175980px;}
.h1{height:53.186379px;}
.h2{height:58.953576px;}
.h7{height:61.139496px;}
.h8{height:64.079974px;}
.h5{height:66.455973px;}
.h4{height:77.753489px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:106.379207px;}
.xa{left:109.439206px;}
.x8{left:112.319205px;}
.x5{left:119.519202px;}
.xd{left:123.659201px;}
.x14{left:131.759197px;}
.x18{left:133.559157px;}
.x6{left:135.899252px;}
.x1{left:157.319937px;}
.x19{left:160.559137px;}
.x9{left:170.277966px;}
.x17{left:192.959923px;}
.x10{left:224.819910px;}
.x16{left:228.419909px;}
.x7{left:298.079166px;}
.x13{left:315.899874px;}
.x15{left:338.038382px;}
.xb{left:378.358689px;}
.xe{left:442.079823px;}
.x4{left:446.219822px;}
.x2{left:575.819903px;}
.xf{left:618.479491px;}
.x12{left:680.939728px;}
.x11{left:735.659706px;}
.x3{left:786.239686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:17.299620pt;}
.ls2{letter-spacing:30.236308pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-1.944916pt;}
._1{margin-left:-0.910279pt;}
._0{width:0.909427pt;}
._4{width:2.002977pt;}
._f{width:2.945619pt;}
._e{width:3.848557pt;}
._c{width:5.245825pt;}
._5{width:6.211642pt;}
._6{width:7.232086pt;}
._10{width:8.261791pt;}
._8{width:9.284435pt;}
._9{width:10.433225pt;}
._b{width:11.470001pt;}
._13{width:13.226345pt;}
._7{width:14.647983pt;}
._2{width:17.170397pt;}
._3{width:18.116598pt;}
._12{width:20.097369pt;}
._11{width:21.041181pt;}
._a{width:22.517193pt;}
._16{width:24.479164pt;}
._14{width:25.404084pt;}
._15{width:26.458201pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:40.907450pt;}
.y3{bottom:41.067450pt;}
.y55{bottom:65.067441pt;}
.y2a{bottom:65.227441pt;}
.y53{bottom:215.947914pt;}
.yfe{bottom:220.107912pt;}
.y9e{bottom:230.187908pt;}
.y52{bottom:234.347906pt;}
.yb8{bottom:236.907905pt;}
.yfd{bottom:238.507905pt;}
.y28{bottom:246.187902pt;}
.y9d{bottom:248.587901pt;}
.y51{bottom:252.747899pt;}
.yb7{bottom:255.307898pt;}
.yfc{bottom:256.907897pt;}
.y27{bottom:262.987895pt;}
.y9c{bottom:266.987893pt;}
.y50{bottom:271.147892pt;}
.yb6{bottom:273.707891pt;}
.yfb{bottom:275.307890pt;}
.y9b{bottom:285.387886pt;}
.y4f{bottom:289.547884pt;}
.yfa{bottom:293.707883pt;}
.y26{bottom:296.267881pt;}
.yb5{bottom:299.787880pt;}
.y9a{bottom:303.787878pt;}
.y70{bottom:307.147877pt;}
.y4e{bottom:307.947877pt;}
.y25{bottom:314.667874pt;}
.yb4{bottom:318.187873pt;}
.yf9{bottom:319.787872pt;}
.y99{bottom:322.187871pt;}
.y6f{bottom:325.547870pt;}
.y4d{bottom:326.347869pt;}
.y24{bottom:333.067867pt;}
.y98{bottom:340.587864pt;}
.y6e{bottom:343.947862pt;}
.y4c{bottom:344.747862pt;}
.y23{bottom:351.467859pt;}
.yb3{bottom:352.587859pt;}
.yf8{bottom:354.507858pt;}
.y97{bottom:358.987856pt;}
.y6d{bottom:362.347855pt;}
.y4b{bottom:363.147855pt;}
.ye6{bottom:365.387854pt;}
.y22{bottom:369.867852pt;}
.yf7{bottom:372.907851pt;}
.y96{bottom:377.387849pt;}
.y6c{bottom:380.747848pt;}
.y4a{bottom:381.547847pt;}
.ye5{bottom:383.787846pt;}
.yb2{bottom:387.307845pt;}
.y21{bottom:388.267845pt;}
.y82{bottom:388.587845pt;}
.yf6{bottom:391.307843pt;}
.y95{bottom:395.787842pt;}
.y6b{bottom:399.147840pt;}
.y49{bottom:399.947840pt;}
.ye4{bottom:402.187839pt;}
.yb1{bottom:405.707838pt;}
.y20{bottom:406.667837pt;}
.y81{bottom:406.987837pt;}
.yf5{bottom:409.707836pt;}
.y94{bottom:414.187834pt;}
.y6a{bottom:417.547833pt;}
.y48{bottom:418.347833pt;}
.ye3{bottom:420.587832pt;}
.yb0{bottom:424.107830pt;}
.y1f{bottom:425.067830pt;}
.y80{bottom:425.387830pt;}
.yf4{bottom:428.107829pt;}
.y93{bottom:432.587827pt;}
.y69{bottom:435.947826pt;}
.y47{bottom:436.747825pt;}
.ye2{bottom:438.987824pt;}
.yaf{bottom:442.507823pt;}
.y1e{bottom:443.467823pt;}
.y7f{bottom:443.787822pt;}
.yf3{bottom:446.507821pt;}
.y92{bottom:450.987820pt;}
.y68{bottom:454.347818pt;}
.y46{bottom:455.147818pt;}
.ye1{bottom:457.387817pt;}
.yae{bottom:460.907816pt;}
.y1d{bottom:461.867815pt;}
.y7e{bottom:462.187815pt;}
.yf2{bottom:464.907814pt;}
.y91{bottom:469.387812pt;}
.y67{bottom:472.747811pt;}
.y45{bottom:473.547811pt;}
.ye0{bottom:475.787810pt;}
.yd4{bottom:479.147808pt;}
.yad{bottom:479.307808pt;}
.y1c{bottom:480.267808pt;}
.y7d{bottom:480.587808pt;}
.yf1{bottom:483.307807pt;}
.y90{bottom:487.787805pt;}
.y66{bottom:491.147804pt;}
.y44{bottom:491.947803pt;}
.ydf{bottom:494.187802pt;}
.yd3{bottom:497.547801pt;}
.yac{bottom:497.707801pt;}
.y1b{bottom:498.667801pt;}
.y7c{bottom:498.987800pt;}
.yf0{bottom:501.707799pt;}
.y8f{bottom:506.187798pt;}
.y65{bottom:509.547796pt;}
.y43{bottom:510.347796pt;}
.yde{bottom:512.587795pt;}
.yd2{bottom:515.947794pt;}
.yab{bottom:516.107794pt;}
.y1a{bottom:517.067793pt;}
.y7b{bottom:517.387793pt;}
.yef{bottom:520.107792pt;}
.y8e{bottom:524.587790pt;}
.y42{bottom:528.747789pt;}
.ydd{bottom:530.987788pt;}
.yd1{bottom:534.347786pt;}
.yaa{bottom:534.507786pt;}
.y19{bottom:535.467786pt;}
.y7a{bottom:535.787786pt;}
.yee{bottom:538.507785pt;}
.y8d{bottom:542.987783pt;}
.y64{bottom:543.307783pt;}
.y41{bottom:547.147781pt;}
.ydc{bottom:549.387780pt;}
.yd0{bottom:552.747779pt;}
.ya9{bottom:552.907779pt;}
.y18{bottom:553.867778pt;}
.y79{bottom:554.187778pt;}
.yed{bottom:556.907777pt;}
.y8c{bottom:561.387775pt;}
.y63{bottom:563.467775pt;}
.y40{bottom:565.547774pt;}
.ydb{bottom:567.787773pt;}
.ycf{bottom:571.147772pt;}
.ya8{bottom:571.307771pt;}
.y17{bottom:572.267771pt;}
.y78{bottom:572.587771pt;}
.yec{bottom:575.307770pt;}
.y8b{bottom:579.787768pt;}
.y3f{bottom:583.947766pt;}
.yda{bottom:586.187766pt;}
.yce{bottom:589.547764pt;}
.ya7{bottom:589.707764pt;}
.y16{bottom:590.667764pt;}
.y77{bottom:590.987764pt;}
.yeb{bottom:593.707763pt;}
.y8a{bottom:598.187761pt;}
.y3e{bottom:602.347759pt;}
.yd9{bottom:604.587758pt;}
.ycd{bottom:607.947757pt;}
.ya6{bottom:608.107757pt;}
.y15{bottom:609.067756pt;}
.y76{bottom:609.387756pt;}
.yea{bottom:612.107755pt;}
.y89{bottom:616.587753pt;}
.y3d{bottom:620.747752pt;}
.yd8{bottom:622.987751pt;}
.ycc{bottom:626.347749pt;}
.ya5{bottom:626.507749pt;}
.y14{bottom:627.467749pt;}
.y88{bottom:634.987746pt;}
.y75{bottom:635.467746pt;}
.ye9{bottom:638.187745pt;}
.y3c{bottom:639.147744pt;}
.ycb{bottom:644.747742pt;}
.ya4{bottom:644.907742pt;}
.y13{bottom:645.867742pt;}
.yd7{bottom:649.067740pt;}
.y87{bottom:653.387739pt;}
.y3b{bottom:657.547737pt;}
.yca{bottom:663.147735pt;}
.y12{bottom:664.267734pt;}
.y74{bottom:669.867732pt;}
.ya3{bottom:670.987732pt;}
.y86{bottom:671.787731pt;}
.ye8{bottom:672.107731pt;}
.y3a{bottom:675.947730pt;}
.yc9{bottom:681.547727pt;}
.y11{bottom:682.667727pt;}
.yd6{bottom:683.147727pt;}
.ye7{bottom:692.267723pt;}
.y39{bottom:694.347722pt;}
.y85{bottom:697.867721pt;}
.yc8{bottom:699.947720pt;}
.y10{bottom:701.067720pt;}
.yd5{bottom:703.307719pt;}
.y73{bottom:704.587718pt;}
.ya2{bottom:705.067718pt;}
.y38{bottom:712.747715pt;}
.yc7{bottom:718.347713pt;}
.yf{bottom:719.467712pt;}
.ya1{bottom:720.427712pt;}
.y72{bottom:722.187711pt;}
.y37{bottom:731.147708pt;}
.y84{bottom:731.947707pt;}
.y71{bottom:734.347706pt;}
.yc6{bottom:736.747705pt;}
.ye{bottom:737.867705pt;}
.ya0{bottom:740.427704pt;}
.y62{bottom:749.387700pt;}
.y36{bottom:749.547700pt;}
.y83{bottom:751.947699pt;}
.yc5{bottom:755.147698pt;}
.yd{bottom:756.267697pt;}
.y61{bottom:767.787693pt;}
.y35{bottom:767.947693pt;}
.yc4{bottom:773.547691pt;}
.yc{bottom:774.667690pt;}
.y60{bottom:786.187686pt;}
.y34{bottom:786.347685pt;}
.yc3{bottom:791.947683pt;}
.yb{bottom:793.067683pt;}
.y5f{bottom:804.587678pt;}
.y33{bottom:804.747678pt;}
.yc2{bottom:810.347676pt;}
.y5e{bottom:822.987671pt;}
.y32{bottom:823.147671pt;}
.ya{bottom:826.987669pt;}
.yc1{bottom:828.747669pt;}
.y5d{bottom:841.387663pt;}
.y31{bottom:841.547663pt;}
.y9{bottom:843.787662pt;}
.yc0{bottom:847.147661pt;}
.y5c{bottom:859.787656pt;}
.y30{bottom:859.947656pt;}
.ybf{bottom:865.547654pt;}
.y8{bottom:876.747649pt;}
.y5b{bottom:878.187649pt;}
.y2f{bottom:878.347649pt;}
.ybe{bottom:883.947646pt;}
.y7{bottom:895.147642pt;}
.y5a{bottom:896.587641pt;}
.y2e{bottom:896.747641pt;}
.ybd{bottom:902.347639pt;}
.y2d{bottom:915.147634pt;}
.ybc{bottom:920.747632pt;}
.y59{bottom:922.667631pt;}
.y6{bottom:930.187628pt;}
.y2c{bottom:933.547627pt;}
.y9f{bottom:938.987624pt;}
.ybb{bottom:939.147624pt;}
.y5{bottom:951.627619pt;}
.y58{bottom:957.387617pt;}
.yba{bottom:957.547617pt;}
.y2b{bottom:959.627616pt;}
.y4{bottom:973.067611pt;}
.y57{bottom:975.787610pt;}
.yb9{bottom:975.947610pt;}
.y2{bottom:1038.667585pt;}
.y54{bottom:1053.547579pt;}
.y29{bottom:1053.707579pt;}
.y1{bottom:1053.867578pt;}
.h3{height:29.287028pt;}
.h6{height:43.711983pt;}
.h1{height:47.276781pt;}
.h2{height:52.403179pt;}
.h7{height:54.346218pt;}
.h8{height:56.959977pt;}
.h5{height:59.071976pt;}
.h4{height:69.114212pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:94.559296pt;}
.xa{left:97.279294pt;}
.x8{left:99.839293pt;}
.x5{left:106.239291pt;}
.xd{left:109.919289pt;}
.x14{left:117.119286pt;}
.x18{left:118.719251pt;}
.x6{left:120.799335pt;}
.x1{left:139.839944pt;}
.x19{left:142.719233pt;}
.x9{left:151.358192pt;}
.x17{left:171.519931pt;}
.x10{left:199.839920pt;}
.x16{left:203.039919pt;}
.x7{left:264.959259pt;}
.x13{left:280.799888pt;}
.x15{left:300.478561pt;}
.xb{left:336.318834pt;}
.xe{left:392.959843pt;}
.x4{left:396.639841pt;}
.x2{left:511.839914pt;}
.xf{left:549.759548pt;}
.x12{left:605.279758pt;}
.x11{left:653.919738pt;}
.x3{left:698.879720pt;}
}




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