
    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_9ed2e0389b2b1531fa5b2776.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_e6bc57a6d5fdff45a2019b86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_caadf1660345a7842f4111e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_e723a542d822ab7744a6e107.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_892c29704216565c6012bc5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_c0c644ef5894be0f7a54f87d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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:-27.000000px;}
.v1{vertical-align:-25.062000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-4.320000px;}
.ls6{letter-spacing:-4.200000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.315800px;}
.ls0{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.462800px;}
.ls4{letter-spacing:100.542600px;}
.ls3{letter-spacing:153.714000px;}
.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;}
}
.ws4{word-spacing:-57.240000px;}
.ws0{word-spacing:-51.192000px;}
.ws3{word-spacing:-44.520000px;}
.ws2{word-spacing:-35.616000px;}
.ws5{word-spacing:-15.900000px;}
.ws1{word-spacing:-0.216000px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-35.400000px;}
._6{margin-left:-30.000000px;}
._9{margin-left:-20.124000px;}
._7{margin-left:-18.384000px;}
._b{margin-left:-15.300000px;}
._14{margin-left:-13.176000px;}
._d{margin-left:-11.688000px;}
._10{margin-left:-10.170000px;}
._c{margin-left:-8.964000px;}
._0{margin-left:-7.260000px;}
._5{margin-left:-5.808000px;}
._1{margin-left:-3.960000px;}
._4{margin-left:-2.376000px;}
._3{margin-left:-1.188000px;}
._2{width:2.640000px;}
._13{width:4.080000px;}
._e{width:30.582000px;}
._f{width:45.828000px;}
._11{width:47.196000px;}
._a{width:64.872000px;}
._12{width:137.856000px;}
.fc5{color:rgb(131,179,88);}
.fc3{color:rgb(116,181,73);}
.fc2{color:rgb(0,145,122);}
.fc1{color:rgb(167,198,55);}
.fc4{color:rgb(127,175,85);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:60.000000px;}
.fs5{font-size:108.000000px;}
.fs0{font-size:132.000000px;}
.fs4{font-size:168.000000px;}
.fs3{font-size:216.000000px;}
.fs2{font-size:306.000000px;}
.fs1{font-size:600.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:15.254850px;}
.y2a{bottom:15.255000px;}
.y24{bottom:19.710000px;}
.y20{bottom:23.730000px;}
.y22{bottom:107.730000px;}
.y1f{bottom:753.297000px;}
.y21{bottom:1044.795450px;}
.y29{bottom:1343.845500px;}
.y3a{bottom:1474.809450px;}
.y39{bottom:1540.809000px;}
.y38{bottom:1606.809000px;}
.y37{bottom:1672.809000px;}
.y36{bottom:1738.809000px;}
.y35{bottom:1804.809000px;}
.y34{bottom:1870.809000px;}
.y33{bottom:1936.809000px;}
.y27{bottom:1996.050000px;}
.y32{bottom:2002.809000px;}
.y2e{bottom:2064.843000px;}
.y26{bottom:2074.350000px;}
.y31{bottom:2134.809000px;}
.y25{bottom:2152.650000px;}
.y30{bottom:2214.309000px;}
.y23{bottom:2244.450000px;}
.y2f{bottom:2293.809000px;}
.y28{bottom:2387.529000px;}
.y1e{bottom:2578.309500px;}
.y1d{bottom:2647.309500px;}
.y16{bottom:2668.309500px;}
.y1c{bottom:2723.059500px;}
.y15{bottom:2737.309500px;}
.y14{bottom:2812.575000px;}
.y1b{bottom:2854.309500px;}
.y13{bottom:2899.309500px;}
.y1a{bottom:2923.309500px;}
.y12{bottom:2968.309500px;}
.y19{bottom:2992.309500px;}
.y11{bottom:3037.309500px;}
.y18{bottom:3068.059500px;}
.y10{bottom:3112.575000px;}
.y2d{bottom:3175.972500px;}
.yf{bottom:3199.309500px;}
.ye{bottom:3268.309500px;}
.yd{bottom:3343.575000px;}
.y17{bottom:3344.059500px;}
.yc{bottom:3430.309500px;}
.yb{bottom:3499.309500px;}
.ya{bottom:3568.309500px;}
.y9{bottom:3736.978500px;}
.y8{bottom:3829.978500px;}
.y7{bottom:3922.978500px;}
.y6{bottom:4015.978500px;}
.y5{bottom:4108.978500px;}
.y2{bottom:4281.643500px;}
.y1{bottom:4331.143500px;}
.y4{bottom:4498.002000px;}
.y2c{bottom:4568.575500px;}
.y3{bottom:4658.652000px;}
.hb{height:49.199955px;}
.hd{height:63.000000px;}
.h6{height:74.699940px;}
.h9{height:76.800000px;}
.ha{height:90.300000px;}
.hc{height:113.400000px;}
.h1{height:138.600000px;}
.h8{height:169.200000px;}
.h7{height:176.400000px;}
.h5{height:201.738000px;}
.h4{height:226.800000px;}
.h3{height:321.300000px;}
.h2{height:630.000000px;}
.h0{height:5055.000000px;}
.w3{width:102.230940px;}
.wa{width:118.484940px;}
.wf{width:126.897735px;}
.w6{width:135.872940px;}
.w2{width:140.366940px;}
.w8{width:171.573000px;}
.w9{width:186.300000px;}
.wb{width:194.872800px;}
.w5{width:244.638000px;}
.w4{width:266.016000px;}
.w7{width:273.954000px;}
.w1{width:306.210000px;}
.wc{width:340.482000px;}
.w10{width:347.073000px;}
.w11{width:374.532000px;}
.w12{width:539.286000px;}
.we{width:581.929950px;}
.wd{width:710.327700px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x16{left:5.400000px;}
.x1c{left:8.100000px;}
.xa{left:12.600000px;}
.x8{left:14.100000px;}
.x18{left:34.611750px;}
.x19{left:44.979750px;}
.x1a{left:67.119750px;}
.x9{left:230.286450px;}
.x1e{left:234.786450px;}
.x15{left:237.750000px;}
.x1{left:242.886450px;}
.x5{left:245.814900px;}
.x2{left:252.020400px;}
.x7{left:255.727800px;}
.x6{left:288.446550px;}
.xb{left:784.354800px;}
.x17{left:821.179950px;}
.xc{left:849.988800px;}
.xe{left:1338.423150px;}
.x1d{left:1416.225750px;}
.xd{left:1425.436500px;}
.x3{left:1832.116500px;}
.x4{left:1889.445000px;}
.x10{left:1892.491500px;}
.xf{left:1950.189000px;}
.x1b{left:2030.382000px;}
.x12{left:2446.560000px;}
.x11{left:2591.911500px;}
.x22{left:2757.723000px;}
.x14{left:2996.212500px;}
.x13{left:3005.043000px;}
.x1f{left:3334.573500px;}
.x20{left:3342.658500px;}
.x21{left:3344.742000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v1{vertical-align:-22.277333pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-3.840000pt;}
.ls6{letter-spacing:-3.733333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.169600pt;}
.ls0{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.300267pt;}
.ls4{letter-spacing:89.371200pt;}
.ls3{letter-spacing:136.634667pt;}
.ws4{word-spacing:-50.880000pt;}
.ws0{word-spacing:-45.504000pt;}
.ws3{word-spacing:-39.573333pt;}
.ws2{word-spacing:-31.658667pt;}
.ws5{word-spacing:-14.133333pt;}
.ws1{word-spacing:-0.192000pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-31.466667pt;}
._6{margin-left:-26.666667pt;}
._9{margin-left:-17.888000pt;}
._7{margin-left:-16.341333pt;}
._b{margin-left:-13.600000pt;}
._14{margin-left:-11.712000pt;}
._d{margin-left:-10.389333pt;}
._10{margin-left:-9.040000pt;}
._c{margin-left:-7.968000pt;}
._0{margin-left:-6.453333pt;}
._5{margin-left:-5.162667pt;}
._1{margin-left:-3.520000pt;}
._4{margin-left:-2.112000pt;}
._3{margin-left:-1.056000pt;}
._2{width:2.346667pt;}
._13{width:3.626667pt;}
._e{width:27.184000pt;}
._f{width:40.736000pt;}
._11{width:41.952000pt;}
._a{width:57.664000pt;}
._12{width:122.538667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:96.000000pt;}
.fs0{font-size:117.333333pt;}
.fs4{font-size:149.333333pt;}
.fs3{font-size:192.000000pt;}
.fs2{font-size:272.000000pt;}
.fs1{font-size:533.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:13.559867pt;}
.y2a{bottom:13.560000pt;}
.y24{bottom:17.520000pt;}
.y20{bottom:21.093333pt;}
.y22{bottom:95.760000pt;}
.y1f{bottom:669.597333pt;}
.y21{bottom:928.707067pt;}
.y29{bottom:1194.529333pt;}
.y3a{bottom:1310.941733pt;}
.y39{bottom:1369.608000pt;}
.y38{bottom:1428.274667pt;}
.y37{bottom:1486.941333pt;}
.y36{bottom:1545.608000pt;}
.y35{bottom:1604.274667pt;}
.y34{bottom:1662.941333pt;}
.y33{bottom:1721.608000pt;}
.y27{bottom:1774.266667pt;}
.y32{bottom:1780.274667pt;}
.y2e{bottom:1835.416000pt;}
.y26{bottom:1843.866667pt;}
.y31{bottom:1897.608000pt;}
.y25{bottom:1913.466667pt;}
.y30{bottom:1968.274667pt;}
.y23{bottom:1995.066667pt;}
.y2f{bottom:2038.941333pt;}
.y28{bottom:2122.248000pt;}
.y1e{bottom:2291.830667pt;}
.y1d{bottom:2353.164000pt;}
.y16{bottom:2371.830667pt;}
.y1c{bottom:2420.497333pt;}
.y15{bottom:2433.164000pt;}
.y14{bottom:2500.066667pt;}
.y1b{bottom:2537.164000pt;}
.y13{bottom:2577.164000pt;}
.y1a{bottom:2598.497333pt;}
.y12{bottom:2638.497333pt;}
.y19{bottom:2659.830667pt;}
.y11{bottom:2699.830667pt;}
.y18{bottom:2727.164000pt;}
.y10{bottom:2766.733333pt;}
.y2d{bottom:2823.086667pt;}
.yf{bottom:2843.830667pt;}
.ye{bottom:2905.164000pt;}
.yd{bottom:2972.066667pt;}
.y17{bottom:2972.497333pt;}
.yc{bottom:3049.164000pt;}
.yb{bottom:3110.497333pt;}
.ya{bottom:3171.830667pt;}
.y9{bottom:3321.758667pt;}
.y8{bottom:3404.425333pt;}
.y7{bottom:3487.092000pt;}
.y6{bottom:3569.758667pt;}
.y5{bottom:3652.425333pt;}
.y2{bottom:3805.905333pt;}
.y1{bottom:3849.905333pt;}
.y4{bottom:3998.224000pt;}
.y2c{bottom:4060.956000pt;}
.y3{bottom:4141.024000pt;}
.hb{height:43.733293pt;}
.hd{height:56.000000pt;}
.h6{height:66.399947pt;}
.h9{height:68.266667pt;}
.ha{height:80.266667pt;}
.hc{height:100.800000pt;}
.h1{height:123.200000pt;}
.h8{height:150.400000pt;}
.h7{height:156.800000pt;}
.h5{height:179.322667pt;}
.h4{height:201.600000pt;}
.h3{height:285.600000pt;}
.h2{height:560.000000pt;}
.h0{height:4493.333333pt;}
.w3{width:90.871947pt;}
.wa{width:105.319947pt;}
.wf{width:112.797987pt;}
.w6{width:120.775947pt;}
.w2{width:124.770613pt;}
.w8{width:152.509333pt;}
.w9{width:165.600000pt;}
.wb{width:173.220267pt;}
.w5{width:217.456000pt;}
.w4{width:236.458667pt;}
.w7{width:243.514667pt;}
.w1{width:272.186667pt;}
.wc{width:302.650667pt;}
.w10{width:308.509333pt;}
.w11{width:332.917333pt;}
.w12{width:479.365333pt;}
.we{width:517.271067pt;}
.wd{width:631.402400pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x16{left:4.800000pt;}
.x1c{left:7.200000pt;}
.xa{left:11.200000pt;}
.x8{left:12.533333pt;}
.x18{left:30.766000pt;}
.x19{left:39.982000pt;}
.x1a{left:59.662000pt;}
.x9{left:204.699067pt;}
.x1e{left:208.699067pt;}
.x15{left:211.333333pt;}
.x1{left:215.899067pt;}
.x5{left:218.502133pt;}
.x2{left:224.018133pt;}
.x7{left:227.313600pt;}
.x6{left:256.396933pt;}
.xb{left:697.204267pt;}
.x17{left:729.937733pt;}
.xc{left:755.545600pt;}
.xe{left:1189.709467pt;}
.x1d{left:1258.867333pt;}
.xd{left:1267.054667pt;}
.x3{left:1628.548000pt;}
.x4{left:1679.506667pt;}
.x10{left:1682.214667pt;}
.xf{left:1733.501333pt;}
.x1b{left:1804.784000pt;}
.x12{left:2174.720000pt;}
.x11{left:2303.921333pt;}
.x22{left:2451.309333pt;}
.x14{left:2663.300000pt;}
.x13{left:2671.149333pt;}
.x1f{left:2964.065333pt;}
.x20{left:2971.252000pt;}
.x21{left:2973.104000pt;}
}




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