
    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_3a7e0772470c390519cd666d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.980000;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_448a214bddd52355710b8e85.woff')format("woff");}.ff2{font-family:ff2;line-height:0.970000;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_e0ee18ee1b3d7c71d5885ff3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_764028ee5ad0779ab7de60ea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_c5933106fc8bd3beadbc0c08.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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);}
.v1{vertical-align:-17.587800px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.342000px;}
.ls3{letter-spacing:-0.192000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.655930px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.677053px;}
.ws2{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.160000px;}
.ws6{word-spacing:-14.190000px;}
.ws1{word-spacing:-13.674562px;}
.ws8{word-spacing:-12.451319px;}
.ws0{word-spacing:-10.781843px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:0.192000px;}
.ws4{word-spacing:0.342000px;}
._6{margin-left:-4.225800px;}
._4{margin-left:-3.082200px;}
._1{margin-left:-1.333800px;}
._0{width:1.333800px;}
._2{width:2.428200px;}
._5{width:77.904000px;}
._3{width:767.926800px;}
.fc3{color:rgb(33,66,116);}
.fc2{color:transparent;}
.fc1{color:rgb(33,66,117);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:40.995600px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:50.410200px;}
.fs3{font-size:55.362600px;}
.fsa{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:75.615600px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:83.043600px;}
.fs8{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs0{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:80.128020px;}
.y26{bottom:80.436150px;}
.y25{bottom:94.836150px;}
.y5{bottom:96.736800px;}
.y4{bottom:117.275400px;}
.y23{bottom:128.103750px;}
.y1e{bottom:128.121750px;}
.y22{bottom:149.703750px;}
.y1d{bottom:149.721750px;}
.yc{bottom:161.726250px;}
.y21{bottom:183.309750px;}
.yb{bottom:183.326250px;}
.y1c{bottom:183.327750px;}
.y20{bottom:204.909750px;}
.ya{bottom:204.926250px;}
.y1b{bottom:204.927750px;}
.y30{bottom:211.289100px;}
.y2f{bottom:235.289100px;}
.y1f{bottom:238.515750px;}
.y9{bottom:238.532250px;}
.y1a{bottom:238.533750px;}
.y2e{bottom:259.289100px;}
.y2d{bottom:283.289100px;}
.y19{bottom:301.662600px;}
.y8{bottom:371.602650px;}
.y7{bottom:400.402650px;}
.y35{bottom:424.906050px;}
.y40{bottom:424.913850px;}
.y34{bottom:444.706050px;}
.y3f{bottom:444.713850px;}
.y3e{bottom:479.099850px;}
.y36{bottom:479.224050px;}
.y14{bottom:484.079850px;}
.y13{bottom:507.479850px;}
.y12{bottom:550.379850px;}
.y11{bottom:573.779850px;}
.y10{bottom:597.179850px;}
.yf{bottom:640.079850px;}
.ye{bottom:663.479850px;}
.y3d{bottom:686.352150px;}
.yd{bottom:686.879850px;}
.y3c{bottom:700.752150px;}
.y3b{bottom:715.152150px;}
.y3a{bottom:741.552300px;}
.y39{bottom:759.552300px;}
.y38{bottom:777.552300px;}
.y37{bottom:795.552300px;}
.y33{bottom:902.809050px;}
.y32{bottom:928.009050px;}
.y31{bottom:953.209050px;}
.y18{bottom:1007.751900px;}
.y17{bottom:1036.551900px;}
.y43{bottom:1060.911540px;}
.y16{bottom:1065.351900px;}
.y2c{bottom:1075.034700px;}
.y42{bottom:1076.034600px;}
.y15{bottom:1094.151900px;}
.y41{bottom:1094.738550px;}
.y2b{bottom:1108.640700px;}
.y2a{bottom:1120.646700px;}
.y29{bottom:1142.246700px;}
.y28{bottom:1163.846700px;}
.y3{bottom:1191.082200px;}
.y27{bottom:1197.452700px;}
.y2{bottom:1225.282200px;}
.y1{bottom:1259.482200px;}
.y24{bottom:1266.156750px;}
.hf{height:36.528000px;}
.ha{height:36.726562px;}
.h11{height:38.362162px;}
.h4{height:42.130939px;}
.he{height:45.660000px;}
.hc{height:49.368000px;}
.hd{height:51.216000px;}
.h7{height:54.792000px;}
.h6{height:55.872000px;}
.h10{height:57.543472px;}
.h8{height:59.358000px;}
.h3{height:63.196180px;}
.hb{height:63.924000px;}
.h9{height:73.056000px;}
.h5{height:74.496000px;}
.h2{height:88.464000px;}
.h0{height:1361.835000px;}
.h1{height:1362.000000px;}
.w0{width:991.914000px;}
.w1{width:992.250000px;}
.x0{left:0.000000px;}
.x20{left:74.444850px;}
.x5{left:87.522900px;}
.x9{left:92.553900px;}
.xb{left:96.766500px;}
.xa{left:99.190500px;}
.x21{left:102.478350px;}
.x22{left:107.598600px;}
.x16{left:114.086400px;}
.x23{left:121.862916px;}
.x4{left:125.348100px;}
.x1b{left:215.814600px;}
.x1a{left:217.914600px;}
.x1c{left:220.089600px;}
.x6{left:224.415600px;}
.x1e{left:226.858950px;}
.x1d{left:251.724600px;}
.xc{left:254.614500px;}
.x11{left:277.075950px;}
.x8{left:278.594250px;}
.x12{left:283.384350px;}
.x1{left:285.894300px;}
.x1f{left:299.086950px;}
.x2{left:313.539300px;}
.x7{left:337.887600px;}
.x3{left:358.426800px;}
.x13{left:462.520350px;}
.xd{left:504.802050px;}
.xe{left:531.802050px;}
.x14{left:654.490350px;}
.x15{left:681.490350px;}
.xf{left:709.210050px;}
.x10{left:736.210050px;}
.x18{left:800.671200px;}
.x17{left:842.762700px;}
.x19{left:863.008200px;}
@media print{
.v1{vertical-align:-15.633600pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.304000pt;}
.ls3{letter-spacing:-0.170667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.583049pt;}
.ws7{word-spacing:-16.601825pt;}
.ws2{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.253333pt;}
.ws6{word-spacing:-12.613333pt;}
.ws1{word-spacing:-12.155166pt;}
.ws8{word-spacing:-11.067839pt;}
.ws0{word-spacing:-9.583860pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:0.170667pt;}
.ws4{word-spacing:0.304000pt;}
._6{margin-left:-3.756267pt;}
._4{margin-left:-2.739733pt;}
._1{margin-left:-1.185600pt;}
._0{width:1.185600pt;}
._2{width:2.158400pt;}
._5{width:69.248000pt;}
._3{width:682.601600pt;}
.fs1{font-size:36.440533pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:44.809067pt;}
.fs3{font-size:49.211200pt;}
.fsa{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:67.213867pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:73.816533pt;}
.fs8{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs0{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:71.224907pt;}
.y26{bottom:71.498800pt;}
.y25{bottom:84.298800pt;}
.y5{bottom:85.988267pt;}
.y4{bottom:104.244800pt;}
.y23{bottom:113.870000pt;}
.y1e{bottom:113.886000pt;}
.y22{bottom:133.070000pt;}
.y1d{bottom:133.086000pt;}
.yc{bottom:143.756667pt;}
.y21{bottom:162.942000pt;}
.yb{bottom:162.956667pt;}
.y1c{bottom:162.958000pt;}
.y20{bottom:182.142000pt;}
.ya{bottom:182.156667pt;}
.y1b{bottom:182.158000pt;}
.y30{bottom:187.812533pt;}
.y2f{bottom:209.145867pt;}
.y1f{bottom:212.014000pt;}
.y9{bottom:212.028667pt;}
.y1a{bottom:212.030000pt;}
.y2e{bottom:230.479200pt;}
.y2d{bottom:251.812533pt;}
.y19{bottom:268.144533pt;}
.y8{bottom:330.313467pt;}
.y7{bottom:355.913467pt;}
.y35{bottom:377.694267pt;}
.y40{bottom:377.701200pt;}
.y34{bottom:395.294267pt;}
.y3f{bottom:395.301200pt;}
.y3e{bottom:425.866533pt;}
.y36{bottom:425.976933pt;}
.y14{bottom:430.293200pt;}
.y13{bottom:451.093200pt;}
.y12{bottom:489.226533pt;}
.y11{bottom:510.026533pt;}
.y10{bottom:530.826533pt;}
.yf{bottom:568.959867pt;}
.ye{bottom:589.759867pt;}
.y3d{bottom:610.090800pt;}
.yd{bottom:610.559867pt;}
.y3c{bottom:622.890800pt;}
.y3b{bottom:635.690800pt;}
.y3a{bottom:659.157600pt;}
.y39{bottom:675.157600pt;}
.y38{bottom:691.157600pt;}
.y37{bottom:707.157600pt;}
.y33{bottom:802.496933pt;}
.y32{bottom:824.896933pt;}
.y31{bottom:847.296933pt;}
.y18{bottom:895.779467pt;}
.y17{bottom:921.379467pt;}
.y43{bottom:943.032480pt;}
.y16{bottom:946.979467pt;}
.y2c{bottom:955.586400pt;}
.y42{bottom:956.475200pt;}
.y15{bottom:972.579467pt;}
.y41{bottom:973.100933pt;}
.y2b{bottom:985.458400pt;}
.y2a{bottom:996.130400pt;}
.y29{bottom:1015.330400pt;}
.y28{bottom:1034.530400pt;}
.y3{bottom:1058.739733pt;}
.y27{bottom:1064.402400pt;}
.y2{bottom:1089.139733pt;}
.y1{bottom:1119.539733pt;}
.y24{bottom:1125.472667pt;}
.hf{height:32.469333pt;}
.ha{height:32.645833pt;}
.h11{height:34.099700pt;}
.h4{height:37.449723pt;}
.he{height:40.586667pt;}
.hc{height:43.882667pt;}
.hd{height:45.525333pt;}
.h7{height:48.704000pt;}
.h6{height:49.664000pt;}
.h10{height:51.149753pt;}
.h8{height:52.762667pt;}
.h3{height:56.174382pt;}
.hb{height:56.821333pt;}
.h9{height:64.938667pt;}
.h5{height:66.218667pt;}
.h2{height:78.634667pt;}
.h0{height:1210.520000pt;}
.h1{height:1210.666667pt;}
.w0{width:881.701333pt;}
.w1{width:882.000000pt;}
.x0{left:0.000000pt;}
.x20{left:66.173200pt;}
.x5{left:77.798133pt;}
.x9{left:82.270133pt;}
.xb{left:86.014667pt;}
.xa{left:88.169333pt;}
.x21{left:91.091867pt;}
.x22{left:95.643200pt;}
.x16{left:101.410133pt;}
.x23{left:108.322592pt;}
.x4{left:111.420533pt;}
.x1b{left:191.835200pt;}
.x1a{left:193.701867pt;}
.x1c{left:195.635200pt;}
.x6{left:199.480533pt;}
.x1e{left:201.652400pt;}
.x1d{left:223.755200pt;}
.xc{left:226.324000pt;}
.x11{left:246.289733pt;}
.x8{left:247.639333pt;}
.x12{left:251.897200pt;}
.x1{left:254.128267pt;}
.x1f{left:265.855067pt;}
.x2{left:278.701600pt;}
.x7{left:300.344533pt;}
.x3{left:318.601600pt;}
.x13{left:411.129200pt;}
.xd{left:448.712933pt;}
.xe{left:472.712933pt;}
.x14{left:581.769200pt;}
.x15{left:605.769200pt;}
.xf{left:630.408933pt;}
.x10{left:654.408933pt;}
.x18{left:711.707733pt;}
.x17{left:749.122400pt;}
.x19{left:767.118400pt;}
}




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