
    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_bf57bd4bac751c1dc92cef2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_7364bfd83cce4462783e67d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_331917ac42217f80d0d19285.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123000;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_f01d7236074245124d04d5db.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;}
.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;}
}
.ws0{word-spacing:-16.498716px;}
.ws3{word-spacing:-15.001902px;}
.ws1{word-spacing:-13.505088px;}
.ws7{word-spacing:-12.004672px;}
.ws6{word-spacing:-10.504681px;}
.ws4{word-spacing:-6.996050px;}
.ws5{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._26{margin-left:-1.001160px;}
._b{width:1.083152px;}
._14{width:2.885944px;}
._1b{width:4.781055px;}
._1c{width:6.021618px;}
._0{width:7.385920px;}
._9{width:8.893903px;}
._18{width:10.032688px;}
._c{width:11.352473px;}
._1{width:12.404792px;}
._2{width:13.588841px;}
._3{width:14.850725px;}
._f{width:17.645997px;}
._20{width:18.851022px;}
._28{width:20.208650px;}
._1a{width:21.340228px;}
._16{width:22.715908px;}
._a{width:23.716075px;}
._15{width:25.233982px;}
._7{width:27.018924px;}
._5{width:28.092175px;}
._21{width:29.242676px;}
._1f{width:30.481447px;}
._13{width:31.922109px;}
._30{width:33.564299px;}
._25{width:34.649969px;}
._8{width:36.388854px;}
._e{width:38.532692px;}
._29{width:39.756210px;}
._2a{width:40.769272px;}
._2c{width:42.552327px;}
._36{width:43.564125px;}
._12{width:44.665259px;}
._10{width:47.573825px;}
._6{width:50.071150px;}
._17{width:51.714862px;}
._35{width:53.172591px;}
._19{width:56.480661px;}
._23{width:58.595187px;}
._2d{width:59.607204px;}
._22{width:63.781557px;}
._3a{width:64.900009px;}
._11{width:66.447131px;}
._4{width:68.044373px;}
._32{width:69.684404px;}
._31{width:71.705401px;}
._2f{width:72.767059px;}
._24{width:74.989910px;}
._34{width:76.851857px;}
._37{width:81.176583px;}
._1e{width:83.756335px;}
._38{width:91.667124px;}
._1d{width:92.744151px;}
._27{width:94.009282px;}
._2b{width:95.165777px;}
._2e{width:99.658672px;}
._3b{width:103.634745px;}
._39{width:108.909380px;}
._d{width:118.155291px;}
._33{width:125.205541px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs6{font-size:18.675507px;}
.fs5{font-size:27.984200px;}
.fs7{font-size:29.750527px;}
.fs8{font-size:42.018724px;}
.fs4{font-size:48.018688px;}
.fs3{font-size:54.020354px;}
.fs1{font-size:60.007609px;}
.fs2{font-size:65.994864px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y9b{bottom:5.617766px;}
.y9a{bottom:15.534608px;}
.y99{bottom:25.451451px;}
.y96{bottom:29.655019px;}
.y98{bottom:35.368293px;}
.y94{bottom:35.514983px;}
.y97{bottom:45.285135px;}
.y93{bottom:53.870950px;}
.y95{bottom:54.744267px;}
.y5c{bottom:67.722530px;}
.y2f{bottom:70.590513px;}
.y92{bottom:71.009182px;}
.y5b{bottom:90.231010px;}
.y2e{bottom:93.098993px;}
.y8c{bottom:101.491148px;}
.y5a{bottom:112.739491px;}
.y2d{bottom:115.607474px;}
.y8b{bottom:123.999628px;}
.y59{bottom:135.247972px;}
.y2c{bottom:138.115955px;}
.y9c{bottom:143.875725px;}
.y8a{bottom:146.508109px;}
.y58{bottom:157.756452px;}
.y2b{bottom:160.624435px;}
.y89{bottom:169.016590px;}
.y57{bottom:180.264933px;}
.y2a{bottom:183.132916px;}
.yb6{bottom:186.424392px;}
.y88{bottom:191.525070px;}
.yb5{bottom:202.430622px;}
.y56{bottom:202.773414px;}
.y29{bottom:205.641397px;}
.y87{bottom:214.033551px;}
.y55{bottom:225.281894px;}
.y8f{bottom:226.611662px;}
.y28{bottom:228.149877px;}
.y86{bottom:236.542032px;}
.y54{bottom:247.790375px;}
.y27{bottom:250.658358px;}
.y85{bottom:259.050512px;}
.y53{bottom:270.298856px;}
.y26{bottom:273.166839px;}
.y84{bottom:281.558993px;}
.y91{bottom:282.234986px;}
.y52{bottom:292.807336px;}
.y25{bottom:295.675319px;}
.y83{bottom:304.067473px;}
.y90{bottom:306.827470px;}
.y51{bottom:315.315817px;}
.y24{bottom:318.183800px;}
.y82{bottom:326.575954px;}
.y50{bottom:337.824298px;}
.y23{bottom:340.692281px;}
.y81{bottom:349.084435px;}
.y4f{bottom:360.332778px;}
.y22{bottom:363.200761px;}
.y80{bottom:371.592915px;}
.y4e{bottom:382.841259px;}
.y21{bottom:385.709242px;}
.yb2{bottom:392.444595px;}
.y7f{bottom:394.101396px;}
.y4d{bottom:405.349740px;}
.y20{bottom:408.217723px;}
.y7e{bottom:416.609877px;}
.y4c{bottom:427.858220px;}
.y1f{bottom:430.726203px;}
.y7d{bottom:439.118357px;}
.y4b{bottom:450.366701px;}
.y1e{bottom:453.234684px;}
.y7c{bottom:461.626838px;}
.y4a{bottom:472.875182px;}
.y1d{bottom:475.743165px;}
.y7b{bottom:484.135319px;}
.y49{bottom:495.383662px;}
.y1c{bottom:498.251645px;}
.y7a{bottom:506.643799px;}
.y48{bottom:517.892143px;}
.y1b{bottom:520.760126px;}
.y79{bottom:529.152280px;}
.y47{bottom:540.400624px;}
.y1a{bottom:543.268607px;}
.y78{bottom:551.660761px;}
.y46{bottom:562.909104px;}
.y19{bottom:565.777087px;}
.y77{bottom:574.169241px;}
.y45{bottom:585.417585px;}
.y18{bottom:588.285568px;}
.y76{bottom:596.677722px;}
.y44{bottom:607.926066px;}
.y17{bottom:610.794049px;}
.yb4{bottom:611.902278px;}
.y75{bottom:619.186203px;}
.y43{bottom:630.434546px;}
.y16{bottom:633.302529px;}
.y74{bottom:641.694683px;}
.y42{bottom:652.943027px;}
.y15{bottom:655.811010px;}
.y73{bottom:664.203164px;}
.y41{bottom:675.451508px;}
.y14{bottom:678.319491px;}
.y72{bottom:686.711645px;}
.y40{bottom:697.959988px;}
.yb1{bottom:700.712977px;}
.y13{bottom:700.827971px;}
.y71{bottom:709.220125px;}
.y3f{bottom:720.468469px;}
.yb0{bottom:723.221457px;}
.y12{bottom:723.336452px;}
.y70{bottom:731.728606px;}
.y3e{bottom:742.976950px;}
.yaf{bottom:745.729938px;}
.y11{bottom:745.844933px;}
.y6f{bottom:754.237087px;}
.y3d{bottom:765.485430px;}
.yae{bottom:768.238419px;}
.y10{bottom:768.353413px;}
.y6e{bottom:776.745567px;}
.y3c{bottom:787.993911px;}
.yad{bottom:790.746899px;}
.yf{bottom:790.861894px;}
.y8e{bottom:799.254048px;}
.y3b{bottom:810.502392px;}
.yac{bottom:813.255380px;}
.ye{bottom:813.370375px;}
.y6d{bottom:821.762529px;}
.y3a{bottom:833.010872px;}
.yab{bottom:835.763861px;}
.yd{bottom:835.878855px;}
.y6c{bottom:844.271009px;}
.y39{bottom:855.519353px;}
.yaa{bottom:858.272341px;}
.yc{bottom:858.387336px;}
.y6b{bottom:866.779490px;}
.y38{bottom:878.027834px;}
.ya9{bottom:880.780822px;}
.yb{bottom:880.895817px;}
.y6a{bottom:889.287971px;}
.y37{bottom:900.536314px;}
.ya8{bottom:903.289303px;}
.ya{bottom:903.404297px;}
.yb3{bottom:910.526909px;}
.y69{bottom:911.796451px;}
.y36{bottom:923.044795px;}
.ya7{bottom:925.797783px;}
.y9{bottom:925.912778px;}
.y68{bottom:934.304932px;}
.y35{bottom:945.553276px;}
.ya6{bottom:948.306264px;}
.y8{bottom:948.421259px;}
.y67{bottom:956.813413px;}
.y34{bottom:968.061756px;}
.ya5{bottom:970.814745px;}
.y7{bottom:970.929739px;}
.y66{bottom:979.321893px;}
.y33{bottom:990.570237px;}
.ya4{bottom:993.323225px;}
.y6{bottom:993.438220px;}
.y8d{bottom:1001.830374px;}
.y32{bottom:1013.078718px;}
.ya3{bottom:1015.831706px;}
.y5{bottom:1015.946701px;}
.y65{bottom:1024.338855px;}
.y31{bottom:1035.587198px;}
.ya2{bottom:1038.340186px;}
.y64{bottom:1046.847335px;}
.y30{bottom:1058.095679px;}
.ya1{bottom:1060.848667px;}
.y5e{bottom:1064.963181px;}
.y63{bottom:1069.355816px;}
.y5d{bottom:1082.969966px;}
.ya0{bottom:1083.357148px;}
.y62{bottom:1091.864297px;}
.y9f{bottom:1105.865628px;}
.y61{bottom:1114.372777px;}
.y4{bottom:1121.911212px;}
.y9e{bottom:1128.374109px;}
.y60{bottom:1136.881258px;}
.y9d{bottom:1150.882590px;}
.y5f{bottom:1159.389739px;}
.y3{bottom:1161.301012px;}
.y2{bottom:1190.562037px;}
.hb{height:15.033783px;}
.ha{height:22.751155px;}
.hd{height:24.187179px;}
.he{height:34.161222px;}
.h9{height:39.039194px;}
.h6{height:43.918547px;}
.h8{height:48.786186px;}
.h4{height:49.686300px;}
.hc{height:53.639998px;}
.h5{height:53.653825px;}
.h7{height:57.745506px;}
.h3{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;}
.x4{left:43.552352px;}
.xf{left:45.024696px;}
.x7{left:49.025411px;}
.x8{left:50.900892px;}
.x9{left:56.544711px;}
.x1{left:59.941339px;}
.x6{left:71.600029px;}
.xd{left:119.519995px;}
.xe{left:127.283452px;}
.x3{left:149.183948px;}
.x2{left:219.944984px;}
.x5{left:469.235590px;}
.xc{left:496.419632px;}
.xb{left:618.659038px;}
.xa{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.665525pt;}
.ws3{word-spacing:-13.335024pt;}
.ws1{word-spacing:-12.004523pt;}
.ws7{word-spacing:-10.670820pt;}
.ws6{word-spacing:-9.337494pt;}
.ws4{word-spacing:-6.218711pt;}
.ws5{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._26{margin-left:-0.889920pt;}
._b{width:0.962802pt;}
._14{width:2.565284pt;}
._1b{width:4.249827pt;}
._1c{width:5.352550pt;}
._0{width:6.565262pt;}
._9{width:7.905692pt;}
._18{width:8.917945pt;}
._c{width:10.091087pt;}
._1{width:11.026482pt;}
._2{width:12.078970pt;}
._3{width:13.200645pt;}
._f{width:15.685331pt;}
._20{width:16.756464pt;}
._28{width:17.963244pt;}
._1a{width:18.969092pt;}
._16{width:20.191918pt;}
._a{width:21.080955pt;}
._15{width:22.430206pt;}
._7{width:24.016821pt;}
._5{width:24.970822pt;}
._21{width:25.993490pt;}
._1f{width:27.094620pt;}
._13{width:28.375208pt;}
._30{width:29.834933pt;}
._25{width:30.799973pt;}
._8{width:32.345648pt;}
._e{width:34.251282pt;}
._29{width:35.338853pt;}
._2a{width:36.239353pt;}
._2c{width:37.824291pt;}
._36{width:38.723667pt;}
._12{width:39.702452pt;}
._10{width:42.287844pt;}
._6{width:44.507689pt;}
._17{width:45.968767pt;}
._35{width:47.264525pt;}
._19{width:50.205032pt;}
._23{width:52.084611pt;}
._2d{width:52.984181pt;}
._22{width:56.694717pt;}
._3a{width:57.688897pt;}
._11{width:59.064117pt;}
._4{width:60.483887pt;}
._32{width:61.941692pt;}
._31{width:63.738134pt;}
._2f{width:64.681830pt;}
._24{width:66.657698pt;}
._34{width:68.312762pt;}
._37{width:72.156963pt;}
._1e{width:74.450075pt;}
._38{width:81.481888pt;}
._1d{width:82.439245pt;}
._27{width:83.563806pt;}
._2b{width:84.591802pt;}
._2e{width:88.585486pt;}
._3b{width:92.119773pt;}
._39{width:96.808338pt;}
._d{width:105.026925pt;}
._33{width:111.293814pt;}
.fs6{font-size:16.600451pt;}
.fs5{font-size:24.874844pt;}
.fs7{font-size:26.444913pt;}
.fs8{font-size:37.349977pt;}
.fs4{font-size:42.683279pt;}
.fs3{font-size:48.018092pt;}
.fs1{font-size:53.340097pt;}
.fs2{font-size:58.662102pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y9b{bottom:4.993570pt;}
.y9a{bottom:13.808541pt;}
.y99{bottom:22.623512pt;}
.y96{bottom:26.360017pt;}
.y98{bottom:31.438483pt;}
.y94{bottom:31.568874pt;}
.y97{bottom:40.253454pt;}
.y93{bottom:47.885289pt;}
.y95{bottom:48.661571pt;}
.y5c{bottom:60.197804pt;}
.y2f{bottom:62.747123pt;}
.y92{bottom:63.119273pt;}
.y5b{bottom:80.205343pt;}
.y2e{bottom:82.754661pt;}
.y8c{bottom:90.214353pt;}
.y5a{bottom:100.212881pt;}
.y2d{bottom:102.762199pt;}
.y8b{bottom:110.221892pt;}
.y59{bottom:120.220419pt;}
.y2c{bottom:122.769738pt;}
.y9c{bottom:127.889533pt;}
.y8a{bottom:130.229430pt;}
.y58{bottom:140.227958pt;}
.y2b{bottom:142.777276pt;}
.y89{bottom:150.236968pt;}
.y57{bottom:160.235496pt;}
.y2a{bottom:162.784814pt;}
.yb6{bottom:165.710571pt;}
.y88{bottom:170.244507pt;}
.yb5{bottom:179.938330pt;}
.y56{bottom:180.243034pt;}
.y29{bottom:182.792353pt;}
.y87{bottom:190.252045pt;}
.y55{bottom:200.250573pt;}
.y8f{bottom:201.432588pt;}
.y28{bottom:202.799891pt;}
.y86{bottom:210.259584pt;}
.y54{bottom:220.258111pt;}
.y27{bottom:222.807429pt;}
.y85{bottom:230.267122pt;}
.y53{bottom:240.265650pt;}
.y26{bottom:242.814968pt;}
.y84{bottom:250.274660pt;}
.y91{bottom:250.875543pt;}
.y52{bottom:260.273188pt;}
.y25{bottom:262.822506pt;}
.y83{bottom:270.282199pt;}
.y90{bottom:272.735529pt;}
.y51{bottom:280.280726pt;}
.y24{bottom:282.830045pt;}
.y82{bottom:290.289737pt;}
.y50{bottom:300.288265pt;}
.y23{bottom:302.837583pt;}
.y81{bottom:310.297275pt;}
.y4f{bottom:320.295803pt;}
.y22{bottom:322.845121pt;}
.y80{bottom:330.304814pt;}
.y4e{bottom:340.303341pt;}
.y21{bottom:342.852660pt;}
.yb2{bottom:348.839640pt;}
.y7f{bottom:350.312352pt;}
.y4d{bottom:360.310880pt;}
.y20{bottom:362.860198pt;}
.y7e{bottom:370.319890pt;}
.y4c{bottom:380.318418pt;}
.y1f{bottom:382.867736pt;}
.y7d{bottom:390.327429pt;}
.y4b{bottom:400.325956pt;}
.y1e{bottom:402.875275pt;}
.y7c{bottom:410.334967pt;}
.y4a{bottom:420.333495pt;}
.y1d{bottom:422.882813pt;}
.y7b{bottom:430.342506pt;}
.y49{bottom:440.341033pt;}
.y1c{bottom:442.890351pt;}
.y7a{bottom:450.350044pt;}
.y48{bottom:460.348572pt;}
.y1b{bottom:462.897890pt;}
.y79{bottom:470.357582pt;}
.y47{bottom:480.356110pt;}
.y1a{bottom:482.905428pt;}
.y78{bottom:490.365121pt;}
.y46{bottom:500.363648pt;}
.y19{bottom:502.912967pt;}
.y77{bottom:510.372659pt;}
.y45{bottom:520.371187pt;}
.y18{bottom:522.920505pt;}
.y76{bottom:530.380197pt;}
.y44{bottom:540.378725pt;}
.y17{bottom:542.928043pt;}
.yb4{bottom:543.913136pt;}
.y75{bottom:550.387736pt;}
.y43{bottom:560.386263pt;}
.y16{bottom:562.935582pt;}
.y74{bottom:570.395274pt;}
.y42{bottom:580.393802pt;}
.y15{bottom:582.943120pt;}
.y73{bottom:590.402813pt;}
.y41{bottom:600.401340pt;}
.y14{bottom:602.950658pt;}
.y72{bottom:610.410351pt;}
.y40{bottom:620.408878pt;}
.yb1{bottom:622.855979pt;}
.y13{bottom:622.958197pt;}
.y71{bottom:630.417889pt;}
.y3f{bottom:640.416417pt;}
.yb0{bottom:642.863518pt;}
.y12{bottom:642.965735pt;}
.y70{bottom:650.425428pt;}
.y3e{bottom:660.423955pt;}
.yaf{bottom:662.871056pt;}
.y11{bottom:662.973273pt;}
.y6f{bottom:670.432966pt;}
.y3d{bottom:680.431494pt;}
.yae{bottom:682.878594pt;}
.y10{bottom:682.980812pt;}
.y6e{bottom:690.440504pt;}
.y3c{bottom:700.439032pt;}
.yad{bottom:702.886133pt;}
.yf{bottom:702.988350pt;}
.y8e{bottom:710.448043pt;}
.y3b{bottom:720.446570pt;}
.yac{bottom:722.893671pt;}
.ye{bottom:722.995889pt;}
.y6d{bottom:730.455581pt;}
.y3a{bottom:740.454109pt;}
.yab{bottom:742.901209pt;}
.yd{bottom:743.003427pt;}
.y6c{bottom:750.463119pt;}
.y39{bottom:760.461647pt;}
.yaa{bottom:762.908748pt;}
.yc{bottom:763.010965pt;}
.y6b{bottom:770.470658pt;}
.y38{bottom:780.469185pt;}
.ya9{bottom:782.916286pt;}
.yb{bottom:783.018504pt;}
.y6a{bottom:790.478196pt;}
.y37{bottom:800.476724pt;}
.ya8{bottom:802.923824pt;}
.ya{bottom:803.026042pt;}
.yb3{bottom:809.357253pt;}
.y69{bottom:810.485735pt;}
.y36{bottom:820.484262pt;}
.ya7{bottom:822.931363pt;}
.y9{bottom:823.033580pt;}
.y68{bottom:830.493273pt;}
.y35{bottom:840.491800pt;}
.ya6{bottom:842.938901pt;}
.y8{bottom:843.041119pt;}
.y67{bottom:850.500811pt;}
.y34{bottom:860.499339pt;}
.ya5{bottom:862.946440pt;}
.y7{bottom:863.048657pt;}
.y66{bottom:870.508350pt;}
.y33{bottom:880.506877pt;}
.ya4{bottom:882.953978pt;}
.y6{bottom:883.056196pt;}
.y8d{bottom:890.515888pt;}
.y32{bottom:900.514416pt;}
.ya3{bottom:902.961516pt;}
.y5{bottom:903.063734pt;}
.y65{bottom:910.523426pt;}
.y31{bottom:920.521954pt;}
.ya2{bottom:922.969055pt;}
.y64{bottom:930.530965pt;}
.y30{bottom:940.529492pt;}
.ya1{bottom:942.976593pt;}
.y5e{bottom:946.633939pt;}
.y63{bottom:950.538503pt;}
.y5d{bottom:962.639969pt;}
.ya0{bottom:962.984131pt;}
.y62{bottom:970.546041pt;}
.y9f{bottom:982.991670pt;}
.y61{bottom:990.553580pt;}
.y4{bottom:997.254411pt;}
.y9e{bottom:1002.999208pt;}
.y60{bottom:1010.561118pt;}
.y9d{bottom:1023.006746pt;}
.y5f{bottom:1030.568657pt;}
.y3{bottom:1032.267566pt;}
.y2{bottom:1058.277366pt;}
.hb{height:13.363363pt;}
.ha{height:20.223249pt;}
.hd{height:21.499714pt;}
.he{height:30.365531pt;}
.h9{height:34.701506pt;}
.h6{height:39.038709pt;}
.h8{height:43.365499pt;}
.h4{height:44.165600pt;}
.hc{height:47.679998pt;}
.h5{height:47.692289pt;}
.h7{height:51.329339pt;}
.h3{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;}
.x4{left:38.713202pt;}
.xf{left:40.021952pt;}
.x7{left:43.578143pt;}
.x8{left:45.245237pt;}
.x9{left:50.261966pt;}
.x1{left:53.281190pt;}
.x6{left:63.644470pt;}
.xd{left:106.239996pt;}
.xe{left:113.140846pt;}
.x3{left:132.607954pt;}
.x2{left:195.506653pt;}
.x5{left:417.098303pt;}
.xc{left:441.261895pt;}
.xb{left:549.919145pt;}
.xa{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; }
  