
    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_a8b1e23882e88414b4e6aea8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915039;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_33ce219e49eea9afbd95e889.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928223;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_b150c26d6c94bf4ed22b40f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_c645641b31335e786eafc900.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_7b6ba3aa420081989cbc3127.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.866699;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_c7e46668a0868ae72f73ad6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_ac977d837befa6aa82da98c0.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m2{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls1{letter-spacing:0.006069px;}
.ls2{letter-spacing:60.789136px;}
.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;}
}
.ws2{word-spacing:-56.068200px;}
.ws0{word-spacing:-37.355323px;}
.ws3{word-spacing:-37.288620px;}
.ws1{word-spacing:0.000000px;}
._26{margin-left:-10.552971px;}
._25{margin-left:-9.283517px;}
._19{margin-left:-8.119461px;}
._1a{margin-left:-6.864369px;}
._1e{margin-left:-4.945316px;}
._7{margin-left:-3.735532px;}
._5{margin-left:-2.490355px;}
._0{margin-left:-1.245177px;}
._1{width:1.015087px;}
._d{width:3.112944px;}
._c{width:4.358121px;}
._13{width:5.603298px;}
._e{width:6.848476px;}
._f{width:8.093653px;}
._14{width:9.982270px;}
._6{width:11.829185px;}
._22{width:13.705063px;}
._23{width:15.040219px;}
._24{width:16.057908px;}
._1d{width:18.676879px;}
._a{width:21.168016px;}
._b{width:22.413194px;}
._8{width:23.658371px;}
._9{width:26.148726px;}
._12{width:27.623994px;}
._10{width:31.129435px;}
._11{width:32.374613px;}
._1c{width:33.915569px;}
._1b{width:36.096442px;}
._21{width:39.122706px;}
._17{width:40.440712px;}
._18{width:41.659390px;}
._15{width:45.392097px;}
._16{width:46.862918px;}
._1f{width:47.972431px;}
._20{width:49.221268px;}
._3{width:375.420992px;}
._4{width:385.382411px;}
._2{width:867.219884px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:56.068200px;}
.fs5{font-size:62.147700px;}
.fs0{font-size:62.258871px;}
.fs1{font-size:90.004191px;}
.fs2{font-size:101.508708px;}
.fs3{font-size:113.013225px;}
.fs4{font-size:146.849953px;}
.y0{bottom:0.000000px;}
.y9{bottom:6.833816px;}
.y7{bottom:54.176236px;}
.y36{bottom:54.179970px;}
.y6{bottom:71.998105px;}
.y35{bottom:72.000000px;}
.y2f{bottom:136.079999px;}
.y2e{bottom:162.361648px;}
.y58{bottom:163.799973px;}
.y2d{bottom:188.643297px;}
.y57{bottom:190.259994px;}
.y2c{bottom:215.100658px;}
.y56{bottom:216.360008px;}
.y2b{bottom:241.377482px;}
.y55{bottom:242.820030px;}
.y2a{bottom:267.844306px;}
.y54{bottom:269.279983px;}
.y29{bottom:294.296935px;}
.y53{bottom:295.559967px;}
.y28{bottom:320.402779px;}
.y52{bottom:321.840019px;}
.y27{bottom:346.860140px;}
.y51{bottom:348.299973px;}
.y26{bottom:373.322325px;}
.y50{bottom:374.580025px;}
.y25{bottom:399.603881px;}
.y4f{bottom:401.039977px;}
.y24{bottom:425.885530px;}
.y4e{bottom:427.320030px;}
.y23{bottom:452.338113px;}
.y4d{bottom:453.600013px;}
.y22{bottom:478.619715px;}
.y4c{bottom:480.059967px;}
.y21{bottom:505.081854px;}
.y4b{bottom:506.519989px;}
.y20{bottom:531.182966px;}
.y4a{bottom:532.799973px;}
.y1f{bottom:557.645058px;}
.y49{bottom:559.080025px;}
.y1e{bottom:575.281706px;}
.y48{bottom:585.360008px;}
.y6a{bottom:585.539977px;}
.y1d{bottom:592.923132px;}
.y69{bottom:611.820030px;}
.y47{bottom:613.079990px;}
.y1c{bottom:633.421400px;}
.y68{bottom:638.279983px;}
.y46{bottom:639.360008px;}
.y1b{bottom:658.800554px;}
.y67{bottom:664.560001px;}
.y45{bottom:665.819995px;}
.y1a{bottom:684.184392px;}
.y66{bottom:690.839985px;}
.y44{bottom:692.279983px;}
.y19{bottom:709.558768px;}
.y65{bottom:717.300007px;}
.y43{bottom:718.379998px;}
.y18{bottom:734.943581px;}
.y64{bottom:743.759994px;}
.y42{bottom:744.839985px;}
.y17{bottom:760.319858px;}
.y63{bottom:769.860008px;}
.y41{bottom:772.379998px;}
.y16{bottom:785.703697px;}
.y62{bottom:796.319995px;}
.y40{bottom:798.839985px;}
.y15{bottom:811.079975px;}
.y61{bottom:822.779983px;}
.y3f{bottom:825.300007px;}
.y14{bottom:836.463859px;}
.y60{bottom:849.060001px;}
.y3e{bottom:851.579990px;}
.y11{bottom:863.822302px;}
.y12{bottom:863.823715px;}
.y13{bottom:863.825861px;}
.y5f{bottom:875.339985px;}
.y3d{bottom:877.860008px;}
.y10{bottom:891.174726px;}
.y5e{bottom:903.060001px;}
.y3c{bottom:904.319996px;}
.yf{bottom:927.359199px;}
.y8{bottom:928.985247px;}
.y5d{bottom:929.340002px;}
.y3b{bottom:931.860008px;}
.yd{bottom:953.457646px;}
.ye{bottom:953.463925px;}
.y5c{bottom:955.620002px;}
.y3a{bottom:958.139992px;}
.yc{bottom:973.805716px;}
.y5b{bottom:983.340002px;}
.y39{bottom:984.599997px;}
.yb{bottom:1002.602872px;}
.y5a{bottom:1009.620002px;}
.y38{bottom:1011.060001px;}
.y59{bottom:1035.900003px;}
.y37{bottom:1037.159998px;}
.ya{bottom:1037.163593px;}
.y34{bottom:1054.799998px;}
.y5{bottom:1054.803105px;}
.y4{bottom:1072.260214px;}
.y33{bottom:1072.439999px;}
.y3{bottom:1089.899715px;}
.y32{bottom:1090.079999px;}
.y2{bottom:1107.539221px;}
.y31{bottom:1107.540003px;}
.y1{bottom:1125.178728px;}
.y30{bottom:1125.180000px;}
.h4{height:25.731177px;}
.he{height:42.149978px;}
.ha{height:42.225377px;}
.hb{height:43.879675px;}
.h1{height:43.958168px;}
.hd{height:45.245225px;}
.h3{height:45.326160px;}
.h8{height:61.924473px;}
.h5{height:63.547881px;}
.hc{height:63.634632px;}
.h2{height:63.748463px;}
.h6{height:71.670699px;}
.h7{height:79.793517px;}
.h9{height:103.684097px;}
.h0{height:1188.000000px;}
.w1{width:7.743363px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:118.802012px;}
.x13{left:144.180005px;}
.xf{left:152.103384px;}
.x10{left:165.597523px;}
.x11{left:169.202415px;}
.x1{left:174.777569px;}
.x3{left:221.398587px;}
.xe{left:238.496905px;}
.x7{left:240.658537px;}
.x2{left:267.837506px;}
.x9{left:275.945054px;}
.xb{left:281.880717px;}
.x8{left:300.597389px;}
.xa{left:344.523099px;}
.x5{left:375.843487px;}
.xc{left:635.581144px;}
.x12{left:778.327744px;}
.xd{left:784.625836px;}
.x4{left:798.299426px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005395pt;}
.ls2{letter-spacing:54.034787pt;}
.ws2{word-spacing:-49.838400pt;}
.ws0{word-spacing:-33.204731pt;}
.ws3{word-spacing:-33.145440pt;}
.ws1{word-spacing:0.000000pt;}
._26{margin-left:-9.380418pt;}
._25{margin-left:-8.252015pt;}
._19{margin-left:-7.217299pt;}
._1a{margin-left:-6.101661pt;}
._1e{margin-left:-4.395837pt;}
._7{margin-left:-3.320473pt;}
._5{margin-left:-2.213649pt;}
._0{margin-left:-1.106824pt;}
._1{width:0.902300pt;}
._d{width:2.767061pt;}
._c{width:3.873885pt;}
._13{width:4.980710pt;}
._e{width:6.087534pt;}
._f{width:7.194358pt;}
._14{width:8.873129pt;}
._6{width:10.514832pt;}
._22{width:12.182278pt;}
._23{width:13.369083pt;}
._24{width:14.273696pt;}
._1d{width:16.601670pt;}
._a{width:18.816014pt;}
._b{width:19.922839pt;}
._8{width:21.029663pt;}
._9{width:23.243312pt;}
._12{width:24.554661pt;}
._10{width:27.670609pt;}
._11{width:28.777434pt;}
._1c{width:30.147172pt;}
._1b{width:32.085726pt;}
._21{width:34.775738pt;}
._17{width:35.947300pt;}
._18{width:37.030569pt;}
._15{width:40.348531pt;}
._16{width:41.655927pt;}
._1f{width:42.642161pt;}
._20{width:43.752238pt;}
._3{width:333.707549pt;}
._4{width:342.562143pt;}
._2{width:770.862119pt;}
.fs6{font-size:49.838400pt;}
.fs5{font-size:55.242400pt;}
.fs0{font-size:55.341219pt;}
.fs1{font-size:80.003726pt;}
.fs2{font-size:90.229963pt;}
.fs3{font-size:100.456200pt;}
.fs4{font-size:130.533291pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:6.074503pt;}
.y7{bottom:48.156654pt;}
.y36{bottom:48.159973pt;}
.y6{bottom:63.998316pt;}
.y35{bottom:64.000000pt;}
.y2f{bottom:120.959999pt;}
.y2e{bottom:144.321465pt;}
.y58{bottom:145.599976pt;}
.y2d{bottom:167.682931pt;}
.y57{bottom:169.119995pt;}
.y2c{bottom:191.200585pt;}
.y56{bottom:192.320007pt;}
.y2b{bottom:214.557762pt;}
.y55{bottom:215.840027pt;}
.y2a{bottom:238.083827pt;}
.y54{bottom:239.359985pt;}
.y29{bottom:261.597276pt;}
.y53{bottom:262.719971pt;}
.y28{bottom:284.802470pt;}
.y52{bottom:286.080017pt;}
.y27{bottom:308.320124pt;}
.y51{bottom:309.599976pt;}
.y26{bottom:331.842067pt;}
.y50{bottom:332.960022pt;}
.y25{bottom:355.203450pt;}
.y4f{bottom:356.479980pt;}
.y24{bottom:378.564915pt;}
.y4e{bottom:379.840027pt;}
.y23{bottom:402.078322pt;}
.y4d{bottom:403.200012pt;}
.y22{bottom:425.439747pt;}
.y4c{bottom:426.719971pt;}
.y21{bottom:448.961648pt;}
.y4b{bottom:450.239990pt;}
.y20{bottom:472.162637pt;}
.y4a{bottom:473.599976pt;}
.y1f{bottom:495.684496pt;}
.y49{bottom:496.960022pt;}
.y1e{bottom:511.361517pt;}
.y48{bottom:520.320007pt;}
.y6a{bottom:520.479980pt;}
.y1d{bottom:527.042784pt;}
.y69{bottom:543.840027pt;}
.y47{bottom:544.959991pt;}
.y1c{bottom:563.041245pt;}
.y68{bottom:567.359985pt;}
.y46{bottom:568.320007pt;}
.y1b{bottom:585.600492pt;}
.y67{bottom:590.720001pt;}
.y45{bottom:591.839996pt;}
.y1a{bottom:608.163904pt;}
.y66{bottom:614.079987pt;}
.y44{bottom:615.359985pt;}
.y19{bottom:630.718905pt;}
.y65{bottom:637.600006pt;}
.y43{bottom:638.559998pt;}
.y18{bottom:653.283183pt;}
.y64{bottom:661.119995pt;}
.y42{bottom:662.079987pt;}
.y17{bottom:675.839874pt;}
.y63{bottom:684.320007pt;}
.y41{bottom:686.559998pt;}
.y16{bottom:698.403286pt;}
.y62{bottom:707.839996pt;}
.y40{bottom:710.079987pt;}
.y15{bottom:720.959977pt;}
.y61{bottom:731.359985pt;}
.y3f{bottom:733.600006pt;}
.y14{bottom:743.523431pt;}
.y60{bottom:754.720001pt;}
.y3e{bottom:756.959991pt;}
.y11{bottom:767.842046pt;}
.y12{bottom:767.843303pt;}
.y13{bottom:767.845210pt;}
.y5f{bottom:778.079987pt;}
.y3d{bottom:780.320007pt;}
.y10{bottom:792.155312pt;}
.y5e{bottom:802.720001pt;}
.y3c{bottom:803.839996pt;}
.yf{bottom:824.319288pt;}
.y8{bottom:825.764664pt;}
.y5d{bottom:826.080002pt;}
.y3b{bottom:828.320007pt;}
.yd{bottom:847.517907pt;}
.ye{bottom:847.523489pt;}
.y5c{bottom:849.440002pt;}
.y3a{bottom:851.679993pt;}
.yc{bottom:865.605081pt;}
.y5b{bottom:874.080002pt;}
.y39{bottom:875.199997pt;}
.yb{bottom:891.202553pt;}
.y5a{bottom:897.440002pt;}
.y38{bottom:898.720001pt;}
.y59{bottom:920.800003pt;}
.y37{bottom:921.919998pt;}
.ya{bottom:921.923194pt;}
.y34{bottom:937.599998pt;}
.y5{bottom:937.602760pt;}
.y4{bottom:953.120190pt;}
.y33{bottom:953.279999pt;}
.y3{bottom:968.799747pt;}
.y32{bottom:968.959999pt;}
.y2{bottom:984.479308pt;}
.y31{bottom:984.480003pt;}
.y1{bottom:1000.158869pt;}
.y30{bottom:1000.160000pt;}
.h4{height:22.872158pt;}
.he{height:37.466647pt;}
.ha{height:37.533668pt;}
.hb{height:39.004155pt;}
.h1{height:39.073927pt;}
.hd{height:40.217978pt;}
.h3{height:40.289920pt;}
.h8{height:55.043976pt;}
.h5{height:56.487006pt;}
.hc{height:56.564118pt;}
.h2{height:56.665301pt;}
.h6{height:63.707288pt;}
.h7{height:70.927571pt;}
.h9{height:92.163642pt;}
.h0{height:1056.000000pt;}
.w1{width:6.882989pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:105.601788pt;}
.x13{left:128.160004pt;}
.xf{left:135.203008pt;}
.x10{left:147.197799pt;}
.x11{left:150.402147pt;}
.x1{left:155.357839pt;}
.x3{left:196.798744pt;}
.xe{left:211.997249pt;}
.x7{left:213.918700pt;}
.x2{left:238.077783pt;}
.x9{left:245.284493pt;}
.xb{left:250.560637pt;}
.x8{left:267.197679pt;}
.xa{left:306.242755pt;}
.x5{left:334.083100pt;}
.xc{left:564.961017pt;}
.x12{left:691.846884pt;}
.xd{left:697.445187pt;}
.x4{left:709.599490pt;}
}




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