
    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_fa4127a4947f7192432d62cd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_cfdc4df153edcd672f8451dd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_f37bc89020204b19c694dec6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_e5545808e28c446f09350fa5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_eb4f8c6d2b13a7b668c2f57b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.987000;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_1b6e93d737386fa32d0e95ba.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_53773ba60d17fab2fc7c6f43.woff')format("woff");}.ff7{font-family:ff7;line-height:0.997000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.046867px;}
.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:-31.109940px;}
.ws4{word-spacing:-26.015579px;}
.ws3{word-spacing:-24.746760px;}
.ws2{word-spacing:-24.746388px;}
.ws6{word-spacing:-22.895999px;}
.ws7{word-spacing:-21.617639px;}
.ws5{word-spacing:-20.053079px;}
.ws1{word-spacing:-12.446999px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-12.093064px;}
._5{margin-left:-9.932943px;}
._8{margin-left:-7.367742px;}
._9{margin-left:-4.848564px;}
._2{margin-left:-3.573034px;}
._0{margin-left:-2.277775px;}
._3{margin-left:-1.028320px;}
._4{width:1.734518px;}
._6{width:3.367938px;}
._7{width:6.844989px;}
.fc4{color:transparent;}
.fc3{color:rgb(233,148,8);}
.fc2{color:rgb(255,49,49);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(62,121,178);}
.fs4{font-size:52.540845px;}
.fs7{font-size:53.999998px;}
.fs1{font-size:58.364122px;}
.fs2{font-size:58.364999px;}
.fsd{font-size:59.984997px;}
.fsb{font-size:94.589996px;}
.fsc{font-size:101.969996px;}
.fsa{font-size:107.999996px;}
.fs3{font-size:116.728244px;}
.fs8{font-size:116.730000px;}
.fs9{font-size:122.714995px;}
.fs6{font-size:125.999995px;}
.fs0{font-size:146.744998px;}
.fs5{font-size:291.554992px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.ye{bottom:3.285125px;}
.ya{bottom:3.322744px;}
.y4{bottom:3.542979px;}
.y7{bottom:6.891455px;}
.y1c{bottom:6.903320px;}
.y8{bottom:20.160009px;}
.yd{bottom:20.798740px;}
.y9{bottom:20.836360px;}
.yc{bottom:38.312355px;}
.y5{bottom:64.858533px;}
.y3{bottom:86.400007px;}
.yb{bottom:124.200005px;}
.y1a{bottom:134.306886px;}
.y19{bottom:152.306886px;}
.y18{bottom:170.306885px;}
.y6{bottom:180.000003px;}
.y17{bottom:188.306884px;}
.y16{bottom:206.306883px;}
.y15{bottom:224.306883px;}
.y3e{bottom:233.805842px;}
.y14{bottom:242.306882px;}
.y1b{bottom:255.959999px;}
.y2c{bottom:308.190515px;}
.y2b{bottom:340.815514px;}
.y2a{bottom:373.440512px;}
.y35{bottom:378.436196px;}
.y29{bottom:406.065511px;}
.y34{bottom:408.143143px;}
.y23{bottom:409.298887px;}
.y3d{bottom:425.650050px;}
.y28{bottom:438.690510px;}
.y33{bottom:445.268141px;}
.y21{bottom:453.891833px;}
.y22{bottom:468.111040px;}
.y27{bottom:471.315508px;}
.y32{bottom:488.554648px;}
.y26{bottom:503.940507px;}
.y24{bottom:527.104634px;}
.y25{bottom:536.565506px;}
.y31{bottom:538.118150px;}
.y20{bottom:594.632920px;}
.y1e{bottom:597.857933px;}
.y1f{bottom:637.382918px;}
.y1d{bottom:638.357931px;}
.y3b{bottom:686.755167px;}
.y2f{bottom:711.166744px;}
.y3a{bottom:721.630165px;}
.y39{bottom:756.505164px;}
.y30{bottom:757.973730px;}
.y38{bottom:791.380162px;}
.y2e{bottom:814.459866px;}
.y37{bottom:826.255161px;}
.y2d{bottom:851.584864px;}
.y36{bottom:861.130159px;}
.y3c{bottom:879.509847px;}
.y2{bottom:892.319287px;}
.y13{bottom:946.011582px;}
.y12{bottom:989.886580px;}
.y11{bottom:1033.761579px;}
.y10{bottom:1077.636577px;}
.yf{bottom:1126.162902px;}
.h4{height:17.999999px;}
.h9{height:33.119999px;}
.h7{height:34.559999px;}
.ha{height:43.398738px;}
.he{height:44.603998px;}
.h5{height:48.208765px;}
.h6{height:48.209489px;}
.h14{height:49.547608px;}
.hb{height:50.399998px;}
.h15{height:56.985747px;}
.h12{height:78.131337px;}
.h13{height:84.227216px;}
.h11{height:89.207996px;}
.h8{height:96.417530px;}
.hf{height:96.418980px;}
.h10{height:101.362586px;}
.hd{height:104.075996px;}
.h3{height:121.211369px;}
.hc{height:223.079430px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w6{width:209.519991px;}
.w3{width:407.519983px;}
.w2{width:709.559970px;}
.w5{width:882.359963px;}
.w4{width:1687.319930px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x2{left:20.879999px;}
.x9{left:24.113572px;}
.x24{left:83.601558px;}
.x1{left:86.589840px;}
.x1f{left:267.688532px;}
.x21{left:305.913790px;}
.x5{left:322.707928px;}
.x1d{left:329.044973px;}
.x22{left:330.864311px;}
.x6{left:337.209881px;}
.x7{left:338.914959px;}
.x1e{left:340.628959px;}
.x20{left:409.227588px;}
.x4{left:429.439991px;}
.x15{left:779.658991px;}
.x12{left:786.989069px;}
.x14{left:796.727350px;}
.x13{left:802.721490px;}
.x17{left:804.496880px;}
.xc{left:856.489536px;}
.xd{left:864.645786px;}
.x18{left:899.383595px;}
.x8{left:922.262596px;}
.x16{left:965.371874px;}
.xa{left:1115.925326px;}
.xb{left:1126.964388px;}
.x3{left:1182.599951px;}
.x10{left:1436.548747px;}
.x1b{left:1457.917399px;}
.x11{left:1478.341521px;}
.x19{left:1483.174203px;}
.x1c{left:1514.050153px;}
.xf{left:1518.955785px;}
.x1a{left:1593.898807px;}
.x25{left:1788.234189px;}
.x26{left:1970.449026px;}
.xe{left:1976.315534px;}
.x27{left:1985.443171px;}
.x23{left:1987.294829px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.041660pt;}
.ws0{word-spacing:-27.653280pt;}
.ws4{word-spacing:-23.124959pt;}
.ws3{word-spacing:-21.997120pt;}
.ws2{word-spacing:-21.996789pt;}
.ws6{word-spacing:-20.351999pt;}
.ws7{word-spacing:-19.215679pt;}
.ws5{word-spacing:-17.824959pt;}
.ws1{word-spacing:-11.064000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-10.749390pt;}
._5{margin-left:-8.829283pt;}
._8{margin-left:-6.549104pt;}
._9{margin-left:-4.309835pt;}
._2{margin-left:-3.176030pt;}
._0{margin-left:-2.024689pt;}
._3{margin-left:-0.914062pt;}
._4{width:1.541794pt;}
._6{width:2.993722pt;}
._7{width:6.084435pt;}
.fs4{font-size:46.702974pt;}
.fs7{font-size:47.999998pt;}
.fs1{font-size:51.879219pt;}
.fs2{font-size:51.879999pt;}
.fsd{font-size:53.319997pt;}
.fsb{font-size:84.079996pt;}
.fsc{font-size:90.639996pt;}
.fsa{font-size:95.999996pt;}
.fs3{font-size:103.758440pt;}
.fs8{font-size:103.760000pt;}
.fs9{font-size:109.079995pt;}
.fs6{font-size:111.999995pt;}
.fs0{font-size:130.439999pt;}
.fs5{font-size:259.159993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.ye{bottom:2.920111pt;}
.ya{bottom:2.953551pt;}
.y4{bottom:3.149314pt;}
.y7{bottom:6.125738pt;}
.y1c{bottom:6.136285pt;}
.y8{bottom:17.920008pt;}
.yd{bottom:18.487769pt;}
.y9{bottom:18.521208pt;}
.yc{bottom:34.055427pt;}
.y5{bottom:57.652030pt;}
.y3{bottom:76.800006pt;}
.yb{bottom:110.400004pt;}
.y1a{bottom:119.383899pt;}
.y19{bottom:135.383898pt;}
.y18{bottom:151.383898pt;}
.y6{bottom:160.000002pt;}
.y17{bottom:167.383897pt;}
.y16{bottom:183.383896pt;}
.y15{bottom:199.383896pt;}
.y3e{bottom:207.827415pt;}
.y14{bottom:215.383895pt;}
.y1b{bottom:227.520000pt;}
.y2c{bottom:273.947125pt;}
.y2b{bottom:302.947123pt;}
.y2a{bottom:331.947122pt;}
.y35{bottom:336.387730pt;}
.y29{bottom:360.947121pt;}
.y34{bottom:362.793905pt;}
.y23{bottom:363.821233pt;}
.y3d{bottom:378.355600pt;}
.y28{bottom:389.947120pt;}
.y33{bottom:395.793904pt;}
.y21{bottom:403.459407pt;}
.y22{bottom:416.098703pt;}
.y27{bottom:418.947119pt;}
.y32{bottom:434.270798pt;}
.y26{bottom:447.947117pt;}
.y24{bottom:468.537452pt;}
.y25{bottom:476.947116pt;}
.y31{bottom:478.327244pt;}
.y20{bottom:528.562596pt;}
.y1e{bottom:531.429274pt;}
.y1f{bottom:566.562594pt;}
.y1d{bottom:567.429272pt;}
.y3b{bottom:610.449037pt;}
.y2f{bottom:632.148217pt;}
.y3a{bottom:641.449036pt;}
.y39{bottom:672.449034pt;}
.y30{bottom:673.754426pt;}
.y38{bottom:703.449033pt;}
.y2e{bottom:723.964325pt;}
.y37{bottom:734.449032pt;}
.y2d{bottom:756.964324pt;}
.y36{bottom:765.449031pt;}
.y3c{bottom:781.786531pt;}
.y2{bottom:793.172700pt;}
.y13{bottom:840.899184pt;}
.y12{bottom:879.899183pt;}
.y11{bottom:918.899181pt;}
.y10{bottom:957.899179pt;}
.yf{bottom:1001.033690pt;}
.h4{height:15.999999pt;}
.h9{height:29.439999pt;}
.h7{height:30.719999pt;}
.ha{height:38.576656pt;}
.he{height:39.647998pt;}
.h5{height:42.852235pt;}
.h6{height:42.852879pt;}
.h14{height:44.042318pt;}
.hb{height:44.799998pt;}
.h15{height:50.653998pt;}
.h12{height:69.450077pt;}
.h13{height:74.868637pt;}
.h11{height:79.295997pt;}
.h8{height:85.704471pt;}
.hf{height:85.705760pt;}
.h10{height:90.100076pt;}
.hd{height:92.511996pt;}
.h3{height:107.743439pt;}
.hc{height:198.292827pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w6{width:186.239992pt;}
.w3{width:362.239985pt;}
.w2{width:630.719974pt;}
.w5{width:784.319967pt;}
.w4{width:1499.839938pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x2{left:18.559999pt;}
.x9{left:21.434286pt;}
.x24{left:74.312496pt;}
.x1{left:76.968747pt;}
.x1f{left:237.945361pt;}
.x21{left:271.923369pt;}
.x5{left:286.851492pt;}
.x1d{left:292.484421pt;}
.x22{left:294.101610pt;}
.x6{left:299.742116pt;}
.x7{left:301.257741pt;}
.x1e{left:302.781297pt;}
.x20{left:363.757856pt;}
.x4{left:381.724436pt;}
.x15{left:693.030214pt;}
.x12{left:699.545839pt;}
.x14{left:708.202088pt;}
.x13{left:713.530213pt;}
.x17{left:715.108338pt;}
.xc{left:761.324032pt;}
.xd{left:768.574032pt;}
.x18{left:799.452085pt;}
.x8{left:819.788975pt;}
.x16{left:858.108332pt;}
.xa{left:991.933623pt;}
.xb{left:1001.746122pt;}
.x3{left:1051.199956pt;}
.x10{left:1276.932220pt;}
.x1b{left:1295.926577pt;}
.x11{left:1314.081352pt;}
.x19{left:1318.377069pt;}
.x1c{left:1345.822358pt;}
.xf{left:1350.182920pt;}
.x1a{left:1416.798940pt;}
.x25{left:1589.541502pt;}
.x26{left:1751.510245pt;}
.xe{left:1756.724919pt;}
.x27{left:1764.838374pt;}
.x23{left:1766.484292pt;}
}




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