
    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_8a04fe1ea46cd8f15fa178de.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_58a66350eb0fc4a2be409d05.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_01c59893c5bb5dab83b906b3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_85ddc67b0e47972b536c5f97.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_09987c9c5bb391f53ea160c7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f0eb15aad1610de1701f7c88.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_8b7fecf966798dd4c2370c23.woff')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_f8bf4da64361f118bae18c90.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_513aaa140c2879dae940fa20.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_a52274c4655d994f961dc3c4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-23.760000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.990000px;}
.lsc{letter-spacing:-0.900000px;}
.lse{letter-spacing:-0.538800px;}
.ls4{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.181200px;}
.lsd{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.129600px;}
.ls5{letter-spacing:0.144720px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.480000px;}
.ls6{letter-spacing:5.940000px;}
.lsf{letter-spacing:58.589280px;}
.lsa{letter-spacing:72.269280px;}
.ls7{letter-spacing:78.029280px;}
.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:-19.038240px;}
.ws4{word-spacing:-14.580000px;}
.wsb{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws8{word-spacing:-12.014640px;}
.ws6{word-spacing:-11.878800px;}
.wsa{word-spacing:-11.836200px;}
.ws0{word-spacing:-11.700000px;}
.ws9{word-spacing:-11.521200px;}
.ws7{word-spacing:-11.160000px;}
.ws3{word-spacing:-7.560000px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-3.569760px;}
._7{margin-left:-2.315520px;}
._0{margin-left:-1.206000px;}
._1{width:1.061760px;}
._4{width:2.106720px;}
._2{width:3.815520px;}
._8{width:5.258160px;}
._a{width:6.705360px;}
._b{width:7.766640px;}
._c{width:8.889600px;}
._d{width:14.102640px;}
._e{width:15.403680px;}
._f{width:16.791840px;}
._10{width:17.992800px;}
._6{width:22.302000px;}
._3{width:37.154880px;}
._5{width:38.304000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs5{font-size:30.240000px;}
.fs8{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:11.520000px;}
.y7{bottom:28.080000px;}
.y6{bottom:51.120000px;}
.y9{bottom:58.320000px;}
.y5{bottom:70.230000px;}
.y4{bottom:106.050000px;}
.ya0{bottom:136.476000px;}
.y72{bottom:150.870000px;}
.y9f{bottom:154.470000px;}
.y30{bottom:160.410000px;}
.y71{bottom:168.870000px;}
.y2f{bottom:178.410000px;}
.y9e{bottom:181.470000px;}
.y2e{bottom:196.410000px;}
.y9d{bottom:199.470000px;}
.y70{bottom:203.970000px;}
.y2d{bottom:223.410000px;}
.y9c{bottom:228.630000px;}
.y2c{bottom:241.410000px;}
.y6f{bottom:243.570000px;}
.y9b{bottom:255.630000px;}
.y2b{bottom:259.410000px;}
.y6e{bottom:261.570000px;}
.y57{bottom:269.130000px;}
.y9a{bottom:273.630000px;}
.y2a{bottom:277.410000px;}
.y56{bottom:287.130000px;}
.y6d{bottom:288.570000px;}
.y99{bottom:300.630000px;}
.y29{bottom:304.410000px;}
.y6c{bottom:306.570000px;}
.y98{bottom:318.630000px;}
.y55{bottom:322.230000px;}
.y28{bottom:322.410000px;}
.y6b{bottom:333.570000px;}
.y27{bottom:340.455000px;}
.y97{bottom:345.675000px;}
.y54{bottom:356.835000px;}
.y26{bottom:358.455000px;}
.y6a{bottom:360.615000px;}
.y96{bottom:363.675000px;}
.y25{bottom:376.455000px;}
.y69{bottom:387.615000px;}
.y95{bottom:390.675000px;}
.y53{bottom:396.435000px;}
.y24{bottom:403.455000px;}
.y94{bottom:408.675000px;}
.y68{bottom:414.615000px;}
.y23{bottom:421.455000px;}
.y52{bottom:423.435000px;}
.y67{bottom:432.615000px;}
.y93{bottom:435.675000px;}
.y22{bottom:439.455000px;}
.y51{bottom:450.435000px;}
.y66{bottom:450.615000px;}
.y92{bottom:453.675000px;}
.y21{bottom:466.455000px;}
.y50{bottom:477.435000px;}
.y91{bottom:480.675000px;}
.y20{bottom:484.455000px;}
.y65{bottom:485.535000px;}
.y1f{bottom:502.455000px;}
.y4f{bottom:504.435000px;}
.y90{bottom:507.675000px;}
.y64{bottom:520.275000px;}
.y1e{bottom:520.455000px;}
.y8f{bottom:525.675000px;}
.y63{bottom:538.275000px;}
.y1d{bottom:538.455000px;}
.y4e{bottom:539.355000px;}
.y8e{bottom:552.675000px;}
.y62{bottom:565.275000px;}
.y1c{bottom:573.555000px;}
.y4d{bottom:578.955000px;}
.y8d{bottom:579.675000px;}
.y61{bottom:592.275000px;}
.y4c{bottom:596.955000px;}
.y8c{bottom:606.705000px;}
.y1b{bottom:613.185000px;}
.y4b{bottom:614.985000px;}
.y60{bottom:619.305000px;}
.y8b{bottom:624.705000px;}
.y4a{bottom:632.985000px;}
.y1a{bottom:642.345000px;}
.y5f{bottom:646.305000px;}
.y8a{bottom:651.705000px;}
.y49{bottom:659.985000px;}
.y19{bottom:660.345000px;}
.y89{bottom:669.705000px;}
.y5e{bottom:673.305000px;}
.y48{bottom:677.985000px;}
.y18{bottom:678.345000px;}
.y47{bottom:695.985000px;}
.y17{bottom:696.345000px;}
.y88{bottom:696.705000px;}
.y5d{bottom:700.305000px;}
.y16{bottom:714.345000px;}
.y87{bottom:714.705000px;}
.y5c{bottom:718.305000px;}
.y46{bottom:722.985000px;}
.y15{bottom:732.345000px;}
.y86{bottom:732.705000px;}
.y45{bottom:740.985000px;}
.y5b{bottom:745.305000px;}
.y14{bottom:750.345000px;}
.y44{bottom:758.985000px;}
.y5a{bottom:763.305000px;}
.y85{bottom:767.805000px;}
.y13{bottom:768.345000px;}
.y43{bottom:785.985000px;}
.y12{bottom:786.345000px;}
.y59{bottom:790.305000px;}
.yaa{bottom:797.145000px;}
.y42{bottom:803.985000px;}
.y84{bottom:807.405000px;}
.y58{bottom:813.705000px;}
.y11{bottom:821.445000px;}
.y41{bottom:821.985000px;}
.y83{bottom:825.405000px;}
.y82{bottom:843.405000px;}
.y40{bottom:848.985000px;}
.ya9{bottom:852.405000px;}
.y10{bottom:856.005000px;}
.y81{bottom:861.405000px;}
.y3f{bottom:866.985000px;}
.ya8{bottom:870.405000px;}
.yf{bottom:873.330000px;}
.y80{bottom:879.450000px;}
.y3e{bottom:885.030000px;}
.ye{bottom:890.430000px;}
.ya7{bottom:897.450000px;}
.y7f{bottom:906.450000px;}
.y3d{bottom:912.030000px;}
.ya6{bottom:915.450000px;}
.yd{bottom:922.290000px;}
.y7e{bottom:924.450000px;}
.y3c{bottom:930.030000px;}
.y7d{bottom:942.450000px;}
.y3b{bottom:948.030000px;}
.yc{bottom:950.730000px;}
.y7c{bottom:960.450000px;}
.y3a{bottom:975.030000px;}
.y7b{bottom:978.450000px;}
.ya5{bottom:987.450000px;}
.y39{bottom:993.030000px;}
.yb{bottom:994.830000px;}
.y7a{bottom:1005.450000px;}
.y38{bottom:1011.030000px;}
.y79{bottom:1023.450000px;}
.ya{bottom:1027.950000px;}
.ya4{bottom:1032.450000px;}
.y37{bottom:1038.030000px;}
.y78{bottom:1041.450000px;}
.ya3{bottom:1050.450000px;}
.y36{bottom:1056.030000px;}
.y8{bottom:1056.390000px;}
.y77{bottom:1059.450000px;}
.y3{bottom:1070.250000px;}
.y35{bottom:1074.030000px;}
.ya2{bottom:1077.450000px;}
.y76{bottom:1086.450000px;}
.ya1{bottom:1095.450000px;}
.y34{bottom:1101.030000px;}
.y75{bottom:1104.450000px;}
.y74{bottom:1122.450000px;}
.y33{bottom:1136.130000px;}
.y73{bottom:1140.480000px;}
.y32{bottom:1181.340000px;}
.y1{bottom:1186.020000px;}
.y31{bottom:1197.540000px;}
.h5{height:2.826563px;}
.h2{height:22.860000px;}
.h9{height:30.077578px;}
.h10{height:44.518359px;}
.hf{height:45.714375px;}
.hc{height:47.321367px;}
.h3{height:47.344922px;}
.he{height:48.616875px;}
.h12{height:49.583118px;}
.h13{height:50.146523px;}
.h7{height:53.868164px;}
.h11{height:57.324375px;}
.ha{height:65.884219px;}
.hd{height:71.081367px;}
.h8{height:83.787539px;}
.hb{height:96.508125px;}
.h6{height:98.051133px;}
.h4{height:115.416000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:106.236000px;}
.w4{width:644.325000px;}
.w2{width:750.570000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.136000px;}
.x5{left:32.220000px;}
.x1{left:81.000000px;}
.xd{left:96.515987px;}
.x7{left:102.285000px;}
.xa{left:108.035987px;}
.x2{left:117.750000px;}
.xe{left:123.515987px;}
.xf{left:134.135987px;}
.x8{left:165.269987px;}
.x4{left:187.230000px;}
.x6{left:322.095000px;}
.xc{left:354.674987px;}
.xb{left:725.189987px;}
.x9{left:812.129987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.880000pt;}
.lsc{letter-spacing:-0.800000pt;}
.lse{letter-spacing:-0.478933pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.161067pt;}
.lsd{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.115200pt;}
.ls5{letter-spacing:0.128640pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls6{letter-spacing:5.280000pt;}
.lsf{letter-spacing:52.079360pt;}
.lsa{letter-spacing:64.239360pt;}
.ls7{letter-spacing:69.359360pt;}
.ws1{word-spacing:-16.922880pt;}
.ws4{word-spacing:-12.960000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.679680pt;}
.ws6{word-spacing:-10.558933pt;}
.wsa{word-spacing:-10.521067pt;}
.ws0{word-spacing:-10.400000pt;}
.ws9{word-spacing:-10.241067pt;}
.ws7{word-spacing:-9.920000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-3.173120pt;}
._7{margin-left:-2.058240pt;}
._0{margin-left:-1.072000pt;}
._1{width:0.943787pt;}
._4{width:1.872640pt;}
._2{width:3.391573pt;}
._8{width:4.673920pt;}
._a{width:5.960320pt;}
._b{width:6.903680pt;}
._c{width:7.901867pt;}
._d{width:12.535680pt;}
._e{width:13.692160pt;}
._f{width:14.926080pt;}
._10{width:15.993600pt;}
._6{width:19.824000pt;}
._3{width:33.026560pt;}
._5{width:34.048000pt;}
.fs1{font-size:2.560000pt;}
.fs5{font-size:26.880000pt;}
.fs8{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:10.240000pt;}
.y7{bottom:24.960000pt;}
.y6{bottom:45.440000pt;}
.y9{bottom:51.840000pt;}
.y5{bottom:62.426667pt;}
.y4{bottom:94.266667pt;}
.ya0{bottom:121.312000pt;}
.y72{bottom:134.106667pt;}
.y9f{bottom:137.306667pt;}
.y30{bottom:142.586667pt;}
.y71{bottom:150.106667pt;}
.y2f{bottom:158.586667pt;}
.y9e{bottom:161.306667pt;}
.y2e{bottom:174.586667pt;}
.y9d{bottom:177.306667pt;}
.y70{bottom:181.306667pt;}
.y2d{bottom:198.586667pt;}
.y9c{bottom:203.226667pt;}
.y2c{bottom:214.586667pt;}
.y6f{bottom:216.506667pt;}
.y9b{bottom:227.226667pt;}
.y2b{bottom:230.586667pt;}
.y6e{bottom:232.506667pt;}
.y57{bottom:239.226667pt;}
.y9a{bottom:243.226667pt;}
.y2a{bottom:246.586667pt;}
.y56{bottom:255.226667pt;}
.y6d{bottom:256.506667pt;}
.y99{bottom:267.226667pt;}
.y29{bottom:270.586667pt;}
.y6c{bottom:272.506667pt;}
.y98{bottom:283.226667pt;}
.y55{bottom:286.426667pt;}
.y28{bottom:286.586667pt;}
.y6b{bottom:296.506667pt;}
.y27{bottom:302.626667pt;}
.y97{bottom:307.266667pt;}
.y54{bottom:317.186667pt;}
.y26{bottom:318.626667pt;}
.y6a{bottom:320.546667pt;}
.y96{bottom:323.266667pt;}
.y25{bottom:334.626667pt;}
.y69{bottom:344.546667pt;}
.y95{bottom:347.266667pt;}
.y53{bottom:352.386667pt;}
.y24{bottom:358.626667pt;}
.y94{bottom:363.266667pt;}
.y68{bottom:368.546667pt;}
.y23{bottom:374.626667pt;}
.y52{bottom:376.386667pt;}
.y67{bottom:384.546667pt;}
.y93{bottom:387.266667pt;}
.y22{bottom:390.626667pt;}
.y51{bottom:400.386667pt;}
.y66{bottom:400.546667pt;}
.y92{bottom:403.266667pt;}
.y21{bottom:414.626667pt;}
.y50{bottom:424.386667pt;}
.y91{bottom:427.266667pt;}
.y20{bottom:430.626667pt;}
.y65{bottom:431.586667pt;}
.y1f{bottom:446.626667pt;}
.y4f{bottom:448.386667pt;}
.y90{bottom:451.266667pt;}
.y64{bottom:462.466667pt;}
.y1e{bottom:462.626667pt;}
.y8f{bottom:467.266667pt;}
.y63{bottom:478.466667pt;}
.y1d{bottom:478.626667pt;}
.y4e{bottom:479.426667pt;}
.y8e{bottom:491.266667pt;}
.y62{bottom:502.466667pt;}
.y1c{bottom:509.826667pt;}
.y4d{bottom:514.626667pt;}
.y8d{bottom:515.266667pt;}
.y61{bottom:526.466667pt;}
.y4c{bottom:530.626667pt;}
.y8c{bottom:539.293333pt;}
.y1b{bottom:545.053333pt;}
.y4b{bottom:546.653333pt;}
.y60{bottom:550.493333pt;}
.y8b{bottom:555.293333pt;}
.y4a{bottom:562.653333pt;}
.y1a{bottom:570.973333pt;}
.y5f{bottom:574.493333pt;}
.y8a{bottom:579.293333pt;}
.y49{bottom:586.653333pt;}
.y19{bottom:586.973333pt;}
.y89{bottom:595.293333pt;}
.y5e{bottom:598.493333pt;}
.y48{bottom:602.653333pt;}
.y18{bottom:602.973333pt;}
.y47{bottom:618.653333pt;}
.y17{bottom:618.973333pt;}
.y88{bottom:619.293333pt;}
.y5d{bottom:622.493333pt;}
.y16{bottom:634.973333pt;}
.y87{bottom:635.293333pt;}
.y5c{bottom:638.493333pt;}
.y46{bottom:642.653333pt;}
.y15{bottom:650.973333pt;}
.y86{bottom:651.293333pt;}
.y45{bottom:658.653333pt;}
.y5b{bottom:662.493333pt;}
.y14{bottom:666.973333pt;}
.y44{bottom:674.653333pt;}
.y5a{bottom:678.493333pt;}
.y85{bottom:682.493333pt;}
.y13{bottom:682.973333pt;}
.y43{bottom:698.653333pt;}
.y12{bottom:698.973333pt;}
.y59{bottom:702.493333pt;}
.yaa{bottom:708.573333pt;}
.y42{bottom:714.653333pt;}
.y84{bottom:717.693333pt;}
.y58{bottom:723.293333pt;}
.y11{bottom:730.173333pt;}
.y41{bottom:730.653333pt;}
.y83{bottom:733.693333pt;}
.y82{bottom:749.693333pt;}
.y40{bottom:754.653333pt;}
.ya9{bottom:757.693333pt;}
.y10{bottom:760.893333pt;}
.y81{bottom:765.693333pt;}
.y3f{bottom:770.653333pt;}
.ya8{bottom:773.693333pt;}
.yf{bottom:776.293333pt;}
.y80{bottom:781.733333pt;}
.y3e{bottom:786.693333pt;}
.ye{bottom:791.493333pt;}
.ya7{bottom:797.733333pt;}
.y7f{bottom:805.733333pt;}
.y3d{bottom:810.693333pt;}
.ya6{bottom:813.733333pt;}
.yd{bottom:819.813333pt;}
.y7e{bottom:821.733333pt;}
.y3c{bottom:826.693333pt;}
.y7d{bottom:837.733333pt;}
.y3b{bottom:842.693333pt;}
.yc{bottom:845.093333pt;}
.y7c{bottom:853.733333pt;}
.y3a{bottom:866.693333pt;}
.y7b{bottom:869.733333pt;}
.ya5{bottom:877.733333pt;}
.y39{bottom:882.693333pt;}
.yb{bottom:884.293333pt;}
.y7a{bottom:893.733333pt;}
.y38{bottom:898.693333pt;}
.y79{bottom:909.733333pt;}
.ya{bottom:913.733333pt;}
.ya4{bottom:917.733333pt;}
.y37{bottom:922.693333pt;}
.y78{bottom:925.733333pt;}
.ya3{bottom:933.733333pt;}
.y36{bottom:938.693333pt;}
.y8{bottom:939.013333pt;}
.y77{bottom:941.733333pt;}
.y3{bottom:951.333333pt;}
.y35{bottom:954.693333pt;}
.ya2{bottom:957.733333pt;}
.y76{bottom:965.733333pt;}
.ya1{bottom:973.733333pt;}
.y34{bottom:978.693333pt;}
.y75{bottom:981.733333pt;}
.y74{bottom:997.733333pt;}
.y33{bottom:1009.893333pt;}
.y73{bottom:1013.760000pt;}
.y32{bottom:1050.080000pt;}
.y1{bottom:1054.240000pt;}
.y31{bottom:1064.480000pt;}
.h5{height:2.512500pt;}
.h2{height:20.320000pt;}
.h9{height:26.735625pt;}
.h10{height:39.571875pt;}
.hf{height:40.635000pt;}
.hc{height:42.063437pt;}
.h3{height:42.084375pt;}
.he{height:43.215000pt;}
.h12{height:44.073883pt;}
.h13{height:44.574687pt;}
.h7{height:47.882812pt;}
.h11{height:50.955000pt;}
.ha{height:58.563750pt;}
.hd{height:63.183438pt;}
.h8{height:74.477812pt;}
.hb{height:85.785000pt;}
.h6{height:87.156562pt;}
.h4{height:102.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:94.432000pt;}
.w4{width:572.733333pt;}
.w2{width:667.173333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.232000pt;}
.x5{left:28.640000pt;}
.x1{left:72.000000pt;}
.xd{left:85.791988pt;}
.x7{left:90.920000pt;}
.xa{left:96.031988pt;}
.x2{left:104.666667pt;}
.xe{left:109.791988pt;}
.xf{left:119.231988pt;}
.x8{left:146.906655pt;}
.x4{left:166.426667pt;}
.x6{left:286.306667pt;}
.xc{left:315.266655pt;}
.xb{left:644.613322pt;}
.x9{left:721.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; }
  