
    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_56df313add907f82a7ab5b89.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_3619951bdcd825cc0ae33d69.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.704000;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_6cf55d3d5764c89ca8b90bbd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_c38101a628c05af8a7f51ecf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_689acb43e7f1149fd991cfa1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.389000;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_421498ecd17e519031bbdeb0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ef4003f053f99f6d29955952.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e3ad82447a9835fcd94264ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_46387824a3767698f3c4b9a4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bf17548552700713ef479345.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.414000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-10.134000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.754000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.002712px;}
.ls3{letter-spacing:0.006493px;}
.ls7{letter-spacing:14.602472px;}
.ls5{letter-spacing:18.179412px;}
.ls4{letter-spacing:21.168250px;}
.ls8{letter-spacing:21.338915px;}
.ls2{letter-spacing:21.818712px;}
.ls0{letter-spacing:32.723973px;}
.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;}
}
.ws5{word-spacing:-22.416000px;}
.ws37{word-spacing:-18.183288px;}
.ws1d{word-spacing:-3.456003px;}
.ws1c{word-spacing:-2.866911px;}
.ws3c{word-spacing:-1.557819px;}
.wsf{word-spacing:-1.165092px;}
.ws19{word-spacing:-1.099637px;}
.ws42{word-spacing:-1.034183px;}
.ws41{word-spacing:-0.379637px;}
.ws30{word-spacing:-0.314182px;}
.ws18{word-spacing:-0.065455px;}
.ws14{word-spacing:0.000000px;}
.ws36{word-spacing:0.078546px;}
.ws40{word-spacing:0.144000px;}
.ws9{word-spacing:0.340364px;}
.ws29{word-spacing:0.602182px;}
.ws3b{word-spacing:1.060365px;}
.ws2f{word-spacing:1.453092px;}
.ws1a{word-spacing:1.976729px;}
.ws11{word-spacing:2.631275px;}
.ws6{word-spacing:3.547639px;}
.ws25{word-spacing:3.606005px;}
.ws0{word-spacing:3.613094px;}
.ws39{word-spacing:3.636276px;}
.ws3{word-spacing:3.678549px;}
.wsc{word-spacing:4.483200px;}
.ws26{word-spacing:4.594913px;}
.ws16{word-spacing:4.791277px;}
.ws3d{word-spacing:4.856731px;}
.ws2d{word-spacing:5.249459px;}
.ws32{word-spacing:5.642187px;}
.ws15{word-spacing:5.838550px;}
.ws1{word-spacing:5.969460px;}
.ws3a{word-spacing:6.034914px;}
.wsa{word-spacing:6.624006px;}
.ws27{word-spacing:7.147642px;}
.ws13{word-spacing:7.736734px;}
.ws38{word-spacing:8.194916px;}
.ws1f{word-spacing:9.176735px;}
.ws2c{word-spacing:9.307644px;}
.ws2a{word-spacing:9.569463px;}
.ws34{word-spacing:10.289463px;}
.ws2b{word-spacing:10.747645px;}
.ws3e{word-spacing:11.074918px;}
.ws24{word-spacing:11.140373px;}
.ws31{word-spacing:11.271282px;}
.ws35{word-spacing:11.664010px;}
.ws20{word-spacing:11.794919px;}
.ws23{word-spacing:11.991283px;}
.ws1b{word-spacing:13.104011px;}
.ws17{word-spacing:13.954921px;}
.ws1e{word-spacing:16.821832px;}
.ws8{word-spacing:18.434063px;}
.ws10{word-spacing:18.916379px;}
.ws43{word-spacing:19.047289px;}
.wsd{word-spacing:21.738260px;}
.ws12{word-spacing:22.450928px;}
.ws7{word-spacing:23.236383px;}
.ws22{word-spacing:23.301838px;}
.ws4{word-spacing:23.367292px;}
.wsb{word-spacing:26.050931px;}
.ws2{word-spacing:29.041849px;}
.ws3f{word-spacing:29.244279px;}
.ws21{word-spacing:30.829117px;}
.wse{word-spacing:34.298210px;}
.ws28{word-spacing:220.447771px;}
.ws2e{word-spacing:271.519409px;}
.ws33{word-spacing:354.648345px;}
._1{margin-left:-5.432732px;}
._2{margin-left:-3.600003px;}
._0{margin-left:-1.832729px;}
._4{width:1.898183px;}
._e{width:3.382021px;}
._22{width:6.476913px;}
._c{width:16.625468px;}
._20{width:17.738197px;}
._a{width:18.916379px;}
._17{width:20.094562px;}
._5{width:21.187522px;}
._3{width:25.396385px;}
._6{width:27.183427px;}
._8{width:29.192752px;}
._10{width:30.632753px;}
._d{width:31.941845px;}
._b{width:33.643664px;}
._9{width:34.821847px;}
._7{width:38.029123px;}
._12{width:39.272760px;}
._1d{width:42.480035px;}
._1e{width:45.163674px;}
._f{width:46.603675px;}
._18{width:50.203678px;}
._21{width:52.211274px;}
._16{width:55.178228px;}
._11{width:62.116415px;}
._1f{width:67.876420px;}
._15{width:187.896680px;}
._14{width:204.153832px;}
._13{width:236.704923px;}
._1b{width:238.968318px;}
._1a{width:255.225470px;}
._19{width:287.776561px;}
._1c{width:355.954537px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.988100px;}
.fs4{font-size:44.783340px;}
.fs7{font-size:47.820600px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:51.180960px;}
.fs0{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y58{bottom:2.493750px;}
.y3a{bottom:2.674005px;}
.y57{bottom:18.900000px;}
.y39{bottom:21.467014px;}
.y59{bottom:31.856250px;}
.y23{bottom:48.867000px;}
.y3b{bottom:49.772495px;}
.y49{bottom:52.964473px;}
.y3f{bottom:62.776436px;}
.y5a{bottom:66.548250px;}
.y4d{bottom:73.948357px;}
.y63{bottom:78.112250px;}
.y3c{bottom:85.466239px;}
.y62{bottom:91.658625px;}
.y4a{bottom:95.042171px;}
.y5b{bottom:101.240250px;}
.y77{bottom:118.075500px;}
.y3d{bottom:121.159983px;}
.y64{bottom:124.368250px;}
.y5c{bottom:135.932250px;}
.y4b{bottom:137.119870px;}
.y76{bottom:138.399000px;}
.y67{bottom:143.389875px;}
.y41{bottom:146.584293px;}
.y3e{bottom:156.853727px;}
.y75{bottom:158.722500px;}
.y40{bottom:164.231331px;}
.y4f{bottom:168.738486px;}
.y5d{bottom:170.624250px;}
.y74{bottom:179.046000px;}
.y4c{bottom:179.197569px;}
.y22{bottom:185.826000px;}
.y4e{bottom:186.609652px;}
.y55{bottom:186.753000px;}
.y73{bottom:199.369500px;}
.y5e{bottom:205.316250px;}
.y54{bottom:207.076500px;}
.y21{bottom:208.182000px;}
.y65{bottom:216.880250px;}
.y72{bottom:219.694500px;}
.y53{bottom:227.400000px;}
.y20{bottom:230.539500px;}
.y5f{bottom:240.008250px;}
.y52{bottom:247.725000px;}
.y1f{bottom:252.895500px;}
.y37{bottom:257.080500px;}
.y66{bottom:263.136250px;}
.y51{bottom:268.048500px;}
.y60{bottom:274.700250px;}
.y36{bottom:277.404000px;}
.y50{bottom:288.372000px;}
.y1e{bottom:293.184000px;}
.y35{bottom:297.727500px;}
.y61{bottom:309.392250px;}
.y1d{bottom:315.540000px;}
.y48{bottom:323.640000px;}
.y1c{bottom:337.897500px;}
.y1b{bottom:373.702500px;}
.y6c{bottom:393.777000px;}
.y1a{bottom:396.058500px;}
.y6b{bottom:414.100500px;}
.y19{bottom:418.416000px;}
.y6a{bottom:434.424000px;}
.y18{bottom:454.221000px;}
.y69{bottom:454.747500px;}
.y68{bottom:475.072500px;}
.y17{bottom:476.577000px;}
.y16{bottom:498.933000px;}
.y56{bottom:510.339000px;}
.y15{bottom:534.739500px;}
.y14{bottom:557.095500px;}
.y13{bottom:579.451500px;}
.y12{bottom:615.258000px;}
.y11{bottom:637.614000px;}
.y10{bottom:666.696000px;}
.y71{bottom:671.634000px;}
.y70{bottom:691.957500px;}
.y34{bottom:692.886000px;}
.yf{bottom:702.501000px;}
.y6f{bottom:712.281000px;}
.y33{bottom:713.209500px;}
.y47{bottom:725.344500px;}
.ye{bottom:731.583000px;}
.y6e{bottom:732.604500px;}
.y32{bottom:733.534500px;}
.y46{bottom:745.669500px;}
.y6d{bottom:752.929500px;}
.yd{bottom:764.506500px;}
.y45{bottom:765.993000px;}
.y31{bottom:767.307000px;}
.y44{bottom:786.316500px;}
.y30{bottom:787.630500px;}
.y43{bottom:806.640000px;}
.y2f{bottom:807.955500px;}
.yc{bottom:810.418500px;}
.y42{bottom:826.963500px;}
.yb{bottom:832.774500px;}
.y2e{bottom:841.728000px;}
.ya{bottom:855.130500px;}
.y2d{bottom:862.051500px;}
.y38{bottom:862.231500px;}
.y9{bottom:877.486500px;}
.y2c{bottom:882.375000px;}
.y8{bottom:910.411500px;}
.y2b{bottom:916.149000px;}
.y2a{bottom:936.472500px;}
.y7{bottom:956.323500px;}
.y29{bottom:956.796000px;}
.y28{bottom:977.121000px;}
.y6{bottom:996.612000px;}
.y27{bottom:1010.893500px;}
.y5{bottom:1018.968000px;}
.y26{bottom:1031.217000px;}
.y4{bottom:1041.324000px;}
.y25{bottom:1051.542000px;}
.y3{bottom:1063.681500px;}
.y24{bottom:1071.865500px;}
.y2{bottom:1086.037500px;}
.y1{bottom:1108.393500px;}
.h8{height:29.716945px;}
.h7{height:41.603723px;}
.hb{height:44.592000px;}
.h3{height:45.425492px;}
.h6{height:47.547112px;}
.h1{height:49.090950px;}
.h2{height:50.211840px;}
.h4{height:60.254040px;}
.h5{height:172.728170px;}
.h9{height:206.823731px;}
.ha{height:318.504750px;}
.h0{height:1188.000000px;}
.w2{width:750.769500px;}
.w1{width:765.380268px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:9.721384px;}
.x15{left:16.406250px;}
.x14{left:24.037500px;}
.x8{left:29.514020px;}
.x13{left:31.668750px;}
.x9{left:37.660990px;}
.x6{left:47.857500px;}
.x11{left:62.920773px;}
.x10{left:69.117000px;}
.x1{left:108.000000px;}
.x5{left:124.363500px;}
.x2{left:132.592500px;}
.x3{left:148.909500px;}
.xd{left:228.787501px;}
.x7{left:244.833723px;}
.x12{left:370.341000px;}
.x4{left:447.621000px;}
.xf{left:570.649805px;}
.xc{left:599.012903px;}
.xe{left:637.903646px;}
.xb{left:653.225137px;}
.x16{left:726.732000px;}
.x17{left:748.275750px;}
@media print{
.v1{vertical-align:-9.008000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.114667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.002411pt;}
.ls3{letter-spacing:0.005771pt;}
.ls7{letter-spacing:12.979975pt;}
.ls5{letter-spacing:16.159477pt;}
.ls4{letter-spacing:18.816222pt;}
.ls8{letter-spacing:18.967925pt;}
.ls2{letter-spacing:19.394411pt;}
.ls0{letter-spacing:29.087976pt;}
.ws5{word-spacing:-19.925333pt;}
.ws37{word-spacing:-16.162923pt;}
.ws1d{word-spacing:-3.072003pt;}
.ws1c{word-spacing:-2.548366pt;}
.ws3c{word-spacing:-1.384728pt;}
.wsf{word-spacing:-1.035637pt;}
.ws19{word-spacing:-0.977455pt;}
.ws42{word-spacing:-0.919273pt;}
.ws41{word-spacing:-0.337455pt;}
.ws30{word-spacing:-0.279273pt;}
.ws18{word-spacing:-0.058182pt;}
.ws14{word-spacing:0.000000pt;}
.ws36{word-spacing:0.069818pt;}
.ws40{word-spacing:0.128000pt;}
.ws9{word-spacing:0.302546pt;}
.ws29{word-spacing:0.535273pt;}
.ws3b{word-spacing:0.942546pt;}
.ws2f{word-spacing:1.291637pt;}
.ws1a{word-spacing:1.757092pt;}
.ws11{word-spacing:2.338911pt;}
.ws6{word-spacing:3.153457pt;}
.ws25{word-spacing:3.205338pt;}
.ws0{word-spacing:3.211639pt;}
.ws39{word-spacing:3.232245pt;}
.ws3{word-spacing:3.269821pt;}
.wsc{word-spacing:3.985067pt;}
.ws26{word-spacing:4.084367pt;}
.ws16{word-spacing:4.258913pt;}
.ws3d{word-spacing:4.317095pt;}
.ws2d{word-spacing:4.666186pt;}
.ws32{word-spacing:5.015277pt;}
.ws15{word-spacing:5.189823pt;}
.ws1{word-spacing:5.306186pt;}
.ws3a{word-spacing:5.364368pt;}
.wsa{word-spacing:5.888005pt;}
.ws27{word-spacing:6.353460pt;}
.ws13{word-spacing:6.877097pt;}
.ws38{word-spacing:7.284370pt;}
.ws1f{word-spacing:8.157098pt;}
.ws2c{word-spacing:8.273461pt;}
.ws2a{word-spacing:8.506189pt;}
.ws34{word-spacing:9.146189pt;}
.ws2b{word-spacing:9.553463pt;}
.ws3e{word-spacing:9.844372pt;}
.ws24{word-spacing:9.902554pt;}
.ws31{word-spacing:10.018917pt;}
.ws35{word-spacing:10.368009pt;}
.ws20{word-spacing:10.484372pt;}
.ws23{word-spacing:10.658918pt;}
.ws1b{word-spacing:11.648010pt;}
.ws17{word-spacing:12.404374pt;}
.ws1e{word-spacing:14.952740pt;}
.ws8{word-spacing:16.385834pt;}
.ws10{word-spacing:16.814559pt;}
.ws43{word-spacing:16.930923pt;}
.wsd{word-spacing:19.322898pt;}
.ws12{word-spacing:19.956380pt;}
.ws7{word-spacing:20.654563pt;}
.ws22{word-spacing:20.712745pt;}
.ws4{word-spacing:20.770926pt;}
.wsb{word-spacing:23.156383pt;}
.ws2{word-spacing:25.814977pt;}
.ws3f{word-spacing:25.994915pt;}
.ws21{word-spacing:27.403659pt;}
.wse{word-spacing:30.487298pt;}
.ws28{word-spacing:195.953574pt;}
.ws2e{word-spacing:241.350586pt;}
.ws33{word-spacing:315.242973pt;}
._1{margin-left:-4.829095pt;}
._2{margin-left:-3.200003pt;}
._0{margin-left:-1.629092pt;}
._4{width:1.687274pt;}
._e{width:3.006241pt;}
._22{width:5.757256pt;}
._c{width:14.778194pt;}
._20{width:15.767286pt;}
._a{width:16.814559pt;}
._17{width:17.861833pt;}
._5{width:18.833353pt;}
._3{width:22.574564pt;}
._6{width:24.163047pt;}
._8{width:25.949113pt;}
._10{width:27.229114pt;}
._d{width:28.392751pt;}
._b{width:29.905479pt;}
._9{width:30.952753pt;}
._7{width:33.803665pt;}
._12{width:34.909120pt;}
._1d{width:37.760031pt;}
._1e{width:40.145488pt;}
._f{width:41.425489pt;}
._18{width:44.625492pt;}
._21{width:46.410022pt;}
._16{width:49.047314pt;}
._11{width:55.214591pt;}
._1f{width:60.334596pt;}
._15{width:167.019271pt;}
._14{width:181.470073pt;}
._13{width:210.404376pt;}
._1b{width:212.416283pt;}
._1a{width:226.867085pt;}
._19{width:255.801387pt;}
._1c{width:316.404033pt;}
.fs5{font-size:28.433867pt;}
.fs4{font-size:39.807413pt;}
.fs7{font-size:42.507200pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:45.494187pt;}
.fs0{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:2.216667pt;}
.y3a{bottom:2.376894pt;}
.y57{bottom:16.800000pt;}
.y39{bottom:19.081790pt;}
.y59{bottom:28.316667pt;}
.y23{bottom:43.437333pt;}
.y3b{bottom:44.242218pt;}
.y49{bottom:47.079531pt;}
.y3f{bottom:55.801276pt;}
.y5a{bottom:59.154000pt;}
.y4d{bottom:65.731872pt;}
.y63{bottom:69.433111pt;}
.y3c{bottom:75.969990pt;}
.y62{bottom:81.474333pt;}
.y4a{bottom:84.481930pt;}
.y5b{bottom:89.991333pt;}
.y77{bottom:104.956000pt;}
.y3d{bottom:107.697763pt;}
.y64{bottom:110.549556pt;}
.y5c{bottom:120.828667pt;}
.y4b{bottom:121.884329pt;}
.y76{bottom:123.021333pt;}
.y67{bottom:127.457667pt;}
.y41{bottom:130.297150pt;}
.y3e{bottom:139.425535pt;}
.y75{bottom:141.086667pt;}
.y40{bottom:145.983405pt;}
.y4f{bottom:149.989765pt;}
.y5d{bottom:151.666000pt;}
.y74{bottom:159.152000pt;}
.y4c{bottom:159.286728pt;}
.y22{bottom:165.178667pt;}
.y4e{bottom:165.875246pt;}
.y55{bottom:166.002667pt;}
.y73{bottom:177.217333pt;}
.y5e{bottom:182.503333pt;}
.y54{bottom:184.068000pt;}
.y21{bottom:185.050667pt;}
.y65{bottom:192.782444pt;}
.y72{bottom:195.284000pt;}
.y53{bottom:202.133333pt;}
.y20{bottom:204.924000pt;}
.y5f{bottom:213.340667pt;}
.y52{bottom:220.200000pt;}
.y1f{bottom:224.796000pt;}
.y37{bottom:228.516000pt;}
.y66{bottom:233.898889pt;}
.y51{bottom:238.265333pt;}
.y60{bottom:244.178000pt;}
.y36{bottom:246.581333pt;}
.y50{bottom:256.330667pt;}
.y1e{bottom:260.608000pt;}
.y35{bottom:264.646667pt;}
.y61{bottom:275.015333pt;}
.y1d{bottom:280.480000pt;}
.y48{bottom:287.680000pt;}
.y1c{bottom:300.353333pt;}
.y1b{bottom:332.180000pt;}
.y6c{bottom:350.024000pt;}
.y1a{bottom:352.052000pt;}
.y6b{bottom:368.089333pt;}
.y19{bottom:371.925333pt;}
.y6a{bottom:386.154667pt;}
.y18{bottom:403.752000pt;}
.y69{bottom:404.220000pt;}
.y68{bottom:422.286667pt;}
.y17{bottom:423.624000pt;}
.y16{bottom:443.496000pt;}
.y56{bottom:453.634667pt;}
.y15{bottom:475.324000pt;}
.y14{bottom:495.196000pt;}
.y13{bottom:515.068000pt;}
.y12{bottom:546.896000pt;}
.y11{bottom:566.768000pt;}
.y10{bottom:592.618667pt;}
.y71{bottom:597.008000pt;}
.y70{bottom:615.073333pt;}
.y34{bottom:615.898667pt;}
.yf{bottom:624.445333pt;}
.y6f{bottom:633.138667pt;}
.y33{bottom:633.964000pt;}
.y47{bottom:644.750667pt;}
.ye{bottom:650.296000pt;}
.y6e{bottom:651.204000pt;}
.y32{bottom:652.030667pt;}
.y46{bottom:662.817333pt;}
.y6d{bottom:669.270667pt;}
.yd{bottom:679.561333pt;}
.y45{bottom:680.882667pt;}
.y31{bottom:682.050667pt;}
.y44{bottom:698.948000pt;}
.y30{bottom:700.116000pt;}
.y43{bottom:717.013333pt;}
.y2f{bottom:718.182667pt;}
.yc{bottom:720.372000pt;}
.y42{bottom:735.078667pt;}
.yb{bottom:740.244000pt;}
.y2e{bottom:748.202667pt;}
.ya{bottom:760.116000pt;}
.y2d{bottom:766.268000pt;}
.y38{bottom:766.428000pt;}
.y9{bottom:779.988000pt;}
.y2c{bottom:784.333333pt;}
.y8{bottom:809.254667pt;}
.y2b{bottom:814.354667pt;}
.y2a{bottom:832.420000pt;}
.y7{bottom:850.065333pt;}
.y29{bottom:850.485333pt;}
.y28{bottom:868.552000pt;}
.y6{bottom:885.877333pt;}
.y27{bottom:898.572000pt;}
.y5{bottom:905.749333pt;}
.y26{bottom:916.637333pt;}
.y4{bottom:925.621333pt;}
.y25{bottom:934.704000pt;}
.y3{bottom:945.494667pt;}
.y24{bottom:952.769333pt;}
.y2{bottom:965.366667pt;}
.y1{bottom:985.238667pt;}
.h8{height:26.415062pt;}
.h7{height:36.981087pt;}
.hb{height:39.637333pt;}
.h3{height:40.378215pt;}
.h6{height:42.264099pt;}
.h1{height:43.636400pt;}
.h2{height:44.632747pt;}
.h4{height:53.559147pt;}
.h5{height:153.536151pt;}
.h9{height:183.843316pt;}
.ha{height:283.115333pt;}
.h0{height:1056.000000pt;}
.w2{width:667.350667pt;}
.w1{width:680.338016pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:8.641230pt;}
.x15{left:14.583333pt;}
.x14{left:21.366667pt;}
.x8{left:26.234685pt;}
.x13{left:28.150000pt;}
.x9{left:33.476435pt;}
.x6{left:42.540000pt;}
.x11{left:55.929576pt;}
.x10{left:61.437333pt;}
.x1{left:96.000000pt;}
.x5{left:110.545333pt;}
.x2{left:117.860000pt;}
.x3{left:132.364000pt;}
.xd{left:203.366668pt;}
.x7{left:217.629976pt;}
.x12{left:329.192000pt;}
.x4{left:397.885333pt;}
.xf{left:507.244271pt;}
.xc{left:532.455914pt;}
.xe{left:567.025463pt;}
.xb{left:580.644567pt;}
.x16{left:645.984000pt;}
.x17{left:665.134000pt;}
}




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