
    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_c25e7c84e40a2034b1f87413.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4691337945698791f2c20dd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_f7088fdc297680e3e3ba0aec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_cb3b854770013dbad681750a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_b56407ba914f4be51f0a15d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_77d4ebee55be5b50be04ad3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_d32739c7d510cd48413b99ea.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3c3b9e39901127d994f6e557.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120605;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_00291f866a29ee6696bbea11.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.lsb{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.034560px;}
.ls9{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.022320px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:39.881280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-48.262320px;}
.ws1{word-spacing:-48.240000px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.482000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-6.755760px;}
._16{margin-left:-5.445600px;}
._4{margin-left:-3.841920px;}
._e{margin-left:-2.409840px;}
._0{margin-left:-1.192320px;}
._2{width:1.015920px;}
._8{width:2.018640px;}
._3{width:3.050400px;}
._12{width:4.752000px;}
._6{width:6.158400px;}
._5{width:7.320000px;}
._b{width:8.756640px;}
._f{width:10.188000px;}
._a{width:11.826000px;}
._17{width:13.115520px;}
._9{width:14.742000px;}
._7{width:16.416000px;}
._15{width:18.198000px;}
._11{width:19.494000px;}
._1a{width:20.675280px;}
._18{width:21.792960px;}
._19{width:22.919040px;}
._1c{width:24.827760px;}
._1b{width:25.966080px;}
._c{width:27.324000px;}
._d{width:28.458000px;}
._13{width:30.078000px;}
._10{width:31.428000px;}
._1e{width:36.233280px;}
._14{width:53.082000px;}
._21{width:67.233600px;}
._1d{width:84.389760px;}
._20{width:103.541760px;}
._1f{width:104.659200px;}
._22{width:211.901760px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.880000px;}
.y9{bottom:5.610000px;}
.y81{bottom:6.300000px;}
.y86{bottom:6.480000px;}
.y2{bottom:6.510000px;}
.y47{bottom:9.900000px;}
.y48{bottom:10.800000px;}
.y37{bottom:18.360000px;}
.y5{bottom:27.210000px;}
.y88{bottom:28.080000px;}
.y84{bottom:28.260000px;}
.y8{bottom:28.830000px;}
.y36{bottom:33.840000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y35{bottom:49.500000px;}
.yb{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y34{bottom:64.980000px;}
.y33{bottom:80.460000px;}
.y32{bottom:95.940000px;}
.y31{bottom:111.600000px;}
.y52{bottom:124.596000px;}
.y30{bottom:127.080000px;}
.y7f{bottom:131.976000px;}
.y2f{bottom:142.560000px;}
.y51{bottom:146.376000px;}
.ya0{bottom:149.436000px;}
.y7e{bottom:153.930000px;}
.y2e{bottom:158.040000px;}
.y50{bottom:168.330000px;}
.y9f{bottom:171.210000px;}
.y2d{bottom:173.700000px;}
.y7d{bottom:175.710000px;}
.y2c{bottom:189.180000px;}
.y4f{bottom:190.110000px;}
.y9e{bottom:192.990000px;}
.y7c{bottom:197.490000px;}
.y2b{bottom:204.660000px;}
.y4e{bottom:211.890000px;}
.y9d{bottom:214.770000px;}
.y7b{bottom:219.270000px;}
.y2a{bottom:220.140000px;}
.y45{bottom:226.620000px;}
.y4d{bottom:233.670000px;}
.y29{bottom:235.830000px;}
.y9c{bottom:236.730000px;}
.y44{bottom:240.510000px;}
.y7a{bottom:241.230000px;}
.y28{bottom:251.310000px;}
.y43{bottom:254.370000px;}
.y4c{bottom:255.450000px;}
.y9b{bottom:258.510000px;}
.y79{bottom:263.010000px;}
.y27{bottom:266.790000px;}
.y42{bottom:268.050000px;}
.y4b{bottom:277.410000px;}
.y9a{bottom:280.290000px;}
.y41{bottom:281.910000px;}
.y26{bottom:282.270000px;}
.y78{bottom:284.790000px;}
.y40{bottom:295.770000px;}
.y25{bottom:297.750000px;}
.y4a{bottom:299.190000px;}
.y99{bottom:302.070000px;}
.y77{bottom:306.570000px;}
.y3f{bottom:309.450000px;}
.y24{bottom:313.410000px;}
.y49{bottom:320.970000px;}
.y3e{bottom:323.310000px;}
.y98{bottom:323.850000px;}
.y76{bottom:328.350000px;}
.y23{bottom:328.890000px;}
.y46{bottom:336.495000px;}
.y3d{bottom:337.170000px;}
.y22{bottom:344.370000px;}
.y97{bottom:345.855000px;}
.y75{bottom:350.355000px;}
.y3c{bottom:350.850000px;}
.y21{bottom:359.850000px;}
.y3b{bottom:364.710000px;}
.y96{bottom:367.635000px;}
.y15{bottom:367.995000px;}
.y74{bottom:372.135000px;}
.y20{bottom:375.510000px;}
.y3a{bottom:378.570000px;}
.y95{bottom:389.415000px;}
.y1f{bottom:390.990000px;}
.y39{bottom:392.250000px;}
.y73{bottom:393.915000px;}
.y1e{bottom:406.470000px;}
.y94{bottom:411.195000px;}
.y72{bottom:415.695000px;}
.y1d{bottom:421.950000px;}
.y93{bottom:433.155000px;}
.y1c{bottom:437.610000px;}
.y71{bottom:437.655000px;}
.y1b{bottom:453.090000px;}
.y92{bottom:454.935000px;}
.y70{bottom:459.435000px;}
.y1a{bottom:468.570000px;}
.y91{bottom:476.715000px;}
.y6f{bottom:481.215000px;}
.y19{bottom:484.050000px;}
.y90{bottom:498.495000px;}
.y18{bottom:499.710000px;}
.y6e{bottom:502.995000px;}
.y17{bottom:515.235000px;}
.y8f{bottom:520.275000px;}
.y6d{bottom:524.775000px;}
.y16{bottom:530.715000px;}
.y8e{bottom:542.235000px;}
.y6c{bottom:546.735000px;}
.y8d{bottom:564.015000px;}
.y6b{bottom:568.515000px;}
.y8c{bottom:585.795000px;}
.y6a{bottom:590.295000px;}
.y8b{bottom:607.605000px;}
.y69{bottom:612.105000px;}
.y8a{bottom:629.385000px;}
.y68{bottom:633.885000px;}
.y89{bottom:651.345000px;}
.y67{bottom:655.845000px;}
.y87{bottom:667.545000px;}
.y66{bottom:677.625000px;}
.y65{bottom:699.405000px;}
.y85{bottom:711.825000px;}
.y64{bottom:721.185000px;}
.y63{bottom:743.145000px;}
.y83{bottom:756.285000px;}
.y62{bottom:764.925000px;}
.y61{bottom:786.705000px;}
.y82{bottom:800.745000px;}
.y60{bottom:808.485000px;}
.y80{bottom:823.245000px;}
.y5f{bottom:830.265000px;}
.y5e{bottom:852.225000px;}
.y5d{bottom:874.050000px;}
.y5c{bottom:895.830000px;}
.y14{bottom:917.070000px;}
.y5b{bottom:917.610000px;}
.y13{bottom:937.050000px;}
.y5a{bottom:939.570000px;}
.y12{bottom:956.850000px;}
.y59{bottom:961.350000px;}
.y11{bottom:976.650000px;}
.y58{bottom:983.130000px;}
.y10{bottom:996.990000px;}
.y57{bottom:1004.910000px;}
.yf{bottom:1018.770000px;}
.y56{bottom:1026.690000px;}
.ye{bottom:1040.730000px;}
.y55{bottom:1048.650000px;}
.yd{bottom:1063.770000px;}
.y54{bottom:1070.430000px;}
.yc{bottom:1089.510000px;}
.y53{bottom:1092.210000px;}
.ya{bottom:1112.190000px;}
.y1{bottom:1132.350000px;}
.h14{height:21.780000px;}
.h10{height:31.500000px;}
.he{height:34.036523px;}
.hc{height:37.705078px;}
.hb{height:38.100586px;}
.hf{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h16{height:43.560000px;}
.h15{height:43.740000px;}
.hd{height:44.507812px;}
.h11{height:46.251562px;}
.h4{height:46.736719px;}
.h8{height:47.980898px;}
.h13{height:48.224531px;}
.h6{height:49.255313px;}
.h12{height:54.596250px;}
.h9{height:54.864844px;}
.h7{height:65.884219px;}
.h2{height:77.436000px;}
.ha{height:543.315000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.wa{width:190.290000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.wb{width:233.130000px;}
.wc{width:250.590000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x17{left:9.540000px;}
.x6{left:20.160000px;}
.x15{left:29.520000px;}
.x1c{left:54.000000px;}
.x2{left:58.494000px;}
.x1a{left:67.134000px;}
.x1e{left:73.080000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:104.445000px;}
.xa{left:108.035987px;}
.x12{left:124.235987px;}
.x8{left:132.165000px;}
.xc{left:134.315987px;}
.xf{left:147.275987px;}
.x1f{left:150.509987px;}
.x18{left:162.029987px;}
.x3{left:171.930000px;}
.x13{left:187.589987px;}
.x11{left:273.269987px;}
.x1b{left:299.775000px;}
.x10{left:306.614987px;}
.x19{left:349.634987px;}
.xd{left:385.094987px;}
.x16{left:391.575000px;}
.xe{left:446.474987px;}
.xb{left:503.024987px;}
.x1d{left:533.805000px;}
.x14{left:567.105000px;}
.x5{left:599.865000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.030720pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.019840pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:35.450027pt;}
.ws2{word-spacing:-42.899840pt;}
.ws1{word-spacing:-42.880000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws4{word-spacing:-11.984000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-6.005120pt;}
._16{margin-left:-4.840533pt;}
._4{margin-left:-3.415040pt;}
._e{margin-left:-2.142080pt;}
._0{margin-left:-1.059840pt;}
._2{width:0.903040pt;}
._8{width:1.794347pt;}
._3{width:2.711467pt;}
._12{width:4.224000pt;}
._6{width:5.474133pt;}
._5{width:6.506667pt;}
._b{width:7.783680pt;}
._f{width:9.056000pt;}
._a{width:10.512000pt;}
._17{width:11.658240pt;}
._9{width:13.104000pt;}
._7{width:14.592000pt;}
._15{width:16.176000pt;}
._11{width:17.328000pt;}
._1a{width:18.378027pt;}
._18{width:19.371520pt;}
._19{width:20.372480pt;}
._1c{width:22.069120pt;}
._1b{width:23.080960pt;}
._c{width:24.288000pt;}
._d{width:25.296000pt;}
._13{width:26.736000pt;}
._10{width:27.936000pt;}
._1e{width:32.207360pt;}
._14{width:47.184000pt;}
._21{width:59.763200pt;}
._1d{width:75.013120pt;}
._20{width:92.037120pt;}
._1f{width:93.030400pt;}
._22{width:188.357120pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.560000pt;}
.y9{bottom:4.986667pt;}
.y81{bottom:5.600000pt;}
.y86{bottom:5.760000pt;}
.y2{bottom:5.786667pt;}
.y47{bottom:8.800000pt;}
.y48{bottom:9.600000pt;}
.y37{bottom:16.320000pt;}
.y5{bottom:24.186667pt;}
.y88{bottom:24.960000pt;}
.y84{bottom:25.120000pt;}
.y8{bottom:25.626667pt;}
.y36{bottom:30.080000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y35{bottom:44.000000pt;}
.yb{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y34{bottom:57.760000pt;}
.y33{bottom:71.520000pt;}
.y32{bottom:85.280000pt;}
.y31{bottom:99.200000pt;}
.y52{bottom:110.752000pt;}
.y30{bottom:112.960000pt;}
.y7f{bottom:117.312000pt;}
.y2f{bottom:126.720000pt;}
.y51{bottom:130.112000pt;}
.ya0{bottom:132.832000pt;}
.y7e{bottom:136.826667pt;}
.y2e{bottom:140.480000pt;}
.y50{bottom:149.626667pt;}
.y9f{bottom:152.186667pt;}
.y2d{bottom:154.400000pt;}
.y7d{bottom:156.186667pt;}
.y2c{bottom:168.160000pt;}
.y4f{bottom:168.986667pt;}
.y9e{bottom:171.546667pt;}
.y7c{bottom:175.546667pt;}
.y2b{bottom:181.920000pt;}
.y4e{bottom:188.346667pt;}
.y9d{bottom:190.906667pt;}
.y7b{bottom:194.906667pt;}
.y2a{bottom:195.680000pt;}
.y45{bottom:201.440000pt;}
.y4d{bottom:207.706667pt;}
.y29{bottom:209.626667pt;}
.y9c{bottom:210.426667pt;}
.y44{bottom:213.786667pt;}
.y7a{bottom:214.426667pt;}
.y28{bottom:223.386667pt;}
.y43{bottom:226.106667pt;}
.y4c{bottom:227.066667pt;}
.y9b{bottom:229.786667pt;}
.y79{bottom:233.786667pt;}
.y27{bottom:237.146667pt;}
.y42{bottom:238.266667pt;}
.y4b{bottom:246.586667pt;}
.y9a{bottom:249.146667pt;}
.y41{bottom:250.586667pt;}
.y26{bottom:250.906667pt;}
.y78{bottom:253.146667pt;}
.y40{bottom:262.906667pt;}
.y25{bottom:264.666667pt;}
.y4a{bottom:265.946667pt;}
.y99{bottom:268.506667pt;}
.y77{bottom:272.506667pt;}
.y3f{bottom:275.066667pt;}
.y24{bottom:278.586667pt;}
.y49{bottom:285.306667pt;}
.y3e{bottom:287.386667pt;}
.y98{bottom:287.866667pt;}
.y76{bottom:291.866667pt;}
.y23{bottom:292.346667pt;}
.y46{bottom:299.106667pt;}
.y3d{bottom:299.706667pt;}
.y22{bottom:306.106667pt;}
.y97{bottom:307.426667pt;}
.y75{bottom:311.426667pt;}
.y3c{bottom:311.866667pt;}
.y21{bottom:319.866667pt;}
.y3b{bottom:324.186667pt;}
.y96{bottom:326.786667pt;}
.y15{bottom:327.106667pt;}
.y74{bottom:330.786667pt;}
.y20{bottom:333.786667pt;}
.y3a{bottom:336.506667pt;}
.y95{bottom:346.146667pt;}
.y1f{bottom:347.546667pt;}
.y39{bottom:348.666667pt;}
.y73{bottom:350.146667pt;}
.y1e{bottom:361.306667pt;}
.y94{bottom:365.506667pt;}
.y72{bottom:369.506667pt;}
.y1d{bottom:375.066667pt;}
.y93{bottom:385.026667pt;}
.y1c{bottom:388.986667pt;}
.y71{bottom:389.026667pt;}
.y1b{bottom:402.746667pt;}
.y92{bottom:404.386667pt;}
.y70{bottom:408.386667pt;}
.y1a{bottom:416.506667pt;}
.y91{bottom:423.746667pt;}
.y6f{bottom:427.746667pt;}
.y19{bottom:430.266667pt;}
.y90{bottom:443.106667pt;}
.y18{bottom:444.186667pt;}
.y6e{bottom:447.106667pt;}
.y17{bottom:457.986667pt;}
.y8f{bottom:462.466667pt;}
.y6d{bottom:466.466667pt;}
.y16{bottom:471.746667pt;}
.y8e{bottom:481.986667pt;}
.y6c{bottom:485.986667pt;}
.y8d{bottom:501.346667pt;}
.y6b{bottom:505.346667pt;}
.y8c{bottom:520.706667pt;}
.y6a{bottom:524.706667pt;}
.y8b{bottom:540.093333pt;}
.y69{bottom:544.093333pt;}
.y8a{bottom:559.453333pt;}
.y68{bottom:563.453333pt;}
.y89{bottom:578.973333pt;}
.y67{bottom:582.973333pt;}
.y87{bottom:593.373333pt;}
.y66{bottom:602.333333pt;}
.y65{bottom:621.693333pt;}
.y85{bottom:632.733333pt;}
.y64{bottom:641.053333pt;}
.y63{bottom:660.573333pt;}
.y83{bottom:672.253333pt;}
.y62{bottom:679.933333pt;}
.y61{bottom:699.293333pt;}
.y82{bottom:711.773333pt;}
.y60{bottom:718.653333pt;}
.y80{bottom:731.773333pt;}
.y5f{bottom:738.013333pt;}
.y5e{bottom:757.533333pt;}
.y5d{bottom:776.933333pt;}
.y5c{bottom:796.293333pt;}
.y14{bottom:815.173333pt;}
.y5b{bottom:815.653333pt;}
.y13{bottom:832.933333pt;}
.y5a{bottom:835.173333pt;}
.y12{bottom:850.533333pt;}
.y59{bottom:854.533333pt;}
.y11{bottom:868.133333pt;}
.y58{bottom:873.893333pt;}
.y10{bottom:886.213333pt;}
.y57{bottom:893.253333pt;}
.yf{bottom:905.573333pt;}
.y56{bottom:912.613333pt;}
.ye{bottom:925.093333pt;}
.y55{bottom:932.133333pt;}
.yd{bottom:945.573333pt;}
.y54{bottom:951.493333pt;}
.yc{bottom:968.453333pt;}
.y53{bottom:970.853333pt;}
.ya{bottom:988.613333pt;}
.y1{bottom:1006.533333pt;}
.h14{height:19.360000pt;}
.h10{height:28.000000pt;}
.he{height:30.254687pt;}
.hc{height:33.515625pt;}
.hb{height:33.867188pt;}
.hf{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h16{height:38.720000pt;}
.h15{height:38.880000pt;}
.hd{height:39.562500pt;}
.h11{height:41.112500pt;}
.h4{height:41.543750pt;}
.h8{height:42.649687pt;}
.h13{height:42.866250pt;}
.h6{height:43.782500pt;}
.h12{height:48.530000pt;}
.h9{height:48.768750pt;}
.h7{height:58.563750pt;}
.h2{height:68.832000pt;}
.ha{height:482.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.wa{width:169.146667pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.wb{width:207.226667pt;}
.wc{width:222.746667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x17{left:8.480000pt;}
.x6{left:17.920000pt;}
.x15{left:26.240000pt;}
.x1c{left:48.000000pt;}
.x2{left:51.994667pt;}
.x1a{left:59.674667pt;}
.x1e{left:64.960000pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:92.840000pt;}
.xa{left:96.031988pt;}
.x12{left:110.431988pt;}
.x8{left:117.480000pt;}
.xc{left:119.391988pt;}
.xf{left:130.911988pt;}
.x1f{left:133.786655pt;}
.x18{left:144.026655pt;}
.x3{left:152.826667pt;}
.x13{left:166.746655pt;}
.x11{left:242.906655pt;}
.x1b{left:266.466667pt;}
.x10{left:272.546655pt;}
.x19{left:310.786655pt;}
.xd{left:342.306655pt;}
.x16{left:348.066667pt;}
.xe{left:396.866655pt;}
.xb{left:447.133322pt;}
.x1d{left:474.493333pt;}
.x14{left:504.093333pt;}
.x5{left:533.213333pt;}
}




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