
    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_abae9d80bee50d2b5922d564.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.103027;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_73883cc0ec10fafd58e6f960.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_887545e0dc7d2a47bb911690.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_f44c17ed767ae931148ec3d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_bc781dc4b3fffcd6996aa7eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_25dc26dc5f90584b91e00b53.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5cba721c5c909de86e7b8a0a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_7c02d46f43caaf24605892f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-4.824000px;}
.lse{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.lsc{letter-spacing:3.024000px;}
.ls8{letter-spacing:5.904000px;}
.ls9{letter-spacing:7.320000px;}
.lsf{letter-spacing:8.784000px;}
.lsa{letter-spacing:9.480000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-20.304000px;}
.ws0{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.872000px;}
.ws2{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.ws1{word-spacing:0.000000px;}
._25{margin-left:-14.573760px;}
._4{margin-left:-8.272800px;}
._6{margin-left:-7.092000px;}
._2f{margin-left:-6.036000px;}
._2{margin-left:-4.428000px;}
._5{margin-left:-3.278880px;}
._0{margin-left:-2.052000px;}
._d{margin-left:-1.008000px;}
._1{width:1.080000px;}
._3{width:2.345760px;}
._1a{width:3.756000px;}
._15{width:5.160000px;}
._13{width:6.312000px;}
._12{width:7.320000px;}
._10{width:8.400000px;}
._7{width:10.344000px;}
._a{width:11.556000px;}
._19{width:12.720000px;}
._9{width:13.968000px;}
._8{width:15.732000px;}
._1b{width:16.776000px;}
._18{width:18.288000px;}
._1f{width:21.456000px;}
._17{width:22.608000px;}
._16{width:24.120000px;}
._14{width:25.200000px;}
._f{width:26.280000px;}
._e{width:27.936000px;}
._20{width:29.304000px;}
._11{width:30.348000px;}
._c{width:32.400000px;}
._28{width:33.450240px;}
._b{width:34.632000px;}
._29{width:35.676000px;}
._33{width:37.380000px;}
._32{width:39.124800px;}
._27{width:40.140000px;}
._1d{width:41.220000px;}
._1e{width:42.228000px;}
._1c{width:43.272000px;}
._24{width:44.712000px;}
._23{width:46.008000px;}
._2e{width:47.088000px;}
._2c{width:49.248000px;}
._2b{width:50.328000px;}
._22{width:51.984000px;}
._21{width:52.992000px;}
._26{width:60.408000px;}
._2a{width:81.360000px;}
._2d{width:145.272000px;}
._30{width:281.880000px;}
._35{width:349.668000px;}
._34{width:350.676000px;}
._31{width:705.816000px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:13.125000px;}
.yce{bottom:13.140000px;}
.ye2{bottom:13.170000px;}
.ye5{bottom:42.825000px;}
.ye0{bottom:42.870000px;}
.yd0{bottom:72.540000px;}
.y2{bottom:131.436000px;}
.y66{bottom:194.610000px;}
.yfb{bottom:195.150000px;}
.ye4{bottom:198.405000px;}
.yc8{bottom:202.350000px;}
.ya1{bottom:207.030000px;}
.y65{bottom:215.310000px;}
.yfa{bottom:215.850000px;}
.yc7{bottom:223.050000px;}
.y3f{bottom:226.470000px;}
.ye6{bottom:228.105000px;}
.y64{bottom:236.010000px;}
.ya0{bottom:236.730000px;}
.y88{bottom:243.030000px;}
.yc6{bottom:243.750000px;}
.y3e{bottom:247.170000px;}
.yf9{bottom:253.470000px;}
.y63{bottom:256.710000px;}
.y9f{bottom:257.430000px;}
.ydf{bottom:257.805000px;}
.y3d{bottom:267.870000px;}
.y87{bottom:272.730000px;}
.yc5{bottom:273.450000px;}
.yf8{bottom:274.350000px;}
.y62{bottom:277.410000px;}
.y9e{bottom:278.130000px;}
.y1b{bottom:283.350000px;}
.ye1{bottom:287.505000px;}
.y3c{bottom:288.570000px;}
.yf7{bottom:295.050000px;}
.y61{bottom:297.975000px;}
.y9d{bottom:298.875000px;}
.y86{bottom:302.475000px;}
.yc4{bottom:303.195000px;}
.y1a{bottom:304.095000px;}
.y3b{bottom:309.315000px;}
.ydc{bottom:317.235000px;}
.y9c{bottom:319.575000px;}
.yc3{bottom:323.895000px;}
.y19{bottom:324.795000px;}
.y3a{bottom:330.015000px;}
.y85{bottom:332.175000px;}
.yf6{bottom:332.715000px;}
.y60{bottom:335.775000px;}
.y9b{bottom:340.275000px;}
.yc2{bottom:344.595000px;}
.y18{bottom:345.495000px;}
.yde{bottom:346.935000px;}
.y39{bottom:350.715000px;}
.y84{bottom:352.875000px;}
.yf5{bottom:353.415000px;}
.y5f{bottom:356.475000px;}
.yc1{bottom:365.295000px;}
.y17{bottom:366.195000px;}
.y9a{bottom:369.975000px;}
.y38{bottom:371.235000px;}
.y83{bottom:373.575000px;}
.ydd{bottom:376.635000px;}
.y5e{bottom:377.175000px;}
.yc0{bottom:385.995000px;}
.y16{bottom:386.895000px;}
.y99{bottom:390.675000px;}
.yf4{bottom:391.035000px;}
.y82{bottom:394.275000px;}
.y5d{bottom:397.875000px;}
.yd9{bottom:406.335000px;}
.ybf{bottom:406.695000px;}
.y15{bottom:407.595000px;}
.y37{bottom:409.035000px;}
.y98{bottom:411.375000px;}
.yf3{bottom:411.915000px;}
.y81{bottom:414.975000px;}
.y5c{bottom:418.575000px;}
.ybe{bottom:427.395000px;}
.y14{bottom:428.295000px;}
.y36{bottom:429.735000px;}
.y97{bottom:432.075000px;}
.y80{bottom:435.675000px;}
.ydb{bottom:436.035000px;}
.y5b{bottom:439.275000px;}
.ybd{bottom:448.095000px;}
.y13{bottom:448.995000px;}
.yf2{bottom:449.535000px;}
.y35{bottom:450.435000px;}
.y96{bottom:452.775000px;}
.y7f{bottom:456.375000px;}
.y5a{bottom:459.975000px;}
.yda{bottom:465.735000px;}
.ybc{bottom:468.795000px;}
.y12{bottom:469.695000px;}
.yf1{bottom:470.415000px;}
.y34{bottom:471.135000px;}
.y7e{bottom:477.075000px;}
.y95{bottom:482.475000px;}
.ybb{bottom:489.495000px;}
.y33{bottom:491.835000px;}
.yd6{bottom:495.435000px;}
.y59{bottom:497.775000px;}
.y11{bottom:507.315000px;}
.yba{bottom:510.195000px;}
.y32{bottom:512.535000px;}
.yf0{bottom:518.295000px;}
.y58{bottom:518.655000px;}
.yd8{bottom:525.135000px;}
.y7d{bottom:527.475000px;}
.y94{bottom:530.175000px;}
.yb9{bottom:530.895000px;}
.y57{bottom:539.355000px;}
.y10{bottom:545.115000px;}
.y7c{bottom:548.175000px;}
.y31{bottom:550.335000px;}
.yd7{bottom:554.835000px;}
.y56{bottom:559.875000px;}
.yb8{bottom:560.595000px;}
.y7b{bottom:568.875000px;}
.y30{bottom:571.035000px;}
.yef{bottom:571.575000px;}
.y93{bottom:580.605000px;}
.y55{bottom:580.785000px;}
.yf{bottom:582.765000px;}
.yd3{bottom:584.565000px;}
.y7a{bottom:589.605000px;}
.yb7{bottom:590.325000px;}
.y2f{bottom:591.765000px;}
.yee{bottom:601.305000px;}
.y54{bottom:601.485000px;}
.y79{bottom:610.305000px;}
.yb6{bottom:611.025000px;}
.y2e{bottom:612.465000px;}
.yd5{bottom:614.265000px;}
.ye{bottom:622.005000px;}
.yed{bottom:631.005000px;}
.yb5{bottom:631.725000px;}
.y2d{bottom:633.165000px;}
.y78{bottom:640.005000px;}
.y53{bottom:642.525000px;}
.yd{bottom:643.065000px;}
.yd4{bottom:643.965000px;}
.yb4{bottom:652.425000px;}
.y2c{bottom:653.865000px;}
.y77{bottom:660.705000px;}
.y92{bottom:660.885000px;}
.yc{bottom:663.585000px;}
.yb3{bottom:673.125000px;}
.ycf{bottom:673.665000px;}
.y2b{bottom:674.565000px;}
.y108{bottom:677.985000px;}
.y52{bottom:680.505000px;}
.y76{bottom:681.405000px;}
.yb{bottom:684.285000px;}
.yb2{bottom:693.825000px;}
.y2a{bottom:695.265000px;}
.y107{bottom:698.685000px;}
.y51{bottom:701.205000px;}
.y91{bottom:702.105000px;}
.yd2{bottom:703.365000px;}
.ya{bottom:704.985000px;}
.y75{bottom:711.105000px;}
.yb1{bottom:714.525000px;}
.y29{bottom:715.785000px;}
.y50{bottom:721.725000px;}
.y90{bottom:722.805000px;}
.y74{bottom:731.805000px;}
.yd1{bottom:733.065000px;}
.yb0{bottom:735.225000px;}
.y106{bottom:736.485000px;}
.y4f{bottom:742.425000px;}
.y9{bottom:742.785000px;}
.y73{bottom:752.505000px;}
.y28{bottom:753.765000px;}
.yaf{bottom:755.925000px;}
.y105{bottom:757.365000px;}
.yec{bottom:761.505000px;}
.ycd{bottom:762.765000px;}
.y4e{bottom:763.305000px;}
.y72{bottom:773.205000px;}
.y27{bottom:774.465000px;}
.yae{bottom:776.625000px;}
.y104{bottom:778.065000px;}
.y8f{bottom:782.205000px;}
.y4d{bottom:783.825000px;}
.y8{bottom:786.885000px;}
.y71{bottom:793.905000px;}
.y26{bottom:795.165000px;}
.y8e{bottom:802.905000px;}
.y4c{bottom:804.525000px;}
.yad{bottom:806.325000px;}
.ycc{bottom:806.505000px;}
.y7{bottom:811.905000px;}
.y70{bottom:814.605000px;}
.y103{bottom:815.685000px;}
.y25{bottom:815.865000px;}
.y8d{bottom:823.605000px;}
.y4b{bottom:825.225000px;}
.yac{bottom:836.025000px;}
.y102{bottom:836.385000px;}
.y24{bottom:836.565000px;}
.y6{bottom:837.105000px;}
.y6f{bottom:844.305000px;}
.ycb{bottom:845.025000px;}
.y4a{bottom:845.925000px;}
.y23{bottom:857.310000px;}
.y6e{bottom:865.050000px;}
.yab{bottom:865.770000px;}
.y49{bottom:866.670000px;}
.y5{bottom:867.030000px;}
.y101{bottom:874.050000px;}
.y6d{bottom:885.750000px;}
.yaa{bottom:886.470000px;}
.yca{bottom:886.650000px;}
.y48{bottom:887.370000px;}
.y4{bottom:889.350000px;}
.y22{bottom:894.930000px;}
.y6c{bottom:906.450000px;}
.ya9{bottom:907.170000px;}
.y3{bottom:911.850000px;}
.y21{bottom:915.630000px;}
.yc9{bottom:916.170000px;}
.y47{bottom:925.170000px;}
.y6b{bottom:927.150000px;}
.ya8{bottom:927.870000px;}
.y100{bottom:932.550000px;}
.y20{bottom:936.330000px;}
.y46{bottom:945.870000px;}
.y8c{bottom:947.850000px;}
.ya7{bottom:948.570000px;}
.yff{bottom:953.250000px;}
.y6a{bottom:956.850000px;}
.y1f{bottom:957.030000px;}
.y45{bottom:966.570000px;}
.yeb{bottom:968.550000px;}
.ya6{bottom:969.270000px;}
.yfe{bottom:973.950000px;}
.y69{bottom:977.550000px;}
.y1e{bottom:977.910000px;}
.y44{bottom:987.270000px;}
.yea{bottom:989.250000px;}
.ya5{bottom:989.970000px;}
.y68{bottom:998.250000px;}
.y1d{bottom:998.610000px;}
.y8b{bottom:1007.250000px;}
.y43{bottom:1007.970000px;}
.ye9{bottom:1009.950000px;}
.ya4{bottom:1010.670000px;}
.yfd{bottom:1011.570000px;}
.y67{bottom:1028.490000px;}
.y42{bottom:1028.670000px;}
.yfc{bottom:1032.450000px;}
.y8a{bottom:1036.950000px;}
.ye8{bottom:1039.650000px;}
.ya3{bottom:1040.370000px;}
.y1c{bottom:1046.490000px;}
.y41{bottom:1049.370000px;}
.ye7{bottom:1056.930000px;}
.y89{bottom:1067.190000px;}
.y40{bottom:1069.890000px;}
.ya2{bottom:1070.070000px;}
.y1{bottom:1104.810000px;}
.hc{height:29.685000px;}
.h8{height:29.700000px;}
.hf{height:29.721000px;}
.hb{height:29.730000px;}
.h10{height:59.385000px;}
.he{height:59.421000px;}
.h6{height:64.546875px;}
.h5{height:70.204219px;}
.h3{height:75.093750px;}
.h4{height:81.101250px;}
.h2{height:87.859687px;}
.hd{height:89.085000px;}
.h9{height:89.100000px;}
.ha{height:89.130000px;}
.h7{height:99.874688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:188.839500px;}
.w3{width:459.435000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.089500px;}
.x8{left:119.566500px;}
.x1{left:127.656000px;}
.x5{left:154.650000px;}
.x3{left:161.310000px;}
.x4{left:162.390000px;}
.x6{left:181.650000px;}
.x7{left:191.370000px;}
.xa{left:308.415000px;}
.x2{left:430.455000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-4.288000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.lsc{letter-spacing:2.688000pt;}
.ls8{letter-spacing:5.248000pt;}
.ls9{letter-spacing:6.506667pt;}
.lsf{letter-spacing:7.808000pt;}
.lsa{letter-spacing:8.426667pt;}
.ws4{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.664000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws1{word-spacing:0.000000pt;}
._25{margin-left:-12.954453pt;}
._4{margin-left:-7.353600pt;}
._6{margin-left:-6.304000pt;}
._2f{margin-left:-5.365333pt;}
._2{margin-left:-3.936000pt;}
._5{margin-left:-2.914560pt;}
._0{margin-left:-1.824000pt;}
._d{margin-left:-0.896000pt;}
._1{width:0.960000pt;}
._3{width:2.085120pt;}
._1a{width:3.338667pt;}
._15{width:4.586667pt;}
._13{width:5.610667pt;}
._12{width:6.506667pt;}
._10{width:7.466667pt;}
._7{width:9.194667pt;}
._a{width:10.272000pt;}
._19{width:11.306667pt;}
._9{width:12.416000pt;}
._8{width:13.984000pt;}
._1b{width:14.912000pt;}
._18{width:16.256000pt;}
._1f{width:19.072000pt;}
._17{width:20.096000pt;}
._16{width:21.440000pt;}
._14{width:22.400000pt;}
._f{width:23.360000pt;}
._e{width:24.832000pt;}
._20{width:26.048000pt;}
._11{width:26.976000pt;}
._c{width:28.800000pt;}
._28{width:29.733547pt;}
._b{width:30.784000pt;}
._29{width:31.712000pt;}
._33{width:33.226667pt;}
._32{width:34.777600pt;}
._27{width:35.680000pt;}
._1d{width:36.640000pt;}
._1e{width:37.536000pt;}
._1c{width:38.464000pt;}
._24{width:39.744000pt;}
._23{width:40.896000pt;}
._2e{width:41.856000pt;}
._2c{width:43.776000pt;}
._2b{width:44.736000pt;}
._22{width:46.208000pt;}
._21{width:47.104000pt;}
._26{width:53.696000pt;}
._2a{width:72.320000pt;}
._2d{width:129.130667pt;}
._30{width:250.560000pt;}
._35{width:310.816000pt;}
._34{width:311.712000pt;}
._31{width:627.392000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:11.666667pt;}
.yce{bottom:11.680000pt;}
.ye2{bottom:11.706667pt;}
.ye5{bottom:38.066667pt;}
.ye0{bottom:38.106667pt;}
.yd0{bottom:64.480000pt;}
.y2{bottom:116.832000pt;}
.y66{bottom:172.986667pt;}
.yfb{bottom:173.466667pt;}
.ye4{bottom:176.360000pt;}
.yc8{bottom:179.866667pt;}
.ya1{bottom:184.026667pt;}
.y65{bottom:191.386667pt;}
.yfa{bottom:191.866667pt;}
.yc7{bottom:198.266667pt;}
.y3f{bottom:201.306667pt;}
.ye6{bottom:202.760000pt;}
.y64{bottom:209.786667pt;}
.ya0{bottom:210.426667pt;}
.y88{bottom:216.026667pt;}
.yc6{bottom:216.666667pt;}
.y3e{bottom:219.706667pt;}
.yf9{bottom:225.306667pt;}
.y63{bottom:228.186667pt;}
.y9f{bottom:228.826667pt;}
.ydf{bottom:229.160000pt;}
.y3d{bottom:238.106667pt;}
.y87{bottom:242.426667pt;}
.yc5{bottom:243.066667pt;}
.yf8{bottom:243.866667pt;}
.y62{bottom:246.586667pt;}
.y9e{bottom:247.226667pt;}
.y1b{bottom:251.866667pt;}
.ye1{bottom:255.560000pt;}
.y3c{bottom:256.506667pt;}
.yf7{bottom:262.266667pt;}
.y61{bottom:264.866667pt;}
.y9d{bottom:265.666667pt;}
.y86{bottom:268.866667pt;}
.yc4{bottom:269.506667pt;}
.y1a{bottom:270.306667pt;}
.y3b{bottom:274.946667pt;}
.ydc{bottom:281.986667pt;}
.y9c{bottom:284.066667pt;}
.yc3{bottom:287.906667pt;}
.y19{bottom:288.706667pt;}
.y3a{bottom:293.346667pt;}
.y85{bottom:295.266667pt;}
.yf6{bottom:295.746667pt;}
.y60{bottom:298.466667pt;}
.y9b{bottom:302.466667pt;}
.yc2{bottom:306.306667pt;}
.y18{bottom:307.106667pt;}
.yde{bottom:308.386667pt;}
.y39{bottom:311.746667pt;}
.y84{bottom:313.666667pt;}
.yf5{bottom:314.146667pt;}
.y5f{bottom:316.866667pt;}
.yc1{bottom:324.706667pt;}
.y17{bottom:325.506667pt;}
.y9a{bottom:328.866667pt;}
.y38{bottom:329.986667pt;}
.y83{bottom:332.066667pt;}
.ydd{bottom:334.786667pt;}
.y5e{bottom:335.266667pt;}
.yc0{bottom:343.106667pt;}
.y16{bottom:343.906667pt;}
.y99{bottom:347.266667pt;}
.yf4{bottom:347.586667pt;}
.y82{bottom:350.466667pt;}
.y5d{bottom:353.666667pt;}
.yd9{bottom:361.186667pt;}
.ybf{bottom:361.506667pt;}
.y15{bottom:362.306667pt;}
.y37{bottom:363.586667pt;}
.y98{bottom:365.666667pt;}
.yf3{bottom:366.146667pt;}
.y81{bottom:368.866667pt;}
.y5c{bottom:372.066667pt;}
.ybe{bottom:379.906667pt;}
.y14{bottom:380.706667pt;}
.y36{bottom:381.986667pt;}
.y97{bottom:384.066667pt;}
.y80{bottom:387.266667pt;}
.ydb{bottom:387.586667pt;}
.y5b{bottom:390.466667pt;}
.ybd{bottom:398.306667pt;}
.y13{bottom:399.106667pt;}
.yf2{bottom:399.586667pt;}
.y35{bottom:400.386667pt;}
.y96{bottom:402.466667pt;}
.y7f{bottom:405.666667pt;}
.y5a{bottom:408.866667pt;}
.yda{bottom:413.986667pt;}
.ybc{bottom:416.706667pt;}
.y12{bottom:417.506667pt;}
.yf1{bottom:418.146667pt;}
.y34{bottom:418.786667pt;}
.y7e{bottom:424.066667pt;}
.y95{bottom:428.866667pt;}
.ybb{bottom:435.106667pt;}
.y33{bottom:437.186667pt;}
.yd6{bottom:440.386667pt;}
.y59{bottom:442.466667pt;}
.y11{bottom:450.946667pt;}
.yba{bottom:453.506667pt;}
.y32{bottom:455.586667pt;}
.yf0{bottom:460.706667pt;}
.y58{bottom:461.026667pt;}
.yd8{bottom:466.786667pt;}
.y7d{bottom:468.866667pt;}
.y94{bottom:471.266667pt;}
.yb9{bottom:471.906667pt;}
.y57{bottom:479.426667pt;}
.y10{bottom:484.546667pt;}
.y7c{bottom:487.266667pt;}
.y31{bottom:489.186667pt;}
.yd7{bottom:493.186667pt;}
.y56{bottom:497.666667pt;}
.yb8{bottom:498.306667pt;}
.y7b{bottom:505.666667pt;}
.y30{bottom:507.586667pt;}
.yef{bottom:508.066667pt;}
.y93{bottom:516.093333pt;}
.y55{bottom:516.253333pt;}
.yf{bottom:518.013333pt;}
.yd3{bottom:519.613333pt;}
.y7a{bottom:524.093333pt;}
.yb7{bottom:524.733333pt;}
.y2f{bottom:526.013333pt;}
.yee{bottom:534.493333pt;}
.y54{bottom:534.653333pt;}
.y79{bottom:542.493333pt;}
.yb6{bottom:543.133333pt;}
.y2e{bottom:544.413333pt;}
.yd5{bottom:546.013333pt;}
.ye{bottom:552.893333pt;}
.yed{bottom:560.893333pt;}
.yb5{bottom:561.533333pt;}
.y2d{bottom:562.813333pt;}
.y78{bottom:568.893333pt;}
.y53{bottom:571.133333pt;}
.yd{bottom:571.613333pt;}
.yd4{bottom:572.413333pt;}
.yb4{bottom:579.933333pt;}
.y2c{bottom:581.213333pt;}
.y77{bottom:587.293333pt;}
.y92{bottom:587.453333pt;}
.yc{bottom:589.853333pt;}
.yb3{bottom:598.333333pt;}
.ycf{bottom:598.813333pt;}
.y2b{bottom:599.613333pt;}
.y108{bottom:602.653333pt;}
.y52{bottom:604.893333pt;}
.y76{bottom:605.693333pt;}
.yb{bottom:608.253333pt;}
.yb2{bottom:616.733333pt;}
.y2a{bottom:618.013333pt;}
.y107{bottom:621.053333pt;}
.y51{bottom:623.293333pt;}
.y91{bottom:624.093333pt;}
.yd2{bottom:625.213333pt;}
.ya{bottom:626.653333pt;}
.y75{bottom:632.093333pt;}
.yb1{bottom:635.133333pt;}
.y29{bottom:636.253333pt;}
.y50{bottom:641.533333pt;}
.y90{bottom:642.493333pt;}
.y74{bottom:650.493333pt;}
.yd1{bottom:651.613333pt;}
.yb0{bottom:653.533333pt;}
.y106{bottom:654.653333pt;}
.y4f{bottom:659.933333pt;}
.y9{bottom:660.253333pt;}
.y73{bottom:668.893333pt;}
.y28{bottom:670.013333pt;}
.yaf{bottom:671.933333pt;}
.y105{bottom:673.213333pt;}
.yec{bottom:676.893333pt;}
.ycd{bottom:678.013333pt;}
.y4e{bottom:678.493333pt;}
.y72{bottom:687.293333pt;}
.y27{bottom:688.413333pt;}
.yae{bottom:690.333333pt;}
.y104{bottom:691.613333pt;}
.y8f{bottom:695.293333pt;}
.y4d{bottom:696.733333pt;}
.y8{bottom:699.453333pt;}
.y71{bottom:705.693333pt;}
.y26{bottom:706.813333pt;}
.y8e{bottom:713.693333pt;}
.y4c{bottom:715.133333pt;}
.yad{bottom:716.733333pt;}
.ycc{bottom:716.893333pt;}
.y7{bottom:721.693333pt;}
.y70{bottom:724.093333pt;}
.y103{bottom:725.053333pt;}
.y25{bottom:725.213333pt;}
.y8d{bottom:732.093333pt;}
.y4b{bottom:733.533333pt;}
.yac{bottom:743.133333pt;}
.y102{bottom:743.453333pt;}
.y24{bottom:743.613333pt;}
.y6{bottom:744.093333pt;}
.y6f{bottom:750.493333pt;}
.ycb{bottom:751.133333pt;}
.y4a{bottom:751.933333pt;}
.y23{bottom:762.053333pt;}
.y6e{bottom:768.933333pt;}
.yab{bottom:769.573333pt;}
.y49{bottom:770.373333pt;}
.y5{bottom:770.693333pt;}
.y101{bottom:776.933333pt;}
.y6d{bottom:787.333333pt;}
.yaa{bottom:787.973333pt;}
.yca{bottom:788.133333pt;}
.y48{bottom:788.773333pt;}
.y4{bottom:790.533333pt;}
.y22{bottom:795.493333pt;}
.y6c{bottom:805.733333pt;}
.ya9{bottom:806.373333pt;}
.y3{bottom:810.533333pt;}
.y21{bottom:813.893333pt;}
.yc9{bottom:814.373333pt;}
.y47{bottom:822.373333pt;}
.y6b{bottom:824.133333pt;}
.ya8{bottom:824.773333pt;}
.y100{bottom:828.933333pt;}
.y20{bottom:832.293333pt;}
.y46{bottom:840.773333pt;}
.y8c{bottom:842.533333pt;}
.ya7{bottom:843.173333pt;}
.yff{bottom:847.333333pt;}
.y6a{bottom:850.533333pt;}
.y1f{bottom:850.693333pt;}
.y45{bottom:859.173333pt;}
.yeb{bottom:860.933333pt;}
.ya6{bottom:861.573333pt;}
.yfe{bottom:865.733333pt;}
.y69{bottom:868.933333pt;}
.y1e{bottom:869.253333pt;}
.y44{bottom:877.573333pt;}
.yea{bottom:879.333333pt;}
.ya5{bottom:879.973333pt;}
.y68{bottom:887.333333pt;}
.y1d{bottom:887.653333pt;}
.y8b{bottom:895.333333pt;}
.y43{bottom:895.973333pt;}
.ye9{bottom:897.733333pt;}
.ya4{bottom:898.373333pt;}
.yfd{bottom:899.173333pt;}
.y67{bottom:914.213333pt;}
.y42{bottom:914.373333pt;}
.yfc{bottom:917.733333pt;}
.y8a{bottom:921.733333pt;}
.ye8{bottom:924.133333pt;}
.ya3{bottom:924.773333pt;}
.y1c{bottom:930.213333pt;}
.y41{bottom:932.773333pt;}
.ye7{bottom:939.493333pt;}
.y89{bottom:948.613333pt;}
.y40{bottom:951.013333pt;}
.ya2{bottom:951.173333pt;}
.y1{bottom:982.053333pt;}
.hc{height:26.386667pt;}
.h8{height:26.400000pt;}
.hf{height:26.418667pt;}
.hb{height:26.426667pt;}
.h10{height:52.786667pt;}
.he{height:52.818667pt;}
.h6{height:57.375000pt;}
.h5{height:62.403750pt;}
.h3{height:66.750000pt;}
.h4{height:72.090000pt;}
.h2{height:78.097500pt;}
.hd{height:79.186667pt;}
.h9{height:79.200000pt;}
.ha{height:79.226667pt;}
.h7{height:88.777500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:167.857333pt;}
.w3{width:408.386667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.190667pt;}
.x8{left:106.281333pt;}
.x1{left:113.472000pt;}
.x5{left:137.466667pt;}
.x3{left:143.386667pt;}
.x4{left:144.346667pt;}
.x6{left:161.466667pt;}
.x7{left:170.106667pt;}
.xa{left:274.146667pt;}
.x2{left:382.626667pt;}
}




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