
    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_5f524ae214063c6e88064377.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.041992;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_7c718fe721f2a9818cd37902.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958556;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_163797eef1263abaf2d10f2d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976118;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_1314e5645c91943283e42488.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_67165a4548ec1474b632b85f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730469;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;}
.ls0{letter-spacing:22.236327px;}
.ls1{letter-spacing:75.383789px;}
.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:-0.171000px;}
.ws2{word-spacing:-0.054000px;}
.ws15{word-spacing:0.000000px;}
.ws14{word-spacing:11.905318px;}
.ws36{word-spacing:13.182312px;}
.ws33{word-spacing:13.314125px;}
.ws3e{word-spacing:13.314143px;}
.ws27{word-spacing:13.314145px;}
.ws7{word-spacing:13.314150px;}
.wsd{word-spacing:13.314153px;}
.ws2d{word-spacing:13.314154px;}
.ws3b{word-spacing:13.314158px;}
.wsb{word-spacing:13.314160px;}
.ws1{word-spacing:13.314162px;}
.ws0{word-spacing:13.314164px;}
.ws8{word-spacing:13.314165px;}
.ws30{word-spacing:13.314166px;}
.ws29{word-spacing:13.314168px;}
.ws28{word-spacing:13.314170px;}
.ws2c{word-spacing:13.314175px;}
.ws37{word-spacing:13.314195px;}
.ws4c{word-spacing:14.774314px;}
.ws4b{word-spacing:14.774445px;}
.ws4d{word-spacing:14.774822px;}
.ws43{word-spacing:14.774830px;}
.ws4a{word-spacing:14.775663px;}
.ws4e{word-spacing:14.782094px;}
.ws26{word-spacing:17.814130px;}
.ws3{word-spacing:17.814136px;}
.ws31{word-spacing:17.814141px;}
.ws3d{word-spacing:17.814155px;}
.ws17{word-spacing:17.814158px;}
.ws3c{word-spacing:17.814160px;}
.ws2a{word-spacing:17.814161px;}
.ws6{word-spacing:17.814164px;}
.ws2b{word-spacing:17.814165px;}
.ws2f{word-spacing:17.814167px;}
.ws13{word-spacing:17.814170px;}
.ws34{word-spacing:17.814171px;}
.ws18{word-spacing:17.814172px;}
.ws35{word-spacing:17.814178px;}
.ws25{word-spacing:17.814190px;}
.ws46{word-spacing:19.271637px;}
.ws3f{word-spacing:19.274238px;}
.ws48{word-spacing:19.274302px;}
.ws47{word-spacing:19.275298px;}
.ws3a{word-spacing:22.182300px;}
.ws1f{word-spacing:22.314130px;}
.ws11{word-spacing:22.314144px;}
.ws2e{word-spacing:22.314150px;}
.ws23{word-spacing:22.314155px;}
.wsc{word-spacing:22.314162px;}
.ws5{word-spacing:22.314164px;}
.ws24{word-spacing:22.314165px;}
.ws38{word-spacing:22.314170px;}
.ws19{word-spacing:22.314173px;}
.ws41{word-spacing:23.774309px;}
.ws44{word-spacing:23.774434px;}
.ws49{word-spacing:23.774444px;}
.ws39{word-spacing:26.682337px;}
.ws21{word-spacing:26.814136px;}
.ws10{word-spacing:26.814139px;}
.wsf{word-spacing:26.814145px;}
.ws32{word-spacing:26.814150px;}
.ws4f{word-spacing:26.814161px;}
.ws12{word-spacing:26.814163px;}
.ws1a{word-spacing:26.814164px;}
.ws1b{word-spacing:26.814181px;}
.ws45{word-spacing:28.274343px;}
.wse{word-spacing:31.314162px;}
.ws20{word-spacing:31.314168px;}
.ws1e{word-spacing:31.314170px;}
.ws40{word-spacing:32.774830px;}
.ws42{word-spacing:32.775598px;}
.ws1d{word-spacing:35.814154px;}
.ws4{word-spacing:35.814155px;}
.ws1c{word-spacing:35.814162px;}
.ws22{word-spacing:35.814173px;}
.ws9{word-spacing:40.314150px;}
.wsa{word-spacing:44.814142px;}
._d{margin-left:-8.266119px;}
._12{margin-left:-5.457986px;}
._9{margin-left:-3.928712px;}
._7{margin-left:-2.610352px;}
._0{margin-left:-1.265623px;}
._3{width:1.318366px;}
._e{width:13.289015px;}
._c{width:16.998042px;}
._5{width:18.263661px;}
._16{width:19.323971px;}
._17{width:20.334861px;}
._1{width:21.788065px;}
._2{width:22.948289px;}
._13{width:24.202820px;}
._a{width:26.868178px;}
._15{width:28.246474px;}
._4{width:30.972691px;}
._10{width:32.159111px;}
._6{width:35.367218px;}
._f{width:36.580080px;}
._14{width:37.982719px;}
._8{width:44.868164px;}
._b{width:53.736412px;}
._11{width:93.102539px;}
.fc5{color:rgb(129,201,76);}
.fc4{color:rgb(233,44,48);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:36.000000px;}
.fs2{font-size:48.000002px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.999999px;}
.fs3{font-size:171.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.374997px;}
.ya{bottom:3.374999px;}
.y3{bottom:3.375000px;}
.y29{bottom:3.375012px;}
.y52{bottom:5.805167px;}
.y5e{bottom:5.805363px;}
.y84{bottom:6.450446px;}
.yd{bottom:19.577637px;}
.y9{bottom:19.577639px;}
.y3e{bottom:19.577640px;}
.y8a{bottom:19.577643px;}
.y7f{bottom:22.653078px;}
.y4d{bottom:23.805183px;}
.y51{bottom:24.438167px;}
.y5d{bottom:24.438348px;}
.y69{bottom:24.438351px;}
.y73{bottom:24.438360px;}
.y83{bottom:27.153806px;}
.y33{bottom:35.780262px;}
.y8{bottom:35.780279px;}
.y3d{bottom:35.780280px;}
.y4c{bottom:42.438363px;}
.y50{bottom:43.071167px;}
.y5c{bottom:43.071168px;}
.y26{bottom:43.092683px;}
.y7e{bottom:43.356438px;}
.y82{bottom:44.781738px;}
.y32{bottom:51.982902px;}
.y7{bottom:51.982904px;}
.y3c{bottom:51.982905px;}
.y89{bottom:51.982910px;}
.y8f{bottom:57.947756px;}
.y53{bottom:57.948116px;}
.y24{bottom:57.948206px;}
.y68{bottom:59.273811px;}
.y4b{bottom:61.071543px;}
.y72{bottom:61.704345px;}
.y5b{bottom:61.704348px;}
.y7d{bottom:64.059813px;}
.y31{bottom:68.185542px;}
.y3b{bottom:68.185545px;}
.y6{bottom:68.185547px;}
.y67{bottom:77.906991px;}
.y4a{bottom:79.704543px;}
.y5a{bottom:80.337525px;}
.y30{bottom:84.388182px;}
.y88{bottom:84.388184px;}
.y3a{bottom:84.388185px;}
.y7c{bottom:84.763173px;}
.y18{bottom:87.713745px;}
.y4f{bottom:92.816897px;}
.y66{bottom:96.540171px;}
.y81{bottom:96.784425px;}
.y49{bottom:98.337528px;}
.y71{bottom:98.970345px;}
.y59{bottom:98.970521px;}
.y2f{bottom:100.590822px;}
.y39{bottom:100.590825px;}
.y7b{bottom:105.466548px;}
.y65{bottom:112.742796px;}
.y2e{bottom:116.793447px;}
.y38{bottom:116.793465px;}
.y48{bottom:116.970528px;}
.y58{bottom:117.603516px;}
.y87{bottom:124.369263px;}
.y64{bottom:128.945436px;}
.y2d{bottom:132.996087px;}
.y37{bottom:132.996090px;}
.y47{bottom:135.603708px;}
.y57{bottom:136.236329px;}
.y70{bottom:136.236705px;}
.y86{bottom:145.072998px;}
.y63{bottom:145.148076px;}
.y7a{bottom:146.873283px;}
.y2c{bottom:149.198727px;}
.y36{bottom:149.198730px;}
.y4e{bottom:149.840703px;}
.y46{bottom:154.236708px;}
.y56{bottom:154.869507px;}
.y6f{bottom:154.869870px;}
.y80{bottom:160.464108px;}
.y2b{bottom:165.401367px;}
.y40{bottom:167.168325px;}
.y79{bottom:167.576658px;}
.y45{bottom:172.869693px;}
.y55{bottom:173.502686px;}
.y6e{bottom:173.502690px;}
.y62{bottom:177.553341px;}
.y75{bottom:177.791753px;}
.y78{bottom:188.280018px;}
.y44{bottom:191.502693px;}
.y61{bottom:193.755981px;}
.y77{bottom:208.983393px;}
.y6d{bottom:210.768675px;}
.y43{bottom:228.135693px;}
.y6c{bottom:229.401855px;}
.y76{bottom:229.686768px;}
.y42{bottom:246.768873px;}
.y41{bottom:265.401858px;}
.y74{bottom:422.856438px;}
.y6b{bottom:440.184078px;}
.y3f{bottom:446.522823px;}
.y35{bottom:463.850463px;}
.y23{bottom:477.180453px;}
.y22{bottom:495.813453px;}
.y21{bottom:514.446438px;}
.y20{bottom:533.079483px;}
.y1f{bottom:551.712528px;}
.y1e{bottom:570.345618px;}
.y1d{bottom:588.978603px;}
.y1c{bottom:607.611603px;}
.y1b{bottom:626.244648px;}
.y34{bottom:627.001833px;}
.y1a{bottom:644.877678px;}
.y2a{bottom:648.027471px;}
.y19{bottom:681.510723px;}
.y6a{bottom:683.538573px;}
.y60{bottom:700.866207px;}
.y17{bottom:783.177108px;}
.y16{bottom:800.504751px;}
.y15{bottom:816.707388px;}
.y8e{bottom:818.219238px;}
.y28{bottom:831.079461px;}
.y13{bottom:834.035016px;}
.y8d{bottom:836.852418px;}
.y12{bottom:850.237653px;}
.y10{bottom:851.362656px;}
.y8c{bottom:855.485598px;}
.y27{bottom:864.609738px;}
.y11{bottom:867.565293px;}
.y25{bottom:881.937378px;}
.yf{bottom:884.892933px;}
.yc{bottom:886.017936px;}
.y8b{bottom:889.118403px;}
.ye{bottom:902.220573px;}
.y5f{bottom:908.574828px;}
.yb{bottom:919.548198px;}
.y54{bottom:925.902465px;}
.y5{bottom:936.875839px;}
.y85{bottom:952.906860px;}
.y4{bottom:1001.686386px;}
.y2{bottom:1019.014023px;}
.y1{bottom:1082.530083px;}
.h2{height:16.202637px;}
.h4{height:32.405274px;}
.h7{height:34.593751px;}
.h11{height:41.107533px;}
.h1{height:43.875000px;}
.h14{height:48.749999px;}
.hd{height:55.898803px;}
.h15{height:57.609375px;}
.h3{height:81.013183px;}
.h6{height:84.674925px;}
.he{height:84.675105px;}
.h16{height:84.675300px;}
.h9{height:138.937500px;}
.h17{height:159.325928px;}
.hb{height:162.026367px;}
.ha{height:178.229004px;}
.hf{height:186.330323px;}
.h10{height:206.583618px;}
.h8{height:230.295318px;}
.h12{height:242.229492px;}
.h13{height:243.939697px;}
.hc{height:278.229495px;}
.h5{height:694.338360px;}
.h0{height:1263.000000px;}
.w2{width:125.999988px;}
.w6{width:137.249978px;}
.w4{width:147.375000px;}
.w8{width:211.499977px;}
.w5{width:285.750045px;}
.w9{width:360.000045px;}
.w7{width:434.250045px;}
.w3{width:572.625000px;}
.w1{width:699.750045px;}
.wa{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x7{left:5.625000px;}
.x6{left:6.750000px;}
.x9{left:27.000000px;}
.xa{left:54.000000px;}
.x1{left:106.350003px;}
.x2{left:115.350003px;}
.x3{left:242.475014px;}
.xc{left:303.750000px;}
.x4{left:380.849985px;}
.x8{left:455.099985px;}
.x5{left:529.349985px;}
.xb{left:780.637192px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:19.765624pt;}
.ls1{letter-spacing:67.007812pt;}
.ws16{word-spacing:-0.152000pt;}
.ws2{word-spacing:-0.048000pt;}
.ws15{word-spacing:0.000000pt;}
.ws14{word-spacing:10.582505pt;}
.ws36{word-spacing:11.717610pt;}
.ws33{word-spacing:11.834777pt;}
.ws3e{word-spacing:11.834793pt;}
.ws27{word-spacing:11.834795pt;}
.ws7{word-spacing:11.834800pt;}
.wsd{word-spacing:11.834803pt;}
.ws2d{word-spacing:11.834804pt;}
.ws3b{word-spacing:11.834807pt;}
.wsb{word-spacing:11.834809pt;}
.ws1{word-spacing:11.834811pt;}
.ws0{word-spacing:11.834812pt;}
.ws8{word-spacing:11.834813pt;}
.ws30{word-spacing:11.834815pt;}
.ws29{word-spacing:11.834816pt;}
.ws28{word-spacing:11.834818pt;}
.ws2c{word-spacing:11.834823pt;}
.ws37{word-spacing:11.834840pt;}
.ws4c{word-spacing:13.132724pt;}
.ws4b{word-spacing:13.132840pt;}
.ws4d{word-spacing:13.133175pt;}
.ws43{word-spacing:13.133183pt;}
.ws4a{word-spacing:13.133923pt;}
.ws4e{word-spacing:13.139639pt;}
.ws26{word-spacing:15.834783pt;}
.ws3{word-spacing:15.834788pt;}
.ws31{word-spacing:15.834792pt;}
.ws3d{word-spacing:15.834805pt;}
.ws17{word-spacing:15.834807pt;}
.ws3c{word-spacing:15.834809pt;}
.ws2a{word-spacing:15.834810pt;}
.ws6{word-spacing:15.834812pt;}
.ws2b{word-spacing:15.834813pt;}
.ws2f{word-spacing:15.834815pt;}
.ws13{word-spacing:15.834817pt;}
.ws34{word-spacing:15.834818pt;}
.ws18{word-spacing:15.834820pt;}
.ws35{word-spacing:15.834825pt;}
.ws25{word-spacing:15.834835pt;}
.ws46{word-spacing:17.130344pt;}
.ws3f{word-spacing:17.132656pt;}
.ws48{word-spacing:17.132713pt;}
.ws47{word-spacing:17.133598pt;}
.ws3a{word-spacing:19.717600pt;}
.ws1f{word-spacing:19.834783pt;}
.ws11{word-spacing:19.834795pt;}
.ws2e{word-spacing:19.834800pt;}
.ws23{word-spacing:19.834805pt;}
.wsc{word-spacing:19.834811pt;}
.ws5{word-spacing:19.834812pt;}
.ws24{word-spacing:19.834814pt;}
.ws38{word-spacing:19.834818pt;}
.ws19{word-spacing:19.834820pt;}
.ws41{word-spacing:21.132719pt;}
.ws44{word-spacing:21.132830pt;}
.ws49{word-spacing:21.132839pt;}
.ws39{word-spacing:23.717633pt;}
.ws21{word-spacing:23.834787pt;}
.ws10{word-spacing:23.834790pt;}
.wsf{word-spacing:23.834795pt;}
.ws32{word-spacing:23.834800pt;}
.ws4f{word-spacing:23.834810pt;}
.ws12{word-spacing:23.834811pt;}
.ws1a{word-spacing:23.834813pt;}
.ws1b{word-spacing:23.834828pt;}
.ws45{word-spacing:25.132750pt;}
.wse{word-spacing:27.834811pt;}
.ws20{word-spacing:27.834816pt;}
.ws1e{word-spacing:27.834817pt;}
.ws40{word-spacing:29.133183pt;}
.ws42{word-spacing:29.133865pt;}
.ws1d{word-spacing:31.834803pt;}
.ws4{word-spacing:31.834805pt;}
.ws1c{word-spacing:31.834811pt;}
.ws22{word-spacing:31.834820pt;}
.ws9{word-spacing:35.834800pt;}
.wsa{word-spacing:39.834793pt;}
._d{margin-left:-7.347661pt;}
._12{margin-left:-4.851544pt;}
._9{margin-left:-3.492189pt;}
._7{margin-left:-2.320313pt;}
._0{margin-left:-1.124998pt;}
._3{width:1.171881pt;}
._e{width:11.812458pt;}
._c{width:15.109370pt;}
._5{width:16.234366pt;}
._16{width:17.176863pt;}
._17{width:18.075432pt;}
._1{width:19.367169pt;}
._2{width:20.398479pt;}
._13{width:21.513618pt;}
._a{width:23.882825pt;}
._15{width:25.107977pt;}
._4{width:27.531281pt;}
._10{width:28.585876pt;}
._6{width:31.437527pt;}
._f{width:32.515627pt;}
._14{width:33.762417pt;}
._8{width:39.882813pt;}
._b{width:47.765699pt;}
._11{width:82.757812pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:42.666668pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333332pt;}
.fs3{font-size:152.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.999998pt;}
.ya{bottom:2.999999pt;}
.y3{bottom:3.000000pt;}
.y29{bottom:3.000011pt;}
.y52{bottom:5.160148pt;}
.y5e{bottom:5.160323pt;}
.y84{bottom:5.733730pt;}
.yd{bottom:17.402344pt;}
.y9{bottom:17.402346pt;}
.y3e{bottom:17.402347pt;}
.y8a{bottom:17.402350pt;}
.y7f{bottom:20.136070pt;}
.y4d{bottom:21.160163pt;}
.y51{bottom:21.722815pt;}
.y5d{bottom:21.722976pt;}
.y69{bottom:21.722979pt;}
.y73{bottom:21.722987pt;}
.y83{bottom:24.136716pt;}
.y33{bottom:31.804678pt;}
.y8{bottom:31.804692pt;}
.y3d{bottom:31.804694pt;}
.y4c{bottom:37.722990pt;}
.y50{bottom:38.285482pt;}
.y5c{bottom:38.285483pt;}
.y26{bottom:38.304607pt;}
.y7e{bottom:38.539056pt;}
.y82{bottom:39.805990pt;}
.y32{bottom:46.207024pt;}
.y7{bottom:46.207026pt;}
.y3c{bottom:46.207027pt;}
.y89{bottom:46.207031pt;}
.y8f{bottom:51.509116pt;}
.y53{bottom:51.509436pt;}
.y24{bottom:51.509516pt;}
.y68{bottom:52.687832pt;}
.y4b{bottom:54.285816pt;}
.y72{bottom:54.848307pt;}
.y5b{bottom:54.848310pt;}
.y7d{bottom:56.942056pt;}
.y31{bottom:60.609371pt;}
.y3b{bottom:60.609374pt;}
.y6{bottom:60.609375pt;}
.y67{bottom:69.250659pt;}
.y4a{bottom:70.848483pt;}
.y5a{bottom:71.411134pt;}
.y30{bottom:75.011718pt;}
.y88{bottom:75.011719pt;}
.y3a{bottom:75.011720pt;}
.y7c{bottom:75.345043pt;}
.y18{bottom:77.967773pt;}
.y4f{bottom:82.503908pt;}
.y66{bottom:85.813486pt;}
.y81{bottom:86.030600pt;}
.y49{bottom:87.411136pt;}
.y71{bottom:87.973640pt;}
.y59{bottom:87.973796pt;}
.y2f{bottom:89.414064pt;}
.y39{bottom:89.414067pt;}
.y7b{bottom:93.748043pt;}
.y65{bottom:100.215819pt;}
.y2e{bottom:103.816398pt;}
.y38{bottom:103.816414pt;}
.y48{bottom:103.973803pt;}
.y58{bottom:104.536459pt;}
.y87{bottom:110.550456pt;}
.y64{bottom:114.618166pt;}
.y2d{bottom:118.218744pt;}
.y37{bottom:118.218747pt;}
.y47{bottom:120.536630pt;}
.y57{bottom:121.098959pt;}
.y70{bottom:121.099294pt;}
.y86{bottom:128.953776pt;}
.y63{bottom:129.020512pt;}
.y7a{bottom:130.554030pt;}
.y2c{bottom:132.621091pt;}
.y36{bottom:132.621094pt;}
.y4e{bottom:133.191736pt;}
.y46{bottom:137.099296pt;}
.y56{bottom:137.661784pt;}
.y6f{bottom:137.662107pt;}
.y80{bottom:142.634763pt;}
.y2b{bottom:147.023438pt;}
.y40{bottom:148.594067pt;}
.y79{bottom:148.957030pt;}
.y45{bottom:153.661950pt;}
.y55{bottom:154.224610pt;}
.y6e{bottom:154.224614pt;}
.y62{bottom:157.825192pt;}
.y75{bottom:158.037113pt;}
.y78{bottom:167.360016pt;}
.y44{bottom:170.224616pt;}
.y61{bottom:172.227539pt;}
.y77{bottom:185.763016pt;}
.y6d{bottom:187.349934pt;}
.y43{bottom:202.787283pt;}
.y6c{bottom:203.912760pt;}
.y76{bottom:204.166016pt;}
.y42{bottom:219.350110pt;}
.y41{bottom:235.912763pt;}
.y74{bottom:375.872390pt;}
.y6b{bottom:391.274736pt;}
.y3f{bottom:396.909176pt;}
.y35{bottom:412.311523pt;}
.y23{bottom:424.160403pt;}
.y22{bottom:440.723070pt;}
.y21{bottom:457.285723pt;}
.y20{bottom:473.848430pt;}
.y1f{bottom:490.411136pt;}
.y1e{bottom:506.973883pt;}
.y1d{bottom:523.536536pt;}
.y1c{bottom:540.099203pt;}
.y1b{bottom:556.661910pt;}
.y34{bottom:557.334963pt;}
.y1a{bottom:573.224603pt;}
.y2a{bottom:576.024419pt;}
.y19{bottom:605.787310pt;}
.y6a{bottom:607.589843pt;}
.y60{bottom:622.992184pt;}
.y17{bottom:696.157430pt;}
.y16{bottom:711.559779pt;}
.y15{bottom:725.962123pt;}
.y8e{bottom:727.305990pt;}
.y28{bottom:738.737299pt;}
.y13{bottom:741.364459pt;}
.y8d{bottom:743.868816pt;}
.y12{bottom:755.766803pt;}
.y10{bottom:756.766805pt;}
.y8c{bottom:760.431643pt;}
.y27{bottom:768.541990pt;}
.y11{bottom:771.169150pt;}
.y25{bottom:783.944336pt;}
.yf{bottom:786.571496pt;}
.yc{bottom:787.571499pt;}
.y8b{bottom:790.327470pt;}
.ye{bottom:801.973843pt;}
.y5f{bottom:807.622070pt;}
.yb{bottom:817.376176pt;}
.y54{bottom:823.024413pt;}
.y5{bottom:832.778524pt;}
.y85{bottom:847.028320pt;}
.y4{bottom:890.387899pt;}
.y2{bottom:905.790243pt;}
.y1{bottom:962.248963pt;}
.h2{height:14.402344pt;}
.h4{height:28.804688pt;}
.h7{height:30.750001pt;}
.h11{height:36.540029pt;}
.h1{height:39.000000pt;}
.h14{height:43.333332pt;}
.hd{height:49.687825pt;}
.h15{height:51.208333pt;}
.h3{height:72.011719pt;}
.h6{height:75.266600pt;}
.he{height:75.266760pt;}
.h16{height:75.266933pt;}
.h9{height:123.500000pt;}
.h17{height:141.623047pt;}
.hb{height:144.023437pt;}
.ha{height:158.425781pt;}
.hf{height:165.626953pt;}
.h10{height:183.629883pt;}
.h8{height:204.706949pt;}
.h12{height:215.315104pt;}
.h13{height:216.835287pt;}
.hc{height:247.315107pt;}
.h5{height:617.189653pt;}
.h0{height:1122.666667pt;}
.w2{width:111.999989pt;}
.w6{width:121.999980pt;}
.w4{width:131.000000pt;}
.w8{width:187.999980pt;}
.w5{width:254.000040pt;}
.w9{width:320.000040pt;}
.w7{width:386.000040pt;}
.w3{width:509.000000pt;}
.w1{width:622.000040pt;}
.wa{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x7{left:5.000000pt;}
.x6{left:6.000000pt;}
.x9{left:24.000000pt;}
.xa{left:48.000000pt;}
.x1{left:94.533336pt;}
.x2{left:102.533336pt;}
.x3{left:215.533345pt;}
.xc{left:270.000000pt;}
.x4{left:338.533320pt;}
.x8{left:404.533320pt;}
.x5{left:470.533320pt;}
.xb{left:693.899726pt;}
}




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