
    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_b610a195d683b72d998c6098.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_7880edba0e30bacc483884f1.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f560297284fdfb7ba462fe19.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d8d456ace27d455860bdb253.woff')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_957157e713011429a29a807a.woff')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_f7669f3fedfdcc7de90feada.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4047aa1fe5f7d8a81f77945c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_5c2dfb5e9762849d756d6892.woff')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-77.880000px;}
.v3{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls13{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.255000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.247440px;}
.ls9{letter-spacing:0.510000px;}
.ls11{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.684000px;}
.lsc{letter-spacing:0.697680px;}
.ls5{letter-spacing:0.942000px;}
.lse{letter-spacing:0.952560px;}
.ls6{letter-spacing:1.080000px;}
.lsd{letter-spacing:9.180000px;}
.lsb{letter-spacing:11.340000px;}
.lsf{letter-spacing:13.500000px;}
.ls8{letter-spacing:43.740000px;}
.ls2{letter-spacing:95.027040px;}
.ls12{letter-spacing:110.700000px;}
.ls1{letter-spacing:129.587040px;}
.lsa{letter-spacing:231.840000px;}
.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;}
}
.ws2{word-spacing:-18.900000px;}
.ws1{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.485000px;}
.ws0{word-spacing:-11.202000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-4.486320px;}
._2{margin-left:-3.281040px;}
._1{margin-left:-1.339200px;}
._0{width:1.004400px;}
._3{width:2.879280px;}
._4{width:4.577040px;}
._7{width:6.253440px;}
._5{width:7.653840px;}
._c{width:8.771760px;}
._a{width:10.320960px;}
._b{width:11.433360px;}
._9{width:12.802320px;}
._8{width:14.160480px;}
._1a{width:15.234960px;}
._f{width:18.547920px;}
._30{width:20.553840px;}
._31{width:21.633840px;}
._13{width:22.833360px;}
._11{width:23.971680px;}
._10{width:24.976080px;}
._e{width:26.114400px;}
._d{width:27.118800px;}
._14{width:28.324080px;}
._1d{width:30.132000px;}
._27{width:31.605120px;}
._32{width:33.613920px;}
._12{width:35.220960px;}
._4f{width:37.095840px;}
._50{width:39.037680px;}
._29{width:40.771440px;}
._46{width:42.050880px;}
._28{width:43.055280px;}
._59{width:44.059680px;}
._25{width:45.131040px;}
._26{width:46.604160px;}
._36{width:48.010320px;}
._1b{width:49.282560px;}
._1c{width:50.956560px;}
._1e{width:52.094880px;}
._2a{width:54.036720px;}
._52{width:55.108080px;}
._2b{width:56.313360px;}
._2c{width:57.585600px;}
._37{width:58.924800px;}
._20{width:61.134480px;}
._58{width:62.205840px;}
._1f{width:63.478080px;}
._57{width:64.549440px;}
._3d{width:65.620800px;}
._4c{width:67.495680px;}
._45{width:70.241040px;}
._51{width:71.915040px;}
._2d{width:73.120320px;}
._2f{width:75.463920px;}
._2e{width:76.468320px;}
._48{width:77.874480px;}
._47{width:80.418960px;}
._24{width:87.677760px;}
._5a{width:88.855920px;}
._53{width:93.007440px;}
._54{width:94.949280px;}
._3a{width:96.020640px;}
._15{width:97.694640px;}
._40{width:100.774800px;}
._35{width:102.247920px;}
._3b{width:104.658480px;}
._3c{width:107.336880px;}
._44{width:108.810000px;}
._39{width:117.983520px;}
._19{width:120.059280px;}
._41{width:125.148240px;}
._42{width:126.621360px;}
._38{width:127.625760px;}
._4e{width:128.734320px;}
._4d{width:130.321680px;}
._22{width:134.522640px;}
._23{width:135.928800px;}
._17{width:137.134080px;}
._16{width:139.142880px;}
._4b{width:142.825680px;}
._4a{width:144.432720px;}
._49{width:145.771920px;}
._43{width:156.409680px;}
._55{width:160.770960px;}
._33{width:188.358480px;}
._21{width:190.769040px;}
._3f{width:194.050080px;}
._3e{width:197.532000px;}
._34{width:229.404960px;}
._56{width:231.212880px;}
._18{width:297.101520px;}
.fc8{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc4{color:rgb(31,78,121);}
.fc3{color:rgb(112,48,160);}
.fc7{color:rgb(23,23,23);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:6.480000px;}
.fs1{font-size:41.040000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:66.960000px;}
.fs3{font-size:71.280000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y15{bottom:3.780000px;}
.y25{bottom:4.320000px;}
.y4{bottom:10.800000px;}
.y5{bottom:11.340000px;}
.y3{bottom:11.880000px;}
.y3b{bottom:22.680000px;}
.y24{bottom:23.220000px;}
.y3a{bottom:41.616000px;}
.y56{bottom:41.625000px;}
.y23{bottom:42.120000px;}
.y6e{bottom:53.496000px;}
.y6d{bottom:55.116000px;}
.y6{bottom:55.656000px;}
.y2{bottom:57.276000px;}
.y39{bottom:60.519000px;}
.y22{bottom:61.020000px;}
.y55{bottom:61.065000px;}
.y38{bottom:79.419000px;}
.y21{bottom:79.950000px;}
.y3e{bottom:79.965000px;}
.y37{bottom:98.319000px;}
.y20{bottom:98.850000px;}
.y3d{bottom:98.865000px;}
.y32{bottom:100.476000px;}
.y6b{bottom:102.636000px;}
.y1f{bottom:117.750000px;}
.y54{bottom:117.765000px;}
.y36{bottom:117.789000px;}
.y6a{bottom:121.536000px;}
.y1e{bottom:136.650000px;}
.y35{bottom:136.689000px;}
.y53{bottom:136.695000px;}
.y69{bottom:141.012000px;}
.y34{bottom:155.589000px;}
.y52{bottom:155.595000px;}
.y1d{bottom:156.135000px;}
.y68{bottom:159.915000px;}
.y33{bottom:174.489000px;}
.y51{bottom:174.495000px;}
.y1c{bottom:175.035000px;}
.y67{bottom:178.815000px;}
.y50{bottom:193.395000px;}
.y1b{bottom:193.935000px;}
.y66{bottom:197.715000px;}
.y1a{bottom:212.835000px;}
.y4f{bottom:212.880000px;}
.ya0{bottom:213.945000px;}
.y65{bottom:216.645000px;}
.y19{bottom:231.765000px;}
.y4e{bottom:231.780000px;}
.y64{bottom:235.545000px;}
.y18{bottom:250.665000px;}
.y4d{bottom:250.680000px;}
.y9f{bottom:251.745000px;}
.y63{bottom:254.445000px;}
.y17{bottom:269.565000px;}
.y4c{bottom:269.580000px;}
.y9d{bottom:270.645000px;}
.y62{bottom:273.885000px;}
.y4b{bottom:288.510000px;}
.y9c{bottom:289.545000px;}
.y31{bottom:290.625000px;}
.y61{bottom:292.785000px;}
.y9b{bottom:308.490000px;}
.y60{bottom:311.730000px;}
.y30{bottom:314.430000px;}
.y9a{bottom:327.930000px;}
.y5f{bottom:330.630000px;}
.y2f{bottom:333.330000px;}
.y99{bottom:346.830000px;}
.y5e{bottom:349.530000px;}
.y2e{bottom:352.230000px;}
.y98{bottom:365.730000px;}
.y5d{bottom:368.430000px;}
.y2d{bottom:371.130000px;}
.y97{bottom:384.660000px;}
.y5c{bottom:387.360000px;}
.y2c{bottom:390.600000px;}
.y96{bottom:403.560000px;}
.y5b{bottom:406.260000px;}
.y2b{bottom:409.500000px;}
.y95{bottom:422.460000px;}
.y5a{bottom:425.700000px;}
.y2a{bottom:432.180000px;}
.y94{bottom:441.360000px;}
.y59{bottom:444.600000px;}
.y9e{bottom:460.260000px;}
.y29{bottom:461.880000px;}
.y58{bottom:463.500000px;}
.y93{bottom:479.730000px;}
.y28{bottom:491.610000px;}
.y57{bottom:495.390000px;}
.y92{bottom:498.630000px;}
.y4a{bottom:514.830000px;}
.y91{bottom:517.530000px;}
.y27{bottom:521.310000px;}
.y90{bottom:536.430000px;}
.y26{bottom:548.850000px;}
.y8f{bottom:555.375000px;}
.y16{bottom:571.035000px;}
.y8e{bottom:574.275000px;}
.y8d{bottom:593.175000px;}
.y8c{bottom:612.615000px;}
.y8b{bottom:631.515000px;}
.y8a{bottom:650.445000px;}
.y89{bottom:669.345000px;}
.y88{bottom:688.245000px;}
.y87{bottom:707.145000px;}
.y86{bottom:726.090000px;}
.y85{bottom:745.530000px;}
.y84{bottom:764.430000px;}
.y83{bottom:783.330000px;}
.y82{bottom:802.230000px;}
.y49{bottom:819.540000px;}
.y81{bottom:821.160000px;}
.y80{bottom:840.060000px;}
.y48{bottom:842.760000px;}
.y14{bottom:856.800000px;}
.y7f{bottom:858.960000px;}
.y47{bottom:861.660000px;}
.y7e{bottom:877.860000px;}
.y13{bottom:880.020000px;}
.y46{bottom:880.560000px;}
.y7d{bottom:897.330000px;}
.y12{bottom:899.490000px;}
.y45{bottom:900.030000px;}
.y7c{bottom:916.230000px;}
.y11{bottom:918.390000px;}
.y44{bottom:918.930000px;}
.y7b{bottom:935.130000px;}
.y10{bottom:937.290000px;}
.y43{bottom:937.830000px;}
.y7a{bottom:954.030000px;}
.yf{bottom:956.190000px;}
.y42{bottom:958.350000px;}
.y79{bottom:972.975000px;}
.ye{bottom:975.135000px;}
.y41{bottom:985.935000px;}
.y78{bottom:991.875000px;}
.yd{bottom:995.655000px;}
.y77{bottom:1010.775000px;}
.y40{bottom:1013.475000px;}
.yc{bottom:1023.195000px;}
.y76{bottom:1030.215000px;}
.y3f{bottom:1041.015000px;}
.y75{bottom:1049.115000px;}
.yb{bottom:1050.735000px;}
.y3c{bottom:1063.185000px;}
.y74{bottom:1068.045000px;}
.ya{bottom:1078.845000px;}
.y73{bottom:1086.945000px;}
.y72{bottom:1105.845000px;}
.y9{bottom:1106.385000px;}
.y71{bottom:1124.745000px;}
.y8{bottom:1137.705000px;}
.y70{bottom:1143.690000px;}
.y6f{bottom:1163.130000px;}
.y7{bottom:1165.290000px;}
.y6c{bottom:1194.990000px;}
.y1{bottom:1200.930000px;}
.h7{height:6.359766px;}
.hd{height:18.900000px;}
.hf{height:18.936000px;}
.h3{height:27.000000px;}
.h11{height:46.950469px;}
.h6{height:50.775820px;}
.h8{height:54.421875px;}
.hc{height:65.684883px;}
.h4{height:65.717578px;}
.hb{height:67.483125px;}
.h5{height:69.957422px;}
.h2{height:71.600625px;}
.ha{height:82.185469px;}
.h14{height:84.898125px;}
.h9{height:95.782500px;}
.h12{height:113.976000px;}
.h10{height:189.615000px;}
.he{height:284.685000px;}
.h13{height:303.630000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:109.116000px;}
.w6{width:224.790000px;}
.w3{width:314.490000px;}
.w5{width:476.025000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.xb{left:42.690000px;}
.xa{left:60.516000px;}
.x2{left:77.256000px;}
.x7{left:84.815987px;}
.x11{left:95.651987px;}
.xd{left:116.711987px;}
.x12{left:127.511987px;}
.xc{left:137.771987px;}
.x10{left:161.564987px;}
.x1{left:238.829987px;}
.x3{left:306.354000px;}
.x4{left:392.295000px;}
.xe{left:457.124987px;}
.xf{left:488.984987px;}
.x6{left:501.945000px;}
.x9{left:553.290000px;}
.x8{left:798.584987px;}
@media print{
.v2{vertical-align:-69.226667pt;}
.v3{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.226667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.219947pt;}
.ls9{letter-spacing:0.453333pt;}
.ls11{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.608000pt;}
.lsc{letter-spacing:0.620160pt;}
.ls5{letter-spacing:0.837333pt;}
.lse{letter-spacing:0.846720pt;}
.ls6{letter-spacing:0.960000pt;}
.lsd{letter-spacing:8.160000pt;}
.lsb{letter-spacing:10.080000pt;}
.lsf{letter-spacing:12.000000pt;}
.ls8{letter-spacing:38.880000pt;}
.ls2{letter-spacing:84.468480pt;}
.ls12{letter-spacing:98.400000pt;}
.ls1{letter-spacing:115.188480pt;}
.lsa{letter-spacing:206.080000pt;}
.ws2{word-spacing:-16.800000pt;}
.ws1{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.653333pt;}
.ws0{word-spacing:-9.957333pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-3.987840pt;}
._2{margin-left:-2.916480pt;}
._1{margin-left:-1.190400pt;}
._0{width:0.892800pt;}
._3{width:2.559360pt;}
._4{width:4.068480pt;}
._7{width:5.558613pt;}
._5{width:6.803413pt;}
._c{width:7.797120pt;}
._a{width:9.174187pt;}
._b{width:10.162987pt;}
._9{width:11.379840pt;}
._8{width:12.587093pt;}
._1a{width:13.542187pt;}
._f{width:16.487040pt;}
._30{width:18.270080pt;}
._31{width:19.230080pt;}
._13{width:20.296320pt;}
._11{width:21.308160pt;}
._10{width:22.200960pt;}
._e{width:23.212800pt;}
._d{width:24.105600pt;}
._14{width:25.176960pt;}
._1d{width:26.784000pt;}
._27{width:28.093440pt;}
._32{width:29.879040pt;}
._12{width:31.307520pt;}
._4f{width:32.974080pt;}
._50{width:34.700160pt;}
._29{width:36.241280pt;}
._46{width:37.378560pt;}
._28{width:38.271360pt;}
._59{width:39.164160pt;}
._25{width:40.116480pt;}
._26{width:41.425920pt;}
._36{width:42.675840pt;}
._1b{width:43.806720pt;}
._1c{width:45.294720pt;}
._1e{width:46.306560pt;}
._2a{width:48.032640pt;}
._52{width:48.984960pt;}
._2b{width:50.056320pt;}
._2c{width:51.187200pt;}
._37{width:52.377600pt;}
._20{width:54.341760pt;}
._58{width:55.294080pt;}
._1f{width:56.424960pt;}
._57{width:57.377280pt;}
._3d{width:58.329600pt;}
._4c{width:59.996160pt;}
._45{width:62.436480pt;}
._51{width:63.924480pt;}
._2d{width:64.995840pt;}
._2f{width:67.079040pt;}
._2e{width:67.971840pt;}
._48{width:69.221760pt;}
._47{width:71.483520pt;}
._24{width:77.935787pt;}
._5a{width:78.983040pt;}
._53{width:82.673280pt;}
._54{width:84.399360pt;}
._3a{width:85.351680pt;}
._15{width:86.839680pt;}
._40{width:89.577600pt;}
._35{width:90.887040pt;}
._3b{width:93.029760pt;}
._3c{width:95.410560pt;}
._44{width:96.720000pt;}
._39{width:104.874240pt;}
._19{width:106.719360pt;}
._41{width:111.242880pt;}
._42{width:112.552320pt;}
._38{width:113.445120pt;}
._4e{width:114.430507pt;}
._4d{width:115.841493pt;}
._22{width:119.575680pt;}
._23{width:120.825600pt;}
._17{width:121.896960pt;}
._16{width:123.682560pt;}
._4b{width:126.956160pt;}
._4a{width:128.384640pt;}
._49{width:129.575040pt;}
._43{width:139.030827pt;}
._55{width:142.907520pt;}
._33{width:167.429760pt;}
._21{width:169.572480pt;}
._3f{width:172.488960pt;}
._3e{width:175.584000pt;}
._34{width:203.915520pt;}
._56{width:205.522560pt;}
._18{width:264.090240pt;}
.fs4{font-size:5.760000pt;}
.fs1{font-size:36.480000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:59.520000pt;}
.fs3{font-size:63.360000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:3.360000pt;}
.y25{bottom:3.840000pt;}
.y4{bottom:9.600000pt;}
.y5{bottom:10.080000pt;}
.y3{bottom:10.560000pt;}
.y3b{bottom:20.160000pt;}
.y24{bottom:20.640000pt;}
.y3a{bottom:36.992000pt;}
.y56{bottom:37.000000pt;}
.y23{bottom:37.440000pt;}
.y6e{bottom:47.552000pt;}
.y6d{bottom:48.992000pt;}
.y6{bottom:49.472000pt;}
.y2{bottom:50.912000pt;}
.y39{bottom:53.794667pt;}
.y22{bottom:54.240000pt;}
.y55{bottom:54.280000pt;}
.y38{bottom:70.594667pt;}
.y21{bottom:71.066667pt;}
.y3e{bottom:71.080000pt;}
.y37{bottom:87.394667pt;}
.y20{bottom:87.866667pt;}
.y3d{bottom:87.880000pt;}
.y32{bottom:89.312000pt;}
.y6b{bottom:91.232000pt;}
.y1f{bottom:104.666667pt;}
.y54{bottom:104.680000pt;}
.y36{bottom:104.701333pt;}
.y6a{bottom:108.032000pt;}
.y1e{bottom:121.466667pt;}
.y35{bottom:121.501333pt;}
.y53{bottom:121.506667pt;}
.y69{bottom:125.344000pt;}
.y34{bottom:138.301333pt;}
.y52{bottom:138.306667pt;}
.y1d{bottom:138.786667pt;}
.y68{bottom:142.146667pt;}
.y33{bottom:155.101333pt;}
.y51{bottom:155.106667pt;}
.y1c{bottom:155.586667pt;}
.y67{bottom:158.946667pt;}
.y50{bottom:171.906667pt;}
.y1b{bottom:172.386667pt;}
.y66{bottom:175.746667pt;}
.y1a{bottom:189.186667pt;}
.y4f{bottom:189.226667pt;}
.ya0{bottom:190.173333pt;}
.y65{bottom:192.573333pt;}
.y19{bottom:206.013333pt;}
.y4e{bottom:206.026667pt;}
.y64{bottom:209.373333pt;}
.y18{bottom:222.813333pt;}
.y4d{bottom:222.826667pt;}
.y9f{bottom:223.773333pt;}
.y63{bottom:226.173333pt;}
.y17{bottom:239.613333pt;}
.y4c{bottom:239.626667pt;}
.y9d{bottom:240.573333pt;}
.y62{bottom:243.453333pt;}
.y4b{bottom:256.453333pt;}
.y9c{bottom:257.373333pt;}
.y31{bottom:258.333333pt;}
.y61{bottom:260.253333pt;}
.y9b{bottom:274.213333pt;}
.y60{bottom:277.093333pt;}
.y30{bottom:279.493333pt;}
.y9a{bottom:291.493333pt;}
.y5f{bottom:293.893333pt;}
.y2f{bottom:296.293333pt;}
.y99{bottom:308.293333pt;}
.y5e{bottom:310.693333pt;}
.y2e{bottom:313.093333pt;}
.y98{bottom:325.093333pt;}
.y5d{bottom:327.493333pt;}
.y2d{bottom:329.893333pt;}
.y97{bottom:341.920000pt;}
.y5c{bottom:344.320000pt;}
.y2c{bottom:347.200000pt;}
.y96{bottom:358.720000pt;}
.y5b{bottom:361.120000pt;}
.y2b{bottom:364.000000pt;}
.y95{bottom:375.520000pt;}
.y5a{bottom:378.400000pt;}
.y2a{bottom:384.160000pt;}
.y94{bottom:392.320000pt;}
.y59{bottom:395.200000pt;}
.y9e{bottom:409.120000pt;}
.y29{bottom:410.560000pt;}
.y58{bottom:412.000000pt;}
.y93{bottom:426.426667pt;}
.y28{bottom:436.986667pt;}
.y57{bottom:440.346667pt;}
.y92{bottom:443.226667pt;}
.y4a{bottom:457.626667pt;}
.y91{bottom:460.026667pt;}
.y27{bottom:463.386667pt;}
.y90{bottom:476.826667pt;}
.y26{bottom:487.866667pt;}
.y8f{bottom:493.666667pt;}
.y16{bottom:507.586667pt;}
.y8e{bottom:510.466667pt;}
.y8d{bottom:527.266667pt;}
.y8c{bottom:544.546667pt;}
.y8b{bottom:561.346667pt;}
.y8a{bottom:578.173333pt;}
.y89{bottom:594.973333pt;}
.y88{bottom:611.773333pt;}
.y87{bottom:628.573333pt;}
.y86{bottom:645.413333pt;}
.y85{bottom:662.693333pt;}
.y84{bottom:679.493333pt;}
.y83{bottom:696.293333pt;}
.y82{bottom:713.093333pt;}
.y49{bottom:728.480000pt;}
.y81{bottom:729.920000pt;}
.y80{bottom:746.720000pt;}
.y48{bottom:749.120000pt;}
.y14{bottom:761.600000pt;}
.y7f{bottom:763.520000pt;}
.y47{bottom:765.920000pt;}
.y7e{bottom:780.320000pt;}
.y13{bottom:782.240000pt;}
.y46{bottom:782.720000pt;}
.y7d{bottom:797.626667pt;}
.y12{bottom:799.546667pt;}
.y45{bottom:800.026667pt;}
.y7c{bottom:814.426667pt;}
.y11{bottom:816.346667pt;}
.y44{bottom:816.826667pt;}
.y7b{bottom:831.226667pt;}
.y10{bottom:833.146667pt;}
.y43{bottom:833.626667pt;}
.y7a{bottom:848.026667pt;}
.yf{bottom:849.946667pt;}
.y42{bottom:851.866667pt;}
.y79{bottom:864.866667pt;}
.ye{bottom:866.786667pt;}
.y41{bottom:876.386667pt;}
.y78{bottom:881.666667pt;}
.yd{bottom:885.026667pt;}
.y77{bottom:898.466667pt;}
.y40{bottom:900.866667pt;}
.yc{bottom:909.506667pt;}
.y76{bottom:915.746667pt;}
.y3f{bottom:925.346667pt;}
.y75{bottom:932.546667pt;}
.yb{bottom:933.986667pt;}
.y3c{bottom:945.053333pt;}
.y74{bottom:949.373333pt;}
.ya{bottom:958.973333pt;}
.y73{bottom:966.173333pt;}
.y72{bottom:982.973333pt;}
.y9{bottom:983.453333pt;}
.y71{bottom:999.773333pt;}
.y8{bottom:1011.293333pt;}
.y70{bottom:1016.613333pt;}
.y6f{bottom:1033.893333pt;}
.y7{bottom:1035.813333pt;}
.y6c{bottom:1062.213333pt;}
.y1{bottom:1067.493333pt;}
.h7{height:5.653125pt;}
.hd{height:16.800000pt;}
.hf{height:16.832000pt;}
.h3{height:24.000000pt;}
.h11{height:41.733750pt;}
.h6{height:45.134063pt;}
.h8{height:48.375000pt;}
.hc{height:58.386563pt;}
.h4{height:58.415625pt;}
.hb{height:59.985000pt;}
.h5{height:62.184375pt;}
.h2{height:63.645000pt;}
.ha{height:73.053750pt;}
.h14{height:75.465000pt;}
.h9{height:85.140000pt;}
.h12{height:101.312000pt;}
.h10{height:168.546667pt;}
.he{height:253.053333pt;}
.h13{height:269.893333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:96.992000pt;}
.w6{width:199.813333pt;}
.w3{width:279.546667pt;}
.w5{width:423.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.xb{left:37.946667pt;}
.xa{left:53.792000pt;}
.x2{left:68.672000pt;}
.x7{left:75.391988pt;}
.x11{left:85.023988pt;}
.xd{left:103.743988pt;}
.x12{left:113.343988pt;}
.xc{left:122.463988pt;}
.x10{left:143.613322pt;}
.x1{left:212.293322pt;}
.x3{left:272.314667pt;}
.x4{left:348.706667pt;}
.xe{left:406.333322pt;}
.xf{left:434.653322pt;}
.x6{left:446.173333pt;}
.x9{left:491.813333pt;}
.x8{left:709.853322pt;}
}




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