
    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_1ad5adb6892662c71b3cc251.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_44e9013e97b5a29ccdbe8c4e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4ed54c1499bfaf3159781c79.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_3131345616207d8ed24fae75.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_f2c73856b02e9518c99290bd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7328a7a2ae90ab97cc1e5881.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a8f32948ded1c0a054ccc0df.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;}
.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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.176000px;}
.ls18{letter-spacing:-0.666000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls24{letter-spacing:-0.413400px;}
.lse{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.313800px;}
.ls14{letter-spacing:-0.282000px;}
.ls6{letter-spacing:-0.208200px;}
.lsa{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018720px;}
.ls20{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.513600px;}
.ls28{letter-spacing:0.613440px;}
.ls1e{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.978000px;}
.ls12{letter-spacing:1.620000px;}
.ls22{letter-spacing:3.780000px;}
.ls21{letter-spacing:4.500000px;}
.ls10{letter-spacing:7.866720px;}
.ls1d{letter-spacing:10.746720px;}
.ls27{letter-spacing:11.466720px;}
.ls19{letter-spacing:19.386720px;}
.ls1a{letter-spacing:22.986720px;}
.ls1b{letter-spacing:29.466720px;}
.ls1{letter-spacing:31.626720px;}
.ls1c{letter-spacing:33.066720px;}
.ls25{letter-spacing:37.386720px;}
.ls26{letter-spacing:41.850720px;}
.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:-23.958720px;}
.ws1{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.918000px;}
.wse{word-spacing:-15.768000px;}
.ws15{word-spacing:-15.606000px;}
.ws17{word-spacing:-15.453600px;}
.ws0{word-spacing:-15.384000px;}
.ws9{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.120000px;}
.ws13{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.993280px;}
.ws10{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.656440px;}
.wsd{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.526600px;}
.wsc{word-spacing:-14.479800px;}
.ws14{word-spacing:-14.274000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsf{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._14{margin-left:-15.312480px;}
._1e{margin-left:-4.868160px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._9{width:2.542320px;}
._e{width:3.999120px;}
._f{width:5.032800px;}
._10{width:6.510480px;}
._7{width:7.565040px;}
._12{width:9.272880px;}
._b{width:10.697040px;}
._c{width:12.133200px;}
._d{width:13.199520px;}
._15{width:16.895520px;}
._11{width:17.993280px;}
._a{width:19.302480px;}
._13{width:20.918640px;}
._16{width:22.198560px;}
._19{width:23.976960px;}
._17{width:25.471440px;}
._18{width:27.100560px;}
._1d{width:28.710720px;}
._1b{width:29.760480px;}
._1a{width:31.134960px;}
._1c{width:52.104240px;}
._8{width:71.245440px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:20.700000px;}
.ya4{bottom:40.680000px;}
.ya1{bottom:44.820000px;}
.y6{bottom:60.156000px;}
.ya3{bottom:60.480000px;}
.ya2{bottom:80.274000px;}
.ya0{bottom:86.976000px;}
.y95{bottom:88.056000px;}
.y9f{bottom:89.856000px;}
.y94{bottom:98.856000px;}
.y32{bottom:106.056000px;}
.y68{bottom:107.856000px;}
.y9e{bottom:109.656000px;}
.y93{bottom:118.656000px;}
.y31{bottom:125.856000px;}
.y67{bottom:127.656000px;}
.y9d{bottom:129.636000px;}
.y92{bottom:138.636000px;}
.y30{bottom:145.656000px;}
.y66{bottom:147.636000px;}
.y9c{bottom:149.436000px;}
.y91{bottom:158.430000px;}
.y2f{bottom:165.450000px;}
.y65{bottom:167.430000px;}
.y9b{bottom:169.230000px;}
.y90{bottom:178.230000px;}
.y2e{bottom:185.250000px;}
.y64{bottom:187.230000px;}
.y9a{bottom:189.030000px;}
.y8f{bottom:198.030000px;}
.y2d{bottom:205.050000px;}
.y63{bottom:207.030000px;}
.y99{bottom:208.830000px;}
.y8e{bottom:217.830000px;}
.y2c{bottom:225.030000px;}
.y62{bottom:226.830000px;}
.y98{bottom:228.810000px;}
.y8d{bottom:237.810000px;}
.y2b{bottom:244.830000px;}
.y61{bottom:246.810000px;}
.y97{bottom:248.610000px;}
.y8c{bottom:257.610000px;}
.y2a{bottom:264.630000px;}
.y60{bottom:266.610000px;}
.y96{bottom:268.410000px;}
.y8b{bottom:277.410000px;}
.y29{bottom:284.475000px;}
.y5f{bottom:286.455000px;}
.y8a{bottom:297.255000px;}
.y28{bottom:304.275000px;}
.y5e{bottom:306.255000px;}
.y89{bottom:317.055000px;}
.y27{bottom:324.255000px;}
.y5d{bottom:326.055000px;}
.y88{bottom:337.035000px;}
.y26{bottom:344.055000px;}
.y5c{bottom:346.035000px;}
.y87{bottom:356.835000px;}
.y25{bottom:363.855000px;}
.y5b{bottom:365.835000px;}
.y86{bottom:376.635000px;}
.y24{bottom:383.655000px;}
.y5a{bottom:385.635000px;}
.y85{bottom:396.435000px;}
.y23{bottom:403.455000px;}
.y59{bottom:405.435000px;}
.y84{bottom:416.235000px;}
.y22{bottom:423.435000px;}
.y58{bottom:425.235000px;}
.y83{bottom:436.215000px;}
.y21{bottom:443.235000px;}
.y57{bottom:445.215000px;}
.y82{bottom:456.015000px;}
.y20{bottom:463.035000px;}
.y56{bottom:465.015000px;}
.y81{bottom:475.815000px;}
.y1f{bottom:482.835000px;}
.y55{bottom:484.815000px;}
.y80{bottom:495.615000px;}
.y54{bottom:504.615000px;}
.y7f{bottom:515.415000px;}
.y53{bottom:524.415000px;}
.y1e{bottom:524.775000px;}
.y7e{bottom:535.395000px;}
.y52{bottom:544.395000px;}
.y1d{bottom:553.575000px;}
.y7d{bottom:555.195000px;}
.y51{bottom:564.195000px;}
.y1c{bottom:573.585000px;}
.y7c{bottom:575.025000px;}
.y50{bottom:584.025000px;}
.y1b{bottom:593.385000px;}
.y7b{bottom:594.825000px;}
.y4f{bottom:603.825000px;}
.y1a{bottom:613.185000px;}
.y7a{bottom:614.625000px;}
.y4e{bottom:623.625000px;}
.y19{bottom:632.985000px;}
.y79{bottom:634.605000px;}
.y4d{bottom:643.605000px;}
.y18{bottom:652.785000px;}
.y78{bottom:654.405000px;}
.y4c{bottom:663.405000px;}
.y17{bottom:672.765000px;}
.y77{bottom:674.205000px;}
.y4b{bottom:683.205000px;}
.y16{bottom:692.565000px;}
.y76{bottom:694.005000px;}
.y4a{bottom:703.005000px;}
.y15{bottom:712.365000px;}
.y75{bottom:713.805000px;}
.y49{bottom:722.805000px;}
.y14{bottom:732.165000px;}
.y74{bottom:733.785000px;}
.y48{bottom:742.785000px;}
.y13{bottom:751.965000px;}
.y73{bottom:753.585000px;}
.y47{bottom:762.585000px;}
.y12{bottom:771.945000px;}
.y72{bottom:773.385000px;}
.y46{bottom:782.385000px;}
.y11{bottom:791.745000px;}
.y71{bottom:793.185000px;}
.y45{bottom:802.185000px;}
.y10{bottom:811.545000px;}
.y70{bottom:812.985000px;}
.y44{bottom:821.985000px;}
.yf{bottom:831.345000px;}
.y6f{bottom:832.965000px;}
.y43{bottom:841.965000px;}
.y6e{bottom:852.810000px;}
.ye{bottom:853.530000px;}
.y42{bottom:861.810000px;}
.y6d{bottom:872.610000px;}
.yd{bottom:878.550000px;}
.y41{bottom:881.610000px;}
.y6c{bottom:892.410000px;}
.yc{bottom:898.350000px;}
.y40{bottom:901.410000px;}
.y6b{bottom:912.210000px;}
.yb{bottom:913.470000px;}
.y3f{bottom:921.210000px;}
.y6a{bottom:932.190000px;}
.ya{bottom:934.890000px;}
.y3e{bottom:941.190000px;}
.y69{bottom:951.990000px;}
.y9{bottom:958.290000px;}
.y3d{bottom:960.990000px;}
.y3c{bottom:980.790000px;}
.y8{bottom:989.970000px;}
.y3b{bottom:1000.590000px;}
.y3a{bottom:1020.390000px;}
.y7{bottom:1021.830000px;}
.y39{bottom:1040.370000px;}
.y5{bottom:1060.170000px;}
.y38{bottom:1079.970000px;}
.y4{bottom:1090.950000px;}
.y37{bottom:1099.770000px;}
.y36{bottom:1119.570000px;}
.y3{bottom:1121.730000px;}
.y35{bottom:1139.580000px;}
.y2{bottom:1152.720000px;}
.y34{bottom:1170.000000px;}
.y1{bottom:1186.560000px;}
.y33{bottom:1193.220000px;}
.hc{height:2.826563px;}
.h6{height:38.158594px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.hb{height:94.320000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x6{left:45.900000px;}
.x3{left:52.919987px;}
.x1{left:54.179987px;}
.x4{left:74.339987px;}
.x5{left:101.375987px;}
.x2{left:108.035987px;}
.x7{left:190.290000px;}
.x8{left:256.710000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-1.045333pt;}
.ls18{letter-spacing:-0.592000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls24{letter-spacing:-0.367467pt;}
.lse{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.278933pt;}
.ls14{letter-spacing:-0.250667pt;}
.ls6{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016640pt;}
.ls20{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.456533pt;}
.ls28{letter-spacing:0.545280pt;}
.ls1e{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.869333pt;}
.ls12{letter-spacing:1.440000pt;}
.ls22{letter-spacing:3.360000pt;}
.ls21{letter-spacing:4.000000pt;}
.ls10{letter-spacing:6.992640pt;}
.ls1d{letter-spacing:9.552640pt;}
.ls27{letter-spacing:10.192640pt;}
.ls19{letter-spacing:17.232640pt;}
.ls1a{letter-spacing:20.432640pt;}
.ls1b{letter-spacing:26.192640pt;}
.ls1{letter-spacing:28.112640pt;}
.ls1c{letter-spacing:29.392640pt;}
.ls25{letter-spacing:33.232640pt;}
.ls26{letter-spacing:37.200640pt;}
.ws2{word-spacing:-21.296640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.149333pt;}
.wse{word-spacing:-14.016000pt;}
.ws15{word-spacing:-13.872000pt;}
.ws17{word-spacing:-13.736533pt;}
.ws0{word-spacing:-13.674667pt;}
.ws9{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.327360pt;}
.ws10{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.ws11{word-spacing:-13.027947pt;}
.wsd{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.912533pt;}
.wsc{word-spacing:-12.870933pt;}
.ws14{word-spacing:-12.688000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsf{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._14{margin-left:-13.611093pt;}
._1e{margin-left:-4.327253pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._9{width:2.259840pt;}
._e{width:3.554773pt;}
._f{width:4.473600pt;}
._10{width:5.787093pt;}
._7{width:6.724480pt;}
._12{width:8.242560pt;}
._b{width:9.508480pt;}
._c{width:10.785067pt;}
._d{width:11.732907pt;}
._15{width:15.018240pt;}
._11{width:15.994027pt;}
._a{width:17.157760pt;}
._13{width:18.594347pt;}
._16{width:19.732053pt;}
._19{width:21.312853pt;}
._17{width:22.641280pt;}
._18{width:24.089387pt;}
._1d{width:25.520640pt;}
._1b{width:26.453760pt;}
._1a{width:27.675520pt;}
._1c{width:46.314880pt;}
._8{width:63.329280pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:18.400000pt;}
.ya4{bottom:36.160000pt;}
.ya1{bottom:39.840000pt;}
.y6{bottom:53.472000pt;}
.ya3{bottom:53.760000pt;}
.ya2{bottom:71.354667pt;}
.ya0{bottom:77.312000pt;}
.y95{bottom:78.272000pt;}
.y9f{bottom:79.872000pt;}
.y94{bottom:87.872000pt;}
.y32{bottom:94.272000pt;}
.y68{bottom:95.872000pt;}
.y9e{bottom:97.472000pt;}
.y93{bottom:105.472000pt;}
.y31{bottom:111.872000pt;}
.y67{bottom:113.472000pt;}
.y9d{bottom:115.232000pt;}
.y92{bottom:123.232000pt;}
.y30{bottom:129.472000pt;}
.y66{bottom:131.232000pt;}
.y9c{bottom:132.832000pt;}
.y91{bottom:140.826667pt;}
.y2f{bottom:147.066667pt;}
.y65{bottom:148.826667pt;}
.y9b{bottom:150.426667pt;}
.y90{bottom:158.426667pt;}
.y2e{bottom:164.666667pt;}
.y64{bottom:166.426667pt;}
.y9a{bottom:168.026667pt;}
.y8f{bottom:176.026667pt;}
.y2d{bottom:182.266667pt;}
.y63{bottom:184.026667pt;}
.y99{bottom:185.626667pt;}
.y8e{bottom:193.626667pt;}
.y2c{bottom:200.026667pt;}
.y62{bottom:201.626667pt;}
.y98{bottom:203.386667pt;}
.y8d{bottom:211.386667pt;}
.y2b{bottom:217.626667pt;}
.y61{bottom:219.386667pt;}
.y97{bottom:220.986667pt;}
.y8c{bottom:228.986667pt;}
.y2a{bottom:235.226667pt;}
.y60{bottom:236.986667pt;}
.y96{bottom:238.586667pt;}
.y8b{bottom:246.586667pt;}
.y29{bottom:252.866667pt;}
.y5f{bottom:254.626667pt;}
.y8a{bottom:264.226667pt;}
.y28{bottom:270.466667pt;}
.y5e{bottom:272.226667pt;}
.y89{bottom:281.826667pt;}
.y27{bottom:288.226667pt;}
.y5d{bottom:289.826667pt;}
.y88{bottom:299.586667pt;}
.y26{bottom:305.826667pt;}
.y5c{bottom:307.586667pt;}
.y87{bottom:317.186667pt;}
.y25{bottom:323.426667pt;}
.y5b{bottom:325.186667pt;}
.y86{bottom:334.786667pt;}
.y24{bottom:341.026667pt;}
.y5a{bottom:342.786667pt;}
.y85{bottom:352.386667pt;}
.y23{bottom:358.626667pt;}
.y59{bottom:360.386667pt;}
.y84{bottom:369.986667pt;}
.y22{bottom:376.386667pt;}
.y58{bottom:377.986667pt;}
.y83{bottom:387.746667pt;}
.y21{bottom:393.986667pt;}
.y57{bottom:395.746667pt;}
.y82{bottom:405.346667pt;}
.y20{bottom:411.586667pt;}
.y56{bottom:413.346667pt;}
.y81{bottom:422.946667pt;}
.y1f{bottom:429.186667pt;}
.y55{bottom:430.946667pt;}
.y80{bottom:440.546667pt;}
.y54{bottom:448.546667pt;}
.y7f{bottom:458.146667pt;}
.y53{bottom:466.146667pt;}
.y1e{bottom:466.466667pt;}
.y7e{bottom:475.906667pt;}
.y52{bottom:483.906667pt;}
.y1d{bottom:492.066667pt;}
.y7d{bottom:493.506667pt;}
.y51{bottom:501.506667pt;}
.y1c{bottom:509.853333pt;}
.y7c{bottom:511.133333pt;}
.y50{bottom:519.133333pt;}
.y1b{bottom:527.453333pt;}
.y7b{bottom:528.733333pt;}
.y4f{bottom:536.733333pt;}
.y1a{bottom:545.053333pt;}
.y7a{bottom:546.333333pt;}
.y4e{bottom:554.333333pt;}
.y19{bottom:562.653333pt;}
.y79{bottom:564.093333pt;}
.y4d{bottom:572.093333pt;}
.y18{bottom:580.253333pt;}
.y78{bottom:581.693333pt;}
.y4c{bottom:589.693333pt;}
.y17{bottom:598.013333pt;}
.y77{bottom:599.293333pt;}
.y4b{bottom:607.293333pt;}
.y16{bottom:615.613333pt;}
.y76{bottom:616.893333pt;}
.y4a{bottom:624.893333pt;}
.y15{bottom:633.213333pt;}
.y75{bottom:634.493333pt;}
.y49{bottom:642.493333pt;}
.y14{bottom:650.813333pt;}
.y74{bottom:652.253333pt;}
.y48{bottom:660.253333pt;}
.y13{bottom:668.413333pt;}
.y73{bottom:669.853333pt;}
.y47{bottom:677.853333pt;}
.y12{bottom:686.173333pt;}
.y72{bottom:687.453333pt;}
.y46{bottom:695.453333pt;}
.y11{bottom:703.773333pt;}
.y71{bottom:705.053333pt;}
.y45{bottom:713.053333pt;}
.y10{bottom:721.373333pt;}
.y70{bottom:722.653333pt;}
.y44{bottom:730.653333pt;}
.yf{bottom:738.973333pt;}
.y6f{bottom:740.413333pt;}
.y43{bottom:748.413333pt;}
.y6e{bottom:758.053333pt;}
.ye{bottom:758.693333pt;}
.y42{bottom:766.053333pt;}
.y6d{bottom:775.653333pt;}
.yd{bottom:780.933333pt;}
.y41{bottom:783.653333pt;}
.y6c{bottom:793.253333pt;}
.yc{bottom:798.533333pt;}
.y40{bottom:801.253333pt;}
.y6b{bottom:810.853333pt;}
.yb{bottom:811.973333pt;}
.y3f{bottom:818.853333pt;}
.y6a{bottom:828.613333pt;}
.ya{bottom:831.013333pt;}
.y3e{bottom:836.613333pt;}
.y69{bottom:846.213333pt;}
.y9{bottom:851.813333pt;}
.y3d{bottom:854.213333pt;}
.y3c{bottom:871.813333pt;}
.y8{bottom:879.973333pt;}
.y3b{bottom:889.413333pt;}
.y3a{bottom:907.013333pt;}
.y7{bottom:908.293333pt;}
.y39{bottom:924.773333pt;}
.y5{bottom:942.373333pt;}
.y38{bottom:959.973333pt;}
.y4{bottom:969.733333pt;}
.y37{bottom:977.573333pt;}
.y36{bottom:995.173333pt;}
.y3{bottom:997.093333pt;}
.y35{bottom:1012.960000pt;}
.y2{bottom:1024.640000pt;}
.y34{bottom:1040.000000pt;}
.y1{bottom:1054.720000pt;}
.y33{bottom:1060.640000pt;}
.hc{height:2.512500pt;}
.h6{height:33.918750pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.hb{height:83.840000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x6{left:40.800000pt;}
.x3{left:47.039988pt;}
.x1{left:48.159988pt;}
.x4{left:66.079988pt;}
.x5{left:90.111988pt;}
.x2{left:96.031988pt;}
.x7{left:169.146667pt;}
.x8{left:228.186667pt;}
}




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