
    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_d14baeaa8d8e72bdc6c59857.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084000;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_6c45df64d3b5c57608a36ecc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137000;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_87161ec013bff4b19283f77b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137000;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_dae7324abf3896f793604bb9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_9bc5ec709a4f90b8c2421d94.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.139000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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;}
.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;}
}
.ws3{word-spacing:-18.006785px;}
.ws1{word-spacing:-16.498716px;}
.ws5{word-spacing:-15.001902px;}
.ws2{word-spacing:-12.004685px;}
.ws7{word-spacing:-10.504681px;}
.ws8{word-spacing:-10.504089px;}
.ws4{word-spacing:-6.996050px;}
.ws6{word-spacing:-5.901460px;}
.ws0{word-spacing:0.000000px;}
._1d{margin-left:-1.000028px;}
._1b{width:1.029622px;}
._11{width:2.218635px;}
._b{width:4.357504px;}
._25{width:5.736708px;}
._c{width:8.119470px;}
._1{width:9.856580px;}
._d{width:11.150091px;}
._3{width:12.603973px;}
._18{width:14.035759px;}
._0{width:15.209972px;}
._2{width:18.020747px;}
._1e{width:19.328042px;}
._15{width:21.268607px;}
._4{width:23.651644px;}
._f{width:25.644476px;}
._24{width:26.756317px;}
._21{width:28.404194px;}
._19{width:29.975760px;}
._1c{width:31.232654px;}
._8{width:33.030891px;}
._a{width:34.814965px;}
._13{width:36.981376px;}
._16{width:39.236551px;}
._20{width:40.973641px;}
._9{width:42.360025px;}
._6{width:47.194307px;}
._14{width:48.379182px;}
._28{width:51.470927px;}
._5{width:53.968515px;}
._27{width:58.203599px;}
._22{width:64.915527px;}
._1a{width:66.359267px;}
._7{width:68.163581px;}
._e{width:69.332798px;}
._29{width:73.768364px;}
._12{width:76.550676px;}
._23{width:81.019379px;}
._10{width:83.118466px;}
._26{width:90.039463px;}
._17{width:115.601668px;}
._1f{width:125.069646px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs6{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs7{font-size:29.750527px;}
.fs9{font-size:42.016355px;}
.fs8{font-size:42.018724px;}
.fs3{font-size:48.018742px;}
.fs5{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y59{bottom:5.617766px;}
.y58{bottom:15.534608px;}
.y57{bottom:25.451451px;}
.y54{bottom:29.655019px;}
.y56{bottom:35.368293px;}
.y50{bottom:35.514983px;}
.y4b{bottom:36.952369px;}
.y55{bottom:45.285135px;}
.y48{bottom:53.251117px;}
.y4f{bottom:53.870950px;}
.y53{bottom:54.744267px;}
.y2f{bottom:61.381572px;}
.y47{bottom:69.257364px;}
.y4e{bottom:71.009182px;}
.y2e{bottom:77.387820px;}
.y2d{bottom:93.394067px;}
.y5a{bottom:143.875725px;}
.y5d{bottom:188.400212px;}
.y5c{bottom:202.405664px;}
.y51{bottom:226.611662px;}
.y5b{bottom:282.621509px;}
.y52{bottom:306.827470px;}
.y4a{bottom:340.776445px;}
.y1e{bottom:341.149661px;}
.y25{bottom:350.153023px;}
.y1d{bottom:363.658141px;}
.y24{bottom:372.661503px;}
.y1c{bottom:386.166622px;}
.y23{bottom:395.169984px;}
.y1b{bottom:408.675103px;}
.y22{bottom:417.678465px;}
.y1a{bottom:431.183583px;}
.y21{bottom:440.186945px;}
.y19{bottom:453.692064px;}
.y20{bottom:462.695426px;}
.y18{bottom:476.200545px;}
.y1f{bottom:485.203907px;}
.y17{bottom:498.709025px;}
.y16{bottom:521.217506px;}
.y2c{bottom:532.396637px;}
.y15{bottom:543.725987px;}
.y63{bottom:554.135944px;}
.y46{bottom:556.352907px;}
.y14{bottom:566.234467px;}
.y45{bottom:578.861388px;}
.y29{bottom:579.589473px;}
.y44{bottom:601.369868px;}
.y28{bottom:602.097954px;}
.y2b{bottom:617.928925px;}
.y43{bottom:623.878349px;}
.y27{bottom:624.606435px;}
.y42{bottom:646.386830px;}
.y26{bottom:647.114915px;}
.y41{bottom:668.895310px;}
.y13{bottom:669.623396px;}
.y40{bottom:691.403791px;}
.y12{bottom:692.131877px;}
.y3f{bottom:713.912272px;}
.y11{bottom:714.640357px;}
.y3e{bottom:736.420752px;}
.y10{bottom:737.148838px;}
.y3d{bottom:758.929233px;}
.yf{bottom:759.657319px;}
.y49{bottom:770.765928px;}
.y3c{bottom:781.437714px;}
.ye{bottom:782.165799px;}
.y3b{bottom:803.946194px;}
.yd{bottom:804.674280px;}
.y3a{bottom:826.454675px;}
.yc{bottom:827.182760px;}
.y39{bottom:848.963156px;}
.yb{bottom:849.691241px;}
.y38{bottom:871.471636px;}
.ya{bottom:872.199722px;}
.y37{bottom:893.980117px;}
.y9{bottom:894.708202px;}
.y36{bottom:916.488598px;}
.y35{bottom:938.997078px;}
.y2a{bottom:946.402711px;}
.y34{bottom:961.505559px;}
.y8{bottom:998.092851px;}
.y4d{bottom:1002.683547px;}
.y7{bottom:1020.601331px;}
.y4c{bottom:1027.442876px;}
.y6{bottom:1043.109812px;}
.y62{bottom:1059.914028px;}
.y5{bottom:1065.618293px;}
.y33{bottom:1070.133938px;}
.y61{bottom:1082.422509px;}
.y4{bottom:1088.126773px;}
.y32{bottom:1092.642419px;}
.y60{bottom:1104.930989px;}
.y31{bottom:1115.150899px;}
.y5f{bottom:1127.439470px;}
.y30{bottom:1137.659380px;}
.y3{bottom:1140.287232px;}
.y5e{bottom:1149.947951px;}
.y2{bottom:1169.548257px;}
.ha{height:15.033783px;}
.h8{height:24.933922px;}
.hc{height:26.507720px;}
.he{height:37.436572px;}
.hd{height:37.438683px;}
.h6{height:42.784699px;}
.h9{height:53.466780px;}
.hb{height:53.639998px;}
.h4{height:58.801424px;}
.h7{height:59.638470px;}
.h5{height:60.286715px;}
.h3{height:70.309381px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:47.986994px;}
.x8{left:49.025411px;}
.x9{left:50.900892px;}
.xd{left:58.798029px;}
.x1{left:82.080540px;}
.xb{left:119.519995px;}
.xc{left:127.283452px;}
.x2{left:264.170632px;}
.xe{left:334.689023px;}
.x4{left:469.237524px;}
.xa{left:496.419632px;}
.x5{left:580.948701px;}
.x7{left:618.659038px;}
.x6{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-16.006031pt;}
.ws1{word-spacing:-14.665525pt;}
.ws5{word-spacing:-13.335024pt;}
.ws2{word-spacing:-10.670832pt;}
.ws7{word-spacing:-9.337494pt;}
.ws8{word-spacing:-9.336968pt;}
.ws4{word-spacing:-6.218711pt;}
.ws6{word-spacing:-5.245742pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-0.888914pt;}
._1b{width:0.915219pt;}
._11{width:1.972120pt;}
._b{width:3.873337pt;}
._25{width:5.099296pt;}
._c{width:7.217307pt;}
._1{width:8.761405pt;}
._d{width:9.911192pt;}
._3{width:11.203531pt;}
._18{width:12.476230pt;}
._0{width:13.519975pt;}
._2{width:16.018441pt;}
._1e{width:17.180482pt;}
._15{width:18.905429pt;}
._4{width:21.023684pt;}
._f{width:22.795090pt;}
._24{width:23.783393pt;}
._21{width:25.248172pt;}
._19{width:26.645120pt;}
._1c{width:27.762360pt;}
._8{width:29.360792pt;}
._a{width:30.946636pt;}
._13{width:32.872334pt;}
._16{width:34.876934pt;}
._20{width:36.421014pt;}
._9{width:37.653356pt;}
._6{width:41.950495pt;}
._14{width:43.003717pt;}
._28{width:45.751935pt;}
._5{width:47.972014pt;}
._27{width:51.736533pt;}
._22{width:57.702691pt;}
._1a{width:58.986015pt;}
._7{width:60.589850pt;}
._e{width:61.629154pt;}
._29{width:65.571879pt;}
._12{width:68.045046pt;}
._23{width:72.017226pt;}
._10{width:73.883081pt;}
._26{width:80.035078pt;}
._17{width:102.757038pt;}
._1f{width:111.173019pt;}
.fs6{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs7{font-size:26.444913pt;}
.fs9{font-size:37.347871pt;}
.fs8{font-size:37.349977pt;}
.fs3{font-size:42.683326pt;}
.fs5{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y59{bottom:4.993570pt;}
.y58{bottom:13.808541pt;}
.y57{bottom:22.623512pt;}
.y54{bottom:26.360017pt;}
.y56{bottom:31.438483pt;}
.y50{bottom:31.568874pt;}
.y4b{bottom:32.846551pt;}
.y55{bottom:40.253454pt;}
.y48{bottom:47.334326pt;}
.y4f{bottom:47.885289pt;}
.y53{bottom:48.661571pt;}
.y2f{bottom:54.561398pt;}
.y47{bottom:61.562101pt;}
.y4e{bottom:63.119273pt;}
.y2e{bottom:68.789173pt;}
.y2d{bottom:83.016949pt;}
.y5a{bottom:127.889533pt;}
.y5d{bottom:167.466856pt;}
.y5c{bottom:179.916146pt;}
.y51{bottom:201.432588pt;}
.y5b{bottom:251.219119pt;}
.y52{bottom:272.735529pt;}
.y4a{bottom:302.912395pt;}
.y1e{bottom:303.244143pt;}
.y25{bottom:311.247131pt;}
.y1d{bottom:323.251681pt;}
.y24{bottom:331.254670pt;}
.y1c{bottom:343.259220pt;}
.y23{bottom:351.262208pt;}
.y1b{bottom:363.266758pt;}
.y22{bottom:371.269746pt;}
.y1a{bottom:383.274296pt;}
.y21{bottom:391.277285pt;}
.y19{bottom:403.281835pt;}
.y20{bottom:411.284823pt;}
.y18{bottom:423.289373pt;}
.y1f{bottom:431.292362pt;}
.y17{bottom:443.296911pt;}
.y16{bottom:463.304450pt;}
.y2c{bottom:473.241455pt;}
.y15{bottom:483.311988pt;}
.y63{bottom:492.565283pt;}
.y46{bottom:494.535917pt;}
.y14{bottom:503.319527pt;}
.y45{bottom:514.543456pt;}
.y29{bottom:515.190643pt;}
.y44{bottom:534.550994pt;}
.y28{bottom:535.198181pt;}
.y2b{bottom:549.270156pt;}
.y43{bottom:554.558532pt;}
.y27{bottom:555.205720pt;}
.y42{bottom:574.566071pt;}
.y26{bottom:575.213258pt;}
.y41{bottom:594.573609pt;}
.y13{bottom:595.220796pt;}
.y40{bottom:614.581148pt;}
.y12{bottom:615.228335pt;}
.y3f{bottom:634.588686pt;}
.y11{bottom:635.235873pt;}
.y3e{bottom:654.596224pt;}
.y10{bottom:655.243411pt;}
.y3d{bottom:674.603763pt;}
.yf{bottom:675.250950pt;}
.y49{bottom:685.125269pt;}
.y3c{bottom:694.611301pt;}
.ye{bottom:695.258488pt;}
.y3b{bottom:714.618839pt;}
.yd{bottom:715.266027pt;}
.y3a{bottom:734.626378pt;}
.yc{bottom:735.273565pt;}
.y39{bottom:754.633916pt;}
.yb{bottom:755.281103pt;}
.y38{bottom:774.641454pt;}
.ya{bottom:775.288642pt;}
.y37{bottom:794.648993pt;}
.y9{bottom:795.296180pt;}
.y36{bottom:814.656531pt;}
.y35{bottom:834.664070pt;}
.y2a{bottom:841.246854pt;}
.y34{bottom:854.671608pt;}
.y8{bottom:887.193645pt;}
.y4d{bottom:891.274264pt;}
.y7{bottom:907.201183pt;}
.y4c{bottom:913.282557pt;}
.y6{bottom:927.208722pt;}
.y62{bottom:942.145803pt;}
.y5{bottom:947.216260pt;}
.y33{bottom:951.230167pt;}
.y61{bottom:962.153341pt;}
.y4{bottom:967.223798pt;}
.y32{bottom:971.237705pt;}
.y60{bottom:982.160879pt;}
.y31{bottom:991.245244pt;}
.y5f{bottom:1002.168418pt;}
.y30{bottom:1011.252782pt;}
.y3{bottom:1013.588651pt;}
.y5e{bottom:1022.175956pt;}
.y2{bottom:1039.598451pt;}
.ha{height:13.363363pt;}
.h8{height:22.163486pt;}
.hc{height:23.562418pt;}
.he{height:33.276953pt;}
.hd{height:33.278829pt;}
.h6{height:38.030844pt;}
.h9{height:47.526026pt;}
.hb{height:47.679998pt;}
.h4{height:52.267933pt;}
.h7{height:53.011974pt;}
.h5{height:53.588191pt;}
.h3{height:62.497227pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:42.655106pt;}
.x8{left:43.578143pt;}
.x9{left:45.245237pt;}
.xd{left:52.264915pt;}
.x1{left:72.960480pt;}
.xb{left:106.239996pt;}
.xc{left:113.140846pt;}
.x2{left:234.818339pt;}
.xe{left:297.501354pt;}
.x4{left:417.100021pt;}
.xa{left:441.261895pt;}
.x5{left:516.398846pt;}
.x7{left:549.919145pt;}
.x6{left:551.612297pt;}
}




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