
    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_fa7a4a4eaa3c33b1002b9932.woff')format("woff");}.ff1{font-family:ff1;line-height:1.047852;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_97e1dcd52bc5b8b8d63323ef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_e26f3700f1ec61dd700eee8b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946289;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_7f2e99617eb3138a2819d474.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934082;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_9e252c40c50018ab28a6528a.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_34dabc930fb5c406c8c349f9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946289;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_e8cf6d1141c4fe50ee0099ff.woff')format("woff");}.ff7{font-family:ff7;line-height:0.907715;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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ef4ea02fd11060b993c8980d.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2225cf1ce7f9d4412ddd6b55.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_20726c35f3bcc99b87dc9724.woff')format("woff");}.ffb{font-family:ffb;line-height:0.719238;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;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:1432.096246px;}
.ls4{letter-spacing:1765.050346px;}
.ls5{letter-spacing:2088.912079px;}
.ls3{letter-spacing:2247.751040px;}
.ls1{letter-spacing:2252.731379px;}
.ls2{letter-spacing:2253.441718px;}
.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:-13.212891px;}
.ws2{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-5.639948px;}
._3{margin-left:-4.038065px;}
._0{margin-left:-2.957225px;}
._5{margin-left:-1.186614px;}
._4{width:4.395524px;}
._2{width:8.990133px;}
._1{width:13.420929px;}
._a{width:17.916317px;}
._b{width:35.686677px;}
._8{width:80.935780px;}
._7{width:85.416486px;}
._9{width:161.937659px;}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(255,153,0);}
.fc1{color:rgb(244,125,32);}
.fc4{color:rgb(67,67,67);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y34{bottom:11.903137px;}
.y31{bottom:11.903320px;}
.y3a{bottom:11.903503px;}
.y57{bottom:12.305969px;}
.y54{bottom:12.306152px;}
.y41{bottom:14.649719px;}
.y45{bottom:14.649902px;}
.y15{bottom:18.565337px;}
.y11{bottom:18.565384px;}
.y26{bottom:18.565426px;}
.y7{bottom:18.565430px;}
.yb{bottom:18.565468px;}
.ye{bottom:18.565475px;}
.y1a{bottom:19.334381px;}
.y1c{bottom:19.690338px;}
.y21{bottom:19.690419px;}
.y1d{bottom:19.690434px;}
.y39{bottom:30.213868px;}
.y2b{bottom:31.056146px;}
.y2d{bottom:39.149960px;}
.y2{bottom:39.150005px;}
.y68{bottom:39.150143px;}
.y25{bottom:40.538086px;}
.ya{bottom:40.538113px;}
.y18{bottom:43.538173px;}
.y2a{bottom:61.268561px;}
.y9{bottom:62.510743px;}
.y17{bottom:68.510788px;}
.y29{bottom:81.410156px;}
.y52{bottom:157.143314px;}
.y51{bottom:177.285281px;}
.y50{bottom:197.426696px;}
.y4f{bottom:214.262144px;}
.y4e{bottom:249.447692px;}
.y28{bottom:251.806089px;}
.y4d{bottom:284.633233px;}
.y27{bottom:294.088721px;}
.y24{bottom:310.924253px;}
.y4c{bottom:319.818793px;}
.y23{bottom:321.910578px;}
.y4b{bottom:355.004326px;}
.y22{bottom:377.744568px;}
.y87{bottom:388.331171px;}
.y4a{bottom:390.189883px;}
.y86{bottom:408.472406px;}
.y66{bottom:422.031009px;}
.y20{bottom:422.592231px;}
.y1f{bottom:422.618595px;}
.y1e{bottom:423.717231px;}
.y49{bottom:425.375421px;}
.y48{bottom:426.748723px;}
.y85{bottom:428.614016px;}
.y84{bottom:448.755986px;}
.y47{bottom:463.307559px;}
.y65{bottom:464.313356px;}
.y46{bottom:464.680846px;}
.y83{bottom:468.897581px;}
.y16{bottom:469.689791px;}
.y64{bottom:484.455326px;}
.y82{bottom:489.038825px;}
.y1b{bottom:493.537536px;}
.y19{bottom:493.563900px;}
.y14{bottom:494.662536px;}
.y44{bottom:501.239691px;}
.y43{bottom:502.612979px;}
.y63{bottom:509.096921px;}
.y81{bottom:509.180429px;}
.y80{bottom:529.322394px;}
.y62{bottom:533.738156px;}
.y42{bottom:539.171818px;}
.y7f{bottom:549.463629px;}
.y61{bottom:558.380126px;}
.y13{bottom:565.607810px;}
.y7e{bottom:569.605225px;}
.y40{bottom:574.357359px;}
.y3f{bottom:575.730646px;}
.y60{bottom:583.021736px;}
.y7d{bottom:589.747194px;}
.y5f{bottom:607.662971px;}
.y7c{bottom:609.888431px;}
.y3e{bottom:612.289483px;}
.y12{bottom:631.900824px;}
.y7b{bottom:647.044194px;}
.y5e{bottom:647.138303px;}
.y3d{bottom:647.475043px;}
.y10{bottom:670.877374px;}
.y3c{bottom:682.660577px;}
.y7a{bottom:689.327276px;}
.y5d{bottom:694.015497px;}
.y79{bottom:709.468511px;}
.yf{bottom:715.724988px;}
.y3b{bottom:717.846133px;}
.y5c{bottom:728.850954px;}
.y78{bottom:729.610106px;}
.y77{bottom:749.752069px;}
.y38{bottom:753.031495px;}
.yd{bottom:760.572648px;}
.y37{bottom:762.186958px;}
.y5b{bottom:765.867549px;}
.y76{bottom:769.893304px;}
.y75{bottom:790.034906px;}
.y5a{bottom:802.884342px;}
.yc{bottom:805.420308px;}
.y36{bottom:806.527768px;}
.y74{bottom:810.176873px;}
.y73{bottom:830.318108px;}
.y59{bottom:839.900754px;}
.y35{bottom:841.713313px;}
.y8{bottom:850.267960px;}
.y72{bottom:850.459705px;}
.y71{bottom:870.601679px;}
.y6{bottom:872.240613px;}
.y33{bottom:876.898862px;}
.y58{bottom:876.917364px;}
.y70{bottom:890.742923px;}
.y6f{bottom:910.884527px;}
.y32{bottom:912.084419px;}
.y56{bottom:913.934142px;}
.y6e{bottom:931.026492px;}
.y30{bottom:947.269964px;}
.y55{bottom:950.950569px;}
.y6d{bottom:951.167727px;}
.y5{bottom:960.506244px;}
.y6c{bottom:971.309323px;}
.y2f{bottom:982.455504px;}
.y53{bottom:987.967164px;}
.y6b{bottom:991.451292px;}
.y4{bottom:1006.414467px;}
.y6a{bottom:1011.592529px;}
.y3{bottom:1043.035537px;}
.y69{bottom:1048.748290px;}
.y2e{bottom:1048.748474px;}
.y67{bottom:1071.599853px;}
.y1{bottom:1071.599991px;}
.y2c{bottom:1071.600036px;}
.h13{height:34.060363px;}
.h12{height:34.060546px;}
.h19{height:35.891418px;}
.h18{height:35.891601px;}
.h15{height:36.806946px;}
.h16{height:36.807129px;}
.h6{height:42.421874px;}
.hb{height:43.722564px;}
.ha{height:43.722611px;}
.h5{height:43.722657px;}
.h9{height:43.722702px;}
.h17{height:43.989259px;}
.hd{height:45.919830px;}
.he{height:45.972564px;}
.h1a{height:46.664064px;}
.h8{height:48.515624px;}
.h14{height:52.371095px;}
.h2{height:53.367189px;}
.h1b{height:63.984377px;}
.hf{height:65.695312px;}
.h4{height:69.046877px;}
.h3{height:86.308592px;}
.h7{height:87.667970px;}
.hc{height:93.668014px;}
.h10{height:97.120605px;}
.h11{height:191.399964px;}
.h1{height:191.400009px;}
.h1c{height:191.400147px;}
.h0{height:1263.000000px;}
.w8{width:72.000000px;}
.w4{width:74.250000px;}
.w9{width:91.125000px;}
.w6{width:111.375000px;}
.wa{width:141.750000px;}
.wb{width:174.375000px;}
.w2{width:177.750000px;}
.wd{width:182.250000px;}
.w5{width:216.000000px;}
.wc{width:250.875000px;}
.w7{width:261.000000px;}
.w3{width:490.500000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xd{left:6.750000px;}
.x6{left:15.750000px;}
.xc{left:37.125000px;}
.x4{left:108.000000px;}
.x5{left:109.125000px;}
.x17{left:135.000000px;}
.x11{left:182.250000px;}
.x8{left:184.500000px;}
.x2{left:216.815100px;}
.x1{left:244.125000px;}
.xb{left:249.175710px;}
.x12{left:274.500000px;}
.x3{left:277.860477px;}
.xe{left:282.375000px;}
.x7{left:288.000000px;}
.x16{left:292.500000px;}
.x9{left:401.625000px;}
.x13{left:417.375000px;}
.xf{left:446.456700px;}
.xa{left:514.125000px;}
.x14{left:592.875000px;}
.x15{left:776.492111px;}
.x10{left:777.522634px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1272.974441pt;}
.ls4{letter-spacing:1568.933641pt;}
.ls5{letter-spacing:1856.810737pt;}
.ls3{letter-spacing:1998.000925pt;}
.ls1{letter-spacing:2002.427893pt;}
.ls2{letter-spacing:2003.059305pt;}
.ws1{word-spacing:-11.744792pt;}
.ws2{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-5.013287pt;}
._3{margin-left:-3.589391pt;}
._0{margin-left:-2.628645pt;}
._5{margin-left:-1.054768pt;}
._4{width:3.907133pt;}
._2{width:7.991229pt;}
._1{width:11.929714pt;}
._a{width:15.925616pt;}
._b{width:31.721491pt;}
._8{width:71.942916pt;}
._7{width:75.925765pt;}
._9{width:143.944585pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:10.580566pt;}
.y31{bottom:10.580729pt;}
.y3a{bottom:10.580892pt;}
.y57{bottom:10.938639pt;}
.y54{bottom:10.938802pt;}
.y41{bottom:13.021973pt;}
.y45{bottom:13.022136pt;}
.y15{bottom:16.502522pt;}
.y11{bottom:16.502563pt;}
.y26{bottom:16.502601pt;}
.y7{bottom:16.502605pt;}
.yb{bottom:16.502638pt;}
.ye{bottom:16.502645pt;}
.y1a{bottom:17.186117pt;}
.y1c{bottom:17.502523pt;}
.y21{bottom:17.502595pt;}
.y1d{bottom:17.502608pt;}
.y39{bottom:26.856772pt;}
.y2b{bottom:27.605463pt;}
.y2d{bottom:34.799965pt;}
.y2{bottom:34.800005pt;}
.y68{bottom:34.800127pt;}
.y25{bottom:36.033854pt;}
.ya{bottom:36.033878pt;}
.y18{bottom:38.700598pt;}
.y2a{bottom:54.460943pt;}
.y9{bottom:55.565105pt;}
.y17{bottom:60.898478pt;}
.y29{bottom:72.364583pt;}
.y52{bottom:139.682946pt;}
.y51{bottom:157.586916pt;}
.y50{bottom:175.490396pt;}
.y4f{bottom:190.455239pt;}
.y4e{bottom:221.731281pt;}
.y28{bottom:223.827635pt;}
.y4d{bottom:253.007319pt;}
.y27{bottom:261.412196pt;}
.y24{bottom:276.377113pt;}
.y4c{bottom:284.283372pt;}
.y23{bottom:286.142736pt;}
.y4b{bottom:315.559401pt;}
.y22{bottom:335.772949pt;}
.y87{bottom:345.183263pt;}
.y4a{bottom:346.835452pt;}
.y86{bottom:363.086583pt;}
.y66{bottom:375.138675pt;}
.y20{bottom:375.637539pt;}
.y1f{bottom:375.660973pt;}
.y1e{bottom:376.637539pt;}
.y49{bottom:378.111485pt;}
.y48{bottom:379.332199pt;}
.y85{bottom:380.990236pt;}
.y84{bottom:398.894210pt;}
.y47{bottom:411.828941pt;}
.y65{bottom:412.722983pt;}
.y46{bottom:413.049641pt;}
.y83{bottom:416.797850pt;}
.y16{bottom:417.502036pt;}
.y64{bottom:430.626956pt;}
.y82{bottom:434.701178pt;}
.y1b{bottom:438.700032pt;}
.y19{bottom:438.723467pt;}
.y14{bottom:439.700032pt;}
.y44{bottom:445.546392pt;}
.y43{bottom:446.767092pt;}
.y63{bottom:452.530596pt;}
.y81{bottom:452.604826pt;}
.y80{bottom:470.508795pt;}
.y62{bottom:474.433916pt;}
.y42{bottom:479.263839pt;}
.y7f{bottom:488.412115pt;}
.y61{bottom:496.337890pt;}
.y13{bottom:502.762497pt;}
.y7e{bottom:506.315756pt;}
.y40{bottom:510.539875pt;}
.y3f{bottom:511.760575pt;}
.y60{bottom:518.241543pt;}
.y7d{bottom:524.219728pt;}
.y5f{bottom:540.144863pt;}
.y7c{bottom:542.123050pt;}
.y3e{bottom:544.257319pt;}
.y12{bottom:561.689621pt;}
.y7b{bottom:575.150395pt;}
.y5e{bottom:575.234047pt;}
.y3d{bottom:575.533372pt;}
.y10{bottom:596.335444pt;}
.y3c{bottom:606.809401pt;}
.y7a{bottom:612.735356pt;}
.y5d{bottom:616.902664pt;}
.y79{bottom:630.638676pt;}
.yf{bottom:636.199989pt;}
.y3b{bottom:638.085452pt;}
.y5c{bottom:647.867515pt;}
.y78{bottom:648.542316pt;}
.y77{bottom:666.446284pt;}
.y38{bottom:669.361329pt;}
.yd{bottom:676.064576pt;}
.y37{bottom:677.499519pt;}
.y5b{bottom:680.771155pt;}
.y76{bottom:684.349604pt;}
.y75{bottom:702.253250pt;}
.y5a{bottom:713.674971pt;}
.yc{bottom:715.929163pt;}
.y36{bottom:716.913572pt;}
.y74{bottom:720.157220pt;}
.y73{bottom:738.060540pt;}
.y59{bottom:746.578448pt;}
.y35{bottom:748.189612pt;}
.y8{bottom:755.793743pt;}
.y72{bottom:755.964182pt;}
.y71{bottom:773.868159pt;}
.y6{bottom:775.324989pt;}
.y33{bottom:779.465655pt;}
.y58{bottom:779.482101pt;}
.y70{bottom:791.771487pt;}
.y6f{bottom:809.675135pt;}
.y32{bottom:810.741705pt;}
.y56{bottom:812.385904pt;}
.y6e{bottom:827.579104pt;}
.y30{bottom:842.017745pt;}
.y55{bottom:845.289395pt;}
.y6d{bottom:845.482424pt;}
.y5{bottom:853.783328pt;}
.y6c{bottom:863.386065pt;}
.y2f{bottom:873.293781pt;}
.y53{bottom:878.193035pt;}
.y6b{bottom:881.290037pt;}
.y4{bottom:894.590637pt;}
.y6a{bottom:899.193359pt;}
.y3{bottom:927.142700pt;}
.y69{bottom:932.220703pt;}
.y2e{bottom:932.220865pt;}
.y67{bottom:952.533203pt;}
.y1{bottom:952.533325pt;}
.y2c{bottom:952.533365pt;}
.h13{height:30.275879pt;}
.h12{height:30.276041pt;}
.h19{height:31.903483pt;}
.h18{height:31.903645pt;}
.h15{height:32.717285pt;}
.h16{height:32.717448pt;}
.h6{height:37.708332pt;}
.hb{height:38.864501pt;}
.ha{height:38.864543pt;}
.h5{height:38.864584pt;}
.h9{height:38.864624pt;}
.h17{height:39.101563pt;}
.hd{height:40.817627pt;}
.he{height:40.864501pt;}
.h1a{height:41.479168pt;}
.h8{height:43.124999pt;}
.h14{height:46.552084pt;}
.h2{height:47.437501pt;}
.h1b{height:56.875002pt;}
.hf{height:58.395833pt;}
.h4{height:61.375002pt;}
.h3{height:76.718748pt;}
.h7{height:77.927084pt;}
.hc{height:83.260457pt;}
.h10{height:86.329427pt;}
.h11{height:170.133301pt;}
.h1{height:170.133341pt;}
.h1c{height:170.133464pt;}
.h0{height:1122.666667pt;}
.w8{width:64.000000pt;}
.w4{width:66.000000pt;}
.w9{width:81.000000pt;}
.w6{width:99.000000pt;}
.wa{width:126.000000pt;}
.wb{width:155.000000pt;}
.w2{width:158.000000pt;}
.wd{width:162.000000pt;}
.w5{width:192.000000pt;}
.wc{width:223.000000pt;}
.w7{width:232.000000pt;}
.w3{width:436.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xd{left:6.000000pt;}
.x6{left:14.000000pt;}
.xc{left:33.000000pt;}
.x4{left:96.000000pt;}
.x5{left:97.000000pt;}
.x17{left:120.000000pt;}
.x11{left:162.000000pt;}
.x8{left:164.000000pt;}
.x2{left:192.724533pt;}
.x1{left:217.000000pt;}
.xb{left:221.489520pt;}
.x12{left:244.000000pt;}
.x3{left:246.987091pt;}
.xe{left:251.000000pt;}
.x7{left:256.000000pt;}
.x16{left:260.000000pt;}
.x9{left:357.000000pt;}
.x13{left:371.000000pt;}
.xf{left:396.850400pt;}
.xa{left:457.000000pt;}
.x14{left:527.000000pt;}
.x15{left:690.215210pt;}
.x10{left:691.131230pt;}
}




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