
    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_b4cec9256c56d9c7aa8bc5be.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_2d8eda031ba79ec60edd21d5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_f48d8657bf260d0997217bf3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.908691;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_4a0f2478ce833586f44e3eb5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_0dc0a88caf4da025fa1408cc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.717773;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_16e786d2cf0faa6c08269b93.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_ff2318f1318e0f63c21ce9d1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.865234;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_192d9270a20f701881e992c2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.935059;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_0c5073eaa0b887db4d0eeed5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.919922;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:ffa;src:url('chunks/assets/font_9749bc002526d16cf6053e9f.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v1{vertical-align:24.953028px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000006px;}
.lsf{letter-spacing:32.437043px;}
.lsa{letter-spacing:34.662736px;}
.ls10{letter-spacing:35.747086px;}
.ls2{letter-spacing:36.888428px;}
.ls11{letter-spacing:39.114121px;}
.lsc{letter-spacing:40.226968px;}
.lse{letter-spacing:41.310494px;}
.ls8{letter-spacing:42.452660px;}
.lsb{letter-spacing:43.536187px;}
.ls4{letter-spacing:58.226968px;}
.lsd{letter-spacing:59.145356px;}
.ls7{letter-spacing:59.310494px;}
.ls3{letter-spacing:61.536187px;}
.ls9{letter-spacing:63.567421px;}
.ls6{letter-spacing:77.145356px;}
.ls0{letter-spacing:199.330079px;}
.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;}
}
.ws1{word-spacing:-20.003906px;}
.ws0{word-spacing:-16.669921px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-200.777333px;}
._a{margin-left:-158.687733px;}
._5{margin-left:-150.135952px;}
._6{margin-left:-64.107415px;}
._18{margin-left:-6.925781px;}
._9{margin-left:-5.784919px;}
._1a{margin-left:-4.759846px;}
._1{margin-left:-3.737959px;}
._19{margin-left:-2.719232px;}
._0{margin-left:-1.657008px;}
._12{width:1.125463px;}
._e{width:3.707422px;}
._f{width:5.082466px;}
._c{width:9.027327px;}
._2{width:10.604290px;}
._b{width:13.452396px;}
._d{width:17.910307px;}
._16{width:18.912837px;}
._10{width:22.454933px;}
._14{width:26.677234px;}
._15{width:27.739979px;}
._11{width:30.749748px;}
._13{width:32.343091px;}
._17{width:55.089845px;}
._8{width:105.086709px;}
._7{width:114.055020px;}
._3{width:199.330079px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,245);}
.fc6{color:rgb(0,0,235);}
.fc3{color:rgb(78,173,43);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(204,80,62);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs1{font-size:59.999999px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y31{bottom:4.306457px;}
.y35{bottom:4.306459px;}
.y37{bottom:4.306640px;}
.y4c{bottom:4.306819px;}
.y42{bottom:4.306822px;}
.y39{bottom:4.306834px;}
.y2a{bottom:14.358215px;}
.y2{bottom:14.358392px;}
.yb9{bottom:14.358398px;}
.y5d{bottom:14.358581px;}
.y84{bottom:14.358764px;}
.y3d{bottom:23.210447px;}
.y34{bottom:23.210449px;}
.y41{bottom:23.210632px;}
.y3c{bottom:42.114257px;}
.y28{bottom:68.542973px;}
.yd2{bottom:91.506596px;}
.y27{bottom:101.724243px;}
.yb8{bottom:104.534184px;}
.y5b{bottom:114.875598px;}
.yd1{bottom:119.862307px;}
.y26{bottom:130.079958px;}
.yb7{bottom:132.889168px;}
.y9a{bottom:140.757930px;}
.y82{bottom:142.546882px;}
.y5a{bottom:143.231313px;}
.yd0{bottom:150.969728px;}
.y25{bottom:158.435668px;}
.yb6{bottom:161.245610px;}
.y99{bottom:169.113643px;}
.y81{bottom:170.902586px;}
.y59{bottom:171.587023px;}
.ycf{bottom:184.996583px;}
.y24{bottom:186.791381px;}
.yb5{bottom:189.600592px;}
.y98{bottom:197.469356px;}
.y80{bottom:199.258297px;}
.y58{bottom:199.942736px;}
.y23{bottom:215.147103px;}
.yce{bottom:216.271732px;}
.yb4{bottom:217.956667px;}
.y97{bottom:225.825067px;}
.y7f{bottom:227.614012px;}
.y57{bottom:228.298458px;}
.y22{bottom:243.502815px;}
.yb3{bottom:246.312382px;}
.ycd{bottom:247.379153px;}
.y96{bottom:254.180782px;}
.y7e{bottom:255.969727px;}
.y56{bottom:256.654170px;}
.y21{bottom:271.858528px;}
.yb2{bottom:274.668086px;}
.ycc{bottom:281.406008px;}
.y7d{bottom:284.325442px;}
.y55{bottom:285.009883px;}
.y20{bottom:300.214241px;}
.yb1{bottom:303.023808px;}
.y95{bottom:303.536479px;}
.ycb{bottom:312.681146px;}
.y7c{bottom:312.681157px;}
.y54{bottom:313.365596px;}
.y1f{bottom:328.569952px;}
.yb0{bottom:331.379520px;}
.yca{bottom:341.036868px;}
.y7b{bottom:341.036872px;}
.y53{bottom:341.721307px;}
.y1e{bottom:359.677373px;}
.yaf{bottom:359.735233px;}
.y7a{bottom:369.392576px;}
.yc9{bottom:369.392580px;}
.y52{bottom:370.077022px;}
.yae{bottom:388.090946px;}
.y1d{bottom:390.952522px;}
.y79{bottom:397.748287px;}
.yc8{bottom:397.748293px;}
.y51{bottom:401.184443px;}
.yad{bottom:416.446657px;}
.y1c{bottom:419.308222px;}
.y78{bottom:426.104006px;}
.y50{bottom:435.211298px;}
.yac{bottom:444.802372px;}
.y1b{bottom:447.663937px;}
.y4e{bottom:452.727903px;}
.y77{bottom:454.459717px;}
.y4f{bottom:462.179806px;}
.yab{bottom:475.909793px;}
.y1a{bottom:476.019658px;}
.yc7{bottom:482.815432px;}
.y76{bottom:482.815436px;}
.y4b{bottom:491.660343px;}
.y4d{bottom:501.112426px;}
.y19{bottom:504.375328px;}
.yaa{bottom:507.184942px;}
.y75{bottom:511.171147px;}
.y18{bottom:532.731041px;}
.ya9{bottom:535.540642px;}
.y4a{bottom:538.578736px;}
.yc6{bottom:539.526843px;}
.y74{bottom:539.526862px;}
.y17{bottom:561.086752px;}
.ya8{bottom:566.648078px;}
.yc5{bottom:567.882558px;}
.y73{bottom:567.882566px;}
.y49{bottom:575.141236px;}
.y16{bottom:592.194173px;}
.yc4{bottom:596.238268px;}
.y72{bottom:596.238288px;}
.ya7{bottom:597.923212px;}
.y48{bottom:615.078736px;}
.y15{bottom:623.469322px;}
.yc3{bottom:624.593981px;}
.y71{bottom:624.594000px;}
.ya6{bottom:626.278927px;}
.yc2{bottom:652.949703px;}
.y70{bottom:652.949713px;}
.y14{bottom:652.950022px;}
.ya5{bottom:657.386348px;}
.y47{bottom:659.603213px;}
.ye4{bottom:663.057127px;}
.yc1{bottom:681.305415px;}
.y6f{bottom:681.305426px;}
.y13{bottom:681.305692px;}
.y46{bottom:682.287773px;}
.ye3{bottom:691.412842px;}
.y45{bottom:704.972348px;}
.yc0{bottom:709.661128px;}
.y6e{bottom:709.661137px;}
.y12{bottom:709.661407px;}
.y44{bottom:727.656923px;}
.ye2{bottom:728.317388px;}
.y94{bottom:738.016841px;}
.y6d{bottom:738.017032px;}
.y11{bottom:738.017122px;}
.ye1{bottom:747.221197px;}
.y43{bottom:754.284301px;}
.y93{bottom:766.372552px;}
.y6c{bottom:766.372751px;}
.y10{bottom:766.372837px;}
.y40{bottom:782.298525px;}
.ye0{bottom:784.124264px;}
.y3f{bottom:791.750614px;}
.ya4{bottom:794.728271px;}
.y92{bottom:794.728273px;}
.ybf{bottom:794.728275px;}
.y6b{bottom:794.728462px;}
.yf{bottom:794.728552px;}
.ydf{bottom:803.028803px;}
.yde{bottom:821.932612px;}
.ya3{bottom:823.083982px;}
.y91{bottom:823.083986px;}
.ybe{bottom:823.083988px;}
.y6a{bottom:823.084162px;}
.ye{bottom:823.084252px;}
.y3e{bottom:829.216921px;}
.y90{bottom:851.439697px;}
.ybd{bottom:851.439701px;}
.y69{bottom:851.439877px;}
.yd{bottom:851.439967px;}
.y3b{bottom:857.231330px;}
.ydd{bottom:858.835694px;}
.y38{bottom:866.683038px;}
.y3a{bottom:876.135136px;}
.ydc{bottom:877.740233px;}
.y8f{bottom:879.795412px;}
.ya2{bottom:879.795416px;}
.y68{bottom:879.795596px;}
.yc{bottom:879.795682px;}
.ydb{bottom:896.644042px;}
.y8e{bottom:908.151127px;}
.y67{bottom:908.151307px;}
.yb{bottom:908.151397px;}
.y33{bottom:915.067743px;}
.y36{bottom:924.519646px;}
.yda{bottom:933.547120px;}
.y8d{bottom:936.506833px;}
.ya1{bottom:936.506842px;}
.y66{bottom:936.507022px;}
.ya{bottom:936.507112px;}
.yd9{bottom:952.451662px;}
.y32{bottom:962.548460px;}
.ybc{bottom:964.862541px;}
.y8c{bottom:964.862546px;}
.ya0{bottom:964.862551px;}
.y65{bottom:964.862737px;}
.y9{bottom:967.614533px;}
.yd8{bottom:989.355469px;}
.y8b{bottom:993.218257px;}
.y9f{bottom:993.218264px;}
.y64{bottom:993.218452px;}
.y30{bottom:1002.485963px;}
.y8{bottom:1004.393095px;}
.yd7{bottom:1008.258545px;}
.y9e{bottom:1021.573975px;}
.y8a{bottom:1021.573976px;}
.y63{bottom:1021.574159px;}
.y7{bottom:1044.091094px;}
.yd6{bottom:1045.163086px;}
.y2f{bottom:1047.010619px;}
.y89{bottom:1049.929687px;}
.y9d{bottom:1049.929689px;}
.y62{bottom:1049.929870px;}
.y9c{bottom:1078.285400px;}
.ybb{bottom:1078.285401px;}
.y88{bottom:1078.285403px;}
.y61{bottom:1078.285585px;}
.y6{bottom:1078.285687px;}
.y2e{bottom:1078.285766px;}
.yd5{bottom:1082.066895px;}
.yd4{bottom:1100.969971px;}
.y9b{bottom:1106.641112px;}
.y87{bottom:1106.641116px;}
.y60{bottom:1106.641297px;}
.y5{bottom:1106.641399px;}
.y2d{bottom:1106.641482px;}
.yd3{bottom:1132.077392px;}
.yba{bottom:1134.996826px;}
.y86{bottom:1134.996828px;}
.y5f{bottom:1134.997009px;}
.y4{bottom:1134.997123px;}
.y2c{bottom:1134.997194px;}
.y85{bottom:1163.352539px;}
.y5e{bottom:1163.352722px;}
.y3{bottom:1163.352836px;}
.y2b{bottom:1163.352905px;}
.y83{bottom:1177.949707px;}
.y5c{bottom:1177.949891px;}
.y1{bottom:1177.950004px;}
.y29{bottom:1177.950073px;}
.ha{height:18.903625px;}
.hd{height:18.903809px;}
.hc{height:37.807617px;}
.hf{height:37.807800px;}
.h4{height:43.066405px;}
.h3{height:43.740233px;}
.h6{height:43.857421px;}
.hb{height:47.988281px;}
.h11{height:51.197168px;}
.h7{height:52.488281px;}
.h2{height:52.628906px;}
.he{height:56.711425px;}
.h5{height:61.400388px;}
.h9{height:85.049927px;}
.h1{height:85.049996px;}
.h10{height:85.050109px;}
.h12{height:85.050293px;}
.h8{height:86.059575px;}
.h0{height:1263.000000px;}
.w2{width:141.750023px;}
.w5{width:142.874954px;}
.w4{width:142.875000px;}
.w3{width:145.125000px;}
.w6{width:146.250000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xb{left:11.665936px;}
.xd{left:15.887921px;}
.x6{left:25.284975px;}
.x9{left:28.757658px;}
.x8{left:53.157305px;}
.x1{left:85.049996px;}
.x5{left:92.924995px;}
.x14{left:108.674996px;}
.x10{left:112.049996px;}
.x2{left:120.867189px;}
.x11{left:166.049996px;}
.x13{left:193.049996px;}
.x12{left:197.549996px;}
.x7{left:235.800018px;}
.x3{left:382.702839px;}
.x4{left:446.456696px;}
.xa{left:526.050015px;}
.xe{left:527.175015px;}
.xc{left:670.049970px;}
.xf{left:671.174970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.180469pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000005pt;}
.lsf{letter-spacing:28.832927pt;}
.lsa{letter-spacing:30.811321pt;}
.ls10{letter-spacing:31.775188pt;}
.ls2{letter-spacing:32.789714pt;}
.ls11{letter-spacing:34.768108pt;}
.lsc{letter-spacing:35.757305pt;}
.lse{letter-spacing:36.720439pt;}
.ls8{letter-spacing:37.735698pt;}
.lsb{letter-spacing:38.698833pt;}
.ls4{letter-spacing:51.757305pt;}
.lsd{letter-spacing:52.573650pt;}
.ls7{letter-spacing:52.720439pt;}
.ls3{letter-spacing:54.698833pt;}
.ls9{letter-spacing:56.504375pt;}
.ls6{letter-spacing:68.573650pt;}
.ls0{letter-spacing:177.182292pt;}
.ws1{word-spacing:-17.781250pt;}
.ws0{word-spacing:-14.817708pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-178.468741pt;}
._a{margin-left:-141.055763pt;}
._5{margin-left:-133.454180pt;}
._6{margin-left:-56.984369pt;}
._18{margin-left:-6.156250pt;}
._9{margin-left:-5.142150pt;}
._1a{margin-left:-4.230974pt;}
._1{margin-left:-3.322630pt;}
._19{margin-left:-2.417095pt;}
._0{margin-left:-1.472896pt;}
._12{width:1.000412pt;}
._e{width:3.295487pt;}
._f{width:4.517748pt;}
._c{width:8.024290pt;}
._2{width:9.426035pt;}
._b{width:11.957686pt;}
._d{width:15.920273pt;}
._16{width:16.811411pt;}
._10{width:19.959941pt;}
._14{width:23.713097pt;}
._15{width:24.657759pt;}
._11{width:27.333110pt;}
._13{width:28.749414pt;}
._17{width:48.968751pt;}
._8{width:93.410408pt;}
._7{width:101.382240pt;}
._3{width:177.182292pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:53.333332pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.827962pt;}
.y35{bottom:3.827963pt;}
.y37{bottom:3.828125pt;}
.y4c{bottom:3.828283pt;}
.y42{bottom:3.828286pt;}
.y39{bottom:3.828297pt;}
.y2a{bottom:12.762858pt;}
.y2{bottom:12.763016pt;}
.yb9{bottom:12.763021pt;}
.y5d{bottom:12.763183pt;}
.y84{bottom:12.763346pt;}
.y3d{bottom:20.631509pt;}
.y34{bottom:20.631510pt;}
.y41{bottom:20.631673pt;}
.y3c{bottom:37.434895pt;}
.y28{bottom:60.927087pt;}
.yd2{bottom:81.339196pt;}
.y27{bottom:90.421549pt;}
.yb8{bottom:92.919275pt;}
.y5b{bottom:102.111642pt;}
.yd1{bottom:106.544273pt;}
.y26{bottom:115.626629pt;}
.yb7{bottom:118.123705pt;}
.y9a{bottom:125.118160pt;}
.y82{bottom:126.708339pt;}
.y5a{bottom:127.316722pt;}
.yd0{bottom:134.195314pt;}
.y25{bottom:140.831705pt;}
.yb6{bottom:143.329431pt;}
.y99{bottom:150.323238pt;}
.y81{bottom:151.913410pt;}
.y59{bottom:152.521798pt;}
.ycf{bottom:164.441408pt;}
.y24{bottom:166.036783pt;}
.yb5{bottom:168.533859pt;}
.y98{bottom:175.528316pt;}
.y80{bottom:177.118486pt;}
.y58{bottom:177.726876pt;}
.y23{bottom:191.241869pt;}
.yce{bottom:192.241539pt;}
.yb4{bottom:193.739259pt;}
.y97{bottom:200.733393pt;}
.y7f{bottom:202.323566pt;}
.y57{bottom:202.931962pt;}
.y22{bottom:216.446947pt;}
.yb3{bottom:218.944339pt;}
.ycd{bottom:219.892581pt;}
.y96{bottom:225.938473pt;}
.y7e{bottom:227.528646pt;}
.y56{bottom:228.137040pt;}
.y21{bottom:241.652025pt;}
.yb2{bottom:244.149410pt;}
.ycc{bottom:250.138674pt;}
.y7d{bottom:252.733726pt;}
.y55{bottom:253.342118pt;}
.y20{bottom:266.857103pt;}
.yb1{bottom:269.354496pt;}
.y95{bottom:269.810204pt;}
.ycb{bottom:277.938796pt;}
.y7c{bottom:277.938806pt;}
.y54{bottom:278.547196pt;}
.y1f{bottom:292.062179pt;}
.yb0{bottom:294.559574pt;}
.yca{bottom:303.143882pt;}
.y7b{bottom:303.143886pt;}
.y53{bottom:303.752273pt;}
.y1e{bottom:319.713221pt;}
.yaf{bottom:319.764652pt;}
.y7a{bottom:328.348956pt;}
.yc9{bottom:328.348960pt;}
.y52{bottom:328.957353pt;}
.yae{bottom:344.969730pt;}
.y1d{bottom:347.513353pt;}
.y79{bottom:353.554033pt;}
.yc8{bottom:353.554038pt;}
.y51{bottom:356.608394pt;}
.yad{bottom:370.174806pt;}
.y1c{bottom:372.718419pt;}
.y78{bottom:378.759116pt;}
.y50{bottom:386.854487pt;}
.yac{bottom:395.379886pt;}
.y1b{bottom:397.923499pt;}
.y4e{bottom:402.424803pt;}
.y77{bottom:403.964193pt;}
.y4f{bottom:410.826495pt;}
.yab{bottom:423.030927pt;}
.y1a{bottom:423.128585pt;}
.yc7{bottom:429.169273pt;}
.y76{bottom:429.169276pt;}
.y4b{bottom:437.031416pt;}
.y4d{bottom:445.433268pt;}
.y19{bottom:448.333625pt;}
.yaa{bottom:450.831059pt;}
.y75{bottom:454.374353pt;}
.y18{bottom:473.538703pt;}
.ya9{bottom:476.036126pt;}
.y4a{bottom:478.736655pt;}
.yc6{bottom:479.579416pt;}
.y74{bottom:479.579433pt;}
.y17{bottom:498.743779pt;}
.ya8{bottom:503.687181pt;}
.yc5{bottom:504.784496pt;}
.y73{bottom:504.784503pt;}
.y49{bottom:511.236655pt;}
.y16{bottom:526.394821pt;}
.yc4{bottom:529.989572pt;}
.y72{bottom:529.989589pt;}
.ya7{bottom:531.487299pt;}
.y48{bottom:546.736655pt;}
.y15{bottom:554.194953pt;}
.yc3{bottom:555.194650pt;}
.y71{bottom:555.194667pt;}
.ya6{bottom:556.692379pt;}
.yc2{bottom:580.399736pt;}
.y70{bottom:580.399745pt;}
.y14{bottom:580.400019pt;}
.ya5{bottom:584.343421pt;}
.y47{bottom:586.313967pt;}
.ye4{bottom:589.384113pt;}
.yc1{bottom:605.604814pt;}
.y6f{bottom:605.604823pt;}
.y13{bottom:605.605059pt;}
.y46{bottom:606.478021pt;}
.ye3{bottom:614.589193pt;}
.y45{bottom:626.642087pt;}
.yc0{bottom:630.809892pt;}
.y6e{bottom:630.809899pt;}
.y12{bottom:630.810139pt;}
.y44{bottom:646.806154pt;}
.ye2{bottom:647.393234pt;}
.y94{bottom:656.014970pt;}
.y6d{bottom:656.015139pt;}
.y11{bottom:656.015219pt;}
.ye1{bottom:664.196619pt;}
.y43{bottom:670.474935pt;}
.y93{bottom:681.220046pt;}
.y6c{bottom:681.220223pt;}
.y10{bottom:681.220299pt;}
.y40{bottom:695.376467pt;}
.ye0{bottom:696.999346pt;}
.y3f{bottom:703.778324pt;}
.ya4{bottom:706.425130pt;}
.y92{bottom:706.425132pt;}
.ybf{bottom:706.425134pt;}
.y6b{bottom:706.425299pt;}
.yf{bottom:706.425379pt;}
.ydf{bottom:713.803381pt;}
.yde{bottom:730.606766pt;}
.ya3{bottom:731.630206pt;}
.y91{bottom:731.630210pt;}
.ybe{bottom:731.630212pt;}
.y6a{bottom:731.630366pt;}
.ye{bottom:731.630446pt;}
.y3e{bottom:737.081708pt;}
.y90{bottom:756.835286pt;}
.ybd{bottom:756.835290pt;}
.y69{bottom:756.835446pt;}
.yd{bottom:756.835526pt;}
.y3b{bottom:761.983404pt;}
.ydd{bottom:763.409506pt;}
.y38{bottom:770.384923pt;}
.y3a{bottom:778.786788pt;}
.ydc{bottom:780.213541pt;}
.y8f{bottom:782.040366pt;}
.ya2{bottom:782.040370pt;}
.y68{bottom:782.040530pt;}
.yc{bottom:782.040606pt;}
.ydb{bottom:797.016926pt;}
.y8e{bottom:807.245446pt;}
.y67{bottom:807.245606pt;}
.yb{bottom:807.245686pt;}
.y33{bottom:813.393549pt;}
.y36{bottom:821.795241pt;}
.yda{bottom:829.819662pt;}
.y8d{bottom:832.450518pt;}
.ya1{bottom:832.450526pt;}
.y66{bottom:832.450686pt;}
.ya{bottom:832.450766pt;}
.yd9{bottom:846.623699pt;}
.y32{bottom:855.598631pt;}
.ybc{bottom:857.655592pt;}
.y8c{bottom:857.655596pt;}
.ya0{bottom:857.655601pt;}
.y65{bottom:857.655766pt;}
.y9{bottom:860.101808pt;}
.yd8{bottom:879.427084pt;}
.y8b{bottom:882.860673pt;}
.y9f{bottom:882.860679pt;}
.y64{bottom:882.860846pt;}
.y30{bottom:891.098633pt;}
.y8{bottom:892.793862pt;}
.yd7{bottom:896.229818pt;}
.y9e{bottom:908.065755pt;}
.y8a{bottom:908.065756pt;}
.y63{bottom:908.065919pt;}
.y7{bottom:928.080972pt;}
.yd6{bottom:929.033854pt;}
.y2f{bottom:930.676106pt;}
.y89{bottom:933.270833pt;}
.y9d{bottom:933.270835pt;}
.y62{bottom:933.270995pt;}
.y9c{bottom:958.475911pt;}
.ybb{bottom:958.475912pt;}
.y88{bottom:958.475914pt;}
.y61{bottom:958.476075pt;}
.y6{bottom:958.476166pt;}
.y2e{bottom:958.476237pt;}
.yd5{bottom:961.837240pt;}
.yd4{bottom:978.639974pt;}
.y9b{bottom:983.680989pt;}
.y87{bottom:983.680992pt;}
.y60{bottom:983.681153pt;}
.y5{bottom:983.681243pt;}
.y2d{bottom:983.681317pt;}
.yd3{bottom:1006.291015pt;}
.yba{bottom:1008.886067pt;}
.y86{bottom:1008.886070pt;}
.y5f{bottom:1008.886230pt;}
.y4{bottom:1008.886331pt;}
.y2c{bottom:1008.886395pt;}
.y85{bottom:1034.091146pt;}
.y5e{bottom:1034.091309pt;}
.y3{bottom:1034.091410pt;}
.y2b{bottom:1034.091471pt;}
.y83{bottom:1047.066407pt;}
.y5c{bottom:1047.066569pt;}
.y1{bottom:1047.066671pt;}
.y29{bottom:1047.066732pt;}
.ha{height:16.803223pt;}
.hd{height:16.803385pt;}
.hc{height:33.606771pt;}
.hf{height:33.606933pt;}
.h4{height:38.281249pt;}
.h3{height:38.880207pt;}
.h6{height:38.984374pt;}
.hb{height:42.656250pt;}
.h11{height:45.508594pt;}
.h7{height:46.656250pt;}
.h2{height:46.781250pt;}
.he{height:50.410156pt;}
.h5{height:54.578123pt;}
.h9{height:75.599935pt;}
.h1{height:75.599996pt;}
.h10{height:75.600097pt;}
.h12{height:75.600260pt;}
.h8{height:76.497400pt;}
.h0{height:1122.666667pt;}
.w2{width:126.000020pt;}
.w5{width:126.999959pt;}
.w4{width:127.000000pt;}
.w3{width:129.000000pt;}
.w6{width:130.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xb{left:10.369720pt;}
.xd{left:14.122597pt;}
.x6{left:22.475533pt;}
.x9{left:25.562363pt;}
.x8{left:47.250938pt;}
.x1{left:75.599996pt;}
.x5{left:82.599996pt;}
.x14{left:96.599996pt;}
.x10{left:99.599996pt;}
.x2{left:107.437501pt;}
.x11{left:147.599996pt;}
.x13{left:171.599996pt;}
.x12{left:175.599996pt;}
.x7{left:209.600016pt;}
.x3{left:340.180301pt;}
.x4{left:396.850396pt;}
.xa{left:467.600013pt;}
.xe{left:468.600013pt;}
.xc{left:595.599973pt;}
.xf{left:596.599973pt;}
}




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