
    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_a7c1d1e852953cba6e7645b7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_1e5d15f179862630c1b3633c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_016fcabf92bcbcece6bf5c66.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2f5318b33f7ffab8ebb4d1c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_ac5fb9422a6dc3013cabe817.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_9eb37f22471377420a488751.woff')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_1141e40377428ba1fc774a97.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064453;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_b1f3356742482419ccc82a2e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064453;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_8a38b340efaee2efd8ba3ff6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.892578;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_f44f3658499adcd491a89a2b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.892578;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:ffc;src:url('chunks/assets/font_71a65ba7541e11dbb2330803.woff')format("woff");}.ffc{font-family:ffc;line-height:0.908203;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:ffd;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffd{font-family:ffd;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);}
.m2{transform:matrix(0.283174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283174,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.310315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310315,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.118117px;}
.lsd{letter-spacing:-0.099872px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.lse{letter-spacing:1.398208px;}
.ls8{letter-spacing:1.651392px;}
.lsc{letter-spacing:1.710332px;}
.ls3{letter-spacing:2.880000px;}
.ls13{letter-spacing:18.144000px;}
.lsa{letter-spacing:28.080000px;}
.ls9{letter-spacing:40.320000px;}
.ls14{letter-spacing:41.040000px;}
.ls4{letter-spacing:41.760000px;}
.ls11{letter-spacing:54.144000px;}
.ls10{letter-spacing:61.920000px;}
.ls5{letter-spacing:63.360000px;}
.ls2{letter-spacing:77.309760px;}
.ls1{letter-spacing:111.029760px;}
.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;}
}
.ws6{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:161.061208px;}
._24{margin-left:-2.476554px;}
._2{margin-left:-1.008000px;}
._0{width:1.068000px;}
._12{width:2.231040px;}
._1{width:3.366240px;}
._21{width:4.392000px;}
._7{width:6.480000px;}
._8{width:7.560000px;}
._2c{width:8.652000px;}
._e{width:9.792000px;}
._d{width:11.088000px;}
._28{width:12.276000px;}
._6{width:13.536000px;}
._5{width:14.760000px;}
._34{width:15.840000px;}
._1b{width:16.920000px;}
._9{width:20.088000px;}
._b{width:21.960000px;}
._c{width:23.184000px;}
._1a{width:24.384000px;}
._13{width:25.992000px;}
._14{width:27.216000px;}
._2b{width:28.368000px;}
._19{width:29.520000px;}
._18{width:30.672000px;}
._36{width:32.112000px;}
._1d{width:33.480000px;}
._1c{width:34.632000px;}
._2d{width:36.360000px;}
._2e{width:37.944000px;}
._25{width:39.240000px;}
._10{width:40.392000px;}
._11{width:41.616000px;}
._31{width:42.768000px;}
._2f{width:43.848000px;}
._a{width:44.856000px;}
._20{width:46.224000px;}
._35{width:48.672000px;}
._37{width:49.872000px;}
._4{width:51.000000px;}
._3{width:52.392000px;}
._33{width:55.872000px;}
._23{width:59.150499px;}
._38{width:60.672000px;}
._32{width:61.752000px;}
._16{width:62.988000px;}
._17{width:64.152000px;}
._15{width:66.240000px;}
._f{width:70.560000px;}
._39{width:76.464000px;}
._27{width:84.096000px;}
._26{width:85.248000px;}
._30{width:86.556000px;}
._1e{width:99.936000px;}
._1f{width:101.100000px;}
._22{width:176.400000px;}
._2a{width:302.957867px;}
._29{width:305.854155px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(0,128,0);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(0,51,102);}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs8{font-size:48.138313px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:51.134474px;}
.fs7{font-size:53.270706px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:71.106353px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:4.514215px;}
.y3d{bottom:6.201138px;}
.y37{bottom:6.201139px;}
.y39{bottom:6.224762px;}
.y41{bottom:6.236573px;}
.y3b{bottom:6.236574px;}
.y56{bottom:6.761336px;}
.y54{bottom:6.771323px;}
.y43{bottom:9.768268px;}
.y35{bottom:9.768269px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y5d{bottom:20.266030px;}
.y45{bottom:31.077806px;}
.y6{bottom:55.440000px;}
.y3{bottom:57.600000px;}
.y32{bottom:102.996000px;}
.y31{bottom:126.756000px;}
.y68{bottom:129.456000px;}
.y30{bottom:150.510000px;}
.y67{bottom:153.390000px;}
.y2f{bottom:174.450000px;}
.y66{bottom:177.150000px;}
.y2e{bottom:198.210000px;}
.y65{bottom:200.910000px;}
.y2d{bottom:221.970000px;}
.y64{bottom:224.670000px;}
.y2c{bottom:245.730000px;}
.y63{bottom:248.610000px;}
.y2b{bottom:269.490000px;}
.y62{bottom:272.370000px;}
.y2a{bottom:293.430000px;}
.y61{bottom:296.130000px;}
.y29{bottom:317.190000px;}
.y60{bottom:319.890000px;}
.y5c{bottom:339.915000px;}
.y28{bottom:340.995000px;}
.y27{bottom:364.755000px;}
.y26{bottom:388.695000px;}
.y25{bottom:412.455000px;}
.y24{bottom:436.215000px;}
.y23{bottom:459.975000px;}
.y58{bottom:471.416488px;}
.y57{bottom:481.173984px;}
.y22{bottom:483.915000px;}
.y55{bottom:490.192427px;}
.y53{bottom:499.949923px;}
.y21{bottom:507.675000px;}
.y5a{bottom:512.733542px;}
.y5b{bottom:514.231622px;}
.y59{bottom:518.755825px;}
.y20{bottom:531.435000px;}
.y5e{bottom:550.315383px;}
.y1f{bottom:555.195000px;}
.y1e{bottom:579.135000px;}
.y52{bottom:579.855000px;}
.y1d{bottom:602.895000px;}
.y51{bottom:603.645000px;}
.y1c{bottom:626.685000px;}
.y50{bottom:627.585000px;}
.y1b{bottom:650.445000px;}
.y4f{bottom:651.345000px;}
.y1a{bottom:674.385000px;}
.y4e{bottom:675.105000px;}
.y19{bottom:698.145000px;}
.y4d{bottom:698.865000px;}
.y18{bottom:721.905000px;}
.y4c{bottom:722.625000px;}
.y17{bottom:745.665000px;}
.y4b{bottom:746.565000px;}
.y16{bottom:769.605000px;}
.y4a{bottom:770.325000px;}
.y15{bottom:793.365000px;}
.y49{bottom:794.085000px;}
.y14{bottom:817.125000px;}
.y48{bottom:817.845000px;}
.y13{bottom:840.885000px;}
.y47{bottom:841.785000px;}
.y44{bottom:861.539919px;}
.y46{bottom:861.585000px;}
.y12{bottom:864.645000px;}
.y11{bottom:888.630000px;}
.y10{bottom:912.390000px;}
.yf{bottom:936.150000px;}
.ye{bottom:959.910000px;}
.y6d{bottom:983.850000px;}
.yd{bottom:990.690000px;}
.y6c{bottom:1007.610000px;}
.yc{bottom:1014.450000px;}
.yb{bottom:1031.370000px;}
.y3f{bottom:1039.258577px;}
.y40{bottom:1041.030321px;}
.y3e{bottom:1047.266909px;}
.y42{bottom:1048.152759px;}
.ya{bottom:1055.130000px;}
.y3c{bottom:1057.035182px;}
.y6b{bottom:1079.070000px;}
.y9{bottom:1081.410000px;}
.y3a{bottom:1098.789502px;}
.y6a{bottom:1102.830000px;}
.y34{bottom:1106.797851px;}
.y38{bottom:1111.227217px;}
.y8{bottom:1113.090000px;}
.y36{bottom:1113.908478px;}
.y69{bottom:1126.590000px;}
.y7{bottom:1144.800000px;}
.y33{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:5.076563px;}
.h1a{height:17.277859px;}
.h15{height:21.797068px;}
.h12{height:22.205973px;}
.hf{height:22.205974px;}
.h11{height:22.235504px;}
.h17{height:22.546108px;}
.h3{height:27.036000px;}
.h13{height:31.980145px;}
.hd{height:31.980146px;}
.h16{height:33.165605px;}
.h1b{height:33.424161px;}
.h18{height:35.229855px;}
.h10{height:36.701644px;}
.ha{height:42.516211px;}
.h2{height:46.696289px;}
.he{height:48.989777px;}
.hb{height:51.996094px;}
.hc{height:61.101562px;}
.h8{height:62.261719px;}
.h4{height:63.457031px;}
.h9{height:65.475352px;}
.h5{height:65.884219px;}
.h7{height:82.808086px;}
.h19{height:232.941497px;}
.h14{height:281.696994px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:16.968696px;}
.wc{width:16.996977px;}
.wf{width:20.362435px;}
.we{width:20.390716px;}
.w9{width:21.992042px;}
.w8{width:22.028695px;}
.wa{width:28.662962px;}
.w7{width:30.825512px;}
.w6{width:39.622329px;}
.w4{width:105.516000px;}
.w11{width:202.153727px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w10{width:668.566607px;}
.wb{width:698.217996px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:2.199205px;}
.x14{left:3.298807px;}
.x6{left:7.560000px;}
.x1f{left:29.725918px;}
.x2d{left:36.516633px;}
.x2b{left:57.778409px;}
.x3{left:87.660000px;}
.x8{left:95.795987px;}
.x1e{left:97.439990px;}
.x1{left:98.675987px;}
.x9{left:103.175987px;}
.x2a{left:112.215000px;}
.xc{left:117.935987px;}
.xb{left:124.055987px;}
.x30{left:127.835987px;}
.x13{left:132.700563px;}
.x12{left:146.735987px;}
.xa{left:149.075987px;}
.xd{left:160.589987px;}
.xe{left:184.889987px;}
.x27{left:198.020037px;}
.x2f{left:210.809987px;}
.x15{left:211.981871px;}
.xf{left:268.049987px;}
.x21{left:276.509987px;}
.x17{left:284.665568px;}
.x23{left:291.460988px;}
.x10{left:295.814987px;}
.x4{left:297.795000px;}
.x22{left:319.754987px;}
.x28{left:326.303376px;}
.x18{left:358.456197px;}
.x2c{left:371.326982px;}
.x2{left:379.514987px;}
.x5{left:393.915000px;}
.x24{left:418.895892px;}
.x19{left:435.530972px;}
.x11{left:446.474987px;}
.x29{left:453.715655px;}
.x7{left:500.145000px;}
.x1a{left:509.321602px;}
.x25{left:547.156606px;}
.x1b{left:581.997968px;}
.x1c{left:654.718317px;}
.x26{left:674.591510px;}
.x1d{left:724.066553px;}
.x2e{left:780.809987px;}
.x20{left:795.749987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.104993pt;}
.lsd{letter-spacing:-0.088775pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.242852pt;}
.ls8{letter-spacing:1.467904pt;}
.lsc{letter-spacing:1.520295pt;}
.ls3{letter-spacing:2.560000pt;}
.ls13{letter-spacing:16.128000pt;}
.lsa{letter-spacing:24.960000pt;}
.ls9{letter-spacing:35.840000pt;}
.ls14{letter-spacing:36.480000pt;}
.ls4{letter-spacing:37.120000pt;}
.ls11{letter-spacing:48.128000pt;}
.ls10{letter-spacing:55.040000pt;}
.ls5{letter-spacing:56.320000pt;}
.ls2{letter-spacing:68.719787pt;}
.ls1{letter-spacing:98.693120pt;}
.ws6{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:143.165519pt;}
._24{margin-left:-2.201382pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.949333pt;}
._12{width:1.983147pt;}
._1{width:2.992213pt;}
._21{width:3.904000pt;}
._7{width:5.760000pt;}
._8{width:6.720000pt;}
._2c{width:7.690667pt;}
._e{width:8.704000pt;}
._d{width:9.856000pt;}
._28{width:10.912000pt;}
._6{width:12.032000pt;}
._5{width:13.120000pt;}
._34{width:14.080000pt;}
._1b{width:15.040000pt;}
._9{width:17.856000pt;}
._b{width:19.520000pt;}
._c{width:20.608000pt;}
._1a{width:21.674667pt;}
._13{width:23.104000pt;}
._14{width:24.192000pt;}
._2b{width:25.216000pt;}
._19{width:26.240000pt;}
._18{width:27.264000pt;}
._36{width:28.544000pt;}
._1d{width:29.760000pt;}
._1c{width:30.784000pt;}
._2d{width:32.320000pt;}
._2e{width:33.728000pt;}
._25{width:34.880000pt;}
._10{width:35.904000pt;}
._11{width:36.992000pt;}
._31{width:38.016000pt;}
._2f{width:38.976000pt;}
._a{width:39.872000pt;}
._20{width:41.088000pt;}
._35{width:43.264000pt;}
._37{width:44.330667pt;}
._4{width:45.333333pt;}
._3{width:46.570667pt;}
._33{width:49.664000pt;}
._23{width:52.578222pt;}
._38{width:53.930667pt;}
._32{width:54.890667pt;}
._16{width:55.989333pt;}
._17{width:57.024000pt;}
._15{width:58.880000pt;}
._f{width:62.720000pt;}
._39{width:67.968000pt;}
._27{width:74.752000pt;}
._26{width:75.776000pt;}
._30{width:76.938667pt;}
._1e{width:88.832000pt;}
._1f{width:89.866667pt;}
._22{width:156.800000pt;}
._2a{width:269.295882pt;}
._29{width:271.870360pt;}
.fs3{font-size:5.120000pt;}
.fs8{font-size:42.789612pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:45.452866pt;}
.fs7{font-size:47.351739pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:63.205647pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:4.012636pt;}
.y3d{bottom:5.512122pt;}
.y37{bottom:5.512123pt;}
.y39{bottom:5.533122pt;}
.y41{bottom:5.543620pt;}
.y3b{bottom:5.543621pt;}
.y56{bottom:6.010076pt;}
.y54{bottom:6.018954pt;}
.y43{bottom:8.682905pt;}
.y35{bottom:8.682906pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y5d{bottom:18.014249pt;}
.y45{bottom:27.624717pt;}
.y6{bottom:49.280000pt;}
.y3{bottom:51.200000pt;}
.y32{bottom:91.552000pt;}
.y31{bottom:112.672000pt;}
.y68{bottom:115.072000pt;}
.y30{bottom:133.786667pt;}
.y67{bottom:136.346667pt;}
.y2f{bottom:155.066667pt;}
.y66{bottom:157.466667pt;}
.y2e{bottom:176.186667pt;}
.y65{bottom:178.586667pt;}
.y2d{bottom:197.306667pt;}
.y64{bottom:199.706667pt;}
.y2c{bottom:218.426667pt;}
.y63{bottom:220.986667pt;}
.y2b{bottom:239.546667pt;}
.y62{bottom:242.106667pt;}
.y2a{bottom:260.826667pt;}
.y61{bottom:263.226667pt;}
.y29{bottom:281.946667pt;}
.y60{bottom:284.346667pt;}
.y5c{bottom:302.146667pt;}
.y28{bottom:303.106667pt;}
.y27{bottom:324.226667pt;}
.y26{bottom:345.506667pt;}
.y25{bottom:366.626667pt;}
.y24{bottom:387.746667pt;}
.y23{bottom:408.866667pt;}
.y58{bottom:419.036878pt;}
.y57{bottom:427.710208pt;}
.y22{bottom:430.146667pt;}
.y55{bottom:435.726602pt;}
.y53{bottom:444.399932pt;}
.y21{bottom:451.266667pt;}
.y5a{bottom:455.763148pt;}
.y5b{bottom:457.094775pt;}
.y59{bottom:461.116289pt;}
.y20{bottom:472.386667pt;}
.y5e{bottom:489.169229pt;}
.y1f{bottom:493.506667pt;}
.y1e{bottom:514.786667pt;}
.y52{bottom:515.426667pt;}
.y1d{bottom:535.906667pt;}
.y51{bottom:536.573333pt;}
.y1c{bottom:557.053333pt;}
.y50{bottom:557.853333pt;}
.y1b{bottom:578.173333pt;}
.y4f{bottom:578.973333pt;}
.y1a{bottom:599.453333pt;}
.y4e{bottom:600.093333pt;}
.y19{bottom:620.573333pt;}
.y4d{bottom:621.213333pt;}
.y18{bottom:641.693333pt;}
.y4c{bottom:642.333333pt;}
.y17{bottom:662.813333pt;}
.y4b{bottom:663.613333pt;}
.y16{bottom:684.093333pt;}
.y4a{bottom:684.733333pt;}
.y15{bottom:705.213333pt;}
.y49{bottom:705.853333pt;}
.y14{bottom:726.333333pt;}
.y48{bottom:726.973333pt;}
.y13{bottom:747.453333pt;}
.y47{bottom:748.253333pt;}
.y44{bottom:765.813261pt;}
.y46{bottom:765.853333pt;}
.y12{bottom:768.573333pt;}
.y11{bottom:789.893333pt;}
.y10{bottom:811.013333pt;}
.yf{bottom:832.133333pt;}
.ye{bottom:853.253333pt;}
.y6d{bottom:874.533333pt;}
.yd{bottom:880.613333pt;}
.y6c{bottom:895.653333pt;}
.yc{bottom:901.733333pt;}
.yb{bottom:916.773333pt;}
.y3f{bottom:923.785402pt;}
.y40{bottom:925.360286pt;}
.y3e{bottom:930.903919pt;}
.y42{bottom:931.691342pt;}
.ya{bottom:937.893333pt;}
.y3c{bottom:939.586829pt;}
.y6b{bottom:959.173333pt;}
.y9{bottom:961.253333pt;}
.y3a{bottom:976.701780pt;}
.y6a{bottom:980.293333pt;}
.y34{bottom:983.820312pt;}
.y38{bottom:987.757526pt;}
.y8{bottom:989.413333pt;}
.y36{bottom:990.140869pt;}
.y69{bottom:1001.413333pt;}
.y7{bottom:1017.600000pt;}
.y33{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:4.512500pt;}
.h1a{height:15.358097pt;}
.h15{height:19.375172pt;}
.h12{height:19.738643pt;}
.hf{height:19.738644pt;}
.h11{height:19.764892pt;}
.h17{height:20.040985pt;}
.h3{height:24.032000pt;}
.h13{height:28.426795pt;}
.hd{height:28.426796pt;}
.h16{height:29.480538pt;}
.h1b{height:29.710365pt;}
.h18{height:31.315426pt;}
.h10{height:32.623683pt;}
.ha{height:37.792187pt;}
.h2{height:41.507812pt;}
.he{height:43.546469pt;}
.hb{height:46.218750pt;}
.hc{height:54.312500pt;}
.h8{height:55.343750pt;}
.h4{height:56.406250pt;}
.h9{height:58.200312pt;}
.h5{height:58.563750pt;}
.h7{height:73.607188pt;}
.h19{height:207.059109pt;}
.h14{height:250.397328pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:15.083285pt;}
.wc{width:15.108424pt;}
.wf{width:18.099942pt;}
.we{width:18.125081pt;}
.w9{width:19.548482pt;}
.w8{width:19.581063pt;}
.wa{width:25.478188pt;}
.w7{width:27.400455pt;}
.w6{width:35.219848pt;}
.w4{width:93.792000pt;}
.w11{width:179.692202pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w10{width:594.281428pt;}
.wb{width:620.638219pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.954849pt;}
.x14{left:2.932273pt;}
.x6{left:6.720000pt;}
.x1f{left:26.423038pt;}
.x2d{left:32.459229pt;}
.x2b{left:51.358585pt;}
.x3{left:77.920000pt;}
.x8{left:85.151988pt;}
.x1e{left:86.613324pt;}
.x1{left:87.711988pt;}
.x9{left:91.711988pt;}
.x2a{left:99.746667pt;}
.xc{left:104.831988pt;}
.xb{left:110.271988pt;}
.x30{left:113.631988pt;}
.x13{left:117.956056pt;}
.x12{left:130.431988pt;}
.xa{left:132.511988pt;}
.xd{left:142.746655pt;}
.xe{left:164.346655pt;}
.x27{left:176.017811pt;}
.x2f{left:187.386655pt;}
.x15{left:188.428330pt;}
.xf{left:238.266655pt;}
.x21{left:245.786655pt;}
.x17{left:253.036060pt;}
.x23{left:259.076434pt;}
.x10{left:262.946655pt;}
.x4{left:264.706667pt;}
.x22{left:284.226655pt;}
.x28{left:290.047445pt;}
.x18{left:318.627731pt;}
.x2c{left:330.068428pt;}
.x2{left:337.346655pt;}
.x5{left:350.146667pt;}
.x24{left:372.351904pt;}
.x19{left:387.138642pt;}
.x11{left:396.866655pt;}
.x29{left:403.302805pt;}
.x7{left:444.573333pt;}
.x1a{left:452.730313pt;}
.x25{left:486.361427pt;}
.x1b{left:517.331527pt;}
.x1c{left:581.971837pt;}
.x26{left:599.636897pt;}
.x1d{left:643.614714pt;}
.x2e{left:694.053322pt;}
.x20{left:707.333322pt;}
}




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