
    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_7ac80f253c64864b196e2ebd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_61c3794e8445bde4e96b1999.woff')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_69d57f8e269b883cd7b55882.woff')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_bf9d2b54360d11e551a560fd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_262b1da905369cc6506b3ae3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_96202b34adf679dcf7f78453.woff')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_6e3c4371570cd4e8ef7c9112.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_ddecc28d2857298f02c3f7bc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_69d57f8e269b883cd7b55882.woff')format("woff");}.ff9{font-family:ff9;line-height:0.942000;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_6e3c4371570cd4e8ef7c9112.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942000;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);}
.v1{vertical-align:-64.008000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-15.960000px;}
.ls1{letter-spacing:-7.980000px;}
.lsa{letter-spacing:-6.168960px;}
.ls8{letter-spacing:-4.224000px;}
.ls4{letter-spacing:-3.360000px;}
.lsb{letter-spacing:-3.231360px;}
.ls7{letter-spacing:-2.820000px;}
.ls9{letter-spacing:-2.448000px;}
.lsd{letter-spacing:-2.280000px;}
.ls5{letter-spacing:-1.920000px;}
.lsc{letter-spacing:-1.680000px;}
.ls2{letter-spacing:-1.440000px;}
.ls0{letter-spacing:-0.720000px;}
.ls6{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-66.192000px;}
.ws1{word-spacing:-29.484000px;}
.ws4{word-spacing:-26.082000px;}
.ws6{word-spacing:-17.821440px;}
.ws7{word-spacing:-14.100480px;}
.wsc{word-spacing:-0.192000px;}
.ws3{word-spacing:-0.137587px;}
.ws2{word-spacing:-0.083531px;}
.wsa{word-spacing:0.000000px;}
.ws9{word-spacing:0.720000px;}
.wsb{word-spacing:1.440000px;}
.wsd{word-spacing:1.920000px;}
.wse{word-spacing:2.304000px;}
.wsf{word-spacing:2.448000px;}
.ws10{word-spacing:3.231360px;}
.ws8{word-spacing:1169.272512px;}
.ws5{word-spacing:1221.318000px;}
._15{margin-left:-1324.925952px;}
._11{margin-left:-25.872000px;}
._14{margin-left:-20.664000px;}
._8{margin-left:-15.162000px;}
._f{margin-left:-13.512000px;}
._a{margin-left:-12.048000px;}
._13{margin-left:-10.732800px;}
._6{margin-left:-8.857800px;}
._e{margin-left:-7.579200px;}
._2{margin-left:-6.384000px;}
._9{margin-left:-4.788000px;}
._5{margin-left:-3.192000px;}
._c{margin-left:-1.272000px;}
._b{width:1.008000px;}
._d{width:2.169600px;}
._1{width:3.192000px;}
._10{width:4.459200px;}
._0{width:5.520000px;}
._4{width:7.980000px;}
._7{width:12.768000px;}
._3{width:23.940000px;}
._12{width:44.160000px;}
._16{width:82.944000px;}
.fc7{color:transparent;}
.fc6{color:rgb(7,32,67);}
.fc5{color:rgb(0,174,239);}
.fc4{color:rgb(224,89,42);}
.fc3{color:rgb(4,209,8);}
.fc2{color:rgb(241,93,42);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.530800px;}
.fs9{font-size:97.452000px;}
.fse{font-size:97.920000px;}
.fs8{font-size:111.373800px;}
.fsd{font-size:126.000000px;}
.fsa{font-size:137.586600px;}
.fsc{font-size:160.517400px;}
.fs6{font-size:162.000000px;}
.fsf{font-size:168.000000px;}
.fsb{font-size:183.448800px;}
.fs3{font-size:192.000000px;}
.fs10{font-size:228.000000px;}
.fs5{font-size:282.000000px;}
.fs4{font-size:300.000000px;}
.fs2{font-size:336.000000px;}
.fs1{font-size:798.000000px;}
.y71{bottom:-84.753750px;}
.y0{bottom:0.000000px;}
.y9a{bottom:10.533480px;}
.y70{bottom:18.436200px;}
.y82{bottom:51.636300px;}
.y84{bottom:52.581300px;}
.y81{bottom:81.624300px;}
.y83{bottom:82.569300px;}
.y64{bottom:83.612022px;}
.y63{bottom:87.047205px;}
.y80{bottom:111.612300px;}
.y6f{bottom:121.626150px;}
.y62{bottom:131.266050px;}
.y40{bottom:137.871900px;}
.y99{bottom:145.491720px;}
.y91{bottom:183.533640px;}
.y3f{bottom:193.359900px;}
.y90{bottom:206.569320px;}
.y9c{bottom:223.925640px;}
.y6e{bottom:224.816100px;}
.y3a{bottom:237.791850px;}
.y50{bottom:240.719850px;}
.y9b{bottom:246.961320px;}
.y94{bottom:254.354280px;}
.y98{bottom:256.949160px;}
.y88{bottom:266.443950px;}
.y3e{bottom:275.859900px;}
.y93{bottom:277.389960px;}
.y97{bottom:279.984840px;}
.y96{bottom:286.178280px;}
.y39{bottom:293.279850px;}
.y4f{bottom:296.207850px;}
.y87{bottom:296.431950px;}
.y8d{bottom:297.042750px;}
.y92{bottom:300.425640px;}
.y95{bottom:309.213960px;}
.y9d{bottom:316.117320px;}
.y6d{bottom:328.006050px;}
.y38{bottom:348.767850px;}
.y7f{bottom:349.185300px;}
.y4e{bottom:351.695850px;}
.y8f{bottom:367.427400px;}
.y7e{bottom:395.175300px;}
.y37{bottom:404.255850px;}
.y3d{bottom:420.314250px;}
.y7d{bottom:425.163300px;}
.y6c{bottom:431.196000px;}
.y4d{bottom:434.207850px;}
.y36{bottom:459.743850px;}
.y7a{bottom:483.060300px;}
.y4c{bottom:489.695850px;}
.y3c{bottom:505.830750px;}
.y79{bottom:513.048300px;}
.y35{bottom:515.231850px;}
.y6b{bottom:534.385950px;}
.y4b{bottom:545.183850px;}
.y3b{bottom:591.347250px;}
.y34{bottom:611.231850px;}
.y8a{bottom:626.571300px;}
.y4a{bottom:627.695850px;}
.y6a{bottom:637.575900px;}
.y86{bottom:640.658700px;}
.y89{bottom:656.559300px;}
.y33{bottom:666.719850px;}
.y85{bottom:670.646700px;}
.y49{bottom:683.183850px;}
.y32{bottom:722.207850px;}
.y48{bottom:738.671850px;}
.y69{bottom:740.765850px;}
.ya6{bottom:774.660000px;}
.y31{bottom:777.695850px;}
.y47{bottom:821.171850px;}
.y30{bottom:833.183850px;}
.ya5{bottom:842.910000px;}
.y68{bottom:843.955800px;}
.y2f{bottom:888.671850px;}
.ya4{bottom:890.916000px;}
.y61{bottom:901.614000px;}
.y7c{bottom:909.601800px;}
.y5f{bottom:910.600350px;}
.y7b{bottom:939.589800px;}
.y8c{bottom:941.728800px;}
.y67{bottom:947.145750px;}
.ya3{bottom:959.166000px;}
.y2e{bottom:971.171850px;}
.y8b{bottom:971.716800px;}
.y5e{bottom:973.248450px;}
.y66{bottom:981.542400px;}
.y53{bottom:1003.507650px;}
.ya2{bottom:1007.172000px;}
.y5d{bottom:1035.896550px;}
.y52{bottom:1050.001650px;}
.y72{bottom:1055.699850px;}
.y65{bottom:1087.477500px;}
.y51{bottom:1096.495650px;}
.y5c{bottom:1098.544650px;}
.y75{bottom:1125.639941px;}
.y74{bottom:1131.298180px;}
.y2d{bottom:1147.441650px;}
.y5b{bottom:1161.192750px;}
.yba{bottom:1173.680250px;}
.y46{bottom:1173.687000px;}
.y78{bottom:1196.346300px;}
.y2c{bottom:1202.929650px;}
.y73{bottom:1204.132950px;}
.yb9{bottom:1220.174250px;}
.y45{bottom:1220.181000px;}
.y5a{bottom:1223.840850px;}
.y77{bottom:1226.334300px;}
.y2b{bottom:1258.417650px;}
.y59{bottom:1286.488950px;}
.y2a{bottom:1313.905650px;}
.y58{bottom:1349.137050px;}
.y29{bottom:1369.393650px;}
.y57{bottom:1411.785150px;}
.y28{bottom:1424.881650px;}
.y56{bottom:1474.433250px;}
.y27{bottom:1480.369650px;}
.y55{bottom:1537.081350px;}
.y54{bottom:1557.964050px;}
.y26{bottom:1562.869650px;}
.y60{bottom:1602.986250px;}
.y9f{bottom:1717.445550px;}
.y9e{bottom:1763.939550px;}
.y76{bottom:1845.433500px;}
.y8e{bottom:1972.285500px;}
.y44{bottom:2013.771750px;}
.y43{bottom:2060.265750px;}
.ya1{bottom:2212.720050px;}
.ya0{bottom:2259.214050px;}
.y25{bottom:2495.886000px;}
.y24{bottom:2551.374000px;}
.y23{bottom:2606.862000px;}
.y22{bottom:2662.350000px;}
.y21{bottom:2717.838000px;}
.y20{bottom:2773.326000px;}
.y42{bottom:2806.847100px;}
.y1f{bottom:2828.814000px;}
.y1e{bottom:2924.814000px;}
.y1d{bottom:2980.302000px;}
.y1c{bottom:3035.790000px;}
.y1b{bottom:3091.278000px;}
.y1a{bottom:3146.766000px;}
.y19{bottom:3242.766000px;}
.yb8{bottom:3266.546850px;}
.y18{bottom:3298.254000px;}
.yb7{bottom:3322.034850px;}
.y17{bottom:3353.742000px;}
.yb6{bottom:3377.522850px;}
.y16{bottom:3409.230000px;}
.yb5{bottom:3433.010850px;}
.y15{bottom:3464.718000px;}
.yb4{bottom:3488.498850px;}
.y14{bottom:3520.206000px;}
.yb3{bottom:3571.010850px;}
.y13{bottom:3616.206000px;}
.yb2{bottom:3626.498850px;}
.y12{bottom:3671.694000px;}
.yb1{bottom:3681.986850px;}
.y41{bottom:3690.375000px;}
.y11{bottom:3727.182000px;}
.yb0{bottom:3737.474850px;}
.y10{bottom:3782.670000px;}
.yaf{bottom:3819.974850px;}
.yf{bottom:3838.158000px;}
.ye{bottom:3893.646000px;}
.yae{bottom:3916.046850px;}
.yad{bottom:3971.534850px;}
.yd{bottom:3989.646000px;}
.yac{bottom:4027.022850px;}
.yc{bottom:4045.134000px;}
.yab{bottom:4082.510850px;}
.yb{bottom:4100.622000px;}
.yaa{bottom:4137.998850px;}
.ya{bottom:4156.110000px;}
.ya9{bottom:4193.486850px;}
.y9{bottom:4211.598000px;}
.ya8{bottom:4248.974850px;}
.y8{bottom:4267.086000px;}
.y7{bottom:4322.574000px;}
.ya7{bottom:4331.474850px;}
.y6{bottom:4378.062000px;}
.y3{bottom:4431.974850px;}
.y5{bottom:4433.550000px;}
.y4{bottom:4516.050000px;}
.y2{bottom:4692.946350px;}
.y1{bottom:4920.974850px;}
.h6{height:60.225707px;}
.h9{height:70.262892px;}
.h11{height:70.600320px;}
.h7{height:80.300510px;}
.hf{height:90.846000px;}
.hb{height:99.199939px;}
.hd{height:115.733045px;}
.h5{height:116.802000px;}
.h12{height:121.128000px;}
.hc{height:132.266585px;}
.h3{height:138.432000px;}
.ha{height:157.981500px;}
.h13{height:164.388000px;}
.h4{height:203.322000px;}
.h2{height:242.256000px;}
.h10{height:426.136500px;}
.h1{height:575.358000px;}
.h8{height:732.900000px;}
.he{height:1314.316500px;}
.h0{height:5184.000000px;}
.w1{width:163.273500px;}
.w2{width:211.147500px;}
.w4{width:627.684000px;}
.w3{width:1512.300000px;}
.w0{width:5184.000000px;}
.x1e{left:-113.393646px;}
.x1c{left:-109.934100px;}
.x1d{left:-65.715255px;}
.x0{left:0.000000px;}
.x46{left:8.931510px;}
.x47{left:17.254710px;}
.x3e{left:65.529270px;}
.x3f{left:67.340790px;}
.x31{left:71.331150px;}
.x30{left:88.939650px;}
.x45{left:90.082710px;}
.x32{left:100.122150px;}
.x35{left:108.035850px;}
.x13{left:131.625000px;}
.x4{left:135.750150px;}
.x12{left:138.375000px;}
.x36{left:159.506850px;}
.x14{left:178.089000px;}
.x2b{left:216.672150px;}
.x3c{left:217.824450px;}
.x4a{left:255.347190px;}
.x28{left:271.954650px;}
.x27{left:276.805650px;}
.x2c{left:281.467650px;}
.x22{left:303.178200px;}
.x20{left:305.068650px;}
.x15{left:335.023800px;}
.x21{left:365.262787px;}
.x16{left:372.324300px;}
.x2d{left:401.986650px;}
.x2e{left:408.444150px;}
.x43{left:417.674070px;}
.x44{left:419.118390px;}
.x41{left:478.800630px;}
.x42{left:481.787190px;}
.x40{left:494.712630px;}
.x17{left:525.130800px;}
.x49{left:540.783990px;}
.x48{left:549.033750px;}
.x34{left:583.521150px;}
.x37{left:602.575950px;}
.x33{left:632.062650px;}
.x38{left:633.067950px;}
.x1f{left:730.375500px;}
.x25{left:751.636632px;}
.x23{left:757.335000px;}
.x29{left:769.591650px;}
.x3a{left:771.860700px;}
.x2a{left:787.452150px;}
.x3b{left:789.815700px;}
.x39{left:800.431200px;}
.x2f{left:804.273150px;}
.x24{left:830.169770px;}
.x1{left:857.090100px;}
.x4d{left:943.072500px;}
.x2{left:1173.527100px;}
.x1b{left:1352.113500px;}
.x1a{left:1409.875350px;}
.x18{left:1411.023150px;}
.x19{left:1447.567875px;}
.x26{left:1772.250000px;}
.x54{left:1788.750000px;}
.x53{left:1795.500000px;}
.xb{left:1798.875000px;}
.x5{left:1801.349850px;}
.x55{left:1835.214000px;}
.x50{left:1844.282250px;}
.x4e{left:1866.290250px;}
.x3{left:1886.289900px;}
.x51{left:1927.652250px;}
.x4f{left:1959.362250px;}
.x8{left:2023.837350px;}
.x4c{left:2048.236500px;}
.x52{left:2061.086250px;}
.xa{left:2141.783850px;}
.x4b{left:2172.166500px;}
.x9{left:2232.658350px;}
.x3d{left:2853.858000px;}
.x7{left:3596.618700px;}
.x6{left:3631.269600px;}
.xc{left:3643.429350px;}
.xf{left:3662.754750px;}
.xe{left:3682.640250px;}
.xd{left:3749.312550px;}
.x10{left:3841.899600px;}
.x11{left:3844.127100px;}
.x56{left:4387.491600px;}
.x57{left:4447.188600px;}
.x58{left:4461.161100px;}
.x59{left:4559.616600px;}
@media print{
.v1{vertical-align:-56.896000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-14.186667pt;}
.ls1{letter-spacing:-7.093333pt;}
.lsa{letter-spacing:-5.483520pt;}
.ls8{letter-spacing:-3.754667pt;}
.ls4{letter-spacing:-2.986667pt;}
.lsb{letter-spacing:-2.872320pt;}
.ls7{letter-spacing:-2.506667pt;}
.ls9{letter-spacing:-2.176000pt;}
.lsd{letter-spacing:-2.026667pt;}
.ls5{letter-spacing:-1.706667pt;}
.lsc{letter-spacing:-1.493333pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls0{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:0.000000pt;}
.ws0{word-spacing:-58.837333pt;}
.ws1{word-spacing:-26.208000pt;}
.ws4{word-spacing:-23.184000pt;}
.ws6{word-spacing:-15.841280pt;}
.ws7{word-spacing:-12.533760pt;}
.wsc{word-spacing:-0.170667pt;}
.ws3{word-spacing:-0.122299pt;}
.ws2{word-spacing:-0.074250pt;}
.wsa{word-spacing:0.000000pt;}
.ws9{word-spacing:0.640000pt;}
.wsb{word-spacing:1.280000pt;}
.wsd{word-spacing:1.706667pt;}
.wse{word-spacing:2.048000pt;}
.wsf{word-spacing:2.176000pt;}
.ws10{word-spacing:2.872320pt;}
.ws8{word-spacing:1039.353344pt;}
.ws5{word-spacing:1085.616000pt;}
._15{margin-left:-1177.711957pt;}
._11{margin-left:-22.997333pt;}
._14{margin-left:-18.368000pt;}
._8{margin-left:-13.477333pt;}
._f{margin-left:-12.010667pt;}
._a{margin-left:-10.709333pt;}
._13{margin-left:-9.540267pt;}
._6{margin-left:-7.873600pt;}
._e{margin-left:-6.737067pt;}
._2{margin-left:-5.674667pt;}
._9{margin-left:-4.256000pt;}
._5{margin-left:-2.837333pt;}
._c{margin-left:-1.130667pt;}
._b{width:0.896000pt;}
._d{width:1.928533pt;}
._1{width:2.837333pt;}
._10{width:3.963733pt;}
._0{width:4.906667pt;}
._4{width:7.093333pt;}
._7{width:11.349333pt;}
._3{width:21.280000pt;}
._12{width:39.253333pt;}
._16{width:73.728000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.249600pt;}
.fs9{font-size:86.624000pt;}
.fse{font-size:87.040000pt;}
.fs8{font-size:98.998933pt;}
.fsd{font-size:112.000000pt;}
.fsa{font-size:122.299200pt;}
.fsc{font-size:142.682133pt;}
.fs6{font-size:144.000000pt;}
.fsf{font-size:149.333333pt;}
.fsb{font-size:163.065600pt;}
.fs3{font-size:170.666667pt;}
.fs10{font-size:202.666667pt;}
.fs5{font-size:250.666667pt;}
.fs4{font-size:266.666667pt;}
.fs2{font-size:298.666667pt;}
.fs1{font-size:709.333333pt;}
.y71{bottom:-75.336667pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:9.363093pt;}
.y70{bottom:16.387733pt;}
.y82{bottom:45.898933pt;}
.y84{bottom:46.738933pt;}
.y81{bottom:72.554933pt;}
.y83{bottom:73.394933pt;}
.y64{bottom:74.321797pt;}
.y63{bottom:77.375293pt;}
.y80{bottom:99.210933pt;}
.y6f{bottom:108.112133pt;}
.y62{bottom:116.680933pt;}
.y40{bottom:122.552800pt;}
.y99{bottom:129.325973pt;}
.y91{bottom:163.141013pt;}
.y3f{bottom:171.875467pt;}
.y90{bottom:183.617173pt;}
.y9c{bottom:199.045013pt;}
.y6e{bottom:199.836533pt;}
.y3a{bottom:211.370533pt;}
.y50{bottom:213.973200pt;}
.y9b{bottom:219.521173pt;}
.y94{bottom:226.092693pt;}
.y98{bottom:228.399253pt;}
.y88{bottom:236.839067pt;}
.y3e{bottom:245.208800pt;}
.y93{bottom:246.568853pt;}
.y97{bottom:248.875413pt;}
.y96{bottom:254.380693pt;}
.y39{bottom:260.693200pt;}
.y4f{bottom:263.295867pt;}
.y87{bottom:263.495067pt;}
.y8d{bottom:264.038000pt;}
.y92{bottom:267.045013pt;}
.y95{bottom:274.856853pt;}
.y9d{bottom:280.993173pt;}
.y6d{bottom:291.560933pt;}
.y38{bottom:310.015867pt;}
.y7f{bottom:310.386933pt;}
.y4e{bottom:312.618533pt;}
.y8f{bottom:326.602133pt;}
.y7e{bottom:351.266933pt;}
.y37{bottom:359.338533pt;}
.y3d{bottom:373.612667pt;}
.y7d{bottom:377.922933pt;}
.y6c{bottom:383.285333pt;}
.y4d{bottom:385.962533pt;}
.y36{bottom:408.661200pt;}
.y7a{bottom:429.386933pt;}
.y4c{bottom:435.285200pt;}
.y3c{bottom:449.627333pt;}
.y79{bottom:456.042933pt;}
.y35{bottom:457.983867pt;}
.y6b{bottom:475.009733pt;}
.y4b{bottom:484.607867pt;}
.y3b{bottom:525.642000pt;}
.y34{bottom:543.317200pt;}
.y8a{bottom:556.952267pt;}
.y4a{bottom:557.951867pt;}
.y6a{bottom:566.734133pt;}
.y86{bottom:569.474400pt;}
.y89{bottom:583.608267pt;}
.y33{bottom:592.639867pt;}
.y85{bottom:596.130400pt;}
.y49{bottom:607.274533pt;}
.y32{bottom:641.962533pt;}
.y48{bottom:656.597200pt;}
.y69{bottom:658.458533pt;}
.ya6{bottom:688.586667pt;}
.y31{bottom:691.285200pt;}
.y47{bottom:729.930533pt;}
.y30{bottom:740.607867pt;}
.ya5{bottom:749.253333pt;}
.y68{bottom:750.182933pt;}
.y2f{bottom:789.930533pt;}
.ya4{bottom:791.925333pt;}
.y61{bottom:801.434667pt;}
.y7c{bottom:808.534933pt;}
.y5f{bottom:809.422533pt;}
.y7b{bottom:835.190933pt;}
.y8c{bottom:837.092267pt;}
.y67{bottom:841.907333pt;}
.ya3{bottom:852.592000pt;}
.y2e{bottom:863.263867pt;}
.y8b{bottom:863.748267pt;}
.y5e{bottom:865.109733pt;}
.y66{bottom:872.482133pt;}
.y53{bottom:892.006800pt;}
.ya2{bottom:895.264000pt;}
.y5d{bottom:920.796933pt;}
.y52{bottom:933.334800pt;}
.y72{bottom:938.399867pt;}
.y65{bottom:966.646667pt;}
.y51{bottom:974.662800pt;}
.y5c{bottom:976.484133pt;}
.y75{bottom:1000.568837pt;}
.y74{bottom:1005.598382pt;}
.y2d{bottom:1019.948133pt;}
.y5b{bottom:1032.171333pt;}
.yba{bottom:1043.271333pt;}
.y46{bottom:1043.277333pt;}
.y78{bottom:1063.418933pt;}
.y2c{bottom:1069.270800pt;}
.y73{bottom:1070.340400pt;}
.yb9{bottom:1084.599333pt;}
.y45{bottom:1084.605333pt;}
.y5a{bottom:1087.858533pt;}
.y77{bottom:1090.074933pt;}
.y2b{bottom:1118.593467pt;}
.y59{bottom:1143.545733pt;}
.y2a{bottom:1167.916133pt;}
.y58{bottom:1199.232933pt;}
.y29{bottom:1217.238800pt;}
.y57{bottom:1254.920133pt;}
.y28{bottom:1266.561467pt;}
.y56{bottom:1310.607333pt;}
.y27{bottom:1315.884133pt;}
.y55{bottom:1366.294533pt;}
.y54{bottom:1384.856933pt;}
.y26{bottom:1389.217467pt;}
.y60{bottom:1424.876667pt;}
.y9f{bottom:1526.618267pt;}
.y9e{bottom:1567.946267pt;}
.y76{bottom:1640.385333pt;}
.y8e{bottom:1753.142667pt;}
.y44{bottom:1790.019333pt;}
.y43{bottom:1831.347333pt;}
.ya1{bottom:1966.862267pt;}
.ya0{bottom:2008.190267pt;}
.y25{bottom:2218.565333pt;}
.y24{bottom:2267.888000pt;}
.y23{bottom:2317.210667pt;}
.y22{bottom:2366.533333pt;}
.y21{bottom:2415.856000pt;}
.y20{bottom:2465.178667pt;}
.y42{bottom:2494.975200pt;}
.y1f{bottom:2514.501333pt;}
.y1e{bottom:2599.834667pt;}
.y1d{bottom:2649.157333pt;}
.y1c{bottom:2698.480000pt;}
.y1b{bottom:2747.802667pt;}
.y1a{bottom:2797.125333pt;}
.y19{bottom:2882.458667pt;}
.yb8{bottom:2903.597200pt;}
.y18{bottom:2931.781333pt;}
.yb7{bottom:2952.919867pt;}
.y17{bottom:2981.104000pt;}
.yb6{bottom:3002.242533pt;}
.y16{bottom:3030.426667pt;}
.yb5{bottom:3051.565200pt;}
.y15{bottom:3079.749333pt;}
.yb4{bottom:3100.887867pt;}
.y14{bottom:3129.072000pt;}
.yb3{bottom:3174.231867pt;}
.y13{bottom:3214.405333pt;}
.yb2{bottom:3223.554533pt;}
.y12{bottom:3263.728000pt;}
.yb1{bottom:3272.877200pt;}
.y41{bottom:3280.333333pt;}
.y11{bottom:3313.050667pt;}
.yb0{bottom:3322.199867pt;}
.y10{bottom:3362.373333pt;}
.yaf{bottom:3395.533200pt;}
.yf{bottom:3411.696000pt;}
.ye{bottom:3461.018667pt;}
.yae{bottom:3480.930533pt;}
.yad{bottom:3530.253200pt;}
.yd{bottom:3546.352000pt;}
.yac{bottom:3579.575867pt;}
.yc{bottom:3595.674667pt;}
.yab{bottom:3628.898533pt;}
.yb{bottom:3644.997333pt;}
.yaa{bottom:3678.221200pt;}
.ya{bottom:3694.320000pt;}
.ya9{bottom:3727.543867pt;}
.y9{bottom:3743.642667pt;}
.ya8{bottom:3776.866533pt;}
.y8{bottom:3792.965333pt;}
.y7{bottom:3842.288000pt;}
.ya7{bottom:3850.199867pt;}
.y6{bottom:3891.610667pt;}
.y3{bottom:3939.533200pt;}
.y5{bottom:3940.933333pt;}
.y4{bottom:4014.266667pt;}
.y2{bottom:4171.507867pt;}
.y1{bottom:4374.199867pt;}
.h6{height:53.533962pt;}
.h9{height:62.455904pt;}
.h11{height:62.755840pt;}
.h7{height:71.378231pt;}
.hf{height:80.752000pt;}
.hb{height:88.177723pt;}
.hd{height:102.873818pt;}
.h5{height:103.824000pt;}
.h12{height:107.669333pt;}
.hc{height:117.570298pt;}
.h3{height:123.050667pt;}
.ha{height:140.428000pt;}
.h13{height:146.122667pt;}
.h4{height:180.730667pt;}
.h2{height:215.338667pt;}
.h10{height:378.788000pt;}
.h1{height:511.429333pt;}
.h8{height:651.466667pt;}
.he{height:1168.281333pt;}
.h0{height:4608.000000pt;}
.w1{width:145.132000pt;}
.w2{width:187.686667pt;}
.w4{width:557.941333pt;}
.w3{width:1344.266667pt;}
.w0{width:4608.000000pt;}
.x1e{left:-100.794352pt;}
.x1c{left:-97.719200pt;}
.x1d{left:-58.413560pt;}
.x0{left:0.000000pt;}
.x46{left:7.939120pt;}
.x47{left:15.337520pt;}
.x3e{left:58.248240pt;}
.x3f{left:59.858480pt;}
.x31{left:63.405467pt;}
.x30{left:79.057467pt;}
.x45{left:80.073520pt;}
.x32{left:88.997467pt;}
.x35{left:96.031867pt;}
.x13{left:117.000000pt;}
.x4{left:120.666800pt;}
.x12{left:123.000000pt;}
.x36{left:141.783867pt;}
.x14{left:158.301333pt;}
.x2b{left:192.597467pt;}
.x3c{left:193.621733pt;}
.x4a{left:226.975280pt;}
.x28{left:241.737467pt;}
.x27{left:246.049467pt;}
.x2c{left:250.193467pt;}
.x22{left:269.491733pt;}
.x20{left:271.172133pt;}
.x15{left:297.798933pt;}
.x21{left:324.678033pt;}
.x16{left:330.954933pt;}
.x2d{left:357.321467pt;}
.x2e{left:363.061467pt;}
.x43{left:371.265840pt;}
.x44{left:372.549680pt;}
.x41{left:425.600560pt;}
.x42{left:428.255280pt;}
.x40{left:439.744560pt;}
.x17{left:466.782933pt;}
.x49{left:480.696880pt;}
.x48{left:488.030000pt;}
.x34{left:518.685467pt;}
.x37{left:535.623067pt;}
.x33{left:561.833467pt;}
.x38{left:562.727067pt;}
.x1f{left:649.222667pt;}
.x25{left:668.121451pt;}
.x23{left:673.186667pt;}
.x29{left:684.081467pt;}
.x3a{left:686.098400pt;}
.x2a{left:699.957467pt;}
.x3b{left:702.058400pt;}
.x39{left:711.494400pt;}
.x2f{left:714.909467pt;}
.x24{left:737.928685pt;}
.x1{left:761.857867pt;}
.x4d{left:838.286667pt;}
.x2{left:1043.135200pt;}
.x1b{left:1201.878667pt;}
.x1a{left:1253.222533pt;}
.x18{left:1254.242800pt;}
.x19{left:1286.727000pt;}
.x26{left:1575.333333pt;}
.x54{left:1590.000000pt;}
.x53{left:1596.000000pt;}
.xb{left:1599.000000pt;}
.x5{left:1601.199867pt;}
.x55{left:1631.301333pt;}
.x50{left:1639.362000pt;}
.x4e{left:1658.924667pt;}
.x3{left:1676.702133pt;}
.x51{left:1713.468667pt;}
.x4f{left:1741.655333pt;}
.x8{left:1798.966533pt;}
.x4c{left:1820.654667pt;}
.x52{left:1832.076667pt;}
.xa{left:1903.807867pt;}
.x4b{left:1930.814667pt;}
.x9{left:1984.585200pt;}
.x3d{left:2536.762667pt;}
.x7{left:3196.994400pt;}
.x6{left:3227.795200pt;}
.xc{left:3238.603867pt;}
.xf{left:3255.782000pt;}
.xe{left:3273.458000pt;}
.xd{left:3332.722267pt;}
.x10{left:3415.021867pt;}
.x11{left:3417.001867pt;}
.x56{left:3899.992533pt;}
.x57{left:3953.056533pt;}
.x58{left:3965.476533pt;}
.x59{left:4052.992533pt;}
}




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