
    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_adfdb1dfe070780fec7cc40e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_2a5df28d979371e88dfb23df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_501368dfb70d0880e33b1996.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.682617;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_76592151158e0d84414881b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:19.148640px;}
.ls1{letter-spacing:44.612820px;}
.ls3{letter-spacing:57.600000px;}
.ls4{letter-spacing:69.360000px;}
.ls5{letter-spacing:74.880000px;}
.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;}
}
.ws1{word-spacing:-42.000000px;}
.ws23{word-spacing:-27.972000px;}
.ws2a{word-spacing:-21.293840px;}
.ws2{word-spacing:-21.001436px;}
.ws17{word-spacing:-21.001134px;}
.ws29{word-spacing:-21.000548px;}
.ws24{word-spacing:-20.988170px;}
.ws20{word-spacing:-20.988000px;}
.ws0{word-spacing:-20.987584px;}
.ws1c{word-spacing:-20.931704px;}
.ws36{word-spacing:-15.131169px;}
.ws49{word-spacing:-14.622161px;}
.ws70{word-spacing:-12.224107px;}
.ws3a{word-spacing:-12.223804px;}
.ws3e{word-spacing:-11.675037px;}
.ws6d{word-spacing:-11.048560px;}
.ws79{word-spacing:-9.952706px;}
.ws3b{word-spacing:-9.734778px;}
.ws26{word-spacing:-9.566891px;}
.ws5{word-spacing:-8.752044px;}
.ws13{word-spacing:-8.736983px;}
.ws41{word-spacing:-8.534456px;}
.ws58{word-spacing:-8.454350px;}
.ws2d{word-spacing:-7.842898px;}
.ws2c{word-spacing:-7.153758px;}
.ws6b{word-spacing:-6.974940px;}
.wse{word-spacing:-6.973436px;}
.wsb{word-spacing:-6.973134px;}
.ws5a{word-spacing:-6.972963px;}
.ws4{word-spacing:-6.972718px;}
.ws3{word-spacing:-6.903704px;}
.ws1a{word-spacing:-6.902098px;}
.ws71{word-spacing:-6.870237px;}
.ws55{word-spacing:-6.843931px;}
.ws5b{word-spacing:-6.520384px;}
.ws57{word-spacing:-6.464561px;}
.ws19{word-spacing:-6.182098px;}
.ws43{word-spacing:-5.863370px;}
.ws2f{word-spacing:-5.493506px;}
.ws7{word-spacing:-5.354967px;}
.wsc{word-spacing:-4.822148px;}
.ws50{word-spacing:-4.752303px;}
.ws30{word-spacing:-4.637574px;}
.ws73{word-spacing:-3.168945px;}
.ws6{word-spacing:-2.765896px;}
.ws54{word-spacing:-2.234230px;}
.ws44{word-spacing:-1.951295px;}
.ws7a{word-spacing:-1.697632px;}
.ws37{word-spacing:-1.116302px;}
.wsa{word-spacing:-0.948226px;}
.ws48{word-spacing:-0.594463px;}
.ws16{word-spacing:-0.130186px;}
.ws1f{word-spacing:0.000000px;}
.ws22{word-spacing:0.044315px;}
.ws76{word-spacing:0.513260px;}
.ws6a{word-spacing:1.246129px;}
.ws5c{word-spacing:1.661594px;}
.ws34{word-spacing:1.864157px;}
.ws3f{word-spacing:2.352963px;}
.ws64{word-spacing:2.463004px;}
.ws6c{word-spacing:2.616586px;}
.ws39{word-spacing:2.645669px;}
.ws68{word-spacing:2.771357px;}
.ws66{word-spacing:3.168831px;}
.ws78{word-spacing:3.985890px;}
.ws3c{word-spacing:4.293052px;}
.ws74{word-spacing:4.313367px;}
.ws15{word-spacing:4.339691px;}
.ws4d{word-spacing:4.527760px;}
.ws42{word-spacing:5.492826px;}
.ws77{word-spacing:5.602148px;}
.ws2e{word-spacing:6.185518px;}
.ws1b{word-spacing:6.286242px;}
.ws7e{word-spacing:6.391011px;}
.ws5e{word-spacing:6.637966px;}
.ws7b{word-spacing:6.769777px;}
.ws33{word-spacing:6.952271px;}
.ws11{word-spacing:7.216233px;}
.ws38{word-spacing:7.544315px;}
.ws8{word-spacing:8.463043px;}
.wsd{word-spacing:9.204964px;}
.ws61{word-spacing:9.257178px;}
.ws27{word-spacing:9.667370px;}
.ws46{word-spacing:10.011345px;}
.ws4e{word-spacing:10.263023px;}
.ws6f{word-spacing:11.211005px;}
.ws4f{word-spacing:11.907761px;}
.ws7c{word-spacing:12.046601px;}
.ws45{word-spacing:12.076705px;}
.ws60{word-spacing:12.429014px;}
.ws28{word-spacing:12.450368px;}
.ws4c{word-spacing:12.553984px;}
.ws63{word-spacing:12.697493px;}
.ws6e{word-spacing:13.878388px;}
.ws5d{word-spacing:13.969455px;}
.ws69{word-spacing:14.171396px;}
.ws5f{word-spacing:14.282911px;}
.ws67{word-spacing:14.732145px;}
.ws59{word-spacing:15.194079px;}
.wsf{word-spacing:16.710538px;}
.ws53{word-spacing:17.129953px;}
.ws51{word-spacing:18.882274px;}
.ws31{word-spacing:19.046494px;}
.ws62{word-spacing:20.225556px;}
.ws18{word-spacing:20.281644px;}
.ws4a{word-spacing:20.681934px;}
.ws9{word-spacing:21.120170px;}
.ws7d{word-spacing:23.547326px;}
.ws47{word-spacing:24.531855px;}
.ws21{word-spacing:25.855578px;}
.ws1e{word-spacing:26.492579px;}
.ws10{word-spacing:29.511175px;}
.ws12{word-spacing:29.897254px;}
.ws32{word-spacing:33.061531px;}
.ws4b{word-spacing:34.709763px;}
.ws65{word-spacing:34.778475px;}
.ws56{word-spacing:35.564107px;}
.ws25{word-spacing:38.904624px;}
.ws40{word-spacing:39.511503px;}
.ws2b{word-spacing:40.094325px;}
.ws14{word-spacing:42.884769px;}
.ws1d{word-spacing:43.196901px;}
.ws3d{word-spacing:48.184082px;}
.ws35{word-spacing:48.953216px;}
.ws52{word-spacing:53.169808px;}
.ws75{word-spacing:182.641058px;}
.ws72{word-spacing:626.198249px;}
._0{width:1.027576px;}
._3{width:16.793802px;}
._2{width:22.791106px;}
._5{width:26.785571px;}
._7{width:30.684285px;}
._4{width:34.581293px;}
._8{width:43.155411px;}
._9{width:52.540144px;}
._1{width:71.903245px;}
._6{width:107.999963px;}
.fc2{color:rgb(0,0,238);}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:62.740425px;}
.y28{bottom:99.647535px;}
.y85{bottom:111.203655px;}
.y27{bottom:123.795480px;}
.y84{bottom:135.351600px;}
.y26{bottom:147.943425px;}
.y83{bottom:159.499560px;}
.y68{bottom:159.647580px;}
.y48{bottom:160.091370px;}
.y25{bottom:178.091370px;}
.y82{bottom:183.647505px;}
.y67{bottom:183.795525px;}
.y47{bottom:184.239315px;}
.y81{bottom:207.795450px;}
.y66{bottom:207.943470px;}
.y46{bottom:208.387260px;}
.y24{bottom:214.239315px;}
.y80{bottom:231.943425px;}
.y65{bottom:232.091415px;}
.y45{bottom:232.535205px;}
.y23{bottom:238.387260px;}
.y7f{bottom:256.091370px;}
.y64{bottom:256.239360px;}
.y44{bottom:256.683150px;}
.y22{bottom:268.535205px;}
.y7e{bottom:280.239315px;}
.y63{bottom:280.387305px;}
.y43{bottom:280.831095px;}
.y7d{bottom:304.387260px;}
.y62{bottom:304.535250px;}
.y21{bottom:304.683195px;}
.y42{bottom:304.979040px;}
.y7c{bottom:328.535205px;}
.y61{bottom:328.683195px;}
.y20{bottom:328.831140px;}
.y41{bottom:329.126985px;}
.y7b{bottom:352.683150px;}
.y60{bottom:352.831140px;}
.y1f{bottom:352.979085px;}
.y40{bottom:359.274930px;}
.y7a{bottom:376.831095px;}
.y5f{bottom:376.979085px;}
.y1e{bottom:383.127030px;}
.y3f{bottom:395.422875px;}
.y79{bottom:400.979130px;}
.y5e{bottom:401.127030px;}
.y1d{bottom:419.274975px;}
.y3e{bottom:419.570820px;}
.y78{bottom:425.127075px;}
.y5d{bottom:431.274975px;}
.y3d{bottom:443.718765px;}
.y77{bottom:449.274975px;}
.y1c{bottom:449.422920px;}
.y5c{bottom:467.422920px;}
.y3c{bottom:473.866710px;}
.y76{bottom:485.422965px;}
.y1b{bottom:485.570865px;}
.y5b{bottom:491.570865px;}
.y75{bottom:509.570910px;}
.y1a{bottom:509.718810px;}
.y3b{bottom:510.014655px;}
.y5a{bottom:515.718810px;}
.y74{bottom:533.718855px;}
.y19{bottom:533.866755px;}
.y3a{bottom:534.162600px;}
.y59{bottom:539.866755px;}
.y73{bottom:557.866800px;}
.y18{bottom:558.014700px;}
.y39{bottom:558.310545px;}
.y58{bottom:564.014700px;}
.y72{bottom:582.014745px;}
.y17{bottom:582.162645px;}
.y38{bottom:582.458490px;}
.y57{bottom:588.162645px;}
.y71{bottom:606.162690px;}
.y37{bottom:606.606435px;}
.y16{bottom:612.310590px;}
.y70{bottom:630.310635px;}
.y15{bottom:636.458535px;}
.y36{bottom:642.754425px;}
.y6f{bottom:654.458580px;}
.y14{bottom:660.606480px;}
.y35{bottom:672.902370px;}
.y6e{bottom:678.606525px;}
.y13{bottom:684.754425px;}
.y56{bottom:690.754425px;}
.y6d{bottom:708.754470px;}
.y12{bottom:708.902370px;}
.y34{bottom:709.050315px;}
.y55{bottom:726.902415px;}
.y33{bottom:733.198260px;}
.y6c{bottom:744.902415px;}
.y11{bottom:745.050360px;}
.y54{bottom:751.050360px;}
.y93{bottom:762.902370px;}
.y32{bottom:763.346205px;}
.y6b{bottom:769.050360px;}
.y10{bottom:769.198260px;}
.y53{bottom:775.198305px;}
.y92{bottom:787.050315px;}
.y6a{bottom:793.198305px;}
.yf{bottom:799.346250px;}
.y31{bottom:799.494150px;}
.y52{bottom:805.346250px;}
.y91{bottom:811.198260px;}
.y69{bottom:817.346250px;}
.ye{bottom:823.494195px;}
.y30{bottom:823.642095px;}
.y90{bottom:835.346205px;}
.y51{bottom:841.494195px;}
.yd{bottom:847.642140px;}
.y2f{bottom:853.790040px;}
.y8f{bottom:859.494150px;}
.y50{bottom:865.642140px;}
.yc{bottom:871.790085px;}
.y8e{bottom:883.642095px;}
.y4f{bottom:889.790085px;}
.y2e{bottom:889.937985px;}
.yb{bottom:895.938030px;}
.y8d{bottom:907.790040px;}
.y4e{bottom:913.938030px;}
.y2d{bottom:914.085930px;}
.ya{bottom:920.085975px;}
.y8c{bottom:931.938000px;}
.y4d{bottom:938.085975px;}
.y9{bottom:944.233920px;}
.y8b{bottom:956.085945px;}
.y4c{bottom:962.233920px;}
.y8a{bottom:980.233890px;}
.y8{bottom:980.381865px;}
.y4b{bottom:986.381865px;}
.y89{bottom:1004.381865px;}
.y7{bottom:1004.529810px;}
.y4a{bottom:1010.529810px;}
.y88{bottom:1028.529810px;}
.y2c{bottom:1034.677755px;}
.y6{bottom:1040.677755px;}
.y87{bottom:1052.677755px;}
.y49{bottom:1058.825700px;}
.y5{bottom:1064.825700px;}
.y2b{bottom:1070.825700px;}
.y86{bottom:1076.825700px;}
.y2a{bottom:1094.973645px;}
.y4{bottom:1100.973645px;}
.y29{bottom:1119.121590px;}
.y3{bottom:1125.121590px;}
.y2{bottom:1149.269535px;}
.h3{height:56.929688px;}
.h2{height:58.365234px;}
.h0{height:1262.850030px;}
.h1{height:1263.000000px;}
.w0{width:892.949985px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:85.350000px;}
.xf{left:95.774985px;}
.xd{left:111.524955px;}
.x2{left:123.531540px;}
.x9{left:138.449985px;}
.x8{left:140.575665px;}
.xb{left:165.524955px;}
.x3{left:186.874185px;}
.xc{left:192.524955px;}
.x6{left:212.905815px;}
.xe{left:327.746445px;}
.x4{left:329.207430px;}
.x7{left:370.930395px;}
.x5{left:384.352620px;}
.x1{left:430.725000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:17.021013pt;}
.ls1{letter-spacing:39.655840pt;}
.ls3{letter-spacing:51.200000pt;}
.ls4{letter-spacing:61.653333pt;}
.ls5{letter-spacing:66.560000pt;}
.ws1{word-spacing:-37.333333pt;}
.ws23{word-spacing:-24.864000pt;}
.ws2a{word-spacing:-18.927857pt;}
.ws2{word-spacing:-18.667943pt;}
.ws17{word-spacing:-18.667675pt;}
.ws29{word-spacing:-18.667153pt;}
.ws24{word-spacing:-18.656151pt;}
.ws20{word-spacing:-18.656000pt;}
.ws0{word-spacing:-18.655630pt;}
.ws1c{word-spacing:-18.605959pt;}
.ws36{word-spacing:-13.449928pt;}
.ws49{word-spacing:-12.997476pt;}
.ws70{word-spacing:-10.865873pt;}
.ws3a{word-spacing:-10.865604pt;}
.ws3e{word-spacing:-10.377810pt;}
.ws6d{word-spacing:-9.820943pt;}
.ws79{word-spacing:-8.846849pt;}
.ws3b{word-spacing:-8.653136pt;}
.ws26{word-spacing:-8.503903pt;}
.ws5{word-spacing:-7.779595pt;}
.ws13{word-spacing:-7.766207pt;}
.ws41{word-spacing:-7.586183pt;}
.ws58{word-spacing:-7.514977pt;}
.ws2d{word-spacing:-6.971465pt;}
.ws2c{word-spacing:-6.358896pt;}
.ws6b{word-spacing:-6.199947pt;}
.wse{word-spacing:-6.198610pt;}
.wsb{word-spacing:-6.198341pt;}
.ws5a{word-spacing:-6.198190pt;}
.ws4{word-spacing:-6.197972pt;}
.ws3{word-spacing:-6.136626pt;}
.ws1a{word-spacing:-6.135198pt;}
.ws71{word-spacing:-6.106877pt;}
.ws55{word-spacing:-6.083494pt;}
.ws5b{word-spacing:-5.795897pt;}
.ws57{word-spacing:-5.746276pt;}
.ws19{word-spacing:-5.495198pt;}
.ws43{word-spacing:-5.211884pt;}
.ws2f{word-spacing:-4.883116pt;}
.ws7{word-spacing:-4.759971pt;}
.wsc{word-spacing:-4.286353pt;}
.ws50{word-spacing:-4.224269pt;}
.ws30{word-spacing:-4.122288pt;}
.ws73{word-spacing:-2.816840pt;}
.ws6{word-spacing:-2.458574pt;}
.ws54{word-spacing:-1.985983pt;}
.ws44{word-spacing:-1.734484pt;}
.ws7a{word-spacing:-1.509006pt;}
.ws37{word-spacing:-0.992268pt;}
.wsa{word-spacing:-0.842868pt;}
.ws48{word-spacing:-0.528412pt;}
.ws16{word-spacing:-0.115721pt;}
.ws1f{word-spacing:0.000000pt;}
.ws22{word-spacing:0.039391pt;}
.ws76{word-spacing:0.456231pt;}
.ws6a{word-spacing:1.107670pt;}
.ws5c{word-spacing:1.476972pt;}
.ws34{word-spacing:1.657029pt;}
.ws3f{word-spacing:2.091523pt;}
.ws64{word-spacing:2.189337pt;}
.ws6c{word-spacing:2.325854pt;}
.ws39{word-spacing:2.351706pt;}
.ws68{word-spacing:2.463429pt;}
.ws66{word-spacing:2.816739pt;}
.ws78{word-spacing:3.543013pt;}
.ws3c{word-spacing:3.816046pt;}
.ws74{word-spacing:3.834104pt;}
.ws15{word-spacing:3.857503pt;}
.ws4d{word-spacing:4.024676pt;}
.ws42{word-spacing:4.882512pt;}
.ws77{word-spacing:4.979687pt;}
.ws2e{word-spacing:5.498238pt;}
.ws1b{word-spacing:5.587771pt;}
.ws7e{word-spacing:5.680898pt;}
.ws5e{word-spacing:5.900414pt;}
.ws7b{word-spacing:6.017579pt;}
.ws33{word-spacing:6.179796pt;}
.ws11{word-spacing:6.414430pt;}
.ws38{word-spacing:6.706057pt;}
.ws8{word-spacing:7.522705pt;}
.wsd{word-spacing:8.182190pt;}
.ws61{word-spacing:8.228603pt;}
.ws27{word-spacing:8.593218pt;}
.ws46{word-spacing:8.898973pt;}
.ws4e{word-spacing:9.122687pt;}
.ws6f{word-spacing:9.965337pt;}
.ws4f{word-spacing:10.584676pt;}
.ws7c{word-spacing:10.708090pt;}
.ws45{word-spacing:10.734849pt;}
.ws60{word-spacing:11.048012pt;}
.ws28{word-spacing:11.066994pt;}
.ws4c{word-spacing:11.159097pt;}
.ws63{word-spacing:11.286660pt;}
.ws6e{word-spacing:12.336345pt;}
.ws5d{word-spacing:12.417294pt;}
.ws69{word-spacing:12.596796pt;}
.ws5f{word-spacing:12.695921pt;}
.ws67{word-spacing:13.095240pt;}
.ws59{word-spacing:13.505848pt;}
.wsf{word-spacing:14.853812pt;}
.ws53{word-spacing:15.226625pt;}
.ws51{word-spacing:16.784244pt;}
.ws31{word-spacing:16.930217pt;}
.ws62{word-spacing:17.978272pt;}
.ws18{word-spacing:18.028128pt;}
.ws4a{word-spacing:18.383941pt;}
.ws9{word-spacing:18.773485pt;}
.ws7d{word-spacing:20.930956pt;}
.ws47{word-spacing:21.806093pt;}
.ws21{word-spacing:22.982736pt;}
.ws1e{word-spacing:23.548959pt;}
.ws10{word-spacing:26.232155pt;}
.ws12{word-spacing:26.575337pt;}
.ws32{word-spacing:29.388027pt;}
.ws4b{word-spacing:30.853123pt;}
.ws65{word-spacing:30.914200pt;}
.ws56{word-spacing:31.612540pt;}
.ws25{word-spacing:34.581888pt;}
.ws40{word-spacing:35.121336pt;}
.ws2b{word-spacing:35.639400pt;}
.ws14{word-spacing:38.119794pt;}
.ws1d{word-spacing:38.397245pt;}
.ws3d{word-spacing:42.830295pt;}
.ws35{word-spacing:43.513970pt;}
.ws52{word-spacing:47.262051pt;}
.ws75{word-spacing:162.347607pt;}
.ws72{word-spacing:556.620666pt;}
._0{width:0.913401pt;}
._3{width:14.927824pt;}
._2{width:20.258761pt;}
._5{width:23.809397pt;}
._7{width:27.274920pt;}
._4{width:30.738927pt;}
._8{width:38.360365pt;}
._9{width:46.702350pt;}
._1{width:63.913995pt;}
._6{width:95.999967pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:55.769267pt;}
.y28{bottom:88.575587pt;}
.y85{bottom:98.847693pt;}
.y27{bottom:110.040427pt;}
.y84{bottom:120.312533pt;}
.y26{bottom:131.505267pt;}
.y83{bottom:141.777387pt;}
.y68{bottom:141.908960pt;}
.y48{bottom:142.303440pt;}
.y25{bottom:158.303440pt;}
.y82{bottom:163.242227pt;}
.y67{bottom:163.373800pt;}
.y47{bottom:163.768280pt;}
.y81{bottom:184.707067pt;}
.y66{bottom:184.838640pt;}
.y46{bottom:185.233120pt;}
.y24{bottom:190.434947pt;}
.y80{bottom:206.171933pt;}
.y65{bottom:206.303480pt;}
.y45{bottom:206.697960pt;}
.y23{bottom:211.899787pt;}
.y7f{bottom:227.636773pt;}
.y64{bottom:227.768320pt;}
.y44{bottom:228.162800pt;}
.y22{bottom:238.697960pt;}
.y7e{bottom:249.101613pt;}
.y63{bottom:249.233160pt;}
.y43{bottom:249.627640pt;}
.y7d{bottom:270.566453pt;}
.y62{bottom:270.698000pt;}
.y21{bottom:270.829507pt;}
.y42{bottom:271.092480pt;}
.y7c{bottom:292.031293pt;}
.y61{bottom:292.162840pt;}
.y20{bottom:292.294347pt;}
.y41{bottom:292.557320pt;}
.y7b{bottom:313.496133pt;}
.y60{bottom:313.627680pt;}
.y1f{bottom:313.759187pt;}
.y40{bottom:319.355493pt;}
.y7a{bottom:334.960973pt;}
.y5f{bottom:335.092520pt;}
.y1e{bottom:340.557360pt;}
.y3f{bottom:351.487000pt;}
.y79{bottom:356.425893pt;}
.y5e{bottom:356.557360pt;}
.y1d{bottom:372.688867pt;}
.y3e{bottom:372.951840pt;}
.y78{bottom:377.890733pt;}
.y5d{bottom:383.355533pt;}
.y3d{bottom:394.416680pt;}
.y77{bottom:399.355533pt;}
.y1c{bottom:399.487040pt;}
.y5c{bottom:415.487040pt;}
.y3c{bottom:421.214853pt;}
.y76{bottom:431.487080pt;}
.y1b{bottom:431.618547pt;}
.y5b{bottom:436.951880pt;}
.y75{bottom:452.951920pt;}
.y1a{bottom:453.083387pt;}
.y3b{bottom:453.346360pt;}
.y5a{bottom:458.416720pt;}
.y74{bottom:474.416760pt;}
.y19{bottom:474.548227pt;}
.y3a{bottom:474.811200pt;}
.y59{bottom:479.881560pt;}
.y73{bottom:495.881600pt;}
.y18{bottom:496.013067pt;}
.y39{bottom:496.276040pt;}
.y58{bottom:501.346400pt;}
.y72{bottom:517.346440pt;}
.y17{bottom:517.477907pt;}
.y38{bottom:517.740880pt;}
.y57{bottom:522.811240pt;}
.y71{bottom:538.811280pt;}
.y37{bottom:539.205720pt;}
.y16{bottom:544.276080pt;}
.y70{bottom:560.276120pt;}
.y15{bottom:565.740920pt;}
.y36{bottom:571.337267pt;}
.y6f{bottom:581.740960pt;}
.y14{bottom:587.205760pt;}
.y35{bottom:598.135440pt;}
.y6e{bottom:603.205800pt;}
.y13{bottom:608.670600pt;}
.y56{bottom:614.003933pt;}
.y6d{bottom:630.003973pt;}
.y12{bottom:630.135440pt;}
.y34{bottom:630.266947pt;}
.y55{bottom:646.135480pt;}
.y33{bottom:651.731787pt;}
.y6c{bottom:662.135480pt;}
.y11{bottom:662.266987pt;}
.y54{bottom:667.600320pt;}
.y93{bottom:678.135440pt;}
.y32{bottom:678.529960pt;}
.y6b{bottom:683.600320pt;}
.y10{bottom:683.731787pt;}
.y53{bottom:689.065160pt;}
.y92{bottom:699.600280pt;}
.y6a{bottom:705.065160pt;}
.yf{bottom:710.530000pt;}
.y31{bottom:710.661467pt;}
.y52{bottom:715.863333pt;}
.y91{bottom:721.065120pt;}
.y69{bottom:726.530000pt;}
.ye{bottom:731.994840pt;}
.y30{bottom:732.126307pt;}
.y90{bottom:742.529960pt;}
.y51{bottom:747.994840pt;}
.yd{bottom:753.459680pt;}
.y2f{bottom:758.924480pt;}
.y8f{bottom:763.994800pt;}
.y50{bottom:769.459680pt;}
.yc{bottom:774.924520pt;}
.y8e{bottom:785.459640pt;}
.y4f{bottom:790.924520pt;}
.y2e{bottom:791.055987pt;}
.yb{bottom:796.389360pt;}
.y8d{bottom:806.924480pt;}
.y4e{bottom:812.389360pt;}
.y2d{bottom:812.520827pt;}
.ya{bottom:817.854200pt;}
.y8c{bottom:828.389333pt;}
.y4d{bottom:833.854200pt;}
.y9{bottom:839.319040pt;}
.y8b{bottom:849.854173pt;}
.y4c{bottom:855.319040pt;}
.y8a{bottom:871.319013pt;}
.y8{bottom:871.450547pt;}
.y4b{bottom:876.783880pt;}
.y89{bottom:892.783880pt;}
.y7{bottom:892.915387pt;}
.y4a{bottom:898.248720pt;}
.y88{bottom:914.248720pt;}
.y2c{bottom:919.713560pt;}
.y6{bottom:925.046893pt;}
.y87{bottom:935.713560pt;}
.y49{bottom:941.178400pt;}
.y5{bottom:946.511733pt;}
.y2b{bottom:951.845067pt;}
.y86{bottom:957.178400pt;}
.y2a{bottom:973.309907pt;}
.y4{bottom:978.643240pt;}
.y29{bottom:994.774747pt;}
.y3{bottom:1000.108080pt;}
.y2{bottom:1021.572920pt;}
.h3{height:50.604167pt;}
.h2{height:51.880208pt;}
.h0{height:1122.533360pt;}
.h1{height:1122.666667pt;}
.w0{width:793.733320pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:75.866667pt;}
.xf{left:85.133320pt;}
.xd{left:99.133293pt;}
.x2{left:109.805813pt;}
.x9{left:123.066653pt;}
.x8{left:124.956147pt;}
.xb{left:147.133293pt;}
.x3{left:166.110387pt;}
.xc{left:171.133293pt;}
.x6{left:189.249613pt;}
.xe{left:291.330173pt;}
.x4{left:292.628827pt;}
.x7{left:329.715907pt;}
.x5{left:341.646773pt;}
.x1{left:382.866667pt;}
}




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