
    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_112a2c49ea06418851e768b3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.157227;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_923b4c87362baf135d0eefa7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.135254;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_28d6309498ff6242251e214b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.882324;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_190f8da8bacdc53971b1fecc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.963000;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_80d23855401f47445a46150b.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_ec16854866aa1a2aae852480.woff')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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:ff7;src:url('chunks/assets/font_447775ed56d651784074ab4b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2cb63f4c66d0234c308fea0f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_19c3c4d9265620f52856da3f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.746000;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:ffa;src:url('chunks/assets/font_e83a4e443f80bdfbccd3598f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.713867;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:ffb;src:url('chunks/assets/font_f0543105ed24613038628af8.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_28d6309498ff6242251e214b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.882324;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);}
.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;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000194px;}
.ls0{letter-spacing:0.025734px;}
.ls2{letter-spacing:1.953268px;}
.ls1{letter-spacing:12.430594px;}
.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;}
}
.ws2{word-spacing:-132.851111px;}
.ws3{word-spacing:-40.519034px;}
.ws0{word-spacing:-37.409379px;}
.ws4{word-spacing:-20.259517px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:5560.834040px;}
._b{margin-left:-12.657290px;}
._a{margin-left:-7.383429px;}
._1{margin-left:-5.625455px;}
._4{margin-left:-4.205355px;}
._c{margin-left:-2.812740px;}
._0{margin-left:-1.406366px;}
._2{width:1.012544px;}
._7{width:2.827025px;}
._6{width:12.378586px;}
._5{width:13.974979px;}
._9{width:24.227216px;}
._3{width:30.618571px;}
._8{width:32.154428px;}
._d{width:515.879459px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,145,77);}
.fc3{color:rgb(14,16,16);}
.fc2{color:rgb(255,169,51);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,172,57);}
.fs7{font-size:77.991523px;}
.fs2{font-size:89.872512px;}
.fs3{font-size:119.980034px;}
.fs1{font-size:144.012044px;}
.fs5{font-size:155.983045px;}
.fs0{font-size:216.018066px;}
.fs6{font-size:360.030110px;}
.fs4{font-size:420.020136px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000028px;}
.y12{bottom:149.935660px;}
.y11{bottom:220.816587px;}
.y10{bottom:291.697515px;}
.ye{bottom:320.416024px;}
.yd{bottom:341.792812px;}
.yf{bottom:468.415529px;}
.y50{bottom:607.217614px;}
.y4f{bottom:634.219872px;}
.y4e{bottom:740.442253px;}
.y4d{bottom:789.946393px;}
.y4c{bottom:839.450533px;}
.y4b{bottom:888.954674px;}
.y4a{bottom:938.458814px;}
.y49{bottom:987.962954px;}
.y48{bottom:1037.467094px;}
.y47{bottom:1086.971234px;}
.y46{bottom:1228.507657px;}
.y54{bottom:1392.096459px;}
.y39{bottom:1423.293183px;}
.y45{bottom:1430.061147px;}
.y38{bottom:1472.797323px;}
.y44{bottom:1479.565287px;}
.y37{bottom:1522.301463px;}
.y43{bottom:1529.069427px;}
.y36{bottom:1621.309743px;}
.y42{bottom:1628.077707px;}
.y35{bottom:1670.813883px;}
.y41{bottom:1677.581847px;}
.y34{bottom:1720.318024px;}
.y40{bottom:1727.085987px;}
.y33{bottom:1769.822164px;}
.y32{bottom:1819.326304px;}
.y3f{bottom:1826.094267px;}
.y31{bottom:1868.830444px;}
.y3e{bottom:1875.598408px;}
.y30{bottom:1918.334584px;}
.y3d{bottom:1974.606688px;}
.y2f{bottom:2017.342864px;}
.y3c{bottom:2024.110828px;}
.y2e{bottom:2066.847004px;}
.y3b{bottom:2073.614968px;}
.y3a{bottom:2171.214184px;}
.y53{bottom:2203.246914px;}
.y2d{bottom:2342.983586px;}
.yc{bottom:2587.213770px;}
.y2c{bottom:2589.463885px;}
.y27{bottom:2629.470607px;}
.yb{bottom:2636.717910px;}
.y2b{bottom:2638.968025px;}
.y26{bottom:2678.974747px;}
.ya{bottom:2686.222050px;}
.y25{bottom:2728.478887px;}
.y9{bottom:2735.726190px;}
.y24{bottom:2777.983027px;}
.y8{bottom:2785.230331px;}
.y2a{bottom:2787.480445px;}
.y23{bottom:2827.487167px;}
.y7{bottom:2834.734471px;}
.y29{bottom:2836.984585px;}
.y22{bottom:2876.991307px;}
.y6{bottom:2884.238611px;}
.y28{bottom:2886.488725px;}
.y21{bottom:2926.495447px;}
.y5{bottom:2933.742751px;}
.y20{bottom:2975.999587px;}
.y4{bottom:2983.246891px;}
.y52{bottom:2986.622214px;}
.y1f{bottom:3025.503727px;}
.y3{bottom:3032.751031px;}
.y51{bottom:3083.306114px;}
.y2{bottom:3091.255994px;}
.y1e{bottom:3255.744396px;}
.y1d{bottom:3434.598115px;}
.y1c{bottom:3488.602632px;}
.y1b{bottom:3542.607148px;}
.y1a{bottom:3650.616181px;}
.y19{bottom:3704.620698px;}
.y18{bottom:3812.629731px;}
.y17{bottom:3866.634247px;}
.y16{bottom:3920.638764px;}
.y15{bottom:4055.125032px;}
.y14{bottom:4201.387264px;}
.y13{bottom:4347.649496px;}
.h5{height:66.505659px;}
.he{height:69.803936px;}
.h6{height:91.184826px;}
.hc{height:110.188903px;}
.h4{height:128.893592px;}
.hb{height:132.057919px;}
.h9{height:139.607872px;}
.h7{height:164.173730px;}
.hf{height:193.340388px;}
.h3{height:198.086879px;}
.hd{height:275.472257px;}
.h8{height:321.372829px;}
.ha{height:330.144798px;}
.h1{height:5056.500000px;}
.h2{height:5056.874789px;}
.h0{height:5056.874967px;}
.w2{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.xd{left:127.046191px;}
.x6{left:128.075445px;}
.x10{left:129.610838px;}
.x8{left:133.613958px;}
.x7{left:159.253435px;}
.x1{left:186.320694px;}
.xe{left:192.992291px;}
.x11{left:194.808529px;}
.x2{left:226.123312px;}
.x5{left:426.796549px;}
.x16{left:1289.562207px;}
.xb{left:1337.899791px;}
.x9{left:1377.063168px;}
.x4{left:1413.258853px;}
.xa{left:1438.275319px;}
.x17{left:1678.936093px;}
.x13{left:1804.347357px;}
.x12{left:1865.541928px;}
.x15{left:2451.346062px;}
.xc{left:2457.165642px;}
.xf{left:2463.916181px;}
.x3{left:2507.550196px;}
.x14{left:2669.839341px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000172pt;}
.ls0{letter-spacing:0.022875pt;}
.ls2{letter-spacing:1.736238pt;}
.ls1{letter-spacing:11.049417pt;}
.ws2{word-spacing:-118.089876pt;}
.ws3{word-spacing:-36.016919pt;}
.ws0{word-spacing:-33.252782pt;}
.ws4{word-spacing:-18.008460pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:4942.963592pt;}
._b{margin-left:-11.250924pt;}
._a{margin-left:-6.563048pt;}
._1{margin-left:-5.000405pt;}
._4{margin-left:-3.738094pt;}
._c{margin-left:-2.500214pt;}
._0{margin-left:-1.250103pt;}
._2{width:0.900039pt;}
._7{width:2.512911pt;}
._6{width:11.003187pt;}
._5{width:12.422204pt;}
._9{width:21.535303pt;}
._3{width:27.216508pt;}
._8{width:28.581713pt;}
._d{width:458.559519pt;}
.fs7{font-size:69.325798pt;}
.fs2{font-size:79.886677pt;}
.fs3{font-size:106.648919pt;}
.fs1{font-size:128.010706pt;}
.fs5{font-size:138.651596pt;}
.fs0{font-size:192.016059pt;}
.fs6{font-size:320.026764pt;}
.fs4{font-size:373.351232pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000025pt;}
.y12{bottom:133.276142pt;}
.y11{bottom:196.281411pt;}
.y10{bottom:259.286680pt;}
.ye{bottom:284.814243pt;}
.yd{bottom:303.815832pt;}
.yf{bottom:416.369359pt;}
.y50{bottom:539.748990pt;}
.y4f{bottom:563.750997pt;}
.y4e{bottom:658.170892pt;}
.y4d{bottom:702.174572pt;}
.y4c{bottom:746.178252pt;}
.y4b{bottom:790.181932pt;}
.y4a{bottom:834.185612pt;}
.y49{bottom:878.189292pt;}
.y48{bottom:922.192972pt;}
.y47{bottom:966.196652pt;}
.y46{bottom:1092.006806pt;}
.y54{bottom:1237.419075pt;}
.y39{bottom:1265.149496pt;}
.y45{bottom:1271.165464pt;}
.y38{bottom:1309.153176pt;}
.y44{bottom:1315.169144pt;}
.y37{bottom:1353.156856pt;}
.y43{bottom:1359.172824pt;}
.y36{bottom:1441.164216pt;}
.y42{bottom:1447.180184pt;}
.y35{bottom:1485.167896pt;}
.y41{bottom:1491.183864pt;}
.y34{bottom:1529.171576pt;}
.y40{bottom:1535.187544pt;}
.y33{bottom:1573.175257pt;}
.y32{bottom:1617.178937pt;}
.y3f{bottom:1623.194904pt;}
.y31{bottom:1661.182617pt;}
.y3e{bottom:1667.198584pt;}
.y30{bottom:1705.186297pt;}
.y3d{bottom:1755.205945pt;}
.y2f{bottom:1793.193657pt;}
.y3c{bottom:1799.209625pt;}
.y2e{bottom:1837.197337pt;}
.y3b{bottom:1843.213305pt;}
.y3a{bottom:1929.968164pt;}
.y53{bottom:1958.441701pt;}
.y2d{bottom:2082.652077pt;}
.yc{bottom:2299.745573pt;}
.y2c{bottom:2301.745675pt;}
.y27{bottom:2337.307206pt;}
.yb{bottom:2343.749254pt;}
.y2b{bottom:2345.749355pt;}
.y26{bottom:2381.310886pt;}
.ya{bottom:2387.752934pt;}
.y25{bottom:2425.314566pt;}
.y9{bottom:2431.756614pt;}
.y24{bottom:2469.318246pt;}
.y8{bottom:2475.760294pt;}
.y2a{bottom:2477.760395pt;}
.y23{bottom:2513.321926pt;}
.y7{bottom:2519.763974pt;}
.y29{bottom:2521.764076pt;}
.y22{bottom:2557.325606pt;}
.y6{bottom:2563.767654pt;}
.y28{bottom:2565.767756pt;}
.y21{bottom:2601.329286pt;}
.y5{bottom:2607.771334pt;}
.y20{bottom:2645.332966pt;}
.y4{bottom:2651.775014pt;}
.y52{bottom:2654.775302pt;}
.y1f{bottom:2689.336647pt;}
.y3{bottom:2695.778694pt;}
.y51{bottom:2740.716546pt;}
.y2{bottom:2747.783106pt;}
.y1e{bottom:2893.995019pt;}
.y1d{bottom:3052.976103pt;}
.y1c{bottom:3100.980117pt;}
.y1b{bottom:3148.984132pt;}
.y1a{bottom:3244.992161pt;}
.y19{bottom:3292.996176pt;}
.y18{bottom:3389.004205pt;}
.y17{bottom:3437.008220pt;}
.y16{bottom:3485.012234pt;}
.y15{bottom:3604.555584pt;}
.y14{bottom:3734.566457pt;}
.y13{bottom:3864.577330pt;}
.h5{height:59.116141pt;}
.he{height:62.047943pt;}
.h6{height:81.053179pt;}
.hc{height:97.945691pt;}
.h4{height:114.572082pt;}
.hb{height:117.384817pt;}
.h9{height:124.095886pt;}
.h7{height:145.932205pt;}
.hf{height:171.858123pt;}
.h3{height:176.077226pt;}
.hd{height:244.864228pt;}
.h8{height:285.664736pt;}
.ha{height:293.462043pt;}
.h1{height:4494.666667pt;}
.h2{height:4494.999813pt;}
.h0{height:4494.999971pt;}
.w2{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.xd{left:112.929947pt;}
.x6{left:113.844840pt;}
.x10{left:115.209634pt;}
.x8{left:118.767963pt;}
.x7{left:141.558609pt;}
.x1{left:165.618395pt;}
.xe{left:171.548703pt;}
.x11{left:173.163137pt;}
.x2{left:200.998499pt;}
.x5{left:379.374711pt;}
.x16{left:1146.277517pt;}
.xb{left:1189.244259pt;}
.x9{left:1224.056149pt;}
.x4{left:1256.230092pt;}
.xa{left:1278.466950pt;}
.x17{left:1492.387638pt;}
.x13{left:1603.864317pt;}
.x12{left:1658.259491pt;}
.x15{left:2178.974277pt;}
.xc{left:2184.147237pt;}
.xf{left:2190.147717pt;}
.x3{left:2228.933507pt;}
.x14{left:2373.190525pt;}
}




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