
    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_341981ff32ed1da61c466579.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_7d344e45fa9391d9a0e76ec8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_427af7fae0959ef8106d00da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.055176;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_98fc1cbfb3f8f29c5c17cf5c.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_2122ba75504d3d9272d3c3b0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a3490040a74c0f92abf23e2d.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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: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;}
.ls6{letter-spacing:-0.240600px;}
.ls7{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.087600px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.993600px;}
.ls9{letter-spacing:33.960000px;}
.ls8{letter-spacing:64.002720px;}
.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:-59.760000px;}
.ws5{word-spacing:-36.000000px;}
.ws7{word-spacing:-27.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.158800px;}
.ws2{word-spacing:-11.005800px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-20.718720px;}
._9{margin-left:-9.703440px;}
._6{margin-left:-8.640720px;}
._8{margin-left:-7.436160px;}
._0{margin-left:-5.365440px;}
._7{margin-left:-4.029840px;}
._2{margin-left:-3.006000px;}
._1{margin-left:-1.059840px;}
._3{width:1.377360px;}
._d{width:3.580560px;}
._c{width:4.992720px;}
._a{width:7.220640px;}
._b{width:8.691360px;}
._11{width:11.828640px;}
._12{width:12.919440px;}
._10{width:15.193200px;}
._e{width:19.028640px;}
._f{width:20.248800px;}
._14{width:25.632000px;}
._13{width:27.288000px;}
._15{width:28.293840px;}
._4{width:191.496000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fs9{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y2b{bottom:-3.060000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:7.920000px;}
.y7c{bottom:127.836000px;}
.y5c{bottom:130.716000px;}
.y29{bottom:132.156000px;}
.y9a{bottom:144.396000px;}
.y5b{bottom:151.410000px;}
.y28{bottom:152.850000px;}
.y99{bottom:165.090000px;}
.y7b{bottom:172.110000px;}
.y5a{bottom:172.650000px;}
.y27{bottom:174.090000px;}
.y98{bottom:185.790000px;}
.y7a{bottom:192.810000px;}
.y59{bottom:196.230000px;}
.y26{bottom:197.670000px;}
.y97{bottom:206.490000px;}
.y79{bottom:214.050000px;}
.y58{bottom:216.930000px;}
.y25{bottom:218.370000px;}
.y96{bottom:227.190000px;}
.y57{bottom:237.630000px;}
.y24{bottom:239.070000px;}
.y95{bottom:247.890000px;}
.y78{bottom:258.330000px;}
.y56{bottom:262.110000px;}
.y23{bottom:263.550000px;}
.y94{bottom:268.590000px;}
.y77{bottom:279.030000px;}
.y93{bottom:289.290000px;}
.y55{bottom:299.730000px;}
.y22{bottom:301.170000px;}
.y76{bottom:301.530000px;}
.y92{bottom:309.990000px;}
.y54{bottom:320.430000px;}
.y21{bottom:322.770000px;}
.y75{bottom:330.690000px;}
.y53{bottom:341.175000px;}
.y20{bottom:343.875000px;}
.y74{bottom:351.435000px;}
.y52{bottom:362.415000px;}
.y1f{bottom:364.575000px;}
.ybf{bottom:366.735000px;}
.y73{bottom:372.135000px;}
.y1e{bottom:385.275000px;}
.y51{bottom:385.995000px;}
.y91{bottom:392.835000px;}
.y72{bottom:393.555000px;}
.ybe{bottom:397.515000px;}
.y1d{bottom:406.515000px;}
.y50{bottom:406.695000px;}
.y90{bottom:413.535000px;}
.y71{bottom:417.135000px;}
.ybd{bottom:419.115000px;}
.y4f{bottom:427.395000px;}
.y1c{bottom:430.095000px;}
.y8f{bottom:434.235000px;}
.y70{bottom:437.835000px;}
.ybc{bottom:440.535000px;}
.y4e{bottom:448.635000px;}
.y1b{bottom:450.795000px;}
.y8e{bottom:454.935000px;}
.y6f{bottom:458.355000px;}
.ybb{bottom:462.135000px;}
.y1a{bottom:471.495000px;}
.y4d{bottom:472.215000px;}
.y8d{bottom:475.635000px;}
.y6e{bottom:479.775000px;}
.yba{bottom:483.735000px;}
.y19{bottom:492.195000px;}
.y4c{bottom:492.915000px;}
.y8c{bottom:496.335000px;}
.y6d{bottom:503.355000px;}
.yb9{bottom:505.335000px;}
.y18{bottom:512.895000px;}
.y4b{bottom:513.615000px;}
.y8b{bottom:519.015000px;}
.y6c{bottom:524.055000px;}
.yb8{bottom:526.755000px;}
.y17{bottom:533.595000px;}
.y4a{bottom:534.855000px;}
.y6b{bottom:545.295000px;}
.yb7{bottom:547.455000px;}
.y8a{bottom:549.975000px;}
.y16{bottom:554.295000px;}
.y49{bottom:558.435000px;}
.yb6{bottom:568.155000px;}
.y6a{bottom:568.875000px;}
.y15{bottom:574.995000px;}
.y48{bottom:579.135000px;}
.y89{bottom:581.115000px;}
.yb5{bottom:588.855000px;}
.y69{bottom:589.575000px;}
.y14{bottom:595.695000px;}
.y47{bottom:599.835000px;}
.yb4{bottom:609.585000px;}
.y68{bottom:610.305000px;}
.y13{bottom:616.425000px;}
.y46{bottom:621.105000px;}
.yb3{bottom:630.285000px;}
.y88{bottom:631.005000px;}
.y67{bottom:631.545000px;}
.y12{bottom:637.125000px;}
.y45{bottom:644.685000px;}
.yb2{bottom:650.985000px;}
.y87{bottom:651.705000px;}
.y66{bottom:655.125000px;}
.y11{bottom:657.825000px;}
.y44{bottom:665.385000px;}
.yb1{bottom:671.685000px;}
.y86{bottom:672.405000px;}
.y65{bottom:675.825000px;}
.y10{bottom:678.525000px;}
.y43{bottom:686.085000px;}
.yb0{bottom:692.385000px;}
.y85{bottom:693.105000px;}
.y64{bottom:696.525000px;}
.yf{bottom:699.225000px;}
.y42{bottom:707.505000px;}
.yaf{bottom:713.085000px;}
.y84{bottom:717.585000px;}
.y63{bottom:717.765000px;}
.ye{bottom:719.925000px;}
.y41{bottom:731.085000px;}
.yd{bottom:740.625000px;}
.y62{bottom:741.345000px;}
.yae{bottom:743.865000px;}
.y40{bottom:751.785000px;}
.y83{bottom:755.205000px;}
.yc{bottom:761.325000px;}
.y61{bottom:762.045000px;}
.yad{bottom:765.465000px;}
.y3f{bottom:772.485000px;}
.y82{bottom:775.905000px;}
.yb{bottom:782.565000px;}
.yac{bottom:786.165000px;}
.y60{bottom:786.525000px;}
.y81{bottom:796.605000px;}
.y3e{bottom:796.965000px;}
.ya{bottom:806.685000px;}
.yab{bottom:806.865000px;}
.y80{bottom:817.305000px;}
.y5f{bottom:825.945000px;}
.yaa{bottom:827.565000px;}
.y9{bottom:830.805000px;}
.y3d{bottom:834.405000px;}
.y7f{bottom:838.005000px;}
.ya9{bottom:848.265000px;}
.y3c{bottom:855.105000px;}
.y7e{bottom:858.705000px;}
.y8{bottom:859.605000px;}
.ya8{bottom:868.965000px;}
.y5e{bottom:875.850000px;}
.y3b{bottom:876.570000px;}
.y7d{bottom:883.230000px;}
.ya7{bottom:889.710000px;}
.y5d{bottom:897.270000px;}
.y3a{bottom:900.150000px;}
.y7{bottom:907.890000px;}
.ya6{bottom:910.410000px;}
.y39{bottom:920.850000px;}
.ya5{bottom:931.110000px;}
.y38{bottom:941.550000px;}
.ya4{bottom:951.810000px;}
.y6{bottom:956.130000px;}
.y37{bottom:962.790000px;}
.ya3{bottom:972.510000px;}
.y36{bottom:986.370000px;}
.ya2{bottom:993.210000px;}
.y35{bottom:1007.070000px;}
.ya1{bottom:1013.910000px;}
.y34{bottom:1027.770000px;}
.y5{bottom:1029.390000px;}
.ya0{bottom:1034.610000px;}
.y33{bottom:1049.010000px;}
.y9f{bottom:1055.310000px;}
.y4{bottom:1057.470000px;}
.y32{bottom:1072.590000px;}
.y9e{bottom:1076.010000px;}
.y31{bottom:1093.290000px;}
.y3{bottom:1093.650000px;}
.y9d{bottom:1096.710000px;}
.y30{bottom:1113.990000px;}
.y9c{bottom:1117.410000px;}
.y2{bottom:1126.230000px;}
.y2f{bottom:1135.230000px;}
.y9b{bottom:1138.140000px;}
.y2e{bottom:1162.800000px;}
.y2c{bottom:1180.080000px;}
.y1{bottom:1193.580000px;}
.y2a{bottom:1217.700000px;}
.he{height:10.980000px;}
.hf{height:21.960000px;}
.h6{height:41.726953px;}
.h4{height:43.282266px;}
.h2{height:46.251562px;}
.h9{height:50.273438px;}
.h5{height:50.597578px;}
.hb{height:50.800781px;}
.h11{height:52.417969px;}
.h12{height:59.343750px;}
.h8{height:59.436914px;}
.hd{height:61.329023px;}
.ha{height:71.613281px;}
.h10{height:76.201172px;}
.hc{height:101.601562px;}
.h3{height:101.804766px;}
.h7{height:118.365820px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:2.340150px;}
.w4{width:4.860150px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.035987px;}
.xc{left:128.915987px;}
.xa{left:135.035987px;}
.x7{left:144.035987px;}
.x6{left:161.489987px;}
.x2{left:192.089987px;}
.x8{left:247.889987px;}
.x1{left:305.534987px;}
.x9{left:348.734987px;}
.x3{left:364.934987px;}
.x4{left:594.104987px;}
.xb{left:804.570000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.213867pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.077867pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.883200pt;}
.ls9{letter-spacing:30.186667pt;}
.ls8{letter-spacing:56.891307pt;}
.ws8{word-spacing:-53.120000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws7{word-spacing:-24.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-9.918933pt;}
.ws2{word-spacing:-9.782933pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-18.416640pt;}
._9{margin-left:-8.625280pt;}
._6{margin-left:-7.680640pt;}
._8{margin-left:-6.609920pt;}
._0{margin-left:-4.769280pt;}
._7{margin-left:-3.582080pt;}
._2{margin-left:-2.672000pt;}
._1{margin-left:-0.942080pt;}
._3{width:1.224320pt;}
._d{width:3.182720pt;}
._c{width:4.437973pt;}
._a{width:6.418347pt;}
._b{width:7.725653pt;}
._11{width:10.514347pt;}
._12{width:11.483947pt;}
._10{width:13.505067pt;}
._e{width:16.914347pt;}
._f{width:17.998933pt;}
._14{width:22.784000pt;}
._13{width:24.256000pt;}
._15{width:25.150080pt;}
._4{width:170.218667pt;}
.fsa{font-size:26.880000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fs9{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y2b{bottom:-2.720000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:7.040000pt;}
.y7c{bottom:113.632000pt;}
.y5c{bottom:116.192000pt;}
.y29{bottom:117.472000pt;}
.y9a{bottom:128.352000pt;}
.y5b{bottom:134.586667pt;}
.y28{bottom:135.866667pt;}
.y99{bottom:146.746667pt;}
.y7b{bottom:152.986667pt;}
.y5a{bottom:153.466667pt;}
.y27{bottom:154.746667pt;}
.y98{bottom:165.146667pt;}
.y7a{bottom:171.386667pt;}
.y59{bottom:174.426667pt;}
.y26{bottom:175.706667pt;}
.y97{bottom:183.546667pt;}
.y79{bottom:190.266667pt;}
.y58{bottom:192.826667pt;}
.y25{bottom:194.106667pt;}
.y96{bottom:201.946667pt;}
.y57{bottom:211.226667pt;}
.y24{bottom:212.506667pt;}
.y95{bottom:220.346667pt;}
.y78{bottom:229.626667pt;}
.y56{bottom:232.986667pt;}
.y23{bottom:234.266667pt;}
.y94{bottom:238.746667pt;}
.y77{bottom:248.026667pt;}
.y93{bottom:257.146667pt;}
.y55{bottom:266.426667pt;}
.y22{bottom:267.706667pt;}
.y76{bottom:268.026667pt;}
.y92{bottom:275.546667pt;}
.y54{bottom:284.826667pt;}
.y21{bottom:286.906667pt;}
.y75{bottom:293.946667pt;}
.y53{bottom:303.266667pt;}
.y20{bottom:305.666667pt;}
.y74{bottom:312.386667pt;}
.y52{bottom:322.146667pt;}
.y1f{bottom:324.066667pt;}
.ybf{bottom:325.986667pt;}
.y73{bottom:330.786667pt;}
.y1e{bottom:342.466667pt;}
.y51{bottom:343.106667pt;}
.y91{bottom:349.186667pt;}
.y72{bottom:349.826667pt;}
.ybe{bottom:353.346667pt;}
.y1d{bottom:361.346667pt;}
.y50{bottom:361.506667pt;}
.y90{bottom:367.586667pt;}
.y71{bottom:370.786667pt;}
.ybd{bottom:372.546667pt;}
.y4f{bottom:379.906667pt;}
.y1c{bottom:382.306667pt;}
.y8f{bottom:385.986667pt;}
.y70{bottom:389.186667pt;}
.ybc{bottom:391.586667pt;}
.y4e{bottom:398.786667pt;}
.y1b{bottom:400.706667pt;}
.y8e{bottom:404.386667pt;}
.y6f{bottom:407.426667pt;}
.ybb{bottom:410.786667pt;}
.y1a{bottom:419.106667pt;}
.y4d{bottom:419.746667pt;}
.y8d{bottom:422.786667pt;}
.y6e{bottom:426.466667pt;}
.yba{bottom:429.986667pt;}
.y19{bottom:437.506667pt;}
.y4c{bottom:438.146667pt;}
.y8c{bottom:441.186667pt;}
.y6d{bottom:447.426667pt;}
.yb9{bottom:449.186667pt;}
.y18{bottom:455.906667pt;}
.y4b{bottom:456.546667pt;}
.y8b{bottom:461.346667pt;}
.y6c{bottom:465.826667pt;}
.yb8{bottom:468.226667pt;}
.y17{bottom:474.306667pt;}
.y4a{bottom:475.426667pt;}
.y6b{bottom:484.706667pt;}
.yb7{bottom:486.626667pt;}
.y8a{bottom:488.866667pt;}
.y16{bottom:492.706667pt;}
.y49{bottom:496.386667pt;}
.yb6{bottom:505.026667pt;}
.y6a{bottom:505.666667pt;}
.y15{bottom:511.106667pt;}
.y48{bottom:514.786667pt;}
.y89{bottom:516.546667pt;}
.yb5{bottom:523.426667pt;}
.y69{bottom:524.066667pt;}
.y14{bottom:529.506667pt;}
.y47{bottom:533.186667pt;}
.yb4{bottom:541.853333pt;}
.y68{bottom:542.493333pt;}
.y13{bottom:547.933333pt;}
.y46{bottom:552.093333pt;}
.yb3{bottom:560.253333pt;}
.y88{bottom:560.893333pt;}
.y67{bottom:561.373333pt;}
.y12{bottom:566.333333pt;}
.y45{bottom:573.053333pt;}
.yb2{bottom:578.653333pt;}
.y87{bottom:579.293333pt;}
.y66{bottom:582.333333pt;}
.y11{bottom:584.733333pt;}
.y44{bottom:591.453333pt;}
.yb1{bottom:597.053333pt;}
.y86{bottom:597.693333pt;}
.y65{bottom:600.733333pt;}
.y10{bottom:603.133333pt;}
.y43{bottom:609.853333pt;}
.yb0{bottom:615.453333pt;}
.y85{bottom:616.093333pt;}
.y64{bottom:619.133333pt;}
.yf{bottom:621.533333pt;}
.y42{bottom:628.893333pt;}
.yaf{bottom:633.853333pt;}
.y84{bottom:637.853333pt;}
.y63{bottom:638.013333pt;}
.ye{bottom:639.933333pt;}
.y41{bottom:649.853333pt;}
.yd{bottom:658.333333pt;}
.y62{bottom:658.973333pt;}
.yae{bottom:661.213333pt;}
.y40{bottom:668.253333pt;}
.y83{bottom:671.293333pt;}
.yc{bottom:676.733333pt;}
.y61{bottom:677.373333pt;}
.yad{bottom:680.413333pt;}
.y3f{bottom:686.653333pt;}
.y82{bottom:689.693333pt;}
.yb{bottom:695.613333pt;}
.yac{bottom:698.813333pt;}
.y60{bottom:699.133333pt;}
.y81{bottom:708.093333pt;}
.y3e{bottom:708.413333pt;}
.ya{bottom:717.053333pt;}
.yab{bottom:717.213333pt;}
.y80{bottom:726.493333pt;}
.y5f{bottom:734.173333pt;}
.yaa{bottom:735.613333pt;}
.y9{bottom:738.493333pt;}
.y3d{bottom:741.693333pt;}
.y7f{bottom:744.893333pt;}
.ya9{bottom:754.013333pt;}
.y3c{bottom:760.093333pt;}
.y7e{bottom:763.293333pt;}
.y8{bottom:764.093333pt;}
.ya8{bottom:772.413333pt;}
.y5e{bottom:778.533333pt;}
.y3b{bottom:779.173333pt;}
.y7d{bottom:785.093333pt;}
.ya7{bottom:790.853333pt;}
.y5d{bottom:797.573333pt;}
.y3a{bottom:800.133333pt;}
.y7{bottom:807.013333pt;}
.ya6{bottom:809.253333pt;}
.y39{bottom:818.533333pt;}
.ya5{bottom:827.653333pt;}
.y38{bottom:836.933333pt;}
.ya4{bottom:846.053333pt;}
.y6{bottom:849.893333pt;}
.y37{bottom:855.813333pt;}
.ya3{bottom:864.453333pt;}
.y36{bottom:876.773333pt;}
.ya2{bottom:882.853333pt;}
.y35{bottom:895.173333pt;}
.ya1{bottom:901.253333pt;}
.y34{bottom:913.573333pt;}
.y5{bottom:915.013333pt;}
.ya0{bottom:919.653333pt;}
.y33{bottom:932.453333pt;}
.y9f{bottom:938.053333pt;}
.y4{bottom:939.973333pt;}
.y32{bottom:953.413333pt;}
.y9e{bottom:956.453333pt;}
.y31{bottom:971.813333pt;}
.y3{bottom:972.133333pt;}
.y9d{bottom:974.853333pt;}
.y30{bottom:990.213333pt;}
.y9c{bottom:993.253333pt;}
.y2{bottom:1001.093333pt;}
.y2f{bottom:1009.093333pt;}
.y9b{bottom:1011.680000pt;}
.y2e{bottom:1033.600000pt;}
.y2c{bottom:1048.960000pt;}
.y1{bottom:1060.960000pt;}
.y2a{bottom:1082.400000pt;}
.he{height:9.760000pt;}
.hf{height:19.520000pt;}
.h6{height:37.090625pt;}
.h4{height:38.473125pt;}
.h2{height:41.112500pt;}
.h9{height:44.687500pt;}
.h5{height:44.975625pt;}
.hb{height:45.156250pt;}
.h11{height:46.593750pt;}
.h12{height:52.750000pt;}
.h8{height:52.832812pt;}
.hd{height:54.514687pt;}
.ha{height:63.656250pt;}
.h10{height:67.734375pt;}
.hc{height:90.312500pt;}
.h3{height:90.493125pt;}
.h7{height:105.214062pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:2.080133pt;}
.w4{width:4.320133pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.031988pt;}
.xc{left:114.591988pt;}
.xa{left:120.031988pt;}
.x7{left:128.031988pt;}
.x6{left:143.546655pt;}
.x2{left:170.746655pt;}
.x8{left:220.346655pt;}
.x1{left:271.586655pt;}
.x9{left:309.986655pt;}
.x3{left:324.386655pt;}
.x4{left:528.093322pt;}
.xb{left:715.173333pt;}
}




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