
    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_9beea8c1ca1e9fbe1a56a677.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_63ce69a42a54606092811fdc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008000;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_b2a456b625d45bc976b45c1d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_16e0b074902b4e39751ecc30.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.038000;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_9281aa278d8def3eea1619d3.woff2')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_73c1c0d459575436bd0c70be.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b3dc21c337f3ac91ba9c16ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a9007424e9fa82997978ee2f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690000;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:ff9;src:url('chunks/assets/font_3d4902fc15ed7f2c40bc810e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.230000;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:ffa;src:url('chunks/assets/font_bfcaaac807fd27d4f7899214.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.066000;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:ffb;src:url('chunks/assets/font_29b164a4525fee821b6ac755.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727051;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:ffc;src:url('chunks/assets/font_c6f462a7b488149e3c29ce98.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871582;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:ffd;src:url('chunks/assets/font_4d580c1eb1f84d9425316160.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.718000;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:ffe;src:url('chunks/assets/font_c16ac917617bcfe57ced5056.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960000;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:fff;src:url('chunks/assets/font_964b1904c37e736a835cb50e.woff2')format("woff");}.fff{font-family:fff;line-height:0.962891;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:ff10;src:url('chunks/assets/font_5d8022d33ef299ca1b1f56f4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.966000;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:ff11;src:url('chunks/assets/font_fce11ac2a53486bbcffbd392.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.008000;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:ff12;src:url('chunks/assets/font_f8fd5c04d8f2bef3cb340839.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.746000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v4{vertical-align:-34.965000px;}
.v8{vertical-align:-31.569534px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.527000px;}
.v6{vertical-align:6.064620px;}
.v3{vertical-align:21.384000px;}
.v5{vertical-align:23.328000px;}
.v7{vertical-align:25.314846px;}
.v2{vertical-align:39.960000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.013200px;}
.ls2{letter-spacing:9.354000px;}
.ls4{letter-spacing:24.000000px;}
.ls3{letter-spacing:26.928000px;}
.ls8{letter-spacing:92.999940px;}
.ls1{letter-spacing:93.000000px;}
.ls6{letter-spacing:93.000060px;}
.ls9{letter-spacing:120.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;}
}
.ws4{word-spacing:-120.000000px;}
.ws8{word-spacing:-108.000000px;}
.ws6{word-spacing:-33.360000px;}
.ws5{word-spacing:-19.279995px;}
.ws3{word-spacing:-18.720000px;}
.ws7{word-spacing:-0.216000px;}
.ws2{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-23.976000px;}
._4{margin-left:-13.320000px;}
._6{margin-left:-11.880000px;}
._0{margin-left:-5.712000px;}
._5{margin-left:-3.888000px;}
._2{margin-left:-2.592000px;}
._1{margin-left:-1.512000px;}
._8{width:1.104000px;}
._3{width:2.592000px;}
._7{width:1076.890200px;}
.fc7{color:rgb(255,127,13);}
.fc3{color:rgb(193,229,245);}
.fc6{color:rgb(70,177,225);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(117,117,117);}
.fc2{color:rgb(232,232,232);}
.fc1{color:rgb(116,116,116);}
.fc0{color:rgb(131,203,235);}
.fs3{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:76.680000px;}
.fsc{font-size:79.999980px;}
.fs2{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs1{font-size:164.640000px;}
.fs9{font-size:187.920000px;}
.fsa{font-size:216.000000px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:0.306660px;}
.y2a{bottom:7.679850px;}
.y12{bottom:8.171136px;}
.y32{bottom:8.196000px;}
.y16{bottom:8.449020px;}
.y19{bottom:9.009600px;}
.y39{bottom:9.220500px;}
.y65{bottom:10.889850px;}
.y1d{bottom:10.889955px;}
.y14{bottom:10.890000px;}
.y4{bottom:14.764455px;}
.y1b{bottom:16.894500px;}
.y23{bottom:19.102350px;}
.y2e{bottom:19.102410px;}
.y25{bottom:19.102500px;}
.y30{bottom:21.224850px;}
.y37{bottom:21.224970px;}
.y5a{bottom:21.225000px;}
.y42{bottom:22.223850px;}
.y5{bottom:29.974050px;}
.y3f{bottom:31.318185px;}
.y40{bottom:31.589955px;}
.y7{bottom:32.275455px;}
.y51{bottom:32.468400px;}
.y5f{bottom:32.602440px;}
.y63{bottom:36.224925px;}
.y4b{bottom:36.496500px;}
.y61{bottom:38.339955px;}
.yc{bottom:40.343100px;}
.y11{bottom:40.343130px;}
.y20{bottom:41.474895px;}
.y52{bottom:50.048160px;}
.y3e{bottom:54.456390px;}
.y2d{bottom:56.602410px;}
.y2c{bottom:57.107055px;}
.y5d{bottom:61.724850px;}
.y59{bottom:61.725000px;}
.y1e{bottom:62.395875px;}
.y5e{bottom:62.983380px;}
.y3{bottom:68.449845px;}
.y4a{bottom:75.864750px;}
.yd{bottom:82.146570px;}
.y1c{bottom:85.764810px;}
.y62{bottom:94.212615px;}
.yb{bottom:101.093100px;}
.y10{bottom:101.093130px;}
.y28{bottom:102.224850px;}
.y1f{bottom:102.224925px;}
.y53{bottom:102.224940px;}
.y36{bottom:102.224970px;}
.y50{bottom:114.600150px;}
.y3d{bottom:115.206390px;}
.y35{bottom:142.724970px;}
.y34{bottom:149.539530px;}
.y4f{bottom:153.968400px;}
.y49{bottom:156.864750px;}
.ya{bottom:161.843100px;}
.yf{bottom:161.843130px;}
.y27{bottom:162.974850px;}
.y3c{bottom:177.088200px;}
.y60{bottom:196.653300px;}
.y64{bottom:204.903600px;}
.y48{bottom:206.364750px;}
.y3a{bottom:220.542600px;}
.y5c{bottom:223.960050px;}
.y45{bottom:229.584900px;}
.y9{bottom:230.420850px;}
.ye{bottom:230.420880px;}
.y33{bottom:234.743850px;}
.y4e{bottom:236.100150px;}
.y3b{bottom:237.113100px;}
.y18{bottom:237.314250px;}
.y13{bottom:247.621950px;}
.y38{bottom:255.061050px;}
.y2b{bottom:259.299600px;}
.y4d{bottom:276.600150px;}
.y4c{bottom:279.169500px;}
.y47{bottom:288.496500px;}
.y46{bottom:328.996500px;}
.y43{bottom:333.364500px;}
.y5b{bottom:364.605000px;}
.y41{bottom:385.210200px;}
.y31{bottom:388.743750px;}
.y57{bottom:403.130400px;}
.y66{bottom:414.202500px;}
.y26{bottom:415.699950px;}
.y2{bottom:417.668400px;}
.y8{bottom:424.470000px;}
.y2f{bottom:424.727550px;}
.y56{bottom:435.819300px;}
.y58{bottom:440.301000px;}
.y29{bottom:449.494950px;}
.y24{bottom:469.855500px;}
.y55{bottom:496.569300px;}
.y15{bottom:527.002650px;}
.y1{bottom:528.368400px;}
.y44{bottom:540.340050px;}
.y54{bottom:557.319300px;}
.y22{bottom:564.499800px;}
.y1a{bottom:674.284500px;}
.y21{bottom:693.271950px;}
.y6{bottom:783.794100px;}
.hc{height:31.398030px;}
.hb{height:31.800000px;}
.hf{height:37.791630px;}
.h5{height:46.080000px;}
.he{height:51.222240px;}
.h2{height:55.200000px;}
.h6{height:55.296000px;}
.h16{height:55.940970px;}
.h23{height:58.593465px;}
.h28{height:60.989955px;}
.h22{height:61.360620px;}
.h11{height:62.700000px;}
.h4{height:64.512000px;}
.h29{height:69.440985px;}
.h1c{height:73.728000px;}
.h2b{height:75.989985px;}
.h1d{height:76.580250px;}
.h17{height:82.944000px;}
.h24{height:90.703125px;}
.hd{height:91.795680px;}
.h14{height:92.160000px;}
.h2a{height:92.880000px;}
.h1a{height:93.440970px;}
.h9{height:96.687000px;}
.ha{height:96.687120px;}
.h27{height:101.489955px;}
.h2c{height:103.200000px;}
.h21{height:107.727120px;}
.h8{height:108.864000px;}
.h10{height:115.128000px;}
.h3{height:126.443520px;}
.h13{height:141.989955px;}
.h12{height:144.322560px;}
.h19{height:158.700000px;}
.h15{height:165.888000px;}
.h1e{height:182.490000px;}
.h1b{height:187.959300px;}
.h18{height:202.740000px;}
.h20{height:216.853200px;}
.h1{height:276.480000px;}
.h7{height:279.039000px;}
.h26{height:316.365150px;}
.h1f{height:360.879600px;}
.h25{height:368.761500px;}
.h0{height:810.000000px;}
.w4{width:40.468350px;}
.we{width:49.391985px;}
.w10{width:55.941000px;}
.w5{width:87.952920px;}
.w1e{width:94.500000px;}
.w9{width:136.273065px;}
.wb{width:136.555755px;}
.w3{width:136.555875px;}
.w12{width:156.470850px;}
.w1a{width:175.582950px;}
.w1b{width:177.535200px;}
.w7{width:219.714750px;}
.w14{width:250.993050px;}
.w15{width:251.901300px;}
.w16{width:366.590850px;}
.wc{width:375.487800px;}
.wf{width:473.469450px;}
.w1{width:544.959450px;}
.wd{width:555.435000px;}
.w17{width:555.979200px;}
.w18{width:561.174900px;}
.wa{width:592.875000px;}
.w11{width:624.545100px;}
.w8{width:684.950100px;}
.w19{width:735.007800px;}
.w2{width:809.462550px;}
.w13{width:1162.712400px;}
.w1c{width:1231.879050px;}
.w1d{width:1233.535200px;}
.w6{width:1263.287250px;}
.w0{width:1440.000000px;}
.x11{left:-3.753000px;}
.xe{left:-1.026000px;}
.x0{left:0.000000px;}
.xc{left:5.400000px;}
.x16{left:9.220350px;}
.xa{left:10.799999px;}
.x6{left:12.030354px;}
.x36{left:14.741550px;}
.x13{left:16.043640px;}
.xf{left:25.899150px;}
.x20{left:32.412045px;}
.x35{left:34.451550px;}
.x23{left:36.838500px;}
.x1c{left:41.741550px;}
.x2d{left:43.994970px;}
.x30{left:50.745000px;}
.x1{left:52.874940px;}
.x37{left:57.387750px;}
.x2c{left:64.244970px;}
.x9{left:66.293850px;}
.x1d{left:72.967050px;}
.x12{left:76.356360px;}
.x3b{left:92.957595px;}
.x15{left:94.114245px;}
.x32{left:99.514245px;}
.x39{left:104.060445px;}
.x1f{left:105.429015px;}
.xd{left:106.560090px;}
.x27{left:109.800000px;}
.x26{left:115.249500px;}
.x2b{left:118.830330px;}
.x3{left:121.106160px;}
.x4{left:125.723790px;}
.x29{left:135.057900px;}
.x28{left:138.557895px;}
.x31{left:167.234250px;}
.x5{left:185.589300px;}
.x34{left:191.170950px;}
.x22{left:193.146450px;}
.x2{left:236.475000px;}
.x8{left:315.268800px;}
.x18{left:338.595450px;}
.x10{left:341.727000px;}
.x33{left:346.814700px;}
.x3a{left:382.264500px;}
.x38{left:442.420950px;}
.x17{left:478.027500px;}
.xb{left:538.967250px;}
.x24{left:543.497700px;}
.x19{left:723.928650px;}
.x2f{left:760.721700px;}
.x1e{left:792.614100px;}
.x21{left:794.577450px;}
.x3d{left:816.750000px;}
.x2a{left:846.203550px;}
.x1b{left:871.961700px;}
.x25{left:1104.104100px;}
.x14{left:1141.517400px;}
.x3c{left:1167.576300px;}
.x1a{left:1178.647350px;}
.x2e{left:1314.288000px;}
.x7{left:1324.944000px;}
@media print{
.v4{vertical-align:-31.080000pt;}
.v8{vertical-align:-28.061808pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.024000pt;}
.v6{vertical-align:5.390773pt;}
.v3{vertical-align:19.008000pt;}
.v5{vertical-align:20.736000pt;}
.v7{vertical-align:22.502085pt;}
.v2{vertical-align:35.520000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.011733pt;}
.ls2{letter-spacing:8.314667pt;}
.ls4{letter-spacing:21.333333pt;}
.ls3{letter-spacing:23.936000pt;}
.ls8{letter-spacing:82.666613pt;}
.ls1{letter-spacing:82.666667pt;}
.ls6{letter-spacing:82.666720pt;}
.ls9{letter-spacing:106.666667pt;}
.ws4{word-spacing:-106.666667pt;}
.ws8{word-spacing:-96.000000pt;}
.ws6{word-spacing:-29.653333pt;}
.ws5{word-spacing:-17.137773pt;}
.ws3{word-spacing:-16.640000pt;}
.ws7{word-spacing:-0.192000pt;}
.ws2{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-21.312000pt;}
._4{margin-left:-11.840000pt;}
._6{margin-left:-10.560000pt;}
._0{margin-left:-5.077333pt;}
._5{margin-left:-3.456000pt;}
._2{margin-left:-2.304000pt;}
._1{margin-left:-1.344000pt;}
._8{width:0.981333pt;}
._3{width:2.304000pt;}
._7{width:957.235733pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:68.160000pt;}
.fsc{font-size:71.111093pt;}
.fs2{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs1{font-size:146.346667pt;}
.fs9{font-size:167.040000pt;}
.fsa{font-size:192.000000pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:0.272587pt;}
.y2a{bottom:6.826533pt;}
.y12{bottom:7.263232pt;}
.y32{bottom:7.285333pt;}
.y16{bottom:7.510240pt;}
.y19{bottom:8.008533pt;}
.y39{bottom:8.196000pt;}
.y65{bottom:9.679867pt;}
.y1d{bottom:9.679960pt;}
.y14{bottom:9.680000pt;}
.y4{bottom:13.123960pt;}
.y1b{bottom:15.017333pt;}
.y23{bottom:16.979867pt;}
.y2e{bottom:16.979920pt;}
.y25{bottom:16.980000pt;}
.y30{bottom:18.866533pt;}
.y37{bottom:18.866640pt;}
.y5a{bottom:18.866667pt;}
.y42{bottom:19.754533pt;}
.y5{bottom:26.643600pt;}
.y3f{bottom:27.838387pt;}
.y40{bottom:28.079960pt;}
.y7{bottom:28.689293pt;}
.y51{bottom:28.860800pt;}
.y5f{bottom:28.979947pt;}
.y63{bottom:32.199933pt;}
.y4b{bottom:32.441333pt;}
.y61{bottom:34.079960pt;}
.yc{bottom:35.860533pt;}
.y11{bottom:35.860560pt;}
.y20{bottom:36.866573pt;}
.y52{bottom:44.487253pt;}
.y3e{bottom:48.405680pt;}
.y2d{bottom:50.313253pt;}
.y2c{bottom:50.761827pt;}
.y5d{bottom:54.866533pt;}
.y59{bottom:54.866667pt;}
.y1e{bottom:55.463000pt;}
.y5e{bottom:55.985227pt;}
.y3{bottom:60.844307pt;}
.y4a{bottom:67.435333pt;}
.yd{bottom:73.019173pt;}
.y1c{bottom:76.235387pt;}
.y62{bottom:83.744547pt;}
.yb{bottom:89.860533pt;}
.y10{bottom:89.860560pt;}
.y28{bottom:90.866533pt;}
.y1f{bottom:90.866600pt;}
.y53{bottom:90.866613pt;}
.y36{bottom:90.866640pt;}
.y50{bottom:101.866800pt;}
.y3d{bottom:102.405680pt;}
.y35{bottom:126.866640pt;}
.y34{bottom:132.924027pt;}
.y4f{bottom:136.860800pt;}
.y49{bottom:139.435333pt;}
.ya{bottom:143.860533pt;}
.yf{bottom:143.860560pt;}
.y27{bottom:144.866533pt;}
.y3c{bottom:157.411733pt;}
.y60{bottom:174.802933pt;}
.y64{bottom:182.136533pt;}
.y48{bottom:183.435333pt;}
.y3a{bottom:196.037867pt;}
.y5c{bottom:199.075600pt;}
.y45{bottom:204.075467pt;}
.y9{bottom:204.818533pt;}
.ye{bottom:204.818560pt;}
.y33{bottom:208.661200pt;}
.y4e{bottom:209.866800pt;}
.y3b{bottom:210.767200pt;}
.y18{bottom:210.946000pt;}
.y13{bottom:220.108400pt;}
.y38{bottom:226.720933pt;}
.y2b{bottom:230.488533pt;}
.y4d{bottom:245.866800pt;}
.y4c{bottom:248.150667pt;}
.y47{bottom:256.441333pt;}
.y46{bottom:292.441333pt;}
.y43{bottom:296.324000pt;}
.y5b{bottom:324.093333pt;}
.y41{bottom:342.409067pt;}
.y31{bottom:345.550000pt;}
.y57{bottom:358.338133pt;}
.y66{bottom:368.180000pt;}
.y26{bottom:369.511067pt;}
.y2{bottom:371.260800pt;}
.y8{bottom:377.306667pt;}
.y2f{bottom:377.535600pt;}
.y56{bottom:387.394933pt;}
.y58{bottom:391.378667pt;}
.y29{bottom:399.551067pt;}
.y24{bottom:417.649333pt;}
.y55{bottom:441.394933pt;}
.y15{bottom:468.446800pt;}
.y1{bottom:469.660800pt;}
.y44{bottom:480.302267pt;}
.y54{bottom:495.394933pt;}
.y22{bottom:501.777600pt;}
.y1a{bottom:599.364000pt;}
.y21{bottom:616.241733pt;}
.y6{bottom:696.705867pt;}
.hc{height:27.909360pt;}
.hb{height:28.266667pt;}
.hf{height:33.592560pt;}
.h5{height:40.960000pt;}
.he{height:45.530880pt;}
.h2{height:49.066667pt;}
.h6{height:49.152000pt;}
.h16{height:49.725307pt;}
.h23{height:52.083080pt;}
.h28{height:54.213293pt;}
.h22{height:54.542773pt;}
.h11{height:55.733333pt;}
.h4{height:57.344000pt;}
.h29{height:61.725320pt;}
.h1c{height:65.536000pt;}
.h2b{height:67.546653pt;}
.h1d{height:68.071333pt;}
.h17{height:73.728000pt;}
.h24{height:80.625000pt;}
.hd{height:81.596160pt;}
.h14{height:81.920000pt;}
.h2a{height:82.560000pt;}
.h1a{height:83.058640pt;}
.h9{height:85.944000pt;}
.ha{height:85.944107pt;}
.h27{height:90.213293pt;}
.h2c{height:91.733333pt;}
.h21{height:95.757440pt;}
.h8{height:96.768000pt;}
.h10{height:102.336000pt;}
.h3{height:112.394240pt;}
.h13{height:126.213293pt;}
.h12{height:128.286720pt;}
.h19{height:141.066667pt;}
.h15{height:147.456000pt;}
.h1e{height:162.213333pt;}
.h1b{height:167.074933pt;}
.h18{height:180.213333pt;}
.h20{height:192.758400pt;}
.h1{height:245.760000pt;}
.h7{height:248.034667pt;}
.h26{height:281.213467pt;}
.h1f{height:320.781867pt;}
.h25{height:327.788000pt;}
.h0{height:720.000000pt;}
.w4{width:35.971867pt;}
.we{width:43.903987pt;}
.w10{width:49.725333pt;}
.w5{width:78.180373pt;}
.w1e{width:84.000000pt;}
.w9{width:121.131613pt;}
.wb{width:121.382893pt;}
.w3{width:121.383000pt;}
.w12{width:139.085200pt;}
.w1a{width:156.073733pt;}
.w1b{width:157.809067pt;}
.w7{width:195.302000pt;}
.w14{width:223.104933pt;}
.w15{width:223.912267pt;}
.w16{width:325.858533pt;}
.wc{width:333.766933pt;}
.wf{width:420.861733pt;}
.w1{width:484.408400pt;}
.wd{width:493.720000pt;}
.w17{width:494.203733pt;}
.w18{width:498.822133pt;}
.wa{width:527.000000pt;}
.w11{width:555.151200pt;}
.w8{width:608.844533pt;}
.w19{width:653.340267pt;}
.w2{width:719.522267pt;}
.w13{width:1033.522133pt;}
.w1c{width:1095.003600pt;}
.w1d{width:1096.475733pt;}
.w6{width:1122.922000pt;}
.w0{width:1280.000000pt;}
.x11{left:-3.336000pt;}
.xe{left:-0.912000pt;}
.x0{left:0.000000pt;}
.xc{left:4.800000pt;}
.x16{left:8.195867pt;}
.xa{left:9.599999pt;}
.x6{left:10.693648pt;}
.x36{left:13.103600pt;}
.x13{left:14.261013pt;}
.xf{left:23.021467pt;}
.x20{left:28.810707pt;}
.x35{left:30.623600pt;}
.x23{left:32.745333pt;}
.x1c{left:37.103600pt;}
.x2d{left:39.106640pt;}
.x30{left:45.106667pt;}
.x1{left:46.999947pt;}
.x37{left:51.011333pt;}
.x2c{left:57.106640pt;}
.x9{left:58.927867pt;}
.x1d{left:64.859600pt;}
.x12{left:67.872320pt;}
.x3b{left:82.628973pt;}
.x15{left:83.657107pt;}
.x32{left:88.457107pt;}
.x39{left:92.498173pt;}
.x1f{left:93.714680pt;}
.xd{left:94.720080pt;}
.x27{left:97.600000pt;}
.x26{left:102.444000pt;}
.x2b{left:105.626960pt;}
.x3{left:107.649920pt;}
.x4{left:111.754480pt;}
.x29{left:120.051467pt;}
.x28{left:123.162573pt;}
.x31{left:148.652667pt;}
.x5{left:164.968267pt;}
.x34{left:169.929733pt;}
.x22{left:171.685733pt;}
.x2{left:210.200000pt;}
.x8{left:280.238933pt;}
.x18{left:300.973733pt;}
.x10{left:303.757333pt;}
.x33{left:308.279733pt;}
.x3a{left:339.790667pt;}
.x38{left:393.263067pt;}
.x17{left:424.913333pt;}
.xb{left:479.082000pt;}
.x24{left:483.109067pt;}
.x19{left:643.492133pt;}
.x2f{left:676.197067pt;}
.x1e{left:704.545867pt;}
.x21{left:706.291067pt;}
.x3d{left:726.000000pt;}
.x2a{left:752.180933pt;}
.x1b{left:775.077067pt;}
.x25{left:981.425867pt;}
.x14{left:1014.682133pt;}
.x3c{left:1037.845600pt;}
.x1a{left:1047.686533pt;}
.x2e{left:1168.256000pt;}
.x7{left:1177.728000pt;}
}




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