
    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_c23d5c67f0e780eb46eb5187.woff')format("woff");}.ff1{font-family:ff1;line-height:0.980957;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_d8aecfdbc99f18193ce899d3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.030273;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_5112929c69a510a3e3138a39.woff')format("woff");}.ff3{font-family:ff3;line-height:0.945000;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_77f14f100f4c9ec0c4c5fcbe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_1626d35fd7f7ec20771d701d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_aa2c9ea7f1155341d9ac548d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f8496671e066d54a386508cf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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:ff8;src:url('chunks/assets/font_39fff33c1f0dd26e08929be8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_94478ab10e9a71998ea1ba70.woff')format("woff");}.ff9{font-family:ff9;line-height:0.692871;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);}
.v2{vertical-align:-33.874449px;}
.v3{vertical-align:-28.808665px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:41.754195px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.011595px;}
.ls6{letter-spacing:0.016726px;}
.ls9{letter-spacing:40.588669px;}
.ls3{letter-spacing:40.656509px;}
.ls2{letter-spacing:40.656522px;}
.ls1{letter-spacing:40.656535px;}
.ls4{letter-spacing:40.656561px;}
.ls8{letter-spacing:59.315659px;}
.ls5{letter-spacing:85.302716px;}
.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:-138.959582px;}
.ws5{word-spacing:-106.859919px;}
.ws4{word-spacing:-106.045154px;}
.ws6{word-spacing:-105.887202px;}
.ws8{word-spacing:-54.539918px;}
.ws2{word-spacing:-34.739896px;}
.ws0{word-spacing:-28.630800px;}
.ws7{word-spacing:-23.040000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-15.271177px;}
._10{margin-left:-13.010380px;}
._3{margin-left:-10.838847px;}
._f{margin-left:-9.727171px;}
._1{margin-left:-8.337575px;}
._11{margin-left:-7.285657px;}
._e{margin-left:-6.268308px;}
._6{margin-left:-5.141505px;}
._0{margin-left:-3.335030px;}
._5{margin-left:-2.223353px;}
._4{margin-left:-1.111677px;}
._2{width:1.250636px;}
._7{width:2.977910px;}
._8{width:9.389407px;}
._9{width:17.141760px;}
._a{width:18.398119px;}
._d{width:19.566716px;}
._c{width:30.849027px;}
._b{width:32.794461px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:49.679400px;}
.fs5{font-size:69.119999px;}
.fs8{font-size:79.200090px;}
.fs7{font-size:92.159998px;}
.fs1{font-size:118.799398px;}
.fs4{font-size:118.800000px;}
.fs0{font-size:138.959582px;}
.fs6{font-size:218.159673px;}
.fs2{font-size:218.160000px;}
.y0{bottom:0.000000px;}
.yb{bottom:136.081055px;}
.ya{bottom:156.779297px;}
.y3e{bottom:184.146852px;}
.y18{bottom:201.055058px;}
.y24{bottom:205.379276px;}
.y36{bottom:218.333736px;}
.y3d{bottom:219.777982px;}
.y63{bottom:226.441972px;}
.y56{bottom:227.154434px;}
.y49{bottom:230.394343px;}
.y2a{bottom:236.704469px;}
.y35{bottom:255.787664px;}
.y17{bottom:258.841007px;}
.y55{bottom:260.469425px;}
.y62{bottom:263.709333px;}
.y48{bottom:267.848271px;}
.y23{bottom:268.916938px;}
.y67{bottom:283.861196px;}
.y29{bottom:286.388642px;}
.y5b{bottom:288.729522px;}
.y54{bottom:293.767488px;}
.y16{bottom:304.555829px;}
.y34{bottom:305.641476px;}
.y61{bottom:313.563145px;}
.y22{bottom:318.601111px;}
.y47{bottom:325.080876px;}
.y66{bottom:333.714956px;}
.y28{bottom:336.242454px;}
.y15{bottom:337.853893px;}
.y5a{bottom:338.583334px;}
.y53{bottom:346.861157px;}
.y3c{bottom:348.303008px;}
.y33{bottom:355.495288px;}
.y21{bottom:356.038059px;}
.y46{bottom:362.517876px;}
.y60{bottom:363.416905px;}
.y14{bottom:370.982317px;}
.y59{bottom:376.020283px;}
.y52{bottom:380.159220px;}
.y65{bottom:383.585746px;}
.y27{bottom:386.096214px;}
.y3b{bottom:389.878946px;}
.y32{bottom:392.949216px;}
.y20{bottom:393.475059px;}
.y45{bottom:399.954877px;}
.y5f{bottom:400.853905px;}
.y51{bottom:413.287644px;}
.y13{bottom:416.697192px;}
.y58{bottom:425.704455px;}
.y3{bottom:426.966334px;}
.y1f{bottom:430.928987px;}
.y64{bottom:433.269868px;}
.y26{bottom:435.780387px;}
.y31{bottom:442.616409px;}
.y3a{bottom:443.888622px;}
.y12{bottom:449.995255px;}
.y5e{bottom:450.538078px;}
.y44{bottom:457.204462px;}
.y2{bottom:464.040484px;}
.y50{bottom:466.381364px;}
.y30{bottom:480.053409px;}
.y1e{bottom:480.782799px;}
.y11{bottom:483.293318px;}
.y39{bottom:485.464534px;}
.y5d{bottom:487.975052px;}
.y4f{bottom:499.679402px;}
.y1{bottom:505.616396px;}
.y43{bottom:514.267454px;}
.y1d{bottom:518.219799px;}
.y38{bottom:527.040471px;}
.y10{bottom:528.838528px;}
.y2f{bottom:529.924149px;}
.y42{bottom:551.704429px;}
.y4e{bottom:552.773096px;}
.y1c{bottom:555.656774px;}
.y5{bottom:560.326670px;}
.yf{bottom:562.136591px;}
.y2e{bottom:567.361123px;}
.y4d{bottom:586.088113px;}
.y1b{bottom:605.340921px;}
.ye{bottom:607.681801px;}
.y41{bottom:608.937060px;}
.y37{bottom:614.888008px;}
.y2d{bottom:617.045296px;}
.y25{bottom:621.732127px;}
.y4{bottom:625.665608px;}
.y4c{bottom:638.995215px;}
.y5c{bottom:640.613369px;}
.yd{bottom:640.979864px;}
.y1a{bottom:642.777921px;}
.y40{bottom:646.374035px;}
.y57{bottom:650.892867px;}
.y2c{bottom:654.482270px;}
.y4b{bottom:672.293252px;}
.y3f{bottom:714.593804px;}
.yc{bottom:716.218286px;}
.y9{bottom:720.168298px;}
.y19{bottom:721.810754px;}
.y7{bottom:722.884644px;}
.y2b{bottom:726.311349px;}
.y4a{bottom:730.092941px;}
.y6{bottom:737.821215px;}
.y8{bottom:755.095504px;}
.ha{height:49.511249px;}
.h4{height:50.868018px;}
.h6{height:68.748749px;}
.hc{height:85.097030px;}
.h5{height:90.288000px;}
.h9{height:99.537943px;}
.h2{height:100.411015px;}
.h8{height:101.166376px;}
.hb{height:107.769194px;}
.h1{height:117.450702px;}
.h7{height:156.269648px;}
.h3{height:165.801600px;}
.h0{height:918.000000px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x8{left:9.002813px;}
.xd{left:41.038093px;}
.x9{left:45.006085px;}
.x17{left:55.977985px;}
.xa{left:60.659113px;}
.x3{left:64.257832px;}
.x12{left:65.884648px;}
.xe{left:67.325510px;}
.x1{left:70.921636px;}
.x1b{left:74.885868px;}
.x19{left:76.858630px;}
.x14{left:79.572888px;}
.xb{left:82.982210px;}
.x18{left:84.952315px;}
.x13{left:88.206768px;}
.x1d{left:90.717268px;}
.x1a{left:99.181728px;}
.x1c{left:102.591256px;}
.x10{left:110.517903px;}
.x15{left:113.583175px;}
.x11{left:131.580749px;}
.x4{left:147.421624px;}
.x5{left:343.274753px;}
.x2{left:397.795552px;}
.x16{left:582.830548px;}
.x6{left:585.534840px;}
.xc{left:967.137932px;}
.xf{left:1001.336174px;}
.x7{left:1075.496386px;}
@media print{
.v2{vertical-align:-30.110622pt;}
.v3{vertical-align:-25.607702pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:37.114840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010307pt;}
.ls6{letter-spacing:0.014868pt;}
.ls9{letter-spacing:36.078817pt;}
.ls3{letter-spacing:36.139119pt;}
.ls2{letter-spacing:36.139131pt;}
.ls1{letter-spacing:36.139142pt;}
.ls4{letter-spacing:36.139165pt;}
.ls8{letter-spacing:52.725030pt;}
.ls5{letter-spacing:75.824636pt;}
.ws3{word-spacing:-123.519629pt;}
.ws5{word-spacing:-94.986594pt;}
.ws4{word-spacing:-94.262359pt;}
.ws6{word-spacing:-94.121957pt;}
.ws8{word-spacing:-48.479927pt;}
.ws2{word-spacing:-30.879907pt;}
.ws0{word-spacing:-25.449600pt;}
.ws7{word-spacing:-20.480000pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-13.574380pt;}
._10{margin-left:-11.564782pt;}
._3{margin-left:-9.634531pt;}
._f{margin-left:-8.646374pt;}
._1{margin-left:-7.411178pt;}
._11{margin-left:-6.476140pt;}
._e{margin-left:-5.571830pt;}
._6{margin-left:-4.570226pt;}
._0{margin-left:-2.964471pt;}
._5{margin-left:-1.976314pt;}
._4{margin-left:-0.988157pt;}
._2{width:1.111677pt;}
._7{width:2.647031pt;}
._8{width:8.346139pt;}
._9{width:15.237120pt;}
._a{width:16.353884pt;}
._d{width:17.392637pt;}
._c{width:27.421358pt;}
._b{width:29.150632pt;}
.fs3{font-size:44.159467pt;}
.fs5{font-size:61.439999pt;}
.fs8{font-size:70.400080pt;}
.fs7{font-size:81.919998pt;}
.fs1{font-size:105.599465pt;}
.fs4{font-size:105.600000pt;}
.fs0{font-size:123.519629pt;}
.fs6{font-size:193.919709pt;}
.fs2{font-size:193.920000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:120.960937pt;}
.ya{bottom:139.359375pt;}
.y3e{bottom:163.686091pt;}
.y18{bottom:178.715607pt;}
.y24{bottom:182.559357pt;}
.y36{bottom:194.074432pt;}
.y3d{bottom:195.358206pt;}
.y63{bottom:201.281753pt;}
.y56{bottom:201.915052pt;}
.y49{bottom:204.794971pt;}
.y2a{bottom:210.403973pt;}
.y35{bottom:227.366813pt;}
.y17{bottom:230.080895pt;}
.y55{bottom:231.528378pt;}
.y62{bottom:234.408296pt;}
.y48{bottom:238.087352pt;}
.y23{bottom:239.037278pt;}
.y67{bottom:252.321063pt;}
.y29{bottom:254.567682pt;}
.y5b{bottom:256.648464pt;}
.y54{bottom:261.126656pt;}
.y16{bottom:270.716293pt;}
.y34{bottom:271.681312pt;}
.y61{bottom:278.722796pt;}
.y22{bottom:283.200987pt;}
.y47{bottom:288.960779pt;}
.y66{bottom:296.635516pt;}
.y28{bottom:298.882181pt;}
.y15{bottom:300.314571pt;}
.y5a{bottom:300.962964pt;}
.y53{bottom:308.321028pt;}
.y3c{bottom:309.602674pt;}
.y33{bottom:315.995811pt;}
.y21{bottom:316.478275pt;}
.y46{bottom:322.238112pt;}
.y60{bottom:323.037249pt;}
.y14{bottom:329.762060pt;}
.y59{bottom:334.240251pt;}
.y52{bottom:337.919306pt;}
.y65{bottom:340.965108pt;}
.y27{bottom:343.196634pt;}
.y3b{bottom:346.559063pt;}
.y32{bottom:349.288192pt;}
.y20{bottom:349.755608pt;}
.y45{bottom:355.515446pt;}
.y5f{bottom:356.314582pt;}
.y51{bottom:367.366795pt;}
.y13{bottom:370.397504pt;}
.y58{bottom:378.403960pt;}
.y3{bottom:379.525631pt;}
.y1f{bottom:383.047989pt;}
.y64{bottom:385.128771pt;}
.y26{bottom:387.360344pt;}
.y31{bottom:393.436808pt;}
.y3a{bottom:394.567664pt;}
.y12{bottom:399.995782pt;}
.y5e{bottom:400.478292pt;}
.y44{bottom:406.403966pt;}
.y2{bottom:412.480430pt;}
.y50{bottom:414.561213pt;}
.y30{bottom:426.714142pt;}
.y1e{bottom:427.362488pt;}
.y11{bottom:429.594060pt;}
.y39{bottom:431.524030pt;}
.y5d{bottom:433.755602pt;}
.y4f{bottom:444.159468pt;}
.y1{bottom:449.436796pt;}
.y43{bottom:457.126626pt;}
.y1d{bottom:460.639822pt;}
.y38{bottom:468.480419pt;}
.y10{bottom:470.078691pt;}
.y2f{bottom:471.043688pt;}
.y42{bottom:490.403937pt;}
.y4e{bottom:491.353863pt;}
.y1c{bottom:493.917132pt;}
.y5{bottom:498.068151pt;}
.yf{bottom:499.676970pt;}
.y2e{bottom:504.320998pt;}
.y4d{bottom:520.967211pt;}
.y1b{bottom:538.080818pt;}
.ye{bottom:540.161601pt;}
.y41{bottom:541.277387pt;}
.y37{bottom:546.567118pt;}
.y2d{bottom:548.484707pt;}
.y25{bottom:552.650780pt;}
.y4{bottom:556.147207pt;}
.y4c{bottom:567.995747pt;}
.y5c{bottom:569.434106pt;}
.yd{bottom:569.759879pt;}
.y1a{bottom:571.358152pt;}
.y40{bottom:574.554698pt;}
.y57{bottom:578.571438pt;}
.y2c{bottom:581.762018pt;}
.y4b{bottom:597.594002pt;}
.y3f{bottom:635.194493pt;}
.yc{bottom:636.638476pt;}
.y9{bottom:640.149598pt;}
.y19{bottom:641.609559pt;}
.y7{bottom:642.564128pt;}
.y2b{bottom:645.610088pt;}
.y4a{bottom:648.971503pt;}
.y6{bottom:655.841080pt;}
.y8{bottom:671.196004pt;}
.ha{height:44.009999pt;}
.h4{height:45.216016pt;}
.h6{height:61.109999pt;}
.hc{height:75.641804pt;}
.h5{height:80.256000pt;}
.h9{height:88.478172pt;}
.h2{height:89.254236pt;}
.h8{height:89.925667pt;}
.hb{height:95.794839pt;}
.h1{height:104.400624pt;}
.h7{height:138.906354pt;}
.h3{height:147.379200pt;}
.h0{height:816.000000pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x8{left:8.002500pt;}
.xd{left:36.478305pt;}
.x9{left:40.005409pt;}
.x17{left:49.758209pt;}
.xa{left:53.919212pt;}
.x3{left:57.118073pt;}
.x12{left:58.564132pt;}
.xe{left:59.844897pt;}
.x1{left:63.041455pt;}
.x1b{left:66.565216pt;}
.x19{left:68.318783pt;}
.x14{left:70.731456pt;}
.xb{left:73.761965pt;}
.x18{left:75.513169pt;}
.x13{left:78.406016pt;}
.x1d{left:80.637571pt;}
.x1a{left:88.161536pt;}
.x1c{left:91.192227pt;}
.x10{left:98.238136pt;}
.x15{left:100.962822pt;}
.x11{left:116.960666pt;}
.x4{left:131.041443pt;}
.x5{left:305.133113pt;}
.x2{left:353.596046pt;}
.x16{left:518.071599pt;}
.x6{left:520.475414pt;}
.xc{left:859.678162pt;}
.xf{left:890.076599pt;}
.x7{left:955.996787pt;}
}




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