
    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_ce31428b35e88b441f8e63c0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_367145bb6c37dfe0ddc1e42e.woff')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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_53d340ef0094152081d2f752.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cfcc62914d1a4e50cbe56945.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_64e2512c643e10e04404d714.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a939bee4ac727b44b299b7a5.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:16.506720px;}
.ls5{letter-spacing:46.026720px;}
.ls3{letter-spacing:64.026720px;}
.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:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-3.712800px;}
._6{margin-left:-2.689200px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._9{width:2.989200px;}
._2{width:4.140960px;}
._5{width:5.183040px;}
._8{width:7.163520px;}
._d{width:8.187120px;}
._c{width:9.322560px;}
._b{width:11.377440px;}
._a{width:12.721200px;}
._f{width:13.914000px;}
._e{width:17.081280px;}
._16{width:18.525600px;}
._15{width:19.692000px;}
._17{width:26.529840px;}
._18{width:29.725440px;}
._10{width:31.963200px;}
._11{width:33.286320px;}
._12{width:79.719120px;}
._13{width:80.765040px;}
._4{width:136.056000px;}
._14{width:169.591200px;}
._3{width:636.906000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:35.100000px;}
.ya2{bottom:111.420000px;}
.yd7{bottom:114.660000px;}
.y73{bottom:115.740000px;}
.y3e{bottom:122.400000px;}
.ya1{bottom:128.700000px;}
.yd6{bottom:131.760000px;}
.y72{bottom:133.020000px;}
.y3d{bottom:140.760000px;}
.ya0{bottom:146.880000px;}
.yd5{bottom:149.040000px;}
.y71{bottom:150.120000px;}
.y3c{bottom:158.940000px;}
.y9f{bottom:165.240000px;}
.yd4{bottom:166.320000px;}
.y70{bottom:167.400000px;}
.y3b{bottom:176.220000px;}
.y9e{bottom:183.600000px;}
.y6f{bottom:184.680000px;}
.y3a{bottom:193.500000px;}
.yd3{bottom:200.880000px;}
.y6e{bottom:201.960000px;}
.y39{bottom:210.780000px;}
.yd2{bottom:218.190000px;}
.y6d{bottom:219.270000px;}
.y38{bottom:228.090000px;}
.yd1{bottom:235.290000px;}
.y6c{bottom:236.370000px;}
.y37{bottom:245.370000px;}
.yd0{bottom:252.570000px;}
.y9d{bottom:253.650000px;}
.y6b{bottom:254.730000px;}
.y36{bottom:262.470000px;}
.ycf{bottom:269.850000px;}
.y9c{bottom:270.930000px;}
.y6a{bottom:272.010000px;}
.y35{bottom:279.750000px;}
.yce{bottom:287.130000px;}
.y9b{bottom:288.210000px;}
.y69{bottom:290.370000px;}
.y34{bottom:297.030000px;}
.ycd{bottom:304.410000px;}
.y9a{bottom:305.490000px;}
.y68{bottom:308.730000px;}
.y33{bottom:314.310000px;}
.ycc{bottom:321.510000px;}
.y99{bottom:323.850000px;}
.y67{bottom:327.090000px;}
.y32{bottom:331.590000px;}
.ycb{bottom:338.790000px;}
.y98{bottom:340.950000px;}
.y66{bottom:345.270000px;}
.y31{bottom:348.870000px;}
.yca{bottom:356.070000px;}
.y97{bottom:359.310000px;}
.y65{bottom:362.550000px;}
.y30{bottom:365.970000px;}
.yc9{bottom:373.350000px;}
.y96{bottom:376.590000px;}
.y64{bottom:379.830000px;}
.y2f{bottom:383.250000px;}
.yc8{bottom:390.630000px;}
.y95{bottom:393.870000px;}
.y63{bottom:397.110000px;}
.y2e{bottom:401.610000px;}
.yc7{bottom:407.910000px;}
.y94{bottom:411.150000px;}
.y62{bottom:415.470000px;}
.y2d{bottom:419.970000px;}
.yc6{bottom:425.010000px;}
.y93{bottom:429.330000px;}
.y61{bottom:433.650000px;}
.y2c{bottom:438.330000px;}
.yc5{bottom:442.290000px;}
.y92{bottom:447.735000px;}
.y60{bottom:452.055000px;}
.y2b{bottom:456.555000px;}
.yc4{bottom:459.615000px;}
.y91{bottom:465.015000px;}
.y5f{bottom:470.415000px;}
.y2a{bottom:473.835000px;}
.yc3{bottom:476.895000px;}
.y90{bottom:482.295000px;}
.y5e{bottom:487.695000px;}
.y29{bottom:491.115000px;}
.yc2{bottom:494.175000px;}
.y8f{bottom:499.575000px;}
.y5d{bottom:504.975000px;}
.y28{bottom:508.395000px;}
.yc1{bottom:511.455000px;}
.y8e{bottom:517.935000px;}
.y5c{bottom:522.075000px;}
.y27{bottom:525.675000px;}
.yc0{bottom:528.555000px;}
.y8d{bottom:536.115000px;}
.y5b{bottom:539.355000px;}
.y26{bottom:542.955000px;}
.ybf{bottom:545.835000px;}
.y8c{bottom:553.395000px;}
.y5a{bottom:557.715000px;}
.y25{bottom:560.055000px;}
.ybe{bottom:563.115000px;}
.y8b{bottom:570.675000px;}
.y59{bottom:576.075000px;}
.y24{bottom:577.335000px;}
.ybd{bottom:580.395000px;}
.y8a{bottom:589.035000px;}
.y58{bottom:594.435000px;}
.y23{bottom:594.615000px;}
.ybc{bottom:597.675000px;}
.y89{bottom:607.395000px;}
.y57{bottom:611.715000px;}
.y22{bottom:614.055000px;}
.ybb{bottom:614.955000px;}
.y88{bottom:624.495000px;}
.y56{bottom:628.815000px;}
.y21{bottom:631.335000px;}
.yba{bottom:632.055000px;}
.y87{bottom:641.775000px;}
.y55{bottom:647.175000px;}
.y20{bottom:648.615000px;}
.yb9{bottom:649.335000px;}
.y86{bottom:659.055000px;}
.y54{bottom:665.535000px;}
.y1f{bottom:665.895000px;}
.yb8{bottom:666.615000px;}
.y85{bottom:676.335000px;}
.y53{bottom:682.845000px;}
.y1e{bottom:683.205000px;}
.yb7{bottom:683.925000px;}
.y84{bottom:693.645000px;}
.y52{bottom:700.125000px;}
.y1d{bottom:700.305000px;}
.yb6{bottom:701.205000px;}
.y83{bottom:710.925000px;}
.y51{bottom:717.225000px;}
.y1c{bottom:717.585000px;}
.yb5{bottom:718.305000px;}
.y82{bottom:728.025000px;}
.y50{bottom:734.505000px;}
.y1b{bottom:734.865000px;}
.yb4{bottom:735.585000px;}
.y81{bottom:745.305000px;}
.y4f{bottom:751.785000px;}
.y1a{bottom:752.145000px;}
.yb3{bottom:752.865000px;}
.y80{bottom:763.665000px;}
.y4e{bottom:769.065000px;}
.y19{bottom:769.425000px;}
.yb2{bottom:770.145000px;}
.y7f{bottom:782.025000px;}
.y4d{bottom:786.345000px;}
.y18{bottom:786.705000px;}
.yb1{bottom:787.425000px;}
.y7e{bottom:800.385000px;}
.y4c{bottom:803.625000px;}
.y17{bottom:803.805000px;}
.yb0{bottom:804.705000px;}
.y7d{bottom:817.485000px;}
.y4b{bottom:820.725000px;}
.y16{bottom:821.085000px;}
.yaf{bottom:822.885000px;}
.y7c{bottom:834.765000px;}
.y4a{bottom:838.005000px;}
.y15{bottom:838.365000px;}
.yae{bottom:841.245000px;}
.y7b{bottom:852.045000px;}
.y49{bottom:855.285000px;}
.y14{bottom:858.165000px;}
.yad{bottom:858.525000px;}
.y7a{bottom:870.405000px;}
.y48{bottom:872.565000px;}
.yac{bottom:876.885000px;}
.y13{bottom:877.245000px;}
.y79{bottom:888.765000px;}
.y47{bottom:889.845000px;}
.yab{bottom:894.165000px;}
.y12{bottom:896.325000px;}
.y46{bottom:907.125000px;}
.yaa{bottom:911.265000px;}
.y11{bottom:915.225000px;}
.y45{bottom:924.270000px;}
.y78{bottom:925.350000px;}
.ya9{bottom:928.590000px;}
.y10{bottom:934.170000px;}
.y44{bottom:942.630000px;}
.ya8{bottom:945.870000px;}
.yf{bottom:953.250000px;}
.y77{bottom:959.910000px;}
.y43{bottom:960.990000px;}
.ya7{bottom:963.150000px;}
.ye{bottom:972.150000px;}
.y76{bottom:977.190000px;}
.y42{bottom:979.350000px;}
.ya6{bottom:980.430000px;}
.yd{bottom:990.690000px;}
.y75{bottom:994.470000px;}
.y41{bottom:996.630000px;}
.ya5{bottom:997.710000px;}
.yc{bottom:1008.690000px;}
.y74{bottom:1012.650000px;}
.y40{bottom:1013.730000px;}
.ya4{bottom:1014.810000px;}
.yb{bottom:1029.390000px;}
.y3f{bottom:1031.010000px;}
.ya3{bottom:1032.090000px;}
.y9{bottom:1050.630000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1104.810000px;}
.y5{bottom:1121.550000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h7{height:38.759766px;}
.h5{height:42.164648px;}
.h2{height:42.894141px;}
.h9{height:43.506914px;}
.h3{height:47.545312px;}
.ha{height:49.255313px;}
.h4{height:50.800781px;}
.h8{height:53.224453px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x1{left:128.015987px;}
.x11{left:135.035987px;}
.x5{left:167.069987px;}
.xb{left:198.749987px;}
.x8{left:215.309987px;}
.xe{left:223.769987px;}
.x14{left:254.369987px;}
.x12{left:272.234987px;}
.x16{left:279.974987px;}
.x15{left:312.734987px;}
.x9{left:317.414987px;}
.x13{left:326.054987px;}
.xf{left:341.894987px;}
.xa{left:352.874987px;}
.xd{left:357.734987px;}
.xc{left:364.574987px;}
.x10{left:378.974987px;}
.x7{left:386.354987px;}
.x17{left:388.154987px;}
.x18{left:396.074987px;}
.x6{left:412.274987px;}
.x3{left:446.504987px;}
.x4{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:14.672640pt;}
.ls5{letter-spacing:40.912640pt;}
.ls3{letter-spacing:56.912640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-3.300267pt;}
._6{margin-left:-2.390400pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._9{width:2.657067pt;}
._2{width:3.680853pt;}
._5{width:4.607147pt;}
._8{width:6.367573pt;}
._d{width:7.277440pt;}
._c{width:8.286720pt;}
._b{width:10.113280pt;}
._a{width:11.307733pt;}
._f{width:12.368000pt;}
._e{width:15.183360pt;}
._16{width:16.467200pt;}
._15{width:17.504000pt;}
._17{width:23.582080pt;}
._18{width:26.422613pt;}
._10{width:28.411733pt;}
._11{width:29.587840pt;}
._12{width:70.861440pt;}
._13{width:71.791147pt;}
._4{width:120.938667pt;}
._14{width:150.747733pt;}
._3{width:566.138667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:31.200000pt;}
.ya2{bottom:99.040000pt;}
.yd7{bottom:101.920000pt;}
.y73{bottom:102.880000pt;}
.y3e{bottom:108.800000pt;}
.ya1{bottom:114.400000pt;}
.yd6{bottom:117.120000pt;}
.y72{bottom:118.240000pt;}
.y3d{bottom:125.120000pt;}
.ya0{bottom:130.560000pt;}
.yd5{bottom:132.480000pt;}
.y71{bottom:133.440000pt;}
.y3c{bottom:141.280000pt;}
.y9f{bottom:146.880000pt;}
.yd4{bottom:147.840000pt;}
.y70{bottom:148.800000pt;}
.y3b{bottom:156.640000pt;}
.y9e{bottom:163.200000pt;}
.y6f{bottom:164.160000pt;}
.y3a{bottom:172.000000pt;}
.yd3{bottom:178.560000pt;}
.y6e{bottom:179.520000pt;}
.y39{bottom:187.360000pt;}
.yd2{bottom:193.946667pt;}
.y6d{bottom:194.906667pt;}
.y38{bottom:202.746667pt;}
.yd1{bottom:209.146667pt;}
.y6c{bottom:210.106667pt;}
.y37{bottom:218.106667pt;}
.yd0{bottom:224.506667pt;}
.y9d{bottom:225.466667pt;}
.y6b{bottom:226.426667pt;}
.y36{bottom:233.306667pt;}
.ycf{bottom:239.866667pt;}
.y9c{bottom:240.826667pt;}
.y6a{bottom:241.786667pt;}
.y35{bottom:248.666667pt;}
.yce{bottom:255.226667pt;}
.y9b{bottom:256.186667pt;}
.y69{bottom:258.106667pt;}
.y34{bottom:264.026667pt;}
.ycd{bottom:270.586667pt;}
.y9a{bottom:271.546667pt;}
.y68{bottom:274.426667pt;}
.y33{bottom:279.386667pt;}
.ycc{bottom:285.786667pt;}
.y99{bottom:287.866667pt;}
.y67{bottom:290.746667pt;}
.y32{bottom:294.746667pt;}
.ycb{bottom:301.146667pt;}
.y98{bottom:303.066667pt;}
.y66{bottom:306.906667pt;}
.y31{bottom:310.106667pt;}
.yca{bottom:316.506667pt;}
.y97{bottom:319.386667pt;}
.y65{bottom:322.266667pt;}
.y30{bottom:325.306667pt;}
.yc9{bottom:331.866667pt;}
.y96{bottom:334.746667pt;}
.y64{bottom:337.626667pt;}
.y2f{bottom:340.666667pt;}
.yc8{bottom:347.226667pt;}
.y95{bottom:350.106667pt;}
.y63{bottom:352.986667pt;}
.y2e{bottom:356.986667pt;}
.yc7{bottom:362.586667pt;}
.y94{bottom:365.466667pt;}
.y62{bottom:369.306667pt;}
.y2d{bottom:373.306667pt;}
.yc6{bottom:377.786667pt;}
.y93{bottom:381.626667pt;}
.y61{bottom:385.466667pt;}
.y2c{bottom:389.626667pt;}
.yc5{bottom:393.146667pt;}
.y92{bottom:397.986667pt;}
.y60{bottom:401.826667pt;}
.y2b{bottom:405.826667pt;}
.yc4{bottom:408.546667pt;}
.y91{bottom:413.346667pt;}
.y5f{bottom:418.146667pt;}
.y2a{bottom:421.186667pt;}
.yc3{bottom:423.906667pt;}
.y90{bottom:428.706667pt;}
.y5e{bottom:433.506667pt;}
.y29{bottom:436.546667pt;}
.yc2{bottom:439.266667pt;}
.y8f{bottom:444.066667pt;}
.y5d{bottom:448.866667pt;}
.y28{bottom:451.906667pt;}
.yc1{bottom:454.626667pt;}
.y8e{bottom:460.386667pt;}
.y5c{bottom:464.066667pt;}
.y27{bottom:467.266667pt;}
.yc0{bottom:469.826667pt;}
.y8d{bottom:476.546667pt;}
.y5b{bottom:479.426667pt;}
.y26{bottom:482.626667pt;}
.ybf{bottom:485.186667pt;}
.y8c{bottom:491.906667pt;}
.y5a{bottom:495.746667pt;}
.y25{bottom:497.826667pt;}
.ybe{bottom:500.546667pt;}
.y8b{bottom:507.266667pt;}
.y59{bottom:512.066667pt;}
.y24{bottom:513.186667pt;}
.ybd{bottom:515.906667pt;}
.y8a{bottom:523.586667pt;}
.y58{bottom:528.386667pt;}
.y23{bottom:528.546667pt;}
.ybc{bottom:531.266667pt;}
.y89{bottom:539.906667pt;}
.y57{bottom:543.746667pt;}
.y22{bottom:545.826667pt;}
.ybb{bottom:546.626667pt;}
.y88{bottom:555.106667pt;}
.y56{bottom:558.946667pt;}
.y21{bottom:561.186667pt;}
.yba{bottom:561.826667pt;}
.y87{bottom:570.466667pt;}
.y55{bottom:575.266667pt;}
.y20{bottom:576.546667pt;}
.yb9{bottom:577.186667pt;}
.y86{bottom:585.826667pt;}
.y54{bottom:591.586667pt;}
.y1f{bottom:591.906667pt;}
.yb8{bottom:592.546667pt;}
.y85{bottom:601.186667pt;}
.y53{bottom:606.973333pt;}
.y1e{bottom:607.293333pt;}
.yb7{bottom:607.933333pt;}
.y84{bottom:616.573333pt;}
.y52{bottom:622.333333pt;}
.y1d{bottom:622.493333pt;}
.yb6{bottom:623.293333pt;}
.y83{bottom:631.933333pt;}
.y51{bottom:637.533333pt;}
.y1c{bottom:637.853333pt;}
.yb5{bottom:638.493333pt;}
.y82{bottom:647.133333pt;}
.y50{bottom:652.893333pt;}
.y1b{bottom:653.213333pt;}
.yb4{bottom:653.853333pt;}
.y81{bottom:662.493333pt;}
.y4f{bottom:668.253333pt;}
.y1a{bottom:668.573333pt;}
.yb3{bottom:669.213333pt;}
.y80{bottom:678.813333pt;}
.y4e{bottom:683.613333pt;}
.y19{bottom:683.933333pt;}
.yb2{bottom:684.573333pt;}
.y7f{bottom:695.133333pt;}
.y4d{bottom:698.973333pt;}
.y18{bottom:699.293333pt;}
.yb1{bottom:699.933333pt;}
.y7e{bottom:711.453333pt;}
.y4c{bottom:714.333333pt;}
.y17{bottom:714.493333pt;}
.yb0{bottom:715.293333pt;}
.y7d{bottom:726.653333pt;}
.y4b{bottom:729.533333pt;}
.y16{bottom:729.853333pt;}
.yaf{bottom:731.453333pt;}
.y7c{bottom:742.013333pt;}
.y4a{bottom:744.893333pt;}
.y15{bottom:745.213333pt;}
.yae{bottom:747.773333pt;}
.y7b{bottom:757.373333pt;}
.y49{bottom:760.253333pt;}
.y14{bottom:762.813333pt;}
.yad{bottom:763.133333pt;}
.y7a{bottom:773.693333pt;}
.y48{bottom:775.613333pt;}
.yac{bottom:779.453333pt;}
.y13{bottom:779.773333pt;}
.y79{bottom:790.013333pt;}
.y47{bottom:790.973333pt;}
.yab{bottom:794.813333pt;}
.y12{bottom:796.733333pt;}
.y46{bottom:806.333333pt;}
.yaa{bottom:810.013333pt;}
.y11{bottom:813.533333pt;}
.y45{bottom:821.573333pt;}
.y78{bottom:822.533333pt;}
.ya9{bottom:825.413333pt;}
.y10{bottom:830.373333pt;}
.y44{bottom:837.893333pt;}
.ya8{bottom:840.773333pt;}
.yf{bottom:847.333333pt;}
.y77{bottom:853.253333pt;}
.y43{bottom:854.213333pt;}
.ya7{bottom:856.133333pt;}
.ye{bottom:864.133333pt;}
.y76{bottom:868.613333pt;}
.y42{bottom:870.533333pt;}
.ya6{bottom:871.493333pt;}
.yd{bottom:880.613333pt;}
.y75{bottom:883.973333pt;}
.y41{bottom:885.893333pt;}
.ya5{bottom:886.853333pt;}
.yc{bottom:896.613333pt;}
.y74{bottom:900.133333pt;}
.y40{bottom:901.093333pt;}
.ya4{bottom:902.053333pt;}
.yb{bottom:915.013333pt;}
.y3f{bottom:916.453333pt;}
.ya3{bottom:917.413333pt;}
.y9{bottom:933.893333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:982.053333pt;}
.y5{bottom:996.933333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h7{height:34.453125pt;}
.h5{height:37.479688pt;}
.h2{height:38.128125pt;}
.h9{height:38.672812pt;}
.h3{height:42.262500pt;}
.ha{height:43.782500pt;}
.h4{height:45.156250pt;}
.h8{height:47.310625pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x1{left:113.791988pt;}
.x11{left:120.031988pt;}
.x5{left:148.506655pt;}
.xb{left:176.666655pt;}
.x8{left:191.386655pt;}
.xe{left:198.906655pt;}
.x14{left:226.106655pt;}
.x12{left:241.986655pt;}
.x16{left:248.866655pt;}
.x15{left:277.986655pt;}
.x9{left:282.146655pt;}
.x13{left:289.826655pt;}
.xf{left:303.906655pt;}
.xa{left:313.666655pt;}
.xd{left:317.986655pt;}
.xc{left:324.066655pt;}
.x10{left:336.866655pt;}
.x7{left:343.426655pt;}
.x17{left:345.026655pt;}
.x18{left:352.066655pt;}
.x6{left:366.466655pt;}
.x3{left:396.893322pt;}
.x4{left:460.893322pt;}
}




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