
    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_794b3b9b640261c0f34fa794.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d43bccb500f81cabc9463bd8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_8c61ec183334309e7bdf1d08.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_1ab5cd91a437be3b9e933f73.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.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;}
}
.ws1{word-spacing:-20.003906px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-7.980442px;}
._3{margin-left:-5.343731px;}
._5{margin-left:-3.972656px;}
._0{margin-left:-2.756671px;}
._2{margin-left:-1.300777px;}
._4{width:44.507812px;}
.fc2{color:rgb(29,155,209);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs3{font-size:68.999999px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.342591px;}
.ya8{bottom:14.794180px;}
.y75{bottom:14.794181px;}
.y67{bottom:14.794184px;}
.y9a{bottom:14.794186px;}
.y8b{bottom:14.794187px;}
.y61{bottom:14.794189px;}
.yba{bottom:14.794192px;}
.y81{bottom:14.794195px;}
.y28{bottom:38.523194px;}
.yab{bottom:38.597155px;}
.yb1{bottom:38.597159px;}
.y99{bottom:38.597161px;}
.y8a{bottom:38.597162px;}
.ya4{bottom:38.597164px;}
.yb9{bottom:38.597167px;}
.y9e{bottom:38.597168px;}
.y80{bottom:38.597170px;}
.y74{bottom:38.597171px;}
.y66{bottom:38.597174px;}
.y79{bottom:38.597179px;}
.y26{bottom:59.967584px;}
.yb0{bottom:62.400134px;}
.ybc{bottom:62.400136px;}
.y89{bottom:62.400137px;}
.ya3{bottom:62.400139px;}
.yb8{bottom:62.400142px;}
.y7f{bottom:62.400145px;}
.y73{bottom:62.400146px;}
.y65{bottom:62.400149px;}
.y98{bottom:62.400151px;}
.ya1{bottom:62.400152px;}
.y78{bottom:62.400154px;}
.y88{bottom:86.203112px;}
.ya7{bottom:86.203120px;}
.y72{bottom:86.203121px;}
.y9d{bottom:86.203124px;}
.y64{bottom:86.203126px;}
.y77{bottom:86.203129px;}
.yb7{bottom:86.203132px;}
.y7e{bottom:86.203135px;}
.ya6{bottom:110.006095px;}
.y71{bottom:110.006096px;}
.yaf{bottom:110.006099px;}
.y97{bottom:110.006101px;}
.y87{bottom:110.006102px;}
.y63{bottom:110.006104px;}
.yb6{bottom:110.006107px;}
.y7d{bottom:110.006110px;}
.y25{bottom:115.718623px;}
.y40{bottom:127.156501px;}
.yaa{bottom:133.809070px;}
.yae{bottom:133.809074px;}
.y96{bottom:133.809076px;}
.y86{bottom:133.809077px;}
.y9c{bottom:133.809082px;}
.y7c{bottom:133.809085px;}
.y70{bottom:133.809086px;}
.y24{bottom:139.521601px;}
.yb3{bottom:142.308841px;}
.y3f{bottom:150.959476px;}
.yad{bottom:157.612049px;}
.y95{bottom:157.612051px;}
.y85{bottom:157.612052px;}
.y7b{bottom:157.612060px;}
.y6f{bottom:157.612061px;}
.y8c{bottom:159.183840px;}
.y23{bottom:163.324588px;}
.yb2{bottom:166.111821px;}
.y3e{bottom:174.762444px;}
.y84{bottom:181.415027px;}
.y6e{bottom:181.415036px;}
.ya0{bottom:181.415039px;}
.y94{bottom:181.415041px;}
.y22{bottom:187.127566px;}
.y6d{bottom:205.218011px;}
.y93{bottom:205.218016px;}
.y83{bottom:205.218017px;}
.y5f{bottom:209.800051px;}
.y21{bottom:210.930541px;}
.y92{bottom:229.020991px;}
.y6c{bottom:229.021001px;}
.y5e{bottom:233.603026px;}
.y20{bottom:234.733528px;}
.y91{bottom:252.823966px;}
.y6b{bottom:252.823976px;}
.y5d{bottom:257.406001px;}
.y1f{bottom:258.536506px;}
.y6a{bottom:276.626953px;}
.y90{bottom:276.626956px;}
.y5c{bottom:281.208982px;}
.y1e{bottom:282.339481px;}
.y69{bottom:300.429931px;}
.y5b{bottom:305.011968px;}
.y1d{bottom:306.142450px;}
.y8f{bottom:324.232906px;}
.y82{bottom:325.804693px;}
.y5a{bottom:328.814943px;}
.y1c{bottom:329.945428px;}
.y8e{bottom:348.035881px;}
.yac{bottom:349.607671px;}
.y59{bottom:352.617921px;}
.y1b{bottom:353.748406px;}
.y8d{bottom:371.838871px;}
.ya9{bottom:373.410651px;}
.y58{bottom:376.420900px;}
.y1a{bottom:377.551386px;}
.y57{bottom:400.223878px;}
.y19{bottom:401.354364px;}
.y56{bottom:424.026856px;}
.y18{bottom:425.157343px;}
.y55{bottom:447.829836px;}
.y17{bottom:448.960321px;}
.y54{bottom:471.632814px;}
.y16{bottom:472.763311px;}
.y53{bottom:495.435793px;}
.y15{bottom:496.566283px;}
.y52{bottom:519.238771px;}
.y14{bottom:520.369261px;}
.y51{bottom:543.041746px;}
.y13{bottom:544.172241px;}
.y7a{bottom:556.906491px;}
.y50{bottom:566.844721px;}
.y12{bottom:567.975219px;}
.y4f{bottom:590.647711px;}
.y11{bottom:591.778198px;}
.y76{bottom:604.512447px;}
.y4e{bottom:614.450676px;}
.y10{bottom:615.581176px;}
.y4d{bottom:638.253655px;}
.yf{bottom:638.807564px;}
.y4c{bottom:662.056633px;}
.y3d{bottom:662.056636px;}
.ye{bottom:667.203549px;}
.ybd{bottom:675.491092px;}
.y4b{bottom:685.859611px;}
.y3c{bottom:685.859626px;}
.yd{bottom:691.006527px;}
.ybb{bottom:692.796390px;}
.y4a{bottom:709.662591px;}
.y3b{bottom:709.662601px;}
.yc{bottom:714.809506px;}
.y49{bottom:733.465569px;}
.y3a{bottom:733.465576px;}
.yb{bottom:738.612485px;}
.y68{bottom:740.402345px;}
.ya5{bottom:740.402346px;}
.y48{bottom:757.268548px;}
.y39{bottom:757.268551px;}
.ya{bottom:762.415463px;}
.y38{bottom:781.071526px;}
.y9{bottom:786.218442px;}
.yb5{bottom:788.008299px;}
.ya2{bottom:788.008302px;}
.y37{bottom:804.874516px;}
.y8{bottom:810.021420px;}
.y36{bottom:828.677484px;}
.y47{bottom:828.677485px;}
.y35{bottom:852.480463px;}
.y46{bottom:852.480472px;}
.y7{bottom:854.824405px;}
.y34{bottom:876.283441px;}
.y45{bottom:876.283447px;}
.y6{bottom:878.627383px;}
.y44{bottom:900.086422px;}
.y33{bottom:900.086431px;}
.y5{bottom:902.430362px;}
.y32{bottom:923.889399px;}
.y43{bottom:923.889408px;}
.y9f{bottom:923.898193px;}
.y62{bottom:930.826171px;}
.y31{bottom:947.692378px;}
.y42{bottom:947.692383px;}
.yb4{bottom:947.701171px;}
.y4{bottom:951.846129px;}
.y30{bottom:971.495356px;}
.y41{bottom:971.495361px;}
.y3{bottom:991.517760px;}
.y2f{bottom:995.298340px;}
.y9b{bottom:995.307129px;}
.y2e{bottom:1019.101318px;}
.y2d{bottom:1042.904297px;}
.y1{bottom:1049.657409px;}
.y2c{bottom:1066.707275px;}
.y60{bottom:1066.716064px;}
.y2b{bottom:1090.510253px;}
.y2a{bottom:1114.313233px;}
.y29{bottom:1138.116211px;}
.y27{bottom:1155.000000px;}
.h8{height:39.552978px;}
.h11{height:45.988769px;}
.h2{height:48.082032px;}
.h7{height:52.417969px;}
.h4{height:52.453125px;}
.h3{height:87.421873px;}
.h5{height:107.625000px;}
.h6{height:108.000000px;}
.h9{height:134.764893px;}
.he{height:158.567871px;}
.hb{height:182.370849px;}
.hf{height:206.173829px;}
.h1{height:213.342591px;}
.hc{height:229.976807px;}
.h10{height:253.779780px;}
.ha{height:325.188720px;}
.hd{height:396.597660px;}
.h0{height:1263.000000px;}
.w2{width:331.875000px;}
.w3{width:342.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x13{left:6.750000px;}
.x12{left:85.434082px;}
.x2{left:108.000000px;}
.xf{left:109.125000px;}
.x3{left:114.849759px;}
.x10{left:117.360352px;}
.x8{left:123.366361px;}
.x6{left:127.334623px;}
.x5{left:130.494291px;}
.xb{left:135.000000px;}
.x7{left:147.843900px;}
.xc{left:162.000000px;}
.x4{left:233.379056px;}
.x9{left:422.950348px;}
.x11{left:442.125000px;}
.xd{left:446.456700px;}
.x1{left:696.206700px;}
.xa{left:784.913411px;}
.xe{left:789.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-17.781250pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-7.093726pt;}
._3{margin-left:-4.749983pt;}
._5{margin-left:-3.531250pt;}
._0{margin-left:-2.450374pt;}
._2{margin-left:-1.156246pt;}
._4{width:39.562500pt;}
.fs0{font-size:58.666668pt;}
.fs3{font-size:61.333332pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.637859pt;}
.ya8{bottom:13.150382pt;}
.y75{bottom:13.150384pt;}
.y67{bottom:13.150386pt;}
.y9a{bottom:13.150387pt;}
.y8b{bottom:13.150389pt;}
.y61{bottom:13.150390pt;}
.yba{bottom:13.150393pt;}
.y81{bottom:13.150396pt;}
.y28{bottom:34.242839pt;}
.yab{bottom:34.308582pt;}
.yb1{bottom:34.308586pt;}
.y99{bottom:34.308587pt;}
.y8a{bottom:34.308589pt;}
.ya4{bottom:34.308590pt;}
.yb9{bottom:34.308593pt;}
.y9e{bottom:34.308594pt;}
.y80{bottom:34.308596pt;}
.y74{bottom:34.308597pt;}
.y66{bottom:34.308600pt;}
.y79{bottom:34.308604pt;}
.y26{bottom:53.304519pt;}
.yb0{bottom:55.466786pt;}
.ybc{bottom:55.466788pt;}
.y89{bottom:55.466789pt;}
.ya3{bottom:55.466790pt;}
.yb8{bottom:55.466793pt;}
.y7f{bottom:55.466796pt;}
.y73{bottom:55.466797pt;}
.y65{bottom:55.466800pt;}
.y98{bottom:55.466801pt;}
.ya1{bottom:55.466802pt;}
.y78{bottom:55.466804pt;}
.y88{bottom:76.624989pt;}
.ya7{bottom:76.624995pt;}
.y72{bottom:76.624997pt;}
.y9d{bottom:76.625000pt;}
.y64{bottom:76.625001pt;}
.y77{bottom:76.625004pt;}
.yb7{bottom:76.625006pt;}
.y7e{bottom:76.625009pt;}
.ya6{bottom:97.783196pt;}
.y71{bottom:97.783197pt;}
.yaf{bottom:97.783200pt;}
.y97{bottom:97.783201pt;}
.y87{bottom:97.783202pt;}
.y63{bottom:97.783203pt;}
.yb6{bottom:97.783206pt;}
.y7d{bottom:97.783209pt;}
.y25{bottom:102.860998pt;}
.y40{bottom:113.028001pt;}
.yaa{bottom:118.941395pt;}
.yae{bottom:118.941400pt;}
.y96{bottom:118.941401pt;}
.y86{bottom:118.941402pt;}
.y9c{bottom:118.941406pt;}
.y7c{bottom:118.941409pt;}
.y70{bottom:118.941410pt;}
.y24{bottom:124.019201pt;}
.yb3{bottom:126.496748pt;}
.y3f{bottom:134.186201pt;}
.yad{bottom:140.099599pt;}
.y95{bottom:140.099601pt;}
.y85{bottom:140.099602pt;}
.y7b{bottom:140.099609pt;}
.y6f{bottom:140.099610pt;}
.y8c{bottom:141.496747pt;}
.y23{bottom:145.177411pt;}
.yb2{bottom:147.654952pt;}
.y3e{bottom:155.344395pt;}
.y84{bottom:161.257802pt;}
.y6e{bottom:161.257810pt;}
.ya0{bottom:161.257813pt;}
.y94{bottom:161.257814pt;}
.y22{bottom:166.335614pt;}
.y6d{bottom:182.416010pt;}
.y93{bottom:182.416014pt;}
.y83{bottom:182.416016pt;}
.y5f{bottom:186.488934pt;}
.y21{bottom:187.493814pt;}
.y92{bottom:203.574214pt;}
.y6c{bottom:203.574223pt;}
.y5e{bottom:207.647134pt;}
.y20{bottom:208.652024pt;}
.y91{bottom:224.732414pt;}
.y6b{bottom:224.732424pt;}
.y5d{bottom:228.805334pt;}
.y1f{bottom:229.810227pt;}
.y6a{bottom:245.890625pt;}
.y90{bottom:245.890627pt;}
.y5c{bottom:249.963539pt;}
.y1e{bottom:250.968428pt;}
.y69{bottom:267.048827pt;}
.y5b{bottom:271.121749pt;}
.y1d{bottom:272.126622pt;}
.y8f{bottom:288.207027pt;}
.y82{bottom:289.604172pt;}
.y5a{bottom:292.279949pt;}
.y1c{bottom:293.284825pt;}
.y8e{bottom:309.365227pt;}
.yac{bottom:310.762375pt;}
.y59{bottom:313.438152pt;}
.y1b{bottom:314.443028pt;}
.y8d{bottom:330.523441pt;}
.ya9{bottom:331.920579pt;}
.y58{bottom:334.596355pt;}
.y1a{bottom:335.601232pt;}
.y57{bottom:355.754558pt;}
.y19{bottom:356.759435pt;}
.y56{bottom:376.912761pt;}
.y18{bottom:377.917638pt;}
.y55{bottom:398.070965pt;}
.y17{bottom:399.075841pt;}
.y54{bottom:419.229168pt;}
.y16{bottom:420.234054pt;}
.y53{bottom:440.387371pt;}
.y15{bottom:441.392251pt;}
.y52{bottom:461.545574pt;}
.y14{bottom:462.550454pt;}
.y51{bottom:482.703774pt;}
.y13{bottom:483.708659pt;}
.y7a{bottom:495.027992pt;}
.y50{bottom:503.861974pt;}
.y12{bottom:504.866861pt;}
.y4f{bottom:525.020188pt;}
.y11{bottom:526.025064pt;}
.y76{bottom:537.344397pt;}
.y4e{bottom:546.178379pt;}
.y10{bottom:547.183267pt;}
.y4d{bottom:567.336582pt;}
.yf{bottom:567.828945pt;}
.y4c{bottom:588.494785pt;}
.y3d{bottom:588.494787pt;}
.ye{bottom:593.069821pt;}
.ybd{bottom:600.436526pt;}
.y4b{bottom:609.652988pt;}
.y3c{bottom:609.653001pt;}
.yd{bottom:614.228024pt;}
.ybb{bottom:615.819013pt;}
.y4a{bottom:630.811192pt;}
.y3b{bottom:630.811201pt;}
.yc{bottom:635.386227pt;}
.y49{bottom:651.969395pt;}
.y3a{bottom:651.969401pt;}
.yb{bottom:656.544431pt;}
.y68{bottom:658.135417pt;}
.ya5{bottom:658.135419pt;}
.y48{bottom:673.127598pt;}
.y39{bottom:673.127601pt;}
.ya{bottom:677.702634pt;}
.y38{bottom:694.285801pt;}
.y9{bottom:698.860837pt;}
.yb5{bottom:700.451821pt;}
.ya2{bottom:700.451824pt;}
.y37{bottom:715.444014pt;}
.y8{bottom:720.019040pt;}
.y36{bottom:736.602208pt;}
.y47{bottom:736.602209pt;}
.y35{bottom:757.760411pt;}
.y46{bottom:757.760419pt;}
.y7{bottom:759.843915pt;}
.y34{bottom:778.918614pt;}
.y45{bottom:778.918619pt;}
.y6{bottom:781.002118pt;}
.y44{bottom:800.076819pt;}
.y33{bottom:800.076827pt;}
.y5{bottom:802.160322pt;}
.y32{bottom:821.235021pt;}
.y43{bottom:821.235029pt;}
.y9f{bottom:821.242839pt;}
.y62{bottom:827.401041pt;}
.y31{bottom:842.393224pt;}
.y42{bottom:842.393229pt;}
.yb4{bottom:842.401041pt;}
.y4{bottom:846.085448pt;}
.y30{bottom:863.551427pt;}
.y41{bottom:863.551432pt;}
.y3{bottom:881.349120pt;}
.y2f{bottom:884.709635pt;}
.y9b{bottom:884.717448pt;}
.y2e{bottom:905.867838pt;}
.y2d{bottom:927.026042pt;}
.y1{bottom:933.028808pt;}
.y2c{bottom:948.184245pt;}
.y60{bottom:948.192057pt;}
.y2b{bottom:969.342448pt;}
.y2a{bottom:990.500651pt;}
.y29{bottom:1011.658854pt;}
.y27{bottom:1026.666667pt;}
.h8{height:35.158203pt;}
.h11{height:40.878905pt;}
.h2{height:42.739584pt;}
.h7{height:46.593750pt;}
.h4{height:46.625000pt;}
.h3{height:77.708331pt;}
.h5{height:95.666667pt;}
.h6{height:96.000000pt;}
.h9{height:119.791016pt;}
.he{height:140.949219pt;}
.hb{height:162.107421pt;}
.hf{height:183.265625pt;}
.h1{height:189.637859pt;}
.hc{height:204.423828pt;}
.h10{height:225.582027pt;}
.ha{height:289.056640pt;}
.hd{height:352.531253pt;}
.h0{height:1122.666667pt;}
.w2{width:295.000000pt;}
.w3{width:304.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x13{left:6.000000pt;}
.x12{left:75.941406pt;}
.x2{left:96.000000pt;}
.xf{left:97.000000pt;}
.x3{left:102.088675pt;}
.x10{left:104.320313pt;}
.x8{left:109.658987pt;}
.x6{left:113.186331pt;}
.x5{left:115.994925pt;}
.xb{left:120.000000pt;}
.x7{left:131.416800pt;}
.xc{left:144.000000pt;}
.x4{left:207.448050pt;}
.x9{left:375.955865pt;}
.x11{left:393.000000pt;}
.xd{left:396.850400pt;}
.x1{left:618.850400pt;}
.xa{left:697.700810pt;}
.xe{left:702.000000pt;}
}




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