
    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_f646ae7577cc27397f48b7f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981000;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_51976abdd10d9956daae9e3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008301;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_d24a9cce7c23bee67c0bc293.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_85b3084a17ea8276aba1fa2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934082;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_71b6cd01c0db170c84154c8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.022000;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_abc712a4e3dbc00dcb11d5a0.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m2{transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.500000px;}
.v2{vertical-align:9.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:65.571424px;}
.ls1{letter-spacing:67.965817px;}
.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:-43.280998px;}
.ws4{word-spacing:-17.534179px;}
.ws5{word-spacing:-17.279999px;}
.ws1{word-spacing:-15.196289px;}
.ws6{word-spacing:-14.975999px;}
.ws3{word-spacing:-8.912109px;}
.ws2{word-spacing:-3.445312px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-5.705580px;}
._8{margin-left:-4.218366px;}
._2{margin-left:-2.210449px;}
._5{margin-left:-1.195312px;}
._3{width:1.825927px;}
._1{width:3.168000px;}
._4{width:4.636072px;}
._0{width:6.165000px;}
._7{width:7.209000px;}
._e{width:8.734453px;}
._c{width:10.066498px;}
._9{width:11.114998px;}
._a{width:12.518998px;}
._11{width:121.128311px;}
._b{width:190.693662px;}
._f{width:192.204635px;}
._d{width:193.208090px;}
._10{width:1754.853845px;}
.fca{color:transparent;}
.fc9{color:rgb(0,38,59);}
.fc6{color:rgb(8,61,91);}
.fc5{color:rgb(79,119,89);}
.fc4{color:rgb(36,50,56);}
.fc8{color:rgb(99,99,99);}
.fc7{color:rgb(51,51,51);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(85,85,85);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(221,221,221);}
.fs8{font-size:22.499999px;}
.fs4{font-size:35.999999px;}
.fs1{font-size:58.499998px;}
.fs3{font-size:62.999997px;}
.fsa{font-size:65.969996px;}
.fs6{font-size:67.499997px;}
.fs5{font-size:69.577405px;}
.fs2{font-size:71.999997px;}
.fs9{font-size:80.999997px;}
.fs7{font-size:107.999996px;}
.fs0{font-size:188.999992px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.810190px;}
.yd{bottom:6.750000px;}
.yc{bottom:16.560190px;}
.y59{bottom:31.499999px;}
.yb{bottom:38.249998px;}
.ya{bottom:65.249997px;}
.y9{bottom:246.374990px;}
.y8{bottom:249.749990px;}
.y7{bottom:292.499988px;}
.y6{bottom:294.749988px;}
.y5{bottom:334.124986px;}
.y4{bottom:339.749986px;}
.y3{bottom:341.999986px;}
.y2{bottom:446.624981px;}
.y4e{bottom:653.624973px;}
.y4d{bottom:697.499971px;}
.y4c{bottom:725.624970px;}
.y55{bottom:773.999968px;}
.y56{bottom:778.335111px;}
.y53{bottom:816.749966px;}
.y54{bottom:822.210109px;}
.y51{bottom:860.624964px;}
.y52{bottom:866.085107px;}
.y4f{bottom:904.499962px;}
.y50{bottom:909.960106px;}
.y4b{bottom:944.999961px;}
.y4a{bottom:989.999959px;}
.y49{bottom:1016.999958px;}
.y48{bottom:1060.874956px;}
.y47{bottom:1088.999955px;}
.y46{bottom:1132.874953px;}
.y45{bottom:1187.999950px;}
.y44{bottom:1214.999949px;}
.y43{bottom:1258.874948px;}
.y42{bottom:1286.999946px;}
.y41{bottom:1331.999944px;}
.y40{bottom:1387.124942px;}
.y3f{bottom:1430.999940px;}
.y3e{bottom:1457.999939px;}
.y3d{bottom:1486.124938px;}
.y3c{bottom:1513.124937px;}
.y3b{bottom:1540.124936px;}
.y3a{bottom:1583.999934px;}
.y39{bottom:1650.374931px;}
.y2e{bottom:2220.749907px;}
.y2d{bottom:2247.749906px;}
.y37{bottom:2294.999904px;}
.y38{bottom:2300.460192px;}
.y35{bottom:2338.874903px;}
.y36{bottom:2344.335190px;}
.y33{bottom:2382.749901px;}
.y34{bottom:2388.210188px;}
.y2c{bottom:2423.249899px;}
.y2b{bottom:2467.124897px;}
.y2a{bottom:2494.124896px;}
.y29{bottom:2537.999894px;}
.y28{bottom:2564.999893px;}
.y27{bottom:2593.124892px;}
.y26{bottom:2638.124890px;}
.y25{bottom:2665.124889px;}
.y24{bottom:2708.999887px;}
.y31{bottom:2756.249885px;}
.y32{bottom:2761.710172px;}
.y2f{bottom:2800.124883px;}
.y30{bottom:2805.585171px;}
.y23{bottom:2840.624882px;}
.y22{bottom:2884.499880px;}
.y21{bottom:2911.499879px;}
.y20{bottom:2955.374877px;}
.y1f{bottom:3021.749874px;}
.y18{bottom:3592.124850px;}
.y1d{bottom:3642.749848px;}
.y1e{bottom:3652.710135px;}
.y1b{bottom:3693.374846px;}
.y1c{bottom:3703.335133px;}
.y19{bottom:3743.999844px;}
.y1a{bottom:3753.960131px;}
.y17{bottom:3788.999842px;}
.y16{bottom:3815.999841px;}
.y15{bottom:3859.874839px;}
.y14{bottom:3914.999837px;}
.y13{bottom:3941.999836px;}
.y12{bottom:3968.999835px;}
.y11{bottom:3997.124833px;}
.y10{bottom:4047.749831px;}
.yf{bottom:4251.374823px;}
.ye{bottom:4305.374821px;}
.y58{bottom:4490.999813px;}
.y57{bottom:4492.124813px;}
.hc{height:19.285714px;}
.h7{height:25.945311px;}
.h4{height:44.817625px;}
.hd{height:48.086998px;}
.ha{height:51.712644px;}
.h8{height:53.304174px;}
.hf{height:53.817625px;}
.h9{height:55.484998px;}
.h6{height:59.062498px;}
.h5{height:67.499997px;}
.he{height:69.428569px;}
.hb{height:88.235996px;}
.h3{height:154.412994px;}
.h2{height:4569.749810px;}
.h1{height:4570.500000px;}
.h0{height:4570.560000px;}
.w2{width:78.750177px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x6{left:7.312680px;}
.x20{left:28.124999px;}
.x7{left:449.999981px;}
.x1{left:455.624981px;}
.x8{left:479.249980px;}
.x18{left:634.499974px;}
.x17{left:721.124970px;}
.x12{left:722.249970px;}
.x1a{left:726.749970px;}
.xf{left:736.874969px;}
.xc{left:761.624968px;}
.xa{left:768.374968px;}
.x1f{left:777.462864px;}
.x16{left:860.624964px;}
.x2{left:883.124963px;}
.x3{left:928.124961px;}
.x10{left:942.749961px;}
.x9{left:1003.042927px;}
.xb{left:1047.374956px;}
.x1b{left:1058.624956px;}
.x1c{left:1114.874954px;}
.x14{left:1193.624950px;}
.x1d{left:1252.124948px;}
.x4{left:1310.624945px;}
.x15{left:1345.499944px;}
.x13{left:1379.249943px;}
.xe{left:1417.499941px;}
.x19{left:1460.249939px;}
.xd{left:1470.374939px;}
.x11{left:1509.749937px;}
.x1e{left:1956.392468px;}
.x5{left:2081.249733px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.000000pt;}
.v2{vertical-align:8.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:58.285710pt;}
.ls1{letter-spacing:60.414060pt;}
.ws0{word-spacing:-38.471998pt;}
.ws4{word-spacing:-15.585937pt;}
.ws5{word-spacing:-15.359999pt;}
.ws1{word-spacing:-13.507812pt;}
.ws6{word-spacing:-13.311999pt;}
.ws3{word-spacing:-7.921875pt;}
.ws2{word-spacing:-3.062500pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-5.071626pt;}
._8{margin-left:-3.749659pt;}
._2{margin-left:-1.964844pt;}
._5{margin-left:-1.062499pt;}
._3{width:1.623047pt;}
._1{width:2.816000pt;}
._4{width:4.120953pt;}
._0{width:5.480000pt;}
._7{width:6.408000pt;}
._e{width:7.763958pt;}
._c{width:8.947998pt;}
._9{width:9.879998pt;}
._a{width:11.127998pt;}
._11{width:107.669610pt;}
._b{width:169.505478pt;}
._f{width:170.848564pt;}
._d{width:171.740524pt;}
._10{width:1559.870085pt;}
.fs8{font-size:19.999999pt;}
.fs4{font-size:31.999999pt;}
.fs1{font-size:51.999998pt;}
.fs3{font-size:55.999998pt;}
.fsa{font-size:58.639997pt;}
.fs6{font-size:59.999998pt;}
.fs5{font-size:61.846582pt;}
.fs2{font-size:63.999997pt;}
.fs9{font-size:71.999997pt;}
.fs7{font-size:95.999996pt;}
.fs0{font-size:167.999993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.720169pt;}
.yd{bottom:6.000000pt;}
.yc{bottom:14.720169pt;}
.y59{bottom:27.999999pt;}
.yb{bottom:33.999999pt;}
.ya{bottom:57.999998pt;}
.y9{bottom:218.999991pt;}
.y8{bottom:221.999991pt;}
.y7{bottom:259.999989pt;}
.y6{bottom:261.999989pt;}
.y5{bottom:296.999988pt;}
.y4{bottom:301.999987pt;}
.y3{bottom:303.999987pt;}
.y2{bottom:396.999983pt;}
.y4e{bottom:580.999976pt;}
.y4d{bottom:619.999974pt;}
.y4c{bottom:644.999973pt;}
.y55{bottom:687.999971pt;}
.y56{bottom:691.853432pt;}
.y53{bottom:725.999970pt;}
.y54{bottom:730.853430pt;}
.y51{bottom:764.999968pt;}
.y52{bottom:769.853429pt;}
.y4f{bottom:803.999966pt;}
.y50{bottom:808.853427pt;}
.y4b{bottom:839.999965pt;}
.y4a{bottom:879.999963pt;}
.y49{bottom:903.999962pt;}
.y48{bottom:942.999961pt;}
.y47{bottom:967.999960pt;}
.y46{bottom:1006.999958pt;}
.y45{bottom:1055.999956pt;}
.y44{bottom:1079.999955pt;}
.y43{bottom:1118.999953pt;}
.y42{bottom:1143.999952pt;}
.y41{bottom:1183.999951pt;}
.y40{bottom:1232.999949pt;}
.y3f{bottom:1271.999947pt;}
.y3e{bottom:1295.999946pt;}
.y3d{bottom:1320.999945pt;}
.y3c{bottom:1344.999944pt;}
.y3b{bottom:1368.999943pt;}
.y3a{bottom:1407.999941pt;}
.y39{bottom:1466.999939pt;}
.y2e{bottom:1973.999918pt;}
.y2d{bottom:1997.999917pt;}
.y37{bottom:2039.999915pt;}
.y38{bottom:2044.853504pt;}
.y35{bottom:2078.999913pt;}
.y36{bottom:2083.853502pt;}
.y33{bottom:2117.999912pt;}
.y34{bottom:2122.853500pt;}
.y2c{bottom:2153.999910pt;}
.y2b{bottom:2192.999909pt;}
.y2a{bottom:2216.999908pt;}
.y29{bottom:2255.999906pt;}
.y28{bottom:2279.999905pt;}
.y27{bottom:2304.999904pt;}
.y26{bottom:2344.999902pt;}
.y25{bottom:2368.999901pt;}
.y24{bottom:2407.999900pt;}
.y31{bottom:2449.999898pt;}
.y32{bottom:2454.853487pt;}
.y2f{bottom:2488.999896pt;}
.y30{bottom:2493.853485pt;}
.y23{bottom:2524.999895pt;}
.y22{bottom:2563.999893pt;}
.y21{bottom:2587.999892pt;}
.y20{bottom:2626.999891pt;}
.y1f{bottom:2685.999888pt;}
.y18{bottom:3192.999867pt;}
.y1d{bottom:3237.999865pt;}
.y1e{bottom:3246.853454pt;}
.y1b{bottom:3282.999863pt;}
.y1c{bottom:3291.853452pt;}
.y19{bottom:3327.999861pt;}
.y1a{bottom:3336.853450pt;}
.y17{bottom:3367.999860pt;}
.y16{bottom:3391.999859pt;}
.y15{bottom:3430.999857pt;}
.y14{bottom:3479.999855pt;}
.y13{bottom:3503.999854pt;}
.y12{bottom:3527.999853pt;}
.y11{bottom:3552.999852pt;}
.y10{bottom:3597.999850pt;}
.yf{bottom:3778.999843pt;}
.ye{bottom:3826.999841pt;}
.y58{bottom:3991.999834pt;}
.y57{bottom:3992.999834pt;}
.hc{height:17.142856pt;}
.h7{height:23.062499pt;}
.h4{height:39.837889pt;}
.hd{height:42.743998pt;}
.ha{height:45.966795pt;}
.h8{height:47.381488pt;}
.hf{height:47.837889pt;}
.h9{height:49.319998pt;}
.h6{height:52.499998pt;}
.h5{height:59.999998pt;}
.he{height:61.714283pt;}
.hb{height:78.431997pt;}
.h3{height:137.255994pt;}
.h2{height:4061.999831pt;}
.h1{height:4062.666667pt;}
.h0{height:4062.720000pt;}
.w2{width:70.000157pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.500160pt;}
.x20{left:24.999999pt;}
.x7{left:399.999983pt;}
.x1{left:404.999983pt;}
.x8{left:425.999982pt;}
.x18{left:563.999977pt;}
.x17{left:640.999973pt;}
.x12{left:641.999973pt;}
.x1a{left:645.999973pt;}
.xf{left:654.999973pt;}
.xc{left:676.999972pt;}
.xa{left:682.999972pt;}
.x1f{left:691.078101pt;}
.x16{left:764.999968pt;}
.x2{left:784.999967pt;}
.x3{left:824.999966pt;}
.x10{left:837.999965pt;}
.x9{left:891.593713pt;}
.xb{left:930.999961pt;}
.x1b{left:940.999961pt;}
.x1c{left:990.999959pt;}
.x14{left:1060.999956pt;}
.x1d{left:1112.999954pt;}
.x4{left:1164.999951pt;}
.x15{left:1195.999950pt;}
.x13{left:1225.999949pt;}
.xe{left:1259.999948pt;}
.x19{left:1297.999946pt;}
.xd{left:1306.999946pt;}
.x11{left:1341.999944pt;}
.x1e{left:1739.015528pt;}
.x5{left:1849.999763pt;}
}




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