
    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_bfce5b37a8097e4dc3e8c621.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b960938ea4c615f229a8178f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_ad15a5b4a7a32fd16f5e1f91.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_b7f70487a6afe9bc99b1bd07.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706055;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_373536e2eba1d136f830fb3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_398fb1fe37cf9e647b9f9adc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_f7433707d7ab3a4a53184afb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.872070;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_fc74cedd9c7cbe2068086282.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_dadbac98376e1f6b0569afbd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912598;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);}
.v2{vertical-align:-26.586914px;}
.v3{vertical-align:-25.044871px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:198.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.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws3{word-spacing:-9.900000px;}
.ws2{word-spacing:-8.952539px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-11.429764px;}
._0{margin-left:-6.356773px;}
._d{margin-left:-5.027323px;}
._9{margin-left:-3.750965px;}
._3{margin-left:-2.700014px;}
._1{margin-left:-1.018246px;}
._6{width:4.500002px;}
._5{width:9.000000px;}
._4{width:13.500000px;}
._7{width:22.500001px;}
._c{width:27.000003px;}
._12{width:30.023438px;}
._8{width:31.500000px;}
._11{width:36.000002px;}
._f{width:40.500022px;}
._e{width:45.000000px;}
._b{width:49.499995px;}
._a{width:54.000002px;}
._14{width:81.351586px;}
._13{width:85.499997px;}
._10{width:198.000000px;}
.fc2{color:rgb(31,33,35);}
.fc1{color:rgb(17,85,204);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:39.600001px;}
.fs3{font-size:43.200002px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.yc0{bottom:11.768548px;}
.yaf{bottom:11.768550px;}
.ybb{bottom:11.768551px;}
.ya0{bottom:11.768555px;}
.yb7{bottom:11.768556px;}
.ya5{bottom:11.768562px;}
.y55{bottom:17.016358px;}
.y2e{bottom:17.016724px;}
.y99{bottom:17.017090px;}
.ya4{bottom:32.466792px;}
.ybf{bottom:32.466793px;}
.yae{bottom:32.466795px;}
.yba{bottom:32.466796px;}
.yb6{bottom:32.466801px;}
.yd0{bottom:37.157959px;}
.y54{bottom:37.158326px;}
.y2d{bottom:37.158418px;}
.ya3{bottom:53.165037px;}
.ybe{bottom:53.165039px;}
.yad{bottom:53.165040px;}
.yb5{bottom:53.165046px;}
.y2b{bottom:69.796138px;}
.y97{bottom:70.444328px;}
.y52{bottom:70.444703px;}
.ya2{bottom:73.863282px;}
.yac{bottom:73.863285px;}
.yb4{bottom:73.863291px;}
.yab{bottom:94.561530px;}
.yb3{bottom:94.561536px;}
.y2a{bottom:96.532761px;}
.y29{bottom:110.747038px;}
.y51{bottom:112.035644px;}
.y82{bottom:114.063719px;}
.yaa{bottom:115.259760px;}
.yb2{bottom:115.259766px;}
.ycf{bottom:132.193353px;}
.y50{bottom:134.372678px;}
.y96{bottom:135.504638px;}
.ya9{bottom:135.958005px;}
.y81{bottom:136.400753px;}
.y28{bottom:137.483751px;}
.y27{bottom:151.697938px;}
.yce{bottom:154.530756px;}
.ya8{bottom:156.656250px;}
.y4f{bottom:156.709356px;}
.y95{bottom:157.841302px;}
.y80{bottom:158.737427px;}
.ycd{bottom:176.867419px;}
.y4e{bottom:179.046397px;}
.y26{bottom:179.468532px;}
.y94{bottom:180.177982px;}
.y7f{bottom:181.074470px;}
.ycc{bottom:199.204096px;}
.y4d{bottom:201.383062px;}
.y93{bottom:202.515022px;}
.y7e{bottom:203.411142px;}
.y25{bottom:213.204717px;}
.ycb{bottom:221.541134px;}
.y4c{bottom:223.719914px;}
.y92{bottom:224.852051px;}
.y7d{bottom:225.748176px;}
.yca{bottom:243.878167px;}
.y4b{bottom:246.056767px;}
.y24{bottom:246.940797px;}
.y91{bottom:247.188719px;}
.y7c{bottom:248.084839px;}
.y23{bottom:262.674862px;}
.yc9{bottom:266.214848px;}
.y4a{bottom:268.393613px;}
.y90{bottom:269.525392px;}
.y7b{bottom:270.421882px;}
.y22{bottom:285.011714px;}
.yc8{bottom:288.551513px;}
.y49{bottom:290.730473px;}
.y8f{bottom:291.862430px;}
.y7a{bottom:292.758554px;}
.y21{bottom:307.348567px;}
.yc7{bottom:310.888553px;}
.y48{bottom:313.067322px;}
.y8e{bottom:314.199472px;}
.y79{bottom:315.095587px;}
.y20{bottom:329.685427px;}
.yc6{bottom:333.225584px;}
.y8d{bottom:336.536127px;}
.y78{bottom:337.432244px;}
.y1f{bottom:352.022279px;}
.yc5{bottom:355.562257px;}
.y8c{bottom:358.872801px;}
.y77{bottom:359.769290px;}
.y1e{bottom:374.359132px;}
.yc4{bottom:377.898923px;}
.y8b{bottom:381.209842px;}
.y76{bottom:382.105955px;}
.y1d{bottom:396.695984px;}
.yc3{bottom:400.235963px;}
.y8a{bottom:403.546871px;}
.y75{bottom:404.442987px;}
.y1c{bottom:419.032841px;}
.yc2{bottom:422.573003px;}
.y89{bottom:425.883539px;}
.y74{bottom:426.779661px;}
.y1b{bottom:441.369695px;}
.yc1{bottom:443.271247px;}
.y88{bottom:448.220212px;}
.y73{bottom:449.116702px;}
.ybd{bottom:461.200929px;}
.y1a{bottom:463.706547px;}
.yec{bottom:466.582766px;}
.y87{bottom:470.557613px;}
.y72{bottom:471.453367px;}
.y19{bottom:486.043401px;}
.yeb{bottom:490.081792px;}
.y86{bottom:492.894292px;}
.y71{bottom:493.790399px;}
.ybc{bottom:502.597413px;}
.y18{bottom:508.380253px;}
.yea{bottom:510.780025px;}
.y85{bottom:515.231318px;}
.y70{bottom:516.127073px;}
.y17{bottom:530.717107px;}
.ye9{bottom:531.478268px;}
.y84{bottom:535.929562px;}
.y6f{bottom:538.464112px;}
.yb9{bottom:540.170661px;}
.ye8{bottom:552.176512px;}
.y16{bottom:553.053959px;}
.y83{bottom:558.266232px;}
.y6e{bottom:560.800777px;}
.yb8{bottom:560.868903px;}
.ye7{bottom:572.874763px;}
.y15{bottom:575.390813px;}
.y6d{bottom:583.137818px;}
.ye6{bottom:593.573005px;}
.y14{bottom:596.089058px;}
.yb1{bottom:598.442131px;}
.y47{bottom:603.835883px;}
.y6c{bottom:605.474482px;}
.ye5{bottom:614.271248px;}
.y13{bottom:616.787288px;}
.y46{bottom:626.172728px;}
.y6b{bottom:627.811514px;}
.ye4{bottom:634.969478px;}
.y45{bottom:648.509586px;}
.y6a{bottom:650.148187px;}
.y12{bottom:651.124058px;}
.ye3{bottom:655.667728px;}
.y44{bottom:670.846438px;}
.y69{bottom:672.485226px;}
.ye2{bottom:676.365970px;}
.y11{bottom:685.460947px;}
.y43{bottom:693.183292px;}
.y68{bottom:694.821889px;}
.ye1{bottom:697.064212px;}
.yb0{bottom:701.933343px;}
.y10{bottom:707.797808px;}
.y42{bottom:715.520144px;}
.y67{bottom:717.158932px;}
.ye0{bottom:717.762458px;}
.yf{bottom:730.134657px;}
.y41{bottom:737.856998px;}
.ydf{bottom:738.460690px;}
.y66{bottom:739.495604px;}
.ya7{bottom:739.506593px;}
.ye{bottom:752.471511px;}
.yde{bottom:759.158932px;}
.y40{bottom:760.193849px;}
.y65{bottom:761.832638px;}
.yd{bottom:774.808363px;}
.ydd{bottom:779.857178px;}
.y3f{bottom:782.530702px;}
.y64{bottom:784.169315px;}
.yc{bottom:797.145217px;}
.ydc{bottom:800.555425px;}
.y3e{bottom:804.867548px;}
.y63{bottom:806.506347px;}
.yb{bottom:819.482069px;}
.ydb{bottom:821.253668px;}
.y3d{bottom:827.204412px;}
.y62{bottom:828.843021px;}
.ya{bottom:841.818922px;}
.yda{bottom:841.951898px;}
.y3c{bottom:849.541266px;}
.y61{bottom:851.180062px;}
.yd9{bottom:862.650145px;}
.y9{bottom:864.155782px;}
.y3b{bottom:871.878118px;}
.y60{bottom:873.516727px;}
.yd8{bottom:883.348387px;}
.ya6{bottom:884.394288px;}
.y8{bottom:886.492635px;}
.y3a{bottom:894.214972px;}
.y5f{bottom:895.853759px;}
.yd7{bottom:904.046632px;}
.y7{bottom:908.829487px;}
.y39{bottom:916.551824px;}
.y5e{bottom:918.190433px;}
.ya1{bottom:924.674560px;}
.yd6{bottom:924.744878px;}
.y6{bottom:931.166332px;}
.y38{bottom:938.888677px;}
.y5d{bottom:940.527473px;}
.yd5{bottom:945.443122px;}
.y37{bottom:961.225526px;}
.y5c{bottom:962.864137px;}
.yd4{bottom:966.141355px;}
.y5{bottom:966.425193px;}
.y36{bottom:983.562378px;}
.y5b{bottom:983.562383px;}
.y9f{bottom:986.769288px;}
.yd3{bottom:986.839598px;}
.y4{bottom:992.484879px;}
.y35{bottom:1005.899232px;}
.y5a{bottom:1005.899419px;}
.yd2{bottom:1007.537842px;}
.y3{bottom:1018.544540px;}
.y34{bottom:1028.236084px;}
.y1{bottom:1038.150009px;}
.y9e{bottom:1050.572754px;}
.y33{bottom:1050.572938px;}
.y59{bottom:1050.573116px;}
.y9d{bottom:1072.909417px;}
.y32{bottom:1072.909790px;}
.yd1{bottom:1095.246094px;}
.y9c{bottom:1095.246460px;}
.y31{bottom:1095.246644px;}
.y58{bottom:1095.246826px;}
.y9b{bottom:1117.583492px;}
.y30{bottom:1117.583495px;}
.y57{bottom:1117.583498px;}
.y9a{bottom:1139.920165px;}
.y2f{bottom:1139.920349px;}
.y56{bottom:1139.920531px;}
.y98{bottom:1156.724853px;}
.y2c{bottom:1156.725036px;}
.y53{bottom:1156.725219px;}
.h9{height:26.393555px;}
.ha{height:32.581056px;}
.hc{height:35.500782px;}
.h12{height:36.448242px;}
.h2{height:43.989259px;}
.h18{height:49.992188px;}
.h19{height:50.167969px;}
.h16{height:57.146484px;}
.hb{height:59.167970px;}
.h4{height:63.949219px;}
.h7{height:64.546875px;}
.h6{height:65.691211px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.h17{height:77.844726px;}
.h13{height:98.542970px;}
.he{height:105.899775px;}
.h10{height:105.900150px;}
.hf{height:106.274781px;}
.hd{height:106.274964px;}
.h11{height:106.275147px;}
.h15{height:139.939454px;}
.h14{height:181.335938px;}
.h1{height:224.849991px;}
.h8{height:256.310670px;}
.h0{height:1263.000000px;}
.w2{width:142.874978px;}
.w3{width:491.625090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x13{left:6.750000px;}
.x15{left:33.750000px;}
.x16{left:60.750000px;}
.x5{left:127.575005px;}
.x12{left:128.700005px;}
.x3{left:153.447369px;}
.x6{left:160.416658px;}
.x2{left:165.247398px;}
.x4{left:175.340984px;}
.x8{left:180.450005px;}
.xe{left:181.575005px;}
.xb{left:265.507479px;}
.x10{left:267.757479px;}
.x14{left:272.699985px;}
.xf{left:274.735995px;}
.x11{left:326.736477px;}
.x17{left:343.980623px;}
.xd{left:349.974758px;}
.x7{left:409.503088px;}
.xa{left:446.456716px;}
.x1{left:636.019216px;}
.xc{left:669.206716px;}
.x9{left:765.338427px;}
@media print{
.v2{vertical-align:-23.632812pt;}
.v3{vertical-align:-22.262108pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:176.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws3{word-spacing:-8.800000pt;}
.ws2{word-spacing:-7.957813pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-10.159790pt;}
._0{margin-left:-5.650465pt;}
._d{margin-left:-4.468731pt;}
._9{margin-left:-3.334191pt;}
._3{margin-left:-2.400012pt;}
._1{margin-left:-0.905108pt;}
._6{width:4.000002pt;}
._5{width:8.000000pt;}
._4{width:12.000000pt;}
._7{width:20.000001pt;}
._c{width:24.000002pt;}
._12{width:26.687500pt;}
._8{width:28.000000pt;}
._11{width:32.000002pt;}
._f{width:36.000019pt;}
._e{width:40.000000pt;}
._b{width:43.999996pt;}
._a{width:48.000002pt;}
._14{width:72.312521pt;}
._13{width:75.999997pt;}
._10{width:176.000000pt;}
.fs4{font-size:35.200001pt;}
.fs3{font-size:38.400002pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.yc0{bottom:10.460932pt;}
.yaf{bottom:10.460933pt;}
.ybb{bottom:10.460935pt;}
.ya0{bottom:10.460937pt;}
.yb7{bottom:10.460939pt;}
.ya5{bottom:10.460944pt;}
.y55{bottom:15.125651pt;}
.y2e{bottom:15.125977pt;}
.y99{bottom:15.126302pt;}
.ya4{bottom:28.859371pt;}
.ybf{bottom:28.859372pt;}
.yae{bottom:28.859373pt;}
.yba{bottom:28.859375pt;}
.yb6{bottom:28.859379pt;}
.yd0{bottom:33.029297pt;}
.y54{bottom:33.029623pt;}
.y2d{bottom:33.029705pt;}
.ya3{bottom:47.257811pt;}
.ybe{bottom:47.257812pt;}
.yad{bottom:47.257813pt;}
.yb5{bottom:47.257819pt;}
.y2b{bottom:62.041012pt;}
.y97{bottom:62.617180pt;}
.y52{bottom:62.617514pt;}
.ya2{bottom:65.656251pt;}
.yac{bottom:65.656253pt;}
.yb4{bottom:65.656259pt;}
.yab{bottom:84.054693pt;}
.yb3{bottom:84.054699pt;}
.y2a{bottom:85.806899pt;}
.y29{bottom:98.441812pt;}
.y51{bottom:99.587239pt;}
.y82{bottom:101.389973pt;}
.yaa{bottom:102.453120pt;}
.yb2{bottom:102.453125pt;}
.ycf{bottom:117.505203pt;}
.y50{bottom:119.442380pt;}
.y96{bottom:120.448567pt;}
.ya9{bottom:120.851560pt;}
.y81{bottom:121.245113pt;}
.y28{bottom:122.207779pt;}
.y27{bottom:134.842612pt;}
.yce{bottom:137.360672pt;}
.ya8{bottom:139.250000pt;}
.y4f{bottom:139.297205pt;}
.y95{bottom:140.303380pt;}
.y80{bottom:141.099935pt;}
.ycd{bottom:157.215484pt;}
.y4e{bottom:159.152353pt;}
.y26{bottom:159.527584pt;}
.y94{bottom:160.158207pt;}
.y7f{bottom:160.955084pt;}
.ycc{bottom:177.070308pt;}
.y4d{bottom:179.007166pt;}
.y93{bottom:180.013353pt;}
.y7e{bottom:180.809904pt;}
.y25{bottom:189.515304pt;}
.ycb{bottom:196.925453pt;}
.y4c{bottom:198.862146pt;}
.y92{bottom:199.868490pt;}
.y7d{bottom:200.665045pt;}
.yca{bottom:216.780593pt;}
.y4b{bottom:218.717127pt;}
.y24{bottom:219.502930pt;}
.y91{bottom:219.723306pt;}
.y7c{bottom:220.519857pt;}
.y23{bottom:233.488766pt;}
.yc9{bottom:236.635420pt;}
.y4a{bottom:238.572100pt;}
.y90{bottom:239.578127pt;}
.y7b{bottom:240.375006pt;}
.y22{bottom:253.343746pt;}
.yc8{bottom:256.490233pt;}
.y49{bottom:258.427087pt;}
.y8f{bottom:259.433271pt;}
.y7a{bottom:260.229826pt;}
.y21{bottom:273.198727pt;}
.yc7{bottom:276.345380pt;}
.y48{bottom:278.282064pt;}
.y8e{bottom:279.288419pt;}
.y79{bottom:280.084967pt;}
.y20{bottom:293.053712pt;}
.yc6{bottom:296.200519pt;}
.y8d{bottom:299.143224pt;}
.y78{bottom:299.939772pt;}
.y1f{bottom:312.908692pt;}
.yc5{bottom:316.055340pt;}
.y8c{bottom:318.998045pt;}
.y77{bottom:319.794925pt;}
.y1e{bottom:332.763672pt;}
.yc4{bottom:335.910153pt;}
.y8b{bottom:338.853193pt;}
.y76{bottom:339.649737pt;}
.y1d{bottom:352.618652pt;}
.yc3{bottom:355.765300pt;}
.y8a{bottom:358.708330pt;}
.y75{bottom:359.504878pt;}
.y1c{bottom:372.473636pt;}
.yc2{bottom:375.620447pt;}
.y89{bottom:378.563146pt;}
.y74{bottom:379.359699pt;}
.y1b{bottom:392.328617pt;}
.yc1{bottom:394.018887pt;}
.y88{bottom:398.417967pt;}
.y73{bottom:399.214847pt;}
.ybd{bottom:409.956381pt;}
.y1a{bottom:412.183597pt;}
.yec{bottom:414.740236pt;}
.y87{bottom:418.273433pt;}
.y72{bottom:419.069660pt;}
.y19{bottom:432.038579pt;}
.yeb{bottom:435.628260pt;}
.y86{bottom:438.128260pt;}
.y71{bottom:438.924800pt;}
.ybc{bottom:446.753256pt;}
.y18{bottom:451.893558pt;}
.yea{bottom:454.026689pt;}
.y85{bottom:457.983393pt;}
.y70{bottom:458.779620pt;}
.y17{bottom:471.748539pt;}
.ye9{bottom:472.425127pt;}
.y84{bottom:476.381833pt;}
.y6f{bottom:478.634767pt;}
.yb9{bottom:480.151699pt;}
.ye8{bottom:490.823567pt;}
.y16{bottom:491.603519pt;}
.y83{bottom:496.236651pt;}
.y6e{bottom:498.489580pt;}
.yb8{bottom:498.550136pt;}
.ye7{bottom:509.222011pt;}
.y15{bottom:511.458500pt;}
.y6d{bottom:518.344727pt;}
.ye6{bottom:527.620449pt;}
.y14{bottom:529.856940pt;}
.yb1{bottom:531.948561pt;}
.y47{bottom:536.743007pt;}
.y6c{bottom:538.199539pt;}
.ye5{bottom:546.018887pt;}
.y13{bottom:548.255367pt;}
.y46{bottom:556.597980pt;}
.y6b{bottom:558.054679pt;}
.ye4{bottom:564.417313pt;}
.y45{bottom:576.452965pt;}
.y6a{bottom:577.909500pt;}
.y12{bottom:578.776940pt;}
.ye3{bottom:582.815758pt;}
.y44{bottom:596.307945pt;}
.y69{bottom:597.764645pt;}
.ye2{bottom:601.214196pt;}
.y11{bottom:609.298620pt;}
.y43{bottom:616.162926pt;}
.y68{bottom:617.619457pt;}
.ye1{bottom:619.612633pt;}
.yb0{bottom:623.940749pt;}
.y10{bottom:629.153607pt;}
.y42{bottom:636.017906pt;}
.y67{bottom:637.474606pt;}
.ye0{bottom:638.011073pt;}
.yf{bottom:649.008584pt;}
.y41{bottom:655.872887pt;}
.ydf{bottom:656.409502pt;}
.y66{bottom:657.329426pt;}
.ya7{bottom:657.339193pt;}
.ye{bottom:668.863565pt;}
.yde{bottom:674.807940pt;}
.y40{bottom:675.727866pt;}
.y65{bottom:677.184567pt;}
.yd{bottom:688.718545pt;}
.ydd{bottom:693.206380pt;}
.y3f{bottom:695.582847pt;}
.y64{bottom:697.039391pt;}
.yc{bottom:708.573526pt;}
.ydc{bottom:711.604822pt;}
.y3e{bottom:715.437820pt;}
.y63{bottom:716.894531pt;}
.yb{bottom:728.428506pt;}
.ydb{bottom:730.003260pt;}
.y3d{bottom:735.292811pt;}
.y62{bottom:736.749352pt;}
.ya{bottom:748.283487pt;}
.yda{bottom:748.401687pt;}
.y3c{bottom:755.147792pt;}
.y61{bottom:756.604500pt;}
.yd9{bottom:766.800129pt;}
.y9{bottom:768.138473pt;}
.y3b{bottom:775.002772pt;}
.y60{bottom:776.459313pt;}
.yd8{bottom:785.198567pt;}
.ya6{bottom:786.128256pt;}
.y8{bottom:787.993453pt;}
.y3a{bottom:794.857753pt;}
.y5f{bottom:796.314453pt;}
.yd7{bottom:803.597007pt;}
.y7{bottom:807.848433pt;}
.y39{bottom:814.712733pt;}
.y5e{bottom:816.169273pt;}
.ya1{bottom:821.932943pt;}
.yd6{bottom:821.995447pt;}
.y6{bottom:827.703407pt;}
.y38{bottom:834.567713pt;}
.y5d{bottom:836.024420pt;}
.yd5{bottom:840.393887pt;}
.y37{bottom:854.422690pt;}
.y5c{bottom:855.879233pt;}
.yd4{bottom:858.792316pt;}
.y5{bottom:859.044616pt;}
.y36{bottom:874.277670pt;}
.y5b{bottom:874.277673pt;}
.y9f{bottom:877.128256pt;}
.yd3{bottom:877.190753pt;}
.y4{bottom:882.208781pt;}
.y35{bottom:894.132651pt;}
.y5a{bottom:894.132817pt;}
.yd2{bottom:895.589193pt;}
.y3{bottom:905.372924pt;}
.y34{bottom:913.987631pt;}
.y1{bottom:922.800008pt;}
.y9e{bottom:933.842448pt;}
.y33{bottom:933.842611pt;}
.y59{bottom:933.842770pt;}
.y9d{bottom:953.697260pt;}
.y32{bottom:953.697592pt;}
.yd1{bottom:973.552084pt;}
.y9c{bottom:973.552409pt;}
.y31{bottom:973.552572pt;}
.y58{bottom:973.552734pt;}
.y9b{bottom:993.407549pt;}
.y30{bottom:993.407551pt;}
.y57{bottom:993.407554pt;}
.y9a{bottom:1013.262369pt;}
.y2f{bottom:1013.262532pt;}
.y56{bottom:1013.262695pt;}
.y98{bottom:1028.199869pt;}
.y2c{bottom:1028.200032pt;}
.y53{bottom:1028.200195pt;}
.h9{height:23.460938pt;}
.ha{height:28.960939pt;}
.hc{height:31.556251pt;}
.h12{height:32.398437pt;}
.h2{height:39.101563pt;}
.h18{height:44.437500pt;}
.h19{height:44.593750pt;}
.h16{height:50.796875pt;}
.hb{height:52.593751pt;}
.h4{height:56.843750pt;}
.h7{height:57.375000pt;}
.h6{height:58.392187pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.h17{height:69.195312pt;}
.h13{height:87.593751pt;}
.he{height:94.133133pt;}
.h10{height:94.133467pt;}
.hf{height:94.466472pt;}
.hd{height:94.466635pt;}
.h11{height:94.466797pt;}
.h15{height:124.390625pt;}
.h14{height:161.187500pt;}
.h1{height:199.866659pt;}
.h8{height:227.831707pt;}
.h0{height:1122.666667pt;}
.w2{width:126.999980pt;}
.w3{width:437.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x13{left:6.000000pt;}
.x15{left:30.000000pt;}
.x16{left:54.000000pt;}
.x5{left:113.400004pt;}
.x12{left:114.400004pt;}
.x3{left:136.397661pt;}
.x6{left:142.592585pt;}
.x2{left:146.886576pt;}
.x4{left:155.858652pt;}
.x8{left:160.400004pt;}
.xe{left:161.400004pt;}
.xb{left:236.006648pt;}
.x10{left:238.006648pt;}
.x14{left:242.399987pt;}
.xf{left:244.209773pt;}
.x11{left:290.432424pt;}
.x17{left:305.760554pt;}
.xd{left:311.088674pt;}
.x7{left:364.002745pt;}
.xa{left:396.850414pt;}
.x1{left:565.350414pt;}
.xc{left:594.850414pt;}
.x9{left:680.300824pt;}
}




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