
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_453154cfc026c02151d4331e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.987000;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_4d5e88c4ecadd1793b45ae89.woff')format("woff");}.ff3{font-family:ff3;line-height:0.908000;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_53242fbe710f4ce27f5222d2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194000;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_d30a4718e658668f1d2012aa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.738000;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_56fb37e06e805887f2668e83.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758000;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_ca1967dd27424ab8e8611f28.woff')format("woff");}.ff7{font-family:ff7;line-height:1.067000;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_ed9790b9cdee058aca5be64b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_46fe9b764d708fcf0f93b8d3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.085000;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_ccbcd1c654fc95972a636e72.woff')format("woff");}.ffa{font-family:ffa;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ede2288cb022885af8dc6eb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9b4ebeabe34d33cefa5948cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7cb44543a90f489e813a7a3e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f5bbbe1802baa4daabe7ee96.woff')format("woff");}.ffe{font-family:ffe;line-height:0.992000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-179.164845px;}
.ws0{word-spacing:-124.671461px;}
.ws3{word-spacing:-47.193974px;}
.ws5{word-spacing:-35.364597px;}
.ws7{word-spacing:-34.071478px;}
.wsb{word-spacing:-31.796821px;}
.ws9{word-spacing:-27.980819px;}
.ws2{word-spacing:-23.188948px;}
.wsc{word-spacing:-17.975542px;}
.wsa{word-spacing:-16.595999px;}
.ws8{word-spacing:-13.826542px;}
.ws6{word-spacing:-12.446999px;}
.ws4{word-spacing:-11.064030px;}
.wsd{word-spacing:0.000000px;}
._12{margin-left:-11.648367px;}
._c{margin-left:-9.842318px;}
._b{margin-left:-6.345977px;}
._a{margin-left:-3.847962px;}
._6{margin-left:-2.616855px;}
._1{margin-left:-1.359245px;}
._4{width:1.114434px;}
._17{width:3.138344px;}
._16{width:4.387064px;}
._d{width:5.868106px;}
._7{width:7.155291px;}
._5{width:8.186450px;}
._0{width:12.306706px;}
._8{width:15.719874px;}
._9{width:16.986049px;}
._14{width:18.466011px;}
._11{width:24.698621px;}
._13{width:25.925464px;}
._15{width:26.950163px;}
._2{width:41.580047px;}
._3{width:42.858277px;}
._10{width:52.149914px;}
._f{width:53.200115px;}
._e{width:54.292553px;}
.fc4{color:transparent;}
.fc2{color:rgb(254,230,224);}
.fc1{color:rgb(58,161,126);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs14{font-size:44.400009px;}
.fsa{font-size:44.603174px;}
.fs8{font-size:48.000131px;}
.fs3{font-size:49.772646px;}
.fse{font-size:53.999998px;}
.fs4{font-size:54.090000px;}
.fsd{font-size:59.984997px;}
.fs5{font-size:71.864998px;}
.fs16{font-size:71.999997px;}
.fs11{font-size:77.984997px;}
.fsf{font-size:83.969997px;}
.fs12{font-size:86.579996px;}
.fs2{font-size:86.849992px;}
.fs15{font-size:107.999996px;}
.fs9{font-size:119.879991px;}
.fs18{font-size:119.969995px;}
.fs7{font-size:121.948253px;}
.fs6{font-size:121.951016px;}
.fs13{font-size:122.579995px;}
.fs17{font-size:125.999995px;}
.fs10{font-size:131.984995px;}
.fsb{font-size:149.985003px;}
.fsc{font-size:173.969993px;}
.fs0{font-size:197.577592px;}
.fs1{font-size:283.937947px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000008px;}
.y25{bottom:2.833132px;}
.y41{bottom:2.924001px;}
.y22{bottom:3.241591px;}
.y1d{bottom:3.281552px;}
.y17{bottom:3.321513px;}
.y9{bottom:5.204613px;}
.y4{bottom:16.450921px;}
.y21{bottom:17.241629px;}
.y1c{bottom:17.281590px;}
.y16{bottom:17.321551px;}
.y8{bottom:19.721635px;}
.y86{bottom:23.034743px;}
.y20{bottom:31.241667px;}
.y1b{bottom:31.281629px;}
.y15{bottom:31.321590px;}
.y85{bottom:43.284742px;}
.y1f{bottom:45.241706px;}
.y1a{bottom:45.281667px;}
.y14{bottom:45.321628px;}
.y19{bottom:59.281705px;}
.y13{bottom:59.321666px;}
.ye{bottom:62.808107px;}
.y10{bottom:63.232972px;}
.y84{bottom:63.534741px;}
.y12{bottom:73.321705px;}
.y2c{bottom:88.809620px;}
.y2b{bottom:106.809620px;}
.y2{bottom:116.714789px;}
.y2a{bottom:124.809619px;}
.y29{bottom:142.809618px;}
.y28{bottom:160.746689px;}
.y83{bottom:201.116584px;}
.y82{bottom:219.116583px;}
.y81{bottom:237.116582px;}
.y80{bottom:265.391701px;}
.y37{bottom:309.266519px;}
.y36{bottom:329.516518px;}
.y35{bottom:349.766517px;}
.y34{bottom:370.016517px;}
.y33{bottom:390.266516px;}
.y32{bottom:410.516515px;}
.y31{bottom:430.766514px;}
.y3d{bottom:459.716633px;}
.y3c{bottom:500.119251px;}
.y3b{bottom:531.619250px;}
.y3a{bottom:563.119249px;}
.y39{bottom:594.619247px;}
.y38{bottom:629.068510px;}
.y7{bottom:728.459977px;}
.y3{bottom:796.859974px;}
.ya{bottom:856.199664px;}
.yc{bottom:874.502532px;}
.y6f{bottom:884.051675px;}
.y6{bottom:891.975887px;}
.yb{bottom:899.252531px;}
.y6e{bottom:908.801674px;}
.y40{bottom:932.219969px;}
.y6d{bottom:933.551673px;}
.y6c{bottom:958.301672px;}
.y24{bottom:958.859968px;}
.y6b{bottom:983.051671px;}
.y11{bottom:989.459966px;}
.y18{bottom:1003.499966px;}
.y6a{bottom:1007.801670px;}
.y1e{bottom:1017.539965px;}
.y69{bottom:1032.551669px;}
.y68{bottom:1057.301668px;}
.y67{bottom:1082.051667px;}
.yf{bottom:1088.819962px;}
.yd{bottom:1089.179962px;}
.y66{bottom:1106.801666px;}
.y65{bottom:1131.551665px;}
.y64{bottom:1156.301664px;}
.y63{bottom:1181.051663px;}
.y62{bottom:1205.801662px;}
.y61{bottom:1230.551661px;}
.y60{bottom:1255.301660px;}
.y23{bottom:1272.281779px;}
.y5f{bottom:1280.051659px;}
.y5e{bottom:1304.801658px;}
.y3f{bottom:1313.469701px;}
.y5d{bottom:1329.551657px;}
.y5c{bottom:1354.301656px;}
.y5b{bottom:1379.051655px;}
.y4d{bottom:1394.130542px;}
.y5a{bottom:1403.801654px;}
.y4c{bottom:1416.630541px;}
.y59{bottom:1428.551652px;}
.y4b{bottom:1439.130540px;}
.y58{bottom:1453.301651px;}
.y4a{bottom:1461.630539px;}
.y57{bottom:1478.051650px;}
.y49{bottom:1484.130538px;}
.y56{bottom:1502.801649px;}
.y48{bottom:1506.630537px;}
.y55{bottom:1527.551648px;}
.y47{bottom:1529.130536px;}
.y46{bottom:1551.630535px;}
.y54{bottom:1552.301647px;}
.y45{bottom:1574.130534px;}
.y53{bottom:1577.051646px;}
.y44{bottom:1596.630533px;}
.y70{bottom:1616.955413px;}
.y43{bottom:1643.955412px;}
.y42{bottom:1670.955410px;}
.y3e{bottom:1746.383651px;}
.y52{bottom:1802.258709px;}
.y51{bottom:1854.008707px;}
.y7c{bottom:1957.432346px;}
.y7b{bottom:1982.182345px;}
.y75{bottom:1993.432345px;}
.y7a{bottom:2006.932344px;}
.y74{bottom:2018.182344px;}
.y79{bottom:2031.682343px;}
.y73{bottom:2042.932343px;}
.y78{bottom:2056.432342px;}
.y72{bottom:2067.682342px;}
.y77{bottom:2081.182341px;}
.y71{bottom:2108.182412px;}
.y76{bottom:2110.109492px;}
.y50{bottom:2174.234457px;}
.y4f{bottom:2198.984456px;}
.y4e{bottom:2223.734455px;}
.y26{bottom:2284.728392px;}
.y7f{bottom:2351.814249px;}
.y30{bottom:2396.589247px;}
.y2f{bottom:2425.839246px;}
.y2e{bottom:2455.089245px;}
.y2d{bottom:2484.339243px;}
.y1{bottom:2557.979901px;}
.y7e{bottom:2567.964223px;}
.y7d{bottom:2611.839221px;}
.y27{bottom:2676.039224px;}
.h15{height:13.319999px;}
.h8{height:32.399999px;}
.h22{height:40.581609px;}
.h16{height:40.767301px;}
.h11{height:43.008118px;}
.h9{height:44.596291px;}
.h1a{height:48.383998px;}
.ha{height:50.520060px;}
.hb{height:52.461449px;}
.h1c{height:53.746557px;}
.h19{height:54.826287px;}
.h13{height:56.519998px;}
.h28{height:56.985747px;}
.h24{height:64.511997px;}
.h26{height:65.807997px;}
.h25{height:68.399997px;}
.h1e{height:69.874557px;}
.h12{height:70.559997px;}
.h20{height:71.515077px;}
.h1b{height:75.237117px;}
.h7{height:77.817593px;}
.h4{height:83.879997px;}
.h10{height:84.599996px;}
.h14{height:85.354553px;}
.hf{height:91.095345px;}
.hd{height:91.097409px;}
.h23{height:98.711996px;}
.h27{height:104.075996px;}
.h1d{height:109.019605px;}
.h29{height:109.652575px;}
.h21{height:112.038115px;}
.h1f{height:120.634285px;}
.h17{height:137.086293px;}
.hc{height:146.879994px;}
.he{height:147.599994px;}
.h18{height:159.008573px;}
.h3{height:163.199091px;}
.h2{height:228.239990px;}
.h5{height:234.532744px;}
.h6{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.wc{width:105.839996px;}
.wb{width:124.199995px;}
.w9{width:125.279995px;}
.wa{width:139.319994px;}
.w8{width:140.399994px;}
.w5{width:146.879994px;}
.w7{width:147.239994px;}
.w6{width:147.599994px;}
.w2{width:151.559994px;}
.w4{width:169.199993px;}
.w1{width:233.999990px;}
.w3{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x6{left:1.039012px;}
.x15{left:12.609013px;}
.x13{left:14.530332px;}
.x11{left:15.562915px;}
.x7{left:19.395916px;}
.x1d{left:23.788871px;}
.x1b{left:24.913871px;}
.x1a{left:26.683246px;}
.x1{left:28.079999px;}
.x38{left:30.411361px;}
.x2{left:37.478862px;}
.xe{left:45.364327px;}
.xc{left:49.626055px;}
.x35{left:53.667887px;}
.x1c{left:58.150632px;}
.x5{left:60.119997px;}
.x22{left:62.313374px;}
.xb{left:64.799997px;}
.x10{left:68.399997px;}
.x25{left:75.496967px;}
.x3{left:78.119997px;}
.x4{left:89.394253px;}
.x28{left:91.683881px;}
.x29{left:102.573976px;}
.x27{left:106.100482px;}
.x20{left:108.359995px;}
.x39{left:128.128154px;}
.x1f{left:135.544453px;}
.x3a{left:143.122294px;}
.x21{left:150.992472px;}
.x18{left:180.223594px;}
.x34{left:188.431807px;}
.x16{left:224.286759px;}
.xd{left:249.479990px;}
.x12{left:254.519989px;}
.x3b{left:255.569560px;}
.x23{left:265.699619px;}
.x3c{left:270.563695px;}
.x26{left:273.251754px;}
.x24{left:283.699657px;}
.x19{left:284.984352px;}
.x2a{left:287.671625px;}
.x9{left:335.274397px;}
.xa{left:341.180646px;}
.x8{left:359.550755px;}
.x3d{left:368.051972px;}
.x3e{left:383.046117px;}
.x36{left:424.486212px;}
.x37{left:437.529181px;}
.xf{left:440.639982px;}
.x14{left:445.679981px;}
.x17{left:464.759981px;}
.x1e{left:524.716676px;}
.x32{left:540.365779px;}
.x33{left:541.706856px;}
.x2e{left:656.488701px;}
.x2d{left:671.658622px;}
.x31{left:673.260582px;}
.x2b{left:675.332450px;}
.x30{left:688.289879px;}
.x2c{left:689.623465px;}
.x2f{left:706.289878px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-159.257640pt;}
.ws0{word-spacing:-110.819076pt;}
.ws3{word-spacing:-41.950199pt;}
.ws5{word-spacing:-31.435198pt;}
.ws7{word-spacing:-30.285759pt;}
.wsb{word-spacing:-28.263841pt;}
.ws9{word-spacing:-24.871839pt;}
.ws2{word-spacing:-20.612398pt;}
.wsc{word-spacing:-15.978259pt;}
.wsa{word-spacing:-14.751999pt;}
.ws8{word-spacing:-12.290259pt;}
.ws6{word-spacing:-11.064000pt;}
.ws4{word-spacing:-9.834694pt;}
.wsd{word-spacing:0.000000pt;}
._12{margin-left:-10.354104pt;}
._c{margin-left:-8.748727pt;}
._b{margin-left:-5.640868pt;}
._a{margin-left:-3.420411pt;}
._6{margin-left:-2.326093pt;}
._1{margin-left:-1.208217pt;}
._4{width:0.990608pt;}
._17{width:2.789639pt;}
._16{width:3.899612pt;}
._d{width:5.216094pt;}
._7{width:6.360259pt;}
._5{width:7.276844pt;}
._0{width:10.939294pt;}
._8{width:13.973222pt;}
._9{width:15.098710pt;}
._14{width:16.414232pt;}
._11{width:21.954330pt;}
._13{width:23.044857pt;}
._15{width:23.955700pt;}
._2{width:36.960042pt;}
._3{width:38.096247pt;}
._10{width:46.355479pt;}
._f{width:47.288991pt;}
._e{width:48.260047pt;}
.fs14{font-size:39.466675pt;}
.fsa{font-size:39.647266pt;}
.fs8{font-size:42.666784pt;}
.fs3{font-size:44.242352pt;}
.fse{font-size:47.999998pt;}
.fs4{font-size:48.080000pt;}
.fsd{font-size:53.319997pt;}
.fs5{font-size:63.879999pt;}
.fs16{font-size:63.999997pt;}
.fs11{font-size:69.319997pt;}
.fsf{font-size:74.639997pt;}
.fs12{font-size:76.959997pt;}
.fs2{font-size:77.199993pt;}
.fs15{font-size:95.999996pt;}
.fs9{font-size:106.559992pt;}
.fs18{font-size:106.639996pt;}
.fs7{font-size:108.398447pt;}
.fs6{font-size:108.400903pt;}
.fs13{font-size:108.959995pt;}
.fs17{font-size:111.999995pt;}
.fs10{font-size:117.319995pt;}
.fsb{font-size:133.320002pt;}
.fsc{font-size:154.639994pt;}
.fs0{font-size:175.624526pt;}
.fs1{font-size:252.389286pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000007pt;}
.y25{bottom:2.518339pt;}
.y41{bottom:2.599112pt;}
.y22{bottom:2.881414pt;}
.y1d{bottom:2.916935pt;}
.y17{bottom:2.952456pt;}
.y9{bottom:4.626323pt;}
.y4{bottom:14.623041pt;}
.y21{bottom:15.325893pt;}
.y1c{bottom:15.361414pt;}
.y16{bottom:15.396934pt;}
.y8{bottom:17.530342pt;}
.y86{bottom:20.475327pt;}
.y20{bottom:27.770371pt;}
.y1b{bottom:27.805892pt;}
.y15{bottom:27.841413pt;}
.y85{bottom:38.475326pt;}
.y1f{bottom:40.214850pt;}
.y1a{bottom:40.250371pt;}
.y14{bottom:40.285892pt;}
.y19{bottom:52.694849pt;}
.y13{bottom:52.730370pt;}
.ye{bottom:55.829429pt;}
.y10{bottom:56.207087pt;}
.y84{bottom:56.475326pt;}
.y12{bottom:65.174849pt;}
.y2c{bottom:78.941885pt;}
.y2b{bottom:94.941884pt;}
.y2{bottom:103.746479pt;}
.y2a{bottom:110.941883pt;}
.y29{bottom:126.941883pt;}
.y28{bottom:142.885946pt;}
.y83{bottom:178.770297pt;}
.y82{bottom:194.770296pt;}
.y81{bottom:210.770295pt;}
.y80{bottom:235.903734pt;}
.y37{bottom:274.903573pt;}
.y36{bottom:292.903572pt;}
.y35{bottom:310.903571pt;}
.y34{bottom:328.903570pt;}
.y33{bottom:346.903570pt;}
.y32{bottom:364.903569pt;}
.y31{bottom:382.903568pt;}
.y3d{bottom:408.637007pt;}
.y3c{bottom:444.550445pt;}
.y3b{bottom:472.550444pt;}
.y3a{bottom:500.550443pt;}
.y39{bottom:528.550442pt;}
.y38{bottom:559.172009pt;}
.y7{bottom:647.519980pt;}
.y3{bottom:708.319977pt;}
.ya{bottom:761.066368pt;}
.yc{bottom:777.335584pt;}
.y6f{bottom:785.823711pt;}
.y6{bottom:792.867455pt;}
.yb{bottom:799.335583pt;}
.y6e{bottom:807.823710pt;}
.y40{bottom:828.639972pt;}
.y6d{bottom:829.823709pt;}
.y6c{bottom:851.823709pt;}
.y24{bottom:852.319971pt;}
.y6b{bottom:873.823708pt;}
.y11{bottom:879.519970pt;}
.y18{bottom:891.999970pt;}
.y6a{bottom:895.823707pt;}
.y1e{bottom:904.479969pt;}
.y69{bottom:917.823706pt;}
.y68{bottom:939.823705pt;}
.y67{bottom:961.823704pt;}
.yf{bottom:967.839967pt;}
.yd{bottom:968.159966pt;}
.y66{bottom:983.823703pt;}
.y65{bottom:1005.823702pt;}
.y64{bottom:1027.823701pt;}
.y63{bottom:1049.823700pt;}
.y62{bottom:1071.823699pt;}
.y61{bottom:1093.823698pt;}
.y60{bottom:1115.823698pt;}
.y23{bottom:1130.917137pt;}
.y5f{bottom:1137.823697pt;}
.y5e{bottom:1159.823696pt;}
.y3f{bottom:1167.528623pt;}
.y5d{bottom:1181.823695pt;}
.y5c{bottom:1203.823694pt;}
.y5b{bottom:1225.823693pt;}
.y4d{bottom:1239.227148pt;}
.y5a{bottom:1247.823692pt;}
.y4c{bottom:1259.227148pt;}
.y59{bottom:1269.823691pt;}
.y4b{bottom:1279.227147pt;}
.y58{bottom:1291.823690pt;}
.y4a{bottom:1299.227146pt;}
.y57{bottom:1313.823689pt;}
.y49{bottom:1319.227145pt;}
.y56{bottom:1335.823688pt;}
.y48{bottom:1339.227144pt;}
.y55{bottom:1357.823687pt;}
.y47{bottom:1359.227143pt;}
.y46{bottom:1379.227143pt;}
.y54{bottom:1379.823687pt;}
.y45{bottom:1399.227142pt;}
.y53{bottom:1401.823686pt;}
.y44{bottom:1419.227141pt;}
.y70{bottom:1437.293700pt;}
.y43{bottom:1461.293699pt;}
.y42{bottom:1485.293698pt;}
.y3e{bottom:1552.341023pt;}
.y52{bottom:1602.007741pt;}
.y51{bottom:1648.007739pt;}
.y7c{bottom:1739.939864pt;}
.y7b{bottom:1761.939863pt;}
.y75{bottom:1771.939862pt;}
.y7a{bottom:1783.939862pt;}
.y74{bottom:1793.939861pt;}
.y79{bottom:1805.939861pt;}
.y73{bottom:1815.939860pt;}
.y78{bottom:1827.939860pt;}
.y72{bottom:1837.939859pt;}
.y77{bottom:1849.939859pt;}
.y71{bottom:1873.939922pt;}
.y76{bottom:1875.652882pt;}
.y50{bottom:1932.652851pt;}
.y4f{bottom:1954.652850pt;}
.y4e{bottom:1976.652849pt;}
.y26{bottom:2030.869682pt;}
.y7f{bottom:2090.501554pt;}
.y30{bottom:2130.301553pt;}
.y2f{bottom:2156.301552pt;}
.y2e{bottom:2182.301551pt;}
.y2d{bottom:2208.301550pt;}
.y1{bottom:2273.759912pt;}
.y7e{bottom:2282.634865pt;}
.y7d{bottom:2321.634863pt;}
.y27{bottom:2378.701533pt;}
.h15{height:11.840000pt;}
.h8{height:28.799999pt;}
.h22{height:36.072541pt;}
.h16{height:36.237601pt;}
.h11{height:38.229438pt;}
.h9{height:39.641148pt;}
.h1a{height:43.007998pt;}
.ha{height:44.906720pt;}
.hb{height:46.632399pt;}
.h1c{height:47.774718pt;}
.h19{height:48.734478pt;}
.h13{height:50.239998pt;}
.h28{height:50.653998pt;}
.h24{height:57.343998pt;}
.h26{height:58.495998pt;}
.h25{height:60.799997pt;}
.h1e{height:62.110717pt;}
.h12{height:62.719997pt;}
.h20{height:63.568957pt;}
.h1b{height:66.877437pt;}
.h7{height:69.171194pt;}
.h4{height:74.559997pt;}
.h10{height:75.199997pt;}
.h14{height:75.870714pt;}
.hf{height:80.973640pt;}
.hd{height:80.975474pt;}
.h23{height:87.743996pt;}
.h27{height:92.511996pt;}
.h1d{height:96.906316pt;}
.h29{height:97.468956pt;}
.h21{height:99.589436pt;}
.h1f{height:107.230476pt;}
.h17{height:121.854482pt;}
.hc{height:130.559995pt;}
.he{height:131.199995pt;}
.h18{height:141.340954pt;}
.h3{height:145.065859pt;}
.h2{height:202.879992pt;}
.h5{height:208.473551pt;}
.h6{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.wc{width:94.079996pt;}
.wb{width:110.399995pt;}
.w9{width:111.359995pt;}
.wa{width:123.839995pt;}
.w8{width:124.799995pt;}
.w5{width:130.559995pt;}
.w7{width:130.879995pt;}
.w6{width:131.199995pt;}
.w2{width:134.719994pt;}
.w4{width:150.399994pt;}
.w1{width:207.999991pt;}
.w3{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x6{left:0.923566pt;}
.x15{left:11.208012pt;}
.x13{left:12.915850pt;}
.x11{left:13.833702pt;}
.x7{left:17.240814pt;}
.x1d{left:21.145663pt;}
.x1b{left:22.145663pt;}
.x1a{left:23.718441pt;}
.x1{left:24.959999pt;}
.x38{left:27.032321pt;}
.x2{left:33.314544pt;}
.xe{left:40.323846pt;}
.xc{left:44.112049pt;}
.x35{left:47.704788pt;}
.x1c{left:51.689451pt;}
.x5{left:53.439998pt;}
.x22{left:55.389666pt;}
.xb{left:57.599998pt;}
.x10{left:60.799997pt;}
.x25{left:67.108415pt;}
.x3{left:69.439997pt;}
.x4{left:79.461558pt;}
.x28{left:81.496783pt;}
.x29{left:91.176868pt;}
.x27{left:94.311539pt;}
.x20{left:96.319996pt;}
.x39{left:113.891692pt;}
.x1f{left:120.483959pt;}
.x3a{left:127.219817pt;}
.x21{left:134.215531pt;}
.x18{left:160.198751pt;}
.x34{left:167.494939pt;}
.x16{left:199.366008pt;}
.xd{left:221.759991pt;}
.x12{left:226.239991pt;}
.x3b{left:227.172942pt;}
.x23{left:236.177439pt;}
.x3c{left:240.501062pt;}
.x26{left:242.890448pt;}
.x24{left:252.177473pt;}
.x19{left:253.319424pt;}
.x2a{left:255.708111pt;}
.x9{left:298.021686pt;}
.xa{left:303.271686pt;}
.x8{left:319.600671pt;}
.x3d{left:327.157308pt;}
.x3e{left:340.485438pt;}
.x36{left:377.321078pt;}
.x37{left:388.914827pt;}
.xf{left:391.679984pt;}
.x14{left:396.159983pt;}
.x17{left:413.119983pt;}
.x1e{left:466.414823pt;}
.x32{left:480.325137pt;}
.x33{left:481.517206pt;}
.x2e{left:583.545512pt;}
.x2d{left:597.029886pt;}
.x31{left:598.453851pt;}
.x2b{left:600.295511pt;}
.x30{left:611.813226pt;}
.x2c{left:612.998635pt;}
.x2f{left:627.813225pt;}
}




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