
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:78.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005322px;}
.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:0.000000px;}
.ws1{word-spacing:311.083881px;}
._0{margin-left:-34.404259px;}
._16{margin-left:-15.063755px;}
._6{margin-left:-12.972656px;}
._15{margin-left:-9.464419px;}
._a{margin-left:-8.275314px;}
._c{margin-left:-7.112537px;}
._8{margin-left:-5.724301px;}
._9{margin-left:-4.478909px;}
._b{margin-left:-2.959076px;}
._4{margin-left:-1.632957px;}
._3{width:1.685429px;}
._7{width:3.364517px;}
._2{width:5.266113px;}
._1{width:8.404758px;}
._5{width:9.694542px;}
._13{width:68.831095px;}
._e{width:165.323940px;}
._f{width:171.053371px;}
._d{width:174.613740px;}
._10{width:185.996757px;}
._12{width:260.280777px;}
._11{width:384.187560px;}
._14{width:677.211660px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.223892px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fsc{font-size:63.592350px;}
.fs2{font-size:64.020000px;}
.fs9{font-size:66.000000px;}
.fs5{font-size:69.840000px;}
.fs4{font-size:76.486902px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:84.789810px;}
.fse{font-size:109.836768px;}
.fs7{font-size:120.000000px;}
.fs1{font-size:156.000000px;}
.fsd{font-size:157.341912px;}
.fs0{font-size:258.359916px;}
.y0{bottom:0.000000px;}
.y14{bottom:16.211425px;}
.y7d{bottom:79.500000px;}
.y51{bottom:84.000000px;}
.y7c{bottom:97.500000px;}
.y50{bottom:102.000000px;}
.y9f{bottom:112.500000px;}
.y7b{bottom:115.500000px;}
.y28{bottom:117.750000px;}
.y4f{bottom:120.000000px;}
.y9e{bottom:130.500000px;}
.y7a{bottom:133.500000px;}
.y27{bottom:134.250000px;}
.y4e{bottom:145.500000px;}
.y9d{bottom:148.500000px;}
.y26{bottom:150.750000px;}
.y79{bottom:168.000000px;}
.y4d{bottom:174.000000px;}
.y1d{bottom:174.750000px;}
.y78{bottom:186.000000px;}
.y4c{bottom:192.000000px;}
.y77{bottom:204.000000px;}
.y4b{bottom:210.000000px;}
.y9c{bottom:217.500000px;}
.y4a{bottom:228.000000px;}
.y25{bottom:228.750000px;}
.y9b{bottom:235.500000px;}
.y24{bottom:245.250000px;}
.y49{bottom:246.000000px;}
.y9a{bottom:261.000000px;}
.y1c{bottom:267.750000px;}
.y48{bottom:271.500000px;}
.y75{bottom:273.000000px;}
.y99{bottom:279.000000px;}
.ycd{bottom:288.000000px;}
.y74{bottom:292.500000px;}
.y98{bottom:303.000000px;}
.ycc{bottom:310.500000px;}
.y73{bottom:312.000000px;}
.y23{bottom:321.750000px;}
.y47{bottom:328.500000px;}
.ycb{bottom:333.000000px;}
.y22{bottom:338.250000px;}
.y46{bottom:346.500000px;}
.y21{bottom:354.750000px;}
.yca{bottom:355.500000px;}
.y72{bottom:361.500000px;}
.y45{bottom:364.500000px;}
.y97{bottom:378.000000px;}
.y1b{bottom:378.750000px;}
.y71{bottom:381.000000px;}
.yb8{bottom:382.500000px;}
.y44{bottom:390.000000px;}
.y96{bottom:396.000000px;}
.y70{bottom:400.500000px;}
.yb7{bottom:403.500000px;}
.y43{bottom:417.000000px;}
.y95{bottom:421.500000px;}
.yb6{bottom:424.500000px;}
.y20{bottom:432.750000px;}
.y42{bottom:435.000000px;}
.y94{bottom:439.500000px;}
.yb5{bottom:445.500000px;}
.y1f{bottom:449.250000px;}
.y6f{bottom:450.000000px;}
.y41{bottom:453.000000px;}
.y93{bottom:457.500000px;}
.ydd{bottom:460.500000px;}
.y1e{bottom:465.750000px;}
.yb4{bottom:466.500000px;}
.yc9{bottom:468.000000px;}
.y6e{bottom:469.500000px;}
.y40{bottom:471.000000px;}
.y92{bottom:483.000000px;}
.yb3{bottom:487.500000px;}
.y3f{bottom:489.000000px;}
.y1a{bottom:489.750000px;}
.yc8{bottom:490.500000px;}
.y91{bottom:501.000000px;}
.y3e{bottom:507.000000px;}
.y6d{bottom:508.500000px;}
.yc7{bottom:513.000000px;}
.ydc{bottom:514.500000px;}
.y90{bottom:519.000000px;}
.y3d{bottom:532.500000px;}
.yc6{bottom:535.500000px;}
.ydb{bottom:541.500000px;}
.y8f{bottom:544.500000px;}
.yb2{bottom:550.500000px;}
.y6c{bottom:558.000000px;}
.y8e{bottom:562.500000px;}
.yda{bottom:568.500000px;}
.yb1{bottom:571.500000px;}
.y6b{bottom:577.500000px;}
.y8d{bottom:586.500000px;}
.y3c{bottom:589.500000px;}
.yb0{bottom:592.500000px;}
.yd9{bottom:595.500000px;}
.y6a{bottom:597.000000px;}
.ye9{bottom:598.796174px;}
.yc5{bottom:603.000000px;}
.y3b{bottom:607.500000px;}
.y5{bottom:612.000000px;}
.yaf{bottom:613.500000px;}
.yd8{bottom:622.500000px;}
.y3a{bottom:625.500000px;}
.yae{bottom:634.500000px;}
.ye4{bottom:646.490478px;}
.y69{bottom:646.500000px;}
.yc4{bottom:648.000000px;}
.ye8{bottom:649.140105px;}
.y39{bottom:651.000000px;}
.y8c{bottom:661.500000px;}
.y68{bottom:666.000000px;}
.yc3{bottom:670.500000px;}
.y19{bottom:678.000000px;}
.y38{bottom:679.500000px;}
.y4{bottom:682.500000px;}
.y67{bottom:685.500000px;}
.yc2{bottom:693.000000px;}
.y37{bottom:697.500000px;}
.ye3{bottom:698.159226px;}
.y18{bottom:699.000000px;}
.ye0{bottom:700.500000px;}
.ye7{bottom:700.808899px;}
.y36{bottom:715.500000px;}
.yad{bottom:718.500000px;}
.y8b{bottom:723.000000px;}
.yec{bottom:727.500000px;}
.y17{bottom:729.000000px;}
.y35{bottom:733.500000px;}
.y65{bottom:736.500000px;}
.yac{bottom:739.500000px;}
.y8a{bottom:741.000000px;}
.ye2{bottom:749.828017px;}
.y16{bottom:750.000000px;}
.y34{bottom:751.500000px;}
.ye6{bottom:752.477691px;}
.y3{bottom:753.000000px;}
.y64{bottom:756.000000px;}
.y89{bottom:759.000000px;}
.yab{bottom:760.500000px;}
.y33{bottom:769.500000px;}
.y66{bottom:775.500000px;}
.y63{bottom:775.500046px;}
.yaa{bottom:781.500000px;}
.yc1{bottom:783.000000px;}
.y88{bottom:784.500000px;}
.y32{bottom:787.500000px;}
.y13{bottom:790.500046px;}
.y87{bottom:802.500000px;}
.ye1{bottom:802.821670px;}
.ye5{bottom:804.146484px;}
.yc0{bottom:805.500000px;}
.yd7{bottom:808.500023px;}
.y31{bottom:811.500000px;}
.y12{bottom:811.500046px;}
.y2{bottom:823.500000px;}
.y62{bottom:825.000045px;}
.y86{bottom:828.000000px;}
.yd6{bottom:829.500023px;}
.y11{bottom:832.500046px;}
.y5f{bottom:844.500000px;}
.y61{bottom:844.500045px;}
.y85{bottom:846.000000px;}
.y10{bottom:853.500046px;}
.yd5{bottom:858.000023px;}
.y5e{bottom:864.000000px;}
.y60{bottom:864.000045px;}
.ya9{bottom:865.500000px;}
.yeb{bottom:866.907578px;}
.y30{bottom:868.500000px;}
.y84{bottom:870.000000px;}
.yf{bottom:874.500046px;}
.ya8{bottom:886.500000px;}
.yd4{bottom:886.500023px;}
.y1{bottom:894.000000px;}
.ybf{bottom:895.500000px;}
.ye{bottom:895.500046px;}
.ya7{bottom:907.500000px;}
.yd3{bottom:907.500023px;}
.yea{bottom:910.407578px;}
.y76{bottom:915.000023px;}
.ybe{bottom:918.000000px;}
.ya6{bottom:928.500000px;}
.yd2{bottom:928.500023px;}
.ybd{bottom:940.500000px;}
.y83{bottom:940.500023px;}
.ya5{bottom:949.500000px;}
.yd{bottom:951.000046px;}
.yd1{bottom:957.000023px;}
.y82{bottom:960.000023px;}
.ybc{bottom:963.000000px;}
.ya4{bottom:970.500000px;}
.y2e{bottom:971.999976px;}
.yc{bottom:972.000046px;}
.y5b{bottom:976.500023px;}
.yd0{bottom:978.000023px;}
.ybb{bottom:985.500000px;}
.yb{bottom:993.000046px;}
.y2d{bottom:994.499976px;}
.y5a{bottom:996.000023px;}
.y81{bottom:999.000023px;}
.ya3{bottom:1012.500000px;}
.ya{bottom:1014.000046px;}
.y59{bottom:1015.500023px;}
.y80{bottom:1018.500023px;}
.ycf{bottom:1020.000023px;}
.y56{bottom:1020.000035px;}
.y2c{bottom:1024.499976px;}
.ya2{bottom:1033.500000px;}
.y58{bottom:1035.000023px;}
.y9{bottom:1035.000047px;}
.y7f{bottom:1038.000023px;}
.y55{bottom:1039.500035px;}
.yce{bottom:1041.000022px;}
.y2b{bottom:1046.999976px;}
.yba{bottom:1053.000000px;}
.ya1{bottom:1054.500000px;}
.y57{bottom:1054.500023px;}
.y8{bottom:1056.000046px;}
.y7e{bottom:1057.500023px;}
.y54{bottom:1059.000035px;}
.y2a{bottom:1069.499976px;}
.yb9{bottom:1075.500000px;}
.y53{bottom:1078.500035px;}
.ya0{bottom:1081.500000px;}
.y29{bottom:1091.999976px;}
.y52{bottom:1098.000035px;}
.y7{bottom:1104.000041px;}
.y5d{bottom:1106.999990px;}
.ydf{bottom:1108.499972px;}
.y15{bottom:1108.500041px;}
.y2f{bottom:1132.499989px;}
.y5c{bottom:1145.999990px;}
.yde{bottom:1147.499972px;}
.y6{bottom:1147.500041px;}
.h4{height:29.662697px;}
.h7{height:57.000000px;}
.hd{height:60.412732px;}
.h3{height:60.819000px;}
.ha{height:62.700000px;}
.h6{height:66.348000px;}
.h5{height:72.662557px;}
.hb{height:79.800000px;}
.hc{height:80.550319px;}
.hf{height:104.344930px;}
.h8{height:114.000000px;}
.h9{height:135.000000px;}
.h2{height:148.200000px;}
.he{height:149.474816px;}
.h1{height:245.441920px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:56.396118px;}
.x33{left:68.299804px;}
.x2f{left:70.948974px;}
.x30{left:72.273926px;}
.x16{left:75.000000px;}
.x9{left:76.500000px;}
.x6{left:78.000000px;}
.x1{left:79.507599px;}
.x7{left:81.000000px;}
.xf{left:94.500000px;}
.x2d{left:95.868750px;}
.xe{left:102.000000px;}
.x2c{left:105.690001px;}
.x2e{left:107.190001px;}
.x31{left:113.343750px;}
.x32{left:114.668701px;}
.x2{left:124.368623px;}
.x14{left:142.097168px;}
.x15{left:166.041504px;}
.x5{left:170.646332px;}
.x17{left:181.500000px;}
.x3{left:196.714440px;}
.x22{left:204.824248px;}
.x4{left:206.016906px;}
.x23{left:210.368316px;}
.x18{left:211.605468px;}
.x24{left:219.080211px;}
.x25{left:222.947216px;}
.x10{left:247.500000px;}
.x26{left:264.912552px;}
.x27{left:271.503112px;}
.x28{left:351.208510px;}
.x19{left:356.513671px;}
.x29{left:363.602303px;}
.x1a{left:369.864258px;}
.x2a{left:373.668960px;}
.x1b{left:374.806641px;}
.x2b{left:377.545739px;}
.x1c{left:389.510742px;}
.x1d{left:394.453125px;}
.x1e{left:407.783204px;}
.x1f{left:446.255859px;}
.x20{left:460.324218px;}
.x21{left:495.618164px;}
.x35{left:532.510358px;}
.x11{left:537.000000px;}
.x34{left:554.056710px;}
.xb{left:562.971360px;}
.xc{left:597.256015px;}
.xd{left:616.144323px;}
.x12{left:619.485351px;}
.xa{left:622.427976px;}
.x13{left:630.911133px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:69.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004731pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:276.519005pt;}
._0{margin-left:-30.581563pt;}
._16{margin-left:-13.390004pt;}
._6{margin-left:-11.531250pt;}
._15{margin-left:-8.412817pt;}
._a{margin-left:-7.355835pt;}
._c{margin-left:-6.322255pt;}
._8{margin-left:-5.088267pt;}
._9{margin-left:-3.981252pt;}
._b{margin-left:-2.630290pt;}
._4{margin-left:-1.451518pt;}
._3{width:1.498159pt;}
._7{width:2.990682pt;}
._2{width:4.680990pt;}
._1{width:7.470896pt;}
._5{width:8.617370pt;}
._13{width:61.183195pt;}
._e{width:146.954613pt;}
._f{width:152.047441pt;}
._d{width:155.212213pt;}
._10{width:165.330451pt;}
._12{width:231.360691pt;}
._11{width:341.500053pt;}
._14{width:601.965920pt;}
.fs3{font-size:27.754571pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fsc{font-size:56.526533pt;}
.fs2{font-size:56.906667pt;}
.fs9{font-size:58.666667pt;}
.fs5{font-size:62.080000pt;}
.fs4{font-size:67.988357pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:75.368720pt;}
.fse{font-size:97.632683pt;}
.fs7{font-size:106.666667pt;}
.fs1{font-size:138.666667pt;}
.fsd{font-size:139.859477pt;}
.fs0{font-size:229.653259pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:14.410156pt;}
.y7d{bottom:70.666667pt;}
.y51{bottom:74.666667pt;}
.y7c{bottom:86.666667pt;}
.y50{bottom:90.666667pt;}
.y9f{bottom:100.000000pt;}
.y7b{bottom:102.666667pt;}
.y28{bottom:104.666667pt;}
.y4f{bottom:106.666667pt;}
.y9e{bottom:116.000000pt;}
.y7a{bottom:118.666667pt;}
.y27{bottom:119.333333pt;}
.y4e{bottom:129.333333pt;}
.y9d{bottom:132.000000pt;}
.y26{bottom:134.000000pt;}
.y79{bottom:149.333333pt;}
.y4d{bottom:154.666667pt;}
.y1d{bottom:155.333333pt;}
.y78{bottom:165.333333pt;}
.y4c{bottom:170.666667pt;}
.y77{bottom:181.333333pt;}
.y4b{bottom:186.666667pt;}
.y9c{bottom:193.333333pt;}
.y4a{bottom:202.666667pt;}
.y25{bottom:203.333333pt;}
.y9b{bottom:209.333333pt;}
.y24{bottom:218.000000pt;}
.y49{bottom:218.666667pt;}
.y9a{bottom:232.000000pt;}
.y1c{bottom:238.000000pt;}
.y48{bottom:241.333333pt;}
.y75{bottom:242.666667pt;}
.y99{bottom:248.000000pt;}
.ycd{bottom:256.000000pt;}
.y74{bottom:260.000000pt;}
.y98{bottom:269.333333pt;}
.ycc{bottom:276.000000pt;}
.y73{bottom:277.333333pt;}
.y23{bottom:286.000000pt;}
.y47{bottom:292.000000pt;}
.ycb{bottom:296.000000pt;}
.y22{bottom:300.666667pt;}
.y46{bottom:308.000000pt;}
.y21{bottom:315.333333pt;}
.yca{bottom:316.000000pt;}
.y72{bottom:321.333333pt;}
.y45{bottom:324.000000pt;}
.y97{bottom:336.000000pt;}
.y1b{bottom:336.666667pt;}
.y71{bottom:338.666667pt;}
.yb8{bottom:340.000000pt;}
.y44{bottom:346.666667pt;}
.y96{bottom:352.000000pt;}
.y70{bottom:356.000000pt;}
.yb7{bottom:358.666667pt;}
.y43{bottom:370.666667pt;}
.y95{bottom:374.666667pt;}
.yb6{bottom:377.333333pt;}
.y20{bottom:384.666667pt;}
.y42{bottom:386.666667pt;}
.y94{bottom:390.666667pt;}
.yb5{bottom:396.000000pt;}
.y1f{bottom:399.333333pt;}
.y6f{bottom:400.000000pt;}
.y41{bottom:402.666667pt;}
.y93{bottom:406.666667pt;}
.ydd{bottom:409.333333pt;}
.y1e{bottom:414.000000pt;}
.yb4{bottom:414.666667pt;}
.yc9{bottom:416.000000pt;}
.y6e{bottom:417.333333pt;}
.y40{bottom:418.666667pt;}
.y92{bottom:429.333333pt;}
.yb3{bottom:433.333333pt;}
.y3f{bottom:434.666667pt;}
.y1a{bottom:435.333333pt;}
.yc8{bottom:436.000000pt;}
.y91{bottom:445.333333pt;}
.y3e{bottom:450.666667pt;}
.y6d{bottom:452.000000pt;}
.yc7{bottom:456.000000pt;}
.ydc{bottom:457.333333pt;}
.y90{bottom:461.333333pt;}
.y3d{bottom:473.333333pt;}
.yc6{bottom:476.000000pt;}
.ydb{bottom:481.333333pt;}
.y8f{bottom:484.000000pt;}
.yb2{bottom:489.333333pt;}
.y6c{bottom:496.000000pt;}
.y8e{bottom:500.000000pt;}
.yda{bottom:505.333333pt;}
.yb1{bottom:508.000000pt;}
.y6b{bottom:513.333333pt;}
.y8d{bottom:521.333333pt;}
.y3c{bottom:524.000000pt;}
.yb0{bottom:526.666667pt;}
.yd9{bottom:529.333333pt;}
.y6a{bottom:530.666667pt;}
.ye9{bottom:532.263265pt;}
.yc5{bottom:536.000000pt;}
.y3b{bottom:540.000000pt;}
.y5{bottom:544.000000pt;}
.yaf{bottom:545.333333pt;}
.yd8{bottom:553.333333pt;}
.y3a{bottom:556.000000pt;}
.yae{bottom:564.000000pt;}
.ye4{bottom:574.658203pt;}
.y69{bottom:574.666667pt;}
.yc4{bottom:576.000000pt;}
.ye8{bottom:577.013427pt;}
.y39{bottom:578.666667pt;}
.y8c{bottom:588.000000pt;}
.y68{bottom:592.000000pt;}
.yc3{bottom:596.000000pt;}
.y19{bottom:602.666667pt;}
.y38{bottom:604.000000pt;}
.y4{bottom:606.666667pt;}
.y67{bottom:609.333333pt;}
.yc2{bottom:616.000000pt;}
.y37{bottom:620.000000pt;}
.ye3{bottom:620.585979pt;}
.y18{bottom:621.333333pt;}
.ye0{bottom:622.666667pt;}
.ye7{bottom:622.941244pt;}
.y36{bottom:636.000000pt;}
.yad{bottom:638.666667pt;}
.y8b{bottom:642.666667pt;}
.yec{bottom:646.666667pt;}
.y17{bottom:648.000000pt;}
.y35{bottom:652.000000pt;}
.y65{bottom:654.666667pt;}
.yac{bottom:657.333333pt;}
.y8a{bottom:658.666667pt;}
.ye2{bottom:666.513793pt;}
.y16{bottom:666.666667pt;}
.y34{bottom:668.000000pt;}
.ye6{bottom:668.869059pt;}
.y3{bottom:669.333333pt;}
.y64{bottom:672.000000pt;}
.y89{bottom:674.666667pt;}
.yab{bottom:676.000000pt;}
.y33{bottom:684.000000pt;}
.y66{bottom:689.333333pt;}
.y63{bottom:689.333375pt;}
.yaa{bottom:694.666667pt;}
.yc1{bottom:696.000000pt;}
.y88{bottom:697.333333pt;}
.y32{bottom:700.000000pt;}
.y13{bottom:702.666708pt;}
.y87{bottom:713.333333pt;}
.ye1{bottom:713.619263pt;}
.ye5{bottom:714.796875pt;}
.yc0{bottom:716.000000pt;}
.yd7{bottom:718.666687pt;}
.y31{bottom:721.333333pt;}
.y12{bottom:721.333375pt;}
.y2{bottom:732.000000pt;}
.y62{bottom:733.333373pt;}
.y86{bottom:736.000000pt;}
.yd6{bottom:737.333353pt;}
.y11{bottom:740.000041pt;}
.y5f{bottom:750.666667pt;}
.y61{bottom:750.666707pt;}
.y85{bottom:752.000000pt;}
.y10{bottom:758.666708pt;}
.yd5{bottom:762.666687pt;}
.y5e{bottom:768.000000pt;}
.y60{bottom:768.000040pt;}
.ya9{bottom:769.333333pt;}
.yeb{bottom:770.584513pt;}
.y30{bottom:772.000000pt;}
.y84{bottom:773.333333pt;}
.yf{bottom:777.333375pt;}
.ya8{bottom:788.000000pt;}
.yd4{bottom:788.000020pt;}
.y1{bottom:794.666667pt;}
.ybf{bottom:796.000000pt;}
.ye{bottom:796.000041pt;}
.ya7{bottom:806.666667pt;}
.yd3{bottom:806.666687pt;}
.yea{bottom:809.251180pt;}
.y76{bottom:813.333353pt;}
.ybe{bottom:816.000000pt;}
.ya6{bottom:825.333333pt;}
.yd2{bottom:825.333353pt;}
.ybd{bottom:836.000000pt;}
.y83{bottom:836.000020pt;}
.ya5{bottom:844.000000pt;}
.yd{bottom:845.333375pt;}
.yd1{bottom:850.666687pt;}
.y82{bottom:853.333353pt;}
.ybc{bottom:856.000000pt;}
.ya4{bottom:862.666667pt;}
.y2e{bottom:863.999979pt;}
.yc{bottom:864.000041pt;}
.y5b{bottom:868.000020pt;}
.yd0{bottom:869.333353pt;}
.ybb{bottom:876.000000pt;}
.yb{bottom:882.666708pt;}
.y2d{bottom:883.999979pt;}
.y5a{bottom:885.333353pt;}
.y81{bottom:888.000020pt;}
.ya3{bottom:900.000000pt;}
.ya{bottom:901.333375pt;}
.y59{bottom:902.666687pt;}
.y80{bottom:905.333353pt;}
.ycf{bottom:906.666687pt;}
.y56{bottom:906.666697pt;}
.y2c{bottom:910.666645pt;}
.ya2{bottom:918.666667pt;}
.y58{bottom:920.000020pt;}
.y9{bottom:920.000041pt;}
.y7f{bottom:922.666687pt;}
.y55{bottom:924.000031pt;}
.yce{bottom:925.333353pt;}
.y2b{bottom:930.666645pt;}
.yba{bottom:936.000000pt;}
.ya1{bottom:937.333333pt;}
.y57{bottom:937.333353pt;}
.y8{bottom:938.666708pt;}
.y7e{bottom:940.000020pt;}
.y54{bottom:941.333364pt;}
.y2a{bottom:950.666645pt;}
.yb9{bottom:956.000000pt;}
.y53{bottom:958.666697pt;}
.ya0{bottom:961.333333pt;}
.y29{bottom:970.666645pt;}
.y52{bottom:976.000031pt;}
.y7{bottom:981.333369pt;}
.y5d{bottom:983.999991pt;}
.ydf{bottom:985.333308pt;}
.y15{bottom:985.333369pt;}
.y2f{bottom:1006.666657pt;}
.y5c{bottom:1018.666657pt;}
.yde{bottom:1019.999975pt;}
.y6{bottom:1020.000036pt;}
.h4{height:26.366842pt;}
.h7{height:50.666667pt;}
.hd{height:53.700207pt;}
.h3{height:54.061333pt;}
.ha{height:55.733333pt;}
.h6{height:58.976000pt;}
.h5{height:64.588939pt;}
.hb{height:70.933333pt;}
.hc{height:71.600284pt;}
.hf{height:92.751049pt;}
.h8{height:101.333333pt;}
.h9{height:120.000000pt;}
.h2{height:131.733333pt;}
.he{height:132.866503pt;}
.h1{height:218.170596pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:50.129883pt;}
.x33{left:60.710937pt;}
.x2f{left:63.065755pt;}
.x30{left:64.243489pt;}
.x16{left:66.666667pt;}
.x9{left:68.000000pt;}
.x6{left:69.333333pt;}
.x1{left:70.673421pt;}
.x7{left:72.000000pt;}
.xf{left:84.000000pt;}
.x2d{left:85.216667pt;}
.xe{left:90.666667pt;}
.x2c{left:93.946668pt;}
.x2e{left:95.280001pt;}
.x31{left:100.750000pt;}
.x32{left:101.927735pt;}
.x2{left:110.549887pt;}
.x14{left:126.308593pt;}
.x15{left:147.592448pt;}
.x5{left:151.685628pt;}
.x17{left:161.333333pt;}
.x3{left:174.857280pt;}
.x22{left:182.065999pt;}
.x4{left:183.126139pt;}
.x23{left:186.994059pt;}
.x18{left:188.093749pt;}
.x24{left:194.737965pt;}
.x25{left:198.175303pt;}
.x10{left:220.000000pt;}
.x26{left:235.477824pt;}
.x27{left:241.336100pt;}
.x28{left:312.185343pt;}
.x19{left:316.901041pt;}
.x29{left:323.202047pt;}
.x1a{left:328.768229pt;}
.x2a{left:332.150187pt;}
.x1b{left:333.161459pt;}
.x2b{left:335.596212pt;}
.x1c{left:346.231771pt;}
.x1d{left:350.625000pt;}
.x1e{left:362.473959pt;}
.x1f{left:396.671875pt;}
.x20{left:409.177083pt;}
.x21{left:440.549479pt;}
.x35{left:473.342540pt;}
.x11{left:477.333333pt;}
.x34{left:492.494853pt;}
.xb{left:500.418987pt;}
.xc{left:530.894236pt;}
.xd{left:547.683843pt;}
.x12{left:550.653645pt;}
.xa{left:553.269312pt;}
.x13{left:560.809896pt;}
}




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