
    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_28f4d8f7d2909bc16195e97b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_06421b68dfb47513d25b8bbd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_9f26385cab8c8c1902e42853.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_29e8ee1260ad0e78d6c1dccc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-79.919968px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:186.509325px;}
.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;}
}
.ws1{word-spacing:-16.919993px;}
.ws2{word-spacing:-14.043594px;}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-6.141481px;}
._5{margin-left:-5.113788px;}
._4{margin-left:-4.103913px;}
._6{margin-left:-2.606260px;}
._0{margin-left:-1.586412px;}
._1{width:1.122952px;}
._9{width:2.148950px;}
._8{width:3.189867px;}
._2{width:4.378039px;}
._3{width:5.923043px;}
._7{width:7.438216px;}
._12{width:9.004733px;}
._11{width:10.109171px;}
._b{width:11.169072px;}
._a{width:12.238923px;}
._c{width:13.630911px;}
._13{width:15.561208px;}
._f{width:18.740702px;}
._10{width:19.967043px;}
._e{width:21.844185px;}
._d{width:22.956900px;}
._14{width:24.049687px;}
._16{width:25.260703px;}
._15{width:26.338292px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:44.668062px;}
.fs2{font-size:56.174378px;}
.fs3{font-size:61.588175px;}
.fs1{font-size:67.679973px;}
.fs5{font-size:78.508169px;}
.fs4{font-size:84.599966px;}
.y0{bottom:0.000000px;}
.y32{bottom:106.739957px;}
.y5f{bottom:122.939951px;}
.y6b{bottom:125.279950px;}
.y31{bottom:126.719949px;}
.y68{bottom:139.499944px;}
.y5e{bottom:140.219944px;}
.y6a{bottom:145.259942px;}
.y30{bottom:146.699941px;}
.y5d{bottom:147.959941px;}
.y73{bottom:156.059938px;}
.y67{bottom:156.779937px;}
.y5c{bottom:158.759936px;}
.y66{bottom:164.519934px;}
.y69{bottom:165.239934px;}
.y2f{bottom:166.679933px;}
.y72{bottom:172.619931px;}
.y5b{bottom:185.219926px;}
.y2e{bottom:186.659925px;}
.y71{bottom:189.179924px;}
.y65{bottom:192.959923px;}
.y5a{bottom:205.199918px;}
.y70{bottom:205.739918px;}
.y2d{bottom:206.639917px;}
.y64{bottom:210.239916px;}
.y63{bottom:217.979913px;}
.y6f{bottom:223.019911px;}
.y59{bottom:224.999910px;}
.y2c{bottom:226.619909px;}
.y62{bottom:228.779908px;}
.y6e{bottom:230.759908px;}
.y6d{bottom:241.739903px;}
.y58{bottom:244.979902px;}
.y2b{bottom:246.599901px;}
.y57{bottom:264.959894px;}
.y2a{bottom:266.579893px;}
.y56{bottom:284.939886px;}
.y29{bottom:286.559885px;}
.y55{bottom:304.919878px;}
.y28{bottom:306.539877px;}
.y54{bottom:324.899870px;}
.y27{bottom:326.339869px;}
.y53{bottom:344.879862px;}
.y26{bottom:346.319861px;}
.y52{bottom:364.859854px;}
.y25{bottom:366.299853px;}
.y51{bottom:384.839846px;}
.y24{bottom:386.279845px;}
.y50{bottom:404.819838px;}
.y23{bottom:406.259837px;}
.y4f{bottom:424.799830px;}
.y22{bottom:426.239830px;}
.y4e{bottom:444.779822px;}
.y21{bottom:446.219822px;}
.y4d{bottom:464.579814px;}
.y20{bottom:466.199814px;}
.y4c{bottom:484.559806px;}
.y1f{bottom:486.179806px;}
.y4b{bottom:504.539798px;}
.y1e{bottom:506.159798px;}
.y4a{bottom:524.519790px;}
.y1d{bottom:526.139790px;}
.y49{bottom:544.499782px;}
.y1c{bottom:546.119782px;}
.y48{bottom:564.479774px;}
.y1b{bottom:566.099774px;}
.y61{bottom:572.219771px;}
.y47{bottom:584.459766px;}
.y1a{bottom:585.899766px;}
.y46{bottom:604.439758px;}
.y19{bottom:605.879758px;}
.y44{bottom:624.419750px;}
.y18{bottom:625.859750px;}
.y45{bottom:632.159747px;}
.y43{bottom:644.399742px;}
.y17{bottom:645.839742px;}
.y42{bottom:664.379734px;}
.y16{bottom:665.819734px;}
.y41{bottom:684.359726px;}
.y15{bottom:685.799726px;}
.y60{bottom:692.099723px;}
.y40{bottom:704.339718px;}
.y3f{bottom:724.139710px;}
.y14{bottom:725.759710px;}
.y3e{bottom:744.119702px;}
.y13{bottom:745.739702px;}
.y3d{bottom:764.099694px;}
.y12{bottom:765.719694px;}
.y3c{bottom:784.079686px;}
.y11{bottom:785.699686px;}
.y3b{bottom:804.059678px;}
.y10{bottom:806.219678px;}
.y3a{bottom:824.039670px;}
.yf{bottom:829.259668px;}
.y39{bottom:844.019662px;}
.ye{bottom:850.859660px;}
.y38{bottom:863.999654px;}
.yd{bottom:869.039652px;}
.y37{bottom:883.979646px;}
.yc{bottom:892.979643px;}
.y36{bottom:903.959638px;}
.yb{bottom:910.979636px;}
.y35{bottom:923.939630px;}
.ya{bottom:929.159628px;}
.y34{bottom:943.919622px;}
.y9{bottom:947.159621px;}
.y33{bottom:963.719615px;}
.y8{bottom:965.339614px;}
.y6c{bottom:971.639611px;}
.y7{bottom:982.439607px;}
.y6{bottom:997.199601px;}
.y5{bottom:1013.759594px;}
.y4{bottom:1031.039588px;}
.y3{bottom:1049.579580px;}
.y2{bottom:1062.719575px;}
.y1{bottom:1076.039570px;}
.h1{height:43.817450px;}
.h2{height:43.839260px;}
.h5{height:55.104651px;}
.h4{height:55.132080px;}
.h6{height:60.445426px;}
.h3{height:66.424192px;}
.h9{height:77.013140px;}
.h8{height:77.051474px;}
.h7{height:85.260903px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:162.899911px;}
.x8{left:213.659723px;}
.xb{left:219.239912px;}
.x5{left:289.799884px;}
.x6{left:371.879851px;}
.xc{left:443.699823px;}
.xd{left:449.279820px;}
.x7{left:544.859782px;}
.x9{left:614.879754px;}
.xa{left:620.459752px;}
.x2{left:627.839757px;}
.xe{left:643.319743px;}
.xf{left:648.899740px;}
.x10{left:690.839724px;}
.x11{left:696.419721px;}
.x3{left:720.359712px;}
.x1{left:728.819708px;}
@media print{
.v1{vertical-align:-71.039972pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:165.786067pt;}
.ws1{word-spacing:-15.039994pt;}
.ws2{word-spacing:-12.483195pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-5.459094pt;}
._5{margin-left:-4.545590pt;}
._4{margin-left:-3.647923pt;}
._6{margin-left:-2.316676pt;}
._0{margin-left:-1.410144pt;}
._1{width:0.998179pt;}
._9{width:1.910178pt;}
._8{width:2.835437pt;}
._2{width:3.891590pt;}
._3{width:5.264927pt;}
._7{width:6.611748pt;}
._12{width:8.004207pt;}
._11{width:8.985930pt;}
._b{width:9.928064pt;}
._a{width:10.879043pt;}
._c{width:12.116365pt;}
._13{width:13.832185pt;}
._f{width:16.658402pt;}
._10{width:17.748483pt;}
._e{width:19.417053pt;}
._d{width:20.406133pt;}
._14{width:21.377500pt;}
._16{width:22.453958pt;}
._15{width:23.411816pt;}
.fs0{font-size:39.704944pt;}
.fs2{font-size:49.932780pt;}
.fs3{font-size:54.745045pt;}
.fs1{font-size:60.159976pt;}
.fs5{font-size:69.785039pt;}
.fs4{font-size:75.199970pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:94.879962pt;}
.y5f{bottom:109.279956pt;}
.y6b{bottom:111.359955pt;}
.y31{bottom:112.639955pt;}
.y68{bottom:123.999950pt;}
.y5e{bottom:124.639950pt;}
.y6a{bottom:129.119948pt;}
.y30{bottom:130.399948pt;}
.y5d{bottom:131.519947pt;}
.y73{bottom:138.719945pt;}
.y67{bottom:139.359944pt;}
.y5c{bottom:141.119944pt;}
.y66{bottom:146.239942pt;}
.y69{bottom:146.879941pt;}
.y2f{bottom:148.159941pt;}
.y72{bottom:153.439939pt;}
.y5b{bottom:164.639934pt;}
.y2e{bottom:165.919934pt;}
.y71{bottom:168.159933pt;}
.y65{bottom:171.519931pt;}
.y5a{bottom:182.399927pt;}
.y70{bottom:182.879927pt;}
.y2d{bottom:183.679927pt;}
.y64{bottom:186.879925pt;}
.y63{bottom:193.759922pt;}
.y6f{bottom:198.239921pt;}
.y59{bottom:199.999920pt;}
.y2c{bottom:201.439919pt;}
.y62{bottom:203.359919pt;}
.y6e{bottom:205.119918pt;}
.y6d{bottom:214.879914pt;}
.y58{bottom:217.759913pt;}
.y2b{bottom:219.199912pt;}
.y57{bottom:235.519906pt;}
.y2a{bottom:236.959905pt;}
.y56{bottom:253.279899pt;}
.y29{bottom:254.719898pt;}
.y55{bottom:271.039892pt;}
.y28{bottom:272.479891pt;}
.y54{bottom:288.799884pt;}
.y27{bottom:290.079884pt;}
.y53{bottom:306.559877pt;}
.y26{bottom:307.839877pt;}
.y52{bottom:324.319870pt;}
.y25{bottom:325.599870pt;}
.y51{bottom:342.079863pt;}
.y24{bottom:343.359863pt;}
.y50{bottom:359.839856pt;}
.y23{bottom:361.119856pt;}
.y4f{bottom:377.599849pt;}
.y22{bottom:378.879848pt;}
.y4e{bottom:395.359842pt;}
.y21{bottom:396.639841pt;}
.y4d{bottom:412.959835pt;}
.y20{bottom:414.399834pt;}
.y4c{bottom:430.719828pt;}
.y1f{bottom:432.159827pt;}
.y4b{bottom:448.479821pt;}
.y1e{bottom:449.919820pt;}
.y4a{bottom:466.239814pt;}
.y1d{bottom:467.679813pt;}
.y49{bottom:483.999806pt;}
.y1c{bottom:485.439806pt;}
.y48{bottom:501.759799pt;}
.y1b{bottom:503.199799pt;}
.y61{bottom:508.639797pt;}
.y47{bottom:519.519792pt;}
.y1a{bottom:520.799792pt;}
.y46{bottom:537.279785pt;}
.y19{bottom:538.559785pt;}
.y44{bottom:555.039778pt;}
.y18{bottom:556.319777pt;}
.y45{bottom:561.919775pt;}
.y43{bottom:572.799771pt;}
.y17{bottom:574.079770pt;}
.y42{bottom:590.559764pt;}
.y16{bottom:591.839763pt;}
.y41{bottom:608.319757pt;}
.y15{bottom:609.599756pt;}
.y60{bottom:615.199754pt;}
.y40{bottom:626.079750pt;}
.y3f{bottom:643.679743pt;}
.y14{bottom:645.119742pt;}
.y3e{bottom:661.439735pt;}
.y13{bottom:662.879735pt;}
.y3d{bottom:679.199728pt;}
.y12{bottom:680.639728pt;}
.y3c{bottom:696.959721pt;}
.y11{bottom:698.399721pt;}
.y3b{bottom:714.719714pt;}
.y10{bottom:716.639713pt;}
.y3a{bottom:732.479707pt;}
.yf{bottom:737.119705pt;}
.y39{bottom:750.239700pt;}
.ye{bottom:756.319697pt;}
.y38{bottom:767.999693pt;}
.yd{bottom:772.479691pt;}
.y37{bottom:785.759686pt;}
.yc{bottom:793.759682pt;}
.y36{bottom:803.519679pt;}
.yb{bottom:809.759676pt;}
.y35{bottom:821.279671pt;}
.ya{bottom:825.919670pt;}
.y34{bottom:839.039664pt;}
.y9{bottom:841.919663pt;}
.y33{bottom:856.639657pt;}
.y8{bottom:858.079657pt;}
.y6c{bottom:863.679655pt;}
.y7{bottom:873.279651pt;}
.y6{bottom:886.399645pt;}
.y5{bottom:901.119640pt;}
.y4{bottom:916.479633pt;}
.y3{bottom:932.959627pt;}
.y2{bottom:944.639622pt;}
.y1{bottom:956.479617pt;}
.h1{height:38.948844pt;}
.h2{height:38.968231pt;}
.h5{height:48.981912pt;}
.h4{height:49.006293pt;}
.h6{height:53.729268pt;}
.h3{height:59.043726pt;}
.h9{height:68.456124pt;}
.h8{height:68.490199pt;}
.h7{height:75.787470pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:144.799921pt;}
.x8{left:189.919754pt;}
.xb{left:194.879922pt;}
.x5{left:257.599897pt;}
.x6{left:330.559868pt;}
.xc{left:394.399842pt;}
.xd{left:399.359840pt;}
.x7{left:484.319806pt;}
.x9{left:546.559781pt;}
.xa{left:551.519779pt;}
.x2{left:558.079784pt;}
.xe{left:571.839771pt;}
.xf{left:576.799769pt;}
.x10{left:614.079754pt;}
.x11{left:619.039752pt;}
.x3{left:640.319744pt;}
.x1{left:647.839741pt;}
}




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