
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.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:0.000000px;}
._9{margin-left:-2899.848000px;}
._3{margin-left:-16.625656px;}
._0{margin-left:-13.917194px;}
._2{margin-left:-10.191215px;}
._6{margin-left:-8.022720px;}
._7{margin-left:-6.251294px;}
._4{margin-left:-4.538040px;}
._1{margin-left:-2.492821px;}
._5{margin-left:-1.406044px;}
._8{width:1.015984px;}
._a{width:30.264000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:34.500000px;}
.y39{bottom:58.500000px;}
.y2b{bottom:180.000000px;}
.y2f{bottom:181.500000px;}
.y2e{bottom:202.500000px;}
.y2a{bottom:207.000000px;}
.y2d{bottom:223.500000px;}
.y29{bottom:234.000000px;}
.y2c{bottom:244.500000px;}
.y28{bottom:261.000000px;}
.y27{bottom:288.000000px;}
.y26{bottom:322.500000px;}
.y25{bottom:367.500000px;}
.y24{bottom:394.500000px;}
.y23{bottom:421.500000px;}
.y22{bottom:448.500000px;}
.y21{bottom:475.500000px;}
.y20{bottom:510.000000px;}
.y31{bottom:550.500000px;}
.y30{bottom:754.500000px;}
.y14{bottom:783.000000px;}
.y13{bottom:810.000000px;}
.y12{bottom:837.000000px;}
.y11{bottom:864.000000px;}
.y10{bottom:891.000000px;}
.yf{bottom:918.000000px;}
.ye{bottom:945.000000px;}
.y1f{bottom:966.000000px;}
.yd{bottom:979.500000px;}
.y1e{bottom:993.000000px;}
.y1d{bottom:1020.000000px;}
.yc{bottom:1021.500000px;}
.y1c{bottom:1047.000000px;}
.yb{bottom:1048.500000px;}
.y1b{bottom:1074.000000px;}
.ya{bottom:1075.500000px;}
.y1a{bottom:1101.000000px;}
.y9{bottom:1102.500000px;}
.y19{bottom:1128.000000px;}
.y8{bottom:1129.500000px;}
.y18{bottom:1155.000000px;}
.y7{bottom:1156.500000px;}
.y17{bottom:1182.000000px;}
.y6{bottom:1183.500000px;}
.y16{bottom:1209.000000px;}
.y5{bottom:1210.500000px;}
.y15{bottom:1245.000024px;}
.y4{bottom:1245.000045px;}
.y38{bottom:1304.999954px;}
.y37{bottom:1340.998421px;}
.y36{bottom:1366.498421px;}
.y35{bottom:1391.998421px;}
.y34{bottom:1417.498421px;}
.y33{bottom:1442.998421px;}
.y32{bottom:1468.498421px;}
.y3{bottom:1540.499919px;}
.y2{bottom:1610.999919px;}
.y1{bottom:1681.499919px;}
.h4{height:62.700000px;}
.h6{height:68.400000px;}
.h5{height:74.100000px;}
.h3{height:79.800000px;}
.h2{height:91.200000px;}
.h1{height:205.200000px;}
.h0{height:1783.500000px;}
.w0{width:1261.500000px;}
.x0{left:0.000000px;}
.x1{left:75.000000px;}
.x9f{left:85.458984px;}
.x85{left:93.376465px;}
.xa0{left:97.376953px;}
.x1b{left:98.499024px;}
.xa1{left:106.605468px;}
.x86{left:109.258301px;}
.x1c{left:112.419433px;}
.xa2{left:114.093750px;}
.xa3{left:125.958984px;}
.x9d{left:138.108399px;}
.x6a{left:143.192871px;}
.x54{left:145.363770px;}
.x6b{left:147.801270px;}
.x3a{left:149.248535px;}
.x87{left:151.971679px;}
.x1d{left:164.787597px;}
.x55{left:167.282226px;}
.x6c{left:180.612305px;}
.x56{left:184.744629px;}
.xf{left:210.915528px;}
.x10{left:216.458496px;}
.xa4{left:231.761718px;}
.x1e{left:234.427734px;}
.x1f{left:239.036133px;}
.x11{left:241.965821px;}
.xa5{left:244.611329px;}
.x12{left:247.508789px;}
.xab{left:254.478516px;}
.x3b{left:261.011718px;}
.x3c{left:265.620117px;}
.x20{left:270.514160px;}
.x57{left:272.551758px;}
.x21{left:275.122559px;}
.x3d{left:282.739746px;}
.x3e{left:287.348145px;}
.x22{left:299.440429px;}
.x23{left:304.048829px;}
.x88{left:311.170899px;}
.x89{left:315.779296px;}
.x9e{left:320.692383px;}
.x24{left:324.348633px;}
.x6d{left:325.357910px;}
.x13{left:327.285645px;}
.x25{left:328.957032px;}
.x6e{left:329.966309px;}
.x14{left:338.548829px;}
.x26{left:344.915038px;}
.x27{left:349.523437px;}
.xac{left:376.500000px;}
.x3f{left:381.496582px;}
.x58{left:384.314941px;}
.x40{left:386.104980px;}
.x59{left:388.923341px;}
.xad{left:390.474609px;}
.x6f{left:395.112305px;}
.x70{left:399.720704px;}
.x5a{left:406.042968px;}
.x5b{left:410.651367px;}
.x41{left:418.344726px;}
.x42{left:422.953125px;}
.x8a{left:427.790038px;}
.x28{left:433.636230px;}
.x29{left:438.244629px;}
.xae{left:442.154296px;}
.xa6{left:448.763671px;}
.xa7{left:453.527343px;}
.x71{left:468.313476px;}
.x72{left:472.921875px;}
.x15{left:477.219726px;}
.x16{left:482.762695px;}
.x73{left:489.032226px;}
.xaf{left:497.595704px;}
.x2a{left:501.353028px;}
.x43{left:504.457032px;}
.x2b{left:505.961426px;}
.x44{left:509.065429px;}
.x74{left:515.178222px;}
.x17{left:517.905762px;}
.x8b{left:519.177246px;}
.xb0{left:522.292968px;}
.x18{left:523.448730px;}
.x75{left:529.593750px;}
.x5c{left:549.398438px;}
.x5d{left:554.006836px;}
.x45{left:596.491699px;}
.x46{left:601.100097px;}
.xa8{left:608.091796px;}
.xa9{left:618.884766px;}
.x76{left:645.565429px;}
.x5e{left:649.716797px;}
.x8c{left:651.011718px;}
.x19{left:652.500000px;}
.x2{left:654.000000px;}
.x8d{left:655.620117px;}
.x1a{left:663.763183px;}
.x8e{left:672.739746px;}
.x8f{left:677.348145px;}
.x2c{left:679.328613px;}
.x3{left:684.720704px;}
.x47{left:685.898438px;}
.x4{left:689.683593px;}
.xaa{left:698.507812px;}
.x77{left:712.139649px;}
.x48{left:713.548828px;}
.x78{left:716.748046px;}
.x5{left:720.814454px;}
.x49{left:723.355957px;}
.x6{left:725.777343px;}
.x90{left:735.391113px;}
.x91{left:739.999512px;}
.x5f{left:741.751465px;}
.x60{left:746.359863px;}
.x2d{left:747.654784px;}
.x4a{left:767.345215px;}
.xd{left:799.441407px;}
.xe{left:804.404296px;}
.x92{left:816.495117px;}
.x93{left:826.759278px;}
.x79{left:828.834961px;}
.x9{left:830.162109px;}
.x7a{left:833.443359px;}
.x94{left:837.404296px;}
.xa{left:838.570312px;}
.x2e{left:840.755859px;}
.x61{left:855.952149px;}
.x62{left:868.596679px;}
.x95{left:870.120117px;}
.x4b{left:879.108399px;}
.x4c{left:883.716797px;}
.x7{left:886.435547px;}
.x63{left:891.238770px;}
.x8{left:893.490234px;}
.x7b{left:896.570801px;}
.x4d{left:900.836425px;}
.x2f{left:902.988282px;}
.x4e{left:905.444825px;}
.x30{left:907.596679px;}
.x7c{left:920.888672px;}
.x7d{left:925.497071px;}
.x96{left:939.760254px;}
.x97{left:944.368653px;}
.x64{left:958.136718px;}
.x31{left:970.952637px;}
.x32{left:975.561035px;}
.x7e{left:981.197754px;}
.xb{left:982.986329px;}
.x7f{left:985.806153px;}
.xc{left:990.041016px;}
.x4f{left:999.593262px;}
.x50{left:1004.201660px;}
.x98{left:1009.381347px;}
.x33{left:1011.933105px;}
.x34{left:1016.541504px;}
.x65{left:1024.025391px;}
.x66{left:1028.633789px;}
.x99{left:1029.681153px;}
.x9a{left:1034.289550px;}
.x35{left:1038.878907px;}
.x36{left:1043.487304px;}
.x67{left:1045.753418px;}
.x68{left:1050.361816px;}
.x9b{left:1054.855957px;}
.x80{left:1089.342774px;}
.x51{left:1090.523437px;}
.x81{left:1093.951172px;}
.x52{left:1095.131836px;}
.x37{left:1107.205078px;}
.x38{left:1111.813476px;}
.x39{left:1127.695313px;}
.x69{left:1137.426270px;}
.x9c{left:1138.968750px;}
.x82{left:1145.329101px;}
.x83{left:1149.937500px;}
.x84{left:1161.020508px;}
.x53{left:1163.381836px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-2577.642667pt;}
._3{margin-left:-14.778361pt;}
._0{margin-left:-12.370839pt;}
._2{margin-left:-9.058858pt;}
._6{margin-left:-7.131307pt;}
._7{margin-left:-5.556706pt;}
._4{margin-left:-4.033813pt;}
._1{margin-left:-2.215841pt;}
._5{margin-left:-1.249817pt;}
._8{width:0.903096pt;}
._a{width:26.901333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:30.666667pt;}
.y39{bottom:52.000000pt;}
.y2b{bottom:160.000000pt;}
.y2f{bottom:161.333333pt;}
.y2e{bottom:180.000000pt;}
.y2a{bottom:184.000000pt;}
.y2d{bottom:198.666667pt;}
.y29{bottom:208.000000pt;}
.y2c{bottom:217.333333pt;}
.y28{bottom:232.000000pt;}
.y27{bottom:256.000000pt;}
.y26{bottom:286.666667pt;}
.y25{bottom:326.666667pt;}
.y24{bottom:350.666667pt;}
.y23{bottom:374.666667pt;}
.y22{bottom:398.666667pt;}
.y21{bottom:422.666667pt;}
.y20{bottom:453.333333pt;}
.y31{bottom:489.333333pt;}
.y30{bottom:670.666667pt;}
.y14{bottom:696.000000pt;}
.y13{bottom:720.000000pt;}
.y12{bottom:744.000000pt;}
.y11{bottom:768.000000pt;}
.y10{bottom:792.000000pt;}
.yf{bottom:816.000000pt;}
.ye{bottom:840.000000pt;}
.y1f{bottom:858.666667pt;}
.yd{bottom:870.666667pt;}
.y1e{bottom:882.666667pt;}
.y1d{bottom:906.666667pt;}
.yc{bottom:908.000000pt;}
.y1c{bottom:930.666667pt;}
.yb{bottom:932.000000pt;}
.y1b{bottom:954.666667pt;}
.ya{bottom:956.000000pt;}
.y1a{bottom:978.666667pt;}
.y9{bottom:980.000000pt;}
.y19{bottom:1002.666667pt;}
.y8{bottom:1004.000000pt;}
.y18{bottom:1026.666667pt;}
.y7{bottom:1028.000000pt;}
.y17{bottom:1050.666667pt;}
.y6{bottom:1052.000000pt;}
.y16{bottom:1074.666667pt;}
.y5{bottom:1076.000000pt;}
.y15{bottom:1106.666688pt;}
.y4{bottom:1106.666707pt;}
.y38{bottom:1159.999959pt;}
.y37{bottom:1191.998596pt;}
.y36{bottom:1214.665263pt;}
.y35{bottom:1237.331929pt;}
.y34{bottom:1259.998596pt;}
.y33{bottom:1282.665263pt;}
.y32{bottom:1305.331929pt;}
.y3{bottom:1369.333261pt;}
.y2{bottom:1431.999928pt;}
.y1{bottom:1494.666595pt;}
.h4{height:55.733333pt;}
.h6{height:60.800000pt;}
.h5{height:65.866667pt;}
.h3{height:70.933333pt;}
.h2{height:81.066667pt;}
.h1{height:182.400000pt;}
.h0{height:1585.333333pt;}
.w0{width:1121.333333pt;}
.x0{left:0.000000pt;}
.x1{left:66.666667pt;}
.x9f{left:75.963541pt;}
.x85{left:83.001303pt;}
.xa0{left:86.557292pt;}
.x1b{left:87.554688pt;}
.xa1{left:94.760416pt;}
.x86{left:97.118489pt;}
.x1c{left:99.928385pt;}
.xa2{left:101.416667pt;}
.xa3{left:111.963541pt;}
.x9d{left:122.763021pt;}
.x6a{left:127.282552pt;}
.x54{left:129.212240pt;}
.x6b{left:131.378907pt;}
.x3a{left:132.665364pt;}
.x87{left:135.085937pt;}
.x1d{left:146.477864pt;}
.x55{left:148.695312pt;}
.x6c{left:160.544271pt;}
.x56{left:164.217448pt;}
.xf{left:187.480469pt;}
.x10{left:192.407552pt;}
.xa4{left:206.010416pt;}
.x1e{left:208.380208pt;}
.x1f{left:212.476563pt;}
.x11{left:215.080729pt;}
.xa5{left:217.432292pt;}
.x12{left:220.007812pt;}
.xab{left:226.203125pt;}
.x3b{left:232.010416pt;}
.x3c{left:236.106771pt;}
.x20{left:240.457031pt;}
.x57{left:242.268229pt;}
.x21{left:244.553385pt;}
.x3d{left:251.324219pt;}
.x3e{left:255.420573pt;}
.x22{left:266.169271pt;}
.x23{left:270.265625pt;}
.x88{left:276.596355pt;}
.x89{left:280.692708pt;}
.x9e{left:285.059896pt;}
.x24{left:288.309896pt;}
.x6d{left:289.207031pt;}
.x13{left:290.920573pt;}
.x25{left:292.406251pt;}
.x6e{left:293.303385pt;}
.x14{left:300.932292pt;}
.x26{left:306.591145pt;}
.x27{left:310.687500pt;}
.xac{left:334.666667pt;}
.x3f{left:339.108073pt;}
.x58{left:341.613281pt;}
.x40{left:343.204427pt;}
.x59{left:345.709636pt;}
.xad{left:347.088541pt;}
.x6f{left:351.210937pt;}
.x70{left:355.307292pt;}
.x5a{left:360.927083pt;}
.x5b{left:365.023437pt;}
.x41{left:371.861979pt;}
.x42{left:375.958333pt;}
.x8a{left:380.257812pt;}
.x28{left:385.454427pt;}
.x29{left:389.550781pt;}
.xae{left:393.026041pt;}
.xa6{left:398.901041pt;}
.xa7{left:403.135416pt;}
.x71{left:416.278645pt;}
.x72{left:420.375000pt;}
.x15{left:424.195312pt;}
.x16{left:429.122396pt;}
.x73{left:434.695312pt;}
.xaf{left:442.307292pt;}
.x2a{left:445.647136pt;}
.x43{left:448.406251pt;}
.x2b{left:449.743489pt;}
.x44{left:452.502604pt;}
.x74{left:457.936197pt;}
.x17{left:460.360677pt;}
.x8b{left:461.490885pt;}
.xb0{left:464.260416pt;}
.x18{left:465.287760pt;}
.x75{left:470.750000pt;}
.x5c{left:488.354167pt;}
.x5d{left:492.450521pt;}
.x45{left:530.214844pt;}
.x46{left:534.311197pt;}
.xa8{left:540.526041pt;}
.xa9{left:550.119792pt;}
.x76{left:573.835937pt;}
.x5e{left:577.526041pt;}
.x8c{left:578.677083pt;}
.x19{left:580.000000pt;}
.x2{left:581.333333pt;}
.x8d{left:582.773437pt;}
.x1a{left:590.011719pt;}
.x8e{left:597.990885pt;}
.x8f{left:602.087240pt;}
.x2c{left:603.847656pt;}
.x3{left:608.640625pt;}
.x47{left:609.687500pt;}
.x4{left:613.052083pt;}
.xaa{left:620.895833pt;}
.x77{left:633.013021pt;}
.x48{left:634.265625pt;}
.x78{left:637.109375pt;}
.x5{left:640.723959pt;}
.x49{left:642.983073pt;}
.x6{left:645.135416pt;}
.x90{left:653.680989pt;}
.x91{left:657.777344pt;}
.x5f{left:659.334636pt;}
.x60{left:663.430989pt;}
.x2d{left:664.582031pt;}
.x4a{left:682.084636pt;}
.xd{left:710.614584pt;}
.xe{left:715.026041pt;}
.x92{left:725.773437pt;}
.x93{left:734.897136pt;}
.x79{left:736.742188pt;}
.x9{left:737.921875pt;}
.x7a{left:740.838541pt;}
.x94{left:744.359375pt;}
.xa{left:745.395833pt;}
.x2e{left:747.338541pt;}
.x61{left:760.846355pt;}
.x62{left:772.085937pt;}
.x95{left:773.440104pt;}
.x4b{left:781.429688pt;}
.x4c{left:785.526041pt;}
.x7{left:787.942708pt;}
.x63{left:792.212240pt;}
.x8{left:794.213541pt;}
.x7b{left:796.951823pt;}
.x4d{left:800.743489pt;}
.x2f{left:802.656251pt;}
.x4e{left:804.839844pt;}
.x30{left:806.752604pt;}
.x7c{left:818.567708pt;}
.x7d{left:822.664063pt;}
.x96{left:835.342448pt;}
.x97{left:839.438803pt;}
.x64{left:851.677083pt;}
.x31{left:863.069011pt;}
.x32{left:867.165364pt;}
.x7e{left:872.175781pt;}
.xb{left:873.765625pt;}
.x7f{left:876.272136pt;}
.xc{left:880.036459pt;}
.x4f{left:888.527344pt;}
.x50{left:892.623697pt;}
.x98{left:897.227864pt;}
.x33{left:899.496093pt;}
.x34{left:903.592448pt;}
.x65{left:910.244792pt;}
.x66{left:914.341145pt;}
.x99{left:915.272136pt;}
.x9a{left:919.368489pt;}
.x35{left:923.447917pt;}
.x36{left:927.544271pt;}
.x67{left:929.558593pt;}
.x68{left:933.654948pt;}
.x9b{left:937.649740pt;}
.x80{left:968.304688pt;}
.x51{left:969.354167pt;}
.x81{left:972.401041pt;}
.x52{left:973.450521pt;}
.x37{left:984.182292pt;}
.x38{left:988.278645pt;}
.x39{left:1002.395833pt;}
.x69{left:1011.045573pt;}
.x9c{left:1012.416667pt;}
.x82{left:1018.070312pt;}
.x83{left:1022.166667pt;}
.x84{left:1032.018229pt;}
.x53{left:1034.117188pt;}
}




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