
    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_d6bb53ebb6ae20a5b34e9582.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_62e3cd620743f82c379b1c53.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_b432bcf9882e85f2ac94f5fd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.765000;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_9863c6eab9ea407f9e1214e7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_a5880d5b9dd3bbff258a3d2f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_8f9ed74950f575f96f222ba8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.021000;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_61f716f285eef3ba4bf50f38.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_33ba4a3cc56901a94bc4a717.woff')format("woff");}.ff8{font-family:ff8;line-height:0.765000;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_8cfbb512ecf186925a32cf60.woff')format("woff");}.ff9{font-family:ff9;line-height:1.010000;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_b3d5c064db6f9cae1d43c0fc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.770000;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.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-115.220724px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.439468px;}
.v3{vertical-align:57.609693px;}
.v1{vertical-align:172.831086px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000035px;}
.ls1{letter-spacing:0.000041px;}
.ls0{letter-spacing:0.000089px;}
.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;}
}
.ws3{word-spacing:-112.340202px;}
.ws9{word-spacing:-88.816082px;}
.ws4{word-spacing:-57.610267px;}
.ws5{word-spacing:-37.446735px;}
.ws1{word-spacing:-31.205650px;}
.ws6{word-spacing:-24.964449px;}
.ws7{word-spacing:-24.340376px;}
.ws0{word-spacing:-0.120022px;}
.ws8{word-spacing:0.000000px;}
.ws2{word-spacing:585.567323px;}
._8{margin-left:-20.163626px;}
._7{margin-left:-11.522072px;}
._3{margin-left:-10.081813px;}
._5{margin-left:-8.641554px;}
._9{margin-left:-5.761036px;}
._4{margin-left:-4.320777px;}
._0{margin-left:-2.880518px;}
._1{margin-left:-1.440259px;}
._2{width:4.800860px;}
._a{width:467.735207px;}
._6{width:664.030889px;}
.fcb{color:rgb(208,154,157);}
.fc7{color:rgb(102,214,236);}
.fc6{color:rgb(255,48,48);}
.fc5{color:rgb(120,197,107);}
.fc4{color:rgb(229,202,154);}
.fc3{color:rgb(202,108,20);}
.fc2{color:rgb(16,45,86);}
.fca{color:rgb(154,208,188);}
.fc9{color:rgb(188,154,208);}
.fc8{color:rgb(149,149,149);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:93.616830px;}
.fs7{font-size:96.017112px;}
.fs2{font-size:120.021732px;}
.fs1{font-size:144.025902px;}
.fs5{font-size:187.233666px;}
.fs4{font-size:280.850496px;}
.fs6{font-size:288.051798px;}
.fs0{font-size:432.077700px;}
.fs3{font-size:576.103602px;}
.y0{bottom:0.000000px;}
.y1b{bottom:37.441288px;}
.y27{bottom:47.393144px;}
.y1a{bottom:82.449382px;}
.y26{bottom:84.900085px;}
.y25{bottom:122.407027px;}
.y19{bottom:128.361527px;}
.y24{bottom:159.913968px;}
.y18{bottom:174.273672px;}
.y23{bottom:197.420909px;}
.y22{bottom:234.927850px;}
.y17{bottom:264.289861px;}
.y21{bottom:272.434792px;}
.yd7{bottom:293.438815px;}
.y37{bottom:293.798684px;}
.y16{bottom:310.202006px;}
.y20{bottom:347.448644px;}
.y15{bottom:355.210100px;}
.y1f{bottom:384.955585px;}
.y14{bottom:401.122245px;}
.y28{bottom:440.790000px;}
.y1d{bottom:441.937500px;}
.y13{bottom:447.034390px;}
.yd6{bottom:460.325110px;}
.y1e{bottom:462.010178px;}
.y12{bottom:492.946679px;}
.yd5{bottom:497.832051px;}
.y86{bottom:506.315303px;}
.yd4{bottom:535.338992px;}
.y85{bottom:536.320509px;}
.yd3{bottom:572.845634px;}
.y11{bottom:582.962868px;}
.y84{bottom:596.330940px;}
.yd2{bottom:612.393573px;}
.y83{bottom:626.336153px;}
.y10{bottom:628.875013px;}
.y82{bottom:656.341365px;}
.yf{bottom:674.787230px;}
.ye{bottom:675.697500px;}
.y81{bottom:716.351799px;}
.y80{bottom:746.357003px;}
.y7f{bottom:776.362211px;}
.y90{bottom:779.758470px;}
.y8f{bottom:809.763818px;}
.y7e{bottom:836.372642px;}
.y8e{bottom:839.769165px;}
.y7d{bottom:866.377854px;}
.y7c{bottom:896.383066px;}
.y7b{bottom:926.388279px;}
.y7a{bottom:956.393491px;}
.y79{bottom:1016.403945px;}
.y78{bottom:1046.409149px;}
.ycd{bottom:1061.943205px;}
.y77{bottom:1076.414352px;}
.ycc{bottom:1099.450146px;}
.y76{bottom:1106.419556px;}
.y75{bottom:1136.424762px;}
.ycb{bottom:1137.710314px;}
.yca{bottom:1175.217255px;}
.y74{bottom:1196.435193px;}
.yc9{bottom:1213.477423px;}
.y73{bottom:1226.440405px;}
.yc8{bottom:1250.984364px;}
.y8a{bottom:1254.156017px;}
.y72{bottom:1256.445619px;}
.y89{bottom:1284.161364px;}
.y71{bottom:1286.450832px;}
.y88{bottom:1314.166712px;}
.y70{bottom:1316.456044px;}
.yc7{bottom:1325.998216px;}
.y87{bottom:1344.172059px;}
.y6f{bottom:1346.461257px;}
.yc6{bottom:1363.505158px;}
.yc5{bottom:1401.012099px;}
.y6e{bottom:1406.471729px;}
.y6d{bottom:1436.476932px;}
.y1c{bottom:1464.020384px;}
.y6c{bottom:1466.482136px;}
.yc4{bottom:1478.066691px;}
.y6b{bottom:1496.487339px;}
.y6a{bottom:1526.492543px;}
.y69{bottom:1556.497746px;}
.y34{bottom:1571.913196px;}
.y68{bottom:1586.502953px;}
.y33{bottom:1617.825341px;}
.y8d{bottom:1623.834747px;}
.y67{bottom:1646.513383px;}
.y8c{bottom:1653.840094px;}
.y66{bottom:1676.518596px;}
.y8b{bottom:1683.845442px;}
.yb9{bottom:1693.675850px;}
.y65{bottom:1706.523809px;}
.y32{bottom:1707.841530px;}
.y64{bottom:1736.529021px;}
.yb8{bottom:1739.587995px;}
.y60{bottom:1746.338958px;}
.y31{bottom:1753.753675px;}
.y5f{bottom:1776.344305px;}
.yb7{bottom:1784.596089px;}
.y63{bottom:1796.539719px;}
.y30{bottom:1799.665820px;}
.y5e{bottom:1806.349653px;}
.y62{bottom:1826.545066px;}
.y93{bottom:1834.900308px;}
.y5d{bottom:1836.355002px;}
.y2f{bottom:1845.577964px;}
.y92{bottom:1864.905655px;}
.y96{bottom:1873.635517px;}
.yb6{bottom:1875.516329px;}
.y61{bottom:1875.591558px;}
.y91{bottom:1894.911003px;}
.y5c{bottom:1896.365700px;}
.y95{bottom:1903.640865px;}
.yb5{bottom:1921.428474px;}
.y5b{bottom:1926.371048px;}
.y94{bottom:1933.646212px;}
.y2e{bottom:1936.498204px;}
.y5a{bottom:1956.376396px;}
.yb4{bottom:1967.340619px;}
.y2d{bottom:1981.506442px;}
.y59{bottom:2016.387091px;}
.y2c{bottom:2027.418587px;}
.y58{bottom:2046.392441px;}
.yb3{bottom:2057.356807px;}
.y2b{bottom:2072.426682px;}
.y57{bottom:2076.397790px;}
.yb2{bottom:2102.364902px;}
.y56{bottom:2106.403137px;}
.y2a{bottom:2118.338827px;}
.y55{bottom:2136.408484px;}
.yb1{bottom:2148.277047px;}
.y29{bottom:2164.251044px;}
.y54{bottom:2166.413835px;}
.yb0{bottom:2193.285141px;}
.y53{bottom:2196.419182px;}
.y52{bottom:2226.424530px;}
.yaf{bottom:2239.197286px;}
.y51{bottom:2256.429879px;}
.yae{bottom:2284.205381px;}
.y50{bottom:2286.435226px;}
.y4f{bottom:2316.440577px;}
.yad{bottom:2330.117526px;}
.y4e{bottom:2346.445924px;}
.ybc{bottom:2351.673907px;}
.yac{bottom:2375.125620px;}
.y4d{bottom:2376.451273px;}
.ybb{bottom:2381.679255px;}
.y4c{bottom:2406.456621px;}
.yba{bottom:2411.684602px;}
.yab{bottom:2420.133714px;}
.y4b{bottom:2436.461970px;}
.yaa{bottom:2466.045859px;}
.y4a{bottom:2466.467319px;}
.ya9{bottom:2511.053954px;}
.y49{bottom:2526.478015px;}
.y48{bottom:2556.483363px;}
.ya8{bottom:2556.966099px;}
.ybf{bottom:2561.732364px;}
.y47{bottom:2586.488712px;}
.ybe{bottom:2591.737712px;}
.ya7{bottom:2602.878244px;}
.y46{bottom:2616.494059px;}
.ybd{bottom:2621.743059px;}
.y45{bottom:2646.499409px;}
.y44{bottom:2676.504758px;}
.ya6{bottom:2692.894432px;}
.y43{bottom:2706.510108px;}
.y35{bottom:2722.697754px;}
.ya5{bottom:2737.902527px;}
.yc3{bottom:2750.809853px;}
.y42{bottom:2766.520803px;}
.yc2{bottom:2780.815200px;}
.ya4{bottom:2783.814816px;}
.y41{bottom:2796.526150px;}
.yc1{bottom:2810.820547px;}
.y40{bottom:2826.531501px;}
.ya3{bottom:2829.726961px;}
.yc0{bottom:2840.825895px;}
.ya2{bottom:2874.735055px;}
.y3f{bottom:2886.542196px;}
.y3e{bottom:2916.547543px;}
.ya1{bottom:2920.647200px;}
.yd1{bottom:2931.931196px;}
.y3d{bottom:2938.279251px;}
.ya0{bottom:2966.559417px;}
.yd0{bottom:3006.944779px;}
.ycf{bottom:3044.451570px;}
.y97{bottom:3080.210454px;}
.yce{bottom:3121.506300px;}
.y9f{bottom:3237.870658px;}
.y9e{bottom:3283.782803px;}
.y9d{bottom:3328.790898px;}
.y9c{bottom:3373.798992px;}
.y9b{bottom:3464.719231px;}
.y9a{bottom:3510.631376px;}
.yd{bottom:3510.631412px;}
.y7{bottom:3554.735420px;}
.y99{bottom:3555.639471px;}
.yc{bottom:3555.639507px;}
.y6{bottom:3599.743514px;}
.y98{bottom:3600.647565px;}
.yb{bottom:3600.647601px;}
.y5{bottom:3645.655659px;}
.ya{bottom:3645.655695px;}
.y4{bottom:3690.663754px;}
.y3{bottom:3735.671848px;}
.y9{bottom:3735.671884px;}
.y2{bottom:3780.679979px;}
.y8{bottom:3780.680015px;}
.y1{bottom:3886.998309px;}
.y36{bottom:3888.078597px;}
.y3c{bottom:4210.111214px;}
.y3b{bottom:4300.127420px;}
.y3a{bottom:4401.826181px;}
.y39{bottom:4587.136759px;}
.y38{bottom:4768.482795px;}
.hb{height:73.453091px;}
.hc{height:74.509279px;}
.h6{height:91.816625px;}
.h2{height:110.179815px;}
.he{height:111.619283px;}
.hd{height:129.226568px;}
.ha{height:143.233754px;}
.h1{height:330.539441px;}
.h4{height:335.292295px;}
.h9{height:387.681715px;}
.h8{height:440.719256px;}
.h5{height:510.703500px;}
.h3{height:724.494000px;}
.h7{height:2216.103000px;}
.h0{height:5056.500000px;}
.w2{width:668.607000px;}
.w1{width:871.417500px;}
.w3{width:1270.072500px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x8{left:22.278264px;}
.x5{left:29.009844px;}
.x9{left:33.169104px;}
.xd{left:94.041880px;}
.x7{left:96.780000px;}
.x1a{left:119.058264px;}
.x17{left:127.562426px;}
.xe{left:336.710422px;}
.x16{left:546.830322px;}
.xc{left:716.513587px;}
.x15{left:752.618989px;}
.x18{left:764.053858px;}
.x19{left:765.374215px;}
.x10{left:1169.321862px;}
.x4{left:1275.609000px;}
.x1b{left:1296.884574px;}
.x2{left:1360.665837px;}
.xb{left:1420.991059px;}
.x6{left:1483.908126px;}
.xf{left:1545.631867px;}
.x13{left:2098.472472px;}
.x14{left:2103.460742px;}
.x3{left:2211.082102px;}
.xa{left:2413.965805px;}
.x12{left:2529.988097px;}
.x1{left:2636.290107px;}
.x11{left:2867.526565px;}
@media print{
.v2{vertical-align:-102.418421pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.279527pt;}
.v3{vertical-align:51.208616pt;}
.v1{vertical-align:153.627632pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000031pt;}
.ls1{letter-spacing:0.000036pt;}
.ls0{letter-spacing:0.000079pt;}
.ws3{word-spacing:-99.857957pt;}
.ws9{word-spacing:-78.947628pt;}
.ws4{word-spacing:-51.209126pt;}
.ws5{word-spacing:-33.285986pt;}
.ws1{word-spacing:-27.738356pt;}
.ws6{word-spacing:-22.190621pt;}
.ws7{word-spacing:-21.635890pt;}
.ws0{word-spacing:-0.106686pt;}
.ws8{word-spacing:0.000000pt;}
.ws2{word-spacing:520.504287pt;}
._8{margin-left:-17.923223pt;}
._7{margin-left:-10.241842pt;}
._3{margin-left:-8.961612pt;}
._5{margin-left:-7.681381pt;}
._9{margin-left:-5.120921pt;}
._4{margin-left:-3.840691pt;}
._0{margin-left:-2.560460pt;}
._1{margin-left:-1.280230pt;}
._2{width:4.267432pt;}
._a{width:415.764628pt;}
._6{width:590.249679pt;}
.fs8{font-size:83.214960pt;}
.fs7{font-size:85.348544pt;}
.fs2{font-size:106.685984pt;}
.fs1{font-size:128.023024pt;}
.fs5{font-size:166.429925pt;}
.fs4{font-size:249.644885pt;}
.fs6{font-size:256.046043pt;}
.fs0{font-size:384.069067pt;}
.fs3{font-size:512.092091pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:33.281144pt;}
.y27{bottom:42.127239pt;}
.y1a{bottom:73.288339pt;}
.y26{bottom:75.466742pt;}
.y25{bottom:108.806246pt;}
.y19{bottom:114.099135pt;}
.y24{bottom:142.145749pt;}
.y18{bottom:154.909931pt;}
.y23{bottom:175.485253pt;}
.y22{bottom:208.824756pt;}
.y17{bottom:234.924321pt;}
.y21{bottom:242.164259pt;}
.yd7{bottom:260.834503pt;}
.y37{bottom:261.154385pt;}
.y16{bottom:275.735116pt;}
.y20{bottom:308.843239pt;}
.y15{bottom:315.742311pt;}
.y1f{bottom:342.182743pt;}
.y14{bottom:356.553107pt;}
.y28{bottom:391.813333pt;}
.y1d{bottom:392.833333pt;}
.y13{bottom:397.363902pt;}
.yd6{bottom:409.177875pt;}
.y1e{bottom:410.675713pt;}
.y12{bottom:438.174826pt;}
.yd5{bottom:442.517379pt;}
.y86{bottom:450.058047pt;}
.yd4{bottom:475.856882pt;}
.y85{bottom:476.729341pt;}
.yd3{bottom:509.196119pt;}
.y11{bottom:518.189216pt;}
.y84{bottom:530.071947pt;}
.yd2{bottom:544.349843pt;}
.y83{bottom:556.743247pt;}
.y10{bottom:559.000011pt;}
.y82{bottom:583.414547pt;}
.yf{bottom:599.810871pt;}
.ye{bottom:600.620000pt;}
.y81{bottom:636.757155pt;}
.y80{bottom:663.428447pt;}
.y7f{bottom:690.099743pt;}
.y90{bottom:693.118640pt;}
.y8f{bottom:719.790060pt;}
.y7e{bottom:743.442348pt;}
.y8e{bottom:746.461480pt;}
.y7d{bottom:770.113648pt;}
.y7c{bottom:796.784948pt;}
.y7b{bottom:823.456248pt;}
.y7a{bottom:850.127548pt;}
.y79{bottom:903.470173pt;}
.y78{bottom:930.141465pt;}
.ycd{bottom:943.949515pt;}
.y77{bottom:956.812757pt;}
.ycc{bottom:977.289019pt;}
.y76{bottom:983.484049pt;}
.y75{bottom:1010.155344pt;}
.ycb{bottom:1011.298057pt;}
.yca{bottom:1044.637560pt;}
.y74{bottom:1063.497949pt;}
.yc9{bottom:1078.646598pt;}
.y73{bottom:1090.169249pt;}
.yc8{bottom:1111.986101pt;}
.y8a{bottom:1114.805348pt;}
.y72{bottom:1116.840551pt;}
.y89{bottom:1141.476768pt;}
.y71{bottom:1143.511851pt;}
.y88{bottom:1168.148188pt;}
.y70{bottom:1170.183151pt;}
.yc7{bottom:1178.665081pt;}
.y87{bottom:1194.819608pt;}
.y6f{bottom:1196.854451pt;}
.yc6{bottom:1212.004585pt;}
.yc5{bottom:1245.344088pt;}
.y6e{bottom:1250.197092pt;}
.y6d{bottom:1276.868384pt;}
.y1c{bottom:1301.351452pt;}
.y6c{bottom:1303.539676pt;}
.yc4{bottom:1313.837059pt;}
.y6b{bottom:1330.210968pt;}
.y6a{bottom:1356.882260pt;}
.y69{bottom:1383.553552pt;}
.y34{bottom:1397.256174pt;}
.y68{bottom:1410.224847pt;}
.y33{bottom:1438.066970pt;}
.y8d{bottom:1443.408664pt;}
.y67{bottom:1463.567452pt;}
.y8c{bottom:1470.080084pt;}
.y66{bottom:1490.238752pt;}
.y8b{bottom:1496.751504pt;}
.yb9{bottom:1505.489645pt;}
.y65{bottom:1516.910052pt;}
.y32{bottom:1518.081360pt;}
.y64{bottom:1543.581352pt;}
.yb8{bottom:1546.300440pt;}
.y60{bottom:1552.301296pt;}
.y31{bottom:1558.892155pt;}
.y5f{bottom:1578.972716pt;}
.yb7{bottom:1586.307635pt;}
.y63{bottom:1596.924195pt;}
.y30{bottom:1599.702951pt;}
.y5e{bottom:1605.644136pt;}
.y62{bottom:1623.595615pt;}
.y93{bottom:1631.022496pt;}
.y5d{bottom:1632.315557pt;}
.y2f{bottom:1640.513746pt;}
.y92{bottom:1657.693916pt;}
.y96{bottom:1665.453793pt;}
.yb6{bottom:1667.125626pt;}
.y61{bottom:1667.192496pt;}
.y91{bottom:1684.365336pt;}
.y5c{bottom:1685.658400pt;}
.y95{bottom:1692.125213pt;}
.yb5{bottom:1707.936421pt;}
.y5b{bottom:1712.329820pt;}
.y94{bottom:1718.796633pt;}
.y2e{bottom:1721.331737pt;}
.y5a{bottom:1739.001241pt;}
.yb4{bottom:1748.747217pt;}
.y2d{bottom:1761.339060pt;}
.y59{bottom:1792.344081pt;}
.y2c{bottom:1802.149855pt;}
.y58{bottom:1819.015503pt;}
.yb3{bottom:1828.761607pt;}
.y2b{bottom:1842.157050pt;}
.y57{bottom:1845.686924pt;}
.yb2{bottom:1868.768802pt;}
.y56{bottom:1872.358344pt;}
.y2a{bottom:1882.967846pt;}
.y55{bottom:1899.029764pt;}
.yb1{bottom:1909.579597pt;}
.y29{bottom:1923.778705pt;}
.y54{bottom:1925.701187pt;}
.yb0{bottom:1949.586792pt;}
.y53{bottom:1952.372607pt;}
.y52{bottom:1979.044027pt;}
.yaf{bottom:1990.397588pt;}
.y51{bottom:2005.715448pt;}
.yae{bottom:2030.404783pt;}
.y50{bottom:2032.386868pt;}
.y4f{bottom:2059.058291pt;}
.yad{bottom:2071.215578pt;}
.y4e{bottom:2085.729711pt;}
.ybc{bottom:2090.376807pt;}
.yac{bottom:2111.222773pt;}
.y4d{bottom:2112.401132pt;}
.ybb{bottom:2117.048227pt;}
.y4c{bottom:2139.072552pt;}
.yba{bottom:2143.719647pt;}
.yab{bottom:2151.229968pt;}
.y4b{bottom:2165.743973pt;}
.yaa{bottom:2192.040764pt;}
.y4a{bottom:2192.415395pt;}
.ya9{bottom:2232.047959pt;}
.y49{bottom:2245.758236pt;}
.y48{bottom:2272.429656pt;}
.ya8{bottom:2272.858754pt;}
.ybf{bottom:2277.095435pt;}
.y47{bottom:2299.101077pt;}
.ybe{bottom:2303.766855pt;}
.ya7{bottom:2313.669550pt;}
.y46{bottom:2325.772497pt;}
.ybd{bottom:2330.438275pt;}
.y45{bottom:2352.443919pt;}
.y44{bottom:2379.115340pt;}
.ya6{bottom:2393.683940pt;}
.y43{bottom:2405.786763pt;}
.y35{bottom:2420.175781pt;}
.ya5{bottom:2433.691135pt;}
.yc3{bottom:2445.164313pt;}
.y42{bottom:2459.129603pt;}
.yc2{bottom:2471.835733pt;}
.ya4{bottom:2474.502058pt;}
.y41{bottom:2485.801023pt;}
.yc1{bottom:2498.507153pt;}
.y40{bottom:2512.472445pt;}
.ya3{bottom:2515.312854pt;}
.yc0{bottom:2525.178573pt;}
.ya2{bottom:2555.320049pt;}
.y3f{bottom:2565.815285pt;}
.y3e{bottom:2592.486705pt;}
.ya1{bottom:2596.130844pt;}
.yd1{bottom:2606.161063pt;}
.y3d{bottom:2611.803779pt;}
.ya0{bottom:2636.941704pt;}
.yd0{bottom:2672.839803pt;}
.ycf{bottom:2706.179173pt;}
.y97{bottom:2737.964848pt;}
.yce{bottom:2774.672267pt;}
.y9f{bottom:2878.107252pt;}
.y9e{bottom:2918.918047pt;}
.y9d{bottom:2958.925242pt;}
.y9c{bottom:2998.932437pt;}
.y9b{bottom:3079.750428pt;}
.y9a{bottom:3120.561223pt;}
.yd{bottom:3120.561255pt;}
.y7{bottom:3159.764818pt;}
.y99{bottom:3160.568418pt;}
.yc{bottom:3160.568450pt;}
.y6{bottom:3199.772013pt;}
.y98{bottom:3200.575613pt;}
.yb{bottom:3200.575645pt;}
.y5{bottom:3240.582808pt;}
.ya{bottom:3240.582840pt;}
.y4{bottom:3280.590003pt;}
.y3{bottom:3320.597198pt;}
.y9{bottom:3320.597230pt;}
.y2{bottom:3360.604425pt;}
.y8{bottom:3360.604457pt;}
.y1{bottom:3455.109608pt;}
.y36{bottom:3456.069864pt;}
.y3c{bottom:3742.321079pt;}
.y3b{bottom:3822.335484pt;}
.y3a{bottom:3912.734383pt;}
.y39{bottom:4077.454897pt;}
.y38{bottom:4238.651373pt;}
.hb{height:65.291636pt;}
.hc{height:66.230470pt;}
.h6{height:81.614778pt;}
.h2{height:97.937613pt;}
.he{height:99.217141pt;}
.hd{height:114.868061pt;}
.ha{height:127.318893pt;}
.h1{height:293.812836pt;}
.h4{height:298.037596pt;}
.h9{height:344.605969pt;}
.h8{height:391.750449pt;}
.h5{height:453.958667pt;}
.h3{height:643.994667pt;}
.h7{height:1969.869333pt;}
.h0{height:4494.666667pt;}
.w2{width:594.317333pt;}
.w1{width:774.593333pt;}
.w3{width:1128.953333pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x8{left:19.802901pt;}
.x5{left:25.786528pt;}
.x9{left:29.483648pt;}
.xd{left:83.592783pt;}
.x7{left:86.026667pt;}
.x1a{left:105.829568pt;}
.x17{left:113.388823pt;}
.xe{left:299.298153pt;}
.x16{left:486.071397pt;}
.xc{left:636.900967pt;}
.x15{left:668.994657pt;}
.x18{left:679.158985pt;}
.x19{left:680.332636pt;}
.x10{left:1039.397211pt;}
.x4{left:1133.874667pt;}
.x1b{left:1152.786288pt;}
.x2{left:1209.480744pt;}
.xb{left:1263.103164pt;}
.x6{left:1319.029445pt;}
.xf{left:1373.894993pt;}
.x13{left:1865.308864pt;}
.x14{left:1869.742881pt;}
.x3{left:1965.406313pt;}
.xa{left:2145.747383pt;}
.x12{left:2248.878308pt;}
.x1{left:2343.368984pt;}
.x11{left:2548.912503pt;}
}




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