
    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_b10793f852f6e5a42f1ffdf2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_e8611b493c2327c09aae054a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197754;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_1c439b43e9867be5e94cd325.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_fbfbf0cb294944f99a155d5d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.903320;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-18.810000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.776000px;}
.v1{vertical-align:82.800000px;}
.ls20{letter-spacing:-7.107000px;}
.ls1e{letter-spacing:-6.969000px;}
.ls1d{letter-spacing:-6.555000px;}
.lsa{letter-spacing:-0.690000px;}
.lsb{letter-spacing:-0.552000px;}
.ls24{letter-spacing:-0.483000px;}
.ls23{letter-spacing:-0.345000px;}
.ls25{letter-spacing:-0.276000px;}
.ls16{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.207000px;}
.lsc{letter-spacing:-0.069000px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.138000px;}
.ls4{letter-spacing:0.207000px;}
.ls13{letter-spacing:0.207158px;}
.ls7{letter-spacing:0.276000px;}
.ls1c{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.345000px;}
.ls3{letter-spacing:0.414000px;}
.ls1b{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.483000px;}
.ls1a{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.552000px;}
.ls6{letter-spacing:0.621000px;}
.ls11{letter-spacing:0.690000px;}
.lse{letter-spacing:0.759000px;}
.ls14{letter-spacing:0.828000px;}
.ls15{letter-spacing:0.897000px;}
.ls22{letter-spacing:0.966000px;}
.lsf{letter-spacing:1.035000px;}
.ls10{letter-spacing:1.104000px;}
.ls12{letter-spacing:1.311000px;}
.ls29{letter-spacing:1.323000px;}
.ls26{letter-spacing:1.380000px;}
.ls21{letter-spacing:1.518000px;}
.ls9{letter-spacing:2.730000px;}
.ls28{letter-spacing:3.339000px;}
.ls0{letter-spacing:3.900000px;}
.ls2a{letter-spacing:5.400000px;}
.ls17{letter-spacing:6.240000px;}
.ls27{letter-spacing:6.300000px;}
.ls1{letter-spacing:7.727400px;}
.ls2{letter-spacing:8.082527px;}
.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;}
}
.ws2{word-spacing:-30.348000px;}
.ws11{word-spacing:-24.003000px;}
.ws5{word-spacing:-21.075000px;}
.ws10{word-spacing:-20.079000px;}
.ws7{word-spacing:-19.734000px;}
.ws8{word-spacing:-17.871000px;}
.wsf{word-spacing:-17.595000px;}
.ws6{word-spacing:-17.388000px;}
.wse{word-spacing:-17.250000px;}
.wsc{word-spacing:-17.181000px;}
.ws3{word-spacing:-17.043000px;}
.wsa{word-spacing:-16.974000px;}
.ws1{word-spacing:-16.860000px;}
.wsb{word-spacing:-16.836000px;}
.wsd{word-spacing:-16.767000px;}
.ws9{word-spacing:-11.633400px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:461.700600px;}
._e{margin-left:-1615.748400px;}
._f{margin-left:-13.326000px;}
._d{margin-left:-12.036000px;}
._12{margin-left:-9.240000px;}
._9{margin-left:-7.932000px;}
._a{margin-left:-6.060000px;}
._1{margin-left:-4.725000px;}
._10{margin-left:-3.627000px;}
._8{margin-left:-2.520000px;}
._2{margin-left:-1.047000px;}
._7{width:1.134000px;}
._6{width:2.505000px;}
._0{width:4.260000px;}
._3{width:6.000000px;}
._5{width:7.500000px;}
._4{width:9.360000px;}
._b{width:10.695000px;}
._11{width:12.033000px;}
._c{width:18.850642px;}
.fc1{color:rgb(91,90,34);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:34.200000px;}
.fs9{font-size:41.400000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:202.104000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:77.948850px;}
.y1{bottom:77.960550px;}
.y22{bottom:127.569900px;}
.y96{bottom:128.643750px;}
.y70{bottom:132.257700px;}
.y49{bottom:132.269400px;}
.y21{bottom:148.769400px;}
.y95{bottom:150.085500px;}
.y48{bottom:150.450900px;}
.y47{bottom:166.947900px;}
.y94{bottom:171.527250px;}
.y46{bottom:183.444900px;}
.y6f{bottom:185.377350px;}
.y93{bottom:192.969000px;}
.y20{bottom:201.033300px;}
.y6e{bottom:205.627350px;}
.y92{bottom:214.410750px;}
.y1f{bottom:221.888550px;}
.y6d{bottom:225.877350px;}
.y91{bottom:235.852500px;}
.y1e{bottom:241.984800px;}
.y45{bottom:245.834850px;}
.y6c{bottom:256.610400px;}
.y90{bottom:257.294250px;}
.y1d{bottom:262.684800px;}
.y44{bottom:266.379600px;}
.y6b{bottom:277.465650px;}
.y8f{bottom:278.736000px;}
.y1c{bottom:283.384800px;}
.y43{bottom:286.924350px;}
.y6a{bottom:298.320900px;}
.y8e{bottom:300.177750px;}
.y1b{bottom:304.084800px;}
.y42{bottom:307.626600px;}
.y69{bottom:319.176150px;}
.y8d{bottom:321.619500px;}
.y1a{bottom:324.784800px;}
.y41{bottom:328.171350px;}
.y68{bottom:340.031400px;}
.y8c{bottom:343.061250px;}
.y19{bottom:345.484800px;}
.y40{bottom:348.716100px;}
.y67{bottom:360.886650px;}
.y8b{bottom:364.503000px;}
.y18{bottom:366.184800px;}
.y3f{bottom:369.260850px;}
.y66{bottom:381.741900px;}
.y8a{bottom:385.944750px;}
.y17{bottom:386.884800px;}
.y3e{bottom:389.805600px;}
.y65{bottom:402.597150px;}
.y89{bottom:407.386500px;}
.y16{bottom:407.584800px;}
.y3d{bottom:410.350350px;}
.y64{bottom:423.452400px;}
.y15{bottom:428.284800px;}
.y88{bottom:428.828250px;}
.y3c{bottom:430.895100px;}
.y63{bottom:444.307650px;}
.y14{bottom:448.984800px;}
.y87{bottom:450.270000px;}
.y3b{bottom:451.439850px;}
.y62{bottom:465.162900px;}
.y13{bottom:469.684800px;}
.y86{bottom:471.711750px;}
.y3a{bottom:471.984600px;}
.y61{bottom:486.018150px;}
.y12{bottom:490.384800px;}
.y39{bottom:492.529350px;}
.y85{bottom:493.153500px;}
.y60{bottom:506.873400px;}
.y11{bottom:511.084800px;}
.y38{bottom:513.074100px;}
.y84{bottom:514.595250px;}
.y5f{bottom:527.728650px;}
.y10{bottom:531.784800px;}
.y37{bottom:533.618850px;}
.y83{bottom:536.037000px;}
.y5e{bottom:548.583900px;}
.yf{bottom:552.484800px;}
.y36{bottom:554.163600px;}
.y82{bottom:557.478750px;}
.y5d{bottom:569.439150px;}
.ye{bottom:573.184800px;}
.y35{bottom:574.708350px;}
.y81{bottom:578.782500px;}
.y5c{bottom:590.294400px;}
.yd{bottom:593.884800px;}
.y34{bottom:595.253100px;}
.y80{bottom:600.086250px;}
.y5b{bottom:611.149650px;}
.yc{bottom:614.584800px;}
.y33{bottom:615.797850px;}
.y7f{bottom:621.390000px;}
.y5a{bottom:632.004900px;}
.yb{bottom:635.284800px;}
.y32{bottom:636.342600px;}
.y7e{bottom:642.693750px;}
.y59{bottom:652.860150px;}
.ya0{bottom:653.408700px;}
.ya{bottom:655.984800px;}
.y31{bottom:656.887350px;}
.y7d{bottom:663.997500px;}
.y9f{bottom:673.658700px;}
.y58{bottom:673.715400px;}
.y30{bottom:677.432100px;}
.y7c{bottom:685.301250px;}
.y57{bottom:694.570650px;}
.y2f{bottom:697.976850px;}
.y7b{bottom:706.605000px;}
.y9e{bottom:708.908700px;}
.y9{bottom:715.084650px;}
.y56{bottom:715.425900px;}
.y2e{bottom:718.521600px;}
.y7a{bottom:727.908750px;}
.y8{bottom:734.584650px;}
.y55{bottom:736.281150px;}
.y2d{bottom:739.066350px;}
.y79{bottom:749.212500px;}
.y54{bottom:757.136400px;}
.y7{bottom:758.336700px;}
.y9d{bottom:759.158400px;}
.y2c{bottom:759.611100px;}
.y78{bottom:770.516250px;}
.y53{bottom:777.991650px;}
.y2b{bottom:780.155850px;}
.y9c{bottom:786.862650px;}
.y6{bottom:790.736700px;}
.y77{bottom:791.820000px;}
.y52{bottom:798.846900px;}
.y2a{bottom:800.700600px;}
.y76{bottom:813.123750px;}
.y9b{bottom:814.559100px;}
.y51{bottom:819.702150px;}
.y29{bottom:821.245350px;}
.y5{bottom:823.136700px;}
.y9a{bottom:833.758350px;}
.y50{bottom:840.536400px;}
.y28{bottom:841.790100px;}
.y75{bottom:845.053650px;}
.y99{bottom:852.957600px;}
.y4f{bottom:861.391650px;}
.y27{bottom:862.334850px;}
.y74{bottom:865.003650px;}
.y98{bottom:872.015100px;}
.y4{bottom:878.336700px;}
.y4e{bottom:882.246900px;}
.y26{bottom:882.879600px;}
.y73{bottom:884.953650px;}
.y97{bottom:891.072600px;}
.y3{bottom:896.336700px;}
.y4d{bottom:903.102150px;}
.y25{bottom:903.424350px;}
.y72{bottom:905.203650px;}
.y4c{bottom:923.957400px;}
.y24{bottom:923.969100px;}
.y2{bottom:924.966600px;}
.y71{bottom:925.453650px;}
.y4b{bottom:969.664200px;}
.y23{bottom:969.675900px;}
.h8{height:33.291563px;}
.hb{height:46.312500px;}
.hd{height:50.947266px;}
.h9{height:52.101562px;}
.he{height:53.494629px;}
.h2{height:57.890625px;}
.h3{height:60.785156px;}
.h7{height:66.574219px;}
.hc{height:66.658219px;}
.ha{height:72.363281px;}
.h4{height:81.046875px;}
.h5{height:104.203125px;}
.h6{height:149.374219px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:744.000000px;}
.w0{width:744.094500px;}
.x0{left:0.000000px;}
.x9{left:85.044563px;}
.xb{left:89.100600px;}
.xa{left:99.921300px;}
.x1{left:106.299150px;}
.x5{left:110.360400px;}
.x6{left:121.193925px;}
.x4{left:127.550625px;}
.xd{left:136.063050px;}
.x3{left:140.234550px;}
.xc{left:157.323000px;}
.x7{left:233.858250px;}
.x2{left:255.118200px;}
.x8{left:609.670350px;}
@media print{
.v3{vertical-align:-16.720000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.245333pt;}
.v1{vertical-align:73.600000pt;}
.ls20{letter-spacing:-6.317333pt;}
.ls1e{letter-spacing:-6.194667pt;}
.ls1d{letter-spacing:-5.826667pt;}
.lsa{letter-spacing:-0.613333pt;}
.lsb{letter-spacing:-0.490667pt;}
.ls24{letter-spacing:-0.429333pt;}
.ls23{letter-spacing:-0.306667pt;}
.ls25{letter-spacing:-0.245333pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.184000pt;}
.lsc{letter-spacing:-0.061333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.122667pt;}
.ls4{letter-spacing:0.184000pt;}
.ls13{letter-spacing:0.184140pt;}
.ls7{letter-spacing:0.245333pt;}
.ls1c{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.306667pt;}
.ls3{letter-spacing:0.368000pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.429333pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.490667pt;}
.ls6{letter-spacing:0.552000pt;}
.ls11{letter-spacing:0.613333pt;}
.lse{letter-spacing:0.674667pt;}
.ls14{letter-spacing:0.736000pt;}
.ls15{letter-spacing:0.797333pt;}
.ls22{letter-spacing:0.858667pt;}
.lsf{letter-spacing:0.920000pt;}
.ls10{letter-spacing:0.981333pt;}
.ls12{letter-spacing:1.165333pt;}
.ls29{letter-spacing:1.176000pt;}
.ls26{letter-spacing:1.226667pt;}
.ls21{letter-spacing:1.349333pt;}
.ls9{letter-spacing:2.426667pt;}
.ls28{letter-spacing:2.968000pt;}
.ls0{letter-spacing:3.466667pt;}
.ls2a{letter-spacing:4.800000pt;}
.ls17{letter-spacing:5.546667pt;}
.ls27{letter-spacing:5.600000pt;}
.ls1{letter-spacing:6.868800pt;}
.ls2{letter-spacing:7.184468pt;}
.ws2{word-spacing:-26.976000pt;}
.ws11{word-spacing:-21.336000pt;}
.ws5{word-spacing:-18.733333pt;}
.ws10{word-spacing:-17.848000pt;}
.ws7{word-spacing:-17.541333pt;}
.ws8{word-spacing:-15.885333pt;}
.wsf{word-spacing:-15.640000pt;}
.ws6{word-spacing:-15.456000pt;}
.wse{word-spacing:-15.333333pt;}
.wsc{word-spacing:-15.272000pt;}
.ws3{word-spacing:-15.149333pt;}
.wsa{word-spacing:-15.088000pt;}
.ws1{word-spacing:-14.986667pt;}
.wsb{word-spacing:-14.965333pt;}
.wsd{word-spacing:-14.904000pt;}
.ws9{word-spacing:-10.340800pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:410.400533pt;}
._e{margin-left:-1436.220800pt;}
._f{margin-left:-11.845333pt;}
._d{margin-left:-10.698667pt;}
._12{margin-left:-8.213333pt;}
._9{margin-left:-7.050667pt;}
._a{margin-left:-5.386667pt;}
._1{margin-left:-4.200000pt;}
._10{margin-left:-3.224000pt;}
._8{margin-left:-2.240000pt;}
._2{margin-left:-0.930667pt;}
._7{width:1.008000pt;}
._6{width:2.226667pt;}
._0{width:3.786667pt;}
._3{width:5.333333pt;}
._5{width:6.666667pt;}
._4{width:8.320000pt;}
._b{width:9.506667pt;}
._11{width:10.696000pt;}
._c{width:16.756126pt;}
.fsa{font-size:30.400000pt;}
.fs9{font-size:36.800000pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:179.648000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:69.287867pt;}
.y1{bottom:69.298267pt;}
.y22{bottom:113.395467pt;}
.y96{bottom:114.350000pt;}
.y70{bottom:117.562400pt;}
.y49{bottom:117.572800pt;}
.y21{bottom:132.239467pt;}
.y95{bottom:133.409333pt;}
.y48{bottom:133.734133pt;}
.y47{bottom:148.398133pt;}
.y94{bottom:152.468667pt;}
.y46{bottom:163.062133pt;}
.y6f{bottom:164.779867pt;}
.y93{bottom:171.528000pt;}
.y20{bottom:178.696267pt;}
.y6e{bottom:182.779867pt;}
.y92{bottom:190.587333pt;}
.y1f{bottom:197.234267pt;}
.y6d{bottom:200.779867pt;}
.y91{bottom:209.646667pt;}
.y1e{bottom:215.097600pt;}
.y45{bottom:218.519867pt;}
.y6c{bottom:228.098133pt;}
.y90{bottom:228.706000pt;}
.y1d{bottom:233.497600pt;}
.y44{bottom:236.781867pt;}
.y6b{bottom:246.636133pt;}
.y8f{bottom:247.765333pt;}
.y1c{bottom:251.897600pt;}
.y43{bottom:255.043867pt;}
.y6a{bottom:265.174133pt;}
.y8e{bottom:266.824667pt;}
.y1b{bottom:270.297600pt;}
.y42{bottom:273.445867pt;}
.y69{bottom:283.712133pt;}
.y8d{bottom:285.884000pt;}
.y1a{bottom:288.697600pt;}
.y41{bottom:291.707867pt;}
.y68{bottom:302.250133pt;}
.y8c{bottom:304.943333pt;}
.y19{bottom:307.097600pt;}
.y40{bottom:309.969867pt;}
.y67{bottom:320.788133pt;}
.y8b{bottom:324.002667pt;}
.y18{bottom:325.497600pt;}
.y3f{bottom:328.231867pt;}
.y66{bottom:339.326133pt;}
.y8a{bottom:343.062000pt;}
.y17{bottom:343.897600pt;}
.y3e{bottom:346.493867pt;}
.y65{bottom:357.864133pt;}
.y89{bottom:362.121333pt;}
.y16{bottom:362.297600pt;}
.y3d{bottom:364.755867pt;}
.y64{bottom:376.402133pt;}
.y15{bottom:380.697600pt;}
.y88{bottom:381.180667pt;}
.y3c{bottom:383.017867pt;}
.y63{bottom:394.940133pt;}
.y14{bottom:399.097600pt;}
.y87{bottom:400.240000pt;}
.y3b{bottom:401.279867pt;}
.y62{bottom:413.478133pt;}
.y13{bottom:417.497600pt;}
.y86{bottom:419.299333pt;}
.y3a{bottom:419.541867pt;}
.y61{bottom:432.016133pt;}
.y12{bottom:435.897600pt;}
.y39{bottom:437.803867pt;}
.y85{bottom:438.358667pt;}
.y60{bottom:450.554133pt;}
.y11{bottom:454.297600pt;}
.y38{bottom:456.065867pt;}
.y84{bottom:457.418000pt;}
.y5f{bottom:469.092133pt;}
.y10{bottom:472.697600pt;}
.y37{bottom:474.327867pt;}
.y83{bottom:476.477333pt;}
.y5e{bottom:487.630133pt;}
.yf{bottom:491.097600pt;}
.y36{bottom:492.589867pt;}
.y82{bottom:495.536667pt;}
.y5d{bottom:506.168133pt;}
.ye{bottom:509.497600pt;}
.y35{bottom:510.851867pt;}
.y81{bottom:514.473333pt;}
.y5c{bottom:524.706133pt;}
.yd{bottom:527.897600pt;}
.y34{bottom:529.113867pt;}
.y80{bottom:533.410000pt;}
.y5b{bottom:543.244133pt;}
.yc{bottom:546.297600pt;}
.y33{bottom:547.375867pt;}
.y7f{bottom:552.346667pt;}
.y5a{bottom:561.782133pt;}
.yb{bottom:564.697600pt;}
.y32{bottom:565.637867pt;}
.y7e{bottom:571.283333pt;}
.y59{bottom:580.320133pt;}
.ya0{bottom:580.807733pt;}
.ya{bottom:583.097600pt;}
.y31{bottom:583.899867pt;}
.y7d{bottom:590.220000pt;}
.y9f{bottom:598.807733pt;}
.y58{bottom:598.858133pt;}
.y30{bottom:602.161867pt;}
.y7c{bottom:609.156667pt;}
.y57{bottom:617.396133pt;}
.y2f{bottom:620.423867pt;}
.y7b{bottom:628.093333pt;}
.y9e{bottom:630.141067pt;}
.y9{bottom:635.630800pt;}
.y56{bottom:635.934133pt;}
.y2e{bottom:638.685867pt;}
.y7a{bottom:647.030000pt;}
.y8{bottom:652.964133pt;}
.y55{bottom:654.472133pt;}
.y2d{bottom:656.947867pt;}
.y79{bottom:665.966667pt;}
.y54{bottom:673.010133pt;}
.y7{bottom:674.077067pt;}
.y9d{bottom:674.807467pt;}
.y2c{bottom:675.209867pt;}
.y78{bottom:684.903333pt;}
.y53{bottom:691.548133pt;}
.y2b{bottom:693.471867pt;}
.y9c{bottom:699.433467pt;}
.y6{bottom:702.877067pt;}
.y77{bottom:703.840000pt;}
.y52{bottom:710.086133pt;}
.y2a{bottom:711.733867pt;}
.y76{bottom:722.776667pt;}
.y9b{bottom:724.052533pt;}
.y51{bottom:728.624133pt;}
.y29{bottom:729.995867pt;}
.y5{bottom:731.677067pt;}
.y9a{bottom:741.118533pt;}
.y50{bottom:747.143467pt;}
.y28{bottom:748.257867pt;}
.y75{bottom:751.158800pt;}
.y99{bottom:758.184533pt;}
.y4f{bottom:765.681467pt;}
.y27{bottom:766.519867pt;}
.y74{bottom:768.892133pt;}
.y98{bottom:775.124533pt;}
.y4{bottom:780.743733pt;}
.y4e{bottom:784.219467pt;}
.y26{bottom:784.781867pt;}
.y73{bottom:786.625467pt;}
.y97{bottom:792.064533pt;}
.y3{bottom:796.743733pt;}
.y4d{bottom:802.757467pt;}
.y25{bottom:803.043867pt;}
.y72{bottom:804.625467pt;}
.y4c{bottom:821.295467pt;}
.y24{bottom:821.305867pt;}
.y2{bottom:822.192533pt;}
.y71{bottom:822.625467pt;}
.y4b{bottom:861.923733pt;}
.y23{bottom:861.934133pt;}
.h8{height:29.592500pt;}
.hb{height:41.166667pt;}
.hd{height:45.286458pt;}
.h9{height:46.312500pt;}
.he{height:47.550781pt;}
.h2{height:51.458333pt;}
.h3{height:54.031250pt;}
.h7{height:59.177083pt;}
.hc{height:59.251750pt;}
.ha{height:64.322917pt;}
.h4{height:72.041667pt;}
.h5{height:92.625000pt;}
.h6{height:132.777083pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:661.333333pt;}
.w0{width:661.417333pt;}
.x0{left:0.000000pt;}
.x9{left:75.595167pt;}
.xb{left:79.200533pt;}
.xa{left:88.818933pt;}
.x1{left:94.488133pt;}
.x5{left:98.098133pt;}
.x6{left:107.727933pt;}
.x4{left:113.378333pt;}
.xd{left:120.944933pt;}
.x3{left:124.652933pt;}
.xc{left:139.842667pt;}
.x7{left:207.874000pt;}
.x2{left:226.771733pt;}
.x8{left:541.929200pt;}
}




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