
    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_b7d09d38f9e3a43743b8d5a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_42d508b663312b1adf361ee8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_430d44cfeadfa2985d30ad15.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_688fe8e2e35d962f8954bc02.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_6ac2212272ac4d39942bd0aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_11cc79f3a99c42e7722d781f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.870000px;}
.ls7{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.223800px;}
.ls3{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.305400px;}
.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;}
}
.ws6{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.690000px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-4.949280px;}
._c{margin-left:-3.283440px;}
._a{margin-left:-2.256000px;}
._0{margin-left:-1.254240px;}
._2{width:1.213680px;}
._6{width:3.030480px;}
._7{width:4.579440px;}
._10{width:5.960160px;}
._3{width:7.869840px;}
._4{width:9.052080px;}
._f{width:10.215840px;}
._9{width:11.552160px;}
._8{width:12.770160px;}
._13{width:14.084880px;}
._12{width:15.500160px;}
._5{width:16.673040px;}
._d{width:18.208320px;}
._18{width:19.251120px;}
._11{width:20.335680px;}
._16{width:21.395520px;}
._17{width:22.433520px;}
._1b{width:24.115200px;}
._1a{width:25.171200px;}
._1c{width:27.485280px;}
._22{width:31.199040px;}
._23{width:32.314560px;}
._14{width:34.109280px;}
._15{width:35.388960px;}
._26{width:43.983360px;}
._1d{width:53.389440px;}
._1e{width:82.560960px;}
._21{width:104.592960px;}
._e{width:106.980960px;}
._19{width:199.416000px;}
._1f{width:230.448960px;}
._20{width:231.980640px;}
._25{width:515.455440px;}
._24{width:516.535200px;}
._1{width:1033.168800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.960000px;}
.y5{bottom:37.800000px;}
.y4{bottom:57.240000px;}
.y40{bottom:66.240000px;}
.y70{bottom:113.940000px;}
.y3d{bottom:128.880000px;}
.y6f{bottom:135.756000px;}
.y3c{bottom:150.690000px;}
.y6e{bottom:157.530000px;}
.y3b{bottom:172.470000px;}
.y6d{bottom:179.310000px;}
.y3a{bottom:194.250000px;}
.y6c{bottom:201.270000px;}
.y39{bottom:216.030000px;}
.y6b{bottom:223.050000px;}
.y38{bottom:237.990000px;}
.y6a{bottom:244.830000px;}
.y37{bottom:259.770000px;}
.y69{bottom:266.610000px;}
.y36{bottom:281.550000px;}
.y68{bottom:288.390000px;}
.y35{bottom:303.330000px;}
.y67{bottom:310.350000px;}
.y34{bottom:325.290000px;}
.y66{bottom:332.130000px;}
.y33{bottom:347.070000px;}
.y65{bottom:353.910000px;}
.y32{bottom:367.050000px;}
.y64{bottom:375.690000px;}
.y31{bottom:382.890000px;}
.y63{bottom:397.695000px;}
.y30{bottom:398.055000px;}
.y2f{bottom:416.595000px;}
.y62{bottom:419.475000px;}
.y2e{bottom:433.695000px;}
.y61{bottom:441.255000px;}
.y2d{bottom:450.975000px;}
.y60{bottom:463.035000px;}
.y2c{bottom:468.255000px;}
.y5f{bottom:484.815000px;}
.y2b{bottom:485.535000px;}
.y2a{bottom:502.815000px;}
.y5e{bottom:506.775000px;}
.y29{bottom:519.915000px;}
.y5d{bottom:528.555000px;}
.y28{bottom:537.195000px;}
.y5c{bottom:550.335000px;}
.y27{bottom:554.475000px;}
.y26{bottom:571.755000px;}
.y5b{bottom:572.115000px;}
.y25{bottom:589.035000px;}
.y5a{bottom:594.075000px;}
.y24{bottom:606.315000px;}
.y59{bottom:615.855000px;}
.y23{bottom:623.415000px;}
.y58{bottom:637.635000px;}
.y22{bottom:640.725000px;}
.y21{bottom:658.005000px;}
.y57{bottom:659.445000px;}
.y20{bottom:675.285000px;}
.y56{bottom:681.225000px;}
.y1f{bottom:692.565000px;}
.y55{bottom:703.185000px;}
.y1e{bottom:709.845000px;}
.y54{bottom:724.965000px;}
.y1d{bottom:726.945000px;}
.y1c{bottom:744.225000px;}
.y53{bottom:746.745000px;}
.y1b{bottom:761.505000px;}
.y52{bottom:768.525000px;}
.y1a{bottom:778.785000px;}
.y51{bottom:790.305000px;}
.y19{bottom:796.065000px;}
.y50{bottom:812.265000px;}
.y18{bottom:813.165000px;}
.y17{bottom:830.445000px;}
.y4f{bottom:834.045000px;}
.y16{bottom:848.265000px;}
.y4e{bottom:855.825000px;}
.y15{bottom:866.805000px;}
.y4d{bottom:877.605000px;}
.y14{bottom:883.905000px;}
.y4c{bottom:899.610000px;}
.y13{bottom:906.450000px;}
.y12{bottom:918.870000px;}
.y4b{bottom:921.390000px;}
.y11{bottom:937.950000px;}
.y4a{bottom:943.170000px;}
.y10{bottom:956.850000px;}
.y49{bottom:964.950000px;}
.yf{bottom:975.930000px;}
.y48{bottom:986.730000px;}
.ye{bottom:994.830000px;}
.y47{bottom:1008.690000px;}
.yd{bottom:1014.270000px;}
.y46{bottom:1030.470000px;}
.yc{bottom:1036.770000px;}
.y45{bottom:1052.250000px;}
.yb{bottom:1057.470000px;}
.ya{bottom:1072.050000px;}
.y44{bottom:1074.030000px;}
.y9{bottom:1089.330000px;}
.y43{bottom:1095.990000px;}
.y8{bottom:1106.610000px;}
.y42{bottom:1117.770000px;}
.y7{bottom:1123.710000px;}
.y41{bottom:1139.550000px;}
.y6{bottom:1140.990000px;}
.y3f{bottom:1161.720000px;}
.y3{bottom:1161.900000px;}
.y3e{bottom:1178.460000px;}
.y1{bottom:1178.640000px;}
.h2{height:20.700000px;}
.h8{height:34.036523px;}
.hd{height:34.114922px;}
.h10{height:34.837383px;}
.h11{height:39.760312px;}
.h6{height:42.164648px;}
.h5{height:42.327773px;}
.hf{height:43.156758px;}
.ha{height:46.736719px;}
.he{height:49.255313px;}
.h3{height:51.996094px;}
.h7{height:52.435898px;}
.hb{height:54.596250px;}
.h9{height:54.864844px;}
.hc{height:58.121719px;}
.h4{height:63.175781px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:61.200000px;}
.w3{width:619.485000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.xa{left:132.695987px;}
.x7{left:138.815987px;}
.x5{left:148.715987px;}
.xf{left:150.509987px;}
.xe{left:161.129987px;}
.x8{left:163.649987px;}
.x3{left:169.230000px;}
.x6{left:182.909987px;}
.xc{left:308.594987px;}
.x9{left:338.474987px;}
.xb{left:353.954987px;}
.xd{left:420.194987px;}
.x4{left:446.474987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.773333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.198933pt;}
.ls3{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.271467pt;}
.ws6{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.946667pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-4.399360pt;}
._c{margin-left:-2.918613pt;}
._a{margin-left:-2.005333pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.078827pt;}
._6{width:2.693760pt;}
._7{width:4.070613pt;}
._10{width:5.297920pt;}
._3{width:6.995413pt;}
._4{width:8.046293pt;}
._f{width:9.080747pt;}
._9{width:10.268587pt;}
._8{width:11.351253pt;}
._13{width:12.519893pt;}
._12{width:13.777920pt;}
._5{width:14.820480pt;}
._d{width:16.185173pt;}
._18{width:17.112107pt;}
._11{width:18.076160pt;}
._16{width:19.018240pt;}
._17{width:19.940907pt;}
._1b{width:21.435733pt;}
._1a{width:22.374400pt;}
._1c{width:24.431360pt;}
._22{width:27.732480pt;}
._23{width:28.724053pt;}
._14{width:30.319360pt;}
._15{width:31.456853pt;}
._26{width:39.096320pt;}
._1d{width:47.457280pt;}
._1e{width:73.387520pt;}
._21{width:92.971520pt;}
._e{width:95.094187pt;}
._19{width:177.258667pt;}
._1f{width:204.843520pt;}
._20{width:206.205013pt;}
._25{width:458.182613pt;}
._24{width:459.142400pt;}
._1{width:918.372267pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.520000pt;}
.y5{bottom:33.600000pt;}
.y4{bottom:50.880000pt;}
.y40{bottom:58.880000pt;}
.y70{bottom:101.280000pt;}
.y3d{bottom:114.560000pt;}
.y6f{bottom:120.672000pt;}
.y3c{bottom:133.946667pt;}
.y6e{bottom:140.026667pt;}
.y3b{bottom:153.306667pt;}
.y6d{bottom:159.386667pt;}
.y3a{bottom:172.666667pt;}
.y6c{bottom:178.906667pt;}
.y39{bottom:192.026667pt;}
.y6b{bottom:198.266667pt;}
.y38{bottom:211.546667pt;}
.y6a{bottom:217.626667pt;}
.y37{bottom:230.906667pt;}
.y69{bottom:236.986667pt;}
.y36{bottom:250.266667pt;}
.y68{bottom:256.346667pt;}
.y35{bottom:269.626667pt;}
.y67{bottom:275.866667pt;}
.y34{bottom:289.146667pt;}
.y66{bottom:295.226667pt;}
.y33{bottom:308.506667pt;}
.y65{bottom:314.586667pt;}
.y32{bottom:326.266667pt;}
.y64{bottom:333.946667pt;}
.y31{bottom:340.346667pt;}
.y63{bottom:353.506667pt;}
.y30{bottom:353.826667pt;}
.y2f{bottom:370.306667pt;}
.y62{bottom:372.866667pt;}
.y2e{bottom:385.506667pt;}
.y61{bottom:392.226667pt;}
.y2d{bottom:400.866667pt;}
.y60{bottom:411.586667pt;}
.y2c{bottom:416.226667pt;}
.y5f{bottom:430.946667pt;}
.y2b{bottom:431.586667pt;}
.y2a{bottom:446.946667pt;}
.y5e{bottom:450.466667pt;}
.y29{bottom:462.146667pt;}
.y5d{bottom:469.826667pt;}
.y28{bottom:477.506667pt;}
.y5c{bottom:489.186667pt;}
.y27{bottom:492.866667pt;}
.y26{bottom:508.226667pt;}
.y5b{bottom:508.546667pt;}
.y25{bottom:523.586667pt;}
.y5a{bottom:528.066667pt;}
.y24{bottom:538.946667pt;}
.y59{bottom:547.426667pt;}
.y23{bottom:554.146667pt;}
.y58{bottom:566.786667pt;}
.y22{bottom:569.533333pt;}
.y21{bottom:584.893333pt;}
.y57{bottom:586.173333pt;}
.y20{bottom:600.253333pt;}
.y56{bottom:605.533333pt;}
.y1f{bottom:615.613333pt;}
.y55{bottom:625.053333pt;}
.y1e{bottom:630.973333pt;}
.y54{bottom:644.413333pt;}
.y1d{bottom:646.173333pt;}
.y1c{bottom:661.533333pt;}
.y53{bottom:663.773333pt;}
.y1b{bottom:676.893333pt;}
.y52{bottom:683.133333pt;}
.y1a{bottom:692.253333pt;}
.y51{bottom:702.493333pt;}
.y19{bottom:707.613333pt;}
.y50{bottom:722.013333pt;}
.y18{bottom:722.813333pt;}
.y17{bottom:738.173333pt;}
.y4f{bottom:741.373333pt;}
.y16{bottom:754.013333pt;}
.y4e{bottom:760.733333pt;}
.y15{bottom:770.493333pt;}
.y4d{bottom:780.093333pt;}
.y14{bottom:785.693333pt;}
.y4c{bottom:799.653333pt;}
.y13{bottom:805.733333pt;}
.y12{bottom:816.773333pt;}
.y4b{bottom:819.013333pt;}
.y11{bottom:833.733333pt;}
.y4a{bottom:838.373333pt;}
.y10{bottom:850.533333pt;}
.y49{bottom:857.733333pt;}
.yf{bottom:867.493333pt;}
.y48{bottom:877.093333pt;}
.ye{bottom:884.293333pt;}
.y47{bottom:896.613333pt;}
.yd{bottom:901.573333pt;}
.y46{bottom:915.973333pt;}
.yc{bottom:921.573333pt;}
.y45{bottom:935.333333pt;}
.yb{bottom:939.973333pt;}
.ya{bottom:952.933333pt;}
.y44{bottom:954.693333pt;}
.y9{bottom:968.293333pt;}
.y43{bottom:974.213333pt;}
.y8{bottom:983.653333pt;}
.y42{bottom:993.573333pt;}
.y7{bottom:998.853333pt;}
.y41{bottom:1012.933333pt;}
.y6{bottom:1014.213333pt;}
.y3f{bottom:1032.640000pt;}
.y3{bottom:1032.800000pt;}
.y3e{bottom:1047.520000pt;}
.y1{bottom:1047.680000pt;}
.h2{height:18.400000pt;}
.h8{height:30.254687pt;}
.hd{height:30.324375pt;}
.h10{height:30.966562pt;}
.h11{height:35.342500pt;}
.h6{height:37.479688pt;}
.h5{height:37.624687pt;}
.hf{height:38.361562pt;}
.ha{height:41.543750pt;}
.he{height:43.782500pt;}
.h3{height:46.218750pt;}
.h7{height:46.609688pt;}
.hb{height:48.530000pt;}
.h9{height:48.768750pt;}
.hc{height:51.663750pt;}
.h4{height:56.156250pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:54.400000pt;}
.w3{width:550.653333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.xa{left:117.951988pt;}
.x7{left:123.391988pt;}
.x5{left:132.191988pt;}
.xf{left:133.786655pt;}
.xe{left:143.226655pt;}
.x8{left:145.466655pt;}
.x3{left:150.426667pt;}
.x6{left:162.586655pt;}
.xc{left:274.306655pt;}
.x9{left:300.866655pt;}
.xb{left:314.626655pt;}
.xd{left:373.506655pt;}
.x4{left:396.866655pt;}
}




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