
    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_9ba8820f42dd72493c75e276.woff')format("woff");}.ff1{font-family:ff1;line-height:0.978027;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_6f2db366cb1b1e808e0263ca.woff')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_5566e10ad1f831290004bfa3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_33a7c4338c67d77e216496bb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_fd08451e60f3e7f5f2533a76.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0b1451f026121e6e6914ccfc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.ls3{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.208200px;}
.lsa{letter-spacing:-0.206400px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:46.026720px;}
.lsb{letter-spacing:46.170720px;}
.ls8{letter-spacing:109.386720px;}
.ls9{letter-spacing:112.986720px;}
.ls7{letter-spacing:125.946720px;}
.ls6{letter-spacing:142.506720px;}
.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:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.733600px;}
.ws2{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-7.039200px;}
._27{margin-left:-5.856480px;}
._d{margin-left:-4.504320px;}
._14{margin-left:-3.167280px;}
._12{margin-left:-2.091600px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._11{width:3.215520px;}
._f{width:4.267920px;}
._e{width:5.819760px;}
._10{width:6.901920px;}
._13{width:8.499600px;}
._3{width:9.540000px;}
._1c{width:11.256480px;}
._1{width:12.420000px;}
._16{width:13.446000px;}
._29{width:15.978240px;}
._28{width:17.330400px;}
._1a{width:18.704880px;}
._19{width:19.720800px;}
._1b{width:21.095280px;}
._2b{width:22.529520px;}
._22{width:23.605200px;}
._26{width:25.599600px;}
._2d{width:26.712720px;}
._2c{width:28.744560px;}
._25{width:30.656880px;}
._1f{width:32.270400px;}
._24{width:33.943680px;}
._2e{width:35.138880px;}
._23{width:36.453600px;}
._15{width:37.648800px;}
._1e{width:38.903760px;}
._41{width:40.088880px;}
._3c{width:41.652720px;}
._21{width:43.565040px;}
._20{width:44.640720px;}
._2a{width:45.895680px;}
._37{width:46.943760px;}
._32{width:48.166560px;}
._1d{width:49.361760px;}
._3f{width:50.437440px;}
._2f{width:51.632640px;}
._31{width:53.664480px;}
._30{width:55.098720px;}
._36{width:62.449200px;}
._35{width:63.524880px;}
._43{width:64.899360px;}
._40{width:68.006880px;}
._17{width:70.038720px;}
._18{width:71.174160px;}
._39{width:76.373280px;}
._38{width:77.389200px;}
._8{width:88.200000px;}
._3b{width:90.954720px;}
._3a{width:93.464640px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._3d{width:103.623840px;}
._3e{width:104.730240px;}
._9{width:108.180000px;}
._2{width:165.060000px;}
._42{width:182.327760px;}
._5{width:183.960000px;}
._34{width:190.753920px;}
._33{width:196.371360px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
._44{width:881.579520px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc7{color:rgb(5,99,193);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y22{bottom:5.760000px;}
.y10{bottom:7.200000px;}
.y19{bottom:8.820000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y21{bottom:25.740000px;}
.y11{bottom:37.080000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y20{bottom:45.540000px;}
.yf{bottom:54.180000px;}
.y6{bottom:63.180000px;}
.y1f{bottom:65.340000px;}
.yb{bottom:73.110000px;}
.y42{bottom:82.800000px;}
.y5{bottom:84.450000px;}
.y1e{bottom:85.140000px;}
.ya6{bottom:87.660000px;}
.ya{bottom:92.370000px;}
.y7a{bottom:96.660000px;}
.y41{bottom:102.600000px;}
.y1d{bottom:104.940000px;}
.y4{bottom:106.950000px;}
.ya5{bottom:107.460000px;}
.y9{bottom:110.190000px;}
.y79{bottom:116.460000px;}
.y40{bottom:122.400000px;}
.y1c{bottom:124.920000px;}
.y3{bottom:126.750000px;}
.ya4{bottom:127.296000px;}
.y78{bottom:136.296000px;}
.y3f{bottom:142.236000px;}
.y1b{bottom:144.720000px;}
.ya3{bottom:147.096000px;}
.y77{bottom:156.090000px;}
.y3e{bottom:162.210000px;}
.ya2{bottom:166.890000px;}
.y76{bottom:175.890000px;}
.y3d{bottom:182.010000px;}
.ya1{bottom:186.870000px;}
.y75{bottom:195.870000px;}
.y3c{bottom:201.810000px;}
.ya0{bottom:206.670000px;}
.y74{bottom:215.670000px;}
.y3b{bottom:221.610000px;}
.y9f{bottom:226.470000px;}
.y73{bottom:235.470000px;}
.y3a{bottom:241.410000px;}
.y9e{bottom:246.270000px;}
.y72{bottom:255.270000px;}
.y39{bottom:261.390000px;}
.y9d{bottom:266.070000px;}
.y71{bottom:275.070000px;}
.y38{bottom:281.190000px;}
.y9c{bottom:286.050000px;}
.y70{bottom:295.050000px;}
.y37{bottom:300.990000px;}
.y9b{bottom:305.850000px;}
.y6f{bottom:314.850000px;}
.y36{bottom:320.790000px;}
.y9a{bottom:325.650000px;}
.y6e{bottom:334.650000px;}
.y35{bottom:340.590000px;}
.y99{bottom:345.450000px;}
.y6d{bottom:354.450000px;}
.y34{bottom:360.570000px;}
.y98{bottom:365.250000px;}
.y6c{bottom:374.250000px;}
.y33{bottom:380.415000px;}
.y97{bottom:385.275000px;}
.y6b{bottom:394.275000px;}
.y32{bottom:400.215000px;}
.y96{bottom:405.075000px;}
.y6a{bottom:414.075000px;}
.y31{bottom:420.015000px;}
.y95{bottom:424.875000px;}
.y69{bottom:433.875000px;}
.y30{bottom:439.815000px;}
.y94{bottom:444.675000px;}
.y68{bottom:453.675000px;}
.y2f{bottom:459.615000px;}
.y93{bottom:464.475000px;}
.y67{bottom:473.475000px;}
.y2e{bottom:479.595000px;}
.y92{bottom:484.455000px;}
.y66{bottom:493.455000px;}
.y2d{bottom:499.395000px;}
.y91{bottom:504.255000px;}
.y65{bottom:513.255000px;}
.y2c{bottom:519.195000px;}
.y90{bottom:524.055000px;}
.y64{bottom:533.055000px;}
.y2b{bottom:538.995000px;}
.y8f{bottom:543.855000px;}
.y63{bottom:552.855000px;}
.y2a{bottom:558.795000px;}
.y8e{bottom:563.655000px;}
.y62{bottom:572.655000px;}
.y29{bottom:578.775000px;}
.y8d{bottom:583.635000px;}
.y61{bottom:592.635000px;}
.y28{bottom:598.575000px;}
.y8c{bottom:603.435000px;}
.y60{bottom:612.435000px;}
.y27{bottom:618.375000px;}
.y8b{bottom:623.235000px;}
.y5f{bottom:632.265000px;}
.y26{bottom:638.205000px;}
.y8a{bottom:643.065000px;}
.y5e{bottom:652.065000px;}
.y25{bottom:658.005000px;}
.y89{bottom:662.865000px;}
.y5d{bottom:671.865000px;}
.y24{bottom:677.985000px;}
.y88{bottom:682.845000px;}
.y5c{bottom:691.845000px;}
.y23{bottom:692.745000px;}
.y87{bottom:702.645000px;}
.y5b{bottom:711.645000px;}
.y1a{bottom:713.265000px;}
.y86{bottom:722.445000px;}
.y5a{bottom:731.445000px;}
.y85{bottom:742.245000px;}
.y59{bottom:751.245000px;}
.y84{bottom:762.045000px;}
.y58{bottom:771.045000px;}
.y83{bottom:782.025000px;}
.y57{bottom:791.025000px;}
.y82{bottom:801.825000px;}
.y56{bottom:810.825000px;}
.y81{bottom:821.625000px;}
.y55{bottom:830.625000px;}
.y80{bottom:841.425000px;}
.y54{bottom:850.425000px;}
.y7f{bottom:861.225000px;}
.y53{bottom:870.225000px;}
.y18{bottom:872.745000px;}
.y7e{bottom:881.205000px;}
.y52{bottom:890.250000px;}
.y7d{bottom:901.050000px;}
.y17{bottom:902.130000px;}
.y51{bottom:910.050000px;}
.y7c{bottom:920.850000px;}
.y16{bottom:922.110000px;}
.y50{bottom:929.850000px;}
.y7b{bottom:940.650000px;}
.y15{bottom:941.910000px;}
.y4f{bottom:949.650000px;}
.y14{bottom:961.710000px;}
.y4e{bottom:969.450000px;}
.y13{bottom:985.110000px;}
.y4d{bottom:989.430000px;}
.y4c{bottom:1009.230000px;}
.y12{bottom:1016.970000px;}
.y4b{bottom:1029.030000px;}
.ye{bottom:1044.150000px;}
.y4a{bottom:1048.830000px;}
.y1{bottom:1067.910000px;}
.y49{bottom:1068.630000px;}
.y48{bottom:1088.610000px;}
.y47{bottom:1108.410000px;}
.y46{bottom:1128.210000px;}
.y45{bottom:1148.040000px;}
.y44{bottom:1174.680000px;}
.y43{bottom:1193.760000px;}
.h3{height:2.195156px;}
.h10{height:19.800000px;}
.ha{height:22.500000px;}
.he{height:22.896000px;}
.h4{height:42.164648px;}
.h11{height:45.549492px;}
.hc{height:46.736719px;}
.h8{height:48.410156px;}
.h5{height:50.800781px;}
.h6{height:53.573906px;}
.hb{height:59.383125px;}
.h7{height:64.546875px;}
.hd{height:67.565039px;}
.h9{height:71.613281px;}
.h2{height:140.796000px;}
.hf{height:158.760000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:35.460000px;}
.w4{width:158.940000px;}
.w2{width:172.830000px;}
.w8{width:200.190000px;}
.w3{width:464.865000px;}
.w9{width:610.170000px;}
.w7{width:748.950000px;}
.wa{width:810.360000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.x11{left:58.499987px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.xc{left:90.180000px;}
.xe{left:108.035987px;}
.x15{left:135.035987px;}
.x7{left:140.085000px;}
.x2{left:160.050000px;}
.x3{left:221.070000px;}
.x5{left:248.265000px;}
.xd{left:254.190000px;}
.x12{left:342.074987px;}
.xf{left:473.504987px;}
.x13{left:500.504987px;}
.x10{left:527.504987px;}
.x14{left:554.504987px;}
.x16{left:581.504987px;}
.x8{left:685.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:40.912640pt;}
.lsb{letter-spacing:41.040640pt;}
.ls8{letter-spacing:97.232640pt;}
.ls9{letter-spacing:100.432640pt;}
.ls7{letter-spacing:111.952640pt;}
.ls6{letter-spacing:126.672640pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-6.257067pt;}
._27{margin-left:-5.205760pt;}
._d{margin-left:-4.003840pt;}
._14{margin-left:-2.815360pt;}
._12{margin-left:-1.859200pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._11{width:2.858240pt;}
._f{width:3.793707pt;}
._e{width:5.173120pt;}
._10{width:6.135040pt;}
._13{width:7.555200pt;}
._3{width:8.480000pt;}
._1c{width:10.005760pt;}
._1{width:11.040000pt;}
._16{width:11.952000pt;}
._29{width:14.202880pt;}
._28{width:15.404800pt;}
._1a{width:16.626560pt;}
._19{width:17.529600pt;}
._1b{width:18.751360pt;}
._2b{width:20.026240pt;}
._22{width:20.982400pt;}
._26{width:22.755200pt;}
._2d{width:23.744640pt;}
._2c{width:25.550720pt;}
._25{width:27.250560pt;}
._1f{width:28.684800pt;}
._24{width:30.172160pt;}
._2e{width:31.234560pt;}
._23{width:32.403200pt;}
._15{width:33.465600pt;}
._1e{width:34.581120pt;}
._41{width:35.634560pt;}
._3c{width:37.024640pt;}
._21{width:38.724480pt;}
._20{width:39.680640pt;}
._2a{width:40.796160pt;}
._37{width:41.727787pt;}
._32{width:42.814720pt;}
._1d{width:43.877120pt;}
._3f{width:44.833280pt;}
._2f{width:45.895680pt;}
._31{width:47.701760pt;}
._30{width:48.976640pt;}
._36{width:55.510400pt;}
._35{width:56.466560pt;}
._43{width:57.688320pt;}
._40{width:60.450560pt;}
._17{width:62.256640pt;}
._18{width:63.265920pt;}
._39{width:67.887360pt;}
._38{width:68.790400pt;}
._8{width:78.400000pt;}
._3b{width:80.848640pt;}
._3a{width:83.079680pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._3d{width:92.110080pt;}
._3e{width:93.093547pt;}
._9{width:96.160000pt;}
._2{width:146.720000pt;}
._42{width:162.069120pt;}
._5{width:163.520000pt;}
._34{width:169.559040pt;}
._33{width:174.552320pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
._44{width:783.626240pt;}
.fs0{font-size:2.560000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y22{bottom:5.120000pt;}
.y10{bottom:6.400000pt;}
.y19{bottom:7.840000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y21{bottom:22.880000pt;}
.y11{bottom:32.960000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y20{bottom:40.480000pt;}
.yf{bottom:48.160000pt;}
.y6{bottom:56.160000pt;}
.y1f{bottom:58.080000pt;}
.yb{bottom:64.986667pt;}
.y42{bottom:73.600000pt;}
.y5{bottom:75.066667pt;}
.y1e{bottom:75.680000pt;}
.ya6{bottom:77.920000pt;}
.ya{bottom:82.106667pt;}
.y7a{bottom:85.920000pt;}
.y41{bottom:91.200000pt;}
.y1d{bottom:93.280000pt;}
.y4{bottom:95.066667pt;}
.ya5{bottom:95.520000pt;}
.y9{bottom:97.946667pt;}
.y79{bottom:103.520000pt;}
.y40{bottom:108.800000pt;}
.y1c{bottom:111.040000pt;}
.y3{bottom:112.666667pt;}
.ya4{bottom:113.152000pt;}
.y78{bottom:121.152000pt;}
.y3f{bottom:126.432000pt;}
.y1b{bottom:128.640000pt;}
.ya3{bottom:130.752000pt;}
.y77{bottom:138.746667pt;}
.y3e{bottom:144.186667pt;}
.ya2{bottom:148.346667pt;}
.y76{bottom:156.346667pt;}
.y3d{bottom:161.786667pt;}
.ya1{bottom:166.106667pt;}
.y75{bottom:174.106667pt;}
.y3c{bottom:179.386667pt;}
.ya0{bottom:183.706667pt;}
.y74{bottom:191.706667pt;}
.y3b{bottom:196.986667pt;}
.y9f{bottom:201.306667pt;}
.y73{bottom:209.306667pt;}
.y3a{bottom:214.586667pt;}
.y9e{bottom:218.906667pt;}
.y72{bottom:226.906667pt;}
.y39{bottom:232.346667pt;}
.y9d{bottom:236.506667pt;}
.y71{bottom:244.506667pt;}
.y38{bottom:249.946667pt;}
.y9c{bottom:254.266667pt;}
.y70{bottom:262.266667pt;}
.y37{bottom:267.546667pt;}
.y9b{bottom:271.866667pt;}
.y6f{bottom:279.866667pt;}
.y36{bottom:285.146667pt;}
.y9a{bottom:289.466667pt;}
.y6e{bottom:297.466667pt;}
.y35{bottom:302.746667pt;}
.y99{bottom:307.066667pt;}
.y6d{bottom:315.066667pt;}
.y34{bottom:320.506667pt;}
.y98{bottom:324.666667pt;}
.y6c{bottom:332.666667pt;}
.y33{bottom:338.146667pt;}
.y97{bottom:342.466667pt;}
.y6b{bottom:350.466667pt;}
.y32{bottom:355.746667pt;}
.y96{bottom:360.066667pt;}
.y6a{bottom:368.066667pt;}
.y31{bottom:373.346667pt;}
.y95{bottom:377.666667pt;}
.y69{bottom:385.666667pt;}
.y30{bottom:390.946667pt;}
.y94{bottom:395.266667pt;}
.y68{bottom:403.266667pt;}
.y2f{bottom:408.546667pt;}
.y93{bottom:412.866667pt;}
.y67{bottom:420.866667pt;}
.y2e{bottom:426.306667pt;}
.y92{bottom:430.626667pt;}
.y66{bottom:438.626667pt;}
.y2d{bottom:443.906667pt;}
.y91{bottom:448.226667pt;}
.y65{bottom:456.226667pt;}
.y2c{bottom:461.506667pt;}
.y90{bottom:465.826667pt;}
.y64{bottom:473.826667pt;}
.y2b{bottom:479.106667pt;}
.y8f{bottom:483.426667pt;}
.y63{bottom:491.426667pt;}
.y2a{bottom:496.706667pt;}
.y8e{bottom:501.026667pt;}
.y62{bottom:509.026667pt;}
.y29{bottom:514.466667pt;}
.y8d{bottom:518.786667pt;}
.y61{bottom:526.786667pt;}
.y28{bottom:532.066667pt;}
.y8c{bottom:536.386667pt;}
.y60{bottom:544.386667pt;}
.y27{bottom:549.666667pt;}
.y8b{bottom:553.986667pt;}
.y5f{bottom:562.013333pt;}
.y26{bottom:567.293333pt;}
.y8a{bottom:571.613333pt;}
.y5e{bottom:579.613333pt;}
.y25{bottom:584.893333pt;}
.y89{bottom:589.213333pt;}
.y5d{bottom:597.213333pt;}
.y24{bottom:602.653333pt;}
.y88{bottom:606.973333pt;}
.y5c{bottom:614.973333pt;}
.y23{bottom:615.773333pt;}
.y87{bottom:624.573333pt;}
.y5b{bottom:632.573333pt;}
.y1a{bottom:634.013333pt;}
.y86{bottom:642.173333pt;}
.y5a{bottom:650.173333pt;}
.y85{bottom:659.773333pt;}
.y59{bottom:667.773333pt;}
.y84{bottom:677.373333pt;}
.y58{bottom:685.373333pt;}
.y83{bottom:695.133333pt;}
.y57{bottom:703.133333pt;}
.y82{bottom:712.733333pt;}
.y56{bottom:720.733333pt;}
.y81{bottom:730.333333pt;}
.y55{bottom:738.333333pt;}
.y80{bottom:747.933333pt;}
.y54{bottom:755.933333pt;}
.y7f{bottom:765.533333pt;}
.y53{bottom:773.533333pt;}
.y18{bottom:775.773333pt;}
.y7e{bottom:783.293333pt;}
.y52{bottom:791.333333pt;}
.y7d{bottom:800.933333pt;}
.y17{bottom:801.893333pt;}
.y51{bottom:808.933333pt;}
.y7c{bottom:818.533333pt;}
.y16{bottom:819.653333pt;}
.y50{bottom:826.533333pt;}
.y7b{bottom:836.133333pt;}
.y15{bottom:837.253333pt;}
.y4f{bottom:844.133333pt;}
.y14{bottom:854.853333pt;}
.y4e{bottom:861.733333pt;}
.y13{bottom:875.653333pt;}
.y4d{bottom:879.493333pt;}
.y4c{bottom:897.093333pt;}
.y12{bottom:903.973333pt;}
.y4b{bottom:914.693333pt;}
.ye{bottom:928.133333pt;}
.y4a{bottom:932.293333pt;}
.y1{bottom:949.253333pt;}
.y49{bottom:949.893333pt;}
.y48{bottom:967.653333pt;}
.y47{bottom:985.253333pt;}
.y46{bottom:1002.853333pt;}
.y45{bottom:1020.480000pt;}
.y44{bottom:1044.160000pt;}
.y43{bottom:1061.120000pt;}
.h3{height:1.951250pt;}
.h10{height:17.600000pt;}
.ha{height:20.000000pt;}
.he{height:20.352000pt;}
.h4{height:37.479688pt;}
.h11{height:40.488438pt;}
.hc{height:41.543750pt;}
.h8{height:43.031250pt;}
.h5{height:45.156250pt;}
.h6{height:47.621250pt;}
.hb{height:52.785000pt;}
.h7{height:57.375000pt;}
.hd{height:60.057813pt;}
.h9{height:63.656250pt;}
.h2{height:125.152000pt;}
.hf{height:141.120000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:31.520000pt;}
.w4{width:141.280000pt;}
.w2{width:153.626667pt;}
.w8{width:177.946667pt;}
.w3{width:413.213333pt;}
.w9{width:542.373333pt;}
.w7{width:665.733333pt;}
.wa{width:720.320000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.x11{left:51.999988pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.xc{left:80.160000pt;}
.xe{left:96.031988pt;}
.x15{left:120.031988pt;}
.x7{left:124.520000pt;}
.x2{left:142.266667pt;}
.x3{left:196.506667pt;}
.x5{left:220.680000pt;}
.xd{left:225.946667pt;}
.x12{left:304.066655pt;}
.xf{left:420.893322pt;}
.x13{left:444.893322pt;}
.x10{left:468.893322pt;}
.x14{left:492.893322pt;}
.x16{left:516.893322pt;}
.x8{left:609.733333pt;}
}




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