
    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_09d216324ccbc74364838d78.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.137000;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_7ac30beb56ec3ebd9761ba2f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.142000;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_a2c300638e3b74e502363d3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.075000;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_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_803cb90af9268b7a6403120f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.139000;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_773347e29a73c6308370ca1a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_283e641c2f32d609a0e30cfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064000;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;}
.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:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws5{word-spacing:-15.001902px;}
.ws6{word-spacing:-10.504681px;}
.ws3{word-spacing:-6.996050px;}
.ws4{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._2a{margin-left:-1.010061px;}
._1c{width:1.055425px;}
._28{width:2.296443px;}
._1a{width:3.984038px;}
._10{width:5.120174px;}
._20{width:6.186118px;}
._3{width:8.026023px;}
._1{width:9.704671px;}
._12{width:11.464081px;}
._1d{width:12.498925px;}
._1e{width:13.669471px;}
._0{width:15.057455px;}
._4{width:17.621988px;}
._14{width:18.749089px;}
._17{width:20.602812px;}
._1f{width:22.122208px;}
._8{width:23.149557px;}
._29{width:24.307361px;}
._2f{width:25.700531px;}
._23{width:27.011674px;}
._d{width:28.554140px;}
._15{width:31.195852px;}
._13{width:32.264249px;}
._2{width:33.523271px;}
._6{width:35.444683px;}
._f{width:36.642469px;}
._26{width:38.495725px;}
._2d{width:40.770371px;}
._9{width:43.053231px;}
._24{width:44.510661px;}
._25{width:45.689563px;}
._11{width:48.975199px;}
._c{width:50.369046px;}
._7{width:53.587803px;}
._a{width:54.665405px;}
._16{width:56.026081px;}
._5{width:57.355095px;}
._b{width:59.171880px;}
._e{width:61.566744px;}
._1b{width:62.920531px;}
._2b{width:64.042899px;}
._21{width:65.340989px;}
._27{width:68.545229px;}
._2c{width:72.853674px;}
._19{width:74.195373px;}
._2e{width:86.189710px;}
._18{width:89.529477px;}
._22{width:104.407170px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.675507px;}
.fs3{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fs7{font-size:42.018724px;}
.fs8{font-size:48.018688px;}
.fs5{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs1{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y5f{bottom:5.604055px;}
.y5e{bottom:15.520897px;}
.y5d{bottom:25.437740px;}
.y5c{bottom:35.354582px;}
.y5b{bottom:45.271424px;}
.y5a{bottom:63.495018px;}
.y57{bottom:69.341374px;}
.y4c{bottom:72.732016px;}
.y56{bottom:87.697305px;}
.y58{bottom:88.570477px;}
.y4b{bottom:95.240497px;}
.y55{bottom:104.835572px;}
.y4a{bottom:117.748977px;}
.y49{bottom:140.257458px;}
.y48{bottom:162.765939px;}
.y60{bottom:177.702007px;}
.y3c{bottom:178.044597px;}
.y47{bottom:185.274419px;}
.y3b{bottom:200.553078px;}
.y46{bottom:207.782900px;}
.y64{bottom:212.105405px;}
.y3a{bottom:223.061558px;}
.y63{bottom:228.111635px;}
.y45{bottom:230.291381px;}
.y62{bottom:244.117864px;}
.y39{bottom:245.570039px;}
.y44{bottom:252.799861px;}
.y38{bottom:268.078520px;}
.y59{bottom:268.878324px;}
.y43{bottom:275.308342px;}
.y37{bottom:290.587000px;}
.y42{bottom:297.816823px;}
.y36{bottom:313.095481px;}
.y41{bottom:320.325303px;}
.y35{bottom:335.603962px;}
.y65{bottom:337.454196px;}
.y40{bottom:342.833784px;}
.y34{bottom:358.112442px;}
.y3f{bottom:365.342265px;}
.y61{bottom:370.479464px;}
.y33{bottom:380.620923px;}
.y3e{bottom:387.850745px;}
.y32{bottom:403.129404px;}
.y3d{bottom:410.359226px;}
.y31{bottom:425.637884px;}
.y30{bottom:448.146365px;}
.y54{bottom:453.050264px;}
.y67{bottom:466.315777px;}
.y2f{bottom:470.654846px;}
.y66{bottom:482.322006px;}
.y1b{bottom:495.741423px;}
.y2e{bottom:515.671807px;}
.y1a{bottom:518.249904px;}
.y2d{bottom:538.180288px;}
.y19{bottom:540.758384px;}
.y2c{bottom:560.688768px;}
.y18{bottom:563.266865px;}
.y2b{bottom:583.197249px;}
.y17{bottom:585.775346px;}
.y2a{bottom:605.705730px;}
.y16{bottom:608.283826px;}
.y29{bottom:628.214210px;}
.y15{bottom:630.792307px;}
.y7e{bottom:635.179170px;}
.y28{bottom:650.722691px;}
.y14{bottom:653.300788px;}
.y7d{bottom:657.687650px;}
.y27{bottom:673.231172px;}
.y13{bottom:675.809268px;}
.y7c{bottom:680.196131px;}
.y26{bottom:695.739652px;}
.y12{bottom:698.317749px;}
.y7b{bottom:702.704612px;}
.y11{bottom:720.826230px;}
.y7a{bottom:725.213092px;}
.y25{bottom:740.756614px;}
.y10{bottom:743.334710px;}
.y79{bottom:747.721573px;}
.y24{bottom:763.265094px;}
.yf{bottom:765.843191px;}
.y78{bottom:770.230054px;}
.y23{bottom:785.773575px;}
.ye{bottom:788.351672px;}
.y77{bottom:792.738534px;}
.y8d{bottom:795.727549px;}
.y22{bottom:808.282056px;}
.yd{bottom:810.860152px;}
.y76{bottom:815.247015px;}
.y8c{bottom:818.236030px;}
.y21{bottom:830.790536px;}
.yc{bottom:833.368633px;}
.y75{bottom:837.755496px;}
.y8b{bottom:840.744511px;}
.y20{bottom:853.299017px;}
.yb{bottom:855.877114px;}
.y74{bottom:860.263976px;}
.y8a{bottom:863.252991px;}
.y1f{bottom:875.807498px;}
.ya{bottom:878.385594px;}
.y73{bottom:882.772457px;}
.y89{bottom:885.761472px;}
.y1e{bottom:898.315978px;}
.y9{bottom:900.894075px;}
.y72{bottom:905.280938px;}
.y88{bottom:908.269953px;}
.y1d{bottom:920.824459px;}
.y8{bottom:923.402556px;}
.y71{bottom:927.789418px;}
.y87{bottom:930.778433px;}
.y1c{bottom:943.332940px;}
.y7{bottom:945.911036px;}
.y70{bottom:950.297899px;}
.y86{bottom:953.286914px;}
.y6{bottom:968.419517px;}
.y6f{bottom:972.806380px;}
.y85{bottom:975.795395px;}
.y53{bottom:990.646763px;}
.y5{bottom:990.927998px;}
.y84{bottom:998.303875px;}
.y4{bottom:1013.436478px;}
.y6e{bottom:1017.823341px;}
.y83{bottom:1020.812356px;}
.y50{bottom:1034.294341px;}
.y3{bottom:1035.944959px;}
.y6d{bottom:1040.331822px;}
.y82{bottom:1043.320837px;}
.y4f{bottom:1056.802822px;}
.y2{bottom:1058.453440px;}
.y6c{bottom:1062.840302px;}
.y81{bottom:1065.829317px;}
.y4e{bottom:1079.311302px;}
.y6b{bottom:1085.348783px;}
.y80{bottom:1088.337798px;}
.y52{bottom:1101.013333px;}
.y4d{bottom:1101.819783px;}
.y6a{bottom:1107.857264px;}
.y7f{bottom:1110.846279px;}
.y69{bottom:1130.365744px;}
.y8e{bottom:1151.898852px;}
.y68{bottom:1152.874225px;}
.y51{bottom:1168.408029px;}
.h8{height:15.033783px;}
.h7{height:22.751155px;}
.hb{height:24.187179px;}
.hc{height:34.161222px;}
.hd{height:42.784651px;}
.h9{height:48.786186px;}
.ha{height:53.639998px;}
.he{height:54.643748px;}
.h3{height:58.801424px;}
.h4{height:59.461373px;}
.h6{height:59.638470px;}
.h5{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:43.002920px;}
.x9{left:44.746071px;}
.x4{left:48.177141px;}
.xa{left:53.391773px;}
.x7{left:119.519995px;}
.x8{left:127.283452px;}
.x2{left:469.235590px;}
.xb{left:477.449761px;}
.x3{left:497.283268px;}
.x6{left:618.659038px;}
.x5{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws5{word-spacing:-13.335024pt;}
.ws6{word-spacing:-9.337494pt;}
.ws3{word-spacing:-6.218711pt;}
.ws4{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._2a{margin-left:-0.897832pt;}
._1c{width:0.938155pt;}
._28{width:2.041283pt;}
._1a{width:3.541367pt;}
._10{width:4.551266pt;}
._20{width:5.498772pt;}
._3{width:7.134243pt;}
._1{width:8.626374pt;}
._12{width:10.190294pt;}
._1d{width:11.110156pt;}
._1e{width:12.150641pt;}
._0{width:13.384404pt;}
._4{width:15.663990pt;}
._14{width:16.665857pt;}
._17{width:18.313611pt;}
._1f{width:19.664185pt;}
._8{width:20.577384pt;}
._29{width:21.606543pt;}
._2f{width:22.844917pt;}
._23{width:24.010377pt;}
._d{width:25.381457pt;}
._15{width:27.729646pt;}
._13{width:28.679333pt;}
._2{width:29.798463pt;}
._6{width:31.506385pt;}
._f{width:32.571084pt;}
._26{width:34.218422pt;}
._2d{width:36.240330pt;}
._9{width:38.269539pt;}
._24{width:39.565032pt;}
._25{width:40.612945pt;}
._11{width:43.533511pt;}
._c{width:44.772485pt;}
._7{width:47.633602pt;}
._a{width:48.591471pt;}
._16{width:49.800960pt;}
._5{width:50.982306pt;}
._b{width:52.597227pt;}
._e{width:54.725995pt;}
._1b{width:55.929361pt;}
._2b{width:56.927021pt;}
._21{width:58.080879pt;}
._27{width:60.929092pt;}
._2c{width:64.758822pt;}
._19{width:65.951442pt;}
._2e{width:76.613076pt;}
._18{width:79.581758pt;}
._22{width:92.806373pt;}
.fs4{font-size:16.600451pt;}
.fs3{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fs7{font-size:37.349977pt;}
.fs8{font-size:42.683279pt;}
.fs5{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs1{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y5f{bottom:4.981382pt;}
.y5e{bottom:13.796353pt;}
.y5d{bottom:22.611324pt;}
.y5c{bottom:31.426295pt;}
.y5b{bottom:40.241266pt;}
.y5a{bottom:56.440016pt;}
.y57{bottom:61.636777pt;}
.y4c{bottom:64.650681pt;}
.y56{bottom:77.953160pt;}
.y58{bottom:78.729313pt;}
.y4b{bottom:84.658219pt;}
.y55{bottom:93.187175pt;}
.y4a{bottom:104.665758pt;}
.y49{bottom:124.673296pt;}
.y48{bottom:144.680834pt;}
.y60{bottom:157.957340pt;}
.y3c{bottom:158.261864pt;}
.y47{bottom:164.688373pt;}
.y3b{bottom:178.269402pt;}
.y46{bottom:184.695911pt;}
.y64{bottom:188.538138pt;}
.y3a{bottom:198.276941pt;}
.y63{bottom:202.765897pt;}
.y45{bottom:204.703449pt;}
.y62{bottom:216.993657pt;}
.y39{bottom:218.284479pt;}
.y44{bottom:224.710988pt;}
.y38{bottom:238.292018pt;}
.y59{bottom:239.002955pt;}
.y43{bottom:244.718526pt;}
.y37{bottom:258.299556pt;}
.y42{bottom:264.726064pt;}
.y36{bottom:278.307094pt;}
.y41{bottom:284.733603pt;}
.y35{bottom:298.314633pt;}
.y65{bottom:299.959285pt;}
.y40{bottom:304.741141pt;}
.y34{bottom:318.322171pt;}
.y3f{bottom:324.748680pt;}
.y61{bottom:329.315079pt;}
.y33{bottom:338.329709pt;}
.y3e{bottom:344.756218pt;}
.y32{bottom:358.337248pt;}
.y3d{bottom:364.763756pt;}
.y31{bottom:378.344786pt;}
.y30{bottom:398.352325pt;}
.y54{bottom:402.711346pt;}
.y67{bottom:414.502913pt;}
.y2f{bottom:418.359863pt;}
.y66{bottom:428.730672pt;}
.y1b{bottom:440.659043pt;}
.y2e{bottom:458.374940pt;}
.y1a{bottom:460.666581pt;}
.y2d{bottom:478.382478pt;}
.y19{bottom:480.674119pt;}
.y2c{bottom:498.390016pt;}
.y18{bottom:500.681658pt;}
.y2b{bottom:518.397555pt;}
.y17{bottom:520.689196pt;}
.y2a{bottom:538.405093pt;}
.y16{bottom:540.696735pt;}
.y29{bottom:558.412631pt;}
.y15{bottom:560.704273pt;}
.y7e{bottom:564.603706pt;}
.y28{bottom:578.420170pt;}
.y14{bottom:580.711811pt;}
.y7d{bottom:584.611245pt;}
.y27{bottom:598.427708pt;}
.y13{bottom:600.719350pt;}
.y7c{bottom:604.618783pt;}
.y26{bottom:618.435247pt;}
.y12{bottom:620.726888pt;}
.y7b{bottom:624.626321pt;}
.y11{bottom:640.734426pt;}
.y7a{bottom:644.633860pt;}
.y25{bottom:658.450323pt;}
.y10{bottom:660.741965pt;}
.y79{bottom:664.641398pt;}
.y24{bottom:678.457862pt;}
.yf{bottom:680.749503pt;}
.y78{bottom:684.648937pt;}
.y23{bottom:698.465400pt;}
.ye{bottom:700.757042pt;}
.y77{bottom:704.656475pt;}
.y8d{bottom:707.313377pt;}
.y22{bottom:718.472938pt;}
.yd{bottom:720.764580pt;}
.y76{bottom:724.664013pt;}
.y8c{bottom:727.320916pt;}
.y21{bottom:738.480477pt;}
.yc{bottom:740.772118pt;}
.y75{bottom:744.671552pt;}
.y8b{bottom:747.328454pt;}
.y20{bottom:758.488015pt;}
.yb{bottom:760.779657pt;}
.y74{bottom:764.679090pt;}
.y8a{bottom:767.335992pt;}
.y1f{bottom:778.495553pt;}
.ya{bottom:780.787195pt;}
.y73{bottom:784.686628pt;}
.y89{bottom:787.343531pt;}
.y1e{bottom:798.503092pt;}
.y9{bottom:800.794733pt;}
.y72{bottom:804.694167pt;}
.y88{bottom:807.351069pt;}
.y1d{bottom:818.510630pt;}
.y8{bottom:820.802272pt;}
.y71{bottom:824.701705pt;}
.y87{bottom:827.358607pt;}
.y1c{bottom:838.518169pt;}
.y7{bottom:840.809810pt;}
.y70{bottom:844.709244pt;}
.y86{bottom:847.366146pt;}
.y6{bottom:860.817348pt;}
.y6f{bottom:864.716782pt;}
.y85{bottom:867.373684pt;}
.y53{bottom:880.574900pt;}
.y5{bottom:880.824887pt;}
.y84{bottom:887.381223pt;}
.y4{bottom:900.832425pt;}
.y6e{bottom:904.731859pt;}
.y83{bottom:907.388761pt;}
.y50{bottom:919.372748pt;}
.y3{bottom:920.839964pt;}
.y6d{bottom:924.739397pt;}
.y82{bottom:927.396299pt;}
.y4f{bottom:939.380286pt;}
.y2{bottom:940.847502pt;}
.y6c{bottom:944.746935pt;}
.y81{bottom:947.403838pt;}
.y4e{bottom:959.387824pt;}
.y6b{bottom:964.754474pt;}
.y80{bottom:967.411376pt;}
.y52{bottom:978.678519pt;}
.y4d{bottom:979.395363pt;}
.y6a{bottom:984.762012pt;}
.y7f{bottom:987.418914pt;}
.y69{bottom:1004.769550pt;}
.y8e{bottom:1023.910091pt;}
.y68{bottom:1024.777089pt;}
.y51{bottom:1038.584915pt;}
.h8{height:13.363363pt;}
.h7{height:20.223249pt;}
.hb{height:21.499714pt;}
.hc{height:30.365531pt;}
.hd{height:38.030801pt;}
.h9{height:43.365499pt;}
.ha{height:47.679998pt;}
.he{height:48.572220pt;}
.h3{height:52.267933pt;}
.h4{height:52.854554pt;}
.h6{height:53.011974pt;}
.h5{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:38.224818pt;}
.x9{left:39.774285pt;}
.x4{left:42.824125pt;}
.xa{left:47.459354pt;}
.x7{left:106.239996pt;}
.x8{left:113.140846pt;}
.x2{left:417.098303pt;}
.xb{left:424.399787pt;}
.x3{left:442.029571pt;}
.x6{left:549.919145pt;}
.x5{left:551.612297pt;}
}




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