
    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_e308f028c0894269def4ecc6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_4523040d73b89275ebfab8c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861328;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_71bb9cf7477105b79ab798f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_d8087c128b3b31dbbb5a7494.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861328;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_c51cccda6755112cca6fced1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_5735cc45224ff391c491762f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_ec01ae0dd0078850dd4276c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.674805;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_baec303cfdd7d31b7651b575.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cd3291ef0aec66c7582a141d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000002px;}
.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:-14.920899px;}
.ws4{word-spacing:-13.564453px;}
.ws2{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-7.511446px;}
._1f{margin-left:-5.985352px;}
._8{margin-left:-4.859950px;}
._d{margin-left:-2.859402px;}
._0{margin-left:-1.808487px;}
._5{width:1.362767px;}
._6{width:3.612894px;}
._7{width:5.130636px;}
._f{width:6.618563px;}
._b{width:8.075064px;}
._a{width:9.213605px;}
._e{width:12.063700px;}
._9{width:13.314164px;}
._2{width:17.705266px;}
._12{width:18.720668px;}
._1{width:22.199126px;}
._1c{width:23.309711px;}
._17{width:26.959182px;}
._15{width:53.605425px;}
._13{width:57.502683px;}
._14{width:58.863382px;}
._1b{width:67.066546px;}
._1a{width:68.404751px;}
._19{width:71.111813px;}
._18{width:72.731625px;}
._1d{width:151.497070px;}
._1e{width:155.997070px;}
._3{width:669.627801px;}
._10{width:754.993036px;}
._11{width:849.406411px;}
._16{width:878.272426px;}
._4{width:937.406899px;}
.fc4{color:rgb(19,115,51);}
.fc5{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(46,117,181);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs7{font-size:57.000002px;}
.fs4{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:78.000003px;}
.fs2{font-size:83.999997px;}
.fs8{font-size:96.000003px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yc1{bottom:4.124267px;}
.yc4{bottom:4.125727px;}
.yc7{bottom:4.126453px;}
.ybf{bottom:4.126468px;}
.y4e{bottom:17.017090px;}
.y2a{bottom:19.762940px;}
.y13{bottom:19.763306px;}
.yc3{bottom:24.266602px;}
.ybe{bottom:24.267328px;}
.y6c{bottom:37.157959px;}
.y36{bottom:37.158326px;}
.y2{bottom:37.158392px;}
.y29{bottom:39.342408px;}
.y12{bottom:39.342500px;}
.ybd{bottom:44.408203px;}
.y27{bottom:56.099853px;}
.y6b{bottom:56.100588px;}
.y4c{bottom:56.849858px;}
.y10{bottom:70.444613px;}
.y6a{bottom:73.329338px;}
.y26{bottom:73.329713px;}
.yd7{bottom:73.330073px;}
.y69{bottom:99.080566px;}
.ycd{bottom:103.809815px;}
.yf{bottom:112.919318px;}
.y68{bottom:120.815916px;}
.y83{bottom:123.666499px;}
.ycc{bottom:125.545898px;}
.y67{bottom:142.552733px;}
.y82{bottom:145.403311px;}
.ye{bottom:145.875555px;}
.ycb{bottom:159.281978px;}
.y81{bottom:167.138662px;}
.y66{bottom:176.288824px;}
.yd{bottom:177.427650px;}
.y80{bottom:188.874743px;}
.yca{bottom:193.018793px;}
.y65{bottom:198.024905px;}
.y7f{bottom:210.610833px;}
.yc9{bottom:217.353512px;}
.y64{bottom:219.760625px;}
.y4b{bottom:223.810546px;}
.y7e{bottom:232.346916px;}
.y63{bottom:241.497076px;}
.y95{bottom:248.044928px;}
.y7d{bottom:254.083733px;}
.yc6{bottom:259.775396px;}
.y62{bottom:263.233166px;}
.y94{bottom:269.781743px;}
.y4a{bottom:271.346929px;}
.yc8{bottom:279.916997px;}
.y61{bottom:284.969242px;}
.y7c{bottom:287.299799px;}
.y93{bottom:291.517823px;}
.yc5{bottom:300.059331px;}
.y49{bottom:306.019048px;}
.y60{bottom:306.705328px;}
.y7b{bottom:307.059809px;}
.yc{bottom:310.332100px;}
.ybc{bottom:321.325196px;}
.y92{bottom:323.293950px;}
.y7a{bottom:326.819818px;}
.y5f{bottom:328.441764px;}
.y48{bottom:338.299065px;}
.yc2{bottom:341.466797px;}
.yb{bottom:349.996215px;}
.y5e{bottom:350.177483px;}
.y79{bottom:359.099853px;}
.yc0{bottom:361.609131px;}
.y91{bottom:365.941413px;}
.y5d{bottom:383.913938px;}
.y90{bottom:387.678230px;}
.ybb{bottom:398.635260px;}
.y8f{bottom:409.414313px;}
.y5c{bottom:417.129647px;}
.y78{bottom:419.829341px;}
.y5b{bottom:436.890389px;}
.y77{bottom:441.565426px;}
.yba{bottom:441.804199px;}
.y8e{bottom:443.150390px;}
.yb9{bottom:462.515834px;}
.y76{bottom:463.301510px;}
.y8d{bottom:464.886472px;}
.y5a{bottom:469.170405px;}
.yb8{bottom:478.716269px;}
.y75{bottom:485.037593px;}
.y8c{bottom:486.622553px;}
.yb7{bottom:494.915969px;}
.y8b{bottom:508.357909px;}
.yb6{bottom:511.115684px;}
.y74{bottom:518.254390px;}
.yb5{bottom:527.316854px;}
.y8a{bottom:530.094726px;}
.y73{bottom:538.013668px;}
.yb4{bottom:543.515834px;}
.y89{bottom:551.831543px;}
.yb3{bottom:559.716269px;}
.y72{bottom:570.294433px;}
.yb2{bottom:575.915969px;}
.y88{bottom:585.047610px;}
.yb1{bottom:592.115684px;}
.y87{bottom:604.807619px;}
.yb0{bottom:608.316854px;}
.yaf{bottom:624.515834px;}
.y86{bottom:624.567629px;}
.y25{bottom:636.518194px;}
.yae{bottom:640.716269px;}
.y85{bottom:644.327639px;}
.yad{bottom:656.915969px;}
.y24{bottom:672.230344px;}
.yac{bottom:673.115684px;}
.y84{bottom:677.127686px;}
.yab{bottom:689.316854px;}
.yaa{bottom:705.515834px;}
.y23{bottom:707.422473px;}
.ya9{bottom:721.716269px;}
.y22{bottom:729.158746px;}
.ya8{bottom:737.915969px;}
.y47{bottom:738.820313px;}
.ya{bottom:739.485724px;}
.y21{bottom:750.895012px;}
.ya7{bottom:754.115684px;}
.y46{bottom:761.983511px;}
.ya6{bottom:770.316854px;}
.y20{bottom:772.630913px;}
.y9{bottom:778.317623px;}
.y45{bottom:785.145979px;}
.ya5{bottom:786.515834px;}
.ya4{bottom:802.716269px;}
.y1f{bottom:806.367188px;}
.y44{bottom:808.308840px;}
.y8{bottom:813.885861px;}
.ya3{bottom:818.915969px;}
.y43{bottom:831.472050px;}
.ya2{bottom:835.115684px;}
.y1e{bottom:840.103268px;}
.ya1{bottom:851.316854px;}
.y42{bottom:854.634529px;}
.y7{bottom:862.494057px;}
.y35{bottom:864.247194px;}
.ya0{bottom:867.515834px;}
.y59{bottom:870.514898px;}
.y1d{bottom:873.839543px;}
.y41{bottom:877.797367px;}
.y9f{bottom:883.716269px;}
.y34{bottom:888.888789px;}
.y58{bottom:892.250978px;}
.yd6{bottom:899.347412px;}
.y9e{bottom:899.915969px;}
.y40{bottom:900.960577px;}
.y1c{bottom:905.981138px;}
.y6{bottom:909.854644px;}
.y33{bottom:913.530399px;}
.y57{bottom:913.987063px;}
.y9d{bottom:916.115684px;}
.yd5{bottom:921.082763px;}
.y3f{bottom:924.123052px;}
.y1b{bottom:926.122553px;}
.y9c{bottom:932.316854px;}
.y56{bottom:935.723144px;}
.y32{bottom:938.171994px;}
.yd4{bottom:942.818845px;}
.y5{bottom:946.606705px;}
.y3e{bottom:947.285888px;}
.y9b{bottom:948.515834px;}
.y55{bottom:957.459594px;}
.y1a{bottom:958.264163px;}
.y31{bottom:962.813604px;}
.yd3{bottom:964.555664px;}
.y3d{bottom:970.449092px;}
.y54{bottom:979.195311px;}
.y9a{bottom:979.196048px;}
.y4{bottom:986.270905px;}
.yd2{bottom:986.291016px;}
.y30{bottom:987.455199px;}
.y19{bottom:990.405758px;}
.y3c{bottom:993.611569px;}
.y53{bottom:1000.932128px;}
.yd1{bottom:1008.027833px;}
.y2f{bottom:1012.096803px;}
.y99{bottom:1012.932127px;}
.y3{bottom:1014.975013px;}
.y3b{bottom:1016.774413px;}
.y18{bottom:1022.547364px;}
.y52{bottom:1022.667847px;}
.yd0{bottom:1029.763916px;}
.y98{bottom:1034.668211px;}
.y2e{bottom:1036.738404px;}
.y3a{bottom:1039.937622px;}
.y71{bottom:1053.763180px;}
.y17{bottom:1054.688964px;}
.y97{bottom:1056.403564px;}
.y51{bottom:1056.404297px;}
.y2d{bottom:1061.380004px;}
.y39{bottom:1063.100096px;}
.ycf{bottom:1063.500000px;}
.y16{bottom:1074.830657px;}
.y70{bottom:1075.499999px;}
.yce{bottom:1085.236084px;}
.y38{bottom:1086.262939px;}
.y96{bottom:1088.179689px;}
.y50{bottom:1088.180421px;}
.y6f{bottom:1097.236084px;}
.y2c{bottom:1097.716186px;}
.y15{bottom:1106.972260px;}
.y6e{bottom:1118.972168px;}
.y37{bottom:1122.928345px;}
.y4f{bottom:1133.427977px;}
.y2b{bottom:1139.252563px;}
.y6d{bottom:1140.708251px;}
.y14{bottom:1140.708434px;}
.y4d{bottom:1156.724853px;}
.y1{bottom:1156.725003px;}
.y11{bottom:1156.725036px;}
.y28{bottom:1156.725219px;}
.h1a{height:20.140869px;}
.he{height:38.759766px;}
.h18{height:39.313477px;}
.h1b{height:40.283203px;}
.h8{height:40.913087px;}
.h12{height:43.066405px;}
.ha{height:45.117189px;}
.h2{height:47.373048px;}
.h16{height:47.373103px;}
.h11{height:48.049806px;}
.h3{height:49.218750px;}
.h5{height:51.679688px;}
.h15{height:53.320315px;}
.h4{height:57.421873px;}
.h19{height:60.424804px;}
.h10{height:65.625002px;}
.h7{height:73.828125px;}
.h6{height:82.031248px;}
.h13{height:84.675300px;}
.h9{height:86.132810px;}
.hb{height:86.461215px;}
.h17{height:89.345940px;}
.hd{height:89.346315px;}
.h1c{height:89.346675px;}
.hf{height:106.274781px;}
.hc{height:106.274964px;}
.h1{height:106.274997px;}
.h14{height:106.275147px;}
.h0{height:1263.000000px;}
.w3{width:108.000023px;}
.w2{width:150.750012px;}
.w4{width:203.625000px;}
.w5{width:206.999953px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xe{left:6.750000px;}
.x12{left:9.003768px;}
.x13{left:40.812656px;}
.xd{left:104.024997px;}
.x1{left:106.274997px;}
.x9{left:133.274997px;}
.xf{left:255.899985px;}
.x6{left:280.649997px;}
.x10{left:365.025015px;}
.x5{left:384.689378px;}
.x11{left:569.775015px;}
.x2{left:579.899997px;}
.x3{left:608.456693px;}
.xc{left:631.519193px;}
.xa{left:657.956693px;}
.xb{left:726.581693px;}
.x14{left:769.924681px;}
.x8{left:778.281496px;}
.x7{left:786.638390px;}
.x4{left:791.399997px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.ws3{word-spacing:-13.263021pt;}
.ws4{word-spacing:-12.057291pt;}
.ws2{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-6.676841pt;}
._1f{margin-left:-5.320312pt;}
._8{margin-left:-4.319955pt;}
._d{margin-left:-2.541690pt;}
._0{margin-left:-1.607544pt;}
._5{width:1.211348pt;}
._6{width:3.211461pt;}
._7{width:4.560566pt;}
._f{width:5.883167pt;}
._b{width:7.177835pt;}
._a{width:8.189871pt;}
._e{width:10.723289pt;}
._9{width:11.834813pt;}
._2{width:15.738014pt;}
._12{width:16.640593pt;}
._1{width:19.732556pt;}
._1c{width:20.719744pt;}
._17{width:23.963717pt;}
._15{width:47.649267pt;}
._13{width:51.113496pt;}
._14{width:52.323006pt;}
._1b{width:59.614707pt;}
._1a{width:60.804223pt;}
._19{width:63.210501pt;}
._18{width:64.650334pt;}
._1d{width:134.664063pt;}
._1e{width:138.664063pt;}
._3{width:595.224712pt;}
._10{width:671.104921pt;}
._11{width:755.027921pt;}
._16{width:780.686601pt;}
._4{width:833.250577pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:50.666668pt;}
.fs4{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:69.333336pt;}
.fs2{font-size:74.666664pt;}
.fs8{font-size:85.333336pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:3.666015pt;}
.yc4{bottom:3.667313pt;}
.yc7{bottom:3.667958pt;}
.ybf{bottom:3.667971pt;}
.y4e{bottom:15.126302pt;}
.y2a{bottom:17.567058pt;}
.y13{bottom:17.567383pt;}
.yc3{bottom:21.570312pt;}
.ybe{bottom:21.570958pt;}
.y6c{bottom:33.029296pt;}
.y36{bottom:33.029623pt;}
.y2{bottom:33.029682pt;}
.y29{bottom:34.971029pt;}
.y12{bottom:34.971111pt;}
.ybd{bottom:39.473958pt;}
.y27{bottom:49.866536pt;}
.y6b{bottom:49.867189pt;}
.y4c{bottom:50.533207pt;}
.y10{bottom:62.617434pt;}
.y6a{bottom:65.181634pt;}
.y26{bottom:65.181967pt;}
.yd7{bottom:65.182287pt;}
.y69{bottom:88.071615pt;}
.ycd{bottom:92.275391pt;}
.yf{bottom:100.372727pt;}
.y68{bottom:107.391926pt;}
.y83{bottom:109.925777pt;}
.ycc{bottom:111.596354pt;}
.y67{bottom:126.713541pt;}
.y82{bottom:129.247387pt;}
.ye{bottom:129.667160pt;}
.ycb{bottom:141.583981pt;}
.y81{bottom:148.567699pt;}
.y66{bottom:156.701177pt;}
.yd{bottom:157.713467pt;}
.y80{bottom:167.888660pt;}
.yca{bottom:171.572260pt;}
.y65{bottom:176.022138pt;}
.y7f{bottom:187.209629pt;}
.yc9{bottom:193.203121pt;}
.y64{bottom:195.342778pt;}
.y4b{bottom:198.942707pt;}
.y7e{bottom:206.530592pt;}
.y63{bottom:214.664067pt;}
.y95{bottom:220.484380pt;}
.y7d{bottom:225.852207pt;}
.yc6{bottom:230.911463pt;}
.y62{bottom:233.985036pt;}
.y94{bottom:239.805994pt;}
.y4a{bottom:241.197270pt;}
.yc8{bottom:248.815108pt;}
.y61{bottom:253.305993pt;}
.y7c{bottom:255.377599pt;}
.y93{bottom:259.126954pt;}
.yc5{bottom:266.719405pt;}
.y49{bottom:272.016932pt;}
.y60{bottom:272.626958pt;}
.y7b{bottom:272.942052pt;}
.yc{bottom:275.850756pt;}
.ybc{bottom:285.622396pt;}
.y92{bottom:287.372400pt;}
.y7a{bottom:290.506505pt;}
.y5f{bottom:291.948235pt;}
.y48{bottom:300.710280pt;}
.yc2{bottom:303.526041pt;}
.yb{bottom:311.107747pt;}
.y5e{bottom:311.268874pt;}
.y79{bottom:319.199869pt;}
.yc0{bottom:321.430339pt;}
.y91{bottom:325.281256pt;}
.y5d{bottom:341.256834pt;}
.y90{bottom:344.602871pt;}
.ybb{bottom:354.342453pt;}
.y8f{bottom:363.923834pt;}
.y5c{bottom:370.781908pt;}
.y78{bottom:373.181636pt;}
.y5b{bottom:388.347012pt;}
.y77{bottom:392.502601pt;}
.yba{bottom:392.714843pt;}
.y8e{bottom:393.911458pt;}
.yb9{bottom:411.125186pt;}
.y76{bottom:411.823564pt;}
.y8d{bottom:413.232419pt;}
.y5a{bottom:417.040360pt;}
.yb8{bottom:425.525573pt;}
.y75{bottom:431.144527pt;}
.y8c{bottom:432.553380pt;}
.yb7{bottom:439.925306pt;}
.y8b{bottom:451.873697pt;}
.yb6{bottom:454.325053pt;}
.y74{bottom:460.670569pt;}
.yb5{bottom:468.726093pt;}
.y8a{bottom:471.195312pt;}
.y73{bottom:478.234372pt;}
.yb4{bottom:483.125186pt;}
.y89{bottom:490.516927pt;}
.yb3{bottom:497.525573pt;}
.y72{bottom:506.928385pt;}
.yb2{bottom:511.925306pt;}
.y88{bottom:520.042320pt;}
.yb1{bottom:526.325053pt;}
.y87{bottom:537.606773pt;}
.yb0{bottom:540.726093pt;}
.yaf{bottom:555.125186pt;}
.y86{bottom:555.171226pt;}
.y25{bottom:565.793950pt;}
.yae{bottom:569.525573pt;}
.y85{bottom:572.735679pt;}
.yad{bottom:583.925306pt;}
.y24{bottom:597.538083pt;}
.yac{bottom:598.325053pt;}
.y84{bottom:601.891276pt;}
.yab{bottom:612.726093pt;}
.yaa{bottom:627.125186pt;}
.y23{bottom:628.819976pt;}
.ya9{bottom:641.525573pt;}
.y22{bottom:648.141108pt;}
.ya8{bottom:655.925306pt;}
.y47{bottom:656.729167pt;}
.ya{bottom:657.320643pt;}
.y21{bottom:667.462233pt;}
.ya7{bottom:670.325053pt;}
.y46{bottom:677.318676pt;}
.ya6{bottom:684.726093pt;}
.y20{bottom:686.783034pt;}
.y9{bottom:691.837887pt;}
.y45{bottom:697.907536pt;}
.ya5{bottom:699.125186pt;}
.ya4{bottom:713.525573pt;}
.y1f{bottom:716.770834pt;}
.y44{bottom:718.496746pt;}
.y8{bottom:723.454098pt;}
.ya3{bottom:727.925306pt;}
.y43{bottom:739.086266pt;}
.ya2{bottom:742.325053pt;}
.y1e{bottom:746.758460pt;}
.ya1{bottom:756.726093pt;}
.y42{bottom:759.675136pt;}
.y7{bottom:766.661384pt;}
.y35{bottom:768.219728pt;}
.ya0{bottom:771.125186pt;}
.y59{bottom:773.791020pt;}
.y1d{bottom:776.746260pt;}
.y41{bottom:780.264326pt;}
.y9f{bottom:785.525573pt;}
.y34{bottom:790.123368pt;}
.y58{bottom:793.111980pt;}
.yd6{bottom:799.419922pt;}
.y9e{bottom:799.925306pt;}
.y40{bottom:800.853846pt;}
.y1c{bottom:805.316567pt;}
.y6{bottom:808.759683pt;}
.y33{bottom:812.027022pt;}
.y57{bottom:812.432945pt;}
.y9d{bottom:814.325053pt;}
.yd5{bottom:818.740234pt;}
.y3f{bottom:821.442712pt;}
.y1b{bottom:823.220047pt;}
.y9c{bottom:828.726093pt;}
.y56{bottom:831.753906pt;}
.y32{bottom:833.930662pt;}
.yd4{bottom:838.061195pt;}
.y5{bottom:841.428182pt;}
.y3e{bottom:842.031900pt;}
.y9b{bottom:843.125186pt;}
.y55{bottom:851.075195pt;}
.y1a{bottom:851.790367pt;}
.y31{bottom:855.834315pt;}
.yd3{bottom:857.382812pt;}
.y3d{bottom:862.621415pt;}
.y54{bottom:870.395832pt;}
.y9a{bottom:870.396487pt;}
.y4{bottom:876.685249pt;}
.yd2{bottom:876.703125pt;}
.y30{bottom:877.737955pt;}
.y19{bottom:880.360674pt;}
.y3c{bottom:883.210283pt;}
.y53{bottom:889.717447pt;}
.yd1{bottom:896.024740pt;}
.y2f{bottom:899.641603pt;}
.y99{bottom:900.384113pt;}
.y3{bottom:902.200012pt;}
.y3b{bottom:903.799478pt;}
.y18{bottom:908.930990pt;}
.y52{bottom:909.038086pt;}
.yd0{bottom:915.345703pt;}
.y98{bottom:919.705077pt;}
.y2e{bottom:921.545248pt;}
.y3a{bottom:924.388997pt;}
.y71{bottom:936.678382pt;}
.y17{bottom:937.501301pt;}
.y97{bottom:939.025390pt;}
.y51{bottom:939.026042pt;}
.y2d{bottom:943.448893pt;}
.y39{bottom:944.977864pt;}
.ycf{bottom:945.333333pt;}
.y16{bottom:955.405029pt;}
.y70{bottom:955.999999pt;}
.yce{bottom:964.654297pt;}
.y38{bottom:965.567057pt;}
.y96{bottom:967.270835pt;}
.y50{bottom:967.271485pt;}
.y6f{bottom:975.320964pt;}
.y2c{bottom:975.747721pt;}
.y15{bottom:983.975342pt;}
.y6e{bottom:994.641927pt;}
.y37{bottom:998.158529pt;}
.y4f{bottom:1007.491535pt;}
.y2b{bottom:1012.668945pt;}
.y6d{bottom:1013.962890pt;}
.y14{bottom:1013.963053pt;}
.y4d{bottom:1028.199869pt;}
.y1{bottom:1028.200003pt;}
.y11{bottom:1028.200032pt;}
.y28{bottom:1028.200195pt;}
.h1a{height:17.902995pt;}
.he{height:34.453125pt;}
.h18{height:34.945313pt;}
.h1b{height:35.807292pt;}
.h8{height:36.367188pt;}
.h12{height:38.281249pt;}
.ha{height:40.104168pt;}
.h2{height:42.109376pt;}
.h16{height:42.109425pt;}
.h11{height:42.710938pt;}
.h3{height:43.750000pt;}
.h5{height:45.937500pt;}
.h15{height:47.395835pt;}
.h4{height:51.041665pt;}
.h19{height:53.710937pt;}
.h10{height:58.333335pt;}
.h7{height:65.625000pt;}
.h6{height:72.916665pt;}
.h13{height:75.266933pt;}
.h9{height:76.562498pt;}
.hb{height:76.854413pt;}
.h17{height:79.418613pt;}
.hd{height:79.418947pt;}
.h1c{height:79.419267pt;}
.hf{height:94.466472pt;}
.hc{height:94.466635pt;}
.h1{height:94.466664pt;}
.h14{height:94.466797pt;}
.h0{height:1122.666667pt;}
.w3{width:96.000020pt;}
.w2{width:134.000011pt;}
.w4{width:181.000000pt;}
.w5{width:183.999959pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xe{left:6.000000pt;}
.x12{left:8.003349pt;}
.x13{left:36.277916pt;}
.xd{left:92.466664pt;}
.x1{left:94.466664pt;}
.x9{left:118.466664pt;}
.xf{left:227.466653pt;}
.x6{left:249.466664pt;}
.x10{left:324.466680pt;}
.x5{left:341.946114pt;}
.x11{left:506.466680pt;}
.x2{left:515.466664pt;}
.x3{left:540.850394pt;}
.xc{left:561.350394pt;}
.xa{left:584.850394pt;}
.xb{left:645.850394pt;}
.x14{left:684.377494pt;}
.x8{left:691.805774pt;}
.x7{left:699.234124pt;}
.x4{left:703.466664pt;}
}




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