
    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_d1c6deea50cedf699d17ae75.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_25366f606d82077c42e3a7e4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_5ad9b322eb18f32b30c827cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_41d16774975a757c8f3fe665.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_74184195fa7c1f06992a23aa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706055;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);}
.v2{vertical-align:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws5{word-spacing:-36.000000px;}
.ws3{word-spacing:-29.999999px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws2{word-spacing:-9.000000px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-9.281250px;}
._0{margin-left:-7.037834px;}
._7{margin-left:-5.765620px;}
._6{margin-left:-3.972641px;}
._8{margin-left:-2.882813px;}
._1{margin-left:-1.106010px;}
._4{width:4.500003px;}
._3{width:8.999999px;}
._2{width:13.500000px;}
._5{width:22.500000px;}
._d{width:26.999979px;}
._a{width:31.500004px;}
._9{width:35.999999px;}
._c{width:40.499981px;}
._b{width:45.000002px;}
._e{width:49.500002px;}
._f{width:54.000000px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y5e{bottom:17.016358px;}
.y2c{bottom:17.016724px;}
.yb4{bottom:17.017090px;}
.yd4{bottom:37.157959px;}
.y5d{bottom:37.158326px;}
.y2b{bottom:37.158418px;}
.y25{bottom:109.684934px;}
.yb2{bottom:111.648923px;}
.y5b{bottom:114.063727px;}
.yd3{bottom:125.028802px;}
.y24{bottom:132.625485px;}
.y8b{bottom:134.002799px;}
.yb1{bottom:134.003170px;}
.y5a{bottom:136.400753px;}
.y27{bottom:144.182007px;}
.yd2{bottom:147.383063px;}
.yb0{bottom:156.357044px;}
.y8a{bottom:156.357054px;}
.y59{bottom:157.098998px;}
.y26{bottom:167.122559px;}
.yd1{bottom:169.736572px;}
.y29{bottom:178.679082px;}
.yaf{bottom:178.710930px;}
.y89{bottom:178.711300px;}
.y58{bottom:179.435662px;}
.yed{bottom:187.485344px;}
.yd0{bottom:192.090817px;}
.yae{bottom:201.065176px;}
.y88{bottom:201.065182px;}
.y28{bottom:201.619634px;}
.y57{bottom:201.772702px;}
.yec{bottom:209.822018px;}
.ycf{bottom:214.445062px;}
.yad{bottom:223.419428px;}
.y87{bottom:223.419434px;}
.y56{bottom:224.109372px;}
.yeb{bottom:230.520262px;}
.y23{bottom:233.313359px;}
.yce{bottom:236.798948px;}
.y86{bottom:245.773319px;}
.yac{bottom:245.773685px;}
.y55{bottom:246.446226px;}
.yea{bottom:251.218507px;}
.y22{bottom:255.650213px;}
.ycd{bottom:259.153568px;}
.y85{bottom:268.127564px;}
.yab{bottom:268.127566px;}
.y54{bottom:268.783078px;}
.ye9{bottom:273.555173px;}
.y21{bottom:276.348443px;}
.ycc{bottom:281.507077px;}
.yaa{bottom:290.481448px;}
.y84{bottom:290.481820px;}
.y53{bottom:291.119932px;}
.ye8{bottom:295.910150px;}
.ycb{bottom:303.861712px;}
.y20{bottom:310.685392px;}
.y83{bottom:312.835685px;}
.ya9{bottom:312.835695px;}
.y52{bottom:313.456784px;}
.ye7{bottom:318.263672px;}
.yca{bottom:326.215585px;}
.ya8{bottom:335.189941px;}
.y82{bottom:335.189945px;}
.y51{bottom:335.793638px;}
.ye6{bottom:340.617180px;}
.y1f{bottom:345.022154px;}
.yc9{bottom:348.569470px;}
.y81{bottom:357.543826px;}
.ya7{bottom:357.544193px;}
.y50{bottom:358.130487px;}
.ye5{bottom:362.972164px;}
.y1e{bottom:367.359007px;}
.yc8{bottom:370.924091px;}
.y80{bottom:379.898069px;}
.y4f{bottom:380.467341px;}
.ye4{bottom:385.325677px;}
.y1d{bottom:389.695867px;}
.yc7{bottom:393.277595px;}
.ya6{bottom:402.251947px;}
.y7f{bottom:402.252324px;}
.y4e{bottom:402.804193px;}
.ye3{bottom:407.680664px;}
.y1c{bottom:412.032712px;}
.yc6{bottom:415.632206px;}
.ya5{bottom:424.606190px;}
.y7e{bottom:424.606201px;}
.y4d{bottom:425.141047px;}
.ye2{bottom:430.034186px;}
.y1b{bottom:434.369564px;}
.yc5{bottom:437.986097px;}
.ya4{bottom:446.960450px;}
.y7d{bottom:446.960453px;}
.y4c{bottom:447.477899px;}
.ye1{bottom:452.387690px;}
.y1a{bottom:456.706417px;}
.yc4{bottom:460.339974px;}
.y7c{bottom:469.314331px;}
.y4b{bottom:469.814752px;}
.ye0{bottom:474.742670px;}
.y19{bottom:479.043269px;}
.yc3{bottom:482.694589px;}
.y7b{bottom:491.668574px;}
.y4a{bottom:492.151604px;}
.ydf{bottom:497.096192px;}
.y18{bottom:501.380122px;}
.yc2{bottom:505.048103px;}
.y7a{bottom:514.022829px;}
.y49{bottom:514.488461px;}
.yde{bottom:519.451167px;}
.y17{bottom:523.716974px;}
.yc1{bottom:527.402705px;}
.y79{bottom:536.376706px;}
.y48{bottom:536.825315px;}
.ydd{bottom:541.804684px;}
.y16{bottom:546.053827px;}
.yc0{bottom:549.756586px;}
.y78{bottom:558.730957px;}
.y47{bottom:559.162167px;}
.ydc{bottom:564.158198px;}
.y15{bottom:568.390679px;}
.ybf{bottom:572.110468px;}
.y77{bottom:581.084825px;}
.ya3{bottom:581.084834px;}
.y46{bottom:581.499021px;}
.ydb{bottom:586.495612px;}
.y14{bottom:590.727532px;}
.ybe{bottom:594.465084px;}
.y76{bottom:603.439085px;}
.ya2{bottom:603.439090px;}
.y45{bottom:603.835873px;}
.yda{bottom:608.832278px;}
.y13{bottom:613.064384px;}
.ybd{bottom:616.818601px;}
.ya1{bottom:625.793333px;}
.y75{bottom:625.793335px;}
.y44{bottom:626.172727px;}
.yd9{bottom:631.168942px;}
.y12{bottom:635.401237px;}
.ybc{bottom:639.173212px;}
.y74{bottom:648.147209px;}
.ya0{bottom:648.147215px;}
.y43{bottom:648.509579px;}
.yd8{bottom:653.506342px;}
.y11{bottom:657.738089px;}
.ybb{bottom:661.527098px;}
.y73{bottom:670.501464px;}
.y9f{bottom:670.501465px;}
.y42{bottom:670.846432px;}
.yd7{bottom:675.843022px;}
.y10{bottom:680.074946px;}
.yba{bottom:683.863763px;}
.y9e{bottom:692.855339px;}
.y72{bottom:692.855341px;}
.y41{bottom:693.183281px;}
.yd6{bottom:698.179685px;}
.yf{bottom:702.411800px;}
.yb9{bottom:706.200803px;}
.y71{bottom:715.209592px;}
.y9d{bottom:715.209594px;}
.y40{bottom:715.520135px;}
.ye{bottom:724.748652px;}
.y70{bottom:737.563840px;}
.y3f{bottom:737.856987px;}
.yd{bottom:747.085506px;}
.yfc{bottom:756.867181px;}
.y9c{bottom:759.917722px;}
.y6f{bottom:759.917903px;}
.y3e{bottom:760.193841px;}
.yc{bottom:769.422358px;}
.yfb{bottom:779.204579px;}
.y9b{bottom:782.271968px;}
.y6e{bottom:782.271969px;}
.y3d{bottom:782.530693px;}
.yb{bottom:791.759212px;}
.yfa{bottom:801.541253px;}
.y6d{bottom:804.625846px;}
.y9a{bottom:804.625850px;}
.y3c{bottom:804.867547px;}
.ya{bottom:814.096064px;}
.y6c{bottom:826.980098px;}
.y99{bottom:826.980100px;}
.y3b{bottom:827.204399px;}
.yf9{bottom:835.877921px;}
.y9{bottom:836.432918px;}
.y98{bottom:849.334352px;}
.y6b{bottom:849.334360px;}
.y3a{bottom:849.541253px;}
.yf8{bottom:858.214589px;}
.y8{bottom:858.769775px;}
.y97{bottom:871.688229px;}
.y6a{bottom:871.688423px;}
.y39{bottom:871.878109px;}
.yf7{bottom:880.551263px;}
.y7{bottom:881.106652px;}
.y96{bottom:894.042475px;}
.y69{bottom:894.042489px;}
.y38{bottom:894.214961px;}
.yf6{bottom:914.888677px;}
.y6{bottom:916.365536px;}
.y95{bottom:916.396358px;}
.y68{bottom:916.396366px;}
.y37{bottom:916.551818px;}
.yf5{bottom:937.226066px;}
.y94{bottom:938.750610px;}
.y67{bottom:938.750617px;}
.y36{bottom:938.888672px;}
.y5{bottom:954.425194px;}
.yf4{bottom:959.562734px;}
.y93{bottom:961.104861px;}
.y66{bottom:961.104864px;}
.y35{bottom:961.225524px;}
.y4{bottom:980.484881px;}
.yf3{bottom:981.899408px;}
.y92{bottom:983.458735px;}
.y65{bottom:983.458934px;}
.y34{bottom:983.562378px;}
.y64{bottom:1005.812988px;}
.y91{bottom:1005.812990px;}
.y33{bottom:1005.899230px;}
.yf2{bottom:1016.236085px;}
.y3{bottom:1018.544540px;}
.y90{bottom:1028.166867px;}
.y63{bottom:1028.166870px;}
.y32{bottom:1028.236084px;}
.y1{bottom:1038.150009px;}
.yf1{bottom:1038.572753px;}
.y62{bottom:1050.521113px;}
.y8f{bottom:1050.521118px;}
.y31{bottom:1050.572936px;}
.yf0{bottom:1060.910155px;}
.yb8{bottom:1072.875000px;}
.y8e{bottom:1072.875366px;}
.y61{bottom:1072.875368px;}
.y30{bottom:1072.909789px;}
.yb7{bottom:1095.211669px;}
.y8d{bottom:1095.212035px;}
.y60{bottom:1095.229434px;}
.yef{bottom:1095.246094px;}
.y2f{bottom:1095.246643px;}
.yd5{bottom:1117.565918px;}
.y8c{bottom:1117.566280px;}
.yb6{bottom:1117.566284px;}
.yee{bottom:1117.583492px;}
.y2e{bottom:1117.583495px;}
.yb5{bottom:1139.920165px;}
.y2d{bottom:1139.920349px;}
.y5f{bottom:1139.920531px;}
.yb3{bottom:1156.724853px;}
.y2a{bottom:1156.725036px;}
.y5c{bottom:1156.725219px;}
.h8{height:32.273438px;}
.h2{height:43.989259px;}
.hb{height:53.789061px;}
.h9{height:53.789080px;}
.ha{height:53.789087px;}
.h7{height:63.949219px;}
.h6{height:64.546875px;}
.h4{height:65.691214px;}
.h5{height:65.691215px;}
.h3{height:74.607419px;}
.hd{height:106.274781px;}
.hc{height:106.274964px;}
.he{height:106.275147px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x7{left:127.575005px;}
.x5{left:139.700838px;}
.x3{left:155.209404px;}
.x8{left:180.450005px;}
.x9{left:238.525057px;}
.xc{left:337.243808px;}
.xb{left:369.969878px;}
.x4{left:372.987478px;}
.x6{left:380.187172px;}
.x2{left:446.456716px;}
.x1{left:636.019216px;}
.xa{left:708.019182px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws3{word-spacing:-26.666666pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-8.250000pt;}
._0{margin-left:-6.255853pt;}
._7{margin-left:-5.124996pt;}
._6{margin-left:-3.531236pt;}
._8{margin-left:-2.562500pt;}
._1{margin-left:-0.983120pt;}
._4{width:4.000003pt;}
._3{width:7.999999pt;}
._2{width:12.000000pt;}
._5{width:20.000000pt;}
._d{width:23.999981pt;}
._a{width:28.000004pt;}
._9{width:31.999999pt;}
._c{width:35.999983pt;}
._b{width:40.000001pt;}
._e{width:44.000002pt;}
._f{width:48.000000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y5e{bottom:15.125651pt;}
.y2c{bottom:15.125977pt;}
.yb4{bottom:15.126302pt;}
.yd4{bottom:33.029297pt;}
.y5d{bottom:33.029623pt;}
.y2b{bottom:33.029705pt;}
.y25{bottom:97.497719pt;}
.yb2{bottom:99.243487pt;}
.y5b{bottom:101.389980pt;}
.yd3{bottom:111.136713pt;}
.y24{bottom:117.889320pt;}
.y8b{bottom:119.113599pt;}
.yb1{bottom:119.113929pt;}
.y5a{bottom:121.245113pt;}
.y27{bottom:128.161784pt;}
.yd2{bottom:131.007167pt;}
.yb0{bottom:138.984039pt;}
.y8a{bottom:138.984048pt;}
.y59{bottom:139.643553pt;}
.y26{bottom:148.553386pt;}
.yd1{bottom:150.876953pt;}
.y29{bottom:158.825851pt;}
.yaf{bottom:158.854160pt;}
.y89{bottom:158.854489pt;}
.y58{bottom:159.498367pt;}
.yed{bottom:166.653640pt;}
.yd0{bottom:170.747393pt;}
.yae{bottom:178.724601pt;}
.y88{bottom:178.724607pt;}
.y28{bottom:179.217452pt;}
.y57{bottom:179.353513pt;}
.yec{bottom:186.508460pt;}
.ycf{bottom:190.617833pt;}
.yad{bottom:198.595047pt;}
.y87{bottom:198.595053pt;}
.y56{bottom:199.208331pt;}
.yeb{bottom:204.906900pt;}
.y23{bottom:207.389653pt;}
.yce{bottom:210.487953pt;}
.y86{bottom:218.465173pt;}
.yac{bottom:218.465497pt;}
.y55{bottom:219.063312pt;}
.yea{bottom:223.305340pt;}
.y22{bottom:227.244633pt;}
.ycd{bottom:230.358727pt;}
.y85{bottom:238.335613pt;}
.yab{bottom:238.335614pt;}
.y54{bottom:238.918292pt;}
.ye9{bottom:243.160153pt;}
.y21{bottom:245.643060pt;}
.ycc{bottom:250.228513pt;}
.yaa{bottom:258.205731pt;}
.y84{bottom:258.206063pt;}
.y53{bottom:258.773273pt;}
.ye8{bottom:263.031245pt;}
.ycb{bottom:270.099299pt;}
.y20{bottom:276.164793pt;}
.y83{bottom:278.076165pt;}
.ya9{bottom:278.076173pt;}
.y52{bottom:278.628253pt;}
.ye7{bottom:282.901042pt;}
.yca{bottom:289.969409pt;}
.ya8{bottom:297.946614pt;}
.y82{bottom:297.946618pt;}
.y51{bottom:298.483233pt;}
.ye6{bottom:302.770827pt;}
.y1f{bottom:306.686359pt;}
.yc9{bottom:309.839529pt;}
.y81{bottom:317.816735pt;}
.ya7{bottom:317.817060pt;}
.y50{bottom:318.338211pt;}
.ye5{bottom:322.641924pt;}
.y1e{bottom:326.541340pt;}
.yc8{bottom:329.710303pt;}
.y80{bottom:337.687173pt;}
.y4f{bottom:338.193192pt;}
.ye4{bottom:342.511713pt;}
.y1d{bottom:346.396327pt;}
.yc7{bottom:349.580084pt;}
.ya6{bottom:357.557286pt;}
.y7f{bottom:357.557622pt;}
.y4e{bottom:358.048172pt;}
.ye3{bottom:362.382813pt;}
.y1c{bottom:366.251299pt;}
.yc6{bottom:369.450850pt;}
.ya5{bottom:377.427724pt;}
.y7e{bottom:377.427735pt;}
.y4d{bottom:377.903153pt;}
.ye2{bottom:382.252610pt;}
.y1b{bottom:386.106279pt;}
.yc5{bottom:389.320975pt;}
.ya4{bottom:397.298177pt;}
.y7d{bottom:397.298180pt;}
.y4c{bottom:397.758133pt;}
.ye1{bottom:402.122391pt;}
.y1a{bottom:405.961259pt;}
.yc4{bottom:409.191088pt;}
.y7c{bottom:417.168294pt;}
.y4b{bottom:417.613113pt;}
.ye0{bottom:421.993485pt;}
.y19{bottom:425.816239pt;}
.yc3{bottom:429.061857pt;}
.y7b{bottom:437.038732pt;}
.y4a{bottom:437.468092pt;}
.ydf{bottom:441.863282pt;}
.y18{bottom:445.671219pt;}
.yc2{bottom:448.931647pt;}
.y7a{bottom:456.909181pt;}
.y49{bottom:457.323076pt;}
.yde{bottom:461.734371pt;}
.y17{bottom:465.526199pt;}
.yc1{bottom:468.802404pt;}
.y79{bottom:476.779294pt;}
.y48{bottom:477.178057pt;}
.ydd{bottom:481.604164pt;}
.y16{bottom:485.381179pt;}
.yc0{bottom:488.672521pt;}
.y78{bottom:496.649740pt;}
.y47{bottom:497.033037pt;}
.ydc{bottom:501.473953pt;}
.y15{bottom:505.236159pt;}
.ybf{bottom:508.542638pt;}
.y77{bottom:516.519844pt;}
.ya3{bottom:516.519852pt;}
.y46{bottom:516.888019pt;}
.ydb{bottom:521.329433pt;}
.y14{bottom:525.091139pt;}
.ybe{bottom:528.413408pt;}
.y76{bottom:536.390297pt;}
.ya2{bottom:536.390302pt;}
.y45{bottom:536.742998pt;}
.yda{bottom:541.184247pt;}
.y13{bottom:544.946119pt;}
.ybd{bottom:548.283201pt;}
.ya1{bottom:556.260740pt;}
.y75{bottom:556.260742pt;}
.y44{bottom:556.597979pt;}
.yd9{bottom:561.039060pt;}
.y12{bottom:564.801099pt;}
.ybc{bottom:568.153967pt;}
.y74{bottom:576.130852pt;}
.ya0{bottom:576.130857pt;}
.y43{bottom:576.452959pt;}
.yd8{bottom:580.894527pt;}
.y11{bottom:584.656079pt;}
.ybb{bottom:588.024087pt;}
.y73{bottom:596.001301pt;}
.y9f{bottom:596.001302pt;}
.y42{bottom:596.307940pt;}
.yd7{bottom:600.749353pt;}
.y10{bottom:604.511063pt;}
.yba{bottom:607.878900pt;}
.y9e{bottom:615.871412pt;}
.y72{bottom:615.871414pt;}
.y41{bottom:616.162917pt;}
.yd6{bottom:620.604164pt;}
.yf{bottom:624.366044pt;}
.yb9{bottom:627.734047pt;}
.y71{bottom:635.741860pt;}
.y9d{bottom:635.741861pt;}
.y40{bottom:636.017898pt;}
.ye{bottom:644.221024pt;}
.y70{bottom:655.612302pt;}
.y3f{bottom:655.872878pt;}
.yd{bottom:664.076005pt;}
.yfc{bottom:672.770828pt;}
.y9c{bottom:675.482420pt;}
.y6f{bottom:675.482581pt;}
.y3e{bottom:675.727859pt;}
.yc{bottom:683.930985pt;}
.yfb{bottom:692.626293pt;}
.y9b{bottom:695.352861pt;}
.y6e{bottom:695.352862pt;}
.y3d{bottom:695.582839pt;}
.yb{bottom:703.785966pt;}
.yfa{bottom:712.481113pt;}
.y6d{bottom:715.222974pt;}
.y9a{bottom:715.222977pt;}
.y3c{bottom:715.437820pt;}
.ya{bottom:723.640946pt;}
.y6c{bottom:735.093420pt;}
.y99{bottom:735.093422pt;}
.y3b{bottom:735.292800pt;}
.yf9{bottom:743.002597pt;}
.y9{bottom:743.495927pt;}
.y98{bottom:754.963868pt;}
.y6b{bottom:754.963876pt;}
.y3a{bottom:755.147780pt;}
.yf8{bottom:762.857413pt;}
.y8{bottom:763.350911pt;}
.y97{bottom:774.833982pt;}
.y6a{bottom:774.834154pt;}
.y39{bottom:775.002763pt;}
.yf7{bottom:782.712233pt;}
.y7{bottom:783.205913pt;}
.y96{bottom:794.704422pt;}
.y69{bottom:794.704435pt;}
.y38{bottom:794.857743pt;}
.yf6{bottom:813.234380pt;}
.y6{bottom:814.547143pt;}
.y95{bottom:814.574540pt;}
.y68{bottom:814.574548pt;}
.y37{bottom:814.712727pt;}
.yf5{bottom:833.089837pt;}
.y94{bottom:834.444987pt;}
.y67{bottom:834.444993pt;}
.y36{bottom:834.567708pt;}
.y5{bottom:848.377950pt;}
.yf4{bottom:852.944653pt;}
.y93{bottom:854.315432pt;}
.y66{bottom:854.315434pt;}
.y35{bottom:854.422688pt;}
.y4{bottom:871.542116pt;}
.yf3{bottom:872.799473pt;}
.y92{bottom:874.185542pt;}
.y65{bottom:874.185719pt;}
.y34{bottom:874.277669pt;}
.y64{bottom:894.055989pt;}
.y91{bottom:894.055991pt;}
.y33{bottom:894.132649pt;}
.yf2{bottom:903.320964pt;}
.y3{bottom:905.372924pt;}
.y90{bottom:913.926104pt;}
.y63{bottom:913.926106pt;}
.y32{bottom:913.987630pt;}
.y1{bottom:922.800008pt;}
.yf1{bottom:923.175781pt;}
.y62{bottom:933.796544pt;}
.y8f{bottom:933.796549pt;}
.y31{bottom:933.842610pt;}
.yf0{bottom:943.031249pt;}
.yb8{bottom:953.666667pt;}
.y8e{bottom:953.666992pt;}
.y61{bottom:953.666993pt;}
.y30{bottom:953.697591pt;}
.yb7{bottom:973.521484pt;}
.y8d{bottom:973.521809pt;}
.y60{bottom:973.537274pt;}
.yef{bottom:973.552084pt;}
.y2f{bottom:973.552571pt;}
.yd5{bottom:993.391927pt;}
.y8c{bottom:993.392249pt;}
.yb6{bottom:993.392252pt;}
.yee{bottom:993.407549pt;}
.y2e{bottom:993.407551pt;}
.yb5{bottom:1013.262369pt;}
.y2d{bottom:1013.262532pt;}
.y5f{bottom:1013.262695pt;}
.yb3{bottom:1028.199869pt;}
.y2a{bottom:1028.200032pt;}
.y5c{bottom:1028.200195pt;}
.h8{height:28.687500pt;}
.h2{height:39.101563pt;}
.hb{height:47.812499pt;}
.h9{height:47.812516pt;}
.ha{height:47.812521pt;}
.h7{height:56.843750pt;}
.h6{height:57.375000pt;}
.h4{height:58.392190pt;}
.h5{height:58.392191pt;}
.h3{height:66.317706pt;}
.hd{height:94.466472pt;}
.hc{height:94.466635pt;}
.he{height:94.466797pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x7{left:113.400004pt;}
.x5{left:124.178523pt;}
.x3{left:137.963915pt;}
.x8{left:160.400004pt;}
.x9{left:212.022273pt;}
.xc{left:299.772274pt;}
.xb{left:328.862114pt;}
.x4{left:331.544425pt;}
.x6{left:337.944153pt;}
.x2{left:396.850414pt;}
.x1{left:565.350414pt;}
.xa{left:629.350384pt;}
}




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