
    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_6982a1f47a26c362a2bd72f9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_912c9f9a894eac9c8904f46c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f16c5383dadcf22d0e6926cd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946289;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_2d442f2d8e141101361f93c5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ebcc7820f5638854139fd365.woff')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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;}
.ls2{letter-spacing:0.008460px;}
.ls1{letter-spacing:107.986542px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-46.536000px;}
.ws2{word-spacing:-36.564002px;}
.ws4{word-spacing:-23.268000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:61.609914px;}
._2{margin-left:-16.872001px;}
._7{margin-left:-12.432000px;}
._1{margin-left:-10.656000px;}
._6{margin-left:-8.915130px;}
._a{margin-left:-7.370028px;}
._8{margin-left:-6.216000px;}
._0{margin-left:-5.184000px;}
._4{margin-left:-2.592000px;}
._3{width:1.041178px;}
._9{width:3.520800px;}
._5{width:108.000566px;}
.fc4{color:rgb(0,46,94);}
.fc3{color:transparent;}
.fc2{color:rgb(0,39,76);}
.fc1{color:rgb(255,218,80);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:72.000002px;}
.fs3{font-size:84.000000px;}
.fsa{font-size:132.000007px;}
.fsf{font-size:138.000001px;}
.fs2{font-size:144.000005px;}
.fs6{font-size:156.000011px;}
.fs5{font-size:167.999999px;}
.fsb{font-size:174.000012px;}
.fse{font-size:186.000000px;}
.fsc{font-size:192.000012px;}
.fs0{font-size:204.000001px;}
.fs7{font-size:216.000007px;}
.fs4{font-size:228.000013px;}
.fs1{font-size:288.000009px;}
.fsd{font-size:432.000014px;}
.fs9{font-size:480.000003px;}
.y0{bottom:0.000000px;}
.y1b{bottom:15.436514px;}
.y7{bottom:16.208983px;}
.y26{bottom:35.703485px;}
.y1a{bottom:36.811517px;}
.y1f{bottom:50.338692px;}
.y4b{bottom:56.339627px;}
.y6{bottom:58.777200px;}
.y53{bottom:74.077779px;}
.y3d{bottom:80.195889px;}
.y45{bottom:90.089628px;}
.y2c{bottom:90.871718px;}
.y4a{bottom:97.214636px;}
.y5{bottom:101.977206px;}
.y19{bottom:103.756135px;}
.ye{bottom:115.475418px;}
.y16{bottom:118.756143px;}
.y52{bottom:123.577781px;}
.y3c{bottom:129.695891px;}
.y2b{bottom:133.621719px;}
.y25{bottom:134.815695px;}
.y36{bottom:136.441054px;}
.y4{bottom:145.177208px;}
.y18{bottom:146.956125px;}
.y15{bottom:161.956122px;}
.yd{bottom:167.840412px;}
.y49{bottom:168.839630px;}
.y51{bottom:173.077782px;}
.y44{bottom:173.339631px;}
.y2a{bottom:176.371726px;}
.y17{bottom:205.156123px;}
.y48{bottom:209.714628px;}
.y43{bottom:214.964632px;}
.y14{bottom:220.156109px;}
.y50{bottom:222.577784px;}
.y3b{bottom:228.695894px;}
.y20{bottom:232.647936px;}
.y1e{bottom:232.649410px;}
.yc{bottom:238.100399px;}
.y42{bottom:256.589633px;}
.y22{bottom:257.814233px;}
.y2f{bottom:259.931768px;}
.y13{bottom:263.356110px;}
.y35{bottom:265.816058px;}
.y4f{bottom:272.077786px;}
.y3a{bottom:278.195896px;}
.y47{bottom:280.589642px;}
.yb{bottom:290.465416px;}
.y2e{bottom:302.681769px;}
.y12{bottom:321.556108px;}
.y4e{bottom:321.577787px;}
.y41{bottom:339.839636px;}
.y2d{bottom:345.431770px;}
.y3{bottom:349.225858px;}
.y46{bottom:351.464644px;}
.ya{bottom:362.345426px;}
.y11{bottom:364.756110px;}
.y23{bottom:365.420048px;}
.y4d{bottom:371.077789px;}
.y39{bottom:377.195899px;}
.y40{bottom:381.464637px;}
.y34{bottom:395.191066px;}
.y33{bottom:407.705396px;}
.y9{bottom:417.965432px;}
.y4c{bottom:420.577790px;}
.y3f{bottom:423.089639px;}
.y38{bottom:426.695900px;}
.y2{bottom:435.625861px;}
.y10{bottom:449.614712px;}
.y32{bottom:450.455397px;}
.y24{bottom:473.024382px;}
.y1d{bottom:476.419831px;}
.y29{bottom:487.907598px;}
.y31{bottom:493.205399px;}
.y8{bottom:509.525077px;}
.yf{bottom:514.864722px;}
.y37{bottom:515.660902px;}
.y1{bottom:516.985866px;}
.y3e{bottom:518.172994px;}
.y21{bottom:535.654368px;}
.y30{bottom:535.955404px;}
.y27{bottom:538.889498px;}
.y1c{bottom:541.669841px;}
.y28{bottom:545.507595px;}
.h9{height:53.085939px;}
.h4{height:61.195312px;}
.hd{height:96.099615px;}
.hb{height:96.164068px;}
.h14{height:100.535157px;}
.h12{height:104.835941px;}
.h3{height:104.906253px;}
.h7{height:113.648446px;}
.he{height:122.308593px;}
.h6{height:122.390625px;}
.hc{height:126.676766px;}
.h13{height:135.503906px;}
.hf{height:139.781259px;}
.h1{height:148.517579px;}
.h8{height:157.253911px;}
.h5{height:165.990244px;}
.h11{height:166.101572px;}
.h2{height:209.671882px;}
.h10{height:314.507823px;}
.ha{height:319.921877px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1c{left:18.791339px;}
.x1{left:39.820868px;}
.x3{left:46.939963px;}
.x9{left:49.030512px;}
.x2a{left:52.195822px;}
.xa{left:54.286372px;}
.x2d{left:58.340556px;}
.x28{left:59.923228px;}
.x2c{left:64.768702px;}
.x21{left:74.116295px;}
.x4{left:82.328285px;}
.x20{left:89.110436px;}
.x10{left:91.234848px;}
.x22{left:94.093835px;}
.x2b{left:100.939964px;}
.xb{left:103.030514px;}
.x14{left:104.243434px;}
.x12{left:116.293239px;}
.x6{left:126.670443px;}
.x5{left:134.692920px;}
.x7{left:188.692922px;}
.x8{left:193.854336px;}
.x15{left:257.278598px;}
.x11{left:326.548822px;}
.x16{left:398.200105px;}
.x1b{left:446.345415px;}
.x19{left:453.499372px;}
.x13{left:465.301759px;}
.x1a{left:490.149938px;}
.x18{left:494.717247px;}
.x17{left:499.011102px;}
.xc{left:597.425194px;}
.xd{left:602.681054px;}
.xe{left:651.425196px;}
.xf{left:772.592987px;}
.x1d{left:828.903847px;}
.x1f{left:833.887246px;}
.x25{left:853.681363px;}
.x1e{left:856.914591px;}
.x26{left:862.672575px;}
.x24{left:867.682341px;}
.x23{left:880.681364px;}
.x27{left:1041.980508px;}
.x29{left:1043.539107px;}
.x2{left:1053.653190px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007520pt;}
.ls1{letter-spacing:95.988037pt;}
.ws3{word-spacing:-41.365333pt;}
.ws2{word-spacing:-32.501335pt;}
.ws4{word-spacing:-20.682667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:54.764368pt;}
._2{margin-left:-14.997334pt;}
._7{margin-left:-11.050667pt;}
._1{margin-left:-9.472000pt;}
._6{margin-left:-7.924560pt;}
._a{margin-left:-6.551136pt;}
._8{margin-left:-5.525333pt;}
._0{margin-left:-4.608000pt;}
._4{margin-left:-2.304000pt;}
._3{width:0.925492pt;}
._9{width:3.129600pt;}
._5{width:96.000503pt;}
.fs8{font-size:64.000002pt;}
.fs3{font-size:74.666666pt;}
.fsa{font-size:117.333340pt;}
.fsf{font-size:122.666668pt;}
.fs2{font-size:128.000004pt;}
.fs6{font-size:138.666676pt;}
.fs5{font-size:149.333333pt;}
.fsb{font-size:154.666677pt;}
.fse{font-size:165.333333pt;}
.fsc{font-size:170.666677pt;}
.fs0{font-size:181.333334pt;}
.fs7{font-size:192.000006pt;}
.fs4{font-size:202.666678pt;}
.fs1{font-size:256.000008pt;}
.fsd{font-size:384.000012pt;}
.fs9{font-size:426.666670pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:13.721346pt;}
.y7{bottom:14.407985pt;}
.y26{bottom:31.736431pt;}
.y1a{bottom:32.721349pt;}
.y1f{bottom:44.745504pt;}
.y4b{bottom:50.079668pt;}
.y6{bottom:52.246400pt;}
.y53{bottom:65.846915pt;}
.y3d{bottom:71.285235pt;}
.y45{bottom:80.079669pt;}
.y2c{bottom:80.774860pt;}
.y4a{bottom:86.413009pt;}
.y5{bottom:90.646406pt;}
.y19{bottom:92.227676pt;}
.ye{bottom:102.644816pt;}
.y16{bottom:105.561016pt;}
.y52{bottom:109.846916pt;}
.y3c{bottom:115.285236pt;}
.y2b{bottom:118.774862pt;}
.y25{bottom:119.836174pt;}
.y36{bottom:121.280937pt;}
.y4{bottom:129.046407pt;}
.y18{bottom:130.627667pt;}
.y15{bottom:143.960997pt;}
.yd{bottom:149.191477pt;}
.y49{bottom:150.079672pt;}
.y51{bottom:153.846918pt;}
.y44{bottom:154.079672pt;}
.y2a{bottom:156.774868pt;}
.y17{bottom:182.360999pt;}
.y48{bottom:186.413003pt;}
.y43{bottom:191.079673pt;}
.y14{bottom:195.694319pt;}
.y50{bottom:197.846919pt;}
.y3b{bottom:203.285239pt;}
.y20{bottom:206.798165pt;}
.y1e{bottom:206.799475pt;}
.yc{bottom:211.644799pt;}
.y42{bottom:228.079674pt;}
.y22{bottom:229.168207pt;}
.y2f{bottom:231.050460pt;}
.y13{bottom:234.094320pt;}
.y35{bottom:236.280940pt;}
.y4f{bottom:241.846920pt;}
.y3a{bottom:247.285241pt;}
.y47{bottom:249.413015pt;}
.yb{bottom:258.191481pt;}
.y2e{bottom:269.050461pt;}
.y12{bottom:285.827652pt;}
.y4e{bottom:285.846922pt;}
.y41{bottom:302.079676pt;}
.y2d{bottom:307.050463pt;}
.y3{bottom:310.422985pt;}
.y46{bottom:312.413017pt;}
.ya{bottom:322.084823pt;}
.y11{bottom:324.227653pt;}
.y23{bottom:324.817820pt;}
.y4d{bottom:329.846923pt;}
.y39{bottom:335.285243pt;}
.y40{bottom:339.079678pt;}
.y34{bottom:351.280948pt;}
.y33{bottom:362.404796pt;}
.y9{bottom:371.524829pt;}
.y4c{bottom:373.846925pt;}
.y3f{bottom:376.079679pt;}
.y38{bottom:379.285245pt;}
.y2{bottom:387.222987pt;}
.y10{bottom:399.657522pt;}
.y32{bottom:400.404798pt;}
.y24{bottom:420.466117pt;}
.y1d{bottom:423.484294pt;}
.y29{bottom:433.695643pt;}
.y31{bottom:438.404799pt;}
.y8{bottom:452.911179pt;}
.yf{bottom:457.657530pt;}
.y37{bottom:458.365246pt;}
.y1{bottom:459.542992pt;}
.y3e{bottom:460.598216pt;}
.y21{bottom:476.137216pt;}
.y30{bottom:476.404804pt;}
.y27{bottom:479.012887pt;}
.y1c{bottom:481.484303pt;}
.y28{bottom:484.895640pt;}
.h9{height:47.187502pt;}
.h4{height:54.395833pt;}
.hd{height:85.421880pt;}
.hb{height:85.479171pt;}
.h14{height:89.364584pt;}
.h12{height:93.187503pt;}
.h3{height:93.250003pt;}
.h7{height:101.020840pt;}
.he{height:108.718750pt;}
.h6{height:108.791666pt;}
.hc{height:112.601570pt;}
.h13{height:120.447917pt;}
.hf{height:124.250008pt;}
.h1{height:132.015625pt;}
.h8{height:139.781254pt;}
.h5{height:147.546884pt;}
.h11{height:147.645842pt;}
.h2{height:186.375006pt;}
.h10{height:279.562509pt;}
.ha{height:284.375002pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:16.703413pt;}
.x1{left:35.396327pt;}
.x3{left:41.724411pt;}
.x9{left:43.582677pt;}
.x2a{left:46.396286pt;}
.xa{left:48.254553pt;}
.x2d{left:51.858272pt;}
.x28{left:53.265092pt;}
.x2c{left:57.572180pt;}
.x21{left:65.881152pt;}
.x4{left:73.180697pt;}
.x20{left:79.209277pt;}
.x10{left:81.097643pt;}
.x22{left:83.638965pt;}
.x2b{left:89.724413pt;}
.xb{left:91.582679pt;}
.x14{left:92.660830pt;}
.x12{left:103.371768pt;}
.x6{left:112.595950pt;}
.x5{left:119.727040pt;}
.x7{left:167.727041pt;}
.x8{left:172.314966pt;}
.x15{left:228.692087pt;}
.x11{left:290.265619pt;}
.x16{left:353.955649pt;}
.x1b{left:396.751480pt;}
.x19{left:403.110553pt;}
.x13{left:413.601563pt;}
.x1a{left:435.688834pt;}
.x18{left:439.748664pt;}
.x17{left:443.565424pt;}
.xc{left:531.044617pt;}
.xd{left:535.716492pt;}
.xe{left:579.044619pt;}
.xf{left:686.749322pt;}
.x1d{left:736.803420pt;}
.x1f{left:741.233108pt;}
.x25{left:758.827878pt;}
.x1e{left:761.701858pt;}
.x26{left:766.820067pt;}
.x24{left:771.273192pt;}
.x23{left:782.827879pt;}
.x27{left:926.204896pt;}
.x29{left:927.590318pt;}
.x2{left:936.580613pt;}
}




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