
    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_a7eea4121ec27108e5a01d42.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_a5c13dc275f36c7887f3d5d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_d7c695e22161103f734d2577.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_c6f8de67f1871950242a09d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.069000;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_5a2feffe7f55d8906954a4bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.062000;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_4ae5782d67d70b94fa5b0508.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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:ff7;src:url('chunks/assets/font_d8b47ed86b88feeb39a8605e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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:ff8;src:url('chunks/assets/font_29f342db6f8f453c51f0612b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.075000;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);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws0{word-spacing:-16.492499px;}
.ws3{word-spacing:-14.996249px;}
.ws1{word-spacing:-12.000262px;}
.ws6{word-spacing:-10.500723px;}
.ws4{word-spacing:-6.993414px;}
.ws5{word-spacing:-4.667118px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-1.004453px;}
._25{width:1.051970px;}
._0{width:2.157886px;}
._12{width:3.444877px;}
._22{width:5.136329px;}
._19{width:6.897910px;}
._b{width:8.288454px;}
._11{width:9.435356px;}
._2{width:10.480871px;}
._10{width:11.693124px;}
._20{width:12.998716px;}
._5{width:14.059724px;}
._4{width:15.378309px;}
._24{width:17.656983px;}
._28{width:18.923517px;}
._13{width:20.020022px;}
._1b{width:21.179697px;}
._d{width:22.745179px;}
._c{width:24.761537px;}
._1c{width:26.061096px;}
._18{width:27.156969px;}
._17{width:28.369353px;}
._3{width:29.864472px;}
._9{width:31.117666px;}
._23{width:32.988463px;}
._26{width:34.008135px;}
._1a{width:35.998593px;}
._21{width:37.909748px;}
._1{width:38.933881px;}
._2c{width:40.014031px;}
._2b{width:41.060610px;}
._1e{width:42.609471px;}
._29{width:43.648536px;}
._31{width:44.745434px;}
._1d{width:45.850345px;}
._2a{width:47.931891px;}
._33{width:52.158492px;}
._32{width:53.445642px;}
._2d{width:55.974005px;}
._1f{width:58.353396px;}
._e{width:60.582060px;}
._16{width:63.739739px;}
._35{width:65.506387px;}
._30{width:67.592000px;}
._2f{width:68.898998px;}
._6{width:70.307310px;}
._2e{width:71.481264px;}
._34{width:74.127999px;}
._14{width:75.811148px;}
._15{width:87.658622px;}
._7{width:93.589106px;}
._a{width:105.126882px;}
._f{width:106.842432px;}
._27{width:114.489951px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs8{font-size:18.668471px;}
.fs7{font-size:27.973655px;}
.fs9{font-size:29.739314px;}
.fs6{font-size:42.000523px;}
.fsa{font-size:42.002892px;}
.fs3{font-size:48.001047px;}
.fs4{font-size:53.999998px;}
.fs5{font-size:59.984997px;}
.fs1{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs0{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yed{bottom:5.720482px;}
.yec{bottom:15.633587px;}
.yeb{bottom:25.546692px;}
.ye8{bottom:30.015019px;}
.yea{bottom:35.459796px;}
.ye6{bottom:35.977753px;}
.ye9{bottom:45.372901px;}
.ye5{bottom:54.326772px;}
.ye7{bottom:55.199585px;}
.y2d{bottom:61.217706px;}
.y45{bottom:62.434257px;}
.ye4{bottom:71.458487px;}
.y2c{bottom:83.717705px;}
.y44{bottom:84.934256px;}
.yc5{bottom:96.963044px;}
.yc1{bottom:99.548888px;}
.y2b{bottom:106.217704px;}
.y43{bottom:107.434256px;}
.y80{bottom:108.899247px;}
.yc4{bottom:119.463043px;}
.yc0{bottom:122.048887px;}
.y2a{bottom:128.717703px;}
.y42{bottom:129.934255px;}
.y7f{bottom:131.399246px;}
.yc3{bottom:141.963042px;}
.yee{bottom:144.297559px;}
.y29{bottom:151.217702px;}
.y41{bottom:152.434254px;}
.y7e{bottom:153.899245px;}
.yc2{bottom:164.463041px;}
.ybc{bottom:168.098825px;}
.y28{bottom:173.717701px;}
.y40{bottom:174.934253px;}
.y7d{bottom:176.399244px;}
.ybb{bottom:192.848824px;}
.ye3{bottom:193.759108px;}
.y27{bottom:196.217700px;}
.y3f{bottom:197.434252px;}
.y7c{bottom:198.899243px;}
.ye2{bottom:207.759282px;}
.ybf{bottom:210.512979px;}
.y26{bottom:218.717699px;}
.y3e{bottom:219.934251px;}
.y7b{bottom:221.399242px;}
.ydf{bottom:227.002239px;}
.yba{bottom:238.608649px;}
.y25{bottom:241.217698px;}
.y90{bottom:241.742816px;}
.y3d{bottom:242.434250px;}
.y7a{bottom:243.899241px;}
.yde{bottom:256.563051px;}
.y8f{bottom:257.743165px;}
.yb9{bottom:261.108648px;}
.y24{bottom:263.717697px;}
.y3c{bottom:264.934249px;}
.y79{bottom:266.399240px;}
.y8e{bottom:273.743514px;}
.ydd{bottom:279.063050px;}
.yb8{bottom:283.608647px;}
.y23{bottom:286.217696px;}
.ye1{bottom:287.421591px;}
.y78{bottom:288.899239px;}
.y8d{bottom:289.743864px;}
.ydc{bottom:301.563049px;}
.y8c{bottom:305.744213px;}
.yb7{bottom:306.108646px;}
.ye0{bottom:306.621995px;}
.y22{bottom:308.717696px;}
.y48{bottom:308.734187px;}
.y77{bottom:311.399238px;}
.ydb{bottom:324.063048px;}
.yb6{bottom:328.608645px;}
.y21{bottom:331.217695px;}
.y76{bottom:333.899237px;}
.yda{bottom:346.563047px;}
.yb5{bottom:351.108644px;}
.y20{bottom:353.717694px;}
.y63{bottom:354.194445px;}
.y75{bottom:356.399236px;}
.y4a{bottom:358.736313px;}
.yd9{bottom:369.063046px;}
.y100{bottom:369.108705px;}
.yb4{bottom:373.608643px;}
.y49{bottom:374.736662px;}
.y1f{bottom:376.217693px;}
.y62{bottom:376.694444px;}
.y74{bottom:378.899235px;}
.yd8{bottom:391.563045px;}
.yff{bottom:391.608704px;}
.yb3{bottom:396.108642px;}
.y1e{bottom:398.717692px;}
.y61{bottom:399.194443px;}
.y73{bottom:401.399234px;}
.yd7{bottom:414.063044px;}
.yfe{bottom:414.108703px;}
.yb2{bottom:418.608641px;}
.y1d{bottom:421.217691px;}
.y60{bottom:421.694442px;}
.y72{bottom:423.899234px;}
.yd6{bottom:436.563043px;}
.yfd{bottom:436.608702px;}
.yb1{bottom:441.108640px;}
.y1c{bottom:443.717690px;}
.y5f{bottom:444.194441px;}
.y71{bottom:446.399233px;}
.yd5{bottom:459.063042px;}
.yfc{bottom:459.108701px;}
.yb0{bottom:463.608639px;}
.y1b{bottom:466.217689px;}
.y5e{bottom:466.694441px;}
.y70{bottom:468.899232px;}
.yd4{bottom:481.563041px;}
.yfb{bottom:481.608700px;}
.yaf{bottom:486.108639px;}
.y1a{bottom:488.717688px;}
.y5d{bottom:489.194440px;}
.y6f{bottom:491.399231px;}
.yd3{bottom:504.063040px;}
.yfa{bottom:504.108699px;}
.yae{bottom:508.608638px;}
.y19{bottom:511.217687px;}
.y5c{bottom:511.694439px;}
.y6e{bottom:513.899230px;}
.yd2{bottom:526.563039px;}
.yf9{bottom:526.608698px;}
.yad{bottom:531.108637px;}
.y18{bottom:533.717686px;}
.y5b{bottom:534.194438px;}
.y6d{bottom:536.399229px;}
.yd1{bottom:549.063038px;}
.yf8{bottom:549.108697px;}
.yac{bottom:553.608636px;}
.y17{bottom:556.217685px;}
.y6c{bottom:558.899228px;}
.yd0{bottom:571.563037px;}
.yf7{bottom:571.608696px;}
.yab{bottom:576.108635px;}
.y16{bottom:578.717684px;}
.y8b{bottom:580.244376px;}
.y6b{bottom:581.399227px;}
.ycf{bottom:594.063036px;}
.yf6{bottom:594.108695px;}
.yaa{bottom:598.608634px;}
.y15{bottom:601.217683px;}
.y6a{bottom:603.899226px;}
.yce{bottom:616.563036px;}
.yf5{bottom:616.608694px;}
.ya9{bottom:621.108633px;}
.y14{bottom:623.717682px;}
.y89{bottom:625.841549px;}
.y69{bottom:626.399225px;}
.ycd{bottom:639.063035px;}
.yf4{bottom:639.108693px;}
.ya8{bottom:643.608632px;}
.y13{bottom:646.217681px;}
.y3b{bottom:648.242681px;}
.y88{bottom:648.341548px;}
.y68{bottom:648.899224px;}
.ycc{bottom:661.563034px;}
.yf3{bottom:661.608692px;}
.ya7{bottom:666.108631px;}
.y12{bottom:668.717681px;}
.y3a{bottom:670.742680px;}
.y87{bottom:670.841547px;}
.y67{bottom:671.399223px;}
.ycb{bottom:684.063033px;}
.yf2{bottom:684.108691px;}
.ya6{bottom:688.608630px;}
.y11{bottom:691.217680px;}
.y39{bottom:693.242680px;}
.y86{bottom:693.341546px;}
.y66{bottom:693.899222px;}
.yca{bottom:706.563032px;}
.yf1{bottom:706.608691px;}
.ya5{bottom:711.108629px;}
.y10{bottom:713.717679px;}
.y38{bottom:715.742679px;}
.y85{bottom:715.841545px;}
.y65{bottom:716.399221px;}
.yc9{bottom:729.063031px;}
.yf0{bottom:729.108690px;}
.ya4{bottom:733.608628px;}
.yf{bottom:736.217678px;}
.y37{bottom:738.242678px;}
.y84{bottom:738.341544px;}
.y64{bottom:738.899220px;}
.yc8{bottom:751.563030px;}
.yef{bottom:751.608689px;}
.ya3{bottom:756.108627px;}
.ye{bottom:758.717677px;}
.y36{bottom:760.742677px;}
.y83{bottom:760.841543px;}
.yc7{bottom:774.063029px;}
.ya2{bottom:778.608626px;}
.yd{bottom:781.217676px;}
.y35{bottom:783.242676px;}
.y82{bottom:783.341543px;}
.y8a{bottom:783.824205px;}
.yc6{bottom:796.563028px;}
.y104{bottom:796.683657px;}
.ya1{bottom:801.108625px;}
.yc{bottom:803.717675px;}
.y34{bottom:805.742675px;}
.y81{bottom:805.841542px;}
.y103{bottom:819.183656px;}
.ya0{bottom:823.608624px;}
.yb{bottom:826.217674px;}
.y5a{bottom:828.341541px;}
.y102{bottom:841.683655px;}
.ybe{bottom:842.613013px;}
.y9f{bottom:846.108624px;}
.ya{bottom:848.717673px;}
.y33{bottom:850.742673px;}
.y59{bottom:850.841540px;}
.y101{bottom:864.183654px;}
.ybd{bottom:867.363012px;}
.y9e{bottom:868.608623px;}
.y9{bottom:871.217672px;}
.y32{bottom:873.242672px;}
.y58{bottom:873.341539px;}
.y9d{bottom:891.108622px;}
.y8{bottom:893.717671px;}
.y31{bottom:895.742671px;}
.y57{bottom:895.841538px;}
.y106{bottom:910.233682px;}
.y9c{bottom:913.608621px;}
.y30{bottom:918.242670px;}
.y56{bottom:918.341537px;}
.y105{bottom:934.983681px;}
.y9b{bottom:936.108620px;}
.y47{bottom:937.517678px;}
.y2f{bottom:940.742669px;}
.y55{bottom:940.841536px;}
.y9a{bottom:958.608619px;}
.y46{bottom:962.267677px;}
.y2e{bottom:963.242668px;}
.y54{bottom:963.341535px;}
.y99{bottom:981.108618px;}
.y53{bottom:985.841534px;}
.y98{bottom:1003.608617px;}
.y7{bottom:1006.076294px;}
.y52{bottom:1008.341533px;}
.y97{bottom:1026.108616px;}
.y6{bottom:1028.576294px;}
.y51{bottom:1030.841532px;}
.y96{bottom:1048.608615px;}
.y5{bottom:1051.076293px;}
.y50{bottom:1053.341531px;}
.y95{bottom:1071.108614px;}
.y4f{bottom:1075.841530px;}
.y4b{bottom:1088.047539px;}
.y94{bottom:1093.608613px;}
.y4e{bottom:1098.341529px;}
.y93{bottom:1116.108612px;}
.y4d{bottom:1120.841528px;}
.y4{bottom:1133.073888px;}
.y92{bottom:1138.608611px;}
.y4c{bottom:1143.341528px;}
.y91{bottom:1161.108610px;}
.y3{bottom:1162.323886px;}
.y2{bottom:1191.573885px;}
.hd{height:15.457494px;}
.hc{height:22.742582px;}
.hf{height:24.178062px;}
.hb{height:34.146425px;}
.h10{height:34.148351px;}
.h9{height:39.024851px;}
.h6{height:39.072852px;}
.h7{height:43.955998px;}
.ha{height:48.767803px;}
.h8{height:53.633607px;}
.he{height:53.639998px;}
.h4{height:53.699577px;}
.h5{height:59.615998px;}
.h3{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:43.535941px;}
.x2{left:45.715628px;}
.x7{left:49.006937px;}
.xb{left:119.519995px;}
.xc{left:127.235486px;}
.x1{left:265.283984px;}
.x3{left:396.153114px;}
.x5{left:469.058798px;}
.xd{left:472.155932px;}
.xa{left:496.232558px;}
.x9{left:618.425974px;}
.x8{left:620.329942px;}
.x6{left:705.210703px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.659999pt;}
.ws3{word-spacing:-13.329999pt;}
.ws1{word-spacing:-10.666899pt;}
.ws6{word-spacing:-9.333976pt;}
.ws4{word-spacing:-6.216368pt;}
.ws5{word-spacing:-4.148549pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-0.892847pt;}
._25{width:0.935084pt;}
._0{width:1.918121pt;}
._12{width:3.062113pt;}
._22{width:4.565626pt;}
._19{width:6.131476pt;}
._b{width:7.367515pt;}
._11{width:8.386984pt;}
._2{width:9.316330pt;}
._10{width:10.393888pt;}
._20{width:11.554414pt;}
._5{width:12.497532pt;}
._4{width:13.669608pt;}
._24{width:15.695096pt;}
._28{width:16.820904pt;}
._13{width:17.795575pt;}
._1b{width:18.826397pt;}
._d{width:20.217937pt;}
._c{width:22.010255pt;}
._1c{width:23.165419pt;}
._18{width:24.139528pt;}
._17{width:25.217203pt;}
._3{width:26.546198pt;}
._9{width:27.660147pt;}
._23{width:29.323078pt;}
._26{width:30.229454pt;}
._1a{width:31.998749pt;}
._21{width:33.697554pt;}
._1{width:34.607894pt;}
._2c{width:35.568028pt;}
._2b{width:36.498320pt;}
._1e{width:37.875085pt;}
._29{width:38.798699pt;}
._31{width:39.773719pt;}
._1d{width:40.755862pt;}
._2a{width:42.606125pt;}
._33{width:46.363104pt;}
._32{width:47.507237pt;}
._2d{width:49.754671pt;}
._1f{width:51.869686pt;}
._e{width:53.850720pt;}
._16{width:56.657546pt;}
._35{width:58.227900pt;}
._30{width:60.081778pt;}
._2f{width:61.243554pt;}
._6{width:62.495386pt;}
._2e{width:63.538901pt;}
._34{width:65.891555pt;}
._14{width:67.387687pt;}
._15{width:77.918775pt;}
._7{width:83.190316pt;}
._a{width:93.446118pt;}
._f{width:94.971051pt;}
._27{width:101.768846pt;}
.fs8{font-size:16.594196pt;}
.fs7{font-size:24.865471pt;}
.fs9{font-size:26.434946pt;}
.fs6{font-size:37.333798pt;}
.fsa{font-size:37.335904pt;}
.fs3{font-size:42.667598pt;}
.fs4{font-size:47.999998pt;}
.fs5{font-size:53.319997pt;}
.fs1{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs0{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yed{bottom:5.084873pt;}
.yec{bottom:13.896522pt;}
.yeb{bottom:22.708170pt;}
.ye8{bottom:26.680017pt;}
.yea{bottom:31.519819pt;}
.ye6{bottom:31.980225pt;}
.ye9{bottom:40.331468pt;}
.ye5{bottom:48.290464pt;}
.ye7{bottom:49.066298pt;}
.y2d{bottom:54.415739pt;}
.y45{bottom:55.497118pt;}
.ye4{bottom:63.518656pt;}
.y2c{bottom:74.415738pt;}
.y44{bottom:75.497117pt;}
.yc5{bottom:86.189372pt;}
.yc1{bottom:88.487900pt;}
.y2b{bottom:94.415737pt;}
.y43{bottom:95.497116pt;}
.y80{bottom:96.799330pt;}
.yc4{bottom:106.189372pt;}
.yc0{bottom:108.487899pt;}
.y2a{bottom:114.415736pt;}
.y42{bottom:115.497115pt;}
.y7f{bottom:116.799330pt;}
.yc3{bottom:126.189371pt;}
.yee{bottom:128.264497pt;}
.y29{bottom:134.415735pt;}
.y41{bottom:135.497114pt;}
.y7e{bottom:136.799329pt;}
.yc2{bottom:146.189370pt;}
.ybc{bottom:149.421178pt;}
.y28{bottom:154.415734pt;}
.y40{bottom:155.497114pt;}
.y7d{bottom:156.799328pt;}
.ybb{bottom:171.421177pt;}
.ye3{bottom:172.230318pt;}
.y27{bottom:174.415734pt;}
.y3f{bottom:175.497113pt;}
.y7c{bottom:176.799327pt;}
.ye2{bottom:184.674917pt;}
.ybf{bottom:187.122648pt;}
.y26{bottom:194.415733pt;}
.y3e{bottom:195.497112pt;}
.y7b{bottom:196.799326pt;}
.ydf{bottom:201.779768pt;}
.yba{bottom:212.096577pt;}
.y25{bottom:214.415732pt;}
.y90{bottom:214.882503pt;}
.y3d{bottom:215.497111pt;}
.y7a{bottom:216.799325pt;}
.yde{bottom:228.056045pt;}
.y8f{bottom:229.105036pt;}
.yb9{bottom:232.096576pt;}
.y24{bottom:234.415731pt;}
.y3c{bottom:235.497110pt;}
.y79{bottom:236.799325pt;}
.y8e{bottom:243.327568pt;}
.ydd{bottom:248.056044pt;}
.yb8{bottom:252.096575pt;}
.y23{bottom:254.415730pt;}
.ye1{bottom:255.485858pt;}
.y78{bottom:256.799324pt;}
.y8d{bottom:257.550101pt;}
.ydc{bottom:268.056043pt;}
.y8c{bottom:271.772633pt;}
.yb7{bottom:272.096574pt;}
.ye0{bottom:272.552885pt;}
.y22{bottom:274.415729pt;}
.y48{bottom:274.430389pt;}
.y77{bottom:276.799323pt;}
.ydb{bottom:288.056042pt;}
.yb6{bottom:292.096573pt;}
.y21{bottom:294.415729pt;}
.y76{bottom:296.799322pt;}
.yda{bottom:308.056042pt;}
.yb5{bottom:312.096573pt;}
.y20{bottom:314.415728pt;}
.y63{bottom:314.839507pt;}
.y75{bottom:316.799321pt;}
.y4a{bottom:318.876722pt;}
.yd9{bottom:328.056041pt;}
.y100{bottom:328.096626pt;}
.yb4{bottom:332.096572pt;}
.y49{bottom:333.099255pt;}
.y1f{bottom:334.415727pt;}
.y62{bottom:334.839506pt;}
.y74{bottom:336.799320pt;}
.yd8{bottom:348.056040pt;}
.yff{bottom:348.096625pt;}
.yb3{bottom:352.096571pt;}
.y1e{bottom:354.415726pt;}
.y61{bottom:354.839505pt;}
.y73{bottom:356.799320pt;}
.yd7{bottom:368.056039pt;}
.yfe{bottom:368.096625pt;}
.yb2{bottom:372.096570pt;}
.y1d{bottom:374.415725pt;}
.y60{bottom:374.839504pt;}
.y72{bottom:376.799319pt;}
.yd6{bottom:388.056038pt;}
.yfd{bottom:388.096624pt;}
.yb1{bottom:392.096569pt;}
.y1c{bottom:394.415724pt;}
.y5f{bottom:394.839504pt;}
.y71{bottom:396.799318pt;}
.yd5{bottom:408.056037pt;}
.yfc{bottom:408.096623pt;}
.yb0{bottom:412.096568pt;}
.y1b{bottom:414.415724pt;}
.y5e{bottom:414.839503pt;}
.y70{bottom:416.799317pt;}
.yd4{bottom:428.056037pt;}
.yfb{bottom:428.096622pt;}
.yaf{bottom:432.096568pt;}
.y1a{bottom:434.415723pt;}
.y5d{bottom:434.839502pt;}
.y6f{bottom:436.799316pt;}
.yd3{bottom:448.056036pt;}
.yfa{bottom:448.096621pt;}
.yae{bottom:452.096567pt;}
.y19{bottom:454.415722pt;}
.y5c{bottom:454.839501pt;}
.y6e{bottom:456.799315pt;}
.yd2{bottom:468.056035pt;}
.yf9{bottom:468.096620pt;}
.yad{bottom:472.096566pt;}
.y18{bottom:474.415721pt;}
.y5b{bottom:474.839500pt;}
.y6d{bottom:476.799315pt;}
.yd1{bottom:488.056034pt;}
.yf8{bottom:488.096620pt;}
.yac{bottom:492.096565pt;}
.y17{bottom:494.415720pt;}
.y6c{bottom:496.799314pt;}
.yd0{bottom:508.056033pt;}
.yf7{bottom:508.096619pt;}
.yab{bottom:512.096564pt;}
.y16{bottom:514.415719pt;}
.y8b{bottom:515.772779pt;}
.y6b{bottom:516.799313pt;}
.ycf{bottom:528.056032pt;}
.yf6{bottom:528.096618pt;}
.yaa{bottom:532.096563pt;}
.y15{bottom:534.415719pt;}
.y6a{bottom:536.799312pt;}
.yce{bottom:548.056032pt;}
.yf5{bottom:548.096617pt;}
.ya9{bottom:552.096563pt;}
.y14{bottom:554.415718pt;}
.y89{bottom:556.303599pt;}
.y69{bottom:556.799311pt;}
.ycd{bottom:568.056031pt;}
.yf4{bottom:568.096616pt;}
.ya8{bottom:572.096562pt;}
.y13{bottom:574.415717pt;}
.y3b{bottom:576.215717pt;}
.y88{bottom:576.303598pt;}
.y68{bottom:576.799310pt;}
.ycc{bottom:588.056030pt;}
.yf3{bottom:588.096615pt;}
.ya7{bottom:592.096561pt;}
.y12{bottom:594.415716pt;}
.y3a{bottom:596.215716pt;}
.y87{bottom:596.303598pt;}
.y67{bottom:596.799310pt;}
.ycb{bottom:608.056029pt;}
.yf2{bottom:608.096615pt;}
.ya6{bottom:612.096560pt;}
.y11{bottom:614.415715pt;}
.y39{bottom:616.215715pt;}
.y86{bottom:616.303597pt;}
.y66{bottom:616.799309pt;}
.yca{bottom:628.056028pt;}
.yf1{bottom:628.096614pt;}
.ya5{bottom:632.096559pt;}
.y10{bottom:634.415714pt;}
.y38{bottom:636.215714pt;}
.y85{bottom:636.303596pt;}
.y65{bottom:636.799308pt;}
.yc9{bottom:648.056027pt;}
.yf0{bottom:648.096613pt;}
.ya4{bottom:652.096558pt;}
.yf{bottom:654.415714pt;}
.y37{bottom:656.215713pt;}
.y84{bottom:656.303595pt;}
.y64{bottom:656.799307pt;}
.yc8{bottom:668.056027pt;}
.yef{bottom:668.096612pt;}
.ya3{bottom:672.096558pt;}
.ye{bottom:674.415713pt;}
.y36{bottom:676.215713pt;}
.y83{bottom:676.303594pt;}
.yc7{bottom:688.056026pt;}
.ya2{bottom:692.096557pt;}
.yd{bottom:694.415712pt;}
.y35{bottom:696.215712pt;}
.y82{bottom:696.303593pt;}
.y8a{bottom:696.732627pt;}
.yc6{bottom:708.056025pt;}
.y104{bottom:708.163250pt;}
.ya1{bottom:712.096556pt;}
.yc{bottom:714.415711pt;}
.y34{bottom:716.215711pt;}
.y81{bottom:716.303593pt;}
.y103{bottom:728.163250pt;}
.ya0{bottom:732.096555pt;}
.yb{bottom:734.415710pt;}
.y5a{bottom:736.303592pt;}
.y102{bottom:748.163249pt;}
.ybe{bottom:748.989345pt;}
.y9f{bottom:752.096554pt;}
.ya{bottom:754.415709pt;}
.y33{bottom:756.215709pt;}
.y59{bottom:756.303591pt;}
.y101{bottom:768.163248pt;}
.ybd{bottom:770.989344pt;}
.y9e{bottom:772.096553pt;}
.y9{bottom:774.415709pt;}
.y32{bottom:776.215708pt;}
.y58{bottom:776.303590pt;}
.y9d{bottom:792.096553pt;}
.y8{bottom:794.415708pt;}
.y31{bottom:796.215708pt;}
.y57{bottom:796.303589pt;}
.y106{bottom:809.096606pt;}
.y9c{bottom:812.096552pt;}
.y30{bottom:816.215707pt;}
.y56{bottom:816.303588pt;}
.y105{bottom:831.096605pt;}
.y9b{bottom:832.096551pt;}
.y47{bottom:833.349047pt;}
.y2f{bottom:836.215706pt;}
.y55{bottom:836.303588pt;}
.y9a{bottom:852.096550pt;}
.y46{bottom:855.349046pt;}
.y2e{bottom:856.215705pt;}
.y54{bottom:856.303587pt;}
.y99{bottom:872.096549pt;}
.y53{bottom:876.303586pt;}
.y98{bottom:892.096548pt;}
.y7{bottom:894.290040pt;}
.y52{bottom:896.303585pt;}
.y97{bottom:912.096548pt;}
.y6{bottom:914.290039pt;}
.y51{bottom:916.303584pt;}
.y96{bottom:932.096547pt;}
.y5{bottom:934.290038pt;}
.y50{bottom:936.303583pt;}
.y95{bottom:952.096546pt;}
.y4f{bottom:956.303583pt;}
.y4b{bottom:967.153368pt;}
.y94{bottom:972.096545pt;}
.y4e{bottom:976.303582pt;}
.y93{bottom:992.096544pt;}
.y4d{bottom:996.303581pt;}
.y4{bottom:1007.176789pt;}
.y92{bottom:1012.096543pt;}
.y4c{bottom:1016.303580pt;}
.y91{bottom:1032.096543pt;}
.y3{bottom:1033.176788pt;}
.y2{bottom:1059.176787pt;}
.hd{height:13.739994pt;}
.hc{height:20.215628pt;}
.hf{height:21.491611pt;}
.hb{height:30.352378pt;}
.h10{height:30.354090pt;}
.h9{height:34.688757pt;}
.h6{height:34.731424pt;}
.h7{height:39.071998pt;}
.ha{height:43.349158pt;}
.h8{height:47.674317pt;}
.he{height:47.679998pt;}
.h4{height:47.732957pt;}
.h5{height:52.991998pt;}
.h3{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:38.698614pt;}
.x2{left:40.636114pt;}
.x7{left:43.561722pt;}
.xb{left:106.239996pt;}
.xc{left:113.098210pt;}
.x1{left:235.807986pt;}
.x3{left:352.136101pt;}
.x5{left:416.941154pt;}
.xd{left:419.694162pt;}
.xa{left:441.095607pt;}
.x9{left:549.711977pt;}
.x8{left:551.404393pt;}
.x6{left:626.853958pt;}
}




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