
    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_6724a636f8256a60ac8c0d59.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_e3a432edcfe71c3bbf81786a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.184000;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_eb1a7149ae0c5cf2339c4bb0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_78215faf2b2e590e2ed00722.woff')format("woff");}.ff4{font-family:ff4;line-height:0.808105;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_597b344e7fb875f562d89e98.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9adc4b28faa3270a0c66272a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.213379;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;}
.v2{vertical-align:19.027576px;}
.v1{vertical-align:37.867164px;}
.v3{vertical-align:45.664129px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:97.498675px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(232,83,36),0 0.015em rgb(232,83,36),0.015em 0 rgb(232,83,36),0 -0.015em  rgb(232,83,36);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(232,83,36);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.960002px;}
.ws9{word-spacing:-21.840000px;}
.wsc{word-spacing:-18.282001px;}
.ws3{word-spacing:-17.815201px;}
.ws2{word-spacing:-17.737201px;}
.ws5{word-spacing:-17.160001px;}
.wsd{word-spacing:-16.255200px;}
.wsb{word-spacing:-16.177201px;}
.wsa{word-spacing:-15.366001px;}
.ws7{word-spacing:-14.040000px;}
.ws8{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:1107.113809px;}
.ws4{word-spacing:1216.188546px;}
._8{margin-left:-10.668001px;}
._7{margin-left:-8.641561px;}
._6{margin-left:-5.986440px;}
._0{margin-left:-4.320000px;}
._1{margin-left:-2.400000px;}
._2{margin-left:-1.370400px;}
._9{width:1.244400px;}
._3{width:2.728800px;}
._4{width:7.476000px;}
._5{width:107.988525px;}
.fc8{color:transparent;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(232,83,36);}
.fc7{color:rgb(255,255,255);}
.fc3{color:rgb(85,85,85);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(44,62,80);}
.fc1{color:rgb(0,168,168);}
.fc0{color:rgb(232,100,11);}
.fs15{font-size:54.000002px;}
.fs10{font-size:57.288606px;}
.fs1a{font-size:59.100005px;}
.fs14{font-size:62.010600px;}
.fs19{font-size:62.220003px;}
.fsd{font-size:62.520001px;}
.fse{font-size:64.663202px;}
.fsf{font-size:64.665605px;}
.fs12{font-size:64.689599px;}
.fs11{font-size:64.692002px;}
.fs13{font-size:66.000004px;}
.fsa{font-size:68.220002px;}
.fs5{font-size:68.520004px;}
.fs3{font-size:74.220005px;}
.fs2{font-size:74.760010px;}
.fs17{font-size:80.520001px;}
.fsb{font-size:84.000000px;}
.fs18{font-size:86.220003px;}
.fs9{font-size:86.520004px;}
.fsc{font-size:86.760003px;}
.fs7{font-size:96.000006px;}
.fs16{font-size:108.589805px;}
.fs1{font-size:120.000001px;}
.fs8{font-size:121.919998px;}
.fs4{font-size:132.000007px;}
.fs6{font-size:162.000005px;}
.fs0{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.y8{bottom:13.683187px;}
.y62{bottom:22.787222px;}
.y70{bottom:29.684130px;}
.y1e{bottom:31.217815px;}
.ye{bottom:46.333186px;}
.y6f{bottom:49.484129px;}
.y4d{bottom:52.063795px;}
.y3e{bottom:52.363366px;}
.y6e{bottom:69.284130px;}
.y3d{bottom:71.119361px;}
.ya0{bottom:73.864502px;}
.y9c{bottom:76.152650px;}
.y7{bottom:78.137679px;}
.y4c{bottom:81.340853px;}
.yc0{bottom:84.983413px;}
.ybc{bottom:84.983422px;}
.yd{bottom:87.505858px;}
.y6d{bottom:88.965284px;}
.y3c{bottom:90.235367px;}
.y9f{bottom:93.664499px;}
.y9b{bottom:95.952648px;}
.y1d{bottom:99.526289px;}
.y29{bottom:100.221295px;}
.ybf{bottom:102.713418px;}
.ybb{bottom:102.713421px;}
.y4b{bottom:110.616537px;}
.y3b{bottom:110.791362px;}
.y9e{bottom:113.464498px;}
.y8c{bottom:114.865121px;}
.y1a{bottom:115.070493px;}
.y9a{bottom:115.752646px;}
.yb8{bottom:116.115046px;}
.y6{bottom:118.380911px;}
.ybe{bottom:120.443418px;}
.yba{bottom:120.443422px;}
.y28{bottom:120.687295px;}
.y1c{bottom:121.792289px;}
.y31{bottom:122.215192px;}
.yc{bottom:128.678531px;}
.y3a{bottom:131.347362px;}
.y19{bottom:137.336492px;}
.ybd{bottom:138.378619px;}
.yb9{bottom:138.378622px;}
.y8b{bottom:138.927968px;}
.yb7{bottom:140.582444px;}
.y1b{bottom:144.058289px;}
.y75{bottom:144.132713px;}
.y84{bottom:144.730845px;}
.y30{bottom:144.745511px;}
.y9d{bottom:147.228393px;}
.y99{bottom:151.288046px;}
.y39{bottom:151.903362px;}
.y27{bottom:155.304806px;}
.y5{bottom:158.624311px;}
.y4a{bottom:159.280591px;}
.yb6{bottom:165.049846px;}
.y74{bottom:166.488713px;}
.yb{bottom:169.851080px;}
.y8a{bottom:176.270672px;}
.y7c{bottom:176.560075px;}
.y18{bottom:182.473789px;}
.y83{bottom:185.988871px;}
.y6c{bottom:186.461553px;}
.yb1{bottom:188.259450px;}
.y73{bottom:188.844710px;}
.yb5{bottom:189.590328px;}
.y4{bottom:198.538510px;}
.y89{bottom:199.973259px;}
.y44{bottom:210.879021px;}
.ya{bottom:211.020209px;}
.y72{bottom:211.200713px;}
.yb0{bottom:212.726854px;}
.y2f{bottom:213.972085px;}
.y6b{bottom:217.529185px;}
.y94{bottom:220.269273px;}
.ya9{bottom:222.112315px;}
.y82{bottom:227.247044px;}
.y5c{bottom:227.434441px;}
.y17{bottom:230.520472px;}
.y43{bottom:231.435017px;}
.y71{bottom:233.556716px;}
.y98{bottom:234.446947px;}
.y48{bottom:236.244001px;}
.y2e{bottom:236.502393px;}
.y61{bottom:236.907206px;}
.yaf{bottom:237.194257px;}
.yb4{bottom:237.216864px;}
.ya8{bottom:239.842311px;}
.y26{bottom:239.952869px;}
.y49{bottom:240.552159px;}
.y38{bottom:244.972053px;}
.y93{bottom:247.593270px;}
.y54{bottom:249.603896px;}
.y5b{bottom:249.790441px;}
.y97{bottom:254.246951px;}
.ya7{bottom:257.572313px;}
.y25{bottom:260.418869px;}
.y7b{bottom:261.538650px;}
.yae{bottom:261.661660px;}
.yb3{bottom:261.684268px;}
.y37{bottom:265.528052px;}
.y92{bottom:267.393268px;}
.y81{bottom:268.505070px;}
.y53{bottom:269.403893px;}
.y42{bottom:273.287903px;}
.y96{bottom:274.046950px;}
.y24{bottom:280.884869px;}
.y13{bottom:282.806337px;}
.y16{bottom:285.002065px;}
.y36{bottom:286.084053px;}
.y91{bottom:287.193266px;}
.y6a{bottom:287.755553px;}
.yb2{bottom:288.850150px;}
.ya6{bottom:289.190351px;}
.y5a{bottom:296.398045px;}
.y60{bottom:296.476993px;}
.y47{bottom:304.048195px;}
.y12{bottom:305.072338px;}
.y23{bottom:305.267670px;}
.y2d{bottom:305.729923px;}
.y15{bottom:307.268065px;}
.y69{bottom:307.555554px;}
.y3{bottom:307.808259px;}
.y7a{bottom:308.449205px;}
.y52{bottom:308.985251px;}
.y59{bottom:312.598046px;}
.y5f{bottom:312.676993px;}
.y41{bottom:314.461138px;}
.y95{bottom:319.254399px;}
.yad{bottom:324.503241px;}
.y90{bottom:324.994554px;}
.ya5{bottom:326.630846px;}
.y11{bottom:327.338336px;}
.y68{bottom:327.355553px;}
.y2c{bottom:328.260220px;}
.y14{bottom:329.534063px;}
.yac{bottom:342.233243px;}
.y67{bottom:344.156084px;}
.y35{bottom:349.836254px;}
.y80{bottom:350.470623px;}
.y51{bottom:350.639007px;}
.ya4{bottom:351.098245px;}
.y88{bottom:354.899756px;}
.y79{bottom:355.359648px;}
.y40{bottom:355.632787px;}
.yab{bottom:359.963246px;}
.y2{bottom:365.981038px;}
.y7f{bottom:370.270621px;}
.y34{bottom:370.392253px;}
.y50{bottom:370.439007px;}
.y10{bottom:371.638574px;}
.y5e{bottom:372.162034px;}
.y87{bottom:374.699756px;}
.ya3{bottom:375.565646px;}
.y58{bottom:375.609372px;}
.yaa{bottom:377.693248px;}
.y55{bottom:381.628212px;}
.y46{bottom:383.143878px;}
.y5d{bottom:388.362034px;}
.y7e{bottom:390.070620px;}
.y66{bottom:390.899761px;}
.y33{bottom:390.948254px;}
.y57{bottom:391.809371px;}
.y86{bottom:394.499754px;}
.y3f{bottom:396.804650px;}
.y2b{bottom:397.487750px;}
.y8f{bottom:399.316298px;}
.y22{bottom:400.148847px;}
.ya2{bottom:400.446296px;}
.y78{bottom:402.270203px;}
.y4f{bottom:404.581634px;}
.y65{bottom:410.699756px;}
.yf{bottom:419.685347px;}
.y2a{bottom:420.018058px;}
.y21{bottom:420.614847px;}
.y8e{bottom:428.116296px;}
.y56{bottom:429.014922px;}
.y64{bottom:430.499755px;}
.y1{bottom:430.781038px;}
.ya1{bottom:439.269262px;}
.y85{bottom:440.358299px;}
.y63{bottom:448.867623px;}
.y77{bottom:449.180759px;}
.y7d{bottom:449.998582px;}
.y20{bottom:455.228949px;}
.y32{bottom:457.900020px;}
.y4e{bottom:461.687159px;}
.y45{bottom:466.616617px;}
.y8d{bottom:504.025512px;}
.y9{bottom:509.659366px;}
.y76{bottom:509.662968px;}
.y1f{bottom:526.534366px;}
.h15{height:47.438109px;}
.h1f{height:47.598303px;}
.h22{height:47.827800px;}
.h21{height:48.049807px;}
.h10{height:49.467350px;}
.h13{height:49.487543px;}
.h12{height:49.489382px;}
.h19{height:50.490003px;}
.h17{height:50.976002px;}
.h20{height:55.790405px;}
.h5{height:56.778304px;}
.hf{height:59.018880px;}
.h14{height:62.304003px;}
.hd{height:64.260000px;}
.hc{height:64.399682px;}
.h7{height:64.682883px;}
.h1d{height:65.958302px;}
.hb{height:66.187803px;}
.he{height:66.371402px;}
.h4{height:70.063685px;}
.h3{height:70.573449px;}
.h9{height:73.440005px;}
.h1c{height:76.010881px;}
.h1e{height:79.296000px;}
.h11{height:81.692948px;}
.h16{height:85.398978px;}
.h2{height:91.800001px;}
.ha{height:93.268798px;}
.h6{height:100.980006px;}
.h1b{height:109.924062px;}
.h1a{height:109.924107px;}
.h18{height:109.924129px;}
.h8{height:123.930004px;}
.h1{height:165.240005px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x7{left:27.478349px;}
.x9{left:44.583663px;}
.x3{left:46.125001px;}
.x4{left:50.625002px;}
.xe{left:52.257180px;}
.x2{left:59.465556px;}
.x24{left:61.279237px;}
.x1c{left:63.534450px;}
.xa{left:66.070673px;}
.x1{left:67.500002px;}
.xf{left:70.913755px;}
.x2f{left:80.247049px;}
.xb{left:98.583664px;}
.xc{left:100.213586px;}
.x1a{left:102.375003px;}
.x18{left:108.788392px;}
.x1b{left:116.772641px;}
.x26{left:131.461395px;}
.x22{left:137.065140px;}
.x14{left:149.058072px;}
.x13{left:150.327759px;}
.x25{left:163.152826px;}
.x23{left:179.852890px;}
.x2b{left:185.280745px;}
.x2c{left:266.409616px;}
.x21{left:268.279452px;}
.x6{left:347.322415px;}
.x37{left:375.419285px;}
.x19{left:379.263781px;}
.x31{left:384.558200px;}
.x30{left:390.936140px;}
.x32{left:403.683200px;}
.x10{left:411.032848px;}
.x15{left:475.402571px;}
.x17{left:478.133869px;}
.x16{left:483.947835px;}
.xd{left:544.218801px;}
.x5{left:556.875018px;}
.x1f{left:574.340565px;}
.x20{left:576.287175px;}
.x8{left:582.187586px;}
.x1d{left:591.153431px;}
.x1e{left:596.031319px;}
.x2d{left:621.293976px;}
.x28{left:623.503955px;}
.x2a{left:647.337559px;}
.x2e{left:665.853378px;}
.x11{left:688.086585px;}
.x27{left:702.525397px;}
.x12{left:704.503935px;}
.x34{left:707.994360px;}
.x33{left:714.372278px;}
.x35{left:727.119361px;}
.x36{left:733.497278px;}
.x29{left:798.378652px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.913401pt;}
.v1{vertical-align:33.659701pt;}
.v3{vertical-align:40.590337pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:86.665489pt;}
.ws1{word-spacing:-22.186668pt;}
.ws9{word-spacing:-19.413333pt;}
.wsc{word-spacing:-16.250668pt;}
.ws3{word-spacing:-15.835734pt;}
.ws2{word-spacing:-15.766401pt;}
.ws5{word-spacing:-15.253334pt;}
.wsd{word-spacing:-14.449067pt;}
.wsb{word-spacing:-14.379734pt;}
.wsa{word-spacing:-13.658668pt;}
.ws7{word-spacing:-12.480000pt;}
.ws8{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:984.101163pt;}
.ws4{word-spacing:1081.056485pt;}
._8{margin-left:-9.482667pt;}
._7{margin-left:-7.681387pt;}
._6{margin-left:-5.321280pt;}
._0{margin-left:-3.840000pt;}
._1{margin-left:-2.133333pt;}
._2{margin-left:-1.218133pt;}
._9{width:1.106133pt;}
._3{width:2.425600pt;}
._4{width:6.645333pt;}
._5{width:95.989800pt;}
.fs15{font-size:48.000002pt;}
.fs10{font-size:50.923206pt;}
.fs1a{font-size:52.533338pt;}
.fs14{font-size:55.120534pt;}
.fs19{font-size:55.306670pt;}
.fsd{font-size:55.573334pt;}
.fse{font-size:57.478402pt;}
.fsf{font-size:57.480538pt;}
.fs12{font-size:57.501866pt;}
.fs11{font-size:57.504002pt;}
.fs13{font-size:58.666670pt;}
.fsa{font-size:60.640002pt;}
.fs5{font-size:60.906670pt;}
.fs3{font-size:65.973338pt;}
.fs2{font-size:66.453342pt;}
.fs17{font-size:71.573334pt;}
.fsb{font-size:74.666666pt;}
.fs18{font-size:76.640002pt;}
.fs9{font-size:76.906670pt;}
.fsc{font-size:77.120002pt;}
.fs7{font-size:85.333339pt;}
.fs16{font-size:96.524271pt;}
.fs1{font-size:106.666667pt;}
.fs8{font-size:108.373331pt;}
.fs4{font-size:117.333340pt;}
.fs6{font-size:144.000005pt;}
.fs0{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:12.162833pt;}
.y62{bottom:20.255308pt;}
.y70{bottom:26.385894pt;}
.y1e{bottom:27.749169pt;}
.ye{bottom:41.185054pt;}
.y6f{bottom:43.985892pt;}
.y4d{bottom:46.278929pt;}
.y3e{bottom:46.545214pt;}
.y6e{bottom:61.585894pt;}
.y3d{bottom:63.217210pt;}
.ya0{bottom:65.657335pt;}
.y9c{bottom:67.691245pt;}
.y7{bottom:69.455715pt;}
.y4c{bottom:72.302980pt;}
.yc0{bottom:75.540811pt;}
.ybc{bottom:75.540819pt;}
.yd{bottom:77.782985pt;}
.y6d{bottom:79.080252pt;}
.y3c{bottom:80.209215pt;}
.y9f{bottom:83.257332pt;}
.y9b{bottom:85.291242pt;}
.y1d{bottom:88.467813pt;}
.y29{bottom:89.085596pt;}
.ybf{bottom:91.300816pt;}
.ybb{bottom:91.300819pt;}
.y4b{bottom:98.325811pt;}
.y3b{bottom:98.481211pt;}
.y9e{bottom:100.857331pt;}
.y8c{bottom:102.102330pt;}
.y1a{bottom:102.284883pt;}
.y9a{bottom:102.891241pt;}
.yb8{bottom:103.213374pt;}
.y6{bottom:105.227476pt;}
.ybe{bottom:107.060816pt;}
.yba{bottom:107.060819pt;}
.y28{bottom:107.277595pt;}
.y1c{bottom:108.259812pt;}
.y31{bottom:108.635726pt;}
.yc{bottom:114.380916pt;}
.y3a{bottom:116.753210pt;}
.y19{bottom:122.076882pt;}
.ybd{bottom:123.003217pt;}
.yb9{bottom:123.003220pt;}
.y8b{bottom:123.491527pt;}
.yb7{bottom:124.962173pt;}
.y1b{bottom:128.051813pt;}
.y75{bottom:128.117967pt;}
.y84{bottom:128.649640pt;}
.y30{bottom:128.662677pt;}
.y9d{bottom:130.869683pt;}
.y99{bottom:134.478263pt;}
.y39{bottom:135.025211pt;}
.y27{bottom:138.048716pt;}
.y5{bottom:140.999387pt;}
.y4a{bottom:141.582747pt;}
.yb6{bottom:146.710974pt;}
.y74{bottom:147.989967pt;}
.yb{bottom:150.978738pt;}
.y8a{bottom:156.685042pt;}
.y7c{bottom:156.942289pt;}
.y18{bottom:162.198924pt;}
.y83{bottom:165.323441pt;}
.y6c{bottom:165.743603pt;}
.yb1{bottom:167.341733pt;}
.y73{bottom:167.861964pt;}
.yb5{bottom:168.524736pt;}
.y4{bottom:176.478675pt;}
.y89{bottom:177.754008pt;}
.y44{bottom:187.448019pt;}
.ya{bottom:187.573519pt;}
.y72{bottom:187.733967pt;}
.yb0{bottom:189.090537pt;}
.y2f{bottom:190.197409pt;}
.y6b{bottom:193.359276pt;}
.y94{bottom:195.794909pt;}
.ya9{bottom:197.433169pt;}
.y82{bottom:201.997372pt;}
.y5c{bottom:202.163947pt;}
.y17{bottom:204.907086pt;}
.y43{bottom:205.720015pt;}
.y71{bottom:207.605969pt;}
.y98{bottom:208.397286pt;}
.y48{bottom:209.994667pt;}
.y2e{bottom:210.224349pt;}
.y61{bottom:210.584183pt;}
.yaf{bottom:210.839339pt;}
.yb4{bottom:210.859434pt;}
.ya8{bottom:213.193166pt;}
.y26{bottom:213.291440pt;}
.y49{bottom:213.824142pt;}
.y38{bottom:217.752936pt;}
.y93{bottom:220.082907pt;}
.y54{bottom:221.870130pt;}
.y5b{bottom:222.035948pt;}
.y97{bottom:225.997290pt;}
.ya7{bottom:228.953167pt;}
.y25{bottom:231.483439pt;}
.y7b{bottom:232.478800pt;}
.yae{bottom:232.588142pt;}
.yb3{bottom:232.608238pt;}
.y37{bottom:236.024935pt;}
.y92{bottom:237.682905pt;}
.y81{bottom:238.671173pt;}
.y53{bottom:239.470127pt;}
.y42{bottom:242.922580pt;}
.y96{bottom:243.597289pt;}
.y24{bottom:249.675439pt;}
.y13{bottom:251.383411pt;}
.y16{bottom:253.335169pt;}
.y36{bottom:254.296936pt;}
.y91{bottom:255.282903pt;}
.y6a{bottom:255.782714pt;}
.yb2{bottom:256.755689pt;}
.ya6{bottom:257.058090pt;}
.y5a{bottom:263.464929pt;}
.y60{bottom:263.535105pt;}
.y47{bottom:270.265062pt;}
.y12{bottom:271.175411pt;}
.y23{bottom:271.349040pt;}
.y2d{bottom:271.759931pt;}
.y15{bottom:273.127168pt;}
.y69{bottom:273.382714pt;}
.y3{bottom:273.607341pt;}
.y7a{bottom:274.177071pt;}
.y52{bottom:274.653557pt;}
.y59{bottom:277.864930pt;}
.y5f{bottom:277.935105pt;}
.y41{bottom:279.521012pt;}
.y95{bottom:283.781688pt;}
.yad{bottom:288.447325pt;}
.y90{bottom:288.884048pt;}
.ya5{bottom:290.338530pt;}
.y11{bottom:290.967410pt;}
.y68{bottom:290.982714pt;}
.y2c{bottom:291.786862pt;}
.y14{bottom:292.919167pt;}
.yac{bottom:304.207327pt;}
.y67{bottom:305.916520pt;}
.y35{bottom:310.965559pt;}
.y80{bottom:311.529443pt;}
.y51{bottom:311.679118pt;}
.ya4{bottom:312.087329pt;}
.y88{bottom:315.466450pt;}
.y79{bottom:315.875243pt;}
.y40{bottom:316.118033pt;}
.yab{bottom:319.967330pt;}
.y2{bottom:325.316478pt;}
.y7f{bottom:329.129441pt;}
.y34{bottom:329.237558pt;}
.y50{bottom:329.279117pt;}
.y10{bottom:330.345399pt;}
.y5e{bottom:330.810697pt;}
.y87{bottom:333.066449pt;}
.ya3{bottom:333.836130pt;}
.y58{bottom:333.874997pt;}
.yaa{bottom:335.727331pt;}
.y55{bottom:339.225078pt;}
.y46{bottom:340.572336pt;}
.y5d{bottom:345.210697pt;}
.y7e{bottom:346.729440pt;}
.y66{bottom:347.466454pt;}
.y33{bottom:347.509559pt;}
.y57{bottom:348.274997pt;}
.y86{bottom:350.666448pt;}
.y3f{bottom:352.715244pt;}
.y2b{bottom:353.322444pt;}
.y8f{bottom:354.947820pt;}
.y22{bottom:355.687864pt;}
.ya2{bottom:355.952263pt;}
.y78{bottom:357.573514pt;}
.y4f{bottom:359.628119pt;}
.y65{bottom:365.066449pt;}
.yf{bottom:373.053642pt;}
.y2a{bottom:373.349385pt;}
.y21{bottom:373.879864pt;}
.y8e{bottom:380.547819pt;}
.y56{bottom:381.346597pt;}
.y64{bottom:382.666449pt;}
.y1{bottom:382.916478pt;}
.ya1{bottom:390.461566pt;}
.y85{bottom:391.429599pt;}
.y63{bottom:398.993442pt;}
.y77{bottom:399.271785pt;}
.y7d{bottom:399.998740pt;}
.y20{bottom:404.647955pt;}
.y32{bottom:407.022240pt;}
.y4e{bottom:410.388586pt;}
.y45{bottom:414.770326pt;}
.y8d{bottom:448.022677pt;}
.y9{bottom:453.030547pt;}
.y76{bottom:453.033749pt;}
.y1f{bottom:468.030548pt;}
.h15{height:42.167208pt;}
.h1f{height:42.309602pt;}
.h22{height:42.513600pt;}
.h21{height:42.710940pt;}
.h10{height:43.970977pt;}
.h13{height:43.988927pt;}
.h12{height:43.990561pt;}
.h19{height:44.880002pt;}
.h17{height:45.312001pt;}
.h20{height:49.591471pt;}
.h5{height:50.469604pt;}
.hf{height:52.461227pt;}
.h14{height:55.381336pt;}
.hd{height:57.120000pt;}
.hc{height:57.244162pt;}
.h7{height:57.495896pt;}
.h1d{height:58.629602pt;}
.hb{height:58.833603pt;}
.he{height:58.996802pt;}
.h4{height:62.278831pt;}
.h3{height:62.731955pt;}
.h9{height:65.280004pt;}
.h1c{height:67.565228pt;}
.h1e{height:70.485333pt;}
.h11{height:72.615953pt;}
.h16{height:75.910202pt;}
.h2{height:81.600001pt;}
.ha{height:82.905599pt;}
.h6{height:89.760005pt;}
.h1b{height:97.710277pt;}
.h1a{height:97.710317pt;}
.h18{height:97.710337pt;}
.h8{height:110.160004pt;}
.h1{height:146.880005pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x7{left:24.425199pt;}
.x9{left:39.629922pt;}
.x3{left:41.000001pt;}
.x4{left:45.000001pt;}
.xe{left:46.450826pt;}
.x2{left:52.858272pt;}
.x24{left:54.470433pt;}
.x1c{left:56.475067pt;}
.xa{left:58.729487pt;}
.x1{left:60.000002pt;}
.xf{left:63.034449pt;}
.x2f{left:71.330710pt;}
.xb{left:87.629924pt;}
.xc{left:89.078743pt;}
.x1a{left:91.000003pt;}
.x18{left:96.700793pt;}
.x1b{left:103.797903pt;}
.x26{left:116.854574pt;}
.x22{left:121.835680pt;}
.x14{left:132.496064pt;}
.x13{left:133.624674pt;}
.x25{left:145.024735pt;}
.x23{left:159.869235pt;}
.x2b{left:164.693995pt;}
.x2c{left:236.808548pt;}
.x21{left:238.470624pt;}
.x6{left:308.731036pt;}
.x37{left:333.706031pt;}
.x19{left:337.123361pt;}
.x31{left:341.829511pt;}
.x30{left:347.498791pt;}
.x32{left:358.829511pt;}
.x10{left:365.362532pt;}
.x15{left:422.580064pt;}
.x17{left:425.007884pt;}
.x16{left:430.175854pt;}
.xd{left:483.750045pt;}
.x5{left:495.000016pt;}
.x1f{left:510.524946pt;}
.x20{left:512.255266pt;}
.x8{left:517.500077pt;}
.x1d{left:525.469717pt;}
.x1e{left:529.805617pt;}
.x2d{left:552.261312pt;}
.x28{left:554.225738pt;}
.x2a{left:575.411163pt;}
.x2e{left:591.869669pt;}
.x11{left:611.632520pt;}
.x27{left:624.467020pt;}
.x12{left:626.225720pt;}
.x34{left:629.328320pt;}
.x33{left:634.997580pt;}
.x35{left:646.328321pt;}
.x36{left:651.997581pt;}
.x29{left:709.669913pt;}
}




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