
    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_e8e798c7f4c4d6df2e97d2d9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_df03ab1259d341ac34426fa8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.031738;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_1f8304bcad8fd521a98d072e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_6dd92432a2eff64a5d60f994.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_11ef898d17e4fc58558567e8.woff')format("woff");}.ff5{font-family:ff5;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.059625px;}
.ls2{letter-spacing:32.679740px;}
.ls4{letter-spacing:37.582940px;}
.ls3{letter-spacing:98.057515px;}
.ls1{letter-spacing:99.814446px;}
.ls8{letter-spacing:107.977761px;}
.ls5{letter-spacing:107.993276px;}
.ls6{letter-spacing:107.997266px;}
.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;}
}
.wsb{word-spacing:-28.476001px;}
.wsf{word-spacing:-22.040018px;}
.ws2{word-spacing:-21.696001px;}
.wsc{word-spacing:-19.328018px;}
.ws3{word-spacing:-18.984000px;}
.ws5{word-spacing:-17.546641px;}
.ws7{word-spacing:-17.238015px;}
.ws9{word-spacing:-16.797877px;}
.wse{word-spacing:-16.616017px;}
.ws0{word-spacing:-16.368001px;}
.ws4{word-spacing:-13.560000px;}
.wsa{word-spacing:-12.925488px;}
.ws6{word-spacing:-12.533372px;}
.ws8{word-spacing:-12.312888px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:91.381249px;}
._2{margin-left:-9.504000px;}
._3{margin-left:-7.068000px;}
._8{margin-left:-5.385601px;}
._1{margin-left:-3.456000px;}
._0{margin-left:-1.680000px;}
._6{width:1.518000px;}
._5{width:3.498000px;}
._4{width:6.798000px;}
._7{width:32.192522px;}
._9{width:108.006237px;}
.fc8{color:rgb(79,129,189);}
.fc7{color:rgb(192,0,0);}
.fc6{color:transparent;}
.fc2{color:rgb(40,110,153);}
.fc5{color:rgb(102,102,102);}
.fc4{color:rgb(153,153,153);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs14{font-size:48.624932px;}
.fs7{font-size:54.000002px;}
.fse{font-size:54.481803px;}
.fsc{font-size:55.457399px;}
.fs11{font-size:55.571132px;}
.fs12{font-size:57.192423px;}
.fs8{font-size:60.000000px;}
.fs13{font-size:61.200006px;}
.fs2{font-size:66.000004px;}
.fs9{font-size:72.000002px;}
.fs16{font-size:73.522199px;}
.fs10{font-size:74.326889px;}
.fsd{font-size:76.274404px;}
.fsb{font-size:77.640005px;}
.fsf{font-size:82.893873px;}
.fs0{font-size:84.000000px;}
.fs15{font-size:85.522206px;}
.fs4{font-size:96.000006px;}
.fs17{font-size:97.522203px;}
.fs1{font-size:108.000003px;}
.fs6{font-size:126.000004px;}
.fsa{font-size:128.459997px;}
.fs5{font-size:144.000005px;}
.fs3{font-size:180.000006px;}
.y0{bottom:0.000000px;}
.y9{bottom:10.396405px;}
.y40{bottom:15.201404px;}
.y58{bottom:15.493459px;}
.y16{bottom:17.603835px;}
.y18{bottom:23.601964px;}
.y8{bottom:30.196404px;}
.y41{bottom:66.658372px;}
.y7{bottom:69.796400px;}
.y3f{bottom:78.281446px;}
.y6{bottom:89.596401px;}
.y3e{bottom:92.969447px;}
.y3d{bottom:107.657447px;}
.y5{bottom:109.396402px;}
.y3c{bottom:121.741818px;}
.y3b{bottom:141.009648px;}
.y3a{bottom:170.054607px;}
.y4{bottom:181.335114px;}
.y39{bottom:184.742607px;}
.y38{bottom:198.826978px;}
.y3{bottom:213.735119px;}
.y37{bottom:218.094808px;}
.yb{bottom:245.022997px;}
.y2{bottom:246.135117px;}
.y36{bottom:249.863797px;}
.y35{bottom:264.551820px;}
.y34{bottom:279.239820px;}
.yd{bottom:287.481252px;}
.y33{bottom:293.927821px;}
.y32{bottom:308.012203px;}
.y31{bottom:327.639842px;}
.yc{bottom:330.681254px;}
.y14{bottom:337.626306px;}
.ya{bottom:344.457286px;}
.y30{bottom:358.124080px;}
.y4d{bottom:366.266111px;}
.y57{bottom:367.323322px;}
.y2f{bottom:372.812081px;}
.y23{bottom:383.236215px;}
.y2e{bottom:387.500081px;}
.y1a{bottom:391.328542px;}
.y15{bottom:391.455427px;}
.y56{bottom:399.723323px;}
.y2d{bottom:402.188082px;}
.y20{bottom:408.435288px;}
.y52{bottom:408.544376px;}
.y4c{bottom:410.379443px;}
.y2c{bottom:416.876077px;}
.y24{bottom:418.196959px;}
.y46{bottom:424.096365px;}
.y1b{bottom:427.065107px;}
.y2b{bottom:431.564077px;}
.y55{bottom:432.123324px;}
.y4b{bottom:432.436104px;}
.y1{bottom:433.285860px;}
.y51{bottom:434.875368px;}
.y1f{bottom:435.435289px;}
.y2a{bottom:445.884876px;}
.y45{bottom:447.187358px;}
.y4a{bottom:454.492759px;}
.y29{bottom:458.736872px;}
.y50{bottom:461.206366px;}
.y1e{bottom:462.435290px;}
.y54{bottom:464.523329px;}
.y44{bottom:470.278362px;}
.y49{bottom:476.549423px;}
.y28{bottom:478.399019px;}
.y10{bottom:483.949711px;}
.y12{bottom:483.956947px;}
.y4f{bottom:487.537357px;}
.y1d{bottom:489.435296px;}
.y43{bottom:493.369355px;}
.y53{bottom:496.923327px;}
.y27{bottom:497.892851px;}
.y48{bottom:498.606083px;}
.yf{bottom:499.699711px;}
.y11{bottom:499.706947px;}
.y22{bottom:506.276905px;}
.y26{bottom:509.903256px;}
.y4e{bottom:513.868349px;}
.y1c{bottom:516.435297px;}
.y42{bottom:516.460347px;}
.y19{bottom:516.891318px;}
.y13{bottom:517.663826px;}
.y47{bottom:520.662742px;}
.y25{bottom:529.803272px;}
.y21{bottom:562.285984px;}
.ye{bottom:570.435589px;}
.y17{bottom:571.714188px;}
.h9{height:38.759767px;}
.h10{height:39.105591px;}
.he{height:39.805848px;}
.h14{height:39.887482px;}
.h12{height:41.051202px;}
.ha{height:43.066407px;}
.h13{height:43.927739px;}
.hb{height:51.679689px;}
.h18{height:52.772282px;}
.h3{height:52.948245px;}
.h17{height:53.382573px;}
.h15{height:53.966838px;}
.hf{height:54.747741px;}
.hd{height:55.727934px;}
.h11{height:60.187104px;}
.h1{height:60.292969px;}
.h16{height:61.385568px;}
.h5{height:68.906254px;}
.h19{height:69.998847px;}
.h2{height:77.519534px;}
.h8{height:91.485354px;}
.hc{height:93.271492px;}
.h6{height:97.945316px;}
.h7{height:104.554691px;}
.h4{height:129.199223px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4{left:12.404528px;}
.xd{left:22.121449px;}
.x21{left:48.449831px;}
.x1{left:49.618700px;}
.x1d{left:61.756888px;}
.x1e{left:83.562995px;}
.x22{left:104.341286px;}
.x23{left:139.607399px;}
.xa{left:202.826560px;}
.x24{left:206.622063px;}
.x10{left:212.131752px;}
.x2{left:215.286037px;}
.x13{left:236.627850px;}
.xf{left:238.080442px;}
.x15{left:244.794417px;}
.xb{left:267.227705px;}
.x14{left:270.439526px;}
.x1c{left:406.463904px;}
.x16{left:427.858664px;}
.x11{left:447.543389px;}
.x12{left:484.220641px;}
.x17{left:486.320528px;}
.x1b{left:494.492832px;}
.x18{left:501.409069px;}
.x19{left:506.867051px;}
.x1a{left:522.358667px;}
.xc{left:526.325248px;}
.x5{left:546.967020px;}
.x6{left:548.697367px;}
.x3{left:550.125018px;}
.xe{left:607.161550px;}
.x7{left:643.077168px;}
.x1f{left:715.684297px;}
.x9{left:737.801379px;}
.x20{left:748.308061px;}
.x8{left:750.576282px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053000pt;}
.ls2{letter-spacing:29.048658pt;}
.ls4{letter-spacing:33.407058pt;}
.ls3{letter-spacing:87.162236pt;}
.ls1{letter-spacing:88.723952pt;}
.ls8{letter-spacing:95.980232pt;}
.ls5{letter-spacing:95.994023pt;}
.ls6{letter-spacing:95.997569pt;}
.wsb{word-spacing:-25.312001pt;}
.wsf{word-spacing:-19.591127pt;}
.ws2{word-spacing:-19.285335pt;}
.wsc{word-spacing:-17.180461pt;}
.ws3{word-spacing:-16.874667pt;}
.ws5{word-spacing:-15.597014pt;}
.ws7{word-spacing:-15.322680pt;}
.ws9{word-spacing:-14.931446pt;}
.wse{word-spacing:-14.769793pt;}
.ws0{word-spacing:-14.549334pt;}
.ws4{word-spacing:-12.053333pt;}
.wsa{word-spacing:-11.489322pt;}
.ws6{word-spacing:-11.140775pt;}
.ws8{word-spacing:-10.944789pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:81.227777pt;}
._2{margin-left:-8.448000pt;}
._3{margin-left:-6.282667pt;}
._8{margin-left:-4.787201pt;}
._1{margin-left:-3.072000pt;}
._0{margin-left:-1.493333pt;}
._6{width:1.349333pt;}
._5{width:3.109334pt;}
._4{width:6.042667pt;}
._7{width:28.615575pt;}
._9{width:96.005544pt;}
.fs14{font-size:43.222161pt;}
.fs7{font-size:48.000002pt;}
.fse{font-size:48.428270pt;}
.fsc{font-size:49.295466pt;}
.fs11{font-size:49.396562pt;}
.fs12{font-size:50.837710pt;}
.fs8{font-size:53.333334pt;}
.fs13{font-size:54.400006pt;}
.fs2{font-size:58.666670pt;}
.fs9{font-size:64.000002pt;}
.fs16{font-size:65.353066pt;}
.fs10{font-size:66.068346pt;}
.fsd{font-size:67.799470pt;}
.fsb{font-size:69.013338pt;}
.fsf{font-size:73.683442pt;}
.fs0{font-size:74.666666pt;}
.fs15{font-size:76.019738pt;}
.fs4{font-size:85.333339pt;}
.fs17{font-size:86.686403pt;}
.fs1{font-size:96.000003pt;}
.fs6{font-size:112.000004pt;}
.fsa{font-size:114.186664pt;}
.fs5{font-size:128.000004pt;}
.fs3{font-size:160.000005pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:9.241249pt;}
.y40{bottom:13.512359pt;}
.y58{bottom:13.771963pt;}
.y16{bottom:15.647853pt;}
.y18{bottom:20.979523pt;}
.y8{bottom:26.841248pt;}
.y41{bottom:59.251887pt;}
.y7{bottom:62.041245pt;}
.y3f{bottom:69.583508pt;}
.y6{bottom:79.641245pt;}
.y3e{bottom:82.639508pt;}
.y3d{bottom:95.695509pt;}
.y5{bottom:97.241246pt;}
.y3c{bottom:108.214949pt;}
.y3b{bottom:125.341910pt;}
.y3a{bottom:151.159651pt;}
.y4{bottom:161.186768pt;}
.y39{bottom:164.215651pt;}
.y38{bottom:176.735091pt;}
.y3{bottom:189.986773pt;}
.y37{bottom:193.862052pt;}
.yb{bottom:217.798220pt;}
.y2{bottom:218.786771pt;}
.y36{bottom:222.101153pt;}
.y35{bottom:235.157173pt;}
.y34{bottom:248.213174pt;}
.yd{bottom:255.538891pt;}
.y33{bottom:261.269174pt;}
.y32{bottom:273.788624pt;}
.y31{bottom:291.235415pt;}
.yc{bottom:293.938892pt;}
.y14{bottom:300.112272pt;}
.ya{bottom:306.184255pt;}
.y30{bottom:318.332516pt;}
.y4d{bottom:325.569876pt;}
.y57{bottom:326.509619pt;}
.y2f{bottom:331.388516pt;}
.y23{bottom:340.654414pt;}
.y2e{bottom:344.444517pt;}
.y1a{bottom:347.847593pt;}
.y15{bottom:347.960380pt;}
.y56{bottom:355.309620pt;}
.y2d{bottom:357.500517pt;}
.y20{bottom:363.053589pt;}
.y52{bottom:363.150556pt;}
.y4c{bottom:364.781727pt;}
.y2c{bottom:370.556513pt;}
.y24{bottom:371.730631pt;}
.y46{bottom:376.974547pt;}
.y1b{bottom:379.613429pt;}
.y2b{bottom:383.612513pt;}
.y55{bottom:384.109621pt;}
.y4b{bottom:384.387648pt;}
.y1{bottom:385.142987pt;}
.y51{bottom:386.555883pt;}
.y1f{bottom:387.053590pt;}
.y2a{bottom:396.342112pt;}
.y45{bottom:397.499873pt;}
.y4a{bottom:403.993564pt;}
.y29{bottom:407.766109pt;}
.y50{bottom:409.961214pt;}
.y1e{bottom:411.053591pt;}
.y54{bottom:412.909626pt;}
.y44{bottom:418.025211pt;}
.y49{bottom:423.599487pt;}
.y28{bottom:425.243572pt;}
.y10{bottom:430.177520pt;}
.y12{bottom:430.183952pt;}
.y4f{bottom:433.366540pt;}
.y1d{bottom:435.053597pt;}
.y43{bottom:438.550538pt;}
.y53{bottom:441.709624pt;}
.y27{bottom:442.571423pt;}
.y48{bottom:443.205407pt;}
.yf{bottom:444.177521pt;}
.y11{bottom:444.183953pt;}
.y22{bottom:450.023915pt;}
.y26{bottom:453.247338pt;}
.y4e{bottom:456.771865pt;}
.y1c{bottom:459.053597pt;}
.y42{bottom:459.075864pt;}
.y19{bottom:459.458949pt;}
.y13{bottom:460.145623pt;}
.y47{bottom:462.811327pt;}
.y25{bottom:470.936242pt;}
.y21{bottom:499.809763pt;}
.ye{bottom:507.053857pt;}
.y17{bottom:508.190389pt;}
.h9{height:34.453126pt;}
.h10{height:34.760526pt;}
.he{height:35.382976pt;}
.h14{height:35.455540pt;}
.h12{height:36.489958pt;}
.ha{height:38.281250pt;}
.h13{height:39.046879pt;}
.hb{height:45.937501pt;}
.h18{height:46.908695pt;}
.h3{height:47.065107pt;}
.h17{height:47.451176pt;}
.h15{height:47.970523pt;}
.hf{height:48.664659pt;}
.hd{height:49.535941pt;}
.h11{height:53.499648pt;}
.h1{height:53.593750pt;}
.h16{height:54.564949pt;}
.h5{height:61.250004pt;}
.h19{height:62.221197pt;}
.h2{height:68.906252pt;}
.h8{height:81.320315pt;}
.hc{height:82.907993pt;}
.h6{height:87.062503pt;}
.h7{height:92.937503pt;}
.h4{height:114.843754pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:11.026247pt;}
.xd{left:19.663511pt;}
.x21{left:43.066516pt;}
.x1{left:44.105511pt;}
.x1d{left:54.895012pt;}
.x1e{left:74.278217pt;}
.x22{left:92.747810pt;}
.x23{left:124.095466pt;}
.xa{left:180.290276pt;}
.x24{left:183.664056pt;}
.x10{left:188.561557pt;}
.x2{left:191.365366pt;}
.x13{left:210.335867pt;}
.xf{left:211.627060pt;}
.x15{left:217.595037pt;}
.xb{left:237.535738pt;}
.x14{left:240.390690pt;}
.x1c{left:361.301248pt;}
.x16{left:380.318812pt;}
.x11{left:397.816346pt;}
.x12{left:430.418348pt;}
.x17{left:432.284914pt;}
.x1b{left:439.549184pt;}
.x18{left:445.696950pt;}
.x19{left:450.548489pt;}
.x1a{left:464.318815pt;}
.xc{left:467.844665pt;}
.x5{left:486.192907pt;}
.x6{left:487.730993pt;}
.x3{left:489.000016pt;}
.xe{left:539.699155pt;}
.x7{left:571.624149pt;}
.x1f{left:636.163819pt;}
.x9{left:655.823448pt;}
.x20{left:665.162721pt;}
.x8{left:667.178917pt;}
}




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