
    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_da4939d3ca9a678042aba878.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_d37699b8f80031c6a9ed1a63.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_f0dc61c0f1cd2d3ea3a19dc5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_17e5fdadb12dac27ccd4ae83.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_0d0c60e4c16e86801e79934e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.775879;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_98a51035fc09319e54063d7d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_2f75040f7b653f8c018b0fc1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.997000;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_69142e8f8bcef69a324038e3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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:ff9;src:url('chunks/assets/font_e4d21f458c398b4c1a842060.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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;}
.ffa{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);}
.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);}
.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;}
}
.ws1{word-spacing:-25.427204px;}
.ws3{word-spacing:-20.739751px;}
.ws0{word-spacing:-12.443850px;}
.ws2{word-spacing:-0.170639px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-14.141908px;}
._b{margin-left:-10.208073px;}
._2{margin-left:-4.129463px;}
._3{margin-left:-2.128941px;}
._1{margin-left:-1.078417px;}
._4{width:1.433026px;}
._10{width:2.885597px;}
._8{width:4.241090px;}
._e{width:10.104097px;}
._d{width:11.110387px;}
._f{width:12.709860px;}
._c{width:20.691652px;}
._9{width:43.336685px;}
._6{width:50.928516px;}
._7{width:66.498795px;}
._a{width:106.965070px;}
._5{width:173.241309px;}
.fc3{color:transparent;}
.fc2{color:rgb(18,38,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.986336px;}
.fs0{font-size:59.969821px;}
.fs6{font-size:83.948753px;}
.fs5{font-size:89.977227px;}
.fs1{font-size:119.939644px;}
.fs4{font-size:170.639182px;}
.fs3{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.135021px;}
.y1a{bottom:12.781925px;}
.y13{bottom:12.911388px;}
.y7{bottom:19.636307px;}
.y40{bottom:21.369605px;}
.y6{bottom:39.881183px;}
.y23{bottom:41.614474px;}
.y42{bottom:42.739196px;}
.y3f{bottom:62.984072px;}
.y3d{bottom:66.358243px;}
.y4{bottom:69.498789px;}
.y22{bottom:73.106503px;}
.y3{bottom:89.743665px;}
.y3c{bottom:97.850273px;}
.y21{bottom:104.598533px;}
.y2{bottom:117.111656px;}
.y3b{bottom:129.342302px;}
.y20{bottom:136.090562px;}
.y3a{bottom:160.834331px;}
.y1f{bottom:167.582592px;}
.yb{bottom:168.007587px;}
.yf{bottom:168.066582px;}
.ye{bottom:186.062027px;}
.ya{bottom:188.252463px;}
.y39{bottom:192.326361px;}
.y1e{bottom:199.074621px;}
.yd{bottom:204.057473px;}
.y9{bottom:208.497339px;}
.yc{bottom:222.052918px;}
.y38{bottom:223.818390px;}
.y8{bottom:228.742215px;}
.y1d{bottom:230.566651px;}
.y10{bottom:246.665451px;}
.y5{bottom:254.819595px;}
.y37{bottom:255.310420px;}
.y1c{bottom:262.058680px;}
.y36{bottom:286.802449px;}
.y41{bottom:292.419588px;}
.y16{bottom:347.233729px;}
.y18{bottom:362.979719px;}
.y15{bottom:378.725758px;}
.y17{bottom:394.471748px;}
.y14{bottom:410.217788px;}
.y19{bottom:424.575003px;}
.y12{bottom:427.455003px;}
.y34{bottom:519.372551px;}
.y2b{bottom:521.621982px;}
.y35{bottom:522.029353px;}
.y1b{bottom:540.024827px;}
.y33{bottom:550.864580px;}
.y2a{bottom:553.114012px;}
.y32{bottom:613.848639px;}
.y29{bottom:616.098070px;}
.y31{bottom:645.340669px;}
.y28{bottom:647.590100px;}
.y30{bottom:676.832698px;}
.y27{bottom:679.082129px;}
.y2f{bottom:739.816757px;}
.y26{bottom:742.066188px;}
.y2e{bottom:771.308786px;}
.y25{bottom:773.558218px;}
.y2d{bottom:802.800816px;}
.y3e{bottom:834.159755px;}
.y2c{bottom:834.292845px;}
.y24{bottom:836.542276px;}
.y47{bottom:986.681192px;}
.y46{bottom:1015.923791px;}
.y45{bottom:1045.166390px;}
.y44{bottom:1074.408989px;}
.y43{bottom:1103.651587px;}
.y11{bottom:1157.503405px;}
.h5{height:44.592714px;}
.h3{height:49.535072px;}
.he{height:56.971330px;}
.h7{height:58.679998px;}
.h9{height:68.932749px;}
.hf{height:69.341670px;}
.hb{height:74.321189px;}
.h4{height:99.070146px;}
.hd{height:106.847970px;}
.h8{height:130.728943px;}
.h6{height:238.955380px;}
.ha{height:352.035907px;}
.hc{height:367.781953px;}
.h1{height:1263.000000px;}
.h2{height:1263.239947px;}
.h0{height:1263.374968px;}
.w3{width:181.439992px;}
.w4{width:219.959991px;}
.w5{width:227.519991px;}
.w9{width:502.747759px;}
.w8{width:502.747802px;}
.w7{width:553.359879px;}
.w6{width:553.359966px;}
.w2{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x1{left:13.749168px;}
.xa{left:25.761683px;}
.x4{left:45.359998px;}
.xb{left:47.238044px;}
.x12{left:50.319490px;}
.x5{left:91.584032px;}
.x13{left:117.480032px;}
.x10{left:137.204250px;}
.xf{left:142.100753px;}
.x11{left:152.194597px;}
.x14{left:282.595243px;}
.x3{left:478.373052px;}
.xc{left:601.754346px;}
.x6{left:642.959973px;}
.x7{left:649.580704px;}
.x2{left:924.954657px;}
.xd{left:1206.668794px;}
.x9{left:1215.415137px;}
.x8{left:1235.519949px;}
.xe{left:1236.975320px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-22.601959pt;}
.ws3{word-spacing:-18.435334pt;}
.ws0{word-spacing:-11.061200pt;}
.ws2{word-spacing:-0.151679pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-12.570585pt;}
._b{margin-left:-9.073843pt;}
._2{margin-left:-3.670633pt;}
._3{margin-left:-1.892392pt;}
._1{margin-left:-0.958593pt;}
._4{width:1.273801pt;}
._10{width:2.564975pt;}
._8{width:3.769858pt;}
._e{width:8.981419pt;}
._d{width:9.875899pt;}
._f{width:11.297653pt;}
._c{width:18.392580pt;}
._9{width:38.521497pt;}
._6{width:45.269792pt;}
._7{width:59.110040pt;}
._a{width:95.080063pt;}
._5{width:153.992275pt;}
.fs2{font-size:47.987854pt;}
.fs0{font-size:53.306508pt;}
.fs6{font-size:74.621114pt;}
.fs5{font-size:79.979757pt;}
.fs1{font-size:106.613016pt;}
.fs4{font-size:151.679273pt;}
.fs3{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.120018pt;}
.y1a{bottom:11.361711pt;}
.y13{bottom:11.476789pt;}
.y7{bottom:17.454495pt;}
.y40{bottom:18.995204pt;}
.y6{bottom:35.449940pt;}
.y23{bottom:36.990643pt;}
.y42{bottom:37.990397pt;}
.y3f{bottom:55.985842pt;}
.y3d{bottom:58.985105pt;}
.y4{bottom:61.776701pt;}
.y22{bottom:64.983559pt;}
.y3{bottom:79.772147pt;}
.y3c{bottom:86.978020pt;}
.y21{bottom:92.976474pt;}
.y2{bottom:104.099250pt;}
.y3b{bottom:114.970935pt;}
.y20{bottom:120.969389pt;}
.y3a{bottom:142.963850pt;}
.y1f{bottom:148.962304pt;}
.yb{bottom:149.340077pt;}
.yf{bottom:149.392517pt;}
.ye{bottom:165.388469pt;}
.ya{bottom:167.335523pt;}
.y39{bottom:170.956765pt;}
.y1e{bottom:176.955219pt;}
.yd{bottom:181.384420pt;}
.y9{bottom:185.330968pt;}
.yc{bottom:197.380372pt;}
.y38{bottom:198.949680pt;}
.y8{bottom:203.326413pt;}
.y1d{bottom:204.948134pt;}
.y10{bottom:219.258179pt;}
.y5{bottom:226.506306pt;}
.y37{bottom:226.942595pt;}
.y1c{bottom:232.941049pt;}
.y36{bottom:254.935510pt;}
.y41{bottom:259.928523pt;}
.y16{bottom:308.652204pt;}
.y18{bottom:322.648639pt;}
.y15{bottom:336.645119pt;}
.y17{bottom:350.641554pt;}
.y14{bottom:364.638034pt;}
.y19{bottom:377.400003pt;}
.y12{bottom:379.960003pt;}
.y34{bottom:461.664490pt;}
.y2b{bottom:463.663984pt;}
.y35{bottom:464.026092pt;}
.y1b{bottom:480.022069pt;}
.y33{bottom:489.657405pt;}
.y2a{bottom:491.656899pt;}
.y32{bottom:545.643235pt;}
.y29{bottom:547.642729pt;}
.y31{bottom:573.636150pt;}
.y28{bottom:575.635644pt;}
.y30{bottom:601.629065pt;}
.y27{bottom:603.628559pt;}
.y2f{bottom:657.614895pt;}
.y26{bottom:659.614389pt;}
.y2e{bottom:685.607810pt;}
.y25{bottom:687.607305pt;}
.y2d{bottom:713.600725pt;}
.y3e{bottom:741.475338pt;}
.y2c{bottom:741.593640pt;}
.y24{bottom:743.593135pt;}
.y47{bottom:877.049949pt;}
.y46{bottom:903.043370pt;}
.y45{bottom:929.036791pt;}
.y44{bottom:955.030212pt;}
.y43{bottom:981.023633pt;}
.y11{bottom:1028.891916pt;}
.h5{height:39.637968pt;}
.h3{height:44.031175pt;}
.he{height:50.641182pt;}
.h7{height:52.159998pt;}
.h9{height:61.273554pt;}
.hf{height:61.637040pt;}
.hb{height:66.063280pt;}
.h4{height:88.062352pt;}
.hd{height:94.975974pt;}
.h8{height:116.203505pt;}
.h6{height:212.404782pt;}
.ha{height:312.920806pt;}
.hc{height:326.917292pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.879953pt;}
.h0{height:1122.999972pt;}
.w3{width:161.279993pt;}
.w4{width:195.519992pt;}
.w5{width:202.239992pt;}
.w9{width:446.886897pt;}
.w8{width:446.886935pt;}
.w7{width:491.875448pt;}
.w6{width:491.875525pt;}
.w2{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x1{left:12.221483pt;}
.xa{left:22.899274pt;}
.x4{left:40.319998pt;}
.xb{left:41.989373pt;}
.x12{left:44.728436pt;}
.x5{left:81.408029pt;}
.x13{left:104.426695pt;}
.x10{left:121.959333pt;}
.xf{left:126.311781pt;}
.x11{left:135.284086pt;}
.x14{left:251.195772pt;}
.x3{left:425.220491pt;}
.xc{left:534.892752pt;}
.x6{left:571.519976pt;}
.x7{left:577.405070pt;}
.x2{left:822.181918pt;}
.xd{left:1072.594483pt;}
.x9{left:1080.369011pt;}
.x8{left:1098.239954pt;}
.xe{left:1099.533618pt;}
}




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