
    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_69a629e4360ea7569b48926d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_b9abfe4ddfedbc5672384403.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851000;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_96f9d0e16ddddd593a299124.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1ee5401449f868682df03a63.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_41a17c2a9dedc60215ff83f6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.723145;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_e73be815896d6c01fb60e2a6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4d39fa3c9dcecf609f77ab5b.woff')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;}
.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);}
.v1{vertical-align:-16.502603px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:108.010533px;}
.ls1{letter-spacing:108.010551px;}
.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;}
}
.ws2{word-spacing:-59.664003px;}
.ws3{word-spacing:-35.120401px;}
.wsc{word-spacing:-32.544001px;}
.ws4{word-spacing:-32.272802px;}
.ws0{word-spacing:-31.680001px;}
.ws7{word-spacing:-27.526800px;}
.ws6{word-spacing:-26.577603px;}
.ws9{word-spacing:-24.408001px;}
.wsa{word-spacing:-21.696001px;}
.wsb{word-spacing:-20.340001px;}
.ws8{word-spacing:-12.204000px;}
.wsd{word-spacing:-0.111000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:1684.193297px;}
._4{margin-left:-16.368001px;}
._1{margin-left:-10.368000px;}
._3{margin-left:-8.784000px;}
._2{margin-left:-7.488000px;}
._8{margin-left:-5.472000px;}
._6{margin-left:-4.394400px;}
._5{margin-left:-2.904000px;}
._0{margin-left:-1.008000px;}
._7{width:1.999200px;}
._9{width:3.492000px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,95,170);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc5{color:rgb(19,68,68);}
.fc1{color:rgb(30,57,108);}
.fc0{color:rgb(8,122,192);}
.fsf{font-size:54.000002px;}
.fse{font-size:63.000002px;}
.fsd{font-size:72.000002px;}
.fsc{font-size:84.000000px;}
.fs11{font-size:90.000003px;}
.fs10{font-size:96.000006px;}
.fs12{font-size:105.000006px;}
.fs1{font-size:108.000003px;}
.fs6{font-size:111.000001px;}
.fs14{font-size:114.000007px;}
.fsa{font-size:117.600011px;}
.fsb{font-size:121.800001px;}
.fs5{font-size:133.200013px;}
.fs8{font-size:142.800008px;}
.fs0{font-size:144.000005px;}
.fs4{font-size:155.400003px;}
.fs13{font-size:213.599990px;}
.fs7{font-size:237.600008px;}
.fs2{font-size:240.000002px;}
.fs3{font-size:264.000014px;}
.fs9{font-size:360.000012px;}
.y2e{bottom:-166.875201px;}
.y2d{bottom:-141.675207px;}
.y2c{bottom:-116.475208px;}
.y0{bottom:0.000000px;}
.y6{bottom:84.005421px;}
.y2b{bottom:91.790837px;}
.y1c{bottom:102.398778px;}
.y21{bottom:109.102045px;}
.y2a{bottom:117.368816px;}
.y11{bottom:121.141638px;}
.y5{bottom:129.365423px;}
.y40{bottom:131.414126px;}
.y1b{bottom:132.386801px;}
.y4b{bottom:139.635503px;}
.y20{bottom:141.736046px;}
.y37{bottom:150.774072px;}
.y10{bottom:155.681198px;}
.y29{bottom:157.946836px;}
.y36{bottom:168.270061px;}
.y3f{bottom:169.094123px;}
.y1a{bottom:177.374799px;}
.y4a{bottom:177.945523px;}
.y4{bottom:183.025573px;}
.yf{bottom:186.491203px;}
.y35{bottom:187.710062px;}
.y1f{bottom:189.370022px;}
.y28{bottom:198.348422px;}
.y3e{bottom:206.774125px;}
.y19{bottom:207.362800px;}
.y49{bottom:216.255531px;}
.ye{bottom:218.233608px;}
.y3{bottom:232.705563px;}
.y3d{bottom:236.954128px;}
.y1e{bottom:237.004008px;}
.y27{bottom:238.044419px;}
.y34{bottom:240.684052px;}
.y18{bottom:252.350797px;}
.y48{bottom:254.565517px;}
.yd{bottom:254.638012px;}
.y33{bottom:257.694041px;}
.y1d{bottom:269.638009px;}
.y3c{bottom:273.905213px;}
.y32{bottom:275.190042px;}
.y26{bottom:277.740406px;}
.y17{bottom:282.338798px;}
.y2{bottom:282.385553px;}
.y47{bottom:294.261504px;}
.y3b{bottom:300.473214px;}
.yc{bottom:302.272010px;}
.y25{bottom:302.436412px;}
.y31{bottom:322.818046px;}
.y16{bottom:327.326819px;}
.y1{bottom:332.065555px;}
.yb{bottom:334.906011px;}
.y30{bottom:337.884044px;}
.y46{bottom:338.241490px;}
.y24{bottom:342.132415px;}
.y3a{bottom:344.633217px;}
.y2f{bottom:355.380044px;}
.y15{bottom:357.314814px;}
.y45{bottom:377.181488px;}
.y39{bottom:381.293214px;}
.y23{bottom:381.828413px;}
.ya{bottom:382.540009px;}
.y7{bottom:384.783364px;}
.y14{bottom:387.302813px;}
.y9{bottom:415.174010px;}
.y44{bottom:416.121485px;}
.y13{bottom:417.290811px;}
.y38{bottom:417.953212px;}
.y22{bottom:421.524410px;}
.y43{bottom:455.061485px;}
.y8{bottom:495.059618px;}
.y42{bottom:495.261480px;}
.y12{bottom:497.198025px;}
.y41{bottom:552.264485px;}
.h10{height:38.759767px;}
.hf{height:45.219728px;}
.he{height:51.679689px;}
.hd{height:61.154297px;}
.h13{height:68.906254px;}
.h12{height:71.982424px;}
.h14{height:75.366216px;}
.h11{height:77.519534px;}
.h2{height:78.624003px;}
.h7{height:79.672852px;}
.h17{height:81.826177px;}
.hb{height:84.410164px;}
.hc{height:87.424805px;}
.h6{height:95.607431px;}
.h16{height:98.437503px;}
.h9{height:102.498052px;}
.h1{height:102.528003px;}
.h5{height:111.541995px;}
.h15{height:153.316399px;}
.h8{height:170.542974px;}
.h3{height:170.880001px;}
.h4{height:189.492198px;}
.ha{height:243.829437px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xd{left:30.738189px;}
.xc{left:41.234729px;}
.x1{left:44.805118px;}
.x3{left:84.375003px;}
.x8{left:97.875003px;}
.x4{left:101.922366px;}
.x2{left:109.572275px;}
.x5{left:138.375004px;}
.x6{left:155.922372px;}
.x7{left:209.922374px;}
.xa{left:730.630531px;}
.xb{left:784.630533px;}
.x9{left:1219.843614px;}
@media print{
.v1{vertical-align:-14.668980pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:96.009363pt;}
.ls1{letter-spacing:96.009379pt;}
.ws2{word-spacing:-53.034670pt;}
.ws3{word-spacing:-31.218134pt;}
.wsc{word-spacing:-28.928001pt;}
.ws4{word-spacing:-28.686935pt;}
.ws0{word-spacing:-28.160001pt;}
.ws7{word-spacing:-24.468267pt;}
.ws6{word-spacing:-23.624536pt;}
.ws9{word-spacing:-21.696001pt;}
.wsa{word-spacing:-19.285335pt;}
.wsb{word-spacing:-18.080001pt;}
.ws8{word-spacing:-10.848000pt;}
.wsd{word-spacing:-0.098667pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:1497.060709pt;}
._4{margin-left:-14.549334pt;}
._1{margin-left:-9.216000pt;}
._3{margin-left:-7.808000pt;}
._2{margin-left:-6.656000pt;}
._8{margin-left:-4.864000pt;}
._6{margin-left:-3.906133pt;}
._5{margin-left:-2.581333pt;}
._0{margin-left:-0.896000pt;}
._7{width:1.777067pt;}
._9{width:3.104000pt;}
.fsf{font-size:48.000002pt;}
.fse{font-size:56.000002pt;}
.fsd{font-size:64.000002pt;}
.fsc{font-size:74.666666pt;}
.fs11{font-size:80.000003pt;}
.fs10{font-size:85.333339pt;}
.fs12{font-size:93.333339pt;}
.fs1{font-size:96.000003pt;}
.fs6{font-size:98.666667pt;}
.fs14{font-size:101.333339pt;}
.fsa{font-size:104.533343pt;}
.fsb{font-size:108.266667pt;}
.fs5{font-size:118.400012pt;}
.fs8{font-size:126.933340pt;}
.fs0{font-size:128.000004pt;}
.fs4{font-size:138.133336pt;}
.fs13{font-size:189.866658pt;}
.fs7{font-size:211.200007pt;}
.fs2{font-size:213.333335pt;}
.fs3{font-size:234.666680pt;}
.fs9{font-size:320.000010pt;}
.y2e{bottom:-148.333512pt;}
.y2d{bottom:-125.933517pt;}
.y2c{bottom:-103.533519pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:74.671485pt;}
.y2b{bottom:81.591855pt;}
.y1c{bottom:91.021136pt;}
.y21{bottom:96.979596pt;}
.y2a{bottom:104.327836pt;}
.y11{bottom:107.681456pt;}
.y5{bottom:114.991487pt;}
.y40{bottom:116.812556pt;}
.y1b{bottom:117.677156pt;}
.y4b{bottom:124.120447pt;}
.y20{bottom:125.987597pt;}
.y37{bottom:134.021397pt;}
.y10{bottom:138.383287pt;}
.y29{bottom:140.397187pt;}
.y36{bottom:149.573388pt;}
.y3f{bottom:150.305888pt;}
.y1a{bottom:157.666488pt;}
.y4a{bottom:158.173798pt;}
.y4{bottom:162.689398pt;}
.yf{bottom:165.769958pt;}
.y35{bottom:166.853388pt;}
.y1f{bottom:168.328908pt;}
.y28{bottom:176.309708pt;}
.y3e{bottom:183.799223pt;}
.y19{bottom:184.322489pt;}
.y49{bottom:192.227139pt;}
.ye{bottom:193.985429pt;}
.y3{bottom:206.849389pt;}
.y3d{bottom:210.625891pt;}
.y1e{bottom:210.670229pt;}
.y27{bottom:211.595039pt;}
.y34{bottom:213.941380pt;}
.y18{bottom:224.311820pt;}
.y48{bottom:226.280460pt;}
.yd{bottom:226.344900pt;}
.y33{bottom:229.061370pt;}
.y1d{bottom:239.678230pt;}
.y3c{bottom:243.471301pt;}
.y32{bottom:244.613371pt;}
.y26{bottom:246.880361pt;}
.y17{bottom:250.967821pt;}
.y2{bottom:251.009381pt;}
.y47{bottom:261.565781pt;}
.y3b{bottom:267.087301pt;}
.yc{bottom:268.686231pt;}
.y25{bottom:268.832366pt;}
.y31{bottom:286.949374pt;}
.y16{bottom:290.957172pt;}
.y1{bottom:295.169382pt;}
.yb{bottom:297.694232pt;}
.y30{bottom:300.341372pt;}
.y46{bottom:300.659102pt;}
.y24{bottom:304.117702pt;}
.y3a{bottom:306.340638pt;}
.y2f{bottom:315.893373pt;}
.y15{bottom:317.613168pt;}
.y45{bottom:335.272433pt;}
.y39{bottom:338.927302pt;}
.y23{bottom:339.403034pt;}
.ya{bottom:340.035564pt;}
.y7{bottom:342.029657pt;}
.y14{bottom:344.269167pt;}
.y9{bottom:369.043565pt;}
.y44{bottom:369.885765pt;}
.y13{bottom:370.925166pt;}
.y38{bottom:371.513967pt;}
.y22{bottom:374.688365pt;}
.y43{bottom:404.499098pt;}
.y8{bottom:440.052994pt;}
.y42{bottom:440.232427pt;}
.y12{bottom:441.953800pt;}
.y41{bottom:490.901764pt;}
.h10{height:34.453126pt;}
.hf{height:40.195314pt;}
.he{height:45.937501pt;}
.hd{height:54.359375pt;}
.h13{height:61.250004pt;}
.h12{height:63.984377pt;}
.h14{height:66.992192pt;}
.h11{height:68.906252pt;}
.h2{height:69.888002pt;}
.h7{height:70.820313pt;}
.h17{height:72.734379pt;}
.hb{height:75.031257pt;}
.hc{height:77.710938pt;}
.h6{height:84.984383pt;}
.h16{height:87.500003pt;}
.h9{height:91.109380pt;}
.h1{height:91.136003pt;}
.h5{height:99.148440pt;}
.h15{height:136.281244pt;}
.h8{height:151.593755pt;}
.h3{height:151.893334pt;}
.h4{height:168.437509pt;}
.ha{height:216.737277pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xd{left:27.322835pt;}
.xc{left:36.653092pt;}
.x1{left:39.826771pt;}
.x3{left:75.000002pt;}
.x8{left:87.000003pt;}
.x4{left:90.597659pt;}
.x2{left:97.397578pt;}
.x5{left:123.000004pt;}
.x6{left:138.597664pt;}
.x7{left:186.597666pt;}
.xa{left:649.449361pt;}
.xb{left:697.449362pt;}
.x9{left:1084.305435pt;}
}




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