
    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_b21bd8a7e64b6af6d8ce5218.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_81d2fa7ab6df08f77109aab8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_dd732ff1100f7cb444014a43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.774902;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_c52f703a8f08da1d2af224c5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_560046cb9f69b31b8008df95.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_afd8caa6d0443636b8dbc7bd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f5ef45ec2773ceb3fc574f65.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_eeaa1abcb9cd85717b5792b2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5a7095a08bcb8ac382c63fe0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5acac5cf31f20f1ab46baca4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a071c55e8e12b214ed0d6ed0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3e9d278ef0cf4f8a863a43db.woff')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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:-105.840000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.262200px;}
.lsc{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.189735px;}
.ls9{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.284602px;}
.ls8{letter-spacing:0.439920px;}
.lsa{letter-spacing:0.460200px;}
.lsd{letter-spacing:309.864000px;}
.ls2{letter-spacing:335.640000px;}
.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;}
}
.ws4{word-spacing:-28.080745px;}
.ws1{word-spacing:-27.985877px;}
.ws3{word-spacing:-27.796143px;}
.ws5{word-spacing:-20.232000px;}
.ws6{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.ws8{word-spacing:-18.152520px;}
.ws9{word-spacing:-18.109320px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.073480px;}
.wsc{word-spacing:-16.819680px;}
.wsb{word-spacing:-16.613280px;}
.wse{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.353480px;}
.ws2{word-spacing:-14.965519px;}
.wsa{word-spacing:0.000000px;}
._2{margin-left:-1.080000px;}
._3{width:1.092000px;}
._7{width:2.123040px;}
._6{width:3.663360px;}
._10{width:4.759680px;}
._f{width:5.829120px;}
._9{width:7.882560px;}
._8{width:9.008640px;}
._a{width:10.068480px;}
._11{width:11.105760px;}
._4{width:12.121920px;}
._e{width:14.791200px;}
._d{width:16.030080px;}
._5{width:27.555840px;}
._b{width:33.716160px;}
._c{width:35.061120px;}
._0{width:414.000000px;}
._1{width:1336.620000px;}
.fc6{color:rgb(33,37,41);}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(23,26,108);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.813160px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:94.867381px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-7.020000px;}
.yf{bottom:-2.160000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.240000px;}
.y4a{bottom:3.285000px;}
.y33{bottom:3.420000px;}
.y7a{bottom:3.600000px;}
.y17{bottom:7.920000px;}
.y15{bottom:8.100000px;}
.y36{bottom:9.000000px;}
.y22{bottom:9.180000px;}
.y7{bottom:11.160000px;}
.y40{bottom:11.880000px;}
.y48{bottom:11.925000px;}
.y3d{bottom:12.960000px;}
.ya{bottom:14.400000px;}
.ye{bottom:19.260000px;}
.y4c{bottom:20.340000px;}
.y41{bottom:20.520000px;}
.y49{bottom:20.565000px;}
.y3e{bottom:22.320000px;}
.y32{bottom:22.500000px;}
.y1c{bottom:27.000000px;}
.y4f{bottom:29.160000px;}
.y6{bottom:36.000000px;}
.y51{bottom:37.800000px;}
.y9{bottom:39.240000px;}
.y6c{bottom:41.394000px;}
.y3b{bottom:41.400000px;}
.y31{bottom:41.445000px;}
.yd{bottom:44.280000px;}
.y50{bottom:55.080000px;}
.y4{bottom:57.780000px;}
.y6b{bottom:60.294000px;}
.y30{bottom:60.345000px;}
.y3a{bottom:60.474000px;}
.y75{bottom:60.480000px;}
.y3{bottom:78.516000px;}
.y39{bottom:79.374000px;}
.y74{bottom:79.380000px;}
.y2f{bottom:79.425000px;}
.y37{bottom:97.596000px;}
.y38{bottom:98.274000px;}
.y73{bottom:98.280000px;}
.y2e{bottom:98.325000px;}
.y52{bottom:110.376000px;}
.y6a{bottom:117.174000px;}
.y72{bottom:117.360000px;}
.y2d{bottom:117.405000px;}
.y69{bottom:136.254000px;}
.y71{bottom:136.260000px;}
.y2c{bottom:136.305000px;}
.y68{bottom:155.154000px;}
.y2b{bottom:155.205000px;}
.y70{bottom:155.340000px;}
.y67{bottom:174.234000px;}
.y6f{bottom:174.240000px;}
.y2a{bottom:174.285000px;}
.y66{bottom:193.134000px;}
.y6e{bottom:193.140000px;}
.y29{bottom:193.185000px;}
.y65{bottom:212.079000px;}
.y35{bottom:212.250000px;}
.y28{bottom:212.265000px;}
.y64{bottom:231.159000px;}
.y27{bottom:231.165000px;}
.y63{bottom:250.059000px;}
.y26{bottom:250.065000px;}
.y34{bottom:265.350000px;}
.y62{bottom:269.139000px;}
.y25{bottom:269.145000px;}
.y23{bottom:282.810000px;}
.y61{bottom:288.039000px;}
.y24{bottom:288.075000px;}
.y60{bottom:306.939000px;}
.y5f{bottom:326.019000px;}
.y5e{bottom:344.919000px;}
.y5d{bottom:363.999000px;}
.y5c{bottom:382.899000px;}
.y89{bottom:389.775000px;}
.y5b{bottom:401.799000px;}
.y5a{bottom:420.879000px;}
.y88{bottom:431.175000px;}
.y59{bottom:439.779000px;}
.y87{bottom:451.875000px;}
.y58{bottom:458.889000px;}
.y86{bottom:472.755000px;}
.y57{bottom:477.789000px;}
.y85{bottom:493.455000px;}
.y56{bottom:496.869000px;}
.y84{bottom:514.155000px;}
.y55{bottom:515.769000px;}
.y54{bottom:534.669000px;}
.y83{bottom:534.855000px;}
.y53{bottom:553.389000px;}
.y82{bottom:555.555000px;}
.y81{bottom:576.285000px;}
.y21{bottom:587.085000px;}
.y80{bottom:596.985000px;}
.y7f{bottom:617.685000px;}
.y7e{bottom:635.145000px;}
.y20{bottom:640.185000px;}
.y7d{bottom:654.945000px;}
.y1f{bottom:657.645000px;}
.y7c{bottom:674.565000px;}
.y4e{bottom:678.525000px;}
.y1e{bottom:686.445000px;}
.y7b{bottom:694.365000px;}
.y79{bottom:713.985000px;}
.y1d{bottom:715.245000px;}
.y78{bottom:733.785000px;}
.y1b{bottom:743.865000px;}
.y4d{bottom:748.365000px;}
.y77{bottom:772.485000px;}
.y4b{bottom:783.645000px;}
.y1a{bottom:791.565000px;}
.y47{bottom:818.745000px;}
.y19{bottom:820.410000px;}
.y76{bottom:825.630000px;}
.y6d{bottom:843.090000px;}
.y18{bottom:849.030000px;}
.y46{bottom:854.070000px;}
.y16{bottom:877.830000px;}
.y45{bottom:889.350000px;}
.y14{bottom:906.450000px;}
.y44{bottom:924.630000px;}
.y13{bottom:939.210000px;}
.y43{bottom:942.630000px;}
.y12{bottom:960.990000px;}
.y3f{bottom:977.910000px;}
.y3c{bottom:1013.190000px;}
.y11{bottom:1015.170000px;}
.y10{bottom:1035.690000px;}
.y2{bottom:1056.570000px;}
.y1{bottom:1073.340000px;}
.yc{bottom:1088.100000px;}
.y8{bottom:1089.900000px;}
.y5{bottom:1093.140000px;}
.h18{height:17.280000px;}
.h21{height:18.900000px;}
.h20{height:19.080000px;}
.hb{height:27.900000px;}
.h9{height:28.080000px;}
.hc{height:28.116000px;}
.h15{height:34.380000px;}
.h17{height:34.560000px;}
.h19{height:34.596000px;}
.h3{height:36.326795px;}
.h14{height:37.800000px;}
.h1e{height:37.980000px;}
.hd{height:46.980000px;}
.h2{height:47.160000px;}
.h11{height:48.240000px;}
.h1f{height:48.418594px;}
.he{height:48.420000px;}
.h1d{height:48.456000px;}
.h13{height:50.062500px;}
.h5{height:50.400000px;}
.h6{height:55.440000px;}
.h16{height:62.327813px;}
.ha{height:69.086250px;}
.h1a{height:69.120000px;}
.h1{height:70.628906px;}
.h4{height:72.076975px;}
.h22{height:74.004654px;}
.h7{height:75.093750px;}
.hf{height:93.867188px;}
.h8{height:99.874688px;}
.h12{height:113.760000px;}
.h1c{height:208.620000px;}
.h10{height:303.555000px;}
.h1b{height:941.325000px;}
.h0{height:1188.000000px;}
.w4{width:70.236000px;}
.wd{width:114.660000px;}
.w3{width:130.140000px;}
.w2{width:130.500000px;}
.w9{width:166.350000px;}
.wb{width:186.330000px;}
.wa{width:220.350000px;}
.w5{width:273.135000px;}
.w6{width:489.495000px;}
.wc{width:655.890000px;}
.w7{width:763.710000px;}
.w8{width:771.990000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:7.560000px;}
.xb{left:10.800000px;}
.xa{left:13.860000px;}
.x6{left:15.120000px;}
.xe{left:17.280000px;}
.x1b{left:18.360000px;}
.x20{left:22.140000px;}
.xd{left:23.400000px;}
.x1e{left:30.780000px;}
.x1c{left:32.220000px;}
.x1a{left:35.640000px;}
.x5{left:39.600000px;}
.x9{left:40.860000px;}
.x15{left:43.200000px;}
.x13{left:45.000000px;}
.x21{left:47.700000px;}
.x27{left:49.860000px;}
.x19{left:51.480000px;}
.x25{left:53.100000px;}
.x2c{left:57.240000px;}
.x24{left:58.320000px;}
.x28{left:62.460000px;}
.x29{left:64.620000px;}
.x1d{left:70.920000px;}
.x17{left:75.240000px;}
.x1f{left:76.320000px;}
.x10{left:77.400000px;}
.x26{left:81.720000px;}
.x3{left:84.959986px;}
.x22{left:88.380000px;}
.x23{left:93.060000px;}
.x7{left:115.380000px;}
.x2d{left:167.429986px;}
.x14{left:175.890000px;}
.x2a{left:224.175000px;}
.x1{left:315.434986px;}
.x16{left:342.975000px;}
.x12{left:351.255000px;}
.x2{left:458.894986px;}
.x4{left:495.105000px;}
.x18{left:564.045000px;}
.xf{left:576.644986px;}
.xc{left:636.405000px;}
.x8{left:724.650000px;}
.x2b{left:734.190000px;}
@media print{
.v1{vertical-align:-94.080000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.233067pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.168653pt;}
.ls9{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.252980pt;}
.ls8{letter-spacing:0.391040pt;}
.lsa{letter-spacing:0.409067pt;}
.lsd{letter-spacing:275.434667pt;}
.ls2{letter-spacing:298.346667pt;}
.ws4{word-spacing:-24.960662pt;}
.ws1{word-spacing:-24.876336pt;}
.ws3{word-spacing:-24.707682pt;}
.ws5{word-spacing:-17.984000pt;}
.ws6{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.ws8{word-spacing:-16.135573pt;}
.ws9{word-spacing:-16.097173pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.176427pt;}
.wsc{word-spacing:-14.950827pt;}
.wsb{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.536427pt;}
.ws2{word-spacing:-13.302684pt;}
.wsa{word-spacing:0.000000pt;}
._2{margin-left:-0.960000pt;}
._3{width:0.970667pt;}
._7{width:1.887147pt;}
._6{width:3.256320pt;}
._10{width:4.230827pt;}
._f{width:5.181440pt;}
._9{width:7.006720pt;}
._8{width:8.007680pt;}
._a{width:8.949760pt;}
._11{width:9.871787pt;}
._4{width:10.775040pt;}
._e{width:13.147733pt;}
._d{width:14.248960pt;}
._5{width:24.494080pt;}
._b{width:29.969920pt;}
._c{width:31.165440pt;}
._0{width:368.000000pt;}
._1{width:1188.106667pt;}
.fs1{font-size:42.500587pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:84.326561pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-6.240000pt;}
.yf{bottom:-1.920000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.880000pt;}
.y4a{bottom:2.920000pt;}
.y33{bottom:3.040000pt;}
.y7a{bottom:3.200000pt;}
.y17{bottom:7.040000pt;}
.y15{bottom:7.200000pt;}
.y36{bottom:8.000000pt;}
.y22{bottom:8.160000pt;}
.y7{bottom:9.920000pt;}
.y40{bottom:10.560000pt;}
.y48{bottom:10.600000pt;}
.y3d{bottom:11.520000pt;}
.ya{bottom:12.800000pt;}
.ye{bottom:17.120000pt;}
.y4c{bottom:18.080000pt;}
.y41{bottom:18.240000pt;}
.y49{bottom:18.280000pt;}
.y3e{bottom:19.840000pt;}
.y32{bottom:20.000000pt;}
.y1c{bottom:24.000000pt;}
.y4f{bottom:25.920000pt;}
.y6{bottom:32.000000pt;}
.y51{bottom:33.600000pt;}
.y9{bottom:34.880000pt;}
.y6c{bottom:36.794667pt;}
.y3b{bottom:36.800000pt;}
.y31{bottom:36.840000pt;}
.yd{bottom:39.360000pt;}
.y50{bottom:48.960000pt;}
.y4{bottom:51.360000pt;}
.y6b{bottom:53.594667pt;}
.y30{bottom:53.640000pt;}
.y3a{bottom:53.754667pt;}
.y75{bottom:53.760000pt;}
.y3{bottom:69.792000pt;}
.y39{bottom:70.554667pt;}
.y74{bottom:70.560000pt;}
.y2f{bottom:70.600000pt;}
.y37{bottom:86.752000pt;}
.y38{bottom:87.354667pt;}
.y73{bottom:87.360000pt;}
.y2e{bottom:87.400000pt;}
.y52{bottom:98.112000pt;}
.y6a{bottom:104.154667pt;}
.y72{bottom:104.320000pt;}
.y2d{bottom:104.360000pt;}
.y69{bottom:121.114667pt;}
.y71{bottom:121.120000pt;}
.y2c{bottom:121.160000pt;}
.y68{bottom:137.914667pt;}
.y2b{bottom:137.960000pt;}
.y70{bottom:138.080000pt;}
.y67{bottom:154.874667pt;}
.y6f{bottom:154.880000pt;}
.y2a{bottom:154.920000pt;}
.y66{bottom:171.674667pt;}
.y6e{bottom:171.680000pt;}
.y29{bottom:171.720000pt;}
.y65{bottom:188.514667pt;}
.y35{bottom:188.666667pt;}
.y28{bottom:188.680000pt;}
.y64{bottom:205.474667pt;}
.y27{bottom:205.480000pt;}
.y63{bottom:222.274667pt;}
.y26{bottom:222.280000pt;}
.y34{bottom:235.866667pt;}
.y62{bottom:239.234667pt;}
.y25{bottom:239.240000pt;}
.y23{bottom:251.386667pt;}
.y61{bottom:256.034667pt;}
.y24{bottom:256.066667pt;}
.y60{bottom:272.834667pt;}
.y5f{bottom:289.794667pt;}
.y5e{bottom:306.594667pt;}
.y5d{bottom:323.554667pt;}
.y5c{bottom:340.354667pt;}
.y89{bottom:346.466667pt;}
.y5b{bottom:357.154667pt;}
.y5a{bottom:374.114667pt;}
.y88{bottom:383.266667pt;}
.y59{bottom:390.914667pt;}
.y87{bottom:401.666667pt;}
.y58{bottom:407.901333pt;}
.y86{bottom:420.226667pt;}
.y57{bottom:424.701333pt;}
.y85{bottom:438.626667pt;}
.y56{bottom:441.661333pt;}
.y84{bottom:457.026667pt;}
.y55{bottom:458.461333pt;}
.y54{bottom:475.261333pt;}
.y83{bottom:475.426667pt;}
.y53{bottom:491.901333pt;}
.y82{bottom:493.826667pt;}
.y81{bottom:512.253333pt;}
.y21{bottom:521.853333pt;}
.y80{bottom:530.653333pt;}
.y7f{bottom:549.053333pt;}
.y7e{bottom:564.573333pt;}
.y20{bottom:569.053333pt;}
.y7d{bottom:582.173333pt;}
.y1f{bottom:584.573333pt;}
.y7c{bottom:599.613333pt;}
.y4e{bottom:603.133333pt;}
.y1e{bottom:610.173333pt;}
.y7b{bottom:617.213333pt;}
.y79{bottom:634.653333pt;}
.y1d{bottom:635.773333pt;}
.y78{bottom:652.253333pt;}
.y1b{bottom:661.213333pt;}
.y4d{bottom:665.213333pt;}
.y77{bottom:686.653333pt;}
.y4b{bottom:696.573333pt;}
.y1a{bottom:703.613333pt;}
.y47{bottom:727.773333pt;}
.y19{bottom:729.253333pt;}
.y76{bottom:733.893333pt;}
.y6d{bottom:749.413333pt;}
.y18{bottom:754.693333pt;}
.y46{bottom:759.173333pt;}
.y16{bottom:780.293333pt;}
.y45{bottom:790.533333pt;}
.y14{bottom:805.733333pt;}
.y44{bottom:821.893333pt;}
.y13{bottom:834.853333pt;}
.y43{bottom:837.893333pt;}
.y12{bottom:854.213333pt;}
.y3f{bottom:869.253333pt;}
.y3c{bottom:900.613333pt;}
.y11{bottom:902.373333pt;}
.y10{bottom:920.613333pt;}
.y2{bottom:939.173333pt;}
.y1{bottom:954.080000pt;}
.yc{bottom:967.200000pt;}
.y8{bottom:968.800000pt;}
.y5{bottom:971.680000pt;}
.h18{height:15.360000pt;}
.h21{height:16.800000pt;}
.h20{height:16.960000pt;}
.hb{height:24.800000pt;}
.h9{height:24.960000pt;}
.hc{height:24.992000pt;}
.h15{height:30.560000pt;}
.h17{height:30.720000pt;}
.h19{height:30.752000pt;}
.h3{height:32.290485pt;}
.h14{height:33.600000pt;}
.h1e{height:33.760000pt;}
.hd{height:41.760000pt;}
.h2{height:41.920000pt;}
.h11{height:42.880000pt;}
.h1f{height:43.038750pt;}
.he{height:43.040000pt;}
.h1d{height:43.072000pt;}
.h13{height:44.500000pt;}
.h5{height:44.800000pt;}
.h6{height:49.280000pt;}
.h16{height:55.402500pt;}
.ha{height:61.410000pt;}
.h1a{height:61.440000pt;}
.h1{height:62.781250pt;}
.h4{height:64.068422pt;}
.h22{height:65.781915pt;}
.h7{height:66.750000pt;}
.hf{height:83.437500pt;}
.h8{height:88.777500pt;}
.h12{height:101.120000pt;}
.h1c{height:185.440000pt;}
.h10{height:269.826667pt;}
.h1b{height:836.733333pt;}
.h0{height:1056.000000pt;}
.w4{width:62.432000pt;}
.wd{width:101.920000pt;}
.w3{width:115.680000pt;}
.w2{width:116.000000pt;}
.w9{width:147.866667pt;}
.wb{width:165.626667pt;}
.wa{width:195.866667pt;}
.w5{width:242.786667pt;}
.w6{width:435.106667pt;}
.wc{width:583.013333pt;}
.w7{width:678.853333pt;}
.w8{width:686.213333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.720000pt;}
.xb{left:9.600000pt;}
.xa{left:12.320000pt;}
.x6{left:13.440000pt;}
.xe{left:15.360000pt;}
.x1b{left:16.320000pt;}
.x20{left:19.680000pt;}
.xd{left:20.800000pt;}
.x1e{left:27.360000pt;}
.x1c{left:28.640000pt;}
.x1a{left:31.680000pt;}
.x5{left:35.200000pt;}
.x9{left:36.320000pt;}
.x15{left:38.400000pt;}
.x13{left:40.000000pt;}
.x21{left:42.400000pt;}
.x27{left:44.320000pt;}
.x19{left:45.760000pt;}
.x25{left:47.200000pt;}
.x2c{left:50.880000pt;}
.x24{left:51.840000pt;}
.x28{left:55.520000pt;}
.x29{left:57.440000pt;}
.x1d{left:63.040000pt;}
.x17{left:66.880000pt;}
.x1f{left:67.840000pt;}
.x10{left:68.800000pt;}
.x26{left:72.640000pt;}
.x3{left:75.519988pt;}
.x22{left:78.560000pt;}
.x23{left:82.720000pt;}
.x7{left:102.560000pt;}
.x2d{left:148.826655pt;}
.x14{left:156.346667pt;}
.x2a{left:199.266667pt;}
.x1{left:280.386655pt;}
.x16{left:304.866667pt;}
.x12{left:312.226667pt;}
.x2{left:407.906655pt;}
.x4{left:440.093333pt;}
.x18{left:501.373333pt;}
.xf{left:512.573321pt;}
.xc{left:565.693333pt;}
.x8{left:644.133333pt;}
.x2b{left:652.613333pt;}
}




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