
    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_17582877d845ab6d78e3be64.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965820;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_5ee0bec9604365c638053633.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776367;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_5e76404f4bb7be07d0f27b18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_c939672ca3685e60403a2f3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_7e8c30be693dbaa2c42a7860.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_7094ecab26a03b831f9977ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_87f63dc3ff9240c22a44d88c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.166800px;}
.lsa{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.146880px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.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:-20.733120px;}
.ws0{word-spacing:-20.566320px;}
.ws8{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.450800px;}
.ws3{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.520000px;}
.ws5{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-3.960000px;}
._a{margin-left:-2.914560px;}
._0{margin-left:-1.192320px;}
._2{width:1.072320px;}
._1{width:2.108160px;}
._6{width:3.378240px;}
._8{width:4.835520px;}
._c{width:6.690240px;}
._b{width:8.147520px;}
._7{width:9.671040px;}
._9{width:10.929600px;}
._3{width:12.916800px;}
._d{width:14.616000px;}
._e{width:15.624000px;}
._15{width:16.752000px;}
._14{width:19.264320px;}
._4{width:20.335680px;}
._5{width:21.792480px;}
._f{width:23.044800px;}
._10{width:24.400320px;}
._18{width:25.477440px;}
._1b{width:27.000000px;}
._12{width:28.008000px;}
._13{width:29.023680px;}
._1d{width:30.261600px;}
._1c{width:31.392000px;}
._19{width:32.688000px;}
._1a{width:33.855360px;}
._21{width:38.704320px;}
._1f{width:41.976000px;}
._1e{width:43.168320px;}
._20{width:44.464320px;}
._16{width:45.864000px;}
._17{width:47.124000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.420000px;}
.y58{bottom:3.600000px;}
.y55{bottom:3.780000px;}
.y53{bottom:12.420000px;}
.y59{bottom:13.140000px;}
.y57{bottom:22.680000px;}
.y3{bottom:23.220000px;}
.y52{bottom:31.680000px;}
.y7{bottom:56.340000px;}
.y6{bottom:76.320000px;}
.yd2{bottom:123.120000px;}
.y86{bottom:133.740000px;}
.y6c{bottom:134.460000px;}
.y9e{bottom:136.980000px;}
.y37{bottom:142.200000px;}
.y85{bottom:154.440000px;}
.y6b{bottom:155.160000px;}
.y9d{bottom:155.880000px;}
.yd1{bottom:161.100000px;}
.y36{bottom:162.900000px;}
.y9c{bottom:174.960000px;}
.y84{bottom:175.140000px;}
.y6a{bottom:175.860000px;}
.yd0{bottom:180.180000px;}
.y35{bottom:183.600000px;}
.y9b{bottom:193.890000px;}
.y83{bottom:195.870000px;}
.y69{bottom:196.590000px;}
.ycf{bottom:199.110000px;}
.y34{bottom:204.330000px;}
.y9a{bottom:212.970000px;}
.y82{bottom:216.570000px;}
.y68{bottom:217.290000px;}
.yce{bottom:218.010000px;}
.y33{bottom:225.030000px;}
.y99{bottom:231.870000px;}
.ycd{bottom:237.090000px;}
.y81{bottom:237.270000px;}
.y67{bottom:237.990000px;}
.y32{bottom:245.730000px;}
.y98{bottom:250.770000px;}
.ycc{bottom:255.990000px;}
.y80{bottom:257.970000px;}
.y66{bottom:258.690000px;}
.y31{bottom:266.430000px;}
.y97{bottom:269.850000px;}
.ycb{bottom:275.070000px;}
.y7f{bottom:278.670000px;}
.y65{bottom:279.390000px;}
.y30{bottom:287.130000px;}
.y96{bottom:288.750000px;}
.yca{bottom:293.970000px;}
.y7e{bottom:299.370000px;}
.y64{bottom:300.090000px;}
.y2f{bottom:307.830000px;}
.yc9{bottom:312.870000px;}
.y7d{bottom:320.070000px;}
.y63{bottom:320.790000px;}
.y95{bottom:326.730000px;}
.y2e{bottom:328.530000px;}
.yc8{bottom:331.950000px;}
.y7c{bottom:340.770000px;}
.y62{bottom:341.490000px;}
.y94{bottom:345.810000px;}
.y2d{bottom:349.230000px;}
.yc7{bottom:350.850000px;}
.y7b{bottom:361.470000px;}
.y61{bottom:362.190000px;}
.y93{bottom:364.710000px;}
.y2c{bottom:369.930000px;}
.y7a{bottom:382.170000px;}
.y60{bottom:382.890000px;}
.y92{bottom:383.610000px;}
.yc6{bottom:388.830000px;}
.y2b{bottom:390.630000px;}
.y91{bottom:402.690000px;}
.y79{bottom:402.870000px;}
.y5f{bottom:403.590000px;}
.yc5{bottom:407.910000px;}
.y2a{bottom:411.330000px;}
.y90{bottom:421.590000px;}
.y78{bottom:423.570000px;}
.y5e{bottom:424.290000px;}
.yc4{bottom:426.810000px;}
.y29{bottom:432.030000px;}
.y8f{bottom:440.715000px;}
.y77{bottom:444.315000px;}
.y5d{bottom:445.035000px;}
.yc3{bottom:445.755000px;}
.y28{bottom:452.775000px;}
.y8e{bottom:459.615000px;}
.yc2{bottom:464.835000px;}
.y76{bottom:465.015000px;}
.y5c{bottom:465.735000px;}
.y27{bottom:473.475000px;}
.y8d{bottom:478.515000px;}
.yc1{bottom:483.735000px;}
.y75{bottom:485.715000px;}
.y5b{bottom:486.435000px;}
.y26{bottom:494.175000px;}
.y8c{bottom:497.595000px;}
.yc0{bottom:502.815000px;}
.y5a{bottom:503.895000px;}
.y74{bottom:506.415000px;}
.y25{bottom:514.875000px;}
.y8b{bottom:516.495000px;}
.ybf{bottom:521.715000px;}
.y73{bottom:527.115000px;}
.y24{bottom:535.575000px;}
.ybe{bottom:540.615000px;}
.y56{bottom:542.595000px;}
.y72{bottom:547.815000px;}
.y8a{bottom:554.475000px;}
.y23{bottom:556.275000px;}
.ybd{bottom:559.695000px;}
.y71{bottom:568.515000px;}
.y89{bottom:573.375000px;}
.y22{bottom:576.975000px;}
.ybc{bottom:578.595000px;}
.y54{bottom:581.295000px;}
.y70{bottom:589.215000px;}
.y88{bottom:592.455000px;}
.y21{bottom:597.315000px;}
.ybb{bottom:597.675000px;}
.y51{bottom:601.455000px;}
.y6f{bottom:609.915000px;}
.y87{bottom:611.355000px;}
.y20{bottom:616.395000px;}
.yba{bottom:616.575000px;}
.y6e{bottom:630.615000px;}
.y1f{bottom:635.295000px;}
.yb9{bottom:635.475000px;}
.y6d{bottom:651.315000px;}
.y50{bottom:652.755000px;}
.y1e{bottom:654.195000px;}
.yb8{bottom:654.555000px;}
.y4f{bottom:672.015000px;}
.y1d{bottom:673.305000px;}
.yb7{bottom:673.485000px;}
.y1c{bottom:692.205000px;}
.yb6{bottom:692.565000px;}
.y4e{bottom:692.745000px;}
.y1b{bottom:711.285000px;}
.yb5{bottom:711.465000px;}
.y4d{bottom:713.445000px;}
.y1a{bottom:730.185000px;}
.yb4{bottom:730.365000px;}
.y4c{bottom:734.145000px;}
.y19{bottom:749.085000px;}
.yb3{bottom:749.445000px;}
.y4b{bottom:754.845000px;}
.y18{bottom:768.165000px;}
.yb2{bottom:768.345000px;}
.y4a{bottom:775.545000px;}
.y17{bottom:787.065000px;}
.yb1{bottom:787.425000px;}
.y49{bottom:796.245000px;}
.y16{bottom:806.145000px;}
.yb0{bottom:806.325000px;}
.y48{bottom:816.945000px;}
.y15{bottom:825.045000px;}
.yaf{bottom:825.225000px;}
.y47{bottom:837.645000px;}
.y14{bottom:844.125000px;}
.yae{bottom:844.305000px;}
.y46{bottom:858.345000px;}
.y13{bottom:863.025000px;}
.yad{bottom:863.205000px;}
.y45{bottom:879.045000px;}
.yac{bottom:882.285000px;}
.y12{bottom:885.345000px;}
.y44{bottom:899.745000px;}
.yab{bottom:901.185000px;}
.y11{bottom:909.105000px;}
.yaa{bottom:920.310000px;}
.y43{bottom:920.490000px;}
.y10{bottom:932.370000px;}
.ya9{bottom:939.210000px;}
.y42{bottom:941.190000px;}
.yf{bottom:954.150000px;}
.ya8{bottom:958.110000px;}
.y41{bottom:961.890000px;}
.ye{bottom:975.930000px;}
.ya7{bottom:977.190000px;}
.y40{bottom:982.590000px;}
.yd{bottom:995.370000px;}
.ya6{bottom:996.090000px;}
.y3f{bottom:1003.290000px;}
.ya5{bottom:1015.170000px;}
.yc{bottom:1016.070000px;}
.y3e{bottom:1023.990000px;}
.ya4{bottom:1034.070000px;}
.yb{bottom:1036.770000px;}
.y3d{bottom:1044.690000px;}
.ya3{bottom:1052.970000px;}
.ya{bottom:1058.010000px;}
.y3c{bottom:1065.390000px;}
.ya2{bottom:1072.050000px;}
.y9{bottom:1082.130000px;}
.y3b{bottom:1086.090000px;}
.ya1{bottom:1090.950000px;}
.y8{bottom:1106.250000px;}
.y3a{bottom:1106.790000px;}
.ya0{bottom:1110.030000px;}
.y39{bottom:1127.490000px;}
.y9f{bottom:1128.930000px;}
.y5{bottom:1129.290000px;}
.y4{bottom:1154.880000px;}
.y1{bottom:1170.180000px;}
.y38{bottom:1193.400000px;}
.he{height:19.440000px;}
.hf{height:37.980000px;}
.h2{height:39.780000px;}
.h11{height:46.251562px;}
.hd{height:46.980000px;}
.h10{height:50.273438px;}
.h4{height:50.326875px;}
.h3{height:50.650312px;}
.h5{height:53.015625px;}
.h9{height:65.010937px;}
.hb{height:66.078281px;}
.ha{height:66.757500px;}
.hc{height:70.664062px;}
.h7{height:72.562500px;}
.h8{height:74.704922px;}
.h6{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:138.276000px;}
.w6{width:170.130000px;}
.w5{width:308.415000px;}
.w3{width:327.495000px;}
.w2{width:328.395000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x12{left:23.039987px;}
.x19{left:39.240000px;}
.x1b{left:40.500000px;}
.x17{left:43.920000px;}
.x15{left:51.480000px;}
.x1a{left:54.000000px;}
.x16{left:59.400000px;}
.x4{left:108.540000px;}
.x1{left:118.836000px;}
.xb{left:125.675987px;}
.xa{left:133.055987px;}
.x9{left:140.075987px;}
.x8{left:144.035987px;}
.xe{left:153.029987px;}
.xf{left:160.049987px;}
.x11{left:161.309987px;}
.xd{left:165.629987px;}
.xc{left:173.369987px;}
.x5{left:185.985000px;}
.x13{left:232.229987px;}
.x14{left:292.575000px;}
.x10{left:406.904987px;}
.x7{left:442.184987px;}
.x3{left:447.225000px;}
.x18{left:462.705000px;}
.x1c{left:756.719987px;}
.x6{left:766.619987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.148267pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.130560pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ws1{word-spacing:-18.429440pt;}
.ws0{word-spacing:-18.281173pt;}
.ws8{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.622933pt;}
.ws3{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.240000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-3.520000pt;}
._a{margin-left:-2.590720pt;}
._0{margin-left:-1.059840pt;}
._2{width:0.953173pt;}
._1{width:1.873920pt;}
._6{width:3.002880pt;}
._8{width:4.298240pt;}
._c{width:5.946880pt;}
._b{width:7.242240pt;}
._7{width:8.596480pt;}
._9{width:9.715200pt;}
._3{width:11.481600pt;}
._d{width:12.992000pt;}
._e{width:13.888000pt;}
._15{width:14.890667pt;}
._14{width:17.123840pt;}
._4{width:18.076160pt;}
._5{width:19.371093pt;}
._f{width:20.484267pt;}
._10{width:21.689173pt;}
._18{width:22.646613pt;}
._1b{width:24.000000pt;}
._12{width:24.896000pt;}
._13{width:25.798827pt;}
._1d{width:26.899200pt;}
._1c{width:27.904000pt;}
._19{width:29.056000pt;}
._1a{width:30.093653pt;}
._21{width:34.403840pt;}
._1f{width:37.312000pt;}
._1e{width:38.371840pt;}
._20{width:39.523840pt;}
._16{width:40.768000pt;}
._17{width:41.888000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.040000pt;}
.y58{bottom:3.200000pt;}
.y55{bottom:3.360000pt;}
.y53{bottom:11.040000pt;}
.y59{bottom:11.680000pt;}
.y57{bottom:20.160000pt;}
.y3{bottom:20.640000pt;}
.y52{bottom:28.160000pt;}
.y7{bottom:50.080000pt;}
.y6{bottom:67.840000pt;}
.yd2{bottom:109.440000pt;}
.y86{bottom:118.880000pt;}
.y6c{bottom:119.520000pt;}
.y9e{bottom:121.760000pt;}
.y37{bottom:126.400000pt;}
.y85{bottom:137.280000pt;}
.y6b{bottom:137.920000pt;}
.y9d{bottom:138.560000pt;}
.yd1{bottom:143.200000pt;}
.y36{bottom:144.800000pt;}
.y9c{bottom:155.520000pt;}
.y84{bottom:155.680000pt;}
.y6a{bottom:156.320000pt;}
.yd0{bottom:160.160000pt;}
.y35{bottom:163.200000pt;}
.y9b{bottom:172.346667pt;}
.y83{bottom:174.106667pt;}
.y69{bottom:174.746667pt;}
.ycf{bottom:176.986667pt;}
.y34{bottom:181.626667pt;}
.y9a{bottom:189.306667pt;}
.y82{bottom:192.506667pt;}
.y68{bottom:193.146667pt;}
.yce{bottom:193.786667pt;}
.y33{bottom:200.026667pt;}
.y99{bottom:206.106667pt;}
.ycd{bottom:210.746667pt;}
.y81{bottom:210.906667pt;}
.y67{bottom:211.546667pt;}
.y32{bottom:218.426667pt;}
.y98{bottom:222.906667pt;}
.ycc{bottom:227.546667pt;}
.y80{bottom:229.306667pt;}
.y66{bottom:229.946667pt;}
.y31{bottom:236.826667pt;}
.y97{bottom:239.866667pt;}
.ycb{bottom:244.506667pt;}
.y7f{bottom:247.706667pt;}
.y65{bottom:248.346667pt;}
.y30{bottom:255.226667pt;}
.y96{bottom:256.666667pt;}
.yca{bottom:261.306667pt;}
.y7e{bottom:266.106667pt;}
.y64{bottom:266.746667pt;}
.y2f{bottom:273.626667pt;}
.yc9{bottom:278.106667pt;}
.y7d{bottom:284.506667pt;}
.y63{bottom:285.146667pt;}
.y95{bottom:290.426667pt;}
.y2e{bottom:292.026667pt;}
.yc8{bottom:295.066667pt;}
.y7c{bottom:302.906667pt;}
.y62{bottom:303.546667pt;}
.y94{bottom:307.386667pt;}
.y2d{bottom:310.426667pt;}
.yc7{bottom:311.866667pt;}
.y7b{bottom:321.306667pt;}
.y61{bottom:321.946667pt;}
.y93{bottom:324.186667pt;}
.y2c{bottom:328.826667pt;}
.y7a{bottom:339.706667pt;}
.y60{bottom:340.346667pt;}
.y92{bottom:340.986667pt;}
.yc6{bottom:345.626667pt;}
.y2b{bottom:347.226667pt;}
.y91{bottom:357.946667pt;}
.y79{bottom:358.106667pt;}
.y5f{bottom:358.746667pt;}
.yc5{bottom:362.586667pt;}
.y2a{bottom:365.626667pt;}
.y90{bottom:374.746667pt;}
.y78{bottom:376.506667pt;}
.y5e{bottom:377.146667pt;}
.yc4{bottom:379.386667pt;}
.y29{bottom:384.026667pt;}
.y8f{bottom:391.746667pt;}
.y77{bottom:394.946667pt;}
.y5d{bottom:395.586667pt;}
.yc3{bottom:396.226667pt;}
.y28{bottom:402.466667pt;}
.y8e{bottom:408.546667pt;}
.yc2{bottom:413.186667pt;}
.y76{bottom:413.346667pt;}
.y5c{bottom:413.986667pt;}
.y27{bottom:420.866667pt;}
.y8d{bottom:425.346667pt;}
.yc1{bottom:429.986667pt;}
.y75{bottom:431.746667pt;}
.y5b{bottom:432.386667pt;}
.y26{bottom:439.266667pt;}
.y8c{bottom:442.306667pt;}
.yc0{bottom:446.946667pt;}
.y5a{bottom:447.906667pt;}
.y74{bottom:450.146667pt;}
.y25{bottom:457.666667pt;}
.y8b{bottom:459.106667pt;}
.ybf{bottom:463.746667pt;}
.y73{bottom:468.546667pt;}
.y24{bottom:476.066667pt;}
.ybe{bottom:480.546667pt;}
.y56{bottom:482.306667pt;}
.y72{bottom:486.946667pt;}
.y8a{bottom:492.866667pt;}
.y23{bottom:494.466667pt;}
.ybd{bottom:497.506667pt;}
.y71{bottom:505.346667pt;}
.y89{bottom:509.666667pt;}
.y22{bottom:512.866667pt;}
.ybc{bottom:514.306667pt;}
.y54{bottom:516.706667pt;}
.y70{bottom:523.746667pt;}
.y88{bottom:526.626667pt;}
.y21{bottom:530.946667pt;}
.ybb{bottom:531.266667pt;}
.y51{bottom:534.626667pt;}
.y6f{bottom:542.146667pt;}
.y87{bottom:543.426667pt;}
.y20{bottom:547.906667pt;}
.yba{bottom:548.066667pt;}
.y6e{bottom:560.546667pt;}
.y1f{bottom:564.706667pt;}
.yb9{bottom:564.866667pt;}
.y6d{bottom:578.946667pt;}
.y50{bottom:580.226667pt;}
.y1e{bottom:581.506667pt;}
.yb8{bottom:581.826667pt;}
.y4f{bottom:597.346667pt;}
.y1d{bottom:598.493333pt;}
.yb7{bottom:598.653333pt;}
.y1c{bottom:615.293333pt;}
.yb6{bottom:615.613333pt;}
.y4e{bottom:615.773333pt;}
.y1b{bottom:632.253333pt;}
.yb5{bottom:632.413333pt;}
.y4d{bottom:634.173333pt;}
.y1a{bottom:649.053333pt;}
.yb4{bottom:649.213333pt;}
.y4c{bottom:652.573333pt;}
.y19{bottom:665.853333pt;}
.yb3{bottom:666.173333pt;}
.y4b{bottom:670.973333pt;}
.y18{bottom:682.813333pt;}
.yb2{bottom:682.973333pt;}
.y4a{bottom:689.373333pt;}
.y17{bottom:699.613333pt;}
.yb1{bottom:699.933333pt;}
.y49{bottom:707.773333pt;}
.y16{bottom:716.573333pt;}
.yb0{bottom:716.733333pt;}
.y48{bottom:726.173333pt;}
.y15{bottom:733.373333pt;}
.yaf{bottom:733.533333pt;}
.y47{bottom:744.573333pt;}
.y14{bottom:750.333333pt;}
.yae{bottom:750.493333pt;}
.y46{bottom:762.973333pt;}
.y13{bottom:767.133333pt;}
.yad{bottom:767.293333pt;}
.y45{bottom:781.373333pt;}
.yac{bottom:784.253333pt;}
.y12{bottom:786.973333pt;}
.y44{bottom:799.773333pt;}
.yab{bottom:801.053333pt;}
.y11{bottom:808.093333pt;}
.yaa{bottom:818.053333pt;}
.y43{bottom:818.213333pt;}
.y10{bottom:828.773333pt;}
.ya9{bottom:834.853333pt;}
.y42{bottom:836.613333pt;}
.yf{bottom:848.133333pt;}
.ya8{bottom:851.653333pt;}
.y41{bottom:855.013333pt;}
.ye{bottom:867.493333pt;}
.ya7{bottom:868.613333pt;}
.y40{bottom:873.413333pt;}
.yd{bottom:884.773333pt;}
.ya6{bottom:885.413333pt;}
.y3f{bottom:891.813333pt;}
.ya5{bottom:902.373333pt;}
.yc{bottom:903.173333pt;}
.y3e{bottom:910.213333pt;}
.ya4{bottom:919.173333pt;}
.yb{bottom:921.573333pt;}
.y3d{bottom:928.613333pt;}
.ya3{bottom:935.973333pt;}
.ya{bottom:940.453333pt;}
.y3c{bottom:947.013333pt;}
.ya2{bottom:952.933333pt;}
.y9{bottom:961.893333pt;}
.y3b{bottom:965.413333pt;}
.ya1{bottom:969.733333pt;}
.y8{bottom:983.333333pt;}
.y3a{bottom:983.813333pt;}
.ya0{bottom:986.693333pt;}
.y39{bottom:1002.213333pt;}
.y9f{bottom:1003.493333pt;}
.y5{bottom:1003.813333pt;}
.y4{bottom:1026.560000pt;}
.y1{bottom:1040.160000pt;}
.y38{bottom:1060.800000pt;}
.he{height:17.280000pt;}
.hf{height:33.760000pt;}
.h2{height:35.360000pt;}
.h11{height:41.112500pt;}
.hd{height:41.760000pt;}
.h10{height:44.687500pt;}
.h4{height:44.735000pt;}
.h3{height:45.022500pt;}
.h5{height:47.125000pt;}
.h9{height:57.787500pt;}
.hb{height:58.736250pt;}
.ha{height:59.340000pt;}
.hc{height:62.812500pt;}
.h7{height:64.500000pt;}
.h8{height:66.404375pt;}
.h6{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:122.912000pt;}
.w6{width:151.226667pt;}
.w5{width:274.146667pt;}
.w3{width:291.106667pt;}
.w2{width:291.906667pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x12{left:20.479988pt;}
.x19{left:34.880000pt;}
.x1b{left:36.000000pt;}
.x17{left:39.040000pt;}
.x15{left:45.760000pt;}
.x1a{left:48.000000pt;}
.x16{left:52.800000pt;}
.x4{left:96.480000pt;}
.x1{left:105.632000pt;}
.xb{left:111.711988pt;}
.xa{left:118.271988pt;}
.x9{left:124.511988pt;}
.x8{left:128.031988pt;}
.xe{left:136.026655pt;}
.xf{left:142.266655pt;}
.x11{left:143.386655pt;}
.xd{left:147.226655pt;}
.xc{left:154.106655pt;}
.x5{left:165.320000pt;}
.x13{left:206.426655pt;}
.x14{left:260.066667pt;}
.x10{left:361.693321pt;}
.x7{left:393.053321pt;}
.x3{left:397.533333pt;}
.x18{left:411.293333pt;}
.x1c{left:672.639988pt;}
.x6{left:681.439988pt;}
}




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