
    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_26269ae21df26c6ae12861c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.858000;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_a962eb209519c61b6486021c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_5edb07835b7801a2b28aff92.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172000;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_fd0c982ed44bc91bcf61921a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.124000;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_a0fe43509e0618a0a6f22f34.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.135000;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_b91d825b29e57b7501bedd00.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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_46b98b2a0a944e904ba21eef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097000;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_96d55daa175cbfbe2af281eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6a4ea720d55d0c760a783f1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882000;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_a8db4ba5dcfc2ab6ab0f8cb7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ca45f80b17167b946cf89e06.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.883000;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;}
.ls18{letter-spacing:-0.296352px;}
.ls19{letter-spacing:-0.284256px;}
.ls17{letter-spacing:-0.272160px;}
.lse{letter-spacing:-0.192096px;}
.ls1a{letter-spacing:-0.185472px;}
.ls13{letter-spacing:-0.172224px;}
.ls9{letter-spacing:-0.165600px;}
.ls1c{letter-spacing:-0.158976px;}
.lsd{letter-spacing:-0.152352px;}
.lsc{letter-spacing:-0.145728px;}
.lsa{letter-spacing:-0.139104px;}
.ls12{letter-spacing:-0.132480px;}
.ls1b{letter-spacing:-0.125856px;}
.ls10{letter-spacing:-0.119232px;}
.ls15{letter-spacing:-0.112608px;}
.ls14{letter-spacing:-0.105984px;}
.lsf{letter-spacing:-0.079488px;}
.lsb{letter-spacing:-0.072864px;}
.ls11{letter-spacing:-0.059616px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.150336px;}
.ls2{letter-spacing:0.283968px;}
.ls0{letter-spacing:0.286560px;}
.ls3{letter-spacing:0.292320px;}
.ls1{letter-spacing:0.300672px;}
.ls1d{letter-spacing:0.947232px;}
.ls5{letter-spacing:12.983904px;}
.ls16{letter-spacing:17.962848px;}
.ls6{letter-spacing:19.052784px;}
.ls4{letter-spacing:49.416048px;}
.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;}
}
.ws1{word-spacing:-30.359520px;}
.ws0{word-spacing:-30.351168px;}
.ws2{word-spacing:-23.040000px;}
.ws5{word-spacing:-21.196800px;}
.ws9{word-spacing:-21.123936px;}
.ws6{word-spacing:-21.077568px;}
.wsf{word-spacing:-21.070944px;}
.ws4{word-spacing:-21.057696px;}
.wsa{word-spacing:-21.044448px;}
.wsd{word-spacing:-19.069344px;}
.wsc{word-spacing:-19.057248px;}
.ws7{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
.ws8{word-spacing:0.079488px;}
.wse{word-spacing:0.092736px;}
.ws3{word-spacing:0.099360px;}
._c{margin-left:-5.431680px;}
._b{margin-left:-3.709440px;}
._5{margin-left:-2.318400px;}
._3{margin-left:-1.032912px;}
._7{width:1.508112px;}
._20{width:2.858400px;}
._8{width:3.974400px;}
._18{width:5.190192px;}
._a{width:6.226560px;}
._e{width:7.525440px;}
._12{width:9.207360px;}
._26{width:10.360368px;}
._1f{width:11.440800px;}
._6{width:13.181760px;}
._17{width:14.572800px;}
._16{width:15.831360px;}
._1d{width:17.048160px;}
._15{width:18.165744px;}
._14{width:19.343520px;}
._22{width:20.433600px;}
._29{width:21.549600px;}
._9{width:22.786560px;}
._4{width:24.243840px;}
._d{width:25.767360px;}
._f{width:27.357120px;}
._21{width:28.368000px;}
._2a{width:29.534400px;}
._13{width:31.331520px;}
._23{width:32.947200px;}
._1e{width:34.259904px;}
._2{width:35.451504px;}
._2c{width:37.058400px;}
._24{width:38.269728px;}
._28{width:39.894192px;}
._1c{width:41.598720px;}
._1b{width:42.857280px;}
._11{width:44.716608px;}
._10{width:45.850032px;}
._27{width:47.073168px;}
._1{width:48.786048px;}
._0{width:49.787568px;}
._2b{width:51.113232px;}
._25{width:52.394400px;}
._19{width:74.246976px;}
._1a{width:1720.814688px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y31{bottom:4.860000px;}
.y30{bottom:67.500000px;}
.y2f{bottom:70.560000px;}
.y88{bottom:114.120000px;}
.y2c{bottom:129.600000px;}
.y5c{bottom:133.920000px;}
.y87{bottom:137.520000px;}
.y2b{bottom:152.640000px;}
.y5b{bottom:157.320000px;}
.y86{bottom:160.920000px;}
.y2a{bottom:176.040000px;}
.y5a{bottom:180.720000px;}
.y85{bottom:184.320000px;}
.y29{bottom:199.080000px;}
.y59{bottom:204.120000px;}
.y84{bottom:207.720000px;}
.y28{bottom:222.120000px;}
.y58{bottom:227.520000px;}
.y83{bottom:231.120000px;}
.y27{bottom:245.520000px;}
.y57{bottom:250.920000px;}
.y82{bottom:254.520000px;}
.y26{bottom:268.560000px;}
.y56{bottom:274.320000px;}
.y81{bottom:277.920000px;}
.y25{bottom:291.600000px;}
.y55{bottom:297.720000px;}
.y80{bottom:301.320000px;}
.y54{bottom:321.120000px;}
.y7f{bottom:324.720000px;}
.y24{bottom:326.520000px;}
.y53{bottom:344.520000px;}
.y7e{bottom:348.120000px;}
.y23{bottom:349.920000px;}
.y52{bottom:367.920000px;}
.y7d{bottom:371.520000px;}
.y22{bottom:373.320000px;}
.y51{bottom:391.320000px;}
.y7c{bottom:394.920000px;}
.y21{bottom:404.640000px;}
.y50{bottom:414.720000px;}
.y7b{bottom:418.320000px;}
.y20{bottom:425.520000px;}
.y4f{bottom:438.120000px;}
.y7a{bottom:441.720000px;}
.y1f{bottom:446.760000px;}
.y4e{bottom:461.520000px;}
.y79{bottom:465.120000px;}
.y1e{bottom:468.360000px;}
.y4d{bottom:484.920000px;}
.y78{bottom:488.520000px;}
.y1d{bottom:489.960000px;}
.y4c{bottom:508.320000px;}
.y1c{bottom:511.200000px;}
.y77{bottom:511.920000px;}
.y4b{bottom:531.720000px;}
.y1b{bottom:532.800000px;}
.y76{bottom:535.320000px;}
.y1a{bottom:554.040000px;}
.y4a{bottom:555.120000px;}
.y75{bottom:558.720000px;}
.y19{bottom:575.640000px;}
.y49{bottom:578.520000px;}
.y74{bottom:582.120000px;}
.y18{bottom:596.880000px;}
.y48{bottom:601.920000px;}
.y73{bottom:605.520000px;}
.y17{bottom:618.480000px;}
.y47{bottom:625.320000px;}
.y72{bottom:628.920000px;}
.y16{bottom:640.080000px;}
.y46{bottom:648.720000px;}
.y71{bottom:652.320000px;}
.y15{bottom:661.320000px;}
.y45{bottom:672.120000px;}
.y70{bottom:675.720000px;}
.y14{bottom:682.920000px;}
.y44{bottom:695.520000px;}
.y6f{bottom:699.120000px;}
.y13{bottom:704.160000px;}
.y43{bottom:718.920000px;}
.y6e{bottom:722.520000px;}
.y12{bottom:725.760000px;}
.y42{bottom:742.320000px;}
.y6d{bottom:745.920000px;}
.y11{bottom:747.360000px;}
.y41{bottom:765.720000px;}
.y10{bottom:768.600000px;}
.y6c{bottom:769.320000px;}
.y40{bottom:789.120000px;}
.yf{bottom:790.200000px;}
.y6b{bottom:792.720000px;}
.ye{bottom:811.440000px;}
.y3f{bottom:812.520000px;}
.y6a{bottom:816.120000px;}
.yd{bottom:833.400000px;}
.y3e{bottom:835.560000px;}
.y69{bottom:839.520000px;}
.y3d{bottom:857.160000px;}
.y68{bottom:862.920000px;}
.yc{bottom:870.480000px;}
.y3c{bottom:878.400000px;}
.y67{bottom:886.320000px;}
.yb{bottom:893.880000px;}
.y66{bottom:909.720000px;}
.y3b{bottom:913.320000px;}
.ya{bottom:917.280000px;}
.y65{bottom:933.120000px;}
.y3a{bottom:937.080000px;}
.y9{bottom:940.680000px;}
.y64{bottom:956.520000px;}
.y39{bottom:960.120000px;}
.y8{bottom:964.080000px;}
.y63{bottom:979.920000px;}
.y38{bottom:983.160000px;}
.y7{bottom:987.480000px;}
.y62{bottom:1003.320000px;}
.y37{bottom:1006.560000px;}
.y6{bottom:1010.880000px;}
.y61{bottom:1026.720000px;}
.y36{bottom:1029.600000px;}
.y5{bottom:1034.280000px;}
.y60{bottom:1050.120000px;}
.y35{bottom:1052.640000px;}
.y4{bottom:1058.760000px;}
.y5f{bottom:1073.520000px;}
.y34{bottom:1075.680000px;}
.y3{bottom:1085.040000px;}
.y5e{bottom:1096.920000px;}
.y33{bottom:1099.080000px;}
.y2{bottom:1108.440000px;}
.y5d{bottom:1120.320000px;}
.y32{bottom:1122.120000px;}
.y1{bottom:1132.920000px;}
.y2e{bottom:1157.040000px;}
.y2d{bottom:1191.960000px;}
.h9{height:21.000000px;}
.h7{height:47.988281px;}
.ha{height:52.859520px;}
.h8{height:57.695040px;}
.h6{height:57.893760px;}
.h3{height:62.712000px;}
.h5{height:62.928000px;}
.h4{height:66.384000px;}
.h2{height:70.741440px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:22.500000px;}
.w6{width:24.000000px;}
.w4{width:25.500000px;}
.w3{width:27.000000px;}
.w2{width:28.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:108.000000px;}
.xe{left:135.000000px;}
.x4{left:151.091316px;}
.xf{left:162.000000px;}
.xb{left:193.049928px;}
.x2{left:226.114020px;}
.xd{left:318.885876px;}
.x9{left:369.951480px;}
.xa{left:374.127480px;}
.x7{left:536.410080px;}
.x6{left:549.999720px;}
.x1{left:632.701800px;}
.x5{left:653.677920px;}
.x8{left:685.015560px;}
.xc{left:784.950120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.263424pt;}
.ls19{letter-spacing:-0.252672pt;}
.ls17{letter-spacing:-0.241920pt;}
.lse{letter-spacing:-0.170752pt;}
.ls1a{letter-spacing:-0.164864pt;}
.ls13{letter-spacing:-0.153088pt;}
.ls9{letter-spacing:-0.147200pt;}
.ls1c{letter-spacing:-0.141312pt;}
.lsd{letter-spacing:-0.135424pt;}
.lsc{letter-spacing:-0.129536pt;}
.lsa{letter-spacing:-0.123648pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls1b{letter-spacing:-0.111872pt;}
.ls10{letter-spacing:-0.105984pt;}
.ls15{letter-spacing:-0.100096pt;}
.ls14{letter-spacing:-0.094208pt;}
.lsf{letter-spacing:-0.070656pt;}
.lsb{letter-spacing:-0.064768pt;}
.ls11{letter-spacing:-0.052992pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.133632pt;}
.ls2{letter-spacing:0.252416pt;}
.ls0{letter-spacing:0.254720pt;}
.ls3{letter-spacing:0.259840pt;}
.ls1{letter-spacing:0.267264pt;}
.ls1d{letter-spacing:0.841984pt;}
.ls5{letter-spacing:11.541248pt;}
.ls16{letter-spacing:15.966976pt;}
.ls6{letter-spacing:16.935808pt;}
.ls4{letter-spacing:43.925376pt;}
.ws1{word-spacing:-26.986240pt;}
.ws0{word-spacing:-26.978816pt;}
.ws2{word-spacing:-20.480000pt;}
.ws5{word-spacing:-18.841600pt;}
.ws9{word-spacing:-18.776832pt;}
.ws6{word-spacing:-18.735616pt;}
.wsf{word-spacing:-18.729728pt;}
.ws4{word-spacing:-18.717952pt;}
.wsa{word-spacing:-18.706176pt;}
.wsd{word-spacing:-16.950528pt;}
.wsc{word-spacing:-16.939776pt;}
.ws7{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
.ws8{word-spacing:0.070656pt;}
.wse{word-spacing:0.082432pt;}
.ws3{word-spacing:0.088320pt;}
._c{margin-left:-4.828160pt;}
._b{margin-left:-3.297280pt;}
._5{margin-left:-2.060800pt;}
._3{margin-left:-0.918144pt;}
._7{width:1.340544pt;}
._20{width:2.540800pt;}
._8{width:3.532800pt;}
._18{width:4.613504pt;}
._a{width:5.534720pt;}
._e{width:6.689280pt;}
._12{width:8.184320pt;}
._26{width:9.209216pt;}
._1f{width:10.169600pt;}
._6{width:11.717120pt;}
._17{width:12.953600pt;}
._16{width:14.072320pt;}
._1d{width:15.153920pt;}
._15{width:16.147328pt;}
._14{width:17.194240pt;}
._22{width:18.163200pt;}
._29{width:19.155200pt;}
._9{width:20.254720pt;}
._4{width:21.550080pt;}
._d{width:22.904320pt;}
._f{width:24.317440pt;}
._21{width:25.216000pt;}
._2a{width:26.252800pt;}
._13{width:27.850240pt;}
._23{width:29.286400pt;}
._1e{width:30.453248pt;}
._2{width:31.512448pt;}
._2c{width:32.940800pt;}
._24{width:34.017536pt;}
._28{width:35.461504pt;}
._1c{width:36.976640pt;}
._1b{width:38.095360pt;}
._11{width:39.748096pt;}
._10{width:40.755584pt;}
._27{width:41.842816pt;}
._1{width:43.365376pt;}
._0{width:44.255616pt;}
._2b{width:45.433984pt;}
._25{width:46.572800pt;}
._19{width:65.997312pt;}
._1a{width:1529.613056pt;}
.fs3{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:4.320000pt;}
.y30{bottom:60.000000pt;}
.y2f{bottom:62.720000pt;}
.y88{bottom:101.440000pt;}
.y2c{bottom:115.200000pt;}
.y5c{bottom:119.040000pt;}
.y87{bottom:122.240000pt;}
.y2b{bottom:135.680000pt;}
.y5b{bottom:139.840000pt;}
.y86{bottom:143.040000pt;}
.y2a{bottom:156.480000pt;}
.y5a{bottom:160.640000pt;}
.y85{bottom:163.840000pt;}
.y29{bottom:176.960000pt;}
.y59{bottom:181.440000pt;}
.y84{bottom:184.640000pt;}
.y28{bottom:197.440000pt;}
.y58{bottom:202.240000pt;}
.y83{bottom:205.440000pt;}
.y27{bottom:218.240000pt;}
.y57{bottom:223.040000pt;}
.y82{bottom:226.240000pt;}
.y26{bottom:238.720000pt;}
.y56{bottom:243.840000pt;}
.y81{bottom:247.040000pt;}
.y25{bottom:259.200000pt;}
.y55{bottom:264.640000pt;}
.y80{bottom:267.840000pt;}
.y54{bottom:285.440000pt;}
.y7f{bottom:288.640000pt;}
.y24{bottom:290.240000pt;}
.y53{bottom:306.240000pt;}
.y7e{bottom:309.440000pt;}
.y23{bottom:311.040000pt;}
.y52{bottom:327.040000pt;}
.y7d{bottom:330.240000pt;}
.y22{bottom:331.840000pt;}
.y51{bottom:347.840000pt;}
.y7c{bottom:351.040000pt;}
.y21{bottom:359.680000pt;}
.y50{bottom:368.640000pt;}
.y7b{bottom:371.840000pt;}
.y20{bottom:378.240000pt;}
.y4f{bottom:389.440000pt;}
.y7a{bottom:392.640000pt;}
.y1f{bottom:397.120000pt;}
.y4e{bottom:410.240000pt;}
.y79{bottom:413.440000pt;}
.y1e{bottom:416.320000pt;}
.y4d{bottom:431.040000pt;}
.y78{bottom:434.240000pt;}
.y1d{bottom:435.520000pt;}
.y4c{bottom:451.840000pt;}
.y1c{bottom:454.400000pt;}
.y77{bottom:455.040000pt;}
.y4b{bottom:472.640000pt;}
.y1b{bottom:473.600000pt;}
.y76{bottom:475.840000pt;}
.y1a{bottom:492.480000pt;}
.y4a{bottom:493.440000pt;}
.y75{bottom:496.640000pt;}
.y19{bottom:511.680000pt;}
.y49{bottom:514.240000pt;}
.y74{bottom:517.440000pt;}
.y18{bottom:530.560000pt;}
.y48{bottom:535.040000pt;}
.y73{bottom:538.240000pt;}
.y17{bottom:549.760000pt;}
.y47{bottom:555.840000pt;}
.y72{bottom:559.040000pt;}
.y16{bottom:568.960000pt;}
.y46{bottom:576.640000pt;}
.y71{bottom:579.840000pt;}
.y15{bottom:587.840000pt;}
.y45{bottom:597.440000pt;}
.y70{bottom:600.640000pt;}
.y14{bottom:607.040000pt;}
.y44{bottom:618.240000pt;}
.y6f{bottom:621.440000pt;}
.y13{bottom:625.920000pt;}
.y43{bottom:639.040000pt;}
.y6e{bottom:642.240000pt;}
.y12{bottom:645.120000pt;}
.y42{bottom:659.840000pt;}
.y6d{bottom:663.040000pt;}
.y11{bottom:664.320000pt;}
.y41{bottom:680.640000pt;}
.y10{bottom:683.200000pt;}
.y6c{bottom:683.840000pt;}
.y40{bottom:701.440000pt;}
.yf{bottom:702.400000pt;}
.y6b{bottom:704.640000pt;}
.ye{bottom:721.280000pt;}
.y3f{bottom:722.240000pt;}
.y6a{bottom:725.440000pt;}
.yd{bottom:740.800000pt;}
.y3e{bottom:742.720000pt;}
.y69{bottom:746.240000pt;}
.y3d{bottom:761.920000pt;}
.y68{bottom:767.040000pt;}
.yc{bottom:773.760000pt;}
.y3c{bottom:780.800000pt;}
.y67{bottom:787.840000pt;}
.yb{bottom:794.560000pt;}
.y66{bottom:808.640000pt;}
.y3b{bottom:811.840000pt;}
.ya{bottom:815.360000pt;}
.y65{bottom:829.440000pt;}
.y3a{bottom:832.960000pt;}
.y9{bottom:836.160000pt;}
.y64{bottom:850.240000pt;}
.y39{bottom:853.440000pt;}
.y8{bottom:856.960000pt;}
.y63{bottom:871.040000pt;}
.y38{bottom:873.920000pt;}
.y7{bottom:877.760000pt;}
.y62{bottom:891.840000pt;}
.y37{bottom:894.720000pt;}
.y6{bottom:898.560000pt;}
.y61{bottom:912.640000pt;}
.y36{bottom:915.200000pt;}
.y5{bottom:919.360000pt;}
.y60{bottom:933.440000pt;}
.y35{bottom:935.680000pt;}
.y4{bottom:941.120000pt;}
.y5f{bottom:954.240000pt;}
.y34{bottom:956.160000pt;}
.y3{bottom:964.480000pt;}
.y5e{bottom:975.040000pt;}
.y33{bottom:976.960000pt;}
.y2{bottom:985.280000pt;}
.y5d{bottom:995.840000pt;}
.y32{bottom:997.440000pt;}
.y1{bottom:1007.040000pt;}
.y2e{bottom:1028.480000pt;}
.y2d{bottom:1059.520000pt;}
.h9{height:18.666667pt;}
.h7{height:42.656250pt;}
.ha{height:46.986240pt;}
.h8{height:51.284480pt;}
.h6{height:51.461120pt;}
.h3{height:55.744000pt;}
.h5{height:55.936000pt;}
.h4{height:59.008000pt;}
.h2{height:62.881280pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:20.000000pt;}
.w6{width:21.333333pt;}
.w4{width:22.666667pt;}
.w3{width:24.000000pt;}
.w2{width:25.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:96.000000pt;}
.xe{left:120.000000pt;}
.x4{left:134.303392pt;}
.xf{left:144.000000pt;}
.xb{left:171.599936pt;}
.x2{left:200.990240pt;}
.xd{left:283.454112pt;}
.x9{left:328.845760pt;}
.xa{left:332.557760pt;}
.x7{left:476.808960pt;}
.x6{left:488.888640pt;}
.x1{left:562.401600pt;}
.x5{left:581.047040pt;}
.x8{left:608.902720pt;}
.xc{left:697.733440pt;}
}




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