
    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_028e99c862b44febc2b55fe5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_7b18feea22db4bcbe642f36e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026367;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_ddf69714baeba970abd57c7a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a693a92bd2a8e570b272a49c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022461;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_05be8ab96b0018e03f15d6cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_5797a805244452378f36e5cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-17.496000px;}
.ws4{word-spacing:-16.038000px;}
.ws1{word-spacing:-14.580000px;}
.ws7{word-spacing:-2.820000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:5.220000px;}
.ws8{word-spacing:7.380000px;}
.wsa{word-spacing:8.100000px;}
.ws6{word-spacing:12.300000px;}
.wsb{word-spacing:20.400000px;}
.ws0{word-spacing:68.508000px;}
.ws3{word-spacing:69.366000px;}
._4{margin-left:-6.724800px;}
._6{margin-left:-4.052400px;}
._1{margin-left:-2.678029px;}
._0{margin-left:-1.217286px;}
._5{width:1.828200px;}
._2{width:6.342060px;}
._3{width:84.942000px;}
.fc5{color:rgb(5,6,7);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(52,99,172);}
.fc4{color:transparent;}
.fc1{color:rgb(21,48,79);}
.fc0{color:rgb(238,116,68);}
.fs7{font-size:32.905200px;}
.fs6{font-size:51.837000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:121.728600px;}
.fs3{font-size:188.656800px;}
.y0{bottom:0.000000px;}
.y50{bottom:12.493680px;}
.y63{bottom:20.645550px;}
.y4d{bottom:21.199200px;}
.y4f{bottom:22.365240px;}
.y4e{bottom:32.236800px;}
.y9{bottom:37.661100px;}
.y23{bottom:54.643950px;}
.y8{bottom:58.665600px;}
.y2c{bottom:65.121450px;}
.y22{bottom:74.146950px;}
.y7{bottom:79.670100px;}
.y2b{bottom:84.624450px;}
.y4c{bottom:86.213400px;}
.y21{bottom:93.649950px;}
.y43{bottom:97.086300px;}
.y6{bottom:100.674600px;}
.y2a{bottom:104.127450px;}
.y4b{bottom:104.213400px;}
.y20{bottom:113.152950px;}
.y42{bottom:116.886300px;}
.y5{bottom:121.679100px;}
.y4a{bottom:122.213400px;}
.y29{bottom:123.630450px;}
.y1f{bottom:132.655950px;}
.y49{bottom:140.213400px;}
.y4{bottom:142.683600px;}
.y28{bottom:143.133450px;}
.y41{bottom:145.678800px;}
.y1e{bottom:152.158950px;}
.y48{bottom:158.213400px;}
.y27{bottom:162.636450px;}
.y3{bottom:163.688100px;}
.y40{bottom:165.478800px;}
.y1d{bottom:171.661950px;}
.y47{bottom:176.213400px;}
.y26{bottom:182.139450px;}
.y1c{bottom:191.164950px;}
.y46{bottom:194.213400px;}
.y3f{bottom:194.271300px;}
.y25{bottom:210.634950px;}
.y1b{bottom:210.667950px;}
.y3e{bottom:214.071300px;}
.y45{bottom:229.045950px;}
.y24{bottom:230.137950px;}
.y1a{bottom:230.170950px;}
.y44{bottom:254.890200px;}
.y32{bottom:262.557150px;}
.y19{bottom:272.907750px;}
.y6c{bottom:336.544950px;}
.y30{bottom:355.669050px;}
.y6b{bottom:356.044950px;}
.y2f{bottom:375.469050px;}
.y6a{bottom:375.544950px;}
.y6d{bottom:395.044950px;}
.y2e{bottom:395.269050px;}
.y69{bottom:399.544950px;}
.y68{bottom:419.044950px;}
.y2d{bottom:424.060500px;}
.y67{bottom:438.544950px;}
.y62{bottom:467.639700px;}
.y18{bottom:514.263300px;}
.y5d{bottom:534.035100px;}
.y17{bottom:534.063300px;}
.y5c{bottom:553.535100px;}
.y16{bottom:562.855800px;}
.y5b{bottom:573.035100px;}
.y15{bottom:582.655800px;}
.y5a{bottom:592.535100px;}
.y14{bottom:611.448300px;}
.y61{bottom:612.035100px;}
.y59{bottom:621.035100px;}
.y13{bottom:631.248300px;}
.y60{bottom:631.535100px;}
.y58{bottom:640.535100px;}
.y5f{bottom:651.035100px;}
.y12{bottom:651.048300px;}
.y57{bottom:660.035100px;}
.y2{bottom:666.849000px;}
.y5e{bottom:670.535100px;}
.y56{bottom:679.535100px;}
.ya{bottom:690.443850px;}
.y55{bottom:699.035100px;}
.y54{bottom:718.535100px;}
.y53{bottom:738.035100px;}
.y52{bottom:757.535100px;}
.ye{bottom:771.736800px;}
.y51{bottom:785.387700px;}
.yd{bottom:789.736800px;}
.yc{bottom:818.537100px;}
.yb{bottom:836.537100px;}
.y1{bottom:865.700700px;}
.y3d{bottom:866.926800px;}
.y3c{bottom:891.231300px;}
.y3b{bottom:923.026800px;}
.y3a{bottom:947.331300px;}
.y11{bottom:950.715900px;}
.y31{bottom:951.832050px;}
.y39{bottom:967.131300px;}
.y38{bottom:998.926800px;}
.y37{bottom:1018.726800px;}
.y36{bottom:1038.526800px;}
.y35{bottom:1058.326800px;}
.y10{bottom:1063.899900px;}
.y34{bottom:1078.126800px;}
.y33{bottom:1097.926800px;}
.yf{bottom:1101.232950px;}
.y66{bottom:1136.359950px;}
.y65{bottom:1166.356950px;}
.y64{bottom:1196.353950px;}
.h10{height:23.724649px;}
.hf{height:37.374477px;}
.he{height:45.615234px;}
.h11{height:47.783203px;}
.h7{height:47.812500px;}
.hc{height:50.176758px;}
.h6{height:52.561523px;}
.h4{height:52.593750px;}
.ha{height:57.339844px;}
.hd{height:57.375000px;}
.h9{height:57.672000px;}
.h12{height:86.508000px;}
.h2{height:90.079164px;}
.hb{height:96.120000px;}
.h5{height:97.504609px;}
.h8{height:151.114097px;}
.h3{height:177.804000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:374.616900px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:44.704800px;}
.x10{left:47.462400px;}
.x9{left:51.606450px;}
.x13{left:58.760700px;}
.x11{left:71.469900px;}
.x12{left:78.125250px;}
.xc{left:96.175050px;}
.xe{left:137.953050px;}
.xb{left:164.020800px;}
.x6{left:189.378000px;}
.xf{left:193.267050px;}
.x5{left:195.476850px;}
.x15{left:206.510700px;}
.xd{left:259.970550px;}
.x14{left:387.710400px;}
.x16{left:462.542400px;}
.xa{left:465.252600px;}
.x2{left:482.348100px;}
.x7{left:489.400650px;}
.x3{left:493.340400px;}
.x8{left:509.342100px;}
.x4{left:520.340400px;}
.x17{left:595.146300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-15.552000pt;}
.ws4{word-spacing:-14.256000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws7{word-spacing:-2.506667pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:4.640000pt;}
.ws8{word-spacing:6.560000pt;}
.wsa{word-spacing:7.200000pt;}
.ws6{word-spacing:10.933333pt;}
.wsb{word-spacing:18.133333pt;}
.ws0{word-spacing:60.896000pt;}
.ws3{word-spacing:61.658667pt;}
._4{margin-left:-5.977600pt;}
._6{margin-left:-3.602133pt;}
._1{margin-left:-2.380470pt;}
._0{margin-left:-1.082032pt;}
._5{width:1.625067pt;}
._2{width:5.637387pt;}
._3{width:75.504000pt;}
.fs7{font-size:29.249067pt;}
.fs6{font-size:46.077333pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:108.203200pt;}
.fs3{font-size:167.694933pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:11.105493pt;}
.y63{bottom:18.351600pt;}
.y4d{bottom:18.843733pt;}
.y4f{bottom:19.880213pt;}
.y4e{bottom:28.654933pt;}
.y9{bottom:33.476533pt;}
.y23{bottom:48.572400pt;}
.y8{bottom:52.147200pt;}
.y2c{bottom:57.885733pt;}
.y22{bottom:65.908400pt;}
.y7{bottom:70.817867pt;}
.y2b{bottom:75.221733pt;}
.y4c{bottom:76.634133pt;}
.y21{bottom:83.244400pt;}
.y43{bottom:86.298933pt;}
.y6{bottom:89.488533pt;}
.y2a{bottom:92.557733pt;}
.y4b{bottom:92.634133pt;}
.y20{bottom:100.580400pt;}
.y42{bottom:103.898933pt;}
.y5{bottom:108.159200pt;}
.y4a{bottom:108.634133pt;}
.y29{bottom:109.893733pt;}
.y1f{bottom:117.916400pt;}
.y49{bottom:124.634133pt;}
.y4{bottom:126.829867pt;}
.y28{bottom:127.229733pt;}
.y41{bottom:129.492267pt;}
.y1e{bottom:135.252400pt;}
.y48{bottom:140.634133pt;}
.y27{bottom:144.565733pt;}
.y3{bottom:145.500533pt;}
.y40{bottom:147.092267pt;}
.y1d{bottom:152.588400pt;}
.y47{bottom:156.634133pt;}
.y26{bottom:161.901733pt;}
.y1c{bottom:169.924400pt;}
.y46{bottom:172.634133pt;}
.y3f{bottom:172.685600pt;}
.y25{bottom:187.231067pt;}
.y1b{bottom:187.260400pt;}
.y3e{bottom:190.285600pt;}
.y45{bottom:203.596400pt;}
.y24{bottom:204.567067pt;}
.y1a{bottom:204.596400pt;}
.y44{bottom:226.569067pt;}
.y32{bottom:233.384133pt;}
.y19{bottom:242.584667pt;}
.y6c{bottom:299.151067pt;}
.y30{bottom:316.150267pt;}
.y6b{bottom:316.484400pt;}
.y2f{bottom:333.750267pt;}
.y6a{bottom:333.817733pt;}
.y6d{bottom:351.151067pt;}
.y2e{bottom:351.350267pt;}
.y69{bottom:355.151067pt;}
.y68{bottom:372.484400pt;}
.y2d{bottom:376.942667pt;}
.y67{bottom:389.817733pt;}
.y62{bottom:415.679733pt;}
.y18{bottom:457.122933pt;}
.y5d{bottom:474.697867pt;}
.y17{bottom:474.722933pt;}
.y5c{bottom:492.031200pt;}
.y16{bottom:500.316267pt;}
.y5b{bottom:509.364533pt;}
.y15{bottom:517.916267pt;}
.y5a{bottom:526.697867pt;}
.y14{bottom:543.509600pt;}
.y61{bottom:544.031200pt;}
.y59{bottom:552.031200pt;}
.y13{bottom:561.109600pt;}
.y60{bottom:561.364533pt;}
.y58{bottom:569.364533pt;}
.y5f{bottom:578.697867pt;}
.y12{bottom:578.709600pt;}
.y57{bottom:586.697867pt;}
.y2{bottom:592.754667pt;}
.y5e{bottom:596.031200pt;}
.y56{bottom:604.031200pt;}
.ya{bottom:613.727867pt;}
.y55{bottom:621.364533pt;}
.y54{bottom:638.697867pt;}
.y53{bottom:656.031200pt;}
.y52{bottom:673.364533pt;}
.ye{bottom:685.988267pt;}
.y51{bottom:698.122400pt;}
.yd{bottom:701.988267pt;}
.yc{bottom:727.588533pt;}
.yb{bottom:743.588533pt;}
.y1{bottom:769.511733pt;}
.y3d{bottom:770.601600pt;}
.y3c{bottom:792.205600pt;}
.y3b{bottom:820.468267pt;}
.y3a{bottom:842.072267pt;}
.y11{bottom:845.080800pt;}
.y31{bottom:846.072933pt;}
.y39{bottom:859.672267pt;}
.y38{bottom:887.934933pt;}
.y37{bottom:905.534933pt;}
.y36{bottom:923.134933pt;}
.y35{bottom:940.734933pt;}
.y10{bottom:945.688800pt;}
.y34{bottom:958.334933pt;}
.y33{bottom:975.934933pt;}
.yf{bottom:978.873733pt;}
.y66{bottom:1010.097733pt;}
.y65{bottom:1036.761733pt;}
.y64{bottom:1063.425733pt;}
.h10{height:21.088577pt;}
.hf{height:33.221757pt;}
.he{height:40.546875pt;}
.h11{height:42.473958pt;}
.h7{height:42.500000pt;}
.hc{height:44.601562pt;}
.h6{height:46.721354pt;}
.h4{height:46.750000pt;}
.ha{height:50.968750pt;}
.hd{height:51.000000pt;}
.h9{height:51.264000pt;}
.h12{height:76.896000pt;}
.h2{height:80.070368pt;}
.hb{height:85.440000pt;}
.h5{height:86.670763pt;}
.h8{height:134.323642pt;}
.h3{height:158.048000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:332.992800pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:39.737600pt;}
.x10{left:42.188800pt;}
.x9{left:45.872400pt;}
.x13{left:52.231733pt;}
.x11{left:63.528800pt;}
.x12{left:69.444667pt;}
.xc{left:85.488933pt;}
.xe{left:122.624933pt;}
.xb{left:145.796267pt;}
.x6{left:168.336000pt;}
.xf{left:171.792933pt;}
.x5{left:173.757200pt;}
.x15{left:183.565067pt;}
.xd{left:231.084933pt;}
.x14{left:344.631467pt;}
.x16{left:411.148800pt;}
.xa{left:413.557867pt;}
.x2{left:428.753867pt;}
.x7{left:435.022800pt;}
.x3{left:438.524800pt;}
.x8{left:452.748533pt;}
.x4{left:462.524800pt;}
.x17{left:529.018933pt;}
}




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