
    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_d108e67fcccf0298d70ba60b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_949bbdcc3017c6ec60b192ae.woff')format("woff");}.ff2{font-family:ff2;line-height:0.729980;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_12aa3665ba8e366568c7432d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_f5749ae510ac005ac3eca129.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_1459c5e5e057c4eda0dbd249.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_b2d17df7f91406c913fe5127.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920410;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_a65579cdeb512eaa36b81d12.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_44a4140bd6b76fcade5e2e53.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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);}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.034560px;}
.ls5{letter-spacing:-0.018000px;}
.lsb{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.034560px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws4{word-spacing:-19.457280px;}
.ws9{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.860000px;}
.ws0{word-spacing:-12.186000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1c{margin-left:-12.960000px;}
._1b{margin-left:-5.034240px;}
._b{margin-left:-3.994320px;}
._4{margin-left:-2.464080px;}
._0{margin-left:-1.254240px;}
._3{width:1.020240px;}
._5{width:2.537040px;}
._7{width:3.917040px;}
._8{width:5.387040px;}
._f{width:6.605280px;}
._a{width:7.709040px;}
._d{width:8.835840px;}
._6{width:10.159200px;}
._c{width:11.589120px;}
._10{width:12.711840px;}
._13{width:13.881360px;}
._11{width:14.970240px;}
._19{width:18.149760px;}
._14{width:19.275840px;}
._17{width:20.534400px;}
._18{width:21.859200px;}
._16{width:24.023040px;}
._15{width:25.038720px;}
._1a{width:26.470320px;}
._9{width:27.775920px;}
._e{width:168.788640px;}
._12{width:199.416000px;}
._2{width:386.940000px;}
._1{width:991.768800px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.920000px;}
.y4{bottom:58.500000px;}
.y3f{bottom:115.020000px;}
.y3e{bottom:133.920000px;}
.y3d{bottom:153.030000px;}
.y3c{bottom:171.930000px;}
.y3b{bottom:191.010000px;}
.y3a{bottom:209.910000px;}
.y39{bottom:228.810000px;}
.y38{bottom:247.890000px;}
.y37{bottom:265.710000px;}
.y6f{bottom:266.790000px;}
.y36{bottom:279.390000px;}
.y6e{bottom:285.870000px;}
.y35{bottom:293.970000px;}
.y6d{bottom:304.770000px;}
.y34{bottom:311.250000px;}
.y6c{bottom:323.670000px;}
.y33{bottom:328.530000px;}
.y6b{bottom:342.750000px;}
.y32{bottom:345.810000px;}
.y6a{bottom:361.650000px;}
.y31{bottom:362.910000px;}
.y30{bottom:380.190000px;}
.y69{bottom:380.730000px;}
.y2f{bottom:397.515000px;}
.y68{bottom:399.675000px;}
.y2e{bottom:414.795000px;}
.y67{bottom:418.755000px;}
.y2d{bottom:432.075000px;}
.y66{bottom:437.655000px;}
.y2c{bottom:449.355000px;}
.y65{bottom:456.555000px;}
.y2b{bottom:466.455000px;}
.y64{bottom:475.635000px;}
.y2a{bottom:483.735000px;}
.y63{bottom:494.535000px;}
.y29{bottom:501.015000px;}
.y62{bottom:513.615000px;}
.y28{bottom:518.295000px;}
.y61{bottom:532.515000px;}
.y27{bottom:535.575000px;}
.y60{bottom:551.415000px;}
.y26{bottom:552.855000px;}
.y25{bottom:569.955000px;}
.y5f{bottom:570.495000px;}
.y24{bottom:587.235000px;}
.y5e{bottom:589.395000px;}
.y23{bottom:604.515000px;}
.y5d{bottom:608.475000px;}
.y22{bottom:621.795000px;}
.y5c{bottom:627.375000px;}
.y21{bottom:639.075000px;}
.y5b{bottom:646.305000px;}
.y20{bottom:656.205000px;}
.y5a{bottom:665.385000px;}
.y1f{bottom:673.485000px;}
.y59{bottom:684.285000px;}
.y1e{bottom:690.765000px;}
.y58{bottom:703.365000px;}
.y1d{bottom:708.045000px;}
.y57{bottom:722.265000px;}
.y1c{bottom:725.325000px;}
.y56{bottom:741.165000px;}
.y1b{bottom:742.605000px;}
.y1a{bottom:759.705000px;}
.y55{bottom:760.245000px;}
.y19{bottom:776.985000px;}
.y54{bottom:779.145000px;}
.y18{bottom:794.265000px;}
.y53{bottom:798.225000px;}
.y17{bottom:811.545000px;}
.y52{bottom:817.125000px;}
.y16{bottom:828.825000px;}
.y51{bottom:836.025000px;}
.y15{bottom:846.105000px;}
.y50{bottom:855.105000px;}
.y14{bottom:863.205000px;}
.y4f{bottom:874.005000px;}
.y13{bottom:880.485000px;}
.y4e{bottom:893.130000px;}
.y12{bottom:903.030000px;}
.y4d{bottom:912.030000px;}
.y11{bottom:915.450000px;}
.y4c{bottom:931.110000px;}
.y10{bottom:934.530000px;}
.y4b{bottom:950.010000px;}
.yf{bottom:953.430000px;}
.y4a{bottom:968.910000px;}
.ye{bottom:972.330000px;}
.y49{bottom:987.990000px;}
.yd{bottom:991.770000px;}
.y48{bottom:1006.890000px;}
.yc{bottom:1014.270000px;}
.y47{bottom:1025.970000px;}
.yb{bottom:1036.770000px;}
.y46{bottom:1044.870000px;}
.ya{bottom:1057.470000px;}
.y45{bottom:1063.770000px;}
.y9{bottom:1072.050000px;}
.y44{bottom:1082.850000px;}
.y8{bottom:1089.330000px;}
.y43{bottom:1101.750000px;}
.y7{bottom:1106.610000px;}
.y42{bottom:1120.830000px;}
.y6{bottom:1123.710000px;}
.y41{bottom:1139.730000px;}
.y5{bottom:1140.990000px;}
.y3{bottom:1168.560000px;}
.y40{bottom:1168.740000px;}
.y1{bottom:1185.300000px;}
.h2{height:23.760000px;}
.hd{height:27.147656px;}
.h11{height:33.683203px;}
.h7{height:34.036523px;}
.h5{height:36.768867px;}
.h10{height:41.726953px;}
.hf{height:41.843672px;}
.h6{height:42.164648px;}
.h3{height:43.400391px;}
.he{height:45.549492px;}
.hb{height:46.251562px;}
.hc{height:46.736719px;}
.ha{height:50.488594px;}
.h4{height:51.292969px;}
.h9{height:54.295313px;}
.h8{height:54.864844px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:62.100000px;}
.w3{width:618.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x2{left:17.280000px;}
.x10{left:106.955987px;}
.x1{left:108.036000px;}
.x8{left:111.635987px;}
.x6{left:142.235987px;}
.x12{left:150.509987px;}
.x11{left:162.029987px;}
.x3{left:170.130000px;}
.xc{left:184.169987px;}
.xd{left:230.789987px;}
.x7{left:235.469987px;}
.xb{left:311.654987px;}
.x9{left:386.174987px;}
.xe{left:418.574987px;}
.xf{left:422.714987px;}
.xa{left:447.194987px;}
.x5{left:448.274987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.030720pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ws8{word-spacing:-58.880000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws9{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1c{margin-left:-11.520000pt;}
._1b{margin-left:-4.474880pt;}
._b{margin-left:-3.550507pt;}
._4{margin-left:-2.190293pt;}
._0{margin-left:-1.114880pt;}
._3{width:0.906880pt;}
._5{width:2.255147pt;}
._7{width:3.481813pt;}
._8{width:4.788480pt;}
._f{width:5.871360pt;}
._a{width:6.852480pt;}
._d{width:7.854080pt;}
._6{width:9.030400pt;}
._c{width:10.301440pt;}
._10{width:11.299413pt;}
._13{width:12.338987pt;}
._11{width:13.306880pt;}
._19{width:16.133120pt;}
._14{width:17.134080pt;}
._17{width:18.252800pt;}
._18{width:19.430400pt;}
._16{width:21.353813pt;}
._15{width:22.256640pt;}
._1a{width:23.529173pt;}
._9{width:24.689707pt;}
._e{width:150.034347pt;}
._12{width:177.258667pt;}
._2{width:343.946667pt;}
._1{width:881.572267pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:7.040000pt;}
.y4{bottom:52.000000pt;}
.y3f{bottom:102.240000pt;}
.y3e{bottom:119.040000pt;}
.y3d{bottom:136.026667pt;}
.y3c{bottom:152.826667pt;}
.y3b{bottom:169.786667pt;}
.y3a{bottom:186.586667pt;}
.y39{bottom:203.386667pt;}
.y38{bottom:220.346667pt;}
.y37{bottom:236.186667pt;}
.y6f{bottom:237.146667pt;}
.y36{bottom:248.346667pt;}
.y6e{bottom:254.106667pt;}
.y35{bottom:261.306667pt;}
.y6d{bottom:270.906667pt;}
.y34{bottom:276.666667pt;}
.y6c{bottom:287.706667pt;}
.y33{bottom:292.026667pt;}
.y6b{bottom:304.666667pt;}
.y32{bottom:307.386667pt;}
.y6a{bottom:321.466667pt;}
.y31{bottom:322.586667pt;}
.y30{bottom:337.946667pt;}
.y69{bottom:338.426667pt;}
.y2f{bottom:353.346667pt;}
.y68{bottom:355.266667pt;}
.y2e{bottom:368.706667pt;}
.y67{bottom:372.226667pt;}
.y2d{bottom:384.066667pt;}
.y66{bottom:389.026667pt;}
.y2c{bottom:399.426667pt;}
.y65{bottom:405.826667pt;}
.y2b{bottom:414.626667pt;}
.y64{bottom:422.786667pt;}
.y2a{bottom:429.986667pt;}
.y63{bottom:439.586667pt;}
.y29{bottom:445.346667pt;}
.y62{bottom:456.546667pt;}
.y28{bottom:460.706667pt;}
.y61{bottom:473.346667pt;}
.y27{bottom:476.066667pt;}
.y60{bottom:490.146667pt;}
.y26{bottom:491.426667pt;}
.y25{bottom:506.626667pt;}
.y5f{bottom:507.106667pt;}
.y24{bottom:521.986667pt;}
.y5e{bottom:523.906667pt;}
.y23{bottom:537.346667pt;}
.y5d{bottom:540.866667pt;}
.y22{bottom:552.706667pt;}
.y5c{bottom:557.666667pt;}
.y21{bottom:568.066667pt;}
.y5b{bottom:574.493333pt;}
.y20{bottom:583.293333pt;}
.y5a{bottom:591.453333pt;}
.y1f{bottom:598.653333pt;}
.y59{bottom:608.253333pt;}
.y1e{bottom:614.013333pt;}
.y58{bottom:625.213333pt;}
.y1d{bottom:629.373333pt;}
.y57{bottom:642.013333pt;}
.y1c{bottom:644.733333pt;}
.y56{bottom:658.813333pt;}
.y1b{bottom:660.093333pt;}
.y1a{bottom:675.293333pt;}
.y55{bottom:675.773333pt;}
.y19{bottom:690.653333pt;}
.y54{bottom:692.573333pt;}
.y18{bottom:706.013333pt;}
.y53{bottom:709.533333pt;}
.y17{bottom:721.373333pt;}
.y52{bottom:726.333333pt;}
.y16{bottom:736.733333pt;}
.y51{bottom:743.133333pt;}
.y15{bottom:752.093333pt;}
.y50{bottom:760.093333pt;}
.y14{bottom:767.293333pt;}
.y4f{bottom:776.893333pt;}
.y13{bottom:782.653333pt;}
.y4e{bottom:793.893333pt;}
.y12{bottom:802.693333pt;}
.y4d{bottom:810.693333pt;}
.y11{bottom:813.733333pt;}
.y4c{bottom:827.653333pt;}
.y10{bottom:830.693333pt;}
.y4b{bottom:844.453333pt;}
.yf{bottom:847.493333pt;}
.y4a{bottom:861.253333pt;}
.ye{bottom:864.293333pt;}
.y49{bottom:878.213333pt;}
.yd{bottom:881.573333pt;}
.y48{bottom:895.013333pt;}
.yc{bottom:901.573333pt;}
.y47{bottom:911.973333pt;}
.yb{bottom:921.573333pt;}
.y46{bottom:928.773333pt;}
.ya{bottom:939.973333pt;}
.y45{bottom:945.573333pt;}
.y9{bottom:952.933333pt;}
.y44{bottom:962.533333pt;}
.y8{bottom:968.293333pt;}
.y43{bottom:979.333333pt;}
.y7{bottom:983.653333pt;}
.y42{bottom:996.293333pt;}
.y6{bottom:998.853333pt;}
.y41{bottom:1013.093333pt;}
.y5{bottom:1014.213333pt;}
.y3{bottom:1038.720000pt;}
.y40{bottom:1038.880000pt;}
.y1{bottom:1053.600000pt;}
.h2{height:21.120000pt;}
.hd{height:24.131250pt;}
.h11{height:29.940625pt;}
.h7{height:30.254687pt;}
.h5{height:32.683437pt;}
.h10{height:37.090625pt;}
.hf{height:37.194375pt;}
.h6{height:37.479688pt;}
.h3{height:38.578125pt;}
.he{height:40.488438pt;}
.hb{height:41.112500pt;}
.hc{height:41.543750pt;}
.ha{height:44.878750pt;}
.h4{height:45.593750pt;}
.h9{height:48.262500pt;}
.h8{height:48.768750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:55.200000pt;}
.w3{width:549.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x2{left:15.360000pt;}
.x10{left:95.071988pt;}
.x1{left:96.032000pt;}
.x8{left:99.231988pt;}
.x6{left:126.431988pt;}
.x12{left:133.786655pt;}
.x11{left:144.026655pt;}
.x3{left:151.226667pt;}
.xc{left:163.706655pt;}
.xd{left:205.146655pt;}
.x7{left:209.306655pt;}
.xb{left:277.026655pt;}
.x9{left:343.266655pt;}
.xe{left:372.066655pt;}
.xf{left:375.746655pt;}
.xa{left:397.506655pt;}
.x5{left:398.466655pt;}
}




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