
    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_33fb09b356bc2826de74b660.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009000;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_f277e24ebbf49ff989e2e63d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_f8f23270effe2482ce9b9cfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.991000;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_9f7e94108e70cbd4c3e178e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.015000;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_c804c25e1b57d88352a71e67.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.744000;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_fac0626b9addee5fb488bfc8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dc798ebb815505581c0e2516.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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;}
}
.ws5{word-spacing:-132.105320px;}
.ws8{word-spacing:-66.018857px;}
.ws4{word-spacing:-63.063361px;}
.ws3{word-spacing:-63.002620px;}
.wsa{word-spacing:-50.960343px;}
.ws7{word-spacing:-40.043489px;}
.ws6{word-spacing:-37.575484px;}
.ws9{word-spacing:-36.014378px;}
.ws2{word-spacing:-33.364294px;}
.wsb{word-spacing:0.000000px;}
.ws0{word-spacing:365.052719px;}
.ws1{word-spacing:435.748140px;}
._26{margin-left:-12.855629px;}
._27{margin-left:-10.974949px;}
._24{margin-left:-8.714472px;}
._25{margin-left:-7.360423px;}
._1e{margin-left:-6.129379px;}
._1{margin-left:-3.918896px;}
._8{margin-left:-2.492747px;}
._0{margin-left:-1.178966px;}
._1d{width:1.978087px;}
._1c{width:3.900924px;}
._d{width:5.221808px;}
._15{width:6.507076px;}
._16{width:7.513209px;}
._10{width:8.544081px;}
._11{width:9.882286px;}
._17{width:12.972060px;}
._b{width:16.148824px;}
._c{width:17.330118px;}
._1f{width:19.042779px;}
._9{width:21.620882px;}
._a{width:22.807728px;}
._1b{width:28.886835px;}
._14{width:38.184616px;}
._21{width:52.475935px;}
._f{width:95.574224px;}
._e{width:104.879168px;}
._13{width:105.886226px;}
._12{width:106.921877px;}
._18{width:109.779076px;}
._20{width:111.069701px;}
._22{width:112.265942px;}
._23{width:114.503886px;}
._1a{width:150.115646px;}
._19{width:158.052381px;}
._2{width:405.179467px;}
._7{width:477.874654px;}
._6{width:493.028428px;}
._3{width:517.555830px;}
._5{width:519.075253px;}
._4{width:524.220489px;}
.fc3{color:transparent;}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(44,44,44);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:123.571459px;}
.fsc{font-size:133.386586px;}
.fs5{font-size:139.168460px;}
.fs10{font-size:141.109814px;}
.fs8{font-size:148.309219px;}
.fsf{font-size:155.562106px;}
.fs6{font-size:173.859902px;}
.fsb{font-size:177.820993px;}
.fs0{font-size:185.378297px;}
.fs7{font-size:188.742011px;}
.fs2{font-size:233.343036px;}
.fs3{font-size:233.568005px;}
.fsa{font-size:244.514286px;}
.fse{font-size:333.383100px;}
.fsd{font-size:333.383116px;}
.fs4{font-size:365.942715px;}
.fs9{font-size:722.455131px;}
.y5{bottom:-0.000061px;}
.y0{bottom:0.000000px;}
.y78{bottom:7.778096px;}
.y46{bottom:10.483905px;}
.y76{bottom:10.493988px;}
.y5c{bottom:10.530602px;}
.y3c{bottom:10.558261px;}
.y58{bottom:10.558532px;}
.y42{bottom:10.610742px;}
.y38{bottom:10.739540px;}
.y5f{bottom:10.769118px;}
.y33{bottom:12.536506px;}
.y52{bottom:12.555608px;}
.y4f{bottom:12.594322px;}
.y55{bottom:12.605354px;}
.y67{bottom:12.849929px;}
.y4c{bottom:16.721091px;}
.y6d{bottom:22.717068px;}
.y6b{bottom:22.967573px;}
.y73{bottom:22.984097px;}
.y71{bottom:22.990600px;}
.y6f{bottom:23.027690px;}
.y69{bottom:23.227026px;}
.y19{bottom:23.306540px;}
.yf{bottom:50.619135px;}
.y14{bottom:50.619311px;}
.y45{bottom:52.167213px;}
.y3b{bottom:52.241569px;}
.y49{bottom:52.273491px;}
.y41{bottom:52.294050px;}
.y37{bottom:52.422849px;}
.y5b{bottom:56.382241px;}
.y57{bottom:56.410171px;}
.y5e{bottom:56.620757px;}
.y1d{bottom:64.117536px;}
.y75{bottom:64.682288px;}
.y16{bottom:65.242313px;}
.y32{bottom:66.724806px;}
.y51{bottom:66.743909px;}
.y54{bottom:66.793655px;}
.y66{bottom:67.038230px;}
.y18{bottom:68.272133px;}
.y4e{bottom:73.035119px;}
.y2b{bottom:85.490084px;}
.y4b{bottom:85.498549px;}
.yc{bottom:92.153446px;}
.y44{bottom:93.850521px;}
.y3a{bottom:93.924877px;}
.y40{bottom:93.977359px;}
.y36{bottom:94.106157px;}
.y5a{bottom:102.233880px;}
.y31{bottom:120.913107px;}
.ye{bottom:131.609774px;}
.y13{bottom:131.609951px;}
.y2a{bottom:134.984364px;}
.y3f{bottom:135.660667px;}
.y35{bottom:135.789465px;}
.y30{bottom:175.101407px;}
.y65{bottom:175.414831px;}
.y3e{bottom:177.343975px;}
.y29{bottom:184.478643px;}
.y7{bottom:211.775607px;}
.yb{bottom:212.309222px;}
.y2f{bottom:229.289708px;}
.y64{bottom:229.603132px;}
.y48{bottom:254.437536px;}
.y1f{bottom:273.589077px;}
.y5d{bottom:274.544985px;}
.y2e{bottom:283.478009px;}
.y63{bottom:283.791432px;}
.y28{bottom:286.841813px;}
.y1{bottom:301.544984px;}
.y4{bottom:310.074669px;}
.ya{bottom:332.481495px;}
.y27{bottom:336.336092px;}
.y2d{bottom:337.666309px;}
.y1e{bottom:375.506333px;}
.y26{bottom:385.830372px;}
.y62{bottom:392.168033px;}
.y61{bottom:446.356334px;}
.y25{bottom:484.818931px;}
.y24{bottom:534.313211px;}
.y59{bottom:588.464972px;}
.y6{bottom:605.649348px;}
.y9{bottom:606.187970px;}
.y1b{bottom:607.728908px;}
.y23{bottom:633.301770px;}
.y1a{bottom:652.687259px;}
.y22{bottom:682.796050px;}
.y8{bottom:726.343752px;}
.y1c{bottom:733.120642px;}
.y21{bottom:781.784610px;}
.y20{bottom:831.278889px;}
.y3{bottom:838.501806px;}
.y2{bottom:921.974024px;}
.y56{bottom:943.064958px;}
.y15{bottom:1043.495809px;}
.y6c{bottom:1298.384943px;}
.y72{bottom:1298.744943px;}
.y53{bottom:1436.624937px;}
.y60{bottom:1454.264936px;}
.y12{bottom:1609.887569px;}
.y43{bottom:1679.624927px;}
.y11{bottom:1910.537845px;}
.y3d{bottom:1938.464916px;}
.y70{bottom:2024.144913px;}
.y4d{bottom:2153.024907px;}
.y10{bottom:2204.837653px;}
.y17{bottom:2264.984902px;}
.y39{bottom:2281.904902px;}
.yd{bottom:2504.345329px;}
.y34{bottom:2552.984890px;}
.y50{bottom:2783.744881px;}
.y6e{bottom:2988.224872px;}
.y6a{bottom:2992.184872px;}
.y2c{bottom:3153.464865px;}
.y68{bottom:3627.944846px;}
.y77{bottom:3846.464837px;}
.y74{bottom:3858.344836px;}
.y4a{bottom:4018.184829px;}
.y47{bottom:4176.584823px;}
.h2b{height:39.959998px;}
.h1e{height:85.679996px;}
.h21{height:86.039996px;}
.h4{height:100.092882px;}
.h26{height:102.239996px;}
.h2c{height:102.249494px;}
.h23{height:102.599996px;}
.h27{height:105.119996px;}
.h1f{height:108.043135px;}
.h1d{height:112.679995px;}
.hd{height:112.726452px;}
.h1b{height:114.839995px;}
.h14{height:121.020323px;}
.h2a{height:126.005306px;}
.h15{height:127.439995px;}
.h20{height:131.759995px;}
.h1c{height:134.077029px;}
.h19{height:141.839994px;}
.h10{height:141.869680px;}
.h3{height:150.156421px;}
.h12{height:154.013481px;}
.h13{height:169.199993px;}
.h7{height:189.007859px;}
.h8{height:189.190084px;}
.he{height:191.227845px;}
.ha{height:193.477492px;}
.h1a{height:198.056572px;}
.h16{height:210.959991px;}
.h6{height:220.474503px;}
.h9{height:220.474679px;}
.hb{height:258.355557px;}
.h29{height:270.040311px;}
.h25{height:270.040324px;}
.h28{height:316.713945px;}
.h24{height:316.713960px;}
.h11{height:383.759984px;}
.h17{height:388.079984px;}
.h22{height:492.479979px;}
.h18{height:526.669790px;}
.hc{height:701.999971px;}
.h5{height:785.972703px;}
.hf{height:946.015629px;}
.h2{height:966.599960px;}
.h1{height:4676.250000px;}
.h0{height:4676.624802px;}
.wf{width:167.039993px;}
.w10{width:186.119992px;}
.w11{width:194.039992px;}
.w3{width:208.100954px;}
.w4{width:239.597306px;}
.w19{width:276.839988px;}
.w14{width:640.079973px;}
.w17{width:1002.959958px;}
.w13{width:1009.079958px;}
.w9{width:1046.519956px;}
.w16{width:1056.959956px;}
.wa{width:1063.439956px;}
.w8{width:1065.599956px;}
.w15{width:1111.319954px;}
.w2{width:1215.945532px;}
.w1{width:1216.079949px;}
.w12{width:1227.959949px;}
.w5{width:1339.199944px;}
.wd{width:1398.959942px;}
.w7{width:1417.679941px;}
.we{width:1421.639941px;}
.w6{width:1528.698284px;}
.w18{width:2176.559909px;}
.wc{width:2422.079899px;}
.wb{width:2847.239881px;}
.w0{width:3402.000000px;}
.x0{left:0.000000px;}
.x21{left:1.394778px;}
.x6{left:2.656957px;}
.x29{left:4.069334px;}
.x2b{left:15.921634px;}
.x19{left:19.926775px;}
.xd{left:26.627789px;}
.x13{left:34.853401px;}
.x11{left:39.932892px;}
.xf{left:44.555404px;}
.x15{left:45.785724px;}
.x28{left:50.669970px;}
.x1b{left:63.256361px;}
.xe{left:65.629141px;}
.x5{left:66.792069px;}
.x12{left:69.161935px;}
.x10{left:75.295992px;}
.x2e{left:85.507669px;}
.x1d{left:96.387298px;}
.xc{left:133.283885px;}
.x1e{left:136.799994px;}
.x4{left:143.044448px;}
.x14{left:152.837648px;}
.x1a{left:154.483282px;}
.x2a{left:172.439993px;}
.x27{left:179.639993px;}
.x26{left:188.279992px;}
.x20{left:233.999990px;}
.xb{left:237.672401px;}
.x2d{left:242.999990px;}
.x22{left:250.485109px;}
.x35{left:279.057341px;}
.x9{left:312.229670px;}
.x2f{left:353.519985px;}
.x1{left:365.399985px;}
.x1f{left:399.959983px;}
.x2{left:408.487963px;}
.x23{left:443.879982px;}
.x3{left:511.365038px;}
.xa{left:534.862530px;}
.x30{left:537.479978px;}
.x34{left:586.079976px;}
.x8{left:609.419794px;}
.x17{left:670.946866px;}
.x18{left:939.314198px;}
.x24{left:1034.749374px;}
.x7{left:1132.409112px;}
.x1c{left:1770.289918px;}
.x2c{left:1781.999926px;}
.x25{left:1802.879925px;}
.x16{left:1851.479923px;}
.x31{left:1934.639919px;}
.x32{left:1961.999918px;}
.x33{left:1988.999917px;}
.x36{left:3071.879872px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-117.426951pt;}
.ws8{word-spacing:-58.683429pt;}
.ws4{word-spacing:-56.056321pt;}
.ws3{word-spacing:-56.002329pt;}
.wsa{word-spacing:-45.298083pt;}
.ws7{word-spacing:-35.594213pt;}
.ws6{word-spacing:-33.400430pt;}
.ws9{word-spacing:-32.012781pt;}
.ws2{word-spacing:-29.657150pt;}
.wsb{word-spacing:0.000000pt;}
.ws0{word-spacing:324.491306pt;}
.ws1{word-spacing:387.331680pt;}
._26{margin-left:-11.427226pt;}
._27{margin-left:-9.755511pt;}
._24{margin-left:-7.746197pt;}
._25{margin-left:-6.542598pt;}
._1e{margin-left:-5.448336pt;}
._1{margin-left:-3.483463pt;}
._8{margin-left:-2.215776pt;}
._0{margin-left:-1.047970pt;}
._1d{width:1.758300pt;}
._1c{width:3.467488pt;}
._d{width:4.641607pt;}
._15{width:5.784068pt;}
._16{width:6.678408pt;}
._10{width:7.594738pt;}
._11{width:8.784254pt;}
._17{width:11.530720pt;}
._b{width:14.354510pt;}
._c{width:15.404549pt;}
._1f{width:16.926914pt;}
._9{width:19.218562pt;}
._a{width:20.273536pt;}
._1b{width:25.677186pt;}
._14{width:33.941881pt;}
._21{width:46.645275pt;}
._f{width:84.954866pt;}
._e{width:93.225927pt;}
._13{width:94.121090pt;}
._12{width:95.041669pt;}
._18{width:97.581401pt;}
._20{width:98.728623pt;}
._22{width:99.791948pt;}
._23{width:101.781232pt;}
._1a{width:133.436130pt;}
._19{width:140.491006pt;}
._2{width:360.159527pt;}
._7{width:424.777470pt;}
._6{width:438.247491pt;}
._3{width:460.049627pt;}
._5{width:461.400225pt;}
._4{width:465.973768pt;}
.fs1{font-size:109.841297pt;}
.fsc{font-size:118.565854pt;}
.fs5{font-size:123.705298pt;}
.fs10{font-size:125.430946pt;}
.fs8{font-size:131.830417pt;}
.fsf{font-size:138.277428pt;}
.fs6{font-size:154.542135pt;}
.fsb{font-size:158.063105pt;}
.fs0{font-size:164.780709pt;}
.fs7{font-size:167.770677pt;}
.fs2{font-size:207.416032pt;}
.fs3{font-size:207.616005pt;}
.fsa{font-size:217.346032pt;}
.fse{font-size:296.340534pt;}
.fsd{font-size:296.340547pt;}
.fs4{font-size:325.282413pt;}
.fs9{font-size:642.182338pt;}
.y5{bottom:-0.000054pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:6.913863pt;}
.y46{bottom:9.319027pt;}
.y76{bottom:9.327989pt;}
.y5c{bottom:9.360536pt;}
.y3c{bottom:9.385121pt;}
.y58{bottom:9.385362pt;}
.y42{bottom:9.431771pt;}
.y38{bottom:9.546258pt;}
.y5f{bottom:9.572550pt;}
.y33{bottom:11.143560pt;}
.y52{bottom:11.160540pt;}
.y4f{bottom:11.194953pt;}
.y55{bottom:11.204759pt;}
.y67{bottom:11.422159pt;}
.y4c{bottom:14.863192pt;}
.y6d{bottom:20.192950pt;}
.y6b{bottom:20.415620pt;}
.y73{bottom:20.430308pt;}
.y71{bottom:20.436089pt;}
.y6f{bottom:20.469058pt;}
.y69{bottom:20.646246pt;}
.y19{bottom:20.716924pt;}
.yf{bottom:44.994787pt;}
.y14{bottom:44.994943pt;}
.y45{bottom:46.370856pt;}
.y3b{bottom:46.436950pt;}
.y49{bottom:46.465325pt;}
.y41{bottom:46.483600pt;}
.y37{bottom:46.598088pt;}
.y5b{bottom:50.117548pt;}
.y57{bottom:50.142375pt;}
.y5e{bottom:50.329562pt;}
.y1d{bottom:56.993365pt;}
.y75{bottom:57.495367pt;}
.y16{bottom:57.993167pt;}
.y32{bottom:59.310939pt;}
.y51{bottom:59.327919pt;}
.y54{bottom:59.372137pt;}
.y66{bottom:59.589537pt;}
.y18{bottom:60.686340pt;}
.y4e{bottom:64.920106pt;}
.y2b{bottom:75.991186pt;}
.y4b{bottom:75.998710pt;}
.yc{bottom:81.914174pt;}
.y44{bottom:83.422686pt;}
.y3a{bottom:83.488779pt;}
.y40{bottom:83.535430pt;}
.y36{bottom:83.649917pt;}
.y5a{bottom:90.874560pt;}
.y31{bottom:107.478317pt;}
.ye{bottom:116.986466pt;}
.y13{bottom:116.986623pt;}
.y2a{bottom:119.986101pt;}
.y3f{bottom:120.587259pt;}
.y35{bottom:120.701747pt;}
.y30{bottom:155.645695pt;}
.y65{bottom:155.924294pt;}
.y3e{bottom:157.639089pt;}
.y29{bottom:163.981016pt;}
.y7{bottom:188.244984pt;}
.yb{bottom:188.719309pt;}
.y2f{bottom:203.813074pt;}
.y64{bottom:204.091672pt;}
.y48{bottom:226.166698pt;}
.y1f{bottom:243.190291pt;}
.y5d{bottom:244.039987pt;}
.y2e{bottom:251.980452pt;}
.y63{bottom:252.259051pt;}
.y28{bottom:254.970500pt;}
.y1{bottom:268.039986pt;}
.y4{bottom:275.621928pt;}
.ya{bottom:295.539107pt;}
.y27{bottom:298.965415pt;}
.y2d{bottom:300.147831pt;}
.y1e{bottom:333.783407pt;}
.y26{bottom:342.960331pt;}
.y62{bottom:348.593808pt;}
.y61{bottom:396.761186pt;}
.y25{bottom:430.950161pt;}
.y24{bottom:474.945077pt;}
.y59{bottom:523.079975pt;}
.y6{bottom:538.354976pt;}
.y9{bottom:538.833752pt;}
.y1b{bottom:540.203474pt;}
.y23{bottom:562.934907pt;}
.y1a{bottom:580.166453pt;}
.y22{bottom:606.929822pt;}
.y8{bottom:645.638891pt;}
.y1c{bottom:651.662792pt;}
.y21{bottom:694.919653pt;}
.y20{bottom:738.914568pt;}
.y3{bottom:745.334939pt;}
.y2{bottom:819.532466pt;}
.y56{bottom:838.279962pt;}
.y15{bottom:927.551831pt;}
.y6c{bottom:1154.119949pt;}
.y72{bottom:1154.439949pt;}
.y53{bottom:1276.999944pt;}
.y60{bottom:1292.679943pt;}
.y12{bottom:1431.011173pt;}
.y43{bottom:1492.999935pt;}
.y11{bottom:1698.255862pt;}
.y3d{bottom:1723.079925pt;}
.y70{bottom:1799.239922pt;}
.y4d{bottom:1913.799917pt;}
.y10{bottom:1959.855692pt;}
.y17{bottom:2013.319913pt;}
.y39{bottom:2028.359913pt;}
.yd{bottom:2226.084736pt;}
.y34{bottom:2269.319903pt;}
.y50{bottom:2474.439894pt;}
.y6e{bottom:2656.199887pt;}
.y6a{bottom:2659.719886pt;}
.y2c{bottom:2803.079880pt;}
.y68{bottom:3224.839863pt;}
.y77{bottom:3419.079855pt;}
.y74{bottom:3429.639854pt;}
.y4a{bottom:3571.719848pt;}
.y47{bottom:3712.519843pt;}
.h2b{height:35.519999pt;}
.h1e{height:76.159997pt;}
.h21{height:76.479997pt;}
.h4{height:88.971450pt;}
.h26{height:90.879996pt;}
.h2c{height:90.888439pt;}
.h23{height:91.199996pt;}
.h27{height:93.439996pt;}
.h1f{height:96.038342pt;}
.h1d{height:100.159996pt;}
.hd{height:100.201291pt;}
.h1b{height:102.079996pt;}
.h14{height:107.573620pt;}
.h2a{height:112.004716pt;}
.h15{height:113.279995pt;}
.h20{height:117.119995pt;}
.h1c{height:119.179581pt;}
.h19{height:126.079995pt;}
.h10{height:126.106382pt;}
.h3{height:133.472374pt;}
.h12{height:136.900872pt;}
.h13{height:150.399994pt;}
.h7{height:168.006986pt;}
.h8{height:168.168964pt;}
.he{height:169.980307pt;}
.ha{height:171.979993pt;}
.h1a{height:176.050286pt;}
.h16{height:187.519992pt;}
.h6{height:195.977336pt;}
.h9{height:195.977493pt;}
.hb{height:229.649384pt;}
.h29{height:240.035832pt;}
.h25{height:240.035843pt;}
.h28{height:281.523507pt;}
.h24{height:281.523520pt;}
.h11{height:341.119986pt;}
.h17{height:344.959986pt;}
.h22{height:437.759982pt;}
.h18{height:468.150925pt;}
.hc{height:623.999974pt;}
.h5{height:698.642403pt;}
.hf{height:840.902781pt;}
.h2{height:859.199964pt;}
.h1{height:4156.666667pt;}
.h0{height:4156.999824pt;}
.wf{width:148.479994pt;}
.w10{width:165.439993pt;}
.w11{width:172.479993pt;}
.w3{width:184.978626pt;}
.w4{width:212.975383pt;}
.w19{width:246.079990pt;}
.w14{width:568.959976pt;}
.w17{width:891.519963pt;}
.w13{width:896.959963pt;}
.w9{width:930.239961pt;}
.w16{width:939.519961pt;}
.wa{width:945.279961pt;}
.w8{width:947.199961pt;}
.w15{width:987.839959pt;}
.w2{width:1080.840473pt;}
.w1{width:1080.959955pt;}
.w12{width:1091.519955pt;}
.w5{width:1190.399950pt;}
.wd{width:1243.519948pt;}
.w7{width:1260.159947pt;}
.we{width:1263.679947pt;}
.w6{width:1358.842919pt;}
.w18{width:1934.719919pt;}
.wc{width:2152.959910pt;}
.wb{width:2530.879895pt;}
.w0{width:3024.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.239802pt;}
.x6{left:2.361740pt;}
.x29{left:3.617186pt;}
.x2b{left:14.152564pt;}
.x19{left:17.712688pt;}
.xd{left:23.669146pt;}
.x13{left:30.980800pt;}
.x11{left:35.495904pt;}
.xf{left:39.604804pt;}
.x15{left:40.698421pt;}
.x28{left:45.039974pt;}
.x1b{left:56.227876pt;}
.xe{left:58.337014pt;}
.x5{left:59.370728pt;}
.x12{left:61.477276pt;}
.x10{left:66.929771pt;}
.x2e{left:76.006817pt;}
.x1d{left:85.677598pt;}
.xc{left:118.474565pt;}
.x1e{left:121.599995pt;}
.x4{left:127.150621pt;}
.x14{left:135.855687pt;}
.x1a{left:137.318473pt;}
.x2a{left:153.279994pt;}
.x27{left:159.679993pt;}
.x26{left:167.359993pt;}
.x20{left:207.999991pt;}
.xb{left:211.264357pt;}
.x2d{left:215.999991pt;}
.x22{left:222.653430pt;}
.x35{left:248.050969pt;}
.x9{left:277.537485pt;}
.x2f{left:314.239987pt;}
.x1{left:324.799986pt;}
.x1f{left:355.519985pt;}
.x2{left:363.100412pt;}
.x23{left:394.559984pt;}
.x3{left:454.546700pt;}
.xa{left:475.433360pt;}
.x30{left:477.759980pt;}
.x34{left:520.959978pt;}
.x8{left:541.706484pt;}
.x17{left:596.397214pt;}
.x18{left:834.945953pt;}
.x24{left:919.777221pt;}
.x7{left:1006.585877pt;}
.x1c{left:1573.591038pt;}
.x2c{left:1583.999934pt;}
.x25{left:1602.559933pt;}
.x16{left:1645.759931pt;}
.x31{left:1719.679928pt;}
.x32{left:1743.999927pt;}
.x33{left:1767.999926pt;}
.x36{left:2730.559886pt;}
}




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