
    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_5aab2c7ab40aee4fcde3860c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_adc8ef968fa9056028601bcf.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c3cebeb2d9dfae1a7f27a6b0.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-77.922612px;}
.ws1{word-spacing:-71.942400px;}
.ws3{word-spacing:-53.113725px;}
.ws5{word-spacing:-48.617325px;}
.ws6{word-spacing:-48.582253px;}
.wsa{word-spacing:-44.120925px;}
.ws4{word-spacing:-44.085853px;}
.ws7{word-spacing:-39.624525px;}
.ws9{word-spacing:-35.128125px;}
.wsd{word-spacing:-35.093053px;}
.ws2{word-spacing:-30.631725px;}
.ws8{word-spacing:-17.142525px;}
.wsb{word-spacing:-12.646125px;}
.wse{word-spacing:0.000000px;}
.wsc{word-spacing:565.703325px;}
._12{margin-left:-2644.944350px;}
._34{margin-left:-2604.219556px;}
._4d{margin-left:-2600.541501px;}
._2c{margin-left:-2560.283883px;}
._30{margin-left:-2558.069856px;}
._1f{margin-left:-2517.920601px;}
._3e{margin-left:-2516.129685px;}
._1a{margin-left:-2473.050576px;}
._4a{margin-left:-2431.284415px;}
._27{margin-left:-2429.117150px;}
._6a{margin-left:-2428.024076px;}
._61{margin-left:-2387.694515px;}
._3a{margin-left:-2386.400451px;}
._50{margin-left:-2345.428805px;}
._9{margin-left:-2300.360938px;}
._42{margin-left:-2298.452666px;}
._3{margin-left:-2255.456290px;}
._65{margin-left:-2213.041749px;}
._63{margin-left:-1953.903875px;}
._0{margin-left:-31.166347px;}
._1{margin-left:-28.769766px;}
._8{width:14.431645px;}
._33{width:18.753135px;}
._4f{width:23.388474px;}
._1e{width:27.821025px;}
._11{width:32.352947px;}
._2{width:36.879023px;}
._69{width:41.309776px;}
._44{width:59.330897px;}
._c{width:62.036381px;}
._53{width:63.827297px;}
._31{width:66.531882px;}
._18{width:71.029181px;}
._41{width:75.526031px;}
._6{width:80.021981px;}
._3c{width:84.518381px;}
._46{width:98.007581px;}
._57{width:102.503532px;}
._a{width:105.173943px;}
._55{width:106.999932px;}
._24{width:109.670343px;}
._2e{width:114.166294px;}
._2d{width:118.662694px;}
._40{width:123.159094px;}
._6c{width:127.655494px;}
._5c{width:141.144694px;}
._f{width:143.884800px;}
._36{width:148.381200px;}
._23{width:152.877600px;}
._21{width:157.374000px;}
._60{width:159.126697px;}
._16{width:161.870400px;}
._5f{width:163.589374px;}
._3f{width:166.366800px;}
._3d{width:170.863200px;}
._5d{width:184.352400px;}
._59{width:188.849250px;}
._1b{width:191.518762px;}
._4c{width:196.014263px;}
._2a{width:200.511113px;}
._15{width:205.007962px;}
._7{width:209.503913px;}
._5b{width:227.489962px;}
._10{width:230.229619px;}
._d{width:234.726468px;}
._32{width:239.222419px;}
._17{width:243.718819px;}
._28{width:248.215668px;}
._6d{width:252.711619px;}
._5e{width:270.697219px;}
._56{width:275.194068px;}
._b{width:277.863132px;}
._25{width:282.359532px;}
._19{width:286.855932px;}
._39{width:291.352781px;}
._38{width:295.849181px;}
._3b{width:300.345581px;}
._45{width:313.026328px;}
._1c{width:316.573538px;}
._58{width:318.331181px;}
._67{width:322.828031px;}
._26{width:325.567687px;}
._2f{width:330.063638px;}
._29{width:334.560038px;}
._4{width:343.552838px;}
._68{width:361.538438px;}
._e{width:364.208400px;}
._4b{width:368.704350px;}
._2b{width:373.201200px;}
._62{width:374.957494px;}
._43{width:377.631953px;}
._4e{width:381.404882px;}
._37{width:382.983118px;}
._48{width:400.179600px;}
._54{width:409.910259px;}
._35{width:411.912956px;}
._20{width:416.408906px;}
._14{width:420.905306px;}
._6e{width:425.401706px;}
._6b{width:429.898106px;}
._5a{width:447.089192px;}
._66{width:452.379657px;}
._64{width:459.546468px;}
._5{width:473.035668px;}
._47{width:486.524419px;}
._1d{width:489.264525px;}
._52{width:502.753725px;}
._22{width:541.394438px;}
._51{width:545.890838px;}
._49{width:572.869687px;}
._13{width:723.077325px;}
.fc0{color:rgb(34,34,34);}
.fs1{font-size:71.942400px;}
.fs0{font-size:77.922612px;}
.y0{bottom:0.000000px;}
.y22{bottom:119.414400px;}
.y21{bottom:370.088700px;}
.y20{bottom:394.818900px;}
.y1f{bottom:419.549100px;}
.y1e{bottom:444.279300px;}
.y1d{bottom:469.009500px;}
.y1c{bottom:493.739700px;}
.y1b{bottom:518.469900px;}
.y1a{bottom:543.200100px;}
.y19{bottom:567.930300px;}
.y18{bottom:592.660500px;}
.y17{bottom:617.390700px;}
.y16{bottom:642.120900px;}
.y15{bottom:666.851100px;}
.y14{bottom:691.581300px;}
.y13{bottom:716.311500px;}
.y12{bottom:741.041700px;}
.y11{bottom:765.771900px;}
.y10{bottom:790.502100px;}
.yf{bottom:815.232300px;}
.ye{bottom:839.962500px;}
.yd{bottom:864.692700px;}
.yc{bottom:889.422900px;}
.yb{bottom:914.153100px;}
.ya{bottom:938.883300px;}
.y9{bottom:963.613500px;}
.y8{bottom:988.343700px;}
.y7{bottom:1013.073900px;}
.y6{bottom:1037.804100px;}
.y5{bottom:1062.534300px;}
.y4{bottom:1087.264500px;}
.y3{bottom:1111.994700px;}
.y2{bottom:1136.724900px;}
.y1{bottom:1189.557600px;}
.h2{height:52.130138px;}
.h1{height:56.463455px;}
.h0{height:1261.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:107.913600px;}
.x1{left:112.410000px;}
.x3{left:445.143600px;}
.x4{left:635.116500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-69.264544pt;}
.ws1{word-spacing:-63.948800pt;}
.ws3{word-spacing:-47.212200pt;}
.ws5{word-spacing:-43.215400pt;}
.ws6{word-spacing:-43.184225pt;}
.wsa{word-spacing:-39.218600pt;}
.ws4{word-spacing:-39.187425pt;}
.ws7{word-spacing:-35.221800pt;}
.ws9{word-spacing:-31.225000pt;}
.wsd{word-spacing:-31.193825pt;}
.ws2{word-spacing:-27.228200pt;}
.ws8{word-spacing:-15.237800pt;}
.wsb{word-spacing:-11.241000pt;}
.wse{word-spacing:0.000000pt;}
.wsc{word-spacing:502.847400pt;}
._12{margin-left:-2351.061645pt;}
._34{margin-left:-2314.861828pt;}
._4d{margin-left:-2311.592445pt;}
._2c{margin-left:-2275.807896pt;}
._30{margin-left:-2273.839872pt;}
._1f{margin-left:-2238.151645pt;}
._3e{margin-left:-2236.559720pt;}
._1a{margin-left:-2198.267178pt;}
._4a{margin-left:-2161.141702pt;}
._27{margin-left:-2159.215245pt;}
._6a{margin-left:-2158.243623pt;}
._61{margin-left:-2122.395124pt;}
._3a{margin-left:-2121.244845pt;}
._50{margin-left:-2084.825604pt;}
._9{margin-left:-2044.765278pt;}
._42{margin-left:-2043.069036pt;}
._3{margin-left:-2004.850036pt;}
._65{margin-left:-1967.148221pt;}
._63{margin-left:-1736.803445pt;}
._0{margin-left:-27.703420pt;}
._1{margin-left:-25.573125pt;}
._8{width:12.828129pt;}
._33{width:16.669454pt;}
._4f{width:20.789755pt;}
._1e{width:24.729800pt;}
._11{width:28.758175pt;}
._2{width:32.781354pt;}
._69{width:36.719801pt;}
._44{width:52.738575pt;}
._c{width:55.143450pt;}
._53{width:56.735375pt;}
._31{width:59.139451pt;}
._18{width:63.137050pt;}
._41{width:67.134250pt;}
._6{width:71.130650pt;}
._3c{width:75.127450pt;}
._46{width:87.117850pt;}
._57{width:91.114250pt;}
._a{width:93.487950pt;}
._55{width:95.111050pt;}
._24{width:97.484750pt;}
._2e{width:101.481150pt;}
._2d{width:105.477950pt;}
._40{width:109.474750pt;}
._6c{width:113.471550pt;}
._5c{width:125.461950pt;}
._f{width:127.897600pt;}
._36{width:131.894400pt;}
._23{width:135.891200pt;}
._21{width:139.888000pt;}
._60{width:141.445953pt;}
._16{width:143.884800pt;}
._5f{width:145.412777pt;}
._3f{width:147.881600pt;}
._3d{width:151.878400pt;}
._5d{width:163.868800pt;}
._59{width:167.866000pt;}
._1b{width:170.238900pt;}
._4c{width:174.234900pt;}
._2a{width:178.232100pt;}
._15{width:182.229300pt;}
._7{width:186.225700pt;}
._5b{width:202.213300pt;}
._10{width:204.648550pt;}
._d{width:208.645750pt;}
._32{width:212.642150pt;}
._17{width:216.638950pt;}
._28{width:220.636150pt;}
._6d{width:224.632550pt;}
._5e{width:240.619750pt;}
._56{width:244.616950pt;}
._b{width:246.989450pt;}
._25{width:250.986250pt;}
._19{width:254.983050pt;}
._39{width:258.980250pt;}
._38{width:262.977050pt;}
._3b{width:266.973850pt;}
._45{width:278.245625pt;}
._1c{width:281.398701pt;}
._58{width:282.961050pt;}
._67{width:286.958250pt;}
._26{width:289.393500pt;}
._2f{width:293.389900pt;}
._29{width:297.386700pt;}
._4{width:305.380300pt;}
._68{width:321.367500pt;}
._e{width:323.740800pt;}
._4b{width:327.737200pt;}
._2b{width:331.734400pt;}
._62{width:333.295550pt;}
._43{width:335.672847pt;}
._4e{width:339.026562pt;}
._37{width:340.429438pt;}
._48{width:355.715200pt;}
._54{width:364.364675pt;}
._35{width:366.144850pt;}
._20{width:370.141250pt;}
._14{width:374.138050pt;}
._6e{width:378.134850pt;}
._6b{width:382.131650pt;}
._5a{width:397.412615pt;}
._66{width:402.115250pt;}
._64{width:408.485750pt;}
._5{width:420.476150pt;}
._47{width:432.466150pt;}
._1d{width:434.901800pt;}
._52{width:446.892200pt;}
._22{width:481.239500pt;}
._51{width:485.236300pt;}
._49{width:509.217500pt;}
._13{width:642.735400pt;}
.fs1{font-size:63.948800pt;}
.fs0{font-size:69.264544pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:106.146133pt;}
.y21{bottom:328.967733pt;}
.y20{bottom:350.950133pt;}
.y1f{bottom:372.932533pt;}
.y1e{bottom:394.914933pt;}
.y1d{bottom:416.897333pt;}
.y1c{bottom:438.879733pt;}
.y1b{bottom:460.862133pt;}
.y1a{bottom:482.844533pt;}
.y19{bottom:504.826933pt;}
.y18{bottom:526.809333pt;}
.y17{bottom:548.791733pt;}
.y16{bottom:570.774133pt;}
.y15{bottom:592.756533pt;}
.y14{bottom:614.738933pt;}
.y13{bottom:636.721333pt;}
.y12{bottom:658.703733pt;}
.y11{bottom:680.686133pt;}
.y10{bottom:702.668533pt;}
.yf{bottom:724.650933pt;}
.ye{bottom:746.633333pt;}
.yd{bottom:768.615733pt;}
.yc{bottom:790.598133pt;}
.yb{bottom:812.580533pt;}
.ya{bottom:834.562933pt;}
.y9{bottom:856.545333pt;}
.y8{bottom:878.527733pt;}
.y7{bottom:900.510133pt;}
.y6{bottom:922.492533pt;}
.y5{bottom:944.474933pt;}
.y4{bottom:966.457333pt;}
.y3{bottom:988.439733pt;}
.y2{bottom:1010.422133pt;}
.y1{bottom:1057.384533pt;}
.h2{height:46.337900pt;}
.h1{height:50.189738pt;}
.h0{height:1121.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:95.923200pt;}
.x1{left:99.920000pt;}
.x3{left:395.683200pt;}
.x4{left:564.548000pt;}
}




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