
    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_2416069e233ee0443326827a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_e6f3aa79bfbd415c5943bf53.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926758;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_07aa98d448e2cddd7411856a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_aafa3a5261c016cddc8efeb3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_ddf92f7bae01b77e3936bf06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.122070;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_a83e245610c3b96ea643b3b4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.122070;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.133269,0.211517,-0.211515,0.133272,0,0);-ms-transform:matrix(0.133269,0.211517,-0.211515,0.133272,0,0);-webkit-transform:matrix(0.133269,0.211517,-0.211515,0.133272,0,0);}
.m4{transform:matrix(0.135349,-0.210192,0.210127,0.135450,0,0);-ms-transform:matrix(0.135349,-0.210192,0.210127,0.135450,0,0);-webkit-transform:matrix(0.135349,-0.210192,0.210127,0.135450,0,0);}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,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);}
.m3{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:92.500540px;}
.v2{vertical-align:136.800004px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.121079px;}
.ls3{letter-spacing:46.922733px;}
.ls5{letter-spacing:46.936389px;}
.ls9{letter-spacing:53.972231px;}
.ls7{letter-spacing:76.472164px;}
.ls1{letter-spacing:81.000426px;}
.ls2{letter-spacing:107.972165px;}
.ls4{letter-spacing:108.000498px;}
.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;}
}
.wsd{word-spacing:-67.392002px;}
.ws11{word-spacing:-54.288004px;}
.ws13{word-spacing:-52.416000px;}
.wsf{word-spacing:-42.048001px;}
.ws12{word-spacing:-41.184007px;}
.ws6{word-spacing:-41.184002px;}
.ws10{word-spacing:-40.296000px;}
.ws5{word-spacing:-38.544002px;}
.ws3{word-spacing:-37.440000px;}
.wsa{word-spacing:-35.568002px;}
.ws7{word-spacing:-35.280001px;}
.ws4{word-spacing:-35.040000px;}
.ws2{word-spacing:-33.696001px;}
.ws8{word-spacing:-32.634003px;}
.ws9{word-spacing:-32.340002px;}
.wsc{word-spacing:-32.034002px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:39.124266px;}
.ws1{word-spacing:74.839038px;}
.wse{word-spacing:93.128883px;}
._f{margin-left:-14.520001px;}
._15{margin-left:-12.972000px;}
._4{margin-left:-11.040000px;}
._14{margin-left:-9.570001px;}
._c{margin-left:-8.400000px;}
._0{margin-left:-7.128000px;}
._2{margin-left:-5.508000px;}
._5{margin-left:-4.440000px;}
._1{margin-left:-2.916000px;}
._3{margin-left:-1.296000px;}
._6{width:1.756183px;}
._13{width:2.919996px;}
._12{width:76.656170px;}
._11{width:81.049474px;}
._10{width:367.677734px;}
._9{width:525.516047px;}
._8{width:591.240042px;}
._d{width:724.074215px;}
._a{width:800.856043px;}
._e{width:886.685428px;}
._7{width:952.296050px;}
._b{width:981.360050px;}
.fcb{color:rgb(213,219,229);}
.fca{color:rgb(129,222,253);}
.fc9{color:rgb(137,29,83);}
.fc7{color:rgb(5,99,193);}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(106,168,79);}
.fc5{color:rgb(56,134,0);}
.fc4{color:rgb(255,153,0);}
.fc3{color:rgb(11,105,163);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs16{font-size:84.000000px;}
.fs3{font-size:96.000006px;}
.fs6{font-size:108.000003px;}
.fs1{font-size:114.000007px;}
.fs2{font-size:120.000001px;}
.fs15{font-size:122.376469px;}
.fs7{font-size:126.000004px;}
.fs8{font-size:132.000007px;}
.fs12{font-size:132.000023px;}
.fsc{font-size:133.200013px;}
.fs9{font-size:134.614123px;}
.fs10{font-size:138.000001px;}
.fsb{font-size:144.000005px;}
.fse{font-size:149.999999px;}
.fs5{font-size:156.000011px;}
.fs13{font-size:167.999999px;}
.fs11{font-size:174.000012px;}
.fsf{font-size:177.600007px;}
.fsd{font-size:183.000012px;}
.fs4{font-size:216.000007px;}
.fs14{font-size:244.680006px;}
.fsa{font-size:288.000009px;}
.fs0{font-size:324.000010px;}
.y0{bottom:0.000000px;}
.y8{bottom:35.337811px;}
.y79{bottom:43.492093px;}
.y8d{bottom:46.834547px;}
.y3a{bottom:48.282951px;}
.ycc{bottom:54.781178px;}
.ya8{bottom:58.770777px;}
.yc0{bottom:60.593381px;}
.yc7{bottom:63.488181px;}
.y9f{bottom:70.980931px;}
.y78{bottom:77.692094px;}
.yb0{bottom:81.696028px;}
.y8c{bottom:88.234548px;}
.y39{bottom:89.682952px;}
.yc6{bottom:104.888182px;}
.y61{bottom:106.822114px;}
.y23{bottom:107.918426px;}
.ycb{bottom:109.819429px;}
.y3{bottom:110.113336px;}
.y77{bottom:111.892095px;}
.y57{bottom:122.310934px;}
.y98{bottom:125.371486px;}
.y63{bottom:128.025293px;}
.y8b{bottom:129.634549px;}
.y2d{bottom:130.861452px;}
.y38{bottom:131.082953px;}
.y22{bottom:137.078393px;}
.yc5{bottom:146.288184px;}
.y60{bottom:148.222111px;}
.y97{bottom:161.281464px;}
.y43{bottom:163.501067px;}
.y55{bottom:163.710924px;}
.y82{bottom:164.254344px;}
.ya7{bottom:165.817419px;}
.y21{bottom:166.238383px;}
.y2c{bottom:166.861453px;}
.y62{bottom:169.425287px;}
.y6b{bottom:171.969730px;}
.yb8{bottom:175.318810px;}
.y6e{bottom:177.086514px;}
.y7{bottom:186.268536px;}
.yc4{bottom:187.688151px;}
.y8a{bottom:188.554559px;}
.y5f{bottom:189.622105px;}
.y12{bottom:194.137844px;}
.y37{bottom:194.982922px;}
.y96{bottom:197.191454px;}
.y68{bottom:197.875330px;}
.y2b{bottom:202.861454px;}
.y54{bottom:205.110914px;}
.y81{bottom:205.654334px;}
.y42{bottom:206.971057px;}
.y4b{bottom:206.982869px;}
.ybf{bottom:208.098689px;}
.y6c{bottom:210.489742px;}
.y6a{bottom:211.569735px;}
.y20{bottom:217.898362px;}
.yca{bottom:222.682740px;}
.yb7{bottom:222.928834px;}
.ya6{bottom:227.089399px;}
.y67{bottom:229.843338px;}
.y11{bottom:235.537834px;}
.y36{bottom:236.382912px;}
.y6d{bottom:242.930131px;}
.y53{bottom:246.510904px;}
.y1f{bottom:247.058341px;}
.y6{bottom:250.168550px;}
.y41{bottom:250.441036px;}
.y4a{bottom:250.452848px;}
.y69{bottom:251.169734px;}
.y95{bottom:255.601434px;}
.y80{bottom:262.054299px;}
.y5e{bottom:264.055055px;}
.yc3{bottom:270.488131px;}
.yb6{bottom:270.538835px;}
.y2a{bottom:274.861457px;}
.y10{bottom:276.937824px;}
.y89{bottom:277.114517px;}
.y35{bottom:282.282902px;}
.ya5{bottom:284.833401px;}
.y52{bottom:287.910895px;}
.y94{bottom:291.511401px;}
.y5{bottom:291.568546px;}
.y40{bottom:293.911037px;}
.y49{bottom:293.922850px;}
.yc9{bottom:297.202742px;}
.y1e{bottom:298.718320px;}
.ybc{bottom:301.873039px;}
.yaf{bottom:303.010465px;}
.y7f{bottom:303.454289px;}
.y5d{bottom:309.595023px;}
.y88{bottom:318.514518px;}
.y34{bottom:323.682892px;}
.y93{bottom:327.421436px;}
.y1d{bottom:327.878343px;}
.y51{bottom:329.310873px;}
.y4{bottom:332.968543px;}
.yb5{bottom:333.148800px;}
.y9e{bottom:333.349522px;}
.ya4{bottom:338.041402px;}
.yf{bottom:340.837804px;}
.y7e{bottom:344.854279px;}
.ybd{bottom:346.715765px;}
.y29{bottom:352.261448px;}
.ybb{bottom:353.623035px;}
.yae{bottom:356.218455px;}
.y66{bottom:356.282265px;}
.y87{bottom:359.914497px;}
.y33{bottom:369.582871px;}
.y56{bottom:370.710863px;}
.y65{bottom:376.357137px;}
.y1c{bottom:379.538345px;}
.yb4{bottom:380.758801px;}
.y5c{bottom:382.135036px;}
.ye{bottom:382.237794px;}
.y92{bottom:385.831426px;}
.y9d{bottom:386.557513px;}
.ya3{bottom:395.785404px;}
.y7d{bottom:401.254277px;}
.y86{bottom:401.314487px;}
.y1b{bottom:408.698335px;}
.y3f{bottom:410.851033px;}
.y48{bottom:410.862846px;}
.y32{bottom:410.982861px;}
.y28{bottom:416.161439px;}
.yad{bottom:417.490457px;}
.yd{bottom:423.637784px;}
.y50{bottom:427.110828px;}
.y2{bottom:435.955719px;}
.y85{bottom:442.714499px;}
.yb3{bottom:443.368777px;}
.y9c{bottom:447.829492px;}
.ya2{bottom:448.993406px;}
.yc8{bottom:450.202743px;}
.y3e{bottom:454.321039px;}
.y47{bottom:454.332852px;}
.y5b{bottom:454.675027px;}
.y31{bottom:456.882851px;}
.y27{bottom:457.561429px;}
.y7c{bottom:460.174264px;}
.y1a{bottom:460.358331px;}
.y4f{bottom:468.510840px;}
.yc2{bottom:474.248093px;}
.y91{bottom:474.481418px;}
.yac{bottom:478.762459px;}
.y73{bottom:480.550377px;}
.y76{bottom:481.312182px;}
.y84{bottom:484.114501px;}
.yc{bottom:487.537797px;}
.yb2{bottom:490.978773px;}
.y3d{bottom:497.791036px;}
.y46{bottom:497.802849px;}
.ybe{bottom:499.582452px;}
.y9b{bottom:505.573494px;}
.y4e{bottom:509.910830px;}
.ya1{bottom:510.265408px;}
.y19{bottom:512.018327px;}
.y90{bottom:514.171419px;}
.y72{bottom:514.750378px;}
.y75{bottom:515.512183px;}
.y30{bottom:520.782864px;}
.y26{bottom:521.461415px;}
.y5a{bottom:527.215030px;}
.yb{bottom:528.937794px;}
.yb1{bottom:538.588769px;}
.yab{bottom:540.034461px;}
.y18{bottom:541.178328px;}
.y3c{bottom:541.261038px;}
.y45{bottom:541.272850px;}
.y83{bottom:543.034488px;}
.y1{bottom:547.735722px;}
.y71{bottom:548.950379px;}
.y74{bottom:549.712184px;}
.y4d{bottom:551.310827px;}
.y9a{bottom:558.781496px;}
.y2f{bottom:562.182861px;}
.ya{bottom:570.337791px;}
.y17{bottom:570.338331px;}
.ya0{bottom:571.537410px;}
.y59{bottom:572.755031px;}
.y8f{bottom:578.161410px;}
.y25{bottom:585.361413px;}
.y4c{bottom:592.710824px;}
.y2e{bottom:603.582858px;}
.yaa{bottom:636.999251px;}
.yba{bottom:637.701550px;}
.y70{bottom:644.127753px;}
.yc1{bottom:649.781003px;}
.y16{bottom:653.063712px;}
.y64{bottom:658.521726px;}
.y7b{bottom:658.616105px;}
.y58{bottom:683.103778px;}
.y44{bottom:688.287781px;}
.y24{bottom:688.287900px;}
.y9{bottom:694.999277px;}
.y15{bottom:695.183719px;}
.y3b{bottom:697.014328px;}
.y8e{bottom:697.379374px;}
.y99{bottom:697.386756px;}
.ya9{bottom:711.519259px;}
.yb9{bottom:712.221543px;}
.y6f{bottom:718.647752px;}
.y7a{bottom:721.751113px;}
.y14{bottom:737.303712px;}
.y13{bottom:1453.343743px;}
.h20{height:61.154297px;}
.h6{height:91.757813px;}
.h4{height:96.046881px;}
.h9{height:96.345706px;}
.h11{height:98.340005px;}
.h10{height:99.234010px;}
.h17{height:103.312506px;}
.hf{height:107.280003px;}
.h8{height:108.052738px;}
.h14{height:110.109379px;}
.h2{height:114.055671px;}
.h16{height:114.187504px;}
.h3{height:120.058595px;}
.h1f{height:122.436223px;}
.ha{height:126.061527px;}
.h1c{height:128.460937px;}
.hb{height:132.064460px;}
.h1b{height:132.064476px;}
.hc{height:134.679852px;}
.h19{height:138.067384px;}
.h18{height:144.070317px;}
.h15{height:150.073241px;}
.h7{height:156.076183px;}
.h1e{height:168.082031px;}
.h1a{height:174.084973px;}
.h13{height:183.089367px;}
.he{height:199.780544px;}
.h5{height:216.105476px;}
.h1d{height:244.799479px;}
.h12{height:250.855675px;}
.hd{height:288.140634px;}
.h1{height:324.158213px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1c{left:90.205862px;}
.x43{left:98.560044px;}
.x11{left:100.653596px;}
.x30{left:115.916824px;}
.x1{left:119.627712px;}
.x4b{left:131.720205px;}
.x55{left:133.691933px;}
.x1d{left:135.318904px;}
.x12{left:136.540512px;}
.x9{left:138.780128px;}
.xa{left:140.769774px;}
.x18{left:148.829202px;}
.x31{left:155.516832px;}
.x58{left:161.536415px;}
.x4e{left:165.473077px;}
.x16{left:168.306260px;}
.x15{left:169.356797px;}
.x8{left:171.505513px;}
.x20{left:173.085382px;}
.x13{left:181.653553px;}
.xb{left:192.779534px;}
.x19{left:194.855327px;}
.x48{left:198.605326px;}
.x4f{left:199.804135px;}
.x21{left:204.751480px;}
.x14{left:208.653554px;}
.x17{left:213.419302px;}
.x49{left:228.563985px;}
.x33{left:230.570689px;}
.x3c{left:233.144597px;}
.x3b{left:235.572386px;}
.x32{left:238.030511px;}
.x2a{left:239.172227px;}
.x47{left:242.902695px;}
.x42{left:244.833679px;}
.x28{left:250.810258px;}
.x34{left:266.675341px;}
.x7{left:270.015556px;}
.x2b{left:288.978320px;}
.x2{left:293.275427px;}
.x5b{left:301.125603px;}
.x4c{left:316.178397px;}
.x27{left:317.229344px;}
.x3{left:334.836187px;}
.x4d{left:353.148143px;}
.x56{left:384.726387px;}
.x24{left:414.856127px;}
.x23{left:440.700340px;}
.x5{left:455.568573px;}
.x25{left:467.562419px;}
.x4{left:496.003853px;}
.x6{left:513.634381px;}
.x5d{left:530.911221px;}
.x4a{left:532.390731px;}
.x57{left:544.189855px;}
.x59{left:581.106697px;}
.x5c{left:590.761684px;}
.x3d{left:597.723420px;}
.x2d{left:601.411298px;}
.x36{left:606.495661px;}
.x2c{left:618.452818px;}
.x41{left:619.880047px;}
.x5f{left:629.241275px;}
.x37{left:661.459532px;}
.x5e{left:669.956613px;}
.x1e{left:685.906694px;}
.x35{left:692.367581px;}
.x22{left:694.588860px;}
.x2e{left:708.130626px;}
.x1f{left:731.019736px;}
.x44{left:748.266774px;}
.x1a{left:783.612655px;}
.x26{left:789.448368px;}
.x45{left:804.942735px;}
.x46{left:812.278736px;}
.xc{left:823.966564px;}
.x1b{left:829.638780px;}
.xe{left:842.089583px;}
.xf{left:852.781478px;}
.xd{left:871.216565px;}
.x10{left:889.339585px;}
.x5a{left:924.933427px;}
.x38{left:967.341683px;}
.x52{left:976.106711px;}
.x3e{left:982.799172px;}
.x2f{left:1002.421065px;}
.x3f{left:1027.209955px;}
.x39{left:1033.366616px;}
.x3a{left:1046.472738px;}
.x50{left:1052.678374px;}
.x29{left:1066.519193px;}
.x51{left:1072.861693px;}
.x40{left:1080.413900px;}
.x54{left:1096.301488px;}
.x53{left:1208.754321px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:82.222703pt;}
.v2{vertical-align:121.600004pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.107626pt;}
.ls3{letter-spacing:41.709096pt;}
.ls5{letter-spacing:41.721234pt;}
.ls9{letter-spacing:47.975316pt;}
.ls7{letter-spacing:67.975257pt;}
.ls1{letter-spacing:72.000378pt;}
.ls2{letter-spacing:95.975258pt;}
.ls4{letter-spacing:96.000443pt;}
.wsd{word-spacing:-59.904002pt;}
.ws11{word-spacing:-48.256003pt;}
.ws13{word-spacing:-46.592000pt;}
.wsf{word-spacing:-37.376001pt;}
.ws12{word-spacing:-36.608006pt;}
.ws6{word-spacing:-36.608002pt;}
.ws10{word-spacing:-35.818667pt;}
.ws5{word-spacing:-34.261335pt;}
.ws3{word-spacing:-33.280000pt;}
.wsa{word-spacing:-31.616002pt;}
.ws7{word-spacing:-31.360001pt;}
.ws4{word-spacing:-31.146667pt;}
.ws2{word-spacing:-29.952001pt;}
.ws8{word-spacing:-29.008003pt;}
.ws9{word-spacing:-28.746668pt;}
.wsc{word-spacing:-28.474668pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:34.777126pt;}
.ws1{word-spacing:66.523589pt;}
.wse{word-spacing:82.781229pt;}
._f{margin-left:-12.906667pt;}
._15{margin-left:-11.530667pt;}
._4{margin-left:-9.813333pt;}
._14{margin-left:-8.506668pt;}
._c{margin-left:-7.466667pt;}
._0{margin-left:-6.336000pt;}
._2{margin-left:-4.896000pt;}
._5{margin-left:-3.946667pt;}
._1{margin-left:-2.592000pt;}
._3{margin-left:-1.152000pt;}
._6{width:1.561051pt;}
._13{width:2.595552pt;}
._12{width:68.138818pt;}
._11{width:72.043977pt;}
._10{width:326.824652pt;}
._9{width:467.125375pt;}
._8{width:525.546704pt;}
._d{width:643.621525pt;}
._a{width:711.872039pt;}
._e{width:788.164825pt;}
._7{width:846.485378pt;}
._b{width:872.320045pt;}
.fs16{font-size:74.666666pt;}
.fs3{font-size:85.333339pt;}
.fs6{font-size:96.000003pt;}
.fs1{font-size:101.333339pt;}
.fs2{font-size:106.666667pt;}
.fs15{font-size:108.779084pt;}
.fs7{font-size:112.000004pt;}
.fs8{font-size:117.333340pt;}
.fs12{font-size:117.333354pt;}
.fsc{font-size:118.400012pt;}
.fs9{font-size:119.656998pt;}
.fs10{font-size:122.666668pt;}
.fsb{font-size:128.000004pt;}
.fse{font-size:133.333332pt;}
.fs5{font-size:138.666676pt;}
.fs13{font-size:149.333333pt;}
.fs11{font-size:154.666677pt;}
.fsf{font-size:157.866673pt;}
.fsd{font-size:162.666677pt;}
.fs4{font-size:192.000006pt;}
.fs14{font-size:217.493339pt;}
.fsa{font-size:256.000008pt;}
.fs0{font-size:288.000009pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:31.411388pt;}
.y79{bottom:38.659638pt;}
.y8d{bottom:41.630708pt;}
.y3a{bottom:42.918178pt;}
.ycc{bottom:48.694381pt;}
.ya8{bottom:52.240691pt;}
.yc0{bottom:53.860783pt;}
.yc7{bottom:56.433939pt;}
.y9f{bottom:63.094161pt;}
.y78{bottom:69.059639pt;}
.yb0{bottom:72.618691pt;}
.y8c{bottom:78.430709pt;}
.y39{bottom:79.718180pt;}
.yc6{bottom:93.233940pt;}
.y61{bottom:94.952990pt;}
.y23{bottom:95.927490pt;}
.ycb{bottom:97.617270pt;}
.y3{bottom:97.878521pt;}
.y77{bottom:99.459640pt;}
.y57{bottom:108.720830pt;}
.y98{bottom:111.441321pt;}
.y63{bottom:113.800261pt;}
.y8b{bottom:115.230711pt;}
.y2d{bottom:116.321291pt;}
.y38{bottom:116.518181pt;}
.y22{bottom:121.847461pt;}
.yc5{bottom:130.033941pt;}
.y60{bottom:131.752987pt;}
.y97{bottom:143.361302pt;}
.y43{bottom:145.334282pt;}
.y55{bottom:145.520822pt;}
.y82{bottom:146.003862pt;}
.ya7{bottom:147.393262pt;}
.y21{bottom:147.767452pt;}
.y2c{bottom:148.321292pt;}
.y62{bottom:150.600255pt;}
.y6b{bottom:152.861982pt;}
.yb8{bottom:155.838942pt;}
.y6e{bottom:157.410235pt;}
.y7{bottom:165.572032pt;}
.yc4{bottom:166.833912pt;}
.y8a{bottom:167.604052pt;}
.y5f{bottom:168.552982pt;}
.y12{bottom:172.566972pt;}
.y37{bottom:173.318153pt;}
.y96{bottom:175.281293pt;}
.y68{bottom:175.889183pt;}
.y2b{bottom:180.321293pt;}
.y54{bottom:182.320813pt;}
.y81{bottom:182.803853pt;}
.y42{bottom:183.974273pt;}
.y4b{bottom:183.984773pt;}
.ybf{bottom:184.976613pt;}
.y6c{bottom:187.101993pt;}
.y6a{bottom:188.061987pt;}
.y20{bottom:193.687433pt;}
.yca{bottom:197.940213pt;}
.yb7{bottom:198.158963pt;}
.ya6{bottom:201.857243pt;}
.y67{bottom:204.305189pt;}
.y11{bottom:209.366964pt;}
.y36{bottom:210.118144pt;}
.y6d{bottom:215.937894pt;}
.y53{bottom:219.120804pt;}
.y1f{bottom:219.607414pt;}
.y6{bottom:222.372044pt;}
.y41{bottom:222.614254pt;}
.y4a{bottom:222.624754pt;}
.y69{bottom:223.261986pt;}
.y95{bottom:227.201274pt;}
.y80{bottom:232.937154pt;}
.y5e{bottom:234.715604pt;}
.yc3{bottom:240.433895pt;}
.yb6{bottom:240.478965pt;}
.y2a{bottom:244.321295pt;}
.y10{bottom:246.166955pt;}
.y89{bottom:246.324015pt;}
.y35{bottom:250.918135pt;}
.ya5{bottom:253.185245pt;}
.y52{bottom:255.920795pt;}
.y94{bottom:259.121245pt;}
.y5{bottom:259.172041pt;}
.y40{bottom:261.254255pt;}
.y49{bottom:261.264755pt;}
.yc9{bottom:264.180215pt;}
.y1e{bottom:265.527395pt;}
.ybc{bottom:268.331591pt;}
.yaf{bottom:269.342636pt;}
.y7f{bottom:269.737146pt;}
.y5d{bottom:275.195576pt;}
.y88{bottom:283.124016pt;}
.y34{bottom:287.718126pt;}
.y93{bottom:291.041276pt;}
.y1d{bottom:291.447416pt;}
.y51{bottom:292.720776pt;}
.y4{bottom:295.972038pt;}
.yb5{bottom:296.132266pt;}
.y9e{bottom:296.310686pt;}
.ya4{bottom:300.481247pt;}
.yf{bottom:302.966937pt;}
.y7e{bottom:306.537137pt;}
.ybd{bottom:308.191791pt;}
.y29{bottom:313.121287pt;}
.ybb{bottom:314.331587pt;}
.yae{bottom:316.638627pt;}
.y66{bottom:316.695347pt;}
.y87{bottom:319.923997pt;}
.y33{bottom:328.518107pt;}
.y56{bottom:329.520768pt;}
.y65{bottom:334.539678pt;}
.y1c{bottom:337.367418pt;}
.yb4{bottom:338.452268pt;}
.y5c{bottom:339.675588pt;}
.ye{bottom:339.766928pt;}
.y92{bottom:342.961268pt;}
.y9d{bottom:343.606678pt;}
.ya3{bottom:351.809248pt;}
.y7d{bottom:356.670468pt;}
.y86{bottom:356.723988pt;}
.y1b{bottom:363.287409pt;}
.y3f{bottom:365.200919pt;}
.y48{bottom:365.211419pt;}
.y32{bottom:365.318099pt;}
.y28{bottom:369.921279pt;}
.yad{bottom:371.102629pt;}
.yd{bottom:376.566919pt;}
.y50{bottom:379.654069pt;}
.y2{bottom:387.516194pt;}
.y85{bottom:393.524000pt;}
.yb3{bottom:394.105580pt;}
.y9c{bottom:398.070660pt;}
.ya2{bottom:399.105250pt;}
.yc8{bottom:400.180216pt;}
.y3e{bottom:403.840924pt;}
.y47{bottom:403.851424pt;}
.y5b{bottom:404.155580pt;}
.y31{bottom:406.118090pt;}
.y27{bottom:406.721270pt;}
.y7c{bottom:409.043790pt;}
.y1a{bottom:409.207405pt;}
.y4f{bottom:416.454080pt;}
.yc2{bottom:421.553860pt;}
.y91{bottom:421.761260pt;}
.yac{bottom:425.566631pt;}
.y73{bottom:427.155891pt;}
.y76{bottom:427.833051pt;}
.y84{bottom:430.324001pt;}
.yc{bottom:433.366931pt;}
.yb2{bottom:436.425576pt;}
.y3d{bottom:442.480921pt;}
.y46{bottom:442.491421pt;}
.ybe{bottom:444.073291pt;}
.y9b{bottom:449.398661pt;}
.y4e{bottom:453.254071pt;}
.ya1{bottom:453.569251pt;}
.y19{bottom:455.127402pt;}
.y90{bottom:457.041262pt;}
.y72{bottom:457.555892pt;}
.y75{bottom:458.233052pt;}
.y30{bottom:462.918102pt;}
.y26{bottom:463.521258pt;}
.y5a{bottom:468.635582pt;}
.yb{bottom:470.166928pt;}
.yb1{bottom:478.745572pt;}
.yab{bottom:480.030632pt;}
.y18{bottom:481.047402pt;}
.y3c{bottom:481.120922pt;}
.y45{bottom:481.131422pt;}
.y83{bottom:482.697322pt;}
.y1{bottom:486.876198pt;}
.y71{bottom:487.955893pt;}
.y74{bottom:488.633053pt;}
.y4d{bottom:490.054069pt;}
.y9a{bottom:496.694663pt;}
.y2f{bottom:499.718099pt;}
.ya{bottom:506.966925pt;}
.y17{bottom:506.967405pt;}
.ya0{bottom:508.033253pt;}
.y59{bottom:509.115583pt;}
.y8f{bottom:513.921253pt;}
.y25{bottom:520.321256pt;}
.y4c{bottom:526.854066pt;}
.y2e{bottom:536.518096pt;}
.yaa{bottom:566.221556pt;}
.yba{bottom:566.845822pt;}
.y70{bottom:572.558002pt;}
.yc1{bottom:577.583113pt;}
.y16{bottom:580.501078pt;}
.y64{bottom:585.352646pt;}
.y7b{bottom:585.436538pt;}
.y58{bottom:607.203358pt;}
.y44{bottom:611.811361pt;}
.y24{bottom:611.811467pt;}
.y9{bottom:617.777135pt;}
.y15{bottom:617.941084pt;}
.y3b{bottom:619.568292pt;}
.y8e{bottom:619.892777pt;}
.y99{bottom:619.899339pt;}
.ya9{bottom:632.461563pt;}
.yb9{bottom:633.085816pt;}
.y6f{bottom:638.798001pt;}
.y7a{bottom:641.556544pt;}
.y14{bottom:655.381077pt;}
.y13{bottom:1291.861105pt;}
.h20{height:54.359375pt;}
.h6{height:81.562501pt;}
.h4{height:85.375005pt;}
.h9{height:85.640628pt;}
.h11{height:87.413338pt;}
.h10{height:88.208009pt;}
.h17{height:91.833339pt;}
.hf{height:95.360003pt;}
.h8{height:96.046878pt;}
.h14{height:97.875003pt;}
.h2{height:101.382818pt;}
.h16{height:101.500003pt;}
.h3{height:106.718751pt;}
.h1f{height:108.832199pt;}
.ha{height:112.054691pt;}
.h1c{height:114.187500pt;}
.hb{height:117.390631pt;}
.h1b{height:117.390645pt;}
.hc{height:119.715424pt;}
.h19{height:122.726564pt;}
.h18{height:128.062504pt;}
.h15{height:133.398436pt;}
.h7{height:138.734385pt;}
.h1e{height:149.406249pt;}
.h1a{height:154.742198pt;}
.h13{height:162.746104pt;}
.he{height:177.582706pt;}
.h5{height:192.093756pt;}
.h1d{height:217.599537pt;}
.h12{height:222.982822pt;}
.hd{height:256.125008pt;}
.h1{height:288.140634pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:80.182989pt;}
.x43{left:87.608928pt;}
.x11{left:89.469863pt;}
.x30{left:103.037177pt;}
.x1{left:106.335744pt;}
.x4b{left:117.084627pt;}
.x55{left:118.837274pt;}
.x1d{left:120.283470pt;}
.x12{left:121.369344pt;}
.x9{left:123.360114pt;}
.xa{left:125.128688pt;}
.x18{left:132.292624pt;}
.x31{left:138.237184pt;}
.x58{left:143.587925pt;}
.x4e{left:147.087180pt;}
.x16{left:149.605565pt;}
.x15{left:150.539375pt;}
.x8{left:152.449345pt;}
.x20{left:153.853673pt;}
.x13{left:161.469825pt;}
.xb{left:171.359585pt;}
.x19{left:173.204736pt;}
.x48{left:176.538068pt;}
.x4f{left:177.603676pt;}
.x21{left:182.001316pt;}
.x14{left:185.469826pt;}
.x17{left:189.706046pt;}
.x49{left:203.167987pt;}
.x33{left:204.951724pt;}
.x3c{left:207.239642pt;}
.x3b{left:209.397677pt;}
.x32{left:211.582677pt;}
.x2a{left:212.597535pt;}
.x47{left:215.913507pt;}
.x42{left:217.629937pt;}
.x28{left:222.942451pt;}
.x34{left:237.044748pt;}
.x7{left:240.013828pt;}
.x2b{left:256.869618pt;}
.x2{left:260.689268pt;}
.x5b{left:267.667203pt;}
.x4c{left:281.047464pt;}
.x27{left:281.981639pt;}
.x3{left:297.632167pt;}
.x4d{left:313.909460pt;}
.x56{left:341.979011pt;}
.x24{left:368.761002pt;}
.x23{left:391.733636pt;}
.x5{left:404.949843pt;}
.x25{left:415.611039pt;}
.x4{left:440.892314pt;}
.x6{left:456.563895pt;}
.x5d{left:471.921085pt;}
.x4a{left:473.236205pt;}
.x57{left:483.724315pt;}
.x59{left:516.539287pt;}
.x5c{left:525.121497pt;}
.x3d{left:531.309707pt;}
.x2d{left:534.587821pt;}
.x36{left:539.107254pt;}
.x2c{left:549.735839pt;}
.x41{left:551.004487pt;}
.x5f{left:559.325578pt;}
.x37{left:587.964029pt;}
.x5e{left:595.516989pt;}
.x1e{left:609.694840pt;}
.x35{left:615.437850pt;}
.x22{left:617.412320pt;}
.x2e{left:629.449445pt;}
.x1f{left:649.795321pt;}
.x44{left:665.126021pt;}
.x1a{left:696.544582pt;}
.x26{left:701.731882pt;}
.x45{left:715.504653pt;}
.x46{left:722.025543pt;}
.xc{left:732.414723pt;}
.x1b{left:737.456694pt;}
.xe{left:748.524074pt;}
.xf{left:758.027980pt;}
.xd{left:774.414725pt;}
.x10{left:790.524075pt;}
.x5a{left:822.163046pt;}
.x38{left:859.859274pt;}
.x52{left:867.650410pt;}
.x3e{left:873.599264pt;}
.x2f{left:891.040947pt;}
.x3f{left:913.075515pt;}
.x39{left:918.548103pt;}
.x3a{left:930.197990pt;}
.x50{left:935.714110pt;}
.x29{left:948.017060pt;}
.x51{left:953.654839pt;}
.x40{left:960.367911pt;}
.x54{left:974.490211pt;}
.x53{left:1074.448285pt;}
}




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