
    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_d5edbaae179bbb688ae6efee.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_f3807ca26534a094997ec955.woff')format("woff");}.ff2{font-family:ff2;line-height:1.044434;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_08e0dae83ca25be28c493d3a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_090d7f32d9b3edf0fc103513.woff')format("woff");}.ff4{font-family:ff4;line-height:0.905762;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_65d8f0d5d2aad2b277d8af07.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_103e5b5919149824a27c9b36.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_960e656124d95651b4cf5e3e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1a998a6c859338a0c2ecf937.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_85c838b9f9f6e74b565beeaf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_5f57dc82631432830a7cc291.woff')format("woff");}.ffa{font-family:ffa;line-height:0.681641;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.243593,0.056238,-0.056238,0.243593,0,0);-ms-transform:matrix(0.243593,0.056238,-0.056238,0.243593,0,0);-webkit-transform:matrix(0.243593,0.056238,-0.056238,0.243593,0,0);}
.m3{transform:matrix(0.243690,0.055813,-0.055813,0.243690,0,0);-ms-transform:matrix(0.243690,0.055813,-0.055813,0.243690,0,0);-webkit-transform:matrix(0.243690,0.055813,-0.055813,0.243690,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);}
.m1{transform:matrix(0.266636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266636,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-17.688000px;}
.v3{vertical-align:-11.568000px;}
.v4{vertical-align:-10.548000px;}
.v2{vertical-align:-7.140000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.012000px;}
.ls1a{letter-spacing:0.016191px;}
.ls13{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.049486px;}
.ls17{letter-spacing:0.084000px;}
.ls12{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.096000px;}
.ls4{letter-spacing:0.101490px;}
.ls14{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.179940px;}
.ls1c{letter-spacing:0.180041px;}
.ls1d{letter-spacing:0.181381px;}
.ls11{letter-spacing:0.206520px;}
.ls0{letter-spacing:0.215838px;}
.ls1b{letter-spacing:0.219026px;}
.ls6{letter-spacing:0.248310px;}
.lsf{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.254310px;}
.lsa{letter-spacing:0.258000px;}
.ls8{letter-spacing:0.309990px;}
.ls7{letter-spacing:0.315990px;}
.ls10{letter-spacing:0.354000px;}
.lse{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.360234px;}
.ls18{letter-spacing:0.383964px;}
.ls15{letter-spacing:0.474000px;}
.lsc{letter-spacing:11.219301px;}
.lsb{letter-spacing:14.246259px;}
.ls2{letter-spacing:144.738000px;}
.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:-33.261606px;}
.ws4{word-spacing:-29.916000px;}
.ws6{word-spacing:-26.570394px;}
.ws5{word-spacing:-24.921690px;}
.ws9{word-spacing:-21.295206px;}
.ws2{word-spacing:-20.144880px;}
.ws1{word-spacing:-19.929042px;}
.wsa{word-spacing:-16.629972px;}
.ws7{word-spacing:-14.462724px;}
.ws8{word-spacing:-0.135006px;}
.ws0{word-spacing:-0.108000px;}
.wsb{word-spacing:0.000000px;}
._19{margin-left:-18.172251px;}
._18{margin-left:-10.553943px;}
._17{margin-left:-4.595040px;}
._0{margin-left:-1.055856px;}
._d{width:1.005450px;}
._4{width:2.027856px;}
._c{width:3.332862px;}
._8{width:4.752000px;}
._9{width:6.131856px;}
._5{width:7.236000px;}
._10{width:9.180000px;}
._6{width:10.235856px;}
._7{width:11.388288px;}
._29{width:12.410334px;}
._e{width:13.563108px;}
._20{width:14.796000px;}
._21{width:15.845082px;}
._15{width:17.399712px;}
._1{width:18.654000px;}
._2{width:19.956000px;}
._11{width:21.384000px;}
._31{width:22.464000px;}
._12{width:24.624000px;}
._16{width:25.877712px;}
._f{width:26.892000px;}
._3{width:28.595856px;}
._13{width:31.079856px;}
._1c{width:32.400000px;}
._2c{width:34.128000px;}
._a{width:35.591712px;}
._b{width:37.154592px;}
._25{width:38.556000px;}
._14{width:43.391856px;}
._2e{width:44.579856px;}
._26{width:45.659856px;}
._22{width:47.495856px;}
._23{width:48.594000px;}
._2d{width:57.996000px;}
._2a{width:63.461160px;}
._1f{width:65.016000px;}
._2b{width:66.652470px;}
._1a{width:76.572000px;}
._24{width:78.167856px;}
._27{width:79.355856px;}
._30{width:93.719856px;}
._28{width:105.732000px;}
._1b{width:107.003856px;}
._2f{width:118.451856px;}
._1d{width:130.547856px;}
._1e{width:134.219856px;}
.fcb{color:rgb(255,64,0);}
.fca{color:rgb(161,70,126);}
.fc9{color:rgb(255,128,0);}
.fc8{color:rgb(18,118,34);}
.fc6{color:rgb(128,0,128);}
.fc5{color:rgb(255,165,0);}
.fc4{color:rgb(0,128,0);}
.fcc{color:rgb(30,2,254);}
.fc2{color:rgb(15,0,252);}
.fc7{color:rgb(102,102,102);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:52.212000px;}
.fsc{font-size:60.036000px;}
.fs4{font-size:71.946000px;}
.fsb{font-size:76.878000px;}
.fsa{font-size:83.340000px;}
.fs6{font-size:89.970000px;}
.fs7{font-size:95.922000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:120.078000px;}
.fs2{font-size:131.982000px;}
.fs9{font-size:135.006000px;}
.fs1{font-size:168.036000px;}
.fs0{font-size:252.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y3a{bottom:7.975500px;}
.y1f{bottom:86.229000px;}
.y70{bottom:88.099500px;}
.y1d{bottom:105.192000px;}
.y5c{bottom:105.576000px;}
.y77{bottom:132.022500px;}
.y1c{bottom:132.192000px;}
.y5b{bottom:132.576000px;}
.y13{bottom:150.943500px;}
.y76{bottom:160.086000px;}
.y66{bottom:168.547500px;}
.y12{bottom:178.581000px;}
.y75{bottom:188.148000px;}
.y11{bottom:200.181000px;}
.y65{bottom:200.947500px;}
.y74{bottom:216.211500px;}
.y10{bottom:227.820000px;}
.y64{bottom:233.347500px;}
.y73{bottom:244.275000px;}
.yf{bottom:249.420000px;}
.y63{bottom:265.747500px;}
.y72{bottom:272.337000px;}
.ye{bottom:277.057500px;}
.y7d{bottom:286.710000px;}
.y81{bottom:287.431500px;}
.y62{bottom:298.147500px;}
.y71{bottom:300.400500px;}
.yd{bottom:304.695000px;}
.y4f{bottom:309.585000px;}
.y80{bottom:320.640000px;}
.y7c{bottom:321.576000px;}
.y61{bottom:330.547500px;}
.y14{bottom:339.688500px;}
.y4e{bottom:341.985000px;}
.y7f{bottom:360.948000px;}
.y7b{bottom:361.714500px;}
.y60{bottom:362.947500px;}
.y4d{bottom:374.385000px;}
.y5f{bottom:395.347500px;}
.y7e{bottom:403.341000px;}
.y7a{bottom:404.020500px;}
.y4c{bottom:406.785000px;}
.y5e{bottom:427.747500px;}
.y6f{bottom:437.314500px;}
.y4b{bottom:439.185000px;}
.y5d{bottom:460.147500px;}
.y6e{bottom:469.714500px;}
.y4a{bottom:471.585000px;}
.y3e{bottom:500.626500px;}
.y6d{bottom:502.114500px;}
.y49{bottom:503.985000px;}
.y48{bottom:536.385000px;}
.y6c{bottom:547.398000px;}
.y3d{bottom:548.673000px;}
.y47{bottom:568.785000px;}
.y6b{bottom:583.624500px;}
.y3c{bottom:596.721000px;}
.y46{bottom:601.185000px;}
.y6a{bottom:620.446500px;}
.y45{bottom:633.585000px;}
.y3b{bottom:642.981000px;}
.y69{bottom:656.673000px;}
.y44{bottom:665.985000px;}
.y68{bottom:693.495000px;}
.y43{bottom:698.385000px;}
.y39{bottom:703.402500px;}
.y42{bottom:730.785000px;}
.y67{bottom:736.482000px;}
.y41{bottom:763.185000px;}
.y38{bottom:767.904000px;}
.y15{bottom:776.365500px;}
.y5a{bottom:825.943500px;}
.y59{bottom:858.343500px;}
.y8a{bottom:878.965500px;}
.y1b{bottom:887.809500px;}
.y97{bottom:889.255500px;}
.y58{bottom:890.743500px;}
.y89{bottom:905.965500px;}
.y96{bottom:921.655500px;}
.y57{bottom:923.143500px;}
.y88{bottom:932.965500px;}
.y1a{bottom:947.677500px;}
.y95{bottom:954.055500px;}
.y56{bottom:955.543500px;}
.y94{bottom:986.455500px;}
.y55{bottom:987.943500px;}
.y19{bottom:996.745500px;}
.y93{bottom:1018.855500px;}
.y3f{bottom:1032.504000px;}
.y18{bottom:1045.813500px;}
.y92{bottom:1051.255500px;}
.y91{bottom:1083.655500px;}
.y17{bottom:1092.543000px;}
.y90{bottom:1116.055500px;}
.y16{bottom:1139.739000px;}
.y79{bottom:1145.011500px;}
.y8f{bottom:1148.455500px;}
.y78{bottom:1172.011500px;}
.y8e{bottom:1180.855500px;}
.y8d{bottom:1213.255500px;}
.y8c{bottom:1245.655500px;}
.y2f{bottom:1255.987500px;}
.y8b{bottom:1278.055500px;}
.y2e{bottom:1288.387500px;}
.y2d{bottom:1320.787500px;}
.y31{bottom:1340.517000px;}
.y2c{bottom:1353.187500px;}
.y30{bottom:1367.517000px;}
.y2b{bottom:1385.587500px;}
.y2a{bottom:1417.987500px;}
.y87{bottom:1454.725500px;}
.y84{bottom:1460.167500px;}
.y29{bottom:1467.438000px;}
.y28{bottom:1499.838000px;}
.y27{bottom:1532.238000px;}
.y26{bottom:1564.638000px;}
.y25{bottom:1597.038000px;}
.y86{bottom:1598.910000px;}
.y83{bottom:1602.097500px;}
.y24{bottom:1629.438000px;}
.y23{bottom:1661.838000px;}
.y22{bottom:1694.238000px;}
.y21{bottom:1726.638000px;}
.y20{bottom:1766.565000px;}
.y82{bottom:1825.411500px;}
.y85{bottom:1826.007000px;}
.yc{bottom:1880.899500px;}
.y37{bottom:1899.396000px;}
.yb{bottom:1913.299500px;}
.y54{bottom:1928.862000px;}
.y36{bottom:1931.796000px;}
.ya{bottom:1945.699500px;}
.y53{bottom:1961.262000px;}
.y35{bottom:1964.196000px;}
.y9{bottom:1978.099500px;}
.y52{bottom:1993.662000px;}
.y34{bottom:1996.596000px;}
.y8{bottom:2010.499500px;}
.y51{bottom:2026.062000px;}
.y33{bottom:2028.996000px;}
.y7{bottom:2042.899500px;}
.y50{bottom:2059.653000px;}
.y32{bottom:2061.396000px;}
.y6{bottom:2075.299500px;}
.y1e{bottom:2100.684000px;}
.y40{bottom:2101.066500px;}
.y5{bottom:2107.699500px;}
.y4{bottom:2230.071000px;}
.y3{bottom:2278.075500px;}
.y2{bottom:2350.062000px;}
.hd{height:37.501500px;}
.hf{height:43.502648px;}
.h10{height:43.566112px;}
.h11{height:43.567866px;}
.h7{height:60.212619px;}
.h9{height:72.698719px;}
.ha{height:75.297158px;}
.hb{height:80.278471px;}
.hc{height:82.054688px;}
.h8{height:87.009645px;}
.he{height:89.982026px;}
.h6{height:90.386719px;}
.h5{height:95.635395px;}
.h4{height:140.631691px;}
.h3{height:182.640691px;}
.h1{height:2526.000000px;}
.h2{height:2526.051000px;}
.h0{height:2526.094488px;}
.w3{width:173.097000px;}
.w2{width:3575.862000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x14{left:2.235000px;}
.xc{left:103.237500px;}
.xa{left:118.587000px;}
.x4{left:123.519000px;}
.xb{left:138.826500px;}
.x9{left:367.710000px;}
.xf{left:410.697000px;}
.x1{left:582.775500px;}
.x17{left:876.033000px;}
.x3{left:1224.141000px;}
.x19{left:1254.118500px;}
.x12{left:1260.580500px;}
.x11{left:1271.169000px;}
.x1f{left:1279.630500px;}
.x20{left:1405.786500px;}
.x21{left:1408.635000px;}
.x22{left:1410.505500px;}
.x13{left:1413.183000px;}
.x23{left:1422.496500px;}
.x2{left:1505.919000px;}
.x15{left:1529.305500px;}
.x16{left:1626.037500px;}
.x24{left:1766.013000px;}
.x25{left:1768.606500px;}
.x27{left:1772.263500px;}
.x26{left:1815.292500px;}
.x1a{left:1947.444000px;}
.x1b{left:2407.804500px;}
.x10{left:2413.246500px;}
.x5{left:2414.692500px;}
.x18{left:2422.006500px;}
.x1c{left:2428.044000px;}
.x29{left:2451.387000px;}
.x28{left:2453.641500px;}
.x6{left:2455.213500px;}
.x1d{left:2475.325500px;}
.x2a{left:2540.466000px;}
.x8{left:2742.945000px;}
.xd{left:2782.998000px;}
.x7{left:2842.696500px;}
.x1e{left:2953.587000px;}
.x2c{left:3049.299000px;}
.x2b{left:3051.169500px;}
.xe{left:3081.103500px;}
.x2d{left:3123.580500px;}
@media print{
.v1{vertical-align:-15.722667pt;}
.v3{vertical-align:-10.282667pt;}
.v4{vertical-align:-9.376000pt;}
.v2{vertical-align:-6.346667pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1a{letter-spacing:0.014392pt;}
.ls13{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.043987pt;}
.ls17{letter-spacing:0.074667pt;}
.ls12{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.085333pt;}
.ls4{letter-spacing:0.090213pt;}
.ls14{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.159947pt;}
.ls1c{letter-spacing:0.160037pt;}
.ls1d{letter-spacing:0.161227pt;}
.ls11{letter-spacing:0.183573pt;}
.ls0{letter-spacing:0.191856pt;}
.ls1b{letter-spacing:0.194690pt;}
.ls6{letter-spacing:0.220720pt;}
.lsf{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.226053pt;}
.lsa{letter-spacing:0.229333pt;}
.ls8{letter-spacing:0.275547pt;}
.ls7{letter-spacing:0.280880pt;}
.ls10{letter-spacing:0.314667pt;}
.lse{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.320208pt;}
.ls18{letter-spacing:0.341301pt;}
.ls15{letter-spacing:0.421333pt;}
.lsc{letter-spacing:9.972712pt;}
.lsb{letter-spacing:12.663341pt;}
.ls2{letter-spacing:128.656000pt;}
.ws3{word-spacing:-29.565872pt;}
.ws4{word-spacing:-26.592000pt;}
.ws6{word-spacing:-23.618128pt;}
.ws5{word-spacing:-22.152613pt;}
.ws9{word-spacing:-18.929072pt;}
.ws2{word-spacing:-17.906560pt;}
.ws1{word-spacing:-17.714704pt;}
.wsa{word-spacing:-14.782197pt;}
.ws7{word-spacing:-12.855755pt;}
.ws8{word-spacing:-0.120005pt;}
.ws0{word-spacing:-0.096000pt;}
.wsb{word-spacing:0.000000pt;}
._19{margin-left:-16.153112pt;}
._18{margin-left:-9.381283pt;}
._17{margin-left:-4.084480pt;}
._0{margin-left:-0.938539pt;}
._d{width:0.893733pt;}
._4{width:1.802539pt;}
._c{width:2.962544pt;}
._8{width:4.224000pt;}
._9{width:5.450539pt;}
._5{width:6.432000pt;}
._10{width:8.160000pt;}
._6{width:9.098539pt;}
._7{width:10.122923pt;}
._29{width:11.031408pt;}
._e{width:12.056096pt;}
._20{width:13.152000pt;}
._21{width:14.084517pt;}
._15{width:15.466411pt;}
._1{width:16.581333pt;}
._2{width:17.738667pt;}
._11{width:19.008000pt;}
._31{width:19.968000pt;}
._12{width:21.888000pt;}
._16{width:23.002411pt;}
._f{width:23.904000pt;}
._3{width:25.418539pt;}
._13{width:27.626539pt;}
._1c{width:28.800000pt;}
._2c{width:30.336000pt;}
._a{width:31.637077pt;}
._b{width:33.026304pt;}
._25{width:34.272000pt;}
._14{width:38.570539pt;}
._2e{width:39.626539pt;}
._26{width:40.586539pt;}
._22{width:42.218539pt;}
._23{width:43.194667pt;}
._2d{width:51.552000pt;}
._2a{width:56.409920pt;}
._1f{width:57.792000pt;}
._2b{width:59.246640pt;}
._1a{width:68.064000pt;}
._24{width:69.482539pt;}
._27{width:70.538539pt;}
._30{width:83.306539pt;}
._28{width:93.984000pt;}
._1b{width:95.114539pt;}
._2f{width:105.290539pt;}
._1d{width:116.042539pt;}
._1e{width:119.306539pt;}
.fs8{font-size:46.410667pt;}
.fsc{font-size:53.365333pt;}
.fs4{font-size:63.952000pt;}
.fsb{font-size:68.336000pt;}
.fsa{font-size:74.080000pt;}
.fs6{font-size:79.973333pt;}
.fs7{font-size:85.264000pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:106.736000pt;}
.fs2{font-size:117.317333pt;}
.fs9{font-size:120.005333pt;}
.fs1{font-size:149.365333pt;}
.fs0{font-size:224.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y3a{bottom:7.089333pt;}
.y1f{bottom:76.648000pt;}
.y70{bottom:78.310667pt;}
.y1d{bottom:93.504000pt;}
.y5c{bottom:93.845333pt;}
.y77{bottom:117.353333pt;}
.y1c{bottom:117.504000pt;}
.y5b{bottom:117.845333pt;}
.y13{bottom:134.172000pt;}
.y76{bottom:142.298667pt;}
.y66{bottom:149.820000pt;}
.y12{bottom:158.738667pt;}
.y75{bottom:167.242667pt;}
.y11{bottom:177.938667pt;}
.y65{bottom:178.620000pt;}
.y74{bottom:192.188000pt;}
.y10{bottom:202.506667pt;}
.y64{bottom:207.420000pt;}
.y73{bottom:217.133333pt;}
.yf{bottom:221.706667pt;}
.y63{bottom:236.220000pt;}
.y72{bottom:242.077333pt;}
.ye{bottom:246.273333pt;}
.y7d{bottom:254.853333pt;}
.y81{bottom:255.494667pt;}
.y62{bottom:265.020000pt;}
.y71{bottom:267.022667pt;}
.yd{bottom:270.840000pt;}
.y4f{bottom:275.186667pt;}
.y80{bottom:285.013333pt;}
.y7c{bottom:285.845333pt;}
.y61{bottom:293.820000pt;}
.y14{bottom:301.945333pt;}
.y4e{bottom:303.986667pt;}
.y7f{bottom:320.842667pt;}
.y7b{bottom:321.524000pt;}
.y60{bottom:322.620000pt;}
.y4d{bottom:332.786667pt;}
.y5f{bottom:351.420000pt;}
.y7e{bottom:358.525333pt;}
.y7a{bottom:359.129333pt;}
.y4c{bottom:361.586667pt;}
.y5e{bottom:380.220000pt;}
.y6f{bottom:388.724000pt;}
.y4b{bottom:390.386667pt;}
.y5d{bottom:409.020000pt;}
.y6e{bottom:417.524000pt;}
.y4a{bottom:419.186667pt;}
.y3e{bottom:445.001333pt;}
.y6d{bottom:446.324000pt;}
.y49{bottom:447.986667pt;}
.y48{bottom:476.786667pt;}
.y6c{bottom:486.576000pt;}
.y3d{bottom:487.709333pt;}
.y47{bottom:505.586667pt;}
.y6b{bottom:518.777333pt;}
.y3c{bottom:530.418667pt;}
.y46{bottom:534.386667pt;}
.y6a{bottom:551.508000pt;}
.y45{bottom:563.186667pt;}
.y3b{bottom:571.538667pt;}
.y69{bottom:583.709333pt;}
.y44{bottom:591.986667pt;}
.y68{bottom:616.440000pt;}
.y43{bottom:620.786667pt;}
.y39{bottom:625.246667pt;}
.y42{bottom:649.586667pt;}
.y67{bottom:654.650667pt;}
.y41{bottom:678.386667pt;}
.y38{bottom:682.581333pt;}
.y15{bottom:690.102667pt;}
.y5a{bottom:734.172000pt;}
.y59{bottom:762.972000pt;}
.y8a{bottom:781.302667pt;}
.y1b{bottom:789.164000pt;}
.y97{bottom:790.449333pt;}
.y58{bottom:791.772000pt;}
.y89{bottom:805.302667pt;}
.y96{bottom:819.249333pt;}
.y57{bottom:820.572000pt;}
.y88{bottom:829.302667pt;}
.y1a{bottom:842.380000pt;}
.y95{bottom:848.049333pt;}
.y56{bottom:849.372000pt;}
.y94{bottom:876.849333pt;}
.y55{bottom:878.172000pt;}
.y19{bottom:885.996000pt;}
.y93{bottom:905.649333pt;}
.y3f{bottom:917.781333pt;}
.y18{bottom:929.612000pt;}
.y92{bottom:934.449333pt;}
.y91{bottom:963.249333pt;}
.y17{bottom:971.149333pt;}
.y90{bottom:992.049333pt;}
.y16{bottom:1013.101333pt;}
.y79{bottom:1017.788000pt;}
.y8f{bottom:1020.849333pt;}
.y78{bottom:1041.788000pt;}
.y8e{bottom:1049.649333pt;}
.y8d{bottom:1078.449333pt;}
.y8c{bottom:1107.249333pt;}
.y2f{bottom:1116.433333pt;}
.y8b{bottom:1136.049333pt;}
.y2e{bottom:1145.233333pt;}
.y2d{bottom:1174.033333pt;}
.y31{bottom:1191.570667pt;}
.y2c{bottom:1202.833333pt;}
.y30{bottom:1215.570667pt;}
.y2b{bottom:1231.633333pt;}
.y2a{bottom:1260.433333pt;}
.y87{bottom:1293.089333pt;}
.y84{bottom:1297.926667pt;}
.y29{bottom:1304.389333pt;}
.y28{bottom:1333.189333pt;}
.y27{bottom:1361.989333pt;}
.y26{bottom:1390.789333pt;}
.y25{bottom:1419.589333pt;}
.y86{bottom:1421.253333pt;}
.y83{bottom:1424.086667pt;}
.y24{bottom:1448.389333pt;}
.y23{bottom:1477.189333pt;}
.y22{bottom:1505.989333pt;}
.y21{bottom:1534.789333pt;}
.y20{bottom:1570.280000pt;}
.y82{bottom:1622.588000pt;}
.y85{bottom:1623.117333pt;}
.yc{bottom:1671.910667pt;}
.y37{bottom:1688.352000pt;}
.yb{bottom:1700.710667pt;}
.y54{bottom:1714.544000pt;}
.y36{bottom:1717.152000pt;}
.ya{bottom:1729.510667pt;}
.y53{bottom:1743.344000pt;}
.y35{bottom:1745.952000pt;}
.y9{bottom:1758.310667pt;}
.y52{bottom:1772.144000pt;}
.y34{bottom:1774.752000pt;}
.y8{bottom:1787.110667pt;}
.y51{bottom:1800.944000pt;}
.y33{bottom:1803.552000pt;}
.y7{bottom:1815.910667pt;}
.y50{bottom:1830.802667pt;}
.y32{bottom:1832.352000pt;}
.y6{bottom:1844.710667pt;}
.y1e{bottom:1867.274667pt;}
.y40{bottom:1867.614667pt;}
.y5{bottom:1873.510667pt;}
.y4{bottom:1982.285333pt;}
.y3{bottom:2024.956000pt;}
.y2{bottom:2088.944000pt;}
.hd{height:33.334667pt;}
.hf{height:38.669021pt;}
.h10{height:38.725433pt;}
.h11{height:38.726992pt;}
.h7{height:53.522328pt;}
.h9{height:64.621083pt;}
.ha{height:66.930807pt;}
.hb{height:71.358641pt;}
.hc{height:72.937500pt;}
.h8{height:77.341906pt;}
.he{height:79.984023pt;}
.h6{height:80.343750pt;}
.h5{height:85.009240pt;}
.h4{height:125.005948pt;}
.h3{height:162.347281pt;}
.h1{height:2245.333333pt;}
.h2{height:2245.378667pt;}
.h0{height:2245.417323pt;}
.w3{width:153.864000pt;}
.w2{width:3178.544000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x14{left:1.986667pt;}
.xc{left:91.766667pt;}
.xa{left:105.410667pt;}
.x4{left:109.794667pt;}
.xb{left:123.401333pt;}
.x9{left:326.853333pt;}
.xf{left:365.064000pt;}
.x1{left:518.022667pt;}
.x17{left:778.696000pt;}
.x3{left:1088.125333pt;}
.x19{left:1114.772000pt;}
.x12{left:1120.516000pt;}
.x11{left:1129.928000pt;}
.x1f{left:1137.449333pt;}
.x20{left:1249.588000pt;}
.x21{left:1252.120000pt;}
.x22{left:1253.782667pt;}
.x13{left:1256.162667pt;}
.x23{left:1264.441333pt;}
.x2{left:1338.594667pt;}
.x15{left:1359.382667pt;}
.x16{left:1445.366667pt;}
.x24{left:1569.789333pt;}
.x25{left:1572.094667pt;}
.x27{left:1575.345333pt;}
.x26{left:1613.593333pt;}
.x1a{left:1731.061333pt;}
.x1b{left:2140.270667pt;}
.x10{left:2145.108000pt;}
.x5{left:2146.393333pt;}
.x18{left:2152.894667pt;}
.x1c{left:2158.261333pt;}
.x29{left:2179.010667pt;}
.x28{left:2181.014667pt;}
.x6{left:2182.412000pt;}
.x1d{left:2200.289333pt;}
.x2a{left:2258.192000pt;}
.x8{left:2438.173333pt;}
.xd{left:2473.776000pt;}
.x7{left:2526.841333pt;}
.x1e{left:2625.410667pt;}
.x2c{left:2710.488000pt;}
.x2b{left:2712.150667pt;}
.xe{left:2738.758667pt;}
.x2d{left:2776.516000pt;}
}




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