
    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_59d6c2b17ebbe13116c67134.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_e0266234e784952e459533ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.364746;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_304cdc4e7f18cde59145b197.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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);}
.v1{vertical-align:-25.199990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:247.679901px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144141px;}
.ls2{letter-spacing:0.287929px;}
.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;}
}
.ws5{word-spacing:-185.327926px;}
.ws7{word-spacing:-151.631939px;}
.ws6{word-spacing:-134.783946px;}
.ws1{word-spacing:-128.702829px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:321.119872px;}
.ws3{word-spacing:448.559821px;}
.ws4{word-spacing:520.559792px;}
._2{margin-left:-7.510039px;}
._6{margin-left:-4.204988px;}
._4{margin-left:-2.706974px;}
._1{margin-left:-1.669944px;}
._0{width:1.692091px;}
._7{width:3.311950px;}
._5{width:518.399793px;}
._3{width:2967.740788px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:97.919961px;}
.fs9{font-size:168.479933px;}
.fs6{font-size:196.559921px;}
.fs8{font-size:224.639910px;}
.fsa{font-size:252.719899px;}
.fs0{font-size:266.399893px;}
.fs4{font-size:280.799888px;}
.fs7{font-size:308.879876px;}
.fs5{font-size:322.559871px;}
.fs3{font-size:378.719849px;}
.fs2{font-size:462.959815px;}
.y5{bottom:-49.679802px;}
.y33{bottom:-37.799806px;}
.y4a{bottom:-29.159810px;}
.y2f{bottom:-23.219812px;}
.y24{bottom:-17.099815px;}
.y44{bottom:-10.439817px;}
.y39{bottom:-5.759819px;}
.y17{bottom:-0.179822px;}
.y0{bottom:0.000000px;}
.yc{bottom:1.620178px;}
.y4f{bottom:1.980178px;}
.y47{bottom:8.280183px;}
.y2c{bottom:9.540141px;}
.y2e{bottom:9.540164px;}
.y1a{bottom:9.540178px;}
.y31{bottom:9.540188px;}
.y3b{bottom:10.980181px;}
.y26{bottom:10.980185px;}
.y35{bottom:10.980194px;}
.y4c{bottom:12.240190px;}
.yf{bottom:14.040178px;}
.y11{bottom:14.040207px;}
.y51{bottom:15.120178px;}
.y7{bottom:24.480198px;}
.y16{bottom:73.680328px;}
.y2{bottom:82.500324px;}
.y49{bottom:112.380312px;}
.y4e{bottom:131.820304px;}
.y15{bottom:138.840301px;}
.y41{bottom:140.640301px;}
.y22{bottom:197.700278px;}
.y40{bottom:208.140274px;}
.yd{bottom:208.320274px;}
.y1d{bottom:210.480273px;}
.y29{bottom:227.220266px;}
.y8{bottom:257.820254px;}
.y21{bottom:265.020251px;}
.y1c{bottom:269.340249px;}
.y37{bottom:273.840247px;}
.y3f{bottom:275.460247px;}
.y28{bottom:294.540239px;}
.y3d{bottom:305.880235px;}
.y12{bottom:315.240231px;}
.y14{bottom:321.540228px;}
.y20{bottom:332.340224px;}
.y36{bottom:341.340220px;}
.y4d{bottom:341.520220px;}
.y3e{bottom:342.960220px;}
.y52{bottom:355.740215px;}
.y10{bottom:360.060000px;}
.y27{bottom:362.040212px;}
.y6{bottom:372.300000px;}
.y3c{bottom:373.380208px;}
.y13{bottom:380.400205px;}
.y48{bottom:385.620203px;}
.y1b{bottom:387.420202px;}
.y34{bottom:397.680000px;}
.y1f{bottom:399.840197px;}
.y4b{bottom:405.060000px;}
.y30{bottom:413.700000px;}
.y25{bottom:418.380000px;}
.y46{bottom:427.740000px;}
.y3a{bottom:429.720000px;}
.y50{bottom:433.320000px;}
.ye{bottom:434.040000px;}
.y19{bottom:436.740000px;}
.y4{bottom:446.460000px;}
.y1e{bottom:467.160170px;}
.y2d{bottom:472.740000px;}
.y32{bottom:476.160167px;}
.y43{bottom:486.600162px;}
.y23{bottom:496.860158px;}
.y38{bottom:508.200154px;}
.ya{bottom:513.780151px;}
.y2b{bottom:531.600000px;}
.y42{bottom:537.180142px;}
.y2a{bottom:541.140141px;}
.y18{bottom:627.540106px;}
.y3{bottom:657.780094px;}
.yb{bottom:676.680086px;}
.y9{bottom:736.980062px;}
.y45{bottom:750.660057px;}
.y1{bottom:758.580054px;}
.h16{height:7.380000px;}
.h10{height:9.720000px;}
.ha{height:12.420000px;}
.h22{height:13.140000px;}
.h14{height:16.380000px;}
.h18{height:16.740000px;}
.h1b{height:18.720000px;}
.h1c{height:21.780000px;}
.h1a{height:23.400000px;}
.h12{height:28.080000px;}
.h15{height:32.760000px;}
.hd{height:39.420000px;}
.h1e{height:41.400000px;}
.h17{height:48.780000px;}
.h13{height:49.140000px;}
.h4{height:55.080000px;}
.h8{height:57.780000px;}
.h20{height:64.080000px;}
.hb{height:70.200000px;}
.h5{height:74.160000px;}
.h2{height:102.127459px;}
.h19{height:165.271575px;}
.he{height:192.816837px;}
.h11{height:220.362099px;}
.h1d{height:247.907362px;}
.h1f{height:275.452624px;}
.h7{height:277.509264px;}
.h1{height:277.846764px;}
.h21{height:302.997887px;}
.hf{height:305.260190px;}
.h9{height:336.419865px;}
.h6{height:394.992967px;}
.h3{height:482.852619px;}
.hc{height:525.189165px;}
.h0{height:892.500000px;}
.wc{width:135.000000px;}
.wf{width:189.900000px;}
.w9{width:265.140000px;}
.w4{width:265.320000px;}
.w1{width:283.320000px;}
.w7{width:306.494400px;}
.wa{width:337.680000px;}
.wb{width:371.520000px;}
.w6{width:405.180000px;}
.w5{width:412.380000px;}
.we{width:417.780000px;}
.w3{width:418.634400px;}
.w10{width:509.040000px;}
.w8{width:512.594400px;}
.wd{width:630.540000px;}
.w2{width:673.920000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:12.765925px;}
.x6{left:25.186490px;}
.x1{left:30.225888px;}
.xa{left:37.065885px;}
.x15{left:38.325885px;}
.xb{left:40.485884px;}
.x5{left:46.246482px;}
.x10{left:49.665880px;}
.x14{left:59.025876px;}
.x7{left:61.366475px;}
.x17{left:97.185861px;}
.x18{left:105.105960px;}
.x3{left:269.265600px;}
.x9{left:277.185600px;}
.x16{left:463.305600px;}
.x8{left:468.166313px;}
.x11{left:746.806201px;}
.xe{left:750.405600px;}
.xc{left:780.286188px;}
.x13{left:814.846174px;}
.x4{left:844.365600px;}
.xd{left:956.505600px;}
.xf{left:985.485600px;}
.x12{left:1118.325600px;}
@media print{
.v1{vertical-align:-22.399991pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:220.159912pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128125pt;}
.ls2{letter-spacing:0.255937pt;}
.ws5{word-spacing:-164.735934pt;}
.ws7{word-spacing:-134.783946pt;}
.ws6{word-spacing:-119.807952pt;}
.ws1{word-spacing:-114.402514pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:285.439886pt;}
.ws3{word-spacing:398.719841pt;}
.ws4{word-spacing:462.719815pt;}
._2{margin-left:-6.675590pt;}
._6{margin-left:-3.737767pt;}
._4{margin-left:-2.406199pt;}
._1{margin-left:-1.484395pt;}
._0{width:1.504081pt;}
._7{width:2.943956pt;}
._5{width:460.799816pt;}
._3{width:2637.991812pt;}
.fs1{font-size:87.039965pt;}
.fs9{font-size:149.759940pt;}
.fs6{font-size:174.719930pt;}
.fs8{font-size:199.679920pt;}
.fsa{font-size:224.639910pt;}
.fs0{font-size:236.799905pt;}
.fs4{font-size:249.599900pt;}
.fs7{font-size:274.559890pt;}
.fs5{font-size:286.719885pt;}
.fs3{font-size:336.639865pt;}
.fs2{font-size:411.519835pt;}
.y5{bottom:-44.159824pt;}
.y33{bottom:-33.599828pt;}
.y4a{bottom:-25.919831pt;}
.y2f{bottom:-20.639833pt;}
.y24{bottom:-15.199835pt;}
.y44{bottom:-9.279838pt;}
.y39{bottom:-5.119839pt;}
.y17{bottom:-0.159841pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:1.440158pt;}
.y4f{bottom:1.760158pt;}
.y47{bottom:7.360162pt;}
.y2c{bottom:8.480125pt;}
.y2e{bottom:8.480146pt;}
.y1a{bottom:8.480159pt;}
.y31{bottom:8.480167pt;}
.y3b{bottom:9.760161pt;}
.y26{bottom:9.760165pt;}
.y35{bottom:9.760172pt;}
.y4c{bottom:10.880169pt;}
.yf{bottom:12.480158pt;}
.y11{bottom:12.480184pt;}
.y51{bottom:13.440158pt;}
.y7{bottom:21.760176pt;}
.y16{bottom:65.493624pt;}
.y2{bottom:73.333621pt;}
.y49{bottom:99.893611pt;}
.y4e{bottom:117.173604pt;}
.y15{bottom:123.413601pt;}
.y41{bottom:125.013601pt;}
.y22{bottom:175.733580pt;}
.y40{bottom:185.013577pt;}
.yd{bottom:185.173577pt;}
.y1d{bottom:187.093576pt;}
.y29{bottom:201.973570pt;}
.y8{bottom:229.173559pt;}
.y21{bottom:235.573556pt;}
.y1c{bottom:239.413555pt;}
.y37{bottom:243.413553pt;}
.y3f{bottom:244.853553pt;}
.y28{bottom:261.813546pt;}
.y3d{bottom:271.893542pt;}
.y12{bottom:280.213539pt;}
.y14{bottom:285.813536pt;}
.y20{bottom:295.413533pt;}
.y36{bottom:303.413529pt;}
.y4d{bottom:303.573529pt;}
.y3e{bottom:304.853529pt;}
.y52{bottom:316.213524pt;}
.y10{bottom:320.053333pt;}
.y27{bottom:321.813522pt;}
.y6{bottom:330.933333pt;}
.y3c{bottom:331.893518pt;}
.y13{bottom:338.133515pt;}
.y48{bottom:342.773514pt;}
.y1b{bottom:344.373513pt;}
.y34{bottom:353.493333pt;}
.y1f{bottom:355.413509pt;}
.y4b{bottom:360.053333pt;}
.y30{bottom:367.733333pt;}
.y25{bottom:371.893333pt;}
.y46{bottom:380.213333pt;}
.y3a{bottom:381.973333pt;}
.y50{bottom:385.173333pt;}
.ye{bottom:385.813333pt;}
.y19{bottom:388.213333pt;}
.y4{bottom:396.853333pt;}
.y1e{bottom:415.253485pt;}
.y2d{bottom:420.213333pt;}
.y32{bottom:423.253481pt;}
.y43{bottom:432.533478pt;}
.y23{bottom:441.653474pt;}
.y38{bottom:451.733470pt;}
.ya{bottom:456.693468pt;}
.y2b{bottom:472.533333pt;}
.y42{bottom:477.493460pt;}
.y2a{bottom:481.013458pt;}
.y18{bottom:557.813428pt;}
.y3{bottom:584.693417pt;}
.yb{bottom:601.493410pt;}
.y9{bottom:655.093389pt;}
.y45{bottom:667.253384pt;}
.y1{bottom:674.293381pt;}
.h16{height:6.560000pt;}
.h10{height:8.640000pt;}
.ha{height:11.040000pt;}
.h22{height:11.680000pt;}
.h14{height:14.560000pt;}
.h18{height:14.880000pt;}
.h1b{height:16.640000pt;}
.h1c{height:19.360000pt;}
.h1a{height:20.800000pt;}
.h12{height:24.960000pt;}
.h15{height:29.120000pt;}
.hd{height:35.040000pt;}
.h1e{height:36.800000pt;}
.h17{height:43.360000pt;}
.h13{height:43.680000pt;}
.h4{height:48.960000pt;}
.h8{height:51.360000pt;}
.h20{height:56.960000pt;}
.hb{height:62.400000pt;}
.h5{height:65.920000pt;}
.h2{height:90.779964pt;}
.h19{height:146.908066pt;}
.he{height:171.392744pt;}
.h11{height:195.877422pt;}
.h1d{height:220.362099pt;}
.h1f{height:244.846777pt;}
.h7{height:246.674901pt;}
.h1{height:246.974901pt;}
.h21{height:269.331455pt;}
.hf{height:271.342391pt;}
.h9{height:299.039880pt;}
.h6{height:351.104860pt;}
.h3{height:429.202328pt;}
.hc{height:466.834813pt;}
.h0{height:793.333333pt;}
.wc{width:120.000000pt;}
.wf{width:168.800000pt;}
.w9{width:235.680000pt;}
.w4{width:235.840000pt;}
.w1{width:251.840000pt;}
.w7{width:272.439467pt;}
.wa{width:300.160000pt;}
.wb{width:330.240000pt;}
.w6{width:360.160000pt;}
.w5{width:366.560000pt;}
.we{width:371.360000pt;}
.w3{width:372.119467pt;}
.w10{width:452.480000pt;}
.w8{width:455.639467pt;}
.wd{width:560.480000pt;}
.w2{width:599.040000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:11.347489pt;}
.x6{left:22.387991pt;}
.x1{left:26.867456pt;}
.xa{left:32.947453pt;}
.x15{left:34.067453pt;}
.xb{left:35.987452pt;}
.x5{left:41.107984pt;}
.x10{left:44.147449pt;}
.x14{left:52.467446pt;}
.x7{left:54.547978pt;}
.x17{left:86.387432pt;}
.x18{left:93.427520pt;}
.x3{left:239.347200pt;}
.x9{left:246.387200pt;}
.x16{left:411.827200pt;}
.x8{left:416.147834pt;}
.x11{left:663.827734pt;}
.xe{left:667.027200pt;}
.xc{left:693.587723pt;}
.x13{left:724.307710pt;}
.x4{left:750.547200pt;}
.xd{left:850.227200pt;}
.xf{left:875.987200pt;}
.x12{left:994.067200pt;}
}




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