
    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_920ef773e8ea63e0e54e5030.woff')format("woff");}.ff1{font-family:ff1;line-height:1.193000;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_69e99102dd9d0d374a5add66.woff')format("woff");}.ff2{font-family:ff2;line-height:1.192000;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_b561147b4cc7a9416af8905b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193000;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_9e9daf7c256780a72ae6b2d6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.944336;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_38f54751f329b30effcf144a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_dc74aaa8d572fb4a9edfe4c6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.020020;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);}
.v1{vertical-align:-98.520000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.716000px;}
.lsb{letter-spacing:-1.470000px;}
.ls8{letter-spacing:-1.272000px;}
.ls6{letter-spacing:-1.206000px;}
.ls9{letter-spacing:-0.990000px;}
.lsd{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.858000px;}
.ls7{letter-spacing:-0.840000px;}
.lsc{letter-spacing:-0.816000px;}
.lsa{letter-spacing:-0.708000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.756000px;}
.ls0{letter-spacing:11.317350px;}
.ls2{letter-spacing:65.422500px;}
.ls3{letter-spacing:65.475000px;}
.ls1{letter-spacing:65.625000px;}
.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;}
}
.ws6{word-spacing:-121.650000px;}
.ws8{word-spacing:-41.482650px;}
.ws4{word-spacing:-40.774650px;}
.ws1{word-spacing:-40.642650px;}
.ws12{word-spacing:-40.624650px;}
.ws9{word-spacing:-40.615500px;}
.ws7{word-spacing:-40.531500px;}
.ws3{word-spacing:-40.492650px;}
.ws0{word-spacing:-40.276650px;}
.ws2{word-spacing:-40.159500px;}
.ws5{word-spacing:-40.012650px;}
.ws13{word-spacing:-34.791900px;}
.wsc{word-spacing:-29.206650px;}
.wsb{word-spacing:-29.155500px;}
.ws11{word-spacing:-24.495900px;}
.wsa{word-spacing:-24.453000px;}
.wsf{word-spacing:-2.628000px;}
.wse{word-spacing:-1.414050px;}
.wsd{word-spacing:-0.085650px;}
.ws14{word-spacing:0.000000px;}
.ws10{word-spacing:2.718000px;}
._21{margin-left:-9.383700px;}
._22{margin-left:-7.542600px;}
._7{margin-left:-4.962900px;}
._0{margin-left:-3.870000px;}
._4{margin-left:-2.515500px;}
._1{margin-left:-1.161000px;}
._5{width:1.161000px;}
._2{width:2.709000px;}
._3{width:3.870000px;}
._6{width:4.905750px;}
._16{width:7.378050px;}
._9{width:8.944500px;}
._c{width:10.233000px;}
._d{width:12.191550px;}
._19{width:13.285500px;}
._1a{width:16.760700px;}
._1d{width:18.777000px;}
._f{width:21.134400px;}
._14{width:22.230900px;}
._18{width:34.024050px;}
._e{width:35.256300px;}
._8{width:42.678300px;}
._15{width:46.371000px;}
._a{width:48.825000px;}
._b{width:50.157000px;}
._1c{width:53.073900px;}
._1b{width:56.431200px;}
._17{width:114.757500px;}
._1e{width:777.171450px;}
._13{width:793.095000px;}
._11{width:798.426600px;}
._12{width:803.690550px;}
._10{width:812.624100px;}
._20{width:2031.020100px;}
._1f{width:2462.181000px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,51,153);}
.fc3{color:rgb(5,99,193);}
.fc4{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,114,188);}
.fc0{color:rgb(40,128,192);}
.fs3{font-size:85.500000px;}
.fs4{font-size:85.650000px;}
.fs6{font-size:94.500000px;}
.fs5{font-size:94.650000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:108.150000px;}
.fs1{font-size:121.500000px;}
.fs2{font-size:121.650000px;}
.fs0{font-size:193.500000px;}
.y0{bottom:0.000000px;}
.y41{bottom:22.162500px;}
.y3e{bottom:41.962500px;}
.y40{bottom:54.825000px;}
.y3d{bottom:74.625000px;}
.y3f{bottom:87.450000px;}
.y35{bottom:287.850000px;}
.y34{bottom:312.645000px;}
.y37{bottom:325.020000px;}
.y39{bottom:336.675000px;}
.y33{bottom:346.095000px;}
.y36{bottom:349.770000px;}
.y38{bottom:386.100000px;}
.y3a{bottom:397.800000px;}
.y3b{bottom:621.525000px;}
.y3c{bottom:667.350000px;}
.y32{bottom:669.750000px;}
.y16{bottom:1042.875000px;}
.y15{bottom:1067.670000px;}
.y12{bottom:1105.830000px;}
.y11{bottom:1130.595000px;}
.y19{bottom:1161.945000px;}
.y18{bottom:1187.850000px;}
.y1e{bottom:1190.730000px;}
.y17{bottom:1212.600000px;}
.y1d{bottom:1215.480000px;}
.y14{bottom:1242.600000px;}
.y1c{bottom:1245.495000px;}
.y13{bottom:1267.350000px;}
.y1b{bottom:1270.230000px;}
.y1a{bottom:1323.720000px;}
.y1f{bottom:1326.600000px;}
.y31{bottom:1382.550000px;}
.y30{bottom:2304.795000px;}
.y10{bottom:2393.625000px;}
.y2d{bottom:2399.925000px;}
.yf{bottom:2426.250000px;}
.y2c{bottom:2435.925000px;}
.ye{bottom:2467.905000px;}
.y2b{bottom:2471.970000px;}
.yd{bottom:2499.420000px;}
.y2a{bottom:2508.000000px;}
.yc{bottom:2541.075000px;}
.y29{bottom:2544.000000px;}
.y28{bottom:2580.045000px;}
.yb{bottom:2582.700000px;}
.y27{bottom:2616.030000px;}
.y26{bottom:2652.075000px;}
.ya{bottom:2657.025000px;}
.y9{bottom:2693.025000px;}
.y2f{bottom:2701.350000px;}
.y8{bottom:2729.070000px;}
.y2e{bottom:2737.350000px;}
.y7{bottom:2818.320000px;}
.y6{bottom:2854.350000px;}
.y5{bottom:2890.350000px;}
.y4{bottom:2926.395000px;}
.y3{bottom:2962.425000px;}
.y2{bottom:2998.425000px;}
.y20{bottom:3077.505000px;}
.y25{bottom:3105.300000px;}
.y24{bottom:3131.175000px;}
.y23{bottom:3155.955000px;}
.y22{bottom:3206.580000px;}
.y21{bottom:3231.375000px;}
.y1{bottom:3321.150000px;}
.hb{height:64.237500px;}
.h6{height:75.753000px;}
.hc{height:75.885900px;}
.h8{height:77.121000px;}
.h7{height:77.256300px;}
.ha{height:83.727000px;}
.h9{height:83.859900px;}
.hf{height:91.283203px;}
.he{height:93.603516px;}
.hd{height:93.733521px;}
.h2{height:107.649000px;}
.h5{height:107.781900px;}
.h4{height:109.593000px;}
.h3{height:109.728300px;}
.h1{height:171.441000px;}
.h0{height:3575.250000px;}
.w1{width:2526.749962px;}
.w0{width:2526.750000px;}
.x0{left:0.000000px;}
.x2{left:83.287462px;}
.x1{left:99.299962px;}
.x8{left:106.237462px;}
.x3{left:117.074962px;}
.x12{left:119.512462px;}
.xe{left:127.499962px;}
.x4{left:144.074962px;}
.x16{left:255.644962px;}
.x17{left:352.694962px;}
.x7{left:446.204962px;}
.xf{left:659.774962px;}
.x6{left:782.174962px;}
.x18{left:785.669962px;}
.x19{left:789.794962px;}
.x1a{left:827.504962px;}
.x13{left:924.944962px;}
.x15{left:953.249962px;}
.x5{left:1126.124962px;}
.xb{left:1463.249962px;}
.xc{left:1469.024962px;}
.x11{left:1560.944962px;}
.x10{left:1566.329962px;}
.x14{left:1679.819962px;}
.x9{left:1803.224962px;}
.xa{left:1808.999962px;}
.xd{left:2143.229962px;}
@media print{
.v1{vertical-align:-87.573333pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.525333pt;}
.lsb{letter-spacing:-1.306667pt;}
.ls8{letter-spacing:-1.130667pt;}
.ls6{letter-spacing:-1.072000pt;}
.ls9{letter-spacing:-0.880000pt;}
.lsd{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.762667pt;}
.ls7{letter-spacing:-0.746667pt;}
.lsc{letter-spacing:-0.725333pt;}
.lsa{letter-spacing:-0.629333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.672000pt;}
.ls0{letter-spacing:10.059867pt;}
.ls2{letter-spacing:58.153333pt;}
.ls3{letter-spacing:58.200000pt;}
.ls1{letter-spacing:58.333333pt;}
.ws6{word-spacing:-108.133333pt;}
.ws8{word-spacing:-36.873467pt;}
.ws4{word-spacing:-36.244133pt;}
.ws1{word-spacing:-36.126800pt;}
.ws12{word-spacing:-36.110800pt;}
.ws9{word-spacing:-36.102667pt;}
.ws7{word-spacing:-36.028000pt;}
.ws3{word-spacing:-35.993467pt;}
.ws0{word-spacing:-35.801467pt;}
.ws2{word-spacing:-35.697333pt;}
.ws5{word-spacing:-35.566800pt;}
.ws13{word-spacing:-30.926133pt;}
.wsc{word-spacing:-25.961467pt;}
.wsb{word-spacing:-25.916000pt;}
.ws11{word-spacing:-21.774133pt;}
.wsa{word-spacing:-21.736000pt;}
.wsf{word-spacing:-2.336000pt;}
.wse{word-spacing:-1.256933pt;}
.wsd{word-spacing:-0.076133pt;}
.ws14{word-spacing:0.000000pt;}
.ws10{word-spacing:2.416000pt;}
._21{margin-left:-8.341067pt;}
._22{margin-left:-6.704533pt;}
._7{margin-left:-4.411467pt;}
._0{margin-left:-3.440000pt;}
._4{margin-left:-2.236000pt;}
._1{margin-left:-1.032000pt;}
._5{width:1.032000pt;}
._2{width:2.408000pt;}
._3{width:3.440000pt;}
._6{width:4.360667pt;}
._16{width:6.558267pt;}
._9{width:7.950667pt;}
._c{width:9.096000pt;}
._d{width:10.836933pt;}
._19{width:11.809333pt;}
._1a{width:14.898400pt;}
._1d{width:16.690667pt;}
._f{width:18.786133pt;}
._14{width:19.760800pt;}
._18{width:30.243600pt;}
._e{width:31.338933pt;}
._8{width:37.936267pt;}
._15{width:41.218667pt;}
._a{width:43.400000pt;}
._b{width:44.584000pt;}
._1c{width:47.176800pt;}
._1b{width:50.161067pt;}
._17{width:102.006667pt;}
._1e{width:690.819067pt;}
._13{width:704.973333pt;}
._11{width:709.712533pt;}
._12{width:714.391600pt;}
._10{width:722.332533pt;}
._20{width:1805.351200pt;}
._1f{width:2188.605333pt;}
.fs3{font-size:76.000000pt;}
.fs4{font-size:76.133333pt;}
.fs6{font-size:84.000000pt;}
.fs5{font-size:84.133333pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:96.133333pt;}
.fs1{font-size:108.000000pt;}
.fs2{font-size:108.133333pt;}
.fs0{font-size:172.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:19.700000pt;}
.y3e{bottom:37.300000pt;}
.y40{bottom:48.733333pt;}
.y3d{bottom:66.333333pt;}
.y3f{bottom:77.733333pt;}
.y35{bottom:255.866667pt;}
.y34{bottom:277.906667pt;}
.y37{bottom:288.906667pt;}
.y39{bottom:299.266667pt;}
.y33{bottom:307.640000pt;}
.y36{bottom:310.906667pt;}
.y38{bottom:343.200000pt;}
.y3a{bottom:353.600000pt;}
.y3b{bottom:552.466667pt;}
.y3c{bottom:593.200000pt;}
.y32{bottom:595.333333pt;}
.y16{bottom:927.000000pt;}
.y15{bottom:949.040000pt;}
.y12{bottom:982.960000pt;}
.y11{bottom:1004.973333pt;}
.y19{bottom:1032.840000pt;}
.y18{bottom:1055.866667pt;}
.y1e{bottom:1058.426667pt;}
.y17{bottom:1077.866667pt;}
.y1d{bottom:1080.426667pt;}
.y14{bottom:1104.533333pt;}
.y1c{bottom:1107.106667pt;}
.y13{bottom:1126.533333pt;}
.y1b{bottom:1129.093333pt;}
.y1a{bottom:1176.640000pt;}
.y1f{bottom:1179.200000pt;}
.y31{bottom:1228.933333pt;}
.y30{bottom:2048.706667pt;}
.y10{bottom:2127.666667pt;}
.y2d{bottom:2133.266667pt;}
.yf{bottom:2156.666667pt;}
.y2c{bottom:2165.266667pt;}
.ye{bottom:2193.693333pt;}
.y2b{bottom:2197.306667pt;}
.yd{bottom:2221.706667pt;}
.y2a{bottom:2229.333333pt;}
.yc{bottom:2258.733333pt;}
.y29{bottom:2261.333333pt;}
.y28{bottom:2293.373333pt;}
.yb{bottom:2295.733333pt;}
.y27{bottom:2325.360000pt;}
.y26{bottom:2357.400000pt;}
.ya{bottom:2361.800000pt;}
.y9{bottom:2393.800000pt;}
.y2f{bottom:2401.200000pt;}
.y8{bottom:2425.840000pt;}
.y2e{bottom:2433.200000pt;}
.y7{bottom:2505.173333pt;}
.y6{bottom:2537.200000pt;}
.y5{bottom:2569.200000pt;}
.y4{bottom:2601.240000pt;}
.y3{bottom:2633.266667pt;}
.y2{bottom:2665.266667pt;}
.y20{bottom:2735.560000pt;}
.y25{bottom:2760.266667pt;}
.y24{bottom:2783.266667pt;}
.y23{bottom:2805.293333pt;}
.y22{bottom:2850.293333pt;}
.y21{bottom:2872.333333pt;}
.y1{bottom:2952.133333pt;}
.hb{height:57.100000pt;}
.h6{height:67.336000pt;}
.hc{height:67.454133pt;}
.h8{height:68.552000pt;}
.h7{height:68.672267pt;}
.ha{height:74.424000pt;}
.h9{height:74.542133pt;}
.hf{height:81.140625pt;}
.he{height:83.203125pt;}
.hd{height:83.318685pt;}
.h2{height:95.688000pt;}
.h5{height:95.806133pt;}
.h4{height:97.416000pt;}
.h3{height:97.536267pt;}
.h1{height:152.392000pt;}
.h0{height:3178.000000pt;}
.w1{width:2245.999967pt;}
.w0{width:2246.000000pt;}
.x0{left:0.000000pt;}
.x2{left:74.033300pt;}
.x1{left:88.266633pt;}
.x8{left:94.433300pt;}
.x3{left:104.066633pt;}
.x12{left:106.233300pt;}
.xe{left:113.333300pt;}
.x4{left:128.066633pt;}
.x16{left:227.239967pt;}
.x17{left:313.506633pt;}
.x7{left:396.626633pt;}
.xf{left:586.466633pt;}
.x6{left:695.266633pt;}
.x18{left:698.373300pt;}
.x19{left:702.039967pt;}
.x1a{left:735.559967pt;}
.x13{left:822.173300pt;}
.x15{left:847.333300pt;}
.x5{left:1000.999967pt;}
.xb{left:1300.666633pt;}
.xc{left:1305.799967pt;}
.x11{left:1387.506633pt;}
.x10{left:1392.293300pt;}
.x14{left:1493.173300pt;}
.x9{left:1602.866633pt;}
.xa{left:1607.999967pt;}
.xd{left:1905.093300pt;}
}




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