
    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_6219ef1e021e86f046ab75b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_43e1e4a1469809c0e4b615a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_bbe1ad784534b77fdf0ffa13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_014b4d07ef88680c8635e39c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.915039;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_c796d89e7858007fb37b8ec7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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:-11.384033px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.384037px;}
.v1{vertical-align:25.044874px;}
.v4{vertical-align:36.428903px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:13.486976px;}
.ls3{letter-spacing:22.487041px;}
.ls2{letter-spacing:22.487176px;}
.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;}
}
.ws3{word-spacing:-36.287110px;}
.ws1{word-spacing:-18.336914px;}
.ws0{word-spacing:-11.002149px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:686.489927px;}
._1b{margin-left:-8.723775px;}
._c{margin-left:-7.344087px;}
._5{margin-left:-5.336157px;}
._12{margin-left:-4.269360px;}
._4{margin-left:-2.957159px;}
._0{margin-left:-1.015719px;}
._8{width:3.692367px;}
._9{width:4.903692px;}
._2{width:8.992175px;}
._b{width:10.229184px;}
._1{width:13.317644px;}
._e{width:17.038615px;}
._6{width:22.242067px;}
._7{width:23.257987px;}
._f{width:26.799379px;}
._10{width:31.265480px;}
._1c{width:32.466671px;}
._3{width:34.620116px;}
._11{width:35.934835px;}
._15{width:40.372305px;}
._19{width:41.393886px;}
._17{width:44.360508px;}
._18{width:45.486885px;}
._16{width:49.385396px;}
._14{width:53.854138px;}
._13{width:58.374911px;}
._a{width:89.663086px;}
._d{width:696.863616px;}
._1a{width:1385.960890px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:39.600001px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y10e{bottom:12.982178px;}
.y118{bottom:12.982182px;}
.y11a{bottom:12.983643px;}
.y111{bottom:12.985107px;}
.y2{bottom:38.523194px;}
.y117{bottom:41.442627px;}
.yec{bottom:66.982184px;}
.y22{bottom:66.983279px;}
.y77{bottom:66.983639px;}
.y91{bottom:102.374996px;}
.yf3{bottom:112.882316px;}
.yb1{bottom:113.753168px;}
.y60{bottom:114.393316px;}
.y125{bottom:120.879644px;}
.yf9{bottom:124.090574px;}
.yca{bottom:125.340093px;}
.y41{bottom:127.894409px;}
.y76{bottom:129.733886px;}
.yeb{bottom:138.320069px;}
.yb0{bottom:142.213611px;}
.y5f{bottom:142.853399px;}
.y124{bottom:149.338619px;}
.yc9{bottom:153.800549px;}
.y40{bottom:156.354494px;}
.yda{bottom:162.774164px;}
.yaf{bottom:170.672604px;}
.yf8{bottom:173.551751px;}
.y72{bottom:173.849129px;}
.y123{bottom:177.796871px;}
.y92{bottom:180.909663px;}
.y10c{bottom:181.210694px;}
.yc8{bottom:182.260992px;}
.y3f{bottom:185.938484px;}
.y5e{bottom:186.313484px;}
.yea{bottom:187.781984px;}
.yae{bottom:199.133056px;}
.y21{bottom:202.217655px;}
.y71{bottom:202.308839px;}
.y10b{bottom:209.669684px;}
.yc7{bottom:210.721445px;}
.yd9{bottom:212.234624px;}
.y3e{bottom:214.398556px;}
.yad{bottom:227.593504px;}
.y5d{bottom:229.773558px;}
.y70{bottom:230.768921px;}
.ye9{bottom:237.240974px;}
.y10a{bottom:238.131599px;}
.yc6{bottom:239.180429px;}
.y3d{bottom:242.858639px;}
.y20{bottom:249.598018px;}
.yac{bottom:256.053952px;}
.y5c{bottom:258.233641px;}
.yd8{bottom:261.693599px;}
.y109{bottom:266.590574px;}
.yc5{bottom:267.640876px;}
.y1f{bottom:273.071413px;}
.yab{bottom:284.514404px;}
.y3c{bottom:286.318724px;}
.y5b{bottom:286.693724px;}
.ye8{bottom:286.702874px;}
.y108{bottom:295.052489px;}
.yc4{bottom:296.101324px;}
.y1e{bottom:296.544793px;}
.yd7{bottom:311.154059px;}
.yaa{bottom:312.973409px;}
.y5a{bottom:316.277714px;}
.y1d{bottom:320.018188px;}
.y107{bottom:323.512196px;}
.yc3{bottom:324.560309px;}
.y3b{bottom:330.902714px;}
.ye7{bottom:336.161864px;}
.ya9{bottom:341.433828px;}
.y1c{bottom:343.491583px;}
.y59{bottom:345.861691px;}
.yc2{bottom:353.020754px;}
.y3a{bottom:360.486689px;}
.yd6{bottom:360.614504px;}
.y1b{bottom:366.964969px;}
.ya8{bottom:369.894292px;}
.y58{bottom:374.321774px;}
.yc1{bottom:381.481199px;}
.ye6{bottom:385.620854px;}
.y1a{bottom:385.938358px;}
.y39{bottom:388.946774px;}
.ya7{bottom:398.353282px;}
.y57{bottom:402.781859px;}
.yd3{bottom:405.949949px;}
.y19{bottom:409.411738px;}
.yc0{bottom:409.941659px;}
.yd5{bottom:410.074949px;}
.y38{bottom:418.530764px;}
.ya6{bottom:426.813700px;}
.y105{bottom:428.769284px;}
.y56{bottom:432.365849px;}
.y18{bottom:432.885134px;}
.ye5{bottom:435.081299px;}
.ybf{bottom:438.402106px;}
.yd4{bottom:438.534663px;}
.y37{bottom:448.114754px;}
.y17{bottom:451.858513px;}
.ya5{bottom:455.274164px;}
.yd2{bottom:455.409663px;}
.y104{bottom:457.229744px;}
.y55{bottom:460.825924px;}
.ybe{bottom:466.861087px;}
.y122{bottom:472.029048px;}
.y16{bottom:475.331908px;}
.y36{bottom:477.698729px;}
.ya4{bottom:483.734628px;}
.ye4{bottom:484.541744px;}
.y103{bottom:485.688719px;}
.y54{bottom:490.409909px;}
.ybd{bottom:495.321539px;}
.y15{bottom:498.805303px;}
.y121{bottom:500.490964px;}
.y35{bottom:507.282719px;}
.ya3{bottom:512.195058px;}
.y102{bottom:514.149164px;}
.yf2{bottom:514.738035px;}
.y129{bottom:515.824949px;}
.y53{bottom:518.869994px;}
.ybc{bottom:523.781984px;}
.y120{bottom:528.952879px;}
.yf7{bottom:533.783940px;}
.ye3{bottom:534.002204px;}
.y14{bottom:536.486573px;}
.y34{bottom:536.866694px;}
.ya2{bottom:540.654037px;}
.y101{bottom:542.608154px;}
.yf1{bottom:543.199949px;}
.y128{bottom:544.286864px;}
.y52{bottom:548.453973px;}
.ybb{bottom:552.240951px;}
.y90{bottom:552.241702px;}
.y11f{bottom:557.411864px;}
.yf6{bottom:562.245854px;}
.y33{bottom:566.450684px;}
.ya1{bottom:569.114500px;}
.y100{bottom:571.070069px;}
.y127{bottom:572.742183px;}
.y51{bottom:576.914056px;}
.y8f{bottom:580.701400px;}
.yba{bottom:580.701412px;}
.y13{bottom:580.754880px;}
.ye2{bottom:583.462649px;}
.y11e{bottom:585.870854px;}
.yd1{bottom:591.161864px;}
.yf0{bottom:592.660394px;}
.y87{bottom:594.987299px;}
.y32{bottom:596.034674px;}
.ya0{bottom:597.574953px;}
.y13f{bottom:599.033939px;}
.yff{bottom:599.529059px;}
.y50{bottom:605.374139px;}
.y8e{bottom:609.161864px;}
.yf5{bottom:611.705562px;}
.y11d{bottom:614.332769px;}
.yd0{bottom:619.622317px;}
.y86{bottom:623.447024px;}
.y31{bottom:624.494759px;}
.y9f{bottom:626.033909px;}
.yfe{bottom:627.990974px;}
.ye1{bottom:632.923094px;}
.y67{bottom:633.126344px;}
.y13e{bottom:636.009520px;}
.y12{bottom:637.621949px;}
.yb9{bottom:637.622311px;}
.y8d{bottom:637.622328px;}
.yef{bottom:642.120113px;}
.y11c{bottom:642.793214px;}
.ycf{bottom:648.082769px;}
.y4f{bottom:648.834224px;}
.y85{bottom:651.907474px;}
.y30{bottom:652.954829px;}
.y9e{bottom:654.494384px;}
.y13d{bottom:654.982174px;}
.yfd{bottom:656.449949px;}
.y66{bottom:661.586431px;}
.y106{bottom:661.618649px;}
.y8c{bottom:666.082027px;}
.y11{bottom:666.082034px;}
.yb8{bottom:666.082759px;}
.y11b{bottom:671.252204px;}
.y13c{bottom:673.954831px;}
.y84{bottom:680.367927px;}
.ye0{bottom:682.383539px;}
.y9d{bottom:682.954825px;}
.yfc{bottom:684.909663px;}
.y116{bottom:687.853996px;}
.y65{bottom:690.046514px;}
.y4e{bottom:692.294309px;}
.y13b{bottom:692.927489px;}
.y8b{bottom:694.541737px;}
.yb7{bottom:694.541744px;}
.y10{bottom:694.542119px;}
.y2f{bottom:696.414914px;}
.y119{bottom:702.083501px;}
.y83{bottom:708.827637px;}
.y9c{bottom:711.415278px;}
.y13a{bottom:711.900139px;}
.y64{bottom:719.630489px;}
.y4d{bottom:721.878303px;}
.yf{bottom:723.002191px;}
.y6f{bottom:723.002200px;}
.yb6{bottom:723.002204px;}
.y139{bottom:730.875724px;}
.ydf{bottom:731.842529px;}
.y82{bottom:737.287358px;}
.y2e{bottom:739.875003px;}
.y9b{bottom:739.875734px;}
.y115{bottom:745.901361px;}
.y63{bottom:748.090574px;}
.y138{bottom:749.848381px;}
.y4c{bottom:750.338386px;}
.ye{bottom:751.462274px;}
.y6e{bottom:751.462282px;}
.yb5{bottom:751.462649px;}
.y8a{bottom:751.462653px;}
.y81{bottom:765.747799px;}
.y9a{bottom:768.334701px;}
.y2d{bottom:768.335086px;}
.y137{bottom:768.821039px;}
.y62{bottom:776.550657px;}
.y4b{bottom:778.798469px;}
.yb4{bottom:779.921609px;}
.yce{bottom:779.921626px;}
.yd{bottom:779.922361px;}
.y6d{bottom:779.922363px;}
.yde{bottom:781.301519px;}
.y114{bottom:782.068356px;}
.y136{bottom:787.796629px;}
.y80{bottom:794.208252px;}
.y99{bottom:796.795162px;}
.y2c{bottom:796.795169px;}
.y61{bottom:806.134642px;}
.y135{bottom:806.769286px;}
.y4a{bottom:807.258539px;}
.ycd{bottom:808.382074px;}
.y89{bottom:808.382084px;}
.yc{bottom:808.382444px;}
.y113{bottom:818.235351px;}
.y7f{bottom:822.667970px;}
.y2b{bottom:825.255254px;}
.y98{bottom:825.255614px;}
.y134{bottom:825.741944px;}
.ydd{bottom:830.763434px;}
.y49{bottom:835.718626px;}
.ycc{bottom:836.842522px;}
.y6c{bottom:836.842525px;}
.yb{bottom:836.842531px;}
.y133{bottom:844.714608px;}
.y112{bottom:847.819341px;}
.y7e{bottom:851.127675px;}
.y97{bottom:853.714594px;}
.y2a{bottom:853.715328px;}
.y132{bottom:863.687263px;}
.y48{bottom:864.178709px;}
.ya{bottom:865.302614px;}
.y6b{bottom:865.302618px;}
.ycb{bottom:865.302974px;}
.y75{bottom:865.302978px;}
.y110{bottom:877.403327px;}
.y7d{bottom:879.588136px;}
.ydc{bottom:880.222408px;}
.y96{bottom:882.175042px;}
.y29{bottom:882.175411px;}
.y131{bottom:882.662849px;}
.y47{bottom:892.638794px;}
.y6a{bottom:893.762696px;}
.y9{bottom:893.762699px;}
.yb3{bottom:893.763434px;}
.y130{bottom:901.635500px;}
.y10f{bottom:906.991701px;}
.y7c{bottom:908.048588px;}
.y28{bottom:910.635494px;}
.y12f{bottom:920.608155px;}
.y46{bottom:921.098877px;}
.y74{bottom:922.222401px;}
.y69{bottom:922.222778px;}
.y8{bottom:928.483997px;}
.ydb{bottom:929.682861px;}
.y7b{bottom:936.508302px;}
.y10d{bottom:936.575684px;}
.y27{bottom:939.095582px;}
.y95{bottom:939.095948px;}
.y12e{bottom:939.583740px;}
.y45{bottom:949.558961px;}
.y68{bottom:950.682862px;}
.y7{bottom:950.682863px;}
.y12d{bottom:958.556395px;}
.y7a{bottom:964.968016px;}
.y26{bottom:967.555664px;}
.y94{bottom:967.555668px;}
.y12c{bottom:977.529050px;}
.y44{bottom:978.019043px;}
.yfb{bottom:979.141846px;}
.y6{bottom:979.142945px;}
.y73{bottom:979.143314px;}
.yee{bottom:986.603758px;}
.y79{bottom:993.428468px;}
.y93{bottom:996.015381px;}
.y25{bottom:996.015748px;}
.y12b{bottom:996.501707px;}
.y43{bottom:1006.479126px;}
.yb2{bottom:1007.602294px;}
.y126{bottom:1007.602299px;}
.y5{bottom:1007.603028px;}
.yed{bottom:1015.064209px;}
.y12a{bottom:1015.474364px;}
.y24{bottom:1024.475831px;}
.y78{bottom:1032.068848px;}
.y42{bottom:1034.939209px;}
.y88{bottom:1036.062742px;}
.y4{bottom:1036.063111px;}
.yfa{bottom:1036.064209px;}
.yf4{bottom:1036.064210px;}
.y23{bottom:1063.116211px;}
.y3{bottom:1064.523194px;}
.y1{bottom:1080.000000px;}
.h10{height:28.458984px;}
.h13{height:28.460449px;}
.h11{height:28.461913px;}
.h6{height:28.849219px;}
.h3{height:48.049806px;}
.h2{height:48.082032px;}
.h7{height:52.417969px;}
.h9{height:52.453125px;}
.hf{height:53.874757px;}
.hd{height:53.894059px;}
.h5{height:53.894082px;}
.ha{height:53.894091px;}
.h4{height:53.894093px;}
.hb{height:53.894100px;}
.hc{height:53.894104px;}
.he{height:53.894131px;}
.h12{height:56.919433px;}
.h8{height:65.522461px;}
.h1{height:108.000000px;}
.h0{height:1188.000000px;}
.w1{width:193.500000px;}
.w3{width:201.375000px;}
.w2{width:302.625000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:14.095845px;}
.x19{left:54.637069px;}
.x1f{left:61.717029px;}
.x1d{left:66.302027px;}
.x1{left:108.000000px;}
.x17{left:109.125000px;}
.x1e{left:112.342029px;}
.x1c{left:116.927027px;}
.x2{left:123.699368px;}
.x4{left:135.000000px;}
.x20{left:144.000000px;}
.xb{left:162.000000px;}
.x7{left:282.375000px;}
.x18{left:303.750000px;}
.x3{left:308.262643px;}
.x16{left:459.000000px;}
.x1a{left:607.500000px;}
.x11{left:667.125000px;}
.x8{left:679.500000px;}
.x14{left:684.562500px;}
.x15{left:686.812500px;}
.xd{left:733.500000px;}
.x10{left:765.000000px;}
.x9{left:770.625000px;}
.x12{left:777.375000px;}
.xa{left:791.659969px;}
.xc{left:792.884610px;}
.xe{left:795.375000px;}
.x5{left:800.829990px;}
.x13{left:808.875000px;}
.xf{left:810.000000px;}
.x6{left:814.500000px;}
@media print{
.v2{vertical-align:-10.119140pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.119144pt;}
.v1{vertical-align:22.262110pt;}
.v4{vertical-align:32.381247pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:11.988423pt;}
.ls3{letter-spacing:19.988481pt;}
.ls2{letter-spacing:19.988601pt;}
.ws3{word-spacing:-32.255209pt;}
.ws1{word-spacing:-16.299479pt;}
.ws0{word-spacing:-9.779688pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:610.213268pt;}
._1b{margin-left:-7.754467pt;}
._c{margin-left:-6.528077pt;}
._5{margin-left:-4.743251pt;}
._12{margin-left:-3.794986pt;}
._4{margin-left:-2.628586pt;}
._0{margin-left:-0.902861pt;}
._8{width:3.282104pt;}
._9{width:4.358838pt;}
._2{width:7.993044pt;}
._b{width:9.092608pt;}
._1{width:11.837906pt;}
._e{width:15.145435pt;}
._6{width:19.770726pt;}
._7{width:20.673767pt;}
._f{width:23.821670pt;}
._10{width:27.791538pt;}
._1c{width:28.859263pt;}
._3{width:30.773436pt;}
._11{width:31.942075pt;}
._15{width:35.886493pt;}
._19{width:36.794565pt;}
._17{width:39.431562pt;}
._18{width:40.432787pt;}
._16{width:43.898130pt;}
._14{width:47.870345pt;}
._13{width:51.888810pt;}
._a{width:79.700521pt;}
._d{width:619.434325pt;}
._1a{width:1231.965236pt;}
.fs1{font-size:35.200001pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:11.539713pt;}
.y118{bottom:11.539718pt;}
.y11a{bottom:11.541016pt;}
.y111{bottom:11.542318pt;}
.y2{bottom:34.242839pt;}
.y117{bottom:36.837891pt;}
.yec{bottom:59.539719pt;}
.y22{bottom:59.540692pt;}
.y77{bottom:59.541012pt;}
.y91{bottom:90.999996pt;}
.yf3{bottom:100.339836pt;}
.yb1{bottom:101.113927pt;}
.y60{bottom:101.682948pt;}
.y125{bottom:107.448572pt;}
.yf9{bottom:110.302732pt;}
.yca{bottom:111.413416pt;}
.y41{bottom:113.683919pt;}
.y76{bottom:115.319010pt;}
.yeb{bottom:122.951172pt;}
.yb0{bottom:126.412099pt;}
.y5f{bottom:126.980799pt;}
.y124{bottom:132.745439pt;}
.yc9{bottom:136.711599pt;}
.y40{bottom:138.981772pt;}
.yda{bottom:144.688145pt;}
.yaf{bottom:151.708981pt;}
.yf8{bottom:154.268223pt;}
.y72{bottom:154.532559pt;}
.y123{bottom:158.041663pt;}
.y92{bottom:160.808590pt;}
.y10c{bottom:161.076172pt;}
.yc8{bottom:162.009771pt;}
.y3f{bottom:165.278652pt;}
.y5e{bottom:165.611986pt;}
.yea{bottom:166.917319pt;}
.yae{bottom:177.007161pt;}
.y21{bottom:179.749027pt;}
.y71{bottom:179.830079pt;}
.y10b{bottom:186.373052pt;}
.yc7{bottom:187.307951pt;}
.yd9{bottom:188.652999pt;}
.y3e{bottom:190.576494pt;}
.yad{bottom:202.305337pt;}
.y5d{bottom:204.243162pt;}
.y70{bottom:205.127930pt;}
.ye9{bottom:210.880865pt;}
.y10a{bottom:211.672532pt;}
.yc6{bottom:212.604826pt;}
.y3d{bottom:215.874345pt;}
.y20{bottom:221.864905pt;}
.yac{bottom:227.603513pt;}
.y5c{bottom:229.541014pt;}
.yd8{bottom:232.616532pt;}
.y109{bottom:236.969399pt;}
.yc5{bottom:237.903001pt;}
.y1f{bottom:242.730145pt;}
.yab{bottom:252.901692pt;}
.y3c{bottom:254.505532pt;}
.y5b{bottom:254.838865pt;}
.ye8{bottom:254.846999pt;}
.y108{bottom:262.268879pt;}
.yc4{bottom:263.201177pt;}
.y1e{bottom:263.595371pt;}
.yd7{bottom:276.581385pt;}
.yaa{bottom:278.198586pt;}
.y5a{bottom:281.135745pt;}
.y1d{bottom:284.460611pt;}
.y107{bottom:287.566396pt;}
.yc3{bottom:288.498052pt;}
.y3b{bottom:294.135745pt;}
.ye7{bottom:298.810545pt;}
.ya9{bottom:303.496736pt;}
.y1c{bottom:305.325851pt;}
.y59{bottom:307.432614pt;}
.yc2{bottom:313.796225pt;}
.y3a{bottom:320.432612pt;}
.yd6{bottom:320.546226pt;}
.y1b{bottom:326.191084pt;}
.ya8{bottom:328.794926pt;}
.y58{bottom:332.730465pt;}
.yc1{bottom:339.094399pt;}
.ye6{bottom:342.774092pt;}
.y1a{bottom:343.056318pt;}
.y39{bottom:345.730465pt;}
.ya7{bottom:354.091806pt;}
.y57{bottom:358.028319pt;}
.yd3{bottom:360.844399pt;}
.y19{bottom:363.921545pt;}
.yc0{bottom:364.392586pt;}
.yd5{bottom:364.511065pt;}
.y38{bottom:372.027345pt;}
.ya6{bottom:379.389956pt;}
.y105{bottom:381.128252pt;}
.y56{bottom:384.325199pt;}
.y18{bottom:384.786785pt;}
.ye5{bottom:386.738932pt;}
.ybf{bottom:389.690761pt;}
.yd4{bottom:389.808590pt;}
.y37{bottom:398.324225pt;}
.y17{bottom:401.652011pt;}
.ya5{bottom:404.688146pt;}
.yd2{bottom:404.808590pt;}
.y104{bottom:406.426439pt;}
.y55{bottom:409.623044pt;}
.ybe{bottom:414.987633pt;}
.y122{bottom:419.581376pt;}
.y16{bottom:422.517251pt;}
.y36{bottom:424.621092pt;}
.ya4{bottom:429.986336pt;}
.ye4{bottom:430.703772pt;}
.y103{bottom:431.723305pt;}
.y54{bottom:435.919919pt;}
.ybd{bottom:440.285812pt;}
.y15{bottom:443.382491pt;}
.y121{bottom:444.880857pt;}
.y35{bottom:450.917972pt;}
.ya3{bottom:455.284496pt;}
.y102{bottom:457.021479pt;}
.yf2{bottom:457.544920pt;}
.y129{bottom:458.511065pt;}
.y53{bottom:461.217772pt;}
.ybc{bottom:465.583985pt;}
.y120{bottom:470.180337pt;}
.yf7{bottom:474.474613pt;}
.ye3{bottom:474.668625pt;}
.y14{bottom:476.876954pt;}
.y34{bottom:477.214839pt;}
.ya2{bottom:480.581366pt;}
.y101{bottom:482.318359pt;}
.yf1{bottom:482.844399pt;}
.y128{bottom:483.810545pt;}
.y52{bottom:487.514642pt;}
.ybb{bottom:490.880846pt;}
.y90{bottom:490.881513pt;}
.y11f{bottom:495.477212pt;}
.yf6{bottom:499.774092pt;}
.y33{bottom:503.511719pt;}
.ya1{bottom:505.879556pt;}
.y100{bottom:507.617839pt;}
.y127{bottom:509.104163pt;}
.y51{bottom:512.812494pt;}
.y8f{bottom:516.179023pt;}
.yba{bottom:516.179033pt;}
.y13{bottom:516.226560pt;}
.ye2{bottom:518.633465pt;}
.y11e{bottom:520.774092pt;}
.yd1{bottom:525.477212pt;}
.yf0{bottom:526.809239pt;}
.y87{bottom:528.877599pt;}
.y32{bottom:529.808599pt;}
.ya0{bottom:531.177736pt;}
.y13f{bottom:532.474612pt;}
.yff{bottom:532.914719pt;}
.y50{bottom:538.110345pt;}
.y8e{bottom:541.477213pt;}
.yf5{bottom:543.738278pt;}
.y11d{bottom:546.073572pt;}
.yd0{bottom:550.775393pt;}
.y86{bottom:554.175132pt;}
.y31{bottom:555.106452pt;}
.y9f{bottom:556.474586pt;}
.yfe{bottom:558.214199pt;}
.ye1{bottom:562.598305pt;}
.y67{bottom:562.778972pt;}
.y13e{bottom:565.341795pt;}
.y12{bottom:566.775065pt;}
.yb9{bottom:566.775388pt;}
.y8d{bottom:566.775403pt;}
.yef{bottom:570.773434pt;}
.y11c{bottom:571.371745pt;}
.ycf{bottom:576.073572pt;}
.y4f{bottom:576.741532pt;}
.y85{bottom:579.473311pt;}
.y30{bottom:580.404292pt;}
.y9e{bottom:581.772786pt;}
.y13d{bottom:582.206377pt;}
.yfd{bottom:583.511065pt;}
.y66{bottom:588.076828pt;}
.y106{bottom:588.105466pt;}
.y8c{bottom:592.072913pt;}
.y11{bottom:592.072919pt;}
.yb8{bottom:592.073564pt;}
.y11b{bottom:596.668625pt;}
.y13c{bottom:599.070961pt;}
.y84{bottom:604.771491pt;}
.ye0{bottom:606.563145pt;}
.y9d{bottom:607.070956pt;}
.yfc{bottom:608.808590pt;}
.y116{bottom:611.425775pt;}
.y65{bottom:613.374679pt;}
.y4e{bottom:615.372719pt;}
.y13b{bottom:615.935545pt;}
.y8b{bottom:617.370433pt;}
.yb7{bottom:617.370439pt;}
.y10{bottom:617.370772pt;}
.y2f{bottom:619.035479pt;}
.y119{bottom:624.074223pt;}
.y83{bottom:630.069011pt;}
.y9c{bottom:632.369136pt;}
.y13a{bottom:632.800124pt;}
.y64{bottom:639.671545pt;}
.y4d{bottom:641.669602pt;}
.yf{bottom:642.668614pt;}
.y6f{bottom:642.668623pt;}
.yb6{bottom:642.668625pt;}
.y139{bottom:649.667311pt;}
.ydf{bottom:650.526692pt;}
.y82{bottom:655.366541pt;}
.y2e{bottom:657.666669pt;}
.y9b{bottom:657.667319pt;}
.y115{bottom:663.023432pt;}
.y63{bottom:664.969399pt;}
.y138{bottom:666.531895pt;}
.y4c{bottom:666.967454pt;}
.ye{bottom:667.966465pt;}
.y6e{bottom:667.966473pt;}
.yb5{bottom:667.966799pt;}
.y8a{bottom:667.966803pt;}
.y81{bottom:680.664711pt;}
.y9a{bottom:682.964179pt;}
.y2d{bottom:682.964521pt;}
.y137{bottom:683.396479pt;}
.y62{bottom:690.267251pt;}
.y4b{bottom:692.265305pt;}
.yb4{bottom:693.263653pt;}
.yce{bottom:693.263668pt;}
.yd{bottom:693.264321pt;}
.y6d{bottom:693.264323pt;}
.yde{bottom:694.490239pt;}
.y114{bottom:695.171872pt;}
.y136{bottom:700.263671pt;}
.y80{bottom:705.962891pt;}
.y99{bottom:708.262366pt;}
.y2c{bottom:708.262372pt;}
.y61{bottom:716.564126pt;}
.y135{bottom:717.128255pt;}
.y4a{bottom:717.563145pt;}
.ycd{bottom:718.561844pt;}
.y89{bottom:718.561853pt;}
.yc{bottom:718.562172pt;}
.y113{bottom:727.320312pt;}
.y7f{bottom:731.260418pt;}
.y2b{bottom:733.560225pt;}
.y98{bottom:733.560546pt;}
.y134{bottom:733.992839pt;}
.ydd{bottom:738.456385pt;}
.y49{bottom:742.861001pt;}
.ycc{bottom:743.860020pt;}
.y6c{bottom:743.860023pt;}
.yb{bottom:743.860028pt;}
.y133{bottom:750.857430pt;}
.y112{bottom:753.617192pt;}
.y7e{bottom:756.557934pt;}
.y97{bottom:758.857417pt;}
.y2a{bottom:758.858069pt;}
.y132{bottom:767.722012pt;}
.y48{bottom:768.158852pt;}
.ya{bottom:769.157879pt;}
.y6b{bottom:769.157883pt;}
.ycb{bottom:769.158199pt;}
.y75{bottom:769.158203pt;}
.y110{bottom:779.914068pt;}
.y7d{bottom:781.856121pt;}
.ydc{bottom:782.419918pt;}
.y96{bottom:784.155593pt;}
.y29{bottom:784.155921pt;}
.y131{bottom:784.589199pt;}
.y47{bottom:793.456705pt;}
.y6a{bottom:794.455730pt;}
.y9{bottom:794.455732pt;}
.yb3{bottom:794.456386pt;}
.y130{bottom:801.453778pt;}
.y10f{bottom:806.214845pt;}
.y7c{bottom:807.154301pt;}
.y28{bottom:809.453772pt;}
.y12f{bottom:818.318360pt;}
.y46{bottom:818.754557pt;}
.y74{bottom:819.753246pt;}
.y69{bottom:819.753581pt;}
.y8{bottom:825.319109pt;}
.ydb{bottom:826.384765pt;}
.y7b{bottom:832.451824pt;}
.y10d{bottom:832.511719pt;}
.y27{bottom:834.751628pt;}
.y95{bottom:834.751953pt;}
.y12e{bottom:835.185547pt;}
.y45{bottom:844.052409pt;}
.y68{bottom:845.051433pt;}
.y7{bottom:845.051434pt;}
.y12d{bottom:852.050129pt;}
.y7a{bottom:857.749348pt;}
.y26{bottom:860.049479pt;}
.y94{bottom:860.049482pt;}
.y12c{bottom:868.914711pt;}
.y44{bottom:869.350260pt;}
.yfb{bottom:870.348308pt;}
.y6{bottom:870.349284pt;}
.y73{bottom:870.349613pt;}
.yee{bottom:876.981118pt;}
.y79{bottom:883.047527pt;}
.y93{bottom:885.347005pt;}
.y25{bottom:885.347332pt;}
.y12b{bottom:885.779295pt;}
.y43{bottom:894.648112pt;}
.yb2{bottom:895.646484pt;}
.y126{bottom:895.646488pt;}
.y5{bottom:895.647136pt;}
.yed{bottom:902.279297pt;}
.y12a{bottom:902.643879pt;}
.y24{bottom:910.645183pt;}
.y78{bottom:917.394532pt;}
.y42{bottom:919.945964pt;}
.y88{bottom:920.944660pt;}
.y4{bottom:920.944988pt;}
.yfa{bottom:920.945964pt;}
.yf4{bottom:920.945965pt;}
.y23{bottom:944.992188pt;}
.y3{bottom:946.242839pt;}
.y1{bottom:960.000000pt;}
.h10{height:25.296875pt;}
.h13{height:25.298177pt;}
.h11{height:25.299479pt;}
.h6{height:25.643751pt;}
.h3{height:42.710938pt;}
.h2{height:42.739584pt;}
.h7{height:46.593750pt;}
.h9{height:46.625000pt;}
.hf{height:47.888673pt;}
.hd{height:47.905831pt;}
.h5{height:47.905851pt;}
.ha{height:47.905859pt;}
.h4{height:47.905861pt;}
.hb{height:47.905867pt;}
.hc{height:47.905871pt;}
.he{height:47.905895pt;}
.h12{height:50.595052pt;}
.h8{height:58.242188pt;}
.h1{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:172.000000pt;}
.w3{width:179.000000pt;}
.w2{width:269.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:12.529640pt;}
.x19{left:48.566284pt;}
.x1f{left:54.859581pt;}
.x1d{left:58.935135pt;}
.x1{left:96.000000pt;}
.x17{left:97.000000pt;}
.x1e{left:99.859581pt;}
.x1c{left:103.935135pt;}
.x2{left:109.954994pt;}
.x4{left:120.000000pt;}
.x20{left:128.000000pt;}
.xb{left:144.000000pt;}
.x7{left:251.000000pt;}
.x18{left:270.000000pt;}
.x3{left:274.011238pt;}
.x16{left:408.000000pt;}
.x1a{left:540.000000pt;}
.x11{left:593.000000pt;}
.x8{left:604.000000pt;}
.x14{left:608.500000pt;}
.x15{left:610.500000pt;}
.xd{left:652.000000pt;}
.x10{left:680.000000pt;}
.x9{left:685.000000pt;}
.x12{left:691.000000pt;}
.xa{left:703.697750pt;}
.xc{left:704.786320pt;}
.xe{left:707.000000pt;}
.x5{left:711.848880pt;}
.x13{left:719.000000pt;}
.xf{left:720.000000pt;}
.x6{left:724.000000pt;}
}




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