
    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_25fcd72b3b3c6de45e13e1c8.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_92ce5903d4e0385db80a57c3.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_97e105795532cff63a2843c1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_482e9732d7a563391ca6afd4.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_e4db94d7663f140045ace80b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dd8d97170bfc0ee0f962641b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.992000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.056295px;}
.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:-31.109940px;}
.ws6{word-spacing:-27.341639px;}
.ws5{word-spacing:-26.015579px;}
.ws4{word-spacing:-24.746760px;}
.ws3{word-spacing:-24.746388px;}
.ws7{word-spacing:-20.053079px;}
.ws2{word-spacing:-13.826542px;}
.ws1{word-spacing:-13.453132px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-8.578644px;}
._3{margin-left:-4.370862px;}
._1{margin-left:-2.550251px;}
._0{margin-left:-1.110039px;}
._2{width:1.532602px;}
._5{width:6.729742px;}
.fc3{color:transparent;}
.fc2{color:rgb(233,148,8);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(62,121,178);}
.fs5{font-size:52.540845px;}
.fs1{font-size:58.364122px;}
.fs2{font-size:58.364999px;}
.fs4{font-size:59.984997px;}
.fsc{font-size:94.589996px;}
.fsf{font-size:115.334991px;}
.fs3{font-size:116.728244px;}
.fs8{font-size:116.730000px;}
.fsd{font-size:117.260266px;}
.fse{font-size:118.084234px;}
.fs9{font-size:122.714995px;}
.fsa{font-size:128.744999px;}
.fsb{font-size:128.969995px;}
.fs7{font-size:131.984995px;}
.fs0{font-size:146.744998px;}
.fs6{font-size:280.573179px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.ye{bottom:3.364051px;}
.y4{bottom:3.542979px;}
.y1b{bottom:6.632529px;}
.y8{bottom:6.705918px;}
.y36{bottom:7.329316px;}
.y33{bottom:7.428103px;}
.ya{bottom:8.904564px;}
.yd{bottom:20.877666px;}
.y10{bottom:21.426584px;}
.y9{bottom:29.154563px;}
.yc{bottom:38.391281px;}
.y35{bottom:48.531072px;}
.y6{bottom:49.820110px;}
.y5{bottom:70.070109px;}
.y3{bottom:86.400007px;}
.yb{bottom:117.720005px;}
.y19{bottom:124.499983px;}
.y18{bottom:144.749982px;}
.y17{bottom:164.999981px;}
.y7{bottom:177.120003px;}
.y16{bottom:185.249980px;}
.y15{bottom:205.499979px;}
.y1a{bottom:226.800001px;}
.y40{bottom:233.805842px;}
.y2b{bottom:308.190515px;}
.y2a{bottom:340.815514px;}
.y21{bottom:359.192793px;}
.y29{bottom:373.440512px;}
.y37{bottom:378.151580px;}
.y20{bottom:404.192791px;}
.y28{bottom:406.065511px;}
.y34{bottom:408.599993px;}
.y3f{bottom:424.148814px;}
.y27{bottom:438.690510px;}
.y1e{bottom:453.891833px;}
.y1f{bottom:463.004909px;}
.y26{bottom:471.315508px;}
.y32{bottom:491.039990px;}
.y25{bottom:503.940507px;}
.y23{bottom:508.311015px;}
.y24{bottom:536.565506px;}
.y31{bottom:542.223733px;}
.y22{bottom:553.311013px;}
.y1d{bottom:637.382918px;}
.y1c{bottom:638.357931px;}
.y3d{bottom:657.867717px;}
.y2f{bottom:664.285667px;}
.y3c{bottom:697.242715px;}
.y2e{bottom:707.035665px;}
.y3b{bottom:736.617713px;}
.y30{bottom:753.842651px;}
.y3a{bottom:775.992712px;}
.y2d{bottom:804.703808px;}
.y39{bottom:815.367710px;}
.y2{bottom:842.428794px;}
.y2c{bottom:847.453807px;}
.y38{bottom:854.742708px;}
.y3e{bottom:879.509847px;}
.y14{bottom:942.758550px;}
.y13{bottom:988.883548px;}
.y12{bottom:1035.008546px;}
.y11{bottom:1081.133545px;}
.yf{bottom:1125.719963px;}
.h4{height:17.999999px;}
.h7{height:34.199999px;}
.hb{height:47.076597px;}
.h5{height:48.208765px;}
.ha{height:50.759998px;}
.h6{height:52.295039px;}
.h9{height:53.746557px;}
.h18{height:56.985747px;}
.h15{height:75.599997px;}
.h13{height:78.131337px;}
.hc{height:89.279996px;}
.h17{height:95.266702px;}
.h8{height:96.417530px;}
.hf{height:96.418980px;}
.h14{height:96.856980px;}
.h16{height:97.537577px;}
.h10{height:101.362586px;}
.h11{height:106.343369px;}
.h12{height:106.529216px;}
.he{height:109.019605px;}
.h3{height:121.211369px;}
.hd{height:213.169856px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w6{width:136.439994px;}
.w8{width:313.559987px;}
.w3{width:349.559985px;}
.w7{width:473.039980px;}
.w2{width:709.559970px;}
.w4{width:910.799962px;}
.w5{width:1898.639921px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x22{left:16.874304px;}
.x2{left:20.879999px;}
.x9{left:24.113572px;}
.x1{left:53.173826px;}
.x4{left:244.439990px;}
.x23{left:247.624728px;}
.x20{left:248.759990px;}
.x7{left:299.667975px;}
.x6{left:316.912115px;}
.x26{left:326.869131px;}
.x21{left:335.879986px;}
.x1f{left:349.149405px;}
.x5{left:351.646488px;}
.x27{left:354.660145px;}
.x24{left:357.683583px;}
.x25{left:381.923816px;}
.x28{left:500.628889px;}
.x12{left:781.293756px;}
.x18{left:783.438288px;}
.x13{left:785.231256px;}
.x14{left:801.367974px;}
.x15{left:803.582818px;}
.x8{left:815.814438px;}
.x16{left:827.119926px;}
.xb{left:845.678990px;}
.x19{left:986.377738px;}
.x17{left:1011.461716px;}
.xa{left:1124.415565px;}
.x3{left:1182.599951px;}
.xd{left:1436.312208px;}
.xe{left:1478.068174px;}
.x10{left:1481.455756px;}
.x1a{left:1503.358021px;}
.x1e{left:1517.864606px;}
.x1c{left:1520.038490px;}
.xf{left:1523.349423px;}
.x11{left:1526.842473px;}
.x1b{left:1565.707628px;}
.x1d{left:1591.880284px;}
.x2a{left:1885.260845px;}
.xc{left:1941.695415px;}
.x29{left:1953.878815px;}
.x2b{left:1988.321388px;}
.x2c{left:2003.315528px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.050040pt;}
.ws0{word-spacing:-27.653280pt;}
.ws6{word-spacing:-24.303679pt;}
.ws5{word-spacing:-23.124959pt;}
.ws4{word-spacing:-21.997120pt;}
.ws3{word-spacing:-21.996789pt;}
.ws7{word-spacing:-17.824959pt;}
.ws2{word-spacing:-12.290259pt;}
.ws1{word-spacing:-11.958340pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-7.625462pt;}
._3{margin-left:-3.885211pt;}
._1{margin-left:-2.266890pt;}
._0{margin-left:-0.986702pt;}
._2{width:1.362313pt;}
._5{width:5.981993pt;}
.fs5{font-size:46.702974pt;}
.fs1{font-size:51.879219pt;}
.fs2{font-size:51.879999pt;}
.fs4{font-size:53.319997pt;}
.fsc{font-size:84.079996pt;}
.fsf{font-size:102.519992pt;}
.fs3{font-size:103.758440pt;}
.fs8{font-size:103.760000pt;}
.fsd{font-size:104.231348pt;}
.fse{font-size:104.963763pt;}
.fs9{font-size:109.079995pt;}
.fsa{font-size:114.439999pt;}
.fsb{font-size:114.639995pt;}
.fs7{font-size:117.319995pt;}
.fs0{font-size:130.439999pt;}
.fs6{font-size:249.398381pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.ye{bottom:2.990267pt;}
.y4{bottom:3.149314pt;}
.y1b{bottom:5.895582pt;}
.y8{bottom:5.960816pt;}
.y36{bottom:6.514947pt;}
.y33{bottom:6.602758pt;}
.ya{bottom:7.915168pt;}
.yd{bottom:18.557925pt;}
.y10{bottom:19.045853pt;}
.y9{bottom:25.915167pt;}
.yc{bottom:34.125583pt;}
.y35{bottom:43.138731pt;}
.y6{bottom:44.284542pt;}
.y5{bottom:62.284541pt;}
.y3{bottom:76.800006pt;}
.yb{bottom:104.640005pt;}
.y19{bottom:110.666651pt;}
.y18{bottom:128.666651pt;}
.y17{bottom:146.666650pt;}
.y7{bottom:157.440002pt;}
.y16{bottom:164.666649pt;}
.y15{bottom:182.666648pt;}
.y1a{bottom:201.600001pt;}
.y40{bottom:207.827415pt;}
.y2b{bottom:273.947125pt;}
.y2a{bottom:302.947123pt;}
.y21{bottom:319.282483pt;}
.y29{bottom:331.947122pt;}
.y37{bottom:336.134738pt;}
.y20{bottom:359.282481pt;}
.y28{bottom:360.947121pt;}
.y34{bottom:363.199994pt;}
.y3f{bottom:377.021168pt;}
.y27{bottom:389.947120pt;}
.y1e{bottom:403.459407pt;}
.y1f{bottom:411.559919pt;}
.y26{bottom:418.947119pt;}
.y32{bottom:436.479991pt;}
.y25{bottom:447.947117pt;}
.y23{bottom:451.832013pt;}
.y24{bottom:476.947116pt;}
.y31{bottom:481.976652pt;}
.y22{bottom:491.832012pt;}
.y1d{bottom:566.562594pt;}
.y1c{bottom:567.429272pt;}
.y3d{bottom:584.771304pt;}
.y2f{bottom:590.476148pt;}
.y3c{bottom:619.771302pt;}
.y2e{bottom:628.476147pt;}
.y3b{bottom:654.771301pt;}
.y30{bottom:670.082356pt;}
.y3a{bottom:689.771299pt;}
.y2d{bottom:715.292274pt;}
.y39{bottom:724.771298pt;}
.y2{bottom:748.825594pt;}
.y2c{bottom:753.292273pt;}
.y38{bottom:759.771296pt;}
.y3e{bottom:781.786531pt;}
.y14{bottom:838.007600pt;}
.y13{bottom:879.007599pt;}
.y12{bottom:920.007597pt;}
.y11{bottom:961.007595pt;}
.yf{bottom:1000.639967pt;}
.h4{height:15.999999pt;}
.h7{height:30.399999pt;}
.hb{height:41.845864pt;}
.h5{height:42.852235pt;}
.ha{height:45.119998pt;}
.h6{height:46.484479pt;}
.h9{height:47.774718pt;}
.h18{height:50.653998pt;}
.h15{height:67.199997pt;}
.h13{height:69.450077pt;}
.hc{height:79.359997pt;}
.h17{height:84.681513pt;}
.h8{height:85.704471pt;}
.hf{height:85.705760pt;}
.h14{height:86.095093pt;}
.h16{height:86.700069pt;}
.h10{height:90.100076pt;}
.h11{height:94.527439pt;}
.h12{height:94.692636pt;}
.he{height:96.906316pt;}
.h3{height:107.743439pt;}
.hd{height:189.484317pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w6{width:121.279995pt;}
.w8{width:278.719988pt;}
.w3{width:310.719987pt;}
.w7{width:420.479982pt;}
.w2{width:630.719974pt;}
.w4{width:809.599966pt;}
.w5{width:1687.679930pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x22{left:14.999382pt;}
.x2{left:18.559999pt;}
.x9{left:21.434286pt;}
.x1{left:47.265623pt;}
.x4{left:217.279991pt;}
.x23{left:220.110870pt;}
.x20{left:221.119991pt;}
.x7{left:266.371533pt;}
.x6{left:281.699657pt;}
.x26{left:290.550339pt;}
.x21{left:298.559988pt;}
.x1f{left:310.355026pt;}
.x5{left:312.574656pt;}
.x27{left:315.253463pt;}
.x24{left:317.940963pt;}
.x25{left:339.487837pt;}
.x28{left:445.003457pt;}
.x12{left:694.483339pt;}
.x18{left:696.389589pt;}
.x13{left:697.983339pt;}
.x14{left:712.327088pt;}
.x15{left:714.295838pt;}
.x8{left:725.168389pt;}
.x16{left:735.217712pt;}
.xb{left:751.714658pt;}
.x19{left:876.780211pt;}
.x17{left:899.077081pt;}
.xa{left:999.480502pt;}
.x3{left:1051.199956pt;}
.xd{left:1276.721963pt;}
.xe{left:1313.838377pt;}
.x10{left:1316.849561pt;}
.x1a{left:1336.318241pt;}
.x1e{left:1349.212983pt;}
.x1c{left:1351.145325pt;}
.xf{left:1354.088376pt;}
.x11{left:1357.193309pt;}
.x1b{left:1391.740114pt;}
.x1d{left:1415.004697pt;}
.x2a{left:1675.787418pt;}
.xc{left:1725.951480pt;}
.x29{left:1736.781169pt;}
.x2b{left:1767.396789pt;}
.x2c{left:1780.724914pt;}
}




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