
    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_a088903f626c248c92ed622b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_552897dadb9cb90256e9d088.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e1582380b0de0f31d4b48932.woff')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_64ad275504e3f081ca6477c0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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_6633137b3b54151ec03631fc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_62962c95dca1b1de33491da1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.120000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls4{letter-spacing:0.384000px;}
.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;}
}
.ws4{word-spacing:-21.037500px;}
.ws5{word-spacing:-21.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.140000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-8.376000px;}
._3{margin-left:-5.976000px;}
._2{margin-left:-4.536000px;}
._4{margin-left:-3.120000px;}
._b{margin-left:-2.118000px;}
._0{margin-left:-1.080000px;}
._1{width:1.380000px;}
._8{width:3.282000px;}
._7{width:4.674000px;}
._9{width:5.676000px;}
._12{width:6.780000px;}
._13{width:7.794000px;}
._6{width:8.886000px;}
._5{width:10.338000px;}
._a{width:11.502000px;}
._15{width:12.780000px;}
._16{width:13.896000px;}
._c{width:15.054000px;}
._d{width:16.056000px;}
._17{width:22.752000px;}
._10{width:27.492000px;}
._11{width:28.494000px;}
._f{width:41.472000px;}
._e{width:42.540000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:84.150000px;}
.y45{bottom:-3.030000px;}
.y0{bottom:0.000000px;}
.y52{bottom:11.025000px;}
.y57{bottom:11.925000px;}
.y4b{bottom:12.075000px;}
.y6c{bottom:12.570000px;}
.y47{bottom:12.795000px;}
.y76{bottom:16.650000px;}
.y74{bottom:19.050000px;}
.y50{bottom:22.905000px;}
.y71{bottom:24.255000px;}
.y5c{bottom:29.070000px;}
.y5e{bottom:30.900000px;}
.y60{bottom:31.200000px;}
.y6e{bottom:32.070000px;}
.y44{bottom:33.255000px;}
.y49{bottom:33.795000px;}
.y63{bottom:36.120000px;}
.y59{bottom:36.570000px;}
.y4e{bottom:36.600000px;}
.y55{bottom:37.875000px;}
.y54{bottom:38.175000px;}
.y66{bottom:40.605000px;}
.y72{bottom:41.370000px;}
.y65{bottom:42.405000px;}
.y42{bottom:46.800000px;}
.y6b{bottom:48.270000px;}
.y68{bottom:50.475000px;}
.y4c{bottom:56.475000px;}
.y7{bottom:57.337500px;}
.y69{bottom:57.975000px;}
.y61{bottom:71.700000px;}
.y33{bottom:99.337500px;}
.y40{bottom:110.437500px;}
.y32{bottom:123.037500px;}
.y3f{bottom:134.137500px;}
.y31{bottom:146.737500px;}
.y3e{bottom:158.130000px;}
.y30{bottom:170.775000px;}
.y3d{bottom:181.875000px;}
.y2f{bottom:194.475000px;}
.y3c{bottom:205.575000px;}
.y2e{bottom:218.175000px;}
.y3b{bottom:229.575000px;}
.y2d{bottom:242.175000px;}
.y3a{bottom:253.275000px;}
.y2c{bottom:265.875000px;}
.y39{bottom:276.975000px;}
.y2b{bottom:289.575000px;}
.y38{bottom:300.975000px;}
.y2a{bottom:313.575000px;}
.y37{bottom:324.675000px;}
.y29{bottom:337.275000px;}
.y36{bottom:348.420000px;}
.y28{bottom:361.005000px;}
.y35{bottom:372.420000px;}
.y27{bottom:385.005000px;}
.y34{bottom:392.220000px;}
.y26{bottom:408.705000px;}
.y25{bottom:432.405000px;}
.y24{bottom:456.420000px;}
.y23{bottom:480.120000px;}
.y22{bottom:503.805000px;}
.y21{bottom:527.850000px;}
.y20{bottom:551.550000px;}
.y1f{bottom:575.250000px;}
.y1e{bottom:599.250000px;}
.y67{bottom:603.000000px;}
.y62{bottom:603.600000px;}
.y6d{bottom:604.500000px;}
.y73{bottom:604.800000px;}
.y5d{bottom:605.100000px;}
.y58{bottom:606.000000px;}
.y6a{bottom:606.300000px;}
.y1d{bottom:622.950000px;}
.y5a{bottom:628.755000px;}
.y5f{bottom:634.500000px;}
.y5b{bottom:639.570000px;}
.y70{bottom:643.455000px;}
.y1c{bottom:646.650000px;}
.y75{bottom:661.350000px;}
.y64{bottom:662.205000px;}
.y6f{bottom:664.155000px;}
.y1b{bottom:670.650000px;}
.y1a{bottom:694.380000px;}
.y19{bottom:718.080000px;}
.y18{bottom:742.080000px;}
.y17{bottom:765.780000px;}
.y16{bottom:789.795000px;}
.y15{bottom:813.480000px;}
.y56{bottom:833.400000px;}
.y14{bottom:837.195000px;}
.y13{bottom:861.225000px;}
.y12{bottom:884.925000px;}
.y51{bottom:903.000000px;}
.y4f{bottom:904.200000px;}
.y41{bottom:904.500000px;}
.y53{bottom:905.700000px;}
.y4a{bottom:906.300000px;}
.y11{bottom:908.625000px;}
.y4d{bottom:912.300000px;}
.y46{bottom:915.900000px;}
.y10{bottom:932.625000px;}
.yf{bottom:956.325000px;}
.y48{bottom:975.795000px;}
.ye{bottom:980.025000px;}
.yd{bottom:1004.025000px;}
.yc{bottom:1027.755000px;}
.yb{bottom:1051.455000px;}
.ya{bottom:1075.455000px;}
.y43{bottom:1080.900000px;}
.y9{bottom:1099.155000px;}
.y8{bottom:1122.855000px;}
.y6{bottom:1143.570000px;}
.y5{bottom:1164.255000px;}
.y4{bottom:1182.570000px;}
.y3{bottom:1200.900000px;}
.y2{bottom:1219.200000px;}
.y1{bottom:1237.500000px;}
.h17{height:31.500000px;}
.h7{height:50.484375px;}
.ha{height:52.800000px;}
.hd{height:58.898438px;}
.h16{height:59.003613px;}
.h2{height:61.435547px;}
.h4{height:65.645508px;}
.h5{height:72.562500px;}
.h6{height:74.004654px;}
.h3{height:84.656250px;}
.h20{height:86.338734px;}
.h1c{height:86.338744px;}
.h13{height:86.338746px;}
.hf{height:86.338752px;}
.hb{height:86.338763px;}
.h22{height:86.492912px;}
.h19{height:86.492916px;}
.h15{height:86.492919px;}
.h1f{height:86.492922px;}
.h12{height:86.492929px;}
.h9{height:86.492931px;}
.he{height:86.492940px;}
.hc{height:130.500000px;}
.h11{height:134.400000px;}
.h10{height:142.500000px;}
.h8{height:142.800000px;}
.h14{height:143.100000px;}
.h21{height:189.900000px;}
.h1a{height:190.500000px;}
.h18{height:190.800000px;}
.h1e{height:191.400000px;}
.h1b{height:193.200000px;}
.h1d{height:193.500000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:22.800000px;}
.w7{width:23.100000px;}
.wa{width:24.300000px;}
.w8{width:24.900000px;}
.w6{width:25.200000px;}
.w9{width:27.000000px;}
.wf{width:49.800000px;}
.w10{width:52.200000px;}
.w5{width:66.300000px;}
.we{width:72.600000px;}
.w12{width:75.600000px;}
.wd{width:76.200000px;}
.wc{width:88.800000px;}
.w11{width:93.600000px;}
.wb{width:247.500000px;}
.w4{width:574.800000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:19.845000px;}
.x14{left:43.725000px;}
.x1a{left:54.420000px;}
.x25{left:56.175000px;}
.x20{left:68.175000px;}
.x12{left:80.175000px;}
.x9{left:84.937487px;}
.x26{left:90.900000px;}
.x1d{left:92.025000px;}
.x29{left:116.325000px;}
.xe{left:131.175000px;}
.x27{left:134.587487px;}
.xd{left:147.900000px;}
.x10{left:153.900000px;}
.x28{left:158.894987px;}
.x7{left:163.829987px;}
.xf{left:166.005000px;}
.x11{left:198.029987px;}
.x24{left:214.800000px;}
.x5{left:220.274987px;}
.x13{left:276.600000px;}
.x23{left:297.600000px;}
.x19{left:318.900000px;}
.x3{left:350.504987px;}
.x2c{left:364.619987px;}
.x15{left:367.500000px;}
.x21{left:377.100000px;}
.x8{left:378.404987px;}
.x22{left:420.779987px;}
.x4{left:433.949987px;}
.x6{left:446.249987px;}
.x2{left:457.049987px;}
.x16{left:459.900000px;}
.x1e{left:481.800000px;}
.x1{left:510.449987px;}
.x1f{left:525.974987px;}
.xb{left:548.400000px;}
.x1b{left:589.200000px;}
.x18{left:633.000000px;}
.x1c{left:657.224987px;}
.x17{left:703.500000px;}
.x2a{left:708.600000px;}
.x2b{left:752.549987px;}
.xa{left:773.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls4{letter-spacing:0.341333pt;}
.ws4{word-spacing:-18.700000pt;}
.ws5{word-spacing:-18.666667pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-7.445333pt;}
._3{margin-left:-5.312000pt;}
._2{margin-left:-4.032000pt;}
._4{margin-left:-2.773333pt;}
._b{margin-left:-1.882667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.226667pt;}
._8{width:2.917333pt;}
._7{width:4.154667pt;}
._9{width:5.045333pt;}
._12{width:6.026667pt;}
._13{width:6.928000pt;}
._6{width:7.898667pt;}
._5{width:9.189333pt;}
._a{width:10.224000pt;}
._15{width:11.360000pt;}
._16{width:12.352000pt;}
._c{width:13.381333pt;}
._d{width:14.272000pt;}
._17{width:20.224000pt;}
._10{width:24.437333pt;}
._11{width:25.328000pt;}
._f{width:36.864000pt;}
._e{width:37.813333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:74.800000pt;}
.y45{bottom:-2.693333pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:9.800000pt;}
.y57{bottom:10.600000pt;}
.y4b{bottom:10.733333pt;}
.y6c{bottom:11.173333pt;}
.y47{bottom:11.373333pt;}
.y76{bottom:14.800000pt;}
.y74{bottom:16.933333pt;}
.y50{bottom:20.360000pt;}
.y71{bottom:21.560000pt;}
.y5c{bottom:25.840000pt;}
.y5e{bottom:27.466667pt;}
.y60{bottom:27.733333pt;}
.y6e{bottom:28.506667pt;}
.y44{bottom:29.560000pt;}
.y49{bottom:30.040000pt;}
.y63{bottom:32.106667pt;}
.y59{bottom:32.506667pt;}
.y4e{bottom:32.533333pt;}
.y55{bottom:33.666667pt;}
.y54{bottom:33.933333pt;}
.y66{bottom:36.093333pt;}
.y72{bottom:36.773333pt;}
.y65{bottom:37.693333pt;}
.y42{bottom:41.600000pt;}
.y6b{bottom:42.906667pt;}
.y68{bottom:44.866667pt;}
.y4c{bottom:50.200000pt;}
.y7{bottom:50.966667pt;}
.y69{bottom:51.533333pt;}
.y61{bottom:63.733333pt;}
.y33{bottom:88.300000pt;}
.y40{bottom:98.166667pt;}
.y32{bottom:109.366667pt;}
.y3f{bottom:119.233333pt;}
.y31{bottom:130.433333pt;}
.y3e{bottom:140.560000pt;}
.y30{bottom:151.800000pt;}
.y3d{bottom:161.666667pt;}
.y2f{bottom:172.866667pt;}
.y3c{bottom:182.733333pt;}
.y2e{bottom:193.933333pt;}
.y3b{bottom:204.066667pt;}
.y2d{bottom:215.266667pt;}
.y3a{bottom:225.133333pt;}
.y2c{bottom:236.333333pt;}
.y39{bottom:246.200000pt;}
.y2b{bottom:257.400000pt;}
.y38{bottom:267.533333pt;}
.y2a{bottom:278.733333pt;}
.y37{bottom:288.600000pt;}
.y29{bottom:299.800000pt;}
.y36{bottom:309.706667pt;}
.y28{bottom:320.893333pt;}
.y35{bottom:331.040000pt;}
.y27{bottom:342.226667pt;}
.y34{bottom:348.640000pt;}
.y26{bottom:363.293333pt;}
.y25{bottom:384.360000pt;}
.y24{bottom:405.706667pt;}
.y23{bottom:426.773333pt;}
.y22{bottom:447.826667pt;}
.y21{bottom:469.200000pt;}
.y20{bottom:490.266667pt;}
.y1f{bottom:511.333333pt;}
.y1e{bottom:532.666667pt;}
.y67{bottom:536.000000pt;}
.y62{bottom:536.533333pt;}
.y6d{bottom:537.333333pt;}
.y73{bottom:537.600000pt;}
.y5d{bottom:537.866667pt;}
.y58{bottom:538.666667pt;}
.y6a{bottom:538.933333pt;}
.y1d{bottom:553.733333pt;}
.y5a{bottom:558.893333pt;}
.y5f{bottom:564.000000pt;}
.y5b{bottom:568.506667pt;}
.y70{bottom:571.960000pt;}
.y1c{bottom:574.800000pt;}
.y75{bottom:587.866667pt;}
.y64{bottom:588.626667pt;}
.y6f{bottom:590.360000pt;}
.y1b{bottom:596.133333pt;}
.y1a{bottom:617.226667pt;}
.y19{bottom:638.293333pt;}
.y18{bottom:659.626667pt;}
.y17{bottom:680.693333pt;}
.y16{bottom:702.040000pt;}
.y15{bottom:723.093333pt;}
.y56{bottom:740.800000pt;}
.y14{bottom:744.173333pt;}
.y13{bottom:765.533333pt;}
.y12{bottom:786.600000pt;}
.y51{bottom:802.666667pt;}
.y4f{bottom:803.733333pt;}
.y41{bottom:804.000000pt;}
.y53{bottom:805.066667pt;}
.y4a{bottom:805.600000pt;}
.y11{bottom:807.666667pt;}
.y4d{bottom:810.933333pt;}
.y46{bottom:814.133333pt;}
.y10{bottom:829.000000pt;}
.yf{bottom:850.066667pt;}
.y48{bottom:867.373333pt;}
.ye{bottom:871.133333pt;}
.yd{bottom:892.466667pt;}
.yc{bottom:913.560000pt;}
.yb{bottom:934.626667pt;}
.ya{bottom:955.960000pt;}
.y43{bottom:960.800000pt;}
.y9{bottom:977.026667pt;}
.y8{bottom:998.093333pt;}
.y6{bottom:1016.506667pt;}
.y5{bottom:1034.893333pt;}
.y4{bottom:1051.173333pt;}
.y3{bottom:1067.466667pt;}
.y2{bottom:1083.733333pt;}
.y1{bottom:1100.000000pt;}
.h17{height:28.000000pt;}
.h7{height:44.875000pt;}
.ha{height:46.933333pt;}
.hd{height:52.354167pt;}
.h16{height:52.447656pt;}
.h2{height:54.609375pt;}
.h4{height:58.351562pt;}
.h5{height:64.500000pt;}
.h6{height:65.781915pt;}
.h3{height:75.250000pt;}
.h20{height:76.745541pt;}
.h1c{height:76.745550pt;}
.h13{height:76.745552pt;}
.hf{height:76.745558pt;}
.hb{height:76.745567pt;}
.h22{height:76.882589pt;}
.h19{height:76.882592pt;}
.h15{height:76.882595pt;}
.h1f{height:76.882597pt;}
.h12{height:76.882604pt;}
.h9{height:76.882605pt;}
.he{height:76.882613pt;}
.hc{height:116.000000pt;}
.h11{height:119.466667pt;}
.h10{height:126.666667pt;}
.h8{height:126.933333pt;}
.h14{height:127.200000pt;}
.h21{height:168.800000pt;}
.h1a{height:169.333333pt;}
.h18{height:169.600000pt;}
.h1e{height:170.133333pt;}
.h1b{height:171.733333pt;}
.h1d{height:172.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:20.266667pt;}
.w7{width:20.533333pt;}
.wa{width:21.600000pt;}
.w8{width:22.133333pt;}
.w6{width:22.400000pt;}
.w9{width:24.000000pt;}
.wf{width:44.266667pt;}
.w10{width:46.400000pt;}
.w5{width:58.933333pt;}
.we{width:64.533333pt;}
.w12{width:67.200000pt;}
.wd{width:67.733333pt;}
.wc{width:78.933333pt;}
.w11{width:83.200000pt;}
.wb{width:220.000000pt;}
.w4{width:510.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:17.640000pt;}
.x14{left:38.866667pt;}
.x1a{left:48.373333pt;}
.x25{left:49.933333pt;}
.x20{left:60.600000pt;}
.x12{left:71.266667pt;}
.x9{left:75.499988pt;}
.x26{left:80.800000pt;}
.x1d{left:81.800000pt;}
.x29{left:103.400000pt;}
.xe{left:116.600000pt;}
.x27{left:119.633322pt;}
.xd{left:131.466667pt;}
.x10{left:136.800000pt;}
.x28{left:141.239988pt;}
.x7{left:145.626655pt;}
.xf{left:147.560000pt;}
.x11{left:176.026655pt;}
.x24{left:190.933333pt;}
.x5{left:195.799988pt;}
.x13{left:245.866667pt;}
.x23{left:264.533333pt;}
.x19{left:283.466667pt;}
.x3{left:311.559988pt;}
.x2c{left:324.106655pt;}
.x15{left:326.666667pt;}
.x21{left:335.200000pt;}
.x8{left:336.359988pt;}
.x22{left:374.026655pt;}
.x4{left:385.733322pt;}
.x6{left:396.666655pt;}
.x2{left:406.266655pt;}
.x16{left:408.800000pt;}
.x1e{left:428.266667pt;}
.x1{left:453.733322pt;}
.x1f{left:467.533322pt;}
.xb{left:487.466667pt;}
.x1b{left:523.733333pt;}
.x18{left:562.666667pt;}
.x1c{left:584.199988pt;}
.x17{left:625.333333pt;}
.x2a{left:629.866667pt;}
.x2b{left:668.933322pt;}
.xa{left:687.706655pt;}
}




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