
    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_281920fcff0de8ec7bd5dddb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_59c5b21d59982f76ad852907.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b77f91bd078a3c86b6c42057.woff')format("woff");}.ff3{font-family:ff3;line-height:0.908203;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_224e69e6234ff9e24521a93d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_1e0daf36bca9eed2b23a0394.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_04aee973880beaf328f0caeb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_cc1ca78e0e462d3464b5e897.woff')format("woff");}.ff7{font-family:ff7;line-height:0.900391;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_db8f6427619e315ebc15c6a6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a31140ef669b0335dd2ab383.woff')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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.338688px;}
.ls4{letter-spacing:-0.260064px;}
.lsb{letter-spacing:-0.198720px;}
.ls7{letter-spacing:-0.158976px;}
.lsa{letter-spacing:-0.125856px;}
.ls5{letter-spacing:-0.120960px;}
.ls8{letter-spacing:-0.119232px;}
.ls9{letter-spacing:-0.079488px;}
.lsc{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.283968px;}
.ls6{letter-spacing:0.317376px;}
.ls0{letter-spacing:0.367488px;}
.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;}
}
.ws8{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.480512px;}
.ws6{word-spacing:-16.440768px;}
.ws2{word-spacing:-16.401024px;}
.ws5{word-spacing:-16.361280px;}
.ws0{word-spacing:-15.120000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.072512px;}
._0{width:1.088640px;}
._12{width:2.164320px;}
._d{width:3.196800px;}
._f{width:4.420800px;}
._b{width:5.431680px;}
._2{width:6.690240px;}
._3{width:8.213760px;}
._9{width:9.604800px;}
._8{width:10.797120px;}
._16{width:11.880000px;}
._a{width:13.314240px;}
._c{width:14.817600px;}
._10{width:16.603200px;}
._4{width:17.884800px;}
._15{width:19.108800px;}
._18{width:20.296800px;}
._13{width:22.111200px;}
._19{width:23.716800px;}
._14{width:24.886080px;}
._6{width:26.032320px;}
._5{width:27.158400px;}
._e{width:28.483200px;}
._17{width:29.671200px;}
._29{width:31.399200px;}
._7{width:32.921280px;}
._11{width:34.341984px;}
._26{width:36.100800px;}
._21{width:37.491840px;}
._1a{width:38.628000px;}
._2a{width:40.890240px;}
._27{width:42.857280px;}
._1d{width:46.169280px;}
._22{width:49.944960px;}
._24{width:51.004800px;}
._1e{width:63.060480px;}
._1f{width:64.252800px;}
._1c{width:70.810560px;}
._20{width:71.870400px;}
._1b{width:77.500800px;}
._25{width:93.928320px;}
._23{width:104.857920px;}
._28{width:149.304960px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.yd{bottom:-33.960000px;}
.yc{bottom:-6.600000px;}
.y0{bottom:0.000000px;}
.y97{bottom:4.140000px;}
.y63{bottom:4.260000px;}
.y5f{bottom:4.320000px;}
.y76{bottom:4.620000px;}
.y90{bottom:4.740000px;}
.y6e{bottom:4.860000px;}
.y59{bottom:4.980000px;}
.y7e{bottom:5.160000px;}
.y94{bottom:5.220000px;}
.y61{bottom:13.620000px;}
.y72{bottom:13.980000px;}
.y5c{bottom:14.040000px;}
.y69{bottom:14.220000px;}
.y57{bottom:14.700000px;}
.y62{bottom:22.980000px;}
.y96{bottom:23.220000px;}
.y5e{bottom:23.400000px;}
.y6d{bottom:23.580000px;}
.y75{bottom:23.700000px;}
.y7d{bottom:23.880000px;}
.y58{bottom:24.060000px;}
.y93{bottom:24.300000px;}
.y5b{bottom:32.760000px;}
.y71{bottom:33.060000px;}
.y67{bottom:33.300000px;}
.y79{bottom:33.600000px;}
.y74{bottom:42.420000px;}
.y5d{bottom:42.480000px;}
.y6c{bottom:42.660000px;}
.y7c{bottom:42.960000px;}
.y70{bottom:52.140000px;}
.y78{bottom:52.320000px;}
.y66{bottom:52.380000px;}
.y73{bottom:61.500000px;}
.y6b{bottom:61.740000px;}
.y7b{bottom:62.040000px;}
.y68{bottom:71.100000px;}
.y7a{bottom:80.760000px;}
.y6a{bottom:80.820000px;}
.ya{bottom:109.440000px;}
.y49{bottom:169.560000px;}
.y5a{bottom:171.000000px;}
.ya9{bottom:173.160000px;}
.y8c{bottom:182.160000px;}
.yc6{bottom:182.880000px;}
.y55{bottom:185.040000px;}
.y2f{bottom:188.280000px;}
.y48{bottom:200.880000px;}
.yb0{bottom:203.040000px;}
.ya8{bottom:204.120000px;}
.y8b{bottom:213.120000px;}
.y54{bottom:216.000000px;}
.y2e{bottom:219.240000px;}
.yc5{bottom:221.760000px;}
.y47{bottom:231.840000px;}
.yaf{bottom:234.000000px;}
.ya7{bottom:235.440000px;}
.y56{bottom:235.500000px;}
.y2d{bottom:240.120000px;}
.yc4{bottom:242.640000px;}
.y8a{bottom:244.080000px;}
.y53{bottom:247.320000px;}
.y2c{bottom:261.000000px;}
.y46{bottom:262.800000px;}
.yc3{bottom:263.160000px;}
.yae{bottom:265.320000px;}
.ya6{bottom:266.400000px;}
.y89{bottom:275.400000px;}
.y52{bottom:278.280000px;}
.y2b{bottom:281.160000px;}
.yc2{bottom:284.040000px;}
.y45{bottom:293.760000px;}
.yad{bottom:296.280000px;}
.ya5{bottom:297.360000px;}
.y2a{bottom:300.600000px;}
.yc1{bottom:304.560000px;}
.y88{bottom:306.360000px;}
.y51{bottom:309.240000px;}
.y29{bottom:321.480000px;}
.y44{bottom:325.080000px;}
.yc0{bottom:325.440000px;}
.yac{bottom:327.240000px;}
.ya4{bottom:328.320000px;}
.y87{bottom:337.320000px;}
.y50{bottom:340.200000px;}
.y28{bottom:342.000000px;}
.ybf{bottom:345.960000px;}
.y43{bottom:356.040000px;}
.yab{bottom:358.200000px;}
.ya3{bottom:359.640000px;}
.y27{bottom:362.880000px;}
.ybe{bottom:366.840000px;}
.y86{bottom:368.280000px;}
.y26{bottom:383.400000px;}
.y42{bottom:387.000000px;}
.ybd{bottom:387.360000px;}
.y4f{bottom:389.160000px;}
.ya2{bottom:390.600000px;}
.y85{bottom:399.600000px;}
.y25{bottom:404.280000px;}
.ybc{bottom:408.240000px;}
.y41{bottom:417.960000px;}
.y4e{bottom:420.480000px;}
.ya1{bottom:421.560000px;}
.y24{bottom:424.800000px;}
.ybb{bottom:428.760000px;}
.y84{bottom:430.560000px;}
.y23{bottom:445.680000px;}
.y40{bottom:449.280000px;}
.yba{bottom:449.640000px;}
.y4d{bottom:451.440000px;}
.ya0{bottom:452.520000px;}
.y83{bottom:461.520000px;}
.y22{bottom:466.200000px;}
.yb9{bottom:470.160000px;}
.y3f{bottom:480.240000px;}
.y4c{bottom:482.400000px;}
.y9f{bottom:483.840000px;}
.y21{bottom:487.080000px;}
.yb8{bottom:491.040000px;}
.y82{bottom:492.480000px;}
.y20{bottom:507.600000px;}
.y3e{bottom:511.200000px;}
.yb7{bottom:511.560000px;}
.y4b{bottom:513.360000px;}
.y9e{bottom:514.800000px;}
.y81{bottom:523.800000px;}
.y1f{bottom:527.760000px;}
.yaa{bottom:531.360000px;}
.yb6{bottom:532.440000px;}
.y3d{bottom:542.160000px;}
.y80{bottom:544.320000px;}
.y9d{bottom:545.760000px;}
.y1e{bottom:546.840000px;}
.yb5{bottom:552.960000px;}
.y4a{bottom:562.680000px;}
.y7f{bottom:563.040000px;}
.y1d{bottom:565.560000px;}
.y3c{bottom:573.480000px;}
.yb4{bottom:573.840000px;}
.y9c{bottom:576.720000px;}
.y77{bottom:582.000000px;}
.y1c{bottom:584.640000px;}
.yb3{bottom:594.360000px;}
.y1b{bottom:603.720000px;}
.y3b{bottom:604.440000px;}
.y9b{bottom:608.040000px;}
.yb2{bottom:615.240000px;}
.y1a{bottom:622.800000px;}
.y3a{bottom:635.400000px;}
.yb1{bottom:635.760000px;}
.y9a{bottom:639.000000px;}
.y19{bottom:641.520000px;}
.y99{bottom:659.520000px;}
.y18{bottom:660.600000px;}
.y39{bottom:666.360000px;}
.y98{bottom:678.600000px;}
.y17{bottom:679.680000px;}
.y6f{bottom:685.500000px;}
.y95{bottom:697.500000px;}
.y38{bottom:697.680000px;}
.y16{bottom:699.120000px;}
.y15{bottom:719.640000px;}
.y37{bottom:728.640000px;}
.y14{bottom:740.520000px;}
.y92{bottom:742.500000px;}
.y36{bottom:759.600000px;}
.y13{bottom:761.040000px;}
.y65{bottom:769.500000px;}
.y12{bottom:781.920000px;}
.y91{bottom:789.000000px;}
.y35{bottom:790.560000px;}
.y11{bottom:815.040000px;}
.y34{bottom:821.880000px;}
.y8f{bottom:835.500000px;}
.y33{bottom:852.840000px;}
.y10{bottom:860.040000px;}
.y64{bottom:873.000000px;}
.y8e{bottom:877.320000px;}
.y32{bottom:883.800000px;}
.yf{bottom:896.400000px;}
.y8d{bottom:911.520000px;}
.y31{bottom:914.760000px;}
.y60{bottom:919.500000px;}
.ye{bottom:932.400000px;}
.y30{bottom:945.720000px;}
.y9{bottom:977.040000px;}
.yb{bottom:993.000000px;}
.y8{bottom:997.920000px;}
.y7{bottom:1017.720000px;}
.y6{bottom:1035.000000px;}
.y5{bottom:1052.280000px;}
.y4{bottom:1069.560000px;}
.y3{bottom:1086.840000px;}
.y2{bottom:1104.120000px;}
.y1{bottom:1121.400000px;}
.h11{height:21.000000px;}
.hd{height:39.000000px;}
.ha{height:40.500000px;}
.hb{height:45.345938px;}
.h8{height:46.025156px;}
.h7{height:49.992188px;}
.h3{height:50.027344px;}
.h2{height:53.717344px;}
.h6{height:55.666406px;}
.hc{height:58.500000px;}
.h9{height:63.949219px;}
.h5{height:75.404531px;}
.hf{height:78.000000px;}
.he{height:96.000000px;}
.h10{height:97.500000px;}
.h4{height:118.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:141.000000px;}
.w3{width:196.500000px;}
.w4{width:214.500000px;}
.w5{width:250.500000px;}
.w2{width:361.500000px;}
.w7{width:520.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:3.783672px;}
.x1e{left:5.159928px;}
.x12{left:25.479876px;}
.x1b{left:28.267104px;}
.x17{left:38.980200px;}
.x7{left:65.054808px;}
.x15{left:70.440120px;}
.x1{left:127.439928px;}
.x18{left:131.432004px;}
.x9{left:140.147820px;}
.x4{left:150.181272px;}
.x11{left:155.057004px;}
.x3{left:180.614844px;}
.xf{left:182.715084px;}
.x8{left:208.201896px;}
.x1d{left:226.065000px;}
.x1a{left:246.265524px;}
.x1c{left:267.000000px;}
.x5{left:270.000000px;}
.x6{left:275.654520px;}
.x19{left:286.272576px;}
.xc{left:313.077384px;}
.x13{left:324.000000px;}
.x1f{left:392.440680px;}
.xa{left:398.033640px;}
.x10{left:456.952320px;}
.x2{left:483.539760px;}
.x16{left:537.000000px;}
.xd{left:579.922200px;}
.xb{left:608.495400px;}
.xe{left:786.465000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.301056pt;}
.ls4{letter-spacing:-0.231168pt;}
.lsb{letter-spacing:-0.176640pt;}
.ls7{letter-spacing:-0.141312pt;}
.lsa{letter-spacing:-0.111872pt;}
.ls5{letter-spacing:-0.107520pt;}
.ls8{letter-spacing:-0.105984pt;}
.ls9{letter-spacing:-0.070656pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.252416pt;}
.ls6{letter-spacing:0.282112pt;}
.ls0{letter-spacing:0.326656pt;}
.ws8{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.649344pt;}
.ws6{word-spacing:-14.614016pt;}
.ws2{word-spacing:-14.578688pt;}
.ws5{word-spacing:-14.543360pt;}
.ws0{word-spacing:-13.440000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.953344pt;}
._0{width:0.967680pt;}
._12{width:1.923840pt;}
._d{width:2.841600pt;}
._f{width:3.929600pt;}
._b{width:4.828160pt;}
._2{width:5.946880pt;}
._3{width:7.301120pt;}
._9{width:8.537600pt;}
._8{width:9.597440pt;}
._16{width:10.560000pt;}
._a{width:11.834880pt;}
._c{width:13.171200pt;}
._10{width:14.758400pt;}
._4{width:15.897600pt;}
._15{width:16.985600pt;}
._18{width:18.041600pt;}
._13{width:19.654400pt;}
._19{width:21.081600pt;}
._14{width:22.120960pt;}
._6{width:23.139840pt;}
._5{width:24.140800pt;}
._e{width:25.318400pt;}
._17{width:26.374400pt;}
._29{width:27.910400pt;}
._7{width:29.263360pt;}
._11{width:30.526208pt;}
._26{width:32.089600pt;}
._21{width:33.326080pt;}
._1a{width:34.336000pt;}
._2a{width:36.346880pt;}
._27{width:38.095360pt;}
._1d{width:41.039360pt;}
._22{width:44.395520pt;}
._24{width:45.337600pt;}
._1e{width:56.053760pt;}
._1f{width:57.113600pt;}
._1c{width:62.942720pt;}
._20{width:63.884800pt;}
._1b{width:68.889600pt;}
._25{width:83.491840pt;}
._23{width:93.207040pt;}
._28{width:132.715520pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.yd{bottom:-30.186667pt;}
.yc{bottom:-5.866667pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:3.680000pt;}
.y63{bottom:3.786667pt;}
.y5f{bottom:3.840000pt;}
.y76{bottom:4.106667pt;}
.y90{bottom:4.213333pt;}
.y6e{bottom:4.320000pt;}
.y59{bottom:4.426667pt;}
.y7e{bottom:4.586667pt;}
.y94{bottom:4.640000pt;}
.y61{bottom:12.106667pt;}
.y72{bottom:12.426667pt;}
.y5c{bottom:12.480000pt;}
.y69{bottom:12.640000pt;}
.y57{bottom:13.066667pt;}
.y62{bottom:20.426667pt;}
.y96{bottom:20.640000pt;}
.y5e{bottom:20.800000pt;}
.y6d{bottom:20.960000pt;}
.y75{bottom:21.066667pt;}
.y7d{bottom:21.226667pt;}
.y58{bottom:21.386667pt;}
.y93{bottom:21.600000pt;}
.y5b{bottom:29.120000pt;}
.y71{bottom:29.386667pt;}
.y67{bottom:29.600000pt;}
.y79{bottom:29.866667pt;}
.y74{bottom:37.706667pt;}
.y5d{bottom:37.760000pt;}
.y6c{bottom:37.920000pt;}
.y7c{bottom:38.186667pt;}
.y70{bottom:46.346667pt;}
.y78{bottom:46.506667pt;}
.y66{bottom:46.560000pt;}
.y73{bottom:54.666667pt;}
.y6b{bottom:54.880000pt;}
.y7b{bottom:55.146667pt;}
.y68{bottom:63.200000pt;}
.y7a{bottom:71.786667pt;}
.y6a{bottom:71.840000pt;}
.ya{bottom:97.280000pt;}
.y49{bottom:150.720000pt;}
.y5a{bottom:152.000000pt;}
.ya9{bottom:153.920000pt;}
.y8c{bottom:161.920000pt;}
.yc6{bottom:162.560000pt;}
.y55{bottom:164.480000pt;}
.y2f{bottom:167.360000pt;}
.y48{bottom:178.560000pt;}
.yb0{bottom:180.480000pt;}
.ya8{bottom:181.440000pt;}
.y8b{bottom:189.440000pt;}
.y54{bottom:192.000000pt;}
.y2e{bottom:194.880000pt;}
.yc5{bottom:197.120000pt;}
.y47{bottom:206.080000pt;}
.yaf{bottom:208.000000pt;}
.ya7{bottom:209.280000pt;}
.y56{bottom:209.333333pt;}
.y2d{bottom:213.440000pt;}
.yc4{bottom:215.680000pt;}
.y8a{bottom:216.960000pt;}
.y53{bottom:219.840000pt;}
.y2c{bottom:232.000000pt;}
.y46{bottom:233.600000pt;}
.yc3{bottom:233.920000pt;}
.yae{bottom:235.840000pt;}
.ya6{bottom:236.800000pt;}
.y89{bottom:244.800000pt;}
.y52{bottom:247.360000pt;}
.y2b{bottom:249.920000pt;}
.yc2{bottom:252.480000pt;}
.y45{bottom:261.120000pt;}
.yad{bottom:263.360000pt;}
.ya5{bottom:264.320000pt;}
.y2a{bottom:267.200000pt;}
.yc1{bottom:270.720000pt;}
.y88{bottom:272.320000pt;}
.y51{bottom:274.880000pt;}
.y29{bottom:285.760000pt;}
.y44{bottom:288.960000pt;}
.yc0{bottom:289.280000pt;}
.yac{bottom:290.880000pt;}
.ya4{bottom:291.840000pt;}
.y87{bottom:299.840000pt;}
.y50{bottom:302.400000pt;}
.y28{bottom:304.000000pt;}
.ybf{bottom:307.520000pt;}
.y43{bottom:316.480000pt;}
.yab{bottom:318.400000pt;}
.ya3{bottom:319.680000pt;}
.y27{bottom:322.560000pt;}
.ybe{bottom:326.080000pt;}
.y86{bottom:327.360000pt;}
.y26{bottom:340.800000pt;}
.y42{bottom:344.000000pt;}
.ybd{bottom:344.320000pt;}
.y4f{bottom:345.920000pt;}
.ya2{bottom:347.200000pt;}
.y85{bottom:355.200000pt;}
.y25{bottom:359.360000pt;}
.ybc{bottom:362.880000pt;}
.y41{bottom:371.520000pt;}
.y4e{bottom:373.760000pt;}
.ya1{bottom:374.720000pt;}
.y24{bottom:377.600000pt;}
.ybb{bottom:381.120000pt;}
.y84{bottom:382.720000pt;}
.y23{bottom:396.160000pt;}
.y40{bottom:399.360000pt;}
.yba{bottom:399.680000pt;}
.y4d{bottom:401.280000pt;}
.ya0{bottom:402.240000pt;}
.y83{bottom:410.240000pt;}
.y22{bottom:414.400000pt;}
.yb9{bottom:417.920000pt;}
.y3f{bottom:426.880000pt;}
.y4c{bottom:428.800000pt;}
.y9f{bottom:430.080000pt;}
.y21{bottom:432.960000pt;}
.yb8{bottom:436.480000pt;}
.y82{bottom:437.760000pt;}
.y20{bottom:451.200000pt;}
.y3e{bottom:454.400000pt;}
.yb7{bottom:454.720000pt;}
.y4b{bottom:456.320000pt;}
.y9e{bottom:457.600000pt;}
.y81{bottom:465.600000pt;}
.y1f{bottom:469.120000pt;}
.yaa{bottom:472.320000pt;}
.yb6{bottom:473.280000pt;}
.y3d{bottom:481.920000pt;}
.y80{bottom:483.840000pt;}
.y9d{bottom:485.120000pt;}
.y1e{bottom:486.080000pt;}
.yb5{bottom:491.520000pt;}
.y4a{bottom:500.160000pt;}
.y7f{bottom:500.480000pt;}
.y1d{bottom:502.720000pt;}
.y3c{bottom:509.760000pt;}
.yb4{bottom:510.080000pt;}
.y9c{bottom:512.640000pt;}
.y77{bottom:517.333333pt;}
.y1c{bottom:519.680000pt;}
.yb3{bottom:528.320000pt;}
.y1b{bottom:536.640000pt;}
.y3b{bottom:537.280000pt;}
.y9b{bottom:540.480000pt;}
.yb2{bottom:546.880000pt;}
.y1a{bottom:553.600000pt;}
.y3a{bottom:564.800000pt;}
.yb1{bottom:565.120000pt;}
.y9a{bottom:568.000000pt;}
.y19{bottom:570.240000pt;}
.y99{bottom:586.240000pt;}
.y18{bottom:587.200000pt;}
.y39{bottom:592.320000pt;}
.y98{bottom:603.200000pt;}
.y17{bottom:604.160000pt;}
.y6f{bottom:609.333333pt;}
.y95{bottom:620.000000pt;}
.y38{bottom:620.160000pt;}
.y16{bottom:621.440000pt;}
.y15{bottom:639.680000pt;}
.y37{bottom:647.680000pt;}
.y14{bottom:658.240000pt;}
.y92{bottom:660.000000pt;}
.y36{bottom:675.200000pt;}
.y13{bottom:676.480000pt;}
.y65{bottom:684.000000pt;}
.y12{bottom:695.040000pt;}
.y91{bottom:701.333333pt;}
.y35{bottom:702.720000pt;}
.y11{bottom:724.480000pt;}
.y34{bottom:730.560000pt;}
.y8f{bottom:742.666667pt;}
.y33{bottom:758.080000pt;}
.y10{bottom:764.480000pt;}
.y64{bottom:776.000000pt;}
.y8e{bottom:779.840000pt;}
.y32{bottom:785.600000pt;}
.yf{bottom:796.800000pt;}
.y8d{bottom:810.240000pt;}
.y31{bottom:813.120000pt;}
.y60{bottom:817.333333pt;}
.ye{bottom:828.800000pt;}
.y30{bottom:840.640000pt;}
.y9{bottom:868.480000pt;}
.yb{bottom:882.666667pt;}
.y8{bottom:887.040000pt;}
.y7{bottom:904.640000pt;}
.y6{bottom:920.000000pt;}
.y5{bottom:935.360000pt;}
.y4{bottom:950.720000pt;}
.y3{bottom:966.080000pt;}
.y2{bottom:981.440000pt;}
.y1{bottom:996.800000pt;}
.h11{height:18.666667pt;}
.hd{height:34.666667pt;}
.ha{height:36.000000pt;}
.hb{height:40.307500pt;}
.h8{height:40.911250pt;}
.h7{height:44.437500pt;}
.h3{height:44.468750pt;}
.h2{height:47.748750pt;}
.h6{height:49.481250pt;}
.hc{height:52.000000pt;}
.h9{height:56.843750pt;}
.h5{height:67.026250pt;}
.hf{height:69.333333pt;}
.he{height:85.333333pt;}
.h10{height:86.666667pt;}
.h4{height:105.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:125.333333pt;}
.w3{width:174.666667pt;}
.w4{width:190.666667pt;}
.w5{width:222.666667pt;}
.w2{width:321.333333pt;}
.w7{width:462.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:3.363264pt;}
.x1e{left:4.586603pt;}
.x12{left:22.648779pt;}
.x1b{left:25.126315pt;}
.x17{left:34.649067pt;}
.x7{left:57.826496pt;}
.x15{left:62.613440pt;}
.x1{left:113.279936pt;}
.x18{left:116.828448pt;}
.x9{left:124.575840pt;}
.x4{left:133.494464pt;}
.x11{left:137.828448pt;}
.x3{left:160.546528pt;}
.xf{left:162.413408pt;}
.x8{left:185.068352pt;}
.x1d{left:200.946667pt;}
.x1a{left:218.902688pt;}
.x1c{left:237.333333pt;}
.x5{left:240.000000pt;}
.x6{left:245.026240pt;}
.x19{left:254.464512pt;}
.xc{left:278.291008pt;}
.x13{left:288.000000pt;}
.x1f{left:348.836160pt;}
.xa{left:353.807680pt;}
.x10{left:406.179840pt;}
.x2{left:429.813120pt;}
.x16{left:477.333333pt;}
.xd{left:515.486400pt;}
.xb{left:540.884800pt;}
.xe{left:699.080000pt;}
}




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