
    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_5b0bd4d0e36390db818c6e10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_3e20bbcc37e30d380b40bbfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_99e307b2f80cd420e71ca401.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_3f4b330337f43124f43ce1bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_95a4d2966d3940e7d704b65a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.768555;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_3a7a4ad9f25255e9bc619354.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759861px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.029240px;}
.ls0{letter-spacing:0.035496px;}
.ls3{letter-spacing:3.053736px;}
.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;}
}
.ws2{word-spacing:-14.970850px;}
.ws0{word-spacing:-12.855389px;}
.ws3{word-spacing:-9.438126px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-14.034453px;}
._c{margin-left:-11.071742px;}
._d{margin-left:-9.556598px;}
._e{margin-left:-6.399048px;}
._b{margin-left:-4.779724px;}
._10{margin-left:-2.791917px;}
._0{margin-left:-1.738195px;}
._1{width:1.953739px;}
._2{width:3.741563px;}
._6{width:4.825884px;}
._5{width:6.305995px;}
._f{width:7.627844px;}
._11{width:8.664815px;}
._12{width:10.264944px;}
._1f{width:11.909713px;}
._20{width:13.308158px;}
._7{width:16.640373px;}
._8{width:17.646541px;}
._1e{width:18.949811px;}
._17{width:54.169975px;}
._1d{width:56.165788px;}
._14{width:58.506536px;}
._13{width:161.591045px;}
._15{width:208.054606px;}
._1a{width:225.335930px;}
._18{width:261.949246px;}
._1c{width:342.342274px;}
._19{width:355.590814px;}
._16{width:373.294434px;}
._1b{width:376.523507px;}
._3{width:758.005120px;}
._9{width:848.833958px;}
._4{width:1050.273864px;}
.fc5{color:rgb(31,77,120);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(46,116,181);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.761620px;}
.fs2{font-size:54.002250px;}
.fs7{font-size:56.882250px;}
.fs3{font-size:59.762250px;}
.fs6{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs9{font-size:77.763154px;}
.fs1{font-size:84.243145px;}
.fs8{font-size:95.763600px;}
.fs5{font-size:108.004050px;}
.fs4{font-size:120.244505px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.960021px;}
.y12{bottom:57.600083px;}
.ya5{bottom:148.320099px;}
.y53{bottom:149.220085px;}
.y47{bottom:153.360077px;}
.y60{bottom:154.980079px;}
.y91{bottom:155.160049px;}
.yb{bottom:171.360077px;}
.ya4{bottom:171.900055px;}
.y5f{bottom:174.420043px;}
.y10{bottom:175.140060px;}
.y90{bottom:178.200096px;}
.y52{bottom:180.540047px;}
.yc5{bottom:181.440033px;}
.ya3{bottom:192.060036px;}
.y5e{bottom:192.780052px;}
.y46{bottom:196.920043px;}
.y8f{bottom:201.960091px;}
.yc4{bottom:202.860077px;}
.yf{bottom:203.400055px;}
.y5d{bottom:211.140060px;}
.ya2{bottom:220.140060px;}
.y51{bottom:221.040047px;}
.ye{bottom:222.660049px;}
.y8e{bottom:225.720085px;}
.y45{bottom:228.240074px;}
.y5c{bottom:229.320099px;}
.yc3{bottom:236.880066px;}
.yd{bottom:241.740074px;}
.y5b{bottom:247.680039px;}
.y50{bottom:248.940033px;}
.y8d{bottom:249.300041px;}
.yc2{bottom:258.300041px;}
.y44{bottom:268.740074px;}
.y8c{bottom:272.520058px;}
.ya{bottom:274.860077px;}
.y5a{bottom:275.580093px;}
.yc1{bottom:280.080093px;}
.y7e{bottom:283.140060px;}
.y43{bottom:288.360077px;}
.y8b{bottom:295.740074px;}
.yc0{bottom:301.860077px;}
.y7d{bottom:306.900055px;}
.y9{bottom:308.340088px;}
.y8a{bottom:318.780052px;}
.y7c{bottom:330.120072px;}
.ybf{bottom:335.700096px;}
.y89{bottom:342.540047px;}
.y7b{bottom:353.160049px;}
.ybe{bottom:357.300041px;}
.y88{bottom:373.860077px;}
.y7a{bottom:376.380066px;}
.ybd{bottom:391.320099px;}
.y79{bottom:407.700096px;}
.ybc{bottom:412.740074px;}
.y87{bottom:415.260064px;}
.y2a{bottom:427.860077px;}
.ybb{bottom:434.520058px;}
.y86{bottom:444.420043px;}
.y78{bottom:449.100083px;}
.yba{bottom:456.300041px;}
.y29{bottom:461.700096px;}
.yb9{bottom:478.080093px;}
.y77{bottom:482.760064px;}
.y28{bottom:495.360077px;}
.yb8{bottom:511.920043px;}
.y76{bottom:516.420043px;}
.ya1{bottom:521.640060px;}
.yb7{bottom:533.520058px;}
.y27{bottom:537.480079px;}
.y75{bottom:550.260064px;}
.yb6{bottom:567.360077px;}
.y26{bottom:567.720085px;}
.y74{bottom:583.920043px;}
.yb5{bottom:588.960091px;}
.y25{bottom:597.780052px;}
.yb4{bottom:613.440033px;}
.y73{bottom:617.760064px;}
.y24{bottom:628.020058px;}
.y59{bottom:636.840088px;}
.y72{bottom:651.420043px;}
.y23{bottom:660.240074px;}
.yb3{bottom:660.420043px;}
.y58{bottom:660.600083px;}
.yb2{bottom:680.400055px;}
.y71{bottom:685.080093px;}
.y22{bottom:692.280052px;}
.y57{bottom:694.440067px;}
.y9f{bottom:695.340054px;}
.y85{bottom:703.260064px;}
.y39{bottom:703.620072px;}
.yb1{bottom:704.880066px;}
.y70{bottom:705.060070px;}
.y56{bottom:713.880066px;}
.y9e{bottom:718.380066px;}
.y84{bottom:724.860077px;}
.y6f{bottom:725.220051px;}
.y21{bottom:726.300076px;}
.y55{bottom:728.280052px;}
.y8{bottom:730.800076px;}
.y38{bottom:737.460056px;}
.y9d{bottom:741.420078px;}
.y20{bottom:746.280052px;}
.yb0{bottom:750.240074px;}
.y83{bottom:758.700061px;}
.y6e{bottom:759.240074px;}
.yd1{bottom:759.600083px;}
.y9c{bottom:764.640060px;}
.y1f{bottom:766.440067px;}
.y37{bottom:766.620072px;}
.y7{bottom:769.500068px;}
.yaf{bottom:770.400055px;}
.y4f{bottom:777.960056px;}
.y82{bottom:778.140060px;}
.y6d{bottom:782.100083px;}
.yd0{bottom:782.820065px;}
.y1e{bottom:786.600083px;}
.y9b{bottom:788.400055px;}
.yae{bottom:790.560070px;}
.y36{bottom:795.780052px;}
.y81{bottom:796.500068px;}
.y4e{bottom:799.380066px;}
.y6c{bottom:805.320065px;}
.ycf{bottom:805.860077px;}
.y1d{bottom:806.760064px;}
.y6{bottom:808.200061px;}
.y9a{bottom:811.980079px;}
.y42{bottom:814.140060px;}
.y80{bottom:814.860077px;}
.y4d{bottom:821.160049px;}
.ya0{bottom:821.520058px;}
.yad{bottom:822.240074px;}
.y35{bottom:825.120072px;}
.y6b{bottom:829.080059px;}
.y99{bottom:835.200061px;}
.y1c{bottom:838.800076px;}
.y7f{bottom:842.760064px;}
.y41{bottom:847.980079px;}
.y4c{bottom:850.500068px;}
.y6a{bottom:852.120072px;}
.yce{bottom:852.300076px;}
.y34{bottom:854.280052px;}
.y5{bottom:857.160049px;}
.y98{bottom:858.420078px;}
.yac{bottom:865.080059px;}
.y40{bottom:869.580059px;}
.y1b{bottom:871.020058px;}
.y69{bottom:875.340054px;}
.ycd{bottom:875.520058px;}
.y97{bottom:881.460056px;}
.y33{bottom:883.620072px;}
.yab{bottom:886.680073px;}
.y1a{bottom:891.180073px;}
.y68{bottom:898.560070px;}
.y4{bottom:904.320065px;}
.y32{bottom:912.780052px;}
.y3f{bottom:912.960056px;}
.yaa{bottom:918.360077px;}
.ycc{bottom:921.780052px;}
.y67{bottom:922.140060px;}
.y19{bottom:923.220051px;}
.y3{bottom:940.860077px;}
.y31{bottom:941.940067px;}
.y3e{bottom:944.640060px;}
.y66{bottom:945.900055px;}
.y18{bottom:955.440067px;}
.ycb{bottom:955.620072px;}
.ya9{bottom:959.580059px;}
.y65{bottom:969.480079px;}
.y30{bottom:971.280053px;}
.yca{bottom:977.220068px;}
.y96{bottom:979.020058px;}
.ya8{bottom:979.560070px;}
.y2{bottom:980.640060px;}
.y17{bottom:987.480063px;}
.y3d{bottom:990.000068px;}
.y64{bottom:992.700061px;}
.yc9{bottom:999.000068px;}
.y2f{bottom:1000.440067px;}
.y95{bottom:1002.240074px;}
.ya7{bottom:1002.780069px;}
.y1{bottom:1014.300058px;}
.y63{bottom:1016.460074px;}
.y16{bottom:1019.700061px;}
.y94{bottom:1025.460074px;}
.ya6{bottom:1026.000068px;}
.y2e{bottom:1029.780069px;}
.yc8{bottom:1032.840070px;}
.y3c{bottom:1035.360060px;}
.y4b{bottom:1042.380066px;}
.y93{bottom:1049.040064px;}
.y62{bottom:1050.300058px;}
.y15{bottom:1051.740074px;}
.yc7{bottom:1054.440067px;}
.y3b{bottom:1055.520058px;}
.y2d{bottom:1058.940067px;}
.y92{bottom:1072.800058px;}
.y61{bottom:1073.340070px;}
.y3a{bottom:1075.680073px;}
.yc6{bottom:1076.220068px;}
.y4a{bottom:1076.400072px;}
.y14{bottom:1083.960074px;}
.y2c{bottom:1088.280069px;}
.y54{bottom:1096.560070px;}
.y49{bottom:1097.820065px;}
.y2b{bottom:1112.580059px;}
.y13{bottom:1118.340070px;}
.y48{bottom:1119.600065px;}
.y11{bottom:1196.100065px;}
.h6{height:19.799972px;}
.hd{height:50.361271px;}
.h11{height:50.587687px;}
.h8{height:56.576730px;}
.hf{height:59.441261px;}
.he{height:61.192109px;}
.h7{height:65.886904px;}
.ha{height:67.827608px;}
.h10{height:68.557263px;}
.h2{height:71.615971px;}
.h9{height:73.725425px;}
.hc{height:74.042066px;}
.h3{height:86.258729px;}
.hb{height:91.181162px;}
.h5{height:107.423950px;}
.h4{height:119.598660px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:8.280001px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.959997px;}
.x12{left:87.299998px;}
.x8{left:101.519998px;}
.x13{left:104.400003px;}
.xf{left:109.799998px;}
.x16{left:115.739997px;}
.x9{left:117.900003px;}
.x5{left:212.759994px;}
.xe{left:220.319996px;}
.xc{left:228.599997px;}
.x6{left:235.979994px;}
.x4{left:446.399987px;}
.x1{left:553.500000px;}
.xb{left:685.259994px;}
.xd{left:729.899987px;}
.x3{left:748.259994px;}
.x10{left:762.120002px;}
.x11{left:784.980011px;}
.x14{left:791.100014px;}
.x15{left:795.960023px;}
.x7{left:799.559967px;}
.xa{left:809.460023px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119876pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.025991pt;}
.ls0{letter-spacing:0.031552pt;}
.ls3{letter-spacing:2.714432pt;}
.ws2{word-spacing:-13.307422pt;}
.ws0{word-spacing:-11.427012pt;}
.ws3{word-spacing:-8.389445pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-12.475070pt;}
._c{margin-left:-9.841549pt;}
._d{margin-left:-8.494754pt;}
._e{margin-left:-5.688042pt;}
._b{margin-left:-4.248644pt;}
._10{margin-left:-2.481704pt;}
._0{margin-left:-1.545062pt;}
._1{width:1.736657pt;}
._2{width:3.325834pt;}
._6{width:4.289675pt;}
._5{width:5.605328pt;}
._f{width:6.780305pt;}
._11{width:7.702058pt;}
._12{width:9.124395pt;}
._1f{width:10.586412pt;}
._20{width:11.829474pt;}
._7{width:14.791443pt;}
._8{width:15.685814pt;}
._1e{width:16.844277pt;}
._17{width:48.151089pt;}
._1d{width:49.925145pt;}
._14{width:52.005810pt;}
._13{width:143.636485pt;}
._15{width:184.937428pt;}
._1a{width:200.298604pt;}
._18{width:232.843775pt;}
._1c{width:304.304243pt;}
._19{width:316.080723pt;}
._16{width:331.817275pt;}
._1b{width:334.687562pt;}
._3{width:673.782329pt;}
._9{width:754.519074pt;}
._4{width:933.576768pt;}
.fsa{font-size:37.121440pt;}
.fs2{font-size:48.002000pt;}
.fs7{font-size:50.562000pt;}
.fs3{font-size:53.122000pt;}
.fs6{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs9{font-size:69.122804pt;}
.fs1{font-size:74.882796pt;}
.fs8{font-size:85.123200pt;}
.fs5{font-size:96.003600pt;}
.fs4{font-size:106.884004pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.520019pt;}
.y12{bottom:51.200074pt;}
.ya5{bottom:131.840088pt;}
.y53{bottom:132.640076pt;}
.y47{bottom:136.320069pt;}
.y60{bottom:137.760071pt;}
.y91{bottom:137.920044pt;}
.yb{bottom:152.320069pt;}
.ya4{bottom:152.800049pt;}
.y5f{bottom:155.040039pt;}
.y10{bottom:155.680054pt;}
.y90{bottom:158.400086pt;}
.y52{bottom:160.480042pt;}
.yc5{bottom:161.280030pt;}
.ya3{bottom:170.720032pt;}
.y5e{bottom:171.360047pt;}
.y46{bottom:175.040039pt;}
.y8f{bottom:179.520081pt;}
.yc4{bottom:180.320069pt;}
.yf{bottom:180.800049pt;}
.y5d{bottom:187.680054pt;}
.ya2{bottom:195.680054pt;}
.y51{bottom:196.480042pt;}
.ye{bottom:197.920044pt;}
.y8e{bottom:200.640076pt;}
.y45{bottom:202.880066pt;}
.y5c{bottom:203.840088pt;}
.yc3{bottom:210.560059pt;}
.yd{bottom:214.880066pt;}
.y5b{bottom:220.160035pt;}
.y50{bottom:221.280030pt;}
.y8d{bottom:221.600037pt;}
.yc2{bottom:229.600037pt;}
.y44{bottom:238.880066pt;}
.y8c{bottom:242.240052pt;}
.ya{bottom:244.320069pt;}
.y5a{bottom:244.960083pt;}
.yc1{bottom:248.960083pt;}
.y7e{bottom:251.680054pt;}
.y43{bottom:256.320069pt;}
.y8b{bottom:262.880066pt;}
.yc0{bottom:268.320069pt;}
.y7d{bottom:272.800049pt;}
.y9{bottom:274.080079pt;}
.y8a{bottom:283.360047pt;}
.y7c{bottom:293.440064pt;}
.ybf{bottom:298.400086pt;}
.y89{bottom:304.480042pt;}
.y7b{bottom:313.920044pt;}
.ybe{bottom:317.600037pt;}
.y88{bottom:332.320069pt;}
.y7a{bottom:334.560059pt;}
.ybd{bottom:347.840088pt;}
.y79{bottom:362.400086pt;}
.ybc{bottom:366.880066pt;}
.y87{bottom:369.120057pt;}
.y2a{bottom:380.320069pt;}
.ybb{bottom:386.240052pt;}
.y86{bottom:395.040039pt;}
.y78{bottom:399.200074pt;}
.yba{bottom:405.600037pt;}
.y29{bottom:410.400086pt;}
.yb9{bottom:424.960083pt;}
.y77{bottom:429.120057pt;}
.y28{bottom:440.320069pt;}
.yb8{bottom:455.040039pt;}
.y76{bottom:459.040039pt;}
.ya1{bottom:463.680054pt;}
.yb7{bottom:474.240052pt;}
.y27{bottom:477.760071pt;}
.y75{bottom:489.120057pt;}
.yb6{bottom:504.320069pt;}
.y26{bottom:504.640076pt;}
.y74{bottom:519.040039pt;}
.yb5{bottom:523.520081pt;}
.y25{bottom:531.360047pt;}
.yb4{bottom:545.280030pt;}
.y73{bottom:549.120057pt;}
.y24{bottom:558.240052pt;}
.y59{bottom:566.080079pt;}
.y72{bottom:579.040039pt;}
.y23{bottom:586.880066pt;}
.yb3{bottom:587.040039pt;}
.y58{bottom:587.200074pt;}
.yb2{bottom:604.800049pt;}
.y71{bottom:608.960083pt;}
.y22{bottom:615.360047pt;}
.y57{bottom:617.280060pt;}
.y9f{bottom:618.080048pt;}
.y85{bottom:625.120057pt;}
.y39{bottom:625.440064pt;}
.yb1{bottom:626.560059pt;}
.y70{bottom:626.720063pt;}
.y56{bottom:634.560059pt;}
.y9e{bottom:638.560059pt;}
.y84{bottom:644.320069pt;}
.y6f{bottom:644.640046pt;}
.y21{bottom:645.600068pt;}
.y55{bottom:647.360047pt;}
.y8{bottom:649.600068pt;}
.y38{bottom:655.520050pt;}
.y9d{bottom:659.040070pt;}
.y20{bottom:663.360047pt;}
.yb0{bottom:666.880066pt;}
.y83{bottom:674.400055pt;}
.y6e{bottom:674.880066pt;}
.yd1{bottom:675.200074pt;}
.y9c{bottom:679.680054pt;}
.y1f{bottom:681.280060pt;}
.y37{bottom:681.440064pt;}
.y7{bottom:684.000061pt;}
.yaf{bottom:684.800049pt;}
.y4f{bottom:691.520050pt;}
.y82{bottom:691.680054pt;}
.y6d{bottom:695.200074pt;}
.yd0{bottom:695.840058pt;}
.y1e{bottom:699.200074pt;}
.y9b{bottom:700.800049pt;}
.yae{bottom:702.720063pt;}
.y36{bottom:707.360047pt;}
.y81{bottom:708.000061pt;}
.y4e{bottom:710.560059pt;}
.y6c{bottom:715.840058pt;}
.ycf{bottom:716.320069pt;}
.y1d{bottom:717.120057pt;}
.y6{bottom:718.400055pt;}
.y9a{bottom:721.760071pt;}
.y42{bottom:723.680054pt;}
.y80{bottom:724.320069pt;}
.y4d{bottom:729.920044pt;}
.ya0{bottom:730.240052pt;}
.yad{bottom:730.880066pt;}
.y35{bottom:733.440064pt;}
.y6b{bottom:736.960053pt;}
.y99{bottom:742.400055pt;}
.y1c{bottom:745.600068pt;}
.y7f{bottom:749.120057pt;}
.y41{bottom:753.760071pt;}
.y4c{bottom:756.000061pt;}
.y6a{bottom:757.440064pt;}
.yce{bottom:757.600068pt;}
.y34{bottom:759.360047pt;}
.y5{bottom:761.920044pt;}
.y98{bottom:763.040070pt;}
.yac{bottom:768.960053pt;}
.y40{bottom:772.960053pt;}
.y1b{bottom:774.240052pt;}
.y69{bottom:778.080048pt;}
.ycd{bottom:778.240052pt;}
.y97{bottom:783.520050pt;}
.y33{bottom:785.440064pt;}
.yab{bottom:788.160065pt;}
.y1a{bottom:792.160065pt;}
.y68{bottom:798.720063pt;}
.y4{bottom:803.840058pt;}
.y32{bottom:811.360047pt;}
.y3f{bottom:811.520050pt;}
.yaa{bottom:816.320069pt;}
.ycc{bottom:819.360047pt;}
.y67{bottom:819.680054pt;}
.y19{bottom:820.640046pt;}
.y3{bottom:836.320069pt;}
.y31{bottom:837.280060pt;}
.y3e{bottom:839.680054pt;}
.y66{bottom:840.800049pt;}
.y18{bottom:849.280060pt;}
.ycb{bottom:849.440064pt;}
.ya9{bottom:852.960053pt;}
.y65{bottom:861.760071pt;}
.y30{bottom:863.360047pt;}
.yca{bottom:868.640061pt;}
.y96{bottom:870.240052pt;}
.ya8{bottom:870.720063pt;}
.y2{bottom:871.680054pt;}
.y17{bottom:877.760056pt;}
.y3d{bottom:880.000061pt;}
.y64{bottom:882.400055pt;}
.yc9{bottom:888.000061pt;}
.y2f{bottom:889.280060pt;}
.y95{bottom:890.880066pt;}
.ya7{bottom:891.360062pt;}
.y1{bottom:901.600052pt;}
.y63{bottom:903.520066pt;}
.y16{bottom:906.400055pt;}
.y94{bottom:911.520066pt;}
.ya6{bottom:912.000061pt;}
.y2e{bottom:915.360062pt;}
.yc8{bottom:918.080063pt;}
.y3c{bottom:920.320054pt;}
.y4b{bottom:926.560059pt;}
.y93{bottom:932.480057pt;}
.y62{bottom:933.600052pt;}
.y15{bottom:934.880066pt;}
.yc7{bottom:937.280060pt;}
.y3b{bottom:938.240052pt;}
.y2d{bottom:941.280060pt;}
.y92{bottom:953.600052pt;}
.y61{bottom:954.080063pt;}
.y3a{bottom:956.160065pt;}
.yc6{bottom:956.640061pt;}
.y4a{bottom:956.800064pt;}
.y14{bottom:963.520066pt;}
.y2c{bottom:967.360062pt;}
.y54{bottom:974.720063pt;}
.y49{bottom:975.840058pt;}
.y2b{bottom:988.960053pt;}
.y13{bottom:994.080063pt;}
.y48{bottom:995.200058pt;}
.y11{bottom:1063.200058pt;}
.h6{height:17.599975pt;}
.hd{height:44.765575pt;}
.h11{height:44.966833pt;}
.h8{height:50.290427pt;}
.hf{height:52.836677pt;}
.he{height:54.392985pt;}
.h7{height:58.566137pt;}
.ha{height:60.291207pt;}
.h10{height:60.939789pt;}
.h2{height:63.658641pt;}
.h9{height:65.533712pt;}
.hc{height:65.815170pt;}
.h3{height:76.674425pt;}
.hb{height:81.049922pt;}
.h5{height:95.487956pt;}
.h4{height:106.309920pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:7.360001pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.519997pt;}
.x12{left:77.599998pt;}
.x8{left:90.239998pt;}
.x13{left:92.800003pt;}
.xf{left:97.599998pt;}
.x16{left:102.879997pt;}
.x9{left:104.800003pt;}
.x5{left:189.119995pt;}
.xe{left:195.839996pt;}
.xc{left:203.199997pt;}
.x6{left:209.759995pt;}
.x4{left:396.799988pt;}
.x1{left:492.000000pt;}
.xb{left:609.119995pt;}
.xd{left:648.799988pt;}
.x3{left:665.119995pt;}
.x10{left:677.440002pt;}
.x11{left:697.760010pt;}
.x14{left:703.200012pt;}
.x15{left:707.520020pt;}
.x7{left:710.719971pt;}
.xa{left:719.520020pt;}
}




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