
    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_22c893fb4b937f20aedae869.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_ad6385faf223de29a52ba2dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_3b69cd8d045b2a48fc73e088.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_b6d3d4c624e65446307c45ed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3b010479b0da4ddd564aafee.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d21499ee5428a6b2f9f17f37.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891602;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_9f1ca629919045f8ac8fd9f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_cc1c8f69d8ad84a046b08480.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_67f6fbaf0c706dcd00d1b823.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084473;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);}
.v3{vertical-align:-39.599946px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:39.599941px;}
.v4{vertical-align:79.200027px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008446px;}
.ls1{letter-spacing:0.094301px;}
.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:-79.204500px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws4{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws5{word-spacing:-15.840563px;}
.ws7{word-spacing:-15.357503px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:180.951727px;}
.ws9{word-spacing:206.258062px;}
.ws14{word-spacing:248.697891px;}
.ws15{word-spacing:248.828208px;}
.ws12{word-spacing:265.688238px;}
.ws19{word-spacing:292.458315px;}
.ws18{word-spacing:323.414062px;}
.ws11{word-spacing:323.822731px;}
.ws1c{word-spacing:323.822763px;}
.ws17{word-spacing:340.875572px;}
.ws10{word-spacing:340.970522px;}
.wsf{word-spacing:340.970554px;}
.wsa{word-spacing:345.379323px;}
.wsd{word-spacing:354.894530px;}
.wsc{word-spacing:372.017196px;}
.wsb{word-spacing:376.506161px;}
.ws1a{word-spacing:386.564961px;}
.wse{word-spacing:424.239053px;}
.ws16{word-spacing:446.705766px;}
.ws13{word-spacing:1128.724091px;}
.ws8{word-spacing:1129.516122px;}
._b{margin-left:-23.512325px;}
._23{margin-left:-14.029798px;}
._3{margin-left:-12.451590px;}
._36{margin-left:-10.998149px;}
._d{margin-left:-9.119516px;}
._2{margin-left:-7.243405px;}
._1{margin-left:-5.623593px;}
._a{margin-left:-4.371192px;}
._c{margin-left:-3.340719px;}
._e{margin-left:-2.185738px;}
._4{margin-left:-1.112845px;}
._0{width:1.048595px;}
._13{width:2.566392px;}
._1b{width:3.660903px;}
._6{width:4.752510px;}
._5{width:6.082753px;}
._11{width:7.178901px;}
._15{width:8.199140px;}
._24{width:9.815051px;}
._8{width:11.595049px;}
._1a{width:12.761867px;}
._14{width:13.876307px;}
._2f{width:14.921845px;}
._1f{width:15.967110px;}
._7{width:17.393048px;}
._9{width:18.627391px;}
._20{width:20.561943px;}
._28{width:21.832554px;}
._1c{width:24.821601px;}
._22{width:26.333017px;}
._21{width:27.577866px;}
._2a{width:28.726258px;}
._31{width:30.413952px;}
._2e{width:31.459432px;}
._26{width:32.598491px;}
._25{width:34.215696px;}
._35{width:35.514975px;}
._34{width:36.592528px;}
._3e{width:38.668863px;}
._32{width:39.949498px;}
._27{width:43.977354px;}
._1e{width:45.748080px;}
._1d{width:47.523341px;}
._33{width:51.053635px;}
._30{width:53.240380px;}
._2b{width:57.707486px;}
._49{width:74.551495px;}
._3f{width:85.507311px;}
._48{width:147.418362px;}
._47{width:157.020929px;}
._3d{width:261.359104px;}
._29{width:269.374547px;}
._f{width:274.845135px;}
._16{width:277.876368px;}
._3c{width:285.323883px;}
._43{width:288.159763px;}
._4a{width:291.247518px;}
._45{width:293.612305px;}
._3b{width:297.155725px;}
._46{width:298.184983px;}
._42{width:304.454423px;}
._41{width:312.952606px;}
._4b{width:319.068567px;}
._3a{width:331.109692px;}
._44{width:390.422309px;}
._12{width:409.129192px;}
._37{width:415.113701px;}
._40{width:421.662998px;}
._4c{width:425.402981px;}
._39{width:430.112129px;}
._10{width:441.181057px;}
._17{width:447.328287px;}
._2c{width:473.291030px;}
._18{width:761.750606px;}
._38{width:1695.568988px;}
._2d{width:1697.728898px;}
._19{width:1727.248889px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:55.442250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs7{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1c{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y37{bottom:41.040115px;}
.y6e{bottom:98.100083px;}
.y59{bottom:121.320099px;}
.y36{bottom:121.860077px;}
.yc4{bottom:124.560036px;}
.yb8{bottom:125.820099px;}
.y6d{bottom:126.540047px;}
.y8c{bottom:131.400055px;}
.ya4{bottom:135.540047px;}
.y58{bottom:149.940033px;}
.y35{bottom:150.300041px;}
.yc3{bottom:153.000068px;}
.yb7{bottom:154.260064px;}
.y67{bottom:178.380066px;}
.y57{bottom:178.560036px;}
.y34{bottom:178.920043px;}
.yc2{bottom:181.620072px;}
.ya3{bottom:182.880066px;}
.y6c{bottom:183.600083px;}
.y56{bottom:207.000068px;}
.y33{bottom:207.360077px;}
.yb6{bottom:211.320099px;}
.y8b{bottom:226.440033px;}
.ya2{bottom:230.400055px;}
.y55{bottom:235.620072px;}
.y1a{bottom:235.980000px;}
.y32{bottom:235.980079px;}
.yc1{bottom:238.680039px;}
.yb5{bottom:239.940033px;}
.y6b{bottom:240.660049px;}
.y54{bottom:264.060036px;}
.y31{bottom:264.420043px;}
.yc0{bottom:267.120072px;}
.yb4{bottom:268.380066px;}
.y8a{bottom:273.960091px;}
.ya1{bottom:277.920043px;}
.y66{bottom:292.500068px;}
.y53{bottom:292.680039px;}
.y30{bottom:293.040047px;}
.y19{bottom:293.040150px;}
.ybf{bottom:295.740074px;}
.yb3{bottom:297.000068px;}
.y6a{bottom:297.720085px;}
.ya0{bottom:315.540047px;}
.y52{bottom:321.120072px;}
.y2f{bottom:321.480079px;}
.y18{bottom:321.480150px;}
.y89{bottom:321.660049px;}
.ybe{bottom:324.180039px;}
.y9f{bottom:325.440033px;}
.y65{bottom:349.560036px;}
.y51{bottom:349.740074px;}
.y2e{bottom:350.100083px;}
.y17{bottom:350.100150px;}
.y79{bottom:350.460091px;}
.y88{bottom:352.800041px;}
.yb2{bottom:354.060036px;}
.y78{bottom:367.200096px;}
.y87{bottom:372.600083px;}
.y9e{bottom:372.960091px;}
.y50{bottom:378.180039px;}
.y2d{bottom:378.540047px;}
.y16{bottom:378.540150px;}
.ybd{bottom:381.240074px;}
.yb1{bottom:382.500068px;}
.y77{bottom:383.760064px;}
.y86{bottom:392.400055px;}
.y76{bottom:400.500068px;}
.y64{bottom:406.620072px;}
.y4f{bottom:406.800041px;}
.y15{bottom:407.160150px;}
.ybc{bottom:409.860077px;}
.yb0{bottom:411.120072px;}
.y75{bottom:417.060036px;}
.y9d{bottom:420.660049px;}
.y85{bottom:423.540047px;}
.y74{bottom:433.800041px;}
.y4e{bottom:435.240074px;}
.y2c{bottom:435.600083px;}
.y14{bottom:435.600150px;}
.yaf{bottom:439.560036px;}
.y73{bottom:450.360077px;}
.y63{bottom:463.680039px;}
.y4d{bottom:463.860077px;}
.y2b{bottom:464.220085px;}
.y72{bottom:466.920043px;}
.y9c{bottom:468.180039px;}
.y84{bottom:471.060036px;}
.y71{bottom:483.660049px;}
.y4c{bottom:492.300041px;}
.y2a{bottom:492.660049px;}
.y13{bottom:492.660150px;}
.y70{bottom:500.220085px;}
.y9b{bottom:515.700096px;}
.y6f{bottom:516.960091px;}
.y83{bottom:518.580093px;}
.y62{bottom:520.740074px;}
.y4b{bottom:520.920043px;}
.y29{bottom:521.280052px;}
.y12{bottom:521.280150px;}
.ybb{bottom:523.980079px;}
.yae{bottom:525.240074px;}
.y4a{bottom:549.360077px;}
.y11{bottom:549.720150px;}
.yba{bottom:552.420043px;}
.yad{bottom:553.320099px;}
.y9a{bottom:563.220085px;}
.y82{bottom:566.100083px;}
.yac{bottom:573.120072px;}
.y61{bottom:577.800041px;}
.y49{bottom:577.980079px;}
.y28{bottom:578.340088px;}
.y10{bottom:578.340150px;}
.yab{bottom:600.840088px;}
.y81{bottom:603.900055px;}
.y48{bottom:606.420043px;}
.yf{bottom:606.780150px;}
.y99{bottom:610.740074px;}
.y80{bottom:613.800041px;}
.yaa{bottom:620.640060px;}
.y60{bottom:634.860077px;}
.y47{bottom:635.040047px;}
.ye{bottom:635.400150px;}
.ya9{bottom:648.360077px;}
.y7f{bottom:651.420043px;}
.y98{bottom:658.440033px;}
.y7e{bottom:661.320099px;}
.y5c{bottom:663.480079px;}
.yd{bottom:663.840000px;}
.y27{bottom:663.840088px;}
.y5f{bottom:691.920078px;}
.y46{bottom:692.100083px;}
.yc{bottom:692.460000px;}
.y7d{bottom:698.760064px;}
.y97{bottom:705.960056px;}
.y7c{bottom:718.560070px;}
.y45{bottom:720.540081px;}
.ya8{bottom:743.580059px;}
.y7b{bottom:747.900055px;}
.y5e{bottom:748.980079px;}
.y44{bottom:749.160049px;}
.yb{bottom:749.520000px;}
.y96{bottom:753.480079px;}
.ya7{bottom:763.380066px;}
.y5b{bottom:777.600083px;}
.ya{bottom:777.960000px;}
.y26{bottom:777.960056px;}
.y7a{bottom:790.380066px;}
.y95{bottom:801.000068px;}
.y5d{bottom:806.040081px;}
.y43{bottom:806.220051px;}
.y25{bottom:806.580059px;}
.y42{bottom:834.660049px;}
.y24{bottom:835.020058px;}
.y94{bottom:848.520058px;}
.y5a{bottom:863.280052px;}
.y9{bottom:863.640000px;}
.y41{bottom:891.720051px;}
.y8{bottom:892.080000px;}
.y93{bottom:896.040081px;}
.y40{bottom:920.340054px;}
.y7{bottom:920.700000px;}
.y23{bottom:920.700061px;}
.y69{bottom:925.380066px;}
.y92{bottom:943.740074px;}
.y3f{bottom:948.780053px;}
.y6{bottom:949.140000px;}
.y22{bottom:949.140060px;}
.y3e{bottom:977.400072px;}
.y5{bottom:977.760000px;}
.y21{bottom:977.760064px;}
.ya6{bottom:981.360060px;}
.y91{bottom:991.260064px;}
.y3d{bottom:1005.840070px;}
.y20{bottom:1006.200061px;}
.y90{bottom:1028.880066px;}
.y3c{bottom:1034.460074px;}
.y8f{bottom:1038.780069px;}
.y3b{bottom:1062.900072px;}
.y68{bottom:1063.260064px;}
.y8e{bottom:1086.300058px;}
.y3a{bottom:1091.520058px;}
.y1f{bottom:1091.880066px;}
.y1b{bottom:1097.280150px;}
.y39{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y1e{bottom:1120.320065px;}
.y8d{bottom:1133.820065px;}
.ya5{bottom:1134.000068px;}
.y38{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y1d{bottom:1148.940067px;}
.yb9{bottom:1151.640069px;}
.h12{height:48.782683px;}
.h11{height:49.703111px;}
.h7{height:55.303923px;}
.he{height:55.596662px;}
.h3{height:55.598636px;}
.hd{height:57.534328px;}
.h2{height:57.535781px;}
.h9{height:64.414315px;}
.ha{height:65.992187px;}
.h8{height:67.837080px;}
.h10{height:69.496123px;}
.hf{height:70.346938px;}
.hc{height:83.395190px;}
.h5{height:83.395980px;}
.h6{height:83.396580px;}
.hb{height:84.416166px;}
.h4{height:84.416966px;}
.h13{height:109.096065px;}
.h14{height:109.096069px;}
.h16{height:109.096137px;}
.h15{height:109.096344px;}
.h18{height:148.696011px;}
.h17{height:148.696150px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x18{left:90.900003px;}
.x20{left:92.159998px;}
.x1b{left:97.739997px;}
.xa{left:140.939999px;}
.x3{left:146.520000px;}
.x1a{left:148.319996px;}
.x13{left:160.020006px;}
.xe{left:174.240006px;}
.xf{left:195.479994px;}
.x4{left:202.140000px;}
.x1f{left:210.599997px;}
.x19{left:217.800007px;}
.xd{left:224.639992px;}
.x11{left:244.800007px;}
.x14{left:249.300007px;}
.x1c{left:251.819996px;}
.x9{left:257.400000px;}
.x6{left:259.920000px;}
.x22{left:274.319996px;}
.x21{left:278.460005px;}
.x1d{left:302.399987px;}
.x7{left:304.020000px;}
.x15{left:310.319996px;}
.x1e{left:316.800007px;}
.x16{left:318.959988px;}
.x5{left:341.640000px;}
.x8{left:369.000000px;}
.x23{left:382.319996px;}
.xc{left:389.160015px;}
.xb{left:410.939999px;}
.x1{left:532.800000px;}
.x17{left:539.819996px;}
.x10{left:658.620002px;}
.x12{left:724.860008px;}
@media print{
.v3{vertical-align:-35.199952pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:35.199948pt;}
.v4{vertical-align:70.400024pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007508pt;}
.ls1{letter-spacing:0.083823pt;}
.ws1{word-spacing:-70.404000pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws4{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws5{word-spacing:-14.080500pt;}
.ws7{word-spacing:-13.651114pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:160.845980pt;}
.ws9{word-spacing:183.340500pt;}
.ws14{word-spacing:221.064792pt;}
.ws15{word-spacing:221.180629pt;}
.ws12{word-spacing:236.167322pt;}
.ws19{word-spacing:259.962947pt;}
.ws18{word-spacing:287.479166pt;}
.ws11{word-spacing:287.842428pt;}
.ws1c{word-spacing:287.842456pt;}
.ws17{word-spacing:303.000508pt;}
.ws10{word-spacing:303.084909pt;}
.wsf{word-spacing:303.084937pt;}
.wsa{word-spacing:307.003843pt;}
.wsd{word-spacing:315.461804pt;}
.wsc{word-spacing:330.681952pt;}
.wsb{word-spacing:334.672143pt;}
.ws1a{word-spacing:343.613299pt;}
.wse{word-spacing:377.101381pt;}
.ws16{word-spacing:397.071792pt;}
.ws13{word-spacing:1003.310303pt;}
.ws8{word-spacing:1004.014331pt;}
._b{margin-left:-20.899844pt;}
._23{margin-left:-12.470931pt;}
._3{margin-left:-11.068080pt;}
._36{margin-left:-9.776132pt;}
._d{margin-left:-8.106236pt;}
._2{margin-left:-6.438583pt;}
._1{margin-left:-4.998749pt;}
._a{margin-left:-3.885504pt;}
._c{margin-left:-2.969528pt;}
._e{margin-left:-1.942879pt;}
._4{margin-left:-0.989196pt;}
._0{width:0.932084pt;}
._13{width:2.281237pt;}
._1b{width:3.254136pt;}
._6{width:4.224453pt;}
._5{width:5.406892pt;}
._11{width:6.381245pt;}
._15{width:7.288124pt;}
._24{width:8.724489pt;}
._8{width:10.306710pt;}
._1a{width:11.343882pt;}
._14{width:12.334495pt;}
._2f{width:13.263862pt;}
._1f{width:14.192986pt;}
._7{width:15.460488pt;}
._9{width:16.557681pt;}
._20{width:18.277283pt;}
._28{width:19.406715pt;}
._1c{width:22.063646pt;}
._22{width:23.407127pt;}
._21{width:24.513658pt;}
._2a{width:25.534451pt;}
._31{width:27.034624pt;}
._2e{width:27.963939pt;}
._26{width:28.976436pt;}
._25{width:30.413952pt;}
._35{width:31.568867pt;}
._34{width:32.526692pt;}
._3e{width:34.372323pt;}
._32{width:35.510665pt;}
._27{width:39.090982pt;}
._1e{width:40.664960pt;}
._1d{width:42.242970pt;}
._33{width:45.381009pt;}
._30{width:47.324783pt;}
._2b{width:51.295543pt;}
._49{width:66.267996pt;}
._3f{width:76.006499pt;}
._48{width:131.038544pt;}
._47{width:139.574159pt;}
._3d{width:232.319204pt;}
._29{width:239.444042pt;}
._f{width:244.306787pt;}
._16{width:247.001216pt;}
._3c{width:253.621229pt;}
._43{width:256.142012pt;}
._4a{width:258.886683pt;}
._45{width:260.988716pt;}
._3b{width:264.138422pt;}
._46{width:265.053319pt;}
._42{width:270.626154pt;}
._41{width:278.180094pt;}
._4b{width:283.616504pt;}
._3a{width:294.319726pt;}
._44{width:347.042052pt;}
._12{width:363.670393pt;}
._37{width:368.989956pt;}
._40{width:374.811553pt;}
._4c{width:378.135983pt;}
._39{width:382.321893pt;}
._10{width:392.160939pt;}
._17{width:397.625144pt;}
._2c{width:420.703138pt;}
._18{width:677.111650pt;}
._38{width:1507.172434pt;}
._2d{width:1509.092354pt;}
._19{width:1535.332346pt;}
.fs8{font-size:49.282000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs7{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1c{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y37{bottom:36.480103pt;}
.y6e{bottom:87.200074pt;}
.y59{bottom:107.840088pt;}
.y36{bottom:108.320069pt;}
.yc4{bottom:110.720032pt;}
.yb8{bottom:111.840088pt;}
.y6d{bottom:112.480042pt;}
.y8c{bottom:116.800049pt;}
.ya4{bottom:120.480042pt;}
.y58{bottom:133.280030pt;}
.y35{bottom:133.600037pt;}
.yc3{bottom:136.000061pt;}
.yb7{bottom:137.120057pt;}
.y67{bottom:158.560059pt;}
.y57{bottom:158.720032pt;}
.y34{bottom:159.040039pt;}
.yc2{bottom:161.440064pt;}
.ya3{bottom:162.560059pt;}
.y6c{bottom:163.200074pt;}
.y56{bottom:184.000061pt;}
.y33{bottom:184.320069pt;}
.yb6{bottom:187.840088pt;}
.y8b{bottom:201.280030pt;}
.ya2{bottom:204.800049pt;}
.y55{bottom:209.440064pt;}
.y1a{bottom:209.760000pt;}
.y32{bottom:209.760071pt;}
.yc1{bottom:212.160035pt;}
.yb5{bottom:213.280030pt;}
.y6b{bottom:213.920044pt;}
.y54{bottom:234.720032pt;}
.y31{bottom:235.040039pt;}
.yc0{bottom:237.440064pt;}
.yb4{bottom:238.560059pt;}
.y8a{bottom:243.520081pt;}
.ya1{bottom:247.040039pt;}
.y66{bottom:260.000061pt;}
.y53{bottom:260.160035pt;}
.y30{bottom:260.480042pt;}
.y19{bottom:260.480133pt;}
.ybf{bottom:262.880066pt;}
.yb3{bottom:264.000061pt;}
.y6a{bottom:264.640076pt;}
.ya0{bottom:280.480042pt;}
.y52{bottom:285.440064pt;}
.y2f{bottom:285.760071pt;}
.y18{bottom:285.760133pt;}
.y89{bottom:285.920044pt;}
.ybe{bottom:288.160035pt;}
.y9f{bottom:289.280030pt;}
.y65{bottom:310.720032pt;}
.y51{bottom:310.880066pt;}
.y2e{bottom:311.200074pt;}
.y17{bottom:311.200133pt;}
.y79{bottom:311.520081pt;}
.y88{bottom:313.600037pt;}
.yb2{bottom:314.720032pt;}
.y78{bottom:326.400086pt;}
.y87{bottom:331.200074pt;}
.y9e{bottom:331.520081pt;}
.y50{bottom:336.160035pt;}
.y2d{bottom:336.480042pt;}
.y16{bottom:336.480133pt;}
.ybd{bottom:338.880066pt;}
.yb1{bottom:340.000061pt;}
.y77{bottom:341.120057pt;}
.y86{bottom:348.800049pt;}
.y76{bottom:356.000061pt;}
.y64{bottom:361.440064pt;}
.y4f{bottom:361.600037pt;}
.y15{bottom:361.920133pt;}
.ybc{bottom:364.320069pt;}
.yb0{bottom:365.440064pt;}
.y75{bottom:370.720032pt;}
.y9d{bottom:373.920044pt;}
.y85{bottom:376.480042pt;}
.y74{bottom:385.600037pt;}
.y4e{bottom:386.880066pt;}
.y2c{bottom:387.200074pt;}
.y14{bottom:387.200133pt;}
.yaf{bottom:390.720032pt;}
.y73{bottom:400.320069pt;}
.y63{bottom:412.160035pt;}
.y4d{bottom:412.320069pt;}
.y2b{bottom:412.640076pt;}
.y72{bottom:415.040039pt;}
.y9c{bottom:416.160035pt;}
.y84{bottom:418.720032pt;}
.y71{bottom:429.920044pt;}
.y4c{bottom:437.600037pt;}
.y2a{bottom:437.920044pt;}
.y13{bottom:437.920133pt;}
.y70{bottom:444.640076pt;}
.y9b{bottom:458.400086pt;}
.y6f{bottom:459.520081pt;}
.y83{bottom:460.960083pt;}
.y62{bottom:462.880066pt;}
.y4b{bottom:463.040039pt;}
.y29{bottom:463.360047pt;}
.y12{bottom:463.360133pt;}
.ybb{bottom:465.760071pt;}
.yae{bottom:466.880066pt;}
.y4a{bottom:488.320069pt;}
.y11{bottom:488.640133pt;}
.yba{bottom:491.040039pt;}
.yad{bottom:491.840088pt;}
.y9a{bottom:500.640076pt;}
.y82{bottom:503.200074pt;}
.yac{bottom:509.440064pt;}
.y61{bottom:513.600037pt;}
.y49{bottom:513.760071pt;}
.y28{bottom:514.080079pt;}
.y10{bottom:514.080133pt;}
.yab{bottom:534.080079pt;}
.y81{bottom:536.800049pt;}
.y48{bottom:539.040039pt;}
.yf{bottom:539.360133pt;}
.y99{bottom:542.880066pt;}
.y80{bottom:545.600037pt;}
.yaa{bottom:551.680054pt;}
.y60{bottom:564.320069pt;}
.y47{bottom:564.480042pt;}
.ye{bottom:564.800133pt;}
.ya9{bottom:576.320069pt;}
.y7f{bottom:579.040039pt;}
.y98{bottom:585.280030pt;}
.y7e{bottom:587.840088pt;}
.y5c{bottom:589.760071pt;}
.yd{bottom:590.080000pt;}
.y27{bottom:590.080079pt;}
.y5f{bottom:615.040070pt;}
.y46{bottom:615.200074pt;}
.yc{bottom:615.520000pt;}
.y7d{bottom:621.120057pt;}
.y97{bottom:627.520050pt;}
.y7c{bottom:638.720063pt;}
.y45{bottom:640.480072pt;}
.ya8{bottom:660.960053pt;}
.y7b{bottom:664.800049pt;}
.y5e{bottom:665.760071pt;}
.y44{bottom:665.920044pt;}
.yb{bottom:666.240000pt;}
.y96{bottom:669.760071pt;}
.ya7{bottom:678.560059pt;}
.y5b{bottom:691.200074pt;}
.ya{bottom:691.520000pt;}
.y26{bottom:691.520050pt;}
.y7a{bottom:702.560059pt;}
.y95{bottom:712.000061pt;}
.y5d{bottom:716.480072pt;}
.y43{bottom:716.640046pt;}
.y25{bottom:716.960053pt;}
.y42{bottom:741.920044pt;}
.y24{bottom:742.240052pt;}
.y94{bottom:754.240052pt;}
.y5a{bottom:767.360047pt;}
.y9{bottom:767.680000pt;}
.y41{bottom:792.640046pt;}
.y8{bottom:792.960000pt;}
.y93{bottom:796.480072pt;}
.y40{bottom:818.080048pt;}
.y7{bottom:818.400000pt;}
.y23{bottom:818.400055pt;}
.y69{bottom:822.560059pt;}
.y92{bottom:838.880066pt;}
.y3f{bottom:843.360047pt;}
.y6{bottom:843.680000pt;}
.y22{bottom:843.680054pt;}
.y3e{bottom:868.800064pt;}
.y5{bottom:869.120000pt;}
.y21{bottom:869.120057pt;}
.ya6{bottom:872.320054pt;}
.y91{bottom:881.120057pt;}
.y3d{bottom:894.080063pt;}
.y20{bottom:894.400055pt;}
.y90{bottom:914.560059pt;}
.y3c{bottom:919.520066pt;}
.y8f{bottom:923.360062pt;}
.y3b{bottom:944.800064pt;}
.y68{bottom:945.120057pt;}
.y8e{bottom:965.600052pt;}
.y3a{bottom:970.240052pt;}
.y1f{bottom:970.560059pt;}
.y1b{bottom:975.360133pt;}
.y39{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y1e{bottom:995.840058pt;}
.y8d{bottom:1007.840058pt;}
.ya5{bottom:1008.000061pt;}
.y38{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y1d{bottom:1021.280060pt;}
.yb9{bottom:1023.680062pt;}
.h12{height:43.362385pt;}
.h11{height:44.180543pt;}
.h7{height:49.159043pt;}
.he{height:49.419255pt;}
.h3{height:49.421010pt;}
.hd{height:51.141625pt;}
.h2{height:51.142916pt;}
.h9{height:57.257169pt;}
.ha{height:58.659722pt;}
.h8{height:60.299627pt;}
.h10{height:61.774332pt;}
.hf{height:62.530612pt;}
.hc{height:74.129058pt;}
.h5{height:74.129760pt;}
.h6{height:74.130293pt;}
.hb{height:75.036592pt;}
.h4{height:75.037303pt;}
.h13{height:96.974280pt;}
.h14{height:96.974284pt;}
.h16{height:96.974344pt;}
.h15{height:96.974528pt;}
.h18{height:132.174232pt;}
.h17{height:132.174356pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x18{left:80.800003pt;}
.x20{left:81.919998pt;}
.x1b{left:86.879997pt;}
.xa{left:125.279999pt;}
.x3{left:130.240000pt;}
.x1a{left:131.839996pt;}
.x13{left:142.240005pt;}
.xe{left:154.880005pt;}
.xf{left:173.759995pt;}
.x4{left:179.680000pt;}
.x1f{left:187.199997pt;}
.x19{left:193.600006pt;}
.xd{left:199.679993pt;}
.x11{left:217.600006pt;}
.x14{left:221.600006pt;}
.x1c{left:223.839996pt;}
.x9{left:228.800000pt;}
.x6{left:231.040000pt;}
.x22{left:243.839996pt;}
.x21{left:247.520004pt;}
.x1d{left:268.799988pt;}
.x7{left:270.240000pt;}
.x15{left:275.839996pt;}
.x1e{left:281.600006pt;}
.x16{left:283.519989pt;}
.x5{left:303.680000pt;}
.x8{left:328.000000pt;}
.x23{left:339.839996pt;}
.xc{left:345.920013pt;}
.xb{left:365.279999pt;}
.x1{left:473.600000pt;}
.x17{left:479.839996pt;}
.x10{left:585.440002pt;}
.x12{left:644.320007pt;}
}




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