
    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_bde0ca013e3b661e7d741235.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.970703;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_ca5f6d5dd47b4acac6e48c33.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_69d93ec2bf54b41fe792b9e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000977;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_099541db7531d46cd08e6388.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_56368a05f9fb71b831ddbd8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.020996;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000018px;}
.ls5{letter-spacing:0.000138px;}
.ls0{letter-spacing:0.084047px;}
.ls4{letter-spacing:32.999998px;}
.ls3{letter-spacing:879.504233px;}
.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;}
}
.ws16{word-spacing:-31.788300px;}
.ws0{word-spacing:-31.788282px;}
.ws1{word-spacing:-16.500000px;}
.ws5{word-spacing:-0.066000px;}
.ws15{word-spacing:-0.063360px;}
.ws14{word-spacing:-0.052800px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:3.299993px;}
.ws10{word-spacing:78.379931px;}
.wsf{word-spacing:92.043991px;}
.ws4{word-spacing:192.558639px;}
.ws6{word-spacing:224.531575px;}
.ws11{word-spacing:232.487352px;}
.wse{word-spacing:315.438522px;}
.ws8{word-spacing:383.146531px;}
.ws12{word-spacing:406.381884px;}
.wsc{word-spacing:442.153367px;}
.wsd{word-spacing:456.913134px;}
.ws3{word-spacing:549.854540px;}
.wsb{word-spacing:562.229538px;}
.ws7{word-spacing:563.228561px;}
.ws9{word-spacing:632.165365px;}
.wsa{word-spacing:650.498094px;}
._2e{margin-left:-7.488364px;}
._12{margin-left:-5.956482px;}
._0{margin-left:-4.511719px;}
._32{margin-left:-3.505881px;}
._8{margin-left:-2.492693px;}
._1{margin-left:-1.008564px;}
._2{width:1.450195px;}
._3{width:2.620089px;}
._4{width:4.119279px;}
._5{width:5.569474px;}
._21{width:7.284024px;}
._6{width:8.561949px;}
._11{width:10.020059px;}
._20{width:11.469454px;}
._1f{width:12.710977px;}
._22{width:13.862909px;}
._2c{width:15.358454px;}
._30{width:16.519672px;}
._23{width:17.889029px;}
._16{width:19.731533px;}
._31{width:20.901519px;}
._2a{width:22.608297px;}
._9{width:23.759994px;}
._18{width:24.987423px;}
._1a{width:26.308769px;}
._7{width:27.719998px;}
._13{width:31.959102px;}
._24{width:33.313962px;}
._f{width:34.944083px;}
._10{width:35.975333px;}
._26{width:39.252774px;}
._29{width:48.882834px;}
._27{width:50.059263px;}
._28{width:51.372403px;}
._1e{width:52.427684px;}
._2b{width:53.578631px;}
._25{width:54.723933px;}
._1d{width:96.457383px;}
._1c{width:100.064573px;}
._2f{width:111.884519px;}
._2d{width:117.080740px;}
._33{width:132.659686px;}
._a{width:170.773484px;}
._15{width:252.964945px;}
._17{width:261.345555px;}
._14{width:283.581885px;}
._1b{width:364.201495px;}
._d{width:439.096025px;}
._b{width:450.633135px;}
._e{width:537.032548px;}
._c{width:617.502275px;}
._19{width:879.504233px;}
.fc4{color:rgb(41,142,13);}
.fc3{color:rgb(215,58,73);}
.fc2{color:rgb(75,105,198);}
.fc1{color:rgb(28,132,229);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:52.800000px;}
.fs4{font-size:63.360000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:79.200000px;}
.fs0{font-size:92.400000px;}
.y0{bottom:0.000000px;}
.y25{bottom:83.639610px;}
.y73{bottom:147.640608px;}
.y71{bottom:148.075665px;}
.yb4{bottom:148.198950px;}
.y96{bottom:153.037140px;}
.ycf{bottom:154.641450px;}
.y72{bottom:169.225959px;}
.y70{bottom:169.443488px;}
.y10f{bottom:169.689068px;}
.y4a{bottom:170.068440px;}
.y101{bottom:174.715200px;}
.y125{bottom:176.152998px;}
.yb3{bottom:178.859310px;}
.y95{bottom:183.697500px;}
.yce{bottom:185.301798px;}
.y24{bottom:187.206815px;}
.y48{bottom:191.653797px;}
.yef{bottom:194.028150px;}
.y100{bottom:196.300560px;}
.y124{bottom:197.738348px;}
.y6f{bottom:198.086310px;}
.y109{bottom:199.007543px;}
.yb2{bottom:200.444700px;}
.ycd{bottom:206.887148px;}
.y94{bottom:206.932868px;}
.y47{bottom:213.239148px;}
.yee{bottom:215.613525px;}
.y6e{bottom:219.889200px;}
.yb1{bottom:222.030000px;}
.y23{bottom:223.738259px;}
.ycc{bottom:230.122475px;}
.y49{bottom:234.824499px;}
.y46{bottom:235.042028px;}
.yff{bottom:238.960893px;}
.y123{bottom:240.398643px;}
.y93{bottom:241.335600px;}
.yed{bottom:246.273900px;}
.y6d{bottom:248.532015px;}
.yb0{bottom:252.690408px;}
.y92{bottom:262.921050px;}
.y45{bottom:263.684850px;}
.ycb{bottom:266.653905px;}
.yec{bottom:267.859200px;}
.y22{bottom:268.338138px;}
.y6c{bottom:270.117375px;}
.yaf{bottom:274.275758px;}
.yfe{bottom:280.789800px;}
.y122{bottom:282.227550px;}
.y44{bottom:285.270188px;}
.yeb{bottom:289.444575px;}
.y21{bottom:289.923488px;}
.y6b{bottom:291.485190px;}
.y91{bottom:293.581380px;}
.yca{bottom:297.314250px;}
.yfd{bottom:302.375250px;}
.y43{bottom:306.855540px;}
.yea{bottom:311.029950px;}
.y20{bottom:311.508900px;}
.y121{bottom:312.887898px;}
.y6a{bottom:313.070547px;}
.y90{bottom:315.166740px;}
.yae{bottom:316.936087px;}
.yfc{bottom:323.960550px;}
.yc9{bottom:327.974640px;}
.ye9{bottom:332.615250px;}
.y1f{bottom:333.094298px;}
.y120{bottom:334.473248px;}
.y69{bottom:334.655898px;}
.yad{bottom:335.544993px;}
.y42{bottom:335.715893px;}
.y8f{bottom:336.752085px;}
.yfb{bottom:345.545895px;}
.yc8{bottom:349.559940px;}
.ye8{bottom:354.200655px;}
.y1e{bottom:354.679560px;}
.y68{bottom:356.458800px;}
.y41{bottom:357.518775px;}
.y11f{bottom:357.708664px;}
.y8e{bottom:358.337445px;}
.yfa{bottom:367.131150px;}
.yc7{bottom:371.145300px;}
.yac{bottom:377.373840px;}
.ye7{bottom:377.435999px;}
.y1d{bottom:377.914903px;}
.y8d{bottom:379.922790px;}
.y67{bottom:385.101615px;}
.y40{bottom:386.161599px;}
.yf9{bottom:388.716573px;}
.yab{bottom:398.959200px;}
.y8c{bottom:401.508147px;}
.y11e{bottom:406.239963px;}
.y66{bottom:406.686975px;}
.yf8{bottom:410.301923px;}
.yc6{bottom:413.805668px;}
.y3f{bottom:418.396970px;}
.ye6{bottom:422.035920px;}
.y1c{bottom:422.514896px;}
.y8b{bottom:423.093498px;}
.y65{bottom:428.272320px;}
.yc5{bottom:432.414573px;}
.yf7{bottom:433.537265px;}
.yaa{bottom:441.619568px;}
.ye5{bottom:443.621310px;}
.y1b{bottom:444.100248px;}
.y8a{bottom:444.678848px;}
.y11d{bottom:448.068900px;}
.y64{bottom:449.857677px;}
.ya9{bottom:460.228473px;}
.y3e{bottom:463.928340px;}
.ye4{bottom:465.206655px;}
.y1a{bottom:465.685598px;}
.y89{bottom:466.264178px;}
.yf6{bottom:470.068703px;}
.y63{bottom:471.443028px;}
.yc4{bottom:474.243450px;}
.y11c{bottom:478.729200px;}
.y3d{bottom:485.513730px;}
.ye3{bottom:486.792000px;}
.y62{bottom:493.245900px;}
.y19{bottom:496.345928px;}
.y88{bottom:500.667000px;}
.ya8{bottom:502.057410px;}
.y3c{bottom:507.316605px;}
.y11b{bottom:509.389590px;}
.yc3{bottom:516.903843px;}
.ye2{bottom:517.452360px;}
.y18{bottom:517.931280px;}
.y61{bottom:521.888697px;}
.y87{bottom:522.252330px;}
.ya7{bottom:523.642740px;}
.y11a{bottom:530.974950px;}
.y3b{bottom:535.959417px;}
.y17{bottom:539.299128px;}
.y60{bottom:543.474047px;}
.ye1{bottom:548.112717px;}
.y119{bottom:552.560250px;}
.y86{bottom:552.912705px;}
.y3a{bottom:557.544768px;}
.yc2{bottom:558.732705px;}
.y16{bottom:560.884478px;}
.y5f{bottom:565.059402px;}
.ya6{bottom:566.303073px;}
.y108{bottom:567.976560px;}
.ye0{bottom:569.698068px;}
.y85{bottom:574.498050px;}
.y39{bottom:579.130119px;}
.yc1{bottom:580.318095px;}
.y5e{bottom:586.644753px;}
.y5c{bottom:587.079810px;}
.y107{bottom:589.561905px;}
.ydf{bottom:591.283418px;}
.y118{bottom:595.220618px;}
.y84{bottom:596.083395px;}
.y15{bottom:604.744817px;}
.y38{bottom:607.990470px;}
.ya5{bottom:608.132010px;}
.y5d{bottom:608.230104px;}
.y5b{bottom:608.447633px;}
.y117{bottom:613.829523px;}
.y83{bottom:617.668725px;}
.yc0{bottom:622.978443px;}
.y14{bottom:626.330168px;}
.y37{bottom:629.575800px;}
.ya4{bottom:629.717347px;}
.y106{bottom:632.222238px;}
.yde{bottom:633.943743px;}
.y5a{bottom:637.090488px;}
.y82{bottom:639.254100px;}
.y13{bottom:647.915498px;}
.y116{bottom:655.658445px;}
.y36{bottom:658.436160px;}
.y59{bottom:658.675838px;}
.y81{bottom:660.839460px;}
.ya3{bottom:664.120177px;}
.ybf{bottom:664.807350px;}
.y12{bottom:669.500873px;}
.y105{bottom:674.051160px;}
.ydd{bottom:675.772680px;}
.y35{bottom:680.021550px;}
.y58{bottom:680.261189px;}
.y80{bottom:682.424805px;}
.y11{bottom:691.086218px;}
.y104{bottom:695.636505px;}
.y115{bottom:698.318793px;}
.ya2{bottom:698.523018px;}
.y57{bottom:701.846537px;}
.y7f{bottom:704.010150px;}
.ydc{bottom:706.432995px;}
.ybe{bottom:707.467688px;}
.y34{bottom:708.881895px;}
.y10{bottom:712.671578px;}
.y103{bottom:718.871855px;}
.ya1{bottom:720.108368px;}
.y56{bottom:723.431892px;}
.ybd{bottom:726.076593px;}
.y7e{bottom:727.245503px;}
.ydb{bottom:728.018340px;}
.y33{bottom:730.467240px;}
.yf{bottom:734.256923px;}
.y114{bottom:740.147700px;}
.ya0{bottom:741.693698px;}
.y55{bottom:745.017243px;}
.yda{bottom:749.603730px;}
.y102{bottom:755.403248px;}
.ye{bottom:755.842268px;}
.y32{bottom:759.327588px;}
.y7d{bottom:761.648338px;}
.y113{bottom:761.733045px;}
.y9f{bottom:763.279058px;}
.y54{bottom:766.820130px;}
.ybc{bottom:767.905500px;}
.yd{bottom:777.427628px;}
.yd9{bottom:780.264063px;}
.y31{bottom:780.912939px;}
.y9e{bottom:784.864395px;}
.y112{bottom:784.968394px;}
.y53{bottom:795.680475px;}
.ybb{bottom:798.565853px;}
.yc{bottom:799.012973px;}
.yd8{bottom:801.849413px;}
.y7c{bottom:806.248268px;}
.y9d{bottom:808.099778px;}
.y30{bottom:809.773287px;}
.yb{bottom:820.598348px;}
.y111{bottom:821.499795px;}
.yd7{bottom:823.434750px;}
.y52{bottom:824.323293px;}
.y7b{bottom:827.833650px;}
.y2e{bottom:831.358638px;}
.yba{bottom:841.226198px;}
.ya{bottom:842.183678px;}
.y9c{bottom:842.502578px;}
.y110{bottom:844.735153px;}
.yd6{bottom:845.020125px;}
.y51{bottom:846.126172px;}
.y2f{bottom:852.943989px;}
.y2d{bottom:853.161518px;}
.yb9{bottom:859.835103px;}
.y9{bottom:863.769038px;}
.yd5{bottom:866.605470px;}
.y7a{bottom:867.493995px;}
.y50{bottom:874.768992px;}
.y2c{bottom:881.804340px;}
.y9b{bottom:885.162948px;}
.y8{bottom:885.354392px;}
.y10e{bottom:887.160450px;}
.y79{bottom:889.079340px;}
.yf5{bottom:889.335093px;}
.y4f{bottom:896.354342px;}
.yb8{bottom:901.664010px;}
.y2b{bottom:903.389685px;}
.y7{bottom:906.939734px;}
.yd4{bottom:909.265808px;}
.y78{bottom:910.664697px;}
.yf4{bottom:910.920443px;}
.y4e{bottom:917.939694px;}
.y9a{bottom:926.991840px;}
.yd3{bottom:927.874713px;}
.y6{bottom:928.525088px;}
.y10d{bottom:929.820813px;}
.y2a{bottom:932.250045px;}
.y77{bottom:932.250047px;}
.y4d{bottom:939.525039px;}
.yb7{bottom:944.324358px;}
.y127{bottom:948.118293px;}
.y5{bottom:950.110442px;}
.yf3{bottom:953.580798px;}
.y29{bottom:953.835405px;}
.y76{bottom:954.052935px;}
.y99{bottom:957.652200px;}
.y4c{bottom:961.110396px;}
.y126{bottom:969.703643px;}
.yd2{bottom:969.703650px;}
.y10c{bottom:971.649705px;}
.y4{bottom:971.695796px;}
.y28{bottom:982.695747px;}
.y75{bottom:982.695750px;}
.yb6{bottom:986.153265px;}
.y10b{bottom:993.235050px;}
.y3{bottom:993.281147px;}
.yf2{bottom:995.409705px;}
.y98{bottom:1000.312548px;}
.y74{bottom:1004.281095px;}
.y4b{bottom:1004.498625px;}
.y27{bottom:1004.498627px;}
.yb5{bottom:1007.738632px;}
.yd1{bottom:1012.363988px;}
.y2{bottom:1014.866498px;}
.y10a{bottom:1016.470415px;}
.yf1{bottom:1016.995065px;}
.yd0{bottom:1030.972893px;}
.y26{bottom:1033.141449px;}
.y1{bottom:1038.101848px;}
.yf0{bottom:1040.230415px;}
.y97{bottom:1042.141449px;}
.h6{height:40.399219px;}
.h4{height:48.372070px;}
.h3{height:48.565430px;}
.h5{height:58.046484px;}
.h2{height:67.720898px;}
.h1{height:1188.000000px;}
.h0{height:1188.001800px;}
.w1{width:918.000000px;}
.w0{width:918.001350px;}
.x0{left:0.000000px;}
.x1{left:135.000000px;}
.x5{left:144.000000px;}
.x9{left:147.000000px;}
.x8{left:149.034668px;}
.x2{left:159.750000px;}
.x3{left:184.500000px;}
.xa{left:240.135615px;}
.xb{left:256.029750px;}
.xc{left:260.003289px;}
.xd{left:279.870960px;}
.x7{left:327.773205px;}
.xe{left:451.330770px;}
.x4{left:455.165730px;}
.x6{left:559.887300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000016pt;}
.ls5{letter-spacing:0.000122pt;}
.ls0{letter-spacing:0.074708pt;}
.ls4{letter-spacing:29.333332pt;}
.ls3{letter-spacing:781.781540pt;}
.ws16{word-spacing:-28.256267pt;}
.ws0{word-spacing:-28.256251pt;}
.ws1{word-spacing:-14.666667pt;}
.ws5{word-spacing:-0.058667pt;}
.ws15{word-spacing:-0.056320pt;}
.ws14{word-spacing:-0.046933pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:2.933327pt;}
.ws10{word-spacing:69.671050pt;}
.wsf{word-spacing:81.816881pt;}
.ws4{word-spacing:171.163234pt;}
.ws6{word-spacing:199.583622pt;}
.ws11{word-spacing:206.655424pt;}
.wse{word-spacing:280.389797pt;}
.ws8{word-spacing:340.574694pt;}
.ws12{word-spacing:361.228341pt;}
.wsc{word-spacing:393.025215pt;}
.wsd{word-spacing:406.145008pt;}
.ws3{word-spacing:488.759591pt;}
.wsb{word-spacing:499.759589pt;}
.ws7{word-spacing:500.647609pt;}
.ws9{word-spacing:561.924769pt;}
.wsa{word-spacing:578.220528pt;}
._2e{margin-left:-6.656324pt;}
._12{margin-left:-5.294650pt;}
._0{margin-left:-4.010417pt;}
._32{margin-left:-3.116339pt;}
._8{margin-left:-2.215727pt;}
._1{margin-left:-0.896502pt;}
._2{width:1.289063pt;}
._3{width:2.328968pt;}
._4{width:3.661581pt;}
._5{width:4.950644pt;}
._21{width:6.474688pt;}
._6{width:7.610621pt;}
._11{width:8.906719pt;}
._20{width:10.195070pt;}
._1f{width:11.298646pt;}
._22{width:12.322586pt;}
._2c{width:13.651959pt;}
._30{width:14.684153pt;}
._23{width:15.901359pt;}
._16{width:17.539140pt;}
._31{width:18.579128pt;}
._2a{width:20.096264pt;}
._9{width:21.119994pt;}
._18{width:22.211043pt;}
._1a{width:23.385572pt;}
._7{width:24.639999pt;}
._13{width:28.408090pt;}
._24{width:29.612411pt;}
._f{width:31.061407pt;}
._10{width:31.978074pt;}
._26{width:34.891355pt;}
._29{width:43.451408pt;}
._27{width:44.497122pt;}
._28{width:45.664358pt;}
._1e{width:46.602386pt;}
._2b{width:47.625450pt;}
._25{width:48.643496pt;}
._1d{width:85.739896pt;}
._1c{width:88.946287pt;}
._2f{width:99.452906pt;}
._2d{width:104.071769pt;}
._33{width:117.919721pt;}
._a{width:151.798653pt;}
._15{width:224.857729pt;}
._17{width:232.307160pt;}
._14{width:252.072787pt;}
._1b{width:323.734662pt;}
._d{width:390.307578pt;}
._b{width:400.562787pt;}
._e{width:477.362265pt;}
._c{width:548.890911pt;}
._19{width:781.781540pt;}
.fs2{font-size:46.933333pt;}
.fs4{font-size:56.320000pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:70.400000pt;}
.fs0{font-size:82.133333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:74.346320pt;}
.y73{bottom:131.236096pt;}
.y71{bottom:131.622813pt;}
.yb4{bottom:131.732400pt;}
.y96{bottom:136.033013pt;}
.ycf{bottom:137.459067pt;}
.y72{bottom:150.423075pt;}
.y70{bottom:150.616433pt;}
.y10f{bottom:150.834727pt;}
.y4a{bottom:151.171947pt;}
.y101{bottom:155.302400pt;}
.y125{bottom:156.580443pt;}
.yb3{bottom:158.986053pt;}
.y95{bottom:163.286667pt;}
.yce{bottom:164.712709pt;}
.y24{bottom:166.406057pt;}
.y48{bottom:170.358931pt;}
.yef{bottom:172.469467pt;}
.y100{bottom:174.489387pt;}
.y124{bottom:175.767421pt;}
.y6f{bottom:176.076720pt;}
.y109{bottom:176.895594pt;}
.yb2{bottom:178.173067pt;}
.ycd{bottom:183.899687pt;}
.y94{bottom:183.940327pt;}
.y47{bottom:189.545909pt;}
.yee{bottom:191.656467pt;}
.y6e{bottom:195.457067pt;}
.yb1{bottom:197.360000pt;}
.y23{bottom:198.878452pt;}
.ycc{bottom:204.553311pt;}
.y49{bottom:208.732888pt;}
.y46{bottom:208.926247pt;}
.yff{bottom:212.409683pt;}
.y123{bottom:213.687683pt;}
.y93{bottom:214.520533pt;}
.yed{bottom:218.910133pt;}
.y6d{bottom:220.917347pt;}
.yb0{bottom:224.613696pt;}
.y92{bottom:233.707600pt;}
.y45{bottom:234.386533pt;}
.ycb{bottom:237.025693pt;}
.yec{bottom:238.097067pt;}
.y22{bottom:238.522789pt;}
.y6c{bottom:240.104333pt;}
.yaf{bottom:243.800674pt;}
.yfe{bottom:249.590933pt;}
.y122{bottom:250.868933pt;}
.y44{bottom:253.573500pt;}
.yeb{bottom:257.284067pt;}
.y21{bottom:257.709767pt;}
.y6b{bottom:259.097947pt;}
.y91{bottom:260.961227pt;}
.yca{bottom:264.279333pt;}
.yfd{bottom:268.778000pt;}
.y43{bottom:272.760480pt;}
.yea{bottom:276.471067pt;}
.y20{bottom:276.896800pt;}
.y121{bottom:278.122576pt;}
.y6a{bottom:278.284931pt;}
.y90{bottom:280.148213pt;}
.yae{bottom:281.720967pt;}
.yfc{bottom:287.964933pt;}
.yc9{bottom:291.533013pt;}
.ye9{bottom:295.658000pt;}
.y1f{bottom:296.083821pt;}
.y120{bottom:297.309554pt;}
.y69{bottom:297.471909pt;}
.yad{bottom:298.262216pt;}
.y42{bottom:298.414127pt;}
.y8f{bottom:299.335187pt;}
.yfb{bottom:307.151907pt;}
.yc8{bottom:310.719947pt;}
.ye8{bottom:314.845027pt;}
.y1e{bottom:315.270720pt;}
.y68{bottom:316.852267pt;}
.y41{bottom:317.794467pt;}
.y11f{bottom:317.963257pt;}
.y8e{bottom:318.522173pt;}
.yfa{bottom:326.338800pt;}
.yc7{bottom:329.906933pt;}
.yac{bottom:335.443413pt;}
.ye7{bottom:335.498665pt;}
.y1d{bottom:335.924359pt;}
.y8d{bottom:337.709147pt;}
.y67{bottom:342.312547pt;}
.y40{bottom:343.254755pt;}
.yf9{bottom:345.525843pt;}
.yab{bottom:354.630400pt;}
.y8c{bottom:356.896131pt;}
.y11e{bottom:361.102189pt;}
.y66{bottom:361.499533pt;}
.yf8{bottom:364.712821pt;}
.yc6{bottom:367.827260pt;}
.y3f{bottom:371.908417pt;}
.ye6{bottom:375.143040pt;}
.y1c{bottom:375.568797pt;}
.y8b{bottom:376.083109pt;}
.y65{bottom:380.686507pt;}
.yc5{bottom:384.368509pt;}
.yf7{bottom:385.366457pt;}
.yaa{bottom:392.550727pt;}
.ye5{bottom:394.330053pt;}
.y1b{bottom:394.755776pt;}
.y8a{bottom:395.270087pt;}
.y11d{bottom:398.283467pt;}
.y64{bottom:399.873491pt;}
.ya9{bottom:409.091976pt;}
.y3e{bottom:412.380747pt;}
.ye4{bottom:413.517027pt;}
.y1a{bottom:413.942754pt;}
.y89{bottom:414.457047pt;}
.yf6{bottom:417.838847pt;}
.y63{bottom:419.060469pt;}
.yc4{bottom:421.549733pt;}
.y11c{bottom:425.537067pt;}
.y3d{bottom:431.567760pt;}
.ye3{bottom:432.704000pt;}
.y62{bottom:438.440800pt;}
.y19{bottom:441.196381pt;}
.y88{bottom:445.037333pt;}
.ya8{bottom:446.273253pt;}
.y3c{bottom:450.948093pt;}
.y11b{bottom:452.790747pt;}
.yc3{bottom:459.470083pt;}
.ye2{bottom:459.957653pt;}
.y18{bottom:460.383360pt;}
.y61{bottom:463.901064pt;}
.y87{bottom:464.224293pt;}
.ya7{bottom:465.460213pt;}
.y11a{bottom:471.977733pt;}
.y3b{bottom:476.408371pt;}
.y17{bottom:479.377003pt;}
.y60{bottom:483.088042pt;}
.ye1{bottom:487.211304pt;}
.y119{bottom:491.164667pt;}
.y86{bottom:491.477960pt;}
.y3a{bottom:495.595349pt;}
.yc2{bottom:496.651293pt;}
.y16{bottom:498.563981pt;}
.y5f{bottom:502.275024pt;}
.ya6{bottom:503.380509pt;}
.y108{bottom:504.868053pt;}
.ye0{bottom:506.398283pt;}
.y85{bottom:510.664933pt;}
.y39{bottom:514.782328pt;}
.yc1{bottom:515.838307pt;}
.y5e{bottom:521.462003pt;}
.y5c{bottom:521.848720pt;}
.y107{bottom:524.055027pt;}
.ydf{bottom:525.585261pt;}
.y118{bottom:529.084993pt;}
.y84{bottom:529.851907pt;}
.y15{bottom:537.550949pt;}
.y38{bottom:540.435973pt;}
.ya5{bottom:540.561787pt;}
.y5d{bottom:540.648981pt;}
.y5b{bottom:540.842340pt;}
.y117{bottom:545.626243pt;}
.y83{bottom:549.038867pt;}
.yc0{bottom:553.758616pt;}
.y14{bottom:556.737927pt;}
.y37{bottom:559.622933pt;}
.ya4{bottom:559.748753pt;}
.y106{bottom:561.975323pt;}
.yde{bottom:563.505549pt;}
.y5a{bottom:566.302656pt;}
.y82{bottom:568.225867pt;}
.y13{bottom:575.924887pt;}
.y116{bottom:582.807507pt;}
.y36{bottom:585.276587pt;}
.y59{bottom:585.489634pt;}
.y81{bottom:587.412853pt;}
.ya3{bottom:590.329047pt;}
.ybf{bottom:590.939867pt;}
.y12{bottom:595.111887pt;}
.y105{bottom:599.156587pt;}
.ydd{bottom:600.686827pt;}
.y35{bottom:604.463600pt;}
.y58{bottom:604.676613pt;}
.y80{bottom:606.599827pt;}
.y11{bottom:614.298861pt;}
.y104{bottom:618.343560pt;}
.y115{bottom:620.727816pt;}
.ya2{bottom:620.909349pt;}
.y57{bottom:623.863589pt;}
.y7f{bottom:625.786800pt;}
.ydc{bottom:627.940440pt;}
.ybe{bottom:628.860167pt;}
.y34{bottom:630.117240pt;}
.y10{bottom:633.485847pt;}
.y103{bottom:638.997204pt;}
.ya1{bottom:640.096327pt;}
.y56{bottom:643.050571pt;}
.ybd{bottom:645.401416pt;}
.y7e{bottom:646.440447pt;}
.ydb{bottom:647.127413pt;}
.y33{bottom:649.304213pt;}
.yf{bottom:652.672821pt;}
.y114{bottom:657.909067pt;}
.ya0{bottom:659.283287pt;}
.y55{bottom:662.237549pt;}
.yda{bottom:666.314427pt;}
.y102{bottom:671.469554pt;}
.ye{bottom:671.859794pt;}
.y32{bottom:674.957856pt;}
.y7d{bottom:677.020745pt;}
.y113{bottom:677.096040pt;}
.y9f{bottom:678.470274pt;}
.y54{bottom:681.617893pt;}
.ybc{bottom:682.582667pt;}
.yd{bottom:691.046781pt;}
.yd9{bottom:693.568056pt;}
.y31{bottom:694.144835pt;}
.y9e{bottom:697.657240pt;}
.y112{bottom:697.749684pt;}
.y53{bottom:707.271533pt;}
.ybb{bottom:709.836314pt;}
.yc{bottom:710.233754pt;}
.yd8{bottom:712.755034pt;}
.y7c{bottom:716.665127pt;}
.y9d{bottom:718.310913pt;}
.y30{bottom:719.798477pt;}
.yb{bottom:729.420754pt;}
.y111{bottom:730.222040pt;}
.yd7{bottom:731.942000pt;}
.y52{bottom:732.731816pt;}
.y7b{bottom:735.852133pt;}
.y2e{bottom:738.985456pt;}
.yba{bottom:747.756621pt;}
.ya{bottom:748.607714pt;}
.y9c{bottom:748.891181pt;}
.y110{bottom:750.875692pt;}
.yd6{bottom:751.129000pt;}
.y51{bottom:752.112153pt;}
.y2f{bottom:758.172435pt;}
.y2d{bottom:758.365793pt;}
.yb9{bottom:764.297869pt;}
.y9{bottom:767.794701pt;}
.yd5{bottom:770.315973pt;}
.y7a{bottom:771.105773pt;}
.y50{bottom:777.572437pt;}
.y2c{bottom:783.826080pt;}
.y9b{bottom:786.811509pt;}
.y8{bottom:786.981682pt;}
.y10e{bottom:788.587067pt;}
.y79{bottom:790.292747pt;}
.yf5{bottom:790.520083pt;}
.y4f{bottom:796.759415pt;}
.yb8{bottom:801.479120pt;}
.y2b{bottom:803.013053pt;}
.y7{bottom:806.168653pt;}
.yd4{bottom:808.236273pt;}
.y78{bottom:809.479731pt;}
.yf4{bottom:809.707061pt;}
.y4e{bottom:815.946395pt;}
.y9a{bottom:823.992747pt;}
.yd3{bottom:824.777523pt;}
.y6{bottom:825.355634pt;}
.y10d{bottom:826.507389pt;}
.y2a{bottom:828.666707pt;}
.y77{bottom:828.666709pt;}
.y4d{bottom:835.133368pt;}
.yb7{bottom:839.399429pt;}
.y127{bottom:842.771816pt;}
.y5{bottom:844.542615pt;}
.yf3{bottom:847.627376pt;}
.y29{bottom:847.853693pt;}
.y76{bottom:848.047053pt;}
.y99{bottom:851.246400pt;}
.y4c{bottom:854.320352pt;}
.y126{bottom:861.958794pt;}
.yd2{bottom:861.958800pt;}
.y10c{bottom:863.688627pt;}
.y4{bottom:863.729597pt;}
.y28{bottom:873.507331pt;}
.y75{bottom:873.507333pt;}
.yb6{bottom:876.580680pt;}
.y10b{bottom:882.875600pt;}
.y3{bottom:882.916575pt;}
.yf2{bottom:884.808627pt;}
.y98{bottom:889.166709pt;}
.y74{bottom:892.694307pt;}
.y4b{bottom:892.887667pt;}
.y27{bottom:892.887668pt;}
.yb5{bottom:895.767673pt;}
.yd1{bottom:899.879101pt;}
.y2{bottom:902.103554pt;}
.y10a{bottom:903.529257pt;}
.yf1{bottom:903.995613pt;}
.yd0{bottom:916.420349pt;}
.y26{bottom:918.347955pt;}
.y1{bottom:922.757199pt;}
.yf0{bottom:924.649257pt;}
.y97{bottom:926.347955pt;}
.h6{height:35.910417pt;}
.h4{height:42.997396pt;}
.h3{height:43.169271pt;}
.h5{height:51.596875pt;}
.h2{height:60.196354pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.001600pt;}
.w1{width:816.000000pt;}
.w0{width:816.001200pt;}
.x0{left:0.000000pt;}
.x1{left:120.000000pt;}
.x5{left:128.000000pt;}
.x9{left:130.666667pt;}
.x8{left:132.475260pt;}
.x2{left:142.000000pt;}
.x3{left:164.000000pt;}
.xa{left:213.453880pt;}
.xb{left:227.582000pt;}
.xc{left:231.114035pt;}
.xd{left:248.774187pt;}
.x7{left:291.353960pt;}
.xe{left:401.182907pt;}
.x4{left:404.591760pt;}
.x6{left:497.677600pt;}
}




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