
    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_40554512bfac8fc912d4924a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_381ba584c3786b093a58f6ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_8dc3319158c8bd2fe8650d83.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_0ea3ee32119ca71feb6b4983.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_2086295445f05adfe9fd945f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_713c174de28796ef350135c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_dadcc2aadc6c13a37f23e165.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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);}
.v2{vertical-align:-93.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:54.000000px;}
.v1{vertical-align:136.800000px;}
.ls9{letter-spacing:-0.106800px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.079920px;}
.ls2{letter-spacing:0.306000px;}
.ls6{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.316800px;}
.ls8{letter-spacing:0.342600px;}
.ls4{letter-spacing:0.342720px;}
.ls1{letter-spacing:0.576000px;}
.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:-80.064000px;}
.ws4{word-spacing:-66.653280px;}
.ws3{word-spacing:-66.546480px;}
.ws2{word-spacing:-55.044000px;}
.ws1{word-spacing:-52.041600px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-31.305600px;}
._11{margin-left:-27.323280px;}
._5{margin-left:-21.582000px;}
._28{margin-left:-20.136240px;}
._1e{margin-left:-18.221760px;}
._2{margin-left:-16.128000px;}
._22{margin-left:-13.906800px;}
._21{margin-left:-12.466800px;}
._3{margin-left:-11.289120px;}
._1f{margin-left:-8.151840px;}
._26{margin-left:-5.994000px;}
._4{margin-left:-3.366000px;}
._9{margin-left:-1.020000px;}
._0{width:1.020000px;}
._6{width:2.370240px;}
._a{width:3.596400px;}
._b{width:5.274720px;}
._c{width:7.270080px;}
._f{width:12.227760px;}
._e{width:13.426560px;}
._20{width:15.584400px;}
._7{width:20.379600px;}
._8{width:21.517440px;}
._13{width:22.537440px;}
._12{width:23.736240px;}
._17{width:28.788480px;}
._16{width:29.988000px;}
._d{width:39.626640px;}
._23{width:43.876080px;}
._1c{width:52.747200px;}
._25{width:67.892832px;}
._15{width:98.541360px;}
._14{width:99.979920px;}
._19{width:115.084800px;}
._18{width:117.002880px;}
._24{width:118.201680px;}
._10{width:127.490400px;}
._1d{width:141.218640px;}
._1a{width:154.469520px;}
._1b{width:156.323520px;}
._27{width:1913.246880px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs2{font-size:128.880000px;}
.fs1{font-size:187.200000px;}
.fs3{font-size:198.000000px;}
.fs4{font-size:239.760000px;}
.fs6{font-size:239.904000px;}
.fs0{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:112.536000px;}
.y2b{bottom:181.470000px;}
.y2a{bottom:250.410000px;}
.y30{bottom:412.050000px;}
.y37{bottom:579.270000px;}
.y36{bottom:648.210000px;}
.y35{bottom:717.330000px;}
.y34{bottom:786.270000px;}
.y33{bottom:855.210000px;}
.y32{bottom:864.210000px;}
.y38{bottom:1021.890000px;}
.y2f{bottom:1056.810000px;}
.y21{bottom:1142.715000px;}
.y20{bottom:1224.795000px;}
.y1f{bottom:1306.875000px;}
.y1e{bottom:1911.675000px;}
.y1d{bottom:1993.755000px;}
.y1c{bottom:2075.835000px;}
.y1b{bottom:2157.915000px;}
.y29{bottom:2234.415000px;}
.y1a{bottom:2239.995000px;}
.y25{bottom:2257.995000px;}
.y28{bottom:2316.525000px;}
.y19{bottom:2322.105000px;}
.y24{bottom:2340.285000px;}
.y27{bottom:2398.605000px;}
.y18{bottom:2404.365000px;}
.y23{bottom:2422.365000px;}
.y26{bottom:2480.685000px;}
.y17{bottom:2486.445000px;}
.y22{bottom:2504.445000px;}
.y10{bottom:2734.845000px;}
.y16{bottom:2775.885000px;}
.yf{bottom:2816.925000px;}
.y15{bottom:2857.965000px;}
.ye{bottom:2899.005000px;}
.y14{bottom:2940.045000px;}
.yd{bottom:2981.085000px;}
.y13{bottom:3022.125000px;}
.yc{bottom:3063.165000px;}
.y12{bottom:3104.205000px;}
.yb{bottom:3145.245000px;}
.y11{bottom:3186.285000px;}
.ya{bottom:3227.325000px;}
.y2e{bottom:3372.765000px;}
.y31{bottom:3393.105000px;}
.y9{bottom:3561.810000px;}
.y8{bottom:3643.890000px;}
.y7{bottom:3725.970000px;}
.y2d{bottom:3859.890000px;}
.y6{bottom:4102.170000px;}
.y5{bottom:4155.630000px;}
.y4{bottom:4246.710000px;}
.y3{bottom:4323.390000px;}
.y2{bottom:4386.570000px;}
.y1{bottom:4494.030000px;}
.h3{height:115.538906px;}
.h6{height:174.551836px;}
.h4{height:177.503906px;}
.h5{height:214.941094px;}
.h7{height:215.070187px;}
.h8{height:228.551836px;}
.h2{height:304.621875px;}
.h1{height:5102.250000px;}
.h0{height:5102.280000px;}
.w2{width:3614.219946px;}
.w0{width:3614.220000px;}
.w1{width:3614.250000px;}
.x0{left:0.000000px;}
.xf{left:64.979946px;}
.x4{left:76.859946px;}
.x10{left:83.339946px;}
.x3{left:90.179946px;}
.x7{left:97.559946px;}
.x12{left:123.299946px;}
.x8{left:140.039946px;}
.x15{left:142.199946px;}
.x1{left:231.479946px;}
.x2{left:489.269946px;}
.x6{left:1041.149946px;}
.xd{left:1235.234946px;}
.xc{left:1244.594946px;}
.xa{left:1276.994946px;}
.x9{left:1317.494946px;}
.x11{left:1364.834946px;}
.x5{left:1417.394946px;}
.xb{left:1439.354946px;}
.x14{left:1689.554946px;}
.x13{left:2110.064946px;}
.xe{left:2497.424946px;}
@media print{
.v2{vertical-align:-83.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:48.000000pt;}
.v1{vertical-align:121.600000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.071040pt;}
.ls2{letter-spacing:0.272000pt;}
.ls6{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.281600pt;}
.ls8{letter-spacing:0.304533pt;}
.ls4{letter-spacing:0.304640pt;}
.ls1{letter-spacing:0.512000pt;}
.ws0{word-spacing:-71.168000pt;}
.ws4{word-spacing:-59.247360pt;}
.ws3{word-spacing:-59.152427pt;}
.ws2{word-spacing:-48.928000pt;}
.ws1{word-spacing:-46.259200pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-27.827200pt;}
._11{margin-left:-24.287360pt;}
._5{margin-left:-19.184000pt;}
._28{margin-left:-17.898880pt;}
._1e{margin-left:-16.197120pt;}
._2{margin-left:-14.336000pt;}
._22{margin-left:-12.361600pt;}
._21{margin-left:-11.081600pt;}
._3{margin-left:-10.034773pt;}
._1f{margin-left:-7.246080pt;}
._26{margin-left:-5.328000pt;}
._4{margin-left:-2.992000pt;}
._9{margin-left:-0.906667pt;}
._0{width:0.906667pt;}
._6{width:2.106880pt;}
._a{width:3.196800pt;}
._b{width:4.688640pt;}
._c{width:6.462293pt;}
._f{width:10.869120pt;}
._e{width:11.934720pt;}
._20{width:13.852800pt;}
._7{width:18.115200pt;}
._8{width:19.126613pt;}
._13{width:20.033280pt;}
._12{width:21.098880pt;}
._17{width:25.589760pt;}
._16{width:26.656000pt;}
._d{width:35.223680pt;}
._23{width:39.000960pt;}
._1c{width:46.886400pt;}
._25{width:60.349184pt;}
._15{width:87.592320pt;}
._14{width:88.871040pt;}
._19{width:102.297600pt;}
._18{width:104.002560pt;}
._24{width:105.068160pt;}
._10{width:113.324800pt;}
._1d{width:125.527680pt;}
._1a{width:137.306240pt;}
._1b{width:138.954240pt;}
._27{width:1700.663893pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:114.560000pt;}
.fs1{font-size:166.400000pt;}
.fs3{font-size:176.000000pt;}
.fs4{font-size:213.120000pt;}
.fs6{font-size:213.248000pt;}
.fs0{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:100.032000pt;}
.y2b{bottom:161.306667pt;}
.y2a{bottom:222.586667pt;}
.y30{bottom:366.266667pt;}
.y37{bottom:514.906667pt;}
.y36{bottom:576.186667pt;}
.y35{bottom:637.626667pt;}
.y34{bottom:698.906667pt;}
.y33{bottom:760.186667pt;}
.y32{bottom:768.186667pt;}
.y38{bottom:908.346667pt;}
.y2f{bottom:939.386667pt;}
.y21{bottom:1015.746667pt;}
.y20{bottom:1088.706667pt;}
.y1f{bottom:1161.666667pt;}
.y1e{bottom:1699.266667pt;}
.y1d{bottom:1772.226667pt;}
.y1c{bottom:1845.186667pt;}
.y1b{bottom:1918.146667pt;}
.y29{bottom:1986.146667pt;}
.y1a{bottom:1991.106667pt;}
.y25{bottom:2007.106667pt;}
.y28{bottom:2059.133333pt;}
.y19{bottom:2064.093333pt;}
.y24{bottom:2080.253333pt;}
.y27{bottom:2132.093333pt;}
.y18{bottom:2137.213333pt;}
.y23{bottom:2153.213333pt;}
.y26{bottom:2205.053333pt;}
.y17{bottom:2210.173333pt;}
.y22{bottom:2226.173333pt;}
.y10{bottom:2430.973333pt;}
.y16{bottom:2467.453333pt;}
.yf{bottom:2503.933333pt;}
.y15{bottom:2540.413333pt;}
.ye{bottom:2576.893333pt;}
.y14{bottom:2613.373333pt;}
.yd{bottom:2649.853333pt;}
.y13{bottom:2686.333333pt;}
.yc{bottom:2722.813333pt;}
.y12{bottom:2759.293333pt;}
.yb{bottom:2795.773333pt;}
.y11{bottom:2832.253333pt;}
.ya{bottom:2868.733333pt;}
.y2e{bottom:2998.013333pt;}
.y31{bottom:3016.093333pt;}
.y9{bottom:3166.053333pt;}
.y8{bottom:3239.013333pt;}
.y7{bottom:3311.973333pt;}
.y2d{bottom:3431.013333pt;}
.y6{bottom:3646.373333pt;}
.y5{bottom:3693.893333pt;}
.y4{bottom:3774.853333pt;}
.y3{bottom:3843.013333pt;}
.y2{bottom:3899.173333pt;}
.y1{bottom:3994.693333pt;}
.h3{height:102.701250pt;}
.h6{height:155.157187pt;}
.h4{height:157.781250pt;}
.h5{height:191.058750pt;}
.h7{height:191.173500pt;}
.h8{height:203.157187pt;}
.h2{height:270.775000pt;}
.h1{height:4535.333333pt;}
.h0{height:4535.360000pt;}
.w2{width:3212.639952pt;}
.w0{width:3212.640000pt;}
.w1{width:3212.666667pt;}
.x0{left:0.000000pt;}
.xf{left:57.759952pt;}
.x4{left:68.319952pt;}
.x10{left:74.079952pt;}
.x3{left:80.159952pt;}
.x7{left:86.719952pt;}
.x12{left:109.599952pt;}
.x8{left:124.479952pt;}
.x15{left:126.399952pt;}
.x1{left:205.759952pt;}
.x2{left:434.906619pt;}
.x6{left:925.466619pt;}
.xd{left:1097.986619pt;}
.xc{left:1106.306619pt;}
.xa{left:1135.106619pt;}
.x9{left:1171.106619pt;}
.x11{left:1213.186619pt;}
.x5{left:1259.906619pt;}
.xb{left:1279.426619pt;}
.x14{left:1501.826619pt;}
.x13{left:1875.613285pt;}
.xe{left:2219.933285pt;}
}




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