
    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_a676328801a47bcd8911a320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_516da173b843e3c9aeded569.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.987305;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_50ce95c45417e966c2a5e626.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_308588fe68113fe2b9735252.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_bf77f262dbfbb4bf05655103.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970215;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_589671a3e96de9926ac11956.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.987305;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_896e9fbd39040250e6084871.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934082;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:ff8;src:url('chunks/assets/font_4a20b0a1e79244865eab05bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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:ff9;src:url('chunks/assets/font_c1c881fd8c9abaa6d04f8257.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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;}
.lsb{letter-spacing:-4.320000px;}
.ls13{letter-spacing:-0.726000px;}
.ls6{letter-spacing:-0.368400px;}
.ls3{letter-spacing:-0.365400px;}
.ls12{letter-spacing:-0.122400px;}
.ls1{letter-spacing:-0.036000px;}
.ls5{letter-spacing:-0.013260px;}
.ls10{letter-spacing:-0.012240px;}
.ls8{letter-spacing:-0.007920px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.036720px;}
.lse{letter-spacing:0.122400px;}
.ls7{letter-spacing:0.136200px;}
.ls2{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.184200px;}
.lsa{letter-spacing:0.232800px;}
.ls11{letter-spacing:0.280800px;}
.ls9{letter-spacing:0.360000px;}
.lsc{letter-spacing:6.192000px;}
.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;}
}
.wsa{word-spacing:-31.983840px;}
.ws0{word-spacing:-28.800000px;}
.wsb{word-spacing:-24.232200px;}
.ws8{word-spacing:-24.184200px;}
.wsc{word-spacing:-24.170400px;}
.wsd{word-spacing:-24.084720px;}
.ws6{word-spacing:-24.063540px;}
.ws9{word-spacing:-24.040080px;}
.wse{word-spacing:-24.035760px;}
.wsf{word-spacing:-23.954400px;}
.ws7{word-spacing:-23.679600px;}
.ws10{word-spacing:-23.322000px;}
.ws3{word-spacing:-21.744000px;}
.ws5{word-spacing:-21.636000px;}
.ws2{word-spacing:-21.564000px;}
.ws4{word-spacing:-21.263400px;}
.ws11{word-spacing:-14.400000px;}
.ws12{word-spacing:-0.144000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-18.306288px;}
._4{margin-left:-8.360352px;}
._7{margin-left:-6.621120px;}
._2{margin-left:-5.333328px;}
._1{margin-left:-4.159440px;}
._6{margin-left:-2.765520px;}
._3{margin-left:-1.297296px;}
._5{width:1.153152px;}
._22{width:3.243600px;}
._1b{width:5.862096px;}
._19{width:7.542000px;}
._1a{width:8.646240px;}
._a{width:11.268000px;}
._9{width:12.312000px;}
._21{width:13.329696px;}
._1e{width:14.657760px;}
._1f{width:15.767616px;}
._16{width:18.493776px;}
._10{width:25.236000px;}
._24{width:26.443440px;}
._20{width:28.131696px;}
._15{width:31.148496px;}
._c{width:46.860048px;}
._f{width:47.988000px;}
._b{width:54.252000px;}
._8{width:57.060000px;}
._1c{width:67.929120px;}
._1d{width:69.047040px;}
._23{width:70.094448px;}
._17{width:74.839680px;}
._18{width:76.026000px;}
._13{width:80.760960px;}
._14{width:82.243236px;}
._d{width:85.176000px;}
._e{width:86.417328px;}
._12{width:98.928000px;}
._11{width:138.182112px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs2{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:144.144000px;}
.fs8{font-size:162.144000px;}
.fs3{font-size:216.144000px;}
.y5{bottom:-784.335000px;}
.y0{bottom:0.000000px;}
.y13{bottom:12.636000px;}
.y12{bottom:16.452000px;}
.y4{bottom:66.528000px;}
.y35{bottom:67.212000px;}
.y3{bottom:124.704000px;}
.y24{bottom:125.388000px;}
.y23{bottom:161.250000px;}
.y34{bottom:171.000000px;}
.y33{bottom:192.630000px;}
.y30{bottom:208.875000px;}
.y32{bottom:214.230000px;}
.y2f{bottom:230.475000px;}
.y31{bottom:235.830000px;}
.y22{bottom:245.370000px;}
.y6{bottom:257.145000px;}
.y2e{bottom:264.060000px;}
.y21{bottom:281.190000px;}
.y11{bottom:291.450000px;}
.y2d{bottom:305.460000px;}
.y10{bottom:323.850000px;}
.y2c{bottom:346.860000px;}
.y20{bottom:355.890000px;}
.yf{bottom:356.295000px;}
.y18{bottom:387.150000px;}
.y2b{bottom:388.290000px;}
.ye{bottom:388.695000px;}
.yd{bottom:421.095000px;}
.y2a{bottom:429.690000px;}
.y17{bottom:430.350000px;}
.y1f{bottom:451.770000px;}
.yc{bottom:453.495000px;}
.y29{bottom:471.090000px;}
.yb{bottom:485.895000px;}
.y1e{bottom:487.770000px;}
.y28{bottom:512.535000px;}
.ya{bottom:518.325000px;}
.y1d{bottom:523.800000px;}
.y16{bottom:540.795000px;}
.y9{bottom:550.725000px;}
.y27{bottom:553.935000px;}
.y1c{bottom:559.800000px;}
.y8{bottom:583.125000px;}
.y15{bottom:584.025000px;}
.y26{bottom:595.335000px;}
.y1b{bottom:595.800000px;}
.y7{bottom:615.525000px;}
.y14{bottom:627.225000px;}
.y1a{bottom:631.800000px;}
.y2{bottom:649.800000px;}
.y19{bottom:667.830000px;}
.y1{bottom:688.680000px;}
.y25{bottom:724.965000px;}
.hd{height:54.738281px;}
.he{height:54.847758px;}
.h9{height:75.410156px;}
.h8{height:81.000000px;}
.h6{height:82.107422px;}
.h7{height:82.216898px;}
.hb{height:90.180000px;}
.h3{height:91.412930px;}
.ha{height:91.522406px;}
.h5{height:95.245664px;}
.hf{height:108.000000px;}
.h1{height:109.476562px;}
.h2{height:109.586039px;}
.hc{height:123.270609px;}
.h4{height:150.920859px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:40.031979px;}
.xe{left:68.219979px;}
.xd{left:72.179979px;}
.x2{left:168.584979px;}
.xf{left:280.949979px;}
.x10{left:329.369979px;}
.x14{left:370.439979px;}
.x3{left:382.964979px;}
.x4{left:404.384979px;}
.x18{left:480.959979px;}
.x16{left:600.149979px;}
.x1{left:620.969979px;}
.x11{left:661.244979px;}
.xa{left:683.609979px;}
.x15{left:702.539979px;}
.xb{left:766.439979px;}
.xc{left:795.419979px;}
.x7{left:833.939979px;}
.x17{left:1011.164979px;}
.x12{left:1377.149979px;}
.x13{left:1378.154979px;}
.x9{left:1390.604979px;}
.x8{left:1392.809979px;}
.x5{left:2754.974979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-3.840000pt;}
.ls13{letter-spacing:-0.645333pt;}
.ls6{letter-spacing:-0.327467pt;}
.ls3{letter-spacing:-0.324800pt;}
.ls12{letter-spacing:-0.108800pt;}
.ls1{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:-0.011787pt;}
.ls10{letter-spacing:-0.010880pt;}
.ls8{letter-spacing:-0.007040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.032640pt;}
.lse{letter-spacing:0.108800pt;}
.ls7{letter-spacing:0.121067pt;}
.ls2{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.163733pt;}
.lsa{letter-spacing:0.206933pt;}
.ls11{letter-spacing:0.249600pt;}
.ls9{letter-spacing:0.320000pt;}
.lsc{letter-spacing:5.504000pt;}
.wsa{word-spacing:-28.430080pt;}
.ws0{word-spacing:-25.600000pt;}
.wsb{word-spacing:-21.539733pt;}
.ws8{word-spacing:-21.497067pt;}
.wsc{word-spacing:-21.484800pt;}
.wsd{word-spacing:-21.408640pt;}
.ws6{word-spacing:-21.389813pt;}
.ws9{word-spacing:-21.368960pt;}
.wse{word-spacing:-21.365120pt;}
.wsf{word-spacing:-21.292800pt;}
.ws7{word-spacing:-21.048533pt;}
.ws10{word-spacing:-20.730667pt;}
.ws3{word-spacing:-19.328000pt;}
.ws5{word-spacing:-19.232000pt;}
.ws2{word-spacing:-19.168000pt;}
.ws4{word-spacing:-18.900800pt;}
.ws11{word-spacing:-12.800000pt;}
.ws12{word-spacing:-0.128000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-16.272256pt;}
._4{margin-left:-7.431424pt;}
._7{margin-left:-5.885440pt;}
._2{margin-left:-4.740736pt;}
._1{margin-left:-3.697280pt;}
._6{margin-left:-2.458240pt;}
._3{margin-left:-1.153152pt;}
._5{width:1.025024pt;}
._22{width:2.883200pt;}
._1b{width:5.210752pt;}
._19{width:6.704000pt;}
._1a{width:7.685547pt;}
._a{width:10.016000pt;}
._9{width:10.944000pt;}
._21{width:11.848619pt;}
._1e{width:13.029120pt;}
._1f{width:14.015659pt;}
._16{width:16.438912pt;}
._10{width:22.432000pt;}
._24{width:23.505280pt;}
._20{width:25.005952pt;}
._15{width:27.687552pt;}
._c{width:41.653376pt;}
._f{width:42.656000pt;}
._b{width:48.224000pt;}
._8{width:50.720000pt;}
._1c{width:60.381440pt;}
._1d{width:61.375147pt;}
._23{width:62.306176pt;}
._17{width:66.524160pt;}
._18{width:67.578667pt;}
._13{width:71.787520pt;}
._14{width:73.105099pt;}
._d{width:75.712000pt;}
._e{width:76.815403pt;}
._12{width:87.936000pt;}
._11{width:122.828544pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs2{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:128.128000pt;}
.fs8{font-size:144.128000pt;}
.fs3{font-size:192.128000pt;}
.y5{bottom:-697.186667pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:11.232000pt;}
.y12{bottom:14.624000pt;}
.y4{bottom:59.136000pt;}
.y35{bottom:59.744000pt;}
.y3{bottom:110.848000pt;}
.y24{bottom:111.456000pt;}
.y23{bottom:143.333333pt;}
.y34{bottom:152.000000pt;}
.y33{bottom:171.226667pt;}
.y30{bottom:185.666667pt;}
.y32{bottom:190.426667pt;}
.y2f{bottom:204.866667pt;}
.y31{bottom:209.626667pt;}
.y22{bottom:218.106667pt;}
.y6{bottom:228.573333pt;}
.y2e{bottom:234.720000pt;}
.y21{bottom:249.946667pt;}
.y11{bottom:259.066667pt;}
.y2d{bottom:271.520000pt;}
.y10{bottom:287.866667pt;}
.y2c{bottom:308.320000pt;}
.y20{bottom:316.346667pt;}
.yf{bottom:316.706667pt;}
.y18{bottom:344.133333pt;}
.y2b{bottom:345.146667pt;}
.ye{bottom:345.506667pt;}
.yd{bottom:374.306667pt;}
.y2a{bottom:381.946667pt;}
.y17{bottom:382.533333pt;}
.y1f{bottom:401.573333pt;}
.yc{bottom:403.106667pt;}
.y29{bottom:418.746667pt;}
.yb{bottom:431.906667pt;}
.y1e{bottom:433.573333pt;}
.y28{bottom:455.586667pt;}
.ya{bottom:460.733333pt;}
.y1d{bottom:465.600000pt;}
.y16{bottom:480.706667pt;}
.y9{bottom:489.533333pt;}
.y27{bottom:492.386667pt;}
.y1c{bottom:497.600000pt;}
.y8{bottom:518.333333pt;}
.y15{bottom:519.133333pt;}
.y26{bottom:529.186667pt;}
.y1b{bottom:529.600000pt;}
.y7{bottom:547.133333pt;}
.y14{bottom:557.533333pt;}
.y1a{bottom:561.600000pt;}
.y2{bottom:577.600000pt;}
.y19{bottom:593.626667pt;}
.y1{bottom:612.160000pt;}
.y25{bottom:644.413333pt;}
.hd{height:48.656250pt;}
.he{height:48.753562pt;}
.h9{height:67.031250pt;}
.h8{height:72.000000pt;}
.h6{height:72.984375pt;}
.h7{height:73.081688pt;}
.hb{height:80.160000pt;}
.h3{height:81.255937pt;}
.ha{height:81.353250pt;}
.h5{height:84.662813pt;}
.hf{height:96.000000pt;}
.h1{height:97.312500pt;}
.h2{height:97.409813pt;}
.hc{height:109.573875pt;}
.h4{height:134.151875pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:35.583981pt;}
.xe{left:60.639981pt;}
.xd{left:64.159981pt;}
.x2{left:149.853314pt;}
.xf{left:249.733314pt;}
.x10{left:292.773314pt;}
.x14{left:329.279981pt;}
.x3{left:340.413314pt;}
.x4{left:359.453314pt;}
.x18{left:427.519981pt;}
.x16{left:533.466648pt;}
.x1{left:551.973314pt;}
.x11{left:587.773314pt;}
.xa{left:607.653314pt;}
.x15{left:624.479981pt;}
.xb{left:681.279981pt;}
.xc{left:707.039981pt;}
.x7{left:741.279981pt;}
.x17{left:898.813314pt;}
.x12{left:1224.133314pt;}
.x13{left:1225.026648pt;}
.x9{left:1236.093314pt;}
.x8{left:1238.053314pt;}
.x5{left:2448.866648pt;}
}




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