
    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_de3b4975879908e03c734a5d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_269782259a7f1361f6f61ae1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_25167177fe27b4697de059c8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_83eed9b56f8e40d2956a2abf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_b6bccc4edab96261a50b3b66.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_f89963b6fa2b83d98454a7d4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854980;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_9c38e2bdcfc9ff336002522f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.827148;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_9f7d76a07491a0d5e5d4b3b6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.002380px;}
.ls5{letter-spacing:107.986542px;}
.ls1{letter-spacing:108.006483px;}
.ls4{letter-spacing:108.008242px;}
.ls2{letter-spacing:108.012306px;}
.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;}
}
.ws3{word-spacing:-68.640004px;}
.ws2{word-spacing:-59.664003px;}
.ws1{word-spacing:-43.680000px;}
.wse{word-spacing:-37.968000px;}
.ws6{word-spacing:-28.476001px;}
.wsf{word-spacing:-15.600000px;}
.ws10{word-spacing:-0.168000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:64.311378px;}
.ws5{word-spacing:107.823378px;}
.wsd{word-spacing:809.028040px;}
.ws7{word-spacing:869.844040px;}
.wsc{word-spacing:906.972040px;}
.wsb{word-spacing:953.676040px;}
.wsa{word-spacing:963.084040px;}
.ws8{word-spacing:967.788040px;}
.ws9{word-spacing:1037.676040px;}
._17{margin-left:-4539.441762px;}
._6{margin-left:-26.712000px;}
._b{margin-left:-16.260002px;}
._7{margin-left:-13.200000px;}
._8{margin-left:-11.088000px;}
._4{margin-left:-8.736000px;}
._9{margin-left:-6.534000px;}
._0{margin-left:-5.520000px;}
._c{margin-left:-4.416001px;}
._3{margin-left:-3.192000px;}
._a{margin-left:-2.178000px;}
._1{margin-left:-1.080000px;}
._16{width:1.158000px;}
._2{width:23.991378px;}
._5{width:107.991378px;}
._12{width:596.550042px;}
._14{width:757.956041px;}
._f{width:827.844040px;}
._15{width:832.296040px;}
._13{width:930.240040px;}
._d{width:967.872040px;}
._11{width:976.944040px;}
._10{width:986.352040px;}
._e{width:1037.760040px;}
.fc4{color:rgb(217,234,211);}
.fc3{color:transparent;}
.fc2{color:rgb(255,169,51);}
.fc5{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(251,250,247);}
.fs9{font-size:54.000002px;}
.fse{font-size:60.000000px;}
.fsd{font-size:66.000004px;}
.fs6{font-size:72.000002px;}
.fsc{font-size:84.000000px;}
.fsa{font-size:102.000000px;}
.fs4{font-size:108.000003px;}
.fs3{font-size:120.000001px;}
.fs8{font-size:126.000004px;}
.fs7{font-size:149.999999px;}
.fsb{font-size:156.000011px;}
.fs2{font-size:167.999999px;}
.fs5{font-size:264.000014px;}
.fs0{font-size:276.000003px;}
.fs1{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y44{bottom:10.124974px;}
.y42{bottom:28.809876px;}
.y41{bottom:31.295149px;}
.yc{bottom:31.298693px;}
.y2c{bottom:35.698419px;}
.y4{bottom:35.869364px;}
.y3c{bottom:63.427589px;}
.y43{bottom:69.996466px;}
.y18{bottom:74.915898px;}
.y3b{bottom:98.617556px;}
.y50{bottom:106.320431px;}
.y3a{bottom:133.807557px;}
.y17{bottom:143.843919px;}
.y39{bottom:168.997536px;}
.y21{bottom:190.714683px;}
.y16{bottom:201.803909px;}
.y38{bottom:204.187537px;}
.y20{bottom:236.074695px;}
.y37{bottom:239.377538px;}
.y3{bottom:252.420938px;}
.y4c{bottom:254.342932px;}
.yb{bottom:259.762730px;}
.y15{bottom:259.763900px;}
.y36{bottom:274.567539px;}
.y1f{bottom:281.434708px;}
.y2b{bottom:284.026719px;}
.y48{bottom:301.829161px;}
.y35{bottom:309.757540px;}
.y4f{bottom:312.155872px;}
.y4b{bottom:314.789744px;}
.ye{bottom:314.983525px;}
.y40{bottom:314.983559px;}
.ya{bottom:317.722720px;}
.y14{bottom:317.723890px;}
.y2a{bottom:318.046698px;}
.y1e{bottom:326.794710px;}
.y2{bottom:332.342073px;}
.y55{bottom:340.812131px;}
.y34{bottom:344.947541px;}
.y47{bottom:348.624437px;}
.y29{bottom:352.066688px;}
.y1d{bottom:372.154711px;}
.y9{bottom:375.682711px;}
.y13{bottom:375.683881px;}
.y33{bottom:380.137565px;}
.y28{bottom:386.086666px;}
.y54{bottom:386.172121px;}
.y3f{bottom:386.263528px;}
.y1{bottom:388.070075px;}
.y46{bottom:395.419714px;}
.y32{bottom:415.327566px;}
.y1c{bottom:417.514701px;}
.y27{bottom:420.106679px;}
.y53{bottom:431.532112px;}
.y4e{bottom:432.875857px;}
.y8{bottom:433.642702px;}
.y12{bottom:433.643872px;}
.y4a{bottom:435.509729px;}
.y45{bottom:442.214990px;}
.y31{bottom:450.517567px;}
.y26{bottom:454.126680px;}
.y1b{bottom:462.874691px;}
.y52{bottom:476.892113px;}
.y30{bottom:485.707568px;}
.y25{bottom:488.146681px;}
.y7{bottom:491.602687px;}
.y11{bottom:491.603857px;}
.y1a{bottom:508.234682px;}
.y3e{bottom:517.447464px;}
.y24{bottom:522.166682px;}
.y2f{bottom:527.827558px;}
.y51{bottom:537.267111px;}
.y6{bottom:549.562676px;}
.y10{bottom:549.563846px;}
.y19{bottom:553.594675px;}
.y4d{bottom:553.595845px;}
.y49{bottom:556.229718px;}
.y23{bottom:557.482678px;}
.y3d{bottom:564.247466px;}
.y2e{bottom:578.857557px;}
.y2d{bottom:614.047552px;}
.y5{bottom:667.328598px;}
.yf{bottom:667.335674px;}
.y22{bottom:688.800462px;}
.yd{bottom:779.580000px;}
.hd{height:39.339845px;}
.h15{height:45.600000px;}
.h12{height:48.082034px;}
.h7{height:55.080002px;}
.h13{height:61.154297px;}
.h11{height:61.195312px;}
.he{height:67.983399px;}
.h8{height:77.519534px;}
.h4{height:78.679690px;}
.hc{height:90.439456px;}
.hb{height:91.792972px;}
.h3{height:91.800001px;}
.ha{height:109.277343px;}
.hf{height:111.972656px;}
.h10{height:113.648446px;}
.h14{height:122.390625px;}
.h2{height:127.680000px;}
.h6{height:128.520000px;}
.h9{height:189.492198px;}
.h5{height:201.960011px;}
.h1{height:273.600009px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4{left:10.125000px;}
.xe{left:26.402162px;}
.x11{left:45.765001px;}
.x1{left:109.110833px;}
.x12{left:112.042036px;}
.x2{left:114.320989px;}
.x5{left:120.320671px;}
.x14{left:121.408185px;}
.x8{left:122.984214px;}
.xb{left:125.082758px;}
.x6{left:163.110515px;}
.x9{left:179.082759px;}
.xa{left:217.110836px;}
.x16{left:457.133820px;}
.x17{left:458.769186px;}
.xd{left:487.650537px;}
.x18{left:511.133821px;}
.x10{left:682.420297px;}
.xc{left:845.303146px;}
.x13{left:881.001928px;}
.x7{left:1065.548689px;}
.x15{left:1102.158080px;}
.xf{left:1243.600105px;}
.x3{left:1253.896128px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.002115pt;}
.ls5{letter-spacing:95.988037pt;}
.ls1{letter-spacing:96.005762pt;}
.ls4{letter-spacing:96.007326pt;}
.ls2{letter-spacing:96.010939pt;}
.ws3{word-spacing:-61.013337pt;}
.ws2{word-spacing:-53.034670pt;}
.ws1{word-spacing:-38.826667pt;}
.wse{word-spacing:-33.749333pt;}
.ws6{word-spacing:-25.312001pt;}
.wsf{word-spacing:-13.866667pt;}
.ws10{word-spacing:-0.149333pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:57.165669pt;}
.ws5{word-spacing:95.843002pt;}
.wsd{word-spacing:719.136036pt;}
.ws7{word-spacing:773.194702pt;}
.wsc{word-spacing:806.197369pt;}
.wsb{word-spacing:847.712035pt;}
.wsa{word-spacing:856.074702pt;}
.ws8{word-spacing:860.256035pt;}
.ws9{word-spacing:922.378702pt;}
._17{margin-left:-4035.059344pt;}
._6{margin-left:-23.744000pt;}
._b{margin-left:-14.453335pt;}
._7{margin-left:-11.733333pt;}
._8{margin-left:-9.856000pt;}
._4{margin-left:-7.765333pt;}
._9{margin-left:-5.808000pt;}
._0{margin-left:-4.906667pt;}
._c{margin-left:-3.925334pt;}
._3{margin-left:-2.837333pt;}
._a{margin-left:-1.936000pt;}
._1{margin-left:-0.960000pt;}
._16{width:1.029334pt;}
._2{width:21.325669pt;}
._5{width:95.992336pt;}
._12{width:530.266704pt;}
._14{width:673.738703pt;}
._f{width:735.861369pt;}
._15{width:739.818702pt;}
._13{width:826.880036pt;}
._d{width:860.330702pt;}
._11{width:868.394702pt;}
._10{width:876.757369pt;}
._e{width:922.453368pt;}
.fs9{font-size:48.000002pt;}
.fse{font-size:53.333334pt;}
.fsd{font-size:58.666670pt;}
.fs6{font-size:64.000002pt;}
.fsc{font-size:74.666666pt;}
.fsa{font-size:90.666667pt;}
.fs4{font-size:96.000003pt;}
.fs3{font-size:106.666667pt;}
.fs8{font-size:112.000004pt;}
.fs7{font-size:133.333332pt;}
.fsb{font-size:138.666676pt;}
.fs2{font-size:149.333333pt;}
.fs5{font-size:234.666680pt;}
.fs0{font-size:245.333336pt;}
.fs1{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:8.999977pt;}
.y42{bottom:25.608779pt;}
.y41{bottom:27.817910pt;}
.yc{bottom:27.821061pt;}
.y2c{bottom:31.731928pt;}
.y4{bottom:31.883879pt;}
.y3c{bottom:56.380079pt;}
.y43{bottom:62.219081pt;}
.y18{bottom:66.591909pt;}
.y3b{bottom:87.660050pt;}
.y50{bottom:94.507050pt;}
.y3a{bottom:118.940051pt;}
.y17{bottom:127.861261pt;}
.y39{bottom:150.220032pt;}
.y21{bottom:169.524162pt;}
.y16{bottom:179.381253pt;}
.y38{bottom:181.500033pt;}
.y20{bottom:209.844174pt;}
.y37{bottom:212.780034pt;}
.y3{bottom:224.374167pt;}
.y4c{bottom:226.082606pt;}
.yb{bottom:230.900204pt;}
.y15{bottom:230.901244pt;}
.y36{bottom:244.060035pt;}
.y1f{bottom:250.164185pt;}
.y2b{bottom:252.468195pt;}
.y48{bottom:268.292588pt;}
.y35{bottom:275.340036pt;}
.y4f{bottom:277.471886pt;}
.y4b{bottom:279.813106pt;}
.ye{bottom:279.985356pt;}
.y40{bottom:279.985386pt;}
.ya{bottom:282.420196pt;}
.y14{bottom:282.421236pt;}
.y2a{bottom:282.708176pt;}
.y1e{bottom:290.484186pt;}
.y2{bottom:295.415176pt;}
.y55{bottom:302.944117pt;}
.y34{bottom:306.620037pt;}
.y47{bottom:309.888389pt;}
.y29{bottom:312.948167pt;}
.y1d{bottom:330.804188pt;}
.y9{bottom:333.940188pt;}
.y13{bottom:333.941228pt;}
.y33{bottom:337.900058pt;}
.y28{bottom:343.188148pt;}
.y54{bottom:343.264108pt;}
.y3f{bottom:343.345358pt;}
.y1{bottom:344.951178pt;}
.y46{bottom:351.484190pt;}
.y32{bottom:369.180059pt;}
.y1c{bottom:371.124179pt;}
.y27{bottom:373.428159pt;}
.y53{bottom:383.584099pt;}
.y4e{bottom:384.778539pt;}
.y8{bottom:385.460179pt;}
.y12{bottom:385.461219pt;}
.y4a{bottom:387.119759pt;}
.y45{bottom:393.079992pt;}
.y31{bottom:400.460060pt;}
.y26{bottom:403.668160pt;}
.y1b{bottom:411.444170pt;}
.y52{bottom:423.904101pt;}
.y30{bottom:431.740061pt;}
.y25{bottom:433.908161pt;}
.y7{bottom:436.980166pt;}
.y11{bottom:436.981206pt;}
.y1a{bottom:451.764161pt;}
.y3e{bottom:459.953302pt;}
.y24{bottom:464.148162pt;}
.y2f{bottom:469.180052pt;}
.y51{bottom:477.570765pt;}
.y6{bottom:488.500157pt;}
.y10{bottom:488.501197pt;}
.y19{bottom:492.084156pt;}
.y4d{bottom:492.085196pt;}
.y49{bottom:494.426416pt;}
.y23{bottom:495.540158pt;}
.y3d{bottom:501.553303pt;}
.y2e{bottom:514.540050pt;}
.y2d{bottom:545.820046pt;}
.y5{bottom:593.180976pt;}
.yf{bottom:593.187266pt;}
.y22{bottom:612.267078pt;}
.yd{bottom:692.960000pt;}
.hd{height:34.968751pt;}
.h15{height:40.533334pt;}
.h12{height:42.739586pt;}
.h7{height:48.960002pt;}
.h13{height:54.359375pt;}
.h11{height:54.395833pt;}
.he{height:60.429688pt;}
.h8{height:68.906252pt;}
.h4{height:69.937502pt;}
.hc{height:80.390628pt;}
.hb{height:81.593753pt;}
.h3{height:81.600001pt;}
.ha{height:97.135416pt;}
.hf{height:99.531250pt;}
.h10{height:101.020840pt;}
.h14{height:108.791666pt;}
.h2{height:113.493333pt;}
.h6{height:114.240000pt;}
.h9{height:168.437509pt;}
.h5{height:179.520010pt;}
.h1{height:243.200008pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.000000pt;}
.xe{left:23.468589pt;}
.x11{left:40.680001pt;}
.x1{left:96.987407pt;}
.x12{left:99.592921pt;}
.x2{left:101.618657pt;}
.x5{left:106.951707pt;}
.x14{left:107.918386pt;}
.x8{left:109.319301pt;}
.xb{left:111.184674pt;}
.x6{left:144.987125pt;}
.x9{left:159.184675pt;}
.xa{left:192.987410pt;}
.x16{left:406.341173pt;}
.x17{left:407.794832pt;}
.xd{left:433.467144pt;}
.x18{left:454.341175pt;}
.x10{left:606.595819pt;}
.xc{left:751.380574pt;}
.x13{left:783.112825pt;}
.x7{left:947.154390pt;}
.x15{left:979.696071pt;}
.xf{left:1105.422315pt;}
.x3{left:1114.574336pt;}
}




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