
    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_29adf3799a4faff077ae895e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.746000;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_b3eea892999fbf33ecb5c1fa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.999000;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_529b4e856a5026522a47eb4d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_9f83dd6b2cadb3c0b6d9c8a8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.122250;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_c777c7c8e2a2a98d78816c96.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_529b4e856a5026522a47eb4d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_29adf3799a4faff077ae895e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.746000;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_5388e83869af039335d95029.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_1c996243e809fa94fc26bda1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.059000;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_e6fb8f7823bbce5d5f8cfafb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.059000;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_9a3fe5a18da8046b02e75251.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_29adf3799a4faff077ae895e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.746000;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_529b4e856a5026522a47eb4d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921000;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);}
.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;}
}
.ws0{word-spacing:-50.400990px;}
.ws1{word-spacing:-44.998954px;}
.ws2{word-spacing:-20.474524px;}
.ws4{word-spacing:-19.663409px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-8.103212px;}
._3{margin-left:-6.658103px;}
._4{margin-left:-5.402159px;}
._1{margin-left:-3.247696px;}
._0{margin-left:-1.306210px;}
._7{width:1.104782px;}
._14{width:2.225661px;}
._6{width:3.498379px;}
._11{width:5.290433px;}
._8{width:16.764213px;}
._9{width:17.855213px;}
._2{width:22.742666px;}
._12{width:24.256796px;}
._d{width:26.491076px;}
._15{width:32.379064px;}
._c{width:37.067655px;}
._a{width:38.284370px;}
._e{width:39.382472px;}
._16{width:40.696489px;}
._f{width:42.763267px;}
._10{width:44.048818px;}
._13{width:59.246256px;}
._b{width:1813.301675px;}
.fc3{color:transparent;}
.fc2{color:rgb(111,91,88);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:72.027138px;}
.fs1{font-size:74.998257px;}
.fs4{font-size:78.014394px;}
.fs0{font-size:84.001650px;}
.fs3{font-size:90.033923px;}
.fs2{font-size:114.027963px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.ye{bottom:101.930710px;}
.yd{bottom:102.493342px;}
.y50{bottom:132.191987px;}
.y74{bottom:146.582180px;}
.yf{bottom:150.396992px;}
.y10{bottom:154.336016px;}
.y4f{bottom:158.076740px;}
.y26{bottom:192.975535px;}
.y4e{bottom:201.486432px;}
.y73{bottom:215.533157px;}
.y4a{bottom:216.620950px;}
.y4d{bottom:226.245761px;}
.y25{bottom:231.615091px;}
.y4b{bottom:239.354500px;}
.y49{bottom:242.505703px;}
.y21{bottom:243.094432px;}
.y24{bottom:257.499844px;}
.y4c{bottom:263.834980px;}
.y48{bottom:268.390455px;}
.y1e{bottom:293.701070px;}
.y1f{bottom:296.852234px;}
.y6c{bottom:311.490289px;}
.y45{bottom:311.502544px;}
.y71{bottom:313.741202px;}
.y47{bottom:322.344073px;}
.y44{bottom:337.387297px;}
.y23{bottom:341.877651px;}
.y6f{bottom:352.135152px;}
.y70{bottom:358.302108px;}
.y20{bottom:364.611131px;}
.y22{bottom:367.762403px;}
.y46{bottom:380.528579px;}
.y6d{bottom:400.528402px;}
.y6e{bottom:406.695394px;}
.y1d{bottom:410.903578px;}
.y2f{bottom:430.985048px;}
.y43{bottom:438.638012px;}
.y6b{bottom:446.820884px;}
.y7{bottom:456.201931px;}
.yc{bottom:468.675403px;}
.y41{bottom:476.189613px;}
.y56{bottom:497.448570px;}
.y6{bottom:501.969233px;}
.y40{bottom:502.074366px;}
.y3f{bottom:502.636997px;}
.y6a{bottom:504.313746px;}
.yb{bottom:514.780277px;}
.y67{bottom:542.990850px;}
.y5{bottom:547.736464px;}
.y39{bottom:550.813650px;}
.y65{bottom:552.385611px;}
.ya{bottom:556.833675px;}
.y66{bottom:568.875603px;}
.y2d{bottom:572.759379px;}
.y38{bottom:576.698403px;}
.y3{bottom:602.600942px;}
.y2{bottom:603.163573px;}
.y54{bottom:609.961885px;}
.y60{bottom:617.614813px;}
.y3b{bottom:619.839649px;}
.y9{bottom:651.340125px;}
.y62{bottom:660.756063px;}
.y4{bottom:663.626003px;}
.y2e{bottom:672.546990px;}
.y42{bottom:675.698128px;}
.y8{bottom:677.224878px;}
.y69{bottom:708.736611px;}
.y55{bottom:720.044707px;}
.y1c{bottom:720.366163px;}
.y3e{bottom:723.003500px;}
.y68{bottom:734.621364px;}
.y3d{bottom:748.888253px;}
.y3c{bottom:749.450975px;}
.y17{bottom:759.568461px;}
.y1b{bottom:763.507406px;}
.y63{bottom:771.063937px;}
.y64{bottom:781.926733px;}
.y2c{bottom:799.719972px;}
.y37{bottom:803.658921px;}
.y16{bottom:805.335742px;}
.y19{bottom:805.560783px;}
.y53{bottom:820.207496px;}
.y5f{bottom:835.571958px;}
.y3a{bottom:846.800163px;}
.y18{bottom:851.515586px;}
.y1a{bottom:853.203742px;}
.y61{bottom:869.709821px;}
.y15{bottom:900.846698px;}
.y2b{bottom:909.005236px;}
.y36{bottom:911.324491px;}
.y5e{bottom:920.729075px;}
.y52{bottom:934.188646px;}
.y34{bottom:944.612759px;}
.y5d{bottom:946.613828px;}
.y28{bottom:951.240449px;}
.y2a{bottom:967.346304px;}
.y33{bottom:970.497512px;}
.y59{bottom:979.902074px;}
.y51{bottom:997.512518px;}
.y27{bottom:999.383304px;}
.y58{bottom:1005.786827px;}
.y31{bottom:1016.602384px;}
.y32{bottom:1040.249509px;}
.y30{bottom:1042.487137px;}
.y5c{bottom:1043.464241px;}
.y57{bottom:1059.611647px;}
.y14{bottom:1068.534862px;}
.y5b{bottom:1069.348993px;}
.y35{bottom:1081.702648px;}
.y13{bottom:1095.545039px;}
.y5a{bottom:1116.991960px;}
.y12{bottom:1122.555216px;}
.y29{bottom:1162.707194px;}
.y11{bottom:1185.031461px;}
.y72{bottom:1196.845216px;}
.hc{height:53.300082px;}
.ha{height:55.498710px;}
.hd{height:57.730652px;}
.h4{height:59.923607px;}
.h9{height:62.161221px;}
.hb{height:66.277302px;}
.h3{height:67.117318px;}
.h8{height:72.865444px;}
.h7{height:78.457541px;}
.h5{height:80.959854px;}
.h6{height:81.773310px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:15.144934px;}
.x11{left:17.982030px;}
.x15{left:24.056405px;}
.x12{left:26.052994px;}
.x3{left:28.386295px;}
.x16{left:29.704250px;}
.x2{left:32.159220px;}
.xa{left:34.705488px;}
.xd{left:35.857484px;}
.x13{left:40.274526px;}
.x18{left:42.046126px;}
.xe{left:47.343904px;}
.x6{left:162.435015px;}
.x5{left:169.592008px;}
.x19{left:171.450475px;}
.x4{left:175.794944px;}
.x7{left:336.242689px;}
.x9{left:705.085008px;}
.xc{left:706.759224px;}
.xb{left:707.852616px;}
.x1{left:708.965454px;}
.x10{left:712.655633px;}
.x17{left:716.786021px;}
.xf{left:718.303457px;}
.x14{left:723.524789px;}
.x1a{left:729.089772px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-44.800880pt;}
.ws1{word-spacing:-39.999070pt;}
.ws2{word-spacing:-18.199577pt;}
.ws4{word-spacing:-17.478586pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-7.202855pt;}
._3{margin-left:-5.918314pt;}
._4{margin-left:-4.801919pt;}
._1{margin-left:-2.886841pt;}
._0{margin-left:-1.161076pt;}
._7{width:0.982028pt;}
._14{width:1.978366pt;}
._6{width:3.109670pt;}
._11{width:4.702607pt;}
._8{width:14.901523pt;}
._9{width:15.871301pt;}
._2{width:20.215703pt;}
._12{width:21.561596pt;}
._d{width:23.547623pt;}
._15{width:28.781390pt;}
._c{width:32.949026pt;}
._a{width:34.030551pt;}
._e{width:35.006642pt;}
._16{width:36.174657pt;}
._f{width:38.011793pt;}
._10{width:39.154505pt;}
._13{width:52.663339pt;}
._b{width:1611.823711pt;}
.fs5{font-size:64.024123pt;}
.fs1{font-size:66.665117pt;}
.fs4{font-size:69.346128pt;}
.fs0{font-size:74.668133pt;}
.fs3{font-size:80.030153pt;}
.fs2{font-size:101.358189pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.ye{bottom:90.605076pt;}
.yd{bottom:91.105193pt;}
.y50{bottom:117.503989pt;}
.y74{bottom:130.295271pt;}
.yf{bottom:133.686215pt;}
.y10{bottom:137.187570pt;}
.y4f{bottom:140.512658pt;}
.y26{bottom:171.533809pt;}
.y4e{bottom:179.099051pt;}
.y73{bottom:191.585029pt;}
.y4a{bottom:192.551955pt;}
.y4d{bottom:201.107343pt;}
.y25{bottom:205.880081pt;}
.y4b{bottom:212.759556pt;}
.y49{bottom:215.560625pt;}
.y21{bottom:216.083940pt;}
.y24{bottom:228.888750pt;}
.y4c{bottom:234.519982pt;}
.y48{bottom:238.569294pt;}
.y1e{bottom:261.067618pt;}
.y1f{bottom:263.868653pt;}
.y6c{bottom:276.880257pt;}
.y45{bottom:276.891150pt;}
.y71{bottom:278.881068pt;}
.y47{bottom:286.528065pt;}
.y44{bottom:299.899819pt;}
.y23{bottom:303.891245pt;}
.y6f{bottom:313.009024pt;}
.y70{bottom:318.490762pt;}
.y20{bottom:324.098783pt;}
.y22{bottom:326.899914pt;}
.y46{bottom:338.247626pt;}
.y6d{bottom:356.025246pt;}
.y6e{bottom:361.507017pt;}
.y1d{bottom:365.247624pt;}
.y2f{bottom:383.097821pt;}
.y43{bottom:389.900455pt;}
.y6b{bottom:397.174119pt;}
.y7{bottom:405.512828pt;}
.yc{bottom:416.600358pt;}
.y41{bottom:423.279656pt;}
.y56{bottom:442.176506pt;}
.y6{bottom:446.194874pt;}
.y40{bottom:446.288325pt;}
.y3f{bottom:446.788442pt;}
.y6a{bottom:448.278885pt;}
.yb{bottom:457.582469pt;}
.y67{bottom:482.658533pt;}
.y5{bottom:486.876857pt;}
.y39{bottom:489.612133pt;}
.y65{bottom:491.009432pt;}
.ya{bottom:494.963267pt;}
.y66{bottom:505.667203pt;}
.y2d{bottom:509.119448pt;}
.y38{bottom:512.620802pt;}
.y3{bottom:535.645281pt;}
.y2{bottom:536.145398pt;}
.y54{bottom:542.188342pt;}
.y60{bottom:548.990945pt;}
.y3b{bottom:550.968577pt;}
.y9{bottom:578.969000pt;}
.y62{bottom:587.338722pt;}
.y4{bottom:589.889780pt;}
.y2e{bottom:597.819546pt;}
.y42{bottom:600.620559pt;}
.y8{bottom:601.977669pt;}
.y69{bottom:629.988099pt;}
.y55{bottom:640.039740pt;}
.y1c{bottom:640.325479pt;}
.y3e{bottom:642.669778pt;}
.y68{bottom:652.996768pt;}
.y3d{bottom:665.678447pt;}
.y3c{bottom:666.178644pt;}
.y17{bottom:675.171965pt;}
.y1b{bottom:678.673250pt;}
.y63{bottom:685.390167pt;}
.y64{bottom:695.045985pt;}
.y2c{bottom:710.862198pt;}
.y37{bottom:714.363485pt;}
.y16{bottom:715.853993pt;}
.y19{bottom:716.054029pt;}
.y53{bottom:729.073330pt;}
.y5f{bottom:742.730630pt;}
.y3a{bottom:752.711256pt;}
.y18{bottom:756.902743pt;}
.y1a{bottom:758.403326pt;}
.y61{bottom:773.075396pt;}
.y15{bottom:800.752621pt;}
.y2b{bottom:808.004654pt;}
.y36{bottom:810.066214pt;}
.y5e{bottom:818.425844pt;}
.y52{bottom:830.389908pt;}
.y34{bottom:839.655786pt;}
.y5d{bottom:841.434513pt;}
.y28{bottom:845.547066pt;}
.y2a{bottom:859.863382pt;}
.y33{bottom:862.664455pt;}
.y59{bottom:871.024066pt;}
.y51{bottom:886.677793pt;}
.y27{bottom:888.340715pt;}
.y58{bottom:894.032735pt;}
.y31{bottom:903.646564pt;}
.y32{bottom:924.666230pt;}
.y30{bottom:926.655233pt;}
.y5c{bottom:927.523769pt;}
.y57{bottom:941.877020pt;}
.y14{bottom:949.808766pt;}
.y5b{bottom:950.532438pt;}
.y35{bottom:961.513465pt;}
.y13{bottom:973.817812pt;}
.y5a{bottom:992.881742pt;}
.y12{bottom:997.826858pt;}
.y29{bottom:1033.517506pt;}
.y11{bottom:1053.361299pt;}
.y72{bottom:1063.862414pt;}
.hc{height:47.377851pt;}
.ha{height:49.332187pt;}
.hd{height:51.316135pt;}
.h4{height:53.265429pt;}
.h9{height:55.254419pt;}
.hb{height:58.913157pt;}
.h3{height:59.659838pt;}
.h8{height:64.769284pt;}
.h7{height:69.740036pt;}
.h5{height:71.964314pt;}
.h6{height:72.687387pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:13.462164pt;}
.x11{left:15.984027pt;}
.x15{left:21.383471pt;}
.x12{left:23.158217pt;}
.x3{left:25.232262pt;}
.x16{left:26.403778pt;}
.x2{left:28.585973pt;}
.xa{left:30.849323pt;}
.xd{left:31.873319pt;}
.x13{left:35.799579pt;}
.x18{left:37.374334pt;}
.xe{left:42.083470pt;}
.x6{left:144.386680pt;}
.x5{left:150.748452pt;}
.x19{left:152.400422pt;}
.x4{left:156.262173pt;}
.x7{left:298.882390pt;}
.x9{left:626.742229pt;}
.xc{left:628.230422pt;}
.xb{left:629.202326pt;}
.x1{left:630.191514pt;}
.x10{left:633.471674pt;}
.x17{left:637.143130pt;}
.xf{left:638.491962pt;}
.x14{left:643.133146pt;}
.x1a{left:648.079798pt;}
}




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