
    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_8d4b634c66755ad326548245.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.889000;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_a73515e8457ed3309efec7f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_ff20de4ddf78752272b06585.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_f9b19861fe74887f42190716.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_f10a7e8062c193db9ae5dc37.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_77d8db04a33b48c4a48398bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0d7049bda10edcddbbfb4b49.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.383000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:35.148288px;}
.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;}
}
.ws1b{word-spacing:-19.510886px;}
.ws3{word-spacing:-0.903273px;}
.wsd{word-spacing:-0.573850px;}
.ws13{word-spacing:0.000000px;}
.ws9{word-spacing:0.994910px;}
.ws20{word-spacing:1.291162px;}
.ws5{word-spacing:2.827639px;}
.ws6{word-spacing:3.220366px;}
.ws7{word-spacing:3.613094px;}
.ws10{word-spacing:3.873485px;}
.ws15{word-spacing:3.945216px;}
.ws11{word-spacing:4.016947px;}
.ws1a{word-spacing:4.232141px;}
.ws1{word-spacing:4.648169px;}
.ws2{word-spacing:4.734246px;}
.wsa{word-spacing:4.987641px;}
.ws8{word-spacing:6.820369px;}
.ws21{word-spacing:7.244851px;}
.ws4{word-spacing:7.802188px;}
.ws23{word-spacing:8.392550px;}
.wsb{word-spacing:8.849462px;}
.wsf{word-spacing:8.894669px;}
.ws16{word-spacing:11.261798px;}
.wse{word-spacing:12.983347px;}
.ws19{word-spacing:13.126810px;}
.ws14{word-spacing:13.557197px;}
.ws18{word-spacing:25.034189px;}
.ws1d{word-spacing:28.692480px;}
.ws1e{word-spacing:29.266330px;}
.ws1f{word-spacing:30.198835px;}
.ws12{word-spacing:30.270566px;}
.ws17{word-spacing:31.776922px;}
.ws1c{word-spacing:32.192873px;}
.ws0{word-spacing:37.316475px;}
.wsc{word-spacing:38.631358px;}
.ws22{word-spacing:116.100658px;}
._0{margin-left:-9.794025px;}
._16{margin-left:-8.091257px;}
._2{margin-left:-6.972253px;}
._6{margin-left:-5.432732px;}
._1{margin-left:-3.223350px;}
._4{margin-left:-1.338742px;}
._d{width:1.123548px;}
._3{width:2.324084px;}
._c{width:4.080044px;}
._5{width:18.310189px;}
._9{width:20.322183px;}
._8{width:28.306037px;}
._15{width:30.969039px;}
._a{width:32.658322px;}
._f{width:33.996035px;}
._e{width:35.119583px;}
._7{width:41.203225px;}
._14{width:43.038600px;}
._17{width:44.540576px;}
._10{width:46.955231px;}
._11{width:53.324013px;}
._12{width:59.947686px;}
._13{width:96.836850px;}
._b{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:63.168000px;}
.y1a{bottom:142.516500px;}
.y19{bottom:186.862500px;}
.y4e{bottom:208.645500px;}
.y18{bottom:226.725000px;}
.y31{bottom:232.318500px;}
.y4d{bottom:233.565000px;}
.y61{bottom:236.316000px;}
.y45{bottom:242.568000px;}
.y30{bottom:257.238000px;}
.y60{bottom:261.235500px;}
.y17{bottom:266.589000px;}
.y4c{bottom:277.911000px;}
.y44{bottom:282.430500px;}
.y5f{bottom:286.155000px;}
.y2f{bottom:299.916000px;}
.y16{bottom:306.451500px;}
.y4b{bottom:317.773500px;}
.y43{bottom:322.294500px;}
.y5e{bottom:328.831500px;}
.y15{bottom:350.797500px;}
.y4a{bottom:357.636000px;}
.y42{bottom:362.157000px;}
.y2e{bottom:364.747500px;}
.y14{bottom:375.717000px;}
.y2d{bottom:389.665500px;}
.y5d{bottom:393.663000px;}
.y49{bottom:397.498500px;}
.y13{bottom:400.635000px;}
.y41{bottom:402.019500px;}
.y12{bottom:425.554500px;}
.y5c{bottom:433.527000px;}
.y2c{bottom:434.011500px;}
.y48{bottom:441.844500px;}
.y40{bottom:441.882000px;}
.y11{bottom:450.472500px;}
.y47{bottom:466.764000px;}
.y5b{bottom:473.389500px;}
.y2b{bottom:473.875500px;}
.y10{bottom:475.392000px;}
.y3f{bottom:478.383000px;}
.y46{bottom:509.442000px;}
.y5a{bottom:513.252000px;}
.y2a{bottom:513.738000px;}
.yf{bottom:518.070000px;}
.y3e{bottom:534.411000px;}
.y59{bottom:553.114500px;}
.y29{bottom:553.600500px;}
.y3d{bottom:574.273500px;}
.ye{bottom:582.901500px;}
.y58{bottom:592.978500px;}
.y28{bottom:593.463000px;}
.yd{bottom:606.273000px;}
.y3c{bottom:614.136000px;}
.yc{bottom:629.646000px;}
.y57{bottom:635.655000px;}
.y27{bottom:637.809000px;}
.yb{bottom:653.017500px;}
.y3b{bottom:653.998500px;}
.ya{bottom:676.390500px;}
.y26{bottom:680.487000px;}
.y3a{bottom:693.862500px;}
.y9{bottom:699.762000px;}
.y56{bottom:700.486500px;}
.y8{bottom:723.135000px;}
.y39{bottom:733.725000px;}
.y55{bottom:740.350500px;}
.y25{bottom:745.318500px;}
.y7{bottom:746.506500px;}
.y6{bottom:769.879500px;}
.y38{bottom:770.224500px;}
.y24{bottom:770.238000px;}
.y54{bottom:780.213000px;}
.y5{bottom:793.251000px;}
.y23{bottom:810.100500px;}
.y53{bottom:820.075500px;}
.y37{bottom:826.252500px;}
.y4{bottom:826.641000px;}
.y22{bottom:849.963000px;}
.y52{bottom:859.938000px;}
.y36{bottom:866.115000px;}
.y21{bottom:889.827000px;}
.y3{bottom:895.779000px;}
.y51{bottom:899.802000px;}
.y35{bottom:905.977500px;}
.y20{bottom:929.689500px;}
.y50{bottom:939.664500px;}
.y34{bottom:945.841500px;}
.y2{bottom:953.052000px;}
.y1f{bottom:969.552000px;}
.y4f{bottom:979.527000px;}
.y1{bottom:983.985000px;}
.y33{bottom:985.704000px;}
.y1e{bottom:994.471500px;}
.y1d{bottom:1019.389500px;}
.y32{bottom:1025.566500px;}
.y1c{bottom:1062.067500px;}
.h3{height:45.687311px;}
.h4{height:46.145493px;}
.h6{height:53.798400px;}
.h7{height:60.254040px;}
.h2{height:64.557900px;}
.h5{height:72.304680px;}
.h1{height:86.038650px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:108.000000px;}
.x8{left:134.338500px;}
.x6{left:151.897500px;}
.x2{left:162.795000px;}
.x5{left:176.443500px;}
.x3{left:293.313000px;}
.x1{left:332.344500px;}
.x4{left:422.998500px;}
.x9{left:454.611000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:31.242923pt;}
.ws1b{word-spacing:-17.343010pt;}
.ws3{word-spacing:-0.802910pt;}
.wsd{word-spacing:-0.510089pt;}
.ws13{word-spacing:0.000000pt;}
.ws9{word-spacing:0.884364pt;}
.ws20{word-spacing:1.147699pt;}
.ws5{word-spacing:2.513457pt;}
.ws6{word-spacing:2.862548pt;}
.ws7{word-spacing:3.211639pt;}
.ws10{word-spacing:3.443098pt;}
.ws15{word-spacing:3.506859pt;}
.ws11{word-spacing:3.570620pt;}
.ws1a{word-spacing:3.761903pt;}
.ws1{word-spacing:4.131706pt;}
.ws2{word-spacing:4.208219pt;}
.wsa{word-spacing:4.433458pt;}
.ws8{word-spacing:6.062551pt;}
.ws21{word-spacing:6.439868pt;}
.ws4{word-spacing:6.935279pt;}
.ws23{word-spacing:7.460045pt;}
.wsb{word-spacing:7.866188pt;}
.wsf{word-spacing:7.906372pt;}
.ws16{word-spacing:10.010487pt;}
.wse{word-spacing:11.540753pt;}
.ws19{word-spacing:11.668275pt;}
.ws14{word-spacing:12.050842pt;}
.ws18{word-spacing:22.252612pt;}
.ws1d{word-spacing:25.504427pt;}
.ws1e{word-spacing:26.014515pt;}
.ws1f{word-spacing:26.843409pt;}
.ws12{word-spacing:26.907170pt;}
.ws17{word-spacing:28.246153pt;}
.ws1c{word-spacing:28.615887pt;}
.ws0{word-spacing:33.170200pt;}
.wsc{word-spacing:34.338985pt;}
.ws22{word-spacing:103.200585pt;}
._0{margin-left:-8.705800pt;}
._16{margin-left:-7.192228pt;}
._2{margin-left:-6.197558pt;}
._6{margin-left:-4.829095pt;}
._1{margin-left:-2.865200pt;}
._4{margin-left:-1.189993pt;}
._d{width:0.998709pt;}
._3{width:2.065853pt;}
._c{width:3.626706pt;}
._5{width:16.275724pt;}
._9{width:18.064163pt;}
._8{width:25.160922pt;}
._15{width:27.528035pt;}
._a{width:29.029619pt;}
._f{width:30.218698pt;}
._e{width:31.217407pt;}
._7{width:36.625089pt;}
._14{width:38.256533pt;}
._17{width:39.591623pt;}
._10{width:41.737983pt;}
._11{width:47.399123pt;}
._12{width:53.286832pt;}
._13{width:86.077200pt;}
._b{width:103.292400pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:56.149333pt;}
.y1a{bottom:126.681333pt;}
.y19{bottom:166.100000pt;}
.y4e{bottom:185.462667pt;}
.y18{bottom:201.533333pt;}
.y31{bottom:206.505333pt;}
.y4d{bottom:207.613333pt;}
.y61{bottom:210.058667pt;}
.y45{bottom:215.616000pt;}
.y30{bottom:228.656000pt;}
.y60{bottom:232.209333pt;}
.y17{bottom:236.968000pt;}
.y4c{bottom:247.032000pt;}
.y44{bottom:251.049333pt;}
.y5f{bottom:254.360000pt;}
.y2f{bottom:266.592000pt;}
.y16{bottom:272.401333pt;}
.y4b{bottom:282.465333pt;}
.y43{bottom:286.484000pt;}
.y5e{bottom:292.294667pt;}
.y15{bottom:311.820000pt;}
.y4a{bottom:317.898667pt;}
.y42{bottom:321.917333pt;}
.y2e{bottom:324.220000pt;}
.y14{bottom:333.970667pt;}
.y2d{bottom:346.369333pt;}
.y5d{bottom:349.922667pt;}
.y49{bottom:353.332000pt;}
.y13{bottom:356.120000pt;}
.y41{bottom:357.350667pt;}
.y12{bottom:378.270667pt;}
.y5c{bottom:385.357333pt;}
.y2c{bottom:385.788000pt;}
.y48{bottom:392.750667pt;}
.y40{bottom:392.784000pt;}
.y11{bottom:400.420000pt;}
.y47{bottom:414.901333pt;}
.y5b{bottom:420.790667pt;}
.y2b{bottom:421.222667pt;}
.y10{bottom:422.570667pt;}
.y3f{bottom:425.229333pt;}
.y46{bottom:452.837333pt;}
.y5a{bottom:456.224000pt;}
.y2a{bottom:456.656000pt;}
.yf{bottom:460.506667pt;}
.y3e{bottom:475.032000pt;}
.y59{bottom:491.657333pt;}
.y29{bottom:492.089333pt;}
.y3d{bottom:510.465333pt;}
.ye{bottom:518.134667pt;}
.y58{bottom:527.092000pt;}
.y28{bottom:527.522667pt;}
.yd{bottom:538.909333pt;}
.y3c{bottom:545.898667pt;}
.yc{bottom:559.685333pt;}
.y57{bottom:565.026667pt;}
.y27{bottom:566.941333pt;}
.yb{bottom:580.460000pt;}
.y3b{bottom:581.332000pt;}
.ya{bottom:601.236000pt;}
.y26{bottom:604.877333pt;}
.y3a{bottom:616.766667pt;}
.y9{bottom:622.010667pt;}
.y56{bottom:622.654667pt;}
.y8{bottom:642.786667pt;}
.y39{bottom:652.200000pt;}
.y55{bottom:658.089333pt;}
.y25{bottom:662.505333pt;}
.y7{bottom:663.561333pt;}
.y6{bottom:684.337333pt;}
.y38{bottom:684.644000pt;}
.y24{bottom:684.656000pt;}
.y54{bottom:693.522667pt;}
.y5{bottom:705.112000pt;}
.y23{bottom:720.089333pt;}
.y53{bottom:728.956000pt;}
.y37{bottom:734.446667pt;}
.y4{bottom:734.792000pt;}
.y22{bottom:755.522667pt;}
.y52{bottom:764.389333pt;}
.y36{bottom:769.880000pt;}
.y21{bottom:790.957333pt;}
.y3{bottom:796.248000pt;}
.y51{bottom:799.824000pt;}
.y35{bottom:805.313333pt;}
.y20{bottom:826.390667pt;}
.y50{bottom:835.257333pt;}
.y34{bottom:840.748000pt;}
.y2{bottom:847.157333pt;}
.y1f{bottom:861.824000pt;}
.y4f{bottom:870.690667pt;}
.y1{bottom:874.653333pt;}
.y33{bottom:876.181333pt;}
.y1e{bottom:883.974667pt;}
.y1d{bottom:906.124000pt;}
.y32{bottom:911.614667pt;}
.y1c{bottom:944.060000pt;}
.h3{height:40.610943pt;}
.h4{height:41.018216pt;}
.h6{height:47.820800pt;}
.h7{height:53.559147pt;}
.h2{height:57.384800pt;}
.h5{height:64.270827pt;}
.h1{height:76.478800pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.000000pt;}
.x8{left:119.412000pt;}
.x6{left:135.020000pt;}
.x2{left:144.706667pt;}
.x5{left:156.838667pt;}
.x3{left:260.722667pt;}
.x1{left:295.417333pt;}
.x4{left:375.998667pt;}
.x9{left:404.098667pt;}
}




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