
    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_78a75d37bbf90e222569f06c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_27e547e96a596e5f40869fdb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926758;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_e8bcc96fa8103634b1999b2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_47fd2f374206cabc2d921a93.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2b21ede1e73cb039dfcf4aca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2326ebfb1bc452168ed4c74d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_d73f06258bc3d6c0b055622f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_3aa8d1d3d706b9e3f2677b47.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:197.663086px;}
.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:-33.000001px;}
.ws3{word-spacing:-31.500000px;}
.ws6{word-spacing:-23.337890px;}
.ws1{word-spacing:-18.336914px;}
.ws5{word-spacing:-16.277344px;}
.ws7{word-spacing:-15.002930px;}
.ws4{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-197.663086px;}
._0{margin-left:-9.975568px;}
._4{margin-left:-7.233218px;}
._13{margin-left:-5.841752px;}
._b{margin-left:-4.675786px;}
._9{margin-left:-3.476074px;}
._14{margin-left:-2.143341px;}
._5{margin-left:-1.031648px;}
._15{width:1.368706px;}
._8{width:4.500002px;}
._c{width:9.000003px;}
._e{width:12.921384px;}
._d{width:14.078593px;}
._f{width:17.144575px;}
._a{width:18.952173px;}
._1{width:22.130849px;}
._3{width:23.315947px;}
._12{width:27.276185px;}
._10{width:31.187362px;}
._11{width:32.190299px;}
._6{width:69.961115px;}
._2{width:190.995117px;}
._7{width:197.663086px;}
.fc2{color:rgb(17,85,204);}
.fc3{color:rgb(67,67,67);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.999999px;}
.fs5{font-size:63.000000px;}
.fs3{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.999997px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y26{bottom:59.765995px;}
.y25{bottom:128.254755px;}
.y49{bottom:138.362179px;}
.y24{bottom:150.074152px;}
.y48{bottom:171.321169px;}
.y23{bottom:171.893549px;}
.y22{bottom:193.712954px;}
.y47{bottom:204.280155px;}
.y21{bottom:215.532347px;}
.y46{bottom:237.239139px;}
.y20{bottom:237.351744px;}
.y6c{bottom:259.159063px;}
.y1f{bottom:259.171141px;}
.y45{bottom:270.198124px;}
.y6b{bottom:277.011113px;}
.y1e{bottom:280.990538px;}
.y6a{bottom:294.863528px;}
.y1d{bottom:302.809935px;}
.y44{bottom:303.157099px;}
.y69{bottom:313.868775px;}
.y1c{bottom:324.629332px;}
.y43{bottom:336.116089px;}
.y1b{bottom:346.448729px;}
.y68{bottom:351.711179px;}
.y1a{bottom:368.268134px;}
.y42{bottom:369.075069px;}
.y67{bottom:373.530764px;}
.y19{bottom:390.087528px;}
.y66{bottom:395.349974px;}
.y41{bottom:402.034054px;}
.y18{bottom:411.906925px;}
.y65{bottom:417.169559px;}
.y17{bottom:433.726322px;}
.y40{bottom:434.993044px;}
.y64{bottom:438.988769px;}
.y16{bottom:455.545719px;}
.y63{bottom:460.808354px;}
.y3f{bottom:467.952034px;}
.y15{bottom:477.365116px;}
.y62{bottom:482.627564px;}
.y14{bottom:499.184513px;}
.y3e{bottom:499.497244px;}
.y61{bottom:504.447149px;}
.y13{bottom:521.003910px;}
.y60{bottom:526.266359px;}
.y12{bottom:542.823307px;}
.y5f{bottom:548.085944px;}
.y3d{bottom:549.249200px;}
.y11{bottom:564.642704px;}
.y5e{bottom:569.905154px;}
.y3c{bottom:578.094904px;}
.y5d{bottom:591.724739px;}
.y10{bottom:594.191899px;}
.y5c{bottom:613.543949px;}
.y3b{bottom:628.135259px;}
.y5b{bottom:635.363519px;}
.yf{bottom:643.943931px;}
.y3a{bottom:649.954649px;}
.y5a{bottom:657.182744px;}
.ye{bottom:664.771540px;}
.y39{bottom:671.774042px;}
.y59{bottom:679.002314px;}
.yd{bottom:685.599146px;}
.y38{bottom:693.593439px;}
.y58{bottom:700.821539px;}
.yc{bottom:706.426752px;}
.y37{bottom:715.412836px;}
.y57{bottom:722.641109px;}
.yb{bottom:727.254358px;}
.y36{bottom:737.232233px;}
.y56{bottom:744.460334px;}
.ya{bottom:748.081965px;}
.y35{bottom:759.051630px;}
.y55{bottom:766.279904px;}
.y9{bottom:768.909571px;}
.y34{bottom:780.871027px;}
.y54{bottom:788.099129px;}
.y8{bottom:789.737177px;}
.y33{bottom:802.690424px;}
.y53{bottom:809.918699px;}
.y7{bottom:810.564783px;}
.y32{bottom:824.509829px;}
.y6{bottom:831.392390px;}
.y52{bottom:831.737909px;}
.y31{bottom:846.329225px;}
.y51{bottom:853.557494px;}
.y5{bottom:860.238094px;}
.y30{bottom:868.148621px;}
.y50{bottom:875.376704px;}
.y2f{bottom:889.968019px;}
.y4f{bottom:897.196290px;}
.y4{bottom:910.278449px;}
.y2e{bottom:911.787415px;}
.y4e{bottom:919.015507px;}
.y3{bottom:932.097840px;}
.y2d{bottom:933.606813px;}
.y4d{bottom:940.835084px;}
.y2c{bottom:955.426209px;}
.y4c{bottom:970.384274px;}
.y2b{bottom:977.245605px;}
.y2{bottom:980.223632px;}
.y2a{bottom:999.065003px;}
.y29{bottom:1020.884400px;}
.y1{bottom:1021.860351px;}
.y4b{bottom:1029.568360px;}
.y28{bottom:1042.703797px;}
.y4a{bottom:1062.527344px;}
.y27{bottom:1064.523194px;}
.hb{height:39.339844px;}
.h8{height:43.710936px;}
.h6{height:45.896484px;}
.h9{height:45.927246px;}
.h4{height:48.082032px;}
.h3{height:48.114259px;}
.ha{height:51.679688px;}
.h5{height:61.154295px;}
.h2{height:65.522461px;}
.h1{height:87.421873px;}
.h7{height:108.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:196.875000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:175.700521pt;}
.ws0{word-spacing:-29.333334pt;}
.ws3{word-spacing:-28.000000pt;}
.ws6{word-spacing:-20.744791pt;}
.ws1{word-spacing:-16.299479pt;}
.ws5{word-spacing:-14.468750pt;}
.ws7{word-spacing:-13.335937pt;}
.ws4{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-175.700521pt;}
._0{margin-left:-8.867172pt;}
._4{margin-left:-6.429527pt;}
._13{margin-left:-5.192669pt;}
._b{margin-left:-4.156254pt;}
._9{margin-left:-3.089843pt;}
._14{margin-left:-1.905192pt;}
._5{margin-left:-0.917020pt;}
._15{width:1.216628pt;}
._8{width:4.000002pt;}
._c{width:8.000003pt;}
._e{width:11.485675pt;}
._d{width:12.514305pt;}
._f{width:15.239622pt;}
._a{width:16.846376pt;}
._1{width:19.671866pt;}
._3{width:20.725287pt;}
._12{width:24.245498pt;}
._10{width:27.722100pt;}
._11{width:28.613599pt;}
._6{width:62.187658pt;}
._2{width:169.773438pt;}
._7{width:175.700521pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.333332pt;}
.fs5{font-size:56.000000pt;}
.fs3{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666664pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:53.125329pt;}
.y25{bottom:114.004226pt;}
.y49{bottom:122.988603pt;}
.y24{bottom:133.399246pt;}
.y48{bottom:152.285483pt;}
.y23{bottom:152.794265pt;}
.y22{bottom:172.189292pt;}
.y47{bottom:181.582360pt;}
.y21{bottom:191.584308pt;}
.y46{bottom:210.879235pt;}
.y20{bottom:210.979328pt;}
.y6c{bottom:230.363612pt;}
.y1f{bottom:230.374347pt;}
.y45{bottom:240.176110pt;}
.y6b{bottom:246.232101pt;}
.y1e{bottom:249.769367pt;}
.y6a{bottom:262.100914pt;}
.y1d{bottom:269.164386pt;}
.y44{bottom:269.472977pt;}
.y69{bottom:278.994466pt;}
.y1c{bottom:288.559406pt;}
.y43{bottom:298.769857pt;}
.y1b{bottom:307.954425pt;}
.y68{bottom:312.632159pt;}
.y1a{bottom:327.349452pt;}
.y42{bottom:328.066728pt;}
.y67{bottom:332.027345pt;}
.y19{bottom:346.744469pt;}
.y66{bottom:351.422199pt;}
.y41{bottom:357.363603pt;}
.y18{bottom:366.139489pt;}
.y65{bottom:370.817385pt;}
.y17{bottom:385.534508pt;}
.y40{bottom:386.660483pt;}
.y64{bottom:390.212239pt;}
.y16{bottom:404.929528pt;}
.y63{bottom:409.607425pt;}
.y3f{bottom:415.957363pt;}
.y15{bottom:424.324547pt;}
.y62{bottom:429.002279pt;}
.y14{bottom:443.719567pt;}
.y3e{bottom:443.997550pt;}
.y61{bottom:448.397465pt;}
.y13{bottom:463.114586pt;}
.y60{bottom:467.792319pt;}
.y12{bottom:482.509606pt;}
.y5f{bottom:487.187505pt;}
.y3d{bottom:488.221511pt;}
.y11{bottom:501.904625pt;}
.y5e{bottom:506.582359pt;}
.y3c{bottom:513.862137pt;}
.y5d{bottom:525.977545pt;}
.y10{bottom:528.170577pt;}
.y5c{bottom:545.372399pt;}
.y3b{bottom:558.342452pt;}
.y5b{bottom:564.767572pt;}
.yf{bottom:572.394606pt;}
.y3a{bottom:577.737465pt;}
.y5a{bottom:584.162439pt;}
.ye{bottom:590.908036pt;}
.y39{bottom:597.132482pt;}
.y59{bottom:603.557612pt;}
.yd{bottom:609.421464pt;}
.y38{bottom:616.527502pt;}
.y58{bottom:622.952479pt;}
.yc{bottom:627.934891pt;}
.y37{bottom:635.922521pt;}
.y57{bottom:642.347652pt;}
.yb{bottom:646.448319pt;}
.y36{bottom:655.317541pt;}
.y56{bottom:661.742519pt;}
.ya{bottom:664.961747pt;}
.y35{bottom:674.712560pt;}
.y55{bottom:681.137692pt;}
.y9{bottom:683.475175pt;}
.y34{bottom:694.107580pt;}
.y54{bottom:700.532559pt;}
.y8{bottom:701.988602pt;}
.y33{bottom:713.502599pt;}
.y53{bottom:719.927732pt;}
.y7{bottom:720.502030pt;}
.y32{bottom:732.897625pt;}
.y6{bottom:739.015457pt;}
.y52{bottom:739.322585pt;}
.y31{bottom:752.292644pt;}
.y51{bottom:758.717772pt;}
.y5{bottom:764.656083pt;}
.y30{bottom:771.687663pt;}
.y50{bottom:778.112626pt;}
.y2f{bottom:791.082683pt;}
.y4f{bottom:797.507813pt;}
.y4{bottom:809.136399pt;}
.y2e{bottom:810.477702pt;}
.y4e{bottom:816.902673pt;}
.y3{bottom:828.531413pt;}
.y2d{bottom:829.872722pt;}
.y4d{bottom:836.297852pt;}
.y2c{bottom:849.267741pt;}
.y4c{bottom:862.563799pt;}
.y2b{bottom:868.662760pt;}
.y2{bottom:871.309895pt;}
.y2a{bottom:888.057781pt;}
.y29{bottom:907.452800pt;}
.y1{bottom:908.320312pt;}
.y4b{bottom:915.171875pt;}
.y28{bottom:926.847820pt;}
.y4a{bottom:944.468750pt;}
.y27{bottom:946.242839pt;}
.hb{height:34.968750pt;}
.h8{height:38.854166pt;}
.h6{height:40.796875pt;}
.h9{height:40.824219pt;}
.h4{height:42.739584pt;}
.h3{height:42.768230pt;}
.ha{height:45.937500pt;}
.h5{height:54.359373pt;}
.h2{height:58.242188pt;}
.h1{height:77.708331pt;}
.h7{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:175.000000pt;}
}




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