
    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_3136775a479e06f3d48feaf1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fb1c98b350ac4e0d776f0b2f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_353e00d29553af391d647846.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_0bc76187f03df8017fcc1c42.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_04fcb0d7c43b7077aefff227.woff')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_8b705ce36a8053ce92e84883.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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;}
.lsd{letter-spacing:-7.620000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.918000px;}
.lse{letter-spacing:1.374000px;}
.lsc{letter-spacing:1.524000px;}
.ls2{letter-spacing:1.666500px;}
.lsf{letter-spacing:1.668000px;}
.ls4{letter-spacing:49.740000px;}
.ls1{letter-spacing:49.770000px;}
.ls5{letter-spacing:49.792500px;}
.ls3{letter-spacing:49.822500px;}
.ls7{letter-spacing:52.890000px;}
.ls6{letter-spacing:52.920000px;}
.ls8{letter-spacing:52.942500px;}
.lsa{letter-spacing:57.675000px;}
.ls9{letter-spacing:57.727500px;}
.lsb{letter-spacing:65.602500px;}
.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;}
}
.ws1{word-spacing:-86.868450px;}
.ws2{word-spacing:-64.093950px;}
.ws6{word-spacing:-46.370400px;}
.ws5{word-spacing:-46.328700px;}
.ws4{word-spacing:-40.115400px;}
.ws3{word-spacing:-40.073700px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-16.346400px;}
._9{margin-left:-15.078300px;}
._8{margin-left:-11.208600px;}
._d{margin-left:-9.900300px;}
._6{margin-left:-8.519400px;}
._c{margin-left:-6.389850px;}
._10{margin-left:-5.380500px;}
._4{margin-left:-4.325400px;}
._3{margin-left:-3.244500px;}
._0{margin-left:-1.946700px;}
._2{width:1.297800px;}
._1{width:3.244500px;}
._5{width:4.686000px;}
._7{width:5.803200px;}
._f{width:42.338250px;}
._11{width:47.016300px;}
._a{width:49.506900px;}
._e{width:50.955600px;}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:94.650000px;}
.fsc{font-size:121.650000px;}
.fs1{font-size:144.150000px;}
.fs3{font-size:144.300000px;}
.fsb{font-size:157.650000px;}
.fsa{font-size:157.800000px;}
.fs6{font-size:166.650000px;}
.fs5{font-size:166.800000px;}
.fs9{font-size:265.800000px;}
.fs4{font-size:265.950000px;}
.fs0{font-size:324.450000px;}
.fs8{font-size:360.450000px;}
.fs7{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y6{bottom:27.375000px;}
.y9{bottom:78.787500px;}
.y21{bottom:98.625000px;}
.y56{bottom:103.125000px;}
.y3f{bottom:105.000000px;}
.y2d{bottom:107.250000px;}
.y52{bottom:108.750000px;}
.y8{bottom:117.112500px;}
.y62{bottom:120.037500px;}
.y73{bottom:123.412500px;}
.y39{bottom:128.662500px;}
.y14{bottom:134.662500px;}
.y55{bottom:141.412500px;}
.y20{bottom:144.825000px;}
.y51{bottom:147.075000px;}
.y2c{bottom:150.075000px;}
.y47{bottom:153.825000px;}
.y6c{bottom:154.575000px;}
.y7{bottom:156.525000px;}
.y61{bottom:159.450000px;}
.y72{bottom:170.700000px;}
.y5b{bottom:174.105000px;}
.y13{bottom:175.245000px;}
.y50{bottom:187.605000px;}
.y38{bottom:188.370000px;}
.y1f{bottom:189.870000px;}
.y31{bottom:191.745000px;}
.y46{bottom:193.245000px;}
.y3e{bottom:196.230000px;}
.y60{bottom:197.730000px;}
.y6b{bottom:200.775000px;}
.y2b{bottom:206.400000px;}
.y12{bottom:214.650000px;}
.y71{bottom:218.025000px;}
.y5a{bottom:220.275000px;}
.y4f{bottom:223.650000px;}
.y37{bottom:226.695000px;}
.y68{bottom:231.195000px;}
.y17{bottom:231.375000px;}
.y30{bottom:234.570000px;}
.y54{bottom:234.945000px;}
.y45{bottom:240.570000px;}
.y5f{bottom:243.945000px;}
.y2a{bottom:249.195000px;}
.y1e{bottom:250.695000px;}
.y3d{bottom:254.850000px;}
.y6a{bottom:260.475000px;}
.y4e{bottom:260.850000px;}
.y59{bottom:265.350000px;}
.y11{bottom:270.975000px;}
.y36{bottom:272.850000px;}
.y70{bottom:278.850000px;}
.y5e{bottom:283.380000px;}
.y29{bottom:290.880000px;}
.y1d{bottom:295.755000px;}
.y63{bottom:296.520000px;}
.y16{bottom:296.970000px;}
.y4d{bottom:298.020000px;}
.y3c{bottom:301.005000px;}
.y44{bottom:301.395000px;}
.y69{bottom:306.645000px;}
.y10{bottom:310.425000px;}
.y5{bottom:312.300000px;}
.y35{bottom:321.300000px;}
.y5d{bottom:329.550000px;}
.y2f{bottom:333.675000px;}
.y6f{bottom:338.595000px;}
.y4c{bottom:339.705000px;}
.y3b{bottom:340.470000px;}
.y53{bottom:340.845000px;}
.y43{bottom:346.455000px;}
.y65{bottom:348.150000px;}
.y28{bottom:348.330000px;}
.y67{bottom:351.705000px;}
.y1c{bottom:356.580000px;}
.y4{bottom:366.375000px;}
.yf{bottom:366.750000px;}
.y5c{bottom:369.000000px;}
.y4b{bottom:374.625000px;}
.y2e{bottom:375.375000px;}
.y3a{bottom:378.750000px;}
.y34{bottom:382.125000px;}
.y27{bottom:391.155000px;}
.y15{bottom:393.855000px;}
.y6e{bottom:398.280000px;}
.y1b{bottom:401.655000px;}
.y42{bottom:407.280000px;}
.y66{bottom:412.530000px;}
.y58{bottom:416.280000px;}
.y4a{bottom:418.575000px;}
.y3{bottom:420.450000px;}
.y64{bottom:421.005000px;}
.ye{bottom:421.950000px;}
.y33{bottom:427.200000px;}
.y26{bottom:432.825000px;}
.y6d{bottom:445.620000px;}
.y1a{bottom:446.745000px;}
.y57{bottom:462.495000px;}
.y41{bottom:465.870000px;}
.y32{bottom:472.275000px;}
.y49{bottom:472.650000px;}
.y25{bottom:474.525000px;}
.yd{bottom:477.150000px;}
.y2{bottom:491.205000px;}
.y40{bottom:505.320000px;}
.y19{bottom:507.570000px;}
.y48{bottom:514.320000px;}
.yc{bottom:517.695000px;}
.y24{bottom:527.625000px;}
.y18{bottom:552.630000px;}
.yb{bottom:558.255000px;}
.y1{bottom:579.075000px;}
.y23{bottom:632.505000px;}
.ya{bottom:667.800000px;}
.y22{bottom:703.470000px;}
.h3{height:69.185083px;}
.h10{height:88.920923px;}
.hf{height:105.367456px;}
.hb{height:105.477100px;}
.h4{height:106.352856px;}
.h5{height:106.463525px;}
.h2{height:108.394043px;}
.he{height:115.235376px;}
.hd{height:115.345020px;}
.h8{height:121.813989px;}
.h7{height:121.923633px;}
.hc{height:201.166992px;}
.h6{height:201.280518px;}
.h1{height:245.555420px;}
.ha{height:272.801514px;}
.h9{height:272.915039px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x8{left:91.612479px;}
.xb{left:109.124979px;}
.x7{left:110.437479px;}
.xa{left:136.912479px;}
.x2{left:149.362479px;}
.xe{left:164.099979px;}
.xf{left:191.144979px;}
.x12{left:217.949979px;}
.x15{left:282.869979px;}
.x16{left:297.674979px;}
.x1{left:354.374979px;}
.x4{left:416.399979px;}
.x9{left:463.004979px;}
.x3{left:484.754979px;}
.x5{left:606.374979px;}
.xc{left:740.369979px;}
.xd{left:767.399979px;}
.x10{left:794.399979px;}
.x11{left:821.444979px;}
.x17{left:1304.444979px;}
.x13{left:1367.849979px;}
.x14{left:1369.649979px;}
.x6{left:1381.199979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-6.773333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.816000pt;}
.lse{letter-spacing:1.221333pt;}
.lsc{letter-spacing:1.354667pt;}
.ls2{letter-spacing:1.481333pt;}
.lsf{letter-spacing:1.482667pt;}
.ls4{letter-spacing:44.213333pt;}
.ls1{letter-spacing:44.240000pt;}
.ls5{letter-spacing:44.260000pt;}
.ls3{letter-spacing:44.286667pt;}
.ls7{letter-spacing:47.013333pt;}
.ls6{letter-spacing:47.040000pt;}
.ls8{letter-spacing:47.060000pt;}
.lsa{letter-spacing:51.266667pt;}
.ls9{letter-spacing:51.313333pt;}
.lsb{letter-spacing:58.313333pt;}
.ws1{word-spacing:-77.216400pt;}
.ws2{word-spacing:-56.972400pt;}
.ws6{word-spacing:-41.218133pt;}
.ws5{word-spacing:-41.181067pt;}
.ws4{word-spacing:-35.658133pt;}
.ws3{word-spacing:-35.621067pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-14.530133pt;}
._9{margin-left:-13.402933pt;}
._8{margin-left:-9.963200pt;}
._d{margin-left:-8.800267pt;}
._6{margin-left:-7.572800pt;}
._c{margin-left:-5.679867pt;}
._10{margin-left:-4.782667pt;}
._4{margin-left:-3.844800pt;}
._3{margin-left:-2.884000pt;}
._0{margin-left:-1.730400pt;}
._2{width:1.153600pt;}
._1{width:2.884000pt;}
._5{width:4.165333pt;}
._7{width:5.158400pt;}
._f{width:37.634000pt;}
._11{width:41.792267pt;}
._a{width:44.006133pt;}
._e{width:45.293867pt;}
.fs2{font-size:84.133333pt;}
.fsc{font-size:108.133333pt;}
.fs1{font-size:128.133333pt;}
.fs3{font-size:128.266667pt;}
.fsb{font-size:140.133333pt;}
.fsa{font-size:140.266667pt;}
.fs6{font-size:148.133333pt;}
.fs5{font-size:148.266667pt;}
.fs9{font-size:236.266667pt;}
.fs4{font-size:236.400000pt;}
.fs0{font-size:288.400000pt;}
.fs8{font-size:320.400000pt;}
.fs7{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:24.333333pt;}
.y9{bottom:70.033333pt;}
.y21{bottom:87.666667pt;}
.y56{bottom:91.666667pt;}
.y3f{bottom:93.333333pt;}
.y2d{bottom:95.333333pt;}
.y52{bottom:96.666667pt;}
.y8{bottom:104.100000pt;}
.y62{bottom:106.700000pt;}
.y73{bottom:109.700000pt;}
.y39{bottom:114.366667pt;}
.y14{bottom:119.700000pt;}
.y55{bottom:125.700000pt;}
.y20{bottom:128.733333pt;}
.y51{bottom:130.733333pt;}
.y2c{bottom:133.400000pt;}
.y47{bottom:136.733333pt;}
.y6c{bottom:137.400000pt;}
.y7{bottom:139.133333pt;}
.y61{bottom:141.733333pt;}
.y72{bottom:151.733333pt;}
.y5b{bottom:154.760000pt;}
.y13{bottom:155.773333pt;}
.y50{bottom:166.760000pt;}
.y38{bottom:167.440000pt;}
.y1f{bottom:168.773333pt;}
.y31{bottom:170.440000pt;}
.y46{bottom:171.773333pt;}
.y3e{bottom:174.426667pt;}
.y60{bottom:175.760000pt;}
.y6b{bottom:178.466667pt;}
.y2b{bottom:183.466667pt;}
.y12{bottom:190.800000pt;}
.y71{bottom:193.800000pt;}
.y5a{bottom:195.800000pt;}
.y4f{bottom:198.800000pt;}
.y37{bottom:201.506667pt;}
.y68{bottom:205.506667pt;}
.y17{bottom:205.666667pt;}
.y30{bottom:208.506667pt;}
.y54{bottom:208.840000pt;}
.y45{bottom:213.840000pt;}
.y5f{bottom:216.840000pt;}
.y2a{bottom:221.506667pt;}
.y1e{bottom:222.840000pt;}
.y3d{bottom:226.533333pt;}
.y6a{bottom:231.533333pt;}
.y4e{bottom:231.866667pt;}
.y59{bottom:235.866667pt;}
.y11{bottom:240.866667pt;}
.y36{bottom:242.533333pt;}
.y70{bottom:247.866667pt;}
.y5e{bottom:251.893333pt;}
.y29{bottom:258.560000pt;}
.y1d{bottom:262.893333pt;}
.y63{bottom:263.573333pt;}
.y16{bottom:263.973333pt;}
.y4d{bottom:264.906667pt;}
.y3c{bottom:267.560000pt;}
.y44{bottom:267.906667pt;}
.y69{bottom:272.573333pt;}
.y10{bottom:275.933333pt;}
.y5{bottom:277.600000pt;}
.y35{bottom:285.600000pt;}
.y5d{bottom:292.933333pt;}
.y2f{bottom:296.600000pt;}
.y6f{bottom:300.973333pt;}
.y4c{bottom:301.960000pt;}
.y3b{bottom:302.640000pt;}
.y53{bottom:302.973333pt;}
.y43{bottom:307.960000pt;}
.y65{bottom:309.466667pt;}
.y28{bottom:309.626667pt;}
.y67{bottom:312.626667pt;}
.y1c{bottom:316.960000pt;}
.y4{bottom:325.666667pt;}
.yf{bottom:326.000000pt;}
.y5c{bottom:328.000000pt;}
.y4b{bottom:333.000000pt;}
.y2e{bottom:333.666667pt;}
.y3a{bottom:336.666667pt;}
.y34{bottom:339.666667pt;}
.y27{bottom:347.693333pt;}
.y15{bottom:350.093333pt;}
.y6e{bottom:354.026667pt;}
.y1b{bottom:357.026667pt;}
.y42{bottom:362.026667pt;}
.y66{bottom:366.693333pt;}
.y58{bottom:370.026667pt;}
.y4a{bottom:372.066667pt;}
.y3{bottom:373.733333pt;}
.y64{bottom:374.226667pt;}
.ye{bottom:375.066667pt;}
.y33{bottom:379.733333pt;}
.y26{bottom:384.733333pt;}
.y6d{bottom:396.106667pt;}
.y1a{bottom:397.106667pt;}
.y57{bottom:411.106667pt;}
.y41{bottom:414.106667pt;}
.y32{bottom:419.800000pt;}
.y49{bottom:420.133333pt;}
.y25{bottom:421.800000pt;}
.yd{bottom:424.133333pt;}
.y2{bottom:436.626667pt;}
.y40{bottom:449.173333pt;}
.y19{bottom:451.173333pt;}
.y48{bottom:457.173333pt;}
.yc{bottom:460.173333pt;}
.y24{bottom:469.000000pt;}
.y18{bottom:491.226667pt;}
.yb{bottom:496.226667pt;}
.y1{bottom:514.733333pt;}
.y23{bottom:562.226667pt;}
.ya{bottom:593.600000pt;}
.y22{bottom:625.306667pt;}
.h3{height:61.497852pt;}
.h10{height:79.040820pt;}
.hf{height:93.659961pt;}
.hb{height:93.757422pt;}
.h4{height:94.535872pt;}
.h5{height:94.634245pt;}
.h2{height:96.350260pt;}
.he{height:102.431445pt;}
.hd{height:102.528906pt;}
.h8{height:108.279102pt;}
.h7{height:108.376562pt;}
.hc{height:178.815104pt;}
.h6{height:178.916016pt;}
.h1{height:218.271484pt;}
.ha{height:242.490234pt;}
.h9{height:242.591146pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8{left:81.433314pt;}
.xb{left:96.999981pt;}
.x7{left:98.166648pt;}
.xa{left:121.699981pt;}
.x2{left:132.766648pt;}
.xe{left:145.866648pt;}
.xf{left:169.906648pt;}
.x12{left:193.733314pt;}
.x15{left:251.439981pt;}
.x16{left:264.599981pt;}
.x1{left:314.999981pt;}
.x4{left:370.133314pt;}
.x9{left:411.559981pt;}
.x3{left:430.893314pt;}
.x5{left:538.999981pt;}
.xc{left:658.106648pt;}
.xd{left:682.133314pt;}
.x10{left:706.133314pt;}
.x11{left:730.173314pt;}
.x17{left:1159.506648pt;}
.x13{left:1215.866648pt;}
.x14{left:1217.466648pt;}
.x6{left:1227.733314pt;}
}




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