
    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_065543c016c6328861c99fb8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_fb59262ec297c5bcc280b2a2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941895;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_f116091b2a3a500c7350d642.woff')format("woff");}.ff3{font-family:ff3;line-height:0.913086;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_5daed7d366529334530797e5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_0bef63c4799360b59d86bf11.woff')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_e01916f487fa30b7e2b167c9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914551;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_522430b6829198c037ff05e6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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;}
.m2{transform:matrix(0.249781,-0.010458,0.010551,0.249777,0,0);-ms-transform:matrix(0.249781,-0.010458,0.010551,0.249777,0,0);-webkit-transform:matrix(0.249781,-0.010458,0.010551,0.249777,0,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);}
.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);}
.v1{vertical-align:-38.384979px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.669605px;}
.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;}
}
.ws3{word-spacing:-33.692730px;}
.ws0{word-spacing:-26.592002px;}
.ws4{word-spacing:-23.372706px;}
.ws2{word-spacing:-20.396729px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-14.952000px;}
._4{margin-left:-9.288000px;}
._7{margin-left:-6.600000px;}
._a{margin-left:-5.280000px;}
._2{margin-left:-4.083000px;}
._1{margin-left:-2.805000px;}
._5{margin-left:-1.620000px;}
._6{width:1.034820px;}
._0{width:32.016610px;}
._9{width:146.293518px;}
._8{width:1778.936560px;}
.fc10{color:rgb(255,255,255);}
.fcf{color:rgb(255,0,168);}
.fce{color:rgb(249,203,156);}
.fcd{color:rgb(61,133,198);}
.fc0{color:rgb(89,89,89);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(0,151,167);}
.fc3{color:rgb(111,168,220);}
.fc8{color:rgb(56,118,29);}
.fc5{color:rgb(67,191,248);}
.fc7{color:rgb(230,145,56);}
.fc9{color:rgb(133,32,12);}
.fc2{color:rgb(26,99,160);}
.fc6{color:rgb(204,0,0);}
.fca{color:rgb(7,55,99);}
.fcc{color:rgb(153,153,153);}
.fcb{color:transparent;}
.fsf{font-size:48.000003px;}
.fs0{font-size:51.000000px;}
.fs6{font-size:60.000000px;}
.fs8{font-size:63.115202px;}
.fs9{font-size:73.634402px;}
.fsb{font-size:77.197804px;}
.fs11{font-size:78.000005px;}
.fs10{font-size:84.000000px;}
.fse{font-size:84.378000px;}
.fsc{font-size:88.226404px;}
.fs4{font-size:90.000003px;}
.fs5{font-size:96.000006px;}
.fsd{font-size:103.634405px;}
.fs3{font-size:108.000003px;}
.fs12{font-size:109.634404px;}
.fs7{font-size:120.000001px;}
.fsa{font-size:121.634405px;}
.fs14{font-size:157.634398px;}
.fs2{font-size:167.999999px;}
.fs13{font-size:175.634416px;}
.fs1{font-size:192.000012px;}
.y0{bottom:0.000000px;}
.y1{bottom:29.588719px;}
.y34{bottom:72.503614px;}
.y27{bottom:83.106422px;}
.y2d{bottom:86.767318px;}
.y33{bottom:87.128613px;}
.y3e{bottom:90.448386px;}
.y3a{bottom:92.434061px;}
.y2c{bottom:104.767317px;}
.y26{bottom:106.731423px;}
.y1f{bottom:115.369038px;}
.y3d{bottom:119.248376px;}
.y38{bottom:119.845154px;}
.y42{bottom:126.751821px;}
.y14{bottom:129.852561px;}
.y1e{bottom:138.994039px;}
.y13{bottom:147.852561px;}
.y3c{bottom:148.048372px;}
.y37{bottom:154.945159px;}
.y17{bottom:160.995083px;}
.yb{bottom:166.733873px;}
.y6{bottom:174.328625px;}
.y3b{bottom:176.848372px;}
.y30{bottom:178.019237px;}
.y36{bottom:178.705159px;}
.ya{bottom:184.733872px;}
.y5{bottom:201.328626px;}
.y22{bottom:205.299216px;}
.y25{bottom:212.597696px;}
.y43{bottom:214.018345px;}
.y4{bottom:229.633621px;}
.y2f{bottom:261.725371px;}
.y47{bottom:274.642943px;}
.y1c{bottom:288.811434px;}
.y10{bottom:301.486175px;}
.y9{bottom:309.564339px;}
.y2e{bottom:311.076783px;}
.y46{bottom:317.204237px;}
.y3f{bottom:319.276316px;}
.yf{bottom:330.286176px;}
.y8{bottom:338.814329px;}
.y1b{bottom:352.257308px;}
.y1a{bottom:356.578687px;}
.y24{bottom:357.747045px;}
.ye{bottom:359.086177px;}
.y45{bottom:359.765525px;}
.y7{bottom:368.064330px;}
.y23{bottom:381.372045px;}
.y19{bottom:391.812316px;}
.y44{bottom:402.326813px;}
.y1d{bottom:406.819210px;}
.y18{bottom:434.879848px;}
.y16{bottom:437.688166px;}
.yd{bottom:439.380113px;}
.y15{bottom:456.622725px;}
.y12{bottom:464.519054px;}
.y3{bottom:466.322716px;}
.yc{bottom:475.380114px;}
.y11{bottom:493.319055px;}
.y2{bottom:517.937714px;}
.y2b{bottom:533.368731px;}
.y41{bottom:537.029603px;}
.y29{bottom:538.393827px;}
.y21{bottom:541.040690px;}
.y20{bottom:564.665691px;}
.y28{bottom:565.393828px;}
.y32{bottom:566.585314px;}
.y40{bottom:566.630887px;}
.y2a{bottom:566.643898px;}
.y39{bottom:570.036446px;}
.y31{bottom:580.042913px;}
.y35{bottom:581.210314px;}
.h1{height:37.179199px;}
.h12{height:37.248002px;}
.h7{height:43.740235px;}
.ha{height:43.916016px;}
.hb{height:46.134501px;}
.hc{height:53.895493px;}
.h10{height:55.259756px;}
.he{height:56.277501px;}
.h14{height:56.786137px;}
.h15{height:56.862309px;}
.h13{height:61.236328px;}
.h11{height:61.759093px;}
.hf{height:64.231235px;}
.h5{height:65.874026px;}
.h17{height:69.890629px;}
.h9{height:69.984379px;}
.h6{height:70.265629px;}
.h4{height:79.048831px;}
.h16{height:80.245103px;}
.h8{height:87.480469px;}
.hd{height:89.028307px;}
.h19{height:115.377911px;}
.h3{height:122.964843px;}
.h18{height:128.381212px;}
.h2{height:140.531259px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:10.125000px;}
.x10{left:13.059741px;}
.x2c{left:18.084614px;}
.x26{left:22.770169px;}
.xf{left:29.274600px;}
.x28{left:34.387170px;}
.x34{left:51.214280px;}
.x15{left:55.355689px;}
.x31{left:69.893047px;}
.x30{left:74.312435px;}
.x35{left:78.775991px;}
.x36{left:89.917768px;}
.x1b{left:102.713696px;}
.x37{left:105.236290px;}
.x3{left:108.500049px;}
.x1c{left:146.326082px;}
.x1d{left:174.186939px;}
.x7{left:194.783462px;}
.x2{left:211.152697px;}
.x27{left:251.611871px;}
.x2d{left:267.348712px;}
.x2f{left:274.032245px;}
.x19{left:380.940074px;}
.x33{left:397.176085px;}
.x32{left:429.986352px;}
.x22{left:470.565996px;}
.x6{left:480.161040px;}
.x1e{left:501.376224px;}
.x1f{left:522.293061px;}
.x4{left:528.485507px;}
.x5{left:564.931548px;}
.x9{left:570.004028px;}
.x8{left:578.127242px;}
.xa{left:639.722354px;}
.x11{left:651.535150px;}
.x12{left:656.788298px;}
.x23{left:662.523316px;}
.x24{left:668.968317px;}
.x21{left:710.807366px;}
.xb{left:718.902884px;}
.x3b{left:744.699830px;}
.x3d{left:757.029365px;}
.x3c{left:763.482401px;}
.x39{left:767.968852px;}
.x38{left:782.694678px;}
.x3a{left:790.411051px;}
.x14{left:856.200924px;}
.x13{left:857.679143px;}
.x25{left:888.966512px;}
.xc{left:895.528793px;}
.x20{left:898.762254px;}
.xe{left:908.879053px;}
.xd{left:939.545415px;}
.x2e{left:966.426950px;}
.x1a{left:969.456241px;}
.x2b{left:978.597175px;}
.x18{left:986.154736px;}
.x2a{left:995.004626px;}
.x17{left:1001.452592px;}
.x29{left:1017.767884px;}
.x16{left:1021.317512px;}
@media print{
.v1{vertical-align:-34.119981pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.150760pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-29.949094pt;}
.ws0{word-spacing:-23.637335pt;}
.ws4{word-spacing:-20.775739pt;}
.ws2{word-spacing:-18.130426pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-13.290667pt;}
._4{margin-left:-8.256000pt;}
._7{margin-left:-5.866667pt;}
._a{margin-left:-4.693334pt;}
._2{margin-left:-3.629333pt;}
._1{margin-left:-2.493333pt;}
._5{margin-left:-1.440000pt;}
._6{width:0.919840pt;}
._0{width:28.459209pt;}
._9{width:130.038682pt;}
._8{width:1581.276943pt;}
.fsf{font-size:42.666669pt;}
.fs0{font-size:45.333333pt;}
.fs6{font-size:53.333334pt;}
.fs8{font-size:56.102402pt;}
.fs9{font-size:65.452802pt;}
.fsb{font-size:68.620270pt;}
.fs11{font-size:69.333338pt;}
.fs10{font-size:74.666666pt;}
.fse{font-size:75.002666pt;}
.fsc{font-size:78.423471pt;}
.fs4{font-size:80.000003pt;}
.fs5{font-size:85.333339pt;}
.fsd{font-size:92.119471pt;}
.fs3{font-size:96.000003pt;}
.fs12{font-size:97.452803pt;}
.fs7{font-size:106.666667pt;}
.fsa{font-size:108.119471pt;}
.fs14{font-size:140.119464pt;}
.fs2{font-size:149.333333pt;}
.fs13{font-size:156.119481pt;}
.fs1{font-size:170.666677pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:26.301084pt;}
.y34{bottom:64.447657pt;}
.y27{bottom:73.872375pt;}
.y2d{bottom:77.126505pt;}
.y33{bottom:77.447656pt;}
.y3e{bottom:80.398565pt;}
.y3a{bottom:82.163609pt;}
.y2c{bottom:93.126504pt;}
.y26{bottom:94.872376pt;}
.y1f{bottom:102.550256pt;}
.y3d{bottom:105.998556pt;}
.y38{bottom:106.529026pt;}
.y42{bottom:112.668285pt;}
.y14{bottom:115.424498pt;}
.y1e{bottom:123.550257pt;}
.y13{bottom:131.424499pt;}
.y3c{bottom:131.598553pt;}
.y37{bottom:137.729030pt;}
.y17{bottom:143.106740pt;}
.yb{bottom:148.207887pt;}
.y6{bottom:154.958778pt;}
.y3b{bottom:157.198553pt;}
.y30{bottom:158.239322pt;}
.y36{bottom:158.849030pt;}
.ya{bottom:164.207886pt;}
.y5{bottom:178.958778pt;}
.y22{bottom:182.488192pt;}
.y25{bottom:188.975730pt;}
.y43{bottom:190.238529pt;}
.y4{bottom:204.118774pt;}
.y2f{bottom:232.644774pt;}
.y47{bottom:244.127061pt;}
.y1c{bottom:256.721275pt;}
.y10{bottom:267.987711pt;}
.y9{bottom:275.168302pt;}
.y2e{bottom:276.512696pt;}
.y46{bottom:281.959322pt;}
.y3f{bottom:283.801170pt;}
.yf{bottom:293.587712pt;}
.y8{bottom:301.168292pt;}
.y1b{bottom:313.117607pt;}
.y1a{bottom:316.958833pt;}
.y24{bottom:317.997373pt;}
.ye{bottom:319.187713pt;}
.y45{bottom:319.791578pt;}
.y7{bottom:327.168293pt;}
.y23{bottom:338.997374pt;}
.y19{bottom:348.277614pt;}
.y44{bottom:357.623834pt;}
.y1d{bottom:361.617075pt;}
.y18{bottom:386.559865pt;}
.y16{bottom:389.056147pt;}
.yd{bottom:390.560100pt;}
.y15{bottom:405.886867pt;}
.y12{bottom:412.905826pt;}
.y3{bottom:414.509081pt;}
.yc{bottom:422.560101pt;}
.y11{bottom:438.505827pt;}
.y2{bottom:460.389079pt;}
.y2b{bottom:474.105539pt;}
.y41{bottom:477.359647pt;}
.y29{bottom:478.572291pt;}
.y21{bottom:480.925058pt;}
.y20{bottom:501.925059pt;}
.y28{bottom:502.572292pt;}
.y32{bottom:503.631390pt;}
.y40{bottom:503.671900pt;}
.y2a{bottom:503.683465pt;}
.y39{bottom:506.699064pt;}
.y31{bottom:515.593701pt;}
.y35{bottom:516.631391pt;}
.h1{height:33.048177pt;}
.h12{height:33.109335pt;}
.h7{height:38.880209pt;}
.ha{height:39.036459pt;}
.hb{height:41.008445pt;}
.hc{height:47.907105pt;}
.h10{height:49.119783pt;}
.he{height:50.024445pt;}
.h14{height:50.476566pt;}
.h15{height:50.544274pt;}
.h13{height:54.432291pt;}
.h11{height:54.896971pt;}
.hf{height:57.094431pt;}
.h5{height:58.554689pt;}
.h17{height:62.125004pt;}
.h9{height:62.208337pt;}
.h6{height:62.458337pt;}
.h4{height:70.265627pt;}
.h16{height:71.328980pt;}
.h8{height:77.760417pt;}
.hd{height:79.136273pt;}
.h19{height:102.558143pt;}
.h3{height:109.302083pt;}
.h18{height:114.116633pt;}
.h2{height:124.916675pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.000000pt;}
.x10{left:11.608658pt;}
.x2c{left:16.075213pt;}
.x26{left:20.240151pt;}
.xf{left:26.021867pt;}
.x28{left:30.566373pt;}
.x34{left:45.523804pt;}
.x15{left:49.205057pt;}
.x31{left:62.127153pt;}
.x30{left:66.055498pt;}
.x35{left:70.023103pt;}
.x36{left:79.926905pt;}
.x1b{left:91.301063pt;}
.x37{left:93.543369pt;}
.x3{left:96.444488pt;}
.x1c{left:130.067628pt;}
.x1d{left:154.832835pt;}
.x7{left:173.140856pt;}
.x2{left:187.691286pt;}
.x27{left:223.654996pt;}
.x2d{left:237.643300pt;}
.x2f{left:243.584218pt;}
.x19{left:338.613399pt;}
.x33{left:353.045409pt;}
.x32{left:382.210090pt;}
.x22{left:418.280885pt;}
.x6{left:426.809814pt;}
.x1e{left:445.667754pt;}
.x1f{left:464.260499pt;}
.x4{left:469.764895pt;}
.x5{left:502.161376pt;}
.x9{left:506.670247pt;}
.x8{left:513.890881pt;}
.xa{left:568.642092pt;}
.x11{left:579.142356pt;}
.x12{left:583.811821pt;}
.x23{left:588.909614pt;}
.x24{left:594.638504pt;}
.x21{left:631.828770pt;}
.xb{left:639.024785pt;}
.x3b{left:661.955404pt;}
.x3d{left:672.914992pt;}
.x3c{left:678.651023pt;}
.x39{left:682.638980pt;}
.x38{left:695.728602pt;}
.x3a{left:702.587600pt;}
.x14{left:761.067488pt;}
.x13{left:762.381460pt;}
.x25{left:790.192455pt;}
.xc{left:796.025593pt;}
.x20{left:798.899782pt;}
.xe{left:807.892492pt;}
.xd{left:835.151480pt;}
.x2e{left:859.046177pt;}
.x1a{left:861.738881pt;}
.x2b{left:869.864155pt;}
.x18{left:876.581987pt;}
.x2a{left:884.448556pt;}
.x17{left:890.180082pt;}
.x29{left:904.682564pt;}
.x16{left:907.837788pt;}
}




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