
    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_922d2e0ada3ff5f756aa2f59.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.856934;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_a9cc22714a950dba7f3d93ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_f0e89fda66734197d3d0ff9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_0169c7efb77ef8e01c86d293.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_32766c90a34eea77c3606765.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.709473;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_9b24aeb9a2e060a57d1763d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.wsa{word-spacing:-66.000000px;}
.ws7{word-spacing:-57.000000px;}
.ws19{word-spacing:-54.119544px;}
.ws2a{word-spacing:-54.119539px;}
.ws20{word-spacing:-54.119532px;}
.ws27{word-spacing:-54.119529px;}
.ws24{word-spacing:-54.096106px;}
.ws1d{word-spacing:-54.096101px;}
.ws21{word-spacing:-54.023441px;}
.ws8{word-spacing:-54.000039px;}
.ws23{word-spacing:-54.000014px;}
.ws1c{word-spacing:-54.000009px;}
.ws22{word-spacing:-54.000007px;}
.ws1a{word-spacing:-54.000005px;}
.ws1b{word-spacing:-54.000002px;}
.ws4{word-spacing:-54.000000px;}
.ws1e{word-spacing:-53.999995px;}
.ws25{word-spacing:-53.976562px;}
.ws26{word-spacing:-53.903909px;}
.ws1f{word-spacing:-53.857046px;}
.ws28{word-spacing:-53.857039px;}
.ws29{word-spacing:-53.857034px;}
.ws3{word-spacing:-53.842968px;}
.wsd{word-spacing:-49.578515px;}
.wsc{word-spacing:-49.536912px;}
.wse{word-spacing:-49.536910px;}
.ws9{word-spacing:-49.500002px;}
.ws10{word-spacing:-49.421482px;}
.wsf{word-spacing:-49.421481px;}
.wsb{word-spacing:-49.393933px;}
.ws11{word-spacing:-49.384563px;}
.ws5{word-spacing:-42.681448px;}
.ws6{word-spacing:-42.663580px;}
.ws18{word-spacing:-40.499999px;}
.ws1{word-spacing:-37.228123px;}
.ws0{word-spacing:-37.106251px;}
.ws12{word-spacing:-36.004693px;}
.ws13{word-spacing:-36.004690px;}
.ws16{word-spacing:-27.002933px;}
.ws17{word-spacing:-27.000000px;}
.ws15{word-spacing:-13.500016px;}
.ws14{word-spacing:0.000000px;}
._3{margin-left:-6.623438px;}
._d{margin-left:-5.496091px;}
._2{margin-left:-4.448424px;}
._1{margin-left:-3.145325px;}
._5{margin-left:-2.070692px;}
._0{margin-left:-1.059389px;}
._4{width:1.092190px;}
._6{width:10.982818px;}
._7{width:19.110998px;}
._e{width:36.588288px;}
._8{width:480.194525px;}
._c{width:941.200769px;}
._a{width:1065.232030px;}
._b{width:1145.177345px;}
._9{width:1206.281254px;}
.fc1{color:rgb(26,188,203);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:2.925000px;}
.yc{bottom:3.150000px;}
.y11{bottom:3.600000px;}
.ya{bottom:3.900000px;}
.yf{bottom:5.850000px;}
.y1f{bottom:7.500000px;}
.y1{bottom:8.625000px;}
.y6{bottom:9.150000px;}
.y20{bottom:13.446000px;}
.y1e{bottom:16.425000px;}
.y9{bottom:24.600000px;}
.y5{bottom:26.025000px;}
.y1d{bottom:30.225000px;}
.y4{bottom:42.900000px;}
.y1c{bottom:44.025000px;}
.y8{bottom:45.300000px;}
.y24{bottom:49.500000px;}
.y3{bottom:59.775000px;}
.y23{bottom:65.025000px;}
.y25{bottom:73.800000px;}
.y2{bottom:76.650000px;}
.y22{bottom:80.550000px;}
.y3a{bottom:135.375000px;}
.y45{bottom:142.200000px;}
.y44{bottom:162.900000px;}
.y43{bottom:183.600000px;}
.y3f{bottom:204.300000px;}
.y42{bottom:225.000000px;}
.y41{bottom:266.400000px;}
.y31{bottom:426.675000px;}
.y30{bottom:468.075000px;}
.y1b{bottom:485.700000px;}
.y2f{bottom:488.775000px;}
.y2e{bottom:530.175000px;}
.y2d{bottom:550.875000px;}
.y1a{bottom:558.150000px;}
.y2c{bottom:571.575000px;}
.y19{bottom:577.125000px;}
.y2b{bottom:592.275000px;}
.y39{bottom:601.875000px;}
.y2a{bottom:612.975000px;}
.y29{bottom:654.375000px;}
.y28{bottom:675.075000px;}
.y18{bottom:693.975000px;}
.y17{bottom:712.950000px;}
.y27{bottom:716.475000px;}
.y16{bottom:731.925000px;}
.y15{bottom:750.900000px;}
.y38{bottom:753.975000px;}
.y14{bottom:769.875000px;}
.y13{bottom:789.600000px;}
.y37{bottom:795.375000px;}
.y12{bottom:826.575000px;}
.y36{bottom:836.775000px;}
.y10{bottom:845.550000px;}
.y35{bottom:878.175000px;}
.ye{bottom:882.525000px;}
.y34{bottom:919.575000px;}
.yd{bottom:931.575000px;}
.y33{bottom:940.275000px;}
.y3e{bottom:944.175000px;}
.yb{bottom:948.000000px;}
.y3d{bottom:964.875000px;}
.y7{bottom:981.675000px;}
.y3c{bottom:985.575000px;}
.y40{bottom:1006.275000px;}
.y32{bottom:1023.075000px;}
.y3b{bottom:1026.975000px;}
.y21{bottom:1080.000000px;}
.h17{height:16.275000px;}
.h7{height:16.425000px;}
.hc{height:18.975000px;}
.hf{height:19.725000px;}
.h19{height:20.700000px;}
.ha{height:31.800000px;}
.h3{height:32.625000px;}
.h12{height:33.351562px;}
.h16{height:37.520508px;}
.h8{height:38.630859px;}
.h4{height:39.585938px;}
.h9{height:39.604980px;}
.he{height:44.730469px;}
.h13{height:45.000000px;}
.hd{height:45.858398px;}
.h1a{height:48.761719px;}
.h6{height:48.796875px;}
.h18{height:50.027344px;}
.h11{height:55.200000px;}
.h5{height:62.100000px;}
.h14{height:62.320312px;}
.hb{height:73.195312px;}
.h2{height:93.525000px;}
.h10{height:99.600000px;}
.h15{height:109.125000px;}
.h0{height:1262.925000px;}
.h1{height:1263.000000px;}
.wb{width:127.575000px;}
.wa{width:150.525000px;}
.wd{width:165.225000px;}
.w4{width:174.300000px;}
.w6{width:195.000000px;}
.wf{width:225.000000px;}
.w9{width:255.150000px;}
.w13{width:320.475000px;}
.w10{width:320.550000px;}
.w5{width:348.675000px;}
.w3{width:382.650000px;}
.w8{width:405.675000px;}
.wc{width:425.175000px;}
.w16{width:462.750000px;}
.w12{width:462.825000px;}
.w7{width:467.700000px;}
.w15{width:590.325000px;}
.w11{width:590.400000px;}
.w14{width:717.900000px;}
.we{width:717.975000px;}
.w2{width:722.850000px;}
.w0{width:893.025000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:3.000000px;}
.x3{left:8.100000px;}
.x2{left:10.800000px;}
.x11{left:12.600000px;}
.x7{left:47.325000px;}
.x1{left:119.025000px;}
.xe{left:127.575000px;}
.xf{left:205.950000px;}
.x6{left:234.225000px;}
.x9{left:246.975000px;}
.x12{left:251.325000px;}
.x10{left:258.075000px;}
.x4{left:293.700000px;}
.x8{left:374.550000px;}
.xd{left:516.825000px;}
.x5{left:642.375000px;}
.xb{left:660.000000px;}
.xa{left:672.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-64.000000pt;}
.wsa{word-spacing:-58.666667pt;}
.ws7{word-spacing:-50.666667pt;}
.ws19{word-spacing:-48.106261pt;}
.ws2a{word-spacing:-48.106257pt;}
.ws20{word-spacing:-48.106251pt;}
.ws27{word-spacing:-48.106248pt;}
.ws24{word-spacing:-48.085427pt;}
.ws1d{word-spacing:-48.085423pt;}
.ws21{word-spacing:-48.020836pt;}
.ws8{word-spacing:-48.000035pt;}
.ws23{word-spacing:-48.000012pt;}
.ws1c{word-spacing:-48.000008pt;}
.ws22{word-spacing:-48.000006pt;}
.ws1a{word-spacing:-48.000004pt;}
.ws1b{word-spacing:-48.000002pt;}
.ws4{word-spacing:-48.000000pt;}
.ws1e{word-spacing:-47.999996pt;}
.ws25{word-spacing:-47.979166pt;}
.ws26{word-spacing:-47.914586pt;}
.ws1f{word-spacing:-47.872930pt;}
.ws28{word-spacing:-47.872924pt;}
.ws29{word-spacing:-47.872919pt;}
.ws3{word-spacing:-47.860416pt;}
.wsd{word-spacing:-44.069791pt;}
.wsc{word-spacing:-44.032811pt;}
.wse{word-spacing:-44.032809pt;}
.ws9{word-spacing:-44.000001pt;}
.ws10{word-spacing:-43.930206pt;}
.wsf{word-spacing:-43.930205pt;}
.wsb{word-spacing:-43.905718pt;}
.ws11{word-spacing:-43.897389pt;}
.ws5{word-spacing:-37.939065pt;}
.ws6{word-spacing:-37.923182pt;}
.ws18{word-spacing:-35.999999pt;}
.ws1{word-spacing:-33.091665pt;}
.ws0{word-spacing:-32.983334pt;}
.ws12{word-spacing:-32.004172pt;}
.ws13{word-spacing:-32.004169pt;}
.ws16{word-spacing:-24.002607pt;}
.ws17{word-spacing:-24.000000pt;}
.ws15{word-spacing:-12.000015pt;}
.ws14{word-spacing:0.000000pt;}
._3{margin-left:-5.887501pt;}
._d{margin-left:-4.885414pt;}
._2{margin-left:-3.954155pt;}
._1{margin-left:-2.795844pt;}
._5{margin-left:-1.840615pt;}
._0{margin-left:-0.941679pt;}
._4{width:0.970835pt;}
._6{width:9.762505pt;}
._7{width:16.987554pt;}
._e{width:32.522923pt;}
._8{width:426.839578pt;}
._c{width:836.622906pt;}
._a{width:946.872915pt;}
._b{width:1017.935418pt;}
._9{width:1072.250003pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:2.600000pt;}
.yc{bottom:2.800000pt;}
.y11{bottom:3.200000pt;}
.ya{bottom:3.466667pt;}
.yf{bottom:5.200000pt;}
.y1f{bottom:6.666667pt;}
.y1{bottom:7.666667pt;}
.y6{bottom:8.133333pt;}
.y20{bottom:11.952000pt;}
.y1e{bottom:14.600000pt;}
.y9{bottom:21.866667pt;}
.y5{bottom:23.133333pt;}
.y1d{bottom:26.866667pt;}
.y4{bottom:38.133333pt;}
.y1c{bottom:39.133333pt;}
.y8{bottom:40.266667pt;}
.y24{bottom:44.000000pt;}
.y3{bottom:53.133333pt;}
.y23{bottom:57.800000pt;}
.y25{bottom:65.600000pt;}
.y2{bottom:68.133333pt;}
.y22{bottom:71.600000pt;}
.y3a{bottom:120.333333pt;}
.y45{bottom:126.400000pt;}
.y44{bottom:144.800000pt;}
.y43{bottom:163.200000pt;}
.y3f{bottom:181.600000pt;}
.y42{bottom:200.000000pt;}
.y41{bottom:236.800000pt;}
.y31{bottom:379.266667pt;}
.y30{bottom:416.066667pt;}
.y1b{bottom:431.733333pt;}
.y2f{bottom:434.466667pt;}
.y2e{bottom:471.266667pt;}
.y2d{bottom:489.666667pt;}
.y1a{bottom:496.133333pt;}
.y2c{bottom:508.066667pt;}
.y19{bottom:513.000000pt;}
.y2b{bottom:526.466667pt;}
.y39{bottom:535.000000pt;}
.y2a{bottom:544.866667pt;}
.y29{bottom:581.666667pt;}
.y28{bottom:600.066667pt;}
.y18{bottom:616.866667pt;}
.y17{bottom:633.733333pt;}
.y27{bottom:636.866667pt;}
.y16{bottom:650.600000pt;}
.y15{bottom:667.466667pt;}
.y38{bottom:670.200000pt;}
.y14{bottom:684.333333pt;}
.y13{bottom:701.866667pt;}
.y37{bottom:707.000000pt;}
.y12{bottom:734.733333pt;}
.y36{bottom:743.800000pt;}
.y10{bottom:751.600000pt;}
.y35{bottom:780.600000pt;}
.ye{bottom:784.466667pt;}
.y34{bottom:817.400000pt;}
.yd{bottom:828.066667pt;}
.y33{bottom:835.800000pt;}
.y3e{bottom:839.266667pt;}
.yb{bottom:842.666667pt;}
.y3d{bottom:857.666667pt;}
.y7{bottom:872.600000pt;}
.y3c{bottom:876.066667pt;}
.y40{bottom:894.466667pt;}
.y32{bottom:909.400000pt;}
.y3b{bottom:912.866667pt;}
.y21{bottom:960.000000pt;}
.h17{height:14.466667pt;}
.h7{height:14.600000pt;}
.hc{height:16.866667pt;}
.hf{height:17.533333pt;}
.h19{height:18.400000pt;}
.ha{height:28.266667pt;}
.h3{height:29.000000pt;}
.h12{height:29.645833pt;}
.h16{height:33.351562pt;}
.h8{height:34.338542pt;}
.h4{height:35.187500pt;}
.h9{height:35.204427pt;}
.he{height:39.760417pt;}
.h13{height:40.000000pt;}
.hd{height:40.763021pt;}
.h1a{height:43.343750pt;}
.h6{height:43.375000pt;}
.h18{height:44.468750pt;}
.h11{height:49.066667pt;}
.h5{height:55.200000pt;}
.h14{height:55.395833pt;}
.hb{height:65.062500pt;}
.h2{height:83.133333pt;}
.h10{height:88.533333pt;}
.h15{height:97.000000pt;}
.h0{height:1122.600000pt;}
.h1{height:1122.666667pt;}
.wb{width:113.400000pt;}
.wa{width:133.800000pt;}
.wd{width:146.866667pt;}
.w4{width:154.933333pt;}
.w6{width:173.333333pt;}
.wf{width:200.000000pt;}
.w9{width:226.800000pt;}
.w13{width:284.866667pt;}
.w10{width:284.933333pt;}
.w5{width:309.933333pt;}
.w3{width:340.133333pt;}
.w8{width:360.600000pt;}
.wc{width:377.933333pt;}
.w16{width:411.333333pt;}
.w12{width:411.400000pt;}
.w7{width:415.733333pt;}
.w15{width:524.733333pt;}
.w11{width:524.800000pt;}
.w14{width:638.133333pt;}
.we{width:638.200000pt;}
.w2{width:642.533333pt;}
.w0{width:793.800000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.666667pt;}
.x3{left:7.200000pt;}
.x2{left:9.600000pt;}
.x11{left:11.200000pt;}
.x7{left:42.066667pt;}
.x1{left:105.800000pt;}
.xe{left:113.400000pt;}
.xf{left:183.066667pt;}
.x6{left:208.200000pt;}
.x9{left:219.533333pt;}
.x12{left:223.400000pt;}
.x10{left:229.400000pt;}
.x4{left:261.066667pt;}
.x8{left:332.933333pt;}
.xd{left:459.400000pt;}
.x5{left:571.000000pt;}
.xb{left:586.666667pt;}
.xa{left:597.466667pt;}
}




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