
    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_f6a99814a70d808d15962361.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981000;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_fa422ed285889285cd2bd3e7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.954000;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_52c21ae474dbc189e66a59b3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.955000;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_93201131db2206d764e1cdb4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979000;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_966b41e641b3f51a94a58854.woff')format("woff");}.ff5{font-family:ff5;line-height:0.991000;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_596208fa526da31acbf24c14.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_d5d9715e23067d4ae3d5b001.woff')format("woff");}.ff7{font-family:ff7;line-height:0.985000;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_8f71af4329de7a588cbbd462.woff')format("woff");}.ff8{font-family:ff8;line-height:0.784000;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;}
.ls3{letter-spacing:-1.638000px;}
.ls2{letter-spacing:-1.575000px;}
.ls1{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.726000px;}
.ls5{letter-spacing:2.046000px;}
.ls4{letter-spacing:2.112000px;}
.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;}
}
.ws10{word-spacing:-42.240000px;}
.wsb{word-spacing:-20.262000px;}
.ws0{word-spacing:-17.703000px;}
.ws1{word-spacing:-7.776000px;}
.ws9{word-spacing:-7.344000px;}
.ws8{word-spacing:-2.904000px;}
.wsc{word-spacing:-2.112000px;}
.wsd{word-spacing:-2.046000px;}
.wse{word-spacing:-0.726000px;}
.wsf{word-spacing:-0.660000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:0.594000px;}
.wsa{word-spacing:1.638000px;}
.ws7{word-spacing:3.234000px;}
.ws6{word-spacing:6.468000px;}
.ws5{word-spacing:8.448000px;}
.ws3{word-spacing:11.286000px;}
._1b{margin-left:-14.124000px;}
._15{margin-left:-11.912400px;}
._5{margin-left:-9.715200px;}
._18{margin-left:-8.322000px;}
._3{margin-left:-6.402000px;}
._1d{margin-left:-5.160000px;}
._1{margin-left:-3.888000px;}
._0{margin-left:-2.106000px;}
._2{margin-left:-1.056000px;}
._a{width:1.603800px;}
._16{width:2.983200px;}
._11{width:4.752000px;}
._1f{width:6.183000px;}
._9{width:7.293000px;}
._12{width:9.154800px;}
._6{width:11.932800px;}
._7{width:13.992600px;}
._14{width:15.530400px;}
._4{width:17.074200px;}
._b{width:18.645000px;}
._8{width:22.842600px;}
._10{width:24.532200px;}
._f{width:26.584800px;}
._13{width:31.026600px;}
._1c{width:35.862000px;}
._1e{width:38.634000px;}
._19{width:40.086000px;}
._1a{width:41.538000px;}
._e{width:45.533400px;}
._17{width:54.342000px;}
._c{width:61.413000px;}
._d{width:62.601000px;}
.fc5{color:rgb(5,6,6);}
.fc3{color:rgb(24,10,12);}
.fc4{color:rgb(238,36,44);}
.fc2{color:rgb(48,88,159);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:132.000000px;}
.fs2{font-size:144.000000px;}
.fs0{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:20.416350px;}
.y22{bottom:22.568100px;}
.y94{bottom:84.951150px;}
.yae{bottom:93.279450px;}
.y93{bottom:104.451150px;}
.yad{bottom:111.279450px;}
.ya6{bottom:113.682000px;}
.y30{bottom:118.827600px;}
.y92{bottom:123.951150px;}
.y21{bottom:127.465500px;}
.yac{bottom:129.279450px;}
.ya5{bottom:133.182000px;}
.y59{bottom:137.425350px;}
.y2f{bottom:138.327600px;}
.y91{bottom:143.451150px;}
.y20{bottom:146.965500px;}
.yab{bottom:147.279450px;}
.ya4{bottom:152.682000px;}
.y58{bottom:155.425350px;}
.y2e{bottom:157.827600px;}
.y90{bottom:162.951150px;}
.y1f{bottom:166.465500px;}
.ya3{bottom:172.182000px;}
.y57{bottom:173.425350px;}
.y2d{bottom:177.327600px;}
.y8f{bottom:182.451150px;}
.y1e{bottom:185.965500px;}
.y56{bottom:191.425350px;}
.y2c{bottom:196.827600px;}
.y8e{bottom:201.951150px;}
.ya2{bottom:202.182000px;}
.y1d{bottom:205.465500px;}
.y2b{bottom:216.327600px;}
.ya1{bottom:221.682000px;}
.y1c{bottom:224.965500px;}
.y8d{bottom:240.951150px;}
.ya0{bottom:241.182000px;}
.y1b{bottom:244.465500px;}
.y2a{bottom:255.327600px;}
.y8c{bottom:260.451150px;}
.y9f{bottom:260.682000px;}
.y29{bottom:274.827600px;}
.yce{bottom:275.961300px;}
.y1a{bottom:277.465500px;}
.y8b{bottom:279.951150px;}
.y9e{bottom:280.182000px;}
.y28{bottom:294.327600px;}
.ycd{bottom:296.961300px;}
.y19{bottom:296.965500px;}
.y8a{bottom:299.451150px;}
.y9d{bottom:299.682000px;}
.y42{bottom:310.487850px;}
.y27{bottom:313.827600px;}
.y3a{bottom:314.987850px;}
.y18{bottom:316.465500px;}
.y9c{bottom:319.182000px;}
.ycc{bottom:326.961300px;}
.y89{bottom:329.451150px;}
.y41{bottom:332.987850px;}
.y26{bottom:333.327600px;}
.y17{bottom:335.965500px;}
.y39{bottom:335.987850px;}
.y9b{bottom:338.682000px;}
.y88{bottom:348.951150px;}
.y25{bottom:352.827600px;}
.y40{bottom:353.987850px;}
.y16{bottom:355.465500px;}
.y38{bottom:356.987850px;}
.y9a{bottom:358.182000px;}
.y87{bottom:368.451150px;}
.y24{bottom:372.327600px;}
.y15{bottom:374.965500px;}
.y3f{bottom:374.987850px;}
.y99{bottom:377.682000px;}
.y37{bottom:377.987850px;}
.y86{bottom:387.951150px;}
.y14{bottom:394.465500px;}
.y3e{bottom:395.987850px;}
.y36{bottom:398.987850px;}
.y85{bottom:407.451150px;}
.y13{bottom:413.965500px;}
.y98{bottom:416.682000px;}
.y3d{bottom:416.987850px;}
.y35{bottom:419.987850px;}
.y84{bottom:426.951150px;}
.y97{bottom:436.182000px;}
.y83{bottom:446.451150px;}
.y12{bottom:446.965500px;}
.y3c{bottom:448.487850px;}
.ybc{bottom:449.361750px;}
.y34{bottom:449.987850px;}
.yc3{bottom:459.861750px;}
.y82{bottom:465.951150px;}
.y96{bottom:466.182000px;}
.y11{bottom:466.465500px;}
.ybb{bottom:468.861750px;}
.y33{bottom:470.987850px;}
.yc2{bottom:479.361750px;}
.y81{bottom:485.451150px;}
.y95{bottom:485.682000px;}
.y10{bottom:485.965500px;}
.yba{bottom:488.361750px;}
.y32{bottom:491.987850px;}
.yc1{bottom:498.861750px;}
.yf{bottom:505.465500px;}
.yb9{bottom:518.361750px;}
.ye{bottom:524.965500px;}
.y55{bottom:530.915400px;}
.yb8{bottom:537.861750px;}
.yd{bottom:544.465500px;}
.yb7{bottom:557.361750px;}
.y5b{bottom:560.790150px;}
.yc{bottom:563.965500px;}
.y54{bottom:569.915400px;}
.yb6{bottom:576.861750px;}
.yb{bottom:583.465500px;}
.y53{bottom:589.415400px;}
.yb5{bottom:596.361750px;}
.ya{bottom:602.965500px;}
.y52{bottom:608.915400px;}
.yb4{bottom:615.861750px;}
.yb3{bottom:635.361750px;}
.yc0{bottom:645.861750px;}
.yb2{bottom:654.861750px;}
.ybf{bottom:665.361750px;}
.y6f{bottom:671.947200px;}
.yb1{bottom:674.361750px;}
.y9{bottom:680.624250px;}
.y3b{bottom:684.266550px;}
.ybe{bottom:684.861750px;}
.y6e{bottom:691.447200px;}
.y8{bottom:700.124250px;}
.yb0{bottom:704.361750px;}
.y6d{bottom:710.947200px;}
.y7{bottom:719.624250px;}
.yaf{bottom:723.861750px;}
.y6c{bottom:730.447200px;}
.y6{bottom:739.124250px;}
.y7e{bottom:750.178050px;}
.y5{bottom:758.624250px;}
.y6b{bottom:769.447200px;}
.y7d{bottom:769.678050px;}
.y6a{bottom:788.947200px;}
.y7c{bottom:789.178050px;}
.ybd{bottom:790.276950px;}
.y4{bottom:791.624250px;}
.y69{bottom:808.447200px;}
.y7b{bottom:808.678050px;}
.y3{bottom:811.124250px;}
.y50{bottom:827.214900px;}
.y68{bottom:827.947200px;}
.y7a{bottom:828.178050px;}
.y2{bottom:830.624250px;}
.y4f{bottom:846.714900px;}
.y67{bottom:847.447200px;}
.y4e{bottom:866.214900px;}
.y66{bottom:866.947200px;}
.y79{bottom:867.178050px;}
.y4d{bottom:885.714900px;}
.y65{bottom:886.447200px;}
.y78{bottom:886.678050px;}
.y4c{bottom:905.214900px;}
.y64{bottom:905.947200px;}
.y77{bottom:906.178050px;}
.ycb{bottom:909.032550px;}
.y23{bottom:913.073700px;}
.y4b{bottom:924.714900px;}
.y63{bottom:925.447200px;}
.yca{bottom:928.532550px;}
.y4a{bottom:944.214900px;}
.y62{bottom:944.947200px;}
.y76{bottom:945.178050px;}
.yc9{bottom:948.032550px;}
.y1{bottom:958.913850px;}
.y49{bottom:963.714900px;}
.y61{bottom:964.447200px;}
.y75{bottom:964.678050px;}
.yc8{bottom:967.532550px;}
.y48{bottom:983.214900px;}
.y60{bottom:983.947200px;}
.y74{bottom:984.178050px;}
.yc7{bottom:987.032550px;}
.y47{bottom:1002.714900px;}
.y5f{bottom:1003.447200px;}
.y73{bottom:1003.678050px;}
.yc6{bottom:1006.532550px;}
.y51{bottom:1022.214900px;}
.y5e{bottom:1022.947200px;}
.y72{bottom:1023.178050px;}
.yc5{bottom:1026.032550px;}
.y46{bottom:1041.714900px;}
.y5d{bottom:1042.447200px;}
.y71{bottom:1042.678050px;}
.yc4{bottom:1045.532550px;}
.y45{bottom:1061.214900px;}
.y5c{bottom:1061.947200px;}
.y70{bottom:1062.178050px;}
.y44{bottom:1080.714900px;}
.yaa{bottom:1080.754500px;}
.y80{bottom:1100.079750px;}
.y43{bottom:1100.214900px;}
.ya9{bottom:1100.254500px;}
.y7f{bottom:1119.579750px;}
.y31{bottom:1169.855100px;}
.ya7{bottom:1170.293700px;}
.y5a{bottom:1183.979850px;}
.hb{height:45.840000px;}
.h6{height:48.132000px;}
.h7{height:49.140000px;}
.h3{height:50.424000px;}
.h9{height:51.150000px;}
.h5{height:83.592000px;}
.h8{height:102.300000px;}
.ha{height:102.564000px;}
.hc{height:102.960000px;}
.h4{height:111.600000px;}
.h2{height:125.550000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:88.038450px;}
.x5{left:89.183400px;}
.x1{left:90.407250px;}
.xa{left:93.375150px;}
.x6{left:116.183400px;}
.xe{left:117.312750px;}
.xb{left:120.375150px;}
.x12{left:193.796700px;}
.x7{left:453.611550px;}
.x10{left:454.740900px;}
.xd{left:457.803300px;}
.x4{left:473.031450px;}
.x8{left:480.611550px;}
.xf{left:481.740900px;}
.xc{left:484.803300px;}
.x3{left:491.357550px;}
.x11{left:552.628050px;}
.x2{left:554.728200px;}
.x9{left:650.926800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.456000pt;}
.ls2{letter-spacing:-1.400000pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.645333pt;}
.ls5{letter-spacing:1.818667pt;}
.ls4{letter-spacing:1.877333pt;}
.ws10{word-spacing:-37.546667pt;}
.wsb{word-spacing:-18.010667pt;}
.ws0{word-spacing:-15.736000pt;}
.ws1{word-spacing:-6.912000pt;}
.ws9{word-spacing:-6.528000pt;}
.ws8{word-spacing:-2.581333pt;}
.wsc{word-spacing:-1.877333pt;}
.wsd{word-spacing:-1.818667pt;}
.wse{word-spacing:-0.645333pt;}
.wsf{word-spacing:-0.586667pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:0.528000pt;}
.wsa{word-spacing:1.456000pt;}
.ws7{word-spacing:2.874667pt;}
.ws6{word-spacing:5.749333pt;}
.ws5{word-spacing:7.509333pt;}
.ws3{word-spacing:10.032000pt;}
._1b{margin-left:-12.554667pt;}
._15{margin-left:-10.588800pt;}
._5{margin-left:-8.635733pt;}
._18{margin-left:-7.397333pt;}
._3{margin-left:-5.690667pt;}
._1d{margin-left:-4.586667pt;}
._1{margin-left:-3.456000pt;}
._0{margin-left:-1.872000pt;}
._2{margin-left:-0.938667pt;}
._a{width:1.425600pt;}
._16{width:2.651733pt;}
._11{width:4.224000pt;}
._1f{width:5.496000pt;}
._9{width:6.482667pt;}
._12{width:8.137600pt;}
._6{width:10.606933pt;}
._7{width:12.437867pt;}
._14{width:13.804800pt;}
._4{width:15.177067pt;}
._b{width:16.573333pt;}
._8{width:20.304533pt;}
._10{width:21.806400pt;}
._f{width:23.630933pt;}
._13{width:27.579200pt;}
._1c{width:31.877333pt;}
._1e{width:34.341333pt;}
._19{width:35.632000pt;}
._1a{width:36.922667pt;}
._e{width:40.474133pt;}
._17{width:48.304000pt;}
._c{width:54.589333pt;}
._d{width:55.645333pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:117.333333pt;}
.fs2{font-size:128.000000pt;}
.fs0{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:18.147867pt;}
.y22{bottom:20.060533pt;}
.y94{bottom:75.512133pt;}
.yae{bottom:82.915067pt;}
.y93{bottom:92.845467pt;}
.yad{bottom:98.915067pt;}
.ya6{bottom:101.050667pt;}
.y30{bottom:105.624533pt;}
.y92{bottom:110.178800pt;}
.y21{bottom:113.302667pt;}
.yac{bottom:114.915067pt;}
.ya5{bottom:118.384000pt;}
.y59{bottom:122.155867pt;}
.y2f{bottom:122.957867pt;}
.y91{bottom:127.512133pt;}
.y20{bottom:130.636000pt;}
.yab{bottom:130.915067pt;}
.ya4{bottom:135.717333pt;}
.y58{bottom:138.155867pt;}
.y2e{bottom:140.291200pt;}
.y90{bottom:144.845467pt;}
.y1f{bottom:147.969333pt;}
.ya3{bottom:153.050667pt;}
.y57{bottom:154.155867pt;}
.y2d{bottom:157.624533pt;}
.y8f{bottom:162.178800pt;}
.y1e{bottom:165.302667pt;}
.y56{bottom:170.155867pt;}
.y2c{bottom:174.957867pt;}
.y8e{bottom:179.512133pt;}
.ya2{bottom:179.717333pt;}
.y1d{bottom:182.636000pt;}
.y2b{bottom:192.291200pt;}
.ya1{bottom:197.050667pt;}
.y1c{bottom:199.969333pt;}
.y8d{bottom:214.178800pt;}
.ya0{bottom:214.384000pt;}
.y1b{bottom:217.302667pt;}
.y2a{bottom:226.957867pt;}
.y8c{bottom:231.512133pt;}
.y9f{bottom:231.717333pt;}
.y29{bottom:244.291200pt;}
.yce{bottom:245.298933pt;}
.y1a{bottom:246.636000pt;}
.y8b{bottom:248.845467pt;}
.y9e{bottom:249.050667pt;}
.y28{bottom:261.624533pt;}
.ycd{bottom:263.965600pt;}
.y19{bottom:263.969333pt;}
.y8a{bottom:266.178800pt;}
.y9d{bottom:266.384000pt;}
.y42{bottom:275.989200pt;}
.y27{bottom:278.957867pt;}
.y3a{bottom:279.989200pt;}
.y18{bottom:281.302667pt;}
.y9c{bottom:283.717333pt;}
.ycc{bottom:290.632267pt;}
.y89{bottom:292.845467pt;}
.y41{bottom:295.989200pt;}
.y26{bottom:296.291200pt;}
.y17{bottom:298.636000pt;}
.y39{bottom:298.655867pt;}
.y9b{bottom:301.050667pt;}
.y88{bottom:310.178800pt;}
.y25{bottom:313.624533pt;}
.y40{bottom:314.655867pt;}
.y16{bottom:315.969333pt;}
.y38{bottom:317.322533pt;}
.y9a{bottom:318.384000pt;}
.y87{bottom:327.512133pt;}
.y24{bottom:330.957867pt;}
.y15{bottom:333.302667pt;}
.y3f{bottom:333.322533pt;}
.y99{bottom:335.717333pt;}
.y37{bottom:335.989200pt;}
.y86{bottom:344.845467pt;}
.y14{bottom:350.636000pt;}
.y3e{bottom:351.989200pt;}
.y36{bottom:354.655867pt;}
.y85{bottom:362.178800pt;}
.y13{bottom:367.969333pt;}
.y98{bottom:370.384000pt;}
.y3d{bottom:370.655867pt;}
.y35{bottom:373.322533pt;}
.y84{bottom:379.512133pt;}
.y97{bottom:387.717333pt;}
.y83{bottom:396.845467pt;}
.y12{bottom:397.302667pt;}
.y3c{bottom:398.655867pt;}
.ybc{bottom:399.432667pt;}
.y34{bottom:399.989200pt;}
.yc3{bottom:408.766000pt;}
.y82{bottom:414.178800pt;}
.y96{bottom:414.384000pt;}
.y11{bottom:414.636000pt;}
.ybb{bottom:416.766000pt;}
.y33{bottom:418.655867pt;}
.yc2{bottom:426.099333pt;}
.y81{bottom:431.512133pt;}
.y95{bottom:431.717333pt;}
.y10{bottom:431.969333pt;}
.yba{bottom:434.099333pt;}
.y32{bottom:437.322533pt;}
.yc1{bottom:443.432667pt;}
.yf{bottom:449.302667pt;}
.yb9{bottom:460.766000pt;}
.ye{bottom:466.636000pt;}
.y55{bottom:471.924800pt;}
.yb8{bottom:478.099333pt;}
.yd{bottom:483.969333pt;}
.yb7{bottom:495.432667pt;}
.y5b{bottom:498.480133pt;}
.yc{bottom:501.302667pt;}
.y54{bottom:506.591467pt;}
.yb6{bottom:512.766000pt;}
.yb{bottom:518.636000pt;}
.y53{bottom:523.924800pt;}
.yb5{bottom:530.099333pt;}
.ya{bottom:535.969333pt;}
.y52{bottom:541.258133pt;}
.yb4{bottom:547.432667pt;}
.yb3{bottom:564.766000pt;}
.yc0{bottom:574.099333pt;}
.yb2{bottom:582.099333pt;}
.ybf{bottom:591.432667pt;}
.y6f{bottom:597.286400pt;}
.yb1{bottom:599.432667pt;}
.y9{bottom:604.999333pt;}
.y3b{bottom:608.236933pt;}
.ybe{bottom:608.766000pt;}
.y6e{bottom:614.619733pt;}
.y8{bottom:622.332667pt;}
.yb0{bottom:626.099333pt;}
.y6d{bottom:631.953067pt;}
.y7{bottom:639.666000pt;}
.yaf{bottom:643.432667pt;}
.y6c{bottom:649.286400pt;}
.y6{bottom:656.999333pt;}
.y7e{bottom:666.824933pt;}
.y5{bottom:674.332667pt;}
.y6b{bottom:683.953067pt;}
.y7d{bottom:684.158267pt;}
.y6a{bottom:701.286400pt;}
.y7c{bottom:701.491600pt;}
.ybd{bottom:702.468400pt;}
.y4{bottom:703.666000pt;}
.y69{bottom:718.619733pt;}
.y7b{bottom:718.824933pt;}
.y3{bottom:720.999333pt;}
.y50{bottom:735.302133pt;}
.y68{bottom:735.953067pt;}
.y7a{bottom:736.158267pt;}
.y2{bottom:738.332667pt;}
.y4f{bottom:752.635467pt;}
.y67{bottom:753.286400pt;}
.y4e{bottom:769.968800pt;}
.y66{bottom:770.619733pt;}
.y79{bottom:770.824933pt;}
.y4d{bottom:787.302133pt;}
.y65{bottom:787.953067pt;}
.y78{bottom:788.158267pt;}
.y4c{bottom:804.635467pt;}
.y64{bottom:805.286400pt;}
.y77{bottom:805.491600pt;}
.ycb{bottom:808.028933pt;}
.y23{bottom:811.621067pt;}
.y4b{bottom:821.968800pt;}
.y63{bottom:822.619733pt;}
.yca{bottom:825.362267pt;}
.y4a{bottom:839.302133pt;}
.y62{bottom:839.953067pt;}
.y76{bottom:840.158267pt;}
.yc9{bottom:842.695600pt;}
.y1{bottom:852.367867pt;}
.y49{bottom:856.635467pt;}
.y61{bottom:857.286400pt;}
.y75{bottom:857.491600pt;}
.yc8{bottom:860.028933pt;}
.y48{bottom:873.968800pt;}
.y60{bottom:874.619733pt;}
.y74{bottom:874.824933pt;}
.yc7{bottom:877.362267pt;}
.y47{bottom:891.302133pt;}
.y5f{bottom:891.953067pt;}
.y73{bottom:892.158267pt;}
.yc6{bottom:894.695600pt;}
.y51{bottom:908.635467pt;}
.y5e{bottom:909.286400pt;}
.y72{bottom:909.491600pt;}
.yc5{bottom:912.028933pt;}
.y46{bottom:925.968800pt;}
.y5d{bottom:926.619733pt;}
.y71{bottom:926.824933pt;}
.yc4{bottom:929.362267pt;}
.y45{bottom:943.302133pt;}
.y5c{bottom:943.953067pt;}
.y70{bottom:944.158267pt;}
.y44{bottom:960.635467pt;}
.yaa{bottom:960.670667pt;}
.y80{bottom:977.848667pt;}
.y43{bottom:977.968800pt;}
.ya9{bottom:978.004000pt;}
.y7f{bottom:995.182000pt;}
.y31{bottom:1039.871200pt;}
.ya7{bottom:1040.261067pt;}
.y5a{bottom:1052.426533pt;}
.hb{height:40.746667pt;}
.h6{height:42.784000pt;}
.h7{height:43.680000pt;}
.h3{height:44.821333pt;}
.h9{height:45.466667pt;}
.h5{height:74.304000pt;}
.h8{height:90.933333pt;}
.ha{height:91.168000pt;}
.hc{height:91.520000pt;}
.h4{height:99.200000pt;}
.h2{height:111.600000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:78.256400pt;}
.x5{left:79.274133pt;}
.x1{left:80.362000pt;}
.xa{left:83.000133pt;}
.x6{left:103.274133pt;}
.xe{left:104.278000pt;}
.xb{left:107.000133pt;}
.x12{left:172.263733pt;}
.x7{left:403.210267pt;}
.x10{left:404.214133pt;}
.xd{left:406.936267pt;}
.x4{left:420.472400pt;}
.x8{left:427.210267pt;}
.xf{left:428.214133pt;}
.xc{left:430.936267pt;}
.x3{left:436.762267pt;}
.x11{left:491.224933pt;}
.x2{left:493.091733pt;}
.x9{left:578.601600pt;}
}




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