
    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_3118da85f6c87ddfff9ff663.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_f960f72ee05580fe80f66a90.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_61997062dfec889b3adcad97.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_98d670c1443acb74ab2d8285.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_81457ae63b41bbd1738f3583.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_bfc07dd1d5ee43dd0c9df664.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_76f849ea1f60b87eed8b1286.woff')format("woff");}.ff7{font-family:ff7;line-height:0.036000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_43508b62017f0f2a5f24503a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_767a8df24bc6967ba52b6ca1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.887000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_322f0cdf39cd6e0d4e807832.woff')format("woff");}.ffa{font-family:ffa;line-height:1.820000;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:ffb;src:url('chunks/assets/font_b3e93f845282ccf025ae465b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.773000;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:ffc;src:url('chunks/assets/font_d9e8321b5457b8fe9ae133e4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002700px;}
.lsf{letter-spacing:0.002712px;}
.ls6{letter-spacing:0.004335px;}
.lsc{letter-spacing:14.543412px;}
.lsa{letter-spacing:18.178886px;}
.lsd{letter-spacing:18.179412px;}
.lse{letter-spacing:18.181059px;}
.ls8{letter-spacing:20.474712px;}
.ls5{letter-spacing:21.812712px;}
.ls4{letter-spacing:21.814335px;}
.ls7{letter-spacing:21.818712px;}
.ls2{letter-spacing:32.725605px;}
.ls3{letter-spacing:32.726700px;}
.ls0{letter-spacing:32.729412px;}
.lsb{letter-spacing:65.450712px;}
.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:-22.416000px;}
.wsb{word-spacing:-18.183288px;}
.ws2a{word-spacing:-3.633888px;}
.wse{word-spacing:-0.065455px;}
.ws1b{word-spacing:0.000000px;}
.ws2c{word-spacing:0.018394px;}
.ws31{word-spacing:0.536728px;}
.ws26{word-spacing:1.060365px;}
.ws11{word-spacing:1.845820px;}
.wsf{word-spacing:1.911274px;}
.ws1c{word-spacing:2.304002px;}
.ws27{word-spacing:2.696730px;}
.ws2f{word-spacing:3.154912px;}
.ws23{word-spacing:3.547639px;}
.ws2{word-spacing:3.613094px;}
.ws28{word-spacing:3.637044px;}
.ws21{word-spacing:3.809458px;}
.ws1{word-spacing:3.873485px;}
.ws20{word-spacing:4.136731px;}
.wsc{word-spacing:4.483200px;}
.wsa{word-spacing:4.791277px;}
.ws8{word-spacing:5.445823px;}
.ws25{word-spacing:5.511277px;}
.ws1d{word-spacing:5.773096px;}
.ws2e{word-spacing:6.231278px;}
.ws22{word-spacing:6.427642px;}
.ws0{word-spacing:6.455775px;}
.ws30{word-spacing:6.820369px;}
.ws6{word-spacing:7.213097px;}
.ws9{word-spacing:7.344006px;}
.ws7{word-spacing:7.474915px;}
.ws4{word-spacing:8.129461px;}
.ws5{word-spacing:8.980371px;}
.ws24{word-spacing:10.224009px;}
.ws2d{word-spacing:10.551282px;}
.ws29{word-spacing:18.098638px;}
.ws10{word-spacing:19.997885px;}
.ws15{word-spacing:21.751550px;}
.ws16{word-spacing:24.670565px;}
.ws1f{word-spacing:24.671885px;}
.wsd{word-spacing:24.672890px;}
.ws18{word-spacing:24.673550px;}
.ws1e{word-spacing:24.673895px;}
.ws19{word-spacing:24.674555px;}
.ws1a{word-spacing:24.675215px;}
.ws14{word-spacing:24.675245px;}
.ws17{word-spacing:24.676220px;}
.ws12{word-spacing:24.681215px;}
.ws13{word-spacing:24.681245px;}
.ws2b{word-spacing:78.574317px;}
._3{margin-left:-33.068083px;}
._4{margin-left:-5.810227px;}
._e{margin-left:-4.625592px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.936742px;}
._5{width:1.805833px;}
._1{width:3.202064px;}
._d{width:11.558569px;}
._10{width:20.749216px;}
._11{width:21.819744px;}
._a{width:26.651686px;}
._13{width:28.014569px;}
._b{width:29.068187px;}
._c{width:30.189616px;}
._9{width:34.123531px;}
._12{width:38.978835px;}
._8{width:40.346929px;}
._6{width:42.572386px;}
._7{width:45.098219px;}
._f{width:48.159541px;}
._1d{width:1121.371880px;}
._1c{width:1174.309866px;}
._1b{width:1222.011181px;}
._19{width:1227.247852px;}
._1a{width:1274.949167px;}
._18{width:1280.185838px;}
._25{width:1285.517721px;}
._21{width:1290.754393px;}
._16{width:1327.887153px;}
._14{width:1333.123824px;}
._24{width:1338.455707px;}
._20{width:1343.692379px;}
._17{width:1380.825138px;}
._15{width:1386.061810px;}
._23{width:1391.393693px;}
._1f{width:1396.630364px;}
._22{width:1444.331679px;}
._1e{width:1449.568350px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.325936px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:95.212205px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y3b{bottom:7.508320px;}
.y27{bottom:9.168000px;}
.y54{bottom:46.717500px;}
.y26{bottom:54.000000px;}
.y53{bottom:78.388500px;}
.y25{bottom:83.635500px;}
.y3c{bottom:90.171104px;}
.y52{bottom:102.777000px;}
.y3a{bottom:109.247132px;}
.y24{bottom:113.271000px;}
.y51{bottom:127.165500px;}
.y72{bottom:135.266820px;}
.y23{bottom:142.906500px;}
.y50{bottom:151.554000px;}
.y3d{bottom:166.475213px;}
.y22{bottom:172.542000px;}
.y71{bottom:174.978180px;}
.y4f{bottom:175.942500px;}
.y21{bottom:202.177500px;}
.y4e{bottom:215.523000px;}
.y70{bottom:215.930520px;}
.y4b{bottom:223.743000px;}
.y4a{bottom:228.226500px;}
.y20{bottom:231.813000px;}
.y49{bottom:232.710000px;}
.y48{bottom:237.193500px;}
.y4d{bottom:244.789500px;}
.y42{bottom:246.552000px;}
.y6f{bottom:256.882860px;}
.y47{bottom:264.091500px;}
.y46{bottom:268.575000px;}
.y1f{bottom:268.920000px;}
.y45{bottom:273.058500px;}
.y4c{bottom:274.056000px;}
.y44{bottom:277.542000px;}
.y43{bottom:290.991000px;}
.y6e{bottom:296.594220px;}
.y1e{bottom:306.028500px;}
.y41{bottom:326.802000px;}
.y6d{bottom:337.546560px;}
.y1d{bottom:343.135500px;}
.y40{bottom:351.190500px;}
.y1c{bottom:370.147500px;}
.y6c{bottom:377.257920px;}
.y3f{bottom:391.783500px;}
.y1b{bottom:397.159500px;}
.y6b{bottom:418.210260px;}
.y1a{bottom:424.171500px;}
.y19{bottom:451.183500px;}
.y3e{bottom:456.457500px;}
.y6a{bottom:459.162600px;}
.y18{bottom:478.195500px;}
.y39{bottom:498.515830px;}
.y69{bottom:498.873960px;}
.y17{bottom:505.207500px;}
.y16{bottom:534.843000px;}
.y68{bottom:539.826300px;}
.y15{bottom:571.950000px;}
.y67{bottom:579.537660px;}
.y14{bottom:596.338500px;}
.y66{bottom:620.490000px;}
.y13{bottom:633.445500px;}
.y65{bottom:661.442340px;}
.y12{bottom:673.575000px;}
.y64{bottom:701.153700px;}
.y38{bottom:704.596500px;}
.y11{bottom:714.168000px;}
.y37{bottom:728.985000px;}
.y63{bottom:742.106040px;}
.y36{bottom:753.373500px;}
.y10{bottom:763.588500px;}
.y35{bottom:777.762000px;}
.y62{bottom:781.817400px;}
.yf{bottom:787.977000px;}
.y34{bottom:802.150500px;}
.ye{bottom:812.365500px;}
.y61{bottom:822.769740px;}
.y33{bottom:826.539000px;}
.yd{bottom:836.754000px;}
.yc{bottom:861.142500px;}
.y60{bottom:863.722080px;}
.y32{bottom:867.132000px;}
.yb{bottom:885.531000px;}
.y5f{bottom:903.433440px;}
.ya{bottom:909.919500px;}
.y31{bottom:915.927000px;}
.y9{bottom:934.308000px;}
.y30{bottom:940.315500px;}
.y5e{bottom:944.385780px;}
.y8{bottom:958.696500px;}
.y2f{bottom:976.099500px;}
.y7{bottom:983.085000px;}
.y5d{bottom:984.097140px;}
.y2e{bottom:1000.488000px;}
.y6{bottom:1023.678000px;}
.y5c{bottom:1025.049480px;}
.y2d{bottom:1036.270500px;}
.y5b{bottom:1066.001820px;}
.y2c{bottom:1072.053000px;}
.y5{bottom:1073.098500px;}
.y2b{bottom:1096.441500px;}
.y4{bottom:1105.669500px;}
.y5a{bottom:1105.713180px;}
.y3{bottom:1130.058000px;}
.y2a{bottom:1132.225500px;}
.y59{bottom:1146.665520px;}
.y29{bottom:1156.614000px;}
.y2{bottom:1163.344500px;}
.y58{bottom:1186.376880px;}
.y1{bottom:1189.467000px;}
.y28{bottom:1192.396500px;}
.y57{bottom:1227.329220px;}
.y56{bottom:1268.281560px;}
.y55{bottom:1307.992920px;}
.h8{height:0.597756px;}
.h7{height:34.734266px;}
.h4{height:49.090950px;}
.h3{height:51.216077px;}
.h5{height:53.798400px;}
.h2{height:77.469300px;}
.hb{height:99.303354px;}
.h6{height:180.547744px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.h17{height:1419.750000px;}
.h16{height:1420.113375px;}
.h13{height:1424.250000px;}
.h12{height:1424.283600px;}
.h10{height:1424.875350px;}
.h11{height:1425.000000px;}
.h15{height:1425.456450px;}
.hd{height:1425.750000px;}
.hc{height:1426.041450px;}
.he{height:1430.200950px;}
.hf{height:1430.250000px;}
.h14{height:1431.393450px;}
.h9{height:1431.402375px;}
.ha{height:1431.750000px;}
.h1e{height:1433.250000px;}
.h1d{height:1433.412600px;}
.h1a{height:1433.801400px;}
.h1b{height:1434.000000px;}
.h1c{height:1434.190890px;}
.h24{height:1434.750000px;}
.h23{height:1434.833775px;}
.h1f{height:1435.224150px;}
.h20{height:1435.500000px;}
.h19{height:1439.250000px;}
.h18{height:1439.411100px;}
.h22{height:1444.500000px;}
.h21{height:1444.861725px;}
.h26{height:1445.250000px;}
.h25{height:1445.514900px;}
.w2{width:435.184801px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x1{left:57.544500px;}
.x8{left:73.999500px;}
.x7{left:79.405500px;}
.x3{left:92.779500px;}
.x9{left:94.909500px;}
.xa{left:113.319000px;}
.x18{left:121.616040px;}
.xb{left:145.146000px;}
.x11{left:188.437931px;}
.xf{left:200.946636px;}
.xd{left:228.963843px;}
.x2{left:234.537000px;}
.x4{left:243.708000px;}
.xe{left:258.174717px;}
.x17{left:299.092500px;}
.x12{left:301.662000px;}
.x13{left:308.194500px;}
.x14{left:337.036500px;}
.x15{left:350.319000px;}
.x5{left:399.525000px;}
.x10{left:410.991582px;}
.xc{left:442.366500px;}
.x16{left:818.004000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002400pt;}
.lsf{letter-spacing:0.002411pt;}
.ls6{letter-spacing:0.003853pt;}
.lsc{letter-spacing:12.927477pt;}
.lsa{letter-spacing:16.159009pt;}
.lsd{letter-spacing:16.159477pt;}
.lse{letter-spacing:16.160942pt;}
.ls8{letter-spacing:18.199744pt;}
.ls5{letter-spacing:19.389077pt;}
.ls4{letter-spacing:19.390520pt;}
.ls7{letter-spacing:19.394411pt;}
.ls2{letter-spacing:29.089427pt;}
.ls3{letter-spacing:29.090400pt;}
.ls0{letter-spacing:29.092811pt;}
.lsb{letter-spacing:58.178411pt;}
.ws3{word-spacing:-19.925333pt;}
.wsb{word-spacing:-16.162923pt;}
.ws2a{word-spacing:-3.230123pt;}
.wse{word-spacing:-0.058182pt;}
.ws1b{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.016350pt;}
.ws31{word-spacing:0.477091pt;}
.ws26{word-spacing:0.942546pt;}
.ws11{word-spacing:1.640729pt;}
.wsf{word-spacing:1.698911pt;}
.ws1c{word-spacing:2.048002pt;}
.ws27{word-spacing:2.397093pt;}
.ws2f{word-spacing:2.804366pt;}
.ws23{word-spacing:3.153457pt;}
.ws2{word-spacing:3.211639pt;}
.ws28{word-spacing:3.232928pt;}
.ws21{word-spacing:3.386185pt;}
.ws1{word-spacing:3.443098pt;}
.ws20{word-spacing:3.677094pt;}
.wsc{word-spacing:3.985067pt;}
.wsa{word-spacing:4.258913pt;}
.ws8{word-spacing:4.840731pt;}
.ws25{word-spacing:4.898913pt;}
.ws1d{word-spacing:5.131641pt;}
.ws2e{word-spacing:5.538914pt;}
.ws22{word-spacing:5.713459pt;}
.ws0{word-spacing:5.738467pt;}
.ws30{word-spacing:6.062551pt;}
.ws6{word-spacing:6.411642pt;}
.ws9{word-spacing:6.528005pt;}
.ws7{word-spacing:6.644369pt;}
.ws4{word-spacing:7.226188pt;}
.ws5{word-spacing:7.982552pt;}
.ws24{word-spacing:9.088008pt;}
.ws2d{word-spacing:9.378917pt;}
.ws29{word-spacing:16.087678pt;}
.ws10{word-spacing:17.775898pt;}
.ws15{word-spacing:19.334711pt;}
.ws16{word-spacing:21.929391pt;}
.ws1f{word-spacing:21.930565pt;}
.wsd{word-spacing:21.931458pt;}
.ws18{word-spacing:21.932045pt;}
.ws1e{word-spacing:21.932351pt;}
.ws19{word-spacing:21.932938pt;}
.ws1a{word-spacing:21.933525pt;}
.ws14{word-spacing:21.933551pt;}
.ws17{word-spacing:21.934418pt;}
.ws12{word-spacing:21.938858pt;}
.ws13{word-spacing:21.938885pt;}
.ws2b{word-spacing:69.843837pt;}
._3{margin-left:-29.393852pt;}
._4{margin-left:-5.164646pt;}
._e{margin-left:-4.111637pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.721549pt;}
._5{width:1.605185pt;}
._1{width:2.846279pt;}
._d{width:10.274283pt;}
._10{width:18.443747pt;}
._11{width:19.395328pt;}
._a{width:23.690387pt;}
._13{width:24.901839pt;}
._b{width:25.838389pt;}
._c{width:26.835214pt;}
._9{width:30.332028pt;}
._12{width:34.647853pt;}
._8{width:35.863937pt;}
._6{width:37.842121pt;}
._7{width:40.087306pt;}
._f{width:42.808481pt;}
._1d{width:996.775004pt;}
._1c{width:1043.830992pt;}
._1b{width:1086.232161pt;}
._19{width:1090.886979pt;}
._1a{width:1133.288148pt;}
._18{width:1137.942967pt;}
._25{width:1142.682419pt;}
._21{width:1147.337238pt;}
._16{width:1180.344136pt;}
._14{width:1184.998954pt;}
._24{width:1189.738406pt;}
._20{width:1194.393225pt;}
._17{width:1227.400123pt;}
._15{width:1232.054942pt;}
._23{width:1236.794394pt;}
._1f{width:1241.449213pt;}
._22{width:1283.850381pt;}
._1e{width:1288.505200pt;}
.fs3{font-size:42.956387pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:84.633071pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:6.674062pt;}
.y27{bottom:8.149333pt;}
.y54{bottom:41.526667pt;}
.y26{bottom:48.000000pt;}
.y53{bottom:69.678667pt;}
.y25{bottom:74.342667pt;}
.y3c{bottom:80.152093pt;}
.y52{bottom:91.357333pt;}
.y3a{bottom:97.108561pt;}
.y24{bottom:100.685333pt;}
.y51{bottom:113.036000pt;}
.y72{bottom:120.237173pt;}
.y23{bottom:127.028000pt;}
.y50{bottom:134.714667pt;}
.y3d{bottom:147.977967pt;}
.y22{bottom:153.370667pt;}
.y71{bottom:155.536160pt;}
.y4f{bottom:156.393333pt;}
.y21{bottom:179.713333pt;}
.y4e{bottom:191.576000pt;}
.y70{bottom:191.938240pt;}
.y4b{bottom:198.882667pt;}
.y4a{bottom:202.868000pt;}
.y20{bottom:206.056000pt;}
.y49{bottom:206.853333pt;}
.y48{bottom:210.838667pt;}
.y4d{bottom:217.590667pt;}
.y42{bottom:219.157333pt;}
.y6f{bottom:228.340320pt;}
.y47{bottom:234.748000pt;}
.y46{bottom:238.733333pt;}
.y1f{bottom:239.040000pt;}
.y45{bottom:242.718667pt;}
.y4c{bottom:243.605333pt;}
.y44{bottom:246.704000pt;}
.y43{bottom:258.658667pt;}
.y6e{bottom:263.639307pt;}
.y1e{bottom:272.025333pt;}
.y41{bottom:290.490667pt;}
.y6d{bottom:300.041387pt;}
.y1d{bottom:305.009333pt;}
.y40{bottom:312.169333pt;}
.y1c{bottom:329.020000pt;}
.y6c{bottom:335.340373pt;}
.y3f{bottom:348.252000pt;}
.y1b{bottom:353.030667pt;}
.y6b{bottom:371.742453pt;}
.y1a{bottom:377.041333pt;}
.y19{bottom:401.052000pt;}
.y3e{bottom:405.740000pt;}
.y6a{bottom:408.144533pt;}
.y18{bottom:425.062667pt;}
.y39{bottom:443.125182pt;}
.y69{bottom:443.443520pt;}
.y17{bottom:449.073333pt;}
.y16{bottom:475.416000pt;}
.y68{bottom:479.845600pt;}
.y15{bottom:508.400000pt;}
.y67{bottom:515.144587pt;}
.y14{bottom:530.078667pt;}
.y66{bottom:551.546667pt;}
.y13{bottom:563.062667pt;}
.y65{bottom:587.948747pt;}
.y12{bottom:598.733333pt;}
.y64{bottom:623.247733pt;}
.y38{bottom:626.308000pt;}
.y11{bottom:634.816000pt;}
.y37{bottom:647.986667pt;}
.y63{bottom:659.649813pt;}
.y36{bottom:669.665333pt;}
.y10{bottom:678.745333pt;}
.y35{bottom:691.344000pt;}
.y62{bottom:694.948800pt;}
.yf{bottom:700.424000pt;}
.y34{bottom:713.022667pt;}
.ye{bottom:722.102667pt;}
.y61{bottom:731.350880pt;}
.y33{bottom:734.701333pt;}
.yd{bottom:743.781333pt;}
.yc{bottom:765.460000pt;}
.y60{bottom:767.752960pt;}
.y32{bottom:770.784000pt;}
.yb{bottom:787.138667pt;}
.y5f{bottom:803.051947pt;}
.ya{bottom:808.817333pt;}
.y31{bottom:814.157333pt;}
.y9{bottom:830.496000pt;}
.y30{bottom:835.836000pt;}
.y5e{bottom:839.454027pt;}
.y8{bottom:852.174667pt;}
.y2f{bottom:867.644000pt;}
.y7{bottom:873.853333pt;}
.y5d{bottom:874.753013pt;}
.y2e{bottom:889.322667pt;}
.y6{bottom:909.936000pt;}
.y5c{bottom:911.155093pt;}
.y2d{bottom:921.129333pt;}
.y5b{bottom:947.557173pt;}
.y2c{bottom:952.936000pt;}
.y5{bottom:953.865333pt;}
.y2b{bottom:974.614667pt;}
.y4{bottom:982.817333pt;}
.y5a{bottom:982.856160pt;}
.y3{bottom:1004.496000pt;}
.y2a{bottom:1006.422667pt;}
.y59{bottom:1019.258240pt;}
.y29{bottom:1028.101333pt;}
.y2{bottom:1034.084000pt;}
.y58{bottom:1054.557227pt;}
.y1{bottom:1057.304000pt;}
.y28{bottom:1059.908000pt;}
.y57{bottom:1090.959307pt;}
.y56{bottom:1127.361387pt;}
.y55{bottom:1162.660373pt;}
.h8{height:0.531339pt;}
.h7{height:30.874903pt;}
.h4{height:43.636400pt;}
.h3{height:45.525402pt;}
.h5{height:47.820800pt;}
.h2{height:68.861600pt;}
.hb{height:88.269648pt;}
.h6{height:160.486883pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h17{height:1262.000000pt;}
.h16{height:1262.323000pt;}
.h13{height:1266.000000pt;}
.h12{height:1266.029867pt;}
.h10{height:1266.555867pt;}
.h11{height:1266.666667pt;}
.h15{height:1267.072400pt;}
.hd{height:1267.333333pt;}
.hc{height:1267.592400pt;}
.he{height:1271.289733pt;}
.hf{height:1271.333333pt;}
.h14{height:1272.349733pt;}
.h9{height:1272.357667pt;}
.ha{height:1272.666667pt;}
.h1e{height:1274.000000pt;}
.h1d{height:1274.144533pt;}
.h1a{height:1274.490133pt;}
.h1b{height:1274.666667pt;}
.h1c{height:1274.836347pt;}
.h24{height:1275.333333pt;}
.h23{height:1275.407800pt;}
.h1f{height:1275.754800pt;}
.h20{height:1276.000000pt;}
.h19{height:1279.333333pt;}
.h18{height:1279.476533pt;}
.h22{height:1284.000000pt;}
.h21{height:1284.321533pt;}
.h26{height:1284.666667pt;}
.h25{height:1284.902133pt;}
.w2{width:386.830934pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x1{left:51.150667pt;}
.x8{left:65.777333pt;}
.x7{left:70.582667pt;}
.x3{left:82.470667pt;}
.x9{left:84.364000pt;}
.xa{left:100.728000pt;}
.x18{left:108.103147pt;}
.xb{left:129.018667pt;}
.x11{left:167.500383pt;}
.xf{left:178.619232pt;}
.xd{left:203.523416pt;}
.x2{left:208.477333pt;}
.x4{left:216.629333pt;}
.xe{left:229.488638pt;}
.x17{left:265.860000pt;}
.x12{left:268.144000pt;}
.x13{left:273.950667pt;}
.x14{left:299.588000pt;}
.x15{left:311.394667pt;}
.x5{left:355.133333pt;}
.x10{left:365.325851pt;}
.xc{left:393.214667pt;}
.x16{left:727.114667pt;}
}




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