
    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_0923b48c8dfdcef57b40ea86.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.720000;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_c4b5dce614a6e72e767505b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_31fefa7a1bf303970a6f7437.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_2553d458415ad20b5ab399fe.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_057e64283c082e727a41ec71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.685000;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_e41582b21c35ce0dedd3c301.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.453000;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_109ffd90e74b86e9f65cb7f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.712000;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_f05779e65fc0b0ea2d67bf47.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.221549px;}
.ls2{letter-spacing:18.112007px;}
.ls1{letter-spacing:18.171782px;}
.ls3{letter-spacing:20.796062px;}
.ls6{letter-spacing:26.480591px;}
.ls7{letter-spacing:26.540366px;}
.ls0{letter-spacing:29.349820px;}
.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;}
}
.ws23{word-spacing:-2.677947px;}
.ws17{word-spacing:-1.542210px;}
.ws8{word-spacing:-0.466250px;}
.ws22{word-spacing:0.000000px;}
.ws9{word-spacing:0.131506px;}
.ws14{word-spacing:0.490160px;}
.ws13{word-spacing:0.549936px;}
.ws19{word-spacing:1.147692px;}
.wsc{word-spacing:1.506345px;}
.ws25{word-spacing:1.805223px;}
.ws12{word-spacing:2.283428px;}
.ws1b{word-spacing:2.522530px;}
.wsb{word-spacing:3.299613px;}
.wse{word-spacing:3.359389px;}
.ws7{word-spacing:3.419164px;}
.ws3{word-spacing:3.873485px;}
.ws21{word-spacing:4.016920px;}
.wsd{word-spacing:4.196247px;}
.wsa{word-spacing:4.554901px;}
.ws5{word-spacing:4.614676px;}
.ws28{word-spacing:4.794003px;}
.ws30{word-spacing:4.853779px;}
.ws1f{word-spacing:5.212432px;}
.ws27{word-spacing:5.331984px;}
.ws1c{word-spacing:5.391759px;}
.ws16{word-spacing:6.049291px;}
.ws18{word-spacing:6.228618px;}
.ws15{word-spacing:6.945925px;}
.ws11{word-spacing:8.320764px;}
.wsf{word-spacing:8.325892px;}
.ws1e{word-spacing:8.421996px;}
.ws10{word-spacing:8.427996px;}
.ws1a{word-spacing:8.798968px;}
.ws20{word-spacing:9.635827px;}
.ws26{word-spacing:9.874929px;}
.ws1d{word-spacing:10.173807px;}
.ws6{word-spacing:12.684382px;}
.ws2b{word-spacing:12.803934px;}
.ws0{word-spacing:14.557884px;}
.ws32{word-spacing:15.493836px;}
.ws2a{word-spacing:16.629572px;}
.ws31{word-spacing:17.406655px;}
.ws34{word-spacing:18.542391px;}
.ws24{word-spacing:19.606397px;}
.ws2e{word-spacing:20.275884px;}
.ws2f{word-spacing:22.475626px;}
.ws29{word-spacing:22.654952px;}
.ws1{word-spacing:29.851504px;}
.ws2c{word-spacing:30.007351px;}
.ws2{word-spacing:31.091012px;}
.ws33{word-spacing:32.517926px;}
.ws2d{word-spacing:33.832990px;}
.ws4{word-spacing:144.323174px;}
._1{margin-left:-8.160100px;}
._2{margin-left:-5.881958px;}
._8{margin-left:-4.642847px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.187882px;}
._7{width:1.187882px;}
._5{width:2.438870px;}
._f{width:16.574161px;}
._d{width:19.965050px;}
._b{width:22.232224px;}
._15{width:23.738634px;}
._a{width:24.747098px;}
._9{width:27.384854px;}
._6{width:30.366005px;}
._11{width:31.776670px;}
._10{width:32.816804px;}
._14{width:34.046426px;}
._e{width:37.579294px;}
._c{width:41.811341px;}
._3{width:43.397376px;}
._13{width:54.750076px;}
._17{width:62.765947px;}
._12{width:67.195495px;}
._16{width:69.108314px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:134.047500px;}
.y23{bottom:181.867500px;}
.y22{bottom:199.800000px;}
.y21{bottom:217.732500px;}
.y20{bottom:235.666500px;}
.y1f{bottom:253.599000px;}
.y1e{bottom:271.531500px;}
.y1d{bottom:289.464000px;}
.y1c{bottom:307.396500px;}
.y1b{bottom:325.329000px;}
.y1a{bottom:343.263000px;}
.y19{bottom:361.195500px;}
.y18{bottom:379.128000px;}
.y17{bottom:397.060500px;}
.y16{bottom:414.993000px;}
.y15{bottom:432.927000px;}
.y14{bottom:450.859500px;}
.y13{bottom:468.792000px;}
.y12{bottom:486.724500px;}
.y11{bottom:504.657000px;}
.y10{bottom:522.589500px;}
.yf{bottom:540.523500px;}
.ye{bottom:558.456000px;}
.y37{bottom:568.957500px;}
.yd{bottom:576.388500px;}
.y36{bottom:586.891500px;}
.yc{bottom:594.321000px;}
.y35{bottom:604.824000px;}
.yb{bottom:612.253500px;}
.ya{bottom:630.186000px;}
.y34{bottom:634.711500px;}
.y9{bottom:648.120000px;}
.y33{bottom:652.644000px;}
.y8{bottom:666.052500px;}
.y32{bottom:670.576500px;}
.y31{bottom:700.465500px;}
.y30{bottom:718.398000px;}
.y7{bottom:721.345500px;}
.y2f{bottom:736.330500px;}
.y2e{bottom:754.263000px;}
.y6{bottom:769.165500px;}
.y2d{bottom:784.150500px;}
.y5{bottom:790.087500px;}
.y2c{bottom:802.084500px;}
.y4{bottom:811.008000px;}
.y2b{bottom:820.017000px;}
.y3{bottom:846.874500px;}
.y2a{bottom:849.904500px;}
.y29{bottom:867.837000px;}
.y28{bottom:885.769500px;}
.y2{bottom:890.211000px;}
.y27{bottom:918.501000px;}
.y1{bottom:923.088000px;}
.y26{bottom:967.920000px;}
.y25{bottom:985.852500px;}
.h3{height:44.831700px;}
.h2{height:50.498765px;}
.h4{height:60.254040px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:200.652000px;}
.xa{left:215.596500px;}
.x4{left:218.307000px;}
.x8{left:223.068000px;}
.x6{left:278.070000px;}
.x3{left:315.315000px;}
.x2{left:345.003000px;}
.x5{left:369.184500px;}
.x7{left:421.491000px;}
.x9{left:454.699500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.196932pt;}
.ls2{letter-spacing:16.099562pt;}
.ls1{letter-spacing:16.152695pt;}
.ls3{letter-spacing:18.485388pt;}
.ls6{letter-spacing:23.538303pt;}
.ls7{letter-spacing:23.591437pt;}
.ls0{letter-spacing:26.088729pt;}
.ws23{word-spacing:-2.380397pt;}
.ws17{word-spacing:-1.370854pt;}
.ws8{word-spacing:-0.414444pt;}
.ws22{word-spacing:0.000000pt;}
.ws9{word-spacing:0.116895pt;}
.ws14{word-spacing:0.435698pt;}
.ws13{word-spacing:0.488832pt;}
.ws19{word-spacing:1.020170pt;}
.wsc{word-spacing:1.338973pt;}
.ws25{word-spacing:1.604643pt;}
.ws12{word-spacing:2.029714pt;}
.ws1b{word-spacing:2.242249pt;}
.wsb{word-spacing:2.932989pt;}
.wse{word-spacing:2.986123pt;}
.ws7{word-spacing:3.039257pt;}
.ws3{word-spacing:3.443098pt;}
.ws21{word-spacing:3.570596pt;}
.wsd{word-spacing:3.729997pt;}
.wsa{word-spacing:4.048801pt;}
.ws5{word-spacing:4.101935pt;}
.ws28{word-spacing:4.261336pt;}
.ws30{word-spacing:4.314470pt;}
.ws1f{word-spacing:4.633273pt;}
.ws27{word-spacing:4.739541pt;}
.ws1c{word-spacing:4.792675pt;}
.ws16{word-spacing:5.377147pt;}
.ws18{word-spacing:5.536549pt;}
.ws15{word-spacing:6.174155pt;}
.ws11{word-spacing:7.396234pt;}
.wsf{word-spacing:7.400793pt;}
.ws1e{word-spacing:7.486219pt;}
.ws10{word-spacing:7.491552pt;}
.ws1a{word-spacing:7.821305pt;}
.ws20{word-spacing:8.565179pt;}
.ws26{word-spacing:8.777715pt;}
.ws1d{word-spacing:9.043384pt;}
.ws6{word-spacing:11.275007pt;}
.ws2b{word-spacing:11.381274pt;}
.ws0{word-spacing:12.940341pt;}
.ws32{word-spacing:13.772298pt;}
.ws2a{word-spacing:14.781842pt;}
.ws31{word-spacing:15.472582pt;}
.ws34{word-spacing:16.482125pt;}
.ws24{word-spacing:17.427908pt;}
.ws2e{word-spacing:18.023008pt;}
.ws2f{word-spacing:19.978334pt;}
.ws29{word-spacing:20.137735pt;}
.ws1{word-spacing:26.534670pt;}
.ws2c{word-spacing:26.673201pt;}
.ws2{word-spacing:27.636455pt;}
.ws33{word-spacing:28.904823pt;}
.ws2d{word-spacing:30.073769pt;}
.ws4{word-spacing:128.287266pt;}
._1{margin-left:-7.253422pt;}
._2{margin-left:-5.228407pt;}
._8{margin-left:-4.126975pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.055895pt;}
._7{width:1.055895pt;}
._5{width:2.167885pt;}
._f{width:14.732588pt;}
._d{width:17.746711pt;}
._b{width:19.761977pt;}
._15{width:21.101008pt;}
._a{width:21.997421pt;}
._9{width:24.342093pt;}
._6{width:26.992004pt;}
._11{width:28.245929pt;}
._10{width:29.170493pt;}
._14{width:30.263489pt;}
._e{width:33.403817pt;}
._c{width:37.165636pt;}
._3{width:38.575445pt;}
._13{width:48.666734pt;}
._17{width:55.791953pt;}
._12{width:59.729329pt;}
._16{width:61.429613pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:119.153333pt;}
.y23{bottom:161.660000pt;}
.y22{bottom:177.600000pt;}
.y21{bottom:193.540000pt;}
.y20{bottom:209.481333pt;}
.y1f{bottom:225.421333pt;}
.y1e{bottom:241.361333pt;}
.y1d{bottom:257.301333pt;}
.y1c{bottom:273.241333pt;}
.y1b{bottom:289.181333pt;}
.y1a{bottom:305.122667pt;}
.y19{bottom:321.062667pt;}
.y18{bottom:337.002667pt;}
.y17{bottom:352.942667pt;}
.y16{bottom:368.882667pt;}
.y15{bottom:384.824000pt;}
.y14{bottom:400.764000pt;}
.y13{bottom:416.704000pt;}
.y12{bottom:432.644000pt;}
.y11{bottom:448.584000pt;}
.y10{bottom:464.524000pt;}
.yf{bottom:480.465333pt;}
.ye{bottom:496.405333pt;}
.y37{bottom:505.740000pt;}
.yd{bottom:512.345333pt;}
.y36{bottom:521.681333pt;}
.yc{bottom:528.285333pt;}
.y35{bottom:537.621333pt;}
.yb{bottom:544.225333pt;}
.ya{bottom:560.165333pt;}
.y34{bottom:564.188000pt;}
.y9{bottom:576.106667pt;}
.y33{bottom:580.128000pt;}
.y8{bottom:592.046667pt;}
.y32{bottom:596.068000pt;}
.y31{bottom:622.636000pt;}
.y30{bottom:638.576000pt;}
.y7{bottom:641.196000pt;}
.y2f{bottom:654.516000pt;}
.y2e{bottom:670.456000pt;}
.y6{bottom:683.702667pt;}
.y2d{bottom:697.022667pt;}
.y5{bottom:702.300000pt;}
.y2c{bottom:712.964000pt;}
.y4{bottom:720.896000pt;}
.y2b{bottom:728.904000pt;}
.y3{bottom:752.777333pt;}
.y2a{bottom:755.470667pt;}
.y29{bottom:771.410667pt;}
.y28{bottom:787.350667pt;}
.y2{bottom:791.298667pt;}
.y27{bottom:816.445333pt;}
.y1{bottom:820.522667pt;}
.y26{bottom:860.373333pt;}
.y25{bottom:876.313333pt;}
.h3{height:39.850400pt;}
.h2{height:44.887791pt;}
.h4{height:53.559147pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:178.357333pt;}
.xa{left:191.641333pt;}
.x4{left:194.050667pt;}
.x8{left:198.282667pt;}
.x6{left:247.173333pt;}
.x3{left:280.280000pt;}
.x2{left:306.669333pt;}
.x5{left:328.164000pt;}
.x7{left:374.658667pt;}
.x9{left:404.177333pt;}
}




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