
    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_55c15e4e0a15114cf9bfac1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d59a8b33310a90987655ff8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_74a181eb000cedd5849f1705.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_56b0e02b3b0c169ca7c56e27.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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);}
.v5{vertical-align:-41.040000px;}
.v7{vertical-align:-26.640000px;}
.v3{vertical-align:-23.040000px;}
.v1{vertical-align:-20.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.160000px;}
.v4{vertical-align:28.800000px;}
.v2{vertical-align:115.200000px;}
.ls6{letter-spacing:-0.350400px;}
.ls9{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.110016px;}
.lsa{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.245376px;}
.ls5{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.325440px;}
.ls2{letter-spacing:51.984000px;}
.ls3{letter-spacing:52.128000px;}
.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:-108.000000px;}
.wse{word-spacing:-50.040000px;}
.wsa{word-spacing:-30.064032px;}
.ws9{word-spacing:-30.024000px;}
.ws7{word-spacing:-26.621280px;}
.wsd{word-spacing:-23.458752px;}
.ws3{word-spacing:-23.418720px;}
.ws5{word-spacing:-23.068320px;}
.ws6{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.016000px;}
.wsc{word-spacing:-18.305520px;}
.ws8{word-spacing:-17.814240px;}
.ws4{word-spacing:-15.612480px;}
.wsb{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-7.272000px;}
._4{margin-left:-4.316832px;}
._0{margin-left:-2.379168px;}
._5{margin-left:-1.296000px;}
._2{width:1.009584px;}
._1{width:2.054736px;}
._3{width:3.187440px;}
._7{width:489.268800px;}
.fc7{color:transparent;}
.fc5{color:rgb(0,134,121);}
.fc4{color:rgb(0,157,219);}
.fc2{color:rgb(0,161,107);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(90,90,90);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(87,87,87);}
.fs11{font-size:7.200000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:48.240000px;}
.fsc{font-size:56.160000px;}
.fsf{font-size:64.080000px;}
.fs12{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fsb{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fs10{font-size:112.464000px;}
.fsd{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs6{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs14{font-size:180.000000px;}
.fs1{font-size:210.240000px;}
.fs2{font-size:210.384000px;}
.y0{bottom:0.000000px;}
.y1{bottom:10.044000px;}
.y32{bottom:23.760000px;}
.y3a{bottom:43.596000px;}
.ya{bottom:43.632000px;}
.y7{bottom:129.888000px;}
.y38{bottom:138.780000px;}
.y11{bottom:141.516000px;}
.y10{bottom:163.155000px;}
.y37{bottom:163.980000px;}
.y1d{bottom:179.565000px;}
.y2f{bottom:181.770000px;}
.y28{bottom:183.390000px;}
.yf{bottom:184.755000px;}
.y29{bottom:185.145000px;}
.y36{bottom:189.180000px;}
.y2e{bottom:206.970000px;}
.y1c{bottom:208.365000px;}
.y31{bottom:209.370000px;}
.ye{bottom:210.855000px;}
.y35{bottom:214.410000px;}
.y27{bottom:215.790000px;}
.y1a{bottom:217.005000px;}
.y25{bottom:217.545000px;}
.yd{bottom:232.455000px;}
.y6{bottom:233.535000px;}
.y1b{bottom:237.165000px;}
.y34{bottom:248.610000px;}
.y19{bottom:253.005000px;}
.yc{bottom:258.555000px;}
.y5{bottom:265.935000px;}
.yb{bottom:280.155000px;}
.y26{bottom:280.590000px;}
.y24{bottom:282.345000px;}
.y2d{bottom:283.035000px;}
.y18{bottom:289.005000px;}
.y33{bottom:290.730000px;}
.y4{bottom:298.365000px;}
.y2c{bottom:308.235000px;}
.y17{bottom:325.050000px;}
.y3{bottom:356.505000px;}
.y16{bottom:361.050000px;}
.y39{bottom:370.800000px;}
.y2b{bottom:384.300000px;}
.y2a{bottom:409.500000px;}
.y15{bottom:412.665000px;}
.y2{bottom:419.505000px;}
.y1e{bottom:431.250000px;}
.y23{bottom:443.415000px;}
.y14{bottom:458.070000px;}
.y22{bottom:468.615000px;}
.y21{bottom:493.845000px;}
.y30{bottom:498.165000px;}
.y13{bottom:503.430000px;}
.y20{bottom:519.045000px;}
.y12{bottom:538.950000px;}
.y1f{bottom:574.995000px;}
.y9{bottom:685.770000px;}
.y8{bottom:736.170000px;}
.h11{height:5.466797px;}
.h10{height:25.380000px;}
.h1{height:37.546875px;}
.h9{height:50.312812px;}
.h12{height:69.086250px;}
.ha{height:75.093750px;}
.hb{height:75.243937px;}
.hc{height:87.859687px;}
.h13{height:88.009875px;}
.h6{height:99.874688px;}
.h5{height:112.640625px;}
.h4{height:112.790813px;}
.hd{height:125.406562px;}
.he{height:125.556750px;}
.h7{height:174.968437px;}
.h8{height:175.118625px;}
.h14{height:187.734375px;}
.hf{height:215.074687px;}
.h2{height:219.273750px;}
.h3{height:219.423938px;}
.h0{height:810.000000px;}
.w2{width:391.395000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3{left:43.883979px;}
.x8{left:64.583979px;}
.x20{left:65.699979px;}
.x9{left:85.859979px;}
.x1d{left:109.727979px;}
.x15{left:152.534979px;}
.xa{left:153.869979px;}
.x1c{left:159.044979px;}
.x10{left:184.784979px;}
.x1e{left:190.364979px;}
.x13{left:256.214979px;}
.x5{left:538.349979px;}
.x6{left:559.589979px;}
.x16{left:583.454979px;}
.x12{left:584.969979px;}
.x11{left:600.089979px;}
.x7{left:605.624979px;}
.x1a{left:619.199979px;}
.x14{left:643.784979px;}
.x1b{left:667.619979px;}
.x1f{left:839.549979px;}
.x2{left:932.729979px;}
.xe{left:975.314979px;}
.xf{left:986.114979px;}
.xb{left:1012.109979px;}
.x17{left:1017.434979px;}
.xc{left:1033.349979px;}
.x19{left:1044.509979px;}
.x18{left:1101.389979px;}
.xd{left:1146.704979px;}
.x1{left:1271.264979px;}
.x4{left:1389.524979px;}
.x21{left:1433.444979px;}
@media print{
.v5{vertical-align:-36.480000pt;}
.v7{vertical-align:-23.680000pt;}
.v3{vertical-align:-20.480000pt;}
.v1{vertical-align:-17.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.920000pt;}
.v4{vertical-align:25.600000pt;}
.v2{vertical-align:102.400000pt;}
.ls6{letter-spacing:-0.311467pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.097792pt;}
.lsa{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.218112pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.289280pt;}
.ls2{letter-spacing:46.208000pt;}
.ls3{letter-spacing:46.336000pt;}
.ws0{word-spacing:-96.000000pt;}
.wse{word-spacing:-44.480000pt;}
.wsa{word-spacing:-26.723584pt;}
.ws9{word-spacing:-26.688000pt;}
.ws7{word-spacing:-23.663360pt;}
.wsd{word-spacing:-20.852224pt;}
.ws3{word-spacing:-20.816640pt;}
.ws5{word-spacing:-20.505173pt;}
.ws6{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.792000pt;}
.wsc{word-spacing:-16.271573pt;}
.ws8{word-spacing:-15.834880pt;}
.ws4{word-spacing:-13.877760pt;}
.wsb{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-6.464000pt;}
._4{margin-left:-3.837184pt;}
._0{margin-left:-2.114816pt;}
._5{margin-left:-1.152000pt;}
._2{width:0.897408pt;}
._1{width:1.826432pt;}
._3{width:2.833280pt;}
._7{width:434.905600pt;}
.fs11{font-size:6.400000pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:42.880000pt;}
.fsc{font-size:49.920000pt;}
.fsf{font-size:56.960000pt;}
.fs12{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fsb{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fs10{font-size:99.968000pt;}
.fsd{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs6{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs14{font-size:160.000000pt;}
.fs1{font-size:186.880000pt;}
.fs2{font-size:187.008000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:8.928000pt;}
.y32{bottom:21.120000pt;}
.y3a{bottom:38.752000pt;}
.ya{bottom:38.784000pt;}
.y7{bottom:115.456000pt;}
.y38{bottom:123.360000pt;}
.y11{bottom:125.792000pt;}
.y10{bottom:145.026667pt;}
.y37{bottom:145.760000pt;}
.y1d{bottom:159.613333pt;}
.y2f{bottom:161.573333pt;}
.y28{bottom:163.013333pt;}
.yf{bottom:164.226667pt;}
.y29{bottom:164.573333pt;}
.y36{bottom:168.160000pt;}
.y2e{bottom:183.973333pt;}
.y1c{bottom:185.213333pt;}
.y31{bottom:186.106667pt;}
.ye{bottom:187.426667pt;}
.y35{bottom:190.586667pt;}
.y27{bottom:191.813333pt;}
.y1a{bottom:192.893333pt;}
.y25{bottom:193.373333pt;}
.yd{bottom:206.626667pt;}
.y6{bottom:207.586667pt;}
.y1b{bottom:210.813333pt;}
.y34{bottom:220.986667pt;}
.y19{bottom:224.893333pt;}
.yc{bottom:229.826667pt;}
.y5{bottom:236.386667pt;}
.yb{bottom:249.026667pt;}
.y26{bottom:249.413333pt;}
.y24{bottom:250.973333pt;}
.y2d{bottom:251.586667pt;}
.y18{bottom:256.893333pt;}
.y33{bottom:258.426667pt;}
.y4{bottom:265.213333pt;}
.y2c{bottom:273.986667pt;}
.y17{bottom:288.933333pt;}
.y3{bottom:316.893333pt;}
.y16{bottom:320.933333pt;}
.y39{bottom:329.600000pt;}
.y2b{bottom:341.600000pt;}
.y2a{bottom:364.000000pt;}
.y15{bottom:366.813333pt;}
.y2{bottom:372.893333pt;}
.y1e{bottom:383.333333pt;}
.y23{bottom:394.146667pt;}
.y14{bottom:407.173333pt;}
.y22{bottom:416.546667pt;}
.y21{bottom:438.973333pt;}
.y30{bottom:442.813333pt;}
.y13{bottom:447.493333pt;}
.y20{bottom:461.373333pt;}
.y12{bottom:479.066667pt;}
.y1f{bottom:511.106667pt;}
.y9{bottom:609.573333pt;}
.y8{bottom:654.373333pt;}
.h11{height:4.859375pt;}
.h10{height:22.560000pt;}
.h1{height:33.375000pt;}
.h9{height:44.722500pt;}
.h12{height:61.410000pt;}
.ha{height:66.750000pt;}
.hb{height:66.883500pt;}
.hc{height:78.097500pt;}
.h13{height:78.231000pt;}
.h6{height:88.777500pt;}
.h5{height:100.125000pt;}
.h4{height:100.258500pt;}
.hd{height:111.472500pt;}
.he{height:111.606000pt;}
.h7{height:155.527500pt;}
.h8{height:155.661000pt;}
.h14{height:166.875000pt;}
.hf{height:191.177500pt;}
.h2{height:194.910000pt;}
.h3{height:195.043500pt;}
.h0{height:720.000000pt;}
.w2{width:347.906667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3{left:39.007981pt;}
.x8{left:57.407981pt;}
.x20{left:58.399981pt;}
.x9{left:76.319981pt;}
.x1d{left:97.535981pt;}
.x15{left:135.586648pt;}
.xa{left:136.773314pt;}
.x1c{left:141.373314pt;}
.x10{left:164.253314pt;}
.x1e{left:169.213314pt;}
.x13{left:227.746648pt;}
.x5{left:478.533314pt;}
.x6{left:497.413314pt;}
.x16{left:518.626648pt;}
.x12{left:519.973314pt;}
.x11{left:533.413314pt;}
.x7{left:538.333314pt;}
.x1a{left:550.399981pt;}
.x14{left:572.253314pt;}
.x1b{left:593.439981pt;}
.x1f{left:746.266648pt;}
.x2{left:829.093314pt;}
.xe{left:866.946648pt;}
.xf{left:876.546648pt;}
.xb{left:899.653314pt;}
.x17{left:904.386648pt;}
.xc{left:918.533314pt;}
.x19{left:928.453314pt;}
.x18{left:979.013314pt;}
.xd{left:1019.293314pt;}
.x1{left:1130.013314pt;}
.x4{left:1235.133314pt;}
.x21{left:1274.173314pt;}
}




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