
    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_08172990d7bb460edf7d4a68.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_4cb17100c832d18b627de02e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_38ade89b8096b01041cf4af3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_e1766ab050316b3039f10748.woff')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_bfadc4dbaa7b0c516ae843b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960449;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_da847d2aa412ff4a8d77a195.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_20df8c4225b2df3309edd64d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.010254;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_276cfe9a83ad5a28c0c2798d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_3bf594841acf315c4a6e5df8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_ca991448c308b92759c89cb0.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7ad456ee9d0805dfedafc69f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_230062b263d5d0bf55c11753.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_69cf061080fbb93799f7e4a8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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:ffe;src:url('chunks/assets/font_2a0be93956035d1c3315f836.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7ad18e11c8e56c8f24ba5227.woff')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,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);}
.m3{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-3.036000px;}
.lsc{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.460200px;}
.ls17{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.085200px;}
.ls12{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.540000px;}
.ls19{letter-spacing:64.026720px;}
.ls15{letter-spacing:64.746720px;}
.ls13{letter-spacing:114.426720px;}
.ls14{letter-spacing:118.026720px;}
.ls10{letter-spacing:137.466720px;}
.ls4{letter-spacing:161.226720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(32,139,164),0 0.015em rgb(32,139,164),0.015em 0 rgb(32,139,164),0 -0.015em  rgb(32,139,164);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(32,139,164);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.216000px;}
.ws9{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.145200px;}
.ws5{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.016000px;}
.ws0{word-spacing:-19.872000px;}
.wsd{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.960000px;}
.ws7{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._9{margin-left:-17.928000px;}
._c{margin-left:-10.958880px;}
._1d{margin-left:-8.232480px;}
._0{margin-left:-7.128000px;}
._1f{margin-left:-6.059520px;}
._2{margin-left:-4.980000px;}
._7{margin-left:-3.682080px;}
._6{margin-left:-2.244960px;}
._1{margin-left:-1.080000px;}
._5{width:1.347840px;}
._15{width:2.417520px;}
._18{width:3.422640px;}
._17{width:4.482000px;}
._16{width:6.215040px;}
._12{width:7.983360px;}
._11{width:9.510960px;}
._1a{width:10.936080px;}
._19{width:12.669120px;}
._13{width:15.500160px;}
._14{width:17.282400px;}
._1b{width:19.568160px;}
._1c{width:21.607200px;}
._1e{width:22.914720px;}
._d{width:30.242160px;}
._e{width:31.258560px;}
._f{width:32.373360px;}
._b{width:37.512000px;}
._a{width:39.108000px;}
._8{width:70.824960px;}
._10{width:72.193680px;}
._3{width:819.876000px;}
._4{width:1284.924000px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,139,164);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:2.520000px;}
.y5b{bottom:2.700000px;}
.y67{bottom:3.420000px;}
.y5c{bottom:4.680000px;}
.y43{bottom:5.760000px;}
.y45{bottom:7.020000px;}
.y42{bottom:22.320000px;}
.y44{bottom:23.580000px;}
.y5{bottom:90.000000px;}
.y4{bottom:111.960000px;}
.y82{bottom:147.060000px;}
.y2a{bottom:147.600000px;}
.y81{bottom:166.890000px;}
.y29{bottom:167.430000px;}
.y80{bottom:186.690000px;}
.ya6{bottom:186.870000px;}
.y28{bottom:187.230000px;}
.y7f{bottom:206.490000px;}
.ya5{bottom:206.670000px;}
.y27{bottom:207.030000px;}
.y7e{bottom:226.290000px;}
.ya4{bottom:226.470000px;}
.y26{bottom:238.890000px;}
.y7d{bottom:246.270000px;}
.y7c{bottom:266.070000px;}
.y25{bottom:273.090000px;}
.y7b{bottom:285.870000px;}
.ya3{bottom:286.050000px;}
.y24{bottom:292.890000px;}
.y59{bottom:303.510000px;}
.y7a{bottom:305.670000px;}
.ya2{bottom:305.850000px;}
.y23{bottom:312.690000px;}
.y58{bottom:323.310000px;}
.y79{bottom:325.470000px;}
.ya1{bottom:325.650000px;}
.y22{bottom:332.490000px;}
.y57{bottom:343.290000px;}
.y78{bottom:345.450000px;}
.y21{bottom:352.290000px;}
.y41{bottom:353.010000px;}
.y56{bottom:363.090000px;}
.y77{bottom:365.250000px;}
.y20{bottom:372.270000px;}
.y55{bottom:382.890000px;}
.y76{bottom:385.050000px;}
.ya0{bottom:385.230000px;}
.y1f{bottom:392.070000px;}
.y54{bottom:402.690000px;}
.y75{bottom:404.850000px;}
.y9f{bottom:405.030000px;}
.y1e{bottom:411.915000px;}
.y53{bottom:422.535000px;}
.y74{bottom:424.695000px;}
.y9e{bottom:424.875000px;}
.y1d{bottom:434.055000px;}
.y52{bottom:442.515000px;}
.y73{bottom:444.675000px;}
.ya7{bottom:452.595000px;}
.y1c{bottom:453.855000px;}
.y51{bottom:462.315000px;}
.y72{bottom:464.475000px;}
.y1b{bottom:473.655000px;}
.y50{bottom:482.115000px;}
.y71{bottom:484.275000px;}
.y9d{bottom:484.455000px;}
.y1a{bottom:493.455000px;}
.y4f{bottom:501.915000px;}
.y70{bottom:504.075000px;}
.y9c{bottom:504.255000px;}
.y19{bottom:513.435000px;}
.y4e{bottom:521.715000px;}
.y6f{bottom:523.875000px;}
.y9b{bottom:524.055000px;}
.y18{bottom:533.235000px;}
.y4d{bottom:541.695000px;}
.y6e{bottom:543.855000px;}
.y17{bottom:553.035000px;}
.y65{bottom:555.015000px;}
.y4c{bottom:561.495000px;}
.y9a{bottom:563.655000px;}
.y16{bottom:572.835000px;}
.y64{bottom:574.815000px;}
.y6d{bottom:575.535000px;}
.y4b{bottom:581.295000px;}
.y99{bottom:583.635000px;}
.y15{bottom:592.635000px;}
.y63{bottom:594.615000px;}
.y6c{bottom:595.515000px;}
.y4a{bottom:601.095000px;}
.y98{bottom:603.435000px;}
.y14{bottom:612.615000px;}
.y62{bottom:614.595000px;}
.y6b{bottom:615.315000px;}
.y49{bottom:620.895000px;}
.y97{bottom:623.235000px;}
.y61{bottom:634.395000px;}
.y6a{bottom:635.115000px;}
.y48{bottom:640.875000px;}
.y96{bottom:643.035000px;}
.y13{bottom:648.435000px;}
.y60{bottom:654.225000px;}
.y95{bottom:662.865000px;}
.y69{bottom:667.005000px;}
.y40{bottom:670.785000px;}
.y47{bottom:672.585000px;}
.y5f{bottom:674.025000px;}
.y12{bottom:678.525000px;}
.y66{bottom:681.765000px;}
.y94{bottom:682.845000px;}
.y46{bottom:687.525000px;}
.y3f{bottom:690.585000px;}
.y5e{bottom:693.825000px;}
.y93{bottom:702.645000px;}
.y11{bottom:708.405000px;}
.y3e{bottom:710.385000px;}
.y92{bottom:722.445000px;}
.y5d{bottom:725.685000px;}
.y3d{bottom:730.365000px;}
.y10{bottom:738.465000px;}
.y5a{bottom:740.445000px;}
.y91{bottom:742.245000px;}
.y3c{bottom:750.165000px;}
.y90{bottom:762.045000px;}
.yf{bottom:768.525000px;}
.y3b{bottom:769.965000px;}
.y8f{bottom:782.025000px;}
.y3a{bottom:789.765000px;}
.y8e{bottom:801.825000px;}
.y39{bottom:809.565000px;}
.ye{bottom:811.725000px;}
.y8d{bottom:821.625000px;}
.y38{bottom:829.545000px;}
.y8c{bottom:841.425000px;}
.y37{bottom:849.345000px;}
.yd{bottom:859.605000px;}
.y8b{bottom:861.225000px;}
.y36{bottom:869.145000px;}
.y8a{bottom:881.205000px;}
.y35{bottom:888.945000px;}
.yc{bottom:895.605000px;}
.y89{bottom:901.050000px;}
.y34{bottom:908.790000px;}
.y88{bottom:920.850000px;}
.y33{bottom:928.770000px;}
.yb{bottom:931.650000px;}
.y87{bottom:940.650000px;}
.y32{bottom:948.570000px;}
.y86{bottom:960.450000px;}
.y31{bottom:968.370000px;}
.ya{bottom:974.490000px;}
.y85{bottom:980.430000px;}
.y30{bottom:988.170000px;}
.y84{bottom:1000.230000px;}
.y9{bottom:1005.450000px;}
.y2f{bottom:1007.970000px;}
.y83{bottom:1020.030000px;}
.y8{bottom:1039.470000px;}
.y2e{bottom:1039.830000px;}
.y2d{bottom:1059.630000px;}
.y7{bottom:1068.990000px;}
.y2c{bottom:1079.610000px;}
.y6{bottom:1096.170000px;}
.y2b{bottom:1099.410000px;}
.y3{bottom:1118.310000px;}
.y2{bottom:1139.550000px;}
.y1{bottom:1160.460000px;}
.h10{height:41.726953px;}
.hb{height:52.925625px;}
.h2{height:54.000000px;}
.h4{height:58.038398px;}
.hf{height:58.651172px;}
.he{height:59.038594px;}
.hc{height:59.614102px;}
.hd{height:59.665078px;}
.h8{height:60.226875px;}
.ha{height:61.329023px;}
.h16{height:61.423863px;}
.h11{height:62.211094px;}
.h6{height:63.070312px;}
.h5{height:65.975273px;}
.h3{height:71.613281px;}
.h9{height:81.000000px;}
.h7{height:91.177734px;}
.h12{height:299.190000px;}
.h14{height:372.270000px;}
.h13{height:425.190000px;}
.h15{height:430.950000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:273.990000px;}
.w7{width:323.670000px;}
.w6{width:336.495000px;}
.w5{width:338.610000px;}
.w8{width:351.435000px;}
.w4{width:401.115000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x16{left:103.355987px;}
.x1{left:108.035987px;}
.x14{left:110.735987px;}
.x15{left:148.535987px;}
.x3{left:233.669987px;}
.x7{left:253.659000px;}
.xb{left:259.779000px;}
.xa{left:318.315000px;}
.x10{left:342.939000px;}
.xf{left:351.975000px;}
.x6{left:353.234987px;}
.xd{left:354.309000px;}
.x5{left:373.034987px;}
.x13{left:382.214987px;}
.x9{left:383.475000px;}
.x12{left:387.254987px;}
.xc{left:393.375000px;}
.x11{left:433.155000px;}
.xe{left:448.095000px;}
.x4{left:710.969987px;}
.x2{left:767.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-2.698667pt;}
.lsc{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.409067pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.075733pt;}
.ls12{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls19{letter-spacing:56.912640pt;}
.ls15{letter-spacing:57.552640pt;}
.ls13{letter-spacing:101.712640pt;}
.ls14{letter-spacing:104.912640pt;}
.ls10{letter-spacing:122.192640pt;}
.ls4{letter-spacing:143.312640pt;}
.ws2{word-spacing:-64.192000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws4{word-spacing:-18.795733pt;}
.ws5{word-spacing:-18.720000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.664000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.160000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.520000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._9{margin-left:-15.936000pt;}
._c{margin-left:-9.741227pt;}
._1d{margin-left:-7.317760pt;}
._0{margin-left:-6.336000pt;}
._1f{margin-left:-5.386240pt;}
._2{margin-left:-4.426667pt;}
._7{margin-left:-3.272960pt;}
._6{margin-left:-1.995520pt;}
._1{margin-left:-0.960000pt;}
._5{width:1.198080pt;}
._15{width:2.148907pt;}
._18{width:3.042347pt;}
._17{width:3.984000pt;}
._16{width:5.524480pt;}
._12{width:7.096320pt;}
._11{width:8.454187pt;}
._1a{width:9.720960pt;}
._19{width:11.261440pt;}
._13{width:13.777920pt;}
._14{width:15.362133pt;}
._1b{width:17.393920pt;}
._1c{width:19.206400pt;}
._1e{width:20.368640pt;}
._d{width:26.881920pt;}
._e{width:27.785387pt;}
._f{width:28.776320pt;}
._b{width:33.344000pt;}
._a{width:34.762667pt;}
._8{width:62.955520pt;}
._10{width:64.172160pt;}
._3{width:728.778667pt;}
._4{width:1142.154667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.240000pt;}
.y5b{bottom:2.400000pt;}
.y67{bottom:3.040000pt;}
.y5c{bottom:4.160000pt;}
.y43{bottom:5.120000pt;}
.y45{bottom:6.240000pt;}
.y42{bottom:19.840000pt;}
.y44{bottom:20.960000pt;}
.y5{bottom:80.000000pt;}
.y4{bottom:99.520000pt;}
.y82{bottom:130.720000pt;}
.y2a{bottom:131.200000pt;}
.y81{bottom:148.346667pt;}
.y29{bottom:148.826667pt;}
.y80{bottom:165.946667pt;}
.ya6{bottom:166.106667pt;}
.y28{bottom:166.426667pt;}
.y7f{bottom:183.546667pt;}
.ya5{bottom:183.706667pt;}
.y27{bottom:184.026667pt;}
.y7e{bottom:201.146667pt;}
.ya4{bottom:201.306667pt;}
.y26{bottom:212.346667pt;}
.y7d{bottom:218.906667pt;}
.y7c{bottom:236.506667pt;}
.y25{bottom:242.746667pt;}
.y7b{bottom:254.106667pt;}
.ya3{bottom:254.266667pt;}
.y24{bottom:260.346667pt;}
.y59{bottom:269.786667pt;}
.y7a{bottom:271.706667pt;}
.ya2{bottom:271.866667pt;}
.y23{bottom:277.946667pt;}
.y58{bottom:287.386667pt;}
.y79{bottom:289.306667pt;}
.ya1{bottom:289.466667pt;}
.y22{bottom:295.546667pt;}
.y57{bottom:305.146667pt;}
.y78{bottom:307.066667pt;}
.y21{bottom:313.146667pt;}
.y41{bottom:313.786667pt;}
.y56{bottom:322.746667pt;}
.y77{bottom:324.666667pt;}
.y20{bottom:330.906667pt;}
.y55{bottom:340.346667pt;}
.y76{bottom:342.266667pt;}
.ya0{bottom:342.426667pt;}
.y1f{bottom:348.506667pt;}
.y54{bottom:357.946667pt;}
.y75{bottom:359.866667pt;}
.y9f{bottom:360.026667pt;}
.y1e{bottom:366.146667pt;}
.y53{bottom:375.586667pt;}
.y74{bottom:377.506667pt;}
.y9e{bottom:377.666667pt;}
.y1d{bottom:385.826667pt;}
.y52{bottom:393.346667pt;}
.y73{bottom:395.266667pt;}
.ya7{bottom:402.306667pt;}
.y1c{bottom:403.426667pt;}
.y51{bottom:410.946667pt;}
.y72{bottom:412.866667pt;}
.y1b{bottom:421.026667pt;}
.y50{bottom:428.546667pt;}
.y71{bottom:430.466667pt;}
.y9d{bottom:430.626667pt;}
.y1a{bottom:438.626667pt;}
.y4f{bottom:446.146667pt;}
.y70{bottom:448.066667pt;}
.y9c{bottom:448.226667pt;}
.y19{bottom:456.386667pt;}
.y4e{bottom:463.746667pt;}
.y6f{bottom:465.666667pt;}
.y9b{bottom:465.826667pt;}
.y18{bottom:473.986667pt;}
.y4d{bottom:481.506667pt;}
.y6e{bottom:483.426667pt;}
.y17{bottom:491.586667pt;}
.y65{bottom:493.346667pt;}
.y4c{bottom:499.106667pt;}
.y9a{bottom:501.026667pt;}
.y16{bottom:509.186667pt;}
.y64{bottom:510.946667pt;}
.y6d{bottom:511.586667pt;}
.y4b{bottom:516.706667pt;}
.y99{bottom:518.786667pt;}
.y15{bottom:526.786667pt;}
.y63{bottom:528.546667pt;}
.y6c{bottom:529.346667pt;}
.y4a{bottom:534.306667pt;}
.y98{bottom:536.386667pt;}
.y14{bottom:544.546667pt;}
.y62{bottom:546.306667pt;}
.y6b{bottom:546.946667pt;}
.y49{bottom:551.906667pt;}
.y97{bottom:553.986667pt;}
.y61{bottom:563.906667pt;}
.y6a{bottom:564.546667pt;}
.y48{bottom:569.666667pt;}
.y96{bottom:571.586667pt;}
.y13{bottom:576.386667pt;}
.y60{bottom:581.533333pt;}
.y95{bottom:589.213333pt;}
.y69{bottom:592.893333pt;}
.y40{bottom:596.253333pt;}
.y47{bottom:597.853333pt;}
.y5f{bottom:599.133333pt;}
.y12{bottom:603.133333pt;}
.y66{bottom:606.013333pt;}
.y94{bottom:606.973333pt;}
.y46{bottom:611.133333pt;}
.y3f{bottom:613.853333pt;}
.y5e{bottom:616.733333pt;}
.y93{bottom:624.573333pt;}
.y11{bottom:629.693333pt;}
.y3e{bottom:631.453333pt;}
.y92{bottom:642.173333pt;}
.y5d{bottom:645.053333pt;}
.y3d{bottom:649.213333pt;}
.y10{bottom:656.413333pt;}
.y5a{bottom:658.173333pt;}
.y91{bottom:659.773333pt;}
.y3c{bottom:666.813333pt;}
.y90{bottom:677.373333pt;}
.yf{bottom:683.133333pt;}
.y3b{bottom:684.413333pt;}
.y8f{bottom:695.133333pt;}
.y3a{bottom:702.013333pt;}
.y8e{bottom:712.733333pt;}
.y39{bottom:719.613333pt;}
.ye{bottom:721.533333pt;}
.y8d{bottom:730.333333pt;}
.y38{bottom:737.373333pt;}
.y8c{bottom:747.933333pt;}
.y37{bottom:754.973333pt;}
.yd{bottom:764.093333pt;}
.y8b{bottom:765.533333pt;}
.y36{bottom:772.573333pt;}
.y8a{bottom:783.293333pt;}
.y35{bottom:790.173333pt;}
.yc{bottom:796.093333pt;}
.y89{bottom:800.933333pt;}
.y34{bottom:807.813333pt;}
.y88{bottom:818.533333pt;}
.y33{bottom:825.573333pt;}
.yb{bottom:828.133333pt;}
.y87{bottom:836.133333pt;}
.y32{bottom:843.173333pt;}
.y86{bottom:853.733333pt;}
.y31{bottom:860.773333pt;}
.ya{bottom:866.213333pt;}
.y85{bottom:871.493333pt;}
.y30{bottom:878.373333pt;}
.y84{bottom:889.093333pt;}
.y9{bottom:893.733333pt;}
.y2f{bottom:895.973333pt;}
.y83{bottom:906.693333pt;}
.y8{bottom:923.973333pt;}
.y2e{bottom:924.293333pt;}
.y2d{bottom:941.893333pt;}
.y7{bottom:950.213333pt;}
.y2c{bottom:959.653333pt;}
.y6{bottom:974.373333pt;}
.y2b{bottom:977.253333pt;}
.y3{bottom:994.053333pt;}
.y2{bottom:1012.933333pt;}
.y1{bottom:1031.520000pt;}
.h10{height:37.090625pt;}
.hb{height:47.045000pt;}
.h2{height:48.000000pt;}
.h4{height:51.589687pt;}
.hf{height:52.134375pt;}
.he{height:52.478750pt;}
.hc{height:52.990313pt;}
.hd{height:53.035625pt;}
.h8{height:53.535000pt;}
.ha{height:54.514687pt;}
.h16{height:54.598989pt;}
.h11{height:55.298750pt;}
.h6{height:56.062500pt;}
.h5{height:58.644688pt;}
.h3{height:63.656250pt;}
.h9{height:72.000000pt;}
.h7{height:81.046875pt;}
.h12{height:265.946667pt;}
.h14{height:330.906667pt;}
.h13{height:377.946667pt;}
.h15{height:383.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:243.546667pt;}
.w7{width:287.706667pt;}
.w6{width:299.106667pt;}
.w5{width:300.986667pt;}
.w8{width:312.386667pt;}
.w4{width:356.546667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x16{left:91.871988pt;}
.x1{left:96.031988pt;}
.x14{left:98.431988pt;}
.x15{left:132.031988pt;}
.x3{left:207.706655pt;}
.x7{left:225.474667pt;}
.xb{left:230.914667pt;}
.xa{left:282.946667pt;}
.x10{left:304.834667pt;}
.xf{left:312.866667pt;}
.x6{left:313.986655pt;}
.xd{left:314.941333pt;}
.x5{left:331.586655pt;}
.x13{left:339.746655pt;}
.x9{left:340.866667pt;}
.x12{left:344.226655pt;}
.xc{left:349.666667pt;}
.x11{left:385.026667pt;}
.xe{left:398.306667pt;}
.x4{left:631.973322pt;}
.x2{left:681.893322pt;}
}




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