
    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_304082c111b2d2e95253485c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_82e5a96b992a6df422eeb0f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_6a3837e5fe8105765b98737a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.062000;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_3f94c6e49aeab34dddd3a17e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b6419630f2cfb13cb7177648.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ca15a64f71113f337c4a1202.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.062000;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_61a8b75c4780f9c5ee75a072.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.028000;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_170049607dfea73597a35c89.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v1{vertical-align:27.607664px;}
.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;}
.ws6{word-spacing:-15.001902px;}
.ws5{word-spacing:-10.504681px;}
.ws3{word-spacing:-6.996050px;}
.ws4{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._25{margin-left:-1.000276px;}
._a{width:1.334448px;}
._f{width:3.099495px;}
._17{width:4.135873px;}
._0{width:5.779364px;}
._5{width:7.027085px;}
._2f{width:8.084998px;}
._26{width:9.190084px;}
._3{width:10.584502px;}
._c{width:12.031656px;}
._d{width:13.315413px;}
._14{width:15.366401px;}
._19{width:17.540565px;}
._8{width:18.596865px;}
._2c{width:20.191913px;}
._21{width:21.399744px;}
._2a{width:23.585667px;}
._9{width:25.543329px;}
._2{width:27.515194px;}
._6{width:29.412882px;}
._11{width:31.241130px;}
._18{width:33.089876px;}
._1f{width:34.552008px;}
._1a{width:36.350337px;}
._1b{width:37.485023px;}
._22{width:40.637902px;}
._16{width:42.617504px;}
._10{width:44.142484px;}
._24{width:47.493369px;}
._1c{width:48.545148px;}
._b{width:49.910921px;}
._7{width:51.304460px;}
._15{width:52.890582px;}
._13{width:54.226288px;}
._28{width:55.617189px;}
._2e{width:58.179814px;}
._1{width:59.427015px;}
._27{width:64.192172px;}
._23{width:66.770078px;}
._e{width:71.170365px;}
._1d{width:72.999798px;}
._29{width:74.567329px;}
._4{width:80.890268px;}
._2d{width:91.951799px;}
._1e{width:95.814032px;}
._12{width:106.080979px;}
._2b{width:135.965077px;}
._20{width:148.189125px;}
._30{width:672.730281px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs5{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fs7{font-size:42.018724px;}
.fs2{font-size:54.020354px;}
.fs8{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y5f{bottom:5.908244px;}
.y5e{bottom:15.825087px;}
.y5a{bottom:20.655020px;}
.y5d{bottom:25.741929px;}
.y58{bottom:26.805576px;}
.y5c{bottom:35.658772px;}
.y57{bottom:45.161507px;}
.y5b{bottom:45.575614px;}
.y59{bottom:46.034751px;}
.y56{bottom:62.299846px;}
.y28{bottom:68.234548px;}
.y55{bottom:80.622652px;}
.y60{bottom:135.166209px;}
.y66{bottom:212.125121px;}
.y65{bottom:230.131906px;}
.y61{bottom:267.796056px;}
.y64{bottom:319.978182px;}
.y63{bottom:339.773357px;}
.y62{bottom:368.453924px;}
.y21{bottom:605.073710px;}
.y27{bottom:621.204827px;}
.y52{bottom:622.834515px;}
.y20{bottom:627.582191px;}
.y26{bottom:643.713308px;}
.y51{bottom:645.342995px;}
.y1f{bottom:650.090671px;}
.y25{bottom:666.221788px;}
.y50{bottom:667.851476px;}
.y1e{bottom:672.599152px;}
.y79{bottom:674.529713px;}
.y24{bottom:688.730269px;}
.y4f{bottom:690.359957px;}
.y1d{bottom:695.107633px;}
.y78{bottom:697.038194px;}
.y3c{bottom:705.472428px;}
.y23{bottom:711.238750px;}
.y4e{bottom:712.868437px;}
.y1c{bottom:717.616113px;}
.y77{bottom:719.546675px;}
.y3b{bottom:727.980909px;}
.y22{bottom:733.747230px;}
.y4d{bottom:735.376918px;}
.y1b{bottom:740.124594px;}
.y76{bottom:742.055155px;}
.y3a{bottom:750.489390px;}
.y81{bottom:756.200645px;}
.y4c{bottom:757.885399px;}
.y1a{bottom:762.633075px;}
.y75{bottom:764.563636px;}
.y39{bottom:772.997870px;}
.y80{bottom:778.709126px;}
.y2b{bottom:779.814573px;}
.y4b{bottom:780.393879px;}
.y19{bottom:785.141555px;}
.y74{bottom:787.072117px;}
.y38{bottom:795.506351px;}
.y7f{bottom:801.217607px;}
.y4a{bottom:802.902360px;}
.y2a{bottom:804.573902px;}
.y18{bottom:807.650036px;}
.y73{bottom:809.580597px;}
.y37{bottom:818.014832px;}
.y7e{bottom:823.726087px;}
.y49{bottom:825.410841px;}
.y17{bottom:830.158517px;}
.y72{bottom:832.089078px;}
.y36{bottom:840.523312px;}
.y7d{bottom:846.234568px;}
.y48{bottom:847.919321px;}
.yb{bottom:850.641249px;}
.y16{bottom:852.666997px;}
.y71{bottom:854.597559px;}
.y35{bottom:863.031793px;}
.y7c{bottom:868.743049px;}
.y47{bottom:870.427802px;}
.ya{bottom:873.149729px;}
.y15{bottom:875.175478px;}
.y70{bottom:877.106039px;}
.y34{bottom:885.540274px;}
.y7b{bottom:891.251529px;}
.y46{bottom:892.936283px;}
.y9{bottom:895.658210px;}
.y14{bottom:897.683959px;}
.y6f{bottom:899.614520px;}
.y33{bottom:908.048754px;}
.y7a{bottom:913.760010px;}
.y45{bottom:915.444763px;}
.y8{bottom:918.166691px;}
.y13{bottom:920.192439px;}
.y32{bottom:930.557235px;}
.y44{bottom:937.953244px;}
.y7{bottom:940.675171px;}
.y12{bottom:942.700920px;}
.y82{bottom:947.932736px;}
.y31{bottom:953.065716px;}
.y43{bottom:960.461725px;}
.y6{bottom:963.183652px;}
.y11{bottom:965.209401px;}
.y30{bottom:975.574196px;}
.y42{bottom:982.970205px;}
.y5{bottom:985.692133px;}
.y10{bottom:987.717881px;}
.y6e{bottom:996.285085px;}
.y2f{bottom:998.082677px;}
.y41{bottom:1005.478686px;}
.y4{bottom:1008.200613px;}
.yf{bottom:1010.226362px;}
.y6d{bottom:1018.793566px;}
.y2e{bottom:1020.591158px;}
.y40{bottom:1027.987167px;}
.y3{bottom:1030.709094px;}
.ye{bottom:1032.734843px;}
.y6c{bottom:1041.302047px;}
.y2d{bottom:1043.099638px;}
.y3f{bottom:1050.495647px;}
.yd{bottom:1055.243323px;}
.y6b{bottom:1063.810527px;}
.y2c{bottom:1065.608119px;}
.y29{bottom:1072.522866px;}
.y3e{bottom:1073.004128px;}
.yc{bottom:1077.751804px;}
.y6a{bottom:1086.319008px;}
.y3d{bottom:1095.512609px;}
.y69{bottom:1108.827489px;}
.y54{bottom:1113.444372px;}
.y68{bottom:1131.335969px;}
.y53{bottom:1138.203701px;}
.y2{bottom:1153.659852px;}
.y67{bottom:1153.844450px;}
.h9{height:15.033783px;}
.h8{height:22.751155px;}
.hb{height:24.187179px;}
.hc{height:34.161222px;}
.h5{height:43.972568px;}
.hd{height:48.786186px;}
.ha{height:53.639998px;}
.h4{height:53.719820px;}
.h7{height:54.643748px;}
.h6{height:59.638470px;}
.h3{height:69.553366px;}
.he{height:87.246135px;}
.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;}
.x2{left:43.552352px;}
.xd{left:52.982801px;}
.xb{left:119.519995px;}
.xc{left:127.283452px;}
.x4{left:130.287047px;}
.x1{left:141.165302px;}
.x7{left:167.848168px;}
.x3{left:464.800938px;}
.x5{left:477.532297px;}
.x6{left:492.848615px;}
.xa{left:496.419632px;}
.x9{left:618.659038px;}
.x8{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.540146pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws6{word-spacing:-13.335024pt;}
.ws5{word-spacing:-9.337494pt;}
.ws3{word-spacing:-6.218711pt;}
.ws4{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._25{margin-left:-0.889134pt;}
._a{width:1.186176pt;}
._f{width:2.755107pt;}
._17{width:3.676331pt;}
._0{width:5.137212pt;}
._5{width:6.246298pt;}
._2f{width:7.186665pt;}
._26{width:8.168963pt;}
._3{width:9.408446pt;}
._c{width:10.694805pt;}
._d{width:11.835922pt;}
._14{width:13.659023pt;}
._19{width:15.591613pt;}
._8{width:16.530547pt;}
._2c{width:17.948367pt;}
._21{width:19.021994pt;}
._2a{width:20.965037pt;}
._9{width:22.705182pt;}
._2{width:24.457951pt;}
._6{width:26.144784pt;}
._11{width:27.769893pt;}
._18{width:29.413223pt;}
._1f{width:30.712896pt;}
._1a{width:32.311411pt;}
._1b{width:33.320020pt;}
._22{width:36.122580pt;}
._16{width:37.882225pt;}
._10{width:39.237763pt;}
._24{width:42.216328pt;}
._1c{width:43.151242pt;}
._b{width:44.365263pt;}
._7{width:45.603965pt;}
._15{width:47.013851pt;}
._13{width:48.201145pt;}
._28{width:49.437501pt;}
._2e{width:51.715391pt;}
._1{width:52.824013pt;}
._27{width:57.059708pt;}
._23{width:59.351180pt;}
._e{width:63.262546pt;}
._1d{width:64.888709pt;}
._29{width:66.282070pt;}
._4{width:71.902460pt;}
._2d{width:81.734932pt;}
._1e{width:85.168029pt;}
._12{width:94.294204pt;}
._2b{width:120.857846pt;}
._20{width:131.723666pt;}
._30{width:597.982472pt;}
.fs5{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fs7{font-size:37.349977pt;}
.fs2{font-size:48.018092pt;}
.fs8{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y5f{bottom:5.251773pt;}
.y5e{bottom:14.066744pt;}
.y5a{bottom:18.360018pt;}
.y5d{bottom:22.881715pt;}
.y58{bottom:23.827178pt;}
.y5c{bottom:31.696686pt;}
.y57{bottom:40.143562pt;}
.y5b{bottom:40.511657pt;}
.y59{bottom:40.919779pt;}
.y56{bottom:55.377641pt;}
.y28{bottom:60.652932pt;}
.y55{bottom:71.664579pt;}
.y60{bottom:120.147742pt;}
.y66{bottom:188.555663pt;}
.y65{bottom:204.561694pt;}
.y61{bottom:238.040939pt;}
.y64{bottom:284.425051pt;}
.y63{bottom:302.020762pt;}
.y62{bottom:327.514599pt;}
.y21{bottom:537.843298pt;}
.y27{bottom:552.182069pt;}
.y52{bottom:553.630680pt;}
.y20{bottom:557.850836pt;}
.y26{bottom:572.189607pt;}
.y51{bottom:573.638218pt;}
.y1f{bottom:577.858375pt;}
.y25{bottom:592.197145pt;}
.y50{bottom:593.645756pt;}
.y1e{bottom:597.865913pt;}
.y79{bottom:599.581967pt;}
.y24{bottom:612.204684pt;}
.y4f{bottom:613.653295pt;}
.y1d{bottom:617.873451pt;}
.y78{bottom:619.589506pt;}
.y3c{bottom:627.086603pt;}
.y23{bottom:632.212222pt;}
.y4e{bottom:633.660833pt;}
.y1c{bottom:637.880990pt;}
.y77{bottom:639.597044pt;}
.y3b{bottom:647.094141pt;}
.y22{bottom:652.219760pt;}
.y4d{bottom:653.668371pt;}
.y1b{bottom:657.888528pt;}
.y76{bottom:659.604582pt;}
.y3a{bottom:667.101680pt;}
.y81{bottom:672.178352pt;}
.y4c{bottom:673.675910pt;}
.y1a{bottom:677.896066pt;}
.y75{bottom:679.612121pt;}
.y39{bottom:687.109218pt;}
.y80{bottom:692.185890pt;}
.y2b{bottom:693.168509pt;}
.y4b{bottom:693.683448pt;}
.y19{bottom:697.903605pt;}
.y74{bottom:699.619659pt;}
.y38{bottom:707.116756pt;}
.y7f{bottom:712.193428pt;}
.y4a{bottom:713.690987pt;}
.y2a{bottom:715.176802pt;}
.y18{bottom:717.911143pt;}
.y73{bottom:719.627198pt;}
.y37{bottom:727.124295pt;}
.y7e{bottom:732.200967pt;}
.y49{bottom:733.698525pt;}
.y17{bottom:737.918682pt;}
.y72{bottom:739.634736pt;}
.y36{bottom:747.131833pt;}
.y7d{bottom:752.208505pt;}
.y48{bottom:753.706063pt;}
.yb{bottom:756.125554pt;}
.y16{bottom:757.926220pt;}
.y71{bottom:759.642274pt;}
.y35{bottom:767.139372pt;}
.y7c{bottom:772.216043pt;}
.y47{bottom:773.713602pt;}
.ya{bottom:776.133093pt;}
.y15{bottom:777.933758pt;}
.y70{bottom:779.649813pt;}
.y34{bottom:787.146910pt;}
.y7b{bottom:792.223582pt;}
.y46{bottom:793.721140pt;}
.y9{bottom:796.140631pt;}
.y14{bottom:797.941297pt;}
.y6f{bottom:799.657351pt;}
.y33{bottom:807.154448pt;}
.y7a{bottom:812.231120pt;}
.y45{bottom:813.728678pt;}
.y8{bottom:816.148170pt;}
.y13{bottom:817.948835pt;}
.y32{bottom:827.161987pt;}
.y44{bottom:833.736217pt;}
.y7{bottom:836.155708pt;}
.y12{bottom:837.956373pt;}
.y82{bottom:842.606876pt;}
.y31{bottom:847.169525pt;}
.y43{bottom:853.743755pt;}
.y6{bottom:856.163246pt;}
.y11{bottom:857.963912pt;}
.y30{bottom:867.177063pt;}
.y42{bottom:873.751294pt;}
.y5{bottom:876.170785pt;}
.y10{bottom:877.971450pt;}
.y6e{bottom:885.586743pt;}
.y2f{bottom:887.184602pt;}
.y41{bottom:893.758832pt;}
.y4{bottom:896.178323pt;}
.yf{bottom:897.978989pt;}
.y6d{bottom:905.594281pt;}
.y2e{bottom:907.192140pt;}
.y40{bottom:913.766370pt;}
.y3{bottom:916.185861pt;}
.ye{bottom:917.986527pt;}
.y6c{bottom:925.601819pt;}
.y2d{bottom:927.199678pt;}
.y3f{bottom:933.773909pt;}
.yd{bottom:937.994065pt;}
.y6b{bottom:945.609358pt;}
.y2c{bottom:947.207217pt;}
.y29{bottom:953.353659pt;}
.y3e{bottom:953.781447pt;}
.yc{bottom:958.001604pt;}
.y6a{bottom:965.616896pt;}
.y3d{bottom:973.788985pt;}
.y69{bottom:985.624434pt;}
.y54{bottom:989.728331pt;}
.y68{bottom:1005.631973pt;}
.y53{bottom:1011.736623pt;}
.y2{bottom:1025.475424pt;}
.y67{bottom:1025.639511pt;}
.h9{height:13.363363pt;}
.h8{height:20.223249pt;}
.hb{height:21.499714pt;}
.hc{height:30.365531pt;}
.h5{height:39.086727pt;}
.hd{height:43.365499pt;}
.ha{height:47.679998pt;}
.h4{height:47.750951pt;}
.h7{height:48.572220pt;}
.h6{height:53.011974pt;}
.h3{height:61.825214pt;}
.he{height:77.552120pt;}
.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;}
.x2{left:38.713202pt;}
.xd{left:47.095823pt;}
.xb{left:106.239996pt;}
.xc{left:113.140846pt;}
.x4{left:115.810709pt;}
.x1{left:125.480268pt;}
.x7{left:149.198371pt;}
.x3{left:413.156389pt;}
.x5{left:424.473153pt;}
.x6{left:438.087658pt;}
.xa{left:441.261895pt;}
.x9{left:549.919145pt;}
.x8{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; }
  