
    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_23fd71ecf4ede90aa7c3f72e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_152b34bf261de7a4a72b8154.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.752441;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_70ace94652e4537c8517de29.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_d6b3281b3199d4973ecc680a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_8102b7fc13b9e1691aac0026.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_11ed52d086302a14c8679869.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118000;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_87a0cc27c66c0df7c2129eb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.748000;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_2c4c16632404c7081e1c187e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927095;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_1244e341b2d101b8a60bfbab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915000;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_a98ac52c78ba869912ada744.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941000;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.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,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);}
.m2{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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.981000px;}
.v1{vertical-align:33.600000px;}
.ls7{letter-spacing:-1.152000px;}
.ls8{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.057000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.051000px;}
.ls2{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.510000px;}
.ls3{letter-spacing:41.299560px;}
.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:-18.000000px;}
.ws1{word-spacing:-16.200000px;}
.ws5{word-spacing:-15.846000px;}
.ws6{word-spacing:-15.789000px;}
.ws4{word-spacing:-14.280000px;}
.ws3{word-spacing:-14.229000px;}
.ws2{word-spacing:-13.104000px;}
.ws7{word-spacing:-9.238218px;}
.ws18{word-spacing:-3.192000px;}
.ws10{word-spacing:-2.856000px;}
.wse{word-spacing:-2.805000px;}
.wsd{word-spacing:-1.848000px;}
.ws11{word-spacing:-1.224000px;}
.ws14{word-spacing:-1.140000px;}
.ws12{word-spacing:-0.969000px;}
.ws13{word-spacing:-0.918000px;}
.ws19{word-spacing:-0.855000px;}
.ws1c{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.240000px;}
.ws8{word-spacing:0.000000px;}
.ws17{word-spacing:0.171000px;}
.wsc{word-spacing:0.240000px;}
.ws1b{word-spacing:0.480000px;}
.ws15{word-spacing:1.653000px;}
.ws16{word-spacing:1.767000px;}
.ws1a{word-spacing:2.352000px;}
.wsf{word-spacing:2.805000px;}
.wsb{word-spacing:4.176000px;}
.wsa{word-spacing:5.520000px;}
._2{margin-left:-13.108800px;}
._1{margin-left:-4.586400px;}
._0{margin-left:-1.470000px;}
._3{width:1.126800px;}
._4{width:21.850680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.000000px;}
.fsc{font-size:33.231000px;}
.fsd{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsb{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:17.625300px;}
.yc{bottom:28.125300px;}
.y1{bottom:44.049150px;}
.yb{bottom:106.299150px;}
.ya{bottom:122.049150px;}
.y9{bottom:137.799150px;}
.y26{bottom:187.086600px;}
.y25{bottom:202.836600px;}
.y24{bottom:218.586600px;}
.y23{bottom:234.336600px;}
.y22{bottom:255.081600px;}
.y21{bottom:275.083500px;}
.y20{bottom:330.899100px;}
.y1f{bottom:349.649100px;}
.y1e{bottom:368.399100px;}
.y1d{bottom:387.149100px;}
.y1c{bottom:405.899100px;}
.y1b{bottom:424.649100px;}
.y1a{bottom:464.659050px;}
.y16{bottom:515.980050px;}
.y15{bottom:555.239850px;}
.y14{bottom:571.889850px;}
.y13{bottom:588.539850px;}
.y12{bottom:605.189850px;}
.y11{bottom:621.839850px;}
.y10{bottom:638.489850px;}
.yf{bottom:655.139850px;}
.ye{bottom:685.503000px;}
.y19{bottom:727.494900px;}
.y18{bottom:743.994900px;}
.y17{bottom:764.746950px;}
.y4{bottom:819.077550px;}
.y3{bottom:847.831350px;}
.y2{bottom:873.331350px;}
.y8{bottom:936.554400px;}
.y7{bottom:956.901000px;}
.y6{bottom:958.101000px;}
.y5{bottom:962.751000px;}
.hb{height:24.123000px;}
.h8{height:28.296000px;}
.h11{height:31.761840px;}
.h7{height:33.516000px;}
.ha{height:35.088000px;}
.he{height:41.667000px;}
.h9{height:43.584000px;}
.hc{height:45.486000px;}
.hd{height:46.308000px;}
.h2{height:47.880000px;}
.h10{height:51.756000px;}
.h4{height:52.668000px;}
.hf{height:59.850000px;}
.h3{height:67.032000px;}
.h6{height:67.116000px;}
.h5{height:86.184000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:85.039350px;}
.xc{left:87.165300px;}
.x12{left:89.291250px;}
.x2{left:91.733850px;}
.xa{left:97.795350px;}
.x4{left:105.789450px;}
.x13{left:114.803100px;}
.xe{left:127.559100px;}
.x1{left:146.788800px;}
.xb{left:163.086150px;}
.x3{left:278.798100px;}
.x5{left:458.787450px;}
.x9{left:483.888750px;}
.x11{left:493.721850px;}
.x10{left:498.281550px;}
.xf{left:525.049800px;}
.x6{left:546.531150px;}
.x7{left:551.781150px;}
.x8{left:567.031500px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.872000pt;}
.v1{vertical-align:29.866667pt;}
.ls7{letter-spacing:-1.024000pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.045333pt;}
.ls2{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.453333pt;}
.ls3{letter-spacing:36.710720pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.400000pt;}
.ws5{word-spacing:-14.085333pt;}
.ws6{word-spacing:-14.034667pt;}
.ws4{word-spacing:-12.693333pt;}
.ws3{word-spacing:-12.648000pt;}
.ws2{word-spacing:-11.648000pt;}
.ws7{word-spacing:-8.211749pt;}
.ws18{word-spacing:-2.837333pt;}
.ws10{word-spacing:-2.538667pt;}
.wse{word-spacing:-2.493333pt;}
.wsd{word-spacing:-1.642667pt;}
.ws11{word-spacing:-1.088000pt;}
.ws14{word-spacing:-1.013333pt;}
.ws12{word-spacing:-0.861333pt;}
.ws13{word-spacing:-0.816000pt;}
.ws19{word-spacing:-0.760000pt;}
.ws1c{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.213333pt;}
.ws8{word-spacing:0.000000pt;}
.ws17{word-spacing:0.152000pt;}
.wsc{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.426667pt;}
.ws15{word-spacing:1.469333pt;}
.ws16{word-spacing:1.570667pt;}
.ws1a{word-spacing:2.090667pt;}
.wsf{word-spacing:2.493333pt;}
.wsb{word-spacing:3.712000pt;}
.wsa{word-spacing:4.906667pt;}
._2{margin-left:-11.652267pt;}
._1{margin-left:-4.076800pt;}
._0{margin-left:-1.306667pt;}
._3{width:1.001600pt;}
._4{width:19.422827pt;}
.fs8{font-size:29.333333pt;}
.fsc{font-size:29.538667pt;}
.fsd{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsb{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:15.666933pt;}
.yc{bottom:25.000267pt;}
.y1{bottom:39.154800pt;}
.yb{bottom:94.488133pt;}
.ya{bottom:108.488133pt;}
.y9{bottom:122.488133pt;}
.y26{bottom:166.299200pt;}
.y25{bottom:180.299200pt;}
.y24{bottom:194.299200pt;}
.y23{bottom:208.299200pt;}
.y22{bottom:226.739200pt;}
.y21{bottom:244.518667pt;}
.y20{bottom:294.132533pt;}
.y1f{bottom:310.799200pt;}
.y1e{bottom:327.465867pt;}
.y1d{bottom:344.132533pt;}
.y1c{bottom:360.799200pt;}
.y1b{bottom:377.465867pt;}
.y1a{bottom:413.030267pt;}
.y16{bottom:458.648933pt;}
.y15{bottom:493.546533pt;}
.y14{bottom:508.346533pt;}
.y13{bottom:523.146533pt;}
.y12{bottom:537.946533pt;}
.y11{bottom:552.746533pt;}
.y10{bottom:567.546533pt;}
.yf{bottom:582.346533pt;}
.ye{bottom:609.336000pt;}
.y19{bottom:646.662133pt;}
.y18{bottom:661.328800pt;}
.y17{bottom:679.775067pt;}
.y4{bottom:728.068933pt;}
.y3{bottom:753.627867pt;}
.y2{bottom:776.294533pt;}
.y8{bottom:832.492800pt;}
.y7{bottom:850.578667pt;}
.y6{bottom:851.645333pt;}
.y5{bottom:855.778667pt;}
.hb{height:21.442667pt;}
.h8{height:25.152000pt;}
.h11{height:28.232747pt;}
.h7{height:29.792000pt;}
.ha{height:31.189333pt;}
.he{height:37.037333pt;}
.h9{height:38.741333pt;}
.hc{height:40.432000pt;}
.hd{height:41.162667pt;}
.h2{height:42.560000pt;}
.h10{height:46.005333pt;}
.h4{height:46.816000pt;}
.hf{height:53.200000pt;}
.h3{height:59.584000pt;}
.h6{height:59.658667pt;}
.h5{height:76.608000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:75.590533pt;}
.xc{left:77.480267pt;}
.x12{left:79.370000pt;}
.x2{left:81.541200pt;}
.xa{left:86.929200pt;}
.x4{left:94.035067pt;}
.x13{left:102.047200pt;}
.xe{left:113.385867pt;}
.x1{left:130.478933pt;}
.xb{left:144.965467pt;}
.x3{left:247.820533pt;}
.x5{left:407.811067pt;}
.x9{left:430.123333pt;}
.x11{left:438.863867pt;}
.x10{left:442.916933pt;}
.xf{left:466.710933pt;}
.x6{left:485.805467pt;}
.x7{left:490.472133pt;}
.x8{left:504.028000pt;}
}




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