
    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_8f24e8ac36b1a9011a38afce.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_75d82883e27f69e4228952b6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_7c420be6341235a9c4705adf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.074500;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_e45d4bc4908172d302931a7e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_815fe61db99c072b6479bad4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_aeb0eb1c28ec2144d9f40f1b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.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);}
.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;}
}
.ws0{word-spacing:-28.562760px;}
.ws5{word-spacing:-26.015579px;}
.ws3{word-spacing:-24.746760px;}
.ws2{word-spacing:-24.746388px;}
.ws6{word-spacing:-22.256819px;}
.ws4{word-spacing:-20.055443px;}
.ws1{word-spacing:-12.446999px;}
.ws7{word-spacing:0.000000px;}
._9{margin-left:-1657.131341px;}
._7{margin-left:-22.635742px;}
._6{margin-left:-15.265072px;}
._8{margin-left:-6.963972px;}
._0{margin-left:-4.589445px;}
._5{margin-left:-3.503373px;}
._2{margin-left:-2.501526px;}
._1{margin-left:-1.365216px;}
._3{width:1.875385px;}
._4{width:4.093658px;}
._a{width:5.837892px;}
.fc3{color:transparent;}
.fc2{color:rgb(233,148,8);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(62,121,178);}
.fs4{font-size:52.540845px;}
.fs7{font-size:53.999998px;}
.fs1{font-size:58.364122px;}
.fs2{font-size:58.364999px;}
.fs12{font-size:59.984997px;}
.fsb{font-size:94.601146px;}
.fsf{font-size:97.365020px;}
.fse{font-size:98.999996px;}
.fs10{font-size:103.365021px;}
.fsd{font-size:104.984996px;}
.fs11{font-size:109.365022px;}
.fs8{font-size:110.745000px;}
.fs3{font-size:116.728244px;}
.fs9{font-size:116.730000px;}
.fsa{font-size:116.999995px;}
.fsc{font-size:122.714995px;}
.fs0{font-size:134.729999px;}
.fs6{font-size:137.969994px;}
.fs5{font-size:303.554742px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.ye{bottom:3.489734px;}
.y4{bottom:3.542979px;}
.ya{bottom:3.547744px;}
.y2d{bottom:5.905718px;}
.y3e{bottom:6.525209px;}
.y7{bottom:6.575928px;}
.y1d{bottom:6.692910px;}
.y8{bottom:16.560009px;}
.yd{bottom:21.003349px;}
.y9{bottom:21.061360px;}
.y10{bottom:23.295175px;}
.yc{bottom:38.516964px;}
.y2c{bottom:38.884205px;}
.y3d{bottom:43.556465px;}
.y5{bottom:65.983533px;}
.y3c{bottom:78.150221px;}
.y2b{bottom:79.400631px;}
.y3{bottom:86.400007px;}
.y2a{bottom:112.379118px;}
.y3b{bottom:126.712729px;}
.y1b{bottom:134.774994px;}
.yb{bottom:136.440004px;}
.y29{bottom:145.357605px;}
.y1a{bottom:152.774994px;}
.y3a{bottom:161.306484px;}
.y19{bottom:170.774993px;}
.y28{bottom:178.336091px;}
.y18{bottom:188.774992px;}
.y6{bottom:198.000002px;}
.y17{bottom:206.774991px;}
.y39{bottom:210.243992px;}
.y27{bottom:211.314578px;}
.y16{bottom:224.774991px;}
.y41{bottom:233.805842px;}
.y15{bottom:242.774990px;}
.y38{bottom:242.775248px;}
.y26{bottom:244.293065px;}
.y1c{bottom:258.479999px;}
.y25{bottom:277.271551px;}
.y24{bottom:287.639998px;}
.y22{bottom:372.952172px;}
.y36{bottom:373.805588px;}
.y21{bottom:405.577171px;}
.y35{bottom:416.012671px;}
.y1f{bottom:432.893826px;}
.y40{bottom:445.142789px;}
.y20{bottom:455.942753px;}
.y34{bottom:462.605561px;}
.y33{bottom:506.855535px;}
.y23{bottom:509.956251px;}
.y37{bottom:631.439984px;}
.y1e{bottom:633.775578px;}
.y31{bottom:706.124458px;}
.y32{bottom:752.971256px;}
.y2{bottom:801.641173px;}
.y3f{bottom:802.593071px;}
.y30{bottom:802.996447px;}
.y2f{bottom:836.746446px;}
.y2e{bottom:870.496445px;}
.y14{bottom:928.283549px;}
.y13{bottom:975.533547px;}
.y12{bottom:1022.783545px;}
.y11{bottom:1070.033543px;}
.yf{bottom:1106.999964px;}
.h4{height:17.999999px;}
.h9{height:33.119999px;}
.h7{height:34.199999px;}
.ha{height:47.470654px;}
.h5{height:48.208765px;}
.hf{height:48.788998px;}
.hb{height:50.759998px;}
.h6{height:52.732777px;}
.h1c{height:54.196445px;}
.h1d{height:56.985747px;}
.h14{height:78.140547px;}
.h19{height:80.423506px;}
.h17{height:81.773997px;}
.h1a{height:85.379507px;}
.h16{height:86.717606px;}
.h1b{height:90.335508px;}
.h10{height:91.475370px;}
.h8{height:96.417530px;}
.h11{height:96.418980px;}
.h12{height:96.641996px;}
.h15{height:101.362586px;}
.hc{height:103.319996px;}
.h3{height:111.286979px;}
.he{height:113.963215px;}
.hd{height:232.260879px;}
.h18{height:266.039989px;}
.h13{height:299.519988px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w7{width:138.239994px;}
.w3{width:273.959989px;}
.w9{width:360.359985px;}
.w8{width:564.479976px;}
.w2{width:709.559970px;}
.w5{width:878.039963px;}
.w4{width:1452.599939px;}
.w6{width:1551.599935px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x6{left:1.248058px;}
.xb{left:18.719999px;}
.x2{left:20.879999px;}
.x3{left:24.113572px;}
.x24{left:25.809292px;}
.x15{left:30.301035px;}
.x23{left:38.102263px;}
.x13{left:43.448262px;}
.x1{left:46.761309px;}
.x22{left:69.507052px;}
.x14{left:77.000928px;}
.x18{left:83.964688px;}
.x19{left:87.534906px;}
.x16{left:101.970353px;}
.x17{left:106.210444px;}
.x25{left:177.236076px;}
.x1f{left:270.699202px;}
.x1d{left:272.485162px;}
.x8{left:298.037164px;}
.x7{left:300.445367px;}
.x21{left:323.279987px;}
.x9{left:327.216851px;}
.x20{left:330.184433px;}
.x1e{left:339.692724px;}
.x5{left:441.359982px;}
.x12{left:771.119968px;}
.xa{left:926.630894px;}
.xc{left:1106.178254px;}
.x4{left:1182.599951px;}
.x11{left:1457.947631px;}
.x1c{left:1461.626481px;}
.xf{left:1479.640736px;}
.xe{left:1494.500024px;}
.x1b{left:1503.884474px;}
.x10{left:1551.658312px;}
.x1a{left:1555.722363px;}
.x27{left:1885.260845px;}
.xd{left:1928.555416px;}
.x26{left:1947.685709px;}
.x28{left:1983.944435px;}
.x29{left:1998.938575px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-25.389120pt;}
.ws5{word-spacing:-23.124959pt;}
.ws3{word-spacing:-21.997120pt;}
.ws2{word-spacing:-21.996789pt;}
.ws6{word-spacing:-19.783839pt;}
.ws4{word-spacing:-17.827060pt;}
.ws1{word-spacing:-11.064000pt;}
.ws7{word-spacing:0.000000pt;}
._9{margin-left:-1473.005637pt;}
._7{margin-left:-20.120659pt;}
._6{margin-left:-13.568953pt;}
._8{margin-left:-6.190198pt;}
._0{margin-left:-4.079507pt;}
._5{margin-left:-3.114110pt;}
._2{margin-left:-2.223579pt;}
._1{margin-left:-1.213526pt;}
._3{width:1.667008pt;}
._4{width:3.638807pt;}
._a{width:5.189237pt;}
.fs4{font-size:46.702974pt;}
.fs7{font-size:47.999998pt;}
.fs1{font-size:51.879219pt;}
.fs2{font-size:51.879999pt;}
.fs12{font-size:53.319997pt;}
.fsb{font-size:84.089908pt;}
.fsf{font-size:86.546684pt;}
.fse{font-size:87.999996pt;}
.fs10{font-size:91.880018pt;}
.fsd{font-size:93.319996pt;}
.fs11{font-size:97.213353pt;}
.fs8{font-size:98.440000pt;}
.fs3{font-size:103.758440pt;}
.fs9{font-size:103.760000pt;}
.fsa{font-size:103.999996pt;}
.fsc{font-size:109.079995pt;}
.fs0{font-size:119.759999pt;}
.fs6{font-size:122.639995pt;}
.fs5{font-size:269.826437pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.ye{bottom:3.101986pt;}
.y4{bottom:3.149314pt;}
.ya{bottom:3.153551pt;}
.y2d{bottom:5.249527pt;}
.y3e{bottom:5.800186pt;}
.y7{bottom:5.845269pt;}
.y1d{bottom:5.949254pt;}
.y8{bottom:14.720008pt;}
.yd{bottom:18.669644pt;}
.y9{bottom:18.721208pt;}
.y10{bottom:20.706822pt;}
.yc{bottom:34.237302pt;}
.y2c{bottom:34.563738pt;}
.y3d{bottom:38.716858pt;}
.y5{bottom:58.652030pt;}
.y3c{bottom:69.466863pt;}
.y2b{bottom:70.578339pt;}
.y3{bottom:76.800006pt;}
.y2a{bottom:99.892549pt;}
.y3b{bottom:112.633537pt;}
.y1b{bottom:119.799995pt;}
.yb{bottom:121.280004pt;}
.y29{bottom:129.206760pt;}
.y1a{bottom:135.799994pt;}
.y3a{bottom:143.383542pt;}
.y19{bottom:151.799994pt;}
.y28{bottom:158.520970pt;}
.y18{bottom:167.799993pt;}
.y6{bottom:176.000002pt;}
.y17{bottom:183.799992pt;}
.y39{bottom:186.883549pt;}
.y27{bottom:187.835180pt;}
.y16{bottom:199.799992pt;}
.y41{bottom:207.827415pt;}
.y15{bottom:215.799991pt;}
.y38{bottom:215.800220pt;}
.y26{bottom:217.149391pt;}
.y1c{bottom:229.759999pt;}
.y25{bottom:246.463601pt;}
.y24{bottom:255.679998pt;}
.y22{bottom:331.513042pt;}
.y36{bottom:332.271634pt;}
.y21{bottom:360.513041pt;}
.y35{bottom:369.789041pt;}
.y1f{bottom:384.794512pt;}
.y40{bottom:395.682480pt;}
.y20{bottom:405.282447pt;}
.y34{bottom:411.204943pt;}
.y33{bottom:450.538253pt;}
.y23{bottom:453.294445pt;}
.y37{bottom:561.279986pt;}
.y1e{bottom:563.356069pt;}
.y31{bottom:627.666185pt;}
.y32{bottom:669.307783pt;}
.y2{bottom:712.569932pt;}
.y3f{bottom:713.416063pt;}
.y30{bottom:713.774620pt;}
.y2f{bottom:743.774619pt;}
.y2e{bottom:773.774617pt;}
.y14{bottom:825.140932pt;}
.y13{bottom:867.140930pt;}
.y12{bottom:909.140929pt;}
.y11{bottom:951.140927pt;}
.yf{bottom:983.999968pt;}
.h4{height:15.999999pt;}
.h9{height:29.439999pt;}
.h7{height:30.399999pt;}
.ha{height:42.196137pt;}
.h5{height:42.852235pt;}
.hf{height:43.367998pt;}
.hb{height:45.119998pt;}
.h6{height:46.873579pt;}
.h1c{height:48.174618pt;}
.h1d{height:50.653998pt;}
.h14{height:69.458264pt;}
.h19{height:71.487561pt;}
.h17{height:72.687997pt;}
.h1a{height:75.892895pt;}
.h16{height:77.082317pt;}
.h1b{height:80.298229pt;}
.h10{height:81.311440pt;}
.h8{height:85.704471pt;}
.h11{height:85.705760pt;}
.h12{height:85.903996pt;}
.h15{height:90.100076pt;}
.hc{height:91.839996pt;}
.h3{height:98.921759pt;}
.he{height:101.300636pt;}
.hd{height:206.454115pt;}
.h18{height:236.479990pt;}
.h13{height:266.239989pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w7{width:122.879995pt;}
.w3{width:243.519990pt;}
.w9{width:320.319987pt;}
.w8{width:501.759979pt;}
.w2{width:630.719974pt;}
.w5{width:780.479967pt;}
.w4{width:1291.199946pt;}
.w6{width:1379.199943pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.109385pt;}
.xb{left:16.639999pt;}
.x2{left:18.559999pt;}
.x3{left:21.434286pt;}
.x24{left:22.941593pt;}
.x15{left:26.934253pt;}
.x23{left:33.868678pt;}
.x13{left:38.620677pt;}
.x1{left:41.565608pt;}
.x22{left:61.784047pt;}
.x14{left:68.445269pt;}
.x18{left:74.635279pt;}
.x19{left:77.808806pt;}
.x16{left:90.640314pt;}
.x17{left:94.409284pt;}
.x25{left:157.543179pt;}
.x1f{left:240.621513pt;}
.x1d{left:242.209033pt;}
.x8{left:264.921924pt;}
.x7{left:267.062549pt;}
.x21{left:287.359988pt;}
.x9{left:290.859423pt;}
.x20{left:293.497274pt;}
.x1e{left:301.949088pt;}
.x5{left:392.319984pt;}
.x12{left:685.439971pt;}
.xa{left:823.671906pt;}
.xc{left:983.269559pt;}
.x4{left:1051.199956pt;}
.x11{left:1295.953450pt;}
.x1c{left:1299.223539pt;}
.xf{left:1315.236210pt;}
.xe{left:1328.444466pt;}
.x1b{left:1336.786199pt;}
.x10{left:1379.251833pt;}
.x1a{left:1382.864322pt;}
.x27{left:1675.787418pt;}
.xd{left:1714.271481pt;}
.x26{left:1731.276186pt;}
.x28{left:1763.506165pt;}
.x29{left:1776.834289pt;}
}




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