
    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_976334cd45bb3a097eff3ec3.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_a21161dcd07e86d0d84b8d51.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_89bed40186f080f6a7d99129.woff')format("woff");}.ff3{font-family:ff3;line-height:0.746094;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);}
.v2{vertical-align:-36.000001px;}
.v5{vertical-align:-29.250001px;}
.v3{vertical-align:-22.500001px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.065165px;}
.v4{vertical-align:18.000001px;}
.v1{vertical-align:36.000001px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000962px;}
.ls2{letter-spacing:0.001052px;}
.lsd{letter-spacing:0.001070px;}
.ls5{letter-spacing:0.001097px;}
.lsf{letter-spacing:0.001603px;}
.ls8{letter-spacing:0.001630px;}
.ls9{letter-spacing:0.049024px;}
.lsc{letter-spacing:0.066340px;}
.ls3{letter-spacing:0.073334px;}
.lsa{letter-spacing:0.073379px;}
.ls7{letter-spacing:0.073397px;}
.ls4{letter-spacing:0.073402px;}
.lse{letter-spacing:0.073424px;}
.lsb{letter-spacing:106.500000px;}
.ls1{letter-spacing:107.986253px;}
.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;}
}
.ws7{word-spacing:-41.882401px;}
.wsf{word-spacing:-29.916001px;}
.ws1{word-spacing:-26.592002px;}
.ws2{word-spacing:-17.728002px;}
.ws8{word-spacing:-16.620000px;}
.wsc{word-spacing:-14.404002px;}
.wsa{word-spacing:-13.296001px;}
.ws9{word-spacing:-11.080001px;}
.wsb{word-spacing:-8.864001px;}
.ws6{word-spacing:-0.096000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:81.394251px;}
.ws5{word-spacing:224.120639px;}
.ws4{word-spacing:238.456640px;}
.wsd{word-spacing:675.234700px;}
.ws3{word-spacing:1312.297756px;}
._a{margin-left:-10.787998px;}
._c{margin-left:-8.880000px;}
._1{margin-left:-7.104000px;}
._3{margin-left:-5.280000px;}
._2{margin-left:-3.552000px;}
._8{margin-left:-1.500003px;}
._7{width:1.130380px;}
._0{width:2.515237px;}
._4{width:107.986253px;}
._5{width:183.817018px;}
._b{width:186.084006px;}
._9{width:190.235954px;}
._d{width:401.183978px;}
._e{width:403.487978px;}
._6{width:1196.222723px;}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc4{color:rgb(159,197,232);}
.fc5{color:rgb(204,0,0);}
.fc9{color:rgb(66,133,244);}
.fcd{color:rgb(17,85,204);}
.fc6{color:rgb(101,167,225);}
.fc2{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc8{color:rgb(255,0,0);}
.fca{color:rgb(60,120,216);}
.fc3{color:rgb(44,54,58);}
.fcb{color:rgb(255,229,153);}
.fcc{color:rgb(255,0,255);}
.fsd{font-size:32.000004px;}
.fsb{font-size:40.000002px;}
.fs2{font-size:42.000000px;}
.fsc{font-size:48.000003px;}
.fs7{font-size:51.000000px;}
.fse{font-size:52.000006px;}
.fs9{font-size:54.000002px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:64.000007px;}
.fs5{font-size:72.000002px;}
.fsf{font-size:78.000005px;}
.fs1{font-size:96.000006px;}
.fsa{font-size:108.000003px;}
.fs6{font-size:120.000001px;}
.fs0{font-size:138.000001px;}
.fs8{font-size:151.200005px;}
.fs10{font-size:204.000001px;}
.y0{bottom:0.000000px;}
.y1b{bottom:19.443401px;}
.yd{bottom:27.885323px;}
.y11{bottom:28.082245px;}
.y47{bottom:38.611152px;}
.y23{bottom:47.018828px;}
.y19{bottom:57.075924px;}
.y46{bottom:81.811153px;}
.y22{bottom:90.218830px;}
.y18{bottom:100.275925px;}
.y58{bottom:116.281762px;}
.y45{bottom:125.011155px;}
.y6{bottom:125.336201px;}
.y50{bottom:142.695278px;}
.y5{bottom:158.456208px;}
.y4f{bottom:171.495290px;}
.y15{bottom:175.464099px;}
.y20{bottom:177.371237px;}
.y4{bottom:191.576198px;}
.y35{bottom:216.317232px;}
.y1f{bottom:220.571227px;}
.y3{bottom:224.696193px;}
.y4e{bottom:229.095280px;}
.y57{bottom:240.215917px;}
.y32{bottom:257.662583px;}
.y4d{bottom:257.895270px;}
.y14{bottom:261.335779px;}
.y1e{bottom:263.771217px;}
.y29{bottom:281.433275px;}
.y5a{bottom:282.104990px;}
.y34{bottom:282.557228px;}
.y56{bottom:283.415907px;}
.y16{bottom:286.636073px;}
.y4c{bottom:286.695260px;}
.y10{bottom:287.183505px;}
.y2c{bottom:294.306717px;}
.y13{bottom:304.535780px;}
.y3c{bottom:314.491569px;}
.y2{bottom:315.116563px;}
.yf{bottom:320.303500px;}
.y33{bottom:325.757230px;}
.y3a{bottom:326.011401px;}
.y55{bottom:326.615897px;}
.y28{bottom:327.081265px;}
.y3b{bottom:328.891570px;}
.y2b{bottom:330.681265px;}
.y39{bottom:330.833252px;}
.y3f{bottom:333.179406px;}
.y31{bottom:344.062563px;}
.y4b{bottom:344.295250px;}
.y3e{bottom:347.579407px;}
.y1d{bottom:350.171209px;}
.y1{bottom:362.726553px;}
.y44{bottom:362.953342px;}
.y54{bottom:369.815899px;}
.y21{bottom:369.930457px;}
.y4a{bottom:373.095240px;}
.y27{bottom:373.881260px;}
.y2a{bottom:377.481255px;}
.yc{bottom:382.061698px;}
.y38{bottom:383.775467px;}
.y30{bottom:387.262553px;}
.y1c{bottom:393.371210px;}
.y43{bottom:396.073349px;}
.y49{bottom:401.895232px;}
.y40{bottom:410.222412px;}
.y53{bottom:413.015900px;}
.yb{bottom:415.181688px;}
.y59{bottom:415.219133px;}
.y26{bottom:420.681257px;}
.y42{bottom:429.193340px;}
.y37{bottom:429.855469px;}
.y2f{bottom:430.462555px;}
.y48{bottom:430.695231px;}
.y3d{bottom:437.055469px;}
.ya{bottom:448.301689px;}
.y12{bottom:449.314483px;}
.y52{bottom:456.215901px;}
.y41{bottom:462.313334px;}
.y1a{bottom:462.933423px;}
.y25{bottom:463.881258px;}
.y36{bottom:473.055470px;}
.y2e{bottom:473.662556px;}
.y17{bottom:476.303497px;}
.y9{bottom:481.421690px;}
.y2d{bottom:541.102750px;}
.y51{bottom:543.884245px;}
.y24{bottom:547.905898px;}
.ye{bottom:555.228542px;}
.y8{bottom:575.474999px;}
.y7{bottom:579.794999px;}
.h3{height:30.618164px;}
.h11{height:34.992190px;}
.h9{height:37.129395px;}
.h13{height:39.057355px;}
.he{height:39.366212px;}
.h12{height:41.328128px;}
.h8{height:43.681641px;}
.h4{height:43.740235px;}
.h6{height:52.488283px;}
.hd{height:69.890629px;}
.h2{height:69.984379px;}
.hb{height:70.125004px;}
.ha{height:70.574959px;}
.h10{height:78.732424px;}
.hf{height:82.593756px;}
.h5{height:82.656256px;}
.h7{height:87.363282px;}
.h1{height:100.467774px;}
.hc{height:110.225394px;}
.h14{height:148.716797px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x7{left:17.625000px;}
.x1f{left:24.587599px;}
.x15{left:46.939963px;}
.xf{left:58.036417px;}
.x8{left:59.447400px;}
.x30{left:62.335633px;}
.x1{left:67.604849px;}
.xb{left:69.457680px;}
.x20{left:75.212601px;}
.x1d{left:100.939964px;}
.x2d{left:120.091538px;}
.xd{left:190.031758px;}
.x2{left:208.462830px;}
.x4{left:216.173054px;}
.x29{left:218.358101px;}
.xa{left:221.502337px;}
.x2e{left:224.562854px;}
.x13{left:245.878978px;}
.x16{left:250.618114px;}
.x1c{left:253.123325px;}
.x10{left:255.695374px;}
.x27{left:258.493115px;}
.x25{left:282.628792px;}
.x12{left:291.457922px;}
.x21{left:300.631577px;}
.x24{left:327.332575px;}
.x14{left:369.932772px;}
.x3{left:420.709108px;}
.x1b{left:428.669485px;}
.x6{left:457.526163px;}
.x5{left:459.318536px;}
.x2a{left:568.124984px;}
.x11{left:574.365011px;}
.x18{left:586.181123px;}
.x19{left:589.818900px;}
.x1a{left:599.495082px;}
.x2c{left:633.256895px;}
.x22{left:635.229358px;}
.x17{left:640.181124px;}
.x2f{left:666.927201px;}
.x23{left:689.229360px;}
.x1e{left:695.573058px;}
.xe{left:788.878938px;}
.x9{left:811.136838px;}
.x28{left:818.887639px;}
.x26{left:896.870087px;}
.x31{left:1007.625070px;}
.x2b{left:1038.688064px;}
.xc{left:1047.027099px;}
@media print{
.v2{vertical-align:-32.000001pt;}
.v5{vertical-align:-26.000001pt;}
.v3{vertical-align:-20.000001pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.613480pt;}
.v4{vertical-align:16.000001pt;}
.v1{vertical-align:32.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000855pt;}
.ls2{letter-spacing:0.000935pt;}
.lsd{letter-spacing:0.000951pt;}
.ls5{letter-spacing:0.000975pt;}
.lsf{letter-spacing:0.001425pt;}
.ls8{letter-spacing:0.001449pt;}
.ls9{letter-spacing:0.043576pt;}
.lsc{letter-spacing:0.058969pt;}
.ls3{letter-spacing:0.065186pt;}
.lsa{letter-spacing:0.065226pt;}
.ls7{letter-spacing:0.065242pt;}
.ls4{letter-spacing:0.065246pt;}
.lse{letter-spacing:0.065266pt;}
.lsb{letter-spacing:94.666667pt;}
.ls1{letter-spacing:95.987780pt;}
.ws7{word-spacing:-37.228801pt;}
.wsf{word-spacing:-26.592001pt;}
.ws1{word-spacing:-23.637335pt;}
.ws2{word-spacing:-15.758224pt;}
.ws8{word-spacing:-14.773333pt;}
.wsc{word-spacing:-12.803557pt;}
.wsa{word-spacing:-11.818667pt;}
.ws9{word-spacing:-9.848889pt;}
.wsb{word-spacing:-7.879112pt;}
.ws6{word-spacing:-0.085333pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:72.350445pt;}
.ws5{word-spacing:199.218345pt;}
.ws4{word-spacing:211.961458pt;}
.wsd{word-spacing:600.208622pt;}
.ws3{word-spacing:1166.486894pt;}
._a{margin-left:-9.589331pt;}
._c{margin-left:-7.893333pt;}
._1{margin-left:-6.314667pt;}
._3{margin-left:-4.693334pt;}
._2{margin-left:-3.157334pt;}
._8{margin-left:-1.333336pt;}
._7{width:1.004782pt;}
._0{width:2.235766pt;}
._4{width:95.987780pt;}
._5{width:163.392905pt;}
._b{width:165.408005pt;}
._9{width:169.098626pt;}
._d{width:356.607981pt;}
._e{width:358.655981pt;}
._6{width:1063.309088pt;}
.fsd{font-size:28.444448pt;}
.fsb{font-size:35.555558pt;}
.fs2{font-size:37.333333pt;}
.fsc{font-size:42.666669pt;}
.fs7{font-size:45.333333pt;}
.fse{font-size:46.222228pt;}
.fs9{font-size:48.000002pt;}
.fs3{font-size:53.333334pt;}
.fs4{font-size:56.888895pt;}
.fs5{font-size:64.000002pt;}
.fsf{font-size:69.333338pt;}
.fs1{font-size:85.333339pt;}
.fsa{font-size:96.000003pt;}
.fs6{font-size:106.666667pt;}
.fs0{font-size:122.666668pt;}
.fs8{font-size:134.400004pt;}
.fs10{font-size:181.333334pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:17.283023pt;}
.yd{bottom:24.786954pt;}
.y11{bottom:24.961996pt;}
.y47{bottom:34.321024pt;}
.y23{bottom:41.794514pt;}
.y19{bottom:50.734154pt;}
.y46{bottom:72.721025pt;}
.y22{bottom:80.194515pt;}
.y18{bottom:89.134156pt;}
.y58{bottom:103.361566pt;}
.y45{bottom:111.121026pt;}
.y6{bottom:111.409956pt;}
.y50{bottom:126.840247pt;}
.y5{bottom:140.849962pt;}
.y4f{bottom:152.440258pt;}
.y15{bottom:155.968088pt;}
.y20{bottom:157.663322pt;}
.y4{bottom:170.289954pt;}
.y35{bottom:192.281984pt;}
.y1f{bottom:196.063313pt;}
.y3{bottom:199.729949pt;}
.y4e{bottom:203.640249pt;}
.y57{bottom:213.525260pt;}
.y32{bottom:229.033407pt;}
.y4d{bottom:229.240240pt;}
.y14{bottom:232.298470pt;}
.y1e{bottom:234.463304pt;}
.y29{bottom:250.162911pt;}
.y5a{bottom:250.759991pt;}
.y34{bottom:251.161981pt;}
.y56{bottom:251.925251pt;}
.y16{bottom:254.787621pt;}
.y4c{bottom:254.840231pt;}
.y10{bottom:255.274227pt;}
.y2c{bottom:261.605971pt;}
.y13{bottom:270.698471pt;}
.y3c{bottom:279.548062pt;}
.y2{bottom:280.103612pt;}
.yf{bottom:284.714222pt;}
.y33{bottom:289.561982pt;}
.y3a{bottom:289.787912pt;}
.y55{bottom:290.325242pt;}
.y28{bottom:290.738902pt;}
.y3b{bottom:292.348062pt;}
.y2b{bottom:293.938902pt;}
.y39{bottom:294.074002pt;}
.y3f{bottom:296.159472pt;}
.y31{bottom:305.833390pt;}
.y4b{bottom:306.040223pt;}
.y3e{bottom:308.959473pt;}
.y1d{bottom:311.263297pt;}
.y1{bottom:322.423603pt;}
.y44{bottom:322.625193pt;}
.y54{bottom:328.725243pt;}
.y21{bottom:328.827073pt;}
.y4a{bottom:331.640213pt;}
.y27{bottom:332.338897pt;}
.y2a{bottom:335.538893pt;}
.yc{bottom:339.610399pt;}
.y38{bottom:341.133749pt;}
.y30{bottom:344.233381pt;}
.y1c{bottom:349.663298pt;}
.y43{bottom:352.065199pt;}
.y49{bottom:357.240206pt;}
.y40{bottom:364.642144pt;}
.y53{bottom:367.125244pt;}
.yb{bottom:369.050390pt;}
.y59{bottom:369.083674pt;}
.y26{bottom:373.938895pt;}
.y42{bottom:381.505191pt;}
.y37{bottom:382.093750pt;}
.y2f{bottom:382.633382pt;}
.y48{bottom:382.840205pt;}
.y3d{bottom:388.493750pt;}
.ya{bottom:398.490390pt;}
.y12{bottom:399.390652pt;}
.y52{bottom:405.525246pt;}
.y41{bottom:410.945186pt;}
.y1a{bottom:411.496376pt;}
.y25{bottom:412.338896pt;}
.y36{bottom:420.493751pt;}
.y2e{bottom:421.033383pt;}
.y17{bottom:423.380886pt;}
.y9{bottom:427.930391pt;}
.y2d{bottom:480.980222pt;}
.y51{bottom:483.452662pt;}
.y24{bottom:487.027465pt;}
.ye{bottom:493.536482pt;}
.y8{bottom:511.533333pt;}
.y7{bottom:515.373333pt;}
.h3{height:27.216146pt;}
.h11{height:31.104169pt;}
.h9{height:33.003906pt;}
.h13{height:34.717649pt;}
.he{height:34.992189pt;}
.h12{height:36.736114pt;}
.h8{height:38.828125pt;}
.h4{height:38.880209pt;}
.h6{height:46.656251pt;}
.hd{height:62.125004pt;}
.h2{height:62.208337pt;}
.hb{height:62.333337pt;}
.ha{height:62.733297pt;}
.h10{height:69.984377pt;}
.hf{height:73.416672pt;}
.h5{height:73.472228pt;}
.h7{height:77.656251pt;}
.h1{height:89.304688pt;}
.hc{height:97.978128pt;}
.h14{height:132.192709pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x7{left:15.666667pt;}
.x1f{left:21.855644pt;}
.x15{left:41.724411pt;}
.xf{left:51.587927pt;}
.x8{left:52.842134pt;}
.x30{left:55.409452pt;}
.x1{left:60.093199pt;}
.xb{left:61.740160pt;}
.x20{left:66.855645pt;}
.x1d{left:89.724413pt;}
.x2d{left:106.748033pt;}
.xd{left:168.917118pt;}
.x2{left:185.300293pt;}
.x4{left:192.153826pt;}
.x29{left:194.096090pt;}
.xa{left:196.890966pt;}
.x2e{left:199.611425pt;}
.x13{left:218.559092pt;}
.x16{left:222.771657pt;}
.x1c{left:224.998511pt;}
.x10{left:227.284777pt;}
.x27{left:229.771657pt;}
.x25{left:251.225593pt;}
.x12{left:259.073708pt;}
.x21{left:267.228069pt;}
.x24{left:290.962289pt;}
.x14{left:328.829131pt;}
.x3{left:373.963652pt;}
.x1b{left:381.039542pt;}
.x6{left:406.689923pt;}
.x5{left:408.283143pt;}
.x2a{left:504.999986pt;}
.x11{left:510.546676pt;}
.x18{left:521.049887pt;}
.x19{left:524.283467pt;}
.x1a{left:532.884517pt;}
.x2c{left:562.895018pt;}
.x22{left:564.648318pt;}
.x17{left:569.049888pt;}
.x2f{left:592.824179pt;}
.x23{left:612.648320pt;}
.x1e{left:618.287163pt;}
.xe{left:701.225722pt;}
.x9{left:721.010523pt;}
.x28{left:727.900123pt;}
.x26{left:797.217856pt;}
.x31{left:895.666729pt;}
.x2b{left:923.278280pt;}
.xc{left:930.690755pt;}
}




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