
    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_326c7bd567ede1c0ec35324e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_22bac0f6ad5ddb4d6c82da80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d96ce9b42c9b9baa6c975e81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_432abf7379fe911fb0c47a72.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_a86b9b479e676d96dffffe57.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_2a420f856f6794cb5e466c3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ff5d579b37c2e36f16667ccf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_10fb50b07dbe21041704c8d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_c925bb77fd6b35d452b83ddf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.288000px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.ls11{letter-spacing:1.260000px;}
.lse{letter-spacing:6.300000px;}
.ls10{letter-spacing:10.920000px;}
.lsc{letter-spacing:11.340000px;}
.ls8{letter-spacing:13.500000px;}
.ls7{letter-spacing:19.980000px;}
.lsf{letter-spacing:37.260000px;}
.lsd{letter-spacing:40.860000px;}
.ls4{letter-spacing:43.200000px;}
.ls13{letter-spacing:54.144000px;}
.ls5{letter-spacing:66.240000px;}
.ls6{letter-spacing:110.160000px;}
.lsb{letter-spacing:115.740000px;}
.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;}
}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.432080px;}
._1{width:1.372080px;}
._c{width:2.448000px;}
._d{width:3.456000px;}
._f{width:4.456080px;}
._10{width:5.810400px;}
._8{width:7.632000px;}
._7{width:8.640000px;}
._23{width:9.709680px;}
._3{width:11.016000px;}
._4{width:12.024000px;}
._28{width:13.057200px;}
._b{width:14.256000px;}
._30{width:15.752880px;}
._1a{width:16.763760px;}
._1b{width:17.774640px;}
._11{width:19.543680px;}
._19{width:22.070880px;}
._22{width:23.166000px;}
._29{width:24.429600px;}
._21{width:25.440480px;}
._1c{width:26.704080px;}
._1d{width:27.967680px;}
._6{width:29.368080px;}
._5{width:30.456000px;}
._38{width:31.702320px;}
._35{width:33.025680px;}
._34{width:34.369920px;}
._2c{width:37.234080px;}
._32{width:38.834640px;}
._1e{width:40.350960px;}
._1f{width:41.530320px;}
._24{width:42.793920px;}
._14{width:44.647200px;}
._3d{width:45.696000px;}
._2f{width:47.174400px;}
._16{width:49.196160px;}
._15{width:50.291280px;}
._e{width:58.800000px;}
._3e{width:60.456240px;}
._2d{width:61.747920px;}
._2e{width:63.853920px;}
._2{width:66.432000px;}
._33{width:68.655600px;}
._31{width:69.919200px;}
._2b{width:76.405680px;}
._2a{width:77.837760px;}
._36{width:93.672000px;}
._37{width:95.035920px;}
._20{width:96.960240px;}
._17{width:98.139600px;}
._18{width:99.740160px;}
._13{width:102.183120px;}
._12{width:103.530960px;}
._25{width:107.814720px;}
._9{width:109.584000px;}
._a{width:110.604000px;}
._27{width:114.989760px;}
._26{width:115.996320px;}
._3b{width:129.312000px;}
._3c{width:130.387920px;}
._3a{width:161.208000px;}
._39{width:162.432000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.960000px;}
.y5d{bottom:8.460000px;}
.y4{bottom:12.240000px;}
.y63{bottom:24.660000px;}
.y3{bottom:29.376000px;}
.y2{bottom:31.176000px;}
.y5c{bottom:68.400000px;}
.y57{bottom:77.580000px;}
.y2e{bottom:87.156000px;}
.y5b{bottom:89.100000px;}
.y52{bottom:90.756000px;}
.y7d{bottom:95.436000px;}
.y5a{bottom:109.800000px;}
.y2d{bottom:114.876000px;}
.y51{bottom:115.596000px;}
.y7c{bottom:116.136000px;}
.y59{bottom:130.500000px;}
.y7b{bottom:136.836000px;}
.y2c{bottom:142.596000px;}
.y50{bottom:143.316000px;}
.y58{bottom:151.200000px;}
.y7a{bottom:161.670000px;}
.y2b{bottom:170.490000px;}
.y4f{bottom:171.210000px;}
.y79{bottom:189.570000px;}
.y4e{bottom:197.850000px;}
.y2a{bottom:198.210000px;}
.y78{bottom:217.290000px;}
.y4d{bottom:222.690000px;}
.y29{bottom:225.930000px;}
.y77{bottom:245.010000px;}
.y4c{bottom:250.410000px;}
.y28{bottom:253.830000px;}
.y76{bottom:272.730000px;}
.y4b{bottom:278.310000px;}
.y27{bottom:281.595000px;}
.y75{bottom:300.675000px;}
.y4a{bottom:306.075000px;}
.y26{bottom:309.315000px;}
.y74{bottom:328.395000px;}
.y49{bottom:333.795000px;}
.y25{bottom:337.035000px;}
.y73{bottom:356.115000px;}
.y48{bottom:361.695000px;}
.y24{bottom:364.935000px;}
.y72{bottom:383.835000px;}
.y47{bottom:389.415000px;}
.y23{bottom:392.655000px;}
.y71{bottom:411.735000px;}
.y46{bottom:417.135000px;}
.y22{bottom:420.375000px;}
.y70{bottom:439.455000px;}
.y45{bottom:444.855000px;}
.y21{bottom:448.275000px;}
.y6f{bottom:467.175000px;}
.y44{bottom:472.755000px;}
.y20{bottom:475.995000px;}
.y6e{bottom:495.075000px;}
.y43{bottom:500.475000px;}
.y1f{bottom:503.715000px;}
.y6d{bottom:522.795000px;}
.y42{bottom:528.195000px;}
.y1e{bottom:531.435000px;}
.y6c{bottom:550.515000px;}
.y41{bottom:555.915000px;}
.y1d{bottom:559.335000px;}
.y6b{bottom:578.265000px;}
.y1c{bottom:582.945000px;}
.y40{bottom:583.845000px;}
.y6a{bottom:598.785000px;}
.y1b{bottom:603.645000px;}
.y3f{bottom:611.565000px;}
.y69{bottom:620.205000px;}
.y1a{bottom:624.345000px;}
.y3e{bottom:639.285000px;}
.y68{bottom:641.625000px;}
.y19{bottom:645.045000px;}
.y92{bottom:651.885000px;}
.y67{bottom:663.045000px;}
.y18{bottom:665.745000px;}
.y3d{bottom:667.185000px;}
.y91{bottom:672.585000px;}
.y66{bottom:684.465000px;}
.y17{bottom:686.445000px;}
.y90{bottom:693.285000px;}
.y3c{bottom:694.905000px;}
.y65{bottom:705.885000px;}
.y16{bottom:707.145000px;}
.y8f{bottom:713.985000px;}
.y3b{bottom:722.625000px;}
.y64{bottom:727.485000px;}
.y15{bottom:727.845000px;}
.y8e{bottom:734.685000px;}
.y14{bottom:748.545000px;}
.y62{bottom:748.905000px;}
.y3a{bottom:750.345000px;}
.y8d{bottom:755.385000px;}
.y13{bottom:769.245000px;}
.y8c{bottom:776.085000px;}
.y39{bottom:778.245000px;}
.y12{bottom:789.945000px;}
.y61{bottom:791.025000px;}
.y8b{bottom:796.785000px;}
.y38{bottom:805.965000px;}
.y11{bottom:810.645000px;}
.y60{bottom:812.445000px;}
.y8a{bottom:817.485000px;}
.y10{bottom:831.345000px;}
.y37{bottom:833.685000px;}
.y5e{bottom:833.865000px;}
.y89{bottom:838.185000px;}
.yf{bottom:852.090000px;}
.y56{bottom:855.330000px;}
.y88{bottom:858.930000px;}
.y36{bottom:861.630000px;}
.ye{bottom:872.790000px;}
.y87{bottom:879.630000px;}
.y35{bottom:889.350000px;}
.yd{bottom:893.490000px;}
.y86{bottom:900.330000px;}
.yc{bottom:914.190000px;}
.y34{bottom:917.070000px;}
.y85{bottom:921.030000px;}
.yb{bottom:934.710000px;}
.y84{bottom:941.730000px;}
.y33{bottom:944.790000px;}
.y83{bottom:962.430000px;}
.y32{bottom:972.690000px;}
.ya{bottom:976.110000px;}
.y82{bottom:983.130000px;}
.y9{bottom:996.810000px;}
.y31{bottom:1000.410000px;}
.y81{bottom:1003.830000px;}
.y8{bottom:1017.510000px;}
.y80{bottom:1024.530000px;}
.y30{bottom:1028.130000px;}
.y55{bottom:1032.090000px;}
.y7{bottom:1038.210000px;}
.y7f{bottom:1045.230000px;}
.y2f{bottom:1055.850000px;}
.y6{bottom:1059.630000px;}
.y54{bottom:1059.990000px;}
.y7e{bottom:1065.930000px;}
.y5{bottom:1083.750000px;}
.y53{bottom:1086.630000px;}
.y1{bottom:1190.160000px;}
.h12{height:20.700000px;}
.h11{height:20.736000px;}
.h3{height:31.860000px;}
.h14{height:41.400000px;}
.hd{height:50.800781px;}
.h9{height:59.066719px;}
.h8{height:59.343750px;}
.h5{height:59.436914px;}
.h7{height:70.628906px;}
.ha{height:70.664062px;}
.h15{height:71.613281px;}
.he{height:72.562478px;}
.h10{height:72.562480px;}
.hc{height:72.562487px;}
.hf{height:72.562489px;}
.h6{height:72.562500px;}
.h13{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hb{height:167.940000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.240000px;}
.w8{width:59.040000px;}
.w3{width:75.996000px;}
.w9{width:81.180000px;}
.w6{width:83.880000px;}
.w7{width:104.976000px;}
.w5{width:315.435000px;}
.wa{width:687.705000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x3{left:22.140000px;}
.x11{left:24.840000px;}
.x12{left:46.080000px;}
.x14{left:67.320000px;}
.x1{left:84.959987px;}
.x1a{left:87.299987px;}
.xf{left:97.380000px;}
.xa{left:102.275987px;}
.x1d{left:117.035987px;}
.xc{left:128.016000px;}
.x5{left:136.835987px;}
.x4{left:138.095987px;}
.x7{left:165.629987px;}
.xe{left:167.970000px;}
.x8{left:201.989987px;}
.x17{left:207.579000px;}
.x18{left:239.079000px;}
.x19{left:255.639000px;}
.x1b{left:284.654987px;}
.x1c{left:361.514987px;}
.x2{left:409.755000px;}
.xb{left:414.794987px;}
.x6{left:446.474987px;}
.x10{left:484.125000px;}
.x13{left:568.905000px;}
.x15{left:674.610000px;}
.x9{left:720.149987px;}
.x16{left:734.550000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls11{letter-spacing:1.120000pt;}
.lse{letter-spacing:5.600000pt;}
.ls10{letter-spacing:9.706667pt;}
.lsc{letter-spacing:10.080000pt;}
.ls8{letter-spacing:12.000000pt;}
.ls7{letter-spacing:17.760000pt;}
.lsf{letter-spacing:33.120000pt;}
.lsd{letter-spacing:36.320000pt;}
.ls4{letter-spacing:38.400000pt;}
.ls13{letter-spacing:48.128000pt;}
.ls5{letter-spacing:58.880000pt;}
.ls6{letter-spacing:97.920000pt;}
.lsb{letter-spacing:102.880000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.219627pt;}
._c{width:2.176000pt;}
._d{width:3.072000pt;}
._f{width:3.960960pt;}
._10{width:5.164800pt;}
._8{width:6.784000pt;}
._7{width:7.680000pt;}
._23{width:8.630827pt;}
._3{width:9.792000pt;}
._4{width:10.688000pt;}
._28{width:11.606400pt;}
._b{width:12.672000pt;}
._30{width:14.002560pt;}
._1a{width:14.901120pt;}
._1b{width:15.799680pt;}
._11{width:17.372160pt;}
._19{width:19.618560pt;}
._22{width:20.592000pt;}
._29{width:21.715200pt;}
._21{width:22.613760pt;}
._1c{width:23.736960pt;}
._1d{width:24.860160pt;}
._6{width:26.104960pt;}
._5{width:27.072000pt;}
._38{width:28.179840pt;}
._35{width:29.356160pt;}
._34{width:30.551040pt;}
._2c{width:33.096960pt;}
._32{width:34.519680pt;}
._1e{width:35.867520pt;}
._1f{width:36.915840pt;}
._24{width:38.039040pt;}
._14{width:39.686400pt;}
._3d{width:40.618667pt;}
._2f{width:41.932800pt;}
._16{width:43.729920pt;}
._15{width:44.703360pt;}
._e{width:52.266667pt;}
._3e{width:53.738880pt;}
._2d{width:54.887040pt;}
._2e{width:56.759040pt;}
._2{width:59.050667pt;}
._33{width:61.027200pt;}
._31{width:62.150400pt;}
._2b{width:67.916160pt;}
._2a{width:69.189120pt;}
._36{width:83.264000pt;}
._37{width:84.476373pt;}
._20{width:86.186880pt;}
._17{width:87.235200pt;}
._18{width:88.657920pt;}
._13{width:90.829440pt;}
._12{width:92.027520pt;}
._25{width:95.835307pt;}
._9{width:97.408000pt;}
._a{width:98.314667pt;}
._27{width:102.213120pt;}
._26{width:103.107840pt;}
._3b{width:114.944000pt;}
._3c{width:115.900373pt;}
._3a{width:143.296000pt;}
._39{width:144.384000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:3.520000pt;}
.y5d{bottom:7.520000pt;}
.y4{bottom:10.880000pt;}
.y63{bottom:21.920000pt;}
.y3{bottom:26.112000pt;}
.y2{bottom:27.712000pt;}
.y5c{bottom:60.800000pt;}
.y57{bottom:68.960000pt;}
.y2e{bottom:77.472000pt;}
.y5b{bottom:79.200000pt;}
.y52{bottom:80.672000pt;}
.y7d{bottom:84.832000pt;}
.y5a{bottom:97.600000pt;}
.y2d{bottom:102.112000pt;}
.y51{bottom:102.752000pt;}
.y7c{bottom:103.232000pt;}
.y59{bottom:116.000000pt;}
.y7b{bottom:121.632000pt;}
.y2c{bottom:126.752000pt;}
.y50{bottom:127.392000pt;}
.y58{bottom:134.400000pt;}
.y7a{bottom:143.706667pt;}
.y2b{bottom:151.546667pt;}
.y4f{bottom:152.186667pt;}
.y79{bottom:168.506667pt;}
.y4e{bottom:175.866667pt;}
.y2a{bottom:176.186667pt;}
.y78{bottom:193.146667pt;}
.y4d{bottom:197.946667pt;}
.y29{bottom:200.826667pt;}
.y77{bottom:217.786667pt;}
.y4c{bottom:222.586667pt;}
.y28{bottom:225.626667pt;}
.y76{bottom:242.426667pt;}
.y4b{bottom:247.386667pt;}
.y27{bottom:250.306667pt;}
.y75{bottom:267.266667pt;}
.y4a{bottom:272.066667pt;}
.y26{bottom:274.946667pt;}
.y74{bottom:291.906667pt;}
.y49{bottom:296.706667pt;}
.y25{bottom:299.586667pt;}
.y73{bottom:316.546667pt;}
.y48{bottom:321.506667pt;}
.y24{bottom:324.386667pt;}
.y72{bottom:341.186667pt;}
.y47{bottom:346.146667pt;}
.y23{bottom:349.026667pt;}
.y71{bottom:365.986667pt;}
.y46{bottom:370.786667pt;}
.y22{bottom:373.666667pt;}
.y70{bottom:390.626667pt;}
.y45{bottom:395.426667pt;}
.y21{bottom:398.466667pt;}
.y6f{bottom:415.266667pt;}
.y44{bottom:420.226667pt;}
.y20{bottom:423.106667pt;}
.y6e{bottom:440.066667pt;}
.y43{bottom:444.866667pt;}
.y1f{bottom:447.746667pt;}
.y6d{bottom:464.706667pt;}
.y42{bottom:469.506667pt;}
.y1e{bottom:472.386667pt;}
.y6c{bottom:489.346667pt;}
.y41{bottom:494.146667pt;}
.y1d{bottom:497.186667pt;}
.y6b{bottom:514.013333pt;}
.y1c{bottom:518.173333pt;}
.y40{bottom:518.973333pt;}
.y6a{bottom:532.253333pt;}
.y1b{bottom:536.573333pt;}
.y3f{bottom:543.613333pt;}
.y69{bottom:551.293333pt;}
.y1a{bottom:554.973333pt;}
.y3e{bottom:568.253333pt;}
.y68{bottom:570.333333pt;}
.y19{bottom:573.373333pt;}
.y92{bottom:579.453333pt;}
.y67{bottom:589.373333pt;}
.y18{bottom:591.773333pt;}
.y3d{bottom:593.053333pt;}
.y91{bottom:597.853333pt;}
.y66{bottom:608.413333pt;}
.y17{bottom:610.173333pt;}
.y90{bottom:616.253333pt;}
.y3c{bottom:617.693333pt;}
.y65{bottom:627.453333pt;}
.y16{bottom:628.573333pt;}
.y8f{bottom:634.653333pt;}
.y3b{bottom:642.333333pt;}
.y64{bottom:646.653333pt;}
.y15{bottom:646.973333pt;}
.y8e{bottom:653.053333pt;}
.y14{bottom:665.373333pt;}
.y62{bottom:665.693333pt;}
.y3a{bottom:666.973333pt;}
.y8d{bottom:671.453333pt;}
.y13{bottom:683.773333pt;}
.y8c{bottom:689.853333pt;}
.y39{bottom:691.773333pt;}
.y12{bottom:702.173333pt;}
.y61{bottom:703.133333pt;}
.y8b{bottom:708.253333pt;}
.y38{bottom:716.413333pt;}
.y11{bottom:720.573333pt;}
.y60{bottom:722.173333pt;}
.y8a{bottom:726.653333pt;}
.y10{bottom:738.973333pt;}
.y37{bottom:741.053333pt;}
.y5e{bottom:741.213333pt;}
.y89{bottom:745.053333pt;}
.yf{bottom:757.413333pt;}
.y56{bottom:760.293333pt;}
.y88{bottom:763.493333pt;}
.y36{bottom:765.893333pt;}
.ye{bottom:775.813333pt;}
.y87{bottom:781.893333pt;}
.y35{bottom:790.533333pt;}
.yd{bottom:794.213333pt;}
.y86{bottom:800.293333pt;}
.yc{bottom:812.613333pt;}
.y34{bottom:815.173333pt;}
.y85{bottom:818.693333pt;}
.yb{bottom:830.853333pt;}
.y84{bottom:837.093333pt;}
.y33{bottom:839.813333pt;}
.y83{bottom:855.493333pt;}
.y32{bottom:864.613333pt;}
.ya{bottom:867.653333pt;}
.y82{bottom:873.893333pt;}
.y9{bottom:886.053333pt;}
.y31{bottom:889.253333pt;}
.y81{bottom:892.293333pt;}
.y8{bottom:904.453333pt;}
.y80{bottom:910.693333pt;}
.y30{bottom:913.893333pt;}
.y55{bottom:917.413333pt;}
.y7{bottom:922.853333pt;}
.y7f{bottom:929.093333pt;}
.y2f{bottom:938.533333pt;}
.y6{bottom:941.893333pt;}
.y54{bottom:942.213333pt;}
.y7e{bottom:947.493333pt;}
.y5{bottom:963.333333pt;}
.y53{bottom:965.893333pt;}
.y1{bottom:1057.920000pt;}
.h12{height:18.400000pt;}
.h11{height:18.432000pt;}
.h3{height:28.320000pt;}
.h14{height:36.800000pt;}
.hd{height:45.156250pt;}
.h9{height:52.503750pt;}
.h8{height:52.750000pt;}
.h5{height:52.832812pt;}
.h7{height:62.781250pt;}
.ha{height:62.812500pt;}
.h15{height:63.656250pt;}
.he{height:64.499980pt;}
.h10{height:64.499983pt;}
.hc{height:64.499989pt;}
.hf{height:64.499990pt;}
.h6{height:64.500000pt;}
.h13{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hb{height:149.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:34.880000pt;}
.w8{width:52.480000pt;}
.w3{width:67.552000pt;}
.w9{width:72.160000pt;}
.w6{width:74.560000pt;}
.w7{width:93.312000pt;}
.w5{width:280.386667pt;}
.wa{width:611.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x3{left:19.680000pt;}
.x11{left:22.080000pt;}
.x12{left:40.960000pt;}
.x14{left:59.840000pt;}
.x1{left:75.519988pt;}
.x1a{left:77.599988pt;}
.xf{left:86.560000pt;}
.xa{left:90.911988pt;}
.x1d{left:104.031988pt;}
.xc{left:113.792000pt;}
.x5{left:121.631988pt;}
.x4{left:122.751988pt;}
.x7{left:147.226655pt;}
.xe{left:149.306667pt;}
.x8{left:179.546655pt;}
.x17{left:184.514667pt;}
.x18{left:212.514667pt;}
.x19{left:227.234667pt;}
.x1b{left:253.026655pt;}
.x1c{left:321.346655pt;}
.x2{left:364.226667pt;}
.xb{left:368.706655pt;}
.x6{left:396.866655pt;}
.x10{left:430.333333pt;}
.x13{left:505.693333pt;}
.x15{left:599.653333pt;}
.x9{left:640.133322pt;}
.x16{left:652.933333pt;}
}




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