
    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_c9442e06ab26dbc64e56d4e8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.123047;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_8d44dad3e61eeeac3d23a03d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_ba9aae7d83afcd64c0589cd2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_f703e730fcc16ce45f4c78f9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.952637;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_308a9a4256b8d09957764d99.woff')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_a5bf7d54dd125232e7ea0eab.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_e96fd13680bbfb8410b5d3d8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.125800px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.594000px;}
.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;}
}
.ws5{word-spacing:-17.094000px;}
.ws3{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.000000px;}
.ws4{word-spacing:-9.619500px;}
.ws0{word-spacing:-8.745000px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-2198.243400px;}
._18{margin-left:-16.578000px;}
._14{margin-left:-8.394000px;}
._5{margin-left:-6.900000px;}
._9{margin-left:-5.106000px;}
._11{margin-left:-4.068000px;}
._1{margin-left:-3.036000px;}
._0{margin-left:-1.254000px;}
._2{width:1.380000px;}
._3{width:3.072000px;}
._4{width:4.380000px;}
._6{width:6.312000px;}
._c{width:7.800000px;}
._7{width:9.420000px;}
._8{width:10.464000px;}
._b{width:11.894400px;}
._f{width:13.926000px;}
._10{width:14.982000px;}
._15{width:16.860000px;}
._17{width:18.270600px;}
._19{width:22.572000px;}
._13{width:28.620000px;}
._12{width:62.172000px;}
._16{width:81.540000px;}
._e{width:482.392200px;}
._a{width:1056.781800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:34.980000px;}
.fs2{font-size:38.478000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:43.935450px;}
.y23{bottom:43.938300px;}
.y1{bottom:45.409800px;}
.y22{bottom:68.029950px;}
.y4e{bottom:68.032800px;}
.y21{bottom:84.529950px;}
.y4d{bottom:84.532800px;}
.y77{bottom:88.536600px;}
.y46{bottom:88.539450px;}
.y20{bottom:101.029950px;}
.y4c{bottom:101.032800px;}
.y76{bottom:108.336600px;}
.y45{bottom:108.339450px;}
.y1f{bottom:117.529950px;}
.y4b{bottom:117.532800px;}
.y75{bottom:128.136600px;}
.y44{bottom:128.139450px;}
.y1e{bottom:134.029950px;}
.y51{bottom:134.032800px;}
.y74{bottom:147.936600px;}
.y43{bottom:147.939450px;}
.y1d{bottom:150.529950px;}
.y50{bottom:150.532800px;}
.y1c{bottom:167.029950px;}
.y54{bottom:167.032800px;}
.y73{bottom:167.736600px;}
.y42{bottom:167.739450px;}
.y4f{bottom:168.532800px;}
.y1b{bottom:183.529950px;}
.y53{bottom:183.532800px;}
.y72{bottom:187.536600px;}
.y41{bottom:187.539450px;}
.y52{bottom:200.032800px;}
.y71{bottom:207.336600px;}
.y4a{bottom:207.339450px;}
.y1a{bottom:219.936600px;}
.y70{bottom:227.136600px;}
.y40{bottom:227.139450px;}
.y19{bottom:239.736600px;}
.y6f{bottom:246.936600px;}
.y49{bottom:246.939450px;}
.y18{bottom:259.536600px;}
.y6e{bottom:266.736600px;}
.y3f{bottom:266.739450px;}
.y17{bottom:279.336600px;}
.y6d{bottom:286.536600px;}
.y3e{bottom:286.539450px;}
.y16{bottom:299.136600px;}
.y6c{bottom:306.336600px;}
.y48{bottom:306.339450px;}
.y15{bottom:318.936600px;}
.y6b{bottom:326.136600px;}
.y3d{bottom:326.139450px;}
.y6a{bottom:345.936600px;}
.y3c{bottom:345.939450px;}
.y69{bottom:365.736600px;}
.y3b{bottom:365.739450px;}
.y14{bottom:378.336600px;}
.y68{bottom:385.536600px;}
.y3a{bottom:385.539450px;}
.y13{bottom:396.336600px;}
.y67{bottom:405.336600px;}
.y39{bottom:405.339450px;}
.y12{bottom:414.336600px;}
.y66{bottom:425.136600px;}
.y38{bottom:425.139450px;}
.y11{bottom:432.336600px;}
.y79{bottom:444.936600px;}
.y37{bottom:444.939450px;}
.y10{bottom:450.336600px;}
.y65{bottom:464.736600px;}
.y36{bottom:464.739450px;}
.yf{bottom:468.336600px;}
.y78{bottom:484.536600px;}
.y35{bottom:484.539450px;}
.ye{bottom:486.336600px;}
.yd{bottom:504.336600px;}
.y34{bottom:504.339450px;}
.yc{bottom:522.336600px;}
.y64{bottom:524.136600px;}
.y33{bottom:524.139450px;}
.y63{bottom:543.936600px;}
.y32{bottom:543.939450px;}
.yb{bottom:558.336600px;}
.y62{bottom:563.736600px;}
.y31{bottom:563.739450px;}
.ya{bottom:576.336600px;}
.y61{bottom:583.536600px;}
.y30{bottom:583.539450px;}
.y9{bottom:594.336600px;}
.y60{bottom:603.336600px;}
.y2f{bottom:603.339450px;}
.y8{bottom:612.336600px;}
.y5f{bottom:623.136600px;}
.y2e{bottom:623.139450px;}
.y7{bottom:630.336600px;}
.y5e{bottom:642.936600px;}
.y47{bottom:642.939450px;}
.y6{bottom:648.336600px;}
.y5d{bottom:662.736600px;}
.y2d{bottom:662.739450px;}
.y5{bottom:666.336600px;}
.y5c{bottom:682.536600px;}
.y2c{bottom:682.539450px;}
.y4{bottom:684.336600px;}
.y5b{bottom:702.336600px;}
.y2b{bottom:702.339450px;}
.y3{bottom:722.136600px;}
.y2a{bottom:722.139450px;}
.y2{bottom:741.936600px;}
.y29{bottom:741.939450px;}
.y5a{bottom:761.736600px;}
.y28{bottom:761.739450px;}
.y59{bottom:781.536600px;}
.y27{bottom:781.539450px;}
.y58{bottom:801.336600px;}
.y26{bottom:801.339450px;}
.y56{bottom:829.857300px;}
.y24{bottom:829.860300px;}
.y57{bottom:830.388750px;}
.y25{bottom:830.391750px;}
.hc{height:33.351562px;}
.h8{height:41.777344px;}
.he{height:43.989258px;}
.h10{height:45.955078px;}
.ha{height:50.214844px;}
.h7{height:50.742188px;}
.h4{height:51.591797px;}
.hd{height:53.717597px;}
.h9{height:55.236328px;}
.hf{height:55.816406px;}
.h5{height:55.880859px;}
.h6{height:56.750977px;}
.hb{height:892.912500px;}
.h2{height:892.914000px;}
.h3{height:893.250000px;}
.h1{height:962.250000px;}
.h0{height:962.280000px;}
.w3{width:701.250000px;}
.w4{width:701.574000px;}
.w2{width:701.575500px;}
.w0{width:741.600000px;}
.w1{width:741.750000px;}
.x0{left:0.000000px;}
.x13{left:65.505150px;}
.x11{left:76.535400px;}
.x19{left:108.485400px;}
.x16{left:119.060400px;}
.x2{left:122.374350px;}
.x1a{left:129.710400px;}
.x10{left:140.360400px;}
.x17{left:161.574750px;}
.x18{left:187.086600px;}
.x12{left:195.901350px;}
.x15{left:216.339900px;}
.x5{left:246.655500px;}
.x7{left:248.113050px;}
.x8{left:250.361550px;}
.xc{left:251.365050px;}
.x6{left:253.086300px;}
.x9{left:254.653650px;}
.x4{left:273.198600px;}
.xd{left:312.976350px;}
.x1{left:345.031800px;}
.xe{left:377.473350px;}
.xf{left:437.578350px;}
.x3{left:441.487500px;}
.xa{left:458.061750px;}
.xb{left:475.320000px;}
.x14{left:545.096400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.889600pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.528000pt;}
.ws5{word-spacing:-15.194667pt;}
.ws3{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws4{word-spacing:-8.550667pt;}
.ws0{word-spacing:-7.773333pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-1953.994133pt;}
._18{margin-left:-14.736000pt;}
._14{margin-left:-7.461333pt;}
._5{margin-left:-6.133333pt;}
._9{margin-left:-4.538667pt;}
._11{margin-left:-3.616000pt;}
._1{margin-left:-2.698667pt;}
._0{margin-left:-1.114667pt;}
._2{width:1.226667pt;}
._3{width:2.730667pt;}
._4{width:3.893333pt;}
._6{width:5.610667pt;}
._c{width:6.933333pt;}
._7{width:8.373333pt;}
._8{width:9.301333pt;}
._b{width:10.572800pt;}
._f{width:12.378667pt;}
._10{width:13.317333pt;}
._15{width:14.986667pt;}
._17{width:16.240533pt;}
._19{width:20.064000pt;}
._13{width:25.440000pt;}
._12{width:55.264000pt;}
._16{width:72.480000pt;}
._e{width:428.793067pt;}
._a{width:939.361600pt;}
.fs3{font-size:31.093333pt;}
.fs2{font-size:34.202667pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:39.053733pt;}
.y23{bottom:39.056267pt;}
.y1{bottom:40.364267pt;}
.y22{bottom:60.471067pt;}
.y4e{bottom:60.473600pt;}
.y21{bottom:75.137733pt;}
.y4d{bottom:75.140267pt;}
.y77{bottom:78.699200pt;}
.y46{bottom:78.701733pt;}
.y20{bottom:89.804400pt;}
.y4c{bottom:89.806933pt;}
.y76{bottom:96.299200pt;}
.y45{bottom:96.301733pt;}
.y1f{bottom:104.471067pt;}
.y4b{bottom:104.473600pt;}
.y75{bottom:113.899200pt;}
.y44{bottom:113.901733pt;}
.y1e{bottom:119.137733pt;}
.y51{bottom:119.140267pt;}
.y74{bottom:131.499200pt;}
.y43{bottom:131.501733pt;}
.y1d{bottom:133.804400pt;}
.y50{bottom:133.806933pt;}
.y1c{bottom:148.471067pt;}
.y54{bottom:148.473600pt;}
.y73{bottom:149.099200pt;}
.y42{bottom:149.101733pt;}
.y4f{bottom:149.806933pt;}
.y1b{bottom:163.137733pt;}
.y53{bottom:163.140267pt;}
.y72{bottom:166.699200pt;}
.y41{bottom:166.701733pt;}
.y52{bottom:177.806933pt;}
.y71{bottom:184.299200pt;}
.y4a{bottom:184.301733pt;}
.y1a{bottom:195.499200pt;}
.y70{bottom:201.899200pt;}
.y40{bottom:201.901733pt;}
.y19{bottom:213.099200pt;}
.y6f{bottom:219.499200pt;}
.y49{bottom:219.501733pt;}
.y18{bottom:230.699200pt;}
.y6e{bottom:237.099200pt;}
.y3f{bottom:237.101733pt;}
.y17{bottom:248.299200pt;}
.y6d{bottom:254.699200pt;}
.y3e{bottom:254.701733pt;}
.y16{bottom:265.899200pt;}
.y6c{bottom:272.299200pt;}
.y48{bottom:272.301733pt;}
.y15{bottom:283.499200pt;}
.y6b{bottom:289.899200pt;}
.y3d{bottom:289.901733pt;}
.y6a{bottom:307.499200pt;}
.y3c{bottom:307.501733pt;}
.y69{bottom:325.099200pt;}
.y3b{bottom:325.101733pt;}
.y14{bottom:336.299200pt;}
.y68{bottom:342.699200pt;}
.y3a{bottom:342.701733pt;}
.y13{bottom:352.299200pt;}
.y67{bottom:360.299200pt;}
.y39{bottom:360.301733pt;}
.y12{bottom:368.299200pt;}
.y66{bottom:377.899200pt;}
.y38{bottom:377.901733pt;}
.y11{bottom:384.299200pt;}
.y79{bottom:395.499200pt;}
.y37{bottom:395.501733pt;}
.y10{bottom:400.299200pt;}
.y65{bottom:413.099200pt;}
.y36{bottom:413.101733pt;}
.yf{bottom:416.299200pt;}
.y78{bottom:430.699200pt;}
.y35{bottom:430.701733pt;}
.ye{bottom:432.299200pt;}
.yd{bottom:448.299200pt;}
.y34{bottom:448.301733pt;}
.yc{bottom:464.299200pt;}
.y64{bottom:465.899200pt;}
.y33{bottom:465.901733pt;}
.y63{bottom:483.499200pt;}
.y32{bottom:483.501733pt;}
.yb{bottom:496.299200pt;}
.y62{bottom:501.099200pt;}
.y31{bottom:501.101733pt;}
.ya{bottom:512.299200pt;}
.y61{bottom:518.699200pt;}
.y30{bottom:518.701733pt;}
.y9{bottom:528.299200pt;}
.y60{bottom:536.299200pt;}
.y2f{bottom:536.301733pt;}
.y8{bottom:544.299200pt;}
.y5f{bottom:553.899200pt;}
.y2e{bottom:553.901733pt;}
.y7{bottom:560.299200pt;}
.y5e{bottom:571.499200pt;}
.y47{bottom:571.501733pt;}
.y6{bottom:576.299200pt;}
.y5d{bottom:589.099200pt;}
.y2d{bottom:589.101733pt;}
.y5{bottom:592.299200pt;}
.y5c{bottom:606.699200pt;}
.y2c{bottom:606.701733pt;}
.y4{bottom:608.299200pt;}
.y5b{bottom:624.299200pt;}
.y2b{bottom:624.301733pt;}
.y3{bottom:641.899200pt;}
.y2a{bottom:641.901733pt;}
.y2{bottom:659.499200pt;}
.y29{bottom:659.501733pt;}
.y5a{bottom:677.099200pt;}
.y28{bottom:677.101733pt;}
.y59{bottom:694.699200pt;}
.y27{bottom:694.701733pt;}
.y58{bottom:712.299200pt;}
.y26{bottom:712.301733pt;}
.y56{bottom:737.650933pt;}
.y24{bottom:737.653600pt;}
.y57{bottom:738.123333pt;}
.y25{bottom:738.126000pt;}
.hc{height:29.645833pt;}
.h8{height:37.135417pt;}
.he{height:39.101562pt;}
.h10{height:40.848958pt;}
.ha{height:44.635417pt;}
.h7{height:45.104167pt;}
.h4{height:45.859375pt;}
.hd{height:47.748975pt;}
.h9{height:49.098958pt;}
.hf{height:49.614583pt;}
.h5{height:49.671875pt;}
.h6{height:50.445312pt;}
.hb{height:793.700000pt;}
.h2{height:793.701333pt;}
.h3{height:794.000000pt;}
.h1{height:855.333333pt;}
.h0{height:855.360000pt;}
.w3{width:623.333333pt;}
.w4{width:623.621333pt;}
.w2{width:623.622667pt;}
.w0{width:659.200000pt;}
.w1{width:659.333333pt;}
.x0{left:0.000000pt;}
.x13{left:58.226800pt;}
.x11{left:68.031467pt;}
.x19{left:96.431467pt;}
.x16{left:105.831467pt;}
.x2{left:108.777200pt;}
.x1a{left:115.298133pt;}
.x10{left:124.764800pt;}
.x17{left:143.622000pt;}
.x18{left:166.299200pt;}
.x12{left:174.134533pt;}
.x15{left:192.302133pt;}
.x5{left:219.249333pt;}
.x7{left:220.544933pt;}
.x8{left:222.543600pt;}
.xc{left:223.435600pt;}
.x6{left:224.965600pt;}
.x9{left:226.358800pt;}
.x4{left:242.843200pt;}
.xd{left:278.201200pt;}
.x1{left:306.694933pt;}
.xe{left:335.531867pt;}
.xf{left:388.958533pt;}
.x3{left:392.433333pt;}
.xa{left:407.166000pt;}
.xb{left:422.506667pt;}
.x14{left:484.530133pt;}
}




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