
    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_7b4c1e09608af45f9c349ffb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.804199;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_5395dd0bedc432b6f589c67d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_d125124dc2f3c3f70b8c518f.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_4361135423925f6e7a86de23.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4da19687bdb06290035fe6bb.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_a970347bb399697c59080616.woff')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_3d832e6b909f58da01e94d2d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_31850f3d679415e158f7ea36.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_0f9296e6f64b7d18f37c2b78.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_011bb59eea7278de4e2fc343.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_2603d59730b6129b2f34ebea.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;}
.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);}
.m8{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7{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;}
.ls14{letter-spacing:-1.656000px;}
.ls13{letter-spacing:-1.308000px;}
.ls8{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.425400px;}
.ls9{letter-spacing:-0.342600px;}
.ls7{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.130200px;}
.ls18{letter-spacing:-0.024000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.024000px;}
.ls12{letter-spacing:0.212400px;}
.ls16{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.229800px;}
.lsa{letter-spacing:0.260400px;}
.lsc{letter-spacing:0.342600px;}
.ls1{letter-spacing:0.342857px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:1.440000px;}
.lsf{letter-spacing:2.571429px;}
.ls17{letter-spacing:10.114286px;}
.ls4{letter-spacing:10.800000px;}
.ls10{letter-spacing:11.485714px;}
.lse{letter-spacing:16.285714px;}
.ls2{letter-spacing:19.028571px;}
.ls3{letter-spacing:20.400000px;}
.lsd{letter-spacing:35.485714px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-21.060000px;}
.ws8{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.342600px;}
.ws4{word-spacing:-18.260400px;}
.wsc{word-spacing:-18.229800px;}
.wsd{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.212400px;}
.ws9{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.wse{word-spacing:-17.976000px;}
.wsf{word-spacing:-17.869800px;}
.ws3{word-spacing:-17.657400px;}
.ws5{word-spacing:-17.574600px;}
.wsb{word-spacing:-16.344000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-4.423496px;}
._1b{margin-left:-2.624457px;}
._0{margin-left:-1.442880px;}
._1{width:1.434240px;}
._2{width:3.352444px;}
._1c{width:4.896000px;}
._1e{width:6.294857px;}
._6{width:7.346880px;}
._5{width:8.352000px;}
._9{width:9.455497px;}
._17{width:10.931429px;}
._4{width:12.072629px;}
._18{width:13.162263px;}
._c{width:14.184000px;}
._d{width:15.336000px;}
._a{width:16.900571px;}
._b{width:19.979171px;}
._e{width:21.327091px;}
._16{width:22.544640px;}
._7{width:24.480000px;}
._8{width:25.764663px;}
._21{width:26.773714px;}
._11{width:27.944000px;}
._12{width:29.220629px;}
._1d{width:30.254686px;}
._10{width:31.320000px;}
._f{width:33.050880px;}
._15{width:35.640000px;}
._1f{width:37.355429px;}
._20{width:38.619429px;}
._14{width:41.408583px;}
._13{width:42.415451px;}
._19{width:54.296000px;}
._1a{width:55.609143px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y40{bottom:7.020000px;}
.y42{bottom:7.380000px;}
.y4e{bottom:7.425000px;}
.y44{bottom:7.560000px;}
.y48{bottom:7.740000px;}
.ya{bottom:10.800000px;}
.yb{bottom:11.520000px;}
.y6{bottom:12.600000px;}
.y3{bottom:25.020000px;}
.y47{bottom:31.500000px;}
.y5{bottom:32.580000px;}
.y7{bottom:42.120000px;}
.y2{bottom:52.740000px;}
.y46{bottom:55.260000px;}
.y4{bottom:56.340000px;}
.yc{bottom:57.600000px;}
.y9{bottom:73.800000px;}
.y58{bottom:149.256000px;}
.y36{bottom:154.110000px;}
.y57{bottom:173.010000px;}
.y35{bottom:177.870000px;}
.y56{bottom:196.770000px;}
.y34{bottom:201.270000px;}
.y5c{bottom:201.630000px;}
.y55{bottom:220.170000px;}
.y33{bottom:225.390000px;}
.y54{bottom:244.290000px;}
.y32{bottom:249.330000px;}
.y53{bottom:268.230000px;}
.y31{bottom:273.090000px;}
.y52{bottom:291.990000px;}
.y30{bottom:296.850000px;}
.y51{bottom:315.750000px;}
.y2f{bottom:320.610000px;}
.y50{bottom:332.850000px;}
.y2e{bottom:344.370000px;}
.y4f{bottom:356.790000px;}
.y2d{bottom:368.310000px;}
.y4d{bottom:380.550000px;}
.y2c{bottom:392.115000px;}
.y4c{bottom:405.075000px;}
.y2b{bottom:415.875000px;}
.y4b{bottom:437.115000px;}
.y2a{bottom:439.635000px;}
.y4a{bottom:460.875000px;}
.y29{bottom:463.575000px;}
.y49{bottom:484.635000px;}
.y28{bottom:487.335000px;}
.y45{bottom:501.915000px;}
.y27{bottom:511.095000px;}
.y26{bottom:534.855000px;}
.y25{bottom:558.795000px;}
.y43{bottom:573.555000px;}
.y24{bottom:582.555000px;}
.y41{bottom:597.495000px;}
.y23{bottom:606.315000px;}
.y3f{bottom:621.975000px;}
.y22{bottom:629.715000px;}
.y5b{bottom:630.075000px;}
.y5a{bottom:653.685000px;}
.y21{bottom:654.045000px;}
.y20{bottom:677.805000px;}
.y1f{bottom:701.565000px;}
.y1e{bottom:725.325000px;}
.y3e{bottom:748.905000px;}
.y1d{bottom:749.265000px;}
.y1c{bottom:773.025000px;}
.y1b{bottom:796.785000px;}
.y59{bottom:820.185000px;}
.y1a{bottom:820.545000px;}
.y19{bottom:844.305000px;}
.y18{bottom:868.245000px;}
.y17{bottom:892.005000px;}
.y16{bottom:915.810000px;}
.y15{bottom:939.570000px;}
.y14{bottom:963.510000px;}
.y13{bottom:986.910000px;}
.y3d{bottom:987.270000px;}
.y3c{bottom:1010.670000px;}
.y12{bottom:1011.030000px;}
.y11{bottom:1034.430000px;}
.y3b{bottom:1034.790000px;}
.y10{bottom:1058.370000px;}
.y3a{bottom:1058.730000px;}
.yf{bottom:1082.130000px;}
.y39{bottom:1082.490000px;}
.ye{bottom:1105.890000px;}
.y38{bottom:1106.250000px;}
.yd{bottom:1129.650000px;}
.y37{bottom:1130.010000px;}
.y8{bottom:1150.560000px;}
.y1{bottom:1167.120000px;}
.hf{height:23.760000px;}
.he{height:23.796000px;}
.h10{height:23.940000px;}
.h8{height:27.000000px;}
.hc{height:50.273438px;}
.hd{height:50.800781px;}
.hb{height:52.628906px;}
.h5{height:60.226875px;}
.h3{height:61.781484px;}
.h9{height:65.884219px;}
.ha{height:70.628906px;}
.h7{height:70.664062px;}
.h11{height:71.640000px;}
.h6{height:72.562500px;}
.h12{height:74.004654px;}
.h2{height:95.760000px;}
.h4{height:102.861562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:60.300000px;}
.we{width:72.396000px;}
.wc{width:72.576000px;}
.wd{width:100.980000px;}
.w7{width:108.036000px;}
.w2{width:120.276000px;}
.wa{width:126.216000px;}
.w11{width:127.080000px;}
.wb{width:129.600000px;}
.w9{width:214.590000px;}
.wf{width:230.430000px;}
.w8{width:310.215000px;}
.w6{width:310.350000px;}
.w10{width:312.195000px;}
.w3{width:712.410000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2{left:-21.960028px;}
.x1{left:-8.640031px;}
.x0{left:0.000000px;}
.x40{left:7.020000px;}
.x8{left:8.100000px;}
.x3b{left:10.440000px;}
.x3e{left:11.880000px;}
.x5e{left:13.140000px;}
.x5d{left:15.120000px;}
.x4c{left:18.720000px;}
.x5a{left:19.800000px;}
.x56{left:23.400000px;}
.x4e{left:32.940000px;}
.x53{left:34.014000px;}
.x52{left:35.274000px;}
.x50{left:40.314000px;}
.xd{left:45.030000px;}
.x4a{left:47.160000px;}
.x57{left:48.990000px;}
.x48{left:50.220000px;}
.x4d{left:53.865000px;}
.x45{left:62.130000px;}
.x41{left:65.565000px;}
.x46{left:66.594000px;}
.x4f{left:68.040000px;}
.x63{left:73.080000px;}
.x49{left:75.780000px;}
.x55{left:80.640000px;}
.x4b{left:82.260000px;}
.x60{left:85.674000px;}
.x39{left:87.474000px;}
.x43{left:92.340000px;}
.xa{left:108.936000px;}
.x5f{left:113.760000px;}
.x3c{left:115.590000px;}
.x9{left:117.035987px;}
.x3{left:120.276000px;}
.x59{left:121.536000px;}
.xf{left:123.335987px;}
.x5{left:127.434000px;}
.x62{left:138.450000px;}
.x64{left:143.319000px;}
.x61{left:144.759000px;}
.x47{left:147.999000px;}
.x72{left:152.489987px;}
.x79{left:161.849987px;}
.x17{left:170.129987px;}
.x51{left:174.099000px;}
.x4{left:177.519000px;}
.x54{left:180.399000px;}
.x22{left:188.849987px;}
.x5b{left:210.459000px;}
.x74{left:212.609987px;}
.x1b{left:216.749987px;}
.x1d{left:223.049987px;}
.x6e{left:227.549987px;}
.x24{left:232.949987px;}
.x2d{left:244.829987px;}
.x7a{left:260.849987px;}
.x32{left:268.994987px;}
.x1c{left:270.434987px;}
.x34{left:273.314987px;}
.x26{left:276.734987px;}
.x18{left:278.534987px;}
.x2a{left:283.754987px;}
.x27{left:289.514987px;}
.x31{left:297.614987px;}
.x6{left:300.999000px;}
.xb{left:302.259000px;}
.x25{left:303.914987px;}
.x38{left:307.514987px;}
.x13{left:311.654987px;}
.x16{left:322.454987px;}
.x6a{left:323.714987px;}
.x14{left:331.274987px;}
.x3a{left:334.695000px;}
.x30{left:336.494987px;}
.x5c{left:352.695000px;}
.x2f{left:354.314987px;}
.x23{left:361.514987px;}
.x69{left:363.314987px;}
.x28{left:372.674987px;}
.x2e{left:376.994987px;}
.x12{left:382.034987px;}
.x67{left:384.734987px;}
.x71{left:397.694987px;}
.x10{left:407.774987px;}
.xc{left:419.295000px;}
.x37{left:420.554987px;}
.x2c{left:423.074987px;}
.x7b{left:451.904987px;}
.x3d{left:461.625000px;}
.x7c{left:489.344987px;}
.xe{left:527.325000px;}
.x11{left:538.664987px;}
.x7d{left:543.884987px;}
.x68{left:556.304987px;}
.x2b{left:581.684987px;}
.x3f{left:591.945000px;}
.x7e{left:595.724987px;}
.x66{left:605.624987px;}
.x15{left:615.164987px;}
.x6c{left:631.409987px;}
.x20{left:633.749987px;}
.x29{left:635.729987px;}
.x36{left:645.089987px;}
.x21{left:647.609987px;}
.x76{left:648.689987px;}
.x19{left:652.109987px;}
.x6d{left:656.789987px;}
.x1a{left:659.849987px;}
.x7f{left:662.009987px;}
.x6b{left:664.169987px;}
.x42{left:665.250000px;}
.x65{left:677.849987px;}
.x80{left:702.149987px;}
.x6f{left:705.929987px;}
.x70{left:714.929987px;}
.x33{left:730.589987px;}
.x77{left:735.269987px;}
.x75{left:736.889987px;}
.x58{left:761.909987px;}
.x44{left:766.950000px;}
.x1e{left:771.629987px;}
.x1f{left:781.349987px;}
.x78{left:791.429987px;}
.x73{left:793.949987px;}
.x35{left:805.139987px;}
.x7{left:832.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.472000pt;}
.ls13{letter-spacing:-1.162667pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.378133pt;}
.ls9{letter-spacing:-0.304533pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.115733pt;}
.ls18{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.021333pt;}
.ls12{letter-spacing:0.188800pt;}
.ls16{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.204267pt;}
.lsa{letter-spacing:0.231467pt;}
.lsc{letter-spacing:0.304533pt;}
.ls1{letter-spacing:0.304762pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:1.280000pt;}
.lsf{letter-spacing:2.285714pt;}
.ls17{letter-spacing:8.990476pt;}
.ls4{letter-spacing:9.600000pt;}
.ls10{letter-spacing:10.209524pt;}
.lse{letter-spacing:14.476190pt;}
.ls2{letter-spacing:16.914286pt;}
.ls3{letter-spacing:18.133333pt;}
.lsd{letter-spacing:31.542857pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.304533pt;}
.ws4{word-spacing:-16.231467pt;}
.wsc{word-spacing:-16.204267pt;}
.wsd{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.188800pt;}
.ws9{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.978667pt;}
.wsf{word-spacing:-15.884267pt;}
.ws3{word-spacing:-15.695467pt;}
.ws5{word-spacing:-15.621867pt;}
.wsb{word-spacing:-14.528000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-3.931996pt;}
._1b{margin-left:-2.332851pt;}
._0{margin-left:-1.282560pt;}
._1{width:1.274880pt;}
._2{width:2.979950pt;}
._1c{width:4.352000pt;}
._1e{width:5.595429pt;}
._6{width:6.530560pt;}
._5{width:7.424000pt;}
._9{width:8.404886pt;}
._17{width:9.716825pt;}
._4{width:10.731225pt;}
._18{width:11.699789pt;}
._c{width:12.608000pt;}
._d{width:13.632000pt;}
._a{width:15.022730pt;}
._b{width:17.759263pt;}
._e{width:18.957415pt;}
._16{width:20.039680pt;}
._7{width:21.760000pt;}
._8{width:22.901923pt;}
._21{width:23.798857pt;}
._11{width:24.839111pt;}
._12{width:25.973892pt;}
._1d{width:26.893054pt;}
._10{width:27.840000pt;}
._f{width:29.378560pt;}
._15{width:31.680000pt;}
._1f{width:33.204825pt;}
._20{width:34.328381pt;}
._14{width:36.807629pt;}
._13{width:37.702623pt;}
._19{width:48.263111pt;}
._1a{width:49.430349pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:6.240000pt;}
.y42{bottom:6.560000pt;}
.y4e{bottom:6.600000pt;}
.y44{bottom:6.720000pt;}
.y48{bottom:6.880000pt;}
.ya{bottom:9.600000pt;}
.yb{bottom:10.240000pt;}
.y6{bottom:11.200000pt;}
.y3{bottom:22.240000pt;}
.y47{bottom:28.000000pt;}
.y5{bottom:28.960000pt;}
.y7{bottom:37.440000pt;}
.y2{bottom:46.880000pt;}
.y46{bottom:49.120000pt;}
.y4{bottom:50.080000pt;}
.yc{bottom:51.200000pt;}
.y9{bottom:65.600000pt;}
.y58{bottom:132.672000pt;}
.y36{bottom:136.986667pt;}
.y57{bottom:153.786667pt;}
.y35{bottom:158.106667pt;}
.y56{bottom:174.906667pt;}
.y34{bottom:178.906667pt;}
.y5c{bottom:179.226667pt;}
.y55{bottom:195.706667pt;}
.y33{bottom:200.346667pt;}
.y54{bottom:217.146667pt;}
.y32{bottom:221.626667pt;}
.y53{bottom:238.426667pt;}
.y31{bottom:242.746667pt;}
.y52{bottom:259.546667pt;}
.y30{bottom:263.866667pt;}
.y51{bottom:280.666667pt;}
.y2f{bottom:284.986667pt;}
.y50{bottom:295.866667pt;}
.y2e{bottom:306.106667pt;}
.y4f{bottom:317.146667pt;}
.y2d{bottom:327.386667pt;}
.y4d{bottom:338.266667pt;}
.y2c{bottom:348.546667pt;}
.y4c{bottom:360.066667pt;}
.y2b{bottom:369.666667pt;}
.y4b{bottom:388.546667pt;}
.y2a{bottom:390.786667pt;}
.y4a{bottom:409.666667pt;}
.y29{bottom:412.066667pt;}
.y49{bottom:430.786667pt;}
.y28{bottom:433.186667pt;}
.y45{bottom:446.146667pt;}
.y27{bottom:454.306667pt;}
.y26{bottom:475.426667pt;}
.y25{bottom:496.706667pt;}
.y43{bottom:509.826667pt;}
.y24{bottom:517.826667pt;}
.y41{bottom:531.106667pt;}
.y23{bottom:538.946667pt;}
.y3f{bottom:552.866667pt;}
.y22{bottom:559.746667pt;}
.y5b{bottom:560.066667pt;}
.y5a{bottom:581.053333pt;}
.y21{bottom:581.373333pt;}
.y20{bottom:602.493333pt;}
.y1f{bottom:623.613333pt;}
.y1e{bottom:644.733333pt;}
.y3e{bottom:665.693333pt;}
.y1d{bottom:666.013333pt;}
.y1c{bottom:687.133333pt;}
.y1b{bottom:708.253333pt;}
.y59{bottom:729.053333pt;}
.y1a{bottom:729.373333pt;}
.y19{bottom:750.493333pt;}
.y18{bottom:771.773333pt;}
.y17{bottom:792.893333pt;}
.y16{bottom:814.053333pt;}
.y15{bottom:835.173333pt;}
.y14{bottom:856.453333pt;}
.y13{bottom:877.253333pt;}
.y3d{bottom:877.573333pt;}
.y3c{bottom:898.373333pt;}
.y12{bottom:898.693333pt;}
.y11{bottom:919.493333pt;}
.y3b{bottom:919.813333pt;}
.y10{bottom:940.773333pt;}
.y3a{bottom:941.093333pt;}
.yf{bottom:961.893333pt;}
.y39{bottom:962.213333pt;}
.ye{bottom:983.013333pt;}
.y38{bottom:983.333333pt;}
.yd{bottom:1004.133333pt;}
.y37{bottom:1004.453333pt;}
.y8{bottom:1022.720000pt;}
.y1{bottom:1037.440000pt;}
.hf{height:21.120000pt;}
.he{height:21.152000pt;}
.h10{height:21.280000pt;}
.h8{height:24.000000pt;}
.hc{height:44.687500pt;}
.hd{height:45.156250pt;}
.hb{height:46.781250pt;}
.h5{height:53.535000pt;}
.h3{height:54.916875pt;}
.h9{height:58.563750pt;}
.ha{height:62.781250pt;}
.h7{height:62.812500pt;}
.h11{height:63.680000pt;}
.h6{height:64.500000pt;}
.h12{height:65.781915pt;}
.h2{height:85.120000pt;}
.h4{height:91.432500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:53.600000pt;}
.we{width:64.352000pt;}
.wc{width:64.512000pt;}
.wd{width:89.760000pt;}
.w7{width:96.032000pt;}
.w2{width:106.912000pt;}
.wa{width:112.192000pt;}
.w11{width:112.960000pt;}
.wb{width:115.200000pt;}
.w9{width:190.746667pt;}
.wf{width:204.826667pt;}
.w8{width:275.746667pt;}
.w6{width:275.866667pt;}
.w10{width:277.506667pt;}
.w3{width:633.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2{left:-19.520025pt;}
.x1{left:-7.680028pt;}
.x0{left:0.000000pt;}
.x40{left:6.240000pt;}
.x8{left:7.200000pt;}
.x3b{left:9.280000pt;}
.x3e{left:10.560000pt;}
.x5e{left:11.680000pt;}
.x5d{left:13.440000pt;}
.x4c{left:16.640000pt;}
.x5a{left:17.600000pt;}
.x56{left:20.800000pt;}
.x4e{left:29.280000pt;}
.x53{left:30.234667pt;}
.x52{left:31.354667pt;}
.x50{left:35.834667pt;}
.xd{left:40.026667pt;}
.x4a{left:41.920000pt;}
.x57{left:43.546667pt;}
.x48{left:44.640000pt;}
.x4d{left:47.880000pt;}
.x45{left:55.226667pt;}
.x41{left:58.280000pt;}
.x46{left:59.194667pt;}
.x4f{left:60.480000pt;}
.x63{left:64.960000pt;}
.x49{left:67.360000pt;}
.x55{left:71.680000pt;}
.x4b{left:73.120000pt;}
.x60{left:76.154667pt;}
.x39{left:77.754667pt;}
.x43{left:82.080000pt;}
.xa{left:96.832000pt;}
.x5f{left:101.120000pt;}
.x3c{left:102.746667pt;}
.x9{left:104.031988pt;}
.x3{left:106.912000pt;}
.x59{left:108.032000pt;}
.xf{left:109.631988pt;}
.x5{left:113.274667pt;}
.x62{left:123.066667pt;}
.x64{left:127.394667pt;}
.x61{left:128.674667pt;}
.x47{left:131.554667pt;}
.x72{left:135.546655pt;}
.x79{left:143.866655pt;}
.x17{left:151.226655pt;}
.x51{left:154.754667pt;}
.x4{left:157.794667pt;}
.x54{left:160.354667pt;}
.x22{left:167.866655pt;}
.x5b{left:187.074667pt;}
.x74{left:188.986655pt;}
.x1b{left:192.666655pt;}
.x1d{left:198.266655pt;}
.x6e{left:202.266655pt;}
.x24{left:207.066655pt;}
.x2d{left:217.626655pt;}
.x7a{left:231.866655pt;}
.x32{left:239.106655pt;}
.x1c{left:240.386655pt;}
.x34{left:242.946655pt;}
.x26{left:245.986655pt;}
.x18{left:247.586655pt;}
.x2a{left:252.226655pt;}
.x27{left:257.346655pt;}
.x31{left:264.546655pt;}
.x6{left:267.554667pt;}
.xb{left:268.674667pt;}
.x25{left:270.146655pt;}
.x38{left:273.346655pt;}
.x13{left:277.026655pt;}
.x16{left:286.626655pt;}
.x6a{left:287.746655pt;}
.x14{left:294.466655pt;}
.x3a{left:297.506667pt;}
.x30{left:299.106655pt;}
.x5c{left:313.506667pt;}
.x2f{left:314.946655pt;}
.x23{left:321.346655pt;}
.x69{left:322.946655pt;}
.x28{left:331.266655pt;}
.x2e{left:335.106655pt;}
.x12{left:339.586655pt;}
.x67{left:341.986655pt;}
.x71{left:353.506655pt;}
.x10{left:362.466655pt;}
.xc{left:372.706667pt;}
.x37{left:373.826655pt;}
.x2c{left:376.066655pt;}
.x7b{left:401.693322pt;}
.x3d{left:410.333333pt;}
.x7c{left:434.973322pt;}
.xe{left:468.733333pt;}
.x11{left:478.813322pt;}
.x7d{left:483.453322pt;}
.x68{left:494.493322pt;}
.x2b{left:517.053322pt;}
.x3f{left:526.173333pt;}
.x7e{left:529.533322pt;}
.x66{left:538.333322pt;}
.x15{left:546.813322pt;}
.x6c{left:561.253322pt;}
.x20{left:563.333322pt;}
.x29{left:565.093322pt;}
.x36{left:573.413322pt;}
.x21{left:575.653322pt;}
.x76{left:576.613322pt;}
.x19{left:579.653322pt;}
.x6d{left:583.813322pt;}
.x1a{left:586.533322pt;}
.x7f{left:588.453322pt;}
.x6b{left:590.373322pt;}
.x42{left:591.333333pt;}
.x65{left:602.533322pt;}
.x80{left:624.133322pt;}
.x6f{left:627.493322pt;}
.x70{left:635.493322pt;}
.x33{left:649.413322pt;}
.x77{left:653.573322pt;}
.x75{left:655.013322pt;}
.x58{left:677.253322pt;}
.x44{left:681.733333pt;}
.x1e{left:685.893322pt;}
.x1f{left:694.533322pt;}
.x78{left:703.493322pt;}
.x73{left:705.733322pt;}
.x35{left:715.679988pt;}
.x7{left:740.160000pt;}
}




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